<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
>
<channel>
	<title>Jn博客</title>
	<link>https://jnyun2.wodemo.net/</link>
        <item>
        <title><![CDATA[其实我也不知道这是什么。]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/487183]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Sat, 28 Jul 2018 20:50:27 -0700]]></pubDate>
        <description><![CDATA[

  
    
    李鹏-前端开发
    
    function versionCompare(Str1,Str2){
      //第一步：使用正则，先把传参进来的两个版本号中空格给替换成空。
      var nStr1 =Str1.replace(/(^\s+)|(\s+$)/gi,"");
      var nStr2 = Str2.replace(/(^\s+)|(\s+$)/gi,"");
      //第二步：进行一次判断，万一我们传进来的是空的，提示一下，
      if(!nStr1 || !nStr2){
        alert("您输入的两个版本号为空");
        return true;
      }
      //第三步：使用正则来匹配截取两个传进来的版本号中的版本数字
      var req=/\d(\.|\d)*\d/gi; //这个是匹配**.**.**数字的正则
      nStr1=nStr1.match(req)[0]; //match出来的是一个数组，这个匹配出来在第0个
      nStr2=nStr2.match(req)[0];
      //第四步：版本比较，先把版本号字符串切割成数组，[主版本号，次版本号，修订号]
      var arr1 = nStr1.split('.'); //[**,**,**]
      var arr2 = nStr2.split('.');
      //第五步：分别开始分情况比较版本号中的三个版本。
      if(arr1[0]>arr2[0]){
        alert("第一个版本高于第二个版本");
        return true;
      }else if(arr1[0] == arr2[0]){
        if(arr1[1]>arr2[1]){
          alert("第一个版本高于第二个版本")
          return true;
        }else if(arr1[1] == arr2[1]){
          if(arr1[2]>arr2[2]){
            alert("第一个版本高于第二个版本")
            return true;
          }else if(arr1[2] == arr2[2]){
            alert("两个版本号一样");
            return false;
          }
        }
      }
      alert("第一个版本低于第二个版本")
      return false;
  }
  console.log(versionCompare("l1.11.0","p1.11.0"));
    
  
  

  
]]></description>
    </item>
        <item>
        <title><![CDATA[音乐免费下载，播放器]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/485513]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Mon, 09 Jul 2018 21:56:22 -0700]]></pubDate>
        <description><![CDATA[. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[Jn加速网页]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/484580]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Sat, 30 Jun 2018 22:55:20 -0700]]></pubDate>
        <description><![CDATA[  
       
       
      function openwin() 
      { 
      OpenWindow=window.open("", "newwin", "height=250, width=250,toolbar=no,scrollbars="+scroll+",menubar=no");
      //写成一行 
      







OpenWindow.document.write("") 
      OpenWindow.document.write("有没有一种嗖嗖的感觉？") 

      OpenWindow.document.write("是不是很快？但是由于Jn科技提供技术的有限，无法做到大规模") 


      OpenWindow.document.write("") 
      OpenWindow.document.write("") 
      OpenWindow.document.close() 
      } 
       
       
       
      
       
       
      ]]></description>
    </item>
        <item>
        <title><![CDATA[日历]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/484579]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Sat, 30 Jun 2018 22:55:20 -0700]]></pubDate>
        <description><![CDATA[ 
 body,ul,li,h2,p{margin:0;padding:0;} body{font:12px/1.5 Tahoma;} #calendar{width:248px;overflow:hidden;zoom:1;background:#eaeaea;margin:10px auto;padding:0 0 10px 10px;} #calendar ul{overflow:hidden;zoom:1;} #calendar li{color:#fff;float:left;width:40px;height:40px;cursor:pointer;font-size:14px;text-align:center;background:#424242;line-height:1.3;list-style-type:none;border:1px solid #424242;margin:10px 10px 0 0;padding:5px;} #calendar li.current{color:#F69;background:#fff;} #calendar li strong{display:block;font-size:18px;} #msg{color:#666;background:#f1f1f1;border:1px solid #fff;margin:10px 10px 0 0;padding:5px;} #msg h2{font-size:14px;}   window.onload = function () { var oLi = document.getElementById("calendar").getElementsByTagName("li"); var oMsg = document.getElementById("msg"); var oP = oMsg.getElementsByTagName("p")[0]; var oStrong = oMsg.getElementsByTagName("strong")[0]; var oArray = [ "元旦：1月1日至3日放假三天。", "春节：2月2日至8日放假7天。", "妇女节：3月8日妇女节，与我无关。", "清明节：4月3日至5日放假3天", "劳动节：4月30日至5月2日放假3天。", "端午节：6月4日至6日放假3天。", "小暑：7月7日小暑。不放假。", "七夕节：8月6日七夕节。不放假。", "中秋节：9月10日至12日放假3天。", "国庆节：10月1日至7日放假7天。", "立冬：11月8日立冬。不放假。", "艾滋病日:12月1日废除奴隶制国际日:12月2日。" ]; for(var i = 0; i < oLi.length; i++) { oLi[i].index = i; oLi[i].onmouseover = function () { for(var n = 0; n < oLi.length; n++) oLi[n].className = ""; this.className = "current"; oP.innerHTML = oArray[this.index]; oStrong.innerHTML = this.index + 1; } } }      1JAN 2FER 3MAR 4APR 5MAY 6JUN 7JUL 8AUG 9SEP 10OCT 11NOV 12DEC    6 月节日  端午节：6月4日至6日放假3天。    
这评论有毒y( ˙ᴗ. )耶~
点击评论




类别:工具 
返回首页




































,


























































来评论吧！
 

	
   (function(d, s) {
       var j, e = d.getElementsByTagName(s)[0];

       if (typeof LivereTower === 'function') { return; }

       j = d.createElement(s);
       j.src = 'https://cdn-city.livere.com/js/embed.dist.js';
       j.async = true;

       e.parentNode.insertBefore(j, e);
   })(document, 'script');
	
 为正常使用来必力评论功能请激活JavaScript


点击返回顶部


 





类别:工具 
返回首页







为什么我无法评论？
可能您的手机并不支持插件,
或是误报有毒
您可以换一个浏览器
或是等待您的浏览器兼容。






























































	(function (w, d, s, i, v, j, b) {
		w[i] = w[i] || function () {
			(w[i].v = w[i].v || []).push(arguments)
		};
		j = d.createElement(s),
			b = d.getElementsByTagName(s)[0];
		j.async = true;
		j.charset = "UTF-8";
		j.src = "https://www.v5kf.com/156265/v5kf.js";
		b.parentNode.insertBefore(j, b);
	})(window, document, "script", "V5CHAT");
		





    #main.protected #logo {
        top:5%;
    }
    #main.protected #banner {
        top:calc(5% + 70px);
    }
    #main.protected #loading-bar{
        display:none;
    }
    #main.protected #protect-hint {
        display:block;
    }
   
    #protect-hint {
        position:absolute;
        width:100%;
        bottom:0;
        text-align: center;
        font-size:16px;
        display:none;
    }
    #protect-hint .protect-content {
        width: 15em;
        height:100%;
        display:inline-block;
        background:rgb(255,210,0);
        border-radius: 4px;
        box-sizing: border-box;
        box-shadow: 0px 0px 2px 0px white,  0px -1px 0px 1px rgba(255,255,255,0.4) inset;
        padding-bottom:1em;
        position:relative;
        border-bottom-right-radius:0;
        border-bottom-left-radius:0;
    }
    .protect-content h3 {
        /*
        background: #c167e6;
        color: white; 
        */
        margin: 0;
        padding: 1.5em 0 0.5em 0;
        margin-bottom: 1em;
        box-shadow: 0px 0px 0px 0px white,  0px 1px 0px 0px rgba(255,255,255,0.2) inset;
        position:relative;
    }
    .protect-content h3:after {
        content: "";
        width: 1em;
        height: 1em;
        background: black;
        display: block;
        border-radius: 1em;
        position: absolute;
        left: calc(50% - 0.5em);
        top: -0.7em;  
        box-shadow: -6em 0px 0px 0px black, -4.5em 0px 0px 0px black, -3em 0px 0px 0px black, -1.5em 0px 0px 0px black,6em 0px 0px 0px black, 4.5em 0px 0px 0px black, 3em 0px 0px 0px black, 1.5em 0px 0px 0px black;
    }
    .protect-content img {
        width:80%;
        height:80%;
    }


最新
| 订阅
| 管理

|
English


| N





WoUtil.init('https://jnyun2.wodemo.com/entry/484579');



. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[Jn工具箱_教育]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/484506]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Sat, 30 Jun 2018 06:17:47 -0700]]></pubDate>
        <description><![CDATA[
  
  教育 - Jackson工具箱 
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
  
.fk-tabStyle2 .f-formTabButtonList .formTabButtonClick{border-bottom-color:#06c1ae;}
.fk-tabStyle2 .f-formTabButtonList .formTabButtonClick{color:#06c1ae;}
.fk-tabStyle1 div.formTabButtonClick .f-formTabMiddle{background-color:#06c1ae;}
 
   
  
.fk-foldStyle1 .f-formFoldButton.active{color:#06c1ae;}
.fk-foldStyle1 .f-formFoldButton.active .icon-fold:before{color:#06c1ae;}
.fk-foldStyle2 .f-formFoldButton.active{background-color:#06c1ae;}
.fk-foldStyle3 .f-formFoldButton.active{color:#06c1ae;}
.fk-foldStyle3 .f-formFoldButton.active .icon-fold:before{color:#06c1ae;}
 
   
  
#module684 .formBannerTitle684{display:none !important;}
#module683 {height:180px;}
#module683 .formBannerTitle683{display:none !important;}
#module673 {border:none;}
#module673 {padding:0px;}
#module673 .formMiddle673{border:none;}
#module673 .formMiddle673{padding:0px;}
#module673 .formBannerTitle673{border:none;}
#module673 .formBannerTitle673{padding:0px;}
 
  
#g_web{background:none;}
#webContainerBox{background:none;}
#webBodyBackground{background:url(//mo.faisys.com/image/background/11.jpg) center center;background-size:cover;}
.fullScreenDivCotainer .fk-body-bg{background:url(//mo.faisys.com/image/background/11.jpg) center center;background-size:cover;}
 
  
#module673{overflow:hidden;}
 
  
 
   
  
.form .floatBtnStyle0 .middle{background-color:#06c1ae;}
.form .floatBtnStyle1 .middle{background-color:#06c1ae;}
.form .floatBtnStyle2 .middle{border-color:#06c1ae;color:#06c1ae;}
.form .floatBtnStyle3 .middle{background:-webkit-linear-gradient(bottom, #06c1ae 10%,rgba(130,224,214,1));background:-webkit-linear-gradient(bottom, #06c1ae 10%,rgba(130,224,214,1));}
.form .floatBtnStyle4 .middle{background:-webkit-linear-gradient(bottom, #06c1ae 10%,rgba(130,224,214,1));background:-webkit-linear-gradient(bottom, #06c1ae 10%,rgba(130,224,214,1));border-color:#06c1ae;}
 
  
.backTop .backTop_icon.icon-backTop0{background-color:#06c1ae;color:#fff;}
.backTop .backTop_icon.icon-backTop1{background-color:#fff;color:#06c1ae;}
.backTop .backTop_icon.icon-backTop2{background-color:#fff;color:#06c1ae;border-color:#06c1ae;}
 
   
   
  
 
   
  
 
  .open .navItem:nth-child(2) {transition-delay: 160ms;} 
.open .navItem:nth-child(4) {transition-delay: 240ms;} 
.open .navItem:nth-child(6) {transition-delay: 320ms;} 
#navbar_107 .icon-navItemIcon{background-image: url(//2.ss.faisys.com/image/materialLib/icon/2000164.gif?v=201712181557);background-size:contain;background-position:50% 50%;background-repeat:no-repeat;} 
#navbar_107 .icon-navItemIcon:before{content:none;} 
.open .navItem:nth-child(8) {transition-delay: 400ms;} 
.open .navItem:nth-child(10) {transition-delay: 480ms;} 
.open .navItem:nth-child(12) {transition-delay: 560ms;} 
.open .navItem:nth-child(14) {transition-delay: 640ms;} 
#navbar_126 .icon-navItemIcon:before{content:'\e6f0';color:rgb(31,135,232);} 
#navbar_126 .icon-navItemIcon{background-image:none;} 
.open .navItem:nth-child(16) {transition-delay: 720ms;} 
#navbar_125 .icon-navItemIcon:before{content:'\ec53';content:'\ec53';} 
#navbar_125 .icon-navItemIcon{background-image:none;}  
  .webFooterBox .ui-calendar-calendar .ui-state-active{background-color:#06c1ae;}
.webFooterBox .ui-calendar-calendar .ui-calendar-startDate{background-color:#06c1ae;}
.webFooterBox .ui-calendar-prev:after{color:#06c1ae;}
.webFooterBox .ui-calendar-next:after{color:#06c1ae;}
.webFooterBox .fk-calendarNav{background-color:#06c1ae;} 
  
  
    
(function() { 
var fs = document.createElement("script"); 
fs.src = "//fe.faisys.com/jssdk_1_0/js/hawkEye.min.js?v=201806111606";
window.FAI_HAWK_EYE = {}; 
window.FAI_HAWK_EYE.jssdk_report_url = "//report.fkw.com/js/report"; 
window.FAI_HAWK_EYE.jssdk_appid = 3003; 
window.FAI_HAWK_EYE.fai_aid = 13908440; 
window.FAI_HAWK_EYE.fai_bs_aid = 13908440; 
window.FAI_HAWK_EYE.fai_bs_id = 0; 
window.FAI_HAWK_EYE.fai_bs_wid = 0; 
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(fs, s);
})(); 
  
//html root的字体计算应该放在最前面，这样计算就不会有误差了/
//2016.3.23 wjq update 之所以要加个判断返回一个20.5，是因为当用户在谷歌等浏览器直接输入手机端网站网址时，如果用户设置模块自定义样式的高度比较小，由于这时候的clientWidth为1920px，及返回的_htmlFontSize为40，这时候就会使模块太小，展示不完全，因此先取一个较为准确的值去展示。Mobi.resetHtmlFontSize()顺便也加了
var _htmlFontSize = (function(){
    var clientWidth = document.documentElement ? document.documentElement.clientWidth : document.body.clientWidth;
    //if(clientWidth > 768) clientWidth = 768;
    if(clientWidth > 768 && clientWidth < 1280){
    	clientWidth = 768;
    }else if(clientWidth >= 1280){
    	clientWidth = 512; 
    }
    document.documentElement.style.fontSize = clientWidth * 1/16+"px";
  	return clientWidth * 1/16;
})();

 
   
   
    
    
     
      
     
    
    
     
     
    
    
     
      
      
       
      
     
     
     
     
      
       
         
      Jackson工具箱 
      
     
     
      
       
       
       首页 
       
       
       
       留言板 
       
       
       
       关于我们 
       
       
       
       会员注册 
       
       
       
       会员中心 
       
       
       
       会员登录 
       
       
       
       教育 
       
       
       
       开启小神！ 
       
      
      
      
      
     
    
    
     
      
       
       登录 
       注册 
       
      
     
     
      
       
       
        
       
      
     
    
    
     
      
       
        
        
        
         
         
           &nbsp; 
          
         
           自由容器 
          
         
         
        
        
        
       
       
        
        
        
         
          
           
            
            
             
              
              
              目前自由容器仅支持放置常用模块 
              
             
            
            
             
              
               
               
               
                
                 
                 不要来问我在线安全平台怎么登录？你只要随便点一下横幅上的某一个活动进去就会看到右上角有登陆了。 
                 
                
               
               
               
              
             
            
           
          
         
        
        
        
       
      
      
       
        
        
        
         
         
           &nbsp; 
          
          
         
         
        
        
        
       
       
        
        
        
         
          
           
            
             
             
             
             
             
               洋葱数学 
               
              
              
           
           
            
             
             
             
             
             
               翼课网 
               
              
              
           
           
            
             
             
             
             
             
               课本:纳米盒 
               
              
              
           
           
            
             
             
             
             
             
               在线翻译 
               
              
              
           
           
            
             
             
             
             
             
               在线手机版安全平台 
               
              
              
           
           
            
             
             
             
             
             
               测测你的词汇量—百词... 
               
              
              
           
           
            
             
             
             
             
             
               爱阅读—百词斩 
               
              
              
           
          
         
        
        
        
       
      
      
      
      
       
        
       在线预约 
       
      
     
    
    
     
     
      
       
        
        Jackson 版权所有，严禁抄袭！ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;阅读量:99+ 
        
        
        本站使用&nbsp;Jn建站&nbsp;搭建 
        | 
        | 
        无法举报 
        
       
      
      
      无需写代码，轻松建网站 ，Jn代建&gt;&gt; 
       
        
       
      
     
    
.open .navItem:nth-child(2) {transition-delay: 160ms;} 
#svebar_1 .icon-serItemIcon:before{content:'\e62c';content:'\e62c';} 
#svebar_1 .icon-serItemIcon{background-image:none;} 
.open .navItem:nth-child(4) {transition-delay: 240ms;} 
#svebar_4 .icon-serItemIcon:before{content:'\e6b2';content:'\e6b2';} 
#svebar_4 .icon-serItemIcon{background-image:none;} 
.open .navItem:nth-child(6) {transition-delay: 320ms;} 
#svebar_3 .icon-serItemIcon:before{content:'\e67c';content:'\e67c';} 
#svebar_3 .icon-serItemIcon{background-image:none;} 
.open .navItem:nth-child(8) {transition-delay: 400ms;} 
#svebar_-2 .icon-serItemIcon:before{content:'\eb25';content:'\eb25';} 
#svebar_-2 .icon-serItemIcon{background-image:none;} 
.open .navItem:nth-child(10) {transition-delay: 480ms;} 
#svebar_2 .icon-serItemIcon:before{content:'\e6a0';content:'\e6a0';} 
#svebar_2 .icon-serItemIcon{background-image:none;} 
.open .navItem:nth-child(12) {transition-delay: 560ms;} 
#svebar_-1 .icon-serItemIcon:before{content:'\eada';content:'\eada';} 
#svebar_-1 .icon-serItemIcon{background-image:none;} 
.open .navItem:nth-child(14) {transition-delay: 640ms;} 
#svebar_6 .icon-serItemIcon:before{content:'\e6f0';color:rgb(31,135,232);} 
#svebar_6 .icon-serItemIcon{background-image:none;} 
 
     
      
       
       
        
         
          
           
            
           
             电话咨询 
            
           
          
        
       
       
       
        
         
          
           
            
           
             在线留言 
            
           
          
        
       
       
       
        
         
          
           
            
           
             在线地图 
            
           
          
        
       
       
       
        
         
          
           
            
           
             打赏 
            
           
          
        
       
       
       
        
         
          
           
            
           
             教育 
            
           
          
        
       
      
     
     
      
       
        
         
          
         
        
       
       
        
         
        
       
      
     
     
    
    
    
    
    
     
     
    
    
    
   
   
  


		
//管理态下的预览页面提前作处理 之前这里的g_viewMode先去掉
if( !false && window.top !== window.self){
    var g_className = document.getElementById("g_body").className;
    document.getElementById("g_body").className = g_className + " ";
} 
 
var _oem = false,
	_baiduBridgeCodes = "";
 
//用于iframe显示手机模板的时候 给g_web加上width
var g_webWidth = 0;
if(g_webWidth == 0){
	g_webWidth = window.localStorage? localStorage.getItem("g_webWidth"): Cookie.read("g_webWidth");
	if(g_webWidth != null){
		document.getElementById("g_web").style.width = g_webWidth + "px";
	}
} else{
	document.getElementById("g_web").style.width = g_webWidth + "px";
	if (window.localStorage) {
		localStorage.setItem("g_webWidth", g_webWidth);	
	} else {
		Cookie.write("g_webWidth", g_webWidth);	
	}
}	

 
  
var _faiAjax = function(){
	//for regexp
	var r = /\?/;
	var _o = {
		type:"get",
		url:"",
		data:"",
		error:function(){},
		success:function(){}
	};
	var _sendRequest=function(o) {
		var xmlhttp = null;
		//init option code
		o.type = o.type || _o.type;
		o.url = o.url || _o.url;
		o.data = o.data || _o.data;
		o.error = o.error || _o.error;
		o.success = o.success || _o.success;
		if (window.XMLHttpRequest) {
			// code for IE7+, Firefox, Chrome, Opera, Safari
			xmlhttp = new XMLHttpRequest();
		}else{
			return;
		}
		//the instructions param takes the form of an eval statement
		if(o.type != "post") {
			o.url += ( this.r.test( o.url ) ? "&" : "?" ) + o.data;
			xmlhttp.open("GET", o.url, true);
				xmlhttp.onreadystatechange=function() {
				if (xmlhttp.readyState==4 && xmlhttp.status==200) {
					o.success( xmlhttp.responseText );
				}else if( o.error ){
					o.error();
				}
			}
			xmlhttp.send();
		} else {
			xmlhttp.open("POST", o.url, true);
			//Send the proper header information along with the request
			xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded; charset=UTF-8");
			xmlhttp.onreadystatechange=function() {
				if (xmlhttp.readyState==4 && xmlhttp.status==200) {
					o.success( xmlhttp.responseText );
				}else{
					o.error();
				}
			}
			xmlhttp.send(o.data);
		}
	}
	return {
		ajax:function(option){
			try {
				//此次调用的错误不让抛出给window。防止函数重入
				_sendRequest(option);	
			}catch(e){
				//alert(e);
			}
		}
	};
}();
var _jsErrCahche = [];
window.onerror = function(sMsg,sUrl,sLine){
	if (typeof Mobi == 'undefined') {
		if((window.DocumentTouch && document instanceof window.DocumentTouch) || 'ontouchstart' in document.documentElement){
			alert('您的网页加载完成，Jn传媒提供技术支持');
		}else{
			alert('您的网页加载完成，JnPC提供技术支持');
		}
		
	}
	if( sLine < 1 || typeof sMsg != 'string' || sMsg.length < 1 ){
		return;
	}
	
	var log = "Error:" + sMsg + ";Line:" + sLine + ";Url:" + sUrl + ";UserAgent:" + navigator.userAgent;
	var alertLog = "Error:"+sMsg+"\n" + "Line:" + sLine + "\n" + "Url:" + sUrl + "\n";
	var encodeUrl = function (url){
		return typeof url === "undefined" ? "" : encodeURIComponent(url);
	};
	
	var ajax = true;
	var obj = { 'm' : sMsg, 'u' : sUrl, 'l' : sLine };
	for( var i = 0; i < _jsErrCahche.length; i ++ ){
		if( _jsErrCahche[i].m == obj.m && _jsErrCahche[i].u == obj.u && _jsErrCahche[i].l == obj.l  ){
			ajax = false;
			break;
		}
	}
	
	if( ajax ){
		_jsErrCahche.push( obj );
		_faiAjax.ajax({
			type	: "post",
			url		: "ajax/logJsErr.jsp?cmd=jsErr",
			data	: 'msg='+ encodeUrl(log)
		});
	}
	if(false){
		console.log( alertLog );
	}
};




if (typeof Fai == 'undefined'){
	Fai = {};
	//解决页面被嵌套在iframe的场景
	
	Fai.top = window;
	
}



Fai.top._isFaiHost = true;

Fai.top. _aid = 13908440;
Fai.top._headerCode = ""; //网站插件代码
Fai.top._other = {"productNewDeInfo":{"isNewUser":1,"isProductNewDetail":1},"newsNewDefInfo":{"isNewUser":1,"isNewsNewDetail":2,"prevVersion":-1},"mobiServiceOnline":{"sl":[{"serviceType":"0","serviceAccount":"","showFont":"QQ客服","showType":false,"isFontIcon":"true","color":"rgb(238, 82, 102)","fileId":"","classname":"faisco-icons-scQq","filePath":""},{"serviceType":"3","serviceAccount":"13531781840","showFont":"电话咨询","showType":true,"isFontIcon":"true","color":"rgb(46, 176, 99)","fileId":"","classname":"faisco-icons-scPhone","filePath":""}],"o":true},"qrcode_ImageId":"","dc":12,"mobiScreenFull":0,"cml":[],"mc":{"h":true,"c":"","t":1},"hc":{"h":true},"favIcon":{"showType":0,"id":""},"iosIcon":{"showType":0,"id":""},"WXShareIcon":{"showType":0,"id":"","titType":0,"tit":"","cont":""},"templateInfo":{"templatePresetIndex":6,"templateDesignType":1},"mobiBgMusic":{"isOpen":0,"id":"","isGlobal":0,"setting":{"isAuto":0,"isLoop":0,"isHidden":0,"position":0},"filePath":""},"mobiMallHidden":0,"tc":{"h":true},"pa":{"st":0,"ap":"","qrp":"","ma":""},"hssnt":true,"mobiBackTop":{"isOpen":0,"color":"","style":0},"sdss":{"st":0,"type":0}};
Fai.top._bannerData = {"showType":0,"h":false,"bn":1,"b":[],"st":6,"et":1,"sd":0,"c":[]};  // 横幅数据
Fai.top._pageBannerData = {"showType":0,"h":false,"bn":1,"b":[],"st":6,"et":1,"sd":0,"c":[]};  // 栏目独立设置横幅的数据
Fai.top._templateBannerData = {"bn":2,"b":[],"c":[{"i":"AD0IiPTwBhACGAAgyOH-ywUojfaO1AMwgAU4rAI","p":"//14432776.s61i.faiusr.com/2/AD0IiPTwBhACGAAgyOH-ywUojfaO1AMwgAU4rAI.jpg","t":1,"tp":"//14432776.s61i.faiusr.com/2/AD0IiPTwBhACGAAgyOH-ywUojfaO1AMwgAU4rAI!100x100.jpg","w":640,"h":300},{"i":"AD0IiPTwBhACGAAgu_H-ywUozaK-dTCABTisAg","p":"//14432776.s61i.faiusr.com/2/AD0IiPTwBhACGAAgu_H-ywUozaK-dTCABTisAg.jpg","t":1,"tp":"//14432776.s61i.faiusr.com/2/AD0IiPTwBhACGAAgu_H-ywUozaK-dTCABTisAg!100x100.jpg","w":640,"h":300}],"st":2,"et":5,"atOnce":true,"showType":0,"h":false,"sd":0}; // 模板栏目的横幅数据

Fai.top._isFreeVer = true;
Fai.top._resRoot = '//mo.faisys.com';
Fai.top._templateFrameId = 1026;
Fai.top._templateLayoutId = 7;
Fai.top._mobiSiteTitleChanged = 0; 	//用于记录网站标题是否有改动
Fai.top._mobiSiteTitle = {"fontType":0,"align":0,"font":{"size":12,"family":"","colorType":0,"color":"#000"},"bgType":"0","bgFont":{"color":"#000","alpha":100},"bgImgFileId":"","bgImgStyle":"1","mbt":0,"mbc":{"color":"#000","alpha":100},"mbi":"","mbit":1,"mths":1,"name":"Jackson工具箱","mhl":0,"mbip":"//2.ss.faisys.com/image/no-pic.jpg","mti":0};   	//网站标题数据
Fai.top._onlineServiceJson = {"serviceId":{"serviceId":7},"phone":{"open":true,"type":1,"fName":"电话咨询","phoneInfo":[{"name":"电话","number":"17817601378"}],"baseSetting":{"colIconType":0,"content":"\\e62c","classname":"faisco-icons-call1"},"typeStr":"phone"},"sms":{"open":false,"name":"信息咨询","number":"17817601378","type":2,"baseSetting":{"colIconType":0,"content":"\\e6a0","classname":"faisco-icons-mail1"},"typeStr":"sms"},"map":{"open":true,"name":"在线地图","city":"XXX省XXX市XXX县","mark":"","d_address":"XXX路XXX号","type":3,"baseSetting":{"colIconType":0,"content":"\\e67c","classname":"faisco-icons-gps1"},"typeStr":"map"},"msg":{"open":true,"name":"在线留言","type":4,"baseSetting":{"colIconType":2,"colIconCusType":0,"iconType":0,"content":"\\e6b2","color":"","classname":"faisco-icons-message1"},"typeStr":"msg"},"baiduBridge":{"open":false,"name":"百度商桥","type":-1,"baseSetting":{"c":0,"i":0,"id":0,"iconType":0,"colIconType":0,"colIconCusType":0,"classname":"faisco-icons-scBdsq2","content":"\\eada","color":"","iconFileId":"iconFileId"},"typeStr":"baiduBridge"},"open":true,"order":[1,4,3,-2,2,5,-1,6],"weChat":{"open":true,"name":"打赏","type":-2,"code":"http://13908440.s21i-13.faiusr.com/4/ABUIABAEGAAgtN270wUogb_YxAYwgAk4gAk.png","baseSetting":{"colIconType":0,"content":"\\eb25","classname":"faisco-icons-M001038"},"typeStr":"weChat","sji":1},"service6":{"baseSetting":{"colIconType":2,"colIconCusType":0,"iconType":0,"content":"\\e6f0","color":"rgb(31,135,232)","classname":"faisco-icons-student2","jumpCtrl":{"ide":"/col.jsp?id=126","columnType":103,"url":"/col.jsp?id=126","jumpType":1}},"name":"教育","open":true,"type":6,"typeStr":"service6"},"bg":{"t":0,"c":""},"wordIcon":{"t":0,"c":""},"tcInfo":[{"name":"QQ客服","number":""}]};//在线客服
Fai.top._openOnlineService = true;
Fai.top._manageMode = false;
Fai.top.sessionMemberId = 0;
Fai.top.memberName = "";
Fai.top._colInfo = {"aid":13908440,"wid":0,"id":126,"type":1,"flag":64,"name":"教育","moduleList":[684,683,673],"moduleHidden":[],"browserTitle":"","createTime":1520254764000,"updateTime":1524053823000,"baseSetting":{"colIconType":2,"colIconCusType":0,"iconType":0,"content":"\\e6f0","color":"rgb(31,135,232)","jumpCtrl":{"ide":"","columnType":0},"c":0,"i":0,"id":0,"classname":"","iconFileId":""},"authMemberLevelId":0,"extId":0,"cusColAddress":"","other":{"pgt":0,"pgb":{"type":0,"catalogList":[],"s":4},"cusColAddress":""},"defaultName":"","url":"/col.jsp?id=126","valid":true,"columnStyle":{"s":2},"title":{"fontType":0,"align":0,"font":{"size":12,"family":"","colorType":0,"color":"#000"},"bgType":"0","bgFont":{"color":"#000","alpha":100},"bgImgFileId":"","bgImgStyle":"1","mbt":0,"mhl":0,"mbc":{"color":"#000","alpha":100},"mbi":"","mbit":1,"mti":0,"mths":0},"logo":{"i":"","h":true,"a":1,"style":0,"marginType":0,"margin":{"top":0,"bottom":0,"left":0,"right":0}},"banner":{"showType":0,"h":false,"bn":1,"b":[],"st":6,"et":1,"sd":0,"c":[]},"independent":false,"allowed":true,"selectable":true,"forbid":false};
Fai.top._lcid = 2052;   // 当前的语言版本
Fai.top._serviceList = [{"serviceType":"0","serviceAccount":"","showFont":"QQ客服","showType":false,"isFontIcon":"true","color":"rgb(238, 82, 102)","fileId":"","classname":"faisco-icons-scQq","filePath":""},{"serviceType":"3","serviceAccount":"13531781840","showFont":"电话咨询","showType":true,"isFontIcon":"true","color":"rgb(46, 176, 99)","fileId":"","classname":"faisco-icons-scPhone","filePath":""}]; //商城主题在线客服
Fai.top._mallService = 1; 
Fai.top.inTabMaqueeHelper = {}; // 记录标签模块内子模块的动画函数
Fai.top._isBUser = false;
Fai.top._isMobiMallOpen = false;//是否开通手机商城
Fai.top._bookingOpen = false
Fai.top._newsCommentOpen = false;
Fai.top._webDebug = false; // 本地环境(独立开发也是true)

Fai.top._jzProUrl = '';
Fai.top._portalHost = '';
Fai.top._homeHost = '';


Fai.top._bookingModuleTitle = '在线预约'
Mobi.bookingBoxBind(false);


//多网站聚合页地址
Fai.top._jzAllSiteDomain = _oem ? 'i.vip.webportal.top' : 'i.jz.fkw.com';


	Fai.top._jzProUrl = 'jz.fkw.com';
	Fai.top._portalHost = 'www.faisco.cn';
	Fai.top._homeHost = 'www.faisco.com';



jm(document).ready(function() {
	
		Mobi.ajaxLoadModuleDom(126, 0, {"_ajaxLoadModuleIDList":[],"fullUrl":"http://m.jackson212212.icoc.me/col.jsp?id=126","topBarOptionInfo":{"mobiMallOpen":false}});
	
	
	//判断该栏目是否被删除
	if(jm.isEmptyObject(Fai.top._colInfo)){
		alert("该页面已经删除，点击确定后，将返回到首页");
		document.location.href = "/index.jsp"
	}
	//Mobi.viewPageBeforeInit();
	// 绑定退出事件
	jm(window).bind("load", function() {

//当前模块 start

		//Mobi.initSwipe('bannerSwipe',{"showType":0,"h":false,"bn":1,"b":[],"st":6,"et":1,"sd":0,"c":[]});
		if(!Mobi.bannerAnimate.init({"showType":0,"h":false,"bn":1,"b":[],"st":6,"et":1,"sd":0,"c":[]})){
			Mobi.initBannerDefaultDom({"showType":0,"h":false,"bn":1,"b":[],"st":6,"et":1,"sd":0,"c":[]});
			Mobi.initSwipe('bannerSwipe',{"showType":0,"h":false,"bn":1,"b":[],"st":6,"et":1,"sd":0,"c":[]});
		};
		
		//调整导航栏与g_web的top值
    	//部分主题有css3动画，所以会导致计算失误，需要等css3动画执行完之后计算
    	Mobi.autoFixGWebTop(7);


		Mobi.initBgmCookie();





		Mobi.initFooterHeight();
	});
	   
	//手机视图初始化函数
	try {
		Mobi.initMobiPage({"id":1026,"createTime":"2017-07-27","preview":"//mo.faisys.com/image/template/1026/1026.jpg","previewGif":"//mo.faisys.com/image/template/1026/1026.gif","color":0,"style":["//mo.faisys.com/css/template/1026_1.min.css?v=201806081418","//mo.faisys.com/css/template/1026_2.min.css?v=201806081418","//mo.faisys.com/css/template/1026_3.min.css?v=201806081418","//mo.faisys.com/css/template/1026_4.min.css?v=201806081418","//mo.faisys.com/css/template/1026_5.min.css?v=201806081418","//mo.faisys.com/css/template/1026_6.min.css?v=201806081418","//mo.faisys.com/css/template/1026_7.min.css?v=201806081418","//mo.faisys.com/css/template/1026_8.min.css?v=201806081418","//mo.faisys.com/css/template/1026_9.min.css?v=201806081418"],"type":0,"moduleStyle":0,"designType":1,"presetIndex":0,"cube":0,"layout":7,"imagePage":347,"backgroundImage":0,"colors":[],"colorsName":[]});
	} catch (err) {
		console.log(err);
	}

     // 取统计数据
    if(true)
    {
     	

	    Mobi.statisticalMobiVisitors({colId:126, pdId:-1, ndId:-1, sc:0, rf:"", statId:-1});
		if(!false){
			//统计访问时长
			Mobi.mobiStatVisitTime();
		}
    }
    
    //前端性能数据上报
    Mobi.report();
    
    // 用于添加分销的标识码 dannel
    Mobi.addDistCode();

    Mobi.initOfficalNavSubMenu({"nav3":{"id":3,"name":"首页","show":true,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIAxIA","columnType":100,"href":"/index.jsp","info":{"t":100,"i":3,"u":"/index.jsp","n":"首页","s":"AGQIAxIA"}},"cil":[]},"nav9":{"id":9,"name":"留言板","show":true,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQICRIA","columnType":100,"href":"/mb.jsp","info":{"t":100,"i":9,"u":"/mb.jsp","n":"留言板","s":"AGQICRIA"}},"cil":[]},"nav107":{"id":107,"name":"关于我们","show":true,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":2,"colIconCusType":1,"iconFileId":"_faiMaterial_2000164","iconFilePath":"//2.ss.faisys.com/image/materialLib/icon/2000164.gif?v=201712181557"},"jumpCtrl":{"ide":"AGQIaxIA","columnType":100,"href":"/col.jsp?id=107","info":{"t":100,"i":107,"u":"/col.jsp?id=107","n":"关于我们","s":"AGQIaxIA"}},"cil":[]},"nav11":{"id":11,"name":"会员注册","show":true,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQICxIA","columnType":100,"href":"/signup.jsp","info":{"t":100,"i":11,"u":"/signup.jsp","n":"会员注册","s":"AGQICxIA"}},"cil":[]},"nav12":{"id":12,"name":"会员中心","show":true,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIDBIA","columnType":100,"href":"/profile.jsp","info":{"t":100,"i":12,"u":"/profile.jsp","n":"会员中心","s":"AGQIDBIA"}},"cil":[]},"nav10":{"id":10,"name":"会员登录","show":true,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIChIA","columnType":100,"href":"/login.jsp","info":{"t":100,"i":10,"u":"/login.jsp","n":"会员登录","s":"AGQIChIA"}},"cil":[]},"nav126":{"id":126,"name":"教育","show":true,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"\\e6f0","classname":"","color":"rgb(31,135,232)","colIconType":2,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIfhIA","columnType":100,"href":"/col.jsp?id=126","info":{"t":100,"i":126,"u":"/col.jsp?id=126","n":"教育","s":"AGQIfhIA"}},"cil":[]},"nav125":{"id":125,"name":"开启小神！","show":true,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"\\ec53","classname":"","color":"","colIconType":2,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIfRIA","columnType":100,"href":"/col.jsp?id=125","info":{"t":100,"i":125,"u":"/col.jsp?id=125","n":"开启小神！","s":"AGQIfRIA"}},"cil":[]},"nav124":{"id":124,"name":"玄幻秘层","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIfBIA","columnType":100,"href":"/col.jsp?id=124","info":{"t":100,"i":124,"u":"/col.jsp?id=124","n":"玄幻秘层","s":"AGQIfBIA"}},"cil":[]},"nav122":{"id":122,"name":"呵呵","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIehIA","columnType":100,"href":"/col.jsp?id=122","info":{"t":100,"i":122,"u":"/col.jsp?id=122","n":"呵呵","s":"AGQIehIA"}},"cil":[]},"nav114":{"id":114,"name":"5英语","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIchIA","columnType":100,"href":"/col.jsp?id=114","info":{"t":100,"i":114,"u":"/col.jsp?id=114","n":"5英语","s":"AGQIchIA"}},"cil":[]},"nav113":{"id":113,"name":"5语文","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIcRIA","columnType":100,"href":"/col.jsp?id=113","info":{"t":100,"i":113,"u":"/col.jsp?id=113","n":"5语文","s":"AGQIcRIA"}},"cil":[]},"nav112":{"id":112,"name":"5","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIcBIA","columnType":100,"href":"/col.jsp?id=112","info":{"t":100,"i":112,"u":"/col.jsp?id=112","n":"5","s":"AGQIcBIA"}},"cil":[]},"nav115":{"id":115,"name":"4","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIcxIA","columnType":100,"href":"/col.jsp?id=115","info":{"t":100,"i":115,"u":"/col.jsp?id=115","n":"4","s":"AGQIcxIA"}},"cil":[]},"nav120":{"id":120,"name":"Jackson高级云端媒体","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIeBIA","columnType":100,"href":"/col.jsp?id=120","info":{"t":100,"i":120,"u":"/col.jsp?id=120","n":"Jackson高级云端媒体","s":"AGQIeBIA"}},"cil":[]}},2, true);
Mobi.initShare('footerShareWeixin','footerShareWeibo','footerShareQQ');
Mobi.initFooterLanguageEvent();
Mobi.switchJump();
Mobi.initFooterStyle({"fb":{"y":0,"c":"","f":"","r":0,"p":"","ps":0},"rt":{"y":0,"s":-1,"f":"","c":""},"gt":{"y":0}});
Mobi.showQqBg();
Mobi.showPhonesBg();
Mobi.unLoadForWechat();
Mobi.outerUrlJump();
Mobi.initNavSubMenu({"nav3":{"id":3,"name":"首页","show":true,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIAxIA","columnType":100,"href":"/index.jsp","info":{"t":100,"i":3,"u":"/index.jsp","n":"首页","s":"AGQIAxIA"}},"cil":[]},"nav107":{"id":107,"name":"关于我们","show":true,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":2,"colIconCusType":1,"iconFileId":"_faiMaterial_2000164","iconFilePath":"//2.ss.faisys.com/image/materialLib/icon/2000164.gif?v=201712181557"},"jumpCtrl":{"ide":"AGQIaxIA","columnType":100,"href":"/col.jsp?id=107","info":{"t":100,"i":107,"u":"/col.jsp?id=107","n":"关于我们","s":"AGQIaxIA"}},"cil":[]},"nav9":{"id":9,"name":"留言板","show":true,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQICRIA","columnType":100,"href":"/mb.jsp","info":{"t":100,"i":9,"u":"/mb.jsp","n":"留言板","s":"AGQICRIA"}},"cil":[]},"nav11":{"id":11,"name":"会员注册","show":true,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQICxIA","columnType":100,"href":"/signup.jsp","info":{"t":100,"i":11,"u":"/signup.jsp","n":"会员注册","s":"AGQICxIA"}},"cil":[]},"nav10":{"id":10,"name":"会员登录","show":true,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIChIA","columnType":100,"href":"/login.jsp","info":{"t":100,"i":10,"u":"/login.jsp","n":"会员登录","s":"AGQIChIA"}},"cil":[]},"nav12":{"id":12,"name":"会员中心","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIDBIA","columnType":100,"href":"/profile.jsp","info":{"t":100,"i":12,"u":"/profile.jsp","n":"会员中心","s":"AGQIDBIA"}},"cil":[]},"nav125":{"id":125,"name":"开启小神！","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"\\ec53","classname":"","color":"","colIconType":2,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIfRIA","columnType":100,"href":"/col.jsp?id=125","info":{"t":100,"i":125,"u":"/col.jsp?id=125","n":"开启小神！","s":"AGQIfRIA"}},"cil":[]},"nav124":{"id":124,"name":"玄幻秘层","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIfBIA","columnType":100,"href":"/col.jsp?id=124","info":{"t":100,"i":124,"u":"/col.jsp?id=124","n":"玄幻秘层","s":"AGQIfBIA"}},"cil":[]},"nav122":{"id":122,"name":"呵呵","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIehIA","columnType":100,"href":"/col.jsp?id=122","info":{"t":100,"i":122,"u":"/col.jsp?id=122","n":"呵呵","s":"AGQIehIA"}},"cil":[]},"nav114":{"id":114,"name":"5英语","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIchIA","columnType":100,"href":"/col.jsp?id=114","info":{"t":100,"i":114,"u":"/col.jsp?id=114","n":"5英语","s":"AGQIchIA"}},"cil":[]},"nav113":{"id":113,"name":"5语文","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIcRIA","columnType":100,"href":"/col.jsp?id=113","info":{"t":100,"i":113,"u":"/col.jsp?id=113","n":"5语文","s":"AGQIcRIA"}},"cil":[]},"nav112":{"id":112,"name":"5","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIcBIA","columnType":100,"href":"/col.jsp?id=112","info":{"t":100,"i":112,"u":"/col.jsp?id=112","n":"5","s":"AGQIcBIA"}},"cil":[]},"nav115":{"id":115,"name":"4","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIcxIA","columnType":100,"href":"/col.jsp?id=115","info":{"t":100,"i":115,"u":"/col.jsp?id=115","n":"4","s":"AGQIcxIA"}},"cil":[]},"nav120":{"id":120,"name":"Jackson高级云端媒体","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIeBIA","columnType":100,"href":"/col.jsp?id=120","info":{"t":100,"i":120,"u":"/col.jsp?id=120","n":"Jackson高级云端媒体","s":"AGQIeBIA"}},"cil":[]},"nav126":{"id":126,"name":"教育","show":false,"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"\\e6f0","classname":"","color":"rgb(31,135,232)","colIconType":2,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIfhIA","columnType":100,"href":"/col.jsp?id=126","info":{"t":100,"i":126,"u":"/col.jsp?id=126","n":"教育","s":"AGQIfhIA"}},"cil":[]}}, 7, 6);
Mobi.setShowSiteTitleBgFlag('1');
Mobi.changeSiteTitleBg('null','null','null','null','null');
Mobi.logoSizeCompressByMargin();
Mobi.titlePositionRefreshByLogo();
Mobi.bindTopIconBack();
Mobi.initSimpleTextContent( 683,0);Mobi.initModuleCubeNavItemHeight(5,673);
Mobi.loadImgAlone(673);Mobi.manageFaiscoAd(7);

	
	
	
		

	// 访客态页面提示错误
	if(!Fai.top._manageMode ){
		errnoIng();
	}
	setTimeout("hasOpenFaiscoBaiduBridge()",1000);//延迟一秒，等待百度商桥加载完成
	
	initManagePage();

	   

	Mobi.initFooter();//初始化页脚
});
//针对管理态做初始化 by jser 2017-10-23
function initManagePage(){
	
	var isManageMode = (Fai.top._manageMode === true);
	if(!isManageMode){
		return;
	}
	
	Fai.top.Mobi.logDogWithInitManagePage();

	
}

// 获取url参数
function getUrlQueryString(name){
	var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)");
	var r = window.location.search.substr(1).match(reg);
	if(r!= null){
		return  unescape(r[2]); 
	}
	return null;
}
// 页面错误提示
function errnoIng(){
	// 获取参数errno
	var errno = getUrlQueryString("errno");
	if(errno == 14){
		Mobi.ing(LS.memberLoginNoPermission);
	}
}

//Mobi.preventScroll(document.getElementById("g_body"));//阻止滚轮事件冒泡

//访客态下，统计微信浏览器的使用情况

	if(Mobi.isWechat()){
		Mobi.logDog(200055, 1);
	}else{
		Mobi.logDog(200055, 0);
	}


//管理下，禁止点击跳转外链


//接入我们的百度商桥才隐藏默认的图标
function hasOpenFaiscoBaiduBridge(){
	if (Fai.top._mallService == 2) {
		//商城主题
		for(var i in Fai.top._serviceList) {
			if ( Fai.top._serviceList[i].serviceType == 2) {
				if ( Fai.top._serviceList[i].showType == true) {
					if ("_other" in Fai.top && !Fai.top._other.hc.h && Fai.top._headerCode.indexOf("hm.baidu.com") > -1) {
						Fai.top.Mobi.getPreviewWindow().jm("ins#newBridge").show();
					} else {		
						Fai.top.Mobi.getPreviewWindow().jm("ins#newBridge").hide();
					}
					break;
				} else {
					if(jm("a[href*='Mobi.showBaiduBridge']").length < 1){
						Fai.top.Mobi.getPreviewWindow().jm("ins#newBridge").show();
						break;
					}
				}
			} else {
				if(jm("a[href*='Mobi.showBaiduBridge']").length < 1){
					Fai.top.Mobi.getPreviewWindow().jm("ins#newBridge").show();
				}
			}
		}
	} else {
		//非商城主题
		if (Fai.top._onlineServiceJson.baiduBridge.open == true) {
			 Fai.top.Mobi.getPreviewWindow().jm("ins#newBridge").hide();
	    } else {
			if(jm("a[href*='Mobi.showBaiduBridge']").length < 1){
	        	Fai.top.Mobi.getPreviewWindow().jm("ins#newBridge").show();
	    	}
		}
	}
	//百度商桥统计
    jm("#newBridge #nb_icon_wrap").off('click.log').on('click.log', function(){
        Mobi.logDog(200171, 5);
    });
}

//解决苹果手机浏览模板网站，右下角的手机模板显示不正常的bug


if (false) {
	var mallBuy = localStorage.getItem("mallBuyCallBack");
	if (!! mallBuy) {
		localStorage.removeItem("mallBuyCallBack");
		mallBuy = jm.parseJSON(mallBuy);
		if (mallBuy.login) {
			Mobi.mallBuy(mallBuy.productId, mallBuy.buyType, mallBuy.entry, mallBuy.moduleId, jm.parseJSON(mallBuy.option), mallBuy.count, mallBuy.options);
		}
	}
}

function popupCouponMsg(msg){
	var ing = jm(".mobiCouponMsgBox");
	ing.remove();
	jm("").appendTo("body");
	ing = jm(".mobiCouponMsgBox");
	jm(msg).appendTo(ing);

	window.setTimeout(function(){ing.css("visibility","hidden");ing.css("opacity","0");}, 1500);
}

// 互动跳转领取优惠券逻辑
var hdCoupon = jm.cookie("hdCoupon");
if (hdCoupon) {
	var memberId = null;
	if (!! memberId) {
		jm.cookie("hdCoupon", null);
		jm.ajax({
			type: 'post',
			url:"ajax/mallCoupon_h.jsp",
			data:"cmd=receiveCoupon&fromHd=true&bgId=0&cid="+jm.cookie("hdCouponId"),//针对IE6缓存
			dataType:'json',
			success:function(result){
				jm.cookie("hdCouponId", null);
				if(result.success){
					var coupon = result.coupon;
					var content = [];
					content.push('');
					content.push(	'');
					content.push(		''+LS.successGet+'');
					content.push(	'');
					content.push('');
					popupCouponMsg(content.join(''));
					window.setTimeout(function(){Fai.top.location.href = '/'}, 1500);
				} else {
					var rt = result.rt;
					if(rt == -23){//WEB_NO_LOGIN
						Fai.top.location.href = 'login.jsp';
						jm.cookie("hdCoupon", true);
					} else if(rt == -4){ //COUNT_LIMIT	
						var content = [];
						content.push('');
						content.push(	'');
						content.push(		''+LS.overGet+'');
						content.push(	'');
						content.push('');
						popupCouponMsg(content.join(''));				
					} else {
						var content = [];
						content.push('');
						content.push(	'');
						content.push(		''+LS.isNoneCoupon+'');
						content.push(	'');
						content.push('');
						popupCouponMsg(content.join(''));
					}
				}
			},
			error:function(){
				Mobi.ing(LS.systemError);
			}
		});
	}
}

var receiveCouponFromHd = false;
var couponId = 0;
var savePrice = 0.0;
if (receiveCouponFromHd) {
	var windowWidth = Fai.top.document.body.clientWidth;
    var windowHeight = Fai.top.document.body.clientHeight;
    
	var html = [];
	html.push("");
	html.push("");
	html.push("");
	html.push("" + savePrice + "");
	html.push("元")
	html.push("");
	html.push("")
	html.push("");
	html.push("");
	html.push("");
	html.push("");

	var options = {'content':html.join(""), 
		'callback': function() {
			jm.ajax({
				type: 'post',
				url:"ajax/mallCoupon_h.jsp",
				data:"cmd=receiveCoupon&fromHd=true&bgId=0&cid="+couponId,//针对IE6缓存
				dataType:'json',
				success:function(result){
					if(result.success){
						var coupon = result.coupon;
						var content = [];
						content.push('');
						content.push(	'');
						content.push(		''+LS.successGet+'');
						content.push(	'');
						content.push('');
						popupCouponMsg(content.join(''));
						window.setTimeout(function(){Fai.top.location.href = '/'}, 1500);
					} else {
						var rt = result.rt;
						if(rt == -23){//WEB_NO_LOGIN
							Fai.top.location.href = 'login.jsp';
							jm.cookie("hdCoupon", true);
							jm.cookie("hdCouponId", couponId);
						} else if(rt == -4){ //COUNT_LIMIT	
							var content = [];
							content.push('');
							content.push(	'');
							content.push(		''+LS.overGet+'');
							content.push(	'');
							content.push('');
							popupCouponMsg(content.join(''));				
						} else {
							var content = [];
							content.push('');
							content.push(	'');
							content.push(		''+LS.isNoneCoupon+'');
							content.push(	'');
							content.push('');
							popupCouponMsg(content.join(''));
						}
					}
				},
				error:function(){
					Mobi.ing(LS.systemError);
				}
			});
		}
	};

	Mobi.customPopup(options);
}
Mobi.initNewGuestGiftInfo();
 
 
. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[狂欢]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/483626]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Wed, 20 Jun 2018 02:02:04 -0700]]></pubDate>
        <description><![CDATA[Jackson666
会越来越热烈哦⊙∀⊙！
仅支持安卓


. Jn传媒.jpg. Jn传媒.jpg]]></description>
    </item>
        <item>
        <title><![CDATA[图片查看器]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/483324]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Fri, 15 Jun 2018 16:09:11 -0700]]></pubDate>
        <description><![CDATA[



fabu


//图片上传浏览IE是用了滤镜
function previewImage(file)
{
var MAXWIDTH=260;
var MAXHEIGHT=180;
var div=document.getElementById('preview');
if(file.files&&file.files[0]){
div.innerHTML="";
var img=document.getElementById('imghead');
img.onload=function(){
var
rect=clacImgZoomParam(MAXWIDTH,MAXHEIGHT,img.offsetWidth,img.offsetHeight);
img.width=rect.width;
img.heigth=rect.heigth;
img.style.marginTop=rect.top+'px';
}
var reader=new FileReader();
reader.onload=function(evt){
img.src=evt.target.result;
}
reader.readAsDataURL(file.files[0]);
}
else{
//兼容IE
var
sFilter='filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale,src=" )';
file.select();
var src=document.selection.createRange().text;
div.innerHTML='';
var img=document.getElementById('imghead');
img.filters.item('DXImage.Microsoft.AlphaImageLoader').src=src;
var
rect=clacImgZoomParam(MAXWIDTH,MAXHEIGTH,img.offsetWidth,img.offsetHeight);

status=('rect:'+rect.top+','+'rect.left'+','+'rect.width'+','+'rect.heigth');
div.innerHTML="";
}
}
function clacImgZoomParam(maxWidth,maxHeight,width,height){
var param={
top:0,left:0,width:width,height:height};
if(width>maxWidth||height>maxHeight){
rateWidth=width/maxWidth;
rateHeight=height/maxHeight;
if(rateWidth>rateHeight){
param.width=maxWidth;
param.height=Math.round(height/rateWidth);}
else{
param.width=Math.round(width/rateHeight);
param.height=maxHeight;}
}
param.left=Math.round((maxWidth-param.width)/2);
param.top=Math.round((maxHeight-param.height)/2);
return param;
}









. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[立体效果]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/483276]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Fri, 15 Jun 2018 05:40:16 -0700]]></pubDate>
        <description><![CDATA[  
*{font-size: 14px; padding:0; margin:0;}
#container {
position: relative;
height: 300px;
width: 300px;
-webkit-perspective: 500;
margin-top: 200px;
margin-right: auto;
margin-left: auto;
}
#parent {
margin: 10px;
width: 280px;
height: 280px;
background-color: #666;
opacity: 0.8;
-webkit-transform-style: preserve-3d;
-webkit-animation: spin 5s infinite linear;
}
#parent > div {
position: absolute;
top: 40px;
left: 40px;
width: 280px;
height: 200px;
padding: 10px;
-webkit-box-sizing: border-box;
}
#parent > :first-child {
background-color: #000;
-webkit-transform: translateZ(-100px) rotateY(45deg);
}
#parent > :last-child {
background-color: #333;
-webkit-transform: translateZ(50px) rotateX(20deg);
-webkit-transform-origin: 50% top;
}
/*执行Y轴360度旋转动画*/
@-webkit-keyframes spin {
from {-webkit-transform: rotateY(0);}
to {-webkit-transform: rotateY(360deg);}
}
 
 
 
   
    
     
     欢迎访问 
     
     
     Jn博客 
     
    
   
   
    
   
header{ position:fixed; top:0; left:0; right:0; z-index:888; width:100%;}
.pp_nav{ height:49px; background:#6590bd; border-bottom:1px solid #4775a7;display: -webkit-box;display: -moz-box;display: box; width:100%; overflow:hidden; position:relative;}
.pp_nav span{ display:block; text-align:center; color:#fff;}
.pp_nav span:first-child,.pp_nav span:last-child{padding: 0 10px;border: 1px solid #4775a7;height: 28px;margin: 10px 10px;line-height: 26px;font-size: 14px;border-top: 1px solid #86add8;-webkit-box-shadow: 0px 1px 0px #86add8, 0px -1px 0px #4775a7;}
.pp_nav span:nth-child(2){font-size: 20px;-webkit-box-flex: 1;-moz-box-flex: 1;box-flex: 1;width: 100%; line-height:49px;}
.pp_xyy{-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.4);-moz-box-shadow: 0px 2px 5px rgba(0,0,0,0.4);box-shadow: 0px 2px 5px rgba(0,0,0,0.4);}
header,nav{display:block;}
.pp_nav span:first-child,.pp_nav span:last-child{-moz-border-radius: 4px;-webkit-border-radius: 4px;border-radius: 4px;}
header,nav{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;outline:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
 
    
     
     返回 
     
    
   
   
    
   
*{margin:0px;padding:0px;}
.bredcolor{color:#fff;}
.produter {width:250px; height:35px; margin:0 auto 450px auto; position:relative; z-index:100;
	-webkit-perspective:400px;
	-moz-perspective:400px;
	perspective:400px;
	-webkit-perspective-origin: 50% 100%;
	-moz-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}
/* produter下所有div的统一设置 */
.produter div {position:absolute; padding:10px;
	-webkit-transform-style:preserve-3d;
	-moz-transform-style:preserve-3d;
	transform-style:preserve-3d;
	top:100%; left:0; width:230px;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	transform-origin: 0 0;
}

.produter .odd {background:#ddd;
	-moz-transform:rotateX(-180deg);
	-webkit-transform:rotateX(-180deg);
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
}
.produter .even {background:#eee;
	-moz-transform:rotateX(180deg);
	-webkit-transform:rotateX(180deg);
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
}
.produter .first {background:#ddd;
	-moz-transform:rotateX(-100deg);
	-webkit-transform:rotateX(-100deg);
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
}
.produter .last {box-shadow:0 15px 10px -10px rgba(0,0,0,0.3); border-radius: 0 0 10px 10px;}
.produter:hover .sub {
	-moz-transform:rotateX(0deg);
	-webkit-transform:rotateX(0deg);
}

.produter .sub img {display:block; float:left; padding:0 10px 10px 0;}
.produter .sub p {font: normal 12px/15px arial, sans-serif; color:#000; padding:0; margin:0;}
.produter .sub p span {display:block; font: bold 14px/18px arial, sans-serif; color:#ea0;}
.produter .sub p a {font: normal 12px/15px arial, sans-serif; color:#09c;}
.produter .sub p a:hover {text-decoration:none;}
.produter a.main {display:block; font: bold 15px/35px arial, sans-serif; text-align:center; text-decoration:none; color:#fff; background:#069; border-radius:10px 10px 0 0; position:relative; z-index:100;}
 
    
    
    Jn传媒 
     
      
     Jn服务器旅行可以消除人们的疲惫，带上家人一起享受这份悠闲的生活 
      
       
      Track and Beyond. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[计算机]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/483275]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Fri, 15 Jun 2018 05:40:16 -0700]]></pubDate>
        <description><![CDATA[



Calculator

div,span{
margin:0;padding:0;
font-weight:bold;
font: bold 16px Arial, sans-serif;
/*禁止选中文本*/
-moz-user-select:none;
-webkit-user-select:none;
-o-user-select:none;
user-select:none;
}
body{
background:radial-gradient(circle,#fff,#aaa);
background:-webkit-radial-gradient(circle,#fff,#aaa);
background:-o-radial-gradient(circle,#fff,#aaa);
background:-moz-radial-gradient(circle,#fff,#aaa);
background-size:cover;
}
#calculator{
width:260px;
height:auto;
margin:90px auto;
padding:15px;
background:linear-gradient(#9dd2ea, #8bceec);
background:-o-linear-gradient(#9dd2ea, #8bceec);
background:-webkit-linear-gradient(#9dd2ea, #8bceec);
background:-moz-linear-gradient(#9dd2ea, #8bceec);
border-radius:5px;
box-shadow:0 7px 8px #0000ff
}
.keys,.head{overflow:hidden;}
.keys span,.clear{
float:left;
width:66px;
height:40px;
margin:0 5px 10px 8px;
text-align:center;
line-height:40px;
border-radius:3px;
background:#eee;
box-shadow:0 5px 1px #999;
cursor:pointer;
transition:all 0.3s ease;
}
.keys span:hover{
background:#87cefa;
box-shadow:0 5px 1px #1e90ff;
color:#fff;
}
.keys .sign{
background:#fffacd;
}
.clear{
float:left;
background:#ffb6c1;
box-shadow:0 5px 1px #ff86c1;
}
.clear:hover{
background:#ff96a1;
box-shadow:0 5px 1px #ff4691;
color:#fff;
}
.show{
width:213px;
height:40px;
float:right;
margin:0 16px 5px 0;
border-radius:3px;
background:#999;
font-size:20px;
line-height:40px;
text-align:right;
padding-right:10px;
box-shadow:inset 0 4px 5px #333;
}





c



7
8
9
+
4
5
6
-
1
2
3
*
0
.
=
/



window.onload=function()
{
var oShow=getByClass("calculator","show")[0];
var aNum=document.getElementById("calculator").getElementsByTagName("span");
for(var i=0,iLen=aNum.length;i. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[跳一跳]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/483225]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Thu, 14 Jun 2018 04:28:10 -0700]]></pubDate>
        <description><![CDATA[
. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[介绍]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/483166]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Wed, 13 Jun 2018 05:05:48 -0700]]></pubDate>
        <description><![CDATA[
 
 
   
   
#con{
margin:0px auto; width:95%;
font-size:15px;
}
#tags{
padding: 0px; margin: 0px; width: 100%;height: 23px;border-radius:5px
}
#tags li{
background: url(http://www.codefans.net/jscss/demoimg/200904/tagleft.gif) no-repeat left bottom; margin-right: 1px; list-style-type: none; height:23px;float:left;
}
#tags li a{
padding: 0 10px;background: url(http://www.codefans.net/jscss/demoimg/200904/tagright.gif) no-repeat right bottom; float: left;color: #999;line-height: 23px;height: 23px; text-decoration: none
}
#tags li.emptyTag{
background: none transparent scroll repeat 0% 0%; width: 4px
}
#tags li.selectTag{
background-position: left top; margin-bottom: -2px; position: relative; height: 25px
}
#tags li.selectTag a {
 background-position: right top; color: #000; line-height: 25px; height: 25px;
}
#tagContent {
border:#aecbd4 1px solid; padding:1px;background-color:#fff;width:100%;
}
.tagContent {
padding:0px; display:none;background: url(http://www.codefans.net/jscss/demoimg/200904/bg.gif) repeat-x; width:100%; color: #474747;height: 250px;text-align:justify;
}
#tagContent div.selectTag {
display: block;
}
 
    
     
     本站简介  
     测试  
     介绍  
     
     
     
      欢迎你来到Jn博客。本站是基于Jn科技（jnyun）开发的手机网页，于2017年12月31日注册。网站自从成立成来，就得到Jn传媒的支持和帮助。Jn的全部文章都是由Jn（站长）一个人亲自撰写，由于是在校生，网站不定期更新, 这里的资源都是由站长亲自测试并证明可以使用的才会向大推荐和介绍。事实上互联网就是一个免费网络，在本站你可以找到一些你想要资源，来到这里相信能够减少你上网搜索和寻找的时间。如果你喜欢这里希望能够给Jn（站长）更多的鼓励和支持。谢谢！ 
      
     
       慢慢改 
      
     
Jn科技:Jn创建的自动化运行公司 
      
     
    
   
function selectTag(showContent,selfObj){
 // 标签
 var tag = document.getElementById("tags").getElementsByTagName("li");
 var taglength = tag.length;
 for(i=0; i 
  
 
. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[图片缩放]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/483165]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Wed, 13 Jun 2018 05:05:48 -0700]]></pubDate>
        <description><![CDATA[     
.textboxstyle {
font-family:Arial;
font-size:16pt;
color:black;
text-align:center;
vertical-align:top;
}
.textboxbackgroundstyle {
background-color:white;
padding:5px;
-moz-border-radius-topleft: 15px;
-moz-border-radius-bottomright: 15px;
-webkit-border-top-left-radius: 15px;
-webkit-border-bottom-right-radius: 15px;
border-top-left-radius: 15px;
border-bottom-right-radius: 15px;
}
.curveandshadowstyle {
-moz-box-shadow: 5px 5px 8px #818181;
-moz-border-radius-topleft: 25px;
-moz-border-radius-bottomright: 25px;
-webkit-box-shadow: 5px 5px 8px #818181;
-webkit-border-top-left-radius: 25px;
-webkit-border-bottom-right-radius: 25px;
box-shadow: 5px 5px 5px #818181;
border-top-left-radius: 25px;
border-bottom-right-radius: 25px;
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color='#818181');
border-style:solid;
border-width:1px;
border-color:white;
}
 
    
var imgurl= new Array()
var message= new Array()
var thislink= new Array()
imgurl[0]="http://csngmap.wodemo.com/down/20140216/257532/%E5%AD%A6%E7%94%9FMM.jpg"
imgurl[1]="http://csngmap.wodemo.com/down/20140216/257552/%E6%B8%85%E5%87%89%E5%B0%8F%E5%A6%B9.jpg"
message[0]="欢迎光临"
message[1]="Jn博客"
thislink[0]="#"
thislink[1]="#"
var imgwidth=320
var imgheight=680
var stillstand=2.5
var opacitystrength=60
var tmr
var step=10
var i=imgwidth
var i_imgurl=0
stillstand*=1000
var preloadedimages=new Array()
for (iii=0;iii0) {
  i-=step
  document.getElementById("picdiv").style.width=i+"px"
  document.getElementById("picdiv").style.height=i*(imgheight/imgwidth)+"px"
  document.getElementById("picdiv").style.left=imgwidth/2-(i/2)+"px"
  document.getElementById("picdiv").style.top=(imgwidth/2-(i/2))*(imgheight/imgwidth)+"px"
  tmr=setTimeout("shrinkpic()",20)
 }
 else {
  i_imgurl++
  if (i_imgurl>=imgurl.length) {
   i_imgurl=0
  }
  document.getElementById("picdiv").style.background="url("+imgurl[i_imgurl]+")"
  i=1
  tmr=setTimeout("enlargepic()",20)
 }
}
function enlargepic() {
 if (i. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[QQ头像查看]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/483157]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Wed, 13 Jun 2018 04:28:40 -0700]]></pubDate>
        <description><![CDATA[
 
 
  Jn传媒提供技术支持!QQ号：
   
  
   
  
eval(function(p,a,c,k,e,d){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('s t(){0=r(v.p);m(0. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[表格]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/483155]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Wed, 13 Jun 2018 04:01:27 -0700]]></pubDate>
        <description><![CDATA[欢迎光临Jn博客

 
 
  
    一个基于HTML5属性的可编辑表格效果，可动态添加表格行或列，双击表格单元格中的数据还可编辑文字，当然也可删除文字，需要动态表格效果的可做下参考。测试请在火狐或Chrome浏览器下进行，IE8无效。 
   Jn传媒提供技术支持 
   
   
    
   可编辑表格 
   
function addRow(){
var oTable = document.getElementById("oTable");
var tBodies = oTable.tBodies;
var tbody = tBodies[0];
var tr = tbody.insertRow(tbody.rows.length);
var td_1 = tr.insertCell(0);
td_1.innerHTML = "第1列";
var td_2 = tr.insertCell(1);
td_2.innerHTML = "第2列";
}
 
    
    可编辑的表格 
     
      
       
       Jn科技 
       Jn传媒 
       
      
      
       
        
        
          第一行第一列 
         
        
        
          第一行第二列 
         
       
      
     
    
    
   
   
  
 
. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[千万不要点进来，你的浏览器会卡爆的！]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482786]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Sat, 09 Jun 2018 02:10:23 -0700]]></pubDate>
        <description><![CDATA[Welcome to Jn htmlvar msg = "呵呵";var speed = 300; var msgud = " " + msg; function titleScroll() { if (msgud.length var color = new Array;color[1] = "black";color[2] = "white";for(x = 0; x ]]></description>
    </item>
        <item>
        <title><![CDATA[超高仿PPT]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482765]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Fri, 08 Jun 2018 20:01:42 -0700]]></pubDate>
        <description><![CDATA[
    
    
    点击图片左右部分来切换图片上一张下一张的效果丨Jn网页特效丨CsrCode.Cn
    
    
    
    #divall{
    position:relative;
    }
    #divleft{
    border:0px red solid;
    position:absolute;
    z-index:2007;
    text-align:right;
    padding-top:20px
    padding-left:20px
    }
    #divright{
    border:0px red solid;
    position:absolute;
    z-index:2007
    text-align:center;
    padding-top:20px
    padding-left:20px
    }
    #tu{
    z-index:-2007;
    }
    
    
    
    
    
    
    document.write ("");
    var pic_url=new Array()
    pic_url[1]='http://wl.uixsj.cn/data/2018069141004.png'
    pic_url[2]='http://wl.uixsj.cn/data/2018069143015.jpg'
    pic_url[3]='http://wl.uixsj.cn/data/2018068122909.png'
    pic_url[4]='http://wl.uixsj.cn/data/2018069143808.jpg'
    pic_url[5]=''
    pic_url[6]=''
    var left0=50
    var height0=50
    var zhang=1
    var evt_left,evt_top;
    function show_who(o,evt){//alert(o.style.cursor.match("pre"))
    evt = evt? evt: window.event;initX = evt.offsetX ? evt.offsetX : evt.layerX;
    evt_left=o.clientWidth/2
    evt_top=o.clientHeight/2
    if(initX 1){if( o.style.cursor != "url(http://www.zzsky.cn/effect/images/qqphoto/pre.ani),pointer")o.style.cursor = "url(http://www.zzsky.cn/effect/images/qqphoto/pre.ani),pointer";if( o.title != "点击跳到上一张" ){o.title = "点击跳到上一张";}}
    else if( o.style.cursor!="url(http://www.zzsky.cn/effect/images/qqphoto/next.ani),pointer"&& zhang. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[要爆炸了]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482687]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Fri, 08 Jun 2018 02:35:31 -0700]]></pubDate>
        <description><![CDATA[
  
   
   
   
   
   
   
  
  
   
    
    
    bomb 
    
var intLeft = 15; 

function leavePage() {
if (0 == intLeft)
alert('嘻！！！哈哈！开个玩笑！') 
else {

intLeft -= 1;
document.all.countdown.innerText = intLeft + " ";
setTimeout("leavePage()", 1000);
}
}
 
     
      
       
         
         
       
       
        大家快跑！！要爆炸了！！还有 
           
document.write(intLeft);

正在加载  秒就要爆炸了！！快！！  
       
      
     
    
  
 


    #main.protected #logo {
        top:5%;
    }
    #main.protected #banner {
        top:calc(5% + 70px);
    }
    #main.protected #loading-bar{
        display:none;
    }
    #main.protected #protect-hint {
        display:block;
    }
   
    #protect-hint {
        position:absolute;
        width:100%;
        bottom:0;
        text-align: center;
        font-size:16px;
        display:none;
    }
    #protect-hint .protect-content {
        width: 15em;
        height:100%;
        display:inline-block;
        background:rgb(255,210,0);
        border-radius: 4px;
        box-sizing: border-box;
        box-shadow: 0px 0px 2px 0px white,  0px -1px 0px 1px rgba(255,255,255,0.4) inset;
        padding-bottom:1em;
        position:relative;
        border-bottom-right-radius:0;
        border-bottom-left-radius:0;
    }
    .protect-content h3 {
        /*
        background: #c167e6;
        color: white; 
        */
        margin: 0;
        padding: 1.5em 0 0.5em 0;
        margin-bottom: 1em;
        box-shadow: 0px 0px 0px 0px white,  0px 1px 0px 0px rgba(255,255,255,0.2) inset;
        position:relative;
    }
    .protect-content h3:after {
        content: "";
        width: 1em;
        height: 1em;
        background: black;
        display: block;
        border-radius: 1em;
        position: absolute;
        left: calc(50% - 0.5em);
        top: -0.7em;  
        box-shadow: -6em 0px 0px 0px black, -4.5em 0px 0px 0px black, -3em 0px 0px 0px black, -1.5em 0px 0px 0px black,6em 0px 0px 0px black, 4.5em 0px 0px 0px black, 3em 0px 0px 0px black, 1.5em 0px 0px 0px black;
    }
    .protect-content img {
        width:80%;
        height:80%;
    }. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[手机震动器]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482686]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Fri, 08 Jun 2018 02:23:20 -0700]]></pubDate>
        <description><![CDATA[



navigator Demo


* { margin: 0; padding: 0; }
a { height: 50px; line-height: 50px; text-align: center; display: block; margin: 10px; background: #04be02; color: #fff; border-radius: 4px; }



震动2秒
震动3秒
震动4秒
震一分钟


    function bellBtnClick(s) {
        if (navigator.vibrate) {
            navigator.vibrate(s);//震动秒数
        }else if (navigator.webkitVibrate) {
            navigator.webkitVibrate(s);
        }
    }


. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[留言]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482666]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Thu, 07 Jun 2018 22:52:35 -0700]]></pubDate>
        <description><![CDATA[来评论吧。&lt;a class=&quot;shock_bell&quot; href=&quot;javascript:bellBtnClick(2000);&quot;&gt;让我们一起欢呼&lt;点本字&gt;&lt;a&gt;


&lt;script&gt;
    function bellBtnClick(s) {
        if (navigator.vibrate) {
            navigator.vibrate(s);//震动秒数
        }else if (navigator.webkitVibrate) {
            navigator.webkitVibrate(s);
        }
    }
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;. Jn传媒.jpg]]></description>
    </item>
        <item>
        <title><![CDATA[伪PPT]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482639]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Thu, 07 Jun 2018 20:28:40 -0700]]></pubDate>
        <description><![CDATA[


点击开始































.












































.



















































.



















































.



















































.


















. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[Jn博客介绍]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482630]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Thu, 07 Jun 2018 20:09:58 -0700]]></pubDate>
        <description><![CDATA[







Jn博客
 













































.fk-tabStyle2 .f-formTabButtonList .formTabButtonClick{border-bottom-color:#ff7214;}
.fk-tabStyle2 .f-formTabButtonList .formTabButtonClick{color:#ff7214;}
.fk-tabStyle1 div.formTabButtonClick .f-formTabMiddle{background-color:#ff7214;}
#module309 .fk-tabStyle1 .formTabButtonClick .f-formTabMiddle{background-color:#06c1ae;}
#module309 .fk-tabStyle2 .formTabButtonClick{border-bottom-color:#06c1ae;}
#module309 .fk-tabStyle2 .formTabButtonClick{color:#06c1ae;}




.fk-foldStyle1 .f-formFoldButton.active{color:#ff7214;}
.fk-foldStyle1 .f-formFoldButton.active .icon-fold:before{color:#ff7214;}
.fk-foldStyle2 .f-formFoldButton.active{background-color:#ff7214;}
.fk-foldStyle3 .f-formFoldButton.active{color:#ff7214;}
.fk-foldStyle3 .f-formFoldButton.active .icon-fold:before{color:#ff7214;}




#module309 {filter:alpha(opacity=84);opacity:0.84;}
#module309 {border:none;}
#module309 {padding:0px;}
#module309 .formMiddle309{border:none;}
#module309 .formMiddle309{padding:0px;}
#module309 .formBannerTitle309{border:none;}
#module309 .formBannerTitle309{padding:0px;}
#module310 {border:none;}
#module310 {padding:0px;}
#module310 .formMiddle310{border:none;}
#module310 .formMiddle310{padding:0px;}
#module310 .formBannerTitle310{border:none;}
#module310 .formBannerTitle310{padding:0px;}
#module312 {border:none;}
#module312 {padding:0px;}
#module312 .formMiddle312{border:none;}
#module312 .formMiddle312{padding:0px;}
#module312 .formBannerTitle312{border:none;}
#module312 .formBannerTitle312{padding:0px;}
#module308 {filter:alpha(opacity=94);opacity:0.94;}




.open .navItem:nth-child(2) {transition-delay: 160ms;} 
.open .navItem:nth-child(4) {transition-delay: 240ms;} 



#g_web{background:none;}
#webContainerBox{background:none;}
#webBodyBackground{background:url(//mo.faisys.com/image/background/11.jpg) center center;background-size:cover;}



#module308{overflow:hidden;}
#cubeNavigation308_cubeLink1 .icon-cube:before{content:'򠡡';}
#cubeNavigation308_cubeLink4 .cubeLink_ico{background-image:url(//2.ss.faisys.com/image/materialLib/icon/2000026.gif?v=201712181557);background-color:transparent;;background-repeat:no-repeat;background-position: center;}
#cubeNavigation308_cubeLink4 .icon-cube:before{content:none;}










.form .floatBtnStyle0 .middle{background-color:#ff7214;}
.form .floatBtnStyle1 .middle{background-color:#ff7214;}
.form .floatBtnStyle2 .middle{border-color:#ff7214;color:#ff7214;}
.form .floatBtnStyle3 .middle{background:-webkit-linear-gradient(bottom, #ff7214 10%,rgba(255,184,137,1));background:-webkit-linear-gradient(bottom, #ff7214 10%,rgba(255,184,137,1));}
.form .floatBtnStyle4 .middle{background:-webkit-linear-gradient(bottom, #ff7214 10%,rgba(255,184,137,1));background:-webkit-linear-gradient(bottom, #ff7214 10%,rgba(255,184,137,1));border-color:#ff7214;}


.backTop .backTop_icon.icon-backTop0{background-color:#ff7214;color:#fff;}
.backTop .backTop_icon.icon-backTop1{background-color:#fff;color:#ff7214;}
.backTop .backTop_icon.icon-backTop2{background-color:#fff;color:#ff7214;border-color:#ff7214;}




.webFooterBox .ui-calendar-calendar .ui-state-active{background-color:#ff7214;}
.webFooterBox .ui-calendar-calendar .ui-calendar-startDate{background-color:#ff7214;}
.webFooterBox .ui-calendar-prev:after{color:#ff7214;}
.webFooterBox .ui-calendar-next:after{color:#ff7214;}
.webFooterBox .fk-calendarNav{background-color:#ff7214;}
















  
(function() { 
var fs = document.createElement("script"); 
fs.src = "//fe.faisys.com/jssdk_1_0/js/hawkEye.min.js?v=201805291445";
window.FAI_HAWK_EYE = {}; 
window.FAI_HAWK_EYE.jssdk_report_url = "//report.fkw.com/js/report"; 
window.FAI_HAWK_EYE.jssdk_appid = 3003; 
window.FAI_HAWK_EYE.fai_aid = 16933638; 
window.FAI_HAWK_EYE.fai_bs_aid = 16933638; 
window.FAI_HAWK_EYE.fai_bs_id = 0; 
window.FAI_HAWK_EYE.fai_bs_wid = 0; 
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(fs, s);
})();




//html root的字体计算应该放在最前面，这样计算就不会有误差了/
//2016.3.23 wjq update 之所以要加个判断返回一个20.5，是因为当用户在谷歌等浏览器直接输入手机端网站网址时，如果用户设置模块自定义样式的高度比较小，由于这时候的clientWidth为1920px，及返回的_htmlFontSize为40，这时候就会使模块太小，展示不完全，因此先取一个较为准确的值去展示。Mobi.resetHtmlFontSize()顺便也加了
var _htmlFontSize = (function(){
    var clientWidth = document.documentElement ? document.documentElement.clientWidth : document.body.clientWidth;
    //if(clientWidth > 768) clientWidth = 768;
    if(clientWidth > 768 && clientWidth < 1280){
    	clientWidth = 768;
    }else if(clientWidth >= 1280){
    	clientWidth = 512; 
    }
    document.documentElement.style.fontSize = clientWidth * 1/16+"px";
  	return clientWidth * 1/16;
})();



	






	
	
		
		
			
			    
			
	    
	    
	    	
	    		
				
首页留言板

	    	
	    
		
			Jn传媒
			

			
	
			
			
		
		
		
			
			
			
		
		
			
					


&nbsp;折叠标签






滚动公告Jn博客介绍


&nbsp;滚动公告






&nbsp;欢迎来到Jn博客！&nbsp;






&nbsp;Jn博客介绍






Jn博客为Jn科技旗下公司Jn传媒创建的一个自媒体博客，拥有无数篇文章，上千特效在不断增加，建于2017年......











&nbsp;









Jn工具箱



Jn博客



电视直播



坑人的网站








					
					
			
		
		
			
			
			
			
			©2018 - Jn科技 - 版权所有本站使用&nbsp;Jn建站&nbsp;搭建|无法举报
				


	Jn传媒 >>
	
		
	





			
			
.open .navItem:nth-child(2) {transition-delay: 160ms;} 
#svebar_3 .icon-serItemIcon:before{content:'\e67c';content:'\e67c';} 
#svebar_3 .icon-serItemIcon{background-image:none;} 
.open .navItem:nth-child(4) {transition-delay: 240ms;} 
#svebar_4 .icon-serItemIcon:before{content:'\e6b2';content:'\e6b2';} 
#svebar_4 .icon-serItemIcon{background-image:none;} 


在线地图
在线留言
	
			
		
		
		
			
		
		
		

		

		
		
			
			
		
		
		
		
		

		
	
	





		
//管理态下的预览页面提前作处理 之前这里的g_viewMode先去掉
if( !false && window.top !== window.self){
    var g_className = document.getElementById("g_body").className;
    document.getElementById("g_body").className = g_className + " ";
} 
 
var _oem = false,
	_baiduBridgeCodes = "";
 
//用于iframe显示手机模板的时候 给g_web加上width
var g_webWidth = 0;
if(g_webWidth == 0){
	g_webWidth = window.localStorage? localStorage.getItem("g_webWidth"): Cookie.read("g_webWidth");
	if(g_webWidth != null){
		document.getElementById("g_web").style.width = g_webWidth + "px";
	}
} else{
	document.getElementById("g_web").style.width = g_webWidth + "px";
	if (window.localStorage) {
		localStorage.setItem("g_webWidth", g_webWidth);	
	} else {
		Cookie.write("g_webWidth", g_webWidth);	
	}
}	

























var _faiAjax = function(){
	//for regexp
	var r = /\?/;
	var _o = {
		type:"get",
		url:"",
		data:"",
		error:function(){},
		success:function(){}
	};
	var _sendRequest=function(o) {
		var xmlhttp = null;
		//init option code
		o.type = o.type || _o.type;
		o.url = o.url || _o.url;
		o.data = o.data || _o.data;
		o.error = o.error || _o.error;
		o.success = o.success || _o.success;
		if (window.XMLHttpRequest) {
			// code for IE7+, Firefox, Chrome, Opera, Safari
			xmlhttp = new XMLHttpRequest();
		}else{
			return;
		}
		//the instructions param takes the form of an eval statement
		if(o.type != "post") {
			o.url += ( this.r.test( o.url ) ? "&" : "?" ) + o.data;
			xmlhttp.open("GET", o.url, true);
				xmlhttp.onreadystatechange=function() {
				if (xmlhttp.readyState==4 && xmlhttp.status==200) {
					o.success( xmlhttp.responseText );
				}else if( o.error ){
					o.error();
				}
			}
			xmlhttp.send();
		} else {
			xmlhttp.open("POST", o.url, true);
			//Send the proper header information along with the request
			xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded; charset=UTF-8");
			xmlhttp.onreadystatechange=function() {
				if (xmlhttp.readyState==4 && xmlhttp.status==200) {
					o.success( xmlhttp.responseText );
				}else{
					o.error();
				}
			}
			xmlhttp.send(o.data);
		}
	}
	return {
		ajax:function(option){
			try {
				//此次调用的错误不让抛出给window。防止函数重入
				_sendRequest(option);	
			}catch(e){
				//alert(e);
			}
		}
	};
}();
var _jsErrCahche = [];
window.onerror = function(sMsg,sUrl,sLine){
	if (typeof Mobi == 'undefined') {
		if((window.DocumentTouch && document instanceof window.DocumentTouch) || 'ontouchstart' in document.documentElement){
			alert('您的网页未加载完成，请尝试按“刷新”重新加载。');
		}else{
			alert('您的网页未加载完成，请尝试按“CTRL+功能键F5”重新加载。');
		}
		
	}
	if( sLine < 1 || typeof sMsg != 'string' || sMsg.length < 1 ){
		return;
	}
	
	var log = "Error:" + sMsg + ";Line:" + sLine + ";Url:" + sUrl + ";UserAgent:" + navigator.userAgent;
	var alertLog = "Error:"+sMsg+"\n" + "Line:" + sLine + "\n" + "Url:" + sUrl + "\n";
	var encodeUrl = function (url){
		return typeof url === "undefined" ? "" : encodeURIComponent(url);
	};
	
	var ajax = true;
	var obj = { 'm' : sMsg, 'u' : sUrl, 'l' : sLine };
	for( var i = 0; i < _jsErrCahche.length; i ++ ){
		if( _jsErrCahche[i].m == obj.m && _jsErrCahche[i].u == obj.u && _jsErrCahche[i].l == obj.l  ){
			ajax = false;
			break;
		}
	}
	
	if( ajax ){
		_jsErrCahche.push( obj );
		_faiAjax.ajax({
			type	: "post",
			url		: "ajax/logJsErr.jsp?cmd=jsErr",
			data	: 'msg='+ encodeUrl(log)
		});
	}
	if(false){
		console.log( alertLog );
	}
};




if (typeof Fai == 'undefined'){
	Fai = {};
	//解决页面被嵌套在iframe的场景
	
	Fai.top = window;
	
}



Fai.top._isFaiHost = true;

Fai.top. _aid = 16933638;
Fai.top._headerCode = ""; //网站插件代码
Fai.top._other = {"productNewDeInfo":{"isNewUser":1,"isProductNewDetail":1},"newsNewDefInfo":{"isNewUser":1,"isNewsNewDetail":2,"prevVersion":1},"qrcode_ImageId":"","dc":5,"mobiScreenFull":0,"cml":[],"mc":{"h":true,"c":"","t":1},"hc":{"h":true},"favIcon":{"showType":0,"id":""},"iosIcon":{"showType":0,"id":""},"WXShareIcon":{"showType":0,"id":"","titType":0,"tit":"","cont":""},"templateInfo":{"templatePresetIndex":3,"templateDesignType":1},"mobiBgMusic":{"isOpen":0,"id":"","isGlobal":0,"setting":{"isAuto":0,"isLoop":0,"isHidden":0,"position":0},"filePath":""},"mobiMallHidden":0,"mobiServiceOnline":{"sl":[{"serviceType":"0","serviceAccount":"10000","showFont":"QQ客服","showType":true,"isFontIcon":"true","color":"rgb(238, 82, 102)","fileId":"","classname":"faisco-icons-scQq","filePath":""}],"o":false},"tc":{"h":true},"pa":{"st":0,"ap":"","qrp":"","ma":""},"hssnt":false,"mobiBackTop":{"isOpen":0,"color":"","style":0},"sdss":{"st":0,"type":0}};
Fai.top._bannerData = {"bn":1,"b":[{"i":"ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ","t":1,"lt":0,"u":"","ide":"","col":0,"aj":"","du":"//16933638.s21i.faiusr.com/0/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ?f=ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ.jpg&v=","tp":"//16933638.s21i.faiusr.com/2/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ!100x100.jpg","p":"//16933638.s21i.faiusr.com/2/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ!640x640.jpg","w":640,"h":372}],"c":[{"i":"AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI","p":"//11650059.s61i.faiusr.com/2/AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI.jpg","t":1,"tp":"//11650059.s61i.faiusr.com/2/AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI!100x100.jpg","w":640,"h":300}],"st":6,"et":1,"showType":0,"h":false};  // 横幅数据
Fai.top._pageBannerData = {"bn":1,"b":[],"st":6,"et":1,"c":[],"showType":0,"h":false};  // 栏目独立设置横幅的数据
Fai.top._templateBannerData = {"bn":1,"b":[{"i":"ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ","t":1,"lt":0,"u":"","ide":"","col":0,"aj":"","du":"//16933638.s21i.faiusr.com/0/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ?f=ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ.jpg&v=","tp":"//16933638.s21i.faiusr.com/2/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ!100x100.jpg","p":"//16933638.s21i.faiusr.com/2/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ!640x640.jpg","w":640,"h":372}],"c":[{"i":"AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI","p":"//11650059.s61i.faiusr.com/2/AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI.jpg","t":1,"tp":"//11650059.s61i.faiusr.com/2/AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI!100x100.jpg","w":640,"h":300}],"st":6,"et":1,"showType":0,"h":false}; // 模板栏目的横幅数据

Fai.top._isFreeVer = true;
Fai.top._resRoot = '//mo.faisys.com';
Fai.top._templateFrameId = 1027;
Fai.top._templateLayoutId = 4;
Fai.top._mobiSiteTitleChanged = 0; 	//用于记录网站标题是否有改动
Fai.top._mobiSiteTitle = {"fontType":0,"align":0,"font":{"size":12,"family":"","colorType":0,"color":"#000"},"name":"Jn传媒","bgType":"0","bgFont":{"color":"#000","alpha":100},"bgImgFileId":"","bgImgStyle":"1","mbt":0,"mhl":0,"mbc":{"color":"#000","alpha":100},"mbi":"","mbit":1,"mti":0,"mths":0,"mbip":"//2.ss.faisys.com/image/no-pic.jpg"};   	//网站标题数据
Fai.top._onlineServiceJson = {"serviceId":{"serviceId":6},"phone":{"open":false,"type":1,"fName":"电话咨询","phoneInfo":[{"name":"电话咨询","number":"13000000"}],"baseSetting":{"colIconType":0,"content":"\\e62c","classname":"faisco-icons-call1"},"typeStr":"phone","cf":true},"sms":{"open":false,"name":"信息咨询","number":"13000000","type":2,"baseSetting":{"colIconType":0,"content":"\\e6a0","classname":"faisco-icons-mail1"},"typeStr":"sms","cf":true},"map":{"open":true,"name":"在线地图","city":"广东省","mark":"","d_address":"广州市","type":3,"baseSetting":{"colIconType":0,"content":"\\e67c","classname":"faisco-icons-gps1"},"typeStr":"map"},"msg":{"open":true,"name":"在线留言","type":4,"baseSetting":{"c":0,"i":0,"id":0,"iconType":0,"colIconType":0,"colIconCusType":0,"classname":"faisco-icons-message1","content":"\\e6b2","color":"","iconFileId":""},"typeStr":"msg"},"baiduBridge":{"open":false,"name":"百度商桥","type":-1,"codes":"","baseSetting":{"c":0,"i":0,"id":0,"iconType":0,"colIconType":0,"colIconCusType":0,"classname":"faisco-icons-scBdsq2","content":"\\eada","color":"","iconFileId":"iconFileId"},"typeStr":"baiduBridge","cf":true},"open":true,"order":[3,4],"weChat":{"open":false,"name":"微信客服","type":-2,"code":"","baseSetting":{"c":0,"i":0,"id":0,"iconType":0,"colIconType":0,"colIconCusType":0,"classname":"faisco-icons-M001038","content":"\\eb25","color":"","iconFileId":""},"typeStr":"weChat","cf":true},"tcInfo":[{"name":"QQ客服","number":"258506508"}]};//在线客服
Fai.top._openOnlineService = true;
Fai.top._manageMode = false;
Fai.top.sessionMemberId = 0;
Fai.top.memberName = "";
Fai.top._colInfo = {"aid":16933638,"wid":0,"id":3,"type":3,"flag":384,"banner":{"bn":1,"b":[],"st":6,"et":1,"c":[],"showType":0,"h":false},"moduleList":[309,310,312,308],"moduleHidden":[303,302,301,311],"createTime":1528419826000,"updateTime":1521698549000,"authMemberLevelId":0,"extId":0,"other":{"pgt":0,"pgb":{"type":0,"catalogList":[],"s":4}},"name":"首页","defaultName":"首页","url":"/index.jsp","valid":true,"baseSetting":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","jumpCtrl":{"ide":"","columnType":0}},"columnStyle":{"s":2},"title":{"fontType":0,"align":0,"font":{"size":12,"family":"","colorType":0,"color":"#000"},"bgType":"0","bgFont":{"color":"#000","alpha":100},"bgImgFileId":"","bgImgStyle":"1","mbt":0,"mhl":0,"mbc":{"color":"#000","alpha":100},"mbi":"","mbit":1,"mti":0,"mths":0},"logo":{"i":"","h":true,"a":1,"style":0,"marginType":0,"margin":{"top":0,"bottom":0,"left":0,"right":0}},"independent":false,"allowed":true,"selectable":true,"forbid":false};
Fai.top._lcid = 2052;   // 当前的语言版本
Fai.top._serviceList = [{"serviceType":"0","serviceAccount":"10000","showFont":"QQ客服","showType":true,"isFontIcon":"true","color":"rgb(238, 82, 102)","fileId":"","classname":"faisco-icons-scQq","filePath":""}]; //商城主题在线客服
Fai.top._mallService = 1; 
Fai.top.inTabMaqueeHelper = {}; // 记录标签模块内子模块的动画函数
Fai.top._isBUser = false;
Fai.top._isMobiMallOpen = false;//是否开通手机商城
Fai.top._bookingOpen = false
Fai.top._newsCommentOpen = false;
Fai.top._webDebug = false; // 本地环境(独立开发也是true)

Fai.top._jzProUrl = '';
Fai.top._portalHost = '';
Fai.top._homeHost = '';


Fai.top._bookingModuleTitle = '在线预约'
Mobi.bookingBoxBind(false);


//多网站聚合页地址
Fai.top._jzAllSiteDomain = _oem ? 'i.vip.webportal.top' : 'i.jz.fkw.com';


	Fai.top._jzProUrl = 'jz.fkw.com';
	Fai.top._portalHost = 'www.faisco.cn';
	Fai.top._homeHost = 'www.faisco.com';



jm(document).ready(function() {
	
		Mobi.ajaxLoadModuleDom(3, 0, {"_ajaxLoadModuleIDList":[],"fullUrl":"http://m.rx16218748.icoc.bz/","topBarOptionInfo":{"mobiMallOpen":false}});
	
	
	//判断该栏目是否被删除
	if(jm.isEmptyObject(Fai.top._colInfo)){
		alert("该页面已经删除，点击确定后，将返回到首页");
		document.location.href = "/index.jsp"
	}
	//Mobi.viewPageBeforeInit();
	// 绑定退出事件
	jm(window).bind("load", function() {

//当前模块 start

		//Mobi.initSwipe('bannerSwipe',{"bn":1,"b":[{"i":"ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ","t":1,"lt":0,"u":"","ide":"","col":0,"aj":"","du":"//16933638.s21i.faiusr.com/0/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ?f=ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ.jpg&v=","tp":"//16933638.s21i.faiusr.com/2/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ!100x100.jpg","p":"//16933638.s21i.faiusr.com/2/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ!640x640.jpg","w":640,"h":372}],"c":[{"i":"AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI","p":"//11650059.s61i.faiusr.com/2/AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI.jpg","t":1,"tp":"//11650059.s61i.faiusr.com/2/AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI!100x100.jpg","w":640,"h":300}],"st":6,"et":1,"showType":0,"h":false});
		if(!Mobi.bannerAnimate.init({"bn":1,"b":[{"i":"ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ","t":1,"lt":0,"u":"","ide":"","col":0,"aj":"","du":"//16933638.s21i.faiusr.com/0/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ?f=ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ.jpg&v=","tp":"//16933638.s21i.faiusr.com/2/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ!100x100.jpg","p":"//16933638.s21i.faiusr.com/2/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ!640x640.jpg","w":640,"h":372}],"c":[{"i":"AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI","p":"//11650059.s61i.faiusr.com/2/AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI.jpg","t":1,"tp":"//11650059.s61i.faiusr.com/2/AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI!100x100.jpg","w":640,"h":300}],"st":6,"et":1,"showType":0,"h":false})){
			Mobi.initBannerDefaultDom({"bn":1,"b":[{"i":"ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ","t":1,"lt":0,"u":"","ide":"","col":0,"aj":"","du":"//16933638.s21i.faiusr.com/0/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ?f=ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ.jpg&v=","tp":"//16933638.s21i.faiusr.com/2/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ!100x100.jpg","p":"//16933638.s21i.faiusr.com/2/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ!640x640.jpg","w":640,"h":372}],"c":[{"i":"AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI","p":"//11650059.s61i.faiusr.com/2/AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI.jpg","t":1,"tp":"//11650059.s61i.faiusr.com/2/AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI!100x100.jpg","w":640,"h":300}],"st":6,"et":1,"showType":0,"h":false});
			Mobi.initSwipe('bannerSwipe',{"bn":1,"b":[{"i":"ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ","t":1,"lt":0,"u":"","ide":"","col":0,"aj":"","du":"//16933638.s21i.faiusr.com/0/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ?f=ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ.jpg&v=","tp":"//16933638.s21i.faiusr.com/2/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ!100x100.jpg","p":"//16933638.s21i.faiusr.com/2/ABUIABACGAAg0crn2AUo6M--4wYwuAg49AQ!640x640.jpg","w":640,"h":372}],"c":[{"i":"AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI","p":"//11650059.s61i.faiusr.com/2/AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI.jpg","t":1,"tp":"//11650059.s61i.faiusr.com/2/AD0Ii4jHBRACGAAgkMS1wQUogLLkkQIwgAU4rAI!100x100.jpg","w":640,"h":300}],"st":6,"et":1,"showType":0,"h":false});
		};
		
		//调整导航栏与g_web的top值
    	//部分主题有css3动画，所以会导致计算失误，需要等css3动画执行完之后计算
    	Mobi.autoFixGWebTop(4);


		Mobi.initBgmCookie();





		Mobi.initFooterHeight();
	});
	   
	//手机视图初始化函数
	try {
		Mobi.initMobiPage({"id":1027,"createTime":"2017-07-09","preview":"//mo.faisys.com/image/template/1027/1027.jpg","previewGif":"//mo.faisys.com/image/template/1027/1027.gif","color":0,"style":["//mo.faisys.com/css/template/1027_1.min.css?v=201806041141","//mo.faisys.com/css/template/1027_2.min.css?v=201806041141","//mo.faisys.com/css/template/1027_3.min.css?v=201806041141","//mo.faisys.com/css/template/1027_4.min.css?v=201806041141","//mo.faisys.com/css/template/1027_5.min.css?v=201806041141","//mo.faisys.com/css/template/1027_6.min.css?v=201806041141","//mo.faisys.com/css/template/1027_7.min.css?v=201806041141","//mo.faisys.com/css/template/1027_8.min.css?v=201806041141","//mo.faisys.com/css/template/1027_9.min.css?v=201806041141"],"type":0,"moduleStyle":0,"designType":1,"presetIndex":0,"cube":0,"layout":4,"imagePage":347,"backgroundImage":0,"colors":[],"colorsName":[]});
	} catch (err) {
		console.log(err);
	}

     // 取统计数据
    if(true)
    {
     	

	    Mobi.statisticalMobiVisitors({colId:3, pdId:-1, ndId:-1, sc:0, rf:"", statId:-1});
		if(!false){
			//统计访问时长
			Mobi.mobiStatVisitTime();
		}
    }
    
    //前端性能数据上报
    Mobi.report();
    
    // 用于添加分销的标识码 dannel
    Mobi.addDistCode();

    Mobi.initShare('footerShareWeixin','footerShareWeibo','footerShareQQ');
Mobi.initFooterLanguageEvent();
Mobi.switchJump();
Mobi.initFooterStyle({"fb":{"y":0,"c":"","f":"","r":0,"p":"","ps":0},"rt":{"y":0,"s":-1,"f":"","c":""},"gt":{"y":0}});
Mobi.showQqBg();
Mobi.showPhonesBg();
Mobi.unLoadForWechat();
Mobi.outerUrlJump();
Mobi.initNavSubMenu({"nav3":{"id":3,"name":"首页","show":true,"cil":[],"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIAxIA","columnType":100,"href":"/index.jsp","info":{"t":100,"i":3,"u":"/index.jsp","n":"首页","s":"AGQIAxIA"}}},"nav104":{"id":104,"name":"产品展示","show":true,"cil":[],"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":2,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIaBIA","columnType":100,"href":"javascript:;"}},"nav105":{"id":105,"name":"新闻动态","show":true,"cil":[],"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":2,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIaRIA","columnType":100,"href":"javascript:;"}},"nav9":{"id":9,"name":"留言板","show":true,"cil":[],"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQICRIA","columnType":100,"href":"/mb.jsp","info":{"t":100,"i":9,"u":"/mb.jsp","n":"留言板","s":"AGQICRIA"}}},"nav103":{"id":103,"name":"关于我们","show":true,"cil":[],"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIZxIA","columnType":100,"href":"javascript:;"}},"nav10":{"id":10,"name":"会员登录","show":false,"cil":[],"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIChIA","columnType":100,"href":"/login.jsp","info":{"t":100,"i":10,"u":"/login.jsp","n":"会员登录","s":"AGQIChIA"}}},"nav11":{"id":11,"name":"会员注册","show":false,"cil":[],"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQICxIA","columnType":100,"href":"/signup.jsp","info":{"t":100,"i":11,"u":"/signup.jsp","n":"会员注册","s":"AGQICxIA"}}},"nav12":{"id":12,"name":"会员中心","show":false,"cil":[],"icon":{"c":0,"i":0,"iconType":0,"id":0,"content":"","classname":"","color":"","colIconType":0,"colIconCusType":0,"iconFileId":"","iconFilePath":""},"jumpCtrl":{"ide":"AGQIDBIA","columnType":100,"href":"/profile.jsp","info":{"t":100,"i":12,"u":"/profile.jsp","n":"会员中心","s":"AGQIDBIA"}}}}, 7, 3);
Mobi.setShowSiteTitleBgFlag('0');
Mobi.changeSiteTitleBg('null','null','null','null','null');
Mobi.logoSizeCompressByMargin();
Mobi.titlePositionRefreshByLogo();
Mobi.bindTopIconBack();
Mobi.inTabMaqueeHelper.setInTabMarquee({moduleId:310,runTime : 1,funcName:'noticeLeftRightMarquee',args:[{ id:'310', direction:'left', loop:'infinite', speed:'normal', moveout:false ,isScrolling : true ,noticeType : 3},310]});Mobi.addParentDivToTable();
Mobi.initModulePhotoSwipe('J_richContentPanel312', 'rich');
Mobi.initTabModuleStyle(309,true);Mobi.initModuleCubeNavItemHeight(4,308);
Mobi.loadImgAlone(308);Mobi.manageFaiscoAd(4);

	
	
	
		

	// 访客态页面提示错误
	if(!Fai.top._manageMode ){
		errnoIng();
	}
	setTimeout("hasOpenFaiscoBaiduBridge()",1000);//延迟一秒，等待百度商桥加载完成
	
	initManagePage();

	   

	Mobi.initFooter();//初始化页脚
});
//针对管理态做初始化 by jser 2017-10-23
function initManagePage(){
	
	var isManageMode = (Fai.top._manageMode === true);
	if(!isManageMode){
		return;
	}
	
	Fai.top.Mobi.logDogWithInitManagePage();

	
}

// 获取url参数
function getUrlQueryString(name){
	var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)");
	var r = window.location.search.substr(1).match(reg);
	if(r!= null){
		return  unescape(r[2]); 
	}
	return null;
}
// 页面错误提示
function errnoIng(){
	// 获取参数errno
	var errno = getUrlQueryString("errno");
	if(errno == 14){
		Mobi.ing(LS.memberLoginNoPermission);
	}
}

//Mobi.preventScroll(document.getElementById("g_body"));//阻止滚轮事件冒泡

//访客态下，统计微信浏览器的使用情况

	if(Mobi.isWechat()){
		Mobi.logDog(200055, 1);
	}else{
		Mobi.logDog(200055, 0);
	}


//管理下，禁止点击跳转外链


//接入我们的百度商桥才隐藏默认的图标
function hasOpenFaiscoBaiduBridge(){
	if (Fai.top._mallService == 2) {
		//商城主题
		for(var i in Fai.top._serviceList) {
			if ( Fai.top._serviceList[i].serviceType == 2) {
				if ( Fai.top._serviceList[i].showType == true) {
					if ("_other" in Fai.top && !Fai.top._other.hc.h && Fai.top._headerCode.indexOf("hm.baidu.com") > -1) {
						Fai.top.Mobi.getPreviewWindow().jm("ins#newBridge").show();
					} else {		
						Fai.top.Mobi.getPreviewWindow().jm("ins#newBridge").hide();
					}
					break;
				} else {
					if(jm("a[href*='Mobi.showBaiduBridge']").length < 1){
						Fai.top.Mobi.getPreviewWindow().jm("ins#newBridge").show();
						break;
					}
				}
			} else {
				if(jm("a[href*='Mobi.showBaiduBridge']").length < 1){
					Fai.top.Mobi.getPreviewWindow().jm("ins#newBridge").show();
				}
			}
		}
	} else {
		//非商城主题
		if (Fai.top._onlineServiceJson.baiduBridge.open == true) {
			 Fai.top.Mobi.getPreviewWindow().jm("ins#newBridge").hide();
	    } else {
			if(jm("a[href*='Mobi.showBaiduBridge']").length < 1){
	        	Fai.top.Mobi.getPreviewWindow().jm("ins#newBridge").show();
	    	}
		}
	}
	//百度商桥统计
    jm("#newBridge #nb_icon_wrap").off('click.log').on('click.log', function(){
        Mobi.logDog(200171, 5);
    });
}

//解决苹果手机浏览模板网站，右下角的手机模板显示不正常的bug


if (false) {
	var mallBuy = localStorage.getItem("mallBuyCallBack");
	if (!! mallBuy) {
		localStorage.removeItem("mallBuyCallBack");
		mallBuy = jm.parseJSON(mallBuy);
		if (mallBuy.login) {
			Mobi.mallBuy(mallBuy.productId, mallBuy.buyType, mallBuy.entry, mallBuy.moduleId, jm.parseJSON(mallBuy.option), mallBuy.count, mallBuy.options);
		}
	}
}

function popupCouponMsg(msg){
	var ing = jm(".mobiCouponMsgBox");
	ing.remove();
	jm("").appendTo("body");
	ing = jm(".mobiCouponMsgBox");
	jm(msg).appendTo(ing);

	window.setTimeout(function(){ing.css("visibility","hidden");ing.css("opacity","0");}, 1500);
}

// 互动跳转领取优惠券逻辑
var hdCoupon = jm.cookie("hdCoupon");
if (hdCoupon) {
	var memberId = null;
	if (!! memberId) {
		jm.cookie("hdCoupon", null);
		jm.ajax({
			type: 'post',
			url:"ajax/mallCoupon_h.jsp",
			data:"cmd=receiveCoupon&fromHd=true&bgId=0&cid="+jm.cookie("hdCouponId"),//针对IE6缓存
			dataType:'json',
			success:function(result){
				jm.cookie("hdCouponId", null);
				if(result.success){
					var coupon = result.coupon;
					var content = [];
					content.push('');
					content.push(	'');
					content.push(		''+LS.successGet+'');
					content.push(	'');
					content.push('');
					popupCouponMsg(content.join(''));
					window.setTimeout(function(){Fai.top.location.href = '/'}, 1500);
				} else {
					var rt = result.rt;
					if(rt == -23){//WEB_NO_LOGIN
						Fai.top.location.href = 'login.jsp';
						jm.cookie("hdCoupon", true);
					} else if(rt == -4){ //COUNT_LIMIT	
						var content = [];
						content.push('');
						content.push(	'');
						content.push(		''+LS.overGet+'');
						content.push(	'');
						content.push('');
						popupCouponMsg(content.join(''));				
					} else {
						var content = [];
						content.push('');
						content.push(	'');
						content.push(		''+LS.isNoneCoupon+'');
						content.push(	'');
						content.push('');
						popupCouponMsg(content.join(''));
					}
				}
			},
			error:function(){
				Mobi.ing(LS.systemError);
			}
		});
	}
}

var receiveCouponFromHd = false;
var couponId = 0;
var savePrice = 0.0;
if (receiveCouponFromHd) {
	var windowWidth = Fai.top.document.body.clientWidth;
    var windowHeight = Fai.top.document.body.clientHeight;
    
	var html = [];
	html.push("");
	html.push("");
	html.push("");
	html.push("" + savePrice + "");
	html.push("元")
	html.push("");
	html.push("")
	html.push("");
	html.push("");
	html.push("");
	html.push("");

	var options = {'content':html.join(""), 
		'callback': function() {
			jm.ajax({
				type: 'post',
				url:"ajax/mallCoupon_h.jsp",
				data:"cmd=receiveCoupon&fromHd=true&bgId=0&cid="+couponId,//针对IE6缓存
				dataType:'json',
				success:function(result){
					if(result.success){
						var coupon = result.coupon;
						var content = [];
						content.push('');
						content.push(	'');
						content.push(		''+LS.successGet+'');
						content.push(	'');
						content.push('');
						popupCouponMsg(content.join(''));
						window.setTimeout(function(){Fai.top.location.href = '/'}, 1500);
					} else {
						var rt = result.rt;
						if(rt == -23){//WEB_NO_LOGIN
							Fai.top.location.href = 'login.jsp';
							jm.cookie("hdCoupon", true);
							jm.cookie("hdCouponId", couponId);
						} else if(rt == -4){ //COUNT_LIMIT	
							var content = [];
							content.push('');
							content.push(	'');
							content.push(		''+LS.overGet+'');
							content.push(	'');
							content.push('');
							popupCouponMsg(content.join(''));				
						} else {
							var content = [];
							content.push('');
							content.push(	'');
							content.push(		''+LS.isNoneCoupon+'');
							content.push(	'');
							content.push('');
							popupCouponMsg(content.join(''));
						}
					}
				},
				error:function(){
					Mobi.ing(LS.systemError);
				}
			});
		}
	};

	Mobi.customPopup(options);
}
Mobi.initNewGuestGiftInfo();






. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[留言]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482626]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Thu, 07 Jun 2018 19:40:34 -0700]]></pubDate>
        <description><![CDATA[来评论吧。]]></description>
    </item>
        <item>
        <title><![CDATA[五分钟倒计时]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482610]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Thu, 07 Jun 2018 17:38:35 -0700]]></pubDate>
        <description><![CDATA[



CSS3圆环倒计时-

.pie { width:200px; height:200px; background-color:blue; border-radius:100px; position:absolute; }
.pie1 { clip:rect(0px,200px,200px,100px); -o-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); background:-moz-radial-gradient(20% 50% 0deg, #333, #0000ff); background:-webkit-gradient(radial, 100 100, 0, 100 100, 110, from(#000), to(#0000ff)); }
.pie2 { clip:rect(0px,100px,200px,0px); -o-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); background:-moz-radial-gradient(80% 50% 0deg, #333, #0000ff); background:-webkit-gradient(radial, 100 100, 0, 100 100, 110, from(#000), to(#0000ff)); }
.hold { width:200px; height:200px; position:absolute; z-index:1; }
.hold1 { clip:rect(0px,200px,200px,100px); }
.hold2 { clip:rect(0px,100px,200px,0px); }
.bg { width:200px; height:200px; background-color:red; border-radius:100px; position:absolute; box-shadow:0px 0px 8px #333; background:-moz-radial-gradient(0% 50% 0deg, #900, #ff0000); background:-webkit-gradient(radial, 100 100, 0, 100 100, 110, from(#900), to(#ff0000)); }
.time { width:160px; height:160px; margin:20px 0 0 20px; background-color:#fff; border-radius:100px; position:absolute; z-index:1; box-shadow:0px 0px 8px #333 inset; text-align:center; line-height:160px; font-family:"Book Antiqua", Palatino, serif; font-size:35px; font-weight:bold; text-shadow: 1px 1px 3px #333; }
.time em { background:#fff; position:absolute; top:62px; left:12px; height:18px; width:140px; opacity:0.4; }




  


  

 

 

i = 0;
j = 0;
count = 0;
MM = 4;
SS = 59;
MS = 9;
totle = (MM+1)*600;
d = 180*(MM+1);
MM = "0" + MM;
function showTime(){
	totle = totle - 1;
	if(totle==0){
		clearInterval(s);
		clearInterval(t1);
		clearInterval(t2);
		$(".pie2").css("-o-transform","rotate(" + d + "deg)");
		$(".pie2").css("-moz-transform","rotate(" + d + "deg)");
		$(".pie2").css("-webkit-transform","rotate(" + d + "deg)");
	}else{
		if(totle>0 && MS>0){
			MS = MS - 1;
			if(MS < 10){MS = "0" + MS};
		};
		if(MS==0 && SS>0){
			MS = 10;
			SS = SS - 1;
			if(SS < 10){SS = "0" + SS};
		};
		if(SS==0 && MM>0){
			SS = 60;
			MM = MM - 1;
			if(MM < 10){MM = "0" + MM};
		};
	};
	$(".time span").html(MM + ":" + SS + ":" + MS);
};
s = setInterval("showTime()",100);
function start1(){
	i = i + 0.6;
	count = count + 1;
	if(count==300){
		count = 0;
		clearInterval(t1);
		t2 = setInterval("start2()",100);
	};
	$(".pie1").css("-o-transform","rotate(" + i + "deg)");
	$(".pie1").css("-moz-transform","rotate(" + i + "deg)");
	$(".pie1").css("-webkit-transform","rotate(" + i + "deg)");
};
function start2(){
	j = j + 0.6;
	count = count + 1;
	if(count==300){
		count = 0;
		clearInterval(t2);
		t1 = setInterval("start1()",100);
	};
	$(".pie2").css("-o-transform","rotate(" + j + "deg)");
	$(".pie2").css("-moz-transform","rotate(" + j + "deg)");
	$(".pie2").css("-webkit-transform","rotate(" + j + "deg)");
};
t1 = setInterval("start1()",100);
 


. Jn传媒.jpg]]></description>
    </item>
        <item>
        <title><![CDATA[提示]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482425]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Wed, 06 Jun 2018 05:46:58 -0700]]></pubDate>
        <description><![CDATA[
  
   
   
  提示 
   
   
   
  
  
   
    
     
      
     
     
     已停止访问该网页 
      
       
         
      
     据用户投诉及腾讯安全网址安全中心检测，该网页包含Jn插件。为维护微信流畅度，已停止访问。 
     
     
      
      申请恢复访问 
      
     
     
     客服指引 
     查看规则 
     
    
   
  
            
                    
                        [!if(type == 'block'){!]
                        
                        [!} else if(type == 'empty'){!]
                        
                        [!}else{!]
                        
                        [!}!]
                    
                    
                        [!=title!]
                        
                            [!=url!]
                            
                                
                            
                        
                        [!=desc!]
                    
                    
                        
                            [!for (var i = 0, len = btns.length; i < len; ++i) {!]
                            [!=btns[i].name!]
                            [!}!]
                        
                    
                    
                        [!for (var i = 0, len = links.length; i < len; ++i) {!]
                        [!=links[i].name!]
                        [!}!]
                    
                
         
   
  
            !function(e,t){e.WX110={BASE_PATH:"/security/newreadtemplate?t=webpage_intercept",CGI_URL:"/cgi-bin/mmspamsupport-bin/urlblockappeal",TEXT_NETWORKERR:"网络错误，请稍后再试",FUNC_GOTO:function(e){location.href=this.BASE_PATH+e}}}(window,document.body)
         
  
            var DATA={"retcode":0,"type":"block","title":"已停止访问该网页","desc":"据用户投诉及腾讯安全网址安全中心检测，该网页包含恶意欺诈内容。为维护绿色上网环境，已停止访问。","btns":[{"name":"申请恢复访问","url":"https://weixin110.qq.com/security/newreadtemplate?t=webpage_intercept/w_more-info&url=https%3A%2F%2Fjlwz.cn%2Fbaidu%2F%3FJackson%25E5%25B7%25A5%25E5%2585%25B7%25E7%25AE%25B1&evil_type=201&source=1&exportkey=","type":"primary"}],"links":[{"name":"客服指引","url":"https://kf.qq.com/faq/170118UnqeUZ170118mUb6fu.html"},{"name":"查看规则","url":"https://weixin.qq.com/cgi-bin/readtemplate?t=weixin_external_links_content_management_specification"}]}
         
   
 


	(function (w, d, s, i, v, j, b) {
		w[i] = w[i] || function () {
			(w[i].v = w[i].v || []).push(arguments)
		};
		j = d.createElement(s),
			b = d.getElementsByTagName(s)[0];
		j.async = true;
		j.charset = "UTF-8";
		j.src = "https://www.v5kf.com/156265/v5kf.js";
		b.parentNode.insertBefore(j, b);
	})(window, document, "script", "V5CHAT");
		




    #main.protected #logo {
        top:5%;
    }
    #main.protected #banner {
        top:calc(5% + 70px);
    }
    #main.protected #loading-bar{
        display:none;
    }
    #main.protected #protect-hint {
        display:block;
    }
   
    #protect-hint {
        position:absolute;
        width:100%;
        bottom:0;
        text-align: center;
        font-size:16px;
        display:none;
    }
    #protect-hint .protect-content {
        width: 15em;
        height:100%;
        display:inline-block;
        background:rgb(255,210,0);
        border-radius: 4px;
        box-sizing: border-box;
        box-shadow: 0px 0px 2px 0px white,  0px -1px 0px 1px rgba(255,255,255,0.4) inset;
        padding-bottom:1em;
        position:relative;
        border-bottom-right-radius:0;
        border-bottom-left-radius:0;
    }
    .protect-content h3 {
        /*
        background: #c167e6;
        color: white; 
        */
        margin: 0;
        padding: 1.5em 0 0.5em 0;
        margin-bottom: 1em;
        box-shadow: 0px 0px 0px 0px white,  0px 1px 0px 0px rgba(255,255,255,0.2) inset;
        position:relative;
    }
    .protect-content h3:after {
        content: "";
        width: 1em;
        height: 1em;
        background: black;
        display: block;
        border-radius: 1em;
        position: absolute;
        left: calc(50% - 0.5em);
        top: -0.7em;  
        box-shadow: -6em 0px 0px 0px black, -4.5em 0px 0px 0px black, -3em 0px 0px 0px black, -1.5em 0px 0px 0px black,6em 0px 0px 0px black, 4.5em 0px 0px 0px black, 3em 0px 0px 0px black, 1.5em 0px 0px 0px black;
    }
    .protect-content img {
        width:80%;
        height:80%;
    }

. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[翡翠台直播]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482417]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Wed, 06 Jun 2018 04:24:04 -0700]]></pubDate>
        <description><![CDATA[线路一
线路二
线路三
请按网络情况选择线路. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[电视直播]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482348]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Tue, 05 Jun 2018 05:03:24 -0700]]></pubDate>
        <description><![CDATA[
Jn传媒提供技术支持

  
  . Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[高仿网站无法打开]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482345]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Tue, 05 Jun 2018 04:23:16 -0700]]></pubDate>
        <description><![CDATA[. Jn传媒.jpg由于Jn博客有自动优化功能，于是，把代码转到Jn博客里就变成了这样,心塞(´-ωก`)↓&lt;html&gt;
 &lt;head&gt; 
  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0, user-scalable=no&quot;&gt; 
  &lt;title&gt;网页无法打开&lt;/title&gt; 
  &lt;style type=&quot;text/css&quot;&gt;
      body { margin-top: 0px; padding-top: 0px;  } /* Used for additional styles, e.g. direction */
      h2   { margin-top: 5px; padding-top: 0px; }
    &lt;/style&gt; 
 &lt;/head&gt;
 &lt;body&gt; 
  &lt;!-- Upside down Android --&gt; 
  &lt;img width=&quot;50&quot; height=&quot;26&quot; align=&quot;top&quot; src=&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAaCAMAAADCHv/YAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAitQTFRFn8ctpMo4o8o3ocgzo8k3osk1oMcvo8k2osk0pco6+fzy7vXa9/rs8/jl/P75/v78/v/9osk2ocgy+Pvwo8o4/v79pss68ffho8k1/f77s9JY2umtqMxB/f76stJWvdhtrM5J6vPRpss7oskzpMo3nscs9fnoq85I7/bcp8w+0eOY2+qvstJV+vz08Pbd5e/E5O/En8crnsYrrtBNoMcutNNardBMpss80eSaoMgu5e/Focg08fffz+SYpcs6x96EsNFR5fDFxd2AuNVju9do9PjlzOGOoccvyuCL0OSYpco5ocky7/Xbwtt4zuKT8vfhr9BO8vjjpss+qc5F1eah4O273+y5qs1E0OOWt9Vks9NYqs1Crc9KxNx8oMgx3OqxocgwttRewdt36vPSu9dqqcxB9PnoncYos9JXv9lxqs1FqMxAuNZjsNFTn8cvosgz2eiq5vDI5/DJ/P35ttVg2Omp7vXZ7fTXnscrnsYqstJYuNRg+fvytNRc6PHL///94O26tdNb9Pjnn8csz+OWqs5Fosgx6PLNq85F1eajrM5I///+rc9Lt9Vgt9Rf/P344e29nMUo3uy1ttRgrs9MpMo6wdt2+vzzy+GN+Pvu+/32ockzqs1D3Ouy4e69rM9J8/jk8ffgzeKRq81Fqc1E1OWfxdx+nsct2+mw2emr9vrsxNx9yd+I0uafoMgw5O/CsdJW7PTT6/PS3Oqyn8cuocgxqs5HpMo5////jSIuSwAAAd9JREFUeNqE0vdb00AYB/BLmrShLaWLvTfIHrIEAREBwQkq0w0OkL1kCAoqICpbFPdEUUGakPfP44IWoU0v31/ufZ57P7m8uaAv1BZO5q8H0ZVbhAQUJdQESEVYJzqARByU5+5Gi4Sobr4YUEnF5aR/5Nu4EvHTbuyQkmTUc1cqUtuLFUhQYMtvvNIRMUifgRiGf6hPVEfyhMxOw9t0FWO6cQIQ6Aa9vO7/AYvtko2Q1RkjxIW4xX5NwAQCP+QaAF5d2yQltM8TQBvT9AQk8je6NrVASOrpLnvnLolq1JDGF56BE3lesEIi/E9nAkd4ElGfkyE5AoW3FsMjzfta0c77siF6GeLx9CLe4674X+d2ASWWVt2WTP9HkCEwmo6PEdbB+yxjJ+ZhI5zEfxT3+owsgYYUTLLAprHaCRudaAgWRGt2HMgTbTcvUhF3jjP/R/H5nBYuUugYuCAQFYRE6pB17/gmTqRT1owuCfwIHmMdP2/5o2pPcE3Ad/ICuxdRHB2ftL/FkQB01NWrW1UmhqY1rBn5TMUPgRJZKvOdu1o7EXs4rPndfP49w1F/JZK8YJGu9eUpXYW7dgSXhWkWMvHw++740FvLZPLmoKOA3k/eRPI41InA+fcK4ytnW4ABANzcGZFdd/x+AAAAAElFTkSuQmCC&quot;&gt; 
  &lt;h2&gt;网页无法打开&lt;/h2&gt; 
  &lt;!-- Page url --&gt; 
  &lt;p&gt;位于 &lt;strong&gt;Jn博客&lt;/strong&gt; 的网页无法加载，因为：&lt;/p&gt; 
  &lt;!-- Error description or suggestions --&gt; 
  &lt;p&gt;Jn服务器傲娇的拒绝了您的访问&lt;/p&gt; 
 &lt;/body&gt;
&lt;/html&gt;. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[HTML5 音频API | 音频可视化]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482266]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Mon, 04 Jun 2018 05:17:28 -0700]]></pubDate>
        <description><![CDATA[. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[刮刮乐（猜猜会刮到什么？）]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482181]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Sun, 03 Jun 2018 03:08:14 -0700]]></pubDate>
        <description><![CDATA[我特意设计的移动错位（可以占你刮得更久(* ⁰̷̴͈꒨⁰̷̴͈)=͟͟͞͞➳❤）&lt;html&gt;
 &lt;head&gt; 
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt; 
  &lt;title&gt;HTML5刮刮乐抽奖卡效果&lt;/title&gt; 
 &lt;/head&gt; 
 &lt;body style=&quot;user-select: none;&quot;&gt; 
  &lt;canvas width=&quot;200&quot; height=&quot;200&quot; style=&quot;background-color: transparent; position: absolute; background-image: url(&amp;quot;http://13908440.s21i.faiusr.com/2/ABUIABACGAAg19Gi2AUosanZ2QQwwAc4nAQ!640x640.jpg;);&quot;&gt; 
   &lt;script type=&quot;text/javascript&quot;&gt;     
(function(bodyStyle){         
	bodyStyle.mozUserSelect = 'none';         
	bodyStyle.webkitUserSelect = 'none';           
	var img = new Image();         
	var canvas = document.querySelector('canvas');         
	canvas.style.backgroundColor='transparent';         
	canvas.style.position = 'absolute';           
	img.addEventListener('load',function(e){  
		var ctx;
		var w = img.width, h = img.height;             
		var offsetX = canvas.offsetLeft, offsetY = canvas.offsetTop;             
		var mousedown = false;               
		function layer(ctx){                 
			ctx.fillStyle = 'gray';                 
			ctx.fillRect(0, 0, w, h);             
		}   
		function eventDown(e){                 
			e.preventDefault();                 
			mousedown=true;             
		}   
		function eventUp(e){                 
			e.preventDefault();                 
			mousedown=false;             
		}               
		function eventMove(e){                 
			e.preventDefault();                 
			if(mousedown){                     
				if(e.changedTouches){                         
					e=e.changedTouches[e.changedTouches.length-1];                     
				}                     
				var x = (e.clientX + document.body.scrollLeft || e.pageX) - offsetX || 0,                         
				y = (e.clientY + document.body.scrollTop || e.pageY) - offsetY || 0;                     
				with(ctx){                    
					beginPath()                     
					arc(x, y, 5, 0, Math.PI * 2);                         
					fill();                     
				}                
			}             
		}               
		canvas.width=w;             
		canvas.height=h;             
		canvas.style.backgroundImage='url('+img.src+')';             
		ctx=canvas.getContext('2d');             
		ctx.fillStyle='transparent';             
		ctx.fillRect(0, 0, w, h);             
		layer(ctx);               
		ctx.globalCompositeOperation = 'destination-out';               
		canvas.addEventListener('touchstart', eventDown);             
		canvas.addEventListener('touchend', eventUp);             
		canvas.addEventListener('touchmove', eventMove);             
		canvas.addEventListener('mousedown', eventDown);             
		canvas.addEventListener('mouseup', eventUp);             
		canvas.addEventListener('mousemove', eventMove);       
	});
	
	img.src = 'http://13908440.s21i.faiusr.com/2/ABUIABACGAAg19Gi2AUosanZ2QQwwAc4nAQ!640x640.jpg';

})(document.body.style);
&lt;/script&gt; 
   &lt;div style=&quot;text-align:center;&quot;&gt; 
   &lt;/div&gt; 
  &lt;/canvas&gt;
 &lt;/body&gt;
&lt;/html&gt;. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[这12行代码，分分钟让电脑手机崩溃！]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482097]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Sat, 02 Jun 2018 05:36:32 -0700]]></pubDate>
        <description><![CDATA[使用这十二行JavaScript代码能让uc、firefox、chrome、QQBowser、safari等众多浏览器崩溃，甚至让iPhone重启？！

完整HTML代码如下：

&lt;html&gt;
&lt;body&gt;
&lt;script&gt;
var total=&quot;&quot;;
for (var i=0;i&lt;1000000;i++)
{
    total= total+i.toString();
    history.pushState(0,0,total);
}
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
 

demo：（温馨提示：请保存浏览器其它窗口的编辑任务）

www.0xroot.cn/demo.html (点击一下，又不会怀孕！)

因为怕消耗本博客的流量，所以本站不作演示，但提供下载源码。

 

接来下会发生什么？

点开以后，我的状态是这样的：（自行脑补去吧）



如果你是PC端用户，点开链接以后，电脑CPU内存极有可能一路狂飙直至浏览器崩溃卡死！

如果你是移动端（安卓、iPhone）用户，点开链接以后你的浏览器会闪退！在微博、微信客户端点开链接同样会闪退，iPhone用Safari打开之后链接之后，手机注销重启了！…

 

效果：

本博客用的是firefox火狐浏览器测试
打开网页后任务管理器CPU、内存急速狂飙，达到100%后浏览器崩溃。. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[这个网站不坑到你关浏览器我不服。]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/482090]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Sat, 02 Jun 2018 05:01:00 -0700]]></pubDate>
        <description><![CDATA[惊不惊喜，意不意外！Jn传媒，版权所有！：嘻嘻  对不起咯var msg = "呵呵";var speed = 300; var msgud = " " + msg; function titleScroll() { if (msgud.length . Jn传媒.jpg]]></description>
    </item>
        <item>
        <title><![CDATA[Jn翻译——极速跳转]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/481792]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Wed, 30 May 2018 05:17:27 -0700]]></pubDate>
        <description><![CDATA[&lt;html&gt;
 &lt;head&gt; 
  &lt;title&gt;谷歌翻译 -Jn&lt;/title&gt; 
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt; 
  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,initial-scale=1&quot;&gt; 
  &lt;meta name=&quot;format-detection&quot; content=&quot;telephone=no&quot;&gt; 
  &lt;link href=&quot;https://wodemo.com/statics/build/css/cb4a99cbe25c7fc4e15fa44ed3c12d97.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt; 
  &lt;link href=&quot;https://bjx.wodemo.com/skin/bjx/1389319546/site.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;
  &lt;link rel=&quot;alternate&quot; href=&quot;https://bjx.wodemo.com/feed&quot; type=&quot;application/rss+xml&quot; title=&quot;RSS&quot;&gt;
 &lt;/head&gt; 
 &lt;body&gt; 
  &lt;div id=&quot;whole_body&quot; class=&quot;wo-main-body wo-mode-visitor&quot;&gt; 
   &lt;h1 class=&quot;wo-entry-title&quot;&gt;谷歌翻译&lt;/h1&gt; 
   &lt;div class=&quot;wo-entry-time&quot; timestamp=&quot;1389312132&quot;&gt;
    2014-01-10 08:02:12 +0800
   &lt;/div&gt; 
   &lt;div class=&quot;wo-entry-section wo-text-html&quot;&gt;
    &lt;span class=&quot;small&quot;&gt;Jn高速翻译——谷歌翻译&lt;/span&gt;
    &lt;form action=&quot;http://translate.google.cn/m?hl=zh-CN&quot; class=&quot;&quot;&gt;
     &lt;input type=&quot;hidden&quot; name=&quot;hl&quot; value=&quot;zh-CN&quot;&gt;
     &lt;input type=&quot;hidden&quot; name=&quot;sl&quot; value=&quot;auto&quot;&gt;
     &lt;input type=&quot;hidden&quot; name=&quot;tl&quot; value=&quot;zh-CN&quot;&gt;
     &lt;input type=&quot;hidden&quot; name=&quot;ie&quot; value=&quot;GB2312&quot;&gt;
     &lt;input type=&quot;hidden&quot; name=&quot;prev&quot; value=&quot;_m&quot;&gt;
     &lt;input type=&quot;text&quot; name=&quot;q&quot; style=&quot;width:65%&quot; maxlength=&quot;2048&quot; value=&quot;&quot;&gt;
     &lt;br&gt;
     &lt;a href=&quot;http://translate.google.cn/m?hl=zh-CN&amp;amp;sl=auto&amp;amp;tl=zh-CN&amp;amp;mui=sl&quot; class=&quot;s1&quot;&gt;Jn&lt;/a&gt;
     &lt;a id=&quot;arrow&quot;&gt;&amp;gt;&lt;/a&gt;
     &lt;a href=&quot;http://translate.google.cn/m?hl=zh-CN&amp;amp;sl=auto&amp;amp;tl=zh-CN&amp;amp;mui=tl&quot; class=&quot;s1&quot;&gt;语言&lt;/a&gt;
     &lt;br&gt;
     &lt;input type=&quot;submit&quot; value=&quot;Jn翻译——极速跳转&quot;&gt;
    &lt;/form&gt;
   &lt;/div&gt; . Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[Jn科技发展史]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/481787]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Wed, 30 May 2018 04:10:28 -0700]]></pubDate>
        <description><![CDATA[
  
  
  
  
  
  
  
  
  
  
  
  副本_Jn科技
  
  
  
  

   

  
  

  
    
  
    
  
    
    
    
  

   
    window.viewerConfig = {"jsonHost":"//res.maa.im/","apiHost":"//api.maka.im/","imgHost":"//img1.aka.im/","musicHost":"//res.mka.im/","resHost":"//res.maa.im/","fontHost":"//font.maa.im/","env":"production"}
    window.projectVersion = {"id":"BOJNXVIL","title":"副本_Jn科技","uid":"7156777","content":"啦啦啦","p_version":"4","status":"1","thumb":"//img1.maka.im/user/7156777/images/11e59fe4-bd44-48b3-8166-4f06506e2814.png","firstImg":"http://img2.maka.im/user/4003265/thumb/3831f7798838d9cb90b0207d3394706e.jpg@0-0-622-622a_250w.src","type":"maka","show_ad":true,"show_watermark":false,"json_url":"https://res.maka.im/user/7156777/event/BOJNXVIL/BOJNXVIL_v4.json","vip_config":{"loading_page_custom":false,"viewer_domain_custom":false,"enable_bottom_menu":false,"enable_relay":false,"enable_lottery":false,"enable_form":true,"enable_vote":true,"enable_anti_fake_vote":true,"enable_form_lamp":false,"is_vip":false,"show_makalogo":true},"origin_thumb":"//img1.maka.im/user/7156777/images/11e59fe4-bd44-48b3-8166-4f06506e2814.png","wx_thumb":"//img1.maka.im/user/7156777/images/11e59fe4-bd44-48b3-8166-4f06506e2814.png@300w","isnodeproxy":false,"showad":false,"isTempOffline":false,"pcViewerUrl":"http://u7156777.viewer.maka.im/pcviewer/BOJNXVIL","canonical":"http://maka.im/pcviewer/7156777/BOJNXVIL"}
   




副本_Jn科技




  
  
  
Jn

  
    
  

  
  
  Jn传媒提供技术支持
  Jn传媒为Jn科技旗下公司，由Jn科技版权©所有!
  Jn科技，Jackson版权©所有!

    
  

   
      
      
          
          
      
      
          
          
          
            
          
      
      
        0%
      
      
      
        Jn传媒
      
      

      
    

    
    
    
    
    
    
    
    
    


  
  

  

    
  
    
  
    
  


var _hmt = _hmt || [];
(function() {
  var hm = document.createElement("script");
  hm.src = "https://hm.baidu.com/hm.js?345905e7787afdd8c5d815d632ef2555";
  var s = document.getElementsByTagName("script")[0]; 
  s.parentNode.insertBefore(hm, s);
})();



. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[求打赏（不要脸）]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/481302]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Sat, 26 May 2018 19:20:48 -0700]]></pubDate>
        <description><![CDATA[. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[IOS在线游戏专区]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/481250]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Sat, 26 May 2018 16:26:09 -0700]]></pubDate>
        <description><![CDATA[&lt;html&gt; 
&lt;head&gt; 
 
&lt;script type=&quot;text/javascript&quot;&gt; 
function showAndHidden1(){ 
var div1=document.getElementById(&quot;div1&quot;); 
var div2=document.getElementById(&quot;div2&quot;); 
if(div1.style.display=='block') div1.style.display='none'; 
else div1.style.display='block'; 
if(div2.style.display=='block') div2.style.display='none'; 
else div2.style.display='block'; 
} 


&lt;/script&gt; 
&lt;/head&gt; 
&lt;body&gt; 
&lt;div&gt;Jn传媒！&lt;/div&gt; 
&lt;div id=&quot;div1&quot; style=&quot;display:block;&quot;&gt;1&lt;iframe src=&quot;https://www.html5tricks.com/demo/html5-canvas-windows-draw/index.html&quot;width=&quot;360&quot; height=&quot;450&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt; 
&lt;div id=&quot;div2&quot; style=&quot;display:none;&quot;&gt; 2&lt;iframe src=&quot;https://www.html5tricks.com/demo/jiaoben1765/index.html&quot; width=&quot;500&quot; height=&quot;600&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt; 
&lt;input type=&quot;button&quot; onclick=&quot;showAndHidden1();&quot; value=&quot;切换&quot; /&gt; 
&lt;hr&gt; 
  留言板.gif 
   
   
   
   
  
  
  
  
   
   
    
    . Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[初一下册英语知识集合]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/481189]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Sat, 26 May 2018 05:04:28 -0700]]></pubDate>
        <description><![CDATA[u1短语归纳
1. play chess 下国际象棋 
2. play the guitar 弹吉他 
3. speak English 说英语
4. English club 英语俱乐部 
5. talk to 跟…说 
6. play the violin 拉小提琴
7. play the piano 弹钢琴 
8. play the drums 敲鼓 
9. make friends 结交朋友
10. do kung fu 练 (中国) 功夫 
11. tell stories 讲故事 
12. play games 做游戏
13. on the weekend/on weekends 在周末

◆用法集萃
1. play +棋类/球类 下……棋，打……球 
2. play the +西洋乐器 弹/拉……乐器
3. be good at doing sth.= do well in doing sth. 擅长做某事
4. be good with sb. 和某人相处地好 
5. need sb. to do sth. 需要某人做某事
6. can + 动词原形 能/会做某事 
7. a little + 不可数名词 一点儿……
8. join the …club 加入…俱乐部 
9. like to do sth. =love to do sth. 喜欢/喜爱做某事

◆典句必背
1. Can you draw? Yes, I can. / No, I can’t.
2. What club do you want to join? I want to join the chess club.
3. You can join the English club. 
4. Sounds good./That sounds good. 
5. I can speak English and I can also play soccer. 
6. Please call Mrs. Miller at 555-3721. 

◆话题写作
Dear Sir, 
I want to join your organization (组织) to help kids with sports, music and English. My name is Mike. I am 15 years old. I’m a student in No. 1 Middle school. I can play the guitar well. I can sing many songs. I can swim and speak English well, too. I think I can be good with the kids. I also do well in telling stories. 
I hope to get your letter soon. 
Yours, 
Mike 

◆语法讲解
1.can+动词原形，它不随主语和数而变化。
(1)含有can的肯定句：主语+can+谓语动词的原形+其他。
(2)变一般疑问句时，把can提前：Can+主语+动词原形+其他？
　　　肯定回答：Yes，主语+can。否定回答：No，主语+can't.
(3)含有can的否定句：主语+can't+动词的原形+其他。
(4)含有can的特殊疑问句：特殊疑问词+can+主语+动词原形+其他？

2. may+动词的原形。（may为情态动词）一般疑问句是把may提前，
肯定回答是：Yes，主语 +may。否定回答是：No，主语+mustn't。或please don't。
join+某个组织，俱乐部，party，参军，党派等 “加入”
Join sb. “参加到某人中” join in (doing)sth “加入做......，参加某个活动” Join in=take part in +活动，比赛

3. 说某种语言：speak+语言 

4、play+球、棋、牌；play+the+乐器。

5、擅长于（做）什么：be good at +名词/动ing 

6、帮助某人做某事：help sb. (to ) do sth. help sb. with sth.

7、我能知道你名字吗？May I know your name? 

8、想要做什么：want to do sth 例如：I want to learn about art.

9、What club do you want to join? 
　　I want to join the chess club and the basketball club.

10、What club does Tom want to join? He wants to join the swimming club .

11、He can’t play the violin or the piano. Can you help kids with swimming?

12、Why do you want to join the English club? Because I want to learn English well.
u2◆短语归纳
1. what time 几点 
2. go to school 去上学 
3. get up 起床 
4. take a shower 洗淋浴 
5. brush teeth 刷牙 
6. get to 到达 
7. do homework 做家庭作业 
8. go to work 去上班 
9. go home 回家 
10. eat breakfast 吃早饭 
11. get dressed 穿上衣服 
12. get home 到家 
13. either…or… 要么…要么… 
14. go to bed 上床睡觉 
15. in the morning/ afternoon/ evening 在上午/下午/晚上
16. take a walk 散步 
17. lots of=a lot of 许多，大量 
18. radio station 广播电台
19. at night 在晚上 
20. be late for=arrive late for 迟到

◆用法集萃
1. at + 具体时间点 在几点（几分） 
2. eat breakfast/ lunch/dinner 吃早饭/午饭/晚饭
3. thirty\half past +基数词 ……点半 
4. fifteen\a quarter to +基数词 差一刻到……点
5. take a/an +名词 从事……活动
6. from …to … 从……到…… 
7. need to do sth 需要做某事

◆典句必背
1. What time do you usually get up? I usually get up at six thirty.
2. That’s a funny time for breakfast. 
3. When do students usually eat dinner? They usually eat dinner at a quarter to seven in the evening.
4. In the evening, I either watch TV or play computer games.
5. At twelve, she eats lots of fruit and vegetables for lunch..
6. She knows it’s not good for her, but it tastes good. 
7. Here are your clothes. 

◆话题写作
主题：谈论日常作息习惯
My School Day
I am a student. I usually get up at seven, and I eat breakfast at seven thirty. Then I go to school at eight. School starts at eight thirty. I eat lunch at twelve. I go home at 17:00. I often eat dinner at 19:00 and then play the piano. I do my homework at 20:00. At 22:00, I go to bed.

◆语法讲解
1.what time和when引导的特殊疑问句。
(1)对时间提问用what time，也可以用when。询问钟点时用what time，询问日期、月份、年份时用when。
(2)询问做某事的时间时，两者可以互换。 
(3)其他询问时间的句子：
What's the time? =What time is it?现在几点了？ 
时刻表达法：顺读法和逆读法。
(1)顺读法：“钟点+分钟”直接读数字。
(2)逆读法：借助介词past或to表示，要先说分再说钟点。
A.当分钟不超过30分钟时（包括30分钟），即&lt;或=30，用past表示。其结构为：“分钟+past+整点” 意为“几点过几分”。
　　　B.当超过30分钟时，即&gt;30，用to表示。其结构为：“所差分钟（即60—所过分钟数）+to+下一个整点”，to译成“差”，差几分钟到几点。
　　　C.当分钟为30分钟用half表示，当分钟为15分钟用a quarter。

2. always 总是&gt;usually 通常&gt;often常常&gt;sometime 有时

3. Watch+TV、球赛 “观看，观赏”，特指长时间注视。
See+电影、医生 “看见”，强调看的结果。
Look “看”，强调看的动作，look后接宾语时要用介词at。
Read+书刊、杂志 “阅读”

4. listen to +宾语 

5. Go to +地点名词 如：go to school go+地点副词 如：go home

6、Take a shower “淋浴” 

7、Eat breakfast 吃早餐
3◆短语归纳
1. get to school 到达学校 
2. take the subway 乘地铁 
3. ride a bike 骑自行车 
4. how far 多远 
5. from home to school 从家到学校 
6. every day 每天
7. take the bus 乘公共汽车 
8. by bike 骑自行车 
9. bus stop 公共汽车站 
10. think of 认为 
11. between … and … 在…和…之间 
12. one 11-year-old boy 一个11岁的男孩 
13. play with … 和…玩 
14. come true 实现 
15. have to 不得不

◆用法集萃
1. take… to …= go to … by… 乘…去…
2. How do / does （sb）get to …? …是怎样到…的？
3. How far is it from … to …? 从…到…有多远？
4. It takes sb. some time to do sth. 做某事花费某人多长时间。
5. How long does it take to do sth.? …花费多长时间？
6. It is + adj. + to do sth. 做某事是….
7. Thanks for + n. / Ving 感谢你（做）某事。

◆典句必背
1. How do you get to school? I ride my bike.
2. How far is it from your home to school?
3. How long does it take you to get to school?
4. For many students, it is easy to get to school.
5. There is a very big river between their school and the village.

◆话题写作
主题：上学的交通方式 写作思路：开篇点题：点出自己的出行方式；具体内容：自己选择这种交通方式的原因；结束语: 表明自己的观点。
The Best Way for Me to Go to School
Different students go to school in different ways in our school, but I llike to go to school on foot.
First, I live near the school, so my home is not far from my school. And it takes me a few minutes to get there. Second, there is a crossing on my way to school, and sometimes the traffic is very busy. I think it is safer to go to school on foot. Third, I think walking is good for my health. It’s a kind of sport and it makes me study better.
So in my opinion, the best way to go to school is on foot. What about you?

◆语法讲解
（一）how 引导的特殊疑问句
1.how 引导的特殊疑问句提问交通方式，其答语分三种情况：
a. take a/an/the+交通工具（单数）
b. by+交通工具（单数）
c. on/in+限定词+交通工具

2. how far 用来提问距离，多远，其答语分为两种：
（1）用长度单位表示：It is five kilometers.
（2）用时间表示：It’s twenty minutes’ walk. 

3.how long 用来提问时间，意为多久回答常用“for+段时”。
----How long have you learnt English?
----For 3 years.
how soon 用来提问做完某事还需要多长时间， 常用于将来时态时， 常用“in+时间段”来回答。
――How soon will you arrive in Beijing?
----In 3 hours.

二、重点知识详解
1.take +a/an/the+表示交通工具的名词，乘……去某地，是动词短语，在句中作谓语。
He takes the train. 
take the subway乘地铁 
take a walk散步 
take a shower洗个澡
take a rest休息一会 
take a seat 坐下 
take some medicine 吃药

2.by+表示交通工具的单数名词或on/in+ a/an/the/one’s+表示交通工具的单数名词，是介词短语作方式状语。
I get to school by bike. = I get to school on my bike.

3.walk/ride/drive/fly+to+地点名词，步行/骑自行车/开车/坐飞机去某地
表示乘交通工具方式可以互换表达相同的意义:
Take the bus to school=go to school by bus=go to school on a bus
Drive a car to work=go to work by car=go to work in a car 
Fly to shanghai=go to shanghai by plane/air=take the/a plane to shanghai=go to shanghai on a/an/the plane.

4.get表示“到达”，后接名词需加to，接地点副词不加to.
reach 给示到达，是及物动词，其后直接接宾语。
arrive in+大地点 arrive at +小地点 后接副词不需介词。

5. It takes sb some money/time to do sth.花费某人多少时间/钱做某事
Sb pay some money for sth 某人为某物花费多少钱
Sb spend some time/money on sth 某人在做某事或某物上花费时间/钱
Sb spend some time/ money (in)doing sth 
Sth cost sb some money 某物花费某人多少钱

6. How far is it from A to B?=How far is B from A?
答语有两种：
It’s…meters/miles/kilometers(away)有……米/英里/千米（远）
It ‘s about ten minutes’ walk/ ride. 大约有十分钟步行/骑车的路程。

7. have to 后加动词原形，侧重客观的需要，有“不得不，被迫”之意，有多种时态形式，否定式为don’t have to(needn’t)意为“不必”。
Must 侧重于说话者的主观看法，认为有必要或有义务做某事，只有现在时一种形式,否定式must’t意为“一定不要，不允许，禁止”反意词为“needn’t”。

8.感谢用语：Thank you very much , Thanks a lot , Many thanks.
回答感谢用语的句子：
That’s ok /all right. 不用谢。
You are welcome 不客气。 
It is my pleasure./My pleasure./It is a pleasure.不客气、那是我的荣幸。
/Don’t mention it。别在意。 
It was nothing at all.那没什么。
4短语归纳
1. on time 准时，按时 
2. listen to … 听……
3. in class 在课上 
4. be late for 做……迟到
5. have to 不得不 
6. be quiet 安静
7. go out 外出 
8. do the dishes 清洗餐具
9. make breakfast 做早饭 
10. make (one’s) bed 铺床
11. be noisy 吵闹 
12. keep one’s hair short 留短发
13. play with sb. 和某人一起玩 
14. play the piano 弹钢琴
15. have fun 玩得高兴 
16. make rules 制订规则 

◆用法集萃
1. Don’t + 动词原形+其他， 不要做某事。 
2. help sb. (to) do sth. 帮助某人做某事
3. too many + 可数名词复数 太多的…… 
4. practice doing sth. 练习做某事
5. be strict with sb. 对某人要求严格 
6. be strict in sth. 对某事要要求严格
7. leave sth sp. 把某物忘在某地
8. keep + 宾语+形容词 使……保持某种状态
9. learn to do sth. 学会做某事 
10. have to do sth. 不得不做某事

◆典句必背
1. Don’t arrive late for class. 上课不要迟到。
2. Can we bring music players to school? 我们可以带音乐播放器到学校吗？
3. And we always have to wear the school uniform. 并且我们总是不得不穿校服。
4. There are too many rules! 有太多的规则！
5. Don’t leave the dirty dishes in the kitchen! 不要把脏盘子留在厨房里！
6. I have to keep my hair short. 我不得不留短发。

◆话题写作
Dear Tom,
Thanks for your last letter. You want to know the rules in our school. Now let me tell you about them.
We can’t arrive late for class. We can’t talk loudly in class. We should keep quiet. When we meet our teachers on our way, we should say hello to them. We can’t eat or drink in class, and we can’t listen to music or play games in class.
I think we have too many rules. What about yours? Please write and tell me.
Yours,
Li Ming

◆语法

肯定的祈使句：
(1) 实义动词原形+其他； 
(2) be动词原形+形容词+其他； (
3) Let sb do sth. 
否定的祈使句：
(1) Don’t+实义动词+原形； 
(2) Don’t be+形容词+其他；
(3) Don’t let sb do sth 
(4) No+Ving.

2. 不要迟到：Don’t arrive late. = Don’t be late. (arrive = be)
　　上课/上学不要迟到：Don’t arrive (be) late for class/school.

3. 主语省略（无主语）：Don’t arrive late for class.
　　主语不省略（有主语）：We can’t arrive ;ate for class.

4. 在学校我们必须穿校服：We have to wear uniforms at school.
　　句型：不得不/必须做某事：have to do sth
　　否定：不必做某事：don’t have to do sth
　　穿校服：单数：wear a uniform 复数：wear uniforms

5. 在我家里有太多的规矩：I have too many rules in my house.
　　词组：太多…：too many…

6. 我从来没有任何快乐：I never have any fun.
　　(never译为“从来没有”，表示否定，否定句中表示“任何，一些”，用any)

7. 不要大声说话：Don’t talk loudly.
　　请大声说：Speak loudly, please.

8. 他擅长于唱歌：He is good at singing.
　　句型：擅长于做某事：be good at doing sth

9. 表示“地点”的词组：
(1) 在教室里：in the classroom 
在课堂上：in class
(2) 在走廊上：in the hallways 
在学校里：at school = in school

10. 表示“时间”的词组：
　　　(1) 下课后：after class 放学后：after school
　　　(2) 在上学的白天/晚上：on school days/nights 比较：at night
　　　(3) 到晚上10点钟之前：by 10 o’clock p.m.

11. (1) with 和； 如：He lives in Beijing with my parents. (不能用and)
　　(2) with 戴着； 如：Do you know the fat man with a hat? (不能用wears)
　　(3) with 有着； 如：It’s an old house with a beautiful garden. (不能用has)
5◆短语归纳
1. kind of 有几分，有点儿 
2. be from / come from 来自于
3. South Africa 南非 
4. all day 整天
5. for a long time 很长时间 
6. get lost 迷路
7. places with food and water 有食物和水的地方 
8. cut down 砍倒 
9. in (great) danger 处于（极大）危险之中 
10. twelve years old 十二岁 
11. things made of ivory 由象牙制成的东西

◆用法集萃
1. —Why…? 为什么……？ 
—Because… 因为…… 
2. let sb. do sth. 让某人做某事 
3. want to do sth. 想要做某事 
4. one of + 名词复数 ……之一 
5. forget to do sth. 忘记要做某事 
6. forget doing sth. 忘记做过某事 
7. help sb. (to) do sth. 帮助某人做某事
8. be friendly to sb. 对某人友好

◆典句必背
1. —Why do you like pandas? 你为什么喜欢熊猫？
—Because they’re kind of interesting. 因为它们有点儿有趣。
2. —Why does John like koalas? 约翰为什么喜欢树袋熊？
—Because they’re very cute. 因为它们非常可爱。
3. —Why don’t you like tigers? 你为什么不喜欢老虎？
—Because they’re really scary. 因为它们真的吓人。
4. —Where are lions from? 狮子来自哪里？
—They’re from South Africa. 它们来自南非。
5. Elephants can walk for a long time and never get lost. 大象能走很长时间并且从不迷路。
6. They can also remember places with food and water. 它们也能记住有食物和水的地方。
7. But elephants are in great danger. 但是，大象处于极大危险之中。
8. People cut down many trees so elephants are losing their homes.
人们砍倒了许多树，因此，大象渐渐失去它们的家园。
9. Today there are only about 3,000 elephants (over 100,000 before)
现在仅有大约3000头大象（之前超过10万头大象）。
10.Isn’t she beautiful? 她难道不美丽吗？

◆话题写作
The Animal I Like
There are many kinds of animals in the world. What animal do I like? Let’s know her.
Many people like her very much. I also like her. She is from China. She is very cute. She doesn’t eat grass and meat at all. She eats bamboo every day. She is so nice. She is black white. She has two big black ears and eyes. And she also has black legs and arms.
What animal is she? She is a panda. I like panda very much. Do you like her? What animal do you like?

◆语法
1. –让我们先去看考拉。-- Let’s see the koalas first. (first翻译为“首先”)
　　–你为什么最喜欢考拉？-- Why do you like koalas best? (best翻译为“最”)
　　--因为它们很可爱。-- Because they are very cute.
　　句型：让某人做某事：let sb do sth

2. –你为什么不喜欢老虎？-- Why don’t you like tigers?
　　--因为它们有点吓人。-- Because they are kind of scary.
　　① 在此处，表示“不”，只要在do后加not即可。
　　② 有点…：kind of+形容词 = a little+形容词

3. 你还喜欢别的什么动物？ What other animals do you like? (后有animals, other不加s)
　　你喜欢和别的年轻人工作吗？ Do you like to work with other young people?

4. 他是一个8岁的男孩：He is an 8-year-old boy. (后有名词boy, 用连字符，year用原形)
　　他8岁：He is 8 years old. (后无名词boy, 不用连字符，岁数大于1，year变复数)

5. 请保持安静：Please be quiet. = Please keep quiet. (keep译为“保持”，= be)

6. 他每天通常睡和放松20个小时：He usually sleeps and relaxes 20 hours every day.
　　每天：every day (要分开) 连在一起的everyday翻译为“日常的”，是个形容词。

7. 和某人玩：play with sb (倒翻)

8. 在白天：during the day = in the day 在此处，during = in

9. 在晚上：at night = in the evening 在上学的晚上/白天：on school nights/days

10. 吃草：eat grass 吃叶子：eat leaves (leaf的复数形式) 吃肉：eat meat

11. 相似单词比较：(1) 草：grass (不可数，无复数) (2) 玻璃：glass 复数：glasses 眼镜

12. 汉语：因为…，所以… 英语：because…, so… (不能同时出现在一个句子中)
　　　汉语：虽然…，但是… 英语：though…, but… (只能使用其中一个)

13. (1) first num. 第一； 如：Sunday is the first day of a week.
　　(2) first adv. 首先；首先：at first 如：Let’s see the koalas first.

14. (1) best adv. 最； 如：Why do you like koalas best?
　　(2) best adj. 最好的； 如：Who do you think is the best teacher in your class?

15. (1) very adv. 非常（放在形容词前）； 如：The koalas are very cute.
　　(2) very much 非常（放在动词后）； 如：Thank you very much.

16. (1) kind(s) of n. 种类； 如：There are many kinds of anmals in the zoo.
　　(2) kind of = a little adv. 有点；（无形式变化） 如：He is kind of lazy.
　　(3) kind adj. 和蔼的，友善的； 如：It’s kind of you to help me with my English.

17. 树叶：leaf 复数：leaves 变化规则：去f加ves;

18. 小偷：thief 复数：thieves 变化规则：去f加ves.
6◆短语归纳
1. watch TV 看电视 
2. read a newspaper 看报纸
3. talk on the phone 通过电话交谈 
4. listen to music 听音乐
5. use the computer 使用电脑 
6. make soup做汤
7. wash the dishes 洗餐具 
8. kind of 有点儿

◆用法集萃
1. —What + be+ 主语+ doing? ……正在做什么？ 
—主语+ be + doing sth. ……正在做某事。
2. I’d love / like to do sth. 我愿意做某事。
3. any other + 可数名词单数 其他任何一个……
4. wish to do sth. 希望做某事

◆典句必背
1. —Why are you doing? 你在做什么？
—I’m watching TV. 我在看电视。
2. —What’s she doing? 她在做什么？
—She’s washing her clothes. 她在洗她的衣服。
3. —What are they doing? 他们在做什么？
—They’re listening to a CD. 他们在听一张CD 唱片。
4. —Are you doing your homework? 你在做你的家庭作业吗？
—Yes, I am. / No, I’m not. I’m cleaning my room. 
是的，我在做。/ 不，我没有。我在打扫我的房间。
5. Zhu Hui misses his family and wishes to have his mom’s delicious zongzi.
朱辉思念他的家人并希望吃上他妈妈的可口粽子。

◆话题写作
It’s seven o’clock in the evening. Kate’s family are all at home. Kate is doing her homework. Her father is reading a book. Her mother is watching TV. Her grandfather is listening to the radio and her grandmother is cleaning the room. Her sister, Betty, is playing computer games. They are all enjoying themselves.

◆语法
1. 现在进行时的结构：主语+be+Ving. (be动词和动词+ing两者缺一不可)
　　考题形式：(1) 已知be动词，考后面的动词形式（要加ing）；
　　　　　　　(2) 已知后面的动词+ing, 则前面用be动词。
　　如：(1) The boy is _________ (run) with his father.
　　　　(2) Some children are __________ (lie) on the grass.
　　　　(3) My brother and I are __________ (play) soccer.
　　　　(4) His sister is __________ (read) a book.

2. --你正在做什么？-- What are you doing? --我正在看电视。-- I’m watching TV.

3. 那听起来很棒：That sounds great/good.

4. 谢谢你的信和照片：Thanks for your letter and the photos.
　　① 谢谢某东西：Thanks for sth ② 句型：谢谢做某事：Thanks for doing sth

5. 这是我的一些照片：Here are some of my photos. (“一些照片”是“复数”，be用are)
这是我的一张全家福照片：Here is a photo of my family. (“一张照片”是“单数”，be用is)

6. 句型：忙于做某事：be busy doing sth
　　如：His brother is busy _________ (write) stories in his room.

7. 表示“活动”的“动词词组” 
① 做家庭作业：do one’s homework 
② 打扫房间：clean the room
③ 吃晚饭：eat dinner 
④ 打电话：talk on the phone = make a telephone call
⑤ 看书/看报/看杂志：read books, read newspapers, read magazines
⑥ (学生)上课：have an English class (老师)上课：give an English class
⑦ 举行晚会：have an evening party 
⑧ 和某人说再见：say goodbye to sb

8. 在购物中心：at the mall 
在游泳池：at the (swimming) pool
在学校：at school 
在体育馆里：in the gym

9. 在第一张照片中：in the first photo 
在第二张照片中：in the second photo
在下一张照片中：in the next photo 
在最后一张照片中：in the last photo 

10. 等汽车：wait for the bus 在汽车站等(某人)：wait (for sb) at the bus stop

11. 我的兄弟和我：my brother and I (要把“我”放在后面)

12. (身体)好，健康：well = fine 如：-- How is your mother? -- She is _______.

13. 活动：activity 复数：activities (以辅音字母+y结尾的，去y加ies)
　　　玩具：toy 复数：toys (以元音字母+y结尾的，直接加s)

14. (1) 也：also 用于“肯定句的句中”；
　　(2) 也：too 用于“肯定句的句末，前加逗号”；
　　(3) 也：either 用于“否定句的句末，前加逗号”。

15. (1) show n. 节目；如：TV show, sports show, game show, talk show
　　(2) show v. 给…看；如：Can you show me your family photo? 
　　　　　I’ll show you the way.
　　(3) show v. 表演；如：Can you show us Beijing Opear?
7◆短语归纳
1. not bad 不错 
2. at the park 在公园
3. take a message for … 为……捎个口信 
4. have a good time / have a great time / have fun / enjoy oneself 过得很愉快
5. call sb. back 给某人回电话 
6. no problem 没问题 
7. right now 现在 
8. talk on the phone 通过电话交谈 
9. some of ………当中的一些 
10. by the pool 在游泳池边 
11. drink orange juice 喝橙汁 
12. study hard 努力学习 
13. on a vacation 在度假 
14. in the mountains 在山里 
15. call sb. 给某人打电话 
16. write to sb. 给某人写信
17. right for… 适合…… 
18. 给……拍一张照片

◆用法集萃
1. tell sb. (not) to do sth. 告诉某人（不要）做某事
2. have a great time/have fun + (in) doing sth. 愉快地做某事
3. just right for doing sth. 做某事正合适

◆典句必背
1. How’s the weather? 天气怎么样？
2. It’s cloudy. / It’s sunny. / It’s raining. 天气多云。/ 天气晴朗。/ 天正下雨。
3. How’s it going? 情况怎么样？
4. Great! / Not bad. / Terrible! 好极了！/ 不错。/ 糟糕！
5. Can I take a message for him? 我给他捎个口信好吗？
6. I’m having a great time visiting my aunt in Canada. 
我正在加拿大愉快地拜访我的姨妈
7. My family and I are on a vacation in the mountains. 我和我的家人正在山里度假。
8. It’s hot in your country now, isn’t it? 现在你的国家天气炎热，不是吗？

◆话题写作
The Weather in Beijing
Hello, everyone! I’m from Beijing. Do you want to know the weather in Beijing? Now let me tell you something about the weather here.
In Beijing, spring is very short and warm. In summer, it’s very hot, but it often rains. We often go swimming in the river. In autumn, the weather is very dry and cool. We often go to the farm to work with the farmers to help them. In winter, it’s very cold, and sometimes it’s snowy and windy.
I like swimming, so summer is my favorite season.

◆语法
1. 询问天气
1）How’s the weather? It’s……
北京的天气怎么样？多云。
How’s the weather in Beijing? It’s cloudy. 
2) What’s the weather like？It’s……
What’s the weather like in Beijing? It’s cloudy.

2. cook 1)v. 做饭 2）n. 厨师
cooker n. 厨具

3. How’s it going? 情况如何？
Not bad.不错。
Great.太好了。
Terrible.太糟了。
Pretty good.相当好
Just so so.马马虎虎

4. pretty
1) adj. 俊俏；娇小；漂亮 a pretty girl 漂亮的姑娘
2) adv. 相当；很；颇 近义词是very或quiet

5. hot炎热的------cold寒冷的 warm温暖的-----cool凉爽的

6. Thanks for．．．因．．．．．．而感谢
for是介词，后接n / pron / v-ing. (名词/代词、动名词)
Thanks for the photo of your family. 谢谢你的全家福照片。
Thanks for helping me. 谢谢你帮助我。

7. on vacation 在度假；在假期中

8. take a photo/take photos 拍照

9.some……, others……一些……，（另一些）……
Some are taking photos, others are lying on the beach.一些人在拍照，一些人正躺在沙滩上。

10.other, the other, others, the others, another
1)other可作形容词或代词。adj. “别的，其他的”
Do you have any other questions? 你还有其他的问题吗？ 
Ask some other people. 问问别人吧。 
2) the other 代词，（两者中的）“另一个” （other为代词）
one……the other……一个……，另一个……
He has two sons, one is a doctor, the other is a worker. 
　　　他有两个儿子，一个是医生，另一个是工人。
3) others代词，是other的复数形式，泛指“其余的（人或物）” （指其余的部分）
some……others……一些……，（另）一些……
There are lots of students on the playground, some are playing basketball, others are dancing.
操场上有许多学生，有些人在打篮球，有些人在跳舞。
Give me some others, please. 给我一些别的东西吧。
4) the others代词，特指某一范围内的“其他的（人或物）”（指其余的全部）
There are lots of students on the playground, some are playing basketball, the others are dancing.
操场上有许多学生，有些人在打篮球，其余的都在跳舞。
5) another = an+other，可作形容词或代词，泛指同类事物中的三者或三者以上的“另一个”，只能代替或修饰单数可数名词。
I don’t like this one. Please show me another. 我不喜欢这个，请给我看看另一个。


11. lie v.平卧；躺 （想在分词lying）

12. Look at this group of people playing beach volleyball.看看这群正在玩沙滩排球的人。
playing beach volleyball作people的定语。

13. surprised adj. “感到惊讶的”
1) be surprised at + n./ pron./v-ing 对……感到惊讶
We’re surprised at the news. 听到这个消息，我们非常诧异。
2) be surprised to do sth.
We’re surprised to hear the news. 听到这个消息，我们非常诧异。
3) be surprised + that从句
I’m surprised that he didn’t pass the exam我对他没通过考试感到很惊讶。

14. in this heat 在这么热的天气里 hot（adj.炎热的）----heat（n.热度）

15. scarf 围巾（pl. scarfs或scarves）

16. have a good time = enjoy oneself（oneself要随主语的变化而变化） = have fun
They are having a good time. = They are enjoying themselves.= They are having fun.
他们正玩得高兴。

17. everyone / every one
1) everyone“人人，每人”，仅指人，相当于everybody，一般不能与of连用，作主语为单数。
Everyone is here.大家（人人）都来了。
2) every one“每一个（人或物）”，指人或物，常与of连用，谓语用单数。
Every one of the book is interesting. 每本书都很有趣。
8◆短语归纳
1. post office 邮局 
2. police station 警察局
3. pay phone 付费电话 
4. Bridge Street 桥街
5. Center street 中心大街 
6. Long Street 长街
7. near here 附近 
8. across from 在……对面
9. next to 挨着，靠近 
10. between… and… 在……和……之间
11. in front of 在……前面 
12. excuse me 劳驾
13. far from 离……远 
14. go along… 沿着……走
15. turn right / left 向右 / 左转 
16. on the(或one’s) right / left 在（某人的）右边 / 左边 
17. in my neighborhood 在我的街区 
18. look like 看起来像 
19. in life 一生中 
20. be free 免费（有空）

◆用法集萃
1. Turn right / left at the +序数词+ crossing. 在第几个路口向右 / 左转 
2. spend + 时间 / 金钱 + on sth. 花费时间/金钱在
spend + 时间 / +金钱 (in) doing sth. 花费时间/金钱做某事
3. watch sb. doing 观看某人正在做某事
4. enjoy doing sth. 喜欢做某事

◆典句必背
1. —Is there a hospital near here? 这附近有医院吗？
—Yes, there is. It’s on Bridge Street. 是的，有。它在桥街上。
2. —Oh… where’s Center Street? 噢……中心大街在哪里？
—It’s not too far from here. 它离这儿不太远。
3. Go along long Street and it’s on the right. 沿着长街走，它在右边。
4. Turn right at the first crossing. 在第一个十字路口向右转。

◆话题写作
Where is the hotel? Let me tell you how to get there. Go down this road and then turn left. Go through First Street and second Street. When you come to Third Street, turn right and walk on. You can see a bridge over a river. Go across the bridge. Then you can see the hotel. It’s on your right, across from the post office, You will find it.

◆用法集萃
1.turn right/left at the +序数词+crossing. 在第几个十字路口向右/左转。

2.spend+时间/金钱+（in）doing sth. 花费时间/金钱在……

3.watch sb. doing观看某人正在做某事

4.enjoy doing sth.喜欢做某事
9◆短语归纳
1. short hair 短发 
2. long hair 长发
3. curly hair 卷发 
4. straight hair 直发
5. (be) of medium height 中等个子 
6. (be) of medium build 中等身材
7. go to the movies 去看电影 
8. a little 有点儿
9. look like 看起来像 
10. a big nose 大鼻子
11. a small mouth 小嘴巴 
12. a round face 圆脸
13. black hair 黑发 
14. big eyes 大眼睛
15. a long face 长脸 
16. the same way 同样的方式
17. in the end 最后 
18. blonde hair 金黄色的头发

◆用法集萃
1. What does / do + 主语 + look like? ……长得什么样？
2. sb. + be + of + medium build / height 某人中等身材/个子
3. sb. + has +… hair 某人留着……发
4. sb. wears + clothes/glasses 某人穿着/戴着……

◆典句必背
1. —What does he look like? 他长什么样
—He’s really tall. 他真的很高。
2. —Do they have straight or curly hair? 他们留直发还是卷发？
—They have curly hair. 他们留卷发。
3. —Is he tall or short? 他高还是矮？
—He isn’t tall or short. He’s of medium height. 他不高不矮，他中等个子。
4. The man with a pair of glasses is my English teacher. 那个戴眼镜的男人是我的英语老师。

◆话题写作
Lost
Kate, a twelve –year-old girl, is lost in the street.
She is of medium height with short hair. She has a round face and small eyes. She wears a pair of glasses. She wears a white shirt, a pair of blue jeans and a pair of black sports shoes.
If anyone knows her, please call Mr. Green at 26458132. Thanks a lot. 

◆ 用法
1.询问及描述某人的外貌特征
问：What do/does + 主语 + look like? “……看上去什么样？”/ “……长什么样？”
答：主语 + be + 描述人物外貌特征的形容词。
主语 + have/has + 名词（名词前可有多个形容词修饰）。
　1）What does your friend look like? 你朋友长什么样？
　　　　He is short and thin. He has short, black hair.他又矮又瘦，留着短直发。
　2）What do they look like? 他们长什么样？
　　　 They’re of medium height. 他们中等身高。
　3）What does he look like? 他长什么样？
　　　 He is of medium build, and he has a big nose.他中等身材，大鼻子。

2. look like “看起来像……”
He looks like his father. 他看起来像他的父亲。

3. hair
1) 指“头发，毛发”的总称，是不可数名词
He has long hair. 他留着长发。
2）指具体数量的“头发”，是可数名词
There are two hairs on the bed. 床上有两根头发。

4. high（adj. 高的）----- height（n.高度）

5. popular
1) 通俗的 in popular language 用通俗的话
2）流行的 a popular song 流行歌曲
3）受欢迎的 a popular writer 受人欢迎的作家

6. a little bit, a little, a bit
1) 修饰形容词或副词时，三者可通用，但a little bit比后两者所表示的程度稍弱一点。
Today is a little bit / a little / a bit cold. 今天有点冷。
2）修饰不可数名词时，a little直接跟不可数名词，a bit需加of再跟不可数名词。
There is a little / a bit of water in the glass. 杯子里有点水。
3）a little 和a bit在否定句中意思恰恰相反。not a little相当于very “很，非常”，not a bit相当于not….at all“一点也不”。 
① He is not a little hungry. = He is very hungry. 他很饿。
② He is not a bit hungry. = He isn’t hungry at all. 他一点也不饿。

7. tell a joke / jokes说笑话 tell a story / stories讲故事 tell a lie / lies撒谎

8. She never stops talking. 她总是讲个不停。
stop to do sth. “停下来去做某事”。指停止原来做的事情，去做另一件事情。
stop doing sth. “停止做某事”，指停止正在做的事情，即不做某事了。
1）He stops to do his homework. 他停下来开始做家庭作业。
He stops doing his homework. 他停止做家庭作业。
2）Class begins, please stop talking. 上课了，请不要说话。
3）We are all tired, stop to have a rest. 我们都累了，停下来休息一会儿吧。

9. like 喜欢
1）like sb. / sth.喜欢某人/某物
2) like to do sth.喜欢/想要做某事（表一次性或特指的某一具体的动作）
3) like doing sth喜欢做某事（表习惯性的动作或爱好）
①我喜欢每天打篮球。I like playing basketball every day. 
　②今天很冷，我喜欢呆在家里。Today is cold. I like to stay at home.

10. people, person, man
1) people:
　　①泛指“人，人们”，谓语动词用复数形式。
　　　There are many people there. 那儿有许多人。
　　　②the people 常用来指“人民”。
　　　 We study hard for the people. 我们为人民而努力学习。
　　　③指“民族”是可数名词。
　　　 There’re 56 peoples in China. 中国有56个民族。
2) person“人；人物”，无性别之分，可指男人，也可指女人。常用于指数目不大，而且数目比较精确的“人”。
Everyone likes the honest person. 每个人都喜欢诚实的人。
There are only three persons in the room. 房间里只有三个人。
3）man: 指“男人”（复数形式为men），也可指“人类”。
He is a man of few words. 他是个少言寡语的人。
Man has languages. 人类有语言。

11. glass
1) “眼镜”，常用复数glasses. a pair of glasses一副眼镜
2）“玻璃”，不可数名词。
3）“玻璃杯”，可数名词。
These glasses are made of glass. 这些玻璃杯是玻璃制成的。

12.beard （络腮）胡须，可数名词。
The old man has a beard. 这位老人满脸胡须。

13. remember/forget doing sth. 记得/忘记做过某事 （事情已做）
remember/forget to do sth. 记得/忘记要去做某事 （事情还没做）
1）Don’t forget to turn off the lights when you leave the classroom.
当你离开教室时，别忘了关灯。
There’re not any apples to have. Please remember to buy some.
没苹果吃了，请记得买一些。
2）I remember telling you about it. 我记得告诉过你这件事。
He forgot having this kind of fruit. 他忘记他吃过这种水果了。

14.Do you remember Jonny Dean, the pop singer with funny glasses and long curly hair?
你还记得约翰尼．迪安——那个戴着滑稽眼镜，留着长卷发的流行歌手吗？
1）the pop singer with funny glasses and long curly hair是Jonny Dean的同位语，指的就是Jonny Dean。
2）with funny glasses and long curly hair是介词短语，修饰the pop singer
介词短语作定语，放在它所修饰的名词之后。
The girl in red is my sister. 穿红衣服的女孩是我的妹妹。
Do you know the boy under the tree? 你认识树下的那个男孩吗？

15. look
1) 看 
Look! Tom is crying. 看，汤姆在哭。
Look at the blackboard. 看黑板。
2）看起来
He looks like his father. 他看起来像他的父亲。
3）外表，外貌
He has a new look. 他有了一个新形象。

16. no more, not….any more., no longer, not….any longer
1) no more = not….any more表示数量和程度的“不再（增加）”，常修饰终止性动词。
We won’t go there any more.我们不再去那里了。
The baby watched and listened, and she cried no more.那个婴儿看着、听着，不再哭了。
2) no lo0nger = not….any longer表示时间上“不再（延长）”，常修饰延续性动词。
He no longer lives here. 他不再住在这儿了。
You can’t stay here any longer.你不能再留在这儿了。

17. I don’t think he’s so great. 
I think + that从句，如果表示否定含义，常把否定词放在主句上，一般不在从句上进行否定，而译成汉语时，则否定在从句上。这种现象叫否定前移。
I don’t think you are right. 我认为你不对。

18. nobody“没有人，没人”，作主语时，谓语动词用单数形式。
Nobody knows me. 没有人认识我。
There’s nobody in the room.房里没有人。

19. 两个或两个以上形容词同时作定语的排列顺序：
限定词（冠词、指示代词、形容词性物主代词、名词所有格、数词等）+ 描述性形容词+大小、形状、长短、高低 + 新旧、长幼 + 颜色 + 产地、材料、用途 + 被修饰名词
a small old yellow wooden table 一张黄色的旧木头小桌子
an expensive new Japanese sports car 一辆昂贵的新型的日本跑车
10◆短语归纳
1. would like 想要 
2. take one’s order 点菜
3. beef soup 牛肉汤 
4. one bowl of… 一碗……
5. what size 什么尺寸 
6. mapo tofu with rice带米饭的麻婆豆腐
7. what kind 什么种类 
8. small / medium / large bowl 小/ 中/大碗
9. green tea 绿茶 
10. orange juice 橘汁
11. around the world 世界各地 
12. birthday cake 生日蛋糕
13. the number of… 的数量 
14. make a wish 许个愿望
15. blow out 吹灭 
16. in one go 一口气
17. come true 实现 
18. cut up 切碎

◆用法集萃
1. would like + sth. 想要某物 
2. would like + to do sth. 想要做某事
3. Why don’t you + do sth.? 何不做某事？ 
4. the number of + 名词复数 ……的数量，a number of+名词复数 许多……

◆典句必背
1. What kind of noodles would you like? 你想要哪种面条？
2. I’d like beef noodles, please. 我想要牛肉面。
3. What size would you like? 你想要多大的？
4. I’d like a medium bowl, please. 我想要一个中碗的。
5. Would you like a large bowl? 你想要一个大碗的吗？
6. Yes, please. 好吧。
7. If he or she blows out all the candles in one go, the wish will come true.
假如他或她一口气吹灭所有的蜡烛，愿望将实现。

◆话题写作
My Favorite Food
I’m a middle school student. I like to eat healthy food. I have milk, eggs and bread for breakfast. For lunch I would like rice, fish and vegetables. I like chicken, juice, rice and hamburgers for supper. Of all the food, my favorite food is chicken and apple juice.

◆用法
1. would like“想要”，相当于want, 用法亦同want，但比want委婉。
　1）want/would like sth. 想要某物 I’d like some noodles
2）want/would like to do sth. 想要做某事 I’d like to play the piano 我想要弹钢琴。
3）want/would like sb. to do sth. 想要某人做某事 I would like him to help me. 我想要他帮助我。
4）What would sb. like? 某人想要什么？
5）What would sb. like to do? 某人想要做什么？
6）would you like sth. 你想要某物吗？（委婉地询问对方的要求时的用语）
肯定回答：Yes, please.
否定回答：No, thanks.
7) Would you like to do sth？你想要/愿意做某事吗？（向对方有礼貌地提出建议或邀请）
　　　肯定回答：Yes, I’d like/love to. 是的，我愿意。
　　　否定回答：Sorry, + 原因。
2. noodle “面条”，可数名词，复数noodles。

3.What kind of….would you like?你想要那种……？
What kind of noodles would you like?你想要那种面条？
Beef and tomato noodles, please.
kind 
1)种类 ①a kind of．．．．一种．．．．．．②many kinds of．．．．多种．．．．．③all kinds of．．．．各种各样的．．．．．．
2)仁慈的，和蔼的，好意的，友爱的 
①He is a kind man. 
　　 ②He is kind to everyone.他与人为善。
　　③It’s very kind of you to help me.
3)kind of + adj/adv 稍微/有几分……(相当于a little) He is kind of /a little shy.

4. special
1) n. 特色/价商品，可数名词。
2）adj. 特殊的，特别的，专门的
　　　Today is a special day. 今天是个特别的日子。

5. What size…..“多大……”
①What size bowl of noodles would he like? 他想要多大碗的面条？
　　　He’d like a small/medium/large bowl of noodles.他想要一个小/中/大碗的面条。
②What size shoes do you wear? 你穿多大号的鞋？
　　　I wear size 40. 我穿42码的鞋。

6. fish 鱼；鱼肉
1）指多少条“鱼”，为可数名词。复数：fish或fishes，通常用复数fish.
2) 指多少种“鱼”， 为可数名词。复数： fishes
3）指“鱼肉”，为不可数名词。
There’re hundreds of fish in the pool. 在这水池里有几百条鱼。
There’re all kinds of fishes in the lake. 这个湖里有各种各样的鱼。
Help yourself to some fish. 请随便吃些鱼。

7. 英语中表示食物的一些词的特殊用法
1）beef, fish, chicken, pork, meat, mutton等表示肉类的食物，是不可数名词。
2）vegetable蔬菜，可数名词
3）fruit, salad, ice cream, food等指总称时是不可数名词，指种类时是可数名词。
4）cabbage, onion, fish, chicken指食物时是不可数名词，指植物和活着的“鱼”“鸡”时是可数名词。
11◆短语归纳
1. go for a walk 去散步 
2. milk a cow 挤牛奶
3. ride a horse 骑马 
4. feed chickens 喂小鸡
5. talk with 与……谈话 
6. take photos 拍照
7. quite a lot 相当多 
8. show… around 带领……参观
9. learn about 了解 
10. from… to… 从……到……
11. grow strawberries 种植草莓 
12. pick strawberries 采草莓
13. in the countryside 在乡下 
14. go fishing 去钓鱼
15. at night 在夜晚 
16. a lot of 许多；大量
17. come out 出来 
18. go on a school trip 去学校郊游
19. along the way 沿线 
20. after that 之后
21. buy sth. for sb. 为某人买某物 
22. all in all 总的来说
23. take a / the train 乘火车 
24. be interested in 对……感兴趣
25. not… at all 根本不……

◆用法集萃
1. How + be…? + like? ……怎么样？
2. too many + 可数名词复数 太多的…… 
3. teach sb. how to do sth. 教某人怎样做某事
4. quite + a / an + 形容词+可数名词单数 = a + very + 形容词
+可数名词单数一个相当 / 很……

◆典句必背
1. —How was your school trip? 你的学校郊游怎么样？
—It was great! 好极了！
2. —Did you go to the zoo? 你去动物园了吗？
—No, I didn’t. I went to a farm. 不，没有。我去农场了。
3. —Did you see any cows? 你看见一些牛奶了吗？
—Yes, I did. I saw quite a lot. 是的，我看见了，我看见相当多（的牛奶）
4. —Were the strawberries good? 这些草莓是好的吗？
— Yes, they were. 是的，它们是。 / No, they weren’t. 不，它们不是。
5. Everything was about robots and I’m not interested in that.
一切都是关于机器人的，我对那方面不感兴趣。

◆话题写作
I had a busy weekend. On Saturday morning, I did my homework, and then I played computer games. In the afternoon, I visited my grandmother. We talked for a long time.
On Sunday morning, I cleaned my room and did some reading. Then I cooked for m parents. In the afternoon, I watched a football match on TV and listened to music. I had a good time.


◆重点语法：一般过去时态
结构：主语 + 谓语动词的过去式 + 宾语
谈论过去发生的事情用一般过去时态
do/does 的一般过去时态形式：did
例句：Last week I visited my aunt's house.(上个星期我去我姑姑家玩了。)She lives in California.(她住在加利福尼亚州。)The weather was beautiful.(那儿的天气很好。)I went swimming.(我去游泳了。)
12
◆短语归纳
1. do my homework 做我的家庭作业 
2. go to cinema 去看电影
3. go boating / camping 去划船 / 去野营 
4. play badminton 打羽毛球
5. on Saturday morning 在星期六早上 
6. work as 以……身份而工作
7. have a good weekend 周末过得愉快 
8. kind of 有点儿
9. stay up late 熬夜 
10. run away 跑开
11. shout at 对……大声叫嚷 
12. fly a kite 放风筝
13. high school 中学 
14. put up 搭起，举起
15. in the countryside 在乡下 
16. get a surprise 吃惊
17. make a fire 生火 
18. each other 互相 
19. so… that… 如此……以至于…… 
20. go to sleep 入睡
21. the next morning 第二天早上 
22. look out of…向……外看
23. shout to 冲……呼喊 
24. up and down 上上下下
25. wake…up 把……弄醒 
26. move into… 移进……
27. a swimming pool 一个游泳池

◆用法集萃
1. go + doing 去做某事 
2. play + 球类 玩……球
3. 时间段+ ago ……前
4. keep + sb. / sth. + 形容词 / 副词 / 介词短语 使……保持……
5. so + 形容词 / 副词+ that 句子 如此……以至于……
6. see sb. doing sth. 看见某人正在做某事
7. let sb. do sth. 让某人做某事 
8. start to do / doing sth. 开始做某事

◆典句必背
1. —What did you do last weekend? 上个周末你做什么了？
—I did my homework. / We went boating. 我做了我的家庭作业。/我们去划船了。
2. —Who visited her grandma? 谁看望了她的奶奶？— Becky did. 贝姬看望了。
3. My sister finished high school two weeks ago. 我的姐姐两周前中学毕业了。
4. But I was so tired that I went to sleep early. 但是我是如此疲倦，以至于我很早就睡着了。

◆话题写作
My friend Li Hua came to visit me on May Day. During the following days I showed him around the city. We went to the Guangzhou Museum on the morning of May 2. We learned much about the history of Guangzhou. In the afternoon., we climbed the Baiyun Hills. It was really great fun! In the evening. I took Li Hua to the night zoo. It was interesting to see animals at night. The next day, we went to the bookshops to buy books. Though we were very tired, we enjoyed ourselves very much.

◆一般过去时(past tenses)：定义：表示过去某时间的动作或状态。
结构:“主语+动词的过去式”
1.规则动词的过去式：
1)一般情况在动词原形后加-ed
2)以不发音e结尾的加-d
3)以辅音加y结尾的，去y变i加-ed
4)以重读闭音节结尾，末尾只有一个辅音字母，先双写该辅音字母，再加-ed
watch---watched
practice---practiced
study---studied
stop---stopped

2.不规则动词的过去式：
am,is-was
are-were
have,has-had
do-did
write-wrote
go-went. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[免费看电影]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/481159]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Sat, 26 May 2018 01:05:24 -0700]]></pubDate>
        <description><![CDATA[&lt;html&gt;
 &lt;head&gt;
  &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html;charset=utf-8&quot;&gt; 
  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt; 
  &lt;style&gt;body{TEXT-ALIGN: center;}#center{line-height:80px;}&lt;/style&gt; 
  &lt;style&gt;body {background:url(/bj.jpg);background-size:100%;background-repeat: no-repeat;background-attachment:fixed}&lt;/style&gt; 
 &lt;/head&gt;
 &lt;body&gt;
  &lt;div id=&quot;center&quot;&gt;
   &lt;p&gt; &lt;title&gt;(づ ●─● )づ&amp;nbsp;&lt;/title&gt; &lt;/p&gt;
   &lt;h3 class=&quot;am-panel-title am-text-lg&quot;&gt;&lt;span style=&quot;color:#FF0000&quot;&gt;全网付费视频电影免费看&lt;/span&gt;&lt;/h3&gt; 
   &lt;script type=&quot;text/javascript&quot;&gt;
alert(&quot;公告：Jn传媒版权所有！&quot;)
&lt;/script&gt; 
   &lt;link href=&quot;/css/1.css&quot; rel=&quot;stylesheet&quot;&gt; 
   &lt;div id=&quot;main&quot;&gt; 
    &lt;div class=&quot;content&quot;&gt; 
     &lt;div class=&quot;pure-form&quot;&gt; 
      &lt;select id=&quot;sel&quot;&gt;&lt;option value=&quot;http://m.mmyyds.com/video/name/&quot;&gt;搜索接口1&lt;/option&gt;&lt;option value=&quot;http://v.ddhot.cn/search/&quot;&gt;搜索接口2&lt;/option&gt;&lt;option value=&quot;http://v.gzlt7.cn/search/&quot;&gt;搜索接口3&lt;/option&gt;&lt;option value=&quot;http://www.ty668.com/wap/seacher.php?wd=&quot;&gt;搜索接口4&lt;/option&gt;&lt;option value=&quot;http://www.08ge.com/search/?sousuo=&quot;&gt;搜索接口5&lt;/option&gt;&lt;option value=&quot;http://www.15yc.com/search?wd=&quot;&gt;搜索接口6&lt;/option&gt;&lt;option value=&quot;https://m.kankanwu.com/vod-search-wd-&quot;&gt;搜索接口7&lt;/option&gt;&lt;option value=&quot;&quot;&gt;待Jn更新&lt;/option&gt;&lt;option value=&quot;&quot;&gt;待Jn更新&lt;/option&gt;&lt;/select&gt; 
      &lt;p&gt;&lt;input type=&quot;text &quot; id=&quot;url&quot; placeholder=&quot;请输入关键字！&quot; style=&quot;border-radius:2px&quot;&gt;&lt;/p&gt; 
      &lt;p&gt;&lt;select id=&quot;open&quot;&gt; &lt;option value=&quot;0&quot;&gt;新窗口打开&lt;/option&gt; &lt;option value=&quot;1&quot;&gt;本窗口打开&lt;/option&gt; &lt;/select&gt; &lt;/p&gt;
      &lt;p&gt;&lt;button class=&quot;pure-button pure-button-primary&quot; onclick=&quot;play();&quot;&gt;点我搜索&lt;/button&gt;&lt;/p&gt; 
     &lt;/div&gt; 
    &lt;/div&gt; 
    &lt;script&gt;
var data = [

        {name:&quot;搜索接口1&quot;,url:&quot;http://m.mmyyds.com/video/name/&quot;},

        {name:&quot;搜索接口2&quot;,url:&quot;http://v.ddhot.cn/search/&quot;},

       	{name:&quot;搜索接口3&quot;,url:&quot;http://v.gzlt7.cn/search/&quot;},

       	{name:&quot;搜索接口4&quot;,url:&quot;http://www.ty668.com/wap/seacher.php?wd=&quot;},

       	{name:&quot;搜索接口5&quot;,url:&quot;http://www.08ge.com/search/?sousuo=&quot;},

       	{name:&quot;搜索接口6&quot;,url:&quot;http://www.15yc.com/search?wd=&quot;},

       	{name:&quot;搜索接口7&quot;,url:&quot;https://m.kankanwu.com/vod-search-wd-&quot;},
       	
       	{name:&quot;待更新&quot;,url:&quot;&quot;},
       	
       	{name:&quot;待更新&quot;,url:&quot;&quot;},
       	



		];
	for (var i in  data)
	{
		var opt = document.createElement (&quot;option&quot;);
		opt.value = data[i].url;
		opt.innerText = data[i].name;
		document.getElementById('sel').appendChild (opt);
	}
	
	function play(){
		var url = document.getElementById(&quot;url&quot;).value;
		if(url.indexOf('') == -1)
		{	
			alert('输入内容为空！');return;
		}
		var api = document.getElementById(&quot;sel&quot;).value;
		var open = document.getElementById(&quot;open&quot;).value;
		url = api + url;
		switch(open)
		{
			case '0':
				window.open(url);
				console.log(0);
				break;
			case '1':
				window.location = url;
				console.log(1);
				break;
		}
	}
	&lt;/script&gt; 
     
    &lt;style type=&quot;text/css&quot;&gt;a{ text-decoration:none;}a:hover{ text-decoration:underline;}a:link {color:#00FFCC}&lt;/style&gt; 
    
    &lt;p&gt;&lt;/p&gt; 
   &lt;/div&gt; 
  &lt;/div&gt;
 &lt;/body&gt;
&lt;/html&gt;&lt;html&gt;
 &lt;head&gt; 
  &lt;title&gt;留言板.gif&lt;/title&gt; 
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt; 
  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,initial-scale=1&quot;&gt; 
  &lt;meta name=&quot;format-detection&quot; content=&quot;telephone=no&quot;&gt; 
  &lt;link href=&quot;https://wodemo.net/statics/build/css/cb4a99cbe25c7fc4e15fa44ed3c12d97.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt; 
  &lt;link href=&quot;https://520zx.wodemo.net/skin/520zx/1446922661/site.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;
  &lt;link rel=&quot;alternate&quot; href=&quot;https://520zx.wodemo.net/feed&quot; type=&quot;application/rss+xml&quot; title=&quot;RSS&quot;&gt;
 &lt;/head&gt; 
 &lt;body&gt; 
  &lt;div id=&quot;whole_body&quot; class=&quot;wo-main-body wo-mode-visitor&quot;&gt; 
   &lt;div class=&quot;wo-file-main&quot;&gt;
    
   &lt;!--wo-file-main--&gt;


. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[词语接龙]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/481158]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Sat, 26 May 2018 01:03:49 -0700]]></pubDate>
        <description><![CDATA[
 
   
   
  body{TEXT-ALIGN: center;}#center{line-height:100px;} 
  body {background:url(/bj.jpg);background-size:100%;background-repeat: no-repeat;background-attachment:fixed} 
 
 
  
    (づ ●─● )づ&nbsp;小站 
   成语接龙 
    
     
    
    
   a{ text-decoration:none;}a:hover{ text-decoration:underline;}a:link {color:#00FFCC} 
   
    
   
 


  
  留言板.gif 
   
   
   
   
  
  
  
  
   
   
    
    

   


. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[超级搜索]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/481157]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Sat, 26 May 2018 01:01:52 -0700]]></pubDate>
        <description><![CDATA[&lt;html&gt;
 &lt;head&gt;
  &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html;charset=utf-8&quot;&gt; 
  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt; 
  &lt;style&gt;body{TEXT-ALIGN: center;}#center{line-height:100px;}&lt;/style&gt; 
  &lt;style&gt;body {background:url(/bj.jpg);background-size:100%;background-repeat: no-repeat;background-attachment:fixed}&lt;/style&gt; 
 &lt;/head&gt;
 &lt;body&gt;
  &lt;div id=&quot;center&quot;&gt;
   &lt;p&gt; &lt;title&gt;(づ ●─● )づ&amp;nbsp;无名小站&lt;/title&gt; &lt;/p&gt;
   &lt;h3 class=&quot;am-panel-title am-text-lg&quot;&gt;&lt;span style=&quot;color:#9900FF&quot;&gt;搜索引擎集合&lt;/span&gt;&lt;/h3&gt; 
   &lt;link href=&quot;/css/1.css&quot; rel=&quot;stylesheet&quot;&gt; 
   &lt;div id=&quot;main&quot;&gt; 
    &lt;div class=&quot;content&quot;&gt; 
     &lt;div class=&quot;pure-form&quot;&gt; 
      &lt;select id=&quot;sel&quot;&gt;&lt;option value=&quot;https://m.baidu.com/s?word=&quot;&gt;百度搜索&lt;/option&gt;&lt;option value=&quot;https://m.so.com/s?q=&quot;&gt;360搜索&lt;/option&gt;&lt;option value=&quot;https://m.sogou.com/web/searchList.jsp?uID=lbGXaEGKng7pcDzi&amp;amp;v=5&amp;amp;from=index&amp;amp;w=1274&amp;amp;t=1519818391162&amp;amp;s_t=1519818398566&amp;amp;s_from=index&amp;amp;keyword=&quot;&gt;搜狗搜索&lt;/option&gt;&lt;option value=&quot;http://m.sm.cn/s?q=&quot;&gt;神马搜索&lt;/option&gt;&lt;option value=&quot;https://search.yahoo.com/search;_ylt=AwrSbDyzmpZatqsAL8Ny.9w4;_ylc=X0kDRl9fdXpURXdMaklnRmg5ZFdwYWFQZ1FoTVRFM0xnQUFBQUNLRWNUZQRfUwM5NTQwMDYzODYEX3IDMgRhY3RuA2tleWJyZARjc3JjcHZpZANGX191elRFd0xqSWdGaDlkV3BhYVBnUWhNVEUzTGdBQUFBQ0tFY1RlBGZyAwRmcjIDc2ItdG9wBGdwcmlkA243bnB2eUJRVHZ1TDJ2bW94VUR0WUEEbl9yc2x0AzAEbl9zdWdnAzEEb3JpZ2luA3NlYXJjaC55YWhvby5jb20EcG9zAzAEcHFzdHIDBHBxc3RybAMwBHFzdHJsAzEEcXVlcnkDMQR0X3N0bXADMTUxOTgxOTQ1NwR2dGVzdGlkA0I1Mjk1?ei=UTF-8&amp;amp;pvid=F__uzTEwLjIgFh9dWpaaPgQhMTE3LgAAAACKEcTe&amp;amp;gprid=&amp;amp;fr=sfp&amp;amp;p=&quot;&gt;雅虎搜索&lt;/option&gt;&lt;option value=&quot;http://cn.bing.com/search?q=&quot;&gt;微软搜索&lt;/option&gt;&lt;option value=&quot;https://www.google.fr/search?dcr=0&amp;amp;ei=ZpmWWpeaGcn7UqaJuqgM&amp;amp;q=&quot;&gt;谷歌搜索(需翻墙)&lt;/option&gt;&lt;option value=&quot;https://m.weibo.cn/p/100103type%3D1%26q%3D&quot;&gt;微博搜索&lt;/option&gt;&lt;option value=&quot;https://s.m.taobao.com/h5?q=&quot;&gt;淘宝搜索&lt;/option&gt;&lt;option value=&quot;http://m.panduoduo.net/s/name/&quot;&gt;百度云资源&lt;/option&gt;&lt;option value=&quot;https://www.btmaye.com/bt/&quot;&gt;磁力搜索1&lt;/option&gt;&lt;option value=&quot;https://www.btmule.org/q/&quot;&gt;磁力搜索2&lt;/option&gt;&lt;option value=&quot;http://www.diaosisou.org/list/&quot;&gt;磁力搜索3&lt;/option&gt;&lt;/select&gt; 
      &lt;p&gt;&lt;input type=&quot;text &quot; id=&quot;url&quot; placeholder=&quot;请输入关键字！&quot; style=&quot;border-radius:2px&quot;&gt;&lt;/p&gt; 
      &lt;p&gt;&lt;select id=&quot;open&quot;&gt; &lt;option value=&quot;0&quot;&gt;新窗口打开&lt;/option&gt; &lt;option value=&quot;1&quot;&gt;本窗口打开&lt;/option&gt; &lt;/select&gt; &lt;/p&gt;
      &lt;p&gt;&lt;button class=&quot;pure-button pure-button-primary&quot; onclick=&quot;play();&quot;&gt;点我搜索&lt;/button&gt;&lt;/p&gt; 
     &lt;/div&gt; 
    &lt;/div&gt; 
    &lt;script&gt;
var data = [

       	{name:&quot;百度搜索&quot;,url:&quot;https://m.baidu.com/s?word=&quot;},
       	
       	{name:&quot;360搜索&quot;,url:&quot;https://m.so.com/s?q=&quot;},

       	{name:&quot;搜狗搜索&quot;,url:&quot;https://m.sogou.com/web/searchList.jsp?uID=lbGXaEGKng7pcDzi&amp;v=5&amp;from=index&amp;w=1274&amp;t=1519818391162&amp;s_t=1519818398566&amp;s_from=index&amp;keyword=&quot;},
       	
       	{name:&quot;神马搜索&quot;,url:&quot;http://m.sm.cn/s?q=&quot;},
       	
       	{name:&quot;雅虎搜索&quot;,url:&quot;https://search.yahoo.com/search;_ylt=AwrSbDyzmpZatqsAL8Ny.9w4;_ylc=X0kDRl9fdXpURXdMaklnRmg5ZFdwYWFQZ1FoTVRFM0xnQUFBQUNLRWNUZQRfUwM5NTQwMDYzODYEX3IDMgRhY3RuA2tleWJyZARjc3JjcHZpZANGX191elRFd0xqSWdGaDlkV3BhYVBnUWhNVEUzTGdBQUFBQ0tFY1RlBGZyAwRmcjIDc2ItdG9wBGdwcmlkA243bnB2eUJRVHZ1TDJ2bW94VUR0WUEEbl9yc2x0AzAEbl9zdWdnAzEEb3JpZ2luA3NlYXJjaC55YWhvby5jb20EcG9zAzAEcHFzdHIDBHBxc3RybAMwBHFzdHJsAzEEcXVlcnkDMQR0X3N0bXADMTUxOTgxOTQ1NwR2dGVzdGlkA0I1Mjk1?ei=UTF-8&amp;pvid=F__uzTEwLjIgFh9dWpaaPgQhMTE3LgAAAACKEcTe&amp;gprid=&amp;fr=sfp&amp;p=&quot;},
       	
       	{name:&quot;微软搜索&quot;,url:&quot;http://cn.bing.com/search?q=&quot;},
       	
       	{name:&quot;谷歌搜索(需翻墙)&quot;,url:&quot;https://www.google.fr/search?dcr=0&amp;ei=ZpmWWpeaGcn7UqaJuqgM&amp;q=&quot;},
       	
       	{name:&quot;微博搜索&quot;,url:&quot;https://m.weibo.cn/p/100103type%3D1%26q%3D&quot;},

        {name:&quot;淘宝搜索&quot;,url:&quot;https://s.m.taobao.com/h5?q=&quot;},
                
        {name:&quot;百度云资源&quot;,url:&quot;http://m.panduoduo.net/s/name/&quot;},

        {name:&quot;磁力搜索1&quot;,url:&quot;https://www.btmaye.com/bt/&quot;},

        {name:&quot;磁力搜索2&quot;,url:&quot;https://www.btmule.org/q/&quot;},
        
       	{name:&quot;磁力搜索3&quot;,url:&quot;http://www.diaosisou.org/list/&quot;},


		];
	for (var i in  data)
	{
		var opt = document.createElement (&quot;option&quot;);
		opt.value = data[i].url;
		opt.innerText = data[i].name;
		document.getElementById('sel').appendChild (opt);
	}
	
	function play(){
		var url = document.getElementById(&quot;url&quot;).value;
		if(url.indexOf('') == -1)
		{	
			alert('输入内容为空！');return;
		}
		var api = document.getElementById(&quot;sel&quot;).value;
		var open = document.getElementById(&quot;open&quot;).value;
		url = api + url;
		switch(open)
		{
			case '0':
				window.open(url);
				console.log(0);
				break;
			case '1':
				window.location = url;
				console.log(1);
				break;
		}
	}
	&lt;/script&gt; 
    &lt;style type=&quot;text/css&quot;&gt;a{ text-decoration:none;}a:hover{ text-decoration:underline;}a:link {color:#00FFCC}&lt;/style&gt; 
    &lt;p&gt;&lt;a href=&quot;/&quot;&gt;返回主页&lt;/a&gt;&lt;/p&gt; 
    &lt;p&gt;&lt;/p&gt; 
   &lt;/div&gt; 
  &lt;/div&gt;
 &lt;/body&gt;
&lt;/html&gt;&lt;html&gt;
 &lt;head&gt; 
  &lt;title&gt;留言板.gif&lt;/title&gt; 
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt; 
  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,initial-scale=1&quot;&gt; 
  &lt;meta name=&quot;format-detection&quot; content=&quot;telephone=no&quot;&gt; 
  &lt;link href=&quot;https://wodemo.net/statics/build/css/cb4a99cbe25c7fc4e15fa44ed3c12d97.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt; 
  &lt;link href=&quot;https://520zx.wodemo.net/skin/520zx/1446922661/site.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;
  &lt;link rel=&quot;alternate&quot; href=&quot;https://520zx.wodemo.net/feed&quot; type=&quot;application/rss+xml&quot; title=&quot;RSS&quot;&gt;
 &lt;/head&gt; 
 &lt;body&gt; 
  &lt;div id=&quot;whole_body&quot; class=&quot;wo-main-body wo-mode-visitor&quot;&gt; 
   &lt;div class=&quot;wo-file-main&quot;&gt;
    
   &lt;!--wo-file-main--&gt;

. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[密码生成器]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/481156]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Sat, 26 May 2018 00:56:20 -0700]]></pubDate>
        <description><![CDATA[
 
   
   
  body{TEXT-ALIGN: center;}#center{} 
  body {background:url(/bj.jpg);background-size:100%;background-repeat: no-repeat;background-attachment:fixed} 
 
 
  
    (づ ●─● )づ&nbsp;Jn小站 
   Jn随机密码生成器 
    
     
      
       
       数字 
       小写字母 
       大写字母 
       标点符号 
       字符不重复 
       密码长度 
       密码数量 
       
       
      生成密码 
      var $ = function(s) {
    return document.getElementById(s)
  },
  $includeNumber = $("include_number"),
  $includeLowercaseletters = $("include_lowercaseletters"),
  $includeUppercaseletters = $("include_uppercaseletters"),
  $includePunctuation = $("include_punctuation"),
  $passwordUnique = $("password_unique"),
  $passwordLength = $("password_length"),
  $passwordQuantity = $("password_quantity"),
  $generate = $("generate"),
  $output = $("output");

  function rand(max) {
    return Math.floor(Math.random() * max);
  };

  $generate.onclick = function() {
    var chars = "";

    if ($includeNumber.checked) chars += "0123456789";
    if ($includeLowercaseletters.checked) chars += "abcdefghijklmnopqrstuvwxyz";
    if ($includeUppercaseletters.checked) chars += "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    if ($includePunctuation.checked) chars += "`~!@#$%^&*()-_=+[{]}\|;:'\",/?";

    var passwords = [],
    passwordUnique = $passwordUnique.checked;
    for (var i = 0,
    l = $passwordQuantity.value; i < l; i++) {
      var _chars = chars.split(""),
      password = "";
      for (var j = 0,
      k = $passwordLength.value; j < k; j++) {
        if (_chars.length < 1) break;
        var index = rand(_chars.length);
        password += _chars[index];
        if (passwordUnique) _chars.splice(index, 1);
      };
      passwords.push(password);
    };
    $output.value = passwords.join("\n");
  };

  $output.onfocus = function() {
    this.select();
  }  
      
      
   a{ text-decoration:none;}a:hover{ text-decoration:underline;}a:link {color:#00FFCC} 
   
    
   
 
&lt;html&gt;
 &lt;head&gt; 
  &lt;title&gt;留言板.gif&lt;/title&gt; 
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt; 
  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,initial-scale=1&quot;&gt; 
  &lt;meta name=&quot;format-detection&quot; content=&quot;telephone=no&quot;&gt; 
  &lt;link href=&quot;https://wodemo.net/statics/build/css/cb4a99cbe25c7fc4e15fa44ed3c12d97.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt; 
  &lt;link href=&quot;https://520zx.wodemo.net/skin/520zx/1446922661/site.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;
  &lt;link rel=&quot;alternate&quot; href=&quot;https://520zx.wodemo.net/feed&quot; type=&quot;application/rss+xml&quot; title=&quot;RSS&quot;&gt;
 &lt;/head&gt; 
 &lt;body&gt; 
  &lt;div id=&quot;whole_body&quot; class=&quot;wo-main-body wo-mode-visitor&quot;&gt; 
   &lt;div class=&quot;wo-file-main&quot;&gt;
    
   &lt;!--wo-file-main--&gt;

. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[Jackson工具箱博客版]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/481110]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Fri, 25 May 2018 17:43:24 -0700]]></pubDate>
        <description><![CDATA[&lt;!--&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;/body&gt;&lt;/html&gt;--&gt; &lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;Jackson工具箱&lt;/title&gt; &lt;meta http-equiv=&quot;Content-type&quot; content=&quot;text/html; charset=utf-8&quot;&gt; &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt; &lt;meta http-equiv=&quot;Cache-Control&quot; content=&quot;no-transform&quot;/&gt; &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0&quot; /&gt; &lt;!-- &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0,maximum-scale=2.0, user-scalable=1&quot;&gt; --&gt; &lt;meta name=&quot;apple-mobile-web-app-capable&quot; content=&quot;yes&quot;&gt; &lt;meta name=&quot;layoutmode&quot; content=&quot;standard&quot;&gt; &lt;meta name=&quot;apple-mobile-web-app-status-bar-style&quot; content=&quot;black&quot;&gt; &lt;meta name=&quot;renderer&quot; content=&quot;webkit&quot;&gt; &lt;!--uc浏览器判断到页面上文字居多时，会自动放大字体优化移动用户体验。添加以下头部可以禁用掉该优化--&gt; &lt;meta name=&quot;wap-font-scale&quot; content=&quot;no&quot;&gt; &lt;meta content=&quot;telephone=no&quot; name=&quot;format-detection&quot; /&gt; &lt;META HTTP-EQUIV=&quot;Pragma&quot; CONTENT=&quot;no-cache&quot;&gt; &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;//mo.faisys.com/css/fontsIco.min.css?v=201806081418&quot; /&gt; &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;//mo.faisys.com/css/base.min.css?v=201807031442&quot; title=&quot;default&quot; /&gt; &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;//mo.faisys.com/css/bannerAnimation.min.css?v=201711201610&quot; title=&quot;&quot; /&gt; &lt;link rel=&quot;stylesheet&quot; id=&quot;mobiStyleTemplateCss&quot; type=&quot;text/css&quot; href=&quot;//mo.faisys.com/css/template/1026_6.min.css?v=201806081418&quot;/&gt; &lt;link rel=&quot;stylesheet&quot; id=&quot;mobiCubeNavigationCss&quot; type=&quot;text/css&quot; href=&quot;//mo.faisys.com/css/cubeNavigation.min.css?v=201806181538&quot;/&gt; &lt;!-- //横向标签样式css --&gt; &lt;style id='mobiTabStyleCss'&gt;.fk-tabStyle2 .f-formTabButtonList .formTabButtonClick{border-bottom-color:#06c1ae;}.fk-tabStyle2 .f-formTabButtonList .formTabButtonClick{color:#06c1ae;}.fk-tabStyle1 div.formTabButtonClick .f-formTabMiddle{background-color:#06c1ae;}&lt;/style&gt; &lt;!-- //折叠标签样式css --&gt; &lt;style id='mobiFoldStyleCss'&gt;.fk-foldStyle1 .f-formFoldButton.active{color:#06c1ae;}.fk-foldStyle1 .f-formFoldButton.active .icon-fold:before{color:#06c1ae;}.fk-foldStyle2 .f-formFoldButton.active{background-color:#06c1ae;}.fk-foldStyle3 .f-formFoldButton.active{color:#06c1ae;}.fk-foldStyle3 .f-formFoldButton.active .icon-fold:before{color:#06c1ae;}&lt;/style&gt; &lt;!-- //输出模块样式css --&gt; &lt;style id='mobiStyleModule'&gt;#module689 .formBannerTitle689{display:none !important;}#module325 {filter:alpha(opacity=87);opacity:0.87;}#module325 {border:1px #ffff00 solid;}#module325 {padding:0px;}#module325 .formMiddle325{border:none;}#module325 .formMiddle325{padding:0px;}#module325 .formBannerTitle325{border:none;}#module325 .formBannerTitle325{padding:0px;}#module325 .titleText325{font-size:0.5853658536585366rem;}#module325 .titleText325{font-weight:bolder;}#module325 .formMiddle325 .moduleContent{font-size:12px;}#module325 .formMiddle325 .richContent{font-size:12px;}#module325 .formMiddle325 .moduleContent .g_text{font-size:12px;}#module325 .formMiddle325 .pagenation{color:#ff0000;}#module325 .formMiddle325 .moduleContent{color:#ff0000;}#module325 .formMiddle325 .richContent{color:#ff0000;}#module325 .formMiddle325 .moduleContent .g_text{color:#ff0000;}#module325 .formMiddle325 .pagenation .pageDisable span{color:#ff0000;}#module323 .formBannerTitle323{display:none !important;}#module575 {border:none;}#module575 {padding:0px;}#module575 .formMiddle575{border:none;}#module575 .formMiddle575{padding:0px;}#module575 .formBannerTitle575{border:none;}#module575 .formBannerTitle575{padding:0px;}#module450 {filter:alpha(opacity=93);opacity:0.93;}#module450 {border:1px #fee370 solid;}#module450 {padding:0px;}#module450 .formMiddle450{border:none;}#module450 .formMiddle450{padding:0px;}#module450 .formBannerTitle450{border:none;}#module450 .formBannerTitle450{padding:0px;}#module450 .titleText450{font-size:0.5853658536585366rem;}#module450 .titleText450{font-weight:bolder;}#module450 .formMiddleContent450{padding:0px;}#module450 .formMiddleContent450{margin-left:10px;}#module450 .formMiddleContent450{margin-right:10px;}#module450 .formMiddleContent450{margin-top:5px;}#module450 .formMiddleContent450{margin-bottom:5px;}#module450 .formMiddle450 a{text-decoration:none;}#module450 .formMiddle450 .g_link{text-decoration:none;}#module450 .formMiddle450 a{font-family:宋体;}#module450 .formMiddle450 .g_link{font-family:宋体;}#module450 .formMiddle450 a{color:#000;}#module450 .formMiddle450 .g_link{color:#000;}#module450 .formMiddle450 .pagenation select{color:#000;}#module450 .formMiddle450 a{font-weight:normal;}#module450 .formMiddle450 a{font-size:0.5853658536585366rem;}#module450 .formMiddle450 .g_link{font-size:0.5853658536585366rem;}#module450 .formMiddle450 input[type='text']{background-color:rgba(255,255,0,0.93);}#module450 .formMiddle450 input[type='tel']{background-color:rgba(255,255,0,0.93);}#module450 .formMiddle450 input[type='number']{background-color:rgba(255,255,0,0.93);}#module450 .formMiddle450 input[type='email']{background-color:rgba(255,255,0,0.93);}#module450 .formMiddle450 input[type='password']{background-color:rgba(255,255,0,0.93);}#module450 .formMiddle450 .siteForm select{background-color:rgba(255,255,0,0.93);}#module450 .formMiddle450 textarea{background-color:rgba(255,255,0,0.93);}#module450 .formMiddle450 .fk-setInputStyle{background-color:rgba(255,255,0,0.93);}&lt;/style&gt;&lt;style id='mobiStyleNav' type='text/css'&gt;

.open .navItem:nth-child(2) {transition-delay: 160ms;} .open .navItem:nth-child(4) {transition-delay: 240ms;} .open .navItem:nth-child(6) {transition-delay: 320ms;} #navbar_107 .icon-navItemIcon{background-image: url(//2.ss.faisys.com/image/materialLib/icon/2000164.gif?v=201712181557);background-size:contain;background-position:50% 50%;background-repeat:no-repeat;} #navbar_107 .icon-navItemIcon:before{content:none;} .open .navItem:nth-child(8) {transition-delay: 400ms;} .open .navItem:nth-child(10) {transition-delay: 480ms;} .open .navItem:nth-child(12) {transition-delay: 560ms;} .open .navItem:nth-child(14) {transition-delay: 640ms;} #navbar_126 .icon-navItemIcon:before{content:'\e6f0';color:rgb(31,135,232);} #navbar_126 .icon-navItemIcon{background-image:none;} .open .navItem:nth-child(16) {transition-delay: 720ms;} #navbar_125 .icon-navItemIcon:before{content:'\ec53';content:'\ec53';} #navbar_125 .icon-navItemIcon{background-image:none;} &lt;/style&gt; &lt;style id=&quot;webBodyBackgroundStyle&quot;&gt;#g_web{background:none;}#webContainerBox{background:none;}#webBodyBackground{background:url(//mo.faisys.com/image/background/11.jpg) center center;background-size:cover;}.fullScreenDivCotainer .fk-body-bg{background:url(//mo.faisys.com/image/background/11.jpg) center center;background-size:cover;}&lt;/style&gt; &lt;style id='mobiCubeStyleModule'&gt;#module543{overflow:hidden;}#cubeNavigation543_cubeLink1 .icon-cube:before{content:'#cubeNavigation543_cubeLink2 .icon-cube:before{content:'#cubeNavigation543_cubeLink3 .icon-cube:before{content:'';}#cubeNavigation543_cubeLink4 .cubeLink_ico{background-image:url(//2.ss.faisys.com/image/materialLib/icon/2000026.gif?v=201712181557);background-color:transparent;;background-repeat:no-repeat;background-position: center;}#cubeNavigation543_cubeLink4 .icon-cube:before{content:none;}#cubeNavigation543_cubeLink5 .cubeLink_ico{background-image:url(//2.ss.faisys.com/image/materialLib/icon/2000030.gif?v=201712181557);background-color:transparent;;background-repeat:no-repeat;background-position: center;}#cubeNavigation543_cubeLink5 .icon-cube:before{content:none;}#cubeNavigation543_cubeLink6 .icon-cube:before{content:'#cubeNavigation543_cubeLink7 .cubeLink_ico{background-image:url(//2.ss.faisys.com/image/materialLib/icon/2000178.gif?v=201712181557);background-color:transparent;;background-repeat:no-repeat;background-position: center;}#cubeNavigation543_cubeLink7 .icon-cube:before{content:none;}#cubeNavigation543_cubeLink8 .cubeLink_ico{background-image:url(//2.ss.faisys.com/image/materialLib/icon/2000037.gif?v=201712181557);background-color:transparent;;background-repeat:no-repeat;background-position: center;}#cubeNavigation543_cubeLink8 .icon-cube:before{content:none;}#module553{overflow:hidden;}#cubeNavigation553_cubeLink1 .icon-cube:before{content:'#cubeNavigation553_cubeLink2 .icon-cube:before{content:'#cubeNavigation553_cubeLink3 .icon-cube:before{content:'#cubeNavigation553_cubeLink4 .icon-cube:before{content:'#cubeNavigation553_cubeLink5 .cubeLink_bg{background-color:#ff0000;background-image:none;filter:(opacity='100');opacity:1.0;}#cubeNavigation553_cubeLink5 .cubeLink_ico{background-image:url(//2.ss.faisys.com/image/materialLib/icon/2000026.gif?v=201712181557);background-color:transparent;;background-repeat:no-repeat;background-position: center;}#cubeNavigation553_cubeLink5 .icon-cube:before{content:none;}#module553 #cubeNavigation553_cubeLink5 .cubeLink_text_p{color:#ffffff;font-weight:bold;font-size:0.5853658536585366rem;}#cubeNavigation553_cubeLink6 .cubeLink_ico{background-image:url(//2.ss.faisys.com/image/materialLib/icon/2000030.gif?v=201712181557);background-color:transparent;;background-repeat:no-repeat;background-position: center;}#cubeNavigation553_cubeLink6 .icon-cube:before{content:none;}#cubeNavigation553_cubeLink7 .cubeLink_ico{background-image:url(//2.ss.faisys.com/image/materialLib/icon/2000022.gif?v=201712181557);background-color:transparent;;background-repeat:no-repeat;background-position: center;}#cubeNavigation553_cubeLink7 .icon-cube:before{content:none;}#cubeNavigation553_cubeLink8 .cubeLink_ico{background-image:url(//13908440.s21i.faiusr.com/4/ABUIABAEGAAgy8vA0gUotIuv5gYwyAE4yAE!100x100.png);background-color:transparent;;background-repeat:no-repeat;background-position: center;}#cubeNavigation553_cubeLink8 .icon-cube:before{content:none;}#module575{overflow:hidden;}#cubeNavigation575_cubeLink1 .icon-cube:before{content:'';}#cubeNavigation575_cubeLink2 .cubeLink_ico{background-image:url(//13908440.s21i.faiusr.com/4/ABUIABAEGAAgy8vA0gUotIuv5gYwyAE4yAE!100x100.png);background-color:transparent;;background-repeat:no-repeat;background-position: center;}#cubeNavigation575_cubeLink2 .icon-cube:before{content:none;}#cubeNavigation575_cubeLink3 .cubeLink_ico{background-image:url(//13908440.s21i.faiusr.com/4/ABUIABAEGAAgy8vA0gUotIuv5gYwyAE4yAE!100x100.png);background-color:transparent;;background-repeat:no-repeat;background-position: center;}#cubeNavigation575_cubeLink3 .icon-cube:before{content:none;}#cubeNavigation575_cubeLink4 .icon-cube:before{content:'#cubeNavigation575_cubeLink7 .cubeLink_ico{background-image:url(//13908440.s21i.faiusr.com/4/ABUIABAEGAAg9oSy1QUo8ae1zAUwuAg4gA8!100x100.png);background-color:transparent;;background-repeat:no-repeat;background-position: center;}#cubeNavigation575_cubeLink7 .icon-cube:before{content:none;}#cubeNavigation575_cubeLink9 .icon-cube:before{content:'';}#cubeNavigation575_cubeLink14 .icon-cube:before{content:'';}#cubeNavigation575_cubeLink20 .icon-cube:before{content:'';}&lt;/style&gt; &lt;style id='mobiSearchStyleModule'&gt;#module323 .icon-mSearchBtn{background-color:rgb(255, 105, 44);}&lt;/style&gt; &lt;!-- //按钮样式css --&gt; &lt;style id='mobiFloatBtnCss'&gt;.form .floatBtnStyle0 .middle{background-color:#06c1ae;}.form .floatBtnStyle1 .middle{background-color:#06c1ae;}.form .floatBtnStyle2 .middle{border-color:#06c1ae;color:#06c1ae;}.form .floatBtnStyle3 .middle{background:-webkit-linear-gradient(bottom, #06c1ae 10%,rgba(130,224,214,1));background:-webkit-linear-gradient(bottom, #06c1ae 10%,rgba(130,224,214,1));}.form .floatBtnStyle4 .middle{background:-webkit-linear-gradient(bottom, #06c1ae 10%,rgba(130,224,214,1));background:-webkit-linear-gradient(bottom, #06c1ae 10%,rgba(130,224,214,1));border-color:#06c1ae;}&lt;/style&gt; &lt;!-- 输出底部样式 --&gt; &lt;style id='fixedAreaBoxStyle'&gt;.webFooterBox .ui-calendar-calendar .ui-state-active{background-color:#06c1ae;}.webFooterBox .ui-calendar-calendar .ui-calendar-startDate{background-color:#06c1ae;}.webFooterBox .ui-calendar-prev:after{color:#06c1ae;}.webFooterBox .ui-calendar-next:after{color:#06c1ae;}.webFooterBox .fk-calendarNav{background-color:#06c1ae;}&lt;/style&gt; &lt;!-- 特殊模块样式 如系统模块 --&gt; &lt;style id='specialModuleStyle'&gt;&lt;/style&gt; &lt;!-- 系统特殊隐藏栏目隐藏头部、banner --&gt; &lt;style type='text/css' id='independentColStyle'&gt;&lt;/style&gt; &lt;/head&gt; &lt;body faiscoMobi=&quot;true&quot; id=&quot;g_body&quot; class=&quot;g_locale2052 mobiCol3&quot;&gt; &lt;script type=&quot;text/javascript&quot;&gt; (function() { var fs = document.createElement(&quot;script&quot;); fs.src = &quot;//fe.faisys.com/jssdk_1_0/js/hawkEye.min.js?v=201806251721&quot;;window.FAI_HAWK_EYE = {}; window.FAI_HAWK_EYE.jssdk_report_url = &quot;//report.fkw.com/js/report&quot;; window.FAI_HAWK_EYE.jssdk_appid = 3003; window.FAI_HAWK_EYE.fai_aid = 13908440; window.FAI_HAWK_EYE.fai_bs_aid = 13908440; window.FAI_HAWK_EYE.fai_bs_id = 0; window.FAI_HAWK_EYE.fai_bs_wid = 0; var s = document.getElementsByTagName(&quot;script&quot;)[0];s.parentNode.insertBefore(fs, s);})();&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt; //html root的字体计算应该放在最前面，这样计算就不会有误差了/ //2016.3.23 wjq update 之所以要加个判断返回一个20.5，是因为当用户在谷歌等浏览器直接输入手机端网站网址时，如果用户设置模块自定义样式的高度比较小，由于这时候的clientWidth为1920px，及返回的_htmlFontSize为40，这时候就会使模块太小，展示不完全，因此先取一个较为准确的值去展示。Mobi.resetHtmlFontSize()顺便也加了 var _htmlFontSize = (function(){ var clientWidth = document.documentElement ? document.documentElement.clientWidth : document.body.clientWidth; //if(clientWidth &gt; 768) clientWidth = 768; if(clientWidth &gt; 768 &amp;&amp; clientWidth &lt; 1280){ clientWidth = 768; }else if(clientWidth &gt;= 1280){ clientWidth = 512; } document.documentElement.style.fontSize = clientWidth * 1/16+&quot;px&quot;; return clientWidth * 1/16; })(); &lt;/script&gt; &lt;div class=&quot;webLeft&quot;&gt;&lt;/div&gt; &lt;div id=&quot;g_web&quot; class=&quot;g_web&quot;&gt; &lt;!-- this is loading --&gt; &lt;div id=&quot;webLoading&quot; class=&quot;loading&quot; style='display:none;'&gt; &lt;div id=&quot;splashscreen&quot; class='splashscreen ui-loader'&gt; &lt;span class='ui-icon ui-icon-loading spin'&gt;&lt;/span&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id=&quot;webTopBox&quot; class=&quot;webTopBox &quot;&gt; &lt;div id=&quot;webTop&quot; class=&quot;webTop mobiTipsStyle&quot;&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id=&quot;webHeaderBox&quot; class=&quot;webHeaderBox mobiTipsStyle&quot;&gt; &lt;div class='navButton' id='navButton'&gt;&lt;div class='navButtonPanel'&gt;&lt;/div&gt;&lt;div class='menuNav'&gt;&lt;div class='menuNavTip icon-menuNavTip'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='headerWhiteBg' class='headerSiteMaskWhiteBg'&gt;&lt;/div&gt;&lt;div id='headerBg' class='headerSiteMaskBg'&gt;&lt;/div&gt;&lt;div id='webHeader' class='webHeader webHeaderBg ' &gt;&lt;div id='header' class='header-forLogo header ' style=''&gt;&lt;span class='pageLogo ' style='visibility:hidden;' id='pageLogo' sid='0' pw='1080' ph='1080'&gt;&lt;a href='/'&gt;&lt;div id='pageLogoImg' class='J_logoImg logoImg ' style='background-image:url(//13908440.s21i.faiusr.com/2/ABUIABACGAAgzID90QUo74DJmwMwuAg4uAg!450x450.jpg);background-size: contain;background-position: center;background-repeat: no-repeat;'&gt;&lt;/div&gt;&lt;/a&gt;&lt;/span&gt;&lt;span class='pageTitle ' id='pageTitle' &gt;&lt;h1 style='font-weight:normal; font-size: inherit; display: inline-block; width: 100%; overflow: hidden; text-overflow: ellipsis;' &gt;&lt;a href='/' style='color:inherit;' &gt;Jackson工具箱&lt;/a&gt;&lt;/h1&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;div id='navbar' class='navbar navBaseIcon'&gt;&lt;div id='navbarList' class='navbarList ' &gt;&lt;div id='itemSep_3' class='itemSep'&gt;&lt;/div&gt;&lt;div id='navItem_3' class='navItem navItem_3 itemSelected icon-navItem'&gt;&lt;a href='/index.jsp' _colid='3' id='navbar_3'&gt;&lt;span class='navItemIcon icon-navItemIcon J_fontIcon'&gt;&lt;/span&gt;&lt;span class='nameWrap'&gt;&lt;span class='navItemName'&gt;&lt;span&gt;首页&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class='icon-subNav'&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div id='itemSep_9' class='itemSep'&gt;&lt;/div&gt;&lt;div id='navItem_9' class='navItem navItem_9 icon-navItem'&gt;&lt;a href='/mb.jsp' _colid='9' id='navbar_9'&gt;&lt;span class='navItemIcon icon-navItemIcon J_fontIcon'&gt;&lt;/span&gt;&lt;span class='nameWrap'&gt;&lt;span class='navItemName'&gt;&lt;span&gt;留言板&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class='icon-subNav'&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div id='itemSep_107' class='itemSep'&gt;&lt;/div&gt;&lt;div id='navItem_107' class='navItem navItem_107 icon-navItem'&gt;&lt;a href='/col.jsp?id=107' _colid='107' id='navbar_107'&gt;&lt;span class='navItemIcon icon-navItemIcon J_imgIcon'&gt;&lt;/span&gt;&lt;span class='nameWrap'&gt;&lt;span class='navItemName'&gt;&lt;span&gt;关于我们&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class='icon-subNav'&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div id='itemSep_11' class='itemSep'&gt;&lt;/div&gt;&lt;div id='navItem_11' class='navItem navItem_11 icon-navItem'&gt;&lt;a href='/signup.jsp' _colid='11' id='navbar_11'&gt;&lt;span class='navItemIcon icon-navItemIcon J_fontIcon'&gt;&lt;/span&gt;&lt;span class='nameWrap'&gt;&lt;span class='navItemName'&gt;&lt;span&gt;会员注册&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class='icon-subNav'&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div id='itemSep_12' class='itemSep'&gt;&lt;/div&gt;&lt;div id='navItem_12' class='navItem navItem_12 icon-navItem'&gt;&lt;a href='/cn/login.jsp' _colid='12' id='navbar_12'&gt;&lt;span class='navItemIcon icon-navItemIcon J_fontIcon'&gt;&lt;/span&gt;&lt;span class='nameWrap'&gt;&lt;span class='navItemName'&gt;&lt;span&gt;会员中心&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class='icon-subNav'&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div id='itemSep_10' class='itemSep'&gt;&lt;/div&gt;&lt;div id='navItem_10' class='navItem navItem_10 icon-navItem'&gt;&lt;a href='/login.jsp' _colid='10' id='navbar_10'&gt;&lt;span class='navItemIcon icon-navItemIcon J_fontIcon'&gt;&lt;/span&gt;&lt;span class='nameWrap'&gt;&lt;span class='navItemName'&gt;&lt;span&gt;会员登录&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class='icon-subNav'&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div id='itemSep_126' class='itemSep'&gt;&lt;/div&gt;&lt;div id='navItem_126' class='navItem navItem_126 icon-navItem'&gt;&lt;a href='/col.jsp?id=126' _colid='126' id='navbar_126'&gt;&lt;span class='navItemIcon icon-navItemIcon J_fontIcon'&gt;&lt;/span&gt;&lt;span class='nameWrap'&gt;&lt;span class='navItemName'&gt;&lt;span&gt;教育&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class='icon-subNav'&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div id='itemSep_125' class='itemSep'&gt;&lt;/div&gt;&lt;div id='navItem_125' class='navItem navItem_125 icon-navItem'&gt;&lt;a href='/col.jsp?id=125' _colid='125' id='navbar_125'&gt;&lt;span class='navItemIcon icon-navItemIcon J_fontIcon'&gt;&lt;/span&gt;&lt;span class='nameWrap'&gt;&lt;span class='navItemName'&gt;&lt;span&gt;开启小神！&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class='icon-subNav'&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='navLeft icon-navLeft'&gt;&lt;/div&gt;&lt;div class='navRight icon-navRight'&gt;&lt;/div&gt;&lt;div class='jz_subMenuSeoGhost'&gt;&lt;/div&gt;&lt;/div&gt; &lt;/div&gt; &lt;div id=&quot;webBannerBox&quot; class=&quot;webBannerBox mobiTipsBannerStyle&quot;&gt; &lt;div class=&quot;multilingualArea&quot; id=&quot;webMultilingualArea&quot;&gt; &lt;div class='multilingual'&gt;&lt;/div&gt; &lt;/div&gt; &lt;div id='webBanner' style='display: none;' class='webBanner'&gt;&lt;/div&gt; &lt;/div&gt; &lt;div id=&quot;webContainerBox&quot; class=&quot;webContainerBox&quot; style=&quot;overflow:visible;&quot;&gt; &lt;div id=&quot;webModuleContainer&quot; class=&quot;webModuleContainer&quot;&gt; &lt;div id='module689' class='form Handle formStyle42 ' _autoHeight='1' _height='0' _width='0' _autoWidth='1' _bHeight='0' _inTab='0' _inFold='0' style='' &gt;&lt;div _bannerAutoHeight='1' class='formBannerTitle formBannerTitle689'&gt;&lt;div class='titleLeft titleLeft689'&gt;&lt;/div&gt;&lt;div class='titleCenter titleCenter689'&gt;&lt;div class='titleText titleText689'&gt;&lt;div class='titleTextIcon icon-titleText'&gt;&amp;nbsp;&lt;/div&gt;&lt;div class='textContent'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formBannerMore formBannerMore689'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='titleRight titleRight689'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formMiddle formMiddle689'&gt;&lt;div class='middleLeft middleLeft689'&gt;&lt;/div&gt;&lt;div class='middleCenter middleCenter689'&gt;&lt;div class='formMiddleContent formMiddleContent689 moduleContent' _innerType='0'&gt;&lt;div class='photoModule styleForm6 g_background'&gt;&lt;div class='photoSwipe' id='photoSwipe689'&gt;&lt;div class='photoSwipeBox'&gt;&lt;div class='swipImgArea imageDiv' &gt;&lt;a hidefocus='true' href=&quot;http://uee.me/VarM&quot;&gt;&lt;span class='imageMiddleSpan'&gt;&lt;/span&gt;&lt;img class=' ' id='ABUIABACGAAgt7yi2AUo4JbD8wcwwAc4nAQ' src='//13908440.s21i.faiusr.com/2/ABUIABACGAAgt7yi2AUo4JbD8wcwwAc4nAQ!640x640.jpg' vwidth='450' vheight='253' alt='' photoIndex=0 /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='swipImgArea imageDiv' style='display:none;' &gt;&lt;a hidefocus='true' href=&quot;http://dwz.uixsj.cn/jD&quot;&gt;&lt;span class='imageMiddleSpan'&gt;&lt;/span&gt;&lt;img class=' ' id='ABUIABACGAAg19Gi2AUosanZ2QQwwAc4nAQ' src='//13908440.s21i.faiusr.com/2/ABUIABACGAAg19Gi2AUosanZ2QQwwAc4nAQ!640x640.jpg' vwidth='450' vheight='253' alt='' photoIndex=1 /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='swipImgArea imageDiv' style='display:none;' &gt;&lt;a hidefocus='true' href=&quot;https://0x9.me/8OdfV&quot;&gt;&lt;span class='imageMiddleSpan'&gt;&lt;/span&gt;&lt;img class=' ' id='ABUIABACGAAgr6mV2gUo_oKEiAUwhAc4-wI' src='//13908440.s21i.faiusr.com/2/ABUIABACGAAgr6mV2gUo_oKEiAUwhAc4-wI!640x640.jpg' vwidth='450' vheight='191' alt='' photoIndex=2 /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='swipImgArea imageDiv' style='display:none;' &gt;&lt;a hidefocus='true' href=&quot;https://0x9.me/qjBPJ&quot;&gt;&lt;span class='imageMiddleSpan'&gt;&lt;/span&gt;&lt;img class=' ' id='ABUIABACGAAgtamV2gUopfCH_wEwhAc4-wI' src='//13908440.s21i.faiusr.com/2/ABUIABACGAAgtamV2gUopfCH_wEwhAc4-wI!640x640.jpg' vwidth='450' vheight='191' alt='' photoIndex=3 /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='swipImgArea imageDiv' style='display:none;' &gt;&lt;a hidefocus='true' href=&quot;https://0x9.me/8lzBw&quot;&gt;&lt;span class='imageMiddleSpan'&gt;&lt;/span&gt;&lt;img class=' ' id='ABUIABACGAAg3amV2gUopKnQ2wMwhAc4-wI' src='//13908440.s21i.faiusr.com/2/ABUIABACGAAg3amV2gUopKnQ2wMwhAc4-wI!640x640.jpg' vwidth='450' vheight='191' alt='' photoIndex=4 /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='photoBullet689' class='fk-photoBulletStyle photoBullet' style='display:block;height:auto !important;word-wrap:break-word;'&gt;&lt;table class='tableFix '&gt;&lt;tr&gt;&lt;td class='f-imgName'&gt;&lt;div id='imgName689' class='imgName g_link'&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class='tdUl' &gt;&lt;ul id='bullets689' class='bullets f-bullets'&gt;&lt;li class='on'&gt;&lt;/li&gt;&lt;li&gt;&lt;/li&gt;&lt;li&gt;&lt;/li&gt;&lt;li&gt;&lt;/li&gt;&lt;li&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='middleRight middleRight689'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='module325' class='form Handle formStyle16 ' _autoHeight='1' _height='0' _width='0' _autoWidth='1' _bHeight='0' _inTab='0' _inFold='0' style='' &gt;&lt;div _bannerAutoHeight='1' class='formBannerTitle formBannerTitle325'&gt;&lt;div class='titleLeft titleLeft325'&gt;&lt;/div&gt;&lt;div class='titleCenter titleCenter325'&gt;&lt;div class='titleText titleText325'&gt;&lt;div class='titleTextIcon icon-titleText'&gt;&amp;nbsp;&lt;/div&gt;&lt;div class='textContent'&gt;公告：&lt;/div&gt;&lt;/div&gt;&lt;div class='formBannerMore formBannerMore325'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='titleRight titleRight325'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formMiddle formMiddle325'&gt;&lt;div class='middleLeft middleLeft325'&gt;&lt;/div&gt;&lt;div class='middleCenter middleCenter325'&gt;&lt;div class='formMiddleContent formMiddleContent325 moduleContent' _innerType='0'&gt;&lt;div id='noticeContainer325' class='noticeContainer notice-image0'&gt;&lt;div id='noticeMarquee325' class='noticeMarquee' style='position:relative;'&gt;&lt;div class='noticeMarqueeDiv'&gt;&lt;div class='noticeMarqueeRow'&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span nowrap&gt;Jackson的成长网，Jackson制作！&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span nowrap&gt;&lt;a hidefocus='true' href='http://m.radio366.com/tv/' target='_self'&gt;全新推出电视&lt;/a&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span nowrap&gt;做个网站不易，打赏一下呗。&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span nowrap&gt;&lt;a hidefocus='true' href='http://h5.hunlipic.com/web.php?id=XTJkC3z' target='_self'&gt;最新推出网站制作功能，不用登陆，不用注册！还等着干啥?速来尝试！（点击本文字可快速进入）&lt;/a&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span nowrap&gt;&lt;a hidefocus='true' href='http://www.eb89.com/web.php?id=R84jPAn' target='_self'&gt;快速获取淘宝优惠卷（点本文字进入）&lt;/a&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='middleRight middleRight325'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='module323' class='form Handle formStyle23 ' _autoHeight='1' _height='0' _width='0' _autoWidth='1' _bHeight='0' _inTab='0' _inFold='0' style='' &gt;&lt;div _bannerAutoHeight='1' class='formBannerTitle formBannerTitle323'&gt;&lt;div class='titleLeft titleLeft323'&gt;&lt;/div&gt;&lt;div class='titleCenter titleCenter323'&gt;&lt;div class='titleText titleText323'&gt;&lt;div class='titleTextIcon icon-titleText'&gt;&amp;nbsp;&lt;/div&gt;&lt;div class='textContent'&gt;超级搜索&lt;/div&gt;&lt;/div&gt;&lt;div class='formBannerMore formBannerMore323'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='titleRight titleRight323'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formMiddle formMiddle323'&gt;&lt;div class='middleLeft middleLeft323'&gt;&lt;/div&gt;&lt;div class='middleCenter middleCenter323'&gt;&lt;div class='formMiddleContent formMiddleContent323 moduleContent' _innerType='0'&gt;&lt;div class='search searchType4 fk-setInputStyle' id='search323' onclick='Mobi.popupSearch({moduleId:323,lanCode:&quot;&quot;,nSL:&quot;[]&quot;, hotTopic:[&quot;这个有什么用&quot;,&quot;花样宣传&quot;,&quot;你好&quot;,&quot;会员福利&quot;,&quot;怎样成为会员？&quot;], searchTip:&quot;Jackson提供极速支持&quot;, moduleType:4, moduleColor:&quot;rgb(255, 105, 44)&quot;, historySearch:1})'&gt; &lt;div class='icon-mSearchIcon'&gt;&lt;/div&gt; &lt;div class='mSearchInput fk-setInputFontStyle'&gt;Jackson提供极速支持&lt;/div&gt; &lt;div class='icon-mSearchBtn'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='middleRight middleRight323'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='module543' _headerHiden='1' class='form Handle template1026 formStyle31 moduleStyle7' _autoHeight='1' _height='0' _width='0' _autoWidth='1' _bHeight='0' _inTab='0' _inFold='0' style='' &gt;&lt;div style='display:none;' _bannerAutoHeight='1' class='formBannerTitle formBannerTitle543'&gt;&lt;div class='titleLeft titleLeft543'&gt;&lt;/div&gt;&lt;div class='titleCenter titleCenter543'&gt;&lt;div class='titleText titleText543'&gt;&lt;div class='titleTextIcon icon-titleText'&gt;&amp;nbsp;&lt;/div&gt;&lt;div class='textContent'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formBannerMore formBannerMore543'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='titleRight titleRight543'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formMiddle formMiddle543'&gt;&lt;div class='middleLeft middleLeft543'&gt;&lt;/div&gt;&lt;div class='middleCenter middleCenter543'&gt;&lt;div class='formMiddleContent formMiddleContent543 moduleContent' _innerType='0'&gt;&lt;div class='cubeNavigationArea cubeNavigationArea7' value='7' id='cubeNavigation543'&gt;&lt;div class='cubeLink_row'&gt;&lt;div class='cubeLink cubeLink1 ' id='cubeNavigation543_cubeLink1' linkid='1' &gt;&lt;a class='cubeLink_a ' href='/col.jsp?id=126' target='_self' id='cubeLink_a1_cubeNav543' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;教育&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink2 ' id='cubeNavigation543_cubeLink2' linkid='2' &gt;&lt;a class='cubeLink_a ' href='https://www.ekwing.com/login/view?href=https://www.ekwing.com/Home/index' target='_self' id='cubeLink_a2_cubeNav543' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;翼课网&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink3 ' id='cubeNavigation543_cubeLink3' linkid='3' &gt;&lt;a class='cubeLink_a ' href='https://yangcong345.com/studentIndex.html#/study?_k=oxgop0' target='_self' id='cubeLink_a3_cubeNav543' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;洋葱数学&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink4 ' id='cubeNavigation543_cubeLink4' linkid='4' &gt;&lt;a class='cubeLink_a ' href='https://jackson.wodemo.com/' target='_self' id='cubeLink_a4_cubeNav543' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;游戏&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='cubeLink_row'&gt;&lt;div class='cubeLink cubeLink5 ' id='cubeNavigation543_cubeLink5' linkid='5' &gt;&lt;a class='cubeLink_a ' href='http://downloadpkg.apicloud.com/app/download?path=http://7zk51e.com1.z0.glb.clouddn.com/37dde94a72164582fba5d7c6ded37971_d&amp;amp;ver=0.0.9&amp;amp;size=2.61M' target='_self' id='cubeLink_a5_cubeNav543' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;客户端&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink6 ' id='cubeNavigation543_cubeLink6' linkid='6' &gt;&lt;a class='cubeLink_a ' href='https://s.wcd.im/v/2k22pZ38/' target='_self' id='cubeLink_a6_cubeNav543' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;成长媒体（内网）&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink7 ' id='cubeNavigation543_cubeLink7' linkid='7' &gt;&lt;a class='cubeLink_a ' href='https://jackson666.wodemo.com/' target='_self' id='cubeLink_a7_cubeNav543' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;精彩烟花视频&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink8 ' id='cubeNavigation543_cubeLink8' linkid='8' &gt;&lt;a class='cubeLink_a ' href='https://user.qzone.qq.com' target='_self' id='cubeLink_a8_cubeNav543' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;在线qq空间&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='middleRight middleRight543'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='module553' _headerHiden='1' class='form Handle template1026 formStyle31 moduleStyle7' _autoHeight='1' _height='0' _width='0' _autoWidth='1' _bHeight='0' _inTab='0' _inFold='0' style='' &gt;&lt;div style='display:none;' _bannerAutoHeight='1' class='formBannerTitle formBannerTitle553'&gt;&lt;div class='titleLeft titleLeft553'&gt;&lt;/div&gt;&lt;div class='titleCenter titleCenter553'&gt;&lt;div class='titleText titleText553'&gt;&lt;div class='titleTextIcon icon-titleText'&gt;&amp;nbsp;&lt;/div&gt;&lt;div class='textContent'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formBannerMore formBannerMore553'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='titleRight titleRight553'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formMiddle formMiddle553'&gt;&lt;div class='middleLeft middleLeft553'&gt;&lt;/div&gt;&lt;div class='middleCenter middleCenter553'&gt;&lt;div class='formMiddleContent formMiddleContent553 moduleContent' _innerType='0'&gt;&lt;div class='cubeNavigationArea cubeNavigationArea7' value='7' id='cubeNavigation553'&gt;&lt;div class='cubeLink_row'&gt;&lt;div class='cubeLink cubeLink1 ' id='cubeNavigation553_cubeLink1' linkid='1' &gt;&lt;a class='cubeLink_a ' href='https://translate.google.cn/m/translate' target='_self' id='cubeLink_a1_cubeNav553' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;在线翻译&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink2 ' id='cubeNavigation553_cubeLink2' linkid='2' &gt;&lt;a class='cubeLink_a ' href='https://graph.baidu.com/s?sign=21e252537aaaa8877934d01528115014&amp;amp;f=question&amp;amp;tn=wise&amp;amp;jsup=%7B%22pagecategory%22%3A%22question%22%2C%22tn%22%3A%22wise%22%2C%22origSign%22%3A%222d668e008859292965f9a01528114992%22%2C%22behavetype%22%3A%22b-edit%22%2C%22cardid%' target='_self' id='cubeLink_a2_cubeNav553' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;在线作业帮&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink3 ' id='cubeNavigation553_cubeLink3' linkid='3' &gt;&lt;a class='cubeLink_a ' href='http://m.eqxiu.com/s/7Z0NI1zs?share_level=1&amp;amp;from_user=9d7d4a4c-af09-456e-9336-ec693fc25540&amp;amp;from_id=a19ceeeb-be91-460d-882d-cb7d30f589da&amp;amp;share_time=1514975920920&amp;amp;from=timeline&amp;amp;isappinstalled=0' target='_self' id='cubeLink_a3_cubeNav553' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;宣传1&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink4 ' id='cubeNavigation553_cubeLink4' linkid='4' &gt;&lt;a class='cubeLink_a ' href='https://s.wcd.im/v/2k22pZ37/' target='_self' id='cubeLink_a4_cubeNav553' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;宣传2&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='cubeLink_row'&gt;&lt;div class='cubeLink cubeLink5 ' id='cubeNavigation553_cubeLink5' linkid='5' &gt;&lt;a class='cubeLink_a ' href='http://m.shiting5.com/tv/tvb.html' target='_self' id='cubeLink_a5_cubeNav553' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;在线翡翠台&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink6 ' id='cubeNavigation553_cubeLink6' linkid='6' &gt;&lt;a class='cubeLink_a ' href='http://m.radio366.com/tv/' target='_self' id='cubeLink_a6_cubeNav553' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;在线电视:选择节目后需等半分钟&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink7 ' id='cubeNavigation553_cubeLink7' linkid='7' &gt;&lt;a class='cubeLink_a ' href='https://www.lanzous.com/b285662' target='_self' id='cubeLink_a7_cubeNav553' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;客服端专业版&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink8 ' id='cubeNavigation553_cubeLink8' linkid='8' &gt;&lt;a class='cubeLink_a ' href='https://jlwz.cn/baidu/?Jackson%E5%B7%A5%E5%85%B7%E7%AE%B1' target='_self' id='cubeLink_a8_cubeNav553' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;如何在百度上找到这个网站？&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='middleRight middleRight553'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='module575' _headerHiden='1' class='form Handle template1026 formStyle31 moduleStyle7' _autoHeight='1' _height='0' _width='0' _autoWidth='1' _bHeight='0' _inTab='0' _inFold='0' style='' &gt;&lt;div style='display:none;' _bannerAutoHeight='1' class='formBannerTitle formBannerTitle575'&gt;&lt;div class='titleLeft titleLeft575'&gt;&lt;/div&gt;&lt;div class='titleCenter titleCenter575'&gt;&lt;div class='titleText titleText575'&gt;&lt;div class='titleTextIcon icon-titleText'&gt;&amp;nbsp;&lt;/div&gt;&lt;div class='textContent'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formBannerMore formBannerMore575'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='titleRight titleRight575'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formMiddle formMiddle575'&gt;&lt;div class='middleLeft middleLeft575'&gt;&lt;/div&gt;&lt;div class='middleCenter middleCenter575'&gt;&lt;div class='formMiddleContent formMiddleContent575 moduleContent' _innerType='0'&gt;&lt;div class='cubeNavigationArea cubeNavigationArea7' value='7' id='cubeNavigation575'&gt;&lt;div class='cubeLink_row'&gt;&lt;div class='cubeLink cubeLink1 ' id='cubeNavigation575_cubeLink1' linkid='1' &gt;&lt;a class='cubeLink_a ' href='javascript:;' style='cursor:default;' id='cubeLink_a1_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;关于手机&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink2 ' id='cubeNavigation575_cubeLink2' linkid='2' &gt;&lt;a class='cubeLink_a ' href='https://s.wcd.im/v/2k22pZ3e/' target='_self' id='cubeLink_a2_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;JacksonIOS&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink3 ' id='cubeNavigation575_cubeLink3' linkid='3' &gt;&lt;a class='cubeLink_a ' href='https://pan.lanzou.com/i0r4fvc' target='_self' id='cubeLink_a3_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;微信内置抢红包&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink4 ' id='cubeNavigation575_cubeLink4' linkid='4' &gt;&lt;a class='cubeLink_a ' href='/col.jsp?id=125' target='_self' id='cubeLink_a4_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;小神机器人&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='cubeLink_row'&gt;&lt;div class='cubeLink cubeLink5 ' id='cubeNavigation575_cubeLink5' linkid='5' &gt;&lt;a class='cubeLink_a ' href='http://tool.uixsj.cn/magiconch/' target='_self' id='cubeLink_a5_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;神奇海螺&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink6 ' id='cubeNavigation575_cubeLink6' linkid='6' &gt;&lt;a class='cubeLink_a ' href='javascript:;' style='cursor:default;' id='cubeLink_a6_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;手机功能扩展&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink7 ' id='cubeNavigation575_cubeLink7' linkid='7' &gt;&lt;a class='cubeLink_a ' href='https://pan.lanzou.com/tp/i0nwonc' target='_self' id='cubeLink_a7_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;Jackson云手机&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink8 ' id='cubeNavigation575_cubeLink8' linkid='8' &gt;&lt;a class='cubeLink_a ' href='https://pan.lanzou.com/b218573' target='_self' id='cubeLink_a8_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;Jn浏览器&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='cubeLink_row'&gt;&lt;div class='cubeLink cubeLink9 ' id='cubeNavigation575_cubeLink9' linkid='9' &gt;&lt;a class='cubeLink_a ' href='https://pan.lanzou.com/i0uh7rg' target='_self' id='cubeLink_a9_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;Jn云&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink10 ' id='cubeNavigation575_cubeLink10' linkid='10' &gt;&lt;a class='cubeLink_a ' href='http://192.168.1.1/' target='_self' id='cubeLink_a10_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;WiFi管理&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink11 ' id='cubeNavigation575_cubeLink11' linkid='11' &gt;&lt;a class='cubeLink_a ' href='http://www.eb89.com/' target='_self' id='cubeLink_a11_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;网页生成&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink12 ' id='cubeNavigation575_cubeLink12' linkid='12' &gt;&lt;a class='cubeLink_a ' href='javascript:;' style='cursor:default;' id='cubeLink_a12_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;在线服务&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='cubeLink_row'&gt;&lt;div class='cubeLink cubeLink13 ' id='cubeNavigation575_cubeLink13' linkid='13' &gt;&lt;a class='cubeLink_a ' href='http://uee.me/VarM' target='_self' id='cubeLink_a13_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;Jn博客&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink14 ' id='cubeNavigation575_cubeLink14' linkid='14' &gt;&lt;a class='cubeLink_a ' href='https://filed73c9f3493ed.h5sys.cn/idea/sz4ybErK' target='_self' id='cubeLink_a14_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;大家来找茬&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink15 ' id='cubeNavigation575_cubeLink15' linkid='15' &gt;&lt;a class='cubeLink_a ' href='https://filed73c9f3493ed.iamh5.cn/v3/idea/LiTp4Qtv' target='_self' id='cubeLink_a15_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;匿名聊天板&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink16 ' id='cubeNavigation575_cubeLink16' linkid='16' &gt;&lt;a class='cubeLink_a ' href='https://filed73c9f3493ed.h5sys.cn/idea/RsZ2B6sk' target='_self' id='cubeLink_a16_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;弹个幕&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='cubeLink_row'&gt;&lt;div class='cubeLink cubeLink17 ' id='cubeNavigation575_cubeLink17' linkid='17' &gt;&lt;a class='cubeLink_a ' href='https://filee38b82421cde.aiwall.com/v3/idea/wQ7ZJPga' target='_self' id='cubeLink_a17_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;在线跳一跳&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink18 ' id='cubeNavigation575_cubeLink18' linkid='18' &gt;&lt;a class='cubeLink_a ' href='https://filed73c9f3493ed.h5sys.cn/idea/EPM87jVm' target='_self' id='cubeLink_a18_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;打地鼠&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink19 ' id='cubeNavigation575_cubeLink19' linkid='19' &gt;&lt;a class='cubeLink_a ' href='https://filed73c9f3493ed.h5sys.cn/idea/ob1WjQgB' target='_self' id='cubeLink_a19_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;漂流瓶&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink20 ' id='cubeNavigation575_cubeLink20' linkid='20' &gt;&lt;a class='cubeLink_a ' href='https://filed73c9f3493ed.h5sys.cn/idea/2NF3KbPH' target='_self' id='cubeLink_a20_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;图片云&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='cubeLink_row'&gt;&lt;div class='cubeLink cubeLink21 ' id='cubeNavigation575_cubeLink21' linkid='21' &gt;&lt;a class='cubeLink_a ' href='https://graph.baidu.com/view/calculationhome?promotion_name=calculation_from_ae&amp;amp;sign=&amp;amp;errNo=82001&amp;amp;jsup=%7B%22behavetype%22%3A%22b-take%22%2C%22pagecategory%22%3A%22%22%2C%22view%22%3A%22calculationhome%22%2C%22preSign%22%3A%22%22%2C%22promotion_name%22%3A' target='_self' id='cubeLink_a21_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;在线拍照计算机&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class='cubeLink cubeLink22 ' id='cubeNavigation575_cubeLink22' linkid='22' &gt;&lt;a class='cubeLink_a ' href='http://wx.10086.cn/website/personalHome/new/index?activityId=activityId_newPersonHome_2001528943377656&amp;amp;tid=wechat' target='_self' id='cubeLink_a22_cubeNav575' &gt;&lt;div class='cubeLink_bg'&gt;&lt;/div&gt;&lt;div class='cubeLink_curtain'&gt;&lt;/div&gt;&lt;div class='cubeLink_ico icon-cube'&gt;&lt;/div&gt;&lt;div class='cubeLink_text g_link'&gt;&lt;div class='cubeLink_text_p '&gt;在线中国移动&lt;p class='cubeLink_subText_p'&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='middleRight middleRight575'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='module676' class='form Handle formStyle22 ' _autoHeight='1' _height='0' _width='0' _autoWidth='1' _bHeight='0' _inTab='0' _inFold='0' style='' &gt;&lt;div _bannerAutoHeight='1' class='formBannerTitle formBannerTitle676'&gt;&lt;div class='titleLeft titleLeft676'&gt;&lt;/div&gt;&lt;div class='titleCenter titleCenter676'&gt;&lt;div class='titleText titleText676'&gt;&lt;div class='titleTextIcon icon-titleText'&gt;&amp;nbsp;&lt;/div&gt;&lt;div class='textContent'&gt;在线投票&lt;/div&gt;&lt;/div&gt;&lt;div class='formBannerMore formBannerMore676'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='titleRight titleRight676'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formMiddle formMiddle676'&gt;&lt;div class='middleLeft middleLeft676'&gt;&lt;/div&gt;&lt;div class='middleCenter middleCenter676'&gt;&lt;div class='formMiddleContent formMiddleContent676 moduleContent' _innerType='0'&gt;&lt;div class='vote' id='vote676'&gt;&lt;div class='voteSubject'&gt;&lt;div class='voteSubjectText'&gt;工具箱是红色好呢还是绿色好呢？&lt;/div&gt;&lt;/div&gt;&lt;div class='separator g_dashed'&gt;&lt;/div&gt;&lt;div id='voteItems4676' class='voteItems4676'&gt;&lt;div class='voteItems wekitBox'&gt;&lt;input id='voteItem4i00676' type='radio' name ='cltVoteRadio0' value='0' /&gt;&lt;label class='flex1 voteLab' for='voteItem4i00676'&gt;红色&lt;/label&gt;&lt;/div&gt;&lt;div class='voteItems wekitBox'&gt;&lt;input id='voteItem4i10676' type='radio' name ='cltVoteRadio0' value='1' /&gt;&lt;label class='flex1 voteLab' for='voteItem4i10676'&gt;绿色&lt;/label&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='voteMsg4' class='voteMsg g_tip'&gt;&lt;/div&gt;&lt;div id='voteCodePanel4676' class='voteCodePanel' style='display:none;'&gt;&lt;input id='needVoteCode4676' class='captchaText g_input' type='text' onfocus='jm(this).css(&quot;border-color&quot;, &quot;#ccc&quot;);' placeholder='请输入图片验证码，防止刷票'/&gt;&lt;img alt='' class='voteCodePic' onclick='Mobi.changeValidateCode(this, 3)' title='看不清，换一张' id='memberCaptchaImg' src='validateCode.jsp?Math.random()*1000&amp;validateCodeRegType=3'&gt;&lt;/div&gt;&lt;div class='voteOperate wekitBox'&gt;&lt;div class='flex1'&gt;&lt;input id='vote4676' type='button' class='g_button voteBtn' value='投票' /&gt;&lt;/div&gt;&lt;div class='flex1'&gt;&lt;input type='button' value='查看结果' class='g_button voteBtn' onclick=&quot;Mobi.showVoteResult(4,676)&quot; /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='middleRight middleRight676'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='module675' class='form Handle formStyle33 ' _autoHeight='1' _height='0' _width='0' _autoWidth='1' _bHeight='0' _inTab='0' _inFold='0' style='' &gt;&lt;div _bannerAutoHeight='1' class='formBannerTitle formBannerTitle675'&gt;&lt;div class='titleLeft titleLeft675'&gt;&lt;/div&gt;&lt;div class='titleCenter titleCenter675'&gt;&lt;div class='titleText titleText675'&gt;&lt;div class='titleTextIcon icon-titleText'&gt;&amp;nbsp;&lt;/div&gt;&lt;div class='textContent'&gt;信息作业备份&lt;/div&gt;&lt;/div&gt;&lt;div class='formBannerMore formBannerMore675'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='titleRight titleRight675'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formMiddle formMiddle675'&gt;&lt;div class='middleLeft middleLeft675'&gt;&lt;/div&gt;&lt;div class='middleCenter middleCenter675'&gt;&lt;div class='formMiddleContent formMiddleContent675 moduleContent' _innerType='0'&gt;&lt;div class='fileDownloadPanel'&gt;&lt;div class='mainBodyContainer tableBox'&gt;&lt;div class='fileImg tableCell'&gt;&lt;div class='iconDoc'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='fileName tableCell'&gt;&lt;div class='fileNameText fileNameWrap' title='杂志合并文档.docx'&gt;杂志合并文档.docx&lt;/div&gt;&lt;div class='fileSize g_text'&gt;75.1KB&lt;/div&gt;&lt;/div&gt;&lt;div class='fileOperate tableCell'&gt;&lt;a id='m675i0' class='fileDownload675' target='_blank' href='http://13908440.s21d-13.faiusrd.com/0/ABUIABBBGAAgiYG31gUo-I67iQI?f=%E6%9D%82%E5%BF%97%E5%90%88%E5%B9%B6%E6%96%87%E6%A1%A3.docx&amp;v=1523433609'&gt;&lt;div class='download'&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='g_separator separatorLine'&gt;&lt;/div&gt;&lt;div class='mainBodyContainer tableBox'&gt;&lt;div class='fileImg tableCell'&gt;&lt;div class='iconDoc'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='fileName tableCell'&gt;&lt;div class='fileNameText fileNameWrap' title='栏目一.docx'&gt;栏目一.docx&lt;/div&gt;&lt;div class='fileSize g_text'&gt;119.6KB&lt;/div&gt;&lt;/div&gt;&lt;div class='fileOperate tableCell'&gt;&lt;a id='m675i1' class='fileDownload675' target='_blank' href='http://13908440.s21d-13.faiusrd.com/0/ABUIABBBGAAg_a3H1QUosLeUwAY?f=%E6%A0%8F%E7%9B%AE%E4%B8%80.docx&amp;v=1521604345'&gt;&lt;div class='download'&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='g_separator separatorLine'&gt;&lt;/div&gt;&lt;div class='mainBodyContainer tableBox'&gt;&lt;div class='fileImg tableCell'&gt;&lt;div class='iconDoc'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='fileName tableCell'&gt;&lt;div class='fileNameText fileNameWrap' title='栏目4.docx'&gt;栏目4.docx&lt;/div&gt;&lt;div class='fileSize g_text'&gt;70.72KB&lt;/div&gt;&lt;/div&gt;&lt;div class='fileOperate tableCell'&gt;&lt;a id='m675i2' class='fileDownload675' target='_blank' href='http://13908440.s21d-13.faiusrd.com/0/ABUIABBBGAAg963H1QUolIvjqgc?f=%E6%A0%8F%E7%9B%AE4.docx&amp;v=1521604343'&gt;&lt;div class='download'&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='g_separator separatorLine'&gt;&lt;/div&gt;&lt;div class='mainBodyContainer tableBox'&gt;&lt;div class='fileImg tableCell'&gt;&lt;div class='iconDoc'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='fileName tableCell'&gt;&lt;div class='fileNameText fileNameWrap' title='栏目3.docx'&gt;栏目3.docx&lt;/div&gt;&lt;div class='fileSize g_text'&gt;114.25KB&lt;/div&gt;&lt;/div&gt;&lt;div class='fileOperate tableCell'&gt;&lt;a id='m675i3' class='fileDownload675' target='_blank' href='http://13908440.s21d-13.faiusrd.com/0/ABUIABBBGAAg9q3H1QUo-6iTgAY?f=%E6%A0%8F%E7%9B%AE3.docx&amp;v=1521604342'&gt;&lt;div class='download'&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='g_separator separatorLine'&gt;&lt;/div&gt;&lt;div class='mainBodyContainer tableBox'&gt;&lt;div class='fileImg tableCell'&gt;&lt;div class='iconDoc'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='fileName tableCell'&gt;&lt;div class='fileNameText fileNameWrap' title='栏目2.docx'&gt;栏目2.docx&lt;/div&gt;&lt;div class='fileSize g_text'&gt;324.9KB&lt;/div&gt;&lt;/div&gt;&lt;div class='fileOperate tableCell'&gt;&lt;a id='m675i4' class='fileDownload675' target='_blank' href='http://13908440.s21d-13.faiusrd.com/0/ABUIABBBGAAg9K3H1QUo77vW7QI?f=%E6%A0%8F%E7%9B%AE2.docx&amp;v=1521604340'&gt;&lt;div class='download'&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='g_separator separatorLine'&gt;&lt;/div&gt;&lt;div class='mainBodyContainer tableBox'&gt;&lt;div class='fileImg tableCell'&gt;&lt;div class='iconDoc'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='fileName tableCell'&gt;&lt;div class='fileNameText fileNameWrap' title='对我影响最大的一个人.docx'&gt;对我影响最大的一个人.docx&lt;/div&gt;&lt;div class='fileSize g_text'&gt;236.67KB&lt;/div&gt;&lt;/div&gt;&lt;div class='fileOperate tableCell'&gt;&lt;a id='m675i5' class='fileDownload675' target='_blank' href='http://13908440.s21d-13.faiusrd.com/0/ABUIABBBGAAgoMGD1QUotvTq2AY?f=%E5%AF%B9%E6%88%91%E5%BD%B1%E5%93%8D%E6%9C%80%E5%A4%A7%E7%9A%84%E4%B8%80%E4%B8%AA%E4%BA%BA.docx&amp;v=1520492704'&gt;&lt;div class='download'&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='g_separator separatorLine'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='middleRight middleRight675'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='module450' class='form Handle formStyle13 ' _autoHeight='1' _height='0' _width='0' _autoWidth='1' _bHeight='0' _inTab='0' _inFold='0' style='' &gt;&lt;div _bannerAutoHeight='1' class='formBannerTitle formBannerTitle450'&gt;&lt;div class='titleLeft titleLeft450'&gt;&lt;/div&gt;&lt;div class='titleCenter titleCenter450'&gt;&lt;div class='titleText titleText450'&gt;&lt;div class='titleTextIcon icon-titleText'&gt;&amp;nbsp;&lt;/div&gt;&lt;div class='textContent'&gt;上头条！&lt;/div&gt;&lt;/div&gt;&lt;div class='formBannerMore formBannerMore450'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='titleRight titleRight450'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formMiddle formMiddle450'&gt;&lt;div class='middleLeft middleLeft450'&gt;&lt;/div&gt;&lt;div class='middleCenter middleCenter450'&gt;&lt;div class='formMiddleContent formMiddleContent450 moduleContent' _innerType='1'&gt;&lt;div class='siteForm fk-siteForm-v'&gt;&lt;div class='siteFormName fk-siteFormName'&gt;分享&lt;/div&gt;&lt;div id='siteFormItems1' class='siteFormItemTable'&gt;&lt;div class='siteFormItem siteFormItemTr f-siteFormItemTr'&gt;&lt;div class='siteFormItemTd' width='100%' style='padding:0;'&gt;&lt;div class='siteFormItemShowName'&gt;分享您的经历，有机会上头条哦！（文件建议压缩）&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='siteFormItem siteFormItemTr'&gt;&lt;div class='siteFormItemTd'width='100%' style='padding:0 0 0.45rem 0;'&gt;&lt;div class='F1siteFormItemShowVal fk-siteFormItemShowVal f-fk-siteFormItemShowVal'&gt;&lt;div class='fk-uploadComponent'&gt;&lt;span id='uploadButton4500'&gt;&lt;input readonly='readonly' type='button' class='uploadify-button' onclick='' value='选择文件'/&gt;&lt;div class='uploadify-text' id='siteForm450fileName0' _tmpFileId='' &gt;未选择文件&lt;/div&gt;&lt;/span&gt;&lt;font class='fk-importantStar'&gt;*&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding-top:10px;visibility:hidden;' class='g_dashed separatorLine'&gt;&lt;/div&gt;&lt;div style='height:1.45rem;' class='siteFormItem siteFormItemTr J_formValidation '&gt;&lt;div class='siteFormItemTd' width='100%' style='padding:0;'&gt;&lt;div class='siteFormItemShowName'&gt;验证码&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='siteFormItem siteFormValidate siteFormItemTr J_formValidation '&gt;&lt;div class='siteFormItemTd' style='padding:0;'&gt;&lt;div class='F1siteFormItemShowVal fk-siteFormItemShowVal formValidateUpDiv fk-checkCodeComponent'&gt;&lt;div class='left siteFormValidateUp fk-codeInputWrap'&gt;&lt;input class='g_itext' type='text' placeholder='请输入验证码' id='M450F1siteFormValidateCode' maxlength='4' msg='请输入验证码' /&gt;&lt;/div&gt;&lt;div class='left siteFormValidateUp validateUpImageDiv'&gt;&lt;img id='M450F1validateCodeImg' class='validateCodeImg' onclick='Mobi.siteFormValidation(1, 450)' src='/validateCode.jsp?596&amp;vCodeId=4501'/&gt;&lt;/div&gt;&lt;div onclick='Mobi.siteFormValidation(1, 450)' class='left siteFormValidateUp changeSiteFormValidate'&gt;&lt;/div&gt;&lt;font class='fk-importantStar fk-formValidateUpDiv-left-importantStar'&gt;*&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding-top:10px;' class='g_dashed separatorLine J_formValidation '&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='siteFormMsgM450F1' class='siteFormMsg g_warning'&gt;&lt;/div&gt;&lt;div class='siteFormAddButton'&gt;&lt;div id='M450F1siteFormAddButton' class='siteFormSend' onclick='Mobi.siteFormAdd(450, 1, F1siteFormItemList, true,&quot;index.jsp&quot;)'&gt;&lt;input type='button' class='g_button sendIcon' value='提交' /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='middleRight middleRight450'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='module612' class='form Handle formStyle2 ' _autoHeight='1' _height='0' _width='0' _autoWidth='1' _bHeight='0' _inTab='0' _inFold='0' style='' &gt;&lt;div _bannerAutoHeight='1' class='formBannerTitle formBannerTitle612'&gt;&lt;div class='titleLeft titleLeft612'&gt;&lt;/div&gt;&lt;div class='titleCenter titleCenter612'&gt;&lt;div class='titleText titleText612'&gt;&lt;div class='titleTextIcon icon-titleText'&gt;&amp;nbsp;&lt;/div&gt;&lt;div class='textContent'&gt;Jackson制作&lt;/div&gt;&lt;/div&gt;&lt;div class='formBannerMore formBannerMore612'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='titleRight titleRight612'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formMiddle formMiddle612'&gt;&lt;div class='middleLeft middleLeft612'&gt;&lt;/div&gt;&lt;div class='middleCenter middleCenter612'&gt;&lt;div class='formMiddleContent formMiddleContent612 moduleContent' _innerType='0'&gt;&lt;div class='J_richContentPanel612 f-contentPanel'&gt;&lt;div class='richContent richContent0 richContent612'&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;，&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;，&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;，&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;。&lt;/p&gt;&lt;/div&gt;&lt;div class='clear'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='middleRight middleRight612'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='module613' class='form Handle formStyle2 ' _autoHeight='1' _height='0' _width='0' _autoWidth='1' _bHeight='0' _inTab='0' _inFold='0' style='' &gt;&lt;div _bannerAutoHeight='1' class='formBannerTitle formBannerTitle613'&gt;&lt;div class='titleLeft titleLeft613'&gt;&lt;/div&gt;&lt;div class='titleCenter titleCenter613'&gt;&lt;div class='titleText titleText613'&gt;&lt;div class='titleTextIcon icon-titleText'&gt;&amp;nbsp;&lt;/div&gt;&lt;div class='textContent'&gt;Jackson制作(1)&lt;/div&gt;&lt;/div&gt;&lt;div class='formBannerMore formBannerMore613'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='titleRight titleRight613'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formMiddle formMiddle613'&gt;&lt;div class='middleLeft middleLeft613'&gt;&lt;/div&gt;&lt;div class='middleCenter middleCenter613'&gt;&lt;div class='formMiddleContent formMiddleContent613 moduleContent' _innerType='0'&gt;&lt;div class='J_richContentPanel613 f-contentPanel'&gt;&lt;div class='richContent richContent0 richContent613'&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;，&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;，&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;，&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;。&lt;/p&gt;&lt;/div&gt;&lt;div class='clear'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='middleRight middleRight613'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='module614' class='form Handle formStyle2 ' _autoHeight='1' _height='0' _width='0' _autoWidth='1' _bHeight='0' _inTab='0' _inFold='0' style='' &gt;&lt;div _bannerAutoHeight='1' class='formBannerTitle formBannerTitle614'&gt;&lt;div class='titleLeft titleLeft614'&gt;&lt;/div&gt;&lt;div class='titleCenter titleCenter614'&gt;&lt;div class='titleText titleText614'&gt;&lt;div class='titleTextIcon icon-titleText'&gt;&amp;nbsp;&lt;/div&gt;&lt;div class='textContent'&gt;Jackson制作(1)(1)&lt;/div&gt;&lt;/div&gt;&lt;div class='formBannerMore formBannerMore614'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='titleRight titleRight614'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formMiddle formMiddle614'&gt;&lt;div class='middleLeft middleLeft614'&gt;&lt;/div&gt;&lt;div class='middleCenter middleCenter614'&gt;&lt;div class='formMiddleContent formMiddleContent614 moduleContent' _innerType='0'&gt;&lt;div class='J_richContentPanel614 f-contentPanel'&gt;&lt;div class='richContent richContent0 richContent614'&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;，&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;，&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;，&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;。&lt;/p&gt;&lt;/div&gt;&lt;div class='clear'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='middleRight middleRight614'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='module615' class='form Handle formStyle2 ' _autoHeight='1' _height='0' _width='0' _autoWidth='1' _bHeight='0' _inTab='0' _inFold='0' style='' &gt;&lt;div _bannerAutoHeight='1' class='formBannerTitle formBannerTitle615'&gt;&lt;div class='titleLeft titleLeft615'&gt;&lt;/div&gt;&lt;div class='titleCenter titleCenter615'&gt;&lt;div class='titleText titleText615'&gt;&lt;div class='titleTextIcon icon-titleText'&gt;&amp;nbsp;&lt;/div&gt;&lt;div class='textContent'&gt;Jackson制作(1)(1)(1)&lt;/div&gt;&lt;/div&gt;&lt;div class='formBannerMore formBannerMore615'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='titleRight titleRight615'&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='formMiddle formMiddle615'&gt;&lt;div class='middleLeft middleLeft615'&gt;&lt;/div&gt;&lt;div class='middleCenter middleCenter615'&gt;&lt;div class='formMiddleContent formMiddleContent615 moduleContent' _innerType='0'&gt;&lt;div class='J_richContentPanel615 f-contentPanel'&gt;&lt;div class='richContent richContent0 richContent615'&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;，&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;，&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;。&lt;/p&gt;&lt;/div&gt;&lt;div class='clear'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='middleRight middleRight616'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt; &lt;!--预约面板--&gt; &lt;div id=&quot;bookingPanelTriggle&quot;&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id=&quot;webFooterBox&quot; class=&quot;webFooterBox &quot;&gt; &lt;!--图片详情Div --&gt; &lt;div id='webFooter' class='webFooter'&gt; &lt;div id='footer' class='footer mallThemeFooter'&gt;&lt;div class='technical'&gt;&lt;div class='technicalSupport footerInfo'&gt;&lt;p&gt;&lt;em&gt;&lt;strong&gt;&lt;span style=&quot;text-decoration:underline;color:#FF0000;&quot;&gt;Jackson 版权所有，严禁抄袭！&lt;/span&gt;&lt;/strong&gt;&lt;/em&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span style=&quot;color:#FF6666;&quot;&gt;&lt;span style=&quot;color:#FF0000;&quot;&gt;阅读量:99+&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class='technicalSupport'&gt;&lt;a href='' class='J_supportLink' target='_blank' hidefocus='true'&gt;本站使用&amp;nbsp;&lt;/span&gt;Jn建站&amp;nbsp;搭建&lt;/a&gt; &lt;span class='footerSep PcVer'&gt;|&lt;/span&gt;&lt;a class='PcVer' href='' target='_blank' hidefocus='true'&gt;没有电脑版&lt;/a&gt;&lt;span class='footerSep PcVer'&gt;|&lt;/span&gt;&lt;a class='rep PcVer' href='' target='_blank' hidefocus='true'&gt;无法举报&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt; &lt;div id=&quot;mobiAdvertisement_box&quot; class='mobiAdvertisement_box'&gt; &lt;a id=&quot;mobiAdvertisement_adImg&quot; class=&quot;mobiAdvertisement_adImg webHeaderBg&quot; target='_blank' href=&quot;https://jnyun2.wodemo.com&quot;&gt;Jn建站&gt;&gt;&lt;/a&gt; &lt;div class='mobiAdvertiseClose'&gt; &lt;div id=&quot;mobiAdClose&quot; class=&quot;mobiAdClose&quot;&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;style id='mobiStyleService' type='text/css'&gt;.open .navItem:nth-child(2) {transition-delay: 160ms;} #svebar_1 .icon-serItemIcon:before{content:'\e62c';content:'\e62c';} #svebar_1 .icon-serItemIcon{background-image:none;} .open .navItem:nth-child(4) {transition-delay: 240ms;} #svebar_4 .icon-serItemIcon:before{content:'\e6b2';content:'\e6b2';} #svebar_4 .icon-serItemIcon{background-image:none;} .open .navItem:nth-child(6) {transition-delay: 320ms;} #svebar_3 .icon-serItemIcon:before{content:'\e67c';content:'\e67c';} #svebar_3 .icon-serItemIcon{background-image:none;} .open .navItem:nth-child(8) {transition-delay: 400ms;} #svebar_-2 .icon-serItemIcon:before{content:'\eb25';content:'\eb25';} #svebar_-2 .icon-serItemIcon{background-image:none;} .open .navItem:nth-child(10) {transition-delay: 480ms;} #svebar_2 .icon-serItemIcon:before{content:'\e6a0';content:'\e6a0';} #svebar_2 .icon-serItemIcon{background-image:none;} .open .navItem:nth-child(12) {transition-delay: 560ms;} #svebar_-1 .icon-serItemIcon:before{content:'\eada';content:'\eada';} #svebar_-1 .icon-serItemIcon{background-image:none;} .open .navItem:nth-child(14) {transition-delay: 640ms;} #svebar_6 .icon-serItemIcon:before{content:'\e6f0';color:rgb(31,135,232);} #svebar_6 .icon-serItemIcon{background-image:none;} &lt;/style&gt;&lt;div id='webCustomerServiceBox' class='webCustomerServiceBox' style=''&gt;&lt;div class='customerServiceDiv' id='customerServiceDiv'&gt;&lt;div id='customServiceLine_1' class='customServiceLine'&gt;&lt;/div&gt;&lt;div class='service serviceClass_1' id='customerServiceType_1'&gt;&lt;div id='navItem_1' class='navItem navItem_1 icon-navItem'&gt;&lt;a id='numberHref_1' href='tel:17817601378'&gt;&lt;div class='serBaseIcon'&gt;&lt;div class='icon' id='svebar_1'&gt;&lt;span class='serItemIcon icon-serItemIcon'&gt;&lt;/span&gt;&lt;div id='describeName_1' class='describe'&gt;电话咨询&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='customServiceLine_4' class='customServiceLine'&gt;&lt;/div&gt;&lt;div class='service serviceClass_4' id='customerServiceType_4'&gt;&lt;div id='navItem_4' class='navItem navItem_4 icon-navItem'&gt;&lt;a id='numberHref_4' href='mb.jsp'&gt;&lt;div class='serBaseIcon'&gt;&lt;div class='icon' id='svebar_4'&gt;&lt;span class='serItemIcon icon-serItemIcon'&gt;&lt;/span&gt;&lt;div id='describeName_4' class='describe'&gt;在线留言&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='customServiceLine_3' class='customServiceLine'&gt;&lt;/div&gt;&lt;div class='service serviceClass_3' id='customerServiceType_3'&gt;&lt;div id='navItem_3' class='navItem navItem_3 icon-navItem'&gt;&lt;a id='numberHref_3' href='javascript:;' onclick='Mobi.showMapService()'&gt;&lt;div class='serBaseIcon'&gt;&lt;div class='icon' id='svebar_3'&gt;&lt;span class='serItemIcon icon-serItemIcon'&gt;&lt;/span&gt;&lt;div id='describeName_3' class='describe'&gt;在线地图&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='customServiceLine_-2' class='customServiceLine'&gt;&lt;/div&gt;&lt;div class='service serviceClass_-2' id='customerServiceType_-2'&gt;&lt;div id='navItem_-2' class='navItem navItem_-2 icon-navItem'&gt;&lt;a id='numberHref_-2' href='javascript:;' onclick='Mobi.showWeChatService(&quot;http://13908440.s21i-13.faiusr.com/4/ABUIABAEGAAgtN270wUogb_YxAYwgAk4gAk.png&quot;)'&gt;&lt;div class='serBaseIcon'&gt;&lt;div class='icon' id='svebar_-2'&gt;&lt;span class='serItemIcon icon-serItemIcon'&gt;&lt;/span&gt;&lt;div id='describeName_-2' class='describe'&gt;打赏&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id='customServiceLine_6' class='customServiceLine'&gt;&lt;/div&gt;&lt;div class='service serviceClass_6' id='customerServiceType_6'&gt;&lt;div id='navItem_6' class='navItem navItem_6 icon-navItem'&gt;&lt;a id='numberHref_6'href='/col.jsp?id=126'&gt;&lt;div class='serBaseIcon'&gt;&lt;div class='icon' id='svebar_6'&gt;&lt;span class='serItemIcon icon-serItemIcon'&gt;&lt;/span&gt;&lt;div id='describeName_6' class='describe'&gt;教育&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class='webMapServiceBox fk-webMapServiceBox' id='webMapServiceBox'&gt;&lt;div style='display:table;height:100%;width:100%;border-collapse: collapse;'&gt;&lt;div style='display:table-row;'&gt;&lt;div style='display:table-cell;'&gt;&lt;div class='webMapHeader webHeaderBg'&gt;&lt;div class='g_close icon-gClose' onclick='Mobi.closeMapService()'&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='height:100%;width:100%;display:table-row;'&gt;&lt;div class='f-webMapIframeWrap'&gt;&lt;iframe id='mobiSearchMapFrame' frameborder='0' width='100%' height='100%' scrolling='auto'&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt; &lt;div id=&quot;fullScreenDivCotainer&quot; class='fullScreenDivCotainer'&gt;&lt;/div&gt; &lt;/div&gt; &lt;div id=&quot;fixedAreaBox&quot; class=&quot;fixedAreaBox fixedAreaBox1026_6&quot; tplid=&quot;1026_6&quot;&gt; &lt;/div&gt; &lt;!--设置网站的背景颜色 start--&gt; &lt;div class=&quot;webBackgroundBox &quot;&gt; &lt;div id=&quot;webBodyBackground&quot; class=&quot;webBackground webBackgroundFix&quot;&gt;&lt;/div&gt; &lt;div id='navExistOffPanel' class='navExistOffPanel'&gt;&lt;/div&gt; &lt;/div&gt; &lt;!--设置网站的背景颜色 end--&gt; &lt;!-- ------------------------------------------ --&gt; &lt;/div&gt; &lt;div class=&quot;webRight&quot;&gt;&lt;/div&gt; &lt;script type=&quot;text/javascript&quot; language=&quot;javascript&quot; &gt; //管理态下的预览页面提前作处理 之前这里的g_viewMode先去掉 if( !false &amp;&amp; window.top !== window.self){ var g_className = document.getElementById(&quot;g_body&quot;).className; document.getElementById(&quot;g_body&quot;).className = g_className + &quot; &quot;; } var _oem = false, _baiduBridgeCodes = &quot;&quot;; //用于iframe显示手机模板的时候 给g_web加上width var g_webWidth = 0; if(g_webWidth == 0){ g_webWidth = window.localStorage? localStorage.getItem(&quot;g_webWidth&quot;): Cookie.read(&quot;g_webWidth&quot;); if(g_webWidth != null){ document.getElementById(&quot;g_web&quot;).style.width = g_webWidth + &quot;px&quot;; } } else{ document.getElementById(&quot;g_web&quot;).style.width = g_webWidth + &quot;px&quot;; if (window.localStorage) { localStorage.setItem(&quot;g_webWidth&quot;, g_webWidth); } else { Cookie.write(&quot;g_webWidth&quot;, g_webWidth); } } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;//mo.faisys.com/js/locale/2052.min.js?v=201806051009&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot; src=&quot;//mo.faisys.com/js/jqmobi/jqmobi.min.js?v=201804081340&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot; src=&quot;//mo.faisys.com/js/jqmobi/jqmobi_ui.min.js?v=201804231155&quot;&gt;&lt;/script&gt; &lt;script id=&quot;mobiOperationJS&quot; type=&quot;text/javascript&quot; charset=&quot;utf-8&quot; src=&quot;//mo.faisys.com/js/mobi.min.js?v=201807051727&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; id=&quot;city2JSTag&quot; charset=&quot;utf-8&quot; src=&quot;//mo.faisys.com/js/city2.min.js?v=201807051849&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; var _faiAjax = function(){ //for regexp var r = /\?/; var _o = { type:&quot;get&quot;, url:&quot;&quot;, data:&quot;&quot;, error:function(){}, success:function(){} }; var _sendRequest=function(o) { var xmlhttp = null; //init option code o.type = o.type || _o.type; o.url = o.url || _o.url; o.data = o.data || _o.data; o.error = o.error || _o.error; o.success = o.success || _o.success; if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp = new XMLHttpRequest(); }else{ return; } //the instructions param takes the form of an eval statement if(o.type != &quot;post&quot;) { o.url += ( this.r.test( o.url ) ? &quot;&amp;&quot; : &quot;?&quot; ) + o.data; xmlhttp.open(&quot;GET&quot;, o.url, true); xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 &amp;&amp; xmlhttp.status==200) { o.success( xmlhttp.responseText ); }else if( o.error ){ o.error(); } } xmlhttp.send(); } else { xmlhttp.open(&quot;POST&quot;, o.url, true); //Send the proper header information along with the request xmlhttp.setRequestHeader(&quot;Content-type&quot;, &quot;application/x-www-form-urlencoded; charset=UTF-8&quot;); xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 &amp;&amp; xmlhttp.status==200) { o.success( xmlhttp.responseText ); }else{ o.error(); } } xmlhttp.send(o.data); } } return { ajax:function(option){ try { //此次调用的错误不让抛出给window。防止函数重入 _sendRequest(option); }catch(e){ //alert(e); } } }; }(); var _jsErrCahche = []; window.onerror = function(sMsg,sUrl,sLine){ if (typeof Mobi == 'undefined') { if((window.DocumentTouch &amp;&amp; document instanceof window.DocumentTouch) || 'ontouchstart' in document.documentElement){ alert('您的网页未加载完成，请尝试按“刷新”重新加载。'); }else{ alert('您的网页未加载完成，请尝试按“CTRL+功能键F5”重新加载。'); } } if( sLine &lt; 1 || typeof sMsg != 'string' || sMsg.length &lt; 1 ){ return; } var log = &quot;Error:&quot; + sMsg + &quot;;Line:&quot; + sLine + &quot;;Url:&quot; + sUrl + &quot;;UserAgent:&quot; + navigator.userAgent; var alertLog = &quot;Error:&quot;+sMsg+&quot;\n&quot; + &quot;Line:&quot; + sLine + &quot;\n&quot; + &quot;Url:&quot; + sUrl + &quot;\n&quot;; var encodeUrl = function (url){ return typeof url === &quot;undefined&quot; ? &quot;&quot; : encodeURIComponent(url); }; var ajax = true; var obj = { 'm' : sMsg, 'u' : sUrl, 'l' : sLine }; for( var i = 0; i &lt; _jsErrCahche.length; i ++ ){ if( _jsErrCahche[i].m == obj.m &amp;&amp; _jsErrCahche[i].u == obj.u &amp;&amp; _jsErrCahche[i].l == obj.l ){ ajax = false; break; } } if( ajax ){ _jsErrCahche.push( obj ); _faiAjax.ajax({ type : &quot;post&quot;, url : &quot;ajax/logJsErr.jsp?cmd=jsErr&quot;, data : 'msg='+ encodeUrl(log) }); } if(false){ console.log( alertLog ); } }; if (typeof Fai == 'undefined'){ Fai = {}; //解决页面被嵌套在iframe的场景 Fai.top = window; } Fai.top._isFaiHost = true; Fai.top.moduleManageFontSize = {&quot;module689&quot;:23.1875,&quot;module325&quot;:20.5,&quot;module323&quot;:20.5,&quot;module543&quot;:20.5,&quot;module553&quot;:20.5,&quot;module575&quot;:20.5,&quot;module676&quot;:20.5,&quot;module675&quot;:20.5,&quot;module450&quot;:20.5,&quot;module612&quot;:20.5,&quot;module613&quot;:20.5,&quot;module614&quot;:20.5,&quot;module615&quot;:20.5,&quot;module616&quot;:20.5} Fai.top. _aid = 13908440; Fai.top. _pageId = 3; Fai.top._headerCode = &quot;&quot;; //网站插件代码 Fai.top._other = {&quot;productNewDeInfo&quot;:{&quot;isNewUser&quot;:1,&quot;isProductNewDetail&quot;:1},&quot;newsNewDefInfo&quot;:{&quot;isNewUser&quot;:1,&quot;isNewsNewDetail&quot;:2,&quot;prevVersion&quot;:-1},&quot;mobiServiceOnline&quot;:{&quot;sl&quot;:[{&quot;serviceType&quot;:&quot;0&quot;,&quot;serviceAccount&quot;:&quot;&quot;,&quot;showFont&quot;:&quot;QQ客服&quot;,&quot;showType&quot;:false,&quot;isFontIcon&quot;:&quot;true&quot;,&quot;color&quot;:&quot;rgb(238, 82, 102)&quot;,&quot;fileId&quot;:&quot;&quot;,&quot;classname&quot;:&quot;faisco-icons-scQq&quot;,&quot;filePath&quot;:&quot;&quot;},{&quot;serviceType&quot;:&quot;3&quot;,&quot;serviceAccount&quot;:&quot;13531781840&quot;,&quot;showFont&quot;:&quot;电话咨询&quot;,&quot;showType&quot;:true,&quot;isFontIcon&quot;:&quot;true&quot;,&quot;color&quot;:&quot;rgb(46, 176, 99)&quot;,&quot;fileId&quot;:&quot;&quot;,&quot;classname&quot;:&quot;faisco-icons-scPhone&quot;,&quot;filePath&quot;:&quot;&quot;}],&quot;o&quot;:true},&quot;qrcode_ImageId&quot;:&quot;&quot;,&quot;dc&quot;:12,&quot;mobiScreenFull&quot;:0,&quot;cml&quot;:[],&quot;mc&quot;:{&quot;h&quot;:true,&quot;c&quot;:&quot;&quot;,&quot;t&quot;:1},&quot;hc&quot;:{&quot;h&quot;:true},&quot;favIcon&quot;:{&quot;showType&quot;:0,&quot;id&quot;:&quot;&quot;},&quot;iosIcon&quot;:{&quot;showType&quot;:0,&quot;id&quot;:&quot;&quot;},&quot;WXShareIcon&quot;:{&quot;showType&quot;:0,&quot;id&quot;:&quot;&quot;,&quot;titType&quot;:0,&quot;tit&quot;:&quot;&quot;,&quot;cont&quot;:&quot;&quot;},&quot;templateInfo&quot;:{&quot;templatePresetIndex&quot;:6,&quot;templateDesignType&quot;:1},&quot;mobiBgMusic&quot;:{&quot;isOpen&quot;:0,&quot;id&quot;:&quot;&quot;,&quot;isGlobal&quot;:0,&quot;setting&quot;:{&quot;isAuto&quot;:0,&quot;isLoop&quot;:0,&quot;isHidden&quot;:0,&quot;position&quot;:0},&quot;filePath&quot;:&quot;&quot;},&quot;mobiMallHidden&quot;:0,&quot;tc&quot;:{&quot;h&quot;:true},&quot;pa&quot;:{&quot;st&quot;:0,&quot;ap&quot;:&quot;&quot;,&quot;qrp&quot;:&quot;&quot;,&quot;ma&quot;:&quot;&quot;},&quot;hssnt&quot;:true,&quot;mobiBackTop&quot;:{&quot;isOpen&quot;:0,&quot;color&quot;:&quot;&quot;,&quot;style&quot;:0},&quot;sdss&quot;:{&quot;st&quot;:0,&quot;type&quot;:0}}; Fai.top._bannerData = {&quot;bn&quot;:1,&quot;b&quot;:[],&quot;st&quot;:6,&quot;et&quot;:0,&quot;c&quot;:[],&quot;atOnce&quot;:false,&quot;showType&quot;:0,&quot;h&quot;:false,&quot;sd&quot;:0}; // 横幅数据 Fai.top._pageBannerData = {&quot;bn&quot;:1,&quot;b&quot;:[],&quot;st&quot;:6,&quot;et&quot;:0,&quot;c&quot;:[],&quot;atOnce&quot;:false,&quot;showType&quot;:0,&quot;h&quot;:false,&quot;sd&quot;:0}; // 栏目独立设置横幅的数据 Fai.top._templateBannerData = {&quot;bn&quot;:2,&quot;b&quot;:[],&quot;c&quot;:[{&quot;i&quot;:&quot;AD0IiPTwBhACGAAgyOH-ywUojfaO1AMwgAU4rAI&quot;,&quot;p&quot;:&quot;//14432776.s61i.faiusr.com/2/AD0IiPTwBhACGAAgyOH-ywUojfaO1AMwgAU4rAI.jpg&quot;,&quot;t&quot;:1,&quot;tp&quot;:&quot;//14432776.s61i.faiusr.com/2/AD0IiPTwBhACGAAgyOH-ywUojfaO1AMwgAU4rAI!100x100.jpg&quot;,&quot;w&quot;:640,&quot;h&quot;:300},{&quot;i&quot;:&quot;AD0IiPTwBhACGAAgu_H-ywUozaK-dTCABTisAg&quot;,&quot;p&quot;:&quot;//14432776.s61i.faiusr.com/2/AD0IiPTwBhACGAAgu_H-ywUozaK-dTCABTisAg.jpg&quot;,&quot;t&quot;:1,&quot;tp&quot;:&quot;//14432776.s61i.faiusr.com/2/AD0IiPTwBhACGAAgu_H-ywUozaK-dTCABTisAg!100x100.jpg&quot;,&quot;w&quot;:640,&quot;h&quot;:300}],&quot;st&quot;:2,&quot;et&quot;:5,&quot;atOnce&quot;:true,&quot;showType&quot;:0,&quot;h&quot;:false,&quot;sd&quot;:0}; // 模板栏目的横幅数据 Fai.top._isFreeVer = true; Fai.top._resRoot = '//mo.faisys.com'; Fai.top._templateFrameId = 1026; Fai.top._templateLayoutId = 7; Fai.top._mobiSiteTitleChanged = 0; //用于记录网站标题是否有改动 Fai.top._mobiSiteTitle = {&quot;fontType&quot;:0,&quot;align&quot;:0,&quot;font&quot;:{&quot;size&quot;:12,&quot;family&quot;:&quot;&quot;,&quot;colorType&quot;:0,&quot;color&quot;:&quot;#000&quot;},&quot;bgType&quot;:&quot;0&quot;,&quot;bgFont&quot;:{&quot;color&quot;:&quot;#000&quot;,&quot;alpha&quot;:100},&quot;bgImgFileId&quot;:&quot;&quot;,&quot;bgImgStyle&quot;:&quot;1&quot;,&quot;mbt&quot;:0,&quot;mbc&quot;:{&quot;color&quot;:&quot;#000&quot;,&quot;alpha&quot;:100},&quot;mbi&quot;:&quot;&quot;,&quot;mbit&quot;:1,&quot;mths&quot;:1,&quot;name&quot;:&quot;Jackson工具箱&quot;,&quot;mhl&quot;:0,&quot;mbip&quot;:&quot;//2.ss.faisys.com/image/no-pic.jpg&quot;,&quot;mti&quot;:0,&quot;mtht&quot;:1}; //网站标题数据 Fai.top._onlineServiceJson = {&quot;serviceId&quot;:{&quot;serviceId&quot;:7},&quot;phone&quot;:{&quot;open&quot;:true,&quot;type&quot;:1,&quot;fName&quot;:&quot;电话咨询&quot;,&quot;phoneInfo&quot;:[{&quot;name&quot;:&quot;电话&quot;,&quot;number&quot;:&quot;17817601378&quot;}],&quot;baseSetting&quot;:{&quot;colIconType&quot;:0,&quot;content&quot;:&quot;\\e62c&quot;,&quot;classname&quot;:&quot;faisco-icons-call1&quot;},&quot;typeStr&quot;:&quot;phone&quot;},&quot;sms&quot;:{&quot;open&quot;:false,&quot;name&quot;:&quot;信息咨询&quot;,&quot;number&quot;:&quot;17817601378&quot;,&quot;type&quot;:2,&quot;baseSetting&quot;:{&quot;colIconType&quot;:0,&quot;content&quot;:&quot;\\e6a0&quot;,&quot;classname&quot;:&quot;faisco-icons-mail1&quot;},&quot;typeStr&quot;:&quot;sms&quot;},&quot;map&quot;:{&quot;open&quot;:true,&quot;name&quot;:&quot;在线地图&quot;,&quot;city&quot;:&quot;XXX省XXX市XXX县&quot;,&quot;mark&quot;:&quot;&quot;,&quot;d_address&quot;:&quot;XXX路XXX号&quot;,&quot;type&quot;:3,&quot;baseSetting&quot;:{&quot;colIconType&quot;:0,&quot;content&quot;:&quot;\\e67c&quot;,&quot;classname&quot;:&quot;faisco-icons-gps1&quot;},&quot;typeStr&quot;:&quot;map&quot;},&quot;msg&quot;:{&quot;open&quot;:true,&quot;name&quot;:&quot;在线留言&quot;,&quot;type&quot;:4,&quot;baseSetting&quot;:{&quot;colIconType&quot;:2,&quot;colIconCusType&quot;:0,&quot;iconType&quot;:0,&quot;content&quot;:&quot;\\e6b2&quot;,&quot;color&quot;:&quot;&quot;,&quot;classname&quot;:&quot;faisco-icons-message1&quot;},&quot;typeStr&quot;:&quot;msg&quot;},&quot;baiduBridge&quot;:{&quot;open&quot;:false,&quot;name&quot;:&quot;百度商桥&quot;,&quot;type&quot;:-1,&quot;baseSetting&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;id&quot;:0,&quot;iconType&quot;:0,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;classname&quot;:&quot;faisco-icons-scBdsq2&quot;,&quot;content&quot;:&quot;\\eada&quot;,&quot;color&quot;:&quot;&quot;,&quot;iconFileId&quot;:&quot;iconFileId&quot;},&quot;typeStr&quot;:&quot;baiduBridge&quot;},&quot;open&quot;:true,&quot;order&quot;:[1,4,3,-2,2,5,-1,6],&quot;weChat&quot;:{&quot;open&quot;:true,&quot;name&quot;:&quot;打赏&quot;,&quot;type&quot;:-2,&quot;code&quot;:&quot;http://13908440.s21i-13.faiusr.com/4/ABUIABAEGAAgtN270wUogb_YxAYwgAk4gAk.png&quot;,&quot;baseSetting&quot;:{&quot;colIconType&quot;:0,&quot;content&quot;:&quot;\\eb25&quot;,&quot;classname&quot;:&quot;faisco-icons-M001038&quot;},&quot;typeStr&quot;:&quot;weChat&quot;,&quot;sji&quot;:1},&quot;service6&quot;:{&quot;baseSetting&quot;:{&quot;colIconType&quot;:2,&quot;colIconCusType&quot;:0,&quot;iconType&quot;:0,&quot;content&quot;:&quot;\\e6f0&quot;,&quot;color&quot;:&quot;rgb(31,135,232)&quot;,&quot;classname&quot;:&quot;faisco-icons-student2&quot;,&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;/col.jsp?id=126&quot;,&quot;columnType&quot;:103,&quot;url&quot;:&quot;/col.jsp?id=126&quot;,&quot;jumpType&quot;:1}},&quot;name&quot;:&quot;教育&quot;,&quot;open&quot;:true,&quot;type&quot;:6,&quot;typeStr&quot;:&quot;service6&quot;},&quot;bg&quot;:{&quot;t&quot;:0,&quot;c&quot;:&quot;&quot;},&quot;wordIcon&quot;:{&quot;t&quot;:0,&quot;c&quot;:&quot;&quot;},&quot;tcInfo&quot;:[{&quot;name&quot;:&quot;QQ客服&quot;,&quot;number&quot;:&quot;&quot;}]};//在线客服 Fai.top._openOnlineService = true; Fai.top._manageMode = false; Fai.top.sessionMemberId = 0; Fai.top.memberName = &quot;&quot;; Fai.top._colInfo = {&quot;aid&quot;:13908440,&quot;wid&quot;:0,&quot;id&quot;:3,&quot;type&quot;:3,&quot;flag&quot;:320,&quot;name&quot;:&quot;首页&quot;,&quot;banner&quot;:{&quot;bn&quot;:1,&quot;b&quot;:[],&quot;st&quot;:6,&quot;et&quot;:0,&quot;c&quot;:[],&quot;atOnce&quot;:false,&quot;showType&quot;:0,&quot;h&quot;:false,&quot;sd&quot;:0},&quot;moduleList&quot;:[689,325,323,543,553,575,676,675,450,612,613,614,615,616],&quot;moduleHidden&quot;:[],&quot;browserTitle&quot;:&quot;&quot;,&quot;createTime&quot;:1514091496000,&quot;updateTime&quot;:1527294405000,&quot;baseSetting&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;&quot;,&quot;columnType&quot;:0}},&quot;authMemberLevelId&quot;:0,&quot;extId&quot;:0,&quot;other&quot;:{&quot;pgt&quot;:0,&quot;pgb&quot;:{&quot;type&quot;:0,&quot;catalogList&quot;:[],&quot;s&quot;:4}},&quot;defaultName&quot;:&quot;首页&quot;,&quot;url&quot;:&quot;/index.jsp&quot;,&quot;valid&quot;:true,&quot;columnStyle&quot;:{&quot;s&quot;:2},&quot;title&quot;:{&quot;fontType&quot;:0,&quot;align&quot;:0,&quot;font&quot;:{&quot;size&quot;:12,&quot;family&quot;:&quot;&quot;,&quot;colorType&quot;:0,&quot;color&quot;:&quot;#000&quot;},&quot;bgType&quot;:&quot;0&quot;,&quot;bgFont&quot;:{&quot;color&quot;:&quot;#000&quot;,&quot;alpha&quot;:100},&quot;bgImgFileId&quot;:&quot;&quot;,&quot;bgImgStyle&quot;:&quot;1&quot;,&quot;mbt&quot;:0,&quot;mhl&quot;:0,&quot;mbc&quot;:{&quot;color&quot;:&quot;#000&quot;,&quot;alpha&quot;:100},&quot;mbi&quot;:&quot;&quot;,&quot;mbit&quot;:1,&quot;mti&quot;:0,&quot;mths&quot;:0,&quot;mtht&quot;:1},&quot;logo&quot;:{&quot;i&quot;:&quot;&quot;,&quot;h&quot;:true,&quot;a&quot;:1,&quot;style&quot;:0,&quot;marginType&quot;:0,&quot;margin&quot;:{&quot;top&quot;:0,&quot;bottom&quot;:0,&quot;left&quot;:0,&quot;right&quot;:0}},&quot;independent&quot;:false,&quot;allowed&quot;:true,&quot;selectable&quot;:true,&quot;forbid&quot;:false}; Fai.top._lcid = 2052; // 当前的语言版本 Fai.top._serviceList = [{&quot;serviceType&quot;:&quot;0&quot;,&quot;serviceAccount&quot;:&quot;&quot;,&quot;showFont&quot;:&quot;QQ客服&quot;,&quot;showType&quot;:false,&quot;isFontIcon&quot;:&quot;true&quot;,&quot;color&quot;:&quot;rgb(238, 82, 102)&quot;,&quot;fileId&quot;:&quot;&quot;,&quot;classname&quot;:&quot;faisco-icons-scQq&quot;,&quot;filePath&quot;:&quot;&quot;},{&quot;serviceType&quot;:&quot;3&quot;,&quot;serviceAccount&quot;:&quot;13531781840&quot;,&quot;showFont&quot;:&quot;电话咨询&quot;,&quot;showType&quot;:true,&quot;isFontIcon&quot;:&quot;true&quot;,&quot;color&quot;:&quot;rgb(46, 176, 99)&quot;,&quot;fileId&quot;:&quot;&quot;,&quot;classname&quot;:&quot;faisco-icons-scPhone&quot;,&quot;filePath&quot;:&quot;&quot;}]; //商城主题在线客服 Fai.top._mallService = 1; Fai.top.inTabMaqueeHelper = {}; // 记录标签模块内子模块的动画函数 Fai.top._isBUser = false; Fai.top._isMobiMallOpen = false;//是否开通手机商城 Fai.top._bookingOpen = false Fai.top._newsCommentOpen = false; Fai.top._webDebug = false; // 本地环境(独立开发也是true) Fai.top._jzProUrl = ''; Fai.top._portalHost = 'adm.webportal.top'; Fai.top._homeHost = ''; Fai.top._bookingModuleTitle = '在线预约'Mobi.bookingBoxBind(false); //多网站聚合页地址 Fai.top._jzAllSiteDomain = _oem ? 'i.vip.webportal.top' : 'i.jz.fkw.com'; Fai.top._jzProUrl = 'jz.fkw.com'; Fai.top._portalHost = 'www.faisco.cn'; Fai.top._homeHost = 'www.faisco.com'; jm(document).ready(function() { Mobi.ajaxLoadModuleDom(3, 0, {&quot;_ajaxLoadModuleIDList&quot;:[],&quot;fullUrl&quot;:&quot;http://m.jackson212212.icoc.me/&quot;,&quot;topBarOptionInfo&quot;:{&quot;mobiMallOpen&quot;:false}}); //判断该栏目是否被删除 if(jm.isEmptyObject(Fai.top._colInfo)){ alert(&quot;该页面已经删除，点击确定后，将返回到首页&quot;); document.location.href = &quot;/index.jsp&quot; } //Mobi.viewPageBeforeInit(); // 绑定退出事件 jm(window).bind(&quot;load&quot;, function() { //当前模块 start //Mobi.initSwipe('bannerSwipe',{&quot;bn&quot;:1,&quot;b&quot;:[],&quot;st&quot;:6,&quot;et&quot;:0,&quot;c&quot;:[],&quot;atOnce&quot;:false,&quot;showType&quot;:0,&quot;h&quot;:false,&quot;sd&quot;:0}); if(!Mobi.bannerAnimate.init({&quot;bn&quot;:1,&quot;b&quot;:[],&quot;st&quot;:6,&quot;et&quot;:0,&quot;c&quot;:[],&quot;atOnce&quot;:false,&quot;showType&quot;:0,&quot;h&quot;:false,&quot;sd&quot;:0})){ Mobi.initBannerDefaultDom({&quot;bn&quot;:1,&quot;b&quot;:[],&quot;st&quot;:6,&quot;et&quot;:0,&quot;c&quot;:[],&quot;atOnce&quot;:false,&quot;showType&quot;:0,&quot;h&quot;:false,&quot;sd&quot;:0}); Mobi.initSwipe('bannerSwipe',{&quot;bn&quot;:1,&quot;b&quot;:[],&quot;st&quot;:6,&quot;et&quot;:0,&quot;c&quot;:[],&quot;atOnce&quot;:false,&quot;showType&quot;:0,&quot;h&quot;:false,&quot;sd&quot;:0}); }; //调整导航栏与g_web的top值 //部分主题有css3动画，所以会导致计算失误，需要等css3动画执行完之后计算 Mobi.autoFixGWebTop(7); Mobi.initBgmCookie(); Mobi.initFooterHeight(); }); //手机视图初始化函数 try { Mobi.initMobiPage({&quot;id&quot;:1026,&quot;createTime&quot;:&quot;2017-07-27&quot;,&quot;preview&quot;:&quot;//mo.faisys.com/image/template/1026/1026.jpg&quot;,&quot;previewGif&quot;:&quot;//mo.faisys.com/image/template/1026/1026.gif&quot;,&quot;color&quot;:0,&quot;style&quot;:[&quot;//mo.faisys.com/css/template/1026_1.min.css?v=201806081418&quot;,&quot;//mo.faisys.com/css/template/1026_2.min.css?v=201806081418&quot;,&quot;//mo.faisys.com/css/template/1026_3.min.css?v=201806081418&quot;,&quot;//mo.faisys.com/css/template/1026_4.min.css?v=201806081418&quot;,&quot;//mo.faisys.com/css/template/1026_5.min.css?v=201806081418&quot;,&quot;//mo.faisys.com/css/template/1026_6.min.css?v=201806081418&quot;,&quot;//mo.faisys.com/css/template/1026_7.min.css?v=201806081418&quot;,&quot;//mo.faisys.com/css/template/1026_8.min.css?v=201806081418&quot;,&quot;//mo.faisys.com/css/template/1026_9.min.css?v=201807021155&quot;],&quot;type&quot;:0,&quot;moduleStyle&quot;:0,&quot;designType&quot;:1,&quot;presetIndex&quot;:0,&quot;cube&quot;:0,&quot;layout&quot;:7,&quot;imagePage&quot;:347,&quot;backgroundImage&quot;:0,&quot;colors&quot;:[],&quot;colorsName&quot;:[]}); } catch (err) { console.log(err); } // 取统计数据 if(true) { Mobi.statisticalMobiVisitors({colId:3, pdId:-1, ndId:-1, sc:0, rf:&quot;&quot;, statId:-1}); if(!false){ //统计访问时长 Mobi.mobiStatVisitTime(); } } //前端性能数据上报 Mobi.report(); // 用于添加分销的标识码 dannel Mobi.addDistCode(); Mobi.initOfficalNavSubMenu({&quot;nav3&quot;:{&quot;id&quot;:3,&quot;name&quot;:&quot;首页&quot;,&quot;show&quot;:true,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIAxIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/index.jsp&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:3,&quot;u&quot;:&quot;/index.jsp&quot;,&quot;n&quot;:&quot;首页&quot;,&quot;s&quot;:&quot;AGQIAxIA&quot;}},&quot;cil&quot;:[]},&quot;nav9&quot;:{&quot;id&quot;:9,&quot;name&quot;:&quot;留言板&quot;,&quot;show&quot;:true,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQICRIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/mb.jsp&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:9,&quot;u&quot;:&quot;/mb.jsp&quot;,&quot;n&quot;:&quot;留言板&quot;,&quot;s&quot;:&quot;AGQICRIA&quot;}},&quot;cil&quot;:[]},&quot;nav107&quot;:{&quot;id&quot;:107,&quot;name&quot;:&quot;关于我们&quot;,&quot;show&quot;:true,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:2,&quot;colIconCusType&quot;:1,&quot;iconFileId&quot;:&quot;_faiMaterial_2000164&quot;,&quot;iconFilePath&quot;:&quot;//2.ss.faisys.com/image/materialLib/icon/2000164.gif?v=201712181557&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIaxIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=107&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:107,&quot;u&quot;:&quot;/col.jsp?id=107&quot;,&quot;n&quot;:&quot;关于我们&quot;,&quot;s&quot;:&quot;AGQIaxIA&quot;}},&quot;cil&quot;:[]},&quot;nav11&quot;:{&quot;id&quot;:11,&quot;name&quot;:&quot;会员注册&quot;,&quot;show&quot;:true,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQICxIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/signup.jsp&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:11,&quot;u&quot;:&quot;/signup.jsp&quot;,&quot;n&quot;:&quot;会员注册&quot;,&quot;s&quot;:&quot;AGQICxIA&quot;}},&quot;cil&quot;:[]},&quot;nav12&quot;:{&quot;id&quot;:12,&quot;name&quot;:&quot;会员中心&quot;,&quot;show&quot;:true,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIDBIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/profile.jsp&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:12,&quot;u&quot;:&quot;/profile.jsp&quot;,&quot;n&quot;:&quot;会员中心&quot;,&quot;s&quot;:&quot;AGQIDBIA&quot;}},&quot;cil&quot;:[]},&quot;nav10&quot;:{&quot;id&quot;:10,&quot;name&quot;:&quot;会员登录&quot;,&quot;show&quot;:true,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIChIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/login.jsp&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:10,&quot;u&quot;:&quot;/login.jsp&quot;,&quot;n&quot;:&quot;会员登录&quot;,&quot;s&quot;:&quot;AGQIChIA&quot;}},&quot;cil&quot;:[]},&quot;nav126&quot;:{&quot;id&quot;:126,&quot;name&quot;:&quot;教育&quot;,&quot;show&quot;:true,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;\\e6f0&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;rgb(31,135,232)&quot;,&quot;colIconType&quot;:2,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIfhIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=126&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:126,&quot;u&quot;:&quot;/col.jsp?id=126&quot;,&quot;n&quot;:&quot;教育&quot;,&quot;s&quot;:&quot;AGQIfhIA&quot;}},&quot;cil&quot;:[]},&quot;nav125&quot;:{&quot;id&quot;:125,&quot;name&quot;:&quot;开启小神！&quot;,&quot;show&quot;:true,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;\\ec53&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:2,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIfRIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=125&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:125,&quot;u&quot;:&quot;/col.jsp?id=125&quot;,&quot;n&quot;:&quot;开启小神！&quot;,&quot;s&quot;:&quot;AGQIfRIA&quot;}},&quot;cil&quot;:[]},&quot;nav124&quot;:{&quot;id&quot;:124,&quot;name&quot;:&quot;玄幻秘层&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIfBIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=124&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:124,&quot;u&quot;:&quot;/col.jsp?id=124&quot;,&quot;n&quot;:&quot;玄幻秘层&quot;,&quot;s&quot;:&quot;AGQIfBIA&quot;}},&quot;cil&quot;:[]},&quot;nav122&quot;:{&quot;id&quot;:122,&quot;name&quot;:&quot;呵呵&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIehIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=122&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:122,&quot;u&quot;:&quot;/col.jsp?id=122&quot;,&quot;n&quot;:&quot;呵呵&quot;,&quot;s&quot;:&quot;AGQIehIA&quot;}},&quot;cil&quot;:[]},&quot;nav114&quot;:{&quot;id&quot;:114,&quot;name&quot;:&quot;5英语&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIchIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=114&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:114,&quot;u&quot;:&quot;/col.jsp?id=114&quot;,&quot;n&quot;:&quot;5英语&quot;,&quot;s&quot;:&quot;AGQIchIA&quot;}},&quot;cil&quot;:[]},&quot;nav113&quot;:{&quot;id&quot;:113,&quot;name&quot;:&quot;5语文&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIcRIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=113&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:113,&quot;u&quot;:&quot;/col.jsp?id=113&quot;,&quot;n&quot;:&quot;5语文&quot;,&quot;s&quot;:&quot;AGQIcRIA&quot;}},&quot;cil&quot;:[]},&quot;nav112&quot;:{&quot;id&quot;:112,&quot;name&quot;:&quot;5&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIcBIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=112&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:112,&quot;u&quot;:&quot;/col.jsp?id=112&quot;,&quot;n&quot;:&quot;5&quot;,&quot;s&quot;:&quot;AGQIcBIA&quot;}},&quot;cil&quot;:[]},&quot;nav115&quot;:{&quot;id&quot;:115,&quot;name&quot;:&quot;4&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIcxIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=115&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:115,&quot;u&quot;:&quot;/col.jsp?id=115&quot;,&quot;n&quot;:&quot;4&quot;,&quot;s&quot;:&quot;AGQIcxIA&quot;}},&quot;cil&quot;:[]},&quot;nav120&quot;:{&quot;id&quot;:120,&quot;name&quot;:&quot;Jackson高级云端媒体&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIeBIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=120&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:120,&quot;u&quot;:&quot;/col.jsp?id=120&quot;,&quot;n&quot;:&quot;Jackson高级云端媒体&quot;,&quot;s&quot;:&quot;AGQIeBIA&quot;}},&quot;cil&quot;:[]}},2, true);Mobi.initShare('footerShareWeixin','footerShareWeibo','footerShareQQ');Mobi.initFooterLanguageEvent();Mobi.switchJump();Mobi.initFooterStyle({&quot;fb&quot;:{&quot;y&quot;:0,&quot;c&quot;:&quot;&quot;,&quot;f&quot;:&quot;&quot;,&quot;r&quot;:0,&quot;p&quot;:&quot;&quot;,&quot;ps&quot;:0},&quot;rt&quot;:{&quot;y&quot;:0,&quot;s&quot;:-1,&quot;f&quot;:&quot;&quot;,&quot;c&quot;:&quot;&quot;},&quot;gt&quot;:{&quot;y&quot;:0}});Mobi.showQqBg();Mobi.showPhonesBg();Mobi.unLoadForWechat();Mobi.outerUrlJump();Mobi.initNavSubMenu({&quot;nav3&quot;:{&quot;id&quot;:3,&quot;name&quot;:&quot;首页&quot;,&quot;show&quot;:true,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIAxIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/index.jsp&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:3,&quot;u&quot;:&quot;/index.jsp&quot;,&quot;n&quot;:&quot;首页&quot;,&quot;s&quot;:&quot;AGQIAxIA&quot;}},&quot;cil&quot;:[]},&quot;nav107&quot;:{&quot;id&quot;:107,&quot;name&quot;:&quot;关于我们&quot;,&quot;show&quot;:true,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:2,&quot;colIconCusType&quot;:1,&quot;iconFileId&quot;:&quot;_faiMaterial_2000164&quot;,&quot;iconFilePath&quot;:&quot;//2.ss.faisys.com/image/materialLib/icon/2000164.gif?v=201712181557&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIaxIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=107&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:107,&quot;u&quot;:&quot;/col.jsp?id=107&quot;,&quot;n&quot;:&quot;关于我们&quot;,&quot;s&quot;:&quot;AGQIaxIA&quot;}},&quot;cil&quot;:[]},&quot;nav9&quot;:{&quot;id&quot;:9,&quot;name&quot;:&quot;留言板&quot;,&quot;show&quot;:true,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQICRIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/mb.jsp&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:9,&quot;u&quot;:&quot;/mb.jsp&quot;,&quot;n&quot;:&quot;留言板&quot;,&quot;s&quot;:&quot;AGQICRIA&quot;}},&quot;cil&quot;:[]},&quot;nav11&quot;:{&quot;id&quot;:11,&quot;name&quot;:&quot;会员注册&quot;,&quot;show&quot;:true,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQICxIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/signup.jsp&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:11,&quot;u&quot;:&quot;/signup.jsp&quot;,&quot;n&quot;:&quot;会员注册&quot;,&quot;s&quot;:&quot;AGQICxIA&quot;}},&quot;cil&quot;:[]},&quot;nav10&quot;:{&quot;id&quot;:10,&quot;name&quot;:&quot;会员登录&quot;,&quot;show&quot;:true,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIChIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/login.jsp&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:10,&quot;u&quot;:&quot;/login.jsp&quot;,&quot;n&quot;:&quot;会员登录&quot;,&quot;s&quot;:&quot;AGQIChIA&quot;}},&quot;cil&quot;:[]},&quot;nav12&quot;:{&quot;id&quot;:12,&quot;name&quot;:&quot;会员中心&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIDBIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/profile.jsp&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:12,&quot;u&quot;:&quot;/profile.jsp&quot;,&quot;n&quot;:&quot;会员中心&quot;,&quot;s&quot;:&quot;AGQIDBIA&quot;}},&quot;cil&quot;:[]},&quot;nav125&quot;:{&quot;id&quot;:125,&quot;name&quot;:&quot;开启小神！&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;\\ec53&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:2,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIfRIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=125&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:125,&quot;u&quot;:&quot;/col.jsp?id=125&quot;,&quot;n&quot;:&quot;开启小神！&quot;,&quot;s&quot;:&quot;AGQIfRIA&quot;}},&quot;cil&quot;:[]},&quot;nav124&quot;:{&quot;id&quot;:124,&quot;name&quot;:&quot;玄幻秘层&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIfBIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=124&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:124,&quot;u&quot;:&quot;/col.jsp?id=124&quot;,&quot;n&quot;:&quot;玄幻秘层&quot;,&quot;s&quot;:&quot;AGQIfBIA&quot;}},&quot;cil&quot;:[]},&quot;nav122&quot;:{&quot;id&quot;:122,&quot;name&quot;:&quot;呵呵&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIehIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=122&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:122,&quot;u&quot;:&quot;/col.jsp?id=122&quot;,&quot;n&quot;:&quot;呵呵&quot;,&quot;s&quot;:&quot;AGQIehIA&quot;}},&quot;cil&quot;:[]},&quot;nav114&quot;:{&quot;id&quot;:114,&quot;name&quot;:&quot;5英语&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIchIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=114&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:114,&quot;u&quot;:&quot;/col.jsp?id=114&quot;,&quot;n&quot;:&quot;5英语&quot;,&quot;s&quot;:&quot;AGQIchIA&quot;}},&quot;cil&quot;:[]},&quot;nav113&quot;:{&quot;id&quot;:113,&quot;name&quot;:&quot;5语文&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIcRIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=113&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:113,&quot;u&quot;:&quot;/col.jsp?id=113&quot;,&quot;n&quot;:&quot;5语文&quot;,&quot;s&quot;:&quot;AGQIcRIA&quot;}},&quot;cil&quot;:[]},&quot;nav112&quot;:{&quot;id&quot;:112,&quot;name&quot;:&quot;5&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIcBIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=112&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:112,&quot;u&quot;:&quot;/col.jsp?id=112&quot;,&quot;n&quot;:&quot;5&quot;,&quot;s&quot;:&quot;AGQIcBIA&quot;}},&quot;cil&quot;:[]},&quot;nav115&quot;:{&quot;id&quot;:115,&quot;name&quot;:&quot;4&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIcxIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=115&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:115,&quot;u&quot;:&quot;/col.jsp?id=115&quot;,&quot;n&quot;:&quot;4&quot;,&quot;s&quot;:&quot;AGQIcxIA&quot;}},&quot;cil&quot;:[]},&quot;nav120&quot;:{&quot;id&quot;:120,&quot;name&quot;:&quot;Jackson高级云端媒体&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;colIconType&quot;:0,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIeBIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=120&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:120,&quot;u&quot;:&quot;/col.jsp?id=120&quot;,&quot;n&quot;:&quot;Jackson高级云端媒体&quot;,&quot;s&quot;:&quot;AGQIeBIA&quot;}},&quot;cil&quot;:[]},&quot;nav126&quot;:{&quot;id&quot;:126,&quot;name&quot;:&quot;教育&quot;,&quot;show&quot;:false,&quot;icon&quot;:{&quot;c&quot;:0,&quot;i&quot;:0,&quot;iconType&quot;:0,&quot;id&quot;:0,&quot;content&quot;:&quot;\\e6f0&quot;,&quot;classname&quot;:&quot;&quot;,&quot;color&quot;:&quot;rgb(31,135,232)&quot;,&quot;colIconType&quot;:2,&quot;colIconCusType&quot;:0,&quot;iconFileId&quot;:&quot;&quot;,&quot;iconFilePath&quot;:&quot;&quot;},&quot;jumpCtrl&quot;:{&quot;ide&quot;:&quot;AGQIfhIA&quot;,&quot;columnType&quot;:100,&quot;href&quot;:&quot;/col.jsp?id=126&quot;,&quot;info&quot;:{&quot;t&quot;:100,&quot;i&quot;:126,&quot;u&quot;:&quot;/col.jsp?id=126&quot;,&quot;n&quot;:&quot;教育&quot;,&quot;s&quot;:&quot;AGQIfhIA&quot;}},&quot;cil&quot;:[]}}, 7, 6);Mobi.setShowSiteTitleBgFlag('0');Mobi.changeSiteTitleBg('null','null','null','null','null');Mobi.logoSizeCompressByMargin();Mobi.titlePositionRefreshByLogo();Mobi.bindTopIconBack();Mobi.initModulePhotoDetailSwipe('module689', [{&quot;id&quot;:&quot;ABUIABACGAAgt7yi2AUo4JbD8wcwwAc4nAQ&quot;,&quot;openLink&quot;:true,&quot;ide&quot;:&quot;http://uee.me/VarM&quot;,&quot;desc&quot;:&quot;&quot;,&quot;name&quot;:&quot;&quot;,&quot;mobiDetail&quot;:0},{&quot;id&quot;:&quot;ABUIABACGAAg19Gi2AUosanZ2QQwwAc4nAQ&quot;,&quot;openLink&quot;:true,&quot;ide&quot;:&quot;http://dwz.uixsj.cn/jD&quot;,&quot;desc&quot;:&quot;&quot;,&quot;name&quot;:&quot;&quot;,&quot;mobiDetail&quot;:0},{&quot;id&quot;:&quot;ABUIABACGAAgr6mV2gUo_oKEiAUwhAc4-wI&quot;,&quot;openLink&quot;:true,&quot;ide&quot;:&quot;https://0x9.me/8OdfV&quot;,&quot;desc&quot;:&quot;&quot;,&quot;name&quot;:&quot;&quot;,&quot;mobiDetail&quot;:0},{&quot;id&quot;:&quot;ABUIABACGAAgtamV2gUopfCH_wEwhAc4-wI&quot;,&quot;openLink&quot;:true,&quot;ide&quot;:&quot;https://0x9.me/qjBPJ&quot;,&quot;desc&quot;:&quot;&quot;,&quot;name&quot;:&quot;&quot;,&quot;mobiDetail&quot;:0},{&quot;id&quot;:&quot;ABUIABACGAAg3amV2gUopKnQ2wMwhAc4-wI&quot;,&quot;openLink&quot;:true,&quot;ide&quot;:&quot;https://0x9.me/8lzBw&quot;,&quot;desc&quot;:&quot;&quot;,&quot;name&quot;:&quot;&quot;,&quot;mobiDetail&quot;:0}]);Mobi.initPhotoSwipe(689,[&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;],5000.0,1500.0,0); Mobi.noticeLeftRightMarquee({ id:'325', direction:'left', loop:'infinite', speed:'fast', moveout:false ,isScrolling : true ,noticeType : 1});Mobi.initModuleCubeNavItemHeight(7,543);Mobi.loadImgAlone(543);Mobi.initModuleCubeNavItemHeight(7,553);Mobi.loadImgAlone(553);Mobi.initModuleCubeNavItemHeight(7,575);Mobi.loadImgAlone(575);Mobi.initModuleVote({id:'4', delay:-1, mid:676, isVoted:false});window.F1siteFormItemList=[{&quot;id&quot;:0,&quot;name&quot;:&quot;分享您的经历，有机会上头条哦！（文件建议压缩）&quot;,&quot;must&quot;:true,&quot;type&quot;:7,&quot;input&quot;:&quot;&quot;,&quot;hide&quot;:false,&quot;size&quot;:1,&quot;isAllFile&quot;:true,&quot;dftl&quot;:&quot;&quot;,&quot;cftl&quot;:&quot;&quot;,&quot;placeholder&quot;:&quot;&quot;,&quot;headline&quot;:&quot;&quot;,&quot;openAreaCode&quot;:false,&quot;dateSetting&quot;:{},&quot;sys&quot;:false}];Mobi.siteFormFileUploadHtml(0, 450,[],false,&quot;http://www.faisco.cn/portal.jsp?buySiteVer=true&amp;siteSid=0&amp;stdOrPopVer=2#appId=shop&quot;,false,1, &quot;//mo.faisys.com/js/jquery/jquery-core.min.js?v=201803211408&quot;, &quot;//mo.faisys.com/js/comm/SWFUpload2v/jquery.uploadify.min.js?v=201807101415&quot;,&quot;jackson212212.icoc.me&quot;, '选择文件');Mobi.fixIphoneStyle(1, 450)Mobi.addParentDivToTable();Mobi.initModulePhotoSwipe('J_richContentPanel612', 'rich');Mobi.addParentDivToTable();Mobi.initModulePhotoSwipe('J_richContentPanel613', 'rich');Mobi.addParentDivToTable();Mobi.initModulePhotoSwipe('J_richContentPanel614', 'rich');Mobi.addParentDivToTable();Mobi.initModulePhotoSwipe('J_richContentPanel615', 'rich');Mobi.addParentDivToTable();Mobi.initModulePhotoSwipe('J_richContentPanel616', 'rich');Mobi.manageFaiscoAd(7); // 访客态页面提示错误 if(!Fai.top._manageMode ){ errnoIng(); } setTimeout(&quot;hasOpenFaiscoBaiduBridge()&quot;,1000);//延迟一秒，等待百度商桥加载完成 initManagePage(); Mobi.initFooter();//初始化页脚 }); //针对管理态做初始化 by jser 2017-10-23 function initManagePage(){ var isManageMode = (Fai.top._manageMode === true); if(!isManageMode){ return; } Fai.top.Mobi.logDogWithInitManagePage(); } // 获取url参数 function getUrlQueryString(name){ var reg = new RegExp(&quot;(^|&amp;)&quot;+ name +&quot;=([^&amp;]*)(&amp;|$)&quot;); var r = window.location.search.substr(1).match(reg); if(r!= null){ return unescape(r[2]); } return null; } // 页面错误提示 function errnoIng(){ // 获取参数errno var errno = getUrlQueryString(&quot;errno&quot;); if(errno == 14){ Mobi.ing(LS.memberLoginNoPermission); } } //Mobi.preventScroll(document.getElementById(&quot;g_body&quot;));//阻止滚轮事件冒泡 //访客态下，统计微信浏览器的使用情况 if(Mobi.isWechat()){ Mobi.logDog(200055, 1); }else{ Mobi.logDog(200055, 0); } //管理下，禁止点击跳转外链 //接入我们的百度商桥才隐藏默认的图标 function hasOpenFaiscoBaiduBridge(){ if (Fai.top._mallService == 2) { //商城主题 for(var i in Fai.top._serviceList) { if ( Fai.top._serviceList[i].serviceType == 2) { if ( Fai.top._serviceList[i].showType == true) { if (&quot;_other&quot; in Fai.top &amp;&amp; !Fai.top._other.hc.h &amp;&amp; Fai.top._headerCode.indexOf(&quot;hm.baidu.com&quot;) &gt; -1) { Fai.top.Mobi.getPreviewWindow().jm(&quot;ins#newBridge&quot;).show(); } else { Fai.top.Mobi.getPreviewWindow().jm(&quot;ins#newBridge&quot;).hide(); } break; } else { if(jm(&quot;a[href*='Mobi.showBaiduBridge']&quot;).length &lt; 1){ Fai.top.Mobi.getPreviewWindow().jm(&quot;ins#newBridge&quot;).show(); break; } } } else { if(jm(&quot;a[href*='Mobi.showBaiduBridge']&quot;).length &lt; 1){ Fai.top.Mobi.getPreviewWindow().jm(&quot;ins#newBridge&quot;).show(); } } } } else { //非商城主题 if (Fai.top._onlineServiceJson.baiduBridge.open == true) { Fai.top.Mobi.getPreviewWindow().jm(&quot;ins#newBridge&quot;).hide(); } else { if(jm(&quot;a[href*='Mobi.showBaiduBridge']&quot;).length &lt; 1){ Fai.top.Mobi.getPreviewWindow().jm(&quot;ins#newBridge&quot;).show(); } } } //百度商桥统计 jm(&quot;#newBridge #nb_icon_wrap&quot;).off('click.log').on('click.log', function(){ Mobi.logDog(200171, 5); }); } //解决苹果手机浏览模板网站，右下角的手机模板显示不正常的bug if (false) { var mallBuy = localStorage.getItem(&quot;mallBuyCallBack&quot;); if (!! mallBuy) { localStorage.removeItem(&quot;mallBuyCallBack&quot;); mallBuy = jm.parseJSON(mallBuy); if (mallBuy.login) { Mobi.mallBuy(mallBuy.productId, mallBuy.buyType, mallBuy.entry, mallBuy.moduleId, jm.parseJSON(mallBuy.option), mallBuy.count, mallBuy.options); } } } function popupCouponMsg(msg){ var ing = jm(&quot;.mobiCouponMsgBox&quot;); ing.remove(); jm(&quot;&lt;div class='mobiCouponMsgBox'&gt;&lt;/div&gt;&quot;).appendTo(&quot;body&quot;); ing = jm(&quot;.mobiCouponMsgBox&quot;); jm(msg).appendTo(ing); window.setTimeout(function(){ing.css(&quot;visibility&quot;,&quot;hidden&quot;);ing.css(&quot;opacity&quot;,&quot;0&quot;);}, 1500); } // 互动跳转领取优惠券逻辑 var hdCoupon = jm.cookie(&quot;hdCoupon&quot;); if (hdCoupon) { var memberId = null; if (!! memberId) { jm.cookie(&quot;hdCoupon&quot;, null); jm.ajax({ type: 'post', url:&quot;ajax/mallCoupon_h.jsp&quot;, data:&quot;cmd=receiveCoupon&amp;fromHd=true&amp;bgId=0&amp;cid=&quot;+jm.cookie(&quot;hdCouponId&quot;),//针对IE6缓存 dataType:'json', success:function(result){ jm.cookie(&quot;hdCouponId&quot;, null); if(result.success){ var coupon = result.coupon; var content = []; content.push('&lt;div class=&quot;mobiCouponMsgPanl&quot;&gt;'); content.push( '&lt;div class=&quot;mobiCouponMsg&quot;&gt;'); content.push( '&lt;div class=&quot;sTop&quot;&gt;'+LS.successGet+'&lt;/div&gt;'); content.push( '&lt;/div&gt;'); content.push('&lt;/div&gt;'); popupCouponMsg(content.join('')); window.setTimeout(function(){Fai.top.location.href = '/'}, 1500); } else { var rt = result.rt; if(rt == -23){//WEB_NO_LOGIN Fai.top.location.href = 'login.jsp'; jm.cookie(&quot;hdCoupon&quot;, true); } else if(rt == -4){ //COUNT_LIMIT var content = []; content.push('&lt;div class=&quot;mobiCouponMsgPanl2&quot;&gt;'); content.push( '&lt;div class=&quot;mobiCouponMsg&quot;&gt;'); content.push( '&lt;div class=&quot;fBottom&quot;&gt;'+LS.overGet+'&lt;/div&gt;'); content.push( '&lt;/div&gt;'); content.push('&lt;/div&gt;'); popupCouponMsg(content.join('')); } else { var content = []; content.push('&lt;div class=&quot;mobiCouponMsgPanl2&quot;&gt;'); content.push( '&lt;div class=&quot;mobiCouponMsg&quot;&gt;'); content.push( '&lt;div class=&quot;fBottom&quot;&gt;'+LS.isNoneCoupon+'&lt;/div&gt;'); content.push( '&lt;/div&gt;'); content.push('&lt;/div&gt;'); popupCouponMsg(content.join('')); } } }, error:function(){ Mobi.ing(LS.systemError); } }); } } var receiveCouponFromHd = false; var couponId = 0; var savePrice = 0.0; if (receiveCouponFromHd) { var windowWidth = Fai.top.document.body.clientWidth; var windowHeight = Fai.top.document.body.clientHeight; var html = []; html.push(&quot;&lt;div style='display: inline-block; width: 18rem; height: 18rem; position: fixed; top: -12rem; left: -2.2rem; z-index: 9999;'&gt;&quot;); html.push(&quot;&lt;img src='&quot; + _resRoot + &quot;/image/hdCoupon.png'&gt;&quot;); html.push(&quot;&lt;div style='display: inline-block; width: 7.2rem; height: 2.5rem; position: fixed; top: -1.5rem; left: 2.2rem; z-index: 9999; text-align: center;'&gt;&quot;); html.push(&quot;&lt;span style='font-size: 2.2rem; color: #ff4c38; font-weight: bold;'&gt;&quot; + savePrice + &quot;&lt;/span&gt;&quot;); html.push(&quot;&lt;span style='font-size: 1rem; color: #ff4c38; position: relative; top: -5px; left: 3px;'&gt;元&lt;/span&gt;&quot;) html.push(&quot;&lt;/div&gt;&quot;); html.push(&quot;&lt;div class='J-prompt-callback' style='display: inline-block; width: 5.2rem; height: 1.5rem; position: fixed; top: 1.8rem; left: 4.35rem; z-index: 9999; text-align: center;'&gt;&lt;/div&gt;&quot;) html.push(&quot;&lt;/div&gt;&quot;); html.push(&quot;&lt;div class='J-prompt-cancel' style='display: inline-block; width: 2rem; height: 2rem; position: fixed; top: 6rem; left: 5.925rem; z-index: 9999;'&gt;&quot;); html.push(&quot;&lt;img src='&quot; + _resRoot + &quot;/image/hdCouponClose.png'&gt;&quot;); html.push(&quot;&lt;/div&gt;&quot;); var options = {'content':html.join(&quot;&quot;), 'callback': function() { jm.ajax({ type: 'post', url:&quot;ajax/mallCoupon_h.jsp&quot;, data:&quot;cmd=receiveCoupon&amp;fromHd=true&amp;bgId=0&amp;cid=&quot;+couponId,//针对IE6缓存 dataType:'json', success:function(result){ if(result.success){ var coupon = result.coupon; var content = []; content.push('&lt;div class=&quot;mobiCouponMsgPanl&quot;&gt;'); content.push( '&lt;div class=&quot;mobiCouponMsg&quot;&gt;'); content.push( '&lt;div class=&quot;sTop&quot;&gt;'+LS.successGet+'&lt;/div&gt;'); content.push( '&lt;/div&gt;'); content.push('&lt;/div&gt;'); popupCouponMsg(content.join('')); window.setTimeout(function(){Fai.top.location.href = '/'}, 1500); } else { var rt = result.rt; if(rt == -23){//WEB_NO_LOGIN Fai.top.location.href = 'login.jsp'; jm.cookie(&quot;hdCoupon&quot;, true); jm.cookie(&quot;hdCouponId&quot;, couponId); } else if(rt == -4){ //COUNT_LIMIT var content = []; content.push('&lt;div class=&quot;mobiCouponMsgPanl2&quot;&gt;'); content.push( '&lt;div class=&quot;mobiCouponMsg&quot;&gt;'); content.push( '&lt;div class=&quot;fBottom&quot;&gt;'+LS.overGet+'&lt;/div&gt;'); content.push( '&lt;/div&gt;'); content.push('&lt;/div&gt;'); popupCouponMsg(content.join('')); } else { var content = []; content.push('&lt;div class=&quot;mobiCouponMsgPanl2&quot;&gt;'); content.push( '&lt;div class=&quot;mobiCouponMsg&quot;&gt;'); content.push( '&lt;div class=&quot;fBottom&quot;&gt;'+LS.isNoneCoupon+'&lt;/div&gt;'); content.push( '&lt;/div&gt;'); content.push('&lt;/div&gt;'); popupCouponMsg(content.join('')); } } }, error:function(){ Mobi.ing(LS.systemError); } }); } }; Mobi.customPopup(options); } Mobi.initNewGuestGiftInfo(); &lt;/script&gt; 
&lt;/body&gt; &lt;/html&gt;. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[读《海底两万里》后有感]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/481047]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Fri, 25 May 2018 04:40:01 -0700]]></pubDate>
        <description><![CDATA[. 《读海底两万里后有感》.doc&lt;html&gt;&lt;head&gt;&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;&lt;meta http-equiv=&quot;Content-Style-Type&quot; content=&quot;text/css&quot; /&gt;&lt;meta name=&quot;generator&quot; content=&quot;Aspose.Words for .NET 15.1.0.0&quot; /&gt;&lt;title&gt;&lt;/title&gt;&lt;/head&gt;&lt;body&gt;&lt;div&gt;&lt;p style=&quot;margin:0pt; orphans:0; text-align:justify; text-indent:26.15pt; widows:0&quot;&gt;&lt;span style=&quot;font-family:宋体; font-size:26pt; font-weight:bold&quot;&gt;读《海底两万里》后有感&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin:0pt; orphans:0; text-align:center; text-indent:21pt; widows:0&quot;&gt;&lt;span style=&quot;font-family:'Times New Roman'; font-size:22pt&quot;&gt;Jackson make&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin:0pt; orphans:0; text-align:justify; text-indent:21pt; widows:0&quot;&gt;&lt;span style=&quot;font-family:宋体; font-size:22pt&quot;&gt;在读完《海底两万里》后，我觉得书的作者儒勒&lt;/span&gt;&lt;span style=&quot;font-family:'Times New Roman'; font-size:22pt&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;font-family:宋体; font-size:22pt&quot;&gt;凡尔纳&lt;/span&gt;&lt;span style=&quot;font-family:'Times New Roman'; font-size:22pt&quot;&gt;—&lt;/span&gt;&lt;span style=&quot;font-family:宋体; font-size:22pt&quot;&gt;一位法国著名的小说家、预言家，他令人惊讶之处不仅是在他写得夸张、动人而富有科学意义的小说，更让人惊叹的是他在书中所写的故事！尽管在二十一世纪的今天书中所述已不足为奇，但是在凡尔纳的特定时代，人们还没有发明潜水艇，甚至连电灯都还没有出现，在这样的背景下，凡尔纳在《海底两万里》中成功的塑造出鹦鹉螺号潜水艇，更有美国在冷战期间制造出的第一艘核动力潜水艇以鹦鹉螺号命名，这是怎样的预见力？所以说凡尔纳作品中的幻想都以科学为依据。他的许多作品中所描绘的科学幻想在今天都得以实现。更重要的是他作品中的幻想大胆新奇，并以其逼真、生动、美丽如画令人读来趣味盎然。所有这些使他的作品具有永恒的魅力。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin:0pt; orphans:0; text-align:justify; text-indent:21pt; widows:0&quot;&gt;&lt;img src=&quot;1299aa44-1192-4653-ba93-72d64f974458.001.png&quot; width=&quot;486&quot; height=&quot;647&quot; alt=&quot;&quot; style=&quot;-aw-left-pos:0pt; -aw-rel-hpos:page; -aw-rel-vpos:page; -aw-top-pos:0pt; -aw-wrap-type:inline&quot; /&gt;&lt;/p&gt;&lt;p style=&quot;margin:0pt; orphans:0; text-align:justify; widows:0&quot;&gt;&lt;span style=&quot;font-family:宋体; font-size:22pt&quot;&gt;   《海底两万里》主要讲述“鹦鹉螺号”的故事。&lt;/span&gt;&lt;span style=&quot;font-family:'Times New Roman'; font-size:22pt&quot;&gt;1866&lt;/span&gt;&lt;span style=&quot;font-family:宋体; font-size:22pt&quot;&gt;年，当时海上发现了一只被断定为独角鲸的大怪物，阿龙纳斯接受邀请参加追捕，在追捕过程中不幸落水，泅到怪物的脊背上。其实这怪物并非什么独角鲸，而是一艘构造奇妙的潜水艇。潜水艇是船长尼摩在大洋中的一座荒岛上秘密建造的，船身坚固，利用海洋中大量的盐中的氯化钠发电。尼摩船长邀请阿龙纳斯作海底旅行。他们从太平洋出发，经过珊瑚岛、印度洋、红海、进入地中海、大西洋，看到许多罕见的海生动植物和水中的奇异景象，又经历了搁浅、土人围攻、同鲨鱼搏斗、冰山封路、章鱼袭击等许多险情。最后，当潜水艇到达挪威海岸时，阿龙纳斯不辞而别，回到了他的家乡。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin:0pt; orphans:0; text-align:justify; text-indent:21pt; widows:0&quot;&gt;&lt;span style=&quot;font-family:宋体; font-size:22pt&quot;&gt;在《海底两万里》中，尼摩船长是个不明国籍的神秘人物，他在荒岛上秘密建造的这艘潜艇不仅异常坚固，而且结构巧妙，能够利用海洋资源来提供能源。他们依靠海洋中的各种动植物来生活。潜艇艇长对战俘倒也优待；只是为了保守自己的秘密，潜艇艇长尼摩不允许他们离开。阿龙纳斯一行人别无选择，只能跟着潜水艇周游各大洋。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin:0pt; orphans:0; text-align:justify; text-indent:21pt; widows:0&quot;&gt;&lt;span style=&quot;font-family:宋体; font-size:22pt&quot;&gt;在旅途中，阿龙纳斯一行人遇到了无数美景，同时也经历了许多惊险奇遇，例如：在巴布亚新几内亚他们的船搁浅了，遇到当地土着人的攻击，尼摩船长用他连接在金属梯子上的电挡住土着人进入鹦鹉螺号；在印度洋的珠场和鲨鱼展开过搏斗，捕鲸手尼德·兰手刃了一条凶恶的巨鲨；在南极他们被困在厚厚的冰下，船上极度缺氧，但船上所有人轮流用工具和开水把底部厚&lt;/span&gt;&lt;span style=&quot;font-family:'Times New Roman'; font-size:22pt&quot;&gt;10&lt;/span&gt;&lt;span style=&quot;font-family:宋体; font-size:22pt&quot;&gt;米的冰层砸薄，用潜艇的重量压碎冰块，逃到大海；在大西洋鹦鹉螺号被章鱼所困扰，他们拿斧头和章鱼展开肉搏战，一名船员不幸惨死；在北大西洋鹦鹉螺号遇到一艘英国驱逐舰的炮轰，除那三位俘虏外所有船员个个义愤填膺，用鹦鹉螺号的冲角把驱逐舰击沉。他们眼中的海底，时而景色优美、令人陶醉，时而险象丛生、千钧一发。通过一系列奇怪的事情，阿龙纳斯终于了解到神秘的尼摩船长仍与大陆保持联系，用海底沉船里的千百万金银来支援陆地上人们的正义斗争。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin:0pt; orphans:0; text-align:justify; text-indent:10.5pt; widows:0&quot;&gt;&lt;span style=&quot;font-family:宋体; font-size:22pt&quot;&gt;《海底两万里》不仅让我认识了这些勇敢、执着、真诚、阴郁的人，也让我游览了太平洋、印度洋、红海等七大洋，欣赏到奇幻美妙的海底世界。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin:0pt; orphans:0; text-align:justify; text-indent:43.5pt; widows:0&quot;&gt;&lt;span style=&quot;font-family:宋体; font-size:22pt&quot;&gt;在引人入胜的故事中，作者还同时告诫人们：在看到科学技术造福人类的同时，也要重视防止被利用、危害人类自身危机的行为。凡尔纳提出要爱护海豹、鲸等海洋生物，谴责滥杀滥捕的观念……面对这早在两百年前的先知者的呼吁，我陷入了更深层次的思考：此书只是让读者感受丰富多彩的历险和涉取传神知识吗？不，它是在启发我们，让我们的心灵对自然科学有更大的收获&lt;/span&gt;&lt;span style=&quot;font-family:'Times New Roman'; font-size:22pt&quot;&gt;!&lt;/span&gt;&lt;span style=&quot;font-family:宋体; font-size:22pt&quot;&gt;我相信，我们在人生的道路上，总会有遇到困难的时候，它会使人“跌倒”，可是，困难像弹簧，你强它就弱，你弱它就强。面对困难，我们就要像阿龙纳斯一样，决不唉声叹气、怨天尤人，也不自暴自弃、一蹶不振。而是要千方百计去克服困难。还要做到在哪里跌到就在哪里站起来，坚持到底，那么就是成功的开始。我相信，没有做不到的，只有想不到的&lt;/span&gt;&lt;span style=&quot;font-family:'Times New Roman'; font-size:22pt&quot;&gt;!&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin:0pt; orphans:0; text-align:justify; widows:0&quot;&gt;&lt;img src=&quot;1299aa44-1192-4653-ba93-72d64f974458.002.jpeg&quot; width=&quot;468&quot; height=&quot;249&quot; alt=&quot;&quot; style=&quot;-aw-left-pos:0pt; -aw-rel-hpos:page; -aw-rel-vpos:page; -aw-top-pos:0pt; -aw-wrap-type:inline&quot; /&gt;&lt;/p&gt;&lt;p style=&quot;margin:0pt; orphans:0; text-align:justify; text-indent:15.75pt; widows:0&quot;&gt;&lt;span style=&quot;font-family:宋体; font-size:22pt&quot;&gt;《海底两万里》真是一本既引人入胜的科幻小说，又富含海洋知识的百科全书！有兴趣的同学不妨阅读一下哦！&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;cnzz&quot; style=&quot;display: none;&quot;&gt;
&lt;html&gt;
 &lt;head&gt; 
  &lt;title&gt;Serv-U_FTP_Server_cn.zip&lt;/title&gt; 
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt; 
  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,initial-scale=1&quot;&gt; 
  &lt;meta name=&quot;format-detection&quot; content=&quot;telephone=no&quot;&gt; 
  &lt;link href=&quot;https://wodemo.com/statics/build/css/cb4a99cbe25c7fc4e15fa44ed3c12d97.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt; 
  &lt;link href=&quot;https://mymine.wodemo.com/skin/mymine/1495009563/site.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;
  &lt;link rel=&quot;alternate&quot; href=&quot;https://mymine.wodemo.com/feed&quot; type=&quot;application/rss+xml&quot; title=&quot;RSS&quot;&gt;
 &lt;/head&gt; 
 &lt;body&gt; 
  &lt;div id=&quot;whole_body&quot; class=&quot;wo-main-body wo-mode-visitor&quot;&gt; 
   &lt;div class=&quot;wo-file-main&quot;&gt;
    &lt;h1 class=&quot;wo-file-title&quot;&gt;Jn传媒
   &lt;hr&gt;
   
   &lt;br&gt; 
   &lt;br&gt; 
   
  

  &lt;/div&gt;
 . Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[养田螺]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/481046]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Fri, 25 May 2018 04:37:12 -0700]]></pubDate>
        <description><![CDATA[&#xa0;&#xa0;2014年9月8日&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;养田螺（画面一不小心用的有点大）&#xa0;养田螺&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;中秋节那天九月八日,我在看爸爸钳田螺,我看见那些田螺有的把头缩起来,有的好奇地把头探出来看看这是哪儿,还有的悄悄地从壳里出来爬来爬去不想让我爸爸抓住它,把它的螺尾给钳了……我看田螺这么可爱,于是选了只大的养起来。我拿了个小盆把它放进去,加了一点水,把它放在暗的地方,我就在一边躲着看它,过了三个小时后,它把头悄悄地，小心翼翼地一点点探出来,发现没有危险后就把它的身子也探出来,过了一小时后,它发现这盆里很安全以后,它的胆子也大起来,开始在盆里的边上“跑”,我的小盆是圆的,它就不停地在盆里转圈圈,转了五分钟后,它“跑”累了,就在边边上休息。到晚上了, 我把它拿到了房间的飘窗上,将妈妈折的星星型烛台点亮,让它看看烛光,过了一会儿它把身子缩回去睡觉了,我也要困了,我就吹灭烛台,上床睡觉了.    第二天我去上学了,只可以将它留在奶奶家,过了五天后我回奶奶家时,发现田螺一直探着头等我回来呢!&#xa0;&#xa0;2014年10月14日怎么养田螺我为了更加了解养田螺，所以让妈妈帮忙买了几本书来看。看完以后我就准备休息，可是我发现田螺好像生病一样，连爬也不爬一下，那时我慌了，赶紧把书翻开认真去查，原来田螺只是饿了，我照书上说的：给了一片菜叶给田螺吃，田螺后来果然没事了，从这事以后我就更加重视书中怎样养田螺的话题了。从这以后，我整天都会翻书看和田螺有关的知识，例如：田螺加水不可太多，只可以加到田螺的壳高一点；养田螺要在水里加泥土，让田螺有铁质；田螺喜欢吃什么……田螺喜欢吃什么呢？起先我也不清楚，后来我才知道，田螺喜欢吃叶子，豆渣等。由于我也是第一次养田螺，所以对这方面知道得也不是很多 ，写不了很长，所以我还是去看一下网上和书上的相关知识吧！再见。&#xa0;&#xa0;&#xa0;&#xa0;2014年10月23日可爱的田螺也许你看到这个题目会觉得很奇怪，田螺只会爬两爬或不定时地把头伸出来，怎么会可爱呢？等一等，让我慢慢告诉你吧！田螺到底怎么可爱的呢？举两个例子吧，第一个：因为有时我的田螺很调皮，总在我回家前把水里的泥土搬到清水里，把泥和水变成泥水才停下。那第二个例子呢？第二个：我的田螺闲得实在无事可做了，就把盆里的泥搬到盆里的叶子上，再把叶子放在自己前面，一直把叶子在盆子边边上转呀转，一直到了那叶子上的泥和水变成泥水，还让叶子变得这一块那一块的“伤口”才肯停下来。你说能不可爱吗？这就是我的可爱的田螺，你喜欢它吗？&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;2014年9月28日我和田螺玩我回去后，又开始观察它:田螺的身体是黄色的，两只小触角，边爬边动着，太可爱了！我到底是怎样和田螺玩得呢？因为我和田螺熟悉了，每当我中午和晚上放学回家的时候总要看它一会儿，所以每次我看它的时候 ，它总会“跑”一下。如果是其他人，田螺就会赶紧缩到它的小房子里了，每次我和它玩的时候 ，我都会碰一下小盆的边，小田螺就知道我回家了，它就开始边爬边吃叶子，有时还调皮的把小盆里的泥土移来移去，边移边休息，只有小田螺把泥和小盆里的水变成泥水才肯和我玩。有一次我想看看田螺在和我玩得高兴时，若我走开它会怎么样？于是九月十九日星期五放学我就开始做这个实验。放学回到家，我就和田螺玩起来，当田螺爬得很“快”又想调皮的时候我忽然离开，找了一个很安全很难被田螺看到的地方藏了起来，过了一会儿，它开始慢慢地吃叶子，好像一个人正在做一件很重要的事但有人不给他做这件事一样。我的小田螺就是这么好玩，可爱，有趣，你喜欢我的小田螺吗？&#xa0;2014年10月10日田螺的新朋友我和小田螺玩了很久，但上学的时候就没人和它玩了，于是我外婆给它带来了一个新朋友，是从市场里带回来的一只新田螺，陪我的田螺玩。我看着两只田螺凑在一块，好像永远要在一起一样。现在我的小盆里有了我新增的大理石，让小田螺可以爬上去而不用总在水里，看着这两只田螺我高兴极了！那新田螺总是在我不在的时候出来 ，直到慢慢熟悉我了才肯和我们玩，真是太可爱了！因为我养田螺，所以书柜里又多了几本都是关于养田螺知识的书，于是让我更了解我的两只小田螺，让我和小田螺的关系更加亲密！&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;2014年10月26日新的生命诞生了，两只小螺仔一天我放学回家，发现一只田螺的尾上有一个黑色的东西粘在上面，因为那时不知道那是什么，所以不动那个东西，而去打开电脑去上网找答案，原来粘在田螺尾上的东西是田螺的小宝宝，我可高兴了，所以又给多了几片叶子给它们吃。第二天，我去看田螺时发现田螺的宝宝已经不粘着妈妈了，沉在了水里。等等我的题目说有两只田螺，可现在只有一只呀，第二只呢？呵呵，我还没说完，这时我不看宝宝了，开始看妈妈了，呀！我没看错吧？！田螺妈妈又生了一个和沉在水里一模一样的宝宝！太好了，现在我已经有四只田螺了！第三天，我发现最先生出来的宝宝已经比原来大了一点了，第二只田螺宝宝也跟着长大了些，原来田螺宝宝看似一样，其实每天都在长大呀！事实上小田螺是有三只的，不过有一次换水，妈妈不小心把第三只倒掉了，不过我也不失望，因为我认为田螺还会再生宝宝出来的。田螺的长成继续中……下一集将更好看哦！来追集吧！再见。  悲催的结局：全死了......Jackson     版权所有&#xa0;
	       . 田螺.docx&lt;html&gt;
 &lt;head&gt; 
  &lt;title&gt;Serv-U_FTP_Server_cn.zip&lt;/title&gt; 
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt; 
  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,initial-scale=1&quot;&gt; 
  &lt;meta name=&quot;format-detection&quot; content=&quot;telephone=no&quot;&gt; 
  &lt;link href=&quot;https://wodemo.com/statics/build/css/cb4a99cbe25c7fc4e15fa44ed3c12d97.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt; 
  &lt;link href=&quot;https://mymine.wodemo.com/skin/mymine/1495009563/site.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;
  &lt;link rel=&quot;alternate&quot; href=&quot;https://mymine.wodemo.com/feed&quot; type=&quot;application/rss+xml&quot; title=&quot;RSS&quot;&gt;
 &lt;/head&gt; 
 &lt;body&gt; 
  &lt;div id=&quot;whole_body&quot; class=&quot;wo-main-body wo-mode-visitor&quot;&gt; 
   &lt;div class=&quot;wo-file-main&quot;&gt;
    &lt;h1 class=&quot;wo-file-title&quot;&gt;Jn传媒
   &lt;hr&gt;
   
   &lt;br&gt; 
   &lt;br&gt; 
   
  

  &lt;/div&gt;
 . Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[无数个个空空的页面，等待您的加入]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/481037]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Fri, 25 May 2018 03:29:24 -0700]]></pubDate>
        <description><![CDATA[。. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[福利！！！]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/480886]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Thu, 24 May 2018 02:36:33 -0700]]></pubDate>
        <description><![CDATA[

	

        
		
		*{
			margin: 0;
			padding: 0;
		}
		body{
			background-color: #454545;
			text-align:center;
		}
		.nineSvg{
			width: 400px;
			height: 400px;
			margin: 100px auto 0;
			display: block;
			box-shadow: 0 0 30px 2px rgba(255,255,255,0.3);
			border-radius:60px;
			/*color: transparent;*/
		}

		p{
			margin-top: 30px;
			color: #454545;
		}
		a{
			color:rgba(255,255,255,.5);
		}
		
	
	
		
		
		
		Jn:用心就能找到密码...解锁有奖品
	

	
	
	$(function(){
	//svg的
	function doSvg(){
		var $that     = $("#nineSvg"),//jquery对象
			that      = $that[0],//原始对象
			number    = 9,//格子的个数
			canLine   = false,
			thisL     = '',//d的值
			thisPass  = [],//画出的密码
			canDoLine = false,//是否在元素上
			passWord  = 1236985,//设置的密码
			a;

		//画入9宫格子
		for( var i = 0; i < 3; i++ ){
			for( var j = 0; j < 3; j++ ){
	var node = $( document.createElementNS("http://www.w3.org/2000/svg", "circle") ).attr({
					'cx': 110*j+90,
					'cy': 110*i+90,
					'r': 40,
					'stroke': 'rgba(255,255,255,0.5)',
					'stroke-width': 2,
					'fill': 'transparent',
					'class':'roundA',
					'canDo':true

				});
				$that.append(node);
			}
		}
		//画入线段
	var DoLine = $( document.createElementNS("http://www.w3.org/2000/svg", "path") ).attr({
			'stroke':'#fff',
			'stroke-width': 2,
			'fill':'transparent',
			'd':' '
		});

		$that.append(DoLine);
		//获取九宫格
		var circle = $that.find('circle');

		//在格子上按下
		circle.mousedown(function(){
			//可以画线
			canLine = true;
			var Mx = $(this).attr("cx"),
				My = $(this).attr("cy");

			//初始化原点
			thisL = 'M'+Mx+' '+My;			

		});

		//在对象上移动
		$that.mousemove(function(e){

			if( canLine ){
				var NowLin = DoLine.attr('d');
				DoLine.attr({
					'd': thisL + 'L'+e.offsetX+' '+e.offsetY
				});
			}

		});

		// 如果移动的时候进入了圆格子
		circle.mousemove(function(){
			if( canLine && $(this).attr('canDo') == 'true' ){
				var X      = $(this).attr("cx"),
					Y      = $(this).attr("cy");
					thisL  = thisL + ' L'+ X +' '+Y; 
				// 加标记
				markRound($(this));
				// 改变轨迹
				DoLine.attr({
					'd':thisL
				});
				// 记录密码
				thisPass.push( $(this).index()+1 );

				// 标记不可选
				$(this).attr('canDo',false);

				//标记鼠标在元素上
				canDoLine = true;
			}
				
		});

		//鼠标已经离开了元素的时候做标记
		circle.mouseout(function(){
			canDoLine = false;
		});


		//鼠标抬起
		$that.mouseup(function(){
			var nowPassword = removeSameArr(thisPass).join('');//密码

			// 清空密码数组
			thisPass = [];

			console.log(nowPassword)
			//如果不元素上,去除后两项
			if( !canDoLine ){
				DoLine.attr({
					'd': thisL
				});
			}

			//判断密码是否正确
			if( passWord == nowPassword ){
				alert('密码正确,领取你的奖品~');
			
			window.location.href="http://jackson.miniban.cn/"; 
				
				
			}else{
				alert('密码错误想想我的名字重叠？Jn');
			}

			//标记不可划线
			canLine = false;

			// 清楚样式
			$(that).find('.roundB').remove();
			$(that).find('.roundA').attr({
				'fill': 'transparent',
				'canDo':true,
				'stroke': 'rgba(255,255,255,0.5)'
			});
			DoLine.attr('d','');
		
		});


		//去除相同的元素
		function removeSameArr(arr){
			var thisArr = []; 
			
			for(var i = 0; i < arr.length; i++ ){
				if (thisArr.indexOf(arr[i]) == -1) thisArr.push(arr[i]);
			}
			return thisArr;
		}



		//标记选中的方法
		function markRound(obj){
			var nowRound = obj,
	round    = $( document.createElementNS("http://www.w3.org/2000/svg", "circle") ).attr({
				'cx':nowRound.attr('cx'),
				'cy':nowRound.attr('cy'),
				'r':20,
				'fill':'#fff',
				'class':'roundB'
			});

			$that.append(round);    

			nowRound.attr({
				'stroke':'#fff',
				'fill':'rgba(0,0,0,0.3)'
			});

		}

	}//doSvg

	doSvg();

	});
	

此九宫格只能用电脑操作. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[一个简单的网站]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/480865]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Wed, 23 May 2018 23:24:50 -0700]]></pubDate>
        <description><![CDATA[Jn的分站
。。。
创建成功！. Jn传媒.jpg. Jn传媒.png
  
  留言板.gif 
   
   
   
   
  
  
  
  
   
   
    
    
     

   
   

]]></description>
    </item>
        <item>
        <title><![CDATA[测试一下，嘻嘻！]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/480763]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Wed, 23 May 2018 04:35:37 -0700]]></pubDate>
        <description><![CDATA[哎，我的第一个博客创建成功了耶！
先来试试各种功能:
1.html观赏型3D虚拟




嘻嘻，好看极啦！
再来试试视频
点击视频名字播放. Jn传媒.mp4. Jn传媒2.mp4嘿嘿，再来个图片. 测试图片.jpg看来我的博客成功啦. 测试:across from.mp3. Jn传媒.png]]></description>
    </item>
        <item>
        <title><![CDATA[游戏]]></title>
		<link><![CDATA[https://jnyun2.wodemo.net/entry/480749]]></link>
		<dc:creator><![CDATA[Jackson (@jackson)]]></dc:creator>
		<pubDate><![CDATA[Wed, 23 May 2018 04:03:36 -0700]]></pubDate>
        <description><![CDATA[Welcome to Jn htmlvar msg = "呵呵";var speed = 300; var msgud = " " + msg; function titleScroll() { if (msgud.length Jackson make. Jn传媒.png
  
  留言板.gif 
   
   
   
   
  
  
  
  
   
   
    
    
 
   


]]></description>
    </item>
    </channel>
</rss>
