!function(t){var e={};function n(i){if(e[i])return e[i].exports;var o=e[i]={i:i,l:!1,exports:{}};return t[i].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=t,n.c=e,n.d=function(t,e,i){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(i,o,function(e){return t[e]}.bind(null,o));return i},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=2)}([function(t,e,n){"use strict";(function(t){n.d(e,"a",(function(){return X})),n.d(e,"b",(function(){return g})),n.d(e,"c",(function(){return U})),n.d(e,"d",(function(){return R})),n.d(e,"e",(function(){return Q})),n.d(e,"f",(function(){return A})),n.d(e,"g",(function(){return S})),n.d(e,"h",(function(){return T})),n.d(e,"i",(function(){return B})),n.d(e,"j",(function(){return d})),window.encodeURIComponent;const i={ARROW_DOWN:"ArrowDown",ARROW_LEFT:"ArrowLeft",ARROW_RIGHT:"ArrowRight",ARROW_UP:"ArrowUp",ESCAPE:"Escape",ENTER:"Enter",SPACEBAR:" ",TAB:"Tab"},o={Down:i.ARROW_DOWN,Right:i.ARROW_RIGHT,Left:i.ARROW_LEFT,Up:i.ARROW_UP,Esc:i.ESCAPE,Spacebar:i.SPACEBAR,Tab:i.TAB};function s(t){return o[t]||t}function r(t,e){if(!t)return null;let n=t.matches||t.webkitMatchesSelector||t.mozMatchesSelector||t.msMatchesSelector;for(;t&&!n.call(t,e);)t=t.parentElement;return t}function a(t,e,n){const i=new RegExp("([\\?&])".concat(n?e:encodeURIComponent(e),"=([^&#]*)")).exec(t);return i&&(n?i[2]:decodeURIComponent(i[2]))}function l(t,e,n,i){if(!t||!e)throw new Error("Required param of addQueryParam missing: url = ".concat(t,",  key = ").concat(e));e=encodeURIComponent(e),n=encodeURIComponent(n);const o=a(t,e,!0);if(o)return i?t.replace(o,n):t;{const i=t.indexOf("?");let[o,s]=t.split("#"),r="&";return i<0?r="?":i===t.length-1&&(r=""),s&&(s="#".concat(s)),"".concat(o).concat(r).concat(e,"=").concat(n).concat(s||"")}}function c(t,e,n={}){const i=document.createEvent("CustomEvent");i.initCustomEvent(e,!0,!0,n),t.dispatchEvent(i)}var d=Object.freeze({__proto__:null,closest:r,onload:function(t){"complete"===document.readyState?t():window.addEventListener("load",()=>{setTimeout(t)})},makeArray:function(t){return null==t||"object"!=typeof t?[]:Array.prototype.slice.call(t)},outerWidth:function(t){let e=t.offsetWidth,n=getComputedStyle(t);return e+=(parseInt(n.marginLeft,10)||0)+(parseInt(n.marginRight,10)||0),e},elementInViewport:function(t){const e=t.getBoundingClientRect(),n=window.innerHeight||document.documentElement.clientHeight,i=window.innerWidth||document.documentElement.clientWidth,o=e.top<=n&&e.top+e.height>=0,s=e.left<=i&&e.left+e.width>=0;return o&&s},hasElementScrolledToThreshold:function({scrollTop:t=scrollY,clientHeight:e=window.innerHeight,scrollHeight:n=document.body.scrollHeight}={},i=0){return t>=n-(e+e*i)},getQueryParam:a,addTrackingCode:function(t,e){return l(t,"trk",e)},addQueryParam:l,debounce:function(t,e,n){if("function"!=typeof t)throw new TypeError("Expected a function.");let i;return(...o)=>{const s=n&&!i;clearTimeout(i),i=setTimeout(()=>{i=null,n||t.apply(this,o)},e),s&&t.apply(this,o)}},getCookie:function(t){const e=document.cookie.match(new RegExp("(^| )"+t+"=([^;]+)"));return e&&e[2]},dispatchCustomEvent:c,getDeferredPromise:function(){let t,e;const n=new Promise((n,i)=>{t=n,e=i});return n.resolve=t,n.reject=e,n}});class h{constructor(t,e,{mainButton:n,closeButton:i},o={}){if(!t)throw Error("An element must be provided to Collapsible");if(!e)throw Error("An list element must be provided to Collapsible");if(!n)throw Error("A main button element must be provided to Collapsible");this.el=t,this.listEl=e;let{currentListItem:s=e.children[0],isOpen:r=!1}=o;this.currentListItem=s,this.isOpen=r,this.mainButton=n,this.closeButton=i,this.buttons=[n],this.mainButton.addEventListener("click",()=>this.closeButton?this._open():this._toggle()),this.mainButton.addEventListener("keydown",t=>this._onButtonKeyDown(t)),this.mainButton.addEventListener("keyup",t=>this._onButtonKeyUp(t)),this.closeButton&&(this.closeButton.addEventListener("click",()=>this.close()),this.closeButton.addEventListener("keydown",t=>this._onButtonKeyDown(t)),this.buttons.push(this.closeButton)),this.listEl.addEventListener("keydown",t=>this._onListKeyDown(t))}_toggle(){this.isOpen?this.close():this._open()}_onButtonKeyDown(t){const e=s(t.key);switch(e){case i.ENTER:case i.SPACEBAR:t.preventDefault(),this.isOpen?this.close():this._open(e);break;case i.ARROW_UP:this.isOpen||this._open();break;case i.ARROW_DOWN:this.isOpen&&this.close()}}_onButtonKeyUp(t){const e=s(t.key);this.isOpen&&e===i.SPACEBAR&&(t.preventDefault(),c(this.currentListItem,"focus"))}_onListKeyDown(t){let e;switch(s(t.key)){case i.ESCAPE:this.isOpen&&this.close();break;case i.ARROW_LEFT:e=r(t.target,"li");let n=e.previousElementSibling;n&&c(n,"focus");break;case i.ARROW_RIGHT:e=r(t.target,"li");let o=e.nextElementSibling;o&&c(o,"focus")}}_open(t){this.isOpen||(this.isOpen=!0,this.buttons.forEach(t=>t.setAttribute("aria-expanded",this.isOpen)),c(this.el,"open"),t!==i.SPACEBAR&&c(this.currentListItem,"focus"))}close({shouldReturnFocusToTrigger:t=!0}={}){this.isOpen&&(this.isOpen=!1,this.buttons.forEach(t=>t.setAttribute("aria-expanded",this.isOpen)),c(this.el,"close"),t&&this.mainButton.focus())}}const u=".".concat("collapsible-dropdown","__list"),p=".".concat("collapsible-dropdown","__button");class m{constructor(t,e=(t=>t),{currentListItem:n,dropdownTriggerEl:i,listEl:o}={}){if(!t)throw Error("An element must be provided to CollapsibleDropdown");this.el=t,this.listEl=o||this.el.querySelector(u),this.dropdownTriggerEl=i||this.el.querySelector(p),this._getFocusItemFromListItem=e,this.hideClass="hidden",this.collapsible=new h(t,this.listEl,{mainButton:this.dropdownTriggerEl},{currentListItem:n}),this._handleBodyClick=this._handleBodyClick.bind(this),this._focusOutsideDropdown=this._focusOutsideDropdown.bind(this),this._attachEventListeners()}_attachEventListeners(){this.el.addEventListener("open",()=>this._showDropdownList()),this.el.addEventListener("close",()=>this._hideDropdownList()),this.listEl.addEventListener("focus",t=>this._focusItem(t))}_focusItem(t){const e=t.target;if(e){const t=this._getFocusItemFromListItem(e);t&&t.focus()}}_handleBodyClick(t){this.el.contains(t.target)||this.collapsible.close({shouldReturnFocusToTrigger:!1})}_showDropdownList(){document.addEventListener("mousedown",this._handleBodyClick),this.el.addEventListener("focusout",this._focusOutsideDropdown),this.listEl.classList.remove(this.hideClass)}_hideDropdownList(){document.removeEventListener("mousedown",this._handleBodyClick),this.el.removeEventListener("focusout",this._focusOutsideDropdown),this.listEl.classList.add(this.hideClass)}_focusOutsideDropdown(t){t.relatedTarget&&!this.el.contains(t.relatedTarget)&&this.collapsible.isOpen&&this.collapsible.close()}}const b=".".concat("language-selector__link"),_="".concat(b,"--selected");class g{constructor(t){if(!t)throw Error("An element must be provided to LanguageSelector");this._el=t,this.listEl=this._el.querySelector(".collapsible-dropdown__list"),this.dropdownTriggerEl=this._el.querySelector(".language-selector__button"),this.currentListItem=this.listEl.querySelector(_),this.getFocusItemFromListItem=t=>t.classList.contains("language-selector__link")?t:t.querySelector(b),this.collapsibleDropdown=new m(t,this.getFocusItemFromListItem,{dropdownTriggerEl:this.dropdownTriggerEl,currentListItem:this.currentListItem}),this._attachCustomEventListeners()}_attachCustomEventListeners(){this.listEl.addEventListener("click",this._handleLocaleButtonClick.bind(this))}_handleLocaleButtonClick(t){const e=t.target.getAttribute("data-locale");if(e){const t=this.getLangCookieString(e);null!==t&&(document.cookie=t),location.reload()}}getLangCookieString(t){let e=null;if(null!==t){const n=t.toLocaleLowerCase().replace("_","-"),i=function(t){let e=t.domain;return e?e.split(".").slice(-2).join("."):""}(document);let o=new Date;o.setTime(o.getTime()+31536e6),e='lang="v=2&lang='.concat(n,'";path=/;domain=').concat(i,";expires=").concat(o.toUTCString())}return e}}var f="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:void 0!==t?t:"undefined"!=typeof self?self:{};parseInt;var w="object"==typeof f&&f&&f.Object===Object&&f,E="object"==typeof self&&self&&self.Object===Object&&self;function y(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function v(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);e&&(i=i.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,i)}return n}function O(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?v(Object(n),!0).forEach((function(e){y(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):v(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}w||E||Function("return this")(),Object.prototype.toString,Math.max,Math.min,"".concat(".member-nav-menu","__list"),"".concat(".member-nav-menu","__item-link"),"".concat(".member-nav-menu","__button"),"".concat("tab-toggle","--active");const L={COPY:"copy",LINKEDIN:"linkedin",TWITTER:"twitter",FACEBOOK:"facebook"},k=Object.keys(L).map(t=>L[t]),S={EMBED_SHARE_OVERLAY_HIDE_EVENT:"embedOverlayHidden",EMBED_SHARE_OVERLAY_SHOW_EVENT:"embedOverlayShown"};class A{constructor(t,{globalNavigator:e=navigator,globalWindow:n=window}={}){if(!t)throw new Error("No element passed in");this.navigator=e,this.window=n,this.el=t,this._encodedShareMessage=this.window.encodeURIComponent(this.el.getAttribute("data-share-message"))||"",this._encodedShareUrl=this.window.encodeURIComponent(this.window.location.href),this.stateCheckboxEl=this.el.querySelector(".social-share__state"),this.isEmbed=this.el.classList.contains("social-share--embed"),this.closeButton=this.el.querySelector(".".concat("social-share__embed-overlay-dismiss")),this.dropdown=this.el.querySelector("#".concat("social-share__dropdown")),this.showString=this.stateCheckboxEl.getAttribute("data-show-dialog-string"),this.hideString=this.stateCheckboxEl.getAttribute("data-hide-dialog-string"),this.onBodyClick=this._handleBodyClick.bind(this),this.onFocusOut=this._handleFocusOutDropdown.bind(this),this.onEmbedOverlayCloseClick=()=>{this.stateCheckboxEl.checked=!1,this.onClose()},this.init()}init(){if(this.stateCheckboxEl.addEventListener("click",this.handleStateChange.bind(this)),this.el.querySelector(".social-share__options").addEventListener("click",({target:t})=>{const e=t.classList.contains("social-share__item")?t:r(t,".".concat("social-share__item"));e&&this.share(e.dataset.shareService)}),this.isEmbed&&!this.navigator.hasOwnProperty("clipboard")){const t=this.el.querySelector(".embed-overlay__copy-btn");t.parentNode.removeChild(t)}this.el.hasAttribute("data-share-url")&&this.el.getAttribute("data-share-url")&&(this._encodedShareUrl=this.window.encodeURIComponent(this.el.getAttribute("data-share-url")))}_handleBodyClick(t){t.target===this.el||this.el.contains(t.target)||(this.stateCheckboxEl.checked=!1,this.onClose())}handleStateChange({target:t}){t.checked?this.onOpen():this.onClose()}onOpen(){this.isEmbed?(this.closeButton.addEventListener("click",this.onEmbedOverlayCloseClick),c(this.el,"embedOverlayShown")):(document.addEventListener("click",this.onBodyClick),document.addEventListener("focusin",this.onFocusOut)),this.stateCheckboxEl.setAttribute("aria-label",this.hideString),this.stateCheckboxEl.setAttribute("aria-expanded","true")}onClose(){this.isEmbed?(this.closeButton.removeEventListener("click",this.onEmbedOverlayCloseClick),c(this.el,"embedOverlayHidden")):(document.removeEventListener("click",this.onBodyClick),document.removeEventListener("focusin",this.onFocusOut)),this.stateCheckboxEl.setAttribute("aria-label",this.showString),this.stateCheckboxEl.setAttribute("aria-expanded","false")}_handleFocusOutDropdown(t){this.dropdown.contains(t.target)||(this.stateCheckboxEl.checked=!1,this.onClose(),this.el.focus())}_copyText(){let t=this.el.querySelector(".".concat("embed-overlay__copy-text-input")).value;t&&this.navigator.clipboard.writeText(t)}_getServiceUrl(t){return{linkedin:"https://www.linkedin.com/shareArticle?mini=true&url=".concat(this._encodedShareUrl,"&title=").concat(this._encodedShareMessage),twitter:"https://twitter.com/intent/tweet?url=".concat(this._encodedShareUrl,"&text=").concat(this._encodedShareMessage),facebook:"https://www.facebook.com/sharer/sharer.php&u=".concat(this._encodedShareUrl)}[t]||""}share(t){if(t===L.COPY)this._copyText();else if(k.includes(t)){const e=this.window.location.href,n=this._getServiceUrl(t,e);this.window.open(n,t,"height=600,width=1000")}}}const C={};function T(t){const e=document.getElementById(t);if(!e&&void 0!==C[t])return C[t];if(!e)return console.warn("Element with id: ".concat(t," not found")),C[t]=null,C[t];try{C[t]=JSON.parse(e.firstChild.nodeValue)}catch(e){console.warn("Error fetching embedded content with id: ".concat(t)),C[t]=null}return e.parentNode.removeChild(e),C[t]}var B=Object.freeze({__proto__:null,init:function(t){t.forEach(t=>{t.addEventListener("load",()=>{const e=JSON.parse(t.getAttribute("data-player-document-config")),n=JSON.parse(t.getAttribute("data-a11y")),i=JSON.parse(t.getAttribute("data-i18n"));e.title=t.getAttribute("data-player-title"),e.subtitle=t.getAttribute("data-player-subtitle"),e.isScanAvailable="playerScanAvailable"in t.dataset,e.scanUnavailableOnDownloadTitle=t.getAttribute("data-player-scan-unavailable-on-download-title"),e.scanUnavailableOnAccessibilityModeTitle=t.getAttribute("data-player-scan-unavailable-on-accessibility-mode-title"),e.scanUnavailableRedirectUrl=t.getAttribute("data-player-scan-unavailable-redirect-url"),"playerCompactLayout"in t.dataset&&(e.isNativeDocumentEmbedsAuthorInfosTopbarLixEnabled?e.enableTopbarAuthor=!0:e.enableBottombar=!0),e.authorTitle=t.getAttribute("data-player-author-title"),e.authorSubtitle=t.getAttribute("data-player-author-subtitle"),e.authorTitleUrl=t.getAttribute("data-player-author-title-url"),e.inbugUrl=t.getAttribute("data-player-inbug-url");const o={context:"native-document",action:"init",doc:e,a11y:n,i18n:i};t.contentWindow.postMessage(JSON.stringify(o),"*")})})}});class R{constructor(t,e={},n=window.tracking,i=window.lazyloader){const{sources:o,posterUrl:s,mediaUrn:r,trackingId:a,captionsUrl:l}=t.dataset,c=JSON.parse(o);if(!c.length)throw new Error("Please pass video sources in correct Array string format inside data-sources attribute");t.hasAttribute("autoplay")&&(e.autoplay=!0),this._mediaPlayerInstancePromise=this._createPlayer(t,a,r,e,i).then(t=>(s&&t.poster(s),t.src(c),l&&t.addRemoteTextTrack({kind:"captions",label:"English",srclang:"en",mode:"showing",src:l}),this._bindTracking(t,n),t))}_createPlayer(t,e,n,i,o){return o.then(t=>t.getLazyLoadedJavascriptModule("media-player")).then(o=>{const{createPlayer:s}=o,r=i.plugins&&i.plugins.rum&&i.plugins.rum.mediaHeader&&i.plugins.rum.mediaHeader.mediaSource||"ugc",a=O({errorDisplay:!1,controlBar:{fullscreenToggle:!0,backToStartButton:!0,captionsToggle:{selected:!0}},plugins:{}},i);return a.plugins.tracking={mediaUrn:n,trackingId:e},a.plugins.rum={mediaUrn:n,trackingId:e,mediaHeader:{mediaSource:r}},s(t,a)})}_bindTracking(t,e){e.then(e=>{const n=this._getMediaPlayerTrackingEventHandler(e);t.tracking().on("track",n),t.rum().on("track",n)})}_getMediaPlayerTrackingEventHandler(t){return function(e,{eventName:n,eventData:i}){let o=O({header:{},requestHeader:{}},i);delete o.name,delete o.plugin,delete o.instance,o.requestHeader.pageKey||(o.requestHeader.pageKey=function(t){let e=t.querySelector('meta[name="pageKey"]');return e?e.content+"_jsbeacon":""}(document)),t.fireTrackingEvent(n,o)}}getPlayerPromise(){return this._mediaPlayerInstancePromise}}const x=['a[href]:not([tabindex^="-"])','area[href]:not([tabindex^="-"])','input:not([disabled]):not([tabindex^="-"]):not([type="hidden"])','select:not([disabled]):not([tabindex^="-"])','textarea:not([disabled]):not([tabindex^="-"])','button:not([disabled]):not([tabindex^="-"])','[tabindex]:not([tabindex^="-"]):not([disabled])'].join(",");function I(t){const e=window.getComputedStyle(t);return"hidden"===e.visibility||"none"===e.display}function D(t,e=document.documentElement,n){if(t===e)return!I(t);if(n&&n.get(t))return n.get(t);let i;return I(t)?i=!1:t.parentNode&&(i=D(t.parentNode,e,n)),n&&n.set(t,i),i}const P=["class","disabled","style","tabindex","type"];class F{constructor(t){if(!t)throw new Error("FocusTrap: No focus trap container passed in");this._container=t,this._observer=new MutationObserver(()=>this._setFirstAndLastFocusableEls(this._container)),this._handleKeyDown=this._focusTrap.bind(this)}init(){this._observer.observe(this._container,{attributeFilter:P,childList:!0,subtree:!0}),this._setFirstAndLastFocusableEls(this._container),this._container.addEventListener("keydown",this._handleKeyDown)}tearDown(){this._observer.disconnect(),this._container.removeEventListener("keydown",this._handleKeyDown)}_focusTrap(t){const{key:e,target:n}=t,o=s(e),r=o===i.TAB&&t.shiftKey;r||o!==i.TAB||n!==this.lastFocusableEl?r&&n===this.firstFocusableEl&&(this.lastFocusableEl.focus(),t.preventDefault()):(this.firstFocusableEl.focus(),t.preventDefault())}_setFirstAndLastFocusableEls(t){const[e,n]=this._getFirstAndLastFocusableEls(t);this.firstFocusableEl=e,this.lastFocusableEl=n}_getFirstAndLastFocusableEls(t){const e=[...t.querySelectorAll(x)],n=new Map;let i,o,s=0,r=e.length-1;for(;(!i||!o)&&s<=r;){if(!i){const o=e[s];i=D(o,t,n)&&o,s++}if(!o){const i=e[r];o=D(i,t,n)&&i,r--}}return o=o||i,[i,o]}}const{ENTER:q,ESCAPE:j}=i;class U{constructor(t){if(!t)throw new Error("No modal element passed in");this._el=t,this._parentNode=this._el.parentNode,this._topLevelContainer=this._getTopLevelContainer(),this._wrapperEl=this._el.querySelector(".".concat("modal__wrapper")),this._overlayEl=this._el.querySelector(".".concat("modal__overlay")),this._outletEls=this._getOutletEls(),this._exitButtonEl=this._el.querySelector(".".concat("modal__dismiss")),this._onKeyDownEvent=t=>this._onKeyDown(t),this._outletEls.forEach(t=>{t.addEventListener("click",()=>this.open())}),this._exitButtonEl.addEventListener("click",()=>this.close()),this._overlayEl.addEventListener("click",this._handleOverlayClick.bind(this)),this._focusTrap=new F(this._wrapperEl)}_getOutletEls(){const t=this._el.dataset.outlet,e=[...("default-outlet"===t?this._parentNode:document).querySelectorAll('[data-modal="'.concat(t,'"]'))];if(!e.length)throw new Error("No outlet was found with a data-modal attribute equal to the provided dataCustomOutlet param ".concat(t));return e}_getTopLevelContainer(){const t=document.querySelector(".".concat("top-level-modal-container"));if(!t){const t=document.createElement("div");return t.className="top-level-modal-container",document.body.appendChild(t)}return t}_handleOverlayClick(t){t.target===this._wrapperEl||this._wrapperEl.contains(t.target)||this.close()}_onKeyDown(t){const e=s(t.key),n=e===q&&document.activeElement===this._exitButtonEl;(e===j||n)&&(this.close(),t.preventDefault())}open(){this._previouslyFocusedEl=document.activeElement,this._overlayEl.classList.add("modal__overlay--visible"),this._topLevelContainer.appendChild(this._el),document.body.classList.add("no-scroll"),document.addEventListener("keydown",this._onKeyDownEvent),c(this._el,"open"),this._wrapperEl&&this._wrapperEl.focus(),this._focusTrap.init()}close(){this._overlayEl.classList.remove("modal__overlay--visible"),this._parentNode.appendChild(this._el),document.body.classList.remove("no-scroll"),document.removeEventListener("keydown",this._onKeyDownEvent),c(this._el,"close"),this._previouslyFocusedEl&&this._previouslyFocusedEl.focus(),this._focusTrap.tearDown()}}function N(){const t=(t="")=>!t||0===t.trim().length;return t.errorMessageSuffix="error_empty",t}function M(t){const e=(e="")=>e.length<t;return e.errorMessageSuffix="error_too_short",e}function H(t){const e=(e="")=>e.length>t;return e.errorMessageSuffix="error_too_long",e}!function(t){new RegExp("<(?!/?(?:"+t.allowedTags+")(?:[ \t\r\n]*/?>|[ \t\r\n]+(?:(?:(?:"+t.allowedAttributes+")(?:=([\"'])[^'\"<>]*\\1)?|(?:"+t.allowedURLAttributes+")=([\"'])(?:(?:"+t.allowedURLSchemes+")(?::|&#(?:58|x3a);)|[/.#?]|&#(?:35|4[67]|63|x(?:2[3ef]|3f));)[^'\"<>]*\\2)[ \t\r\n]*)+/?>))","i")}({allowedTags:"a|abbr|address|area|article|aside|audio|b|bdi|bdo|big|blockquote|br|button|center|cite|code|datalist|dd|del|details|dfn|div|dl|dt|em|fieldset|figcaption|figure|font|footer|h[1-6]|header|hgroup|hr|i|img|ins|kbd|label|legend|li|map|mark|marquee|nav|nobr|ol|p|pre|q|rp|rt|ruby|s|samp|section|small|source|span|strike|strong|sub|sup|table|tbody|td|tfoot|th|thead|time|tr|u|ul|var|video|wbr",allowedAttributes:"alt|aria-[a-z0-9_\\-]+|border|caption|checked|class|colgroup|color|cols|colspan|controls|coords|data-[a-z0-9_\\-]+|dir|disabled|height|hidden|hreflang|id|label|loop|marginheight|marginwidth|maxlength|method|multiple|name|preload|readonly|rel|required|reversed|role|rows|rowspan|spellcheck|tabindex|target|title|type|usemap|width|clear|headers|ismap|lang|start|datetime|accept|max|min|placeholder|size|step",allowedURLAttributes:"href|src",allowedURLSchemes:"https?|ftp|mailto"}),N(),M(3),H(128),N(),M(6),H(400);var W=window||t;W.utag_data||(W.utag_data={});const K="undefined"!=typeof window&&window&&"node"!==window.appEnvironment;W.utag_cfg_ovrd=W.utag_cfg_ovrd||{},W.utag_cfg_ovrd.noview=!0,W.utag_cfg_ovrd.nocookie=!0,K&&new RegExp("bot|google|aolbuild|baidu|bing|msn|duckduckgo|teoma|slurp|yandex|sogou|facebook|alexa","i").test(W.navigator.userAgent);const z=".".concat("show-more-less","__list"),J=".".concat("show-more-less","__more-button"),Y=".".concat("show-more-less","__less-button"),V="".concat("show-more-less","__list--hide-after"),G="".concat("show-more-less","__button--hide");class Q{constructor(t,e=(t=>t)){if(!t)throw Error("An element must be provided to ShowMoreLess");this.el=t,this.listEl=this.el.querySelector(z),this._getFocusItemFromListItem=e,this.maxNumToShow=parseInt(this.listEl.getAttribute("data-max-num-to-show")),this.hideClass="".concat(V,"-").concat(this.maxNumToShow),this.showMoreButton=this.el.querySelector(J),this.showLessButton=this.el.querySelector(Y),this._attachEventListeners(),this.firstHiddenListItem=this.listEl.children[this.maxNumToShow],this.isExpanded=!this.listEl.classList.contains(this.hideClass),new h(t,this.listEl,{mainButton:this.showMoreButton,closeButton:this.showLessButton},{currentListItem:this.firstHiddenListItem,isOpen:this.isExpanded})}_attachEventListeners(){this.el.addEventListener("open",()=>this._showElements()),this.el.addEventListener("close",()=>this._hideElements()),this.listEl.addEventListener("focus",t=>this._focusItem(t))}_focusItem(t){let e=t.target;if(e){let t=this._getFocusItemFromListItem(e);t&&t.focus()}}_showElements(){this.listEl.classList.remove(this.hideClass),this._toggleButtons(!1)}_hideElements(){this.listEl.classList.add(this.hideClass),this._toggleButtons(!0)}_toggleButtons(t){t?(this.showLessButton.classList.add(G),this.showMoreButton.classList.remove(G)):(this.showLessButton.classList.remove(G),this.showMoreButton.classList.add(G))}}class X{constructor(t){if(!t)throw new Error("EllipsisMenu el required");this._el=t;const e=this._el.querySelector(".collapsible-dropdown");if(!e)throw new Error("A collapsible dropdown is required to instantiate an EllipsisMenu");this.getFocusItemFromListItem=t=>t.querySelector("[href], button"),this.collapsibleDropdown=new m(e,this.getFocusItemFromListItem)}}}).call(this,n(1))},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){"use strict";n.r(e);var i=n(0);const o="data-url",s="click",r="report-option",a={REPORT_BODY:".semaphore-modal__body",REPORT_BUTTON:".semaphore-modal__submit",REPORT_OPTIONS:".".concat(r)};class l extends i.c{constructor(t){if(!t)throw new Error("Semaphore modal container cannot be null");super(t),this._el.addEventListener("open",this._bindEvents.bind(this)),this.reportOptionsEl=i.j.makeArray(this._el.querySelectorAll(a.REPORT_OPTIONS)),this.submitButton=this._el.querySelector(a.REPORT_BUTTON)}_bindEvents(){this._el.querySelector(a.REPORT_BODY).addEventListener(s,this._handleOptionClick.bind(this)),this.submitButton.addEventListener(s,this._handleReportClick.bind(this)),this._el.addEventListener("close",this._tearDown.bind(this))}_handleOptionClick(t){t.target&&t.target.classList.contains(r)&&this.submitButton&&this.submitButton.disabled&&(this.submitButton.disabled=!1,this._lastTabableEl=this.submitButton)}_handleReportClick(t){let e;if(this._mapOnOptions(t=>{t&&t.checked&&(e=t)}),e){let t;if(e.hasAttribute(o)&&(t=e.getAttribute(o)),t)return window.location=t,void this._tearDown()}}_tearDown(){this._mapOnOptions(t=>{t&&t.checked&&(t.checked=!1)}),this.submitButton&&(this.submitButton.disabled=!0,this._lastTabableEl=this._tabableElements[this._tabableElements.length-1])}_mapOnOptions(t){this.reportOptionsEl.forEach(e=>t(e))}}var c,d={index:1};function h(t,e){var n,o,s=Date.now()-e;if(s>=300){var r=document.querySelector(t).getBoundingClientRect(),a=r.width,l=r.height;!function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.activityUrn,n=t.duration,i=t.locale,o=t.size;window.tracking.then(t=>{var s={entities:[{duration:n,listPosition:d,size:o,trackingId:t.generateTrackingId(),urn:e,visibleTime:Date.now()}],header:{},requestHeader:{interfaceLocale:i||null}};t.fireTrackingEvent("FeedImpressionEvent",s)})}({activityUrn:(o=Object(i.h)("activityUrn"),o||""),locale:(n=document.querySelector('meta[name="locale"]'),n&&n.content||""),size:{height:l,width:a},duration:s})}}c=".public-post",i.j.onload(()=>{var t=Date.now(),e="visibilitychange";void 0!==document.msHidden&&(e="msvisibilitychange"),document.addEventListener(e,()=>{document.hidden||document.msHidden?h(c,t):t=Date.now()}),window.addEventListener("beforeunload",()=>{h(c,t)})}),new i.f(document.querySelector(".social-share")),new i.b(document.querySelector(".language-selector"));var u=document.querySelector(".share-native-video__node");u&&new i.d(u),i.i.init(i.j.makeArray(document.querySelectorAll(".share-native-document__iframe"))),i.j.makeArray(document.querySelectorAll(".ellipsis-menu")).forEach(t=>new i.a(t)),i.j.makeArray(document.querySelectorAll(".show-more-less")).forEach(t=>new i.e(t)),i.j.makeArray(document.querySelectorAll(".semaphore-modal")).forEach(t=>new l(t))}]);