(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":5173,"name":"Buckle","cookie_name":"bounceClientVisit5173","domain":"buckle.com","ct":"fp_local_storage","ally":0,"ei":0,"tcjs":"","cjs":"","force_https":false,"waypoints":false,"content_width":900,"gai":"UA-2046853-1","swids":"","sd":0,"ljq":"auto","campaign_id":0,"is_preview":false,"aco":{"first_party_limit":"3500","local_storage":"1"},"cmp":{"gdpr":0,"gmp":0,"whitelist_check":0},"burls":[],"ple":false,"fbe":true,"ffs":"","mas":2,"map":1,"gar":true,"ete":1,"ettm":false,"etjs":"/* --------------------------------- HELPERS -------------------------------- */\n\nfunction getUrl() {\n return bouncex.utils.url.allowParams();\n}\n\nfunction setVarAndCookie(varName, value) {\n bouncex.setVar(varName, value);\n bouncex.setBounceCookie();\n}\n\n/* ------------------------------ ITEM TRACKING ----------------------------- */\n\nfunction getDataLayerElement() {\n var dataLayer = window.dataLayer || [];\n for (var i = dataLayer.length - 1; i >= 0; i--) {\n var prod = bouncex.utils.getNestedProp('ecommerce.items', [], dataLayer[i]);\n if (prod.length) {\n return prod[0];\n }\n }\n\n return {};\n}\n\n\nfunction getItem() {\n var el = getDataLayerElement() || {};\n return {\n id: el.item_id,\n copy: jQuery('meta[name=\"og:image:alt\"]').attr('content') || el.name,\n category: el.category || 'Global',\n url: getUrl(),\n imageurl: el.image || jQuery('meta[name=\"og:image\"]:first'). attr('content'),\n price: bouncex.vars.prod_price || bouncex.utils.getNestedProp('price', '', el),\n instock: el.inStock\n };\n}\n\nfunction isExcluded(item) {\n return item.url.indexOf('giftcard') > -1 || item.url.indexOf('gift-card') > -1;\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.price &&\n !!item.url &&\n !!item.imageurl;\n },\n function() {\n if (isExcluded(item)) {\n return;\n }\n bouncex.push(['item', item]);\n\n fireViewItem(item.id);\n\n if (bouncex.testmode.bxdev){\n tInitializeATCClickTracking(item.id);\n return;\n }\n\n initializeATCClickTracking(item.id);\n\n\n },\n 10\n );\n}\n\nfunction fireViewItem(itemId){\n bouncex.push(['view item', {\n 'item:id': itemId,\n 'item:itemgroupid': itemId\n }]);\n}\n\n/* ---------------------------- CATEGORY TRACKING --------------------------- */\n\nfunction getItemIdsCat() {\n var dataLayer = window.dataLayer || [];\n\n for (var i = 0; i < dataLayer.length; i++) {\n var ids = bouncex.utils.getNestedProp('wunderkindProductIds', [], dataLayer[i]);\n if (ids.length) {\n return ids.join(',');\n }\n }\n\n return '';\n}\n\nfunction getCategoryObject() {\n return {\n 'page:url': getUrl(),\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 },\n 10\n );\n}\n\nfunction initializeQuickViewTracking(){\n bouncex.et.onVisible('.quick-shop-product-detail', function(el){\n var itemId = el.attr('id') ? el.attr('id').split('qv-').pop() : '';\n if(itemId){\n fireViewItem(itemId);\n initializeATCClickTracking(itemId);\n }\n });\n}\n\n/* ------------------------------- CART EVENTS ------------------------------ */\n\nfunction initializeATCClickTracking(itemId) {\n var ATCbutton = '#add-to-bag-button:not(\".disabled\")';\n bouncex.off(jQuery(document), 'click.bx', ATCbutton);\n bouncex.on(jQuery(document), 'click.bx', function(){\n bouncex.push(['add to cart', {'item:id': itemId}]);\n setVarAndCookie('cart', true);\n }, ATCbutton);\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 setVarAndCookie('cart', false);\n }\n });\n}\n\nfunction initializeCartEvents() {\n emptyCart();\n\n if (bouncex.testmode.bxdev){\n tReplen();\n return;\n }\n\n bouncex.et.cart.init({\n replenish: function() { },\n replenishmentType: 'single'\n });\n}\n\nif (bouncex.testmode.bxdev){\n bouncex.log('%cupdate', 'color:red;');\n function tInitializeATCClickTracking(itemId) {\n var ATCbutton = '#add-to-bag-button:not(\".disabled\")',\n cookie;\n\n bouncex.off(jQuery(document), 'click.bx', ATCbutton);\n bouncex.on(jQuery(document), 'click.bx', function(){\n bouncex.et.onTrue(function(){\n cookie = getDlCookie();\n return cookie || '';\n }, function(){\n bouncex.push([\n 'add to cart',\n {\n 'item:id': itemId,\n 'cart:token': cookie\n }\n ]);\n\n if (bouncex.vars.cart) {\n return;\n }\n\n setVarAndCookie('cart', true);\n });\n }, ATCbutton);\n }\n\n function getDlCookie(){\n var arr = window.dataLayer,\n ecomObj;\n\n for (var i = arr.length - 1; i >= 0; i--) {\n if (arr[i].event === 'cartOnChange'){\n ecomObj = arr[i].cart;\n return ecomObj.encryptedCartId;\n }\n }\n }\n\n function tReplen(){\n bouncex.et.cart.init({\n replenishmentType: 'cookie',\n replenish: function(cart) {\n bouncex.utils.cookies.create({\n name: 'cart',\n value: cart.token\n });\n replenComplete();\n\n }\n });\n }\n\n function replenComplete() {\n window.location.href = window.location.origin +\n window.location.pathname +\n '?bx_replen=true';\n }\n}\n\n/* ------------------------------ USER TRACKING ----------------------------- */\n\nfunction getUserEmail() {\n return bouncex.utils.gtmLookup('customerEmail') || '';\n}\n\nfunction initializeUserTracking() {\n var userEmail;\n\n if (!bouncex.vars.logged_in || !!bouncex.vars.logged_in_identified) {\n return;\n }\n\n userEmail = getUserEmail();\n\n if (!bouncex.utils.validate.email(userEmail)) {\n return;\n }\n\n bouncex.push([\n 'user',\n {\n 'email': userEmail,\n 'source': 'LoggedIn'\n }\n ]);\n setVarAndCookie('logged_in_identified', true);\n}\n\n/* --------------------------- INITIALIZE TRACKING -------------------------- */\n\nfunction isValidDomain() {\n return getUrl().indexOf('https://www.buckle.com/') > -1 && getUrl().indexOf('links.thebuckle.com') === -1 && getUrl().indexOf('&utm_') === -1;\n}\n\nfunction isEn() {\n return jQuery('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 initializeQuickViewTracking();\n\n switch(bouncex.website.pts) {\n case 'category':\n case 'search':\n initializeCategoryEvents();\n break;\n case 'product':\n initializeItemEvents();\n break;\n default:\n break;\n }\n}\n\ninit();\n","dge":true,"bxidLoadFirst":false,"pie":false,"cme":true,"gbi_enabled":0,"bpush":false,"pt":{"cart":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"document.querySelector('h1').innerText.toLowerCase().indexOf('your bag') > -1 || window.location.pathname === '/cart'"}],[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/cart"}]]},"category":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"document.getElementsByClassName('category').length === 1\n"}],[{"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 === '/' || document.getElementsByClassName('homepage').length > 0;"}]]},"product":{"testmode":false,"val":[[{"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":{"blank_site_element":""},"vars":[{"name":"logged_in","polling":"none","persist":"no","page_types":[],"testmode":false,"default":"false","code":"bouncex.utils.gtmLookup('customerEmail').length > 0;","trigger":""},{"name":"ever_logged_in","polling":"none","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"bouncex.vars.logged_in || null;","trigger":""},{"name":"cart_qty","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"0","code":"Number(jQuery('.bag-size').text());","trigger":""},{"name":"cart_value","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"0","code":"(function() {\n if (bouncex.website.pts === 'cart') {\n return Number(jQuery('#subtotal-amount').text().replace(/[^0-9.]/g, '')) || null;\n }\n return null;\n})();\n","trigger":""},{"name":"prod_price","polling":"none","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"Number(jQuery('#pdp-form .price-range').text().replace(/[^0-9.]/g, '')) || null;","trigger":""},{"name":"prod_name","polling":"none","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"jQuery('#product-name-id').text();","trigger":""},{"name":"in_stock","polling":"none","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"true;","trigger":""},{"name":"submitted_onsite","polling":"all","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"jQuery('#newsletterSuccess:visible').length > 0 || null;","trigger":""},{"name":"page_url","polling":"none","persist":"no","page_types":["category","search"],"testmode":true,"default":"false","code":"","trigger":""},{"name":"cart_token","polling":"none","persist":"no","page_types":[],"testmode":true,"default":"false","code":"null;","trigger":"pageload"},{"name":"cart_items","polling":"none","persist":"no","page_types":[],"testmode":true,"default":"false","code":"null;","trigger":"pageload"},{"name":"cart","polling":"none","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"},{"name":"cookie_modal_present","polling":"all","persist":"no","page_types":[],"testmode":true,"default":"false","code":"null;","trigger":"pageload"},{"name":"page_type","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"bouncex.website.pts;","trigger":"pageload"},{"name":"logged_in_identified","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"},{"name":"feedback_survey_present","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"document.querySelectorAll('.fsrInvite, .acsClassicInvite').length > 0;","trigger":"pageload"},{"name":"modal_visible","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('.modal-content:visible').length > 0;","trigger":"pageload"},{"name":"entrance_ecap_closed","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"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":{"smtrctid":"espemailid"},"cus":"","miw_exclude":"","enabled":1},"etjson":null,"osre":true,"osru":"osr.bounceexchange.com/v1/osr/items","checkDfp":false,"gamNetwork":"","spa":0,"spatm":1,"preinit_cjs":"// Helper Functions\nfunction getItemsArry(obj, objPath, idKey, qtyKey, priceKey, isPurchase, altProdId) {\n var itemArry = bouncex.utils.getNestedProp(objPath, [], obj).map(function(e) {\n var prodId = bouncex.utils.getNestedProp(idKey, '', e) || altProdId,\n prodQty = bouncex.utils.getNestedProp(qtyKey, 1, e),\n prodPrice = bouncex.utils.getNestedProp(priceKey, '', e);\n \n if (!!prodId && !!prodPrice && !isPurchase) {\n return {\n ProductId: prodId,\n UnitPrice: +prodPrice,\n Quantity: +prodQty\n }\n }\n\n if (!!prodId && !!prodPrice && isPurchase) {\n return {\n productId: prodId,\n price: +prodPrice,\n qty: +prodQty\n }\n }\n });\n\n return itemArry.length > 0 && itemArry;\n}\n\nfunction difference(a1, a2) {\n var result = [];\n if (!!a1 && !!a2) {\n for (var i = 0; i < a1.length; i++) {\n if (a2.indexOf(a1[i]) === -1) {\n result.push(a1[i]);\n }\n }\n }\n return result;\n}\n\nlet segments = {\n /* PROPERTIES */\n testMode: false,\n interceptEnabled: true,\n mirrorEnabled: false,\n arrayObserverEnabled: true,\n /* METHODS */\n /* Intercept Events */\n useIntercept() {\n if (!this.interceptEnabled) {\n return;\n }\n bouncex.utils.shqInterceptEvent = {\n cartAdd: true,\n categoryView: true,\n purchase: true,\n cartEmpty: function() {\n return bouncex.website.pts === 'cart' && _shq.push(['onCartEmpty']);\n }\n };\n },\n processObserver(e) {\n while (e.length) {\n let obj = e.shift();\n\n // Category Pageview\n if (bouncex.website.pts === 'category') {\n var catId = bouncex.utils.getNestedProp('voltageCategoryId','',obj);\n if (!!catId) {\n _shq.push(['onCategory', {\n catId: catId,\n catName: catId\n }]);\n }\n }\n // Add To Cart - Quickview & PDP\n if (obj.event === 'addToCart') { \n var prodId = bouncex.utils.getNestedProp('fbAddToCartItemProductCode', '', obj),\n atcItem = getItemsArry(obj, 'ecommerce.add.products', '', 'quantity', 'price', false, prodId);\n\n if (!!atcItem && atcItem.length > 0) {\n _shq.push(['onCartAdd', {\n Items: atcItem,\n Total: +bouncex.utils.getNestedProp('UnitPrice',0,atcItem[0]) * +bouncex.utils.getNestedProp('Quantity',1,atcItem[0])\n }]);\n }\n }\n // Search Pageview\n if (obj.event === 'noResultsSearch' || obj['BLC_PAGE_TYPE'] === 'search') { \n var sp = bouncex.utils.getNestedProp('searchTerm', '', obj);\n\n if (!!sp) {\n _shq.push(['onSearch', {\n searchPhrase: sp\n }]);\n }\n }\n // onCartView\n if (obj.event === 'view_cart') { \n var itemCartArry = getItemsArry(obj, 'ecommerce.items', 'item_id', '', 'price', false),\n cartTotal = bouncex.utils.getNestedProp('ecommerce.value', '', obj);\n\n if (!!itemCartArry && itemCartArry.length > 0 && !!cartTotal) {\n // stores cart array for onCartRemove event\n localStorage.setItem('$cart', JSON.stringify(itemCartArry));\n\n _shq.push(['onCartView', {\n Items: itemCartArry,\n Total: cartTotal\n }])\n }\n }\n // onCartRemove\n if (obj.event === 'remove_from_cart') { \n var oldCartArry = JSON.parse(localStorage.getItem('$cart')),\n newCartArry;\n\n bouncex.et.onTrue(function() {\n newCartArry = JSON.parse(localStorage.getItem('$cart'));\n\n return newCartArry.length < oldCartArry.length;\n }, function() {\n var oldCartIds = oldCartArry.map(function(e) { return e.ProductId; }),\n newCartIds = newCartArry.map(function(e) { return e.ProductId; }),\n rmvProdId = difference(oldCartIds, newCartIds),\n itemRmvObj = oldCartArry.filter(function(e) { return e.ProductId === rmvProdId[0]; });\n\n if (!!itemRmvObj && itemRmvObj.length > 0) {\n _shq.push(['onCartRemove', {\n Items: itemRmvObj,\n Total: +bouncex.utils.getNestedProp('UnitPrice', 0, itemRmvObj[0])\n }]);\n }\n }, 25);\n }\n // Purchase\n if (obj.event === 'orderCompleted') {\n var itemPurchArry = getItemsArry(obj, 'ecommerce.items', 'productCode', 'quantity', 'salePrice', true),\n cartTotal = +bouncex.utils.getNestedProp('ecommerce.value', '', obj),\n oid = bouncex.utils.getNestedProp('ecommerce.transaction_id', '', obj);\n\n if (itemPurchArry.length > 0 && !!cartTotal && !!oid) {\n _shq.push(['onPurchase', {\n orderItems: itemPurchArry,\n total: cartTotal,\n orderId: oid\n }])\n } else {\n _shq.push(['onPurchase', {\n usebasket: true,\n orderId: oid || 'no-orderid-' + Math.floor(Math.random() * 100000000)\n }]);\n }\n }\n }\n //Category Pageview for Holiday-gift-guide\n if(window.location.pathname ===\"/holiday-gift-guide\"){\n _shq.push(['onCategory', {\n catId: \"holiday-gift-guide\",\n catName: \"holiday-gift-guide\"\n }]);\n }\n //Category Pageview for Gift Card Page\n if (window.location.pathname === '/giftcard') {\n _shq.push(['onCategory', {\n catId: \"Gift card\",\n catName: \"Gift card\"\n }]);\n }\n },\n arrayObserver() {\n if (!this.arrayObserverEnabled) {\n return;\n }\n bouncex.et.onTrue(\n () => {\n return bouncex.utils.getNestedProp('window._shq.loaded');\n },\n () => {\n _shq.ArrayObserver(window.dataLayer, (e) => {\n this.processObserver(e);\n },{\n catchUp: true\n });\n }\n );\n },\n /* Initialize Segments Tracking */\n init() {\n // test mode\n if (this.testMode && !bouncex.testmode.bxdev) return;\n // attach object to window & bouncex.utils\n if (!bouncex.utils) {\n return;\n }\n bouncex.utils.segments = this;\n // initialize intercept and mirror, comment out if not needed\n this.useIntercept();\n // this.useMirror();\n this.arrayObserver();\n },\n};\n\nsegments.init();\n","crs":{"integrations":null,"pageCount":null},"mat":0,"math":0,"cpnu":"coupons.bounceexchange.com","dfpcms":0,"sms":{"optm":"Hit 'Send' to sign up for automated, recurring Buckle mktg txts (like cart reminders) to this #, per terms.","eventSharing":true,"shqId":"pnwiggsula-1","enabled":1},"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":"","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":"282511744","ga4_measurement_id":"G-EPVRF051T8","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":"84086864ba41fb9d07e4d5bd90a3f00f","creativesBaseStyles":"a53944a2","gpsAuction":"bbb80866120d17013073bb6d284cbd6b","inbox":"75060a85c1a4aebcc6f779b9e84db722","onsite":"abbdf7a49be9b52b097917b7b527b262","sms":"e39203556bab2366e56296ce42e974a7","websdk":"0df0ee1d39c3e46e93a5041146975258"}; bouncex.push = function(pushData) { bouncex.pushedData.push(pushData); } var runtime = document.createElement('script'); runtime.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/runtime_c81e76ee00d795b1eebf8d27949f8dc5.br.js'); runtime.setAttribute('async', 'async'); bouncex.initializeTag = function() { var script = document.createElement('script'); script.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/main-v2_081f7dfd17da237627b0b920d38525e6.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"}]; 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() {}; }; runtime.onload = bouncex.initializeTag; document.body.appendChild(runtime); } window._shq = window._shq || []; var eventSharingCartridge = document.createElement('script'); eventSharingCartridge.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/wknd_audiences_2648fa8509e4b3a98a2790bb8171ddc1.js'); eventSharingCartridge.setAttribute('async', 'async'); document.body.appendChild(eventSharingCartridge); } if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", bxBootstrap); } else { bxBootstrap(); }})();