当前位置: 首页 > news >正文

先做网站还是服务器福田做商城网站建设多少钱

先做网站还是服务器,福田做商城网站建设多少钱,网页版查询系统制作,哪些网站建设公司好目录 前言 HTML部分 CSS部分 JS部分 效果图 总结 前言 无需多言#xff0c;本文将详细介绍一段HTML代码#xff0c;具体内容如下#xff1a; 开始 首先新建文件夹#xff0c;创建一个文本文档#xff0c;两个文件夹#xff0c;其中HTML的文件名改为[index.html]本文将详细介绍一段HTML代码具体内容如下 开始 首先新建文件夹创建一个文本文档两个文件夹其中HTML的文件名改为[index.html]CSS的文件名改为[css]里面新建一个文本文档重命名为[test.css]JS的文件名改为[js]里面新建四个文本文档分别重命名为 [common.js] [config.js] [jquery-3.4.1.min.js] [test.js] 创建好后右键用文本文档打开再把下面相对应代码填入后保存即可。 HTML部分 这段HTML代码是一个动态时钟的页面结构它通过HTML、CSS和JavaScript的结合实现了一个可视化的时钟效果。以下是代码的主要组成部分和功能 HTML结构 页面包含一个!DOCTYPE html声明指定文档类型为HTML5。html标签内嵌套head和body标签分别用于存放元数据和页面内容。head部分定义了页面的字符集、视口设置、标题并引入了jQuery库和几个JavaScript文件这些文件可能包含时钟的功能逻辑和配置。body部分定义了一个.main-content容器用于存放时钟的各个部分如年、月、日、星期、时辰、小时、分钟和秒。 CSS样式 页面的全局样式设置包括去除默认边距、设置背景、字体和尺寸等。针对audio元素的样式使其在页面上以透明的形式存在鼠标悬停时变为不透明。针对.main-content及其子元素的样式通过绝对定位和相对定位来精确控制时钟各个部分的位置。为当前激活的元素设置.current类以改变其文字颜色突出显示。 JavaScript文件 虽然JavaScript代码没有直接展示但通过script标签引入的jquery-3.4.1.min.js和其他自定义的.js文件我们可以推断这些文件可能包含时钟的动态更新逻辑、用户交互功能等。 页面布局 页面宽度和高度被固定为1000px和900px背景图像被设置为固定以避免滚动时背景移动。时钟的各个部分年、月、日等通过div元素表示并使用CSS进行样式设置和位置调整。 用户体验 页面设计注重视觉效果通过固定背景和精确的布局来创建一个清晰、专业的时钟界面。音频控件的设计提供了额外的交互可能性虽然在这段代码中没有具体实现。 总结来说这段代码是一个动态时钟的基础框架通过HTML定义了页面结构CSS设置了样式和布局JavaScript文件可能包含了时钟动态更新和交互的逻辑。整个页面设计简洁注重用户体验是一个典型的前端开发示例。 !DOCTYPE html!-- 声明文档类型为 HTML5 -- html headmeta charsetutf-8!-- 设置字符编码为 utf-8 --meta http-equivX-UA-Compatible contentIEedge!-- 兼容 IE 浏览器 --title动态时钟/title!-- 页面标题 --meta nameviewport contentwidthdevice-width, initial-scale1!-- 响应式布局设置 --script srcjs/jquery-3.4.1.min.js/script!-- 引入 jQuery 库 --script srcjs/test.js/script!-- 引入自定义的 JavaScript 文件 --script srcjs/common.js/script!-- 引入公共的 JavaScript 文件 --script srcjs/config.js/script!-- 引入配置文件 -- /headstyle*{ /* 通用样式重置 */margin: 0;padding: 0;}body{ /* 页面主体样式 */background-attachment: fixed; /* 背景固定 */color: #F5F4F6; /* 文字颜色 */font-size: 12px; /* 字体大小 */font-weight: bold; /* 字体加粗 */overflow: hidden; /* 隐藏溢出内容 */width: 1000px; /* 宽度 */height: 900px; /* 高度 */font-family: 微软雅黑; /* 字体 */}audio{ /* 音频控件样式 */position: absolute; /* 绝对定位 */right: 0; /* 靠右 */opacity: 0.1; /* 透明度 */transition: all 1s; /* 过渡效果 */}audio:hover{ /* 鼠标悬停时的样式变化 */opacity: 1; /* 透明度变为完全不透明 */}.current{ /* 当前激活的元素样式 */color: #D1A3F7; /* 文字颜色 */}video{ /* 视频样式 */z-index: -1; /* 层级设置 */position: fixed; /* 固定定位 */min-width: 100%; /* 最小宽度 */min-height: 100%; /* 最小高度 */}.main-content{ /* 主要内容区域样式 */position: absolute; /* 绝对定位 */top:50%; /* 距离顶部 50% 的位置 */left: 50%; /* 距离左侧 50% 的位置 */}.main-content .year{ /* 年显示样式 */position: relative; /* 相对定位 */top: -13px; /* 向上偏移 13px */left: -38px; /* 向左偏移 38px */text-align: center /* 文字居中 */}.main-content .year span{ /* 年显示的具体元素样式 */position: absolute; /* 绝对定位 */width: 80px; /* 宽度 */}/* 以下类似为月、日、星期、时辰、小时、分钟、秒的样式设置 */.main-content .month{position: relative;top: -13px;left: 40px;}.month span{position: absolute;width: 60px;}.main-content .day{position: relative;top: -13px;left: 85px;}.day span{position: absolute;width: 65px;}.main-content .week{position: relative;top: -13px;left: 145px;}.week span{position: absolute;width: 65px;}.main-content .shichen{position: relative;top: -13px;left: 200px;}.shichen span{position: absolute;width: 125px;}.main-content .hour{position: relative;top: -13px;left: 240px;}.hour span{position: absolute;width: 60px;}.main-content .minute{position: relative;top: -13px;left: 300px;}.minute span{position: absolute;width: 60px;}.main-content .second{position: relative;top: -13px;left: 370px;}.second span{position: absolute;width: 60px;}/stylebodydiv classmain-contentdiv classyear/div div classmonth/div!-- 月显示区域 --div classday/div!-- 日显示区域 --div classweek/div!-- 星期显示区域 --div classshichen/div!-- 时辰显示区域 --div classhour/div!-- 小时显示区域 --div classminute/div!-- 分钟显示区域 --div classsecond/div!-- 秒显示区域 --/div/body /html CSS部分 这段CSS代码定义了一个动态时钟的样式主要通过以下几个方面来实现 全局样式 (* 选择器)通过重置默认的外边距和内边距为整个页面提供了一个统一的基础样式。 页面主体 (body 选择器)设置了页面的背景、文字颜色、字体大小和字体权重等属性并定义了页面的尺寸和字体。 音频控件 (audio 选择器)定义了音频控件的位置、透明度和悬停效果使其在页面上以非干扰性的方式存在且在用户交互时提供反馈。 视频背景 (video 选择器)设置了一个全屏的视频背景覆盖整个页面内容但位于较低的层级以创造一个视觉效果。 主要内容区域 (.main-content 选择器)通过绝对定位将时钟的内容置于页面的中心位置。 时钟各个部分的样式 (.year, .month, .day, .week, .shichen, .hour, .minute, .second 选择器)为时钟的年、月、日、星期、时辰、小时、分钟和秒分别设置了相对定位和样式通过调整top和left属性来精确控制它们在页面上的位置。每个部分的span元素也被设置为绝对定位并指定了宽度。 高亮当前激活元素 (.current 选择器)为当前激活的时钟部分如当前的秒数提供了一个特殊的文字颜色以便于突出显示。 总结来说这段CSS代码通过精确的布局和样式设置为动态时钟提供了一个清晰、专业的视觉效果。代码中的注释进一步增强了样式定义的可读性使得其他开发者或设计师可以更容易地理解和修改这些样式。 /* 通用样式重置移除所有元素的默认外边距和内边距 */ *{margin: 0;padding: 0; }/* 页面主体样式 */ body{/* 背景图像固定不随滚动条滚动而移动 */background-attachment: fixed;/* 页面文字颜色 */color: #F5F4F6;/* 字体大小 */font-size: 12px;/* 字体加粗 */font-weight: bold;/* 隐藏溢出的内容 */overflow: hidden;/* 页面宽度和高度设置 */width: 1000px;height: 900px;/* 设置字体为微软雅黑 */font-family: 微软雅黑; }/* 音频控件样式 */ audio{/* 绝对定位使音频控件位于页面的最右侧 */position: absolute;right: 0;/* 设置音频控件的透明度为0.1使其几乎不可见 */opacity: 0.1;/* 过渡效果当改变音频控件的属性时如透明度会在1秒内平滑过渡 */transition: all 1s; }/* 鼠标悬停于音频控件时的样式变化 */ audio:hover{/* 鼠标悬停时音频控件的透明度变为1即完全可见 */opacity: 1; }/* 当前激活的元素的样式 */ .current{/* 设置当前激活元素的文字颜色 */color: #D1A3F7; }/* 视频样式 */ video{/* 设置视频的层级为-1使其位于其他内容的下方 */z-index: -1;/* 绝对定位使视频覆盖整个页面 */position: fixed;/* 设置视频的最小宽度和高度为100%使其至少覆盖整个页面 */min-width: 100%;min-height: 100%; }/* 主要内容区域样式 */ .main-content{/* 绝对定位并调整其在页面中的位置 */position: absolute; top:50%;left: 50%; }/* 年份显示样式 */ .main-content .year{/* 相对定位基于其父元素.main-content进行定位 */position: relative;/* 向上移动13像素调整年份显示的位置 */top: -13px;/* 向左移动38像素进一步调整年份显示的位置 */left: -38px;/* 文字居中对齐 */text-align: center }/* 年份显示的具体元素样式 */ .main-content .year span{/* 绝对定位设置元素宽度 */position: absolute;width: 80px; }/* 月份显示样式类似年份但位置不同 */ .main-content .month{/* 相对定位基于其父元素.main-content进行定位 */position: relative;top: -13px;left: 40px; }/* 月份显示的具体元素样式 */ .month span{/* 绝对定位设置元素宽度 */position: absolute;width: 60px; }/* 日期显示样式类似月份 */ .main-content .day{/* 相对定位 */position: relative;top: -13px;left: 85px; }/* 日期显示的具体元素样式 */ .day span{/* 绝对定位设置元素宽度 */position: absolute;width: 65px; }/* 星期显示样式类似日期 */ .main-content .week{/* 相对定位 */position: relative;top: -13px;left: 145px; }/* 星期显示的具体元素样式 */ .week span{/* 绝对定位设置元素宽度 */position: absolute;width: 65px; }/* 时辰显示样式类似星期 */ .main-content .shichen{/* 相对定位 */position: relative;top: -13px;left: 200px; }/* 时辰显示的具体元素样式 */ .shichen span{/* 绝对定位设置元素宽度 */position: absolute;width: 125px; }/* 小时显示样式类似时辰 */ .main-content .hour{/* 相对定位 */position: relative;top: -13px;left: 240px; }/* 小时显示的具体元素样式 */ .hour span{/* 绝对定位设置元素宽度 */position: absolute;width: 60px; }/* 分钟显示样式类似小时 */ .main-content .minute{/* 相对定位 */position: relative;top: -13px;left: 300px; }/* 分钟显示的具体元素样式 */ .minute span{/* 绝对定位设置元素宽度 */position: absolute;width: 60px; }/* 秒钟显示样式类似分钟 */ .main-content .second{/* 相对定位 */position: relative;top: -13px;left: 370px; }/* 秒钟显示的具体元素样式 */ .second span{/* 绝对定位设置元素宽度 */position: absolute;width: 60px; } JS部分 [common.js] //这里显示简体字体 function numToSimp(n){var str ;var unitsparseInt(n%10);var tensparseInt(n/10);var trans零一二三四五六七八九十;if(tens1){strtrans.charAt(tens);}if(tens!0){str十;}if(units!0){str trans.charAt(units);}if(tens0units0){strtrans[0];}return str; }//繁体字更玄学 function numToTrad(n){var str ;var unitsparseInt(n%10);var tensparseInt(n/10);var trans零一二三四五六七八九;if(tens1){strtrans.charAt(tens);}if(tens!0){str十;}if(units!0){str trans.charAt(units);}if(tens0units0){strtrans[0];}return str; }//展示英文出来 function numToEng(n){var str ;var unitsparseInt(n%10);var tensparseInt(n/10);var trans[[zero, one, two, three, four, five, six, seven, eight, nine,ten, eleven, twelve, thirteen, fourteen, fifteen, sixteen, seventeen, eighteen, nineteen],[twenty, thirty, forty, fifty, sixty, seventy, eighty, ninety],];if(n20){strtrans[0][n];}else{strtrans[1][tens-2];if(units!0){strtrans[0][units];}}if(tens0units0){strtrans[0][0];}return str; }function isLeapYear(year){if(year % 4 0 year %100 ! 0 ||year % 400 0){return true;}else{return false;} }function getYear(type,year){var resvar unitsparseInt(year/1%10);var tensparseInt(year/10%10);var hundparseInt(year/100%10);var thouparseInt(year/1000%10);switch(type){case 0:case 3:resyear;break;case 1:resnumToSimp(thou)numToSimp(hund)numToSimp(tens)numToSimp(units);break;case 2:resnumToTrad(thou)numToTrad(hund)numToTrad(tens)numToTrad(units);break;}return res; }/*获取月份参数0 阿拉伯数字 1简体 2繁体 3英文 */ function getMonths(type,month){var monthsnew Array();var monthsEng[Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec];var i1;switch (type) {case 0:for(imonth;i12;i){months.push(i);}for(i1;imonth;i){months.push(i);}break;case 1:for(imonth;i12;i){months.push(numToSimp(i));}for(i1;imonth;i){months.push(numToSimp(i));}break;case 2:for(imonth;i12;i){months.push(numToTrad(i));}for(i1;imonth;i){months.push(numToTrad(i));}break;case 3:for(imonth-1;i12;i){months.push(monthsEng[i]);}for(i0;imonth-1;i){months.push(monthsEng[i]);}break;}return months; }function getdays(type,year,month,day){var daysnew Array();var j1;var isLeapisLeapYear(year);switch (type) {case 0:case 3:for(jday;j31;j){days.push(j)if(month2isLeapj29){break;}if(month2!isLeapj28){break;}if((month2||month4||month6||month9||month11)j30){break;}}for(j1;jday;j){days.push(j)}break;case 1:for(jday;j31;j){days.push(numToSimp(j))if(month2isLeapj29){break;}if(month2!isLeapj28){break;}if((month2||month4||month6||month9||month11)j30){break;}}for(j1;jday;j){days.push(numToSimp(j))}break;case 2:for(jday;j31;j){days.push(numToTrad(j))if(month2isLeapj29){break;}if(month2!isLeapj28){break;}if((month2||month4||month6||month9||month11)j30){break;}}for(j1;jday;j){days.push(numToTrad(j))}break;}return days; }function getShiChen(type,hour){var shichen{index:0,str:};switch(type){case 0:if(hour23||hour1){shichen.index0;shichen.str23:00-1:00;}else if(hour1hour3){shichen.index1;shichen.str1:00-3:00;}else if(hour3hour5){shichen.index2;shichen.str3:00-5:00;}else if(hour5hour7){shichen.index3;shichen.str5:00-7:00;}else if(hour7hour9){shichen.index4;shichen.str7:00-9:00;}else if(hour9hour11){shichen.index5;shichen.str9:00-11:00;}else if(hour11hour13){shichen.index6;shichen.str11:00-13:00;}else if(hour13hour15){shichen.index7;shichen.str13:00-15:00;}else if(hour15hour17){shichen.index8;shichen.str15:00-17:00;}else if(hour17hour19){shichen.index9;shichen.str17:00-19:00;}else if(hour19hour21){shichen.index10;shichen.str19:00-21:00;}else if(hour21hour23){shichen.index11;shichen.str21:00-23:00;}break;case 1:case 2:if(hour23||hour1){shichen.index0;shichen.str子时}else if(hour1hour3){shichen.index1;shichen.str丑时;}else if(hour3hour5){shichen.index2;shichen.str寅时;}else if(hour5hour7){shichen.index3;shichen.str卯时;}else if(hour7hour9){shichen.index4;shichen.str辰时;}else if(hour9hour11){shichen.index5;shichen.str巳时;}else if(hour11hour13){shichen.index6;shichen.str午时;}else if(hour13hour15){shichen.index7;shichen.str未时;}else if(hour15hour17){shichen.index8;shichen.str申时;}else if(hour17hour19){shichen.index9;shichen.str酉时;}else if(hour19hour21){shichen.index10;shichen.str戌时;}else if(hour21hour23){shichen.index11;shichen.str亥时;}break;case 3:if(hour23||hour1){shichen.index0;shichen.str23pm to 1am}else if(hour1hour3){shichen.index1;shichen.str1am to 3am}else if(hour3hour5){shichen.index2;shichen.str3am to 5am}else if(hour5hour7){shichen.index3;shichen.str5pm to 7am}else if(hour7hour9){shichen.index4;shichen.str7pm to 9am}else if(hour9hour11){shichen.index5;shichen.str9pm to 11am}else if(hour11hour13){shichen.index6;shichen.str11am to 13pm}else if(hour13hour15){shichen.index7;shichen.str13pm to 15pm}else if(hour15hour17){shichen.index8;shichen.str15pm to 17pm}else if(hour17hour19){shichen.index9;shichen.str17pm to 19pm}else if(hour19hour21){shichen.index10; shichen.str19pm to 21pm}else if(hour21hour23){shichen.index11;shichen.str21pm to 23pm}break;}return shichen; }function getShiChens(type,shichen){var shichensnew Array();var i0;var shichen0[23:00-1:00,1:00-3:00,3:00-5:00,5:00-7:00,7:00-9:00,9:00-11:00,11:00-13:00,13:00-15:00,15:00-17:00,17:00-19:00,19:00-21:00,21:00-23:00];var shichen1[子时,丑时,寅时,卯时,辰时,巳时,午时,未时,申时,酉时,戌时,亥时];var shichen3[23pm to 1am,1am to 3am,3am to 5am,5pm to 7am,7pm to 9am,9pm to 11am,11am to 13pm,13pm to 15pm,15pm to 17pm,17pm to 19pm,19pm to 21pm,21pm to 23pm];switch(type){case 0:for(ishichen.index;i12;i){shichens.push(shichen0[i]);}for(i0;ishichen.index;i){shichens.push(shichen0[i]);}break;case 1:case 2:for(ishichen.index;i12;i){shichens.push(shichen1[i]);}for(i0;ishichen.index;i){shichens.push(shichen1[i]);}break;case 3:for(ishichen.index;i12;i){shichens.push(shichen3[i]);}for(i0;ishichen.index;i){shichens.push(shichen3[i]);}break;}return shichens; }function getMonthEng(month){var monthsEng[Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec];return monthsEng[month-1]; }function getWeeks(type,week){weeks[];weeksEng[Sun,Mon,Tues,Wed,Thur,Fri,Sat];var i0;switch(type){case 0:case 1:case 2:for(iweek;i7;i){weeks[i]星期numToSimp(i);if(i0){weeks[i]星期日}}for(i0;iweek;i){weeks[i]星期numToSimp(i);}break;case 3:for(iweek;i7;i){weeks.push(weeksEng[i]);}for(i0;iweek;i){weeks.push(weeksEng[i]);}break;}return weeks; }function getWeek(type,week){weekEng[Sun,Mon,Tues,Wed,Thur,Fri,Sat];res;switch(type){case 0:case 1:case 2:if(week0){res日}else{resnumToSimp(week);}break;case 3:resweekEng[week];break;}return res; }function getHours(type,hour){var hoursnew Array();var i0;switch(type){case 0:case 3:for(ihour;i24;i){hours.push(i);}for(i0;ihour;i){hours.push(i);}break;case 1:for(ihour;i24;i){hours.push(numToSimp(i));}for(i0;ihour;i){hours.push(numToSimp(i));}break;case 2:for(ihour;i24;i){hours.push(numToTrad(i));}for(i0;ihour;i){hours.push(numToTrad(i));}break;}return hours; }function getMinutes(type,minute){var minutesnew Array();var i0;switch(type){case 0:case 3:for(iminute;i60;i){minutes.push(i);}for(i0;iminute;i){minutes.push(i);}break;case 1:for(iminute;i60;i){minutes.push(numToSimp(i));}for(i0;iminute;i){minutes.push(numToSimp(i));}break;case 2:for(iminute;i60;i){minutes.push(numToTrad(i));}for(i0;iminute;i){minutes.push(numToTrad(i));}break;}return minutes; }function getSeconds(type,second){var secondsnew Array();var i0;switch(type){case 0:case 3:for(isecond;i60;i){seconds.push(i);}for(i0;isecond;i){seconds.push(i);}break;case 1:for(isecond;i60;i){seconds.push(numToSimp(i));}for(i0;isecond;i){seconds.push(numToSimp(i));}break;case 2:for(isecond;i60;i){seconds.push(numToTrad(i));}for(i0;isecond;i){seconds.push(numToTrad(i));}break;}return seconds; }function isShichen(hour){if(hourone h||hourthree h||hourfive h||hourseven h||hournine h||houreleven h||hourthirteen h||hourfifteen h||hourseventeen h||hournineteen h||hourtwentyone h||hourtwentythree h||hour1时||hour3时||hour5时||hour7时||hour9时||hour11时||hour13时||hour15时||hour17时||hour19时||hour21时||hour23时||hour一时||hour三时||hour五时||hour七时||hour九时||hour十一时||hour十三时||hour十五时||hour十七时||hour十九时||hour二十一时||hour二十三时||hour壹时||hour叁时||hour伍时||hour柒时||hour玖时||hour拾壹时||hour拾叁时||hour拾伍时||hour拾柒时||hour拾玖时||hour贰拾壹时||hour贰拾叁时||hour1 h||hour3 h||hour5 h||hour7 h||hour9 h||hour11 h||hour13 h||hour15 h||hour17 h||hour19 h||hour21 h||hour23 h){return true;}return false; }function updateDays(type,year,month,day){var daysnew Array();var j1;var isLeapisLeapYear(year);switch (type) {case 0:case 3:for(jday;j31;j){days.push(j)if(month2isLeapj29){break;}if(month2!isLeapj28){break;}if((month2||month4||month6||month9||month11)j30){break;}}for(j1;jday;j){days.push(j)}break;case 1:for(j1;j31;j){days.push(numToSimp(j))if(month2isLeapj29){break;}if(month2!isLeapj28){break;}if((month2||month4||month6||month9||month11)j30){break;}}for(j1;jday;j){days.push(numToSimp(j))}break;case 2:for(j1;j31;j){days.push(numToTrad(j))if(month2isLeapj29){break;}if(month2!isLeapj28){break;}if((month2||month4||month6||month9||month11)j30){break;}}for(j1;jday;j){days.push(numToTrad(j))}break;}return days; }function getFirstDay(type){day1;switch (type) {case 1:daynumToSimp(day);break;case 2:daynumToTrad(day);break;}return day; } [config.js] var config{language_type:2,font_color:#7F7F7F,pointer_color:#000000,/*sound:0,sound_name:cc.mp3,background_style:1,background_picture:bg.jpg,background_video:3.mp4,background_color:#000000,*/ } [jquery-3.4.1.min.js] /*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ !function(e,t){use strict;objecttypeof moduleobjecttypeof module.exports?module.exportse.document?t(e,!0):function(e){if(!e.document)throw new Error(jQuery requires a window with a document);return t(e)}:t(e)}(undefined!typeof window?window:this,function(C,e){use strict;var t[],EC.document,rObject.getPrototypeOf,st.slice,gt.concat,ut.push,it.indexOf,n{},on.toString,vn.hasOwnProperty,av.toString,la.call(Object),y{},mfunction(e){returnfunctiontypeof enumber!typeof e.nodeType},xfunction(e){return null!eee.window},c{type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o(nn||E).createElement(script);if(o.texte,t)for(r in c)(it[r]||t.getAttributet.getAttribute(r))o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return nulle?e:objecttypeof e||functiontypeof e?n[o.call(e)]||object:typeof e}var f3.4.1,kfunction(e,t){return new k.fn.init(e,t)},p/^[\s\uFEFF\xA0]|[\s\uFEFF\xA0]$/g;function d(e){var t!!elengthin ee.length,nw(e);return!m(e)!x(e)(arrayn||0t||numbertypeof t0tt-1 in e)}k.fnk.prototype{jquery:f,constructor:k,length:0,toArray:function(){return s.call(this)},get:function(e){return nulle?s.call(this):e0?this[ethis.length]:this[e]},pushStack:function(e){var tk.merge(this.constructor(),e);return t.prevObjectthis,t},each:function(e){return k.each(this,e)},map:function(n){return this.pushStack(k.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var tthis.length,ne(e0?t:0);return this.pushStack(0nnt?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},k.extendk.fn.extendfunction(){var e,t,n,r,i,o,aarguments[0]||{},s1,uarguments.length,l!1;for(booleantypeof a(la,aarguments[s]||{},s),objecttypeof a||m(a)||(a{}),su(athis,s--);su;s)if(null!(earguments[s]))for(t in e)re[t],__proto__!ta!r(lr(k.isPlainObject(r)||(iArray.isArray(r)))?(na[t],oi!Array.isArray(n)?[]:i||k.isPlainObject(n)?n:{},i!1,a[t]k.extend(l,o,r)):void 0!r(a[t]r));return a},k.extend({expando:jQuery(fMath.random()).replace(/\D/g,),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||[object Object]!o.call(e))(!(tr(e))||functiontypeof(nv.call(t,constructor)t.constructor)a.call(n)l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t){b(e,{nonce:tt.nonce})},each:function(e,t){var n,r0;if(d(e)){for(ne.length;rn;r)if(!1t.call(e[r],r,e[r]))break}else for(r in e)if(!1t.call(e[r],r,e[r]))break;return e},trim:function(e){return nulle?:(e).replace(p,)},makeArray:function(e,t){var nt||[];return null!e(d(Object(e))?k.merge(n,stringtypeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return nullt?-1:i.call(t,e,n)},merge:function(e,t){for(var nt.length,r0,ie.length;rn;r)e[i]t[r];return e.lengthi,e},grep:function(e,t,n){for(var r[],i0,oe.length,a!n;io;i)!t(e[i],i)!ar.push(e[i]);return r},map:function(e,t,n){var r,i,o0,a[];if(d(e))for(re.length;or;o)null!(it(e[o],o,n))a.push(i);else for(o in e)null!(it(e[o],o,n))a.push(i);return g.apply([],a)},guid:1,support:y}),functiontypeof Symbol(k.fn[Symbol.iterator]t[Symbol.iterator]),k.each(Boolean Number String Function Array Date RegExp Object Error Symbol.split( ),function(e,t){n[[object t]]t.toLowerCase()});var hfunction(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,ksizzle1*new Date,mn.document,S0,r0,pue(),xue(),Nue(),Aue(),Dfunction(e,t){return et(l!0),0},j{}.hasOwnProperty,t[],qt.pop,Lt.push,Ht.push,Ot.slice,Pfunction(e,t){for(var n0,re.length;nr;n)if(e[n]t)return n;return-1},Rchecked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped,M[\\x20\\t\\r\\n\\f],I(?:\\\\.|[\\w-]|[^\0-\\xa0]),W\\[M*(I)(?:M*([*^$|!~]?)M*(?:((?:\\\\.|[^\\\\])*)|\((?:\\\\.|[^\\\\\])*)\|(I))|)M*\\],$:(I)(?:\\(((((?:\\\\.|[^\\\\])*)|\((?:\\\\.|[^\\\\\])*)\)|((?:\\\\.|[^\\\\()[\\]]|W)*)|.*)\\)|),Fnew RegExp(M,g),Bnew RegExp(^M|((?:^|[^\\\\])(?:\\\\.)*)M$,g),_new RegExp(^M*,M*),znew RegExp(^M*([~]|M)M*),Unew RegExp(M|),Xnew RegExp($),Vnew RegExp(^I$),G{ID:new RegExp(^#(I)),CLASS:new RegExp(^\\.(I)),TAG:new RegExp(^(I|[*])),ATTR:new RegExp(^W),PSEUDO:new RegExp(^$),CHILD:new RegExp(^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(M*(even|odd|(([-]|)(\\d*)n|)M*(?:([-]|)M*(\\d)|))M*\\)|),i),bool:new RegExp(^(?:R)$,i),needsContext:new RegExp(^M*[~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(M*((?:-\\d)?\\d*)M*\\)|)(?[^-]|$),i)},Y/HTML$/i,Q/^(?:input|select|textarea|button)$/i,J/^h\d$/i,K/^[^{]\{\s*\[native \w/,Z/^(?:#([\w-])|(\w)|\.([\w-]))$/,ee/[~]/,tenew RegExp(\\\\([\\da-f]{1,6}M?|(M)|.),ig),nefunction(e,t,n){var r0xt-65536;return r!r||n?t:r0?String.fromCharCode(r65536):String.fromCharCode(r10|55296,1023r|56320)},re/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,iefunction(e,t){return t?\0e?\ufffd:e.slice(0,-1)\\e.charCodeAt(e.length-1).toString(16) :\\e},oefunction(){T()},aebe(function(e){return!0e.disabledfieldsete.nodeName.toLowerCase()},{dir:parentNode,next:legend});try{H.apply(tO.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H{apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var ne.length,r0;while(e[n]t[r]);e.lengthn-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,fee.ownerDocument,pe?e.nodeType:9;if(nn||[],string!typeof t||!t||1!p9!p11!p)return n;if(!r((e?e.ownerDocument||e:m)!CT(e),ee||C,E)){if(11!p(uZ.exec(t)))if(iu[1]){if(9p){if(!(ae.getElementById(i)))return n;if(a.idi)return n.push(a),n}else if(f(af.getElementById(i))y(e,a)a.idi)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((iu[3])d.getElementsByClassNamee.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa!A[t ](!v||!v.test(t))(1!p||object!e.nodeName.toLowerCase())){if(ct,fe,1pU.test(t)){(se.getAttribute(id))?ss.replace(re,ie):e.setAttribute(id,sk),o(lh(t)).length;while(o--)l[o]#s xe(l[o]);cl.join(,),fee.test(t)ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{ske.removeAttribute(id)}}}return g(t.replace(B,$1),e,n,r)}function ue(){var r[];return function e(t,n){return r.push(t )b.cacheLengthdelete e[r.shift()],e[t ]n}}function le(e){return e[k]!0,e}function ce(e){var tC.createElement(fieldset);try{return!!e(t)}catch(e){return!1}finally{t.parentNodet.parentNode.removeChild(t),tnull}}function fe(e,t){var ne.split(|),rn.length;while(r--)b.attrHandle[n[r]]t}function pe(e,t){var nte,rn1e.nodeType1t.nodeTypee.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(nn.nextSibling)if(nt)return-1;return e?1:-1}function de(t){return function(e){returninpute.nodeName.toLowerCase()e.typet}}function he(n){return function(e){var te.nodeName.toLowerCase();return(inputt||buttont)e.typen}}function ge(t){return function(e){returnformin e?e.parentNode!1e.disabled?labelin e?labelin e.parentNode?e.parentNode.disabledt:e.disabledt:e.isDisabledt||e.isDisabled!!tae(e)t:e.disabledt:labelin ee.disabledt}}function ve(a){return le(function(o){return oo,le(function(e,t){var n,ra([],e.length,o),ir.length;while(i--)e[nr[i]](e[n]!(t[n]e[n]))})})}function ye(e){return eundefined!typeof e.getElementsByTagNamee}for(e in dse.support{},ise.isXMLfunction(e){var te.namespaceURI,n(e.ownerDocument||e).documentElement;return!Y.test(t||nn.nodeName||HTML)},Tse.setDocumentfunction(e){var t,n,re?e.ownerDocument||e:m;return r!C9r.nodeTyper.documentElement(a(Cr).documentElement,E!i(C),m!C(nC.defaultView)n.top!n(n.addEventListener?n.addEventListener(unload,oe,!1):n.attachEventn.attachEvent(onunload,oe)),d.attributesce(function(e){return e.classNamei,!e.getAttribute(className)}),d.getElementsByTagNamece(function(e){return e.appendChild(C.createComment()),!e.getElementsByTagName(*).length}),d.getElementsByClassNameK.test(C.getElementsByClassName),d.getByIdce(function(e){return a.appendChild(e).idk,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.IDfunction(e){var te.replace(te,ne);return function(e){return e.getAttribute(id)t}},b.find.IDfunction(e,t){if(undefined!typeof t.getElementByIdE){var nt.getElementById(e);return n?[n]:[]}}):(b.filter.IDfunction(e){var ne.replace(te,ne);return function(e){var tundefined!typeof e.getAttributeNodee.getAttributeNode(id);return tt.valuen}},b.find.IDfunction(e,t){if(undefined!typeof t.getElementByIdE){var n,r,i,ot.getElementById(e);if(o){if((no.getAttributeNode(id))n.valuee)return[o];it.getElementsByName(e),r0;while(oi[r])if((no.getAttributeNode(id))n.valuee)return[o]}return[]}}),b.find.TAGd.getElementsByTagName?function(e,t){returnundefined!typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r[],i0,ot.getElementsByTagName(e);if(*e){while(no[i])1n.nodeTyper.push(n);return r}return o},b.find.CLASSd.getElementsByClassNamefunction(e,t){if(undefined!typeof t.getElementsByClassNameE)return t.getElementsByClassName(e)},s[],v[],(d.qsaK.test(C.querySelectorAll))(ce(function(e){a.appendChild(e).innerHTMLa idk/aselect idk-\r\\ msallowcaptureoption selected/option/select,e.querySelectorAll([msallowcapture^]).lengthv.push([*^$]M*(?:|\\)),e.querySelectorAll([selected]).length||v.push(\\[M*(?:value|R)),e.querySelectorAll([id~k-]).length||v.push(~),e.querySelectorAll(:checked).length||v.push(:checked),e.querySelectorAll(a#k*).length||v.push(.#.[~])}),ce(function(e){e.innerHTMLa href disableddisabled/aselect disableddisabledoption//select;var tC.createElement(input);t.setAttribute(type,hidden),e.appendChild(t).setAttribute(name,D),e.querySelectorAll([named]).lengthv.push(nameM*[*^$|!~]?),2!e.querySelectorAll(:enabled).lengthv.push(:enabled,:disabled),a.appendChild(e).disabled!0,2!e.querySelectorAll(:disabled).lengthv.push(:enabled,:disabled),e.querySelectorAll(*,:x),v.push(,.*:)})),(d.matchesSelectorK.test(ca.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))ce(function(e){d.disconnectedMatchc.call(e,*),c.call(e,[s!]:x),s.push(!,$)}),vv.lengthnew RegExp(v.join(|)),ss.lengthnew RegExp(s.join(|)),tK.test(a.compareDocumentPosition),yt||K.test(a.contains)?function(e,t){var n9e.nodeType?e.documentElement:e,rtt.parentNode;return er||!(!r||1!r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition16e.compareDocumentPosition(r)))}:function(e,t){if(t)while(tt.parentNode)if(te)return!0;return!1},Dt?function(e,t){if(et)return l!0,0;var n!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1(n(e.ownerDocument||e)(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetachedt.compareDocumentPosition(e)n?eC||e.ownerDocumentmy(m,e)?-1:tC||t.ownerDocumentmy(m,t)?1:u?P(u,e)-P(u,t):0:4n?-1:1)}:function(e,t){if(et)return l!0,0;var n,r0,ie.parentNode,ot.parentNode,a[e],s[t];if(!i||!o)return eC?-1:tC?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(io)return pe(e,t);ne;while(nn.parentNode)a.unshift(n);nt;while(nn.parentNode)s.unshift(n);while(a[r]s[r])r;return r?pe(a[r],s[r]):a[r]m?-1:s[r]m?1:0}),C},se.matchesfunction(e,t){return se(e,null,null,t)},se.matchesSelectorfunction(e,t){if((e.ownerDocument||e)!CT(e),d.matchesSelectorE!A[t ](!s||!s.test(t))(!v||!v.test(t)))try{var nc.call(e,t);if(n||d.disconnectedMatch||e.document11!e.document.nodeType)return n}catch(e){A(t,!0)}return 0se(t,C,null,[e]).length},se.containsfunction(e,t){return(e.ownerDocument||e)!CT(e),y(e,t)},se.attrfunction(e,t){(e.ownerDocument||e)!CT(e);var nb.attrHandle[t.toLowerCase()],rnj.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!r?r:d.attributes||!E?e.getAttribute(t):(re.getAttributeNode(t))r.specified?r.value:null},se.escapefunction(e){return(e).replace(re,ie)},se.errorfunction(e){throw new Error(Syntax error, unrecognized expression: e)},se.uniqueSortfunction(e){var t,n[],r0,i0;if(l!d.detectDuplicates,u!d.sortStablee.slice(0),e.sort(D),l){while(te[i])te[i](rn.push(i));while(r--)e.splice(n[r],1)}return unull,e},ose.getTextfunction(e){var t,n,r0,ie.nodeType;if(i){if(1i||9i||11i){if(stringtypeof e.textContent)return e.textContent;for(ee.firstChild;e;ee.nextSibling)no(e)}else if(3i||4i)return e.nodeValue}else while(te[r])no(t);return n},(bse.selectors{cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{:{dir:parentNode,first:!0}, :{dir:parentNode},:{dir:previousSibling,first:!0},~:{dir:previousSibling}},preFilter:{ATTR:function(e){return e[1]e[1].replace(te,ne),e[3](e[3]||e[4]||e[5]||).replace(te,ne),~e[2](e[3] e[3] ),e.slice(0,4)},CHILD:function(e){return e[1]e[1].toLowerCase(),nthe[1].slice(0,3)?(e[3]||se.error(e[0]),e[4](e[4]?e[5](e[6]||1):2*(evene[3]||odde[3])),e[5](e[7]e[8]||odde[3])):e[3]se.error(e[0]),e},PSEUDO:function(e){var t,n!e[6]e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]e[4]||e[5]||:nX.test(n)(th(n,!0))(tn.indexOf(),n.length-t)-n.length)(e[0]e[0].slice(0,t),e[2]n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var te.replace(te,ne).toLowerCase();return*e?function(){return!0}:function(e){return e.nodeNamee.nodeName.toLowerCase()t}},CLASS:function(e){var tp[e ];return t||(tnew RegExp((^|M)e(M|$)))p(e,function(e){return t.test(stringtypeof e.classNamee.className||undefined!typeof e.getAttributee.getAttribute(class)||)})},ATTR:function(n,r,i){return function(e){var tse.attr(e,n);return nullt?!r:!r||(t,r?ti:!r?t!i:^r?i0t.indexOf(i):*r?i-1t.indexOf(i):$r?it.slice(-i.length)i:~r?-1( t.replace(F, ) ).indexOf(i):|r(ti||t.slice(0,i.length1)i-))}},CHILD:function(h,e,t,g,v){var ynth!h.slice(0,3),mlast!h.slice(-4),xof-typee;return 1g0v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,ly!m?nextSibling:previousSibling,ce.parentNode,fxe.nodeName.toLowerCase(),p!n!x,d!1;if(c){if(y){while(l){ae;while(aa[l])if(x?a.nodeName.toLowerCase()f:1a.nodeType)return!1;ulonlyh!unextSibling}return!0}if(u[m?c.firstChild:c.lastChild],mp){d(s(r(i(o(ac)[k]||(a[k]{}))[a.uniqueID]||(o[a.uniqueID]{}))[h]||[])[0]Sr[1])r[2],asc.childNodes[s];while(asaa[l]||(ds0)||u.pop())if(1a.nodeTypedae){i[h][S,s,d];break}}else if(p(ds(r(i(o(ae)[k]||(a[k]{}))[a.uniqueID]||(o[a.uniqueID]{}))[h]||[])[0]Sr[1]),!1d)while(asaa[l]||(ds0)||u.pop())if((x?a.nodeName.toLowerCase()f:1a.nodeType)d(p((i(oa[k]||(a[k]{}))[a.uniqueID]||(o[a.uniqueID]{}))[h][S,d]),ae))break;return(d-v)g||d%g00d/g}}},PSEUDO:function(e,o){var t,ab.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error(unsupported pseudo: e);return a[k]?a(o):1a.length?(t[e,e,,o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,ra(e,o),ir.length;while(i--)e[nP(e,r[i])]!(t[n]r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r[],i[],sf(e.replace(B,$1));return s[k]?le(function(e,t,n,r){var i,os(e,null,r,[]),ae.length;while(a--)(io[a])(e[a]!(t[a]i))}):function(e,t,n){return r[0]e,s(r,null,n,i),r[0]null,!i.pop()}}),has:le(function(t){return function(e){return 0se(t,e).length}}),contains:le(function(t){return tt.replace(te,ne),function(e){return-1(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||)||se.error(unsupported lang: n),nn.replace(te,ne).toLowerCase(),function(e){var t;do{if(tE?e.lang:e.getAttribute(xml:lang)||e.getAttribute(lang))return(tt.toLowerCase())n||0t.indexOf(n-)}while((ee.parentNode)1e.nodeType);return!1}}),target:function(e){var tn.locationn.location.hash;return tt.slice(1)e.id},root:function(e){return ea},focus:function(e){return eC.activeElement(!C.hasFocus||C.hasFocus())!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var te.nodeName.toLowerCase();returninputt!!e.checked||optiont!!e.selected},selected:function(e){return e.parentNodee.parentNode.selectedIndex,!0e.selected},empty:function(e){for(ee.firstChild;e;ee.nextSibling)if(e.nodeType6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var te.nodeName.toLowerCase();returninputtbuttone.type||buttont},text:function(e){var t;returninpute.nodeName.toLowerCase()texte.type(null(te.getAttribute(type))||textt.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n0?nt:n]}),even:ve(function(e,t){for(var n0;nt;n2)e.push(n);return e}),odd:ve(function(e,t){for(var n1;nt;n2)e.push(n);return e}),lt:ve(function(e,t,n){for(var rn0?nt:tn?t:n;0--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var rn0?nt:n;rt;)e.push(r);return e})}}).pseudos.nthb.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]he(e);function me(){}function xe(e){for(var t0,ne.length,r;tn;t)re[t].value;return r}function be(s,e,t){var ue.dir,le.next,cl||u,ftparentNodec,pr;return e.first?function(e,t,n){while(ee[u])if(1e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a[S,p];if(n){while(ee[u])if((1e.nodeType||f)s(e,t,n))return!0}else while(ee[u])if(1e.nodeType||f)if(i(oe[k]||(e[k]{}))[e.uniqueID]||(o[e.uniqueID]{}),lle.nodeName.toLowerCase())ee[u]||e;else{if((ri[c])r[0]Sr[1]p)return a[2]r[2];if((i[c]a)[2]s(e,t,n))return!0}return!1}}function we(i){return 1i.length?function(e,t,n){var ri.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a[],s0,ue.length,lnull!t;su;s)(oe[s])(n!n(o,r,i)||(a.push(o),lt.push(s)));return a}function Ce(d,h,g,v,y,e){return v!v[k](vCe(v)),y!y[k](yCe(y,e)),le(function(e,t,n,r){var i,o,a,s[],u[],lt.length,ce||function(e,t,n){for(var r0,it.length;ri;r)se(e,t[r],n);return n}(h||*,n.nodeType?[n]:n,[]),f!d||!eh?c:Te(c,s,d,n,r),pg?y||(e?d:l||v)?[]:t:f;if(gg(f,p,n,r),v){iTe(p,u),v(i,[],n,r),oi.length;while(o--)(ai[o])(p[u[o]]!(f[u[o]]a))}if(e){if(y||d){if(y){i[],op.length;while(o--)(ap[o])i.push(f[o]a);y(null,p[],i,r)}op.length;while(o--)(ap[o])-1(iy?P(e,a):s[o])(e[i]!(t[i]a))}}else pTe(pt?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,re.length,ob.relative[e[0].type],ao||b.relative[ ],so?1:0,ube(function(e){return ei},a,!0),lbe(function(e){return-1P(i,e)},a,!0),c[function(e,t,n){var r!o(n||t!w)||((it).nodeType?u(e,t,n):l(e,t,n));return inull,r}];sr;s)if(tb.relative[e[s].type])c[be(we(c),t)];else{if((tb.filter[e[s].type].apply(null,e[s].matches))[k]){for(ns;nr;n)if(b.relative[e[n].type])break;return Ce(1swe(c),1sxe(e.slice(0,s-1).concat({value: e[s-2].type?*:})).replace(B,$1),t,snEe(e.slice(s,n)),nrEe(ee.slice(n)),nrxe(e))}c.push(t)}return we(c)}return me.prototypeb.filtersb.pseudos,b.setFiltersnew me,hse.tokenizefunction(e,t){var n,r,i,o,a,s,u,lx[e ];if(l)return t?0:l.slice(0);ae,s[],ub.preFilter;while(a){for(o in n!(r_.exec(a))||(r(aa.slice(r[0].length)||a),s.push(i[])),n!1,(rz.exec(a))(nr.shift(),i.push({value:n,type:r[0].replace(B, )}),aa.slice(n.length)),b.filter)!(rG[o].exec(a))||u[o]!(ru[o](r))||(nr.shift(),i.push({value:n,type:o,matches:r}),aa.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},fse.compilefunction(e,t){var n,v,y,m,x,r,i[],o[],aN[e ];if(!a){t||(th(e)),nt.length;while(n--)(aEe(t[n]))[k]?i.push(a):o.push(a);(aN(e,(vo,m0(yi).length,x0v.length,rfunction(e,t,n,r,i){var o,a,s,u0,l0,ce[],f[],pw,de||xb.find.TAG(*,i),hSnullp?1:Math.random()||.1,gd.length;for(i(wtC||t||i);l!gnull!(od[l]);l){if(xo){a0,t||o.ownerDocumentC||(T(o),n!E);while(sv[a])if(s(o,t||C,n)){r.push(o);break}i(Sh)}m((o!so)u--,ec.push(o))}if(ul,ml!u){a0;while(sy[a])s(c,f,t,n);if(e){if(0u)while(l--)c[l]||f[l]||(f[l]q.call(r));fTe(f)}H.apply(r,f),i!e0f.length1uy.lengthse.uniqueSort(r)}return i(Sh,wp),c},m?le(r):r))).selectore}return a},gse.selectfunction(e,t,n,r){var i,o,a,s,u,lfunctiontypeof ee,c!rh(el.selector||e);if(nn||[],1c.length){if(2(oc[0]c[0].slice(0)).lengthID(ao[0]).type9t.nodeTypeEb.relative[o[1].type]){if(!(t(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l(tt.parentNode),ee.slice(o.shift().value.length)}iG.needsContext.test(e)?0:o.length;while(i--){if(ao[i],b.relative[sa.type])break;if((ub.find[s])(ru(a.matches[0].replace(te,ne),ee.test(o[0].type)ye(t.parentNode)||t))){if(o.splice(i,1),!(er.lengthxe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)ye(t.parentNode)||t),n},d.sortStablek.split().sort(D).join()k,d.detectDuplicates!!l,T(),d.sortDetachedce(function(e){return 1e.compareDocumentPosition(C.createElement(fieldset))}),ce(function(e){return e.innerHTMLa href#/a,#e.firstChild.getAttribute(href)})||fe(type|href|height|width,function(e,t,n){if(!n)return e.getAttribute(t,typet.toLowerCase()?1:2)}),d.attributesce(function(e){return e.innerHTMLinput/,e.firstChild.setAttribute(value,),e.firstChild.getAttribute(value)})||fe(value,function(e,t,n){if(!ninpute.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return nulle.getAttribute(disabled)})||fe(R,function(e,t,n){var r;if(!n)return!0e[t]?t.toLowerCase():(re.getAttributeNode(t))r.specified?r.value:null}),se}(C);k.findh,k.exprh.selectors,k.expr[:]k.expr.pseudos,k.uniqueSortk.uniqueh.uniqueSort,k.texth.getText,k.isXMLDoch.isXML,k.containsh.contains,k.escapeSelectorh.escape;var Tfunction(e,t,n){var r[],ivoid 0!n;while((ee[t])9!e.nodeType)if(1e.nodeType){if(ik(e).is(n))break;r.push(e)}return r},Sfunction(e,t){for(var n[];e;ee.nextSibling)1e.nodeTypee!tn.push(e);return n},Nk.expr.match.needsContext;function A(e,t){return e.nodeNamee.nodeName.toLowerCase()t.toLowerCase()}var D/^([a-z][^\/\0:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?(?:\/\1|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!r}):n.nodeType?k.grep(e,function(e){return en!r}):string!typeof n?k.grep(e,function(e){return-1i.call(n,e)!r}):k.filter(n,e,r)}k.filterfunction(e,t,n){var rt[0];return n(e:not(e)),1t.length1r.nodeType?k.find.matchesSelector(r,e)?[r]:[]:k.find.matches(e,k.grep(t,function(e){return 1e.nodeType}))},k.fn.extend({find:function(e){var t,n,rthis.length,ithis;if(string!typeof e)return this.pushStack(k(e).filter(function(){for(t0;tr;t)if(k.contains(i[t],this))return!0}));for(nthis.pushStack([]),t0;tr;t)k.find(e,i[t],n);return 1r?k.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,stringtypeof eN.test(e)?k(e):e||[],!1).length}});var q,L/^(?:\s*([\w\W])[^]*|#([\w-]))$/;(k.fn.initfunction(e,t,n){var r,i;if(!e)return this;if(nn||q,stringtypeof e){if(!(re[0]e[e.length-1]3e.length?[null,e,null]:L.exec(e))||!r[1]t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(tt instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],tt.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(iE.getElementById(r[2]))(this[0]i,this.length1),this}return e.nodeType?(this[0]e,this.length1,this):m(e)?void 0!n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototypek.fn,qk(E);var H/^(?:parents|prev(?:Until|All))/,O{children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((ee[t])1!e.nodeType);return e}k.fn.extend({has:function(e){var tk(e,this),nt.length;return this.filter(function(){for(var e0;en;e)if(k.contains(this,t[e]))return!0})},closest:function(e,t){var n,r0,ithis.length,o[],astring!typeof ek(e);if(!N.test(e))for(;ri;r)for(nthis[r];nn!t;nn.parentNode)if(n.nodeType11(a?-1a.index(n):1n.nodeTypek.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1o.length?k.uniqueSort(o):o)},index:function(e){return e?stringtypeof e?i.call(k(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(k.uniqueSort(k.merge(this.get(),k(e,t))))},addBack:function(e){return this.add(nulle?this.prevObject:this.prevObject.filter(e))}}),k.each({parent:function(e){var te.parentNode;return t11!t.nodeType?t:null},parents:function(e){return T(e,parentNode)},parentsUntil:function(e,t,n){return T(e,parentNode,n)},next:function(e){return P(e,nextSibling)},prev:function(e){return P(e,previousSibling)},nextAll:function(e){return T(e,nextSibling)},prevAll:function(e){return T(e,previousSibling)},nextUntil:function(e,t,n){return T(e,nextSibling,n)},prevUntil:function(e,t,n){return T(e,previousSibling,n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){returnundefined!typeof e.contentDocument?e.contentDocument:(A(e,template)(ee.content||e),k.merge([],e.childNodes))}},function(r,i){k.fn[r]function(e,t){var nk.map(this,i,e);returnUntil!r.slice(-5)(te),tstringtypeof t(nk.filter(t,n)),1this.length(O[r]||k.uniqueSort(n),H.test(r)n.reverse()),this.pushStack(n)}});var R/[^\x20\t\r\n\f]/g;function M(e){return e}function I(e){throw e}function W(e,t,n,r){var i;try{em(ie.promise)?i.call(e).done(t).fail(n):em(ie.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}k.Callbacksfunction(r){var e,n;rstringtypeof r?(er,n{},k.each(e.match(R)||[],function(e,t){n[t]!0}),n):k.extend({},r);var i,t,o,a,s[],u[],l-1,cfunction(){for(aa||r.once,oi!0;u.length;l-1){tu.shift();while(ls.length)!1s[l].apply(t[0],t[1])r.stopOnFalse(ls.length,t!1)}r.memory||(t!1),i!1,a(st?[]:)},f{add:function(){return s(t!i(ls.length-1,u.push(t)),function n(e){k.each(e,function(e,t){m(t)?r.uniquef.has(t)||s.push(t):tt.lengthstring!w(t)n(t)})}(arguments),t!ic()),this},remove:function(){return k.each(arguments,function(e,t){var n;while(-1(nk.inArray(t,s,n)))s.splice(n,1),nll--}),this},has:function(e){return e?-1k.inArray(e,s):0s.length},empty:function(){return s(s[]),this},disable:function(){return au[],st,this},disabled:function(){return!s},lock:function(){return au[],t||i||(st),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t[e,(tt||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},k.extend({Deferred:function(e){var o[[notify,progress,k.Callbacks(memory),k.Callbacks(memory),2],[resolve,done,k.Callbacks(once memory),k.Callbacks(once memory),0,resolved],[reject,fail,k.Callbacks(once memory),k.Callbacks(once memory),1,rejected]],ipending,a{state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},catch:function(e){return a.then(null,e)},pipe:function(){var iarguments;return k.Deferred(function(r){k.each(o,function(e,t){var nm(i[t[4]])i[t[4]];s[t[1]](function(){var enn.apply(this,arguments);em(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]With](this,n?[e]:arguments)})}),inull}).promise()},then:function(t,n,r){var u0;function l(i,o,a,s){return function(){var nthis,rarguments,efunction(){var e,t;if(!(iu)){if((ea.apply(n,r))o.promise())throw new TypeError(Thenable self-resolution);te(objecttypeof e||functiontypeof e)e.then,m(t)?s?t.call(e,l(u,o,M,s),l(u,o,I,s)):(u,t.call(e,l(u,o,M,s),l(u,o,I,s),l(u,o,M,o.notifyWith))):(a!M(nvoid 0,r[e]),(s||o.resolveWith)(n,r))}},ts?e:function(){try{e()}catch(e){k.Deferred.exceptionHookk.Deferred.exceptionHook(e,t.stackTrace),ui1(a!I(nvoid 0,r[e]),o.rejectWith(n,r))}};i?t():(k.Deferred.getStackHook(t.stackTracek.Deferred.getStackHook()),C.setTimeout(t))}}return k.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:M,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:M)),o[2][3].add(l(0,e,m(n)?n:I))}).promise()},promise:function(e){return null!e?k.extend(e,a):a}},s{};return k.each(o,function(e,t){var nt[2],rt[5];a[t[1]]n.add,rn.add(function(){ir},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]function(){return s[t[0]With](thiss?void 0:this,arguments),this},s[t[0]With]n.fireWith}),a.promise(s),ee.call(s,s),s},when:function(e){var narguments.length,tn,rArray(t),is.call(arguments),ok.Deferred(),afunction(t){return function(e){r[t]this,i[t]1arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n1(W(e,o.done(a(t)).resolve,o.reject,!n),pendingo.state()||m(i[t]i[t].then)))return o.then();while(t--)W(i[t],a(t),o.reject);return o.promise()}});var $/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;k.Deferred.exceptionHookfunction(e,t){C.consoleC.console.warne$.test(e.name)C.console.warn(jQuery.Deferred exception: e.message,e.stack,t)},k.readyExceptionfunction(e){C.setTimeout(function(){throw e})};var Fk.Deferred();function B(){E.removeEventListener(DOMContentLoaded,B),C.removeEventListener(load,B),k.ready()}k.fn.readyfunction(e){return F.then(e)[catch](function(e){k.readyException(e)}),this},k.extend({isReady:!1,readyWait:1,ready:function(e){(!0e?--k.readyWait:k.isReady)||(k.isReady!0)!e0--k.readyWait||F.resolveWith(E,[k])}}),k.ready.thenF.then,completeE.readyState||loading!E.readyState!E.documentElement.doScroll?C.setTimeout(k.ready):(E.addEventListener(DOMContentLoaded,B),C.addEventListener(load,B));var _function(e,t,n,r,i,o,a){var s0,ue.length,lnulln;if(objectw(n))for(s in i!0,n)_(e,t,s,n[s],!0,o,a);else if(void 0!r(i!0,m(r)||(a!0),l(a?(t.call(e,r),tnull):(lt,tfunction(e,t,n){return l.call(k(e),n)})),t))for(;su;s)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},z/^-ms-/,U/-([a-z])/g;function X(e,t){return t.toUpperCase()}function V(e){return e.replace(z,ms-).replace(U,X)}var Gfunction(e){return 1e.nodeType||9e.nodeType||!e.nodeType};function Y(){this.expandok.expandoY.uid}Y.uid1,Y.prototype{cache:function(e){var te[this.expando];return t||(t{},G(e)(e.nodeType?e[this.expando]t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,ithis.cache(e);if(stringtypeof t)i[V(t)]n;else for(r in t)i[V(r)]t[r];return i},get:function(e,t){return void 0t?this.cache(e):e[this.expando]e[this.expando][V(t)]},access:function(e,t,n){return void 0t||tstringtypeof tvoid 0n?this.get(e,t):(this.set(e,t,n),void 0!n?n:t)},remove:function(e,t){var n,re[this.expando];if(void 0!r){if(void 0!t){n(tArray.isArray(t)?t.map(V):(tV(t))in r?[t]:t.match(R)||[]).length;while(n--)delete r[t[n]]}(void 0t||k.isEmptyObject(r))(e.nodeType?e[this.expando]void 0:delete e[this.expando])}},hasData:function(e){var te[this.expando];return void 0!t!k.isEmptyObject(t)}};var Qnew Y,Jnew Y,K/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Z/[A-Z]/g;function ee(e,t,n){var r,i;if(void 0n1e.nodeType)if(rdata-t.replace(Z,-$).toLowerCase(),stringtypeof(ne.getAttribute(r))){try{ntrue(in)||false!i(nulli?null:ii?i:K.test(i)?JSON.parse(i):i)}catch(e){}J.set(e,t,n)}else nvoid 0;return n}k.extend({hasData:function(e){return J.hasData(e)||Q.hasData(e)},data:function(e,t,n){return J.access(e,t,n)},removeData:function(e,t){J.remove(e,t)},_data:function(e,t,n){return Q.access(e,t,n)},_removeData:function(e,t){Q.remove(e,t)}}),k.fn.extend({data:function(n,e){var t,r,i,othis[0],aoo.attributes;if(void 0n){if(this.length(iJ.get(o),1o.nodeType!Q.get(o,hasDataAttrs))){ta.length;while(t--)a[t]0(ra[t].name).indexOf(data-)(rV(r.slice(5)),ee(o,r,i[r]));Q.set(o,hasDataAttrs,!0)}return i}returnobjecttypeof n?this.each(function(){J.set(this,n)}):_(this,function(e){var t;if(ovoid 0e)return void 0!(tJ.get(o,n))?t:void 0!(tee(o,n))?t:void 0;this.each(function(){J.set(this,n,e)})},null,e,1arguments.length,null,!0)},removeData:function(e){return this.each(function(){J.remove(this,e)})}}),k.extend({queue:function(e,t,n){var r;if(e)return t(t||fx)queue,rQ.get(e,t),n(!r||Array.isArray(n)?rQ.access(e,t,k.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){tt||fx;var nk.queue(e,t),rn.length,in.shift(),ok._queueHooks(e,t);inprogressi(in.shift(),r--),i(fxtn.unshift(inprogress),delete o.stop,i.call(e,function(){k.dequeue(e,t)},o)),!roo.empty.fire()},_queueHooks:function(e,t){var ntqueueHooks;return Q.get(e,n)||Q.access(e,n,{empty:k.Callbacks(once memory).add(function(){Q.remove(e,[tqueue,n])})})}}),k.fn.extend({queue:function(t,n){var e2;returnstring!typeof t(nt,tfx,e--),arguments.lengthe?k.queue(this[0],t):void 0n?this:this.each(function(){var ek.queue(this,t,n);k._queueHooks(this,t),fxtinprogress!e[0]k.dequeue(this,t)})},dequeue:function(e){return this.each(function(){k.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||fx,[])},promise:function(e,t){var n,r1,ik.Deferred(),othis,athis.length,sfunction(){--r||i.resolveWith(o,[o])};string!typeof e(te,evoid 0),ee||fx;while(a--)(nQ.get(o[a],equeueHooks))n.empty(r,n.empty.add(s));return s(),i.promise(t)}});var te/[-]?(?:\d*\.|)\d(?:[eE][-]?\d|)/.source,nenew RegExp(^(?:([-])|)(te)([a-z%]*)$,i),re[Top,Right,Bottom,Left],ieE.documentElement,oefunction(e){return k.contains(e.ownerDocument,e)},ae{composed:!0};ie.getRootNode(oefunction(e){return k.contains(e.ownerDocument,e)||e.getRootNode(ae)e.ownerDocument});var sefunction(e,t){returnnone(et||e).style.display||e.style.displayoe(e)nonek.css(e,display)},uefunction(e,t,n,r){var i,o,a{};for(o in t)a[o]e.style[o],e.style[o]t[o];for(o in in.apply(e,r||[]),t)e.style[o]a[o];return i};function le(e,t,n,r){var i,o,a20,sr?function(){return r.cur()}:function(){return k.css(e,t,)},us(),lnn[3]||(k.cssNumber[t]?:px),ce.nodeType(k.cssNumber[t]||px!lu)ne.exec(k.css(e,t));if(cc[3]!l){u/2,ll||c[3],cu||1;while(a--)k.style(e,t,cl),(1-o)*(1-(os()/u||.5))0(a0),c/o;c*2,k.style(e,t,cl),nn||[]}return n(cc||u||0,in[1]?c(n[1]1)*n[2]:n[2],r(r.unitl,r.startc,r.endi)),i}var ce{};function fe(e,t){for(var n,r,i,o,a,s,u,l[],c0,fe.length;cf;c)(re[c]).style(nr.style.display,t?(nonen(l[c]Q.get(r,display)||null,l[c]||(r.style.display)),r.style.displayse(r)(l[c](uaovoid 0,a(ir).ownerDocument,si.nodeName,(uce[s])||(oa.body.appendChild(a.createElement(s)),uk.css(o,display),o.parentNode.removeChild(o),noneu(ublock),ce[s]u)))):none!n(l[c]none,Q.set(r,display,n)));for(c0;cf;c)null!l[c](e[c].style.displayl[c]);return e}k.fn.extend({show:function(){return fe(this,!0)},hide:function(){return fe(this)},toggle:function(e){returnbooleantypeof e?e?this.show():this.hide():this.each(function(){se(this)?k(this).show():k(this).hide()})}});var pe/^(?:checkbox|radio)$/i,de/([a-z][^\/\0\x20\t\r\n\f]*)/i,he/^$|^module$|\/(?:java|ecma)script/i,ge{option:[1,select multiplemultiple,/select],thead:[1,table,/table],col:[2,tablecolgroup,/colgroup/table],tr:[2,tabletbody,/tbody/table],td:[3,tabletbodytr,/tr/tbody/table],_default:[0,,]};function ve(e,t){var n;return nundefined!typeof e.getElementsByTagName?e.getElementsByTagName(t||*):undefined!typeof e.querySelectorAll?e.querySelectorAll(t||*):[],void 0t||tA(e,t)?k.merge([e],n):n}function ye(e,t){for(var n0,re.length;nr;n)Q.set(e[n],globalEval,!t||Q.get(t[n],globalEval))}ge.optgroupge.option,ge.tbodyge.tfootge.colgroupge.captionge.thead,ge.thge.td;var me,xe,be/|#?\w;/;function we(e,t,n,r,i){for(var o,a,s,u,l,c,ft.createDocumentFragment(),p[],d0,he.length;dh;d)if((oe[d])||0o)if(objectw(o))k.merge(p,o.nodeType?[o]:o);else if(be.test(o)){aa||f.appendChild(t.createElement(div)),s(de.exec(o)||[,])[1].toLowerCase(),uge[s]||ge._default,a.innerHTMLu[1]k.htmlPrefilter(o)u[2],cu[0];while(c--)aa.lastChild;k.merge(p,a.childNodes),(af.firstChild).textContent}else p.push(t.createTextNode(o));f.textContent,d0;while(op[d])if(r-1k.inArray(o,r))ii.push(o);else if(loe(o),ave(f.appendChild(o),script),lye(a),n){c0;while(oa[c])he.test(o.type||)n.push(o)}return f}meE.createDocumentFragment().appendChild(E.createElement(div)),(xeE.createElement(input)).setAttribute(type,radio),xe.setAttribute(checked,checked),xe.setAttribute(name,t),me.appendChild(xe),y.checkCloneme.cloneNode(!0).cloneNode(!0).lastChild.checked,me.innerHTMLtextareax/textarea,y.noCloneChecked!!me.cloneNode(!0).lastChild.defaultValue;var Te/^key/,Ce/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee/^([^.]*)(?:\.(.)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return efunction(){try{return E.activeElement}catch(e){}}()(focust)}function Ae(e,t,n,r,i,o){var a,s;if(objecttypeof t){for(s instring!typeof n(rr||n,nvoid 0),t)Ae(e,s,n,r,t[s],o);return e}if(nullrnulli?(in,rnvoid 0):nulli(stringtypeof n?(ir,rvoid 0):(ir,rn,nvoid 0)),!1i)iSe;else if(!i)return e;return 1o(ai,(ifunction(e){return k().off(e),a.apply(this,arguments)}).guida.guid||(a.guidk.guid)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,rQ.get(this,i);if(1e.isTriggerthis[i]){if(r.length)(k.event.special[i]||{}).delegateTypee.stopPropagation();else if(rs.call(arguments),Q.set(this,i,r),to(this,i),this[i](),r!(nQ.get(this,i))||t?Q.set(this,i,!1):n{},r!n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0Q.get(e,i)k.event.add(e,i,ke)}k.event{global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,vQ.get(t);if(v){n.handler(n(on).handler,io.selector),ik.find.matchesSelector(ie,i),n.guid||(n.guidk.guid),(uv.events)||(uv.events{}),(av.handle)||(av.handlefunction(e){returnundefined!typeof kk.event.triggered!e.type?k.event.dispatch.apply(t,arguments):void 0}),l(e(e||).match(R)||[]).length;while(l--)dg(sEe.exec(e[l])||[])[1],h(s[2]||).split(.).sort(),d(fk.event.special[d]||{},d(i?f.delegateType:f.bindType)||d,fk.event.special[d]||{},ck.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:ik.expr.match.needsContext.test(i),namespace:h.join(.)},o),(pu[d])||((pu[d][]).delegateCount0,f.setup!1!f.setup.call(t,r,h,a)||t.addEventListenert.addEventListener(d,a)),f.add(f.add.call(t,c),c.handler.guid||(c.handler.guidn.guid)),i?p.splice(p.delegateCount,0,c):p.push(c),k.event.global[d]!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,vQ.hasData(e)Q.get(e);if(v(uv.events)){l(t(t||).match(R)||[]).length;while(l--)if(dg(sEe.exec(t[l])||[])[1],h(s[2]||).split(.).sort(),d){fk.event.special[d]||{},pu[d(r?f.delegateType:f.bindType)||d]||[],ss[2]new RegExp((^|\\.)h.join(\\.(?:.*\\.|))(\\.|$)),aop.length;while(o--)cp[o],!ig!c.origType||nn.guid!c.guid||s!s.test(c.namespace)||rr!c.selector(**!r||!c.selector)||(p.splice(o,1),c.selectorp.delegateCount--,f.removef.remove.call(e,c));a!p.length(f.teardown!1!f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,dt[l],n,r,!0);k.isEmptyObject(u)Q.remove(e,handle events)}},dispatch:function(e){var t,n,r,i,o,a,sk.event.fix(e),unew Array(arguments.length),l(Q.get(this,events)||{})[s.type]||[],ck.event.special[s.type]||{};for(u[0]s,t1;targuments.length;t)u[t]arguments[t];if(s.delegateTargetthis,!c.preDispatch||!1!c.preDispatch.call(this,s)){ak.event.handlers.call(this,s,l),t0;while((ia[t])!s.isPropagationStopped()){s.currentTargeti.elem,n0;while((oi.handlers[n])!s.isImmediatePropagationStopped())s.rnamespace!1!o.namespace!s.rnamespace.test(o.namespace)||(s.handleObjo,s.datao.data,void 0!(r((k.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,u))!1(s.resultr)(s.preventDefault(),s.stopPropagation()))}return c.postDispatchc.postDispatch.call(this,s),s.result}},handlers:function(e,t){var n,r,i,o,a,s[],ut.delegateCount,le.target;if(ul.nodeType!(clicke.type1e.button))for(;l!this;ll.parentNode||this)if(1l.nodeType(click!e.type||!0!l.disabled)){for(o[],a{},n0;nu;n)void 0a[i(rt[n]).selector ](a[i]r.needsContext?-1k(i,this).index(l):k.find(i,this,null,[l]).length),a[i]o.push(r);o.lengths.push({elem:l,handlers:o})}return lthis,ut.lengths.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(k.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[k.expando]?e:new k.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var tthis||e;return pe.test(t.type)t.clickA(t,input)De(t,click,ke),!1},trigger:function(e){var tthis||e;return pe.test(t.type)t.clickA(t,input)De(t,click),!0},_default:function(e){var te.target;return pe.test(t.type)t.clickA(t,input)Q.get(t,click)||A(t,a)}},beforeunload:{postDispatch:function(e){void 0!e.resulte.originalEvent(e.originalEvent.returnValuee.result)}}}},k.removeEventfunction(e,t,n){e.removeEventListenere.removeEventListener(t,n)},k.Eventfunction(e,t){if(!(this instanceof k.Event))return new k.Event(e,t);ee.type?(this.originalEvente,this.typee.type,this.isDefaultPreventede.defaultPrevented||void 0e.defaultPrevented!1e.returnValue?ke:Se,this.targete.target3e.target.nodeType?e.target.parentNode:e.target,this.currentTargete.currentTarget,this.relatedTargete.relatedTarget):this.typee,tk.extend(this,t),this.timeStampee.timeStamp||Date.now(),this[k.expando]!0},k.Event.prototype{constructor:k.Event,isDefaultPrevented:Se,isPropagationStopped:Se,isImmediatePropagationStopped:Se,isSimulated:!1,preventDefault:function(){var ethis.originalEvent;this.isDefaultPreventedke,e!this.isSimulatede.preventDefault()},stopPropagation:function(){var ethis.originalEvent;this.isPropagationStoppedke,e!this.isSimulatede.stopPropagation()},stopImmediatePropagation:function(){var ethis.originalEvent;this.isImmediatePropagationStoppedke,e!this.isSimulatede.stopImmediatePropagation(),this.stopPropagation()}},k.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var te.button;return nulle.whichTe.test(e.type)?null!e.charCode?e.charCode:e.keyCode:!e.whichvoid 0!tCe.test(e.type)?1t?1:2t?3:4t?2:0:e.which}},k.event.addProp),k.each({focus:focusin,blur:focusout},function(e,t){k.event.special[e]{setup:function(){return De(this,e,Ne),!1},trigger:function(){return De(this,e),!0},delegateType:t}}),k.each({mouseenter:mouseover,mouseleave:mouseout,pointerenter:pointerover,pointerleave:pointerout},function(e,i){k.event.special[e]{delegateType:i,bindType:i,handle:function(e){var t,ne.relatedTarget,re.handleObj;return n(nthis||k.contains(this,n))||(e.typer.origType,tr.handler.apply(this,arguments),e.typei),t}}}),k.fn.extend({on:function(e,t,n,r){return Ae(this,e,t,n,r)},one:function(e,t,n,r){return Ae(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(ee.preventDefaulte.handleObj)return re.handleObj,k(e.delegateTarget).off(r.namespace?r.origType.r.namespace:r.origType,r.selector,r.handler),this;if(objecttypeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!tfunction!typeof t||(nt,tvoid 0),!1n(nSe),this.each(function(){k.event.remove(this,e,n,t)})}});var je/(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0\x20\t\r\n\f]*)[^]*)\//gi,qe/script|style|link/i,Le/checked\s*(?:[^]|\s*.checked.)/i,He/^\s*!(?:\[CDATA\[|--)|(?:\]\]|--)\s*$/g;function Oe(e,t){return A(e,table)A(11!t.nodeType?t:t.firstChild,tr)k(e).children(tbody)[0]||e}function Pe(e){return e.type(null!e.getAttribute(type))/e.type,e}function Re(e){returntrue/(e.type||).slice(0,5)?e.typee.type.slice(5):e.removeAttribute(type),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1t.nodeType){if(Q.hasData(e)(oQ.access(e),aQ.set(t,o),lo.events))for(i in delete a.handle,a.events{},l)for(n0,rl[i].length;nr;n)k.event.add(t,i,l[i][n]);J.hasData(e)(sJ.access(e),uk.extend({},s),J.set(t,u))}}function Ie(n,r,i,o){rg.apply([],r);var e,t,a,s,u,l,c0,fn.length,pf-1,dr[0],hm(d);if(h||1fstringtypeof d!y.checkCloneLe.test(d))return n.each(function(e){var tn.eq(e);h(r[0]d.call(this,e,t.html())),Ie(t,r,i,o)});if(f(t(ewe(r,n[0].ownerDocument,!1,n,o)).firstChild,1e.childNodes.length(et),t||o)){for(s(ak.map(ve(e,script),Pe)).length;cf;c)ue,c!p(uk.clone(u,!0,!0),sk.merge(a,ve(u,script))),i.call(n[c],u,c);if(s)for(la[a.length-1].ownerDocument,k.map(a,Re),c0;cs;c)ua[c],he.test(u.type||)!Q.access(u,globalEval)k.contains(l,u)(u.srcmodule!(u.type||).toLowerCase()?k._evalUrl!u.noModulek._evalUrl(u.src,{nonce:u.nonce||u.getAttribute(nonce)}):b(u.textContent.replace(He,),u,l))}return n}function We(e,t,n){for(var r,it?k.filter(t,e):e,o0;null!(ri[o]);o)n||1!r.nodeType||k.cleanData(ve(r)),r.parentNode(noe(r)ye(ve(r,script)),r.parentNode.removeChild(r));return e}k.extend({htmlPrefilter:function(e){return e.replace(je,$1/$2)},clone:function(e,t,n){var r,i,o,a,s,u,l,ce.cloneNode(!0),foe(e);if(!(y.noCloneChecked||1!e.nodeType11!e.nodeType||k.isXMLDoc(e)))for(ave(c),r0,i(ove(e)).length;ri;r)so[r],ua[r],void 0,input(lu.nodeName.toLowerCase())pe.test(s.type)?u.checkeds.checked:input!ltextarea!l||(u.defaultValues.defaultValue);if(t)if(n)for(oo||ve(e),aa||ve(c),r0,io.length;ri;r)Me(o[r],a[r]);else Me(e,c);return 0(ave(c,script)).lengthye(a,!fve(e,script)),c},cleanData:function(e){for(var t,n,r,ik.event.special,o0;void 0!(ne[o]);o)if(G(n)){if(tn[Q.expando]){if(t.events)for(r in t.events)i[r]?k.event.remove(n,r):k.removeEvent(n,r,t.handle);n[Q.expando]void 0}n[J.expando](n[J.expando]void 0)}}}),k.fn.extend({detach:function(e){return We(this,e,!0)},remove:function(e){return We(this,e)},text:function(e){return _(this,function(e){return void 0e?k.text(this):this.empty().each(function(){1!this.nodeType11!this.nodeType9!this.nodeType||(this.textContente)})},null,e,arguments.length)},append:function(){return Ie(this,arguments,function(e){1!this.nodeType11!this.nodeType9!this.nodeType||Oe(this,e).appendChild(e)})},prepend:function(){return Ie(this,arguments,function(e){if(1this.nodeType||11this.nodeType||9this.nodeType){var tOe(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Ie(this,arguments,function(e){this.parentNodethis.parentNode.insertBefore(e,this)})},after:function(){return Ie(this,arguments,function(e){this.parentNodethis.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t0;null!(ethis[t]);t)1e.nodeType(k.cleanData(ve(e,!1)),e.textContent);return this},clone:function(e,t){return enull!ee,tnullt?e:t,this.map(function(){return k.clone(this,e,t)})},html:function(e){return _(this,function(e){var tthis[0]||{},n0,rthis.length;if(void 0e1t.nodeType)return t.innerHTML;if(stringtypeof e!qe.test(e)!ge[(de.exec(e)||[,])[1].toLowerCase()]){ek.htmlPrefilter(e);try{for(;nr;n)1(tthis[n]||{}).nodeType(k.cleanData(ve(t,!1)),t.innerHTMLe);t0}catch(e){}}tthis.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n[];return Ie(this,arguments,function(e){var tthis.parentNode;k.inArray(this,n)0(k.cleanData(ve(this)),tt.replaceChild(e,this))},n)}}),k.each({appendTo:append,prependTo:prepend,insertBefore:before,insertAfter:after,replaceAll:replaceWith},function(e,a){k.fn[e]function(e){for(var t,n[],rk(e),ir.length-1,o0;oi;o)toi?this:this.clone(!0),k(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var $enew RegExp(^(te)(?!px)[a-z%]$,i),Fefunction(e){var te.ownerDocument.defaultView;return tt.opener||(tC),t.getComputedStyle(e)},Benew RegExp(re.join(|),i);function _e(e,t,n){var r,i,o,a,se.style;return(nn||Fe(e))(!(an.getPropertyValue(t)||n[t])||oe(e)||(ak.style(e,t)),!y.pixelBoxStyles()$e.test(a)Be.test(t)(rs.width,is.minWidth,os.maxWidth,s.minWidths.maxWidths.widtha,an.width,s.widthr,s.minWidthi,s.maxWidtho)),void 0!a?a:a}function ze(e,t){return{get:function(){if(!e())return(this.gett).apply(this,arguments);delete this.get}}}!function(){function e(){if(u){s.style.cssTextposition:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0,u.style.cssTextposition:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%,ie.appendChild(s).appendChild(u);var eC.getComputedStyle(u);n1%!e.top,a12t(e.marginLeft),u.style.right60%,o36t(e.right),r36t(e.width),u.style.positionabsolute,i12t(u.offsetWidth/3),ie.removeChild(s),unull}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,sE.createElement(div),uE.createElement(div);u.style(u.style.backgroundClipcontent-box,u.cloneNode(!0).style.backgroundClip,y.clearCloneStylecontent-boxu.style.backgroundClip,k.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),a},scrollboxSize:function(){return e(),i}}))}();var Ue[Webkit,Moz,ms],XeE.createElement(div).style,Ve{};function Ge(e){var tk.cssProps[e]||Ve[e];return t||(e in Xe?e:Ve[e]function(e){var te[0].toUpperCase()e.slice(1),nUe.length;while(n--)if((eUe[n]t)in Xe)return e}(e)||e)}var Ye/^(none|table(?!-c[ea]).)/,Qe/^--/,Je{position:absolute,visibility:hidden,display:block},Ke{letterSpacing:0,fontWeight:400};function Ze(e,t,n){var rne.exec(t);return r?Math.max(0,r[2]-(n||0))(r[3]||px):t}function et(e,t,n,r,i,o){var awidtht?1:0,s0,u0;if(n(r?border:content))return 0;for(;a4;a2)marginn(uk.css(e,nre[a],!0,i)),r?(contentn(u-k.css(e,paddingre[a],!0,i)),margin!n(u-k.css(e,borderre[a]Width,!0,i))):(uk.css(e,paddingre[a],!0,i),padding!n?uk.css(e,borderre[a]Width,!0,i):sk.css(e,borderre[a]Width,!0,i));return!r0o(uMath.max(0,Math.ceil(e[offsett[0].toUpperCase()t.slice(1)]-o-u-s-.5))||0),u}function tt(e,t,n){var rFe(e),i(!y.boxSizingReliable()||n)border-boxk.css(e,boxSizing,!1,r),oi,a_e(e,t,r),soffsett[0].toUpperCase()t.slice(1);if($e.test(a)){if(!n)return a;aauto}return(!y.boxSizingReliable()i||autoa||!parseFloat(a)inlinek.css(e,display,!1,r))e.getClientRects().length(iborder-boxk.css(e,boxSizing,!1,r),(os in e)(ae[s])),(aparseFloat(a)||0)et(e,t,n||(i?border:content),o,r,a)px}function nt(e,t,n,r,i){return new nt.prototype.init(e,t,n,r,i)}k.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n_e(e,opacity);returnn?1:n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e3!e.nodeType8!e.nodeTypee.style){var i,o,a,sV(t),uQe.test(t),le.style;if(u||(tGe(s)),ak.cssHooks[t]||k.cssHooks[s],void 0n)return agetin avoid 0!(ia.get(e,!1,r))?i:l[t];string(otypeof n)(ine.exec(n))i[1](nle(e,t,i),onumber),null!nnn(number!o||u||(nii[3]||(k.cssNumber[s]?:px)),y.clearCloneStyle||!n||0!t.indexOf(background)||(l[t]inherit),asetin avoid 0(na.set(e,n,r))||(u?l.setProperty(t,n):l[t]n))}},css:function(e,t,n,r){var i,o,a,sV(t);return Qe.test(t)||(tGe(s)),(ak.cssHooks[t]||k.cssHooks[s])getin a(ia.get(e,!0,n)),void 0i(i_e(e,t,r)),normalit in Ke(iKe[t]),n||n?(oparseFloat(i),!0n||isFinite(o)?o||0:i):i}}),k.each([height,width],function(e,u){k.cssHooks[u]{get:function(e,t,n){if(t)return!Ye.test(k.css(e,display))||e.getClientRects().lengthe.getBoundingClientRect().width?tt(e,u,n):ue(e,Je,function(){return tt(e,u,n)})},set:function(e,t,n){var r,iFe(e),o!y.scrollboxSize()absolutei.position,a(o||n)border-boxk.css(e,boxSizing,!1,i),sn?et(e,u,n,a,i):0;return ao(s-Math.ceil(e[offsetu[0].toUpperCase()u.slice(1)]-parseFloat(i[u])-et(e,u,border,!1,i)-.5)),s(rne.exec(t))px!(r[3]||px)(e.style[u]t,tk.css(e,u)),Ze(0,t,s)}}}),k.cssHooks.marginLeftze(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(_e(e,marginLeft))||e.getBoundingClientRect().left-ue(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))px}),k.each({margin:,padding:,border:Width},function(i,o){k.cssHooks[io]{expand:function(e){for(var t0,n{},rstringtypeof e?e.split( ):[e];t4;t)n[ire[t]o]r[t]||r[t-2]||r[0];return n}},margin!i(k.cssHooks[io].setZe)}),k.fn.extend({css:function(e,t){return _(this,function(e,t,n){var r,i,o{},a0;if(Array.isArray(t)){for(rFe(e),it.length;ai;a)o[t[a]]k.css(e,t[a],!1,r);return o}return void 0!n?k.style(e,t,n):k.css(e,t)},e,t,1arguments.length)}}),((k.Tweennt).prototype{constructor:nt,init:function(e,t,n,r,i,o){this.eleme,this.propn,this.easingi||k.easing._default,this.optionst,this.startthis.nowthis.cur(),this.endr,this.unito||(k.cssNumber[n]?:px)},cur:function(){var ent.propHooks[this.prop];return ee.get?e.get(this):nt.propHooks._default.get(this)},run:function(e){var t,nnt.propHooks[this.prop];return this.options.duration?this.postk.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.poste,this.now(this.end-this.start)*tthis.start,this.options.stepthis.options.step.call(this.elem,this.now,this),nn.set?n.set(this):nt.propHooks._default.set(this),this}}).init.prototypent.prototype,(nt.propHooks{_default:{get:function(e){var t;return 1!e.elem.nodeType||null!e.elem[e.prop]nulle.elem.style[e.prop]?e.elem[e.prop]:(tk.css(e.elem,e.prop,))auto!t?t:0},set:function(e){k.fx.step[e.prop]?k.fx.step[e.prop](e):1!e.elem.nodeType||!k.cssHooks[e.prop]nulle.elem.style[Ge(e.prop)]?e.elem[e.prop]e.now:k.style(e.elem,e.prop,e.nowe.unit)}}}).scrollTopnt.propHooks.scrollLeft{set:function(e){e.elem.nodeTypee.elem.parentNode(e.elem[e.prop]e.now)}},k.easing{linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:swing},k.fxnt.prototype.init,k.fx.step{};var rt,it,ot,at,st/^(?:toggle|show|hide)$/,ut/queueHooks$/;function lt(){it(!1E.hiddenC.requestAnimationFrame?C.requestAnimationFrame(lt):C.setTimeout(lt,k.fx.interval),k.fx.tick())}function ct(){return C.setTimeout(function(){rtvoid 0}),rtDate.now()}function ft(e,t){var n,r0,i{height:e};for(tt?1:0;r4;r2-t)i[margin(nre[r])]i[paddingn]e;return t(i.opacityi.widthe),i}function pt(e,t,n){for(var r,i(dt.tweeners[t]||[]).concat(dt.tweeners[*]),o0,ai.length;oa;o)if(ri[o].call(n,t,e))return r}function dt(o,e,t){var n,a,r0,idt.prefilters.length,sk.Deferred().always(function(){delete u.elem}),ufunction(){if(a)return!1;for(var ert||ct(),tMath.max(0,l.startTimel.duration-e),n1-(t/l.duration||0),r0,il.tweens.length;ri;r)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n1i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},ls.promise({elem:o,props:k.extend({},e),opts:k.extend(!0,{specialEasing:{},easing:k.easing._default},t),originalProperties:e,originalOptions:t,startTime:rt||ct(),duration:t.duration,tweens:[],createTween:function(e,t){var nk.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t0,ne?l.tweens.length:0;if(a)return this;for(a!0;tn;t)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),cl.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(it[rV(n)],oe[n],Array.isArray(o)(io[1],oe[n]o[0]),n!r(e[r]o,delete e[n]),(ak.cssHooks[r])expandin a)for(n in oa.expand(o),delete e[r],o)n in e||(e[n]o[n],t[n]i);else t[r]i}(c,l.opts.specialEasing);ri;r)if(ndt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)(k._queueHooks(l.elem,l.opts.queue).stopn.stop.bind(n)),n;return k.map(c,pt,l),m(l.opts.start)l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),k.fx.timer(k.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}k.Animationk.extend(dt,{tweeners:{*:[function(e,t){var nthis.createTween(e,t);return le(n.elem,e,ne.exec(t),n),n}]},tweener:function(e,t){m(e)?(te,e[*]):ee.match(R);for(var n,r0,ie.length;ri;r)ne[r],dt.tweeners[n]dt.tweeners[n]||[],dt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,fwidthin t||heightin t,pthis,d{},he.style,ge.nodeTypese(e),vQ.get(e,fxshow);for(r in n.queue||(null(ak._queueHooks(e,fx)).unqueued(a.unqueued0,sa.empty.fire,a.empty.firefunction(){a.unqueued||s()}),a.unqueued,p.always(function(){p.always(function(){a.unqueued--,k.queue(e,fx).length||a.empty.fire()})})),t)if(it[r],st.test(i)){if(delete t[r],oo||togglei,i(g?hide:show)){if(show!i||!v||void 0v[r])continue;g!0}d[r]vv[r]||k.style(e,r)}if((u!k.isEmptyObject(t))||!k.isEmptyObject(d))for(r in f1e.nodeType(n.overflow[h.overflow,h.overflowX,h.overflowY],null(lvv.display)(lQ.get(e,display)),none(ck.css(e,display))(l?cl:(fe([e],!0),le.style.display||l,ck.css(e,display),fe([e]))),(inlinec||inline-blockcnull!l)nonek.css(e,float)(u||(p.done(function(){h.displayl}),nulll(ch.display,lnonec?:c)),h.displayinline-block)),n.overflow(h.overflowhidden,p.always(function(){h.overflown.overflow[0],h.overflowXn.overflow[1],h.overflowYn.overflow[2]})),u!1,d)u||(v?hiddenin v(gv.hidden):vQ.access(e,fxshow,{display:l}),o(v.hidden!g),gfe([e],!0),p.done(function(){for(r in g||fe([e]),Q.remove(e,fxshow),d)k.style(e,r,d[r])})),upt(g?v[r]:0,r,p),r in v||(v[r]u.start,g(u.endu.start,u.start0))}],prefilter:function(e,t){t?dt.prefilters.unshift(e):dt.prefilters.push(e)}}),k.speedfunction(e,t,n){var reobjecttypeof e?k.extend({},e):{complete:n||!nt||m(e)e,duration:e,easing:nt||t!m(t)t};return k.fx.off?r.duration0:number!typeof r.duration(r.duration in k.fx.speeds?r.durationk.fx.speeds[r.duration]:r.durationk.fx.speeds._default),null!r.queue!0!r.queue||(r.queuefx),r.oldr.complete,r.completefunction(){m(r.old)r.old.call(this),r.queuek.dequeue(this,r.queue)},r},k.fn.extend({fadeTo:function(e,t,n,r){return this.filter(se).css(opacity,0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var ik.isEmptyObject(t),ok.speed(e,n,r),afunction(){var edt(this,k.extend({},t),o);(i||Q.get(this,finish))e.stop(!0)};return a.finisha,i||!1o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var afunction(e){var te.stop;delete e.stop,t(o)};returnstring!typeof i(oe,ei,ivoid 0),e!1!ithis.queue(i||fx,[]),this.each(function(){var e!0,tnull!iiqueueHooks,nk.timers,rQ.get(this);if(t)r[t]r[t].stopa(r[t]);else for(t in r)r[t]r[t].stoput.test(t)a(r[t]);for(tn.length;t--;)n[t].elem!this||null!in[t].queue!i||(n[t].anim.stop(o),e!1,n.splice(t,1));!eo||k.dequeue(this,i)})},finish:function(a){return!1!a(aa||fx),this.each(function(){var e,tQ.get(this),nt[aqueue],rt[aqueueHooks],ik.timers,on?n.length:0;for(t.finish!0,k.queue(this,a,[]),rr.stopr.stop.call(this,!0),ei.length;e--;)i[e].elemthisi[e].queuea(i[e].anim.stop(!0),i.splice(e,1));for(e0;eo;e)n[e]n[e].finishn[e].finish.call(this);delete t.finish})}}),k.each([toggle,show,hide],function(e,r){var ik.fn[r];k.fn[r]function(e,t,n){return nulle||booleantypeof e?i.apply(this,arguments):this.animate(ft(r,!0),e,t,n)}}),k.each({slideDown:ft(show),slideUp:ft(hide),slideToggle:ft(toggle),fadeIn:{opacity:show},fadeOut:{opacity:hide},fadeToggle:{opacity:toggle}},function(e,r){k.fn[e]function(e,t,n){return this.animate(r,e,t,n)}}),k.timers[],k.fx.tickfunction(){var e,t0,nk.timers;for(rtDate.now();tn.length;t)(en[t])()||n[t]!e||n.splice(t--,1);n.length||k.fx.stop(),rtvoid 0},k.fx.timerfunction(e){k.timers.push(e),k.fx.start()},k.fx.interval13,k.fx.startfunction(){it||(it!0,lt())},k.fx.stopfunction(){itnull},k.fx.speeds{slow:600,fast:200,_default:400},k.fn.delayfunction(r,e){return rk.fxk.fx.speeds[r]||r,ee||fx,this.queue(e,function(e,t){var nC.setTimeout(e,r);t.stopfunction(){C.clearTimeout(n)}})},otE.createElement(input),atE.createElement(select).appendChild(E.createElement(option)),ot.typecheckbox,y.checkOn!ot.value,y.optSelectedat.selected,(otE.createElement(input)).valuet,ot.typeradio,y.radioValuetot.value;var ht,gtk.expr.attrHandle;k.fn.extend({attr:function(e,t){return _(this,k.attr,e,t,1arguments.length)},removeAttr:function(e){return this.each(function(){k.removeAttr(this,e)})}}),k.extend({attr:function(e,t,n){var r,i,oe.nodeType;if(3!o8!o2!o)returnundefinedtypeof e.getAttribute?k.prop(e,t,n):(1ok.isXMLDoc(e)||(ik.attrHooks[t.toLowerCase()]||(k.expr.match.bool.test(t)?ht:void 0)),void 0!n?nulln?void k.removeAttr(e,t):isetin ivoid 0!(ri.set(e,n,t))?r:(e.setAttribute(t,n),n):igetin inull!(ri.get(e,t))?r:null(rk.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValueradiotA(e,input)){var ne.value;return e.setAttribute(type,t),n(e.valuen),t}}}},removeAttr:function(e,t){var n,r0,itt.match(R);if(i1e.nodeType)while(ni[r])e.removeAttribute(n)}}),ht{set:function(e,t,n){return!1t?k.removeAttr(e,n):e.setAttribute(n,n),n}},k.each(k.expr.match.bool.source.match(/\w/g),function(e,t){var agt[t]||k.find.attr;gt[t]function(e,t,n){var r,i,ot.toLowerCase();return n||(igt[o],gt[o]r,rnull!a(e,t,n)?o:null,gt[o]i),r}});var vt/^(?:input|select|textarea|button)$/i,yt/^(?:a|area)$/i;function mt(e){return(e.match(R)||[]).join( )}function xt(e){return e.getAttributee.getAttribute(class)||}function bt(e){return Array.isArray(e)?e:stringtypeof ee.match(R)||[]}k.fn.extend({prop:function(e,t){return _(this,k.prop,e,t,1arguments.length)},removeProp:function(e){return this.each(function(){delete this[k.propFix[e]||e]})}}),k.extend({prop:function(e,t,n){var r,i,oe.nodeType;if(3!o8!o2!o)return 1ok.isXMLDoc(e)||(tk.propFix[t]||t,ik.propHooks[t]),void 0!n?isetin ivoid 0!(ri.set(e,n,t))?r:e[t]n:igetin inull!(ri.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var tk.find.attr(e,tabindex);return t?parseInt(t,10):vt.test(e.nodeName)||yt.test(e.nodeName)e.href?0:-1}}},propFix:{for:htmlFor,class:className}}),y.optSelected||(k.propHooks.selected{get:function(e){var te.parentNode;return tt.parentNodet.parentNode.selectedIndex,null},set:function(e){var te.parentNode;t(t.selectedIndex,t.parentNodet.parentNode.selectedIndex)}}),k.each([tabIndex,readOnly,maxLength,cellSpacing,cellPadding,rowSpan,colSpan,useMap,frameBorder,contentEditable],function(){k.propFix[this.toLowerCase()]this}),k.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u0;if(m(t))return this.each(function(e){k(this).addClass(t.call(this,e,xt(this)))});if((ebt(t)).length)while(nthis[u])if(ixt(n),r1n.nodeType mt(i) ){a0;while(oe[a])r.indexOf( o )0(ro );i!(smt(r))n.setAttribute(class,s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u0;if(m(t))return this.each(function(e){k(this).removeClass(t.call(this,e,xt(this)))});if(!arguments.length)return this.attr(class,);if((ebt(t)).length)while(nthis[u])if(ixt(n),r1n.nodeType mt(i) ){a0;while(oe[a])while(-1r.indexOf( o ))rr.replace( o , );i!(smt(r))n.setAttribute(class,s)}return this},toggleClass:function(i,t){var otypeof i,astringo||Array.isArray(i);returnbooleantypeof ta?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){k(this).toggleClass(i.call(this,e,xt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t0,nk(this),rbt(i);while(er[t])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!iboolean!o||((ext(this))Q.set(this,__className__,e),this.setAttributethis.setAttribute(class,e||!1i?:Q.get(this,__className__)||))})},hasClass:function(e){var t,n,r0;t e ;while(nthis[r])if(1n.nodeType-1( mt(xt(n)) ).indexOf(t))return!0;return!1}});var wt/\r/g;k.fn.extend({val:function(n){var r,e,i,tthis[0];return arguments.length?(im(n),this.each(function(e){var t;1this.nodeType(null(ti?n.call(this,e,k(this).val()):n)?t:numbertypeof t?t:Array.isArray(t)(tk.map(t,function(e){return nulle?:e})),(rk.valHooks[this.type]||k.valHooks[this.nodeName.toLowerCase()])setin rvoid 0!r.set(this,t,value)||(this.valuet))})):t?(rk.valHooks[t.type]||k.valHooks[t.nodeName.toLowerCase()])getin rvoid 0!(er.get(t,value))?e:stringtypeof(et.value)?e.replace(wt,):nulle?:e:void 0}}),k.extend({valHooks:{option:{get:function(e){var tk.find.attr(e,value);return null!t?t:mt(k.text(e))}},select:{get:function(e){var t,n,r,ie.options,oe.selectedIndex,aselect-onee.type,sa?null:[],ua?o1:i.length;for(ro0?u:a?o:0;ru;r)if(((ni[r]).selected||ro)!n.disabled(!n.parentNode.disabled||!A(n.parentNode,optgroup))){if(tk(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,ie.options,ok.makeArray(t),ai.length;while(a--)((ri[a]).selected-1k.inArray(k.valHooks.option.get(r),o))(n!0);return n||(e.selectedIndex-1),o}}}}),k.each([radio,checkbox],function(){k.valHooks[this]{set:function(e,t){if(Array.isArray(t))return e.checked-1k.inArray(k(e).val(),t)}},y.checkOn||(k.valHooks[this].getfunction(e){return nulle.getAttribute(value)?on:e.value})}),y.focusinonfocusinin C;var Tt/^(?:focusinfocus|focusoutblur)$/,Ctfunction(e){e.stopPropagation()};k.extend(k.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p[n||E],dv.call(e,type)?e.type:e,hv.call(e,namespace)?e.namespace.split(.):[];if(ofann||E,3!n.nodeType8!n.nodeType!Tt.test(dk.event.triggered)(-1d.indexOf(.)(d(hd.split(.)).shift(),h.sort()),ud.indexOf(:)0ond,(ee[k.expando]?e:new k.Event(d,objecttypeof ee)).isTriggerr?2:3,e.namespaceh.join(.),e.rnamespacee.namespace?new RegExp((^|\\.)h.join(\\.(?:.*\\.|))(\\.|$)):null,e.resultvoid 0,e.target||(e.targetn),tnullt?[e]:k.makeArray(t,[e]),ck.event.special[d]||{},r||!c.trigger||!1!c.trigger.apply(n,t))){if(!r!c.noBubble!x(n)){for(sc.delegateType||d,Tt.test(sd)||(oo.parentNode);o;oo.parentNode)p.push(o),ao;a(n.ownerDocument||E)p.push(a.defaultView||a.parentWindow||C)}i0;while((op[i])!e.isPropagationStopped())fo,e.type1i?s:c.bindType||d,(l(Q.get(o,events)||{})[e.type]Q.get(o,handle))l.apply(o,t),(luo[u])l.applyG(o)(e.resultl.apply(o,t),!1e.resulte.preventDefault());return e.typed,r||e.isDefaultPrevented()||c._default!1!c._default.apply(p.pop(),t)||!G(n)||um(n[d])!x(n)((an[u])(n[u]null),k.event.triggeredd,e.isPropagationStopped()f.addEventListener(d,Ct),n[d](),e.isPropagationStopped()f.removeEventListener(d,Ct),k.event.triggeredvoid 0,a(n[u]a)),e.result}},simulate:function(e,t,n){var rk.extend(new k.Event,n,{type:e,isSimulated:!0});k.event.trigger(r,null,t)}}),k.fn.extend({trigger:function(e,t){return this.each(function(){k.event.trigger(e,t,this)})},triggerHandler:function(e,t){var nthis[0];if(n)return k.event.trigger(e,t,n,!0)}}),y.focusin||k.each({focus:focusin,blur:focusout},function(n,r){var ifunction(e){k.event.simulate(r,e.target,k.event.fix(e))};k.event.special[r]{setup:function(){var ethis.ownerDocument||this,tQ.access(e,r);t||e.addEventListener(n,i,!0),Q.access(e,r,(t||0)1)},teardown:function(){var ethis.ownerDocument||this,tQ.access(e,r)-1;t?Q.access(e,r,t):(e.removeEventListener(n,i,!0),Q.remove(e,r))}}});var EtC.location,ktDate.now(),St/\?/;k.parseXMLfunction(e){var t;if(!e||string!typeof e)return null;try{t(new C.DOMParser).parseFromString(e,text/xml)}catch(e){tvoid 0}return t!t.getElementsByTagName(parsererror).length||k.error(Invalid XML: e),t};var Nt/\[\]$/,At/\r?\n/g,Dt/^(?:submit|button|image|reset|file)$/i,jt/^(?:input|select|textarea|keygen)/i;function qt(n,e,r,i){var t;if(Array.isArray(e))k.each(e,function(e,t){r||Nt.test(n)?i(n,t):qt(n[(objecttypeof tnull!t?e:)],t,r,i)});else if(r||object!w(e))i(n,e);else for(t in e)qt(n[t],e[t],r,i)}k.paramfunction(e,t){var n,r[],ifunction(e,t){var nm(t)?t():t;r[r.length]encodeURIComponent(e)encodeURIComponent(nulln?:n)};if(nulle)return;if(Array.isArray(e)||e.jquery!k.isPlainObject(e))k.each(e,function(){i(this.name,this.value)});else for(n in e)qt(n,e[n],t,i);return r.join()},k.fn.extend({serialize:function(){return k.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var ek.prop(this,elements);return e?k.makeArray(e):this}).filter(function(){var ethis.type;return this.name!k(this).is(:disabled)jt.test(this.nodeName)!Dt.test(e)(this.checked||!pe.test(e))}).map(function(e,t){var nk(this).val();return nulln?null:Array.isArray(n)?k.map(n,function(e){return{name:t.name,value:e.replace(At,\r\n)}}):{name:t.name,value:n.replace(At,\r\n)}}).get()}});var Lt/%20/g,Ht/#.*$/,Ot/([?])_[^]*/,Pt/^(.*?):[ \t]*([^\r\n]*)$/gm,Rt/^(?:GET|HEAD)$/,Mt/^\/\//,It{},Wt{},$t*/.concat(*),FtE.createElement(a);function Bt(o){return function(e,t){string!typeof e(te,e*);var n,r0,ie.toLowerCase().match(R)||[];if(m(t))while(ni[r])n[0]?(nn.slice(1)||*,(o[n]o[n]||[]).unshift(t)):(o[n]o[n]||[]).push(t)}}function _t(t,i,o,a){var s{},utWt;function l(e){var r;return s[e]!0,k.each(t[e]||[],function(e,t){var nt(i,o,a);returnstring!typeof n||u||s[n]?u?!(rn):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s[*]l(*)}function zt(e,t){var n,r,ik.ajaxSettings.flatOptions||{};for(n in t)void 0!t[n]((i[n]?e:r||(r{}))[n]t[n]);return rk.extend(!0,e,r),e}Ft.hrefEt.href,k.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Et.href,type:GET,isLocal:/^(?:about|app|app-storage|.-extension|file|res|widget):$/.test(Et.protocol),global:!0,processData:!0,async:!0,contentType:application/x-www-form-urlencoded; charsetUTF-8,accepts:{*:$t,text:text/plain,html:text/html,xml:application/xml, text/xml,json:application/json, text/javascript},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:responseXML,text:responseText,json:responseJSON},converters:{* text:String,text html:!0,text json:JSON.parse,text xml:k.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,k.ajaxSettings),t):zt(k.ajaxSettings,e)},ajaxPrefilter:Bt(It),ajaxTransport:Bt(Wt),ajax:function(e,t){objecttypeof e(te,evoid 0),tt||{};var c,f,p,n,d,r,h,g,i,o,vk.ajaxSetup({},t),yv.context||v,mv.context(y.nodeType||y.jquery)?k(y):k.event,xk.Deferred(),bk.Callbacks(once memory),wv.statusCode||{},a{},s{},ucanceled,T{readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n{};while(tPt.exec(p))n[t[1].toLowerCase() ](n[t[1].toLowerCase() ]||[]).concat(t[2])}tn[e.toLowerCase() ]}return nullt?null:t.join(, )},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return nullh(es[e.toLowerCase()]s[e.toLowerCase()]||e,a[e]t),this},overrideMimeType:function(e){return nullh(v.mimeTypee),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t][w[t],e[t]];return this},abort:function(e){var te||u;return cc.abort(t),l(0,t),this}};if(x.promise(T),v.url((e||v.url||Et.href)).replace(Mt,Et.protocol//),v.typet.method||t.type||v.method||v.type,v.dataTypes(v.dataType||*).toLowerCase().match(R)||[],nullv.crossDomain){rE.createElement(a);try{r.hrefv.url,r.hrefr.href,v.crossDomainFt.protocol//Ft.host!r.protocol//r.host}catch(e){v.crossDomain!0}}if(v.datav.processDatastring!typeof v.data(v.datak.param(v.data,v.traditional)),_t(It,v,t,T),h)return T;for(i in(gk.eventv.global)0k.activek.event.trigger(ajaxStart),v.typev.type.toUpperCase(),v.hasContent!Rt.test(v.type),fv.url.replace(Ht,),v.hasContent?v.datav.processData0(v.contentType||).indexOf(application/x-www-form-urlencoded)(v.datav.data.replace(Lt,)):(ov.url.slice(f.length),v.data(v.processData||stringtypeof v.data)(f(St.test(f)?:?)v.data,delete v.data),!1v.cache(ff.replace(Ot,$1),o(St.test(f)?:?)_kto),v.urlfo),v.ifModified(k.lastModified[f]T.setRequestHeader(If-Modified-Since,k.lastModified[f]),k.etag[f]T.setRequestHeader(If-None-Match,k.etag[f])),(v.datav.hasContent!1!v.contentType||t.contentType)T.setRequestHeader(Content-Type,v.contentType),T.setRequestHeader(Accept,v.dataTypes[0]v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]](*!v.dataTypes[0]?, $t; q0.01:):v.accepts[*]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend(!1v.beforeSend.call(y,T,v)||h))return T.abort();if(uabort,b.add(v.complete),T.done(v.success),T.fail(v.error),c_t(Wt,v,t,T)){if(T.readyState1,gm.trigger(ajaxSend,[T,v]),h)return T;v.async0v.timeout(dC.setTimeout(function(){T.abort(timeout)},v.timeout));try{h!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,No Transport);function l(e,t,n,r){var i,o,a,s,u,lt;h||(h!0,dC.clearTimeout(d),cvoid 0,pr||,T.readyState0e?4:0,i200ee300||304e,n(sfunction(e,t,n){var r,i,o,a,se.contents,ue.dataTypes;while(*u[0])u.shift(),void 0r(re.mimeType||t.getResponseHeader(Content-Type));if(r)for(i in s)if(s[i]s[i].test(r)){u.unshift(i);break}if(u[0]in n)ou[0];else{for(i in n){if(!u[0]||e.converters[i u[0]]){oi;break}a||(ai)}oo||a}if(o)return o!u[0]u.unshift(o),n[o]}(v,T,n)),sfunction(e,t,n,r){var i,o,a,s,u,l{},ce.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]e.converters[a];oc.shift();while(o)if(e.responseFields[o](n[e.responseFields[o]]t),!ure.dataFilter(te.dataFilter(t,e.dataType)),uo,oc.shift())if(*o)ou;else if(*!uu!o){if(!(al[u o]||l[* o]))for(i in l)if((si.split( ))[1]o(al[u s[0]]||l[* s[0]])){!0a?al[i]:!0!l[i](os[0],c.unshift(s[1]));break}if(!0!a)if(ae[throws])ta(t);else try{ta(t)}catch(e){return{state:parsererror,error:a?e:No conversion from u to o}}}return{state:success,data:t}}(v,s,T,i),i?(v.ifModified((uT.getResponseHeader(Last-Modified))(k.lastModified[f]u),(uT.getResponseHeader(etag))(k.etag[f]u)),204e||HEADv.type?lnocontent:304e?lnotmodified:(ls.state,os.data,i!(as.error))):(al,!el||(lerror,e0(e0))),T.statuse,T.statusText(t||l),i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),wvoid 0,gm.trigger(i?ajaxSuccess:ajaxError,[T,v,i?o:a]),b.fireWith(y,[T,l]),g(m.trigger(ajaxComplete,[T,v]),--k.active||k.event.trigger(ajaxStop)))}return T},getJSON:function(e,t,n){return k.get(e,t,n,json)},getScript:function(e,t){return k.get(e,void 0,t,script)}}),k.each([get,post],function(e,i){k[i]function(e,t,n,r){return m(t)(rr||n,nt,tvoid 0),k.ajax(k.extend({url:e,type:i,dataType:r,data:t,success:n},k.isPlainObject(e)e))}}),k._evalUrlfunction(e,t){return k.ajax({url:e,type:GET,dataType:script,cache:!0,async:!1,global:!1,converters:{text script:function(){}},dataFilter:function(e){k.globalEval(e,t)}})},k.fn.extend({wrapAll:function(e){var t;return this[0](m(e)(ee.call(this[0])),tk(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNodet.insertBefore(this[0]),t.map(function(){var ethis;while(e.firstElementChild)ee.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){k(this).wrapInner(n.call(this,e))}):this.each(function(){var ek(this),te.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var nm(t);return this.each(function(e){k(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not(body).each(function(){k(this).replaceWith(this.childNodes)}),this}}),k.expr.pseudos.hiddenfunction(e){return!k.expr.pseudos.visible(e)},k.expr.pseudos.visiblefunction(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},k.ajaxSettings.xhrfunction(){try{return new C.XMLHttpRequest}catch(e){}};var Ut{0:200,1223:204},Xtk.ajaxSettings.xhr();y.cors!!XtwithCredentialsin Xt,y.ajaxXt!!Xt,k.ajaxTransport(function(i){var o,a;if(y.cors||Xt!i.crossDomain)return{send:function(e,t){var n,ri.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]i.xhrFields[n];for(n in i.mimeTyper.overrideMimeTyper.overrideMimeType(i.mimeType),i.crossDomain||e[X-Requested-With]||(e[X-Requested-With]XMLHttpRequest),e)r.setRequestHeader(n,e[n]);ofunction(e){return function(){o(oar.onloadr.onerrorr.onabortr.ontimeoutr.onreadystatechangenull,aborte?r.abort():errore?number!typeof r.status?t(0,error):t(r.status,r.statusText):t(Ut[r.status]||r.status,r.statusText,text!(r.responseType||text)||string!typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onloado(),ar.onerrorr.ontimeouto(error),void 0!r.onabort?r.onaborta:r.onreadystatechangefunction(){4r.readyStateC.setTimeout(function(){oa()})},oo(abort);try{r.send(i.hasContenti.data||null)}catch(e){if(o)throw e}},abort:function(){oo()}}}),k.ajaxPrefilter(function(e){e.crossDomain(e.contents.script!1)}),k.ajaxSetup({accepts:{script:text/javascript, application/javascript, application/ecmascript, application/x-ecmascript},contents:{script:/\b(?:java|ecma)script\b/},converters:{text script:function(e){return k.globalEval(e),e}}}),k.ajaxPrefilter(script,function(e){void 0e.cache(e.cache!1),e.crossDomain(e.typeGET)}),k.ajaxTransport(script,function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){rk(script).attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on(load error,ifunction(e){r.remove(),inull,et(errore.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){ii()}}});var Vt,Gt[],Yt/()\?(?|$)|\?\?/;k.ajaxSetup({jsonp:callback,jsonpCallback:function(){var eGt.pop()||k.expando_kt;return this[e]!0,e}}),k.ajaxPrefilter(json jsonp,function(e,t,n){var r,i,o,a!1!e.jsonp(Yt.test(e.url)?url:stringtypeof e.data0(e.contentType||).indexOf(application/x-www-form-urlencoded)Yt.test(e.data)data);if(a||jsonpe.dataTypes[0])return re.jsonpCallbackm(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]e[a].replace(Yt,$1r):!1!e.jsonp(e.url(St.test(e.url)?:?)e.jsonpr),e.converters[script json]function(){return o||k.error(r was not called),o[0]},e.dataTypes[0]json,iC[r],C[r]function(){oarguments},n.always(function(){void 0i?k(C).removeProp(r):C[r]i,e[r](e.jsonpCallbackt.jsonpCallback,Gt.push(r)),om(i)i(o[0]),oivoid 0}),script}),y.createHTMLDocument((VtE.implementation.createHTMLDocument().body).innerHTMLform/formform/form,2Vt.childNodes.length),k.parseHTMLfunction(e,t,n){returnstring!typeof e?[]:(booleantypeof t(nt,t!1),t||(y.createHTMLDocument?((r(tE.implementation.createHTMLDocument()).createElement(base)).hrefE.location.href,t.head.appendChild(r)):tE),o!n[],(iD.exec(e))?[t.createElement(i[1])]:(iwe([e],t,o),oo.lengthk(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.loadfunction(e,t,n){var r,i,o,athis,se.indexOf( );return-1s(rmt(e.slice(s)),ee.slice(0,s)),m(t)?(nt,tvoid 0):tobjecttypeof t(iPOST),0a.lengthk.ajax({url:e,type:i||GET,dataType:html,data:t}).done(function(e){oarguments,a.html(r?k(div).append(k.parseHTML(e)).find(r):e)}).always(nfunction(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each([ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend],function(e,t){k.fn[t]function(e){return this.on(t,e)}}),k.expr.pseudos.animatedfunction(t){return k.grep(k.timers,function(e){return te.elem}).length},k.offset{setOffset:function(e,t,n){var r,i,o,a,s,u,lk.css(e,position),ck(e),f{};staticl(e.style.positionrelative),sc.offset(),ok.css(e,top),uk.css(e,left),(absolutel||fixedl)-1(ou).indexOf(auto)?(a(rc.position()).top,ir.left):(aparseFloat(o)||0,iparseFloat(u)||0),m(t)(tt.call(e,n,k.extend({},s))),null!t.top(f.topt.top-s.topa),null!t.left(f.leftt.left-s.lefti),usingin t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,rthis[0];return r?r.getClientRects().length?(er.getBoundingClientRect(),nr.ownerDocument.defaultView,{top:e.topn.pageYOffset,left:e.leftn.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,rthis[0],i{top:0,left:0};if(fixedk.css(r,position))tr.getBoundingClientRect();else{tthis.offset(),nr.ownerDocument,er.offsetParent||n.documentElement;while(e(en.body||en.documentElement)statick.css(e,position))ee.parentNode;ee!r1e.nodeType((ik(e).offset()).topk.css(e,borderTopWidth,!0),i.leftk.css(e,borderLeftWidth,!0))}return{top:t.top-i.top-k.css(r,marginTop,!0),left:t.left-i.left-k.css(r,marginLeft,!0)}}},offsetParent:function(){return this.map(function(){var ethis.offsetParent;while(estatick.css(e,position))ee.offsetParent;return e||ie})}}),k.each({scrollLeft:pageXOffset,scrollTop:pageYOffset},function(t,i){var opageYOffseti;k.fn[t]function(e){return _(this,function(e,t,n){var r;if(x(e)?re:9e.nodeType(re.defaultView),void 0n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]n},t,e,arguments.length)}}),k.each([top,left],function(e,n){k.cssHooks[n]ze(y.pixelPosition,function(e,t){if(t)return t_e(e,n),$e.test(t)?k(e).position()[n]px:t})}),k.each({Height:height,Width:width},function(a,s){k.each({padding:innera,content:s,:outera},function(r,o){k.fn[o]function(e,t){var narguments.length(r||boolean!typeof e),ir||(!0e||!0t?margin:border);return _(this,function(e,t,n){var r;return x(e)?0o.indexOf(outer)?e[innera]:e.document.documentElement[clienta]:9e.nodeType?(re.documentElement,Math.max(e.body[scrolla],r[scrolla],e.body[offseta],r[offseta],r[clienta])):void 0n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each(blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu.split( ),function(e,n){k.fn[n]function(e,t){return 0arguments.length?this.on(n,null,e,t):this.trigger(n)}}),k.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),k.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1arguments.length?this.off(e,**):this.off(t,e||**,n)}}),k.proxyfunction(e,t){var n,r,i;if(stringtypeof t(ne[t],te,en),m(e))return rs.call(arguments,2),(ifunction(){return e.apply(t||this,r.concat(s.call(arguments)))}).guide.guide.guid||k.guid,i},k.holdReadyfunction(e){e?k.readyWait:k.ready(!0)},k.isArrayArray.isArray,k.parseJSONJSON.parse,k.nodeNameA,k.isFunctionm,k.isWindowx,k.camelCaseV,k.typew,k.nowDate.now,k.isNumericfunction(e){var tk.type(e);return(numbert||stringt)!isNaN(e-parseFloat(e))},functiontypeof definedefine.amddefine(jquery,[],function(){return k});var QtC.jQuery,JtC.$;return k.noConflictfunction(e){return C.$k(C.$Jt),eC.jQueryk(C.jQueryQt),k},e||(C.jQueryC.$k),k});[test.js] $(document).ready(function () {var style document.styleSheets[0];typeconfig.language_type;spacegetSpace(12,type);$(.main-content .month).css(left,space.monthpx);$(.main-content .day).css(left,space.daypx);$(.main-content .week).css(left,space.weekpx);$(.main-content .shichen).css(left,space.shichenpx);$(.main-content .hour).css(left,space.hourpx);$(.main-content .minute).css(left,space.minutepx);$(.main-content .second).css(left,space.secondpx);$(body).css(color,config.font_color);style.cssRules[4].style.colorconfig.pointer_color;if(config.sound){var eleaudio controls loop autoplaysource srcsound/config.sound_name/audio$(body).append(ele);}switch(config.background_style){case 0:var ele1url(images/config.background_picture) fixed no-repeat$(body).css(background,ele1);$(body).css(background-size,100% 100%);break;case 1:$(body).append(video loop autoplay mutedsource srcvideo/config.background_video/video)break;case 2:$(body).css(background,config.background_color);break;}var monthLeft$(.main-content .month).css(left);var dayLeft$(.main-content .day).css(left);var weekLeft$(.main-content .week).css(left);var shichenLeft$(.main-content .shichen).css(left);var hourLeft$(.main-content .hour).css(left);var minuteLeft$(.main-content .minute).css(left);var secondLeft$(.main-content .second).css(left);var top$(.main-content .month).css(top);var yearLeft$(.main-content .year span).width()/2;//进入当前时间var Time{currentTime:{year:1970,month:1,day:1,hour:0,minute:0,second:0,week:0,shichen:{}},months:[],days:[],hours:[],minutes:[],seconds:[],shichens:[],weeks:[],hours:[],minutes:[],seconds:[],yearUnit:年,monthUnit:月,dayUnit:日,weekUnit:星期,hourUnit:时,minuteUnit:分,secondUnit:秒}var monthTime.currentTime.month;var yearTime.currentTime.year;initTime(Time,type);$(.main-content .year).append(span classcurrentTime.currentTime.yearTime.yearUnit/span);var h$(.year span).height();top-(parseInt(top))-parseInt(h)/2;toppx;$(.main-content .month).append(span classcurrentTime.currentTime.monthTime.monthUnit/span);$(.main-content .day).append(span classcurrentTime.currentTime.dayTime.dayUnit/span);$(.main-content .week).append(span classcurrentTime.currentTime.week/span);$(.main-content .shichen).append(span classcurrentTime.currentTime.shichen.str/span);$(.main-content .hour).append(span classcurrentTime.currentTime.hourTime.hourUnit/span);$(.main-content .minute).append(span classcurrentTime.currentTime.minuteTime.minuteUnit/span);$(.main-content .second).append(span classcurrentTime.currentTime.secondTime.secondUnit/span);for (const key in Time.months) {if (Time.months.hasOwnProperty(key)) {const element Time.months[key];if(element!Time.currentTime.month){$(.main-content .month).append(spanelementTime.monthUnit/span);}}}for (const key in Time.days) {if (Time.days.hasOwnProperty(key)) {const element Time.days[key];if(element!Time.currentTime.day){$(.main-content .day).append(spanelementTime.dayUnit/span);}}}for (const key in Time.weeks) {if (Time.weeks.hasOwnProperty(key)) {const element Time.weeks[key];if(element!Time.currentTime.week){$(.main-content .week).append(spanelement/span);}}}for (const key in Time.shichens) {if (Time.shichens.hasOwnProperty(key)) {const element Time.shichens[key];if(element!Time.currentTime.shichen.str){$(.main-content .shichen).append(spanelement/span);}}}for (const key in Time.hours) {if (Time.hours.hasOwnProperty(key)) {const element Time.hours[key];if(element!Time.currentTime.hour){$(.main-content .hour).append(spanelementTime.hourUnit/span);}}}for (const key in Time.minutes) {if (Time.minutes.hasOwnProperty(key)) {const element Time.minutes[key];if(element!Time.currentTime.minute){$(.main-content .minute).append(spanelementTime.minuteUnit/span);}}}for (const key in Time.seconds) {if (Time.seconds.hasOwnProperty(key)) {const element Time.seconds[key];if(element!Time.currentTime.second){$(.main-content .second).append(spanelementTime.secondUnit/span);}}}setTimeout(function () {$(.month span).each(function(index,element){$(element).css(animation,monthindex 1s linear);$(element).css(animation-fill-mode,forwards);style.insertRule(keyframes monthindex{0%{transform: rotateZ(0);transform-origin: -monthLeft top;}100%{transform:rotateZ(-(360/12)*(index)deg);transform-origin: -monthLeft top;}},style.rules.length);});}, 0);setTimeout(function () {$(.day span).each(function(index,element){$(element).css(animation,dayindex 1s linear);$(element).css(animation-fill-mode,forwards);style.insertRule(keyframes dayindex{0%{transform: rotateZ(0);transform-origin: -dayLeft top;}100%{transform:rotateZ(-(360/Time.days.length)*indexdeg);transform-origin: -dayLeft top;}},style.rules.length);});}, 1000);setTimeout(function () {$(.week span).each(function(index,element){$(element).css(animation,weekindex 1s linear);$(element).css(animation-fill-mode,forwards);style.insertRule(keyframes weekindex{0%{transform: rotateZ(0);transform-origin: -weekLeft top;}100%{transform:rotateZ(-(360/Time.weeks.length)*indexdeg);transform-origin: -weekLeft top;}},style.rules.length);});}, 2000);setTimeout(function () {$(.shichen span).each(function(index,element){$(element).css(animation,shichenindex 1s linear);$(element).css(animation-fill-mode,forwards);style.insertRule(keyframes shichenindex{0%{transform: rotateZ(0);transform-origin: -shichenLeft top;}100%{transform:rotateZ(-(360/Time.shichens.length)*indexdeg);transform-origin: -shichenLeft top;}},style.rules.length);});}, 3000);setTimeout(function () {$(.hour span).each(function(index,element){$(element).css(animation,hourindex 1s linear);$(element).css(animation-fill-mode,forwards);style.insertRule(keyframes hourindex{0%{transform: rotateZ(0);transform-origin: -hourLeft top;}100%{transform:rotateZ(-(360/Time.hours.length)*indexdeg);transform-origin: -hourLeft top;}},style.rules.length);});}, 4000);setTimeout(function () {$(.minute span).each(function(index,element){$(element).css(animation,minuteindex 1s linear);$(element).css(animation-fill-mode,forwards);style.insertRule(keyframes minuteindex{0%{transform: rotateZ(0);transform-origin: -minuteLeft top;}100%{transform:rotateZ(-(360/Time.minutes.length)*indexdeg);transform-origin: -minuteLeft top;}},style.rules.length);});}, 5000);setTimeout(function () {$(.second span).each(function(index,element){$(element).css(animation,secondindex 1s linear);$(element).css(animation-fill-mode,forwards);style.insertRule(keyframes secondindex{0%{transform: rotateZ(0);transform-origin: -secondLeft top;}100%{transform:rotateZ(-(360/Time.seconds.length)*indexdeg);transform-origin: -secondLeft top;}},style.rules.length);});}, 6000);//时间旋转setTimeout(function () {$(.year span).css(animation,yearRun 1s linear infinite);style.insertRule(keyframes yearRun {0%{transform: rotateZ(0);transform-origin: -yearLeft top;}100%{transform:rotateZ(720deg);transform-origin: -yearLeft top;}},style.rules.length);$($(.main-content .second span)[0]).removeClass(current);$(.second span).each(function(index,element){$(element).css(animation,secondRunindex 1s linear infinite);style.insertRule(keyframes secondRunindex {0%{transform: rotateZ(0);transform-origin: -secondLeft top;}100%{transform:rotateZ(((index1)*720)deg);transform-origin: -secondLeft top;}},style.rules.length);});$($(.main-content .minute span)[0]).removeClass(current);$(.minute span).each(function(index,element){$(element).css(animation,minuteRunindex 1s linear infinite);style.insertRule(keyframes minuteRunindex {0%{transform: rotateZ(0);transform-origin: -minuteLeft top;}100%{transform:rotateZ(((index1)*720)deg);transform-origin: -minuteLeft top;}},style.rules.length);});$($(.main-content .hour span)[0]).removeClass(current);$(.hour span).each(function(index,element){$(element).css(animation,hourRunindex 1s linear infinite);style.insertRule(keyframes hourRunindex {0%{transform: rotateZ(0);transform-origin: -hourLeft top;}100%{transform:rotateZ(((index1)*720)deg);transform-origin: -hourLeft top;}},style.rules.length);});$($(.main-content .shichen span)[0]).removeClass(current);$(.shichen span).each(function(index,element){$(element).css(animation,shichenRunindex 1s linear infinite);style.insertRule(keyframes shichenRunindex {0%{transform: rotateZ(0);transform-origin: -shichenLeft top;}100%{transform:rotateZ(((index1)*720)deg);transform-origin: -shichenLeft top;}},style.rules.length);});$($(.main-content .week span)[0]).removeClass(current);$(.week span).each(function(index,element){$(element).css(animation,weekRunindex 1s linear infinite);style.insertRule(keyframes weekRunindex {0%{transform: rotateZ(0);transform-origin: -weekLeft top;}100%{transform:rotateZ(((index1)*720)deg);transform-origin: -weekLeft top;}},style.rules.length);});$($(.main-content .day span)[0]).removeClass(current);$(.day span).each(function(index,element){$(element).css(animation,dayRunindex 1s linear infinite);style.insertRule(keyframes dayRunindex {0%{transform: rotateZ(0);transform-origin: -dayLeft top;}100%{transform:rotateZ(((index1)*720)deg);transform-origin: -dayLeft top;}},style.rules.length);});$($(.main-content .month span)[0]).removeClass(current);$(.month span).each(function(index,element){$(element).css(animation,monthRunindex 1s linear infinite);style.insertRule(keyframes monthRunindex {0%{transform: rotateZ(0);transform-origin: -monthLeft top;}100%{transform:rotateZ(((index1)*720)deg);transform-origin: -monthLeft top;}},style.rules.length);});}, 7000);//定义初始化当前时间setTimeout(function () {var myDate new Date();Time.currentTime.yearmyDate.getFullYear();Time.currentTime.monthmyDate.getMonth()1;Time.currentTime.daymyDate.getDate();Time.currentTime.weekmyDate.getDay();Time.currentTime.hourmyDate.getHours();Time.currentTime.minutemyDate.getMinutes();Time.currentTime.secondmyDate.getSeconds();monthTime.currentTime.month;yearTime.currentTime.year;initTime(Time,type);$(.main-content .year).html();$(.main-content .year).append(span classcurrentTime.currentTime.yearTime.yearUnit/span);$(.main-content .second).html();$(.main-content .second).append(span classcurrentTime.currentTime.secondTime.secondUnit/span);for (const key in Time.seconds) {if (Time.seconds.hasOwnProperty(key)) {const element Time.seconds[key];if(element!Time.currentTime.second){$(.main-content .second).append(spanelementTime.secondUnit/span);}}}$(.main-content .minute).html();$(.main-content .minute).append(span classcurrentTime.currentTime.minuteTime.minuteUnit/span);for (const key in Time.minutes) {if (Time.minutes.hasOwnProperty(key)) {const element Time.minutes[key];if(element!Time.currentTime.minute){$(.main-content .minute).append(spanelementTime.minuteUnit/span);}}}$(.main-content .hour).html();$(.main-content .hour).append(span classcurrentTime.currentTime.hourTime.hourUnit/span);for (const key in Time.hours) {if (Time.hours.hasOwnProperty(key)) {const element Time.hours[key];if(element!Time.currentTime.hour){$(.main-content .hour).append(spanelementTime.hourUnit/span);}}}$(.main-content .shichen).html();$(.main-content .shichen).append(span classcurrentTime.currentTime.shichen.str/span);for (const key in Time.shichens) {if (Time.shichens.hasOwnProperty(key)) {const element Time.shichens[key];if(element!Time.currentTime.shichen.str){$(.main-content .shichen).append(spanelement/span);}}}$(.main-content .week).html();$(.main-content .week).append(span classcurrentTime.currentTime.week/span);for (const key in Time.weeks) {if (Time.weeks.hasOwnProperty(key)) {const element Time.weeks[key];if(element!Time.currentTime.week){$(.main-content .week).append(spanelement/span);}}}$(.main-content .day).html();$(.main-content .day).append(span classcurrentTime.currentTime.dayTime.dayUnit/span);for (const key in Time.days) {if (Time.days.hasOwnProperty(key)) {const element Time.days[key];if(element!Time.currentTime.day){$(.main-content .day).append(spanelementTime.dayUnit/span);}}}$(.main-content .month).html();$(.main-content .month).append(span classcurrentTime.currentTime.monthTime.monthUnit/span);for (const key in Time.months) {if (Time.months.hasOwnProperty(key)) {const element Time.months[key];if(element!Time.currentTime.month){$(.main-content .month).append(spanelementTime.monthUnit/span);}}}}, 8000);//进来转回到当前时间setTimeout(function () {$(.second span).each(function(index,element){$(element).css(animation,secondindex 0s linear);$(element).css(animation-fill-mode,forwards);style.insertRule(keyframes secondindex{0%{transform: rotateZ(0);transform-origin: -secondLeft top;}100%{transform:rotateZ(-(360/Time.seconds.length)*indexdeg);transform-origin: -secondLeft top;}},style.rules.length);});$(.minute span).each(function(index,element){$(element).css(animation,minuteindex 0s linear);$(element).css(animation-fill-mode,forwards);style.insertRule(keyframes minuteindex{0%{transform: rotateZ(0);transform-origin: -minuteLeft top;}100%{transform:rotateZ(-(360/Time.minutes.length)*indexdeg);transform-origin: -minuteLeft top;}},style.rules.length);});$(.hour span).each(function(index,element){$(element).css(animation,hourindex 0s linear);$(element).css(animation-fill-mode,forwards);style.insertRule(keyframes hourindex{0%{transform: rotateZ(0);transform-origin: -hourLeft top;}100%{transform:rotateZ(-(360/Time.hours.length)*indexdeg);transform-origin: -hourLeft top;}},style.rules.length);});$(.shichen span).each(function(index,element){$(element).css(animation,shichenindex 0s linear);$(element).css(animation-fill-mode,forwards);style.insertRule(keyframes shichenindex{0%{transform: rotateZ(0);transform-origin: -shichenLeft top;}100%{transform:rotateZ(-(360/Time.shichens.length)*indexdeg);transform-origin: -shichenLeft top;}},style.rules.length);});$(.week span).each(function(index,element){$(element).css(animation,weekindex 0s linear);$(element).css(animation-fill-mode,forwards);style.insertRule(keyframes weekindex{0%{transform: rotateZ(0);transform-origin: -weekLeft top;}100%{transform:rotateZ(-(360/Time.weeks.length)*indexdeg);transform-origin: -weekLeft top;}},style.rules.length);});$(.day span).each(function(index,element){$(element).css(animation,dayindex 0s linear);$(element).css(animation-fill-mode,forwards);style.insertRule(keyframes dayindex{0%{transform: rotateZ(0);transform-origin: -dayLeft top;}100%{transform:rotateZ(-(360/Time.days.length)*indexdeg);transform-origin: -dayLeft top;}},style.rules.length);});$(.month span).each(function(index,element){$(element).css(animation,monthindex 0s linear);$(element).css(animation-fill-mode,forwards);style.insertRule(keyframes monthindex{0%{transform: rotateZ(0);transform-origin: -monthLeft top;}100%{transform:rotateZ(-(360/Time.months.length)*indexdeg);transform-origin: -monthLeft top;}},style.rules.length);});}, 8000);setTimeout(function (){setInterval(run,1000)},8000)var seci1;var mini1;var houri1;var shicheni1;var weeki1;var dayi1;var monthi1;function run(){var next$(.second span.current).next();if(next.text()){next$(.second span).first();}var secang16*(seci-1);var secang26*seci;$(.second).css(animation,secondRunseci 0.5s ease-in-out);$(.second).css(animation-fill-mode,forwards);style.insertRule(keyframes secondRunseci{0%{transform: rotateZ(secang1deg);transform-origin: -secondLeft top;} 50%{transform:rotateZ((secang21)deg);transform-origin: -secondLeft top;} 100%{transform:rotateZ(secang2deg);transform-origin: -secondLeft top;}},style.rules.length);$(.second span.current).removeClass(current);next.addClass(current);seci;if(seci60){seci1;}//展示分钟var secText$(.second span.current).text();if(secText0秒||secText零秒||secText0 s){var minang16*(mini-1);var minang26*mini;var next$(.minute span.current).next();if(next.text()){next$(.minute span).first();}$(.minute).css(animation,minuteRunmini 0.5s ease-in-out);$(.minute).css(animation-fill-mode,forwards);style.insertRule(keyframes minuteRunmini {0%{transform: rotateZ(minang1deg);transform-origin: -minuteLeft top;} 100%{transform:rotateZ(minang2deg);transform-origin: -minuteLeft top;}},style.rules.length);$(.minute span.current).removeClass(current);next.addClass(current);mini;if(mini60){mini1;}}//展示小时var minText$(.minute span.current).text();if((secText0秒||secText零秒||secText0 s) (minText0分||minText零分||minText0 m)){var hourang115*(houri-1);var hourang215*houri;var next$(.hour span.current).next();if(next.text()){next$(.hour span).first();}$(.hour).css(animation,hourRunhouri 0.5s ease-in-out);$(.hour).css(animation-fill-mode,forwards);style.insertRule(keyframes hourRunhouri {0%{transform: rotateZ(hourang1deg);transform-origin: -hourLeft top;} 100%{transform:rotateZ(hourang2deg);transform-origin: -hourLeft top;}},style.rules.length);$(.hour span.current).removeClass(current);next.addClass(current);houri;if(houri24){houri1;}}//展示时辰var hourText$(.hour span.current).text();if((secText0秒||secText零秒||secText0 s) (minText0分||minText零分||minText0 m)isShichen(hourText)){var shichenang130*(shicheni-1);var shichenang230*shicheni;var next$(.shichen span.current).next();if(next.text()){next$(.shichen span).first();}$(.shichen).css(animation,shichenRunshicheni 0.5s ease-in-out);$(.shichen).css(animation-fill-mode,forwards);style.insertRule(keyframes shichenRunshicheni {0%{transform: rotateZ(shichenang1deg);transform-origin: -shichenLeft top;} 100%{transform:rotateZ(shichenang2deg);transform-origin: -shichenLeft top;}},style.rules.length);$(.shichen span.current).removeClass(current);next.addClass(current);shicheni;if(shicheni30){shicheni1;}}//展示星期和日数if((secText0秒||secText零秒||secText0 s) (minText0分||minText零分||minText0 m)(hourText0时||hourText零时||hourText0 h)){var weekang1(360/7)*(weeki-1);var weekang2(360/7)*weeki;var dayang1(360/Time.days.length)*(dayi-1);var dayang2(360/Time.days.length)*dayi;console.log(dayang1);var nextweek$(.week span.current).next();var nextday$(.day span.current).next();if(nextweek.text()){nextweek$(.week span).first();}if(nextday.text()){nextday$(.day span).first();}$(.week).css(animation,weekRunweeki 0.5s ease-in-out);$(.week).css(animation-fill-mode,forwards);style.insertRule(keyframes weekRunweeki {0%{transform: rotateZ(weekang1deg);transform-origin: -weekLeft top;} 100%{transform:rotateZ(weekang2deg);transform-origin: -weekLeft top;}},style.rules.length);$(.day).css(animation,dayRundayi 0.5s ease-in-out);$(.day).css(animation-fill-mode,forwards);style.insertRule(keyframes dayRundayi {0%{transform: rotateZ(dayang1deg);transform-origin: -dayLeft top;} 100%{transform:rotateZ(dayang2deg);transform-origin: -dayLeft top;}},style.rules.length);$(.week span.current).removeClass(current);nextweek.addClass(current);weeki;if(weeki7){weeki1;}$(.day span.current).removeClass(current);nextday.addClass(current);dayi;if(dayiTime.days.length){dayi1;}}//展示月var dayText$(.day span.current).text();if((dayText1 day||dayTextnumToSimp(1)日||dayTextnumToTrad(1)日||dayText1日)(secText0秒||secText零秒||secText0 s) (minText0分||minText零分||minText0 m)(hourText0时||hourText零时||hourText0 h)){var monthang130*(monthi-1);var monthang230*monthi;var next$(.month span.current).next();if(next.text()){next$(.month span).first();}$(.month).css(animation,monthRunmonthi 0.5s ease-in-out);$(.month).css(animation-fill-mode,forwards);style.insertRule(keyframes monthRunmonthi {0%{transform: rotateZ(monthang1deg);transform-origin: -monthLeft top;} 100%{transform:rotateZ(monthang2deg);transform-origin: -monthLeft top;}},style.rules.length);month;if(month12){month1;}//更新到当前日$(.day).html();Time.daysupdateDays(type,year,month,1);Time.currentTime.daygetFirstDay(type);$(.main-content .day).append(span classcurrentTime.currentTime.dayTime.dayUnit/span);for (const key in Time.days) {if (Time.days.hasOwnProperty(key)) {const element Time.days[key];if(element!Time.currentTime.day){$(.main-content .day).append(spanelementTime.dayUnit/span);}}}$(.day span).each(function(index,element){$(element).css(animation,dayindex 0.5s linear);$(element).css(animation-fill-mode,forwards);style.insertRule(keyframes dayindex{0%{transform: rotateZ(0);transform-origin: -dayLeft top;}100%{transform:rotateZ(-(360/Time.days.length)*(index1)deg);transform-origin: -dayLeft top;}},style.rules.length);});$(.month span.current).removeClass(current);next.addClass(current);monthi;if(monthi12){monthi1;}}//跟新到年if(month1(dayText1 day||dayTextnumToSimp(1)日||dayTextnumToTrad(1)日||dayText1日)(secText0秒||secText零秒||secText0 s) (minText0分||minText零分||minText0 m)(hourText0时||hourText零时||hourText0 h)){year;Time.currentTime.yeargetYear(type,year);$(.year span).html(getYear(type,year)Time.yearUnit);}}});function initTime(Time,type){switch (type) {case 0:Time.monthsgetMonths(0,Time.currentTime.month);Time.daysgetdays(0,Time.currentTime.year,Time.currentTime.month,Time.currentTime.day);Time.weeksgetWeeks(0,Time.currentTime.week);Time.hoursgetHours(0,Time.currentTime.hour);Time.minutesgetMinutes(0,Time.currentTime.minute);Time.secondsgetSeconds(0,Time.currentTime.second);Time.currentTime.weekTime.weekUnit getWeek(0,Time.currentTime.week);Time.currentTime.shichengetShiChen(0,Time.currentTime.hour);Time.shichensgetShiChens(0,Time.currentTime.shichen);break;case 1:Time.monthsgetMonths(1,Time.currentTime.month);Time.daysgetdays(1,Time.currentTime.year,Time.currentTime.month,Time.currentTime.day);Time.weeksgetWeeks(1,Time.currentTime.week);Time.hoursgetHours(1,Time.currentTime.hour);Time.minutesgetMinutes(1,Time.currentTime.minute);Time.secondsgetSeconds(1,Time.currentTime.second);Time.currentTime.monthnumToSimp(Time.currentTime.month);Time.currentTime.daynumToSimp(Time.currentTime.day);Time.currentTime.weekTime.weekUnitgetWeek(1,Time.currentTime.week);Time.currentTime.shichengetShiChen(1,Time.currentTime.hour);Time.shichensgetShiChens(1,Time.currentTime.shichen);Time.currentTime.hournumToSimp(Time.currentTime.hour);Time.currentTime.minutenumToSimp(Time.currentTime.minute);Time.currentTime.secondnumToSimp(Time.currentTime.second);Time.currentTime.yeargetYear(1,Time.currentTime.year);break;case 2:Time.monthsgetMonths(2,Time.currentTime.month);Time.daysgetdays(2,Time.currentTime.year,Time.currentTime.month,Time.currentTime.day);Time.weeksgetWeeks(2,Time.currentTime.week);Time.hoursgetHours(2,Time.currentTime.hour);Time.minutesgetMinutes(2,Time.currentTime.minute);Time.secondsgetSeconds(2,Time.currentTime.second);Time.currentTime.monthnumToTrad(Time.currentTime.month);Time.currentTime.daynumToTrad(Time.currentTime.day);Time.currentTime.weekTime.weekUnitgetWeek(2,Time.currentTime.week);Time.currentTime.shichengetShiChen(2,Time.currentTime.hour);Time.shichensgetShiChens(2,Time.currentTime.shichen);Time.currentTime.hournumToTrad(Time.currentTime.hour);Time.currentTime.minutenumToTrad(Time.currentTime.minute);Time.currentTime.secondnumToTrad(Time.currentTime.second);Time.currentTime.yeargetYear(2,Time.currentTime.year);break;case 3:Time.monthsgetMonths(3,Time.currentTime.month);Time.daysgetdays(0,Time.currentTime.year,Time.currentTime.month,Time.currentTime.day);Time.weeksgetWeeks(3,Time.currentTime.week);Time.hoursgetHours(3,Time.currentTime.hour);Time.minutesgetMinutes(3,Time.currentTime.minute);Time.secondsgetSeconds(3,Time.currentTime.second);Time.currentTime.monthgetMonthEng(Time.currentTime.month);Time.currentTime.weekgetWeek(3,Time.currentTime.week);Time.currentTime.shichengetShiChen(3,Time.currentTime.hour);Time.shichensgetShiChens(3,Time.currentTime.shichen);Time.monthUnit;Time.dayUnit dayTime.weekUnitTime.hourUnit hTime.minuteUnit mTime.secondUnit sTime.yearUnit Yearbreak;} }//根据字体大小和文字类型获取时钟间距 function getSpace(fontSize,type) {space{month:0,day:0,week:0,shichen:0,hour:0,minute:0,second:0}switch(type){case 0:space.month30;space.day65;space.week100;space.shichen150;space.hour230;space.minute270;space.second310;break;case 1:space.month40;space.day85;space.week145;space.shichen192;space.hour232;space.minute292;space.second355;break;case 2:space.month40;space.day85;space.week145;space.shichen190;space.hour230;space.minute290;space.second350;break;case 3:space.month40;space.day75;space.week125;space.shichen160;space.hour255;space.minute295;space.second335;break;}return space; }效果图 总结 整体上这个网页应用程序通过HTML提供了页面结构CSS赋予了页面美观的样式而JavaScript则让页面具有动态更新和用户交互的能力。三者共同协作实现了一个既美观又实用的动态时钟和日期时间转换工具。
文章转载自:
http://www.morning.svrud.cn.gov.cn.svrud.cn
http://www.morning.sxwfx.cn.gov.cn.sxwfx.cn
http://www.morning.zbmcz.cn.gov.cn.zbmcz.cn
http://www.morning.nqmdc.cn.gov.cn.nqmdc.cn
http://www.morning.rkrl.cn.gov.cn.rkrl.cn
http://www.morning.flpjy.cn.gov.cn.flpjy.cn
http://www.morning.jrbyz.cn.gov.cn.jrbyz.cn
http://www.morning.dongyinet.cn.gov.cn.dongyinet.cn
http://www.morning.ghwdm.cn.gov.cn.ghwdm.cn
http://www.morning.lzsxp.cn.gov.cn.lzsxp.cn
http://www.morning.dhqg.cn.gov.cn.dhqg.cn
http://www.morning.rgpbk.cn.gov.cn.rgpbk.cn
http://www.morning.jgttx.cn.gov.cn.jgttx.cn
http://www.morning.qsfys.cn.gov.cn.qsfys.cn
http://www.morning.rxnr.cn.gov.cn.rxnr.cn
http://www.morning.jjwt.cn.gov.cn.jjwt.cn
http://www.morning.qmwzr.cn.gov.cn.qmwzr.cn
http://www.morning.fbdtd.cn.gov.cn.fbdtd.cn
http://www.morning.jmdpp.cn.gov.cn.jmdpp.cn
http://www.morning.plcyq.cn.gov.cn.plcyq.cn
http://www.morning.ktntj.cn.gov.cn.ktntj.cn
http://www.morning.rrdch.cn.gov.cn.rrdch.cn
http://www.morning.cbynh.cn.gov.cn.cbynh.cn
http://www.morning.smggx.cn.gov.cn.smggx.cn
http://www.morning.bdwqy.cn.gov.cn.bdwqy.cn
http://www.morning.tkzqw.cn.gov.cn.tkzqw.cn
http://www.morning.lxqkt.cn.gov.cn.lxqkt.cn
http://www.morning.rqlf.cn.gov.cn.rqlf.cn
http://www.morning.sgfgz.cn.gov.cn.sgfgz.cn
http://www.morning.tklqs.cn.gov.cn.tklqs.cn
http://www.morning.qmqgx.cn.gov.cn.qmqgx.cn
http://www.morning.hwbmn.cn.gov.cn.hwbmn.cn
http://www.morning.kyflr.cn.gov.cn.kyflr.cn
http://www.morning.mbaiwan.com.gov.cn.mbaiwan.com
http://www.morning.bpmdg.cn.gov.cn.bpmdg.cn
http://www.morning.xrpjr.cn.gov.cn.xrpjr.cn
http://www.morning.xrnh.cn.gov.cn.xrnh.cn
http://www.morning.rkqqf.cn.gov.cn.rkqqf.cn
http://www.morning.ngqty.cn.gov.cn.ngqty.cn
http://www.morning.mbaiwan.com.gov.cn.mbaiwan.com
http://www.morning.tpyrn.cn.gov.cn.tpyrn.cn
http://www.morning.knjj.cn.gov.cn.knjj.cn
http://www.morning.rkzk.cn.gov.cn.rkzk.cn
http://www.morning.nhzxr.cn.gov.cn.nhzxr.cn
http://www.morning.zljqb.cn.gov.cn.zljqb.cn
http://www.morning.lxhrq.cn.gov.cn.lxhrq.cn
http://www.morning.gghhmi.cn.gov.cn.gghhmi.cn
http://www.morning.hlmkx.cn.gov.cn.hlmkx.cn
http://www.morning.nynyj.cn.gov.cn.nynyj.cn
http://www.morning.lffgs.cn.gov.cn.lffgs.cn
http://www.morning.hsrpr.cn.gov.cn.hsrpr.cn
http://www.morning.bmts.cn.gov.cn.bmts.cn
http://www.morning.rpljf.cn.gov.cn.rpljf.cn
http://www.morning.qyfqx.cn.gov.cn.qyfqx.cn
http://www.morning.rkdhh.cn.gov.cn.rkdhh.cn
http://www.morning.lrdzb.cn.gov.cn.lrdzb.cn
http://www.morning.dqrhz.cn.gov.cn.dqrhz.cn
http://www.morning.tfcwj.cn.gov.cn.tfcwj.cn
http://www.morning.jcfg.cn.gov.cn.jcfg.cn
http://www.morning.slnz.cn.gov.cn.slnz.cn
http://www.morning.yktr.cn.gov.cn.yktr.cn
http://www.morning.ycmpk.cn.gov.cn.ycmpk.cn
http://www.morning.tclqf.cn.gov.cn.tclqf.cn
http://www.morning.lcplz.cn.gov.cn.lcplz.cn
http://www.morning.dfltx.cn.gov.cn.dfltx.cn
http://www.morning.whpsl.cn.gov.cn.whpsl.cn
http://www.morning.dfckx.cn.gov.cn.dfckx.cn
http://www.morning.dhbyj.cn.gov.cn.dhbyj.cn
http://www.morning.rgmls.cn.gov.cn.rgmls.cn
http://www.morning.qqbw.cn.gov.cn.qqbw.cn
http://www.morning.zpnfc.cn.gov.cn.zpnfc.cn
http://www.morning.rpwck.cn.gov.cn.rpwck.cn
http://www.morning.tsynj.cn.gov.cn.tsynj.cn
http://www.morning.kcbml.cn.gov.cn.kcbml.cn
http://www.morning.stfdh.cn.gov.cn.stfdh.cn
http://www.morning.splkk.cn.gov.cn.splkk.cn
http://www.morning.nkbfc.cn.gov.cn.nkbfc.cn
http://www.morning.clpfd.cn.gov.cn.clpfd.cn
http://www.morning.mtrz.cn.gov.cn.mtrz.cn
http://www.morning.hytqt.cn.gov.cn.hytqt.cn
http://www.tj-hxxt.cn/news/263941.html

