{promoMarkup}{notifMarkup}

‘,panelEmptyTemplate=’

  • {emptyPanelMsg}

  • ‘,panelErrorTemplate=’

    {errorMsg}

    ‘,panelParentTemplate=”,notifOnboardPromoTemplate=’

  • ‘,EXPANDED_PANEL=”expanded_panel”,ERROR_PANEL=”error_panel”,NotificationView=function(){function e(n,t){classCallCheck(this,e);var i=this;i._config=n,i._panelNode=null,i._store=t}return createClass(e,[{key:”_generatePanelMarkup”,value:function(e,n){var t=this._config,i=void 0,o=void 0;”undefined”!=typeof window&&(i=window.Notification&&”default”===window.Notification.permission,o=hasClass(document.body,t.promos.eligibleBodyClass));var r=t.promos.enableNotifOnboard&&i&&o?notifOnboardPromoTemplate:””;if(r){var s=t.promos.showYahooLogo?””:”yns-no-logo”;r=r.replace(“{notifOnboardBtnLabel}”,t.promos.notifOnboardBtnLabel).replace(“{notifOnboardMsg}”,t.promos.notifOnboardMsg).replace(“{subscriptionTopic}”,t.promos.subscriptionTopic).replace(“{noLogoClass}”,s)}var a=n.newCount>t.panel.maxCount?n.newCount:””,c=t.panel.notificationCenterPath,l=c?””:constants.panelHideElement,u=t.panel.headerMsg?””:” “+constants.panelHideElement,d=c?constants.panelPaddingBtm:””,p=void 0;n.count?p=n.markup:p=panelEmptyTemplate.replace(“{emptyPanelMsg}”,t.panel.emptyPanelMsg);return e=e.replace(“{notifMarkup}”,p).replace(“{promoMarkup}”,r).replace(“{hideClass}”,l).replace(“{notifCenterLink}”,c).replace(“{paddingClass}”,d).replace(“{headerMsg}”,t.panel.headerMsg).replace(“{hideHeaderClass}”,u).replace(/{notificationCenterNavMsg}/g,t.panel.notificationCenterNavMsg).replace(/{newCount}/g,a)}},{key:”render”,value:function(e,n){var t=this;if(t._panelNode){var i=void 0,o=t._panelNode,r=void 0,s=void 0;switch(e){case EXPANDED_PANEL:i=panelTemplate,s=t._store.getNotifications(),r=t._generatePanelMarkup(i,s),o.innerHTML=r;break;case ERROR_PANEL:r=(i=panelErrorTemplate).replace(“{errorMsg}”,t._config.panel.errorMsg),o.innerHTML=r}n&&n()}else n&&n(new Error(“No panel parent”))}},{key:”createPanelParentNode”,value:function(e){e&&(e.innerHTML=panelParentTemplate,this._panelNode=document.getElementById(constants.panelNodeId))}},{key:”updateBadgeNode”,value:function(e){if(e){var n=this._store.getNotifications().newCount,t=this._config.badge.maxCount;if(n){var i=n>t?t+”+”:n;e.innerHTML=i}else e.innerHTML=””}}},{key:”addStyles”,value:function(e){if(e&&”undefined”!=typeof window){var n=document.getElementById(this._config.panel.styleTagId);n||((n=document.createElement(“style”)).type=”text/css”,n.id=this._config.panel.styleTagId,n.innerText=e,document.head.appendChild(n))}}}]),e}(),EXPANDED_PANEL$1=”expanded_panel”,ERROR_PANEL$1=”error_panel”,PanelController=function(){function e(n,t,i){classCallCheck(this,e);var o=this;o._store=t,o._view=i,o._config=n;var r=o._config.panel;o._panelParentNode=document.querySelector(r.parentSelector),o._badgeNode=o._config.badge.selector&&document.querySelector(o._config.badge.selector),o._indicatorNode=r.indicatorSelector&&document.querySelector(r.indicatorSelector)}return createClass(e,[{key:”createPanelParentNode”,value:function(){this._view.createPanelParentNode(this._panelParentNode),this._notifPanelNode=document.getElementById(constants.panelNodeId)}},{key:”refreshPanelNode”,value:function(e,n){var t=this;addClass(t._notifPanelNode,constants.panelLoading),t._store.fetchNotifications(e,(function(e,i){e?t._notifPanelNode.innerHTML||(t._view.render(ERROR_PANEL$1),addClass(t._notifPanelNode,constants.panelLoading)):(t._view.render(EXPANDED_PANEL$1),t._view.updateBadgeNode(t._badgeNode),t._showBadge(),t._showIndicator(),t._view.addStyles(i.css)),removeClass(t._notifPanelNode,constants.panelLoading),n&&n(e,i)}))}},{key:”resetBadge”,value:function(){var e=this;e._store.resetNewCount(),e._view.updateBadgeNode(e._badgeNode),addClass(e._badgeNode,e._config.badge.hideClass)}},{key:”_showIndicator”,value:function(){this._indicatorNode&&(this._store.getNotifications().newCount?addClass(this._indicatorNode,this._config.panel.indicatorClass):removeClass(this._indicatorNode,this._config.panel.indicatorClass))}},{key:”_showBadge”,value:function(){var e=this;e._store.getNotifications().newCount?removeClass(e._badgeNode,e._config.badge.hideClass):addClass(e._badgeNode,e._config.badge.hideClass)}}]),e}(),config={promos:{eligibleBodyClass:”display-push-promos”,enableNotifOnboard:!0,notifOnboardBtnLabel:”Notify Me”,notifOnboardMsg:”Get alerts for breaking news and top stories”,showYahooLogo:!0,subscriptionTopic:”gondor_homerun_news”},badge:{hideClass:””,maxCount:5,selector:””},panel:{emptyPanelMsg:”You have no new notifications.”,errorMsg:””,headerMsg:”Notifications”,imageTag:”img:40×40|2|80″,indicatorClass:”yns-indicator”,indicatorSelector:null,maxCount:6,notificationCenterNavMsg:”View all {newCount} notifications”,notificationCenterPath:””,notificationTypes:””,parentSelector:null,styleTagId:”notificationStyles”,theme:”default”},service:{attemptCount:2,attemptDelay:1,url:null,resetUrl:null,isRMP:!1,responseType:”json”,timeout:1500}},Main=function(){function e(n){classCallCheck(this,e);var t=this;t.config=t._parseConfig(n),t._validateRequiredConfigs()&&(t._request=new NotificationRequest(t.config),t._store=new NotificationStore(t.config,t._request),t._view=new NotificationView(t.config,t._store),t._panelController=new PanelController(t.config,t._store,t._view),t._panelController.createPanelParentNode(),t._assignHelperMethods())}return createClass(e,[{key:”_parseConfig”,value:function(e){var n={};for(var t in objectAssign(n,config),n)if(n.hasOwnProperty(t)){var i=n[t],o=e[t];”object”===(void 0===i?”undefined”:_typeof(i))?objectAssign(i,o):n[t]=e[t]}return n}},{key:”_validateRequiredConfigs”,value:function(){var e=this.config;return!(!e.panel.parentSelector||!e.service.url)}},{key:”_assignHelperMethods”,value:function(){var e=this;e.helpers={refreshPanelNode:e._panelController.refreshPanelNode.bind(e._panelController),resetBadge:e._panelController.resetBadge.bind(e._panelController),resetIndicator:function(){removeClass(e._panelController._indicatorNode,e.config.panel.indicatorClass)}}}}]),e}(),notificationClient_module_min=Main,notificationClient={NotificationClient:notificationClient_module_min},CONSUMPTION_STORAGE_KEY=”lnct”,NotifClient=function(){function e(){var e,n;this.personalized=!1,this.ybarElem=document.getElementById(“ybar”),this.partnerClasses=null===(n=null===(e=this.ybarElem)||void 0===e?void 0:e.className)||void 0===n?void 0:n.match(/ybar-variant-([a-z]*)/),this.client=new notificationClient.NotificationClient(this.getConfig())}return e.prototype.refreshPanel=function(){var e,n,t,i=this,o={lastUpdate:this.getTimeStamp()||this.setTimeStamp(),loadInHpViewer:!0,includePersonalized:this.personalized},r=(null===(e=window.YAHOO)||void 0===e?void 0:e.context)||(null===(n=window.Af)||void 0===n?void 0:n.context)||{};return r.region&&r.lang&&(o.lang=r.lang,o.region=r.region),(null===(t=this.partnerClasses)||void 0===t?void 0:t.length)&&(o.partner=this.partnerClasses[1]),new Promise((function(e,n){i.client.helpers.refreshPanelNode({matrixParams:o},(function(t,i){t&&(logError(“Notification refresh error:”,t),n(t)),e(i)}))}))},e.prototype.resetBadge=function(){this.client.helpers.resetBadge(),this.setTimeStamp()},e.prototype.getConfig=function(){var e,n,t={promos:{eligibleBodyClass:”display-push-promos”,enableNotifOnboard:!0},badge:{selector:”#notif-badge”,hideClass:”ybar-notification-hidden”},panel:{emptyPanelMsg:”You have no new notifications.”,errorMsg:”Please check back later.”,headerMsg:”Notifications”,maxCount:5,parentSelector:”#ybarNotificationBody”,notificationTypes:”breakingNews”},service:{url:”/tdv2_fp/api/resource/NotificationHistory.getHistory”,isRMP:!1}},i=document.getElementById(“notification-container”),o=null===(e=null==i?void 0:i.dataset)||void 0===e?void 0:e.config,r={};if(o){“att”===(null===(n=this.partnerClasses)||void 0===n?void 0:n[1])&&(t.promos.showYahooLogo=!1);try{var s=JSON.parse(o);r=__assign({},s),this.personalized=1===s.personalize}catch(e){logError(“Notifications config parsing error”,e)}i&&delete i.dataset.config}return this.mergeConfigs(t,r)},e.prototype.mergeConfigs=function(e,n){var t=__assign({},e);for(var i in e)t[i]=__assign(__assign({},e[i]),n[i]);return t},e.prototype.getTimeStamp=function(){var e;return null===(e=window.localStorage)||void 0===e?void 0:e.getItem(CONSUMPTION_STORAGE_KEY)},e.prototype.setTimeStamp=function(){var e,n=””+Math.floor((new Date).getTime()/1e3);return null===(e=window.localStorage)||void 0===e||e.setItem(CONSUMPTION_STORAGE_KEY,n),n},e}(),notifClient=new NotifClient,getNotifClient=function(){return notifClient},reInit=function(){notifClient=new NotifClient},ybarRapid,ybarRapidInterval,ybarRapidErrMsg=””,beaconQueue=[],noop=function(){},logRapidError=function(){window.removeEventListener(“beforeunload”,logRapidError),””!==ybarRapidErrMsg&&logError(“Rapid not found on page”,new Error(ybarRapidErrMsg))},findRapidWithSpaceid=function(e){var n=void 0;if(e&&e.length>0)for(var t=0;t0){if(ybarRapid.addModules(o,!1,i),beaconQueue.length>0)for(e=0;e90&&fireImageBeacon(“performance”,e)}catch(e){}}),1e3)}))},measureInit=measure(“ybar-init”);initYbar(),measureInit.stop(),initPerformanceMetricsBeaconListener(),initRapid(),initErrorBeaconListener();var wrap=”_yb_10iuy”,item=”_yb_10ia6″,icon=”_yb_10ie2″,spacer=”_yb_xkqkb”,promo=”_yb_1wdts”,bold=”_yb_10iff”,selected=”_yb_1xjvi”,Css$7={“ybar-mod-topnavigation”:”_yb_18cph”,”ybar-mod-topnavigation-teaser-imp”:”_yb_1x6sf”,”opaque-background”:”_yb_14715″,wrap:wrap,”right-background”:”_yb_eg4pk”,item:item,”item-content”:”_yb_1iwh1″,”locale-zh-hans-cn”:”_yb_1623e”,”locale-zh-hant-hk”:”_yb_1xxvn”,”locale-zh-hant-tw”:”_yb_zryt2″,”property-mail”:”_yb_332jn”,”nav-item”:”_yb_qf6lp”,icon:icon,”item-footer”:”_yb_1d2un”,”selected-item-footer”:”_yb_qob95″,”item-with-icon”:”_yb_3pygc”,”arrow-left”:”_yb_1mdfw”,”arrow-right”:”_yb_1slpp”,spacer:spacer,promo:promo,”promo-text”:”_yb_14f0q”,”promo-icon”:”_yb_ybsql”,bold:bold,”new-fin-promo-logo”:”_yb_1fh2d”,”new-fin-promo-text”:”_yb_1bw30″,”svg-icon”:”_yb_124g4″,selected:selected,”right-item”:”_yb_5o4js”,”promo-button”:”_yb_13cha”,”variant-att”:”_yb_jnf96″},DOCUMENT_NODE_TYPE=9;if(“undefined”!=typeof Element&&!Element.prototype.matches){var proto=Element.prototype;proto.matches=proto.matchesSelector||proto.mozMatchesSelector||proto.msMatchesSelector||proto.oMatchesSelector||proto.webkitMatchesSelector}function closest(e,n){for(;e&&e.nodeType!==DOCUMENT_NODE_TYPE;){if(“function”==typeof e.matches&&e.matches(n))return e;e=e.parentNode}}var closest_1=closest;function _delegate(e,n,t,i,o){var r=listener.apply(this,arguments);return e.addEventListener(t,r,o),{destroy:function(){e.removeEventListener(t,r,o)}}}function delegate(e,n,t,i,o){return”function”==typeof e.addEventListener?_delegate.apply(null,arguments):”function”==typeof t?_delegate.bind(null,document).apply(null,arguments):(“string”==typeof e&&(e=document.querySelectorAll(e)),Array.prototype.map.call(e,(function(e){return _delegate(e,n,t,i,o)})))}function listener(e,n,t,i){return function(t){t.delegateTarget=closest_1(t.target,n),t.delegateTarget&&i.call(e,t)}}var delegate_1=delegate,ListNode=function(e){this.data=e,this.next=null,this.prev=null},LinkedList=function(){function e(){this.head=null,this.tail=null}return e.prototype.push=function(e){var n=new ListNode(e);return this.head?this.tail?(n.prev=this.tail,this.tail.next=n,this.tail=n):(this.tail=n,this.tail.prev=this.head,this.head.next=this.tail):(this.head=n,n.next=this.tail),n},e.prototype.size=function(){for(var e=0,n=this.head;n;)e+=1,n=n.next;return e},e.prototype.getHead=function(){return this.head},e.prototype.getTail=function(){return this.tail},e.prototype.get=function(e){if(e>=this.size())return null;for(var n=0,t=this.head;(null==t?void 0:t.next)&&n0&&Array.prototype.forEach.call(e,(function(e){e.onerror=function(){e.onerror=null,e.style.display=”none”}}))},fixLogoOutline=function(e,n){e&&(hideOutlineOnMouseDown(“#ybar-logo”,”#ybar-logo”,n),n.onDestroy((function(){e.classList.remove(“ybar-show-outline”),e.classList.remove(“ybar-hide-outline”)})))},logoClick=function(e,n){n&&e.addElementListener(n,”click”,(function(){e.triggerEvent(“logo-click”)}))},init$3=function(e,n){n.logoImages&&hideLogosOnError(n.logoImages),n.wrapper&&(fixLogoOutline(n.wrapper,e),logoClick(e,n.wrapper))};initModule(“ybar-mod-logo”,(function(e){var n={wrapper:document.getElementById(“ybar-logo”),logoImages:document.querySelectorAll(“.”+Css$6[“logo-image”])};init$3(e,n)}));var tablet$1=”_yb_qh8z4″,smartphone$2=”_yb_1wwwu”,glowing=”_yb_1gnqm”,none=”_yb_3ahew”,tooltip=”_yb_12la0″,tooltip__voice=”_yb_1s6ke”,tooltip__web=”_yb_8nwq5″,tooltip__text=”_yb_qlx68″,overlay$1=”_yb_1kv52″,light=”_yb_11e8y”,dark=”_yb_3arju”,darker=”_yb_p3xyi”,Css$5={“search-form-container”:”_yb_1828h”,tablet:tablet$1,”property-generic”:”_yb_s3z7d”,”property-homepage”:”_yb_1mus0″,”property-fantasy”:”_yb_sjhkg”,smartphone:smartphone$2,”search-input”:”_yb_g9aqo”,”glowing-bd”:”_yb_lwka7″,”sa-btn”:”_yb_11vfb”,”x-sa-btn”:”_yb_19oxn”,”sa-btn-bar”:”_yb_ux6pu”,”voice-search-sa-btn”:”_yb_zlf5t”,”clear-btn”:”_yb_gkk5f”,”voice-search-sa-btn-img”:”_yb_u2kc2″,”search-submit”:”_yb_1ekp1″,glowing:glowing,”glowing-fuji2″:”_yb_1m96x”,”locale-es-us”:”_yb_uewb7″,”variant-att”:”_yb_efygi”,”locale-en-us”:”_yb_xb4ro”,none:none,”variant-frontier”:”_yb_9gydb”,”locale-fr-ca”:”_yb_16csm”,”variant-rogers”:”_yb_1l4i3″,”locale-en-ca”:”_yb_19kzq”,”searchbox-icon”:”_yb_df7iz”,”search-back-btn”:”_yb_1szix”,”search-input-“:”_yb_vvuzz”,”search-label”:”_yb_9uvwy”,”property-news”:”_yb_3so9d”,”locale-zh-hant-tw”:”_yb_1xxjl”,”locale-zh-hant-hk”:”_yb_1eiif”,”skiplink-list”:”_yb_16l7q”,”skiplink-item”:”_yb_gyt3i”,”shops-buttons”:”_yb_907g2″,”shops-category-select-label”:”_yb_sho1v”,”shops-category-select”:”_yb_1s4se”,”shops-category-dropdown-wrapper”:”_yb_1ku3v”,”styled-select”:”_yb_bnmo6″,”dropdown-open”:”_yb_1p5ef”,”shops-category-select-dropdown”:”_yb_1mxs5″,”selected-merchant-wrap”:”_yb_1yg0h”,”selected-merchant-clear-button”:”_yb_1bxzh”,”merchant-is-selected”:”_yb_9ilwe”,tooltip:tooltip,tooltip__voice:tooltip__voice,tooltip__web:tooltip__web,”tooltip–show”:”_yb_1w0ua”,tooltip__text:tooltip__text,overlay:overlay$1,light:light,dark:dark,darker:darker},range=function(e,n){var t=Math.max(e,n),i=Math.min(e,n),o=Math.abs(t-i);return __spreadArray([],new Array(o+1)).map((function(e,n){return i+n}))},openSearchOverlay=function(e,n,t){var i=e.getConfig().bucketConfig,o=(void 0===i?{}:i).enable_search_ui,r=void 0!==o&&o;if(n.ybar){n.ybar.classList.add(“ybar-searchbox-assist-fullscreen”),document.documentElement.classList.add(“ybar-overlay”),document.body.classList.add(“ybar-overlay-noscroll”);beaconClick(“ybar”,”websrch”,””,{elm:”expand”,subsec:”searchbox”,itc:”1″}),setTimeout((function(){n.searchInput instanceof HTMLInputElement&&(t&&(n.searchInput.value=t),n.searchInput.focus(),r&&n.searchInput.click())}))}},closeSearchOverlay=function(e){var n;null===(n=e.ybar)||void 0===n||n.classList.remove(“ybar-searchbox-assist-fullscreen”),document.documentElement.classList.remove(“ybar-overlay”),document.body.classList.remove(“ybar-overlay-noscroll”),e.searchInput instanceof HTMLInputElement&&(e.searchInput.value=””,e.searchInput.blur())},initMweb=function(e,n){“smartphone”===e.getConfig().device&&(e.addElementListener(n.searchBoxPlaceholder,”click”,(function(){openSearchOverlay(e,n)})),e.addElementListener(n.searchBoxPlaceholder,”keydown”,(function(t){var i=t,o=i.keyCode,r=i.key,s=range(65,90),a=__spreadArray(__spreadArray([],range(58,57)),range(96,105)),c=__spreadArray(__spreadArray([],s),a).includes(o);(32===o||13===o||c)&&(t.preventDefault(),t.stopPropagation(),openSearchOverlay(e,n,c?r:””))})),n.searchBoxBackButton&&(e.addElementListener(n.searchBoxBackButton,”click”,(function(e){e.stopPropagation(),closeSearchOverlay(n);beaconClick(“ybar”,”back-close-srch”,””,{elm:”btn”,subsec:”searchbox”,itc:”1″})})),e.addElementListener(n.searchInput,”keyup”,(function(e){e.stopPropagation();27===e.keyCode&&(e.stopPropagation(),closeSearchOverlay(n))}))),e.onDestroy((function(){closeSearchOverlay(n)})))},Tooltip=function(){function e(e,n,t){n&&(this.ybar=e,this.elem=n,this.options=t,this.show=this.show.bind(this),this.hide=this.hide.bind(this),this.addEventListeners())}return Object.defineProperty(e.prototype,”tooltip”,{get:function(){var e=this;return this.tooltipMarkup||(this.tooltipMarkup=this.createTooltip(),(this.options.tooltipParentElm||this.elem).appendChild(this.tooltipMarkup),this.ybar.onDestroy((function(){var n,t;null===(t=null===(n=e.tooltipMarkup)||void 0===n?void 0:n.parentNode)||void 0===t||t.removeChild(e.tooltipMarkup)}))),this.tooltipMarkup},enumerable:!1,configurable:!0}),e.prototype.show=function(){this.tooltip.classList.add(this.options.showClass)},e.prototype.hide=function(){this.tooltip.classList.remove(this.options.showClass)},e.prototype.addEventListeners=function(){this.ybar.addElementListener(this.elem,”mouseenter”,this.show),this.ybar.addElementListener(this.elem,”focus”,this.show),this.ybar.addElementListener(this.elem,”mouseleave”,this.hide),this.ybar.addElementListener(this.elem,”blur”,this.hide)},e.prototype.createTooltip=function(){var e=document.createElement(“div”);e.className=this.options.containerClass||””;var n=document.createElement(“p”);return n.textContent=this.options.label,n.className=this.options.textClass||””,e.appendChild(n),e},e}();createCommonjsModule((function(module){(function(){var __webpack_modules__={“./src/index.js”:
    /*!**********************!*
    !*** ./src/index.js ***!
    **********************/function(__unused_webpack_module,__unused_webpack_exports,__webpack_require__){eval(“var I18n = __webpack_require__(/*! ./lib/I18n */ “./src/lib/I18n.js”);nn(function (win, doc) {n “use strict”;nn var defaultConfig = {n uiLang: ‘en-US’,n speechLang: ‘en-US’,n voiceButton: ‘#voice-btn’,n searchBox: {n form: ‘#sf’,n input: ‘#yschsp’,n params: {n fr: ”,n fr2: ”n }n },n enable_voice_trending: false,n trending: {n market: “en-us”n },n ui: {n speechOverlay: {n disableBlur: falsen }n },n browsers: {n edge: falsen }n };nn function VoiceSearch(config) {n var self = this;n self.config = Object.assign(defaultConfig, config || {});n self.i18n = new VoiceSearch.I18n({n lang: self.config.uiLangn });n self.renderPermissionGuide(self);n self.renderSpeechPanel(self);n self.speechResult = ”;n self.noSpeech = true;n self.isRecognitionStart = false;n self.recognition = null;n self.voiceButton = doc.querySelector(self.config.voiceButton);n self.searchBoxForm = doc.querySelector(self.config.searchBox.form);n self.searchBoxQuery = doc.querySelector(self.config.searchBox.input);n self.speechPanel = doc.querySelector(‘#spch’);n self.speechButtonContainer = doc.querySelector(‘#spchbc’);n self.speechButton = doc.querySelector(‘#spchbc-btn’);n self.speechText = doc.querySelector(‘#spcht’);n self.speechOverlay = doc.getElementById(‘spch-overlay’);n self.retryLink = doc.querySelector(‘#spcht-retry’);n self.trending = doc.getElementById(‘spch-trending’);n self.trendingTerms = doc.getElementById(‘trending-terms’);n self.termSpans = doc.getElementsByClassName(“trending-term”);n self.closeButton = doc.querySelector(‘#spchx’);n self.startAudio = new Audio(‘https://s.yimg.com/pv/static/misc/voice-start-202105050733.wav’);n self.resultAudio = new Audio(‘https://s.yimg.com/pv/static/misc/voice-result-202105050733.wav’);n self.errorAudio = new Audio(‘https://s.yimg.com/pv/static/misc/voice-error-202105050733.wav’);n self.closeAudio = new Audio(‘https://s.yimg.com/pv/static/misc/voice-close-202105050733.wav’);n self.permissionGuide = doc.querySelector(‘#spchp’);n self.permissionGuideClose = doc.querySelector(‘#spchpx’);n self.permissionGuideTimer = null;nn self.onEscKeyDown = function (e) {n if (e.code !== ‘Escape’) {n return;n }nn self.recognition.stop();n self.sendBeacon(‘keybrd’, ‘voicesearch_cancel_esc’); // The clean up should put inside closePanel() instead of here,n // or func won’t be cleaned up if user close panel with btn or overlaynn self.closePanel(self);n };nn if (self.isBrowserSupported()) {n var SpeechRecognition = win.SpeechRecognition || win.webkitSpeechRecognition;n var SpeechGrammarList = win.SpeechGrammarList || win.webkitSpeechGrammarList;n var speechGrammar = ‘#JSGF V1.0;’;n self.recognition = new SpeechRecognition();n var speechRecognitionList = new SpeechGrammarList();nn if (speechRecognitionList.addFromString) {n speechRecognitionList.addFromString(speechGrammar, 1);n }nn self.recognition.grammars = speechRecognitionList;n self.recognition.continuous = false;n self.recognition.lang = self.config.speechLang;n self.recognition.interimResults = false;n self.recognition.maxAlternatives = 1;n /* Listeners */nn if (self.voiceButton) {n self.voiceButton.onclick = function () {n self.recognition.start();nn if (self.permissionGuideTimer) {n win.clearTimeout(self.permissionGuideTimer);n }nn self.permissionGuideTimer = win.setTimeout(function () {n if (!self.isRecognitionStart) {n self.showPermissionGuide(self);n }n }, 300); // Also close when pressing escnn doc.addEventListener(‘keydown’, self.onEscKeyDown);n self.sendBeacon(‘clk’, ‘voicesearch’);n };n }nn if (self.speechButton) {n self.speechButton.onclick = function () {n if (!self.isRecognitionStart) {n self.recognition.start();n self.sendBeacon(‘clk’, ‘voicesearch_panel_mic_restart’);n } else {n self.recognition.stop();n self.sendBeacon(‘clk’, ‘voicesearch_panel_mic_close’);n self.closePanel(self);n }n };n }nn if (self.retryLink) {n self.retryLink.onclick = function () {n if (!self.isRecognitionStart) {n self.recognition.start();n self.sendBeacon(‘clk’, ‘voicesearch_panel_retry’);n }n };n }nn if (self.speechOverlay) {n self.speechOverlay.onclick = function () {n self.recognition.stop();n self.sendBeacon(‘clk’, ‘voicesearch_cancel_outside’);n self.closePanel(self);n };n }nn if (self.closeButton) {n self.closeButton.onclick = function () {n self.recognition.stop();n self.sendBeacon(‘clk’, ‘voicesearch_cancel’);n self.closePanel(self);n };n }nn if (self.permissionGuideClose) {n self.permissionGuideClose.onclick = function () {n self.recognition.stop();n self.sendBeacon(‘clk’, ‘voicesearch_permission_close’);n self.closeAudio.play();n self.hidePermissionGuide(self);n };n }n /* Recognition Events */nnn self.recognition.onresult = function (event) {n // The SpeechRecognitionEvent results property returns a SpeechRecognitionResultList objectn // The SpeechRecognitionResultList object contains SpeechRecognitionResult objects.n // It has a getter so it can be accessed like an arrayn // The first [0] returns the SpeechRecognitionResult at the last position.n // Each SpeechRecognitionResult object contains SpeechRecognitionAlternative objects that contain individual results.n // These also have getters so they can be accessed like arrays.n // The second [0] returns the SpeechRecognitionAlternative at position 0.n // We then return the transcript property of the SpeechRecognitionAlternative objectn // console.log(‘Confidence: ‘ + event.results[0][0].confidence);n self.speechResult = event.results[0][0].transcript;n /* Punctuation Handling: Check last character and strip it if necessary */nn self.handlePunctuation(self);nn if (self.speechText) {n self.speechText.innerText = self.speechResult;n }nn if (self.searchBoxQuery) {n self.searchBoxQuery.value = self.speechResult;n }nn self.resultAudio.play();n win.setTimeout(function () {n if (self.speechPanel) {n self.speechPanel.classList.remove(“s2tb”);n self.speechPanel.classList.add(“s2tb-h”);n }nn self.hideRetryLink(self);nn if (self.searchBoxForm) {n if (self.searchBoxForm.fr && self.config.searchBox && self.config.searchBox.params && self.config.searchBox.params.fr) {n self.searchBoxForm.fr.value = config.searchBox.params.fr;n self.searchBoxForm.fr.disabled = false; // for homepage casen }nn if (self.searchBoxForm.fr2 && self.config.searchBox && self.config.searchBox.params && self.config.searchBox.params.fr2) {n self.searchBoxForm.fr2.value = config.searchBox.params.fr2;n self.searchBoxForm.fr2.disabled = false; // for homepage casen }nn self.searchBoxForm.submit();n }n }, 1000);n };nn self.recognition.onspeechstart = function () {// Fired when speech startsn };nn self.recognition.onspeechend = function () {n // Fired when speech endsn self.recognition.stop();n };nn self.recognition.onerror = function () {n // console.log(‘Error occurred in recognition: ‘ + event.error);n if (self.speechText) {n self.speechText.innerText = self.i18n.t(‘search.voice.recognition_error’);n }nn self.hideTrending(self);n self.showRetryLink(self);n self.errorAudio.play();n };nn self.recognition.onaudiostart = function () {n // Fired when the user agent has started to capture audio.n if (self.speechButtonContainer) {n self.speechButtonContainer.classList.add(“listening”);n }n };nn self.recognition.onaudioend = function () {n // Fired when the user agent has finished capturing audio.n if (self.speechButtonContainer) {n self.speechButtonContainer.classList.remove(“listening”);n }n };nn self.recognition.onsoundstart = function () {n // Fired when any sound — recognisable speech or not — has been detected.n self.hideTrending(self);n self.noSpeech = false;nn if (self.speechButtonContainer) {n self.speechButtonContainer.classList.remove(“listening”);n self.speechButtonContainer.classList.add(“speaking”);n }n };nn self.recognition.onsoundend = function () {n // Fired when no sound presentn if (self.speechButtonContainer) {n self.speechButtonContainer.classList.remove(“speaking”);n }n };nn self.recognition.onstart = function () {n // Fired when the speech recognition service has begun listeningn self.recognitionInit(self);n self.startRecognition(self);n };nn self.recognition.onend = function () {n // Fired when the speech recognition service has disconnected.n self.isRecognitionStart = false;nn if (self.noSpeech == false && self.speechResult == ”) {n // No match: Fired when the speech recognition can’t recognise speechn if (self.speechText) {n self.speechText.innerText = self.i18n.t(‘search.voice.recognition_nomatch’);n }nn self.hideTrending(self);n self.showRetryLink(self);n self.errorAudio.play();n }n }; // trigger onReady event when initializednnn if (document && document.dispatchEvent) {n document.dispatchEvent(new Event(‘VOICE_JS_READY’));n }n }n } // static membersnnn VoiceSearch.I18n = I18n; // instance membersnn VoiceSearch.prototype.renderPermissionGuide = function (self) {n var tmpl = “\n

    \n \n

    \n \n

    \n

    “.concat(self.i18n.t(‘search.voice.permission_title’), “

    \n

    “).concat(self.i18n.t(‘search.voice.permission_text’), “

    \n

    \n

    \n

    \n “);n var dom = new DOMParser().parseFromString(tmpl, ‘text/html’);n document.body.appendChild(dom.body.children[0]);n };nn VoiceSearch.prototype.renderSpeechPanel = function (self) {n var tmpl = “\n

    \n \n \n

    \n

    \n

    \n \n \n \n \n \n \n

    \n

    \n

    \n \n \n “.concat(self.i18n.t(‘search.voice.recognition_retry’), “\n

    \n

    \n

    \n

    \n

    \n

    \n “).concat(self.i18n.t(‘search.voice.trending_title’), “\n \n

    \n

    \n

    \n “);n var dom = new DOMParser().parseFromString(tmpl, ‘text/html’);nn if (self && self.config && self.config.ui && self.config.ui.speechOverlay && self.config.ui.speechOverlay.disableBlur) {n dom.body.children[0].classList.add(‘disable-blur-overlay’);n }nn document.body.appendChild(dom.body.children[0]);n };nn VoiceSearch.prototype.isBrowserSupported = function () {n var isSupported = false;n var self = this;n var isChromium = Boolean(window.chrome);n var isIOSChrome = /CriOS/.test(window.navigator.userAgent);n var isEdge = /Edg\//.test(window.navigator.userAgent);n var isLegacyEdge = /Edge\//.test(window.navigator.userAgent);n var isOpera = Boolean(window.opr);n var isBrave = Boolean(window.navigator.brave);n var browsers = [// chromen {n checkEnabled: function checkEnabled() {n return true;n },n checkBrowser: function checkBrowser() {n return isChromium && !isIOSChrome && !isEdge && !isOpera && !isBrave;n },n checkAPI: function checkAPI() {n return win && (‘SpeechRecognition’ in win || ‘webkitSpeechRecognition’ in win) && (‘SpeechGrammarList’ in win || ‘webkitSpeechGrammarList’ in win);n }n }, // edgen {n checkEnabled: function checkEnabled() {n return self && self.config && self.config.browsers && self.config.browsers.edge;n },n checkBrowser: function checkBrowser() {n return isChromium && isEdge && !isLegacyEdge;n },n checkAPI: function checkAPI() {n return win && (‘SpeechRecognition’ in win || ‘webkitSpeechRecognition’ in win) && (‘SpeechGrammarList’ in win || ‘webkitSpeechGrammarList’ in win);n }n }];nn for (var b = 0; b 0) {n var lastChar = self.speechResult.charAt(self.speechResult.length – 1);nn if (lastChar === ‘.’ || lastChar === ‘?’ || lastChar === ‘。’ || lastChar === ‘?’) {n self.speechResult = self.speechResult.slice(0, -1);n }n }n };nn VoiceSearch.prototype.sendBeacon = function (actn, slk) {n var ULT = win.YAHOO.ULT || {},n SB = win.YAHOO.SB || {};nn if (ULT.beacon_click) {n var trackParams = {n _S: SB.config.i13n.spaceid,n _I: SB.config.i13n.pvid,n actn: actn,n sec: ‘search’,n slk: slkn };n win.YAHOO.ULT.beacon_click(trackParams);n }n };nn VoiceSearch.prototype.ajaxReq = function (url, callback) {n var DONE_STATE = XMLHttpRequest.DONE || 4; // for IE-compatibilitynn var xhr = new XMLHttpRequest();n var responseRaw;n var response; // CORS request only for IE8/IE9nn if (doc.documentMode && doc.documentMode n // tags it will allow on a pagenn if (!options.singleton && typeof options.singleton !== ‘boolean’) {n options.singleton = isOldIE();n }nn list = list || [];n var lastIdentifiers = modulesToDom(list, options);n return function update(newList) {n newList = newList || [];nn if (Object.prototype.toString.call(newList) !== ‘[object Array]’) {n return;n }nn for (var i = 0; i >>0;if(“function”!=typeof e)throw new TypeError(e+” is not a function”);for(arguments.length>1&&(t=n),i=0;i>>0;if(“function”!=typeof e)throw new TypeError;for(var i=[],o=arguments.length>=2?arguments[1]:void 0,r=0;r>>0;if(“function”!=typeof e)throw new TypeError(e+” is not a function”);for(arguments.length>1&&(t=n),i=new Array(s),o=0;othis.length)&&-1!==this.indexOf(e,n)}),function(){function e(e){return”function”==typeof e.trim?e.trim():e.replace(/^s+|s+$/gm,””)}function n(e){var n;c&&c&]/gim,(function(e){return””+e.charCodeAt(0)+”;”}))},ae:function(e,n,t,i){if(i=i||!1,e.addEventListener)e.addEventListener(n,t,i);else{if(!e.attachEvent)return!1;e.attachEvent(“on”+n,t)}},de:function(e,n,t){if(e.removeEventListener)e.removeEventListener(n,t);else{if(!e.detachEvent)return!1;e.detachEvent(“on”+n,t)}},ts:function(){return Math.round((new Date).getTime()/1e3)},bold:function(e,n,t,o){var r,s=(o.pattern||””)+”(&[^;\s]*)?(%needles)”;return(o=o.exact?[i(t)]:t.split(/[s|,]+/).filter((function(e){return””!==e})).sort((function(e,n){return n.length-e.length})).map(i)).length?(s=s.replace(“%needles”,o.join(“|”)),n.replace(new RegExp(s,”gi”),(r=e,function(e,n,t){return n&&!/s/.test(t)?e:r.replace(/{s}/g,t)}))):n},fireEvent:function(e,n,t){var i;”function”==typeof r.CustomEvent?(i=new r.CustomEvent(n,{detail:t}),e.dispatchEvent(i)):”function”==typeof s.createEvent?((i=s.createEvent(“CustomEvent”)).initCustomEvent(n,!1,!1,t),e.dispatchEvent(i)):(s.attachEvent,document.documentElement[n]=t)}},r.YAHOO=r.YAHOO||{},r.YAHOO.NBClass=o,r.YAHOO.NB=new o,Array.prototype.forEach||(Array.prototype.forEach=function(e,n){var t,i;if(null==this)throw new TypeError(” this is null or not defined”);var o,r=Object(this),s=r.length>>>0;if(“function”!=typeof e)throw new TypeError(e+” is not a function”);for(1>>0;if(“function”!=typeof e)throw new TypeError;for(var i,o=[],r=2>>0;if(“function”!=typeof e)throw new TypeError(e+” is not a function”);for(1this.length)&&-1!==this.indexOf(e,n)});var r,s,a,c,l,u,d,p,h,f,m=window,y=document,g=m.YAHOO,b=g.NB,v={},_=”before_get_assist”,w=”before_display_data”,C=”before_init_view”,E=”after_init_view”,x=”before_parse_data”,k=”before_update_assist”,T=”after_update_list”,S=”after_create_item”,L=”before_show_sa”,I=”after_reset_view”,M=”after_hide_view”,A=”after_init_controller”,R=”click_assist”,N=”before_query_assist”,O=”before_key_submit”,B=”before_button_submit”,P=”before_submit_query”,q=”after_item_highlight”,D=”after_item_reset_highlight”,j=”before_sb_focus”,V=”after_sb_focus”,$=”before_sb_blur”,F=”after_sb_blur”,U=”before_beacon”,H=”after_set_ylc”,Y=”after_reset_controller”;function z(e,n){n=(e=e||{}).tag||n||”div”;var t,i=y.createElement(n);for(t in e.css&&(i.className=e.css),e.text&&(i.textContent=e.text),e.attrs)b.set(i,t,e.attrs[t]);for(t in e.style)i.style[t]=e.style[t];return e.wrap?((n=z(e.wrap)).appendChild(i),n):i}function G(e){this.config=e||{},this.listeners={},this.cb={}}function W(){}function J(){}function Q(){}function K(){var e=this.app.view.elems,n=e.sbClear;n&&(0Manage history’},log:{sec:”search”,slk:”clear history”,rspns:”upd”,t2:”search”,t4:”clear history”}}}function Te(){function e(e){e.keyCode&&27!==e.keyCode&&13!=e.keyCode||(b.stopPropagation(e),r.value=””,b.setFocus(r),i.show(),t.control.beacon(“tapClr”,s,n.config.log))}var n=this,t=n.app,i=t.view,o=i.elems,r=o.sbInput,s=o.sbClear;s&&(b.ae(s,”click”,e),b.ae(s,”keydown”,e))}function Se(){this.config={log:{_r:2,actn:”clk”,pos:1,sec:”search”,slk:”clearsearch”,rspns:”upd”,t1:”hdr”,t2:”search”,t3:”clear”,t4:”clearsearch”}}}g.SA=(u=[],G.prototype={jsonp:function(e){var n=y.getElementsByTagName(“head”)[0],t=y.createElement(“script”);b.set(t,”type”,”text/javascript”),b.set(t,”src”,e),n.appendChild(t),b.ae(t,”load”,(function(){n.removeChild(t)}))},createElem:z,getElemStyleValue:function(e,n){return m.getComputedStyle?m.getComputedStyle(e).getPropertyValue(n):e.currentStyle?(n=n.replace(/-([a-z]){1}/g,(function(e,n){return n.toUpperCase()})),e.currentStyle[n]):””},format:function(e,n){if(e)return e.replace(/{(d+)}/g,(function(e,t){return n&&void 0!==n[t]?n[t]:””})).trim()},on:function(e,n,t){var i;e&&n&&((i=this.listeners)[e]||(i[e]=[]),i[e].push({thisArg:t||this,fn:n}))},notify:function(e,n){var t=this.listeners;if(!t[e])return!1;t[e].forEach((function(e){var t=e.thisArg;(e=e.fn)&&e.apply&&1!=t.config.disable&&e.apply(t,n||[])}))},init:function(e){var n,t,i,o,r=this,s=r.config,a=s.plugins={};for(o in r.view=n=new l.viewClass,r.model=t=new l.modelClass,r.control=i=new l.controlClass,v){var c=new v[o];a[o]=c.config=c.config||{},c.createElem=z,c.init(r)}”object”==typeof e&&b.merge(s,e),r.ready=n.init(r)&&t.init(r)&&i.init(r)}},d=G,l={ver:”assistjs-v1.0.155-ybar”,apps:u,plugs:v,add:function(e,n){v[e]=n},msg:{BEFORE_GET_ASSIST:_,BEFORE_DISPLAY_DATA:w,BEFORE_INIT_VIEW:C,AFTER_INIT_VIEW:E,BEFORE_PARSE_DATA:x,BEFORE_UPDATE_ASSIST:k,AFTER_UPDATE_LIST:T,AFTER_CREATE_ITEM:S,BEFORE_SHOW_SA:L,AFTER_RESET_VIEW:I,AFTER_HIDE_VIEW:M,AFTER_INIT_CONTROLLER:A,CLICK_ASSIST:R,BEFORE_QUERY_ASSIST:N,BEFORE_KEY_SUBMIT:O,BEFORE_BUTTON_SUBMIT:B,BEFORE_SUBMIT_QUERY:P,BEFORE_SB_FOCUS:j,AFTER_SB_FOCUS:V,BEFORE_SB_BLUR:$,AFTER_SB_BLUR:F,BEFORE_BEACON:U,AFTER_SET_YLC:H,AFTER_RESET_CONTROLLER:Y,AFTER_ITEM_HIGHLIGHT:q,AFTER_ITEM_RESET_HIGHLIGHT:D},markers:{GOSSIP_MARKER_SEARCH_HISTORY:13,GOSSIP_MARKER_TRENDING:9,GOSSIP_MARKER_PEOPLE_ALSO_SEARCH_FOR:42},init:function(e){var n,t=b.ieVer;return!(t&&t”+r+” “+t.config.saAria.shownText+””)},show:function(){var e=this,n=e.config,t=e.elems.sbInput.value,i=t.length;e.app.notify(L),e.shown&&e.sameQuery()||(e.lastInput=t,in.maxInput?e.hide():(e.model.fetch(),e.triggered=!0))},hide:function(){var e=this,n=(t=e.elems).saAria,t=t.sbForm,i=e.config;b.removeClass(y.body,i.typingClass),t&&t.parentElement&&b.removeClass(t.parentElement,i.typingClass),b.removeClass(t,i.noResultClass),e.clearAssist(),e.shown=!1,e.triggered=!1,n&&(b.set(n,”aria-expanded”,”false”),n.innerHTML=”

    “+e.config.saAria.closedText+”

    “),e.app.notify(M)},clearAssist:function(){this.elems.saTray.innerHTML=””,this.items.splice(0,this.items.length),this.assistItem=null},createItem:function(e){var n,t={idx:e.idx,data:e.origData},i=b.htmlEncode,o=this.config,r=(n=this.app.createElem)(o.saItem,”li”);return(n=(b.set(r,”pos”,e.idx),n(o.saTitle,”span”))).innerHTML=e.t||(o.boldTag&&e.k&&e.q?b.bold(o.boldTag,i(e.k),i(e.q),o.highlight||{}):i(e.k)),r.appendChild(n),t.li=r,t.title=n,this.app.notify(S,[t,e]),t},resetQuery:function(){this.elems.sbInput.value=this.origQuery},reset:function(){var e=this,n=e.config,t=e.elems.sbForm;n.resetQuery&&e.resetQuery(),e.hide(),t.action=e.origAction,e.app.notify(I)},sameQuery:function(){return this.elems.sbInput.value==this.lastInput}},Q),l.initConfig=function(){return{elems:{sbForm:”sb-form”,sbInput:”sb-input”,sbSubmit:”sb-search”,sbClear:”sb-clr”,sbCancel:”sb-cancel”,saTray:”sa-tray”},customEvent:{},sa:{css:”sa”,attrs:{type:”normal”}},saList:{css:”sa-list”,attrs:{role:”listbox”},style:{cursor:”pointer”}},saItem:{css:”sa-item”,attrs:{role:”option”}},saTitle:{css:”sa-item-title”},saAria:{shownText:”new suggestions shown”,closedText:”Suggestion box closed”,css:”sa-aria-live-region”,attrs:{“aria-live”:”polite”},style:{position:”absolute”,left:”-9999px”}},saBE:{host:””,base:”/sugg/gossip/gossip-us-ura/”,params:{l:1,bm:3,output:”sd1″,nresults:10}},shBE:{host:””,base:”/history”},minInput:0,maxInput:255,boldTag:”{s}“,ylc:{_r:2},ylcAssist:{use_case:””},hideOnOutsideClick:!0,noQueryClass:”sa-noQuery”,typingClass:”typing”,noResultClass:”sf-noResult”}},v.hideSbClr=(X.prototype={init:function(e){(this.app=e).on(L,K,this)}},X),v.saFr=(te.prototype={init:function(e){(this.app=e).on(E,Z,this),e.on(N,ee,this),e.on(I,ne,this)}},te),v.ipos=(re.prototype={init:function(e){(this.app=e).on(L,ie,this),e.on(_,oe,this)}},re),v.saTray=(ae.prototype={init:function(e){(this.app=e).on(C,se,this)}},ae),v.saFlvr=(le.prototype={init:function(e){e.on(S,ce,this)}},le),v.saEdit=(de.prototype={init:function(e){e.on(S,ue,this)}},de),v.saAnnot=(he.prototype={init:function(e){e.on(S,pe,this)}},he),v.saImg=(me.prototype={init:function(e){e.on(S,fe,this)}},me),v.saGroup=(be.prototype={init:function(e){this.app=e,this.idxs={},e.on(S,ye,this),e.on(T,ge,this)}},be),v.saPCActn=(Ee.prototype={init:function(e){var n=this;n.app=e,n.selectedIndex=-1,e.on(w,ve,n),e.on(A,_e,n),e.on(V,we,n),e.on(F,Ce,n)}},Ee),v.tapRmv=(ke.prototype={init:function(e){(this.app=e).on(R,xe,this)}},ke),v.tapClr=(Se.prototype={init:function(e){(this.app=e).on(A,Te,this)}},Se)}();var sa=”_yb_1ecof”,lowlight=”_yb_r1922″,Css$4={“sa-sbx-container”:”_yb_5ce8d”,sa:sa,”sub-assist”:”_yb_1gfap”,”no-wrap”:”_yb_wzxrd”,”sa-tray”:”_yb_1fbej”,”sa-tray-list-container”:”_yb_nfpkz”,”yui3-highlight”:”_yb_12duk”,lowlight:lowlight,”list-item-hover”:”_yb_hk7vn”,”related-title”:”_yb_1pben”,”trending-title”:”_yb_80bwg”,”sa-fd-actn-cont”:”_yb_ylpda”,”suggestion-title”:”_yb_ve7vf”,”bot-search-item”:”_yb_zwxtv”,”bot-search-item-col”:”_yb_se0rq”,”bot-search-icon-container”:”_yb_heey0″,”bot-search-span”:”_yb_qiwo9″,”bot-search-icon”:”_yb_54d17″,”sa-annot-rich”:”_yb_1tj9h”,”sa-img-ctn”:”_yb_1pkhq”,”sa-img-icon”:”_yb_8a66e”,”sa-history”:”_yb_1j3x5″,”sa-trending”:”_yb_b9mcw”,”sa-img”:”_yb_oyk8u”,”sa-annot-title”:”_yb_tngw0″,”sa-annot-subtitle”:”_yb_hk9j6″,”sa-edit”:”_yb_15swx”,”sa-edit-text”:”_yb_1mteg”,”sa-sugg”:”_yb_1ewmj”,”sa-edit-icon”:”_yb_zbn63″,”sa-grp-hdr”:”_yb_1q5zw”,”sa-grp-hdr-title”:”_yb_1oy0g”,”sa-rich-thumb”:”_yb_5ozu1″,”sa-item”:”_yb_1d4yk”,”sa-item-title”:”_yb_11yyq”,”sa-thumb-icon”:”_yb_1ok1j”},saConfV1={boldTag:’{s}‘,customEvent:{customBtn:”searchBtnClicked”,customKeyBoard:”enterKeyPressed”,customSelection:”assistSelectionClicked”},elems:{sbForm:”ybar-sf”,sbInput:”ybar-sbq”,sbSubmit:”ybar-search”,sbClear:”ybar-sbq-x”,sbCancel:”ybar-search-back-btn”},hightlight:{exact:!0,pattern:”^”},minInput:1,sa:{css:Css$4[“sa-tray”]},saBE:{base:””,host:””,params:{appid:”yfp-t”}},saItem:{css:””},saList:{css:Css$4[“sa-tray-list-container”]},saTitle:{css:””,style:{display:”block”}},plugins:{saFr:{fr:””},saTray:{afterNode:”ybar-sbq”,ctn:{css:Css$4[“sa-sbx-container”]},tray:{css:Css$4.sa+” “+Css$4.lowlight}},saPCActn:{css:Css$4[“list-item-hover”]},ylcEncode:{disable:!0},saFlvr:{disable:!0},saEdit:{disable:!0},saAnnot:{disable:!0},saImg:{disable:!0},saPopup:{disable:!0}}},richSAConfV1={saBE:{base:””,host:””,params:{appid:”yfp-t”,”.crumb”:””,f:1}},shBE:{host:”https://search.yahoo.com”,base:”/history”,params:{_bcrumb:””}},minInput:0,plugins:{saFlvr:{m9:Css$4[“sa-trending”],m13:Css$4[“sa-history”],flvr:Css$4[“sa-sugg”]},saEdit:{ctn:{css:Css$4[“sa-edit”]},icon:{css:Css$4[“sa-edit-icon”]},text:{css:Css$4[“sa-edit-text”],text:”Remove”}},saAnnot:{title:{css:Css$4[“sa-annot-title”]},subtitle:{css:Css$4[“sa-annot-subtitle”]},richClass:Css$4[“sa-annot-rich”]},tapRmv:{placeholder:””},saImg:{placeholder:{css:Css$4[“sa-img-icon”]},thumbnail:{css:Css$4[“sa-img”]},ctn:{css:Css$4[“sa-img-ctn”]}},saGroup:{hdr:{css:Css$4[“sa-grp-hdr”]},title:{css:Css$4[“sa-grp-hdr-title”]},grps:{m9:{text:”Trending Now”,css:Css$4.trending},m13:{text:””,css:Css$4.history}}}}},richSAConfV1Smartphone={saBE:{base:””,host:””,params:{appid:”mi5″,”.crumb”:””,f:1}},shBE:{host:”https://search.yahoo.com”,base:”/history”,params:{_bcrumb:””}},saItem:{css:Css$4[“sa-item”]},saTitle:{css:Css$4[“sa-item-title”]},minInput:0,plugins:{saFlvr:{m9:Css$4[“sa-trending”],m13:Css$4[“sa-history”],flvr:Css$4[“sa-sugg”]},saEdit:{ctn:{css:Css$4[“sa-edit”]},icon:{css:Css$4[“sa-edit-icon”]},text:{css:Css$4[“sa-edit-text”]}},saAnnot:{title:{css:Css$4[“sa-annot-title”]},subtitle:{css:Css$4[“sa-annot-subtitle”]},richClass:Css$4[“sa-annot-rich”]},tapRmv:{placeholder:””},saImg:{placeholder:{css:Css$4[“sa-img-icon”],wrap:{css:Css$4[“sa-thumb-icon”]}},thumbnail:{css:Css$4[“sa-img”]},ctn:{css:Css$4[“sa-img-ctn”]},richClass:Css$4[“sa-rich-thumb”],showIconOnImgLoad:!0},saGroup:{hdr:{css:Css$4[“sa-grp-hdr”]},title:{css:Css$4[“sa-grp-hdr-title”]},grps:{m9:{text:”Trending Now”,css:Css$4.trending},m13:{text:””,css:Css$4.history}}}}},bottomSearch=function(e,n,t){var i=document.createElement(“div”);i.className=t[“bot-search-item”];var o=document.createElement(“div”),r=document.createElement(“div”);o.className=t[“bot-search-item-col”],r.className=t[“bot-search-item-col”];var s=document.createElement(“div”);s.className=t[“bot-search-icon-container”];var a=document.createElementNS(“http://www.w3.org/2000/svg”,”svg”),c=document.createElementNS(“http://www.w3.org/2000/svg”,”path”);a.setAttribute(“width”,”20″),a.setAttribute(“height”,”20″),a.setAttribute(“viewBox”,”0 0 24 24″),a.classList.add(t[“bot-search-icon”]),c.setAttribute(“d”,”M3.7634,15.837 L6.1814,15.837 C6.5214,17.45 7.0614,18.891 7.7584,20.045 C6.0094,19.118 4.6024,17.637 3.7634,15.837 L3.7634,15.837 Z M2.9144,12.008 C2.9144,11.351 2.9844,10.711 3.1164,10.094 L5.8884,10.094 C5.8264,10.717 5.7864,11.354 5.7864,12.008 C5.7864,12.663 5.8264,13.299 5.8884,13.922 L3.1164,13.922 C2.9844,13.305 2.9144,12.665 2.9144,12.008 L2.9144,12.008 Z M7.7584,3.971 C7.0614,5.125 6.5214,6.566 6.1814,8.179 L3.7634,8.179 C4.6024,6.379 6.0094,4.898 7.7584,3.971 L7.7584,3.971 Z M11.0504,3.142 L11.0504,8.179 L8.1054,8.179 C8.6604,5.664 9.7414,3.771 11.0504,3.142 L11.0504,3.142 Z M12.9654,3.142 C14.2754,3.771 15.3564,5.664 15.9114,8.179 L12.9654,8.179 L12.9654,3.142 Z M20.2524,8.179 L17.8344,8.179 C17.4954,6.566 16.9544,5.126 16.2574,3.971 C18.0064,4.898 19.4144,6.379 20.2524,8.179 L20.2524,8.179 Z M11.0504,20.875 C9.7414,20.245 8.6594,18.352 8.1054,15.837 L10.1354,15.837 C10.2104,15.161 10.3914,14.519 10.6584,13.922 L7.7984,13.922 C7.7354,13.305 7.7004,12.665 7.7004,12.008 C7.7004,11.351 7.7354,10.711 7.7984,10.094 L11.0504,10.094 L11.0504,13.184 C11.5394,12.388 12.1904,11.702 12.9654,11.183 L12.9654,10.094 L20.8994,10.094 C21.0284,10.697 21.0964,11.323 21.0994,11.964 L21.0994,11.964 L21.0994,12.661 C21.0994,13.19 21.5284,13.618 22.0574,13.618 L22.0584,13.618 C22.5874,13.618 23.0164,13.19 23.0164,12.661 L23.0164,11.965 L23.0144,11.965 C22.9904,5.662 17.6704,0.608 11.2724,1.024 C5.8994,1.373 1.4994,5.676 1.0414,11.04 C0.5134,17.228 5.1074,22.463 11.0504,22.975 C11.1664,22.985 11.3274,22.993 11.4844,22.999 C11.8104,23.012 12.1194,22.85 12.2904,22.572 L12.2924,22.569 C12.5734,22.113 12.3964,21.514 11.9124,21.284 L11.0504,20.875 Z M15.9434,18.874 C14.6054,18.874 13.5214,17.79 13.5214,16.452 C13.5214,15.115 14.6054,14.03 15.9434,14.03 C17.2804,14.03 18.3654,15.115 18.3654,16.452 C18.3654,17.79 17.2804,18.874 15.9434,18.874 M21.6354,20.908 L19.4524,18.725 C19.8774,18.07 20.1264,17.291 20.1264,16.452 C20.1264,14.145 18.2584,12.274 15.9514,12.269 L15.9354,12.269 C13.6284,12.274 11.7604,14.145 11.7604,16.452 C11.7604,18.763 13.6324,20.635 15.9434,20.635 C16.7814,20.635 17.5614,20.386 18.2154,19.961 L20.3984,22.144 C20.7404,22.486 21.2934,22.486 21.6354,22.144 C21.9774,21.803 21.9774,21.249 21.6354,20.908″),a.appendChild(c),s.appendChild(a),o.appendChild(s);var l=document.createElement(“span”),u=document.createElement(“span”);u.className=t[“bot-search-span”];var d=document.createElement(“span”),p=e.split(“{query}”);return l.textContent=p[0]||””,u.textContent=n,d.textContent=p[1]||””,r.appendChild(l),r.appendChild(u),r.appendChild(d),i.appendChild(o),i.appendChild(r),i},_getQueryStringByName=function(e){var n=new RegExp(“[?&]”+e+”=([^]*)”).exec(window.location.search);return n?n[1]:null},_getFrValueByMode=function(e,n,t){void 0===e&&(e=!1),void 0===n&&(n=!1);var i=document.querySelector(‘input[name=”fr”]’),o=i?i.value:”yfp-t”,r=_getQueryStringByName(“fr”),s=r||o,a=document.getElementById(“ybar”),c=a&&a.className&&a.className.match(/ybar-variant-([a-z]+)/),l=c?c[1]:””;return-1===[“att”,”frontier”,”rogers”].indexOf(l)&&(e&&(s+=”-m”),n&&(s+=”-s”)),”tn”===t&&(s=r?s+”-tn”:(null==i?void 0:i.dataset.tnvalue)||s),s},_getFr2ValueByMode=function(e,n,t,i,o){void 0===t&&(t=!1);var r=null,s=”smartphone”===n&&!!document.querySelector(“.Reader-open”)||”smartphone”!==n&&!!document.querySelector(“.modal-open”),a=e.querySelector(‘input[name=”fr2″]’);if(a){r=a.value;var c=a.dataset&&a.dataset.savalue,l=a.dataset&&a.dataset.modalsb,u=a.dataset&&a.dataset.modalsa;t?r=s&&u?u:c:s&&l&&(r=l),i&&o&&(r=r+”,ct:”+i+”,kt:”+o)}return r},_getTsrcValueByMode=function(e,n){void 0===n&&(n=!1);var t=null,i=e.querySelector(‘input[name=”.tsrc”]’);if(i){t=i.value;var o=i.dataset&&i.dataset.savalue;n&&o&&(t=o)}return t},_setInputValues=function(e,n,t){var i=e.querySelectorAll(n);if(i)for(var o=0;o=0?(r=”srch-asst”,u=!0,l=c.idx+1):r=”kybrd”:r=”botSearchClicked”===n.type?”sitesrch”:”icon”,”homepage”!==t&&”my”!==t||!s&&!u)”smartphone”===i&&(setFr2(e,i,u),setTsrc(e,u));else{var d=h(c),p=d.category,f=d.keyword;setFr(e,s,u,p),setFr2(e,i,u,p,f),setTsrc(e,u)}”ngy”===t&&(s||u)&&setFr(e,s,u),b(getI13nObject(r,”0″,l.toString()))}},m=function(n){var o,r=!!document.querySelector(“.modal-open”),s=null===(o=n.detail)||void 0===o?void 0:o.data,a=!0,c=(s&&s.idx||0)+1;if(“homepage”===t||”my”===t){var l=h(s),u=l.category,d=l.keyword;setFr(e,r,a,u),setFr2(e,i,a,u,d),setTsrc(e,a)}else”smartphone”===i&&(setFr2(e,i,a),setTsrc(e,a));”ngy”===t&&setFr(e,r,a),b(getI13nObject(“srch-asst”,”0″,c.toString()))},y=function(e){if(“function”==typeof n.beaconClick&&9!==e.keyCode&&13!==e.keyCode&&1===d&&”smartphone”!==i){n.saveCurrentTimerValue(“search_input_keyboard_input”);var t=getI13nObject(“keystroke”,”1″);delete t.clickParams.tar,d++,n.beaconClick(t.sec,t.slk,t.pValue,t.clickParams)}},g=function(){n.saveCurrentTimerValue(“search_input_focus_click”)},b=function(t){if(“function”==typeof n.beaconClick){n.saveCurrentTimerValue(“search_query_submit”);var i={pp:{A_utm:n.getPerformanceI13nObject()}};n.beaconClick(t.sec,t.slk,t.pValue,t.clickParams,void 0,(function(){setTimeout((function(){e&&e.submit()}),300)}),i)}else e&&e.submit()};function v(){this.config={botSearch:{action:c,text:u||””},suggestionTitle:{text:l||””}}}function _(e){var n=this.config,t=this.app.view,i=t.elems.sbForm,o=t.elems.sbInput.value,r=suggestionTitle(Css$4,n.suggestionTitle.text),s=bottomSearch(n.botSearch.text,o,Css$4);s&&(e&&r&&(e.prepend(r),e.appendChild(s)),s.addEventListener(“click”,(function(){n.botSearch.action&&(i.action=n.botSearch.action),t.hide(),f(new CustomEvent(“botSearchClicked”))})))}a&&(a&&(a.addEventListener(“enterKeyPressed”,f),a.addEventListener(“assistSelectionClicked”,m),a.addEventListener(“searchBtnClicked”,f),a.addEventListener(“keydown”,y),a.addEventListener(“click”,g)),”homepage”!==t&&”my”!==t&&”ngy”!==t||(setFr(e),”homepage”===t&&setTypeByQueryString(e)),n.saveCurrentTimerValue(“search_assist_ready”)),v.prototype={init:function(e){this.app=e,e.on(“after_update_list”,_,this)}},c&&(null===(s=window.YAHOO.SA)||void 0===s||s.add(“saBotSearch”,v))},saInitV1=function(e,n,t,i,o,r){var s=n.searchBox.querySelector(‘input[name=”fr”]’),a=n.searchBox.getAttribute(“data-appid”);if(window.YAHOO&&window.YAHOO.SA){s&&t.plugins.saFr&&(t.plugins.saFr.fr=s.value),”attgoog”===a&&(t.saBE.params.appid=”attgoog”),t.saBE.host=n.searchBox.getAttribute(“data-sabase”);var c=n.searchBox.dataset.sacrumb,l=n.searchBox.dataset.sabcrumb,u=n.searchBox.dataset.mtestid;c&&(t.saBE.params[“.crumb”]=c),l&&t.shBE&&(t.shBE.params._bcrumb=l),u&&(t.saBE.params.mtestid=u),ApplyOverrides$1(n.searchBox,{beaconClick:beaconClick,saveCurrentTimerValue:saveCurrentTimerValue,getPerformanceI13nObject:getPerformanceI13nObject},i,o,r),window.YAHOO.SA.init(t)}else{var d=”Search lib not found. SearchAssist failed to initialise”;e.logError(d,new Error(d))}},saConfV0={boldTag:’{s}‘,clearButtonId:”ybar-sbq-x”,suppressEmptyQuery:!0,anykey:!0,autofocus:!0,enableYlc:!1,fr2:”sa-gp-ybar”,searchBoxId:”ybar-sbq”,cssClass:{container:Css$4[“sa-sbx-container”],trayContainer:Css$4.sa+” “+Css$4.lowlight,tray:Css$4[“sa-tray”],traySub:Css$4[“sa-tray”]+” “+Css$4[“sub-assist”]+” “+Css$4[“no-wrap”],ul:Css$4[“sa-tray-list-container”],liHighlight:Css$4[“list-item-hover”],li:””,span:””,text:””,aria:””,actionContainer:Css$4[“sa-fd-actn-cont”],relatedSearches:Css$4[“related-title”],trendingNow:Css$4[“trending-title”]}},YbRapid=getAugmentedNamespace(rapid),nativeAssist=createCommonjsModule((function(e){var n=function(e,n){var t=function(){if(“Microsoft Internet Explorer”===e.navigator.appName){var n=new RegExp(“MSIE ([0-9]{1,}[.0-9]{0,})”).exec(e.navigator.userAgent);return n&&n[1]&&parseFloat(n[1])}return!1}();function i(e,n){e.prototype=Object.create?Object.create(n.prototype):function(e){function n(){}return n.prototype=e,new n}(n.prototype),e.prototype.constructor=e}function o(e){return”function”==typeof e.trim?e.trim():e.replace(/^s+|s+$/gm,””)}function r(e){if(t&&t{s}”,annotation:{},cssClass:{container:”sa-sbx-container”,trayContainer:”sa lowlight”,tray:”sa-tray”,traySub:”sa-tray sub-assist no-wrap”,ul:”sa-tray-list-container”,liHighlight:”list-item-hover”,li:””,span:””,text:””,aria:”sa-aria-live-region”,actionContainer:”sa-fd-actn-cont”,relatedSearches:”related-title”,trendingNow:”trending-title”},text:{relatedSearches:”Related Searches”,trendingNow:”Trending Now”,ariaShown:”new suggestions shown”,ariaClosed:”Suggestion box closed”},customEvent:!1,suppressEmptyQuery:!1,enableAnnotation:!1,enableIpos:!0,subAssist:!0,subTrayDelta:5,trayPadding:12,debug:!1,objectName:”SA”,anykey:!1,clearBeaconing:!1,enableYlc:!0,autofocus:!1,highlight:{pattern:””,exact:!1},minQueryLength:0,enableTabRender:!0}}return e.YAHOO=e.YAHOO||{},c.prototype={set:function(e,n,t){e.setAttribute(n,t)},get:function(e,n){return e.getAttribute(n)},merge:function e(n,t){for(var i in t)”object”==typeof t[i]&&”object”==typeof n[i]?e(n[i],t[i]):n[i]=t[i]},extend:i,buildUrl:function(e,n){var t=[];for(var i in n)n.hasOwnProperty(i)&&t.push(encodeURIComponent(i)+”=”+encodeURIComponent(n[i]));return t.length>0&&(e=e+(-1===e.indexOf(“?”)?”?”:”&”)+t.join(“&”)),e},stopPropagation:function(e){e.returnValue=!1,e.cancelBubble=!0,e.preventDefault&&e.preventDefault(),e.stopPropagation&&e.stopPropagation(),e.stopImmediatePropagation&&e.stopImmediatePropagation()},setFocus:function(e){r(e),s(e)},cursorEnd:r,select:function(e,n,i){if(t&&t&]/gim,(function(e){return””+e.charCodeAt(0)+”;”}))},ae:function(e,n,t,i){if(i||(i=!1),e.addEventListener)e.addEventListener(n,t,i);else{if(!e.attachEvent)return!1;e.attachEvent(“on”+n,t)}},de:function(e,n,t){if(e.removeEventListener)e.removeEventListener(n,t);else{if(!e.detachEvent)return!1;e.detachEvent(“on”+n,t)}},ts:function(){return Math.round((new Date).getTime()/1e3)},bold:function(e,n,t,i){var o,r,s=(i.pattern?i.pattern:””)+”(&[^;\s]*)?(%needles)”;return(o=i.exact?[a(t)]:t.split(/[s|,]+/).filter((function(e){return””!==e})).sort((function(e,n){return n.length-e.length})).map((function(e){return a(e)}))).length?(s=s.replace(“%needles”,o.join(“|”)),n=n.replace(new RegExp(s,”gi”),(r=e,function(e,n,t){return n&&!/s/.test(t)?e:r.replace(/{s}/g,t)})),n):n},debug:function(n){this.config.debug&&e.console&&e.console.log&&e.console.log(n)}},i(l,c),l.prototype.init=function(t,i){var o=this;if(this.saModel=i,this.config=t,this.clearButton=this.clearButton||n.getElementById(this.config.clearButtonId),this.searchbox=this.searchbox||n.getElementById(this.config.searchBoxId),!this.searchbox)return!1;this.config.gossipParam.pq=this.searchbox.value;for(var r=this.searchbox;r&&!this.formTag;)r.tagName&&”form”===r.tagName.toLowerCase()&&(this.formTag=r),r=r.parentNode;return!!this.formTag&&(this.container=n.createElement(“div”),this.container.className=this.config.cssClass.container,this.trayContainer=n.createElement(“div”),this.trayContainer.className=this.config.cssClass.trayContainer,this.container.appendChild(this.trayContainer),this.searchbox.parentNode.insertBefore(this.container,this.searchbox.nextSibling),this.searchbox.setAttribute(“role”,”combobox”),this.searchbox.setAttribute(“aria-autocomplete”,”both”),this.ae(e,”load”,(function(){o.aria=n.createElement(“div”),o.aria.className=o.config.cssClass.aria,o.set(o.aria,”aria-live”,”polite”),o.aria.style.position=”absolute”,o.aria.style.left=”-9999px”,n.body.appendChild(o.aria)})),!0)},l.prototype.getWidth=function(e,t){var i,o={p:e,t:this.config.boldTag.replace(“{s}”,this.htmlEncode(e)),idx:0},r=n.createElement(“div”);r.className=this.config.cssClass.container;var s=n.createElement(“div”);s.className=this.config.cssClass.trayContainer,r.appendChild(s);var a=n.createElement(“div”);a.className=this.config.cssClass.traySub,a.style.left=”-9999px”,s.appendChild(a);var c=n.createElement(“ul”);c.className=this.config.cssClass.ul,a.appendChild(c);var l=this.createItem(o);t&&((i=n.createElement(“span”)).innerHTML=t,l.suggestionSpan.appendChild(i)),c.appendChild(l.li),this.searchbox.parentNode.insertBefore(r,this.searchbox.nextSibling);var u=l.suggestionSpan.clientWidth+this.config.subTrayDelta;return r.outerHTML=””,u},l.prototype.display=function(t){var i=t.data,o=t.sqpos,r=t.hiddenNeedle,s=this,a={};this.hide(),this.selectedItem=!1,this.tray=n.createElement(“div”),this.set(this.tray,”type”,”normal”),this.tray.className=this.config.cssClass.tray,o&&this.config.subAssist&&(this.tray.className=this.config.cssClass.traySub,this.tray.style.left=this.getWidth(r)+”px”),this.ul=n.createElement(“ul”),this.ul.className=this.config.cssClass.ul,this.set(this.ul,”role”,”listbox”),this.tray.appendChild(this.ul),this.itemList=[],this.config.ylcParam.n_sugg=s.saModel.ylc.n_sugg,i.forEach((function(t){var i;if(t.idx=s.itemList.length,4===t.m&&s.config.text.trendingNow&&!a.trending){var r=n.createElement(“span”);r.className=s.config.cssClass.trendingNow,r.innerHTML=s.config.text.trendingNow,s.ul.appendChild(r),a.trending=!0}var c=s.createItem(t);!o&&s.config.enableAnnotation&&t.m&&s.config.annotation[t.m]&&t.fd&&(i=s.getItemAnnotation(t,c.suggestionSpan))&&c.suggestionSpan.appendChild(i),s.ul.appendChild(c.li),s.itemList.push(c.li),s.ae(c.li,”mouseenter”,(function(e){s.resetHighlight(),c.li.className=s.config.cssClass.li+” “+s.config.cssClass.liHighlight,s.selectedItem=t.idx})),s.ae(c.li,”mouseleave”,(function(e){c.li.className=s.config.cssClass.li})),s.ae(c.li,”click”,(function(i){var o=s.searchbox.value,r=i.target||i.srcElement;s.saModel.ylc.pos=t.idx+1,s.saModel.ylc.pqstr=o,s.saModel.ylc.pqstrl=o.length,s.saModel.ylc.use_case=””,s.formTag.fr2&&(s.formTag.fr2.value=s.config.fr2),s.searchbox.value=t.p,r.tagName&&”a”===r.tagName.toLowerCase()&&(s.searchbox.value=s.get(r,”data”),s.saModel.ylc.use_case=r.innerHTML),s.hide(),s.saModel.addYlc(s.saModel.clickTarget),s.config.customEvent?(s.saModel.addYlk(r),function(t,i,o){var r;”function”==typeof e.CustomEvent?(r=new e.CustomEvent(i,{detail:o}),t.dispatchEvent(r)):”function”==typeof n.createEvent?((r=n.createEvent(“CustomEvent”)).initCustomEvent(i,!1,!1,o),t.dispatchEvent(r)):(n.attachEvent,document.documentElement[i]=o)}(s.searchbox,”assistSelection”,{data:t})):s.suggestionClick(i,t)}))})),this.aria&&(this.set(this.aria,”aria-expanded”,”true”),this.aria.innerHTML=”

    “+s.itemList.length+” “+this.config.text.ariaShown+”

    “),this.show()},l.prototype.suggestionClick=function(e,n){this.formTag.submit()},l.prototype.show=function(){this.shown=!0,this.resetHighlight(),this.trayContainer.appendChild(this.tray)},l.prototype.hide=function(){this.aria&&(this.set(this.aria,”aria-expanded”,”false”),this.aria.innerHTML=”

    “+this.config.text.ariaClosed+”

    “),this.shown=!1,this.resetHighlight(),this.trayContainer.innerHTML=””},l.prototype.resetHighlight=function(){!1!==this.selectedItem&&this.itemList.length&&(this.itemList[this.selectedItem].className=this.config.cssClass.li)},l.prototype.resetHightlight=l.prototype.resetHighlight,l.prototype.tab=function(){if(!this.shown||!this.itemList.length)return!1;if(!1!==this.selectedItem)this.searchbox.value=this.get(this.itemList[this.selectedItem],”data”),this.saModel.fetch();else{if(this.searchbox.value===this.get(this.itemList[0],”data”))return this.saModel.unset(),!1;this.searchbox.value=this.get(this.itemList[0],”data”),this.saModel.fetch()}return!0},l.prototype.moveUpDown=function(e){return!(!this.shown||!this.itemList.length)&&(this.resetHighlight(),e?!1===this.selectedItem||this.selectedItem=this.itemList.length-1?this.selectedItem=0:this.selectedItem++,this.itemList[this.selectedItem].className=this.config.cssClass.li+” “+this.config.cssClass.liHighlight,this.searchbox.value=this.get(this.itemList[this.selectedItem],”data”),!0)},l.prototype.createItem=function(e){var t=n.createElement(“li”),i=this;if(t.className=this.config.cssClass.li,this.set(t,”pos”,e.idx),this.set(t,”role”,”option”),this.config.formatResult){var o=this.config.ylcVal;o&&(o=o.replace(“cposV”,e.idx),i.config.ylcParam&&(o=o.replace(“t9Val”,i.config.ylcParam.n_sugg)),this.set(t,”data-ylk”,o)),this.set(t,”data-position”,e.idx)}i.set(t,”data”,e.p);var r=n.createElement(“span”);r.className=i.config.cssClass.span,r.style.display=”block”,t.appendChild(r);var s=n.createElement(“span”);return s.className=i.config.cssClass.text,s.innerHTML=e.t,r.appendChild(s),{li:t,suggestionSpan:r}},l.prototype.getItemAnnotation=function(e){var t,i,o,r=this.config.annotation[e.m]||{},s=this.config.cssClass,a=e.fd,c=””,l=””,u=this.searchbox.clientWidth-2*this.config.trayPadding;if(r.subtitle&&a.subtitle){if(l=r.subtitle.replace(“{subtitle}”,this.htmlEncode(a.subtitle)),!(this.getWidth(e.p,l)