(function() { function bxBootstrap() { var re = /bot|crawl|slurp|spider|mediapartners|headlesschrome|snap-prefetch|remotasks|woorank|uptime\.com|facebookexternalhit|facebookcatalog/i; if (re.test(navigator.userAgent) || navigator.userAgent == '') { return; } if (!(window.bouncex&&bouncex.website)) { var pushedData = []; if(window.bouncex && bouncex.push && bouncex.length){ pushedData = bouncex; } window.bouncex = {}; bouncex.pushedData = pushedData; bouncex.website = {"id":2698,"name":"Society6","cookie_name":"bounceClientVisit2698","domain":"society6.com","ct":"bind_to_domain","ally":0,"ei":0,"tcjs":"","cjs":"/* enable.feature.DISABLE_RELOAD_CAMPAIGNS_V2 */\n/* enable.feature.COMPLIANCE_REFACTOR_ENABLED */\n\n\n// bouncex.on(bouncex.window, 'bxPathChange', function() {\n// clearTimeout(bouncex.spaTimeout);\n// bouncex.spaTimeout = setTimeout2(function() {\n// bouncex.log('bx: detect page change');\n// bouncex.calling_url = encodeURIComponent(window.location.href);\n// bouncex.body = jQuery('body').eq(0);\n \n// init_vars();\n// // bouncex.cookie.vpv++;\n// bouncex.pa = 0;\n// setBounceCookie();\n \n// for (var ca_id in bouncex.campaigns) {\n// if (bouncex.campaigns.hasOwnProperty(ca_id)) {\n// bouncex.destroy_ad(ca_id);\n// }\n// }\n// bouncex.reload_campaigns();\n \n// init_ibx_tracking();\n// init_event_tracking();\n// window.bouncex.bxISR.init();\n// }.bind(this), 1000);\n// }.bind(this));\n\n// stub this function that client is calling;\nbouncex.reloadBx = function() {};\n\n(function () {\n \twindow.bouncex = window.bouncex || {};\n\n\twindow.bouncex.bxISR = {\n\t\t/* --- INITIALIZATION --- */\n\t\tversion: 'Version 8.2 | 10/25/17',\n\t\tstartTime: Date.now(),\n\t\tsettings: {\n\t\t\tcurrentProduct: {},\n\t\t\tgeneral: {\n\t\t\t\tproductPageIdentifier: window.location.pathname.indexOf('/product/') > -1 || jQuery('meta[property=\"og:type\"]').attr('content') == 'product' && jQuery('#product').length > 0,\n\t\t\t\tmaxProducts: 20,\n\t\t\t\t//categoryHistory: JSON.parse(window.localStorage.getItem('bxCatHist')) || [],\n\t\t\t\tproductHistory: JSON.parse(window.localStorage.getItem('bxProdHist')) || [],\n\t\t\t\t//categoryHistoryLength: 0,\n\t\t\t\tproductHistoryLength: 0\n\t\t\t}\n\t\t},\n\n\t\tinit: function () {\n\t\t this.settings.general.productPageIdentifier = window.location.pathname.indexOf('/product/') > -1 || jQuery('meta[property=\"og:type\"]').attr('content') == 'product' && jQuery('#product').length > 0;\n\t\t\tthis.productMap();\n\t\t\tthis.setItemHistoryLengths();\n\t\t\tthis.trackProductHistory();\n\t\t\t//this.trackCategoryHistory();\n\t\t\tthis.maxProducts();\n\t\t// \tconsole.log(Date.now() - window.bouncex.bxISR.startTime, 'bxISR start');\n\t\t},\n\n\t\tproductMap: function () {\n\t\t\tif (!this.settings.general.productPageIdentifier) { return; }\n \n\t\t\tvar productValues = {\n\t\t\t\turl: window.location.href,\n\t\t\t\tname: jQuery('#product').find('meta[itemprop=name]').attr('content'), \t\t\t\t//sku: '',\n\t\t\t\t//category: [{ categoryName: '', categoryUrl:'' }],\n\t\t\t\t//description: '',\n\t\t\t\t//price: '',\n\t\t\t\tmainImgUrl: bouncex.vars.imageurl,\n\t\t\t\ttimeStamp: Date.now(),\n\t\t\t\tviewCount: 1,\n\t\t\t\tsessionId: window.bouncex.cookie.vid\n\t\t\t};\n\t\t\t\n\t\t\tif (bouncex.vars.ibx_test) { \n\t\t\t console.log('productValues: ', productValues); \n\t\t\t}\n\n\t\t\tthis.settings.currentProduct = productValues;\n\t\t},\n\n\t\t/* --- END OF INITIALIZATION --- */\n\t\t/* --- HELPER FUNCTIONS --- */\n\n\t\taddProductToHistory: function (product) {\n\t\t if (!product.name || product.name === '' || !product.url || product.url === '') { \n\t\t return false; \n\t\t }\n\t\t\tvar productHistory = this.settings.general.productHistory;\n\t\t\tproductHistory.unshift(product);\n\t\t\tthis.setProductHistory(productHistory);\n\t\t},\n\n\t\taddCategoryToHistory: function (currentCategory) {\n\t\t\tvar categoryHistory = this.settings.general.categoryHistory;\n\t\t\tvar newCategory = {\n\t\t\t\tcategory: currentCategory,\n\t\t\t\tviewCount: 1,\n\t\t\t\ttimeStamp: Date.now()\n\t\t\t};\n\n\t\t\tcategoryHistory.unshift(newCategory);\n\t\t\twindow.bouncex.bxISR.setCategoryHistory(categoryHistory);\n\t\t},\n\n\t\tcompareProducts: function (productA, productB) {\n\t\t\tif (productA.mainImgUrl === productB.mainImgUrl) { return true; }\n\t\t\t//if (productA.sku === productB.sku) { return true; }\n\t\t\tif (productA.name === productB.name) { return true; }\n\t\t\tif (productA.url === productB.url) { return true; }\n\t\t\treturn false;\n\t\t},\n\n\t\ttrackProductHistory: function () {\n\t\t\tvar productHistory = this.settings.general.productHistory;\n\t\t\tif (!this.settings.general.productPageIdentifier) { return; }\n\n\t\t\tif (this.settings.general.productHistoryLength > 0) {\n\t\t\t\tvar historyUpdated = false;\n\n\t\t\t\tfor (var i = 0; i < this.settings.general.productHistoryLength; i++) {\n\t\t\t\t\tif (this.compareProducts(productHistory[i], this.settings.currentProduct)) {\n\t\t\t\t\t\tproductHistory[i].viewCount++;\n\t\t\t\t\t\tproductHistory[i].timeStamp = Date.now();\n\t\t\t\t\t\tproductHistory.unshift(productHistory[i]);\n\n\t\t\t\t\t\tproductHistory.splice(i + 1, 1);\n\t\t\t\t\t\thistoryUpdated = true;\n\t\t\t\t\t\tthis.setProductHistory(productHistory);\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif (!historyUpdated) {\n\t\t\t\t\tthis.addProductToHistory(this.settings.currentProduct);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tthis.addProductToHistory(this.settings.currentProduct);\n\t\t\t}\n\t\t},\n\n\t\ttrackCategoryHistory: function () {\n\t\t\tvar categoryHistory = this.settings.general.categoryHistory;\n\t\t\tif (!this.settings.general.productPageIdentifier) { return; }\n\n\t\t\tvar currentCategoriesLength = this.settings.currentProduct.category.length;\n\t\t\tfor (var i = 0; i < currentCategoriesLength; i++) {\n\t\t\t\tvar currentCategory = this.settings.currentProduct.category[i];\n\n\t\t\t\tif (this.settings.general.categoryHistoryLength > 0) {\n\t\t\t\t\tvar historyUpdated = false;\n\t\t\t\t\tfor (var j = 0; j < this.settings.general.categoryHistoryLength; j++) {\n\t\t\t\t\t\tif (categoryHistory[j].category.categoryName === currentCategory.categoryName) {\n\t\t\t\t\t\t\tcategoryHistory[j].viewCount++;\n\t\t\t\t\t\t\tcategoryHistory[j].timeStamp = Date.now();\n\t\t\t\t\t\t\thistoryUpdated = true;\n\t\t\t\t\t\t\tthis.setCategoryHistory(categoryHistory);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif (!historyUpdated) {\n\t\t\t\t\t\tthis.addCategoryToHistory(currentCategory);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tthis.addCategoryToHistory(currentCategory);\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t/* --- END OF HELPER FUNCTIONS --- */\n\t\t/* --- GETTER FUNCTIONS --- */\n\n\t\tgetTopCategories: function (criteria, number) {\n\t\t\tvar categories = this.settings.general.categoryHistory;\n\t\t\tif (!number) { number = categories.length; }\n\n\t\t\tif (criteria === 'views') {\n\t\t\t\treturn categories.sort(function (a, b) { return b.viewCount - a.viewCount; }).slice(0, number);\n\t\t\t} else if (criteria === 'time') {\n\t\t\t\treturn categories.sort(function (a, b) { return b.timeStamp - a.timeStamp; }).slice(0, number);\n\t\t\t} else if (criteria === 'recency') {\n\t\t\t\treturn categories.sort(function (a, b) { return b.viewCount - a.viewCount; }).slice(0, number).sort(function (c, d) { return d.timeStamp - c.timeStamp; });\n\t\t\t}\n\t\t},\n\n\t\tgetTopProducts: function (criteria, number) {\n\t\t\tvar products = this.settings.general.productHistory;\n\t\t\tif (!number) { number = products.length; }\n\t\t\tif (criteria === 'views') {\n\t\t\t\treturn products.sort(function (a, b) { return b.viewCount - a.viewCount; }).slice(0, number);\n\t\t\t} else if (criteria === 'time') {\n\t\t\t\treturn products.sort(function (a, b) { return b.timeStamp - a.timeStamp; }).slice(0, number);\n\t\t\t} else if (criteria === 'recency') {\n\t\t\t\treturn products.sort(function (a, b) { return b.viewCount - a.viewCount; }).slice(0, number).sort(function (c, d) { return d.timeStamp - c.timeStamp; });\n\t\t\t}\n\t\t},\n\n\t\tmaxProducts: function () {\n\t\t\tvar maxProducts = this.settings.general.maxProducts;\n\t\t\tif (this.settings.general.productHistoryLength > maxProducts) {\n\t\t\t\tvar topProducts = this.getTopProducts('time', maxProducts);\n\t\t\t\tthis.setProductHistory(topProducts);\n\t\t\t}\n\t\t},\n\n\t\t/* --- END GETTER FUNCTIONS --- */\n\t\t/* --- SETTER FUNCTIONS --- */\n\n\t\tsetItemHistoryLengths: function () {\n\t\t\t//this.settings.general.categoryHistoryLength = this.settings.general.categoryHistory.length;\n\t\t\tthis.settings.general.productHistoryLength = this.settings.general.productHistory.length;\n\t\t},\n\n\t\tsetProductHistory: function (productHistory) {\n\t\t\twindow.localStorage.setItem('bxProdHist', JSON.stringify(productHistory));\n\t\t\tthis.settings.general.productHistory = productHistory;\n\t\t\tthis.settings.general.productHistoryLength = productHistory.length;\n\t\t},\n\n\t\tsetCategoryHistory: function (categoryHistory) {\n\t\t\twindow.localStorage.setItem('bxCatHist', JSON.stringify(categoryHistory));\n\t\t\tthis.settings.general.categoryHistory = categoryHistory;\n\t\t\tthis.settings.general.categoryHistoryLength = categoryHistory.length;\n\t\t},\n\n\t\t/* --- END SETTER FUNCTIONS --- */\n\t};\n\n\twindow.bouncex.bxISR.init(); \n\n})();","force_https":false,"waypoints":false,"content_width":0,"gai":"UA-359575-15","swids":"","sd":0,"ljq":"auto","campaign_id":0,"is_preview":false,"aco":{"first_party_limit":"3500","local_storage":"1"},"cmp":{"gdpr":1,"gmp":0,"whitelist_check":0},"burls":[{"prop":"contains","val":"society6.de"}],"ple":false,"fbe":true,"ffs":"","mas":2,"map":1,"gar":true,"ete":1,"ettm":false,"etjs":"/* ---------------------------- SHARED VARIABLES ---------------------------- */\n\nvar CART_COOKIE_KEY = 'store-cart', // cookie replenishment\n CLEAN_URL = bouncex.utils.url.allowParams(['q']),\n EXCLUDED_ARRAY = [\n 'credenza', 'bench', 'bar-stool', 'counter-stool',\n 'side-table', 'coffee-table', 'sun-shade', 'mask'\n ],\n EXCLUDED_COPY_ARRAY = [\n 'russia',\n 'moscow',\n 'cccp',\n 'putin',\n 'soviet union',\n 'soviet',\n 'ussr',\n 'lenin',\n 'kgb',\n 'ak 47',\n 'russian',\n 'communist',\n 'babushka',\n 'propaganda',\n 'erotic'\n ];\n\n/* --------------------------------- HELPERS -------------------------------- */\n\nfunction getItemIdFromUrl(url) {\n url = url || '';\n return url.split('/').pop().split('?')[0];\n}\n\nfunction isExcluded(itemCopy) {\n itemCopy = itemCopy || jQuery('h1#detailsProductType').text().trim();\n\n var url = window.location.href;\n\n if (bouncex.website.pts === 'product') {\n for (var i = 0; i < EXCLUDED_COPY_ARRAY.length; i++) {\n if (itemCopy.toLowerCase().indexOf(EXCLUDED_COPY_ARRAY[i]) > -1) {\n return true;\n }\n }\n }\n\n return EXCLUDED_ARRAY.some(function (el) { return url.indexOf(el) > -1; }) || jQuery('meta[name=\"pdp:keywords\"]').attr('content').indexOf('mature') > -1;\n}\n\n/* ------------------------------ ITEM TRACKING ----------------------------- */\n\nfunction getItem() {\n var copy = jQuery('h1#detailsProductType').text().trim();\n return {\n id: getItemIdFromUrl(CLEAN_URL),\n copy: copy,\n category: jQuery('[name=\"pdp:product_type\"]').attr('content') || jQuery('[qa-id=\"artist-name\"], [data-gtm-event=\"artist name\"]').first().text().trim() || 'Global',\n url: CLEAN_URL,\n imageurl: jQuery('.slick-active div[class*=imageContainer_image] img[class*=image_preview]').eq(0).attr('src') || '',\n instock: jQuery('button[id*=addToCart-btn]').eq(0).text().toLowerCase().indexOf('add to cart') > -1,\n excluded: isExcluded(copy)\n };\n}\n\nfunction initializeItemEvents() {\n var item;\n\n bouncex.et.onTrue(\n function () {\n item = getItem();\n return !!item.id &&\n !!item.copy &&\n !!item.category &&\n !!item.url &&\n !!item.imageurl;\n },\n function () {\n if (item.url.indexOf('gift-card') > -1) {\n return;\n }\n bouncex.push(['item', item]);\n bouncex.push(['view item', { 'item:id': item.id }]);\n\n initializeATCClickTracking(item.id);\n },\n 10\n );\n}\n\n/* ---------------------------- CATEGORY TRACKING --------------------------- */\n\nfunction getItemIdsCat() {\n var ids = [];\n\n jQuery('a[class*=link_productCard], a[class*=link_product_]').each(function (i, e) {\n var id = getItemIdFromUrl(jQuery(e).attr('href'));\n\n if (id && ids.indexOf(id) < 0) {\n ids.push(id);\n }\n });\n\n return ids.join(',');\n}\n\nfunction getCategoryObject() {\n return {\n 'page:url': CLEAN_URL,\n 'items:ids': getItemIdsCat()\n };\n}\n\nfunction initializeCategoryEvents() {\n var categoryObj;\n\n bouncex.et.onTrue(\n function () {\n categoryObj = getCategoryObject();\n return !!categoryObj['items:ids'].length &&\n !!categoryObj['page:url'];\n },\n function () {\n bouncex.push(['view category', categoryObj]);\n initializeQuickviewEvents();\n },\n 10\n );\n}\n\nfunction initializeSearchEvents() {\n var itemIds, searchTerm;\n\n bouncex.et.onTrue(\n function () {\n itemIds = getItemIdsCat();\n searchTerm = jQuery('#title').first().text().trim();\n return itemIds.length > 0;\n },\n function () {\n bouncex.push([\n 'view search',\n {\n 'items:ids': itemIds,\n 'page:url': CLEAN_URL,\n 'search_term': searchTerm\n }\n ]);\n initializeQuickviewEvents();\n },\n 10\n );\n}\n\nfunction initializeQuickviewEvents() {\n bouncex.et.onVisible('a[class*=\"fullDetailsLink_quickShopModal\"]', function (e) {\n var itemUrl = jQuery(e).first().attr('href'),\n itemId = getItemIdFromUrl(itemUrl);\n\n bouncex.push(['view item', { 'item:id': itemId }]);\n initializeATCClickTracking(itemId);\n });\n}\n/* ------------------------------- CART EVENTS ------------------------------ */\n\nfunction fireAddToCart(itemId) {\n var token;\n\n bouncex.et.onTrue(\n function () {\n token = bouncex.getBounceCookie(CART_COOKIE_KEY);\n return token;\n },\n function () {\n bouncex.push([\n 'add to cart',\n {\n 'item:id': itemId,\n 'cart:token': token\n }\n ]);\n\n if (bouncex.vars.cart) {\n return;\n }\n\n bouncex.setVar('cart', true);\n },\n 10\n );\n}\n\nfunction initializeATCClickTracking(itemId) {\n bouncex.off(jQuery('button[id*=addToCart-btn], button[class*=atcBtn_quickShopModal]'), 'click.bxatc');\n bouncex.et.on(jQuery('button[id*=addToCart-btn], button[class*=atcBtn_quickShopModal]'), 'click.bxatc', function () {\n fireAddToCart(itemId);\n });\n}\n\nfunction emptyCart() {\n bouncex.et.onVarChange('cart_qty', function (oldVal, newVal) {\n if (bouncex.vars.cart && newVal === 0 && oldVal > 0) {\n bouncex.push(['empty_cart']);\n bouncex.setVar('cart', false);\n }\n });\n}\n\nfunction initializeCartEvents() {\n bouncex.et.cart.init({\n replenishmentType: 'cookie',\n replenish: function (cart) {\n bouncex.utils.cookies.create({\n name: CART_COOKIE_KEY,\n value: cart.token\n });\n replenComplete();\n }\n });\n\n function replenComplete() {\n window.location.href = CLEAN_URL + '?bx_replen=true';\n }\n\n emptyCart();\n}\n\n/* ------------------------------ USER TRACKING ----------------------------- */\n\nfunction initializeUserTracking() {\n bouncex.et.onVarChange('logged_in_email', function () {\n bouncex.et.onTrue(\n function () {\n return bouncex.vars.logged_in &&\n !bouncex.vars.logged_in_identified &&\n bouncex.utils.validate.email(bouncex.vars.logged_in_email);\n },\n function () {\n bouncex.push(['user', {\n email: bouncex.vars.logged_in_email,\n source: 'LoggedIn'\n }]);\n bouncex.setVar('logged_in_identified', true);\n }, 5);\n });\n}\n\n/* --------------------------- INITIALIZE TRACKING -------------------------- */\n\nfunction isValidDomain() {\n return CLEAN_URL.indexOf('society6.com') > -1;\n}\n\nfunction isEn() {\n return bouncex.html.attr('lang') === 'en';\n}\n\nfunction isValidForTracking() {\n return isValidDomain() && isEn();\n}\n\nfunction init() {\n if (!isValidForTracking()) {\n return;\n }\n\n initializeUserTracking();\n initializeCartEvents();\n\n bouncex.setTimeout2(function () {\n switch (bouncex.website.pts) {\n case 'category':\n initializeCategoryEvents();\n break;\n case 'search':\n initializeSearchEvents();\n break;\n case 'product':\n initializeItemEvents();\n break;\n default:\n break;\n }\n }, 1500);\n}\n\ninit();\n","dge":true,"bxidLoadFirst":false,"pie":true,"cme":true,"gbi_enabled":0,"bpush":true,"pt":{"cart":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/cart"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/checkout"}]]},"category":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"document.querySelectorAll('div[qa-id=category-cards], div[qa-id=productsGroup]').length > 0;"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/search"}]]},"checkout":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/checkout"}]]},"home":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":" window.location.pathname === \"/\";"}]]},"product":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/product/"},{"activation":"js","prop":"","prop2":"","prop3":"","val":"document.querySelectorAll('#product').length > 0;"}]]},"search":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/search"}]]}},"els":null,"vars":[{"name":"logged_in","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('#mn-logout').length > 0 || jQuery('#checkout-nav-logout').length > 0;","trigger":""},{"name":"ever_logged_in","polling":"none","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"bouncex.vars.logged_in ? true : null;","trigger":""},{"name":"cart_qty","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"0","code":"(function(){\n if (window._gtmCheckoutProducts) {\n return window._gtmCheckoutProducts.length;\n } else {\n var mc = jQuery('#mc-cart .badge, #cart-count, [class*=summaryHiddenMobile_style] [class*=headingLeft_styles_]').eq(0);\n return mc.text().length > 0 ? mc.text().replace(/[^0-9.]/g, '') : 0;\n }\n}());","trigger":""},{"name":"cart_total","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"0","code":"Number(jQuery('[class^=\"cartSubAmount_\"], #summary-subtotal-value, #cart-total-grand').eq(0).text().replace(/[^0-9.]/g, ''));","trigger":""},{"name":"prod_price","polling":"vars","persist":"no","page_types":[],"testmode":false,"default":"0","code":"(function(){\n\tvar discount_price = jQuery('span[data-class=\"discount\"]').eq(0);\n\tvar retail_price = jQuery('span[data-class=\"retail\"]').eq(0);\n\tif(discount_price.length > 0) { return discount_price.text().replace(/[^0-9.]/g,'');}\n\telse if(retail_price.length > 0) { return retail_price.text().replace(/[^0-9.]/g,'');}\n\telse { return false; }\n})();","trigger":""},{"name":"prod_name","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"(function() {\n var name = jQuery('#product').find('meta[itemprop=name]').attr('content') || jQuery('#detailsProductType[qa-id=\"product-title\"]').text().trim();\n if(name) {\n return name.replace('“', '\"').replace('”', '\"').replace(/[^\\x20-\\x7E]/g, '');\n }\n return false;\n})();","trigger":""},{"name":"in_stock","polling":"vars","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"jQuery('button[id*=addToCart-btn]').eq(0).text().toLowerCase().indexOf('add to cart') > -1;","trigger":""},{"name":"mobile_cart_qty","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"0","code":"(function() {\n var mobileCartQty = jQuery('#cart_count');\n if (mobileCartQty.is(':visible') && mobileCartQty.text() !== '') {\n return mobileCartQty.text();\n } else {\n return 0;\n }\n})()","trigger":""},{"name":"pagetype","polling":"vars","persist":"no","page_types":[],"testmode":false,"default":"false","code":"bouncex.website.pts;","trigger":""},{"name":"imageurl","polling":"vars","persist":"no","page_types":[],"testmode":false,"default":"","code":"bouncex.website.pts == 'product' && jQuery('meta[property=\"og:image\"]').attr('content');","trigger":""},{"name":"ibx_test","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"window.location.href.indexOf('ibx_test') > -1 || null;","trigger":""},{"name":"cart","polling":"none","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":""},{"name":"pathname","polling":"none","persist":"no","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":""},{"name":"bxoffer","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"(function(){\n\tfunction getParam(p){\n\t var t = '[\\\\?&]' + p + '=([^&#]*)'\n\t\t , i = new RegExp(t)\n\t\t , a = i.exec(window.location.href);\n\t\treturn null === a ? '' : decodeURIComponent(a[1]);\n\t}\n\tvar offer = getParam('bxoffer').split('_');\n\tif (offer.length > 1) return offer[1] === 'PO' ? offer[0] + '% off' : '$' + offer[0] + ' off';\n})();","trigger":"pageload"},{"name":"attv_present","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('#attentive_creative:visible').length > 0;","trigger":"pageload"},{"name":"logged_in_identified","polling":"all","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"},{"name":"logged_in_email","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"bouncex.utils.getNestedProp('s6user.email') || null;","trigger":"pageload"}],"dgu":"pixel.cdnwidget.com","dgp":false,"ba":{"enabled":0,"fbte":0},"biu":"assets.bounceexchange.com","bau":"api.bounceexchange.com","beu":"events.bouncex.net","ibx":{"tjs":"","cjs":"","miw":0,"mibcx":1,"te":1,"cart_rep":{"get":"","set":""},"ulpj":{"BSIN":"espemailid"},"cus":"","miw_exclude":"","enabled":1},"etjson":null,"osre":true,"osru":"osr.bounceexchange.com/v1/osr/items","checkDfp":false,"gamNetwork":"","spa":1,"spatm":0,"preinit_cjs":"SinglePageApp.setCustomParams({\n currentPageIdentifier: function() {\n return window.location.href;\n }\n});","crs":{"integrations":null,"pageCount":null},"mat":0,"math":0,"cpnu":"coupons.bounceexchange.com","dfpcms":0,"sms":{"optm":"","eventSharing":false,"shqId":"","enabled":0},"pde":true,"fmc":["AW","AI","AG","AR","BS","BB","BZ","BM","BO","BQ","BR","CA","KY","CL","CO","CR","CU","CW","DM","DO","EC","SV","GF","GL","GD","GT","GP","HT","HN","JM","MQ","MX","MS","NI","PA","PY","PE","PR","PM","MF","BL","KN","LC","VC","SX","SR","TT","US","UM","UY","VE","VG","VI"],"fme":true,"fmx":"#c_to_email","sdk":{"android":{"enabled":false,"enabledVersions":[],"eventModifications":null},"ios":{"enabled":false,"enabledVersions":[],"eventModifications":null}},"onsite":{"enabled":1},"ads":{"enabled":0},"pubs":{"enabled":0},"websdk":{"enabled":0},"ga4_property_id":"252743698","ga4_measurement_id":"G-TR88PG3WYC","tag_state_domain":"api.bounceexchange.com"} ; bouncex.tag = 'tag3'; bouncex.$ = window.jQuery; bouncex.env = 'production'; bouncex.restrictedTlds = {"casl":{"ca":1},"gdpr":{"ad":1,"al":1,"at":1,"ax":1,"ba":1,"be":1,"bg":1,"by":1,"xn--90ais":1,"ch":1,"cy":1,"cz":1,"de":1,"dk":1,"ee":1,"es":1,"eu":1,"fi":1,"fo":1,"fr":1,"uk":1,"gb":1,"gg":1,"gi":1,"gr":1,"hr":1,"hu":1,"ie":1,"im":1,"is":1,"it":1,"je":1,"li":1,"lt":1,"lu":1,"lv":1,"mc":1,"md":1,"me":1,"mk":1,"xn--d1al":1,"mt":1,"nl":1,"no":1,"pl":1,"pt":1,"ro":1,"rs":1,"xn--90a3ac":1,"ru":1,"su":1,"xn--p1ai":1,"se":1,"si":1,"sj":1,"sk":1,"sm":1,"ua":1,"xn--j1amh":1,"va":1,"tr":1}}; bouncex.client = { supportsBrotli: 1 }; bouncex.assets = {"ads":"bb795faa3645fe2b9f103307baeb4457","creativesBaseStyles":"a53944a2","gpsAuction":"4c2f55cfb6b81a4b5a1dd966c7c4d150","inbox":"02aca5df0e176b8810a86da97ac05424","onsite":"0e56ab6ba004ee080ce3deb3edae35e9","sms":"e39203556bab2366e56296ce42e974a7","websdk":"c9f501637572c332d19cc93fe96d6f6c"}; bouncex.push = function(pushData) { bouncex.pushedData.push(pushData); } var runtime = document.createElement('script'); runtime.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/runtime_6459738026535cda4232dc813c61447d.br.js'); runtime.setAttribute('async', 'async'); runtime.setAttribute('onload', 'bouncex.initializeTag()'); bouncex.initializeTag = function() { var script = document.createElement('script'); script.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/main-v2_f76bc8dd6d7924b7125a38d22086b896.br.js'); script.setAttribute('async', 'async'); document.body.appendChild(script); var deviceGraphScript = document.createElement('script'); deviceGraphScript.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/cjs_min_3a843477d8e318f67237a66d0a58c542.js'); deviceGraphScript.setAttribute('async', 'async'); var dgAttrs = [{"Key":"id","Value":"c.js"},{"Key":"async","Value":"true"},{"Key":"data-apikey","Value":"2^HIykD"},{"Key":"data-cb","Value":"bouncex.dg.initPostDeviceGraph"},{"Key":"data-bx","Value":"1"},{"Key":"data-gm","Value":"1"},{"Key":"data-fire","Value":"1"}]; if (dgAttrs) { for (var i = 0; i < dgAttrs.length; i++) { deviceGraphScript.setAttribute(dgAttrs[i].Key, dgAttrs[i].Value); } } document.body.appendChild(deviceGraphScript); bouncex.initializeTag = function() {}; }; document.body.appendChild(runtime); } } if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", bxBootstrap); } else { bxBootstrap(); }})();