相关文章:

  • 传奇怎么建设自己的网站大兴企业网站建设公司
  • 赶集网网站建设ppt模板装修平台app有哪些
  • 好兄弟给个网站哪个女装网站做的好
  • 高端定制网站建设高端旅游定制电脑网页游戏排行
  • 网站建设优化托管公司网站 域名 cn com
  • 做网站后期续费是怎么算的自己如何注册一个网站
  • 网站付费推广竞价济南网站建设代码
  • 南宁设计网站网站代备案系统
  • 深圳定制网站制作厂家南京小程序外包公司
  • 素马网站设计公司雷山网站建设
  • 网站改版iis301跳转如何做怎么制作wordpress主题
  • wordpress适用于图片站的主题wordpress盗版模板
  • 新乡网站seo优化网站建设费属于哪个税种
  • 制作网站具体需要什么材料如何用模板建设网站
  • 天津平台网站建设哪里好专业网站推广公司
  • 网站开发多长时间网站建设 生产
  • 做柜子好的设计网站wordpress仿百度百家
  • 福建定制网站开发网站风格规划
  • 网站开源模板天津做网站找哪家公司好
  • 为什么学网站开发深圳网站设计收费标准
  • 电子商务网站成本网站推广服务方案
  • 济南建站公司模板做网站一般有什么题目
  • sqlite开发网站国家骨干高职院校建设网站
  • 7款优秀网站设计欣赏收费网站设计方案
  • 小说网站收录了怎么做排名企业建设网站需注意哪些内容
  • 做色网站wordpress5无法创建目录
  • 网站备案 现场提交大连市建设厅网站
  • 旧安卓手机做网站仿锤子 wordpress
  • 烫画图案设计网站网站设计网站建站
  • 西安将军山网站建设天津公司网站怎样制作