Repository: iiunknown/iscroll5.doc.cn Branch: master Commit: fa04214aa971 Files: 49 Total size: 1.2 MB Directory structure: gitextract_fhyebdpe/ ├── README.md ├── SUMMARY.md ├── _book/ │ ├── advance.html │ ├── basicfeatures.html │ ├── config.html │ ├── core.html │ ├── customevents.html │ ├── distory.html │ ├── gettingstart.html │ ├── gitbook/ │ │ ├── app.js │ │ ├── fonts/ │ │ │ └── fontawesome/ │ │ │ └── FontAwesome.otf │ │ ├── jsrepl/ │ │ │ ├── engines/ │ │ │ │ └── javascript-default.js │ │ │ ├── jsrepl.js │ │ │ ├── langs/ │ │ │ │ └── javascript/ │ │ │ │ └── jsrepl_js.js │ │ │ ├── sandbox.html │ │ │ └── sandbox.js │ │ ├── plugins/ │ │ │ └── gitbook-plugin-mathjax/ │ │ │ └── plugin.js │ │ ├── print.css │ │ └── style.css │ ├── index.html │ ├── indicator.html │ ├── infinite.html │ ├── init.html │ ├── keybindings.html │ ├── manifest.appcache │ ├── refresh.html │ ├── scrollerinfo.html │ ├── scrollers.html │ ├── search_index.json │ ├── snap.html │ ├── versions.html │ └── zoom.html ├── advance.md ├── basicfeatures.md ├── config.md ├── core.md ├── customevents.md ├── distory.md ├── gettingstart.md ├── indicator.md ├── infinite.md ├── init.md ├── keybindings.md ├── refresh.md ├── scrollerinfo.md ├── scrollers.md ├── snap.md ├── versions.md └── zoom.md ================================================ FILE CONTENTS ================================================ ================================================ FILE: README.md ================================================ # iScroll 5 API 中文版 [Gitbook发布版本](http://iiunknown.gitbooks.io/iscroll-5-api-cn/content/) [![Build Status](https://www.gitbook.io/button/status/book/iiunknown/iscroll-5-api-cn)](https://www.gitbook.io/book/iiunknown/iscroll-5-api-cn/activity) ## 前言 最近项目上需要使用[iScroll](http://iscrolljs.com),在中文圈里找了找,只找到了iScroll 4的中文版API。加上最近开始使用github(准确说,github账号是很多年前注册的,一直在企业应用里摸爬滚打,荒废了账号很长时间,是理由吗?是理由吗?),出于对开源社区的敬意,我突然觉得应该做点啥,于是先挑一个简单点儿的,把iScroll 5的API翻译一下,方便中文用户使用。 ##搭后语 iScroll对于我来讲典型的应用场景位于移动设备的App,基于Cordova/Phonegap + JQM + iScroll开发移动设备上的App,对于以数据呈现为主体的企业应用来讲无疑是一个多快好省的解决方案。这三驾马车前两个可以堂而皇之的称之为`开发框架`,iScroll只能称之为工具,尽管如此,iScroll带来的强大的滚动功能,能节省我们在项目开发上的部分时间(这也是开源社区的力量),所以也值得我花时间理解作者的代码和文档。如果您认同这种功劳苦劳,请到[**github**](https://github.com/iiunknown/iscroll5.doc.cn)上给我一个star。由于才疏学浅,在翻译过程中难免会有错误或者瑕疵,请在[**issure**](https://github.com/iiunknown/iscroll5.doc.cn/issues)中提出,我会及时更正。 下面,我们开始iScroll之旅,请系好安全带。 ##iScroll简介 iScroll是一个高性能,资源占用少,无依赖,多平台的javascript滚动插件。 它可以在桌面,移动设备和智能电视平台上工作。它一直在大力优化性能和文件大小以便在新旧设备上提供最顺畅的体验。 iScroll不仅仅是 滚动。它可以处理任何需要与用户进行移动交互的元素。在你的项目中包含仅仅4kb大小的iScroll,你的项目便拥有了滚动,缩放,平移,无限滚动,视差滚动,旋转功能。给它一个扫帚它甚至能帮你打扫办公室。 即使平台本身提供的滚动已经很不错,iScroll可以在此基础上提供更多不可思议的功能。具体来说: * 细粒度控制滚动位置,甚至在滚动过程中。你总是可以获取和设置滚动器的x,y坐标。 * 动画可以使用用户自定义的擦出功能(反弹'bounce',弹性'elastic',回退'back',...)。 * 你可以很容易的挂靠大量的自定义事件(onBeforeScrollStart, * * 开箱即用的多平台支持。从很老的安卓设备到最新的iPhone,从Chrome浏览器到IE浏览器。 ================================================ FILE: SUMMARY.md ================================================ # Summary * [版本](versions.md) * [入门](gettingstart.md) * [初始化](init.md) * [配置](config.md) * [核心](core.md) * [基本功能](basicfeatures.md) * [滚动条](scrollers.md) * [指示器](indicator.md) * [对齐](snap.md) * [缩放](zoom.md) * [无限滚动](infinite.md) * [高级选项](advance.md) * [刷新](refresh.md) * [自定义事件](customevents.md) * [按键绑定](keybindings.md) * [滚动条信息](scrollerinfo.md) * [销毁](distory.md) ================================================ FILE: _book/advance.html ================================================ 高级选项 | iScroll 5 API 中文版

iScroll 5 API 中文版

高级选项

================================================ FILE: _book/basicfeatures.html ================================================ 基本功能 | iScroll 5 API 中文版

iScroll 5 API 中文版

基本功能

options.bounce

当滚动器到达容器边界时他将执行一个小反弹动画。在老的或者性能低的设备上禁用反弹对实现平滑的滚动有帮助。

默认值:true

options.click

为了重写原生滚动条,iScroll禁止了一些默认的浏览器行为,比如鼠标的点击。如果你想你的应用程序响应click事件,那么该设置次属性为true。请注意,建议使用自定义的tap 事件来代替它(见下面)。

默认属性:false

options.disableMouse
options.disablePointer
options.disableTouch

默认情况下,iScroll肩痛所有的指针事件,并且对这些事件中第一个被触发的做出反应。这看上去是浪费资源,但是在大量的浏览器/设备上兼容,特定的事件侦测证明是无效的,所以listen-to-all是一个安全的做法。

如果你有一种设备侦测的内部机制,或者你知道你的脚本将在什么地方运行,你可以把你不需要的事件禁用(鼠标,指针或者触摸事件)。

下面的例子是禁用鼠标和指针事件:

var myScroll = new IScroll('#wrapper', {
    disableMouse: true,
    disablePointer: true
});

默认值:false

options.eventPassthrough

有些时候你想保留原生纵向的滚动条但想为横向滚动条增加iScroll功能(比如走马灯)。设置这个属性为true并且iScroll区域只将影响横向滚动,纵向滚动将滚动整个页面。

在移动设备上访问event passthrough demo。注意,这个值也可以设置为'horizontal',其作用和上面介绍的相反(横向滚动条保持原生,纵向滚动条使用iScroll)。

options.freeScroll

此属性针对于两个两个纬度的滚动条(当你需要横向和纵向滚动条)。通常情况下你开始滚动一个方向上的滚动条,另外一个方向上会被锁定不动。有些时候,你需要无约束的移动(横向和纵向可以同时响应),在这样的情况下此属性需要设置为true。请参考 2D scroll demo

默认值:false

options.keyBindings

此属性为true时激活键盘(和远程控制)绑定。请参考下面的Key bindings内容。

默认值:false

options.invertWheelDirection

当鼠标滚轮支持激活后,在有些情况下需要反转滚动的方向。(比如,鼠标滚轮向下滚动条向上,反之亦然)。

默认值:false

options.momentum

在用户快速触摸屏幕时,你可以开/关势能动画。关闭此功能将大幅度提升性能。

默认值:true

options.mouseWheel

侦听鼠标滚轮事件。

默认值:false

options.preventDefault

当事件触发时师傅执行preventDefault()。此属性应该设置为true,除非你真的知道你需要怎么做。

请参考Advanced features中的preventDefaultException,可以获取更多控制preventDefault行为的信息。

Default: true 默认值:true

options.scrollbars

是否显示为默认的滚动条。更多信息请查看Scrollbar

默认值:false

options.scrollX
options.scrollY

默认情况下只有纵向滚动条可以使用。如果你需要使用横向滚动条,需要将scrollX 属性值设置为 true。请参考示例horizontal demo

也可以参考freeScroll选项。

默认值:scrollX: falsescrollY: true

注意属性 scrollX/Y: trueoverflow: auto有相同的效果。设置一个方向上的值为 false 可以节省一些检测的时间和CPU的计算周期。

options.startX
options.startY

默认情况下iScroll从0, 0 (top left)位置开始,通过此属性可以让滚动条从不同的位置开始滚动。

默认值:0

options.tap

设置此属性为true,当滚动区域被点击或者触摸但并没有滚动时,可以让iScroll抛出一个自定义的tap事件。

这是处理与可以点击元素之间的用户交互的建议方式。侦听tap事件和侦听标准事件的方式一致。示例如下:

element.addEventListener('tap', doSomething, false); \\ Native
$('#element').on('tap', doSomething); \\ jQuery

你可以通过传递一个字符串来自定义事件名称。比如:

tap: 'myCustomTapEvent'

在这个示例里你应该侦听名为myCustomTapEvent的事件。

默认值:false

================================================ FILE: _book/config.html ================================================ 配置 | iScroll 5 API 中文版

iScroll 5 API 中文版

配置iScroll

在iScroll初始化阶段可以通过构造函数的第二个参数配置它。

var myScroll = new IScroll('#wrapper', {
    mouseWheel: true,
    scrollbars: true
});

上面的例子示例了在iScroll初始化时开启鼠标滚轮支持和滚动条支持。

在初始化后你可以通过options对象访问标准化值。例如:

console.dir(myScroll.options);

上面的语句将返回myScroll实例的配置信息。所谓的标准化意味着如果你设置useTransform:true,但是浏览器并不支持CSS transforms,那么useTransform属性值将为false

================================================ FILE: _book/core.html ================================================ 核心 | iScroll 5 API 中文版

iScroll 5 API 中文版

理解核心

iScroll使用基于设备和浏览器性能的各种技术来进行滚动。通常不需要你来配置引擎,iScroll会为你选择最佳的方式。

尽管如此,理解iScroll工作机制和了解如何去配置他们也是很重要的。

options.useTransform

默认情况下引擎会使用CSStransform属性。如果现在还是2007年,那么可以设置这个属性为false,这就是说:引擎将使用top/left属性来进行滚动。

这个属性在滚动器感知到Flash,iframe或者视频插件内容时会有用,但是需要注意:性能会有极大的损耗。

默认值:true

options.useTransition

iScroll使用CSS transition来实现动画效果(动量和弹力)。如果设置为false,那么将使用requestAnimationFrame代替。

在现在浏览器中这两者之间的差异并不明显。在老的设备上transitions执行得更好。

默认值:true

options.HWCompositing

这个选项尝试使用translateZ(0)来把滚动器附加到硬件层,以此来改变CSS属性。在移动设备上这将提高性能,但在有些情况下,你可能想要禁用它(特别是如果你有太多的元素和硬件性能跟不上)。

默认值:true

如果不确定iScroll的最优配置。从性能角度出发,上面的所有选项应该设置为true。(或者更好的方式,让他们自动设置属性为true)。你可以尝试这配置他们,但是要小心内存泄漏。

================================================ FILE: _book/customevents.html ================================================ 自定义事件 | iScroll 5 API 中文版

iScroll 5 API 中文版

自定义事件

================================================ FILE: _book/distory.html ================================================ 销毁 | iScroll 5 API 中文版

iScroll 5 API 中文版

缩放

================================================ FILE: _book/gettingstart.html ================================================ 入门 | iScroll 5 API 中文版

iScroll 5 API 中文版

入门

你想成为iScroll大师。行,这就是我写以下内容的目的。

最好的学习iScroll的方法是看示例。在存档文件中你会发现一个叫做demo的文件夹示例。这里有大多数脚本功能的概述。

IScroll是一个类,每个需要使用滚动功能的区域均要进行初始化。每个页面上的iScroll实例数目在设备的CPU和内存能承受的范围内是没有限制的。

尽可能保持DOM结构的简洁。iScroll使用硬件合成层但是有一个限制硬件可以处理的元素。

最佳的HTML结构如下:

<div id="wrapper">
    <ul>
        <li>...</li>
        <li>...</li>
        ...
    </ul>
</div>

iScroll作用于滚动区域的外层。在上面的例子中,UL元素能进行滚动。只有容器元素的第一个子元素能进行滚动,其他子元素完全被忽略。

box-shadow, opacity, text-shadow and alpha channels are all properties that don't go very well together with hardware acceleration. Scrolling might look good with few elements but as soon as your DOM becomes more complex you'll start experiencing lag and jerkiness.

Sometimes a background image to simulate the shadow performs better than box-shadow. The bottom line is: experiment with CSS properties, you'll be surprised by the difference in performance a small CSS change can do.

最基本的脚本初始化的方式如下:

<script type="text/javascript">
var myScroll = new IScroll('#wrapper');
</script>

第一个参数可以是滚动容器元素的DOM选择器字符串,也可以是滚动容器元素的引用对象。下面是一个有效的语法:

var wrapper = document.getElementById('wrapper');
var myScroll = new IScroll(wrapper);

所以基本上你要么直接传递元素,要么传递一个querySelector字符串。因此可以使用css名称代替ID去选择一个滚动器容器,如下:

var myScroll = new IScroll('.wrapper');

注意,iScroll使用的是querySelector 而不是 querySelectorAll,所以iScroll只会作用到选择器选中元素的第一个。如果你需要对多个对象使用iScroll,你需要构建自己的循环机制。

You don't strictly need to assign the instance to a variable (myScroll), but it is handy to keep a reference to the iScroll.

For example you could later check the scroller position or unload unnecessary events when you don't need the iScroll anymore.

================================================ FILE: _book/gitbook/app.js ================================================ var requirejs,require,define;(function(global){function isFunction(e){return ostring.call(e)==="[object Function]"}function isArray(e){return ostring.call(e)==="[object Array]"}function each(e,t){if(e){var n;for(n=0;n-1;n-=1)if(e[n]&&t(e[n],n,e))break}}function hasProp(e,t){return hasOwn.call(e,t)}function getOwn(e,t){return hasProp(e,t)&&e[t]}function eachProp(e,t){var n;for(n in e)if(hasProp(e,n)&&t(e[n],n))break}function mixin(e,t,n,r){return t&&eachProp(t,function(t,i){if(n||!hasProp(e,i))r&&typeof t=="object"&&t&&!isArray(t)&&!isFunction(t)&&!(t instanceof RegExp)?(e[i]||(e[i]={}),mixin(e[i],t,n,r)):e[i]=t}),e}function bind(e,t){return function(){return t.apply(e,arguments)}}function scripts(){return document.getElementsByTagName("script")}function defaultOnError(e){throw e}function getGlobal(e){if(!e)return e;var t=global;return each(e.split("."),function(e){t=t[e]}),t}function makeError(e,t,n,r){var i=new Error(t+"\nhttp://requirejs.org/docs/errors.html#"+e);return i.requireType=e,i.requireModules=r,n&&(i.originalError=n),i}function newContext(e){function m(e){var t,n,r=e.length;for(t=0;t0&&(e.splice(t-1,2),t-=2)}}}function g(e,t,n){var r,i,s,u,a,f,l,c,h,p,d,v=t&&t.split("/"),g=v,y=o.map,b=y&&y["*"];e&&e.charAt(0)==="."&&(t?(g=v.slice(0,v.length-1),e=e.split("/"),l=e.length-1,o.nodeIdCompat&&jsSuffixRegExp.test(e[l])&&(e[l]=e[l].replace(jsSuffixRegExp,"")),e=g.concat(e),m(e),e=e.join("/")):e.indexOf("./")===0&&(e=e.substring(2)));if(n&&y&&(v||b)){s=e.split("/");e:for(u=s.length;u>0;u-=1){f=s.slice(0,u).join("/");if(v)for(a=v.length;a>0;a-=1){i=getOwn(y,v.slice(0,a).join("/"));if(i){i=getOwn(i,f);if(i){c=i,h=u;break e}}}!p&&b&&getOwn(b,f)&&(p=getOwn(b,f),d=u)}!c&&p&&(c=p,h=d),c&&(s.splice(0,h,c),e=s.join("/"))}return r=getOwn(o.pkgs,e),r?r:e}function y(e){isBrowser&&each(scripts(),function(t){if(t.getAttribute("data-requiremodule")===e&&t.getAttribute("data-requirecontext")===r.contextName)return t.parentNode.removeChild(t),!0})}function b(e){var t=getOwn(o.paths,e);if(t&&isArray(t)&&t.length>1)return t.shift(),r.require.undef(e),r.require([e]),!0}function w(e){var t,n=e?e.indexOf("!"):-1;return n>-1&&(t=e.substring(0,n),e=e.substring(n+1,e.length)),[t,e]}function E(e,t,n,i){var s,o,u,a,f=null,l=t?t.name:null,h=e,p=!0,m="";return e||(p=!1,e="_@r"+(d+=1)),a=w(e),f=a[0],e=a[1],f&&(f=g(f,l,i),o=getOwn(c,f)),e&&(f?o&&o.normalize?m=o.normalize(e,function(e){return g(e,l,i)}):m=g(e,l,i):(m=g(e,l,i),a=w(m),f=a[0],m=a[1],n=!0,s=r.nameToUrl(m))),u=f&&!o&&!n?"_unnormalized"+(v+=1):"",{prefix:f,name:m,parentMap:t,unnormalized:!!u,url:s,originalName:h,isDefine:p,id:(f?f+"!"+m:m)+u}}function S(e){var t=e.id,n=getOwn(u,t);return n||(n=u[t]=new r.Module(e)),n}function x(e,t,n){var r=e.id,i=getOwn(u,r);hasProp(c,r)&&(!i||i.defineEmitComplete)?t==="defined"&&n(c[r]):(i=S(e),i.error&&t==="error"?n(i.error):i.on(t,n))}function T(e,t){var n=e.requireModules,r=!1;t?t(e):(each(n,function(t){var n=getOwn(u,t);n&&(n.error=e,n.events.error&&(r=!0,n.emit("error",e)))}),r||req.onError(e))}function N(){globalDefQueue.length&&(apsp.apply(l,[l.length,0].concat(globalDefQueue)),globalDefQueue=[])}function C(e){delete u[e],delete a[e]}function k(e,t,n){var r=e.map.id;e.error?e.emit("error",e.error):(t[r]=!0,each(e.depMaps,function(r,i){var s=r.id,o=getOwn(u,s);o&&!e.depMatched[i]&&!n[s]&&(getOwn(t,s)?(e.defineDep(i,c[s]),e.check()):k(o,t,n))}),n[r]=!0)}function L(){var e,n,i=o.waitSeconds*1e3,u=i&&r.startTime+i<(new Date).getTime(),f=[],l=[],c=!1,h=!0;if(t)return;t=!0,eachProp(a,function(e){var t=e.map,r=t.id;if(!e.enabled)return;t.isDefine||l.push(e);if(!e.error)if(!e.inited&&u)b(r)?(n=!0,c=!0):(f.push(r),y(r));else if(!e.inited&&e.fetched&&t.isDefine){c=!0;if(!t.prefix)return h=!1}});if(u&&f.length)return e=makeError("timeout","Load timeout for modules: "+f,null,f),e.contextName=r.contextName,T(e);h&&each(l,function(e){k(e,{},{})}),(!u||n)&&c&&(isBrowser||isWebWorker)&&!s&&(s=setTimeout(function(){s=0,L()},50)),t=!1}function A(e){hasProp(c,e[0])||S(E(e[0],null,!0)).init(e[1],e[2])}function O(e,t,n,r){e.detachEvent&&!isOpera?r&&e.detachEvent(r,t):e.removeEventListener(n,t,!1)}function M(e){var t=e.currentTarget||e.srcElement;return O(t,r.onScriptLoad,"load","onreadystatechange"),O(t,r.onScriptError,"error"),{node:t,id:t&&t.getAttribute("data-requiremodule")}}function _(){var e;N();while(l.length){e=l.shift();if(e[0]===null)return T(makeError("mismatch","Mismatched anonymous define() module: "+e[e.length-1]));A(e)}}var t,n,r,i,s,o={waitSeconds:7,baseUrl:"./",paths:{},bundles:{},pkgs:{},shim:{},config:{}},u={},a={},f={},l=[],c={},h={},p={},d=1,v=1;return i={require:function(e){return e.require?e.require:e.require=r.makeRequire(e.map)},exports:function(e){e.usingExports=!0;if(e.map.isDefine)return e.exports?c[e.map.id]=e.exports:e.exports=c[e.map.id]={}},module:function(e){return e.module?e.module:e.module={id:e.map.id,uri:e.map.url,config:function(){return getOwn(o.config,e.map.id)||{}},exports:e.exports||(e.exports={})}}},n=function(e){this.events=getOwn(f,e.id)||{},this.map=e,this.shim=getOwn(o.shim,e.id),this.depExports=[],this.depMaps=[],this.depMatched=[],this.pluginMaps={},this.depCount=0},n.prototype={init:function(e,t,n,r){r=r||{};if(this.inited)return;this.factory=t,n?this.on("error",n):this.events.error&&(n=bind(this,function(e){this.emit("error",e)})),this.depMaps=e&&e.slice(0),this.errback=n,this.inited=!0,this.ignore=r.ignore,r.enabled||this.enabled?this.enable():this.check()},defineDep:function(e,t){this.depMatched[e]||(this.depMatched[e]=!0,this.depCount-=1,this.depExports[e]=t)},fetch:function(){if(this.fetched)return;this.fetched=!0,r.startTime=(new Date).getTime();var e=this.map;if(!this.shim)return e.prefix?this.callPlugin():this.load();r.makeRequire(this.map,{enableBuildCallback:!0})(this.shim.deps||[],bind(this,function(){return e.prefix?this.callPlugin():this.load()}))},load:function(){var e=this.map.url;h[e]||(h[e]=!0,r.load(this.map.id,e))},check:function(){if(!this.enabled||this.enabling)return;var e,t,n=this.map.id,i=this.depExports,s=this.exports,o=this.factory;if(!this.inited)this.fetch();else if(this.error)this.emit("error",this.error);else if(!this.defining){this.defining=!0;if(this.depCount<1&&!this.defined){if(isFunction(o)){if(this.events.error&&this.map.isDefine||req.onError!==defaultOnError)try{s=r.execCb(n,o,i,s)}catch(u){e=u}else s=r.execCb(n,o,i,s);this.map.isDefine&&s===undefined&&(t=this.module,t?s=t.exports:this.usingExports&&(s=this.exports));if(e)return e.requireMap=this.map,e.requireModules=this.map.isDefine?[this.map.id]:null,e.requireType=this.map.isDefine?"define":"require",T(this.error=e)}else s=o;this.exports=s,this.map.isDefine&&!this.ignore&&(c[n]=s,req.onResourceLoad&&req.onResourceLoad(r,this.map,this.depMaps)),C(n),this.defined=!0}this.defining=!1,this.defined&&!this.defineEmitted&&(this.defineEmitted=!0,this.emit("defined",this.exports),this.defineEmitComplete=!0)}},callPlugin:function(){var e=this.map,t=e.id,n=E(e.prefix);this.depMaps.push(n),x(n,"defined",bind(this,function(n){var i,s,a,f=getOwn(p,this.map.id),l=this.map.name,c=this.map.parentMap?this.map.parentMap.name:null,h=r.makeRequire(e.parentMap,{enableBuildCallback:!0});if(this.map.unnormalized){n.normalize&&(l=n.normalize(l,function(e){return g(e,c,!0)})||""),s=E(e.prefix+"!"+l,this.map.parentMap),x(s,"defined",bind(this,function(e){this.init([],function(){return e},null,{enabled:!0,ignore:!0})})),a=getOwn(u,s.id),a&&(this.depMaps.push(s),this.events.error&&a.on("error",bind(this,function(e){this.emit("error",e)})),a.enable());return}if(f){this.map.url=r.nameToUrl(f),this.load();return}i=bind(this,function(e){this.init([],function(){return e},null,{enabled:!0})}),i.error=bind(this,function(e){this.inited=!0,this.error=e,e.requireModules=[t],eachProp(u,function(e){e.map.id.indexOf(t+"_unnormalized")===0&&C(e.map.id)}),T(e)}),i.fromText=bind(this,function(n,s){var u=e.name,a=E(u),f=useInteractive;s&&(n=s),f&&(useInteractive=!1),S(a),hasProp(o.config,t)&&(o.config[u]=o.config[t]);try{req.exec(n)}catch(l){return T(makeError("fromtexteval","fromText eval for "+t+" failed: "+l,l,[t]))}f&&(useInteractive=!0),this.depMaps.push(a),r.completeLoad(u),h([u],i)}),n.load(e.name,h,i,o)})),r.enable(n,this),this.pluginMaps[n.id]=n},enable:function(){a[this.map.id]=this,this.enabled=!0,this.enabling=!0,each(this.depMaps,bind(this,function(e,t){var n,s,o;if(typeof e=="string"){e=E(e,this.map.isDefine?this.map:this.map.parentMap,!1,!this.skipMap),this.depMaps[t]=e,o=getOwn(i,e.id);if(o){this.depExports[t]=o(this);return}this.depCount+=1,x(e,"defined",bind(this,function(e){this.defineDep(t,e),this.check()})),this.errback&&x(e,"error",bind(this,this.errback))}n=e.id,s=u[n],!hasProp(i,n)&&s&&!s.enabled&&r.enable(e,this)})),eachProp(this.pluginMaps,bind(this,function(e){var t=getOwn(u,e.id);t&&!t.enabled&&r.enable(e,this)})),this.enabling=!1,this.check()},on:function(e,t){var n=this.events[e];n||(n=this.events[e]=[]),n.push(t)},emit:function(e,t){each(this.events[e],function(e){e(t)}),e==="error"&&delete this.events[e]}},r={config:o,contextName:e,registry:u,defined:c,urlFetched:h,defQueue:l,Module:n,makeModuleMap:E,nextTick:req.nextTick,onError:T,configure:function(e){e.baseUrl&&e.baseUrl.charAt(e.baseUrl.length-1)!=="/"&&(e.baseUrl+="/");var t=o.shim,n={paths:!0,bundles:!0,config:!0,map:!0};eachProp(e,function(e,t){n[t]?(o[t]||(o[t]={}),mixin(o[t],e,!0,!0)):o[t]=e}),e.bundles&&eachProp(e.bundles,function(e,t){each(e,function(e){e!==t&&(p[e]=t)})}),e.shim&&(eachProp(e.shim,function(e,n){isArray(e)&&(e={deps:e}),(e.exports||e.init)&&!e.exportsFn&&(e.exportsFn=r.makeShimExports(e)),t[n]=e}),o.shim=t),e.packages&&each(e.packages,function(e){var t,n;e=typeof e=="string"?{name:e}:e,n=e.name,t=e.location,t&&(o.paths[n]=e.location),o.pkgs[n]=e.name+"/"+(e.main||"main").replace(currDirRegExp,"").replace(jsSuffixRegExp,"")}),eachProp(u,function(e,t){!e.inited&&!e.map.unnormalized&&(e.map=E(t))}),(e.deps||e.callback)&&r.require(e.deps||[],e.callback)},makeShimExports:function(e){function t(){var t;return e.init&&(t=e.init.apply(global,arguments)),t||e.exports&&getGlobal(e.exports)}return t},makeRequire:function(t,n){function s(o,a,f){var l,h,p;return n.enableBuildCallback&&a&&isFunction(a)&&(a.__requireJsBuild=!0),typeof o=="string"?isFunction(a)?T(makeError("requireargs","Invalid require call"),f):t&&hasProp(i,o)?i[o](u[t.id]):req.get?req.get(r,o,t,s):(h=E(o,t,!1,!0),l=h.id,hasProp(c,l)?c[l]:T(makeError("notloaded",'Module name "'+l+'" has not been loaded yet for context: '+e+(t?"":". Use require([])")))):(_(),r.nextTick(function(){_(),p=S(E(null,t)),p.skipMap=n.skipMap,p.init(o,a,f,{enabled:!0}),L()}),s)}return n=n||{},mixin(s,{isBrowser:isBrowser,toUrl:function(e){var n,i=e.lastIndexOf("."),s=e.split("/")[0],o=s==="."||s==="..";return i!==-1&&(!o||i>1)&&(n=e.substring(i,e.length),e=e.substring(0,i)),r.nameToUrl(g(e,t&&t.id,!0),n,!0)},defined:function(e){return hasProp(c,E(e,t,!1,!0).id)},specified:function(e){return e=E(e,t,!1,!0).id,hasProp(c,e)||hasProp(u,e)}}),t||(s.undef=function(e){N();var n=E(e,t,!0),r=getOwn(u,e);y(e),delete c[e],delete h[n.url],delete f[e],eachReverse(l,function(t,n){t[0]===e&&l.splice(n,1)}),r&&(r.events.defined&&(f[e]=r.events),C(e))}),s},enable:function(e){var t=getOwn(u,e.id);t&&S(e).enable()},completeLoad:function(e){var t,n,r,i=getOwn(o.shim,e)||{},s=i.exports;N();while(l.length){n=l.shift();if(n[0]===null){n[0]=e;if(t)break;t=!0}else n[0]===e&&(t=!0);A(n)}r=getOwn(u,e);if(!t&&!hasProp(c,e)&&r&&!r.inited){if(o.enforceDefine&&(!s||!getGlobal(s))){if(b(e))return;return T(makeError("nodefine","No define call for "+e,null,[e]))}A([e,i.deps||[],i.exportsFn])}L()},nameToUrl:function(e,t,n){var i,s,u,a,f,l,c,h=getOwn(o.pkgs,e);h&&(e=h),c=getOwn(p,e);if(c)return r.nameToUrl(c,t,n);if(req.jsExtRegExp.test(e))f=e+(t||"");else{i=o.paths,s=e.split("/");for(u=s.length;u>0;u-=1){a=s.slice(0,u).join("/"),l=getOwn(i,a);if(l){isArray(l)&&(l=l[0]),s.splice(0,u,l);break}}f=s.join("/"),f+=t||(/^data\:|\?/.test(f)||n?"":".js"),f=(f.charAt(0)==="/"||f.match(/^[\w\+\.\-]+:/)?"":o.baseUrl)+f}return o.urlArgs?f+((f.indexOf("?")===-1?"?":"&")+o.urlArgs):f},load:function(e,t){req.load(r,e,t)},execCb:function(e,t,n,r){return t.apply(r,n)},onScriptLoad:function(e){if(e.type==="load"||readyRegExp.test((e.currentTarget||e.srcElement).readyState)){interactiveScript=null;var t=M(e);r.completeLoad(t.id)}},onScriptError:function(e){var t=M(e);if(!b(t.id))return T(makeError("scripterror","Script error for: "+t.id,e,[t.id]))}},r.require=r.makeRequire(),r}function getInteractiveScript(){return interactiveScript&&interactiveScript.readyState==="interactive"?interactiveScript:(eachReverse(scripts(),function(e){if(e.readyState==="interactive")return interactiveScript=e}),interactiveScript)}var req,s,head,baseElement,dataMain,src,interactiveScript,currentlyAddingScript,mainScript,subPath,version="2.1.11",commentRegExp=/(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/mg,cjsRequireRegExp=/[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,jsSuffixRegExp=/\.js$/,currDirRegExp=/^\.\//,op=Object.prototype,ostring=op.toString,hasOwn=op.hasOwnProperty,ap=Array.prototype,apsp=ap.splice,isBrowser=typeof window!="undefined"&&typeof navigator!="undefined"&&!!window.document,isWebWorker=!isBrowser&&typeof importScripts!="undefined",readyRegExp=isBrowser&&navigator.platform==="PLAYSTATION 3"?/^complete$/:/^(complete|loaded)$/,defContextName="_",isOpera=typeof opera!="undefined"&&opera.toString()==="[object Opera]",contexts={},cfg={},globalDefQueue=[],useInteractive=!1;if(typeof define!="undefined")return;if(typeof requirejs!="undefined"){if(isFunction(requirejs))return;cfg=requirejs,requirejs=undefined}typeof require!="undefined"&&!isFunction(require)&&(cfg=require,require=undefined),req=requirejs=function(e,t,n,r){var i,s,o=defContextName;return!isArray(e)&&typeof e!="string"&&(s=e,isArray(t)?(e=t,t=n,n=r):e=[]),s&&s.context&&(o=s.context),i=getOwn(contexts,o),i||(i=contexts[o]=req.s.newContext(o)),s&&i.configure(s),i.require(e,t,n)},req.config=function(e){return req(e)},req.nextTick=typeof setTimeout!="undefined"?function(e){setTimeout(e,4)}:function(e){e()},require||(require=req),req.version=version,req.jsExtRegExp=/^\/|:|\?|\.js$/,req.isBrowser=isBrowser,s=req.s={contexts:contexts,newContext:newContext},req({}),each(["toUrl","undef","defined","specified"],function(e){req[e]=function(){var t=contexts[defContextName];return t.require[e].apply(t,arguments)}}),isBrowser&&(head=s.head=document.getElementsByTagName("head")[0],baseElement=document.getElementsByTagName("base")[0],baseElement&&(head=s.head=baseElement.parentNode)),req.onError=defaultOnError,req.createNode=function(e,t,n){var r=e.xhtml?document.createElementNS("http://www.w3.org/1999/xhtml","html:script"):document.createElement("script");return r.type=e.scriptType||"text/javascript",r.charset="utf-8",r.async=!0,r},req.load=function(e,t,n){var r=e&&e.config||{},i;if(isBrowser)return i=req.createNode(r,t,n),i.setAttribute("data-requirecontext",e.contextName),i.setAttribute("data-requiremodule",t),i.attachEvent&&!(i.attachEvent.toString&&i.attachEvent.toString().indexOf("[native code")<0)&&!isOpera?(useInteractive=!0,i.attachEvent("onreadystatechange",e.onScriptLoad)):(i.addEventListener("load",e.onScriptLoad,!1),i.addEventListener("error",e.onScriptError,!1)),i.src=n,currentlyAddingScript=i,baseElement?head.insertBefore(i,baseElement):head.appendChild(i),currentlyAddingScript=null,i;if(isWebWorker)try{importScripts(n),e.completeLoad(t)}catch(s){e.onError(makeError("importscripts","importScripts failed for "+t+" at "+n,s,[t]))}},isBrowser&&!cfg.skipDataMain&&eachReverse(scripts(),function(e){head||(head=e.parentNode),dataMain=e.getAttribute("data-main");if(dataMain)return mainScript=dataMain,cfg.baseUrl||(src=mainScript.split("/"),mainScript=src.pop(),subPath=src.length?src.join("/")+"/":"./",cfg.baseUrl=subPath),mainScript=mainScript.replace(jsSuffixRegExp,""),req.jsExtRegExp.test(mainScript)&&(mainScript=dataMain),cfg.deps=cfg.deps?cfg.deps.concat(mainScript):[mainScript],!0}),define=function(e,t,n){var r,i;typeof e!="string"&&(n=t,t=e,e=null),isArray(t)||(n=t,t=null),!t&&isFunction(n)&&(t=[],n.length&&(n.toString().replace(commentRegExp,"").replace(cjsRequireRegExp,function(e,n){t.push(n)}),t=(n.length===1?["require"]:["require","exports","module"]).concat(t))),useInteractive&&(r=currentlyAddingScript||getInteractiveScript(),r&&(e||(e=r.getAttribute("data-requiremodule")),i=contexts[r.getAttribute("data-requirecontext")])),(i?i.defQueue:globalDefQueue).push([e,t,n])},define.amd={jQuery:!0},req.exec=function(text){return eval(text)},req(cfg)})(this),define("requireLib",function(){}),function(e,t){typeof module=="object"&&typeof module.exports=="object"?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}(typeof window!="undefined"?window:this,function(window,noGlobal){function isArraylike(e){var t=e.length,n=jQuery.type(e);return n==="function"||jQuery.isWindow(e)?!1:e.nodeType===1&&t?!0:n==="array"||t===0||typeof t=="number"&&t>0&&t-1 in e}function winnow(e,t,n){if(jQuery.isFunction(t))return jQuery.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return jQuery.grep(e,function(e){return e===t!==n});if(typeof t=="string"){if(risSimple.test(t))return jQuery.filter(t,e,n);t=jQuery.filter(t,e)}return jQuery.grep(e,function(e){return indexOf.call(t,e)>=0!==n})}function sibling(e,t){while((e=e[t])&&e.nodeType!==1);return e}function createOptions(e){var t=optionsCache[e]={};return jQuery.each(e.match(rnotwhite)||[],function(e,n){t[n]=!0}),t}function completed(){document.removeEventListener("DOMContentLoaded",completed,!1),window.removeEventListener("load",completed,!1),jQuery.ready()}function Data(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=jQuery.expando+Math.random()}function dataAttr(e,t,n){var r;if(n===undefined&&e.nodeType===1){r="data-"+t.replace(rmultiDash,"-$1").toLowerCase(),n=e.getAttribute(r);if(typeof n=="string"){try{n=n==="true"?!0:n==="false"?!1:n==="null"?null:+n+""===n?+n:rbrace.test(n)?jQuery.parseJSON(n):n}catch(i){}data_user.set(e,t,n)}else n=undefined}return n}function returnTrue(){return!0}function returnFalse(){return!1}function safeActiveElement(){try{return document.activeElement}catch(e){}}function manipulationTarget(e,t){return jQuery.nodeName(e,"table")&&jQuery.nodeName(t.nodeType!==11?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function disableScript(e){return e.type=(e.getAttribute("type")!==null)+"/"+e.type,e}function restoreScript(e){var t=rscriptTypeMasked.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function setGlobalEval(e,t){var n=0,r=e.length;for(;n")).appendTo(t.documentElement),t=iframe[0].contentDocument,t.write(),t.close(),n=actualDisplay(e,t),iframe.detach();elemdisplay[e]=n}return n}function curCSS(e,t,n){var r,i,s,o,u=e.style;return n=n||getStyles(e),n&&(o=n.getPropertyValue(t)||n[t]),n&&(o===""&&!jQuery.contains(e.ownerDocument,e)&&(o=jQuery.style(e,t)),rnumnonpx.test(o)&&rmargin.test(t)&&(r=u.width,i=u.minWidth,s=u.maxWidth,u.minWidth=u.maxWidth=u.width=o,o=n.width,u.width=r,u.minWidth=i,u.maxWidth=s)),o!==undefined?o+"":o}function addGetHookIf(e,t){return{get:function(){if(e()){delete this.get;return}return(this.get=t).apply(this,arguments)}}}function vendorPropName(e,t){if(t in e)return t;var n=t[0].toUpperCase()+t.slice(1),r=t,i=cssPrefixes.length;while(i--){t=cssPrefixes[i]+n;if(t in e)return t}return r}function setPositiveNumber(e,t,n){var r=rnumsplit.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function augmentWidthOrHeight(e,t,n,r,i){var s=n===(r?"border":"content")?4:t==="width"?1:0,o=0;for(;s<4;s+=2)n==="margin"&&(o+=jQuery.css(e,n+cssExpand[s],!0,i)),r?(n==="content"&&(o-=jQuery.css(e,"padding"+cssExpand[s],!0,i)),n!=="margin"&&(o-=jQuery.css(e,"border"+cssExpand[s]+"Width",!0,i))):(o+=jQuery.css(e,"padding"+cssExpand[s],!0,i),n!=="padding"&&(o+=jQuery.css(e,"border"+cssExpand[s]+"Width",!0,i)));return o}function getWidthOrHeight(e,t,n){var r=!0,i=t==="width"?e.offsetWidth:e.offsetHeight,s=getStyles(e),o=jQuery.css(e,"boxSizing",!1,s)==="border-box";if(i<=0||i==null){i=curCSS(e,t,s);if(i<0||i==null)i=e.style[t];if(rnumnonpx.test(i))return i;r=o&&(support.boxSizingReliable()||i===e.style[t]),i=parseFloat(i)||0}return i+augmentWidthOrHeight(e,t,n||(o?"border":"content"),r,s)+"px"}function showHide(e,t){var n,r,i,s=[],o=0,u=e.length;for(;o=0&&n=0},isPlainObject:function(e){return jQuery.type(e)!=="object"||e.nodeType||jQuery.isWindow(e)?!1:e.constructor&&!hasOwn.call(e.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},type:function(e){return e==null?e+"":typeof e=="object"||typeof e=="function"?class2type[toString.call(e)]||"object":typeof e},globalEval:function(code){var script,indirect=eval;code=jQuery.trim(code),code&&(code.indexOf("use strict")===1?(script=document.createElement("script"),script.text=code,document.head.appendChild(script).parentNode.removeChild(script)):indirect(code))},camelCase:function(e){return e.replace(rmsPrefix,"ms-").replace(rdashAlpha,fcamelCase)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,s=e.length,o=isArraylike(e);if(n)if(o)for(;ir.cacheLength&&delete t[e.shift()],t[n+" "]=i}var e=[];return t}function ut(e){return e[w]=!0,e}function at(e){var t=p.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function ft(e,t){var n=e.split("|"),i=e.length;while(i--)r.attrHandle[n[i]]=t}function lt(e,t){var n=t&&e,r=n&&e.nodeType===1&&t.nodeType===1&&(~t.sourceIndex||A)-(~e.sourceIndex||A);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function ct(e){return function(t){var n=t.nodeName.toLowerCase();return n==="input"&&t.type===e}}function ht(e){return function(t){var n=t.nodeName.toLowerCase();return(n==="input"||n==="button")&&t.type===e}}function pt(e){return ut(function(t){return t=+t,ut(function(n,r){var i,s=e([],n.length,t),o=s.length;while(o--)n[i=s[o]]&&(n[i]=!(r[i]=n[i]))})})}function dt(e){return e&&typeof e.getElementsByTagName!==L&&e}function vt(){}function mt(e){var t=0,n=e.length,r="";for(;t1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function bt(e,t,n){var r=0,i=t.length;for(;r-1&&(s[f]=!(o[f]=c))}}else g=wt(g===o?g.splice(d,g.length):g),i?i(null,o,g,a):P.apply(o,g)})}function St(e){var t,n,i,s=e.length,o=r.relative[e[0].type],u=o||r.relative[" "],a=o?1:0,l=gt(function(e){return e===t},u,!0),c=gt(function(e){return B.call(t,e)>-1},u,!0),h=[function(e,n,r){return!o&&(r||n!==f)||((t=n).nodeType?l(e,n,r):c(e,n,r))}];for(;a1&&yt(h),a>1&&mt(e.slice(0,a-1).concat({value:e[a-2].type===" "?"*":""})).replace(z,"$1"),n,a0,i=e.length>0,s=function(s,o,u,a,l){var c,h,d,v=0,m="0",g=s&&[],y=[],b=f,w=s||i&&r.find.TAG("*",l),E=S+=b==null?1:Math.random()||.1,x=w.length;l&&(f=o!==p&&o);for(;m!==x&&(c=w[m])!=null;m++){if(i&&c){h=0;while(d=e[h++])if(d(c,o,u)){a.push(c);break}l&&(S=E)}n&&((c=!d&&c)&&v--,s&&g.push(c))}v+=m;if(n&&m!==v){h=0;while(d=t[h++])d(g,y,o,u);if(s){if(v>0)while(m--)!g[m]&&!y[m]&&(y[m]=_.call(a));y=wt(y)}P.apply(a,y),l&&!s&&y.length>0&&v+t.length>1&&st.uniqueSort(a)}return l&&(S=E,f=b),g};return n?ut(s):s}var t,n,r,i,s,o,u,a,f,l,c,h,p,d,v,m,g,y,b,w="sizzle"+ -(new Date),E=e.document,S=0,x=0,T=ot(),N=ot(),C=ot(),k=function(e,t){return e===t&&(c=!0),0},L=typeof undefined,A=1<<31,O={}.hasOwnProperty,M=[],_=M.pop,D=M.push,P=M.push,H=M.slice,B=M.indexOf||function(e){var t=0,n=this.length;for(;t+~]|"+F+")"+F+"*"),V=new RegExp("="+F+"*([^\\]'\"]*?)"+F+"*\\]","g"),$=new RegExp(U),J=new RegExp("^"+q+"$"),K={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I.replace("w","w*")+")"),ATTR:new RegExp("^"+R),PSEUDO:new RegExp("^"+U),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+F+"*(even|odd|(([+-]|)(\\d*)n|)"+F+"*(?:([+-]|)"+F+"*(\\d+)|))"+F+"*\\)|)","i"),bool:new RegExp("^(?:"+j+")$","i"),needsContext:new RegExp("^"+F+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+F+"*((?:-\\d)?\\d*)"+F+"*\\)|)(?=[^-]|$)","i")},Q=/^(?:input|select|textarea|button)$/i,G=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,et=/[+~]/,tt=/'|\\/g,nt=new RegExp("\\\\([\\da-f]{1,6}"+F+"?|("+F+")|.)","ig"),rt=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,r&1023|56320)};try{P.apply(M=H.call(E.childNodes),E.childNodes),M[E.childNodes.length].nodeType}catch(it){P={apply:M.length?function(e,t){D.apply(e,H.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}n=st.support={},s=st.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?t.nodeName!=="HTML":!1},h=st.setDocument=function(e){var t,i=e?e.ownerDocument||e:E,o=i.defaultView;if(i===p||i.nodeType!==9||!i.documentElement)return p;p=i,d=i.documentElement,v=!s(i),o&&o!==o.top&&(o.addEventListener?o.addEventListener("unload",function(){h()},!1):o.attachEvent&&o.attachEvent("onunload",function(){h()})),n.attributes=at(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=at(function(e){return e.appendChild(i.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=Y.test(i.getElementsByClassName)&&at(function(e){return e.innerHTML="
",e.firstChild.className="i",e.getElementsByClassName("i").length===2}),n.getById=at(function(e){return d.appendChild(e).id=w,!i.getElementsByName||!i.getElementsByName(w).length}),n.getById?(r.find.ID=function(e,t){if(typeof t.getElementById!==L&&v){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},r.filter.ID=function(e){var t=e.replace(nt,rt);return function(e){return e.getAttribute("id")===t}}):(delete r.find.ID,r.filter.ID=function(e){var t=e.replace(nt,rt);return function(e){var n=typeof e.getAttributeNode!==L&&e.getAttributeNode("id");return n&&n.value===t}}),r.find.TAG=n.getElementsByTagName?function(e,t){if(typeof t.getElementsByTagName!==L)return t.getElementsByTagName(e)}:function(e,t){var n,r=[],i=0,s=t.getElementsByTagName(e);if(e==="*"){while(n=s[i++])n.nodeType===1&&r.push(n);return r}return s},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(typeof t.getElementsByClassName!==L&&v)return t.getElementsByClassName(e)},g=[],m=[];if(n.qsa=Y.test(i.querySelectorAll))at(function(e){e.innerHTML="",e.querySelectorAll("[msallowclip^='']").length&&m.push("[*^$]="+F+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||m.push("\\["+F+"*(?:value|"+j+")"),e.querySelectorAll(":checked").length||m.push(":checked")}),at(function(e){var t=i.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&m.push("name"+F+"*[*^$|!~]?="),e.querySelectorAll(":enabled").length||m.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),m.push(",.*:")});return(n.matchesSelector=Y.test(y=d.matches||d.webkitMatchesSelector||d.mozMatchesSelector||d.oMatchesSelector||d.msMatchesSelector))&&at(function(e){n.disconnectedMatch=y.call(e,"div"),y.call(e,"[s!='']:x"),g.push("!=",U)}),m=m.length&&new RegExp(m.join("|")),g=g.length&&new RegExp(g.join("|")),t=Y.test(d.compareDocumentPosition),b=t||Y.test(d.contains)?function(e,t){var n=e.nodeType===9?e.documentElement:e,r=t&&t.parentNode;return e===r||!!r&&r.nodeType===1&&!!(n.contains?n.contains(r):e.compareDocumentPosition&&e.compareDocumentPosition(r)&16)}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},k=t?function(e,t){if(e===t)return c=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r?r:(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1,r&1||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===i||e.ownerDocument===E&&b(E,e)?-1:t===i||t.ownerDocument===E&&b(E,t)?1:l?B.call(l,e)-B.call(l,t):0:r&4?-1:1)}:function(e,t){if(e===t)return c=!0,0;var n,r=0,s=e.parentNode,o=t.parentNode,u=[e],a=[t];if(!s||!o)return e===i?-1:t===i?1:s?-1:o?1:l?B.call(l,e)-B.call(l,t):0;if(s===o)return lt(e,t);n=e;while(n=n.parentNode)u.unshift(n);n=t;while(n=n.parentNode)a.unshift(n);while(u[r]===a[r])r++;return r?lt(u[r],a[r]):u[r]===E?-1:a[r]===E?1:0},i},st.matches=function(e,t){return st(e,null,null,t)},st.matchesSelector=function(e,t){(e.ownerDocument||e)!==p&&h(e),t=t.replace(V,"='$1']");if(n.matchesSelector&&v&&(!g||!g.test(t))&&(!m||!m.test(t)))try{var r=y.call(e,t);if(r||n.disconnectedMatch||e.document&&e.document.nodeType!==11)return r}catch(i){}return st(t,p,null,[e]).length>0},st.contains=function(e,t){return(e.ownerDocument||e)!==p&&h(e),b(e,t)},st.attr=function(e,t){(e.ownerDocument||e)!==p&&h(e);var i=r.attrHandle[t.toLowerCase()],s=i&&O.call(r.attrHandle,t.toLowerCase())?i(e,t,!v):undefined;return s!==undefined?s:n.attributes||!v?e.getAttribute(t):(s=e.getAttributeNode(t))&&s.specified?s.value:null},st.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},st.uniqueSort=function(e){var t,r=[],i=0,s=0;c=!n.detectDuplicates,l=!n.sortStable&&e.slice(0),e.sort(k);if(c){while(t=e[s++])t===e[s]&&(i=r.push(s));while(i--)e.splice(r[i],1)}return l=null,e},i=st.getText=function(e){var t,n="",r=0,s=e.nodeType;if(!s)while(t=e[r++])n+=i(t);else if(s===1||s===9||s===11){if(typeof e.textContent=="string")return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(s===3||s===4)return e.nodeValue;return n},r=st.selectors={cacheLength:50,createPseudo:ut,match:K,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(nt,rt),e[3]=(e[3]||e[4]||e[5]||"").replace(nt,rt),e[2]==="~="&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),e[1].slice(0,3)==="nth"?(e[3]||st.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*(e[3]==="even"||e[3]==="odd")),e[5]=+(e[7]+e[8]||e[3]==="odd")):e[3]&&st.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return K.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&$.test(n)&&(t=o(n,!0))&&(t=n.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 t=e.replace(nt,rt).toLowerCase();return e==="*"?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=T[e+" "];return t||(t=new RegExp("(^|"+F+")"+e+"("+F+"|$)"))&&T(e,function(e){return t.test(typeof e.className=="string"&&e.className||typeof e.getAttribute!==L&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=st.attr(r,e);return i==null?t==="!=":t?(i+="",t==="="?i===n:t==="!="?i!==n:t==="^="?n&&i.indexOf(n)===0:t==="*="?n&&i.indexOf(n)>-1:t==="$="?n&&i.slice(-n.length)===n:t==="~="?(" "+i+" ").indexOf(n)>-1:t==="|="?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var s=e.slice(0,3)!=="nth",o=e.slice(-4)!=="last",u=t==="of-type";return r===1&&i===0?function(e){return!!e.parentNode}:function(t,n,a){var f,l,c,h,p,d,v=s!==o?"nextSibling":"previousSibling",m=t.parentNode,g=u&&t.nodeName.toLowerCase(),y=!a&&!u;if(m){if(s){while(v){c=t;while(c=c[v])if(u?c.nodeName.toLowerCase()===g:c.nodeType===1)return!1;d=v=e==="only"&&!d&&"nextSibling"}return!0}d=[o?m.firstChild:m.lastChild];if(o&&y){l=m[w]||(m[w]={}),f=l[e]||[],p=f[0]===S&&f[1],h=f[0]===S&&f[2],c=p&&m.childNodes[p];while(c=++p&&c&&c[v]||(h=p=0)||d.pop())if(c.nodeType===1&&++h&&c===t){l[e]=[S,p,h];break}}else if(y&&(f=(t[w]||(t[w]={}))[e])&&f[0]===S)h=f[1];else while(c=++p&&c&&c[v]||(h=p=0)||d.pop())if((u?c.nodeName.toLowerCase()===g:c.nodeType===1)&&++h){y&&((c[w]||(c[w]={}))[e]=[S,h]);if(c===t)break}return h-=i,h===r||h%r===0&&h/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||st.error("unsupported pseudo: "+e);return i[w]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?ut(function(e,n){var r,s=i(e,t),o=s.length;while(o--)r=B.call(e,s[o]),e[r]=!(n[r]=s[o])}):function(e){return i(e,0,n)}):i}},pseudos:{not:ut(function(e){var t=[],n=[],r=u(e.replace(z,"$1"));return r[w]?ut(function(e,t,n,i){var s,o=r(e,null,i,[]),u=e.length;while(u--)if(s=o[u])e[u]=!(t[u]=s)}):function(e,i,s){return t[0]=e,r(t,null,s,n),!n.pop()}}),has:ut(function(e){return function(t){return st(e,t).length>0}}),contains:ut(function(e){return function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:ut(function(e){return J.test(e||"")||st.error("unsupported lang: "+e),e=e.replace(nt,rt).toLowerCase(),function(t){var n;do if(n=v?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||n.indexOf(e+"-")===0;while((t=t.parentNode)&&t.nodeType===1);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===d},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return t==="input"&&!!e.checked||t==="option"&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return G.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return t==="input"&&e.type==="button"||t==="button"},text:function(e){var t;return e.nodeName.toLowerCase()==="input"&&e.type==="text"&&((t=e.getAttribute("type"))==null||t.toLowerCase()==="text")},first:pt(function(){return[0]}),last:pt(function(e,t){return[t-1]}),eq:pt(function(e,t,n){return[n<0?n+t:n]}),even:pt(function(e,t){var n=0;for(;n=0;)e.push(r);return e}),gt:pt(function(e,t,n){var r=n<0?n+t:n;for(;++r2&&(l=f[0]).type==="ID"&&n.getById&&t.nodeType===9&&v&&r.relative[f[1].type]){t=(r.find.ID(l.matches[0].replace(nt,rt),t)||[])[0];if(!t)return i;p&&(t=t.parentNode),e=e.slice(f.shift().value.length)}a=K.needsContext.test(e)?0:f.length;while(a--){l=f[a];if(r.relative[c=l.type])break;if(h=r.find[c])if(s=h(l.matches[0].replace(nt,rt),et.test(f[0].type)&&dt(t.parentNode)||t)){f.splice(a,1),e=s.length&&mt(f);if(!e)return P.apply(i,s),i;break}}}return(p||u(e,d))(s,t,!v,i,et.test(e)&&dt(t.parentNode)||t),i},n.sortStable=w.split("").sort(k).join("")===w,n.detectDuplicates=!!c,h(),n.sortDetached=at(function(e){return e.compareDocumentPosition(p.createElement("div"))&1}),at(function(e){return e.innerHTML="",e.firstChild.getAttribute("href")==="#"})||ft("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,t.toLowerCase()==="type"?1:2)}),(!n.attributes||!at(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),e.firstChild.getAttribute("value")===""}))&&ft("value",function(e,t,n){if(!n&&e.nodeName.toLowerCase()==="input")return e.defaultValue}),at(function(e){return e.getAttribute("disabled")==null})||ft(j,function(e,t,n){var r;if(!n)return e[t]===!0?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),st}(window);jQuery.find=Sizzle,jQuery.expr=Sizzle.selectors,jQuery.expr[":"]=jQuery.expr.pseudos,jQuery.unique=Sizzle.uniqueSort,jQuery.text=Sizzle.getText,jQuery.isXMLDoc=Sizzle.isXML,jQuery.contains=Sizzle.contains;var rneedsContext=jQuery.expr.match.needsContext,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,risSimple=/^.[^:#\[\.,]*$/;jQuery.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),t.length===1&&r.nodeType===1?jQuery.find.matchesSelector(r,e)?[r]:[]:jQuery.find.matches(e,jQuery.grep(t,function(e){return e.nodeType===1}))},jQuery.fn.extend({find:function(e){var t,n=this.length,r=[],i=this;if(typeof e!="string")return this.pushStack(jQuery(e).filter(function(){for(t=0;t1?jQuery.unique(r):r),r.selector=this.selector?this.selector+" "+e:e,r},filter:function(e){return this.pushStack(winnow(this,e||[],!1))},not:function(e){return this.pushStack(winnow(this,e||[],!0))},is:function(e){return!!winnow(this,typeof e=="string"&&rneedsContext.test(e)?jQuery(e):e||[],!1).length}});var rootjQuery,rquickExpr=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,init=jQuery.fn.init=function(e,t){var n,r;if(!e)return this;if(typeof e=="string"){e[0]==="<"&&e[e.length-1]===">"&&e.length>=3?n=[null,e,null]:n=rquickExpr.exec(e);if(n&&(n[1]||!t)){if(n[1]){t=t instanceof jQuery?t[0]:t,jQuery.merge(this,jQuery.parseHTML(n[1],t&&t.nodeType?t.ownerDocument||t:document,!0));if(rsingleTag.test(n[1])&&jQuery.isPlainObject(t))for(n in t)jQuery.isFunction(this[n])?this[n](t[n]):this.attr(n,t[n]);return this}return r=document.getElementById(n[2]),r&&r.parentNode&&(this.length=1,this[0]=r),this.context=document,this.selector=e,this}return!t||t.jquery?(t||rootjQuery).find(e):this.constructor(t).find(e)}return e.nodeType?(this.context=this[0]=e,this.length=1,this):jQuery.isFunction(e)?typeof rootjQuery.ready!="undefined"?rootjQuery.ready(e):e(jQuery):(e.selector!==undefined&&(this.selector=e.selector,this.context=e.context),jQuery.makeArray(e,this))};init.prototype=jQuery.fn,rootjQuery=jQuery(document);var rparentsprev=/^(?:parents|prev(?:Until|All))/,guaranteedUnique={children:!0,contents:!0,next:!0,prev:!0};jQuery.extend({dir:function(e,t,n){var r=[],i=n!==undefined;while((e=e[t])&&e.nodeType!==9)if(e.nodeType===1){if(i&&jQuery(e).is(n))break;r.push(e)}return r},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)e.nodeType===1&&e!==t&&n.push(e);return n}}),jQuery.fn.extend({has:function(e){var t=jQuery(e,this),n=t.length;return this.filter(function(){var e=0;for(;e-1:n.nodeType===1&&jQuery.find.matchesSelector(n,e))){s.push(n);break}return this.pushStack(s.length>1?jQuery.unique(s):s)},index:function(e){return e?typeof e=="string"?indexOf.call(jQuery(e),this[0]):indexOf.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),jQuery(e,t))))},addBack:function(e){return this.add(e==null?this.prevObject:this.prevObject.filter(e))}}),jQuery.each({parent:function(e){var t=e.parentNode;return t&&t.nodeType!==11?t:null},parents:function(e){return jQuery.dir(e,"parentNode")},parentsUntil:function(e,t,n){return jQuery.dir(e,"parentNode",n)},next:function(e){return sibling(e,"nextSibling")},prev:function(e){return sibling(e,"previousSibling")},nextAll:function(e){return jQuery.dir(e,"nextSibling")},prevAll:function(e){return jQuery.dir(e,"previousSibling")},nextUntil:function(e,t,n){return jQuery.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return jQuery.dir(e,"previousSibling",n)},siblings:function(e){return jQuery.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return jQuery.sibling(e.firstChild)},contents:function(e){return e.contentDocument||jQuery.merge([],e.childNodes)}},function(e,t){jQuery.fn[e]=function(n,r){var i=jQuery.map(this,t,n);return e.slice(-5)!=="Until"&&(r=n),r&&typeof r=="string"&&(i=jQuery.filter(r,i)),this.length>1&&(guaranteedUnique[e]||jQuery.unique(i),rparentsprev.test(e)&&i.reverse()),this.pushStack(i)}});var rnotwhite=/\S+/g,optionsCache={};jQuery.Callbacks=function(e){e=typeof e=="string"?optionsCache[e]||createOptions(e):jQuery.extend({},e);var t,n,r,i,s,o,u=[],a=!e.once&&[],f=function(c){t=e.memory&&c,n=!0,o=i||0,i=0,s=u.length,r=!0;for(;u&&o-1)u.splice(n,1),r&&(n<=s&&s--,n<=o&&o--)}),this},has:function(e){return e?jQuery.inArray(e,u)>-1:!!u&&!!u.length},empty:function(){return u=[],s=0,this},disable:function(){return u=a=t=undefined,this},disabled:function(){return!u},lock:function(){return a=undefined,t||l.disable(),this},locked:function(){return!a},fireWith:function(e,t){return u&&(!n||a)&&(t=t||[],t=[e,t.slice?t.slice():t],r?a.push(t):f(t)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!n}};return l},jQuery.extend({Deferred:function(e){var t=[["resolve","done",jQuery.Callbacks("once memory"),"resolved"],["reject","fail",jQuery.Callbacks("once memory"),"rejected"],["notify","progress",jQuery.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return jQuery.Deferred(function(n){jQuery.each(t,function(t,s){var o=jQuery.isFunction(e[t])&&e[t];i[s[1]](function(){var e=o&&o.apply(this,arguments);e&&jQuery.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[s[0]+"With"](this===r?n.promise():this,o?[e]:arguments)})}),e=null}).promise()},promise:function(e){return e!=null?jQuery.extend(e,r):r}},i={};return r.pipe=r.then,jQuery.each(t,function(e,s){var o=s[2],u=s[3];r[s[1]]=o.add,u&&o.add(function(){n=u},t[e^1][2].disable,t[2][2].lock),i[s[0]]=function(){return i[s[0]+"With"](this===i?r:this,arguments),this},i[s[0]+"With"]=o.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=slice.call(arguments),r=n.length,i=r!==1||e&&jQuery.isFunction(e.promise)?r:0,s=i===1?e:jQuery.Deferred(),o=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?slice.call(arguments):r,n===u?s.notifyWith(t,n):--i||s.resolveWith(t,n)}},u,a,f;if(r>1){u=new Array(r),a=new Array(r),f=new Array(r);for(;t0)return;readyList.resolveWith(document,[jQuery]),jQuery.fn.triggerHandler&&(jQuery(document).triggerHandler("ready"),jQuery(document).off("ready"))}}),jQuery.ready.promise=function(e){return readyList||(readyList=jQuery.Deferred(),document.readyState==="complete"?setTimeout(jQuery.ready):(document.addEventListener("DOMContentLoaded",completed,!1),window.addEventListener("load",completed,!1))),readyList.promise(e)},jQuery.ready.promise();var access=jQuery.access=function(e,t,n,r,i,s,o){var u=0,a=e.length,f=n==null;if(jQuery.type(n)==="object"){i=!0;for(u in n)jQuery.access(e,t,u,n[u],!0,s,o)}else if(r!==undefined){i=!0,jQuery.isFunction(r)||(o=!0),f&&(o?(t.call(e,r),t=null):(f=t,t=function(e,t,n){return f.call(jQuery(e),n)}));if(t)for(;u1,null,!0)},removeData:function(e){return this.each(function(){data_user.remove(this,e)})}}),jQuery.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=data_priv.get(e,t),n&&(!r||jQuery.isArray(n)?r=data_priv.access(e,t,jQuery.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=jQuery.queue(e,t),r=n.length,i=n.shift(),s=jQuery._queueHooks(e,t),o=function(){jQuery.dequeue(e,t)};i==="inprogress"&&(i=n.shift(),r--),i&&(t==="fx"&&n.unshift("inprogress"),delete s.stop,i.call(e,o,s)),!r&&s&&s.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return data_priv.get(e,n)||data_priv.access(e,n,{empty:jQuery.Callbacks("once memory").add(function(){data_priv.remove(e,[t+"queue",n])})})}}),jQuery.fn.extend({queue:function(e,t){var n=2;return typeof e!="string"&&(t=e,e="fx",n--),arguments.lengthx",support.noCloneChecked=!!t.cloneNode(!0).lastChild.defaultValue})();var strundefined=typeof undefined;support.focusinBubbles="onfocusin"in window;var rkeyEvent=/^key/,rmouseEvent=/^(?:mouse|pointer|contextmenu)|click/,rfocusMorph=/^(?:focusinfocus|focusoutblur)$/,rtypenamespace=/^([^.]*)(?:\.(.+)|)$/;jQuery.event={global:{},add:function(e,t,n,r,i){var s,o,u,a,f,l,c,h,p,d,v,m=data_priv.get(e);if(!m)return;n.handler&&(s=n,n=s.handler,i=s.selector),n.guid||(n.guid=jQuery.guid++),(a=m.events)||(a=m.events={}),(o=m.handle)||(o=m.handle=function(t){return typeof jQuery!==strundefined&&jQuery.event.triggered!==t.type?jQuery.event.dispatch.apply(e,arguments):undefined}),t=(t||"").match(rnotwhite)||[""],f=t.length;while(f--){u=rtypenamespace.exec(t[f])||[],p=v=u[1],d=(u[2]||"").split(".").sort();if(!p)continue;c=jQuery.event.special[p]||{},p=(i?c.delegateType:c.bindType)||p,c=jQuery.event.special[p]||{},l=jQuery.extend({type:p,origType:v,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&jQuery.expr.match.needsContext.test(i),namespace:d.join(".")},s),(h=a[p])||(h=a[p]=[],h.delegateCount=0,(!c.setup||c.setup.call(e,r,d,o)===!1)&&e.addEventListener&&e.addEventListener(p,o,!1)),c.add&&(c.add.call(e,l),l.handler.guid||(l.handler.guid=n.guid)),i?h.splice(h.delegateCount++,0,l):h.push(l),jQuery.event.global[p]=!0}},remove:function(e,t,n,r,i){var s,o,u,a,f,l,c,h,p,d,v,m=data_priv.hasData(e)&&data_priv.get(e);if(!m||!(a=m.events))return;t=(t||"").match(rnotwhite)||[""],f=t.length;while(f--){u=rtypenamespace.exec(t[f])||[],p=v=u[1],d=(u[2]||"").split(".").sort();if(!p){for(p in a)jQuery.event.remove(e,p+t[f],n,r,!0);continue}c=jQuery.event.special[p]||{},p=(r?c.delegateType:c.bindType)||p,h=a[p]||[],u=u[2]&&new RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"),o=s=h.length;while(s--)l=h[s],(i||v===l.origType)&&(!n||n.guid===l.guid)&&(!u||u.test(l.namespace))&&(!r||r===l.selector||r==="**"&&l.selector)&&(h.splice(s,1),l.selector&&h.delegateCount--,c.remove&&c.remove.call(e,l));o&&!h.length&&((!c.teardown||c.teardown.call(e,d,m.handle)===!1)&&jQuery.removeEvent(e,p,m.handle),delete a[p])}jQuery.isEmptyObject(a)&&(delete m.handle,data_priv.remove(e,"events"))},trigger:function(e,t,n,r){var i,s,o,u,a,f,l,c=[n||document],h=hasOwn.call(e,"type")?e.type:e,p=hasOwn.call(e,"namespace")?e.namespace.split("."):[];s=o=n=n||document;if(n.nodeType===3||n.nodeType===8)return;if(rfocusMorph.test(h+jQuery.event.triggered))return;h.indexOf(".")>=0&&(p=h.split("."),h=p.shift(),p.sort()),a=h.indexOf(":")<0&&"on"+h,e=e[jQuery.expando]?e:new jQuery.Event(h,typeof e=="object"&&e),e.isTrigger=r?2:3,e.namespace=p.join("."),e.namespace_re=e.namespace?new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=undefined,e.target||(e.target=n),t=t==null?[e]:jQuery.makeArray(t,[e]),l=jQuery.event.special[h]||{};if(!r&&l.trigger&&l.trigger.apply(n,t)===!1)return;if(!r&&!l.noBubble&&!jQuery.isWindow(n)){u=l.delegateType||h,rfocusMorph.test(u+h)||(s=s.parentNode);for(;s;s=s.parentNode)c.push(s),o=s;o===(n.ownerDocument||document)&&c.push(o.defaultView||o.parentWindow||window)}i=0;while((s=c[i++])&&!e.isPropagationStopped())e.type=i>1?u:l.bindType||h,f=(data_priv.get(s,"events")||{})[e.type]&&data_priv.get(s,"handle"),f&&f.apply(s,t),f=a&&s[a],f&&f.apply&&jQuery.acceptData(s)&&(e.result=f.apply(s,t),e.result===!1&&e.preventDefault());return e.type=h,!r&&!e.isDefaultPrevented()&&(!l._default||l._default.apply(c.pop(),t)===!1)&&jQuery.acceptData(n)&&a&&jQuery.isFunction(n[h])&&!jQuery.isWindow(n)&&(o=n[a],o&&(n[a]=null),jQuery.event.triggered=h,n[h](),jQuery.event.triggered=undefined,o&&(n[a]=o)),e.result},dispatch:function(e){e=jQuery.event.fix(e);var t,n,r,i,s,o=[],u=slice.call(arguments),a=(data_priv.get(this,"events")||{})[e.type]||[],f=jQuery.event.special[e.type]||{};u[0]=e,e.delegateTarget=this;if(f.preDispatch&&f.preDispatch.call(this,e)===!1)return;o=jQuery.event.handlers.call(this,e,a),t=0;while((i=o[t++])&&!e.isPropagationStopped()){e.currentTarget=i.elem,n=0;while((s=i.handlers[n++])&&!e.isImmediatePropagationStopped())if(!e.namespace_re||e.namespace_re.test(s.namespace))e.handleObj=s,e.data=s.data,r=((jQuery.event.special[s.origType]||{}).handle||s.handler).apply(i.elem,u),r!==undefined&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation())}return f.postDispatch&&f.postDispatch.call(this,e),e.result},handlers:function(e,t){var n,r,i,s,o=[],u=t.delegateCount,a=e.target;if(u&&a.nodeType&&(!e.button||e.type!=="click"))for(;a!==this;a=a.parentNode||this)if(a.disabled!==!0||e.type!=="click"){r=[];for(n=0;n=0:jQuery.find(i,this,null,[a]).length),r[i]&&r.push(s);r.length&&o.push({elem:a,handlers:r})}return u]*)\/>/gi,rtagName=/<([\w:]+)/,rhtml=/<|&#?\w+;/,rnoInnerhtml=/<(?:script|style|link)/i,rchecked=/checked\s*(?:[^=]|=\s*.checked.)/i,rscriptType=/^$|\/(?:java|ecma)script/i,rscriptTypeMasked=/^true\/(.*)/,rcleanScript=/^\s*\s*$/g,wrapMap={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};wrapMap.optgroup=wrapMap.option,wrapMap.tbody=wrapMap.tfoot=wrapMap.colgroup=wrapMap.caption=wrapMap.thead,wrapMap.th=wrapMap.td,jQuery.extend({clone:function(e,t,n){var r,i,s,o,u=e.cloneNode(!0),a=jQuery.contains(e.ownerDocument,e);if(!support.noCloneChecked&&(e.nodeType===1||e.nodeType===11)&&!jQuery.isXMLDoc(e)){o=getAll(u),s=getAll(e);for(r=0,i=s.length;r0&&setGlobalEval(o,!a&&getAll(e,"script")),u},buildFragment:function(e,t,n,r){var i,s,o,u,a,f,l=t.createDocumentFragment(),c=[],h=0,p=e.length;for(;h")+u[2],f=u[0];while(f--)s=s.lastChild;jQuery.merge(c,s.childNodes),s=l.firstChild,s.textContent=""}}l.textContent="",h=0;while(i=c[h++]){if(r&&jQuery.inArray(i,r)!==-1)continue;a=jQuery.contains(i.ownerDocument,i),s=getAll(l.appendChild(i),"script"),a&&setGlobalEval(s);if(n){f=0;while(i=s[f++])rscriptType.test(i.type||"")&&n.push(i)}}return l},cleanData:function(e){var t,n,r,i,s=jQuery.event.special,o=0;for(;(n=e[o])!==undefined;o++){if(jQuery.acceptData(n)){i=n[data_priv.expando];if(i&&(t=data_priv.cache[i])){if(t.events)for(r in t.events)s[r]?jQuery.event.remove(n,r):jQuery.removeEvent(n,r,t.handle);data_priv.cache[i]&&delete data_priv.cache[i]}}delete data_user.cache[n[data_user.expando]]}}}),jQuery.fn.extend({text:function(e){return access(this,function(e){return e===undefined?jQuery.text(this):this.empty().each(function(){if(this.nodeType===1||this.nodeType===11||this.nodeType===9)this.textContent=e})},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var t=manipulationTarget(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var t=manipulationTarget(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?jQuery.filter(e,this):this,i=0;for(;(n=r[i])!=null;i++)!t&&n.nodeType===1&&jQuery.cleanData(getAll(n)),n.parentNode&&(t&&jQuery.contains(n.ownerDocument,n)&&setGlobalEval(getAll(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;(e=this[t])!=null;t++)e.nodeType===1&&(jQuery.cleanData(getAll(e,!1)),e.textContent="");return this},clone:function(e,t){return e=e==null?!1:e,t=t==null?e:t,this.map(function(){return jQuery.clone(this,e,t)})},html:function(e){return access(this,function(e){var t=this[0]||{},n=0,r=this.length;if(e===undefined&&t.nodeType===1)return t.innerHTML;if(typeof e=="string"&&!rnoInnerhtml.test(e)&&!wrapMap[(rtagName.exec(e)||["",""])[1].toLowerCase()]){e=e.replace(rxhtmlTag,"<$1>");try{for(;n1&&typeof h=="string"&&!support.checkClone&&rchecked.test(h))return this.each(function(n){var r=l.eq(n);p&&(e[0]=h.call(this,n,r.html())),r.domManip(e,t)});if(f){n=jQuery.buildFragment(e,this[0].ownerDocument,!1,this),r=n.firstChild,n.childNodes.length===1&&(n=r);if(r){i=jQuery.map(getAll(n,"script"),disableScript),s=i.length;for(;a1)},show:function(){return showHide(this,!0)},hide:function(){return showHide(this)},toggle:function(e){return typeof e=="boolean"?e?this.show():this.hide():this.each(function(){isHidden(this)?jQuery(this).show():jQuery(this).hide()})}}),jQuery.Tween=Tween,Tween.prototype={constructor:Tween,init:function(e,t,n,r,i,s){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=s||(jQuery.cssNumber[n]?"":"px")},cur:function(){var e=Tween.propHooks[this.prop];return e&&e.get?e.get(this):Tween.propHooks._default.get(this)},run:function(e){var t,n=Tween.propHooks[this.prop];return this.options.duration?this.pos=t=jQuery.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):Tween.propHooks._default.set(this),this}},Tween.prototype.init.prototype=Tween.prototype,Tween.propHooks={_default:{get:function(e){var t;return e.elem[e.prop]==null||!!e.elem.style&&e.elem.style[e.prop]!=null?(t=jQuery.css(e.elem,e.prop,""),!t||t==="auto"?0:t):e.elem[e.prop]},set:function(e){jQuery.fx.step[e.prop]?jQuery.fx.step[e.prop](e):e.elem.style&&(e.elem.style[jQuery.cssProps[e.prop]]!=null||jQuery.cssHooks[e.prop])?jQuery.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},Tween.propHooks.scrollTop=Tween.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},jQuery.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},jQuery.fx=Tween.prototype.init,jQuery.fx.step={};var fxNow,timerId,rfxtypes=/^(?:toggle|show|hide)$/,rfxnum=new RegExp("^(?:([+-])=|)("+pnum+")([a-z%]*)$","i"),rrun=/queueHooks$/,animationPrefilters=[defaultPrefilter],tweeners={"*":[function(e,t){var n=this.createTween(e,t),r=n.cur(),i=rfxnum.exec(t),s=i&&i[3]||(jQuery.cssNumber[e]?"":"px"),o=(jQuery.cssNumber[e]||s!=="px"&&+r)&&rfxnum.exec(jQuery.css(n.elem,e)),u=1,a=20;if(o&&o[3]!==s){s=s||o[3],i=i||[],o=+r||1;do u=u||".5",o/=u,jQuery.style(n.elem,e,o+s);while(u!==(u=n.cur()/r)&&u!==1&&--a)}return i&&(o=n.start=+o||+r||0,n.unit=s,n.end=i[1]?o+(i[1]+1)*i[2]:+i[2]),n}]};jQuery.Animation=jQuery.extend(Animation,{tweener:function(e,t){jQuery.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;r1)},removeAttr:function(e){return this.each(function(){jQuery.removeAttr(this,e)})}}),jQuery.extend({attr:function(e,t,n){var r,i,s=e.nodeType;if(!e||s===3||s===8||s===2)return;if(typeof e.getAttribute===strundefined)return jQuery.prop(e,t,n);if(s!==1||!jQuery.isXMLDoc(e))t=t.toLowerCase(),r=jQuery.attrHooks[t]||(jQuery.expr.match.bool.test(t)?boolHook:nodeHook);if(n===undefined)return r&&"get"in r&&(i=r.get(e,t))!==null?i:(i=jQuery.find.attr(e,t),i==null?undefined:i);if(n!==null)return r&&"set"in r&&(i=r.set(e,n,t))!==undefined?i:(e.setAttribute(t,n+""),n);jQuery.removeAttr(e,t)},removeAttr:function(e,t){var n,r,i=0,s=t&&t.match(rnotwhite);if(s&&e.nodeType===1)while(n=s[i++])r=jQuery.propFix[n]||n,jQuery.expr.match.bool.test(n)&&(e[r]=!1),e.removeAttribute(n)},attrHooks:{type:{set:function(e,t){if(!support.radioValue&&t==="radio"&&jQuery.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}}}),boolHook={set:function(e,t,n){return t===!1?jQuery.removeAttr(e,n):e.setAttribute(n,n),n}},jQuery.each(jQuery.expr.match.bool.source.match(/\w+/g),function(e,t){var n=attrHandle[t]||jQuery.find.attr;attrHandle[t]=function(e,t,r){var i,s;return r||(s=attrHandle[t],attrHandle[t]=i,i=n(e,t,r)!=null?t.toLowerCase():null,attrHandle[t]=s),i}});var rfocusable=/^(?:input|select|textarea|button)$/i;jQuery.fn.extend({prop:function(e,t){return access(this,jQuery.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[jQuery.propFix[e]||e]})}}),jQuery.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(e,t,n){var r,i,s,o=e.nodeType;if(!e||o===3||o===8||o===2)return;return s=o!==1||!jQuery.isXMLDoc(e),s&&(t=jQuery.propFix[t]||t,i=jQuery.propHooks[t]),n!==undefined?i&&"set"in i&&(r=i.set(e,n,t))!==undefined?r:e[t]=n:i&&"get"in i&&(r=i.get(e,t))!==null?r:e[t]},propHooks:{tabIndex:{get:function(e){return e.hasAttribute("tabindex")||rfocusable.test(e.nodeName)||e.href?e.tabIndex:-1}}}}),support.optSelected||(jQuery.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null}}),jQuery.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){jQuery.propFix[this.toLowerCase()]=this});var rclass=/[\t\r\n\f]/g;jQuery.fn.extend({addClass:function(e){var t,n,r,i,s,o,u=typeof e=="string"&&e,a=0,f=this.length;if(jQuery.isFunction(e))return this.each(function(t){jQuery(this).addClass(e.call(this,t,this.className))});if(u){t=(e||"").match(rnotwhite)||[];for(;a=0)r=r.replace(" "+i+" "," ");o=e?jQuery.trim(r):"",n.className!==o&&(n.className=o)}}}return this},toggleClass:function(e,t){var n=typeof e;return typeof t=="boolean"&&n==="string"?t?this.addClass(e):this.removeClass(e):jQuery.isFunction(e)?this.each(function(n){jQuery(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if(n==="string"){var t,r=0,i=jQuery(this),s=e.match(rnotwhite)||[];while(t=s[r++])i.hasClass(t)?i.removeClass(t):i.addClass(t)}else if(n===strundefined||n==="boolean")this.className&&data_priv.set(this,"__className__",this.className),this.className=this.className||e===!1?"":data_priv.get(this,"__className__")||""})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;n=0)return!0;return!1}});var rreturn=/\r/g;jQuery.fn.extend({val:function(e){var t,n,r,i=this[0];if(!arguments.length){if(i)return t=jQuery.valHooks[i.type]||jQuery.valHooks[i.nodeName.toLowerCase()],t&&"get"in t&&(n=t.get(i,"value"))!==undefined?n:(n=i.value,typeof n=="string"?n.replace(rreturn,""):n==null?"":n);return}return r=jQuery.isFunction(e),this.each(function(n){var i;if(this.nodeType!==1)return;r?i=e.call(this,n,jQuery(this).val()):i=e,i==null?i="":typeof i=="number"?i+="":jQuery.isArray(i)&&(i=jQuery.map(i,function(e){return e==null?"":e+""})),t=jQuery.valHooks[this.type]||jQuery.valHooks[this.nodeName.toLowerCase()];if(!t||!("set"in t)||t.set(this,i,"value")===undefined)this.value=i})}}),jQuery.extend({valHooks:{option:{get:function(e){var t=jQuery.find.attr(e,"value");return t!=null?t:jQuery.trim(jQuery.text(e))}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,s=e.type==="select-one"||i<0,o=s?null:[],u=s?i+1:r.length,a=i<0?u:s?i:0;for(;a=0)n=!0}return n||(e.selectedIndex=-1),s}}}}),jQuery.each(["radio","checkbox"],function(){jQuery.valHooks[this]={set:function(e,t){if(jQuery.isArray(t))return e.checked=jQuery.inArray(jQuery(e).val(),t)>=0}},support.checkOn||(jQuery.valHooks[this].get=function(e){return e.getAttribute("value")===null?"on":e.value})}),jQuery.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){jQuery.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),jQuery.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},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 arguments.length===1?this.off(e,"**"):this.off(t,e||"**",n)}});var nonce=jQuery.now(),rquery=/\?/;jQuery.parseJSON=function(e){return JSON.parse(e+"")},jQuery.parseXML=function(e){var t,n;if(!e||typeof e!="string")return null;try{n=new DOMParser,t=n.parseFromString(e,"text/xml")}catch(r){t=undefined}return(!t||t.getElementsByTagName("parsererror").length)&&jQuery.error("Invalid XML: "+e),t};var ajaxLocParts,ajaxLocation,rhash=/#.*$/,rts=/([?&])_=[^&]*/,rheaders=/^(.*?):[ \t]*([^\r\n]*)$/mg,rlocalProtocol=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,rnoContent=/^(?:GET|HEAD)$/,rprotocol=/^\/\//,rurl=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,prefilters={},transports={},allTypes="*/".concat("*");try{ajaxLocation=location.href}catch(e){ajaxLocation=document.createElement("a"),ajaxLocation.href="",ajaxLocation=ajaxLocation.href}ajaxLocParts=rurl.exec(ajaxLocation.toLowerCase())||[],jQuery.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:ajaxLocation,type:"GET",isLocal:rlocalProtocol.test(ajaxLocParts[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":allTypes,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":jQuery.parseJSON,"text xml":jQuery.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?ajaxExtend(ajaxExtend(e,jQuery.ajaxSettings),t):ajaxExtend(jQuery.ajaxSettings,e)},ajaxPrefilter:addToPrefiltersOrTransports(prefilters),ajaxTransport:addToPrefiltersOrTransports(transports),ajax:function(e,t){function S(e,t,s,u){var f,m,g,b,E,S=t;if(y===2)return;y=2,o&&clearTimeout(o),n=undefined,i=u||"",w.readyState=e>0?4:0,f=e>=200&&e<300||e===304,s&&(b=ajaxHandleResponses(l,w,s)),b=ajaxConvert(l,b,w,f);if(f)l.ifModified&&(E=w.getResponseHeader("Last-Modified"),E&&(jQuery.lastModified[r]=E),E=w.getResponseHeader("etag"),E&&(jQuery.etag[r]=E)),e===204||l.type==="HEAD"?S="nocontent":e===304?S="notmodified":(S=b.state,m=b.data,g=b.error,f=!g);else{g=S;if(e||!S)S="error",e<0&&(e=0)}w.status=e,w.statusText=(t||S)+"",f?p.resolveWith(c,[m,S,w]):p.rejectWith(c,[w,S,g]),w.statusCode(v),v=undefined,a&&h.trigger(f?"ajaxSuccess":"ajaxError",[w,l,f?m:g]),d.fireWith(c,[w,S]),a&&(h.trigger("ajaxComplete",[w,l]),--jQuery.active||jQuery.event.trigger("ajaxStop"))}typeof e=="object"&&(t=e,e=undefined),t=t||{};var n,r,i,s,o,u,a,f,l=jQuery.ajaxSetup({},t),c=l.context||l,h=l.context&&(c.nodeType||c.jquery)?jQuery(c):jQuery.event,p=jQuery.Deferred(),d=jQuery.Callbacks("once memory"),v=l.statusCode||{},m={},g={},y=0,b="canceled",w={readyState:0,getResponseHeader:function(e){var t;if(y===2){if(!s){s={};while(t=rheaders.exec(i))s[t[1].toLowerCase()]=t[2]}t=s[e.toLowerCase()]}return t==null?null:t},getAllResponseHeaders:function(){return y===2?i:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return y||(e=g[n]=g[n]||e,m[e]=t),this},overrideMimeType:function(e){return y||(l.mimeType=e),this},statusCode:function(e){var t;if(e)if(y<2)for(t in e)v[t]=[v[t],e[t]];else w.always(e[w.status]);return this},abort:function(e){var t=e||b;return n&&n.abort(t),S(0,t),this}};p.promise(w).complete=d.add,w.success=w.done,w.error=w.fail,l.url=((e||l.url||ajaxLocation)+"").replace(rhash,"").replace(rprotocol,ajaxLocParts[1]+"//"),l.type=t.method||t.type||l.method||l.type,l.dataTypes=jQuery.trim(l.dataType||"*").toLowerCase().match(rnotwhite)||[""],l.crossDomain==null&&(u=rurl.exec(l.url.toLowerCase()),l.crossDomain=!(!u||u[1]===ajaxLocParts[1]&&u[2]===ajaxLocParts[2]&&(u[3]||(u[1]==="http:"?"80":"443"))===(ajaxLocParts[3]||(ajaxLocParts[1]==="http:"?"80":"443")))),l.data&&l.processData&&typeof l.data!="string"&&(l.data=jQuery.param(l.data,l.traditional)),inspectPrefiltersOrTransports(prefilters,l,t,w);if(y===2)return w;a=l.global,a&&jQuery.active++===0&&jQuery.event.trigger("ajaxStart"),l.type=l.type.toUpperCase(),l.hasContent=!rnoContent.test(l.type),r=l.url,l.hasContent||(l.data&&(r=l.url+=(rquery.test(r)?"&":"?")+l.data,delete l.data),l.cache===!1&&(l.url=rts.test(r)?r.replace(rts,"$1_="+nonce++):r+(rquery.test(r)?"&":"?")+"_="+nonce++)),l.ifModified&&(jQuery.lastModified[r]&&w.setRequestHeader("If-Modified-Since",jQuery.lastModified[r]),jQuery.etag[r]&&w.setRequestHeader("If-None-Match",jQuery.etag[r])),(l.data&&l.hasContent&&l.contentType!==!1||t.contentType)&&w.setRequestHeader("Content-Type",l.contentType),w.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+allTypes+"; q=0.01":""):l.accepts["*"]);for(f in l.headers)w.setRequestHeader(f,l.headers[f]);if(!l.beforeSend||l.beforeSend.call(c,w,l)!==!1&&y!==2){b="abort";for(f in{success:1,error:1,complete:1})w[f](l[f]);n=inspectPrefiltersOrTransports(transports,l,t,w);if(!n)S(-1,"No Transport");else{w.readyState=1,a&&h.trigger("ajaxSend",[w,l]),l.async&&l.timeout>0&&(o=setTimeout(function(){w.abort("timeout")},l.timeout));try{y=1,n.send(m,S)}catch(E){if(!(y<2))throw E;S(-1,E)}}return w}return w.abort()},getJSON:function(e,t,n){return jQuery.get(e,t,n,"json")},getScript:function(e,t){return jQuery.get(e,undefined,t,"script")}}),jQuery.each(["get","post"],function(e,t){jQuery[t]=function(e,n,r,i){return jQuery.isFunction(n)&&(i=i||r,r=n,n=undefined),jQuery.ajax({url:e,type:t,dataType:i,data:n,success:r})}}),jQuery.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){jQuery.fn[t]=function(e){return this.on(t,e)}}),jQuery._evalUrl=function(e){return jQuery.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},jQuery.fn.extend({wrapAll:function(e){var t;return jQuery.isFunction(e)?this.each(function(t){jQuery(this).wrapAll(e.call(this,t))}):(this[0]&&(t=jQuery(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this)},wrapInner:function(e){return jQuery.isFunction(e)?this.each(function(t){jQuery(this).wrapInner(e.call(this,t))}):this.each(function(){var t=jQuery(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=jQuery.isFunction(e);return this.each(function(n){jQuery(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){jQuery.nodeName(this,"body")||jQuery(this).replaceWith(this.childNodes)}).end()}}),jQuery.expr.filters.hidden=function(e){return e.offsetWidth<=0&&e.offsetHeight<=0},jQuery.expr.filters.visible=function(e){return!jQuery.expr.filters.hidden(e)};var r20=/%20/g,rbracket=/\[\]$/,rCRLF=/\r?\n/g,rsubmitterTypes=/^(?:submit|button|image|reset|file)$/i,rsubmittable=/^(?:input|select|textarea|keygen)/i;jQuery.param=function(e,t){var n,r=[],i=function(e,t){t=jQuery.isFunction(t)?t():t==null?"":t,r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};t===undefined&&(t=jQuery.ajaxSettings&&jQuery.ajaxSettings.traditional);if(jQuery.isArray(e)||e.jquery&&!jQuery.isPlainObject(e))jQuery.each(e,function(){i(this.name,this.value)});else for(n in e)buildParams(n,e[n],t,i);return r.join("&").replace(r20,"+")},jQuery.fn.extend({serialize:function(){return jQuery.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=jQuery.prop(this,"elements");return e?jQuery.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!jQuery(this).is(":disabled")&&rsubmittable.test(this.nodeName)&&!rsubmitterTypes.test(e)&&(this.checked||!rcheckableType.test(e))}).map(function(e,t){var n=jQuery(this).val();return n==null?null:jQuery.isArray(n)?jQuery.map(n,function(e){return{name:t.name,value:e.replace(rCRLF,"\r\n")}}):{name:t.name,value:n.replace(rCRLF,"\r\n")}}).get()}}),jQuery.ajaxSettings.xhr=function(){try{return new XMLHttpRequest}catch(e){}};var xhrId=0,xhrCallbacks={},xhrSuccessStatus={0:200,1223:204},xhrSupported=jQuery.ajaxSettings.xhr();window.ActiveXObject&&jQuery(window).on("unload",function(){for(var e in xhrCallbacks)xhrCallbacks[e]()}),support.cors=!!xhrSupported&&"withCredentials"in xhrSupported,support.ajax=xhrSupported=!!xhrSupported,jQuery.ajaxTransport(function(e){var t;if(support.cors||xhrSupported&&!e.crossDomain)return{send:function(n,r){var i,s=e.xhr(),o=++xhrId;s.open(e.type,e.url,e.async,e.username,e.password);if(e.xhrFields)for(i in e.xhrFields)s[i]=e.xhrFields[i];e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),!e.crossDomain&&!n["X-Requested-With"]&&(n["X-Requested-With"]="XMLHttpRequest");for(i in n)s.setRequestHeader(i,n[i]);t=function(e){return function(){t&&(delete xhrCallbacks[o],t=s.onload=s.onerror=null,e==="abort"?s.abort():e==="error"?r(s.status,s.statusText):r(xhrSuccessStatus[s.status]||s.status,s.statusText,typeof s.responseText=="string"?{text:s.responseText}:undefined,s.getAllResponseHeaders()))}},s.onload=t(),s.onerror=t("error"),t=xhrCallbacks[o]=t("abort");try{s.send(e.hasContent&&e.data||null)}catch(u){if(t)throw u}},abort:function(){t&&t()}}}),jQuery.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return jQuery.globalEval(e),e}}}),jQuery.ajaxPrefilter("script",function(e){e.cache===undefined&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),jQuery.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(r,i){t=jQuery(" ================================================ FILE: _book/gitbook/jsrepl/sandbox.js ================================================ /* Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The names of its contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Any feedback is very welcome. http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space) */ (function(c){try{c.window=c.window||c}catch(b){}try{c.self=c.self||c}catch(e){}var a;c.addEventListener("message",function(d){for(var d=JSON.parse(d.data),b=a,c=d.type.split("."),e=0;ethis.OUT_EVERY_MS&&(clearTimeout(this.outTimeout),this.flush())},flush:function(){if(this.output_buffer.length)this.post({type:"output",data:this.output_buffer.join("")}),this.outTimeout=0,this.output_buffer=[]},err:function(a){a={type:"error", data:a.toString()};this.flush();this.post(a)},input:function(a){this.input.write=a;this.flush();this.post({type:"input"})},result:function(a){a={type:"result",data:a};this.flush();this.post(a)},ready:function(){this.post({type:"ready"})},getNextLineIndent:function(a){this.post({type:"indent",data:this.engine.GetNextLineIndent(a)})},progress:function(a){this.post({type:"progress",data:a})},dbInput:function(){this.flush();this.post({type:"db_input"})},serverInput:function(){this.flush();this.post({type:"server_input"})}, bindAll:function(a){for(var b in a)(function(b){var c=a[b];typeof c=="function"&&(a[b]=function(){var b=[].slice.call(arguments);return c.apply(a,b)})})(b)},hide:function(a){try{Object.defineProperty(c,a,{writable:false,enumerable:false,configurable:false,value:c[a]})}catch(b){}},set_input_server:function(a){this.input_server={url:(a.url||"/emscripten/input/")+a.input_id,cors:a.cors||false}}};a.bindAll(a);c.Sandboss=a;a.hide("Sandboss");if(self.openDatabaseSync){var f=self.openDatabaseSync("replit_input", "1.0","Emscripted input",1024);self.prompt=function(){a.dbInput();var b=null;f.transaction(function(a){b=a});for(var c;!(c=b.executeSql("SELECT * FROM input").rows).length;)for(c=0;c<1E8;c++);b.executeSql("DELETE FROM input");return c.item(0).text};a.hide("prompt")}else if(!a.isFrame)self.prompt=function(){a.serverInput();var b;b=a.input_server.url;var c=new XMLHttpRequest;if(a.input_server.cors)if("withCredentials"in c)c.open("GET",b,false);else if(typeof XDomainRequest!="undefined")c=new XDomainRequest, c.open("GET",b);else throw Error("Your browser doesn' support CORS");else c.open("GET",b,false);b=c;b.send(null);return b.status===200?b.responseText:"ERROR: ON NON-WEBKIT BROWSERS CONNECTION TO THE SERVER IS NEEDED FOR INPUT"}})(this); (function(){var c=function(b){b==void 0&&(b=Date.now());this.N=624;this.M=397;this.MATRIX_A=2567483615;this.UPPER_MASK=2147483648;this.LOWER_MASK=2147483647;this.mt=Array(this.N);this.mti=this.N+1;this.init_genrand(b)};c.prototype.init_genrand=function(b){this.mt[0]=b>>>0;for(this.mti=1;this.mti>>30,this.mt[this.mti]=(((b&4294901760)>>>16)*1812433253<<16)+(b&65535)*1812433253+this.mti,this.mt[this.mti]>>>=0};c.prototype.init_by_array=function(b, c){var a,f,d;this.init_genrand(19650218);a=1;f=0;for(d=this.N>c?this.N:c;d;d--){var h=this.mt[a-1]^this.mt[a-1]>>>30;this.mt[a]=(this.mt[a]^(((h&4294901760)>>>16)*1664525<<16)+(h&65535)*1664525)+b[f]+f;this.mt[a]>>>=0;a++;f++;a>=this.N&&(this.mt[0]=this.mt[this.N-1],a=1);f>=c&&(f=0)}for(d=this.N-1;d;d--)h=this.mt[a-1]^this.mt[a-1]>>>30,this.mt[a]=(this.mt[a]^(((h&4294901760)>>>16)*1566083941<<16)+(h&65535)*1566083941)-a,this.mt[a]>>>=0,a++,a>=this.N&&(this.mt[0]=this.mt[this.N-1],a=1);this.mt[0]= 2147483648};c.prototype.genrand_int32=function(){var b,c=[0,this.MATRIX_A];if(this.mti>=this.N){var a;this.mti==this.N+1&&this.init_genrand(5489);for(a=0;a>>1^c[b&1];for(;a>>1^c[b&1];b=this.mt[this.N-1]&this.UPPER_MASK|this.mt[0]&this.LOWER_MASK;this.mt[this.N-1]=this.mt[this.M-1]^ b>>>1^c[b&1];this.mti=0}b=this.mt[this.mti++];b^=b>>>11;b^=b<<7&2636928640;b^=b<<15&4022730752;b^=b>>>18;return b>>>0};c.prototype.genrand_int31=function(){return this.genrand_int32()>>>1};c.prototype.genrand_real1=function(){return this.genrand_int32()*(1/4294967295)};c.prototype.random=function(){return this.genrand_int32()*(1/4294967296)};c.prototype.genrand_real3=function(){return(this.genrand_int32()+0.5)*(1/4294967296)};c.prototype.genrand_res53=function(){var b=this.genrand_int32()>>>5,c=this.genrand_int32()>>> 6;return(b*67108864+c)*1.1102230246251565E-16};(function(){Math._random=Math.random;var b=new c(42);Math.random=function(){return b.random()};Math.seed=function(e){b=new c(e)}})()})();if(!Date.now)Date.now=function(){return+new Date};if(!Object.keys)Object.keys=function(c){if(c!==Object(c))throw new TypeError("Object.keys called on non-object");var b=[],e;for(e in c)Object.prototype.hasOwnProperty.call(c,e)&&b.push(e);return b};if(!Object.getOwnPropertyNames)Object.getOwnPropertyNames=Object.keys; if(!Object.create)Object.create=function(c){function b(){}b.prototype=c;return new b};if(!Array.isArray)Array.isArray=function(c){return{}.toString.call(c)=="[object Array]"}; if(!Function.prototype.bind)Function.prototype.bind=function(c){if(typeof this!=="function")throw new TypeError("Function.prototype.bind - what is trying to be fBound is not callable");var b=Array.prototype.slice.call(arguments,1),e=this,a=function(){},f=function(){try{return e.apply(this instanceof a?this:c||window,b.concat(Array.prototype.slice.call(arguments)))}catch(d){return e.apply(c||window,b.concat(Array.prototype.slice.call(arguments)))}};a.prototype=this.prototype;f.prototype=new a;return f}; if(!Object.freeze)Object.freeze=function(c){return c.___frozen___=true};if(!Object.isFrozen)Object.isFrozen=function(c){return Boolean(c.___frozen___)}; ================================================ FILE: _book/gitbook/plugins/gitbook-plugin-mathjax/plugin.js ================================================ require(["gitbook"], function(gitbook) { MathJax.Hub.Config({ tex2jax: { inlineMath: [['$','$'], ['\\(','\\)']], processEscapes: true } }); gitbook.events.bind("page.change", function() { MathJax.Hub.Typeset() }); }); ================================================ FILE: _book/gitbook/print.css ================================================ .link-inherit{color:inherit}.link-inherit:hover,.link-inherit:focus{color:inherit}.hljs-comment,.hljs-title{color:#8e908c}.hljs-variable,.hljs-attribute,.hljs-tag,.hljs-regexp,.ruby .hljs-constant,.xml .hljs-tag .hljs-title,.xml .hljs-pi,.xml .hljs-doctype,.html .hljs-doctype,.css .hljs-id,.css .hljs-class,.css .hljs-pseudo{color:#c82829}.hljs-number,.hljs-preprocessor,.hljs-pragma,.hljs-built_in,.hljs-literal,.hljs-params,.hljs-constant{color:#f5871f}.ruby .hljs-class .hljs-title,.css .hljs-rules .hljs-attribute{color:#eab700}.hljs-string,.hljs-value,.hljs-inheritance,.hljs-header,.ruby .hljs-symbol,.xml .hljs-cdata{color:#718c00}.css .hljs-hexcolor{color:#3e999f}.hljs-function,.python .hljs-decorator,.python .hljs-title,.ruby .hljs-function .hljs-title,.ruby .hljs-title .hljs-keyword,.perl .hljs-sub,.javascript .hljs-title,.coffeescript .hljs-title{color:#4271ae}.hljs-keyword,.javascript .hljs-function{color:#8959a8}.hljs{display:block;background:white;color:#4d4d4c;padding:.5em}.coffeescript .javascript,.javascript .xml,.tex .hljs-formula,.xml .javascript,.xml .vbscript,.xml .css,.xml .hljs-cdata{opacity:.5}.book-chapter{display:none}article{page-break-after:always}pre,blockquote{border:1px solid #999;page-break-inside:avoid;background:#f1f1f1;padding:8px}img{max-width:100%!important;page-break-inside:avoid;margin:0 auto}.exercise,.quiz{margin:1cm 0;padding:.4cm;page-break-inside:avoid;border:3px solid #ddd}.exercise .exercise-header,.quiz .exercise-header{margin-bottom:.4cm;padding-bottom:.2cm;border-bottom:1px solid #ddd}.exercise .question,.quiz .question{margin-top:.4cm} ================================================ FILE: _book/gitbook/style.css ================================================ article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Open Sans","Clear Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.428571429;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}button,input,select[multiple],textarea{background-image:none}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:3px}.img-thumbnail{padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:1px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0 0 0 0);border:0}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16.099999999999998px;font-weight:200;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}small{font-size:85%}cite{font-style:normal}.text-muted{color:#999}.text-primary{color:#428bca}.text-warning{color:#c09853}.text-danger{color:#b94a48}.text-success{color:#468847}.text-info{color:#3a87ad}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{margin-top:20px;margin-bottom:10px}h4,h5,h6{margin-top:10px;margin-bottom:10px}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}h1 small,.h1 small{font-size:24px}h2 small,.h2 small{font-size:18px}h3 small,.h3 small,h4 small,.h4 small{font-size:14px}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-bottom:20px}dt,dd{line-height:1.428571429}dt{font-weight:bold}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.dl-horizontal dd:before,.dl-horizontal dd:after{content:" ";display:table}.dl-horizontal dd:after{clear:both}.dl-horizontal dd:before,.dl-horizontal dd:after{content:" ";display:table}.dl-horizontal dd:after{clear:both}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}abbr.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{font-size:17.5px;font-weight:300;line-height:1.25}blockquote p:last-child{margin-bottom:0}blockquote small{display:block;line-height:1.428571429;color:#999}blockquote small:before{content:'\2014 \00A0'}blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right}blockquote.pull-right small:before{content:''}blockquote.pull-right small:after{content:'\00A0 \2014'}q:before,q:after,blockquote:before,blockquote:after{content:""}address{display:block;margin-bottom:20px;font-style:normal;line-height:1.428571429}code,pre{font-family:Monaco,Menlo,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;white-space:nowrap;border-radius:1px}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:1px}pre.prettyprint{margin-bottom:20px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container:before,.container:after{content:" ";display:table}.container:after{clear:both}.container:before,.container:after{content:" ";display:table}.container:after{clear:both}.row{margin-left:-15px;margin-right:-15px}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11{float:left}.col-xs-1{width:8.333333333333332%}.col-xs-2{width:16.666666666666664%}.col-xs-3{width:25%}.col-xs-4{width:33.33333333333333%}.col-xs-5{width:41.66666666666667%}.col-xs-6{width:50%}.col-xs-7{width:58.333333333333336%}.col-xs-8{width:66.66666666666666%}.col-xs-9{width:75%}.col-xs-10{width:83.33333333333334%}.col-xs-11{width:91.66666666666666%}.col-xs-12{width:100%}@media(min-width:768px){.container{max-width:750px}.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11{float:left}.col-sm-1{width:8.333333333333332%}.col-sm-2{width:16.666666666666664%}.col-sm-3{width:25%}.col-sm-4{width:33.33333333333333%}.col-sm-5{width:41.66666666666667%}.col-sm-6{width:50%}.col-sm-7{width:58.333333333333336%}.col-sm-8{width:66.66666666666666%}.col-sm-9{width:75%}.col-sm-10{width:83.33333333333334%}.col-sm-11{width:91.66666666666666%}.col-sm-12{width:100%}.col-sm-push-1{left:8.333333333333332%}.col-sm-push-2{left:16.666666666666664%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.33333333333333%}.col-sm-push-5{left:41.66666666666667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.333333333333336%}.col-sm-push-8{left:66.66666666666666%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.33333333333334%}.col-sm-push-11{left:91.66666666666666%}.col-sm-pull-1{right:8.333333333333332%}.col-sm-pull-2{right:16.666666666666664%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.33333333333333%}.col-sm-pull-5{right:41.66666666666667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.333333333333336%}.col-sm-pull-8{right:66.66666666666666%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.33333333333334%}.col-sm-pull-11{right:91.66666666666666%}.col-sm-offset-1{margin-left:8.333333333333332%}.col-sm-offset-2{margin-left:16.666666666666664%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333333333333%}.col-sm-offset-5{margin-left:41.66666666666667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.333333333333336%}.col-sm-offset-8{margin-left:66.66666666666666%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333333333334%}.col-sm-offset-11{margin-left:91.66666666666666%}}@media(min-width:992px){.container{max-width:970px}.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11{float:left}.col-md-1{width:8.333333333333332%}.col-md-2{width:16.666666666666664%}.col-md-3{width:25%}.col-md-4{width:33.33333333333333%}.col-md-5{width:41.66666666666667%}.col-md-6{width:50%}.col-md-7{width:58.333333333333336%}.col-md-8{width:66.66666666666666%}.col-md-9{width:75%}.col-md-10{width:83.33333333333334%}.col-md-11{width:91.66666666666666%}.col-md-12{width:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.333333333333332%}.col-md-push-2{left:16.666666666666664%}.col-md-push-3{left:25%}.col-md-push-4{left:33.33333333333333%}.col-md-push-5{left:41.66666666666667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.333333333333336%}.col-md-push-8{left:66.66666666666666%}.col-md-push-9{left:75%}.col-md-push-10{left:83.33333333333334%}.col-md-push-11{left:91.66666666666666%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.333333333333332%}.col-md-pull-2{right:16.666666666666664%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.33333333333333%}.col-md-pull-5{right:41.66666666666667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.333333333333336%}.col-md-pull-8{right:66.66666666666666%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.33333333333334%}.col-md-pull-11{right:91.66666666666666%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.333333333333332%}.col-md-offset-2{margin-left:16.666666666666664%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333333333333%}.col-md-offset-5{margin-left:41.66666666666667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.333333333333336%}.col-md-offset-8{margin-left:66.66666666666666%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333333333334%}.col-md-offset-11{margin-left:91.66666666666666%}}@media(min-width:1200px){.container{max-width:1170px}.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11{float:left}.col-lg-1{width:8.333333333333332%}.col-lg-2{width:16.666666666666664%}.col-lg-3{width:25%}.col-lg-4{width:33.33333333333333%}.col-lg-5{width:41.66666666666667%}.col-lg-6{width:50%}.col-lg-7{width:58.333333333333336%}.col-lg-8{width:66.66666666666666%}.col-lg-9{width:75%}.col-lg-10{width:83.33333333333334%}.col-lg-11{width:91.66666666666666%}.col-lg-12{width:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.333333333333332%}.col-lg-push-2{left:16.666666666666664%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.33333333333333%}.col-lg-push-5{left:41.66666666666667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.333333333333336%}.col-lg-push-8{left:66.66666666666666%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.33333333333334%}.col-lg-push-11{left:91.66666666666666%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.333333333333332%}.col-lg-pull-2{right:16.666666666666664%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.33333333333333%}.col-lg-pull-5{right:41.66666666666667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.333333333333336%}.col-lg-pull-8{right:66.66666666666666%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.33333333333334%}.col-lg-pull-11{right:91.66666666666666%}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:8.333333333333332%}.col-lg-offset-2{margin-left:16.666666666666664%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333333333333%}.col-lg-offset-5{margin-left:41.66666666666667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.333333333333336%}.col-lg-offset-8{margin-left:66.66666666666666%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333333333334%}.col-lg-offset-11{margin-left:91.66666666666666%}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table thead>tr>th,.table tbody>tr>th,.table tfoot>tr>th,.table thead>tr>td,.table tbody>tr>td,.table tfoot>tr>td{padding:8px;line-height:1.428571429;vertical-align:top;border-top:1px solid #ddd}.table thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table caption+thead tr:first-child th,.table colgroup+thead tr:first-child th,.table thead:first-child tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child td{border-top:0}.table tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed thead>tr>th,.table-condensed tbody>tr>th,.table-condensed tfoot>tr>th,.table-condensed thead>tr>td,.table-condensed tbody>tr>td,.table-condensed tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8;border-color:#d6e9c6}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td{background-color:#d0e9c6;border-color:#c9e2b3}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede;border-color:#eed3d7}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td{background-color:#ebcccc;border-color:#e6c1c7}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3;border-color:#fbeed5}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td{background-color:#faf2cc;border-color:#f8e5be}@media(max-width:768px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:scroll;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0;background-color:#fff}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>thead>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>thead>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}select[multiple],select[size]{height:auto}select optgroup{font-size:inherit;font-style:inherit;font-family:inherit}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}input[type="number"]::-webkit-outer-spin-button,input[type="number"]::-webkit-inner-spin-button{height:auto}.form-control:-moz-placeholder{color:#999}.form-control::-moz-placeholder{color:#999}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle;background-color:#fff;border:1px solid #ccc;border-radius:1px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,0.6)}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee}textarea.form-control{height:auto}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;margin-top:10px;margin-bottom:10px;padding-left:20px;vertical-align:middle}.radio label,.checkbox label{display:inline;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}select.input-sm{height:30px;line-height:30px}textarea.input-sm{height:auto}.input-lg{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:3px}select.input-lg{height:45px;line-height:45px}textarea.input-lg{height:auto}.has-warning .help-block,.has-warning .control-label{color:#c09853}.has-warning .form-control{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e}.has-warning .input-group-addon{color:#c09853;border-color:#c09853;background-color:#fcf8e3}.has-error .help-block,.has-error .control-label{color:#b94a48}.has-error .form-control{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392}.has-error .input-group-addon{color:#b94a48;border-color:#b94a48;background-color:#f2dede}.has-success .help-block,.has-success .control-label{color:#468847}.has-success .form-control{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b}.has-success .input-group-addon{color:#468847;border-color:#468847;background-color:#dff0d8}.form-control-static{margin-bottom:0;padding-top:7px}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:none;margin-left:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{content:" ";display:table}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-group:before,.form-horizontal .form-group:after{content:" ";display:table}.form-horizontal .form-group:after{clear:both}@media(min-width:768px){.form-horizontal .control-label{text-align:right}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.428571429;text-align:center;vertical-align:middle;cursor:pointer;border:1px solid transparent;border-radius:1px;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-link{color:#428bca;font-weight:normal;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:3px}.btn-sm,.btn-xs{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}.btn-xs{padding:1px 5px}.btn-block{display:block;width:100%;padding-left:0;padding-right:0}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-print:before{content:"\e045"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-briefcase:before{content:"\1f4bc"}.glyphicon-calendar:before{content:"\1f4c5"}.glyphicon-pushpin:before{content:"\1f4cc"}.glyphicon-paperclip:before{content:"\1f4ce"}.glyphicon-camera:before{content:"\1f4f7"}.glyphicon-lock:before{content:"\1f512"}.glyphicon-bell:before{content:"\1f514"}.glyphicon-bookmark:before{content:"\1f516"}.glyphicon-fire:before{content:"\1f525"}.glyphicon-wrench:before{content:"\1f527"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;border-bottom:0 dotted;content:""}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:1px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#fff;background-color:#428bca}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0 dotted;border-bottom:4px solid #000;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}}.btn-default .caret{border-top-color:#333}.btn-primary .caret,.btn-success .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret{border-top-color:#fff}.dropup .btn-default .caret{border-bottom-color:#333}.dropup .btn-primary .caret,.dropup .btn-success .caret,.dropup .btn-warning .caret,.dropup .btn-danger .caret,.dropup .btn-info .caret{border-bottom-color:#fff}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar:before,.btn-toolbar:after{content:" ";display:table}.btn-toolbar:after{clear:both}.btn-toolbar:before,.btn-toolbar:after{content:" ";display:table}.btn-toolbar:after{clear:both}.btn-toolbar .btn-group{float:left}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group,.btn-toolbar>.btn-group+.btn-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group-xs>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px;padding:1px 5px}.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:3px}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{content:" ";display:table}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{content:" ";display:table}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:1px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:1px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child>.btn:last-child,.btn-group-vertical>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified .btn{float:none;display:table-cell;width:1%}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group.col{float:none;padding-left:0;padding-right:0}.input-group .form-control{width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:3px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:45px;line-height:45px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:1px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:1px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:3px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-4px}.input-group-btn>.btn:hover,.input-group-btn>.btn:active{z-index:2}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav:before,.nav:after{content:" ";display:table}.nav:after{clear:both}.nav:before,.nav:after{content:" ";display:table}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:1px 1px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center}@media(min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}}.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;margin-right:0}.nav-tabs.nav-justified>.active>a{border-bottom-color:#fff}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:5px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center}@media(min-width:768px){.nav-justified>li{display:table-cell;width:1%}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;margin-right:0}.nav-tabs-justified>.active>a{border-bottom-color:#fff}.tabbable:before,.tabbable:after{content:" ";display:table}.tabbable:after{clear:both}.tabbable:before,.tabbable:after{content:" ";display:table}.tabbable:after{clear:both}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.nav .caret{border-top-color:#428bca;border-bottom-color:#428bca}.nav a:hover .caret{border-top-color:#2a6496;border-bottom-color:#2a6496}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;z-index:1000;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:before,.navbar:after{content:" ";display:table}.navbar:after{clear:both}.navbar:before,.navbar:after{content:" ";display:table}.navbar:after{clear:both}@media(min-width:768px){.navbar{border-radius:0}}.navbar-header:before,.navbar-header:after{content:" ";display:table}.navbar-header:after{clear:both}.navbar-header:before,.navbar-header:after{content:" ";display:table}.navbar-header:after{clear:both}@media(min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{content:" ";display:table}.navbar-collapse:after{clear:both}.navbar-collapse:before,.navbar-collapse:after{content:" ";display:table}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media(min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-collapse .navbar-nav.navbar-left:first-child{margin-left:-15px}.navbar-collapse .navbar-nav.navbar-right:last-child{margin-right:-15px}.navbar-collapse .navbar-text:last-child{margin-right:0}}.container>.navbar-header,.container>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.container>.navbar-header,.container>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{border-width:0 0 1px}@media(min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;border-width:0 0 1px}@media(min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{z-index:1030;top:0}.navbar-fixed-bottom{bottom:0;margin-bottom:0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media(min-width:768px){.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;border:1px solid transparent;border-radius:1px}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media(max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}@media(min-width:768px){.navbar-left{float:left!important;float:left}.navbar-right{float:right!important;float:right}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media(min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}}@media(max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media(min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-nav.pull-right>li>.dropdown-menu,.navbar-nav>li>.dropdown-menu.pull-right{left:auto;right:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-text{float:left;margin-top:15px;margin-bottom:15px}@media(min-width:768px){.navbar-text{margin-left:15px;margin-right:15px}}.navbar-default{background-color:#f8f8f8;border-color:#d5d5d5}.navbar-default .navbar-brand{color:#333}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#333;background-color:transparent}.navbar-default .navbar-text{color:#333}.navbar-default .navbar-nav>li>a{color:#333}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#ccc}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e6e6e6}.navbar-default .navbar-nav>.dropdown>a:hover .caret,.navbar-default .navbar-nav>.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}.navbar-default .navbar-nav>.open>a .caret,.navbar-default .navbar-nav>.open>a:hover .caret,.navbar-default .navbar-nav>.open>a:focus .caret{border-top-color:#555;border-bottom-color:#555}.navbar-default .navbar-nav>.dropdown>a .caret{border-top-color:#333;border-bottom-color:#333}@media(max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#333}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#333}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}.navbar-inverse .navbar-nav>.dropdown>a:hover .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .navbar-nav>.dropdown>a .caret{border-top-color:#999;border-bottom-color:#999}.navbar-inverse .navbar-nav>.open>a .caret,.navbar-inverse .navbar-nav>.open>a:hover .caret,.navbar-inverse .navbar-nav>.open>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}@media(max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:1px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:1px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.428571429;text-decoration:none;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{background-color:#eee}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca;cursor:default}.pagination>.disabled>span,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager:before,.pager:after{content:" ";display:table}.pager:after{clear:both}.pager:before,.pager:after{content:" ";display:table}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:#808080}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#999;border-radius:10px}.badge:empty{display:none}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.btn .badge{position:relative;top:-1px}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;font-size:21px;font-weight:200;line-height:2.1428571435;color:inherit;background-color:#eee}.jumbotron h1{line-height:1;color:inherit}.jumbotron p{line-height:1.4}.container .jumbotron{border-radius:3px}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1{font-size:63px}}.thumbnail{padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:1px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto;display:block}.thumbnail>img{display:block;max-width:100%;height:auto}a.thumbnail:hover,a.thumbnail:focus{border-color:#428bca}.thumbnail>img{margin-left:auto;margin-right:auto}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:1px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#356635}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#2d6987}.alert-warning{background-color:#fcf8e3;border-color:#fbeed5;color:#c09853}.alert-warning hr{border-top-color:#f8e5be}.alert-warning .alert-link{color:#a47e3c}.alert-danger{background-color:#f2dede;border-color:#eed3d7;color:#b94a48}.alert-danger hr{border-top-color:#e6c1c7}.alert-danger .alert-link{color:#953b39}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:1px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:1px;border-top-left-radius:1px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:1px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-body:before,.panel-body:after{content:" ";display:table}.panel-body:after{clear:both}.panel-body:before,.panel-body:after{content:" ";display:table}.panel-body:after{clear:both}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0}.panel>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.list-group .list-group-item:last-child{border-bottom:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table{margin-bottom:0}.panel>.panel-body+.table{border-top:1px solid #ddd}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:0;border-top-left-radius:0}.panel-title{margin-top:0;margin-bottom:0;font-size:16px}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:0;border-bottom-left-radius:0}.panel-group .panel{margin-bottom:0;border-radius:1px;overflow:hidden}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-warning{border-color:#fbeed5}.panel-warning>.panel-heading{color:#c09853;background-color:#fcf8e3;border-color:#fbeed5}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#fbeed5}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#fbeed5}.panel-danger{border-color:#eed3d7}.panel-danger>.panel-heading{color:#b94a48;background-color:#f2dede;border-color:#eed3d7}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#eed3d7}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#eed3d7}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:1px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:3px}.well-sm{padding:9px;border-radius:1px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}body.modal-open,.modal-open .navbar-fixed-top,.modal-open .navbar-fixed-bottom{margin-right:15px}.modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{margin-left:auto;margin-right:auto;width:auto;padding:10px;z-index:1050}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:3px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1030;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.428571429px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.428571429}.modal-body{position:relative;padding:20px}.modal-footer{margin-top:15px;padding:19px 20px 20px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{content:" ";display:table}.modal-footer:after{clear:both}.modal-footer:before,.modal-footer:after{content:" ";display:table}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media screen and (min-width:768px){.modal-dialog{left:50%;right:auto;width:600px;padding-top:30px;padding-bottom:30px}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}}.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:1px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:3px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top .arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right .arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom .arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left .arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-control.left{background-image:-webkit-gradient(linear,0% top,100% top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0.0001)));background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.5) 0),color-stop(rgba(0,0,0,0.0001) 100%));background-image:-moz-linear-gradient(left,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-gradient(linear,0% top,100% top,from(rgba(0,0,0,0.0001)),to(rgba(0,0,0,0.5)));background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.0001) 0),color-stop(rgba(0,0,0,0.5) 100%));background-image:-moz-linear-gradient(left,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1)}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;left:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.affix{position:fixed}@-ms-viewport{width:device-width}@media screen and (max-width:400px){@-ms-viewport{width:320px}}.hidden{display:none!important;visibility:hidden!important}.visible-xs{display:none!important}tr.visible-xs{display:none!important}th.visible-xs,td.visible-xs{display:none!important}@media(max-width:767px){.visible-xs{display:block!important}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-xs.visible-sm{display:block!important}tr.visible-xs.visible-sm{display:table-row!important}th.visible-xs.visible-sm,td.visible-xs.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-xs.visible-md{display:block!important}tr.visible-xs.visible-md{display:table-row!important}th.visible-xs.visible-md,td.visible-xs.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-xs.visible-lg{display:block!important}tr.visible-xs.visible-lg{display:table-row!important}th.visible-xs.visible-lg,td.visible-xs.visible-lg{display:table-cell!important}}.visible-sm{display:none!important}tr.visible-sm{display:none!important}th.visible-sm,td.visible-sm{display:none!important}@media(max-width:767px){.visible-sm.visible-xs{display:block!important}tr.visible-sm.visible-xs{display:table-row!important}th.visible-sm.visible-xs,td.visible-sm.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-sm{display:block!important}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-sm.visible-md{display:block!important}tr.visible-sm.visible-md{display:table-row!important}th.visible-sm.visible-md,td.visible-sm.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-sm.visible-lg{display:block!important}tr.visible-sm.visible-lg{display:table-row!important}th.visible-sm.visible-lg,td.visible-sm.visible-lg{display:table-cell!important}}.visible-md{display:none!important}tr.visible-md{display:none!important}th.visible-md,td.visible-md{display:none!important}@media(max-width:767px){.visible-md.visible-xs{display:block!important}tr.visible-md.visible-xs{display:table-row!important}th.visible-md.visible-xs,td.visible-md.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-md.visible-sm{display:block!important}tr.visible-md.visible-sm{display:table-row!important}th.visible-md.visible-sm,td.visible-md.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-md{display:block!important}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-md.visible-lg{display:block!important}tr.visible-md.visible-lg{display:table-row!important}th.visible-md.visible-lg,td.visible-md.visible-lg{display:table-cell!important}}.visible-lg{display:none!important}tr.visible-lg{display:none!important}th.visible-lg,td.visible-lg{display:none!important}@media(max-width:767px){.visible-lg.visible-xs{display:block!important}tr.visible-lg.visible-xs{display:table-row!important}th.visible-lg.visible-xs,td.visible-lg.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-lg.visible-sm{display:block!important}tr.visible-lg.visible-sm{display:table-row!important}th.visible-lg.visible-sm,td.visible-lg.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-lg.visible-md{display:block!important}tr.visible-lg.visible-md{display:table-row!important}th.visible-lg.visible-md,td.visible-lg.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-lg{display:block!important}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}.hidden-xs{display:block!important}tr.hidden-xs{display:table-row!important}th.hidden-xs,td.hidden-xs{display:table-cell!important}@media(max-width:767px){.hidden-xs{display:none!important}tr.hidden-xs{display:none!important}th.hidden-xs,td.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-xs.hidden-sm{display:none!important}tr.hidden-xs.hidden-sm{display:none!important}th.hidden-xs.hidden-sm,td.hidden-xs.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-xs.hidden-md{display:none!important}tr.hidden-xs.hidden-md{display:none!important}th.hidden-xs.hidden-md,td.hidden-xs.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-xs.hidden-lg{display:none!important}tr.hidden-xs.hidden-lg{display:none!important}th.hidden-xs.hidden-lg,td.hidden-xs.hidden-lg{display:none!important}}.hidden-sm{display:block!important}tr.hidden-sm{display:table-row!important}th.hidden-sm,td.hidden-sm{display:table-cell!important}@media(max-width:767px){.hidden-sm.hidden-xs{display:none!important}tr.hidden-sm.hidden-xs{display:none!important}th.hidden-sm.hidden-xs,td.hidden-sm.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}tr.hidden-sm{display:none!important}th.hidden-sm,td.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-sm.hidden-md{display:none!important}tr.hidden-sm.hidden-md{display:none!important}th.hidden-sm.hidden-md,td.hidden-sm.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-sm.hidden-lg{display:none!important}tr.hidden-sm.hidden-lg{display:none!important}th.hidden-sm.hidden-lg,td.hidden-sm.hidden-lg{display:none!important}}.hidden-md{display:block!important}tr.hidden-md{display:table-row!important}th.hidden-md,td.hidden-md{display:table-cell!important}@media(max-width:767px){.hidden-md.hidden-xs{display:none!important}tr.hidden-md.hidden-xs{display:none!important}th.hidden-md.hidden-xs,td.hidden-md.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-md.hidden-sm{display:none!important}tr.hidden-md.hidden-sm{display:none!important}th.hidden-md.hidden-sm,td.hidden-md.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}tr.hidden-md{display:none!important}th.hidden-md,td.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-md.hidden-lg{display:none!important}tr.hidden-md.hidden-lg{display:none!important}th.hidden-md.hidden-lg,td.hidden-md.hidden-lg{display:none!important}}.hidden-lg{display:block!important}tr.hidden-lg{display:table-row!important}th.hidden-lg,td.hidden-lg{display:table-cell!important}@media(max-width:767px){.hidden-lg.hidden-xs{display:none!important}tr.hidden-lg.hidden-xs{display:none!important}th.hidden-lg.hidden-xs,td.hidden-lg.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-lg.hidden-sm{display:none!important}tr.hidden-lg.hidden-sm{display:none!important}th.hidden-lg.hidden-sm,td.hidden-lg.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-lg.hidden-md{display:none!important}tr.hidden-lg.hidden-md{display:none!important}th.hidden-lg.hidden-md,td.hidden-lg.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-lg{display:none!important}tr.hidden-lg{display:none!important}th.hidden-lg,td.hidden-lg{display:none!important}}.visible-print{display:none!important}tr.visible-print{display:none!important}th.visible-print,td.visible-print{display:none!important}@media print{.visible-print{display:block!important}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}.hidden-print{display:none!important}tr.hidden-print{display:none!important}th.hidden-print,td.hidden-print{display:none!important}}@font-face{font-family:'FontAwesome';src:url('.//fonts/fontawesome/fontawesome-webfont.eot');src:url('.//fonts/fontawesome/fontawesome-webfont.eot') format('embedded-opentype'),url('.//fonts/fontawesome/fontawesome-webfont.woff') format('woff'),url('.//fonts/fontawesome/fontawesome-webfont.ttf') format('truetype'),url('.//fonts/fontawesome/fontawesome-webfont.svg') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.3333333333333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.2857142857142858em;text-align:center}.fa-ul{padding-left:0;margin-left:2.142857142857143em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;top:.14285714285714285em;text-align:center}.fa-li.fa-lg{left:-1.8571428571428572em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);-ms-transform:scale(-1,1);-o-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);-webkit-transform:scale(1,-1);-moz-transform:scale(1,-1);-ms-transform:scale(1,-1);-o-transform:scale(1,-1);transform:scale(1,-1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-move:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-resize-full:before{content:"\f065"}.fa-resize-small:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-resize-vertical:before{content:"\f07d"}.fa-resize-horizontal:before{content:"\f07e"}.fa-bar-chart-o:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-fullscreen:before{content:"\f0b2"}.fa-group:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-asc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-desc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building:before{content:"\f0f7"}.fa-hospital:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-expand-o:before{content:"\f116"}.fa-collapse-o:before{content:"\f117"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-reply-all:before{content:"\f122"}.fa-mail-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-o:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-horizontal:before{content:"\f141"}.fa-ellipsis-vertical:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.link-inherit{color:inherit}.link-inherit:hover,.link-inherit:focus{color:inherit}@font-face{font-family:'Merriweather';font-style:normal;font-weight:250;src:local('Merriweather Light'),url('.//fonts/merriweather/250.woff') format('woff')}@font-face{font-family:'Merriweather';font-style:italic;font-weight:250;src:local('Merriweather Light Italic'),url('.//fonts/merriweather/250i.woff') format('woff')}@font-face{font-family:'Merriweather';font-style:normal;font-weight:400;src:local('Merriweather'),url('.//fonts/merriweather/400.woff') format('woff')}@font-face{font-family:'Merriweather';font-style:italic;font-weight:400;src:local('Merriweather Italic'),url('.//fonts/merriweather/400i.woff') format('woff')}@font-face{font-family:'Merriweather';font-style:normal;font-weight:700;src:local('Merriweather Bold'),url('.//fonts/merriweather/700.woff') format('woff')}@font-face{font-family:'Merriweather';font-style:italic;font-weight:700;src:local('Merriweather Bold Italic'),url('.//fonts/merriweather/700i.woff') format('woff')}@font-face{font-family:'Merriweather';font-style:normal;font-weight:900;src:local('Merriweather Heavy'),url('.//fonts/merriweather/900.woff') format('woff')}@font-face{font-family:'Merriweather';font-style:italic;font-weight:900;src:local('Merriweather Heavy Italic'),url('.//fonts/merriweather/900i.woff') format('woff')}@font-face{font-family:'Open Sans';font-style:normal;font-weight:300;src:local('Open Sans Light'),url('.//fonts/opensans/300.woff') format('woff')}@font-face{font-family:'Open Sans';font-style:italic;font-weight:300;src:local('Open Sans Light Italic'),url('.//fonts/opensans/300i.woff') format('woff')}@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:local('Open Sans Regular'),url('.//fonts/opensans/400.woff') format('woff')}@font-face{font-family:'Open Sans';font-style:italic;font-weight:400;src:local('Open Sans Italic'),url('.//fonts/opensans/400i.woff') format('woff')}@font-face{font-family:'Open Sans';font-style:normal;font-weight:600;src:local('Open Sans Semibold'),url('.//fonts/opensans/600.woff') format('woff')}@font-face{font-family:'Open Sans';font-style:italic;font-weight:600;src:local('Open Sans Semibold Italic'),url('.//fonts/opensans/600i.woff') format('woff')}@font-face{font-family:'Open Sans';font-style:normal;font-weight:700;src:local('Open Sans Bold'),url('.//fonts/opensans/700.woff') format('woff')}@font-face{font-family:'Open Sans';font-style:italic;font-weight:700;src:local('Open Sans Bold Italic'),url('.//fonts/opensans/700i.woff') format('woff')}.book-langs-index{width:100%;height:100%;padding:40px 0;margin:0;overflow:auto}@media(max-width:600px){.book-langs-index{padding:0}}.book-langs-index .inner{max-width:600px;width:100%;margin:0 auto;padding:30px;background:#fff;border-radius:3px}.book-langs-index .inner h3{margin:0}.book-langs-index .inner .languages{list-style:none;padding:20px 30px;margin-top:20px;border-top:1px solid #eee}.book-langs-index .inner .languages:before,.book-langs-index .inner .languages:after{content:" ";display:table}.book-langs-index .inner .languages:after{clear:both}.book-langs-index .inner .languages:before,.book-langs-index .inner .languages:after{content:" ";display:table}.book-langs-index .inner .languages:after{clear:both}.book-langs-index .inner .languages li{width:50%;float:left;padding:10px 5px;font-size:16px}@media(max-width:600px){.book-langs-index .inner .languages li{width:100%;max-width:100%}}.book .book-header{font-family:"Open Sans","Clear Sans","Helvetica Neue",Helvetica,Arial,sans-serif;position:absolute;overflow:visible;top:0;right:0;left:0;height:50px;z-index:2;font-size:.85em;color:#7e888b;background:#fff;border-bottom:1px solid rgba(0,0,0,0.07)}.book .book-header .btn{display:block;height:50px;padding:0 15px;border-bottom:0;color:#7e888b;text-transform:uppercase;line-height:50px;-webkit-box-shadow:none!important;box-shadow:none!important;position:relative}.book .book-header .btn:hover{position:relative;text-decoration:none;color:#151515;background:#f0f2f4}.book .book-header h1{margin:0;font-size:20px;text-align:center;line-height:50px;padding-left:200px;padding-right:200px;-webkit-transition:margin-left .5s ease;transition:margin-left .5s ease}.book .book-header h1 a,.book .book-header h1 a:hover{color:inherit;text-decoration:none}@media(max-width:800px){.book .book-header h1{display:none}}.book .book-header h1 i{display:none}.book.is-loading .book-header h1 i{display:inline-block}.book.is-loading .book-header h1 a{display:none}.book.with-summary .book-header h1{margin-left:250px}.book.without-animation .book-header h1{-webkit-transition:none!important;transition:none!important}.book.color-theme-1 .book-header{color:#afa790;background:#ece3c4}.book.color-theme-1 .book-header .btn{color:#afa790}.book.color-theme-1 .book-header .btn:hover{color:#73553c;background:#e2dabe}.book.color-theme-2 .book-header{color:#7e888b;background:#1d1f21}.book.color-theme-2 .book-header .btn{color:#7e888b}.book.color-theme-2 .book-header .btn:hover{color:#c9c9c9;background:#0b0d0e}.book .book-summary{font-family:"Open Sans","Clear Sans","Helvetica Neue",Helvetica,Arial,sans-serif;position:absolute;top:50px;left:-250px;bottom:0;z-index:1;width:250px;color:#c4cdd4;background:#fff;border-right:1px solid rgba(0,0,0,0.07);-webkit-transition:all .5s ease;transition:all .5s ease}.book .book-summary .book-search{padding:6px;background:transparent;position:absolute;top:-50px;left:0;right:0;-webkit-transition:top .5s ease;transition:top .5s ease}.book .book-summary .book-search input,.book .book-summary .book-search input:focus{width:100%;border:1px solid rgba(0,0,0,0.07);-webkit-box-shadow:none;box-shadow:none}.book .book-summary ul.summary{position:absolute;top:0;left:0;right:0;bottom:0;overflow-y:auto;list-style:none;margin:0;padding:0;-webkit-transition:top .5s ease;transition:top .5s ease}.book .book-summary ul.summary li{list-style:none}.book .book-summary ul.summary li.divider{height:1px;margin:7px 0;overflow:hidden;background:rgba(0,0,0,0.07)}.book .book-summary ul.summary li i.fa-check{display:none;position:absolute;right:9px;top:16px;font-size:9px;color:#3c3}.book .book-summary ul.summary li.done>a{color:#364149;font-weight:normal}.book .book-summary ul.summary li.done>a i{display:inline}.book .book-summary ul.summary li a,.book .book-summary ul.summary li span{display:block;padding:10px 15px;border-bottom:0;color:#364149;background:transparent;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;position:relative}.book .book-summary ul.summary li span{cursor:not-allowed;opacity:.3;filter:alpha(opacity=30)}.book .book-summary ul.summary li.active>a,.book .book-summary ul.summary li a:hover{color:#008cff;background:transparent;text-decoration:none}.book .book-summary ul.summary li ul{padding-left:20px}@media(max-width:600px){.book .book-summary{width:100%;bottom:0;left:-100%}}.book.with-summary .book-summary{left:0}.book.without-animation .book-summary{-webkit-transition:none!important;transition:none!important}.book.with-search .book-summary .book-search{top:0}.book.with-search .book-summary ul.summary{top:50px}.book.color-theme-1 .book-summary{color:#afa790;background:#f3eacb}.book.color-theme-1 .book-summary .book-search{background:transparent}.book.color-theme-1 .book-summary .book-search input,.book.color-theme-1 .book-summary .book-search input:focus{border:1px solid #d6cfba}.book.color-theme-1 .book-summary ul.summary li.divider{background:rgba(0,0,0,0.07);box-shadow:none}.book.color-theme-1 .book-summary ul.summary li i.fa-check{color:#3c3}.book.color-theme-1 .book-summary ul.summary li.done>a{color:#877f6a}.book.color-theme-1 .book-summary ul.summary li a,.book.color-theme-1 .book-summary ul.summary li span{color:#877f6a;background:transparent}.book.color-theme-1 .book-summary ul.summary li.active>a,.book.color-theme-1 .book-summary ul.summary li a:hover{color:#704214;background:transparent}.book.color-theme-2 .book-summary{color:#c4cdd4;background:#1d1f21}.book.color-theme-2 .book-summary .book-search{background:transparent}.book.color-theme-2 .book-summary .book-search input,.book.color-theme-2 .book-summary .book-search input:focus{border:1px solid #000}.book.color-theme-2 .book-summary ul.summary li.divider{background:#1d1f21;box-shadow:none}.book.color-theme-2 .book-summary ul.summary li i.fa-check{color:#3c3}.book.color-theme-2 .book-summary ul.summary li.done>a{color:#6c8193}.book.color-theme-2 .book-summary ul.summary li a,.book.color-theme-2 .book-summary ul.summary li span{color:#6c8193;background:transparent}.book.color-theme-2 .book-summary ul.summary li.active>a,.book.color-theme-2 .book-summary ul.summary li a:hover{color:#008cff;background:transparent}.book-header #font-settings-wrapper{position:relative}.book-header #font-settings-wrapper .dropdown-menu{background-color:#fff;border-color:rgba(0,0,0,0.07);padding:0}.book-header #font-settings-wrapper .dropdown-menu .dropdown-caret{position:absolute;top:14px;left:-8px;width:10px;height:18px;float:left;overflow:hidden}.book-header #font-settings-wrapper .dropdown-menu .dropdown-caret .caret-outer{position:absolute;border-bottom:9px solid transparent;border-top:9px solid transparent;border-right:9px solid rgba(0,0,0,0.1);height:auto;left:0;top:0;width:auto;display:inline-block;margin-left:-1px}.book-header #font-settings-wrapper .dropdown-menu .dropdown-caret .caret-inner{position:absolute;display:inline-block;margin-left:-1px;top:0;left:1px;border-bottom:9px solid transparent;border-top:9px solid transparent;border-right:9px solid #fff}.book-header #font-settings-wrapper .dropdown-menu button{border:0;background-color:transparent;color:#7e888b}.book-header #font-settings-wrapper .dropdown-menu button:hover{color:#151515;background-color:#f0f2f4}.book-header #font-settings-wrapper .dropdown-menu #enlarge-font-size{width:50%;font-size:1.4em}.book-header #font-settings-wrapper .dropdown-menu #reduce-font-size{width:50.5%;font-size:1em}.book-header #font-settings-wrapper .dropdown-menu .btn-group-xs .btn{width:33.7%;padding:initial}.book-header #font-settings-wrapper .dropdown-menu .list-group{margin:0}.book-header #font-settings-wrapper .dropdown-menu .list-group .list-group-item{cursor:pointer;background-color:transparent;border-color:rgba(0,0,0,0.07);border-width:1px 0!important}.book-header #font-settings-wrapper .dropdown-menu .list-group .list-group-item:hover{color:#151515;background-color:#f0f2f4!important}.book-header #font-settings-wrapper .dropdown-menu .list-group .list-group-item.active{color:#151515;background-color:#f0f2f4!important}.book-header #font-settings-wrapper .dropdown-menu.open{display:block}.color-theme-1 #font-settings-wrapper .dropdown-menu{background-color:#f3eacb;border-color:rgba(0,0,0,0.07)}.color-theme-1 #font-settings-wrapper .dropdown-menu .dropdown-caret .caret-inner{border-right:9px solid #f3eacb}.color-theme-1 #font-settings-wrapper .dropdown-menu button{color:#afa790}.color-theme-1 #font-settings-wrapper .dropdown-menu button:hover{color:#73553c;background-color:#e2dabe}.color-theme-1 #font-settings-wrapper .dropdown-menu .list-group .list-group-item{border-color:rgba(0,0,0,0.07)}.color-theme-1 #font-settings-wrapper .dropdown-menu .list-group .list-group-item:hover{color:#73553c;background-color:#e2dabe!important}.color-theme-1 #font-settings-wrapper .dropdown-menu .list-group .list-group-item.active{color:#73553c;background-color:#e2dabe!important}.color-theme-2 #font-settings-wrapper .dropdown-menu{background-color:#1d1f21;border-color:#1d1f21}.color-theme-2 #font-settings-wrapper .dropdown-menu .dropdown-caret .caret-inner{border-right:9px solid #1d1f21}.color-theme-2 #font-settings-wrapper .dropdown-menu button{color:#7e888b}.color-theme-2 #font-settings-wrapper .dropdown-menu button:hover{color:#c9c9c9;background-color:#0b0d0e}.color-theme-2 #font-settings-wrapper .dropdown-menu .list-group .list-group-item{border-color:#1d1f21}.color-theme-2 #font-settings-wrapper .dropdown-menu .list-group .list-group-item:hover{color:#c9c9c9;background-color:#0b0d0e!important}.color-theme-2 #font-settings-wrapper .dropdown-menu .list-group .list-group-item.active{color:#c9c9c9;background-color:#0b0d0e!important}.book{position:relative;width:100%;height:100%}.book .book-body{position:absolute;top:50px;right:0;left:0;bottom:0;color:#000;background:#fff;-webkit-transition:left .5s ease;transition:left .5s ease}.book .book-body .body-inner{position:absolute;top:0;right:0;left:0;bottom:0;overflow-y:auto}.book .book-body .page-wrapper{position:relative;outline:0}.book .book-body .page-wrapper .page-inner{max-width:800px;margin:0 auto}.book .book-body .page-wrapper .page-inner section{margin:0;padding:5px 15px;background:#fff;border-radius:2px;line-height:1.6em;font-size:1.6rem}.book .book-body .page-wrapper .page-inner .btn-group .btn{border-radius:0;background:#eee;border:0}@media(max-width:1240px){.book .book-body{overflow-y:auto}.book .book-body .body-inner{position:static;padding-bottom:20px;min-height:calc(100% - 57px)}}@media(min-width:600px){.book.with-summary .book-body{left:250px}}.book.without-animation .book-body{-webkit-transition:none!important;transition:none!important}.book.color-theme-1 .book-body{color:#704214;background:#f3eacb}.book.color-theme-1 .book-body .page-wrapper .page-inner section{background:#f3eacb}.book.color-theme-2 .book-body{color:#a4b1b1;background:#1d1f21}.book.color-theme-2 .book-body .page-wrapper .page-inner section{background:#1d1f21}.book.font-size-0 .book-body{font-size:1.2rem}.book.font-size-1 .book-body{font-size:1.4rem}.book.font-size-2 .book-body{font-size:1.6rem}.book.font-size-3 .book-body{font-size:2.2rem}.book.font-size-4 .book-body{font-size:4rem}.book.font-family-0{font-family:"Merriweather",Georgia,serif}.book.font-family-1{font-family:"Open Sans","Clear Sans","Helvetica Neue",Helvetica,Arial,sans-serif}.book .book-body .page-wrapper .page-inner section.exercise{padding:0;margin:20px 15px;border:3px solid #2f8cde}.book .book-body .page-wrapper .page-inner section.exercise .header{padding:5px 15px;color:#fff;background:#2f8cde}.book .book-body .page-wrapper .page-inner section.exercise .header h2{margin:0;font-size:20px}.book .book-body .page-wrapper .page-inner section.exercise .message{margin:5px 15px}.book .book-body .page-wrapper .page-inner section.exercise .editor{min-height:50px;font-size:14px;border-top:1px solid #ddd;border-bottom:1px solid #ddd}.book .book-body .page-wrapper .page-inner section.exercise .alert{display:none;margin:0;margin-bottom:10px;padding:8px 15px}.book .book-body .page-wrapper .page-inner section.exercise.return-error .alert-danger{display:block}.book .book-body .page-wrapper .page-inner section.exercise.return-success .alert-success{display:block}.book .book-body .page-wrapper .page-inner section.quiz{padding:0;margin:20px 15px;border:3px solid #2f8cde}.book .book-body .page-wrapper .page-inner section.quiz .header{padding:5px 15px;color:#fff;background:#2f8cde}.book .book-body .page-wrapper .page-inner section.quiz .header h2{margin:0;font-size:20px}.book .book-body .page-wrapper .page-inner section.quiz .message{margin:15px}.book .book-body .page-wrapper .page-inner section.quiz .question .question-header{padding:5px 15px;color:#fff;background:#2f8cde}.book .book-body .page-wrapper .page-inner section.quiz .question .question-inner{padding:15px}.book .book-body .page-wrapper .page-inner section.quiz .question .question-inner .quiz-label{font-weight:normal;cursor:pointer}.book .book-body .page-wrapper .page-inner section.quiz .question table{margin-bottom:10px;width:100%}.book .book-body .page-wrapper .page-inner section.quiz .question th,.book .book-body .page-wrapper .page-inner section.quiz .question td{padding-right:5px}.book .book-body .page-wrapper .page-inner section.quiz .question li{list-style-type:none}.book .book-body .page-wrapper .page-inner section.quiz .question li input{margin-right:10px}.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal{color:#704214}.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code{background:#fdf6e3;color:#657b83;border-color:#f8df9c}.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs{display:block;padding:.5em;background:#fdf6e3;color:#657b83}.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-comment,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-comment,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-template_comment,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-template_comment,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .diff .hljs-header,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .diff .hljs-header,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-doctype,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-doctype,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-pi,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-pi,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .lisp .hljs-string,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .lisp .hljs-string,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-javadoc,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-javadoc{color:#93a1a1}.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-keyword,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-keyword,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-winutils,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-winutils,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .method,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .method,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-addition,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-addition,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-tag,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .css .hljs-tag,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-request,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-request,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-status,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-status,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .nginx .hljs-title,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .nginx .hljs-title{color:#859900}.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-number,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-number,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-command,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-command,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-string,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-string,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-tag .hljs-value,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-tag .hljs-value,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-rules .hljs-value,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-rules .hljs-value,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-phpdoc,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-phpdoc,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .tex .hljs-formula,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .tex .hljs-formula,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-regexp,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-regexp,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-hexcolor,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-hexcolor,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-link_url,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-link_url{color:#2aa198}.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-title,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-title,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-localvars,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-localvars,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-chunk,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-chunk,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-decorator,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-decorator,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-built_in,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-built_in,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-identifier,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-identifier,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .vhdl .hljs-literal,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .vhdl .hljs-literal,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-id,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-id,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-function,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .css .hljs-function{color:#268bd2}.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-attribute,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-attribute,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-variable,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-variable,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .lisp .hljs-body,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .lisp .hljs-body,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .smalltalk .hljs-number,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .smalltalk .hljs-number,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-constant,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-constant,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-class .hljs-title,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-class .hljs-title,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-parent,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-parent,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .haskell .hljs-type,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .haskell .hljs-type,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-link_reference,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-link_reference{color:#b58900}.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-preprocessor,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-preprocessor,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-preprocessor .hljs-keyword,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-preprocessor .hljs-keyword,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-pragma,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-pragma,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-shebang,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-shebang,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-symbol,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-symbol,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-symbol .hljs-string,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-symbol .hljs-string,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .diff .hljs-change,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .diff .hljs-change,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-special,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-special,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-attr_selector,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-attr_selector,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-subst,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-subst,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-cdata,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-cdata,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .clojure .hljs-title,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .clojure .hljs-title,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-pseudo,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .css .hljs-pseudo,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-header,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-header{color:#cb4b16}.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-deletion,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-deletion,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-important,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-important{color:#dc322f}.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-link_label,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-link_label{color:#6c71c4}.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .tex .hljs-formula,.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .tex .hljs-formula{background:#eee8d5}.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal{color:#a4b1b1}.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code{background:black;color:#eaeaea;border-color:#000}.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-comment,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-comment,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-title,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-title{color:#969896}.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-variable,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-variable,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-attribute,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-attribute,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-tag,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-tag,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-regexp,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-regexp,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-constant,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-constant,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-tag .hljs-title,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .hljs-tag .hljs-title,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-pi,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .hljs-pi,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-doctype,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .hljs-doctype,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .html .hljs-doctype,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .html .hljs-doctype,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-id,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .css .hljs-id,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-class,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .css .hljs-class,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-pseudo,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .css .hljs-pseudo{color:#d54e53}.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-number,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-number,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-preprocessor,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-preprocessor,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-pragma,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-pragma,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-built_in,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-built_in,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-literal,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-literal,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-params,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-params,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-constant,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-constant{color:#e78c45}.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-class .hljs-title,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-class .hljs-title,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-rules .hljs-attribute,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .css .hljs-rules .hljs-attribute{color:#e7c547}.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-string,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-string,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-value,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-value,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-inheritance,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-inheritance,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-header,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-header,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-symbol,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-symbol,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-cdata,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .hljs-cdata{color:#b9ca4a}.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-hexcolor,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .css .hljs-hexcolor{color:#70c0b1}.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-function,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-function,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .python .hljs-decorator,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .python .hljs-decorator,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .python .hljs-title,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .python .hljs-title,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-function .hljs-title,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-function .hljs-title,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-title .hljs-keyword,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-title .hljs-keyword,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .perl .hljs-sub,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .perl .hljs-sub,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .javascript .hljs-title,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .javascript .hljs-title,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .coffeescript .hljs-title,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .coffeescript .hljs-title{color:#7aa6da}.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-keyword,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-keyword,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .javascript .hljs-function,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .javascript .hljs-function{color:#c397d8}.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs{display:block;background:black;color:#eaeaea;padding:.5em}.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .coffeescript .javascript,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .coffeescript .javascript,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .javascript .xml,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .javascript .xml,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .tex .hljs-formula,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .tex .hljs-formula,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .javascript,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .javascript,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .vbscript,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .vbscript,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .css,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .css,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-cdata,.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .hljs-cdata{opacity:.5}.book .book-body .page-wrapper .page-inner section.normal{padding-bottom:25px;padding-top:15px;color:#000;letter-spacing:.01rem}.book .book-body .page-wrapper .page-inner section.normal>*:first-child{margin-top:0!important}.book .book-body .page-wrapper .page-inner section.normal>*:last-child{margin-bottom:0!important}.book .book-body .page-wrapper .page-inner section.normal a{color:#4183c4}.book .book-body .page-wrapper .page-inner section.normal a.absent{color:#c00}.book .book-body .page-wrapper .page-inner section.normal a.anchor{display:block;padding-left:30px;margin-left:-30px;cursor:pointer;position:absolute;top:0;left:0;bottom:0}.book .book-body .page-wrapper .page-inner section.normal h1,.book .book-body .page-wrapper .page-inner section.normal h2,.book .book-body .page-wrapper .page-inner section.normal h3,.book .book-body .page-wrapper .page-inner section.normal h4,.book .book-body .page-wrapper .page-inner section.normal h5,.book .book-body .page-wrapper .page-inner section.normal h6{line-height:1.7;margin:20px 0 10px;padding:0;font-weight:bold;-webkit-font-smoothing:antialiased;cursor:text;position:relative}.book .book-body .page-wrapper .page-inner section.normal h1 tt,.book .book-body .page-wrapper .page-inner section.normal h1 code{font-size:inherit}.book .book-body .page-wrapper .page-inner section.normal h2 tt,.book .book-body .page-wrapper .page-inner section.normal h2 code{font-size:inherit}.book .book-body .page-wrapper .page-inner section.normal h3 tt,.book .book-body .page-wrapper .page-inner section.normal h3 code{font-size:inherit}.book .book-body .page-wrapper .page-inner section.normal h4 tt,.book .book-body .page-wrapper .page-inner section.normal h4 code{font-size:inherit}.book .book-body .page-wrapper .page-inner section.normal h5 tt,.book .book-body .page-wrapper .page-inner section.normal h5 code{font-size:inherit}.book .book-body .page-wrapper .page-inner section.normal h6 tt,.book .book-body .page-wrapper .page-inner section.normal h6 code{font-size:inherit}.book .book-body .page-wrapper .page-inner section.normal h1{font-size:2.5em}.book .book-body .page-wrapper .page-inner section.normal h2{font-size:2em;border-bottom:1px solid #eee}.book .book-body .page-wrapper .page-inner section.normal h3{font-size:1.5em}.book .book-body .page-wrapper .page-inner section.normal h4{font-size:1.2em}.book .book-body .page-wrapper .page-inner section.normal h5{font-size:1em}.book .book-body .page-wrapper .page-inner section.normal h6{font-size:1em}.book .book-body .page-wrapper .page-inner section.normal p,.book .book-body .page-wrapper .page-inner section.normal blockquote,.book .book-body .page-wrapper .page-inner section.normal ul,.book .book-body .page-wrapper .page-inner section.normal ol,.book .book-body .page-wrapper .page-inner section.normal dl,.book .book-body .page-wrapper .page-inner section.normal table,.book .book-body .page-wrapper .page-inner section.normal pre{margin:15px 0}.book .book-body .page-wrapper .page-inner section.normal body>h2:first-child{margin-top:0;padding-top:0}.book .book-body .page-wrapper .page-inner section.normal body>h1:first-child{margin-top:0;padding-top:0}.book .book-body .page-wrapper .page-inner section.normal body>h1:first-child+h2{margin-top:0;padding-top:0}.book .book-body .page-wrapper .page-inner section.normal body>h3:first-child,.book .book-body .page-wrapper .page-inner section.normal body>h4:first-child,.book .book-body .page-wrapper .page-inner section.normal body>h5:first-child,.book .book-body .page-wrapper .page-inner section.normal body>h6:first-child{margin-top:0;padding-top:0}.book .book-body .page-wrapper .page-inner section.normal a:first-child h1,.book .book-body .page-wrapper .page-inner section.normal a:first-child h2,.book .book-body .page-wrapper .page-inner section.normal a:first-child h3,.book .book-body .page-wrapper .page-inner section.normal a:first-child h4,.book .book-body .page-wrapper .page-inner section.normal a:first-child h5,.book .book-body .page-wrapper .page-inner section.normal a:first-child h6{margin-top:0;padding-top:0}.book .book-body .page-wrapper .page-inner section.normal h1 p,.book .book-body .page-wrapper .page-inner section.normal h2 p,.book .book-body .page-wrapper .page-inner section.normal h3 p,.book .book-body .page-wrapper .page-inner section.normal h4 p,.book .book-body .page-wrapper .page-inner section.normal h5 p,.book .book-body .page-wrapper .page-inner section.normal h6 p{margin-top:0}.book .book-body .page-wrapper .page-inner section.normal li p.first{display:inline-block}.book .book-body .page-wrapper .page-inner section.normal ul,.book .book-body .page-wrapper .page-inner section.normal ol{padding-left:30px}.book .book-body .page-wrapper .page-inner section.normal ul :first-child,.book .book-body .page-wrapper .page-inner section.normal ol :first-child{margin-top:0}.book .book-body .page-wrapper .page-inner section.normal ul :last-child,.book .book-body .page-wrapper .page-inner section.normal ol :last-child{margin-bottom:0}.book .book-body .page-wrapper .page-inner section.normal ul p{margin:0}.book .book-body .page-wrapper .page-inner section.normal ul ul{margin:0}.book .book-body .page-wrapper .page-inner section.normal dl{padding:0}.book .book-body .page-wrapper .page-inner section.normal dl dt{font-size:14px;font-weight:bold;font-style:italic;padding:0;margin:15px 0 5px}.book .book-body .page-wrapper .page-inner section.normal dl dt:first-child{padding:0}.book .book-body .page-wrapper .page-inner section.normal dl dt>:first-child{margin-top:0}.book .book-body .page-wrapper .page-inner section.normal dl dt>:last-child{margin-bottom:0}.book .book-body .page-wrapper .page-inner section.normal dl dd{margin:0 0 15px;padding:0 15px}.book .book-body .page-wrapper .page-inner section.normal dl dd>:first-child{margin-top:0}.book .book-body .page-wrapper .page-inner section.normal dl dd>:last-child{margin-bottom:0}.book .book-body .page-wrapper .page-inner section.normal blockquote{border-left:4px solid #ddd;padding:0 15px;color:#777}.book .book-body .page-wrapper .page-inner section.normal blockquote p{font-size:inherit}.book .book-body .page-wrapper .page-inner section.normal blockquote>:first-child{margin-top:0}.book .book-body .page-wrapper .page-inner section.normal blockquote>:last-child{margin-bottom:0}.book .book-body .page-wrapper .page-inner section.normal table{width:100%;padding:0}.book .book-body .page-wrapper .page-inner section.normal table tr{border-top:1px solid #ccc;background-color:white;margin:0;padding:0}.book .book-body .page-wrapper .page-inner section.normal table tr:nth-child(2n){background-color:#f8f8f8}.book .book-body .page-wrapper .page-inner section.normal table tr th{font-weight:bold;border:1px solid #ccc;text-align:left;margin:0;padding:6px 13px}.book .book-body .page-wrapper .page-inner section.normal table tr td{border:1px solid #ccc;text-align:left;margin:0;padding:6px 13px}.book .book-body .page-wrapper .page-inner section.normal table tr th :first-child,.book .book-body .page-wrapper .page-inner section.normal table tr td :first-child{margin-top:0}.book .book-body .page-wrapper .page-inner section.normal table tr th :last-child,.book .book-body .page-wrapper .page-inner section.normal table tr td :last-child{margin-bottom:0}.book .book-body .page-wrapper .page-inner section.normal img{max-width:100%;display:block;margin:0 auto}.book .book-body .page-wrapper .page-inner section.normal span.frame{display:block;overflow:hidden}.book .book-body .page-wrapper .page-inner section.normal span.frame>span{border:1px solid #ddd;display:block;float:left;overflow:hidden;margin:13px 0 0;padding:7px;width:auto}.book .book-body .page-wrapper .page-inner section.normal span.frame span img{display:block;float:left}.book .book-body .page-wrapper .page-inner section.normal span.frame span span{clear:both;color:#333;display:block;padding:5px 0 0}.book .book-body .page-wrapper .page-inner section.normal span.align-center{display:block;overflow:hidden;clear:both}.book .book-body .page-wrapper .page-inner section.normal span.align-center>span{display:block;overflow:hidden;margin:13px auto 0;text-align:center}.book .book-body .page-wrapper .page-inner section.normal span.align-center span img{margin:0 auto;text-align:center}.book .book-body .page-wrapper .page-inner section.normal span.align-right{display:block;overflow:hidden;clear:both}.book .book-body .page-wrapper .page-inner section.normal span.align-right>span{display:block;overflow:hidden;margin:13px 0 0;text-align:right}.book .book-body .page-wrapper .page-inner section.normal span.align-right span img{margin:0;text-align:right}.book .book-body .page-wrapper .page-inner section.normal span.float-left{display:block;margin-right:13px;overflow:hidden;float:left}.book .book-body .page-wrapper .page-inner section.normal span.float-left span{margin:13px 0 0}.book .book-body .page-wrapper .page-inner section.normal span.float-right{display:block;margin-left:13px;overflow:hidden;float:right}.book .book-body .page-wrapper .page-inner section.normal span.float-right>span{display:block;overflow:hidden;margin:13px auto 0;text-align:right}.book .book-body .page-wrapper .page-inner section.normal code,.book .book-body .page-wrapper .page-inner section.normal tt{margin:0 2px;padding:0 5px;white-space:nowrap;border:1px solid #eaeaea;background-color:#f8f8f8;border-radius:3px}.book .book-body .page-wrapper .page-inner section.normal pre code{margin:0;padding:0;white-space:pre;border:0;background:transparent}.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-comment,.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-title{color:#8e908c}.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-variable,.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-attribute,.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-tag,.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-regexp,.book .book-body .page-wrapper .page-inner section.normal pre code .ruby .hljs-constant,.book .book-body .page-wrapper .page-inner section.normal pre code .xml .hljs-tag .hljs-title,.book .book-body .page-wrapper .page-inner section.normal pre code .xml .hljs-pi,.book .book-body .page-wrapper .page-inner section.normal pre code .xml .hljs-doctype,.book .book-body .page-wrapper .page-inner section.normal pre code .html .hljs-doctype,.book .book-body .page-wrapper .page-inner section.normal pre code .css .hljs-id,.book .book-body .page-wrapper .page-inner section.normal pre code .css .hljs-class,.book .book-body .page-wrapper .page-inner section.normal pre code .css .hljs-pseudo{color:#c82829}.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-number,.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-preprocessor,.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-pragma,.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-built_in,.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-literal,.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-params,.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-constant{color:#f5871f}.book .book-body .page-wrapper .page-inner section.normal pre code .ruby .hljs-class .hljs-title,.book .book-body .page-wrapper .page-inner section.normal pre code .css .hljs-rules .hljs-attribute{color:#eab700}.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-string,.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-value,.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-inheritance,.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-header,.book .book-body .page-wrapper .page-inner section.normal pre code .ruby .hljs-symbol,.book .book-body .page-wrapper .page-inner section.normal pre code .xml .hljs-cdata{color:#718c00}.book .book-body .page-wrapper .page-inner section.normal pre code .css .hljs-hexcolor{color:#3e999f}.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-function,.book .book-body .page-wrapper .page-inner section.normal pre code .python .hljs-decorator,.book .book-body .page-wrapper .page-inner section.normal pre code .python .hljs-title,.book .book-body .page-wrapper .page-inner section.normal pre code .ruby .hljs-function .hljs-title,.book .book-body .page-wrapper .page-inner section.normal pre code .ruby .hljs-title .hljs-keyword,.book .book-body .page-wrapper .page-inner section.normal pre code .perl .hljs-sub,.book .book-body .page-wrapper .page-inner section.normal pre code .javascript .hljs-title,.book .book-body .page-wrapper .page-inner section.normal pre code .coffeescript .hljs-title{color:#4271ae}.book .book-body .page-wrapper .page-inner section.normal pre code .hljs-keyword,.book .book-body .page-wrapper .page-inner section.normal pre code .javascript .hljs-function{color:#8959a8}.book .book-body .page-wrapper .page-inner section.normal pre code .hljs{display:block;background:white;color:#4d4d4c;padding:.5em}.book .book-body .page-wrapper .page-inner section.normal pre code .coffeescript .javascript,.book .book-body .page-wrapper .page-inner section.normal pre code .javascript .xml,.book .book-body .page-wrapper .page-inner section.normal pre code .tex .hljs-formula,.book .book-body .page-wrapper .page-inner section.normal pre code .xml .javascript,.book .book-body .page-wrapper .page-inner section.normal pre code .xml .vbscript,.book .book-body .page-wrapper .page-inner section.normal pre code .xml .css,.book .book-body .page-wrapper .page-inner section.normal pre code .xml .hljs-cdata{opacity:.5}.book .book-body .page-wrapper .page-inner section.normal pre{font-size:inherit;line-height:1.5em;overflow:auto;padding:20px;border-radius:3px}.book .book-body .page-wrapper .page-inner section.normal pre code,.book .book-body .page-wrapper .page-inner section.normal pre tt{background-color:transparent;border:0}@-webkit-keyframes animate-loading{from{width:0}}@keyframes animate-loading{from{width:0}}.book .book-body .book-progress{height:0;width:100%;position:relative;background:#fff;margin-bottom:10px}.book .book-body .book-progress .bar{height:2px;position:static;right:0;left:250px;top:50px;background:#fff;border-radius:5px;overflow:hidden}.book .book-body .book-progress .bar .inner{height:100%;width:0;background:#3c3;-webkit-animation:animate-loading 1s;animation:animate-loading 1s}.book .book-body .book-progress .bar .inner .in-inner{height:100%;width:50%}.book .book-body .book-progress .chapters{display:none;position:absolute;right:36px;left:20px;top:7px}.book .book-body .book-progress .chapters .chapter{position:absolute;width:16px;height:16px;border-radius:16px;background:#fff;box-shadow:0 0 1px #bbb}.book .book-body .book-progress .chapters .chapter.done{background:#3c3;box-shadow:none}@media(max-width:800px){.book .book-body .book-progress .chapters .chapter{display:none}.book .book-body .book-progress .chapters .chapter.new-chapter{display:block}}.book.color-theme-1 .book-body .book-progress .bar{background:#f3eacb}.book.color-theme-1 .book-body .book-progress .bar .inner{background:#704214}.book.color-theme-1 .book-body .chapters .chapter{background:#f3eacb}.book.color-theme-1 .book-body .chapters .chapter.done{background:#704214}.book.color-theme-2 .book-body .book-progress .bar{background:#1d1f21}.book.color-theme-2 .book-body .book-progress .bar .inner{background:#3c3}.book.color-theme-2 .book-body .chapters .chapter{background:#1d1f21}.book.color-theme-2 .book-body .chapters .chapter.done{background:#3c3}.book .book-body .navigation{position:absolute;top:0;bottom:0;margin:0;max-width:150px;min-width:90px;display:flex;justify-content:center;align-content:center;flex-direction:column;font-size:40px;color:rgba(0,0,0,0.2);text-align:center;-webkit-transition:all 350ms ease;transition:all 350ms ease}.book .book-body .navigation:hover{text-decoration:none;color:rgba(0,0,0,0.6)}.book .book-body .navigation.navigation-next{right:0}.book .book-body .navigation.navigation-prev{left:0}@media(max-width:1240px){.book .book-body .navigation{position:static;top:auto;max-width:50%;width:50%;display:inline-block;float:left}.book .book-body .navigation.navigation-unique{max-width:100%;width:100%}}*{-webkit-overflow-scrolling:touch;-webkit-tap-highlight-color:transparent;-webkit-text-size-adjust:none;-webkit-touch-callout:none;-webkit-font-smoothing:antialiased}html,body{height:100%}body{text-rendering:optimizeLegibility;font-smoothing:antialiased;font-family:"Open Sans","Clear Sans","Helvetica Neue",Helvetica,Arial,sans-serif} ================================================ FILE: _book/index.html ================================================ Introduction | iScroll 5 API 中文版

iScroll 5 API 中文版

iScroll 5 API 中文版

前言

最近项目上需要使用iScroll,在中文圈里找了找,只找到了iScroll 4的中文版API。加上最近开始使用github(准确说,github账号是很多年前注册的,一直在企业应用里摸爬滚打,荒废了账号很长时间,是理由吗?是理由吗?),出于对开源社区的敬意,我突然觉得应该做点啥,于是先挑一个简单点儿的,把iScroll 5的API翻译一下,方便中文用户使用。

搭后语

iScroll对于我来讲典型的应用场景位于移动设备的App,基于Cordova/Phonegap + JQM + iScroll开发移动设备上的App,对于以数据呈现为主体的企业应用来讲无疑是一个多快好省的解决方案。这三驾马车前两个可以堂而皇之的称之为开发框架,iScroll只能称之为工具,尽管如此,iScroll带来的强大的滚动功能,能节省我们在项目开发上的部分时间(这也是开源社区的力量),所以也值得我花时间理解作者的代码和文档。如果您认同这种功劳苦劳,请到github上给我一个star。由于才疏学浅,在翻译过程中难免会有错误或者瑕疵,请在issure中提出,我会及时更正。

下面,我们开始iScroll之旅,请系好安全带。

iScroll简介

iScroll是一个高性能,资源占用少,无依赖,多平台的javascript滚动器。

它可以在桌面,移动设备和智能电视平台上工作。它一直在大力优化性能和文件大小以便在新旧设备上提供最顺畅的体验。

iScroll不仅仅是 滚动。它可以处理任何需要与用户进行移动交互的元素。在你的项目中包含仅仅4kb大小的iScroll,你的项目便拥有了滚动,缩放,平移,无限滚动,时差滚动,旋转功能。给它一个扫帚它甚至能帮你打扫办公室。

即使平台本身提供的滚动已经很不错,iScroll可以在此基础上提供更多不可思议的功能。具体来说:

  • 细粒度控制滚动位置,甚至在滚动过程中。你总是可以获取和设置滚动器的x,y坐标。
  • 动画可以使用用户自定义的擦出功能(反弹'bounce',弹性'elastic',回退'back',...)。
  • 你可以很容易的挂靠大量的自定义事件(onBeforeScrollStart, *
  • 开箱即用的多平台支持。从很老的安卓设备到最新的iPhone,从Chrome浏览器到IE浏览器。
================================================ FILE: _book/indicator.html ================================================ 指示器 | iScroll 5 API 中文版

iScroll 5 API 中文版

指示器

上面所有关于滚动条的选项实际上是包装了一个底层的选项indicators。它看起来或多或少像这样:

var myScroll = new IScroll('#wrapper', {
    indicators: {
        el: [element|element selector]
        fade: false,
        ignoreBoundaries: false,
        interactive: false,
        listenX: true,
        listenY: true,
        resize: true,
        shrink: false,
        speedRatioX: 0,
        speedRatioY: 0,
    }
});

options.indicators.el

这是一个强制性的参数,它保留了指向滚动条容器元素的引用。容器里的第一个子元素就是指示器。注意,滚动条可以在你的文档的任意地方,它不需要在滚动条包装器内。你是不是开始感到这样一个工具的厉害?

有效的语法如下:

indicators: {
    el: document.getElementById('indicator')
}

更简单的方式:

indicators: {
    el: '#indicator'
}

options.indicators.ignoreBoundaries

这个属性是告诉指示器忽略它容器所带来的边界。当我们能改变滚动条速度的比率,在让滚动条滚动时这个属性很有用。比如你想让指示器是滚动条速度的两倍,指示器将很快到达它的结尾。这个属性被用在视差滚动

默认值:false

options.indicators.listenX
options.indicators.listenY

指示器的那一个轴(横向和纵向)被侦听。可以设置一个或者都设置

默认值:true

options.indicators.speedRatioX
options.indicators.speedRatioY

指示器移动的速度和主要滚动条大小的关系。默认情况下是设置为自动。你很少需要去改变这个值。

默认值:0

options.indicators.fade
options.indicators.interactive
options.indicators.resize
options.indicators.shrink

这几个选项和我们已经介绍过的滚动条中的一样,在这里不重复介绍。

Do not cross the streams. It would be bad! Do not mix the scrollbars syntax (options.scrollbars, options.fadeScrollbars, options.interactiveScrollbars, ...) with the indicators! Use one or the other.

Do not cross the streams. It would be bad! Do not mix the scrollbars syntax (options.scrollbars, options.fadeScrollbars, options.interactiveScrollbars, ...) with the indicators! Use one or the other.

Have a look at the minimap demo to get a glance at the power of the indicators option. 请参考迷你地图示例,你将看到indicators选项的神奇力量。

The wittiest of you would have noticed that indicators is actually plural... Yes, exactly, passing an array of objects you can have a virtually infinite number of indicators. I don't know what you may need them for, but hey! who am I to argue about your scrollbar preferences? 你应该已经注意到选项indicators是复数,是的,实际上,传递一个对象数组你可以得到一个虚拟的无限大小的指示器。我不知道你是否需要,但是,这里我是想你介绍参数设置,所以要提及此。

Parallax scrolling

视差滚动

Parallax scrolling is just a collateral damage of the Indicators functionality.

An indicator is just a layer that follows the movement and animation applied to the main scroller. If you see it like that you'll understand the power behind this feature. To this add that you can have any number of indicators and the parallax scrolling is served.

Please refer to the parallax demo.

Scrolling programmatically

You silly! Of course you can scroll programmaticaly!

scrollTo(x, y, time, easing)

Say your iScroll instance resides into the myScroll variable. You can easily scroll to any position with the following syntax:

myScroll.scrollTo(0, -100);

That would scroll down by 100 pixels. Remember: 0 is always the top left corner. To scroll you have to pass negative numbers.

time and easing are optional. They regulates the duration (in ms) and the easing function of the animation respectively.

The easing functions are available in the IScroll.utils.ease object. For example to apply a 1 second elastic easing you'd do:

myScroll.scrollTo(0, -100, 1000, IScroll.utils.ease.elastic);

The available options are: quadratic, circular, back, bounce, elastic.

scrollBy(x, y, time, easing)

Same as above but X and Y are relative to the current position.

myScroll.scrollBy(0, -10);

Would scroll 10 pixels down. If you are at -100, you'll end up at -110.

scrollToElement(el, time, offsetX, offsetY, easing)

You're gonna like this. Sit tight.

The only mandatory parameter is el. Pass an element or a selector and iScroll will try to scroll to the top/left of that element.

time is optional and sets the animation duration.

offsetX and offsetY define an offset in pixels, so that you can scroll to that element plus a the specified offset. Not only that. If you set them to true the element will be centered on screen. Refer to the scroll to element example.

easing works the same way as per the scrollTo method.

================================================ FILE: _book/infinite.html ================================================ 无限滚动 | iScroll 5 API 中文版 ================================================ FILE: _book/init.html ================================================ 初始化 | iScroll 5 API 中文版

iScroll 5 API 中文版

初始化

当DOM准备完成后iScroll需要被初始化。最保险的方式是在window的onload事件中启动它。在DOMContentLoaded事件中或者inline initialization中做也可以,需要记住的是脚本需要知道滚动区域的高度和宽度。如果你有一些图片在滚动区域导致不能立马获取区域的高度和宽度,iScroll的滚动尺寸有可能会错误。

为滚动起容器增加position:relative或者absolute样式。这将解决大多数滚动器容器大小计算不正确的问题。

综上所述,最小的iScroll配置如下:

    <head>
    ...
    <script type="text/javascript" src="iscroll.js"></script>
    <script type="text/javascript">
    var myScroll;
    function loaded() {
        myScroll = new IScroll('#wrapper');
    }
    </script>
    </head>
    ...
    <body onload="loaded()">
    <div id="wrapper">
        <ul>
            <li>...</li>
            <li>...</li>
            ...
        </ul>
    </div>
    </body>

转到barebone example获取更多关于最小化 CSS/HTML结构的需求。

如果你有一个复杂的DOM结构,最好在onload事件之后适当的延迟,再去初始化iScroll。最好给浏览器100或者200毫秒的间隙再去初始化iScroll。

================================================ FILE: _book/keybindings.html ================================================ 按键绑定 | iScroll 5 API 中文版 ================================================ FILE: _book/manifest.appcache ================================================ CACHE MANIFEST # Revision 1405607853215 CACHE: gettingstart.html advance.html config.html customevents.html distory.html index.html basicfeatures.html indicator.html infinite.html init.html keybindings.html refresh.html core.html scrollerinfo.html snap.html zoom.html scrollers.html versions.html gitbook\app.js gitbook\fonts\fontawesome\FontAwesome.otf gitbook\fonts\fontawesome\fontawesome-webfont.eot gitbook\fonts\fontawesome\fontawesome-webfont.svg gitbook\fonts\fontawesome\fontawesome-webfont.ttf gitbook\fonts\fontawesome\fontawesome-webfont.woff gitbook\fonts\merriweather\250.woff gitbook\fonts\merriweather\250i.woff gitbook\fonts\merriweather\400.woff gitbook\fonts\merriweather\400i.woff gitbook\fonts\merriweather\700.woff gitbook\fonts\merriweather\700i.woff gitbook\fonts\merriweather\900.woff gitbook\fonts\merriweather\900i.woff gitbook\fonts\opensans\300.woff gitbook\fonts\opensans\300i.woff gitbook\fonts\opensans\400.woff gitbook\fonts\opensans\400i.woff gitbook\fonts\opensans\600.woff gitbook\fonts\opensans\600i.woff gitbook\fonts\opensans\700.woff gitbook\fonts\opensans\700i.woff gitbook\images\favicon.ico gitbook\jsrepl\engines\javascript-default.js gitbook\jsrepl\jsrepl.js gitbook\jsrepl\langs\javascript\jsrepl_js.js gitbook\jsrepl\sandbox.html gitbook\jsrepl\sandbox.js gitbook\print.css gitbook\style.css gitbook\plugins\gitbook-plugin-mathjax\plugin.js NETWORK: * ================================================ FILE: _book/refresh.html ================================================ 刷新 | iScroll 5 API 中文版 ================================================ FILE: _book/scrollerinfo.html ================================================ 滚动条信息 | iScroll 5 API 中文版 ================================================ FILE: _book/scrollers.html ================================================ 滚动条 | iScroll 5 API 中文版

iScroll 5 API 中文版

滚动条

滚动条不只是像名字所表达的意义一样,在内部它们是作为indicators的引用。

一个指示器侦听滚动条的位置并且现实它在全局中的位置,但是它可以做更多的事情。

先从最基本的开始。

options.scrollbars

正如我们在基本功能介绍中提到的,激活滚动条只需要做一件事情,这件事情就是:

var myScroll = new IScroll('#wrapper', {
    scrollbars: true
});

当然这个默认的行为是可以定制的。

options.fadeScrollbars

不想使用滚动条淡入淡出方式时,需要设置此属性为false以便节省资源。

默认值:false

options.interactiveScrollbars

此属性可以让滚动条能拖动,用户可以与之交互。

默认值:false

options.resizeScrollbars

滚动条尺寸改变基于容器和滚动区域的宽/高之间的比例。此属性设置为false让滚动条固定大小。这可能有助于自定义滚动条样式(参考下面)。

默认值:true

options.shrinkScrollbars

当在滚动区域外面滚动时滚动条是否可以收缩到较小的尺寸。

有效的值为:'clip''scale'

'clip'是移动指示器到它容器的外面,效果就是滚动条收缩起来,简单的移动到屏幕以外的区域。属性设置为此值后将大大的提升整个iScroll的性能。

'scale'关闭属性useTransition,之后所有的动画效果将使用requestAnimationFrame实现。指示器实际上有各种尺寸,并且最终的效果最好。

默认值:false

注意改变大小不是在GPU上执行的,所以'scale' 是在CPU上执行。

如果你的应用程序将在多种设备上运行,我建议你使用选项'scale',或者设置'clip'false (例如:在较老的设备上应该设置为'clip' ,而在桌面浏览器上应设置为'scale')。

请参考 滚动条示例

滚动条样式

如果你不喜欢默认的滚动条样式,而且你认为你可以做的更好,你可以自定义滚动条样式。第一步就是设置选项scrollbars的值为'custom'

var myScroll = new IScroll('#wrapper', {
    scrollbars: 'custom'
});

使用下面的CSS类可以简单的改变滚动条样式。

  • .iScrollHorizontalScrollbar,这个样式应用到横向滚动条的容器。这个元素实际上承载了滚动条指示器。
  • .iScrollVerticalScrollbar,和上面的样式类似,只不过适用于纵向滚动条容器。
  • .iScrollIndicator,真正的滚动条指示器。
  • .iScrollBothScrollbars,这个样式将在双向滚动条显示的情况下被加载到容器元素上。通常情况下其中一个(横向或者纵向)是可见的

自定义滚动条样式示例

如果你设置resizeScrollbars: false,滚动条将是固定大小,否则它将基于滚动区域的尺寸变化。

请接着阅读接下来的内容。

================================================ FILE: _book/search_index.json ================================================ {"version":"0.5.2","fields":[{"name":"title","boost":10},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"gettingstart.html#gitbook_4":["acceler","alpha","anymore.myscrollunload","href=\"#scroller-info\">scrol","html","id=\"wrapp","imag","instanc","iscrol","iscroll('#wrapp","iscroll('.wrapp","iscroll(wrapp","iscroll....for","p>you","perform","positionoptions.bounc","small>options.bounceoptions.clickoptions.disablemouse
options.disablepointer
options.disabletouchoptions.eventpassthroughoptions.freescrolloptions.keybindingsoptions.invertwheeldirectionoptions.momentumoptions.mousewheeloptions.preventdefaultoptions.scrollbarsoptions.scrollx
options.scrollyoptions.startx
options.startyoptions.tap","small>options.click","small>options.disablemouse
options.disablepointer
options.disabletouch","small>options.eventpassthrough","small>options.freescrol","small>options.invertwheeldirect","small>options.keybind","small>options.momentum","small>options.mousewheel","small>options.preventdefault","small>options.scrollbar","small>options.scrollx
options.scrolli","small>options.startx
options.starti","small>options.tap","tap","top","true","true。请参考示例horizont","true时激活键盘(和远程控制)绑定。请参考下面的kei","true,当滚动区域被点击或者触摸但并没有滚动时,可以让iscroll抛出一个自定义的tap","undefinedundefin","var"],"indicator.html#gitbook_11":["0","1","10","100","1000","110","abov","actual","add","alwai","anim","appli","argu","arrai","avail","back","bad!options.fadescrollbarsoptions.interactivescrollbarsoptions.scrollbarsparallax","id=\"parallax-scrolling\">视差滚动视差滚动scrol","ignoreboundari","indic","infinit","instanc","interact","iscrol","iscroll('#wrapp","iscroll.utils.eas","iscroll.utils.ease.elast","know","layer","left","listeni","listenx","look","main","mandatori","method","minimap","mix","movement","ms","myscrol","myscroll.scrollby(0","myscroll.scrollto(0","need","neg","new","notic","number","object","offset","offseti","offsetx","on","option","other.do","parallax","paramet","pass","per","pixel","pleas","plu","plural","posit","power","prefer","programmat","programmaticali","programmaticallyscrollto(x","quadrat","refer","regul","rel","rememb","resid","resiz","respect","same","screen","scroll","scrollbar","scrollby(x","scroller","scrollingoptions.indicators.el","small>options.indicators.eloptions.indicators.ignoreboundariesoptions.indicators.listenx
options.indicators.listenyoptions.indicators.speedratiox
options.indicators.speedratioyoptions.indicators.fade
options.indicators.interactive
options.indicators.resize
options.indicators.shrinkoptions.indicators.fade
options.indicators.interactive
options.indicators.resize
options.indicators.shrink","small>options.indicators.ignoreboundari","small>options.indicators.listenx
options.indicators.listeni","small>options.indicators.speedratiox
options.indicators.speedratioi","span","specifi","speedratioi","speedratiox","stream","syntax","tight","time","top","top/left","true","try","undefinedundefin","understand","up","us","var","variabl","virtual","wai","wittiest","work","x","y","ye","you'd","you'll","you'r"],"infinite.html#gitbook_12":["undefinedundefin"],"init.html#gitbook_13":["barebon","bodi","css/html","div","dom准备完成后iscroll需要被初始化。最保险的方式是在window的onload事件中启动它。在domcontentloaded事件中或者inlin","dom结构,最好在onload事件之后适当的延迟,再去初始化iscroll。最好给浏览器100或者200毫秒的间隙再去初始化iscrol","exampl","function","head","id=\"wrapp","initialization中做也可以,需要记住的是脚本需要知道滚动区域的高度和宽度。如果你有一些图片在滚动区域导致不能立马获取区域的高度和宽度,iscrol","iscrol","iscroll('#wrapp","li>...options.hwcomposit","small>options.usetransform","small>options.usetransformoptions.usetransitionoptions.hwcomposit","small>options.usetransit","transit","transition来实现动画效果(动量和弹力)。如果设置为false,那么将使用requestanimationfram","translatez(0)来把滚动器附加到硬件层,以此来改变css","true","undefinedundefin"],"scrollerinfo.html#gitbook_17":["undefinedundefin"],"snap.html#gitbook_18":["0","0.0006","0.01","1","100","1000","1000px","10th","1scale(0.5)prev()options.zoomoptions.zoommaxoptions.zoomminoptions.zoomstartoptions.wheelactionzoom(scal","edit","effect","eg","elast","element","emit","empti","end","enforc","enhanc","enough","ensur","even","event","eventadvanc","id=\"contributing\">contribut","id=\"custom-events\">custom","id=\"destroy\">destroyinfinit","id=\"key-bindings\">kei","id=\"license\">licens","id=\"onscroll\">onscrol","id=\"refresh\">mast","id=\"scroller-info\">us","id=\"snap\">snapwho","id=\"zoom\">zoomprev","nice","nike","nobodi","noninfring","normal","notabl","note","noth","notic","null","number","object","obtain","on","on(typ","onc","oncomplet","onscrol","open","option","option.bounceeas","optionsa","p>consid","p>some","p>the","p>thi","page","pagedown","pageup","particular","pass","peopl","perform","permiss","permit","person","phase","physic","piec","pinch/zoom","place","playboi","pleas","plural","point","pointer","poll","poor","portion","posit","post","power","precis","pretti","preventdefault","preventdefaultexcept","previou","probabl","probe","probetyp","programmat","project","properti","proven","provid","public","publish","pull","purpos","push","quickli","quot;a","quot;software"","rais","react","read","readi","recalcul","reduc","refer","refreh","refresh","regist","regul","releas","rememb","remot","render","repaint","report","repres","request","requestanimationfram","resembl","resiz","resolut","rest","rest.options.bindtowrapp","small>options.bounceeas","small>options.bouncetim","small>options.deceler","small>options.mousewheelspe","small>options.preventdefaultexcept","small>options.probetyp","small>options.resizepol","small>options.snap","small>options.snapgotopage(x","small>options.wheelact","small>options.zoom","small>options.zoommax","small>options.zoommin","small>options.zoomstart","smart","smarter","smartphon","snap","snapshot","softwar","solid","solut","someth","soon","soonscal","structur","stuff","style","subject","sublicens","submiss","substanti","suggest","sum","support","sure","system","tablet","tag","tagnam","take","task","tell","test","text","textur","that'","that.options.bindtowrapperoptions.bounceeasingoptions.bouncetimeoptions.decelerationoptions.mousewheelspeedoptions.preventdefaultexceptionoptions.resizepollingoptions.probetyp","timeout","to-the-pixel","tort","total","touch","track","transform","transit","trigger","tripl","true","tv","type","undefin","undefinedundefin","understand","unfortun","up","up/down","up/left","updat","us","user","usetransition:fals","usual","valid","valu","var","veri","vertic","virtual","visual","wai","wait","want","warranti","webkit","websit","wheel","wheelact","whether","wide","window","without","work","wrapper","x","y","yeah","zero","zero-timeout","zoom","zoom(scal","zoomend","zoomstart"],"zoom.html#gitbook_19":["undefinedundefin"],"scrollers.html#gitbook_20":["39;clip'","39;clip'是移动指示器到它容器的外面,效果就是滚动条收缩起来,简单的移动到屏幕以外的区域。属性设置为此值后将大大的提升整个iscrol","39;scale'","39;scale'关闭属性usetransition,之后所有的动画效果将使用requestanimationfram","39;scale',或者设置'clip'","cpu","css","custom","fals","gpu上执行的,所以'scale'","h3","id=\"styling-the-scrollbar\">滚动条样式options.fadescrollbar","small>options.interactivescrollbar","small>options.resizescrollbar","small>options.scrollbar","small>options.scrollbarsoptions.fadescrollbarsoptions.interactivescrollbarsoptions.resizescrollbarsoptions.shrinkscrollbar","small>options.shrinkscrollbar","true","undefinedundefin","var"],"versions.html#gitbook_21":["infinit","iscrol","iscroll-infinite.j","iscroll-lite.j","iscroll-probe.js,探查当前滚动位置是一个要求很高的任务,这就是为什么我决定建立一个专门的版本。如果你需要知道滚动位置在任何给定的时间,这是iscroll给你的。(我正在做更多的测试,这可能最终在常规iscroll.j","iscroll-zoom.j","iscroll.j","iscroll的优化。为了达到更高的性能,iscrol","undefinedundefin"]},"length":18},"tokenStore":{"root":{"0":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.024390243902439025},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.014184397163120567},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}},".":{"0":{"0":{"0":{"6":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}},"docs":{}},"1":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}},"docs":{}}},"1":{"0":{"0":{"0":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},"p":{"docs":{},"x":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.014184397163120567},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835}},"t":{"docs":{},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"1":{"0":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}},"docs":{}},"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.0059271803556308214}},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}},"2":{"0":{"0":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"1":{"4":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}},"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},"d":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}},"3":{"3":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"4":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"5":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"6":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"7":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"8":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"9":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},";":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},";":{"docs":{},",":{"docs":{},"弹":{"docs":{},"性":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},",":{"docs":{},"回":{"docs":{},"退":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":0.05}}},"docs":{}},"docs":{}}}}}}}}},"docs":{}},"docs":{}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}},"docs":{}},"docs":{}}}}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}},"docs":{}}}}}}},"&":{"docs":{},"#":{"3":{"9":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}},"docs":{}}},"a":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}},"docs":{}}}},"c":{"docs":{},"i":{"docs":{},"r":{"docs":{},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}},"docs":{}},"docs":{}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.044444444444444446}},";":{"docs":{},"是":{"docs":{},"移":{"docs":{},"动":{"docs":{},"指":{"docs":{},"示":{"docs":{},"器":{"docs":{},"到":{"docs":{},"它":{"docs":{},"容":{"docs":{},"器":{"docs":{},"的":{"docs":{},"外":{"docs":{},"面":{"docs":{},",":{"docs":{},"效":{"docs":{},"果":{"docs":{},"就":{"docs":{},"是":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"条":{"docs":{},"收":{"docs":{},"缩":{"docs":{},"起":{"docs":{},"来":{"docs":{},",":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"移":{"docs":{},"动":{"docs":{},"到":{"docs":{},"屏":{"docs":{},"幕":{"docs":{},"以":{"docs":{},"外":{"docs":{},"的":{"docs":{},"区":{"docs":{},"域":{"docs":{},"。":{"docs":{},"属":{"docs":{},"性":{"docs":{},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"此":{"docs":{},"值":{"docs":{},"后":{"docs":{},"将":{"docs":{},"大":{"docs":{},"大":{"docs":{},"的":{"docs":{},"提":{"docs":{},"升":{"docs":{},"整":{"docs":{},"个":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}},"docs":{}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}},"docs":{}}}}}}}}}}}},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}},"docs":{}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.044444444444444446}},";":{"docs":{},"关":{"docs":{},"闭":{"docs":{},"属":{"docs":{},"性":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{},"之":{"docs":{},"后":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"动":{"docs":{},"画":{"docs":{},"效":{"docs":{},"果":{"docs":{},"将":{"docs":{},"使":{"docs":{},"用":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"设":{"docs":{},"置":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}},"docs":{}},"docs":{}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}},"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}},"4":{"0":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"k":{"docs":{},"b":{"docs":{},"大":{"docs":{},"小":{"docs":{},"的":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":0.05}}}}}}}}}}}}},"的":{"docs":{},"中":{"docs":{},"文":{"docs":{},"版":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"。":{"docs":{},"加":{"docs":{},"上":{"docs":{},"最":{"docs":{},"近":{"docs":{},"开":{"docs":{},"始":{"docs":{},"使":{"docs":{},"用":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},"(":{"docs":{},"准":{"docs":{},"确":{"docs":{},"说":{"docs":{},",":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},"账":{"docs":{},"号":{"docs":{},"是":{"docs":{},"很":{"docs":{},"多":{"docs":{},"年":{"docs":{},"前":{"docs":{},"注":{"docs":{},"册":{"docs":{},"的":{"docs":{},",":{"docs":{},"一":{"docs":{},"直":{"docs":{},"在":{"docs":{},"企":{"docs":{},"业":{"docs":{},"应":{"docs":{},"用":{"docs":{},"里":{"docs":{},"摸":{"docs":{},"爬":{"docs":{},"滚":{"docs":{},"打":{"docs":{},",":{"docs":{},"荒":{"docs":{},"废":{"docs":{},"了":{"docs":{},"账":{"docs":{},"号":{"docs":{},"很":{"docs":{},"长":{"docs":{},"时":{"docs":{},"间":{"docs":{},",":{"docs":{},"是":{"docs":{},"理":{"docs":{},"由":{"docs":{},"吗":{"docs":{},"?":{"docs":{},"是":{"docs":{},"理":{"docs":{},"由":{"docs":{},"吗":{"docs":{},"?":{"docs":{},")":{"docs":{},",":{"docs":{},"出":{"docs":{},"于":{"docs":{},"对":{"docs":{},"开":{"docs":{},"源":{"docs":{},"社":{"docs":{},"区":{"docs":{},"的":{"docs":{},"敬":{"docs":{},"意":{"docs":{},",":{"docs":{},"我":{"docs":{},"突":{"docs":{},"然":{"docs":{},"觉":{"docs":{},"得":{"docs":{},"应":{"docs":{},"该":{"docs":{},"做":{"docs":{},"点":{"docs":{},"啥":{"docs":{},",":{"docs":{},"于":{"docs":{},"是":{"docs":{},"先":{"docs":{},"挑":{"docs":{},"一":{"docs":{},"个":{"docs":{},"简":{"docs":{},"单":{"docs":{},"点":{"docs":{},"儿":{"docs":{},"的":{"docs":{},",":{"docs":{},"把":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":0.05}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"5":{"docs":{"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":2.55}},"的":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":0.05}}}}}}},"6":{"0":{"0":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}},"docs":{}},"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}},"p":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"s":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"v":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"h":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"l":{"docs":{},"p":{"docs":{},"h":{"docs":{},"a":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"n":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"i":{"docs":{},"m":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.010638297872340425},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.0059271803556308214}}}},"d":{"docs":{},"/":{"docs":{},"o":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"k":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"p":{"docs":{},"i":{"docs":{"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":2.55}}},"p":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"d":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}},"o":{"docs":{},"w":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"e":{"docs":{},"a":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"i":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}},"g":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"h":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}},"k":{"docs":{},"a":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"x":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}}}},"d":{"docs":{},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353}}}}}}},"s":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}},"i":{"docs":{},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}}},"z":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}},"x":{"docs":{},"-":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.017857142857142856}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.004233700254022015}},"e":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"d":{"docs":{},"i":{"docs":{"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.058823529411764705}}}},"r":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"s":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}}}}}}}}}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}}}}}}},"u":{"docs":{},"g":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"s":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}},"r":{"docs":{},"g":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"l":{"docs":{},"a":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"s":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}}}},"i":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.005080440304826418}},">":{"docs":{},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"0":{"docs":{},".":{"5":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"u":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"config.html#gitbook_6":{"ref":"config.html#gitbook_6","tf":0.0625}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"u":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"p":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}}},"x":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"o":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"o":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}}},"r":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"p":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}},"y":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.017857142857142856},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209},"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}},"/":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"属":{"docs":{},"性":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"现":{"docs":{},"在":{"docs":{},"还":{"docs":{},"是":{"2":{"0":{"0":{"7":{"docs":{},"年":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"可":{"docs":{},"以":{"docs":{},"设":{"docs":{},"置":{"docs":{},"这":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{},"这":{"docs":{},"就":{"docs":{},"是":{"docs":{},"说":{"docs":{},":":{"docs":{},"引":{"docs":{},"擎":{"docs":{},"将":{"docs":{},"使":{"docs":{},"用":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"/":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"core.html#gitbook_16":{"ref":"core.html#gitbook_16","tf":0.0625}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806},"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}},"i":{"docs":{},"r":{"docs":{},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"-":{"docs":{},"b":{"docs":{},"e":{"docs":{},"z":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"0":{"docs":{},",":{"0":{"docs":{},",":{"1":{"docs":{},",":{"1":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}},"q":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612},"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}},"i":{"docs":{},"z":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"l":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"n":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"docs":{}},"docs":{}}}}}},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}},"v":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.03571428571428571},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.014184397163120567},"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.058823529411764705},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.0059271803556308214}}},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"d":{"docs":{},"n":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"docs":{}},"docs":{}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"o":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"'":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.017857142857142856},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.004233700254022015}},"结":{"docs":{},"构":{"docs":{},"的":{"docs":{},"简":{"docs":{},"洁":{"docs":{},"。":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}}}}}},",":{"docs":{},"最":{"docs":{},"好":{"docs":{},"在":{"docs":{},"<":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"事":{"docs":{},"件":{"docs":{},"之":{"docs":{},"后":{"docs":{},"适":{"docs":{},"当":{"docs":{},"的":{"docs":{},"延":{"docs":{},"迟":{"docs":{},",":{"docs":{},"再":{"docs":{},"去":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"。":{"docs":{},"最":{"docs":{},"好":{"docs":{},"给":{"docs":{},"浏":{"docs":{},"览":{"docs":{},"器":{"1":{"0":{"0":{"docs":{},"或":{"docs":{},"者":{"2":{"0":{"0":{"docs":{},"毫":{"docs":{},"秒":{"docs":{},"的":{"docs":{},"间":{"docs":{},"隙":{"docs":{},"再":{"docs":{},"去":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"准":{"docs":{},"备":{"docs":{},"完":{"docs":{},"成":{"docs":{},"后":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"需":{"docs":{},"要":{"docs":{},"被":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"。":{"docs":{},"最":{"docs":{},"保":{"docs":{},"险":{"docs":{},"的":{"docs":{},"方":{"docs":{},"式":{"docs":{},"是":{"docs":{},"在":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"的":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"事":{"docs":{},"件":{"docs":{},"中":{"docs":{},"启":{"docs":{},"动":{"docs":{},"它":{"docs":{},"。":{"docs":{},"在":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"d":{"docs":{},"事":{"docs":{},"件":{"docs":{},"中":{"docs":{},"或":{"docs":{},"者":{"docs":{},"i":{"docs":{},"n":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"t":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.026785714285714284},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"docs":{}},"docs":{}}},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.024390243902439025},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}}},"w":{"docs":{},"n":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}},"/":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"n":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"docs":{}},"docs":{}}}}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.012701100762066046}}}}}},"i":{"docs":{},"n":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}},"i":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"m":{"docs":{},"o":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.024390243902439025},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.004233700254022015}},"。":{"docs":{},"注":{"docs":{},"意":{"docs":{},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"值":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},",":{"docs":{},"其":{"docs":{},"作":{"docs":{},"用":{"docs":{},"和":{"docs":{},"上":{"docs":{},"面":{"docs":{},"介":{"docs":{},"绍":{"docs":{},"的":{"docs":{},"相":{"docs":{},"反":{"docs":{},"(":{"docs":{},"横":{"docs":{},"向":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"条":{"docs":{},"保":{"docs":{},"持":{"docs":{},"原":{"docs":{},"生":{"docs":{},",":{"docs":{},"纵":{"docs":{},"向":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"条":{"docs":{},"使":{"docs":{},"用":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}},"s":{"docs":{},"k":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}},"i":{"docs":{},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"t":{"docs":{},"a":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"e":{"docs":{},"l":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.014184397163120567}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.01773049645390071},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.0059271803556308214}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}}}}}}}}}}}}},"|":{"docs":{},"e":{"docs":{},"l":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"t":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.01100762066045724}},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}},"h":{"2":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}}}}},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}}}}}},"r":{"docs":{},"y":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"c":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"l":{"docs":{},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.004233700254022015}}}}}}},"a":{"docs":{},"s":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.6950354609929078},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.006773920406435224}},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}},"n":{"docs":{},"g":{"docs":{},")":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"y":{"docs":{},"(":{"docs":{},"x":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.6666666666666666}}}}}},"t":{"docs":{},"o":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"e":{"docs":{},"l":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.6666666666666666}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"(":{"docs":{},")":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":1.4285714285714284}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"r":{"docs":{},"l":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"n":{"docs":{},"d":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"g":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"f":{"docs":{},"e":{"docs":{},"w":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"e":{"docs":{},"s":{"docs":{},"中":{"docs":{},"的":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"获":{"docs":{},"取":{"docs":{},"更":{"docs":{},"多":{"docs":{},"控":{"docs":{},"制":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.12195121951219512},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.01773049645390071},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806},"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.15555555555555556}},"e":{"docs":{},",":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.005080440304826418}}}}}},"c":{"docs":{},"u":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"r":{"docs":{},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"m":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.010638297872340425},"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.009314140558848433}}}}}}}},"r":{"docs":{},"n":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},",":{"docs":{},"i":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"core.html#gitbook_16":{"ref":"core.html#gitbook_16","tf":0.0625}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"n":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"r":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}},"s":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"x":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}},"g":{"docs":{},"o":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},"o":{"docs":{},"d":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},"x":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}},"p":{"docs":{},"u":{"docs":{},"上":{"docs":{},"执":{"docs":{},"行":{"docs":{},"的":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}},"docs":{}},"docs":{}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"h":{"2":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.01100762066045724}}},"3":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}},"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"r":{"docs":{},"d":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"l":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"#":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"\"":{"docs":{},">":{"docs":{},"u":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"\"":{"docs":{},">":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"e":{"docs":{},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}},"a":{"docs":{},"d":{"docs":{"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.058823529411764705}}}},"l":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"r":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"b":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"m":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"/":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"o":{"docs":{},"k":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"p":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}}},"u":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"i":{"docs":{},"d":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353}}}}}},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"x":{"docs":{},"-":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{},">":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"x":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.6702127659574467}}}}}}}}}},"视":{"docs":{},"差":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}},">":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.6666666666666666}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"-":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"a":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{},">":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"-":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"\"":{"docs":{},">":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"-":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{},">":{"docs":{},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"-":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"\"":{"docs":{},">":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"\"":{"docs":{},">":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"\"":{"docs":{},">":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"\"":{"docs":{},">":{"docs":{},"u":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"p":{"docs":{},"\"":{"docs":{},">":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"p":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"-":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"-":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"\"":{"docs":{},">":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"条":{"docs":{},"样":{"docs":{},"式":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"3":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"\"":{"docs":{},">":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"l":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}},"i":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.05319148936170213},"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209},"versions.html#gitbook_21":{"ref":"versions.html#gitbook_21","tf":0.09090909090909091}}}}}},"o":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}}}},"r":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"g":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"中":{"docs":{},"做":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"记":{"docs":{},"住":{"docs":{},"的":{"docs":{},"是":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"需":{"docs":{},"要":{"docs":{},"知":{"docs":{},"道":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"区":{"docs":{},"域":{"docs":{},"的":{"docs":{},"高":{"docs":{},"度":{"docs":{},"和":{"docs":{},"宽":{"docs":{},"度":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"有":{"docs":{},"一":{"docs":{},"些":{"docs":{},"图":{"docs":{},"片":{"docs":{},"在":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"区":{"docs":{},"域":{"docs":{},"导":{"docs":{},"致":{"docs":{},"不":{"docs":{},"能":{"docs":{},"立":{"docs":{},"马":{"docs":{},"获":{"docs":{},"取":{"docs":{},"区":{"docs":{},"域":{"docs":{},"的":{"docs":{},"高":{"docs":{},"度":{"docs":{},"和":{"docs":{},"宽":{"docs":{},"度":{"docs":{},",":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"|":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"|":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"|":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.017857142857142856},"config.html#gitbook_6":{"ref":"config.html#gitbook_6","tf":10.1875},"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":5.25},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353},"core.html#gitbook_16":{"ref":"core.html#gitbook_16","tf":0.0625},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.01947502116850127},"versions.html#gitbook_21":{"ref":"versions.html#gitbook_21","tf":10.272727272727273}},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"#":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"config.html#gitbook_6":{"ref":"config.html#gitbook_6","tf":0.0625},"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.004233700254022015},"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.044444444444444446}}}}}}}},".":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}}},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},"s":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}}}}}}}}}}}}},"j":{"docs":{"versions.html#gitbook_21":{"ref":"versions.html#gitbook_21","tf":0.09090909090909091}}}},"作":{"docs":{},"用":{"docs":{},"于":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"区":{"docs":{},"域":{"docs":{},"的":{"docs":{},"外":{"docs":{},"层":{"docs":{},"。":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"u":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}}}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{},"的":{"docs":{},"是":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}}}}}}}}}}},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{"core.html#gitbook_16":{"ref":"core.html#gitbook_16","tf":0.0625}}}}},"基":{"docs":{},"于":{"docs":{},"设":{"docs":{},"备":{"docs":{},"和":{"docs":{},"浏":{"docs":{},"览":{"docs":{},"器":{"docs":{},"性":{"docs":{},"能":{"docs":{},"的":{"docs":{},"各":{"docs":{},"种":{"docs":{},"技":{"docs":{},"术":{"docs":{},"来":{"docs":{},"进":{"docs":{},"行":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"。":{"docs":{},"通":{"docs":{},"常":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"你":{"docs":{},"来":{"docs":{},"配":{"docs":{},"置":{"docs":{},"引":{"docs":{},"擎":{"docs":{},",":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"core.html#gitbook_16":{"ref":"core.html#gitbook_16","tf":0.0625}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},",":{"docs":{},"每":{"docs":{},"个":{"docs":{},"需":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"功":{"docs":{},"能":{"docs":{},"的":{"docs":{},"区":{"docs":{},"域":{"docs":{},"均":{"docs":{},"要":{"docs":{},"进":{"docs":{},"行":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"。":{"docs":{},"每":{"docs":{},"个":{"docs":{},"页":{"docs":{},"面":{"docs":{},"上":{"docs":{},"的":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"实":{"docs":{},"例":{"docs":{},"数":{"docs":{},"目":{"docs":{},"在":{"docs":{},"设":{"docs":{},"备":{"docs":{},"的":{"docs":{},"c":{"docs":{},"p":{"docs":{},"u":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"高":{"docs":{},"性":{"docs":{},"能":{"docs":{},",":{"docs":{},"资":{"docs":{},"源":{"docs":{},"占":{"docs":{},"用":{"docs":{},"少":{"docs":{},",":{"docs":{},"无":{"docs":{},"依":{"docs":{},"赖":{"docs":{},",":{"docs":{},"多":{"docs":{},"平":{"docs":{},"台":{"docs":{},"的":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":0.05}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},"是":{"docs":{},"看":{"docs":{},"示":{"docs":{},"例":{"docs":{},"。":{"docs":{},"在":{"docs":{},"存":{"docs":{},"档":{"docs":{},"文":{"docs":{},"件":{"docs":{},"中":{"docs":{},"你":{"docs":{},"会":{"docs":{},"发":{"docs":{},"现":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"做":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}}}}}}}}}}}}}}}}}}}}},"最":{"docs":{},"优":{"docs":{},"配":{"docs":{},"置":{"docs":{},"。":{"docs":{},"从":{"docs":{},"性":{"docs":{},"能":{"docs":{},"角":{"docs":{},"度":{"docs":{},"出":{"docs":{},"发":{"docs":{},",":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"选":{"docs":{},"项":{"docs":{},"应":{"docs":{},"该":{"docs":{},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"。":{"docs":{},"(":{"docs":{},"或":{"docs":{},"者":{"docs":{},"更":{"docs":{},"好":{"docs":{},"的":{"docs":{},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"让":{"docs":{},"他":{"docs":{},"们":{"docs":{},"自":{"docs":{},"动":{"docs":{},"设":{"docs":{},"置":{"docs":{},"属":{"docs":{},"性":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"core.html#gitbook_16":{"ref":"core.html#gitbook_16","tf":0.0625}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"优":{"docs":{},"化":{"docs":{},"。":{"docs":{},"为":{"docs":{},"了":{"docs":{},"达":{"docs":{},"到":{"docs":{},"更":{"docs":{},"高":{"docs":{},"的":{"docs":{},"性":{"docs":{},"能":{"docs":{},",":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"versions.html#gitbook_21":{"ref":"versions.html#gitbook_21","tf":0.09090909090909091}}}}}}}}}}}}}}}}}}}}}},"对":{"docs":{},"于":{"docs":{},"我":{"docs":{},"来":{"docs":{},"讲":{"docs":{},"典":{"docs":{},"型":{"docs":{},"的":{"docs":{},"应":{"docs":{},"用":{"docs":{},"场":{"docs":{},"景":{"docs":{},"位":{"docs":{},"于":{"docs":{},"移":{"docs":{},"动":{"docs":{},"设":{"docs":{},"备":{"docs":{},"的":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},",":{"docs":{},"基":{"docs":{},"于":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"/":{"docs":{},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":0.05}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"开":{"docs":{},"发":{"docs":{},"移":{"docs":{},"动":{"docs":{},"设":{"docs":{},"备":{"docs":{},"上":{"docs":{},"的":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},",":{"docs":{},"对":{"docs":{},"于":{"docs":{},"以":{"docs":{},"数":{"docs":{},"据":{"docs":{},"呈":{"docs":{},"现":{"docs":{},"为":{"docs":{},"主":{"docs":{},"体":{"docs":{},"的":{"docs":{},"企":{"docs":{},"业":{"docs":{},"应":{"docs":{},"用":{"docs":{},"来":{"docs":{},"讲":{"docs":{},"无":{"docs":{},"疑":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"多":{"docs":{},"快":{"docs":{},"好":{"docs":{},"省":{"docs":{},"的":{"docs":{},"解":{"docs":{},"决":{"docs":{},"方":{"docs":{},"案":{"docs":{},"。":{"docs":{},"这":{"docs":{},"三":{"docs":{},"驾":{"docs":{},"马":{"docs":{},"车":{"docs":{},"前":{"docs":{},"两":{"docs":{},"个":{"docs":{},"可":{"docs":{},"以":{"docs":{},"堂":{"docs":{},"而":{"docs":{},"皇":{"docs":{},"之":{"docs":{},"的":{"docs":{},"称":{"docs":{},"之":{"docs":{},"为":{"docs":{},"开":{"docs":{},"发":{"docs":{},"框":{"docs":{},"架":{"docs":{},",":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"只":{"docs":{},"能":{"docs":{},"称":{"docs":{},"之":{"docs":{},"为":{"docs":{},"工":{"docs":{},"具":{"docs":{},",":{"docs":{},"尽":{"docs":{},"管":{"docs":{},"如":{"docs":{},"此":{"docs":{},",":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"带":{"docs":{},"来":{"docs":{},"的":{"docs":{},"强":{"docs":{},"大":{"docs":{},"的":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"功":{"docs":{},"能":{"docs":{},",":{"docs":{},"能":{"docs":{},"节":{"docs":{},"省":{"docs":{},"我":{"docs":{},"们":{"docs":{},"在":{"docs":{},"项":{"docs":{},"目":{"docs":{},"开":{"docs":{},"发":{"docs":{},"上":{"docs":{},"的":{"docs":{},"部":{"docs":{},"分":{"docs":{},"时":{"docs":{},"间":{"docs":{},"(":{"docs":{},"这":{"docs":{},"也":{"docs":{},"是":{"docs":{},"开":{"docs":{},"源":{"docs":{},"社":{"docs":{},"区":{"docs":{},"的":{"docs":{},"力":{"docs":{},"量":{"docs":{},")":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"也":{"docs":{},"值":{"docs":{},"得":{"docs":{},"我":{"docs":{},"花":{"docs":{},"时":{"docs":{},"间":{"docs":{},"理":{"docs":{},"解":{"docs":{},"作":{"docs":{},"者":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"和":{"docs":{},"文":{"docs":{},"档":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"您":{"docs":{},"认":{"docs":{},"同":{"docs":{},"这":{"docs":{},"种":{"docs":{},"功":{"docs":{},"劳":{"docs":{},"苦":{"docs":{},"劳":{"docs":{},",":{"docs":{},"请":{"docs":{},"到":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},"上":{"docs":{},"给":{"docs":{},"我":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"。":{"docs":{},"由":{"docs":{},"于":{"docs":{},"才":{"docs":{},"疏":{"docs":{},"学":{"docs":{},"浅":{"docs":{},",":{"docs":{},"在":{"docs":{},"翻":{"docs":{},"译":{"docs":{},"过":{"docs":{},"程":{"docs":{},"中":{"docs":{},"难":{"docs":{},"免":{"docs":{},"会":{"docs":{},"有":{"docs":{},"错":{"docs":{},"误":{"docs":{},"或":{"docs":{},"者":{"docs":{},"瑕":{"docs":{},"疵":{"docs":{},",":{"docs":{},"请":{"docs":{},"在":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":0.05}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"在":{"docs":{},"中":{"docs":{},"文":{"docs":{},"圈":{"docs":{},"里":{"docs":{},"找":{"docs":{},"了":{"docs":{},"找":{"docs":{},",":{"docs":{},"只":{"docs":{},"找":{"docs":{},"到":{"docs":{},"了":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":0.05}}}}}}}}}}}}}}}}}}}}}},"从":{"0":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}},"docs":{}},"功":{"docs":{},"能":{"docs":{},"(":{"docs":{},"比":{"docs":{},"如":{"docs":{},"走":{"docs":{},"马":{"docs":{},"灯":{"docs":{},")":{"docs":{},"。":{"docs":{},"设":{"docs":{},"置":{"docs":{},"这":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"并":{"docs":{},"且":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"禁":{"docs":{},"止":{"docs":{},"了":{"docs":{},"一":{"docs":{},"些":{"docs":{},"默":{"docs":{},"认":{"docs":{},"的":{"docs":{},"浏":{"docs":{},"览":{"docs":{},"器":{"docs":{},"行":{"docs":{},"为":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"鼠":{"docs":{},"标":{"docs":{},"的":{"docs":{},"点":{"docs":{},"击":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"想":{"docs":{},"你":{"docs":{},"的":{"docs":{},"应":{"docs":{},"用":{"docs":{},"程":{"docs":{},"序":{"docs":{},"响":{"docs":{},"应":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"事":{"docs":{},"件":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"该":{"docs":{},"设":{"docs":{},"置":{"docs":{},"次":{"docs":{},"属":{"docs":{},"性":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"。":{"docs":{},"请":{"docs":{},"注":{"docs":{},"意":{"docs":{},",":{"docs":{},"建":{"docs":{},"议":{"docs":{},"使":{"docs":{},"用":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"肩":{"docs":{},"痛":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"指":{"docs":{},"针":{"docs":{},"事":{"docs":{},"件":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"对":{"docs":{},"这":{"docs":{},"些":{"docs":{},"事":{"docs":{},"件":{"docs":{},"中":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"被":{"docs":{},"触":{"docs":{},"发":{"docs":{},"的":{"docs":{},"做":{"docs":{},"出":{"docs":{},"反":{"docs":{},"应":{"docs":{},"。":{"docs":{},"这":{"docs":{},"看":{"docs":{},"上":{"docs":{},"去":{"docs":{},"是":{"docs":{},"浪":{"docs":{},"费":{"docs":{},"资":{"docs":{},"源":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"在":{"docs":{},"大":{"docs":{},"量":{"docs":{},"的":{"docs":{},"浏":{"docs":{},"览":{"docs":{},"器":{"docs":{},"/":{"docs":{},"设":{"docs":{},"备":{"docs":{},"上":{"docs":{},"兼":{"docs":{},"容":{"docs":{},",":{"docs":{},"特":{"docs":{},"定":{"docs":{},"的":{"docs":{},"事":{"docs":{},"件":{"docs":{},"侦":{"docs":{},"测":{"docs":{},"证":{"docs":{},"明":{"docs":{},"是":{"docs":{},"无":{"docs":{},"效":{"docs":{},"的":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"-":{"docs":{},"t":{"docs":{},"o":{"docs":{},"-":{"docs":{},"a":{"docs":{},"l":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"b":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"s":{"docs":{},",":{"docs":{},"探":{"docs":{},"查":{"docs":{},"当":{"docs":{},"前":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"位":{"docs":{},"置":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"要":{"docs":{},"求":{"docs":{},"很":{"docs":{},"高":{"docs":{},"的":{"docs":{},"任":{"docs":{},"务":{"docs":{},",":{"docs":{},"这":{"docs":{},"就":{"docs":{},"是":{"docs":{},"为":{"docs":{},"什":{"docs":{},"么":{"docs":{},"我":{"docs":{},"决":{"docs":{},"定":{"docs":{},"建":{"docs":{},"立":{"docs":{},"一":{"docs":{},"个":{"docs":{},"专":{"docs":{},"门":{"docs":{},"的":{"docs":{},"版":{"docs":{},"本":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"需":{"docs":{},"要":{"docs":{},"知":{"docs":{},"道":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"位":{"docs":{},"置":{"docs":{},"在":{"docs":{},"任":{"docs":{},"何":{"docs":{},"给":{"docs":{},"定":{"docs":{},"的":{"docs":{},"时":{"docs":{},"间":{"docs":{},",":{"docs":{},"这":{"docs":{},"是":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"给":{"docs":{},"你":{"docs":{},"的":{"docs":{},"。":{"docs":{},"(":{"docs":{},"我":{"docs":{},"正":{"docs":{},"在":{"docs":{},"做":{"docs":{},"更":{"docs":{},"多":{"docs":{},"的":{"docs":{},"测":{"docs":{},"试":{"docs":{},",":{"docs":{},"这":{"docs":{},"可":{"docs":{},"能":{"docs":{},"最":{"docs":{},"终":{"docs":{},"在":{"docs":{},"常":{"docs":{},"规":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"j":{"docs":{"versions.html#gitbook_21":{"ref":"versions.html#gitbook_21","tf":0.09090909090909091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"j":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403},"versions.html#gitbook_21":{"ref":"versions.html#gitbook_21","tf":0.09090909090909091}}}}}}}},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{"versions.html#gitbook_21":{"ref":"versions.html#gitbook_21","tf":0.09090909090909091}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{"versions.html#gitbook_21":{"ref":"versions.html#gitbook_21","tf":0.09090909090909091}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}}}},"b":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}}}}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},",":{"docs":{},"从":{"docs":{},"c":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"浏":{"docs":{},"览":{"docs":{},"器":{"docs":{},"到":{"docs":{},"i":{"docs":{"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":0.05}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}}}}}}}}}},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}},"k":{"docs":{},"e":{"docs":{},"a":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"t":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"docs":{}},"docs":{}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}}},"j":{"docs":{},"e":{"docs":{},"r":{"docs":{},"k":{"docs":{},"i":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}},"q":{"docs":{},"m":{"docs":{"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":0.05}}},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"k":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}},"y":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}},"y":{"docs":{},"e":{"docs":{},"r":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"s":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},">":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.017857142857142856},"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.058823529411764705}}}}}}}}}},"n":{"docs":{},"e":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}},"a":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"k":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"s":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"e":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}},"x":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}},"a":{"docs":{},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}},"a":{"docs":{},"d":{"docs":{"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"w":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"/":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"a":{"docs":{},"v":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.005080440304826418}}}},"u":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},"e":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{"config.html#gitbook_6":{"ref":"config.html#gitbook_6","tf":0.0625},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}}},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"u":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}}}},"n":{"docs":{},"o":{"docs":{},"-":{"docs":{},"d":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}},"y":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.026785714285714284},"config.html#gitbook_6":{"ref":"config.html#gitbook_6","tf":0.0625},"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.058823529411764705},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.0059271803556308214},"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.044444444444444446}},"l":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"配":{"docs":{},"置":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{},"所":{"docs":{},"谓":{"docs":{},"的":{"docs":{},"标":{"docs":{},"准":{"docs":{},"化":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"设":{"docs":{},"置":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"浏":{"docs":{},"览":{"docs":{},"器":{"docs":{},"并":{"docs":{},"不":{"docs":{},"支":{"docs":{},"持":{"docs":{},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{"config.html#gitbook_6":{"ref":"config.html#gitbook_6","tf":0.0625}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"y":{"docs":{},"(":{"0":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}},"docs":{}}}},"t":{"docs":{},"o":{"docs":{},"(":{"0":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835}}},"docs":{}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"x":{"docs":{},"/":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}},"g":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}},"docs":{}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"x":{"docs":{},"/":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"v":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.024390243902439025}}}}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}}},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"k":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"o":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.004233700254022015}},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}}}}}}}},"a":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"g":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"s":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}},"u":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"x":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835}}},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}},"t":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}}}}}}},"s":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.017857142857142856},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.005080440304826418}}}},"w":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.026785714285714284},"config.html#gitbook_6":{"ref":"config.html#gitbook_6","tf":0.0625},"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.0059271803556308214},"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.044444444444444446}}},"g":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}},"x":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"(":{"docs":{},")":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"m":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"o":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.010638297872340425},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}},"l":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"k":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"o":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"config.html#gitbook_6":{"ref":"config.html#gitbook_6","tf":0.0625},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.014184397163120567},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.0059271803556308214}},".":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}}}}}}}}},"e":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"n":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":0.05}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353}}}}}}}}}}}},"(":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"f":{"docs":{},"f":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835}},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.6737588652482269}}},"x":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.6737588652482269}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835}}}}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"u":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}},"p":{"docs":{},">":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"d":{"docs":{},"o":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835}}}}}}}}}}}},"a":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"e":{"docs":{},"r":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.017857142857142856},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.004233700254022015}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}},"o":{"docs":{},"p":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.005080440304826418}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}},":":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"或":{"docs":{},"者":{"docs":{},"a":{"docs":{},"b":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"l":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"o":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.017857142857142856},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}},"l":{"docs":{},"y":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"o":{"docs":{},"(":{"docs":{},"x":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.6666666666666666}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.005080440304826418}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"i":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}},"(":{"docs":{},")":{"docs":{},"。":{"docs":{},"此":{"docs":{},"属":{"docs":{},"性":{"docs":{},"应":{"docs":{},"该":{"docs":{},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}},"c":{"docs":{},"i":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.010638297872340425},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.0059271803556308214}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"x":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.010638297872340425}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"g":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.005080440304826418}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"u":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.010638297872340425}}}}},"e":{"docs":{},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"/":{"docs":{},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}}}},"u":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"y":{"docs":{},"b":{"docs":{},"o":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"y":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"s":{"docs":{},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"l":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"s":{"docs":{},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"只":{"docs":{},"会":{"docs":{},"作":{"docs":{},"用":{"docs":{},"到":{"docs":{},"选":{"docs":{},"择":{"docs":{},"器":{"docs":{},"选":{"docs":{},"中":{"docs":{},"元":{"docs":{},"素":{"docs":{},"的":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"需":{"docs":{},"要":{"docs":{},"对":{"docs":{},"多":{"docs":{},"个":{"docs":{},"对":{"docs":{},"象":{"docs":{},"使":{"docs":{},"用":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"。":{"docs":{},"因":{"docs":{},"此":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{},"名":{"docs":{},"称":{"docs":{},"代":{"docs":{},"替":{"docs":{},"i":{"docs":{},"d":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"l":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"s":{"docs":{},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"r":{"docs":{},"e":{"docs":{},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"s":{"docs":{},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.004233700254022015}}}}}}},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"l":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"o":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}},"z":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}},"p":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"u":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}},"a":{"docs":{},"i":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.017857142857142856},"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.08823529411764706},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.03900709219858156},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.018628281117696866}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"config.html#gitbook_6":{"ref":"config.html#gitbook_6","tf":0.0625},"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.010638297872340425},"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.044444444444444446}},"s":{"docs":{},"的":{"docs":{},"值":{"docs":{},"为":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}},"docs":{}},"docs":{}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}},"y":{"docs":{},"(":{"docs":{},"x":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}},"x":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.024390243902439025}},"/":{"docs":{},"i":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}},"e":{"docs":{},"r":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.006773920406435224}}},"n":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.6702127659574467}}}}}}}}}}}},"h":{"2":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"docs":{}}}}}}},"t":{"docs":{},"o":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}},"(":{"docs":{},"x":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"e":{"docs":{},"l":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}}}}}}}}},"-":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"b":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"h":{"docs":{},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}},"l":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}},"p":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}},"d":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"g":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"z":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}},"e":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"m":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"u":{"docs":{},"m":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"x":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"x":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":10}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"t":{"docs":{},"o":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}}}}}}},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"u":{"docs":{},"m":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}},"s":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"f":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"s":{"docs":{},"h":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":10}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"x":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"g":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},"x":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":1.4285714285714284}}}}}}}}}}}}}}},"h":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}},"h":{"docs":{},"w":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"core.html#gitbook_16":{"ref":"core.html#gitbook_16","tf":0.0625}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"core.html#gitbook_16":{"ref":"core.html#gitbook_16","tf":0.0625}},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"h":{"docs":{},"w":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"core.html#gitbook_16":{"ref":"core.html#gitbook_16","tf":10}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"core.html#gitbook_16":{"ref":"core.html#gitbook_16","tf":0.0625}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"z":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"i":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"e":{"docs":{},"l":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"x":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"y":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"x":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"y":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"f":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"b":{"docs":{},"r":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"s":{"docs":{},"h":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{},"<":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.6666666666666666}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"b":{"docs":{},"r":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"s":{"docs":{},"h":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"x":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"x":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}},"o":{"docs":{},"n":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.004233700254022015}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"f":{"docs":{},"t":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.006773920406435224}}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"u":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.004233700254022015}}}},"b":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"g":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}},"n":{"docs":{},"g":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}}}},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835}}}}},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"o":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}},"r":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}}}}},"u":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835}}}},"f":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"v":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"e":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"r":{"docs":{},"v":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"e":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}},"x":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"o":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.010638297872340425}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"r":{"docs":{},"c":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\\":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.007620660457239628}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"-":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}}},"u":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}},"l":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"s":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"o":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}},"p":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}},"/":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}}},"-":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"-":{"docs":{},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"/":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.058823529411764705}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},"s":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"将":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"config.html#gitbook_6":{"ref":"config.html#gitbook_6","tf":0.0625}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"core.html#gitbook_16":{"ref":"core.html#gitbook_16","tf":0.0625},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"来":{"docs":{},"实":{"docs":{},"现":{"docs":{},"动":{"docs":{},"画":{"docs":{},"效":{"docs":{},"果":{"docs":{},"(":{"docs":{},"动":{"docs":{},"量":{"docs":{},"和":{"docs":{},"弹":{"docs":{},"力":{"docs":{},")":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"将":{"docs":{},"使":{"docs":{},"用":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"core.html#gitbook_16":{"ref":"core.html#gitbook_16","tf":0.0625}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"z":{"docs":{},"(":{"0":{"docs":{},")":{"docs":{},"来":{"docs":{},"把":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"器":{"docs":{},"附":{"docs":{},"加":{"docs":{},"到":{"docs":{},"硬":{"docs":{},"件":{"docs":{},"层":{"docs":{},",":{"docs":{},"以":{"docs":{},"此":{"docs":{},"来":{"docs":{},"改":{"docs":{},"变":{"docs":{},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{"core.html#gitbook_16":{"ref":"core.html#gitbook_16","tf":0.0625}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}},"c":{"docs":{},"k":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"u":{"docs":{},"e":{"docs":{"config.html#gitbook_6":{"ref":"config.html#gitbook_6","tf":0.125},"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.10975609756097561},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.01773049645390071},"core.html#gitbook_16":{"ref":"core.html#gitbook_16","tf":0.1875},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.004233700254022015},"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.044444444444444446}},"。":{"docs":{},"请":{"docs":{},"参":{"docs":{},"考":{"docs":{},"示":{"docs":{},"例":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}}}}},"时":{"docs":{},"激":{"docs":{},"活":{"docs":{},"键":{"docs":{},"盘":{"docs":{},"(":{"docs":{},"和":{"docs":{},"远":{"docs":{},"程":{"docs":{},"控":{"docs":{},"制":{"docs":{},")":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"。":{"docs":{},"请":{"docs":{},"参":{"docs":{},"考":{"docs":{},"下":{"docs":{},"面":{"docs":{},"的":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"当":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"区":{"docs":{},"域":{"docs":{},"被":{"docs":{},"点":{"docs":{},"击":{"docs":{},"或":{"docs":{},"者":{"docs":{},"触":{"docs":{},"摸":{"docs":{},"但":{"docs":{},"并":{"docs":{},"没":{"docs":{},"有":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"时":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"让":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"抛":{"docs":{},"出":{"docs":{},"一":{"docs":{},"个":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"p":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"a":{"docs":{},"p":{"docs":{"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.024390243902439025}}},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"g":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"k":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}},"s":{"docs":{},"k":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}},"m":{"docs":{},"e":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":2.017730496453901},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":1.4370388290794724}},")":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"t":{"docs":{},"o":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"<":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},">":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"b":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":1.4285714285714284}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}}},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"docs":{}},"docs":{}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"s":{"docs":{},".":{"docs":{},"x":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}}},"v":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"u":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.017857142857142856},"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.058823529411764705}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"advance.html#gitbook_5":{"ref":"advance.html#gitbook_5","tf":1},"config.html#gitbook_6":{"ref":"config.html#gitbook_6","tf":0.0625},"customevents.html#gitbook_7":{"ref":"customevents.html#gitbook_7","tf":1},"distory.html#gitbook_8":{"ref":"distory.html#gitbook_8","tf":1},"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":0.05},"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"infinite.html#gitbook_12":{"ref":"infinite.html#gitbook_12","tf":1},"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353},"keybindings.html#gitbook_14":{"ref":"keybindings.html#gitbook_14","tf":1},"refresh.html#gitbook_15":{"ref":"refresh.html#gitbook_15","tf":1},"core.html#gitbook_16":{"ref":"core.html#gitbook_16","tf":0.0625},"scrollerinfo.html#gitbook_17":{"ref":"scrollerinfo.html#gitbook_17","tf":1},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403},"zoom.html#gitbook_19":{"ref":"zoom.html#gitbook_19","tf":1},"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.022222222222222223},"versions.html#gitbook_21":{"ref":"versions.html#gitbook_21","tf":0.09090909090909091}}}}}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"u":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"p":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}},"s":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.018628281117696866}},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}}}}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.03571428571428571},"config.html#gitbook_6":{"ref":"config.html#gitbook_6","tf":0.0625},"basicfeatures.html#gitbook_10":{"ref":"basicfeatures.html#gitbook_10","tf":0.012195121951219513},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"init.html#gitbook_13":{"ref":"init.html#gitbook_13","tf":0.029411764705882353},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806},"scrollers.html#gitbook_20":{"ref":"scrollers.html#gitbook_20","tf":0.044444444444444446}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"u":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.007620660457239628}}}}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"s":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428}}}},"b":{"docs":{},"k":{"docs":{},"i":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.008928571428571428},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}}}},"a":{"docs":{},"i":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}},"n":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.004233700254022015}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.002540220152413209}}}}}}},"d":{"docs":{},"e":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.001693480101608806}}}}},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.003386960203217612}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}},"y":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":1.3439716312056738},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":2.8605298173460745}},"o":{"docs":{},"u":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"l":{"docs":{},"l":{"docs":{"gettingstart.html#gitbook_4":{"ref":"gettingstart.html#gitbook_4","tf":0.017857142857142856},"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0070921985815602835}}}},"d":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}},"r":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}}}}},"docs":{}},"docs":{}}}}},"e":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418}},"a":{"docs":{},"h":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}},"x":{"docs":{"indicator.html#gitbook_11":{"ref":"indicator.html#gitbook_11","tf":0.0035460992907801418},"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":1.431958388774646}},",":{"docs":{},"y":{"docs":{"index.html#gitbook_9":{"ref":"index.html#gitbook_9","tf":0.05}}}}},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}},"-":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.016088060965283656}},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"snap.html#gitbook_18":{"ref":"snap.html#gitbook_18","tf":0.000846740050804403}}}}}}}}}}}},"length":1061},"corpusTokens":["0","0.0006","0.01","1","10","100","1000","1000px","10th","110","1myscrolloptions.fadescrollbarsoptions.interactivescrollbarsoptions.scrollbarsscale(0.5)onload事件之后适当的延迟,再去初始化iscroll。最好给浏览器100或者200毫秒的间隙再去初始化iscrol","don't","done","dosometh","doubl","down","down/right","drag","durat","duration/spe","dure","each","earli","eas","easili","easing)next()
prev()options.zoomoptions.zoommaxoptions.zoomminoptions.zoomstartoptions.wheelactionzoom(scal","easing)scrollby(x","easing)scrolltoelement(el","edit","effect","eg","el","elast","element","element').on('tap","element.addeventlistener('tap","element|el","emit","empti","end","enforc","enhanc","enough","ensur","even","event","eventunload","href=\"#scroller-info\">scrol","html","id=\"advanced-options\">advanc","id=\"contributing\">contribut","id=\"custom-events\">custom","id=\"destroy\">destroyinfinit","id=\"key-bindings\">kei","id=\"license\">licens","id=\"onscroll\">onscrol","id=\"parallax-scrolling\">parallax","id=\"parallax-scrolling\">视差滚动视差滚动scrol","id=\"refresh\">mast","id=\"scroller-info\">us","id=\"snap\">snap滚动条样式who","id=\"wrapp","id=\"zoom\">zoom...prev","nice","nike","nobodi","noninfring","normal","notabl","note","noth","notic","null","number","object","obtain","offset","offseti","offsetx","on","on(typ","onbeforescrollstart","onc","oncomplet","onload=\"load","onscrol","opac","open","option","option.bounceeas","optionsdo","p>a","p>consid","p>for","p>some","p>the","p>thi","p>you","page","pagedown","pageup","parallax","paramet","particular","pass","passthrough","peopl","per","perform","permiss","permit","person","phase","physic","piec","pinch/zoom","pixel","place","playboi","pleas","plu","plural","point","pointer","poll","poor","portion","posit","position:relative或者absolut","positionoptions.bindtowrapp","small>options.bounc","small>options.bounceoptions.clickoptions.disablemouse
options.disablepointer
options.disabletouchoptions.eventpassthroughoptions.freescrolloptions.keybindingsoptions.invertwheeldirectionoptions.momentumoptions.mousewheeloptions.preventdefaultoptions.scrollbarsoptions.scrollx
options.scrollyoptions.startx
options.startyoptions.tap","small>options.bounceeas","small>options.bouncetim","small>options.click","small>options.deceler","small>options.disablemouse
options.disablepointer
options.disabletouch","small>options.eventpassthrough","small>options.fadescrollbar","small>options.freescrol","small>options.hwcomposit","small>options.interactivescrollbar","small>options.invertwheeldirect","small>options.keybind","small>options.momentum","small>options.mousewheel","small>options.mousewheelspe","small>options.preventdefault","small>options.preventdefaultexcept","small>options.probetyp","small>options.resizepol","small>options.resizescrollbar","small>options.scrollbar","small>options.scrollbarsoptions.fadescrollbarsoptions.interactivescrollbarsoptions.resizescrollbarsoptions.shrinkscrollbar","small>options.scrollx
options.scrolli","small>options.shrinkscrollbar","small>options.snap","small>options.snapgotopage(x","small>options.startx
options.starti","small>options.tap","small>options.usetransform","small>options.usetransformoptions.usetransitionoptions.hwcomposit","small>options.usetransit","small>options.wheelact","small>options.zoom","small>options.zoommax","small>options.zoommin","small>options.zoomstart","small>options.indicators.el","small>options.indicators.eloptions.indicators.ignoreboundariesoptions.indicators.listenx
options.indicators.listenyoptions.indicators.speedratiox
options.indicators.speedratioyoptions.indicators.fade
options.indicators.interactive
options.indicators.resize
options.indicators.shrinkoptions.indicators.fade
options.indicators.interactive
options.indicators.resize
options.indicators.shrink","small>options.indicators.ignoreboundari","small>options.indicators.listenx
options.indicators.listeni","small>options.indicators.speedratiox
options.indicators.speedratioi","smart","smarter","smartphon","snap","snapshot","softwar","solid","solut","someth","sometim","soon","soonscal","structur","stuff","style","subject","sublicens","submiss","substanti","suggest","sum","support","sure","surpris","syntax","system","tablet","tag","tagnam","take","tap","task","tell","test","text","text-shadow","textur","that'","that.options.bindtowrapperoptions.bounceeasingoptions.bouncetimeoptions.decelerationoptions.mousewheelspeedoptions.preventdefaultexceptionoptions.resizepollingoptions.probetyp","timeout","to-the-pixel","togeth","top","top/left","tort","total","touch","track","transform","transforms,那么usetransform属性值将为fals","transit","transition来实现动画效果(动量和弹力)。如果设置为false,那么将使用requestanimationfram","translatez(0)来把滚动器附加到硬件层,以此来改变css","trigger","tripl","true","true。请参考示例horizont","true时激活键盘(和远程控制)绑定。请参考下面的kei","true,当滚动区域被点击或者触摸但并没有滚动时,可以让iscroll抛出一个自定义的tap","try","tv","type","type=\"text/javascript","ul","undefin","undefinedundefin","understand","unfortun","unnecessari","up","up/down","up/left","updat","us","user","usetransition:fals","usual","valid","valu","var","variabl","veri","vertic","virtual","visual","wai","wait","want","warranti","webkit","websit","well","wheel","wheelact","whether","wide","window","without","wittiest","work","wrapper","x","x,y","y","ye","yeah","you'd","you'll","you'r","zero","zero-timeout","zoom","zoom(scal","zoomend","zoomstart"],"pipeline":["trimmer","stopWordFilter","stemmer"]} ================================================ FILE: _book/snap.html ================================================ 捕获 | iScroll 5 API 中文版

iScroll 5 API 中文版

Snap

iScroll can snap to fixed positions and elements.

options.snap

The simplest snap config is as follow:

var myScroll = new IScroll('#wrapper', {
    snap: true
});

This would automatically split the scroller into pages the size of the container.

snap also takes a string as a value. The string will be the selector to the elements the scroller will be snapped to. So the following

var myScroll = new IScroll('#wrapper', {
    snap: 'li'
});

would snap to each and every LI tag.

To help you navigate through the snap points iScroll grants access to a series of interesting methods.

goToPage(x, y, time, easing)

x and y represent the page number you want to scroll to in the horizontal or vertical axes (yeah, it's the plural of axis, I checked). If the scroller in mono-dimensional, just pass 0 to the axis you don't need.

time is the duration of the animation, easing the easing function used to scroll to the point. Refer to the option.bounceEasing in the Advanced features. They are both optional.

myScroll.goToPage(10, 0, 1000);

This would scroll to the 10th page on the horizontal axis in 1 second.

next()
prev()

Go to the next and previous page based on current position.

Zoom

To use the pinch/zoom functionality you better use the iscroll-zoom.js script.

options.zoom

Set this to true to activate zoom.

Default: false

options.zoomMax

Maximum zoom level.

Default: 4

options.zoomMin

Minimum zoom level.

Default: 1

options.zoomStart

Starting zoom level.

Default: 1

options.wheelAction

Wheel action can be set to 'zoom' to have the wheel regulate the zoom level instead of scrolling position.

Default: undefined (ie: the mouse wheel scrolls)

To sum up, a nice zoom config would be:

myScroll = new IScroll('#wrapper', {
    zoom: true,
    mouseWheel: true,
    wheelAction: 'zoom'
});

The zoom is performed with CSS transform. iScroll can zoom only on browsers that support that.

Some browsers (notably webkit based ones) take a snapshot of the zooming area as soon as they are placed on the hardware compositing layer (say as soon as you apply a transform to them). This snapshot is used as a texture for the zooming area and it can hardly be updated. This means that your texture will be based on elements at scale 1 and zooming in will result in blurred, low definition text and images.

A simple solution is to load content at double (or triple) its actual resolution and scale it down inside a scale(0.5) div. This should be enough to grant you a better result. I hope to be able to post more demos soon

Refer to the zoom demo.

zoom(scale, x, y, time)

Juicy method that lets you zoom programmatically.

scale is the zoom factor.

x and y the focus point, aka the center of the zoom. If not specified, the center of the screen will be used.

time is the duration of the animation in milliseconds (optional).

Infinite scrolling

iScroll integrates a smart caching system that allows to handle of a virtually infinite amount of data using (and reusing) just a bunch of elements.

Infinite scrolling is in an early stage of development and although it can be considered stable, it is not ready for wide consumption.

Please review the infinite demo and send your suggestions and bug reports.

I will add more details as soon as the functionality evolves.

Advanced options

For the hardcore developer.

options.bindToWrapper

The move event is normally bound to the document and not the scroll container. When you move the cursor/finger out of the wrapper the scrolling keeps going. This is usually what you want, but you can also bind the move event to wrapper itself. Doing so as soon as the pointer leaves the container the scroll stops.

Default: false

options.bounceEasing

Easing function performed during the bounce animation. Valid values are: 'quadratic', 'circular', 'back', 'bounce', 'elastic'. See the bounce easing demo, drag the scroller down and release.

bounceEasing is a bit smarter than that. You can also feed a custom easing function, like so:

bounceEasing: {
    style: 'cubic-bezier(0,0,1,1)',
    fn: function (k) { return k; }
}

The above would perform a linear easing. The style option is used every time the animation is executed with CSS transitions, fn is used with requestAnimationFrame. If the easing function is too complex and can't be represented by a cubic bezier just pass '' (empty string) as style.

Note that bounce and elastic can't be performed by CSS transitions.

Default: 'circular'

options.bounceTime

Duration in millisecond of the bounce animation.

Default: 600

options.deceleration

This value can be altered to change the momentum animation duration/speed. Higher numbers make the animation shorter. Sensible results can be experienced starting with a value of 0.01, bigger than that basically doesn't make any momentum at all.

Default: 0.0006

options.mouseWheelSpeed

Set the speed of the mouse wheel.

Default: 20

options.preventDefaultException

These are all the exceptions when preventDefault() would be fired anyway despite the preventDefault option value.

This is a pretty powerful option, if you don't want to preventDefault() on all elements with formfield class name for example, you could pass the following:

preventDefaultException: { className: /(^|\s)formfield(\s|$)/ }

Default: { tagName: /^(INPUT|TEXTAREA|BUTTON|SELECT)$/ }.

options.resizePolling

When you resize the window iScroll has to recalculate elements position and dimension. This might be a pretty daunting task for the poor little fella. To give it some rest the polling is set to 60 milliseconds.

By reducing this value you get better visual effect but the script becomes more aggressive on the CPU. The default value seems a good compromise.

Default: 60

Mastering the refresh method

iScroll needs to know the exact dimensions of both the wrapper and the scroller. They are computed at start up but if your elements change in size, we need to tell iScroll that you are messing with the DOM.

This is achieved by calling the refresh method with the right timing. Please follow me closely, understanding this will save you hours of frustration.

Every time you touch the DOM the browser renderer repaints the page. Once this repaint has happened we can safely read the new DOM properties. The repaint phase is not instantaneous and it happens only at the end of the scope that triggered it. That's why we need to give the renderer a little rest before refreshing the iScroll.

To ensure that javascript gets the updated properties you should defer the refreh with something like this:

ajax('page.php', onCompletion);

function onCompletion () {
    // Update here your DOM

    setTimeout(function () {
        myScroll.refresh();
    }, 0);
};

We have placed the refresh() call into a zero timeout. That is likely all you need to correctly refresh the iScroll boundaries. There are other ways to wait for the repaint, but the zero-timeout has proven pretty solid.

Consider that if you have a very complex HTML structure you may give the browser some more rest and raise the timeout to 100 or 200 milliseconds.

This is generally true for all the tasks that have to be done on the DOM. Always give the renderer some rest.

Custom events

iScroll also emits some useful custom events you can hook to.

To register them you use the on(type, fn) method.

myScroll = new IScroll('#wrapper');
myScroll.on('scrollEnd', doSomething);

The above code executes the doSomething function every time the content stops scrolling.

The available types are:

  • beforeScrollStart, executed as soon as user touches the screen but before the scrolling has initiated.
  • scrollCancel, scroll initiated but didn't happen.
  • scrollStart, the scroll started.
  • scroll, the content is scrolling. Available only in scroll-probe.js edition. See onScroll event.
  • scrollEnd, content stopped scrolling.
  • flick, user flicked left/right.
  • zoomStart, user started zooming.
  • zoomEnd, zoom ended.

onScroll event

The scroll event is available on iScroll probe edition only (iscroll-probe.js). The probe behavior can be altered through the probeType option.

options.probeType

This regulates the probe aggressiveness or the frequency at which the scroll event is fired. Valid values are: 1, 2, 3. The higher the number the more aggressive the probe. The more aggressive the probe the higher the impact on the CPU.

probeType: 1 has no impact on performance. The scroll event is fired only when the scroller is not busy doing its stuff.

probeType: 2 always executes the scroll event except during momentum and bounce. This resembles the native onScroll event.

probeType: 3 emits the scroll event with a to-the-pixel precision. Note that the scrolling is forced to requestAnimationFrame (ie: useTransition:false).

Please see the probe demo.

Key bindings

You can activate support for keyboards and remote controls with the keyBindings option. By default iScroll listens to the arrow keys, page up/down, home/end but they are (wait for it) totally customizable.

You can pass an object with the list of key codes you want iScroll to react to.

The default values are as follow:

keyBindings: {
    pageUp: 33,
    pageDown: 34,
    end: 35,
    home: 36,
    left: 37,
    up: 38,
    right: 39,
    down: 40
}

You can also pass a string (eg: pageUp: 'a') and iScroll will convert it for you. You could just think of a key code and iScroll would read it out of your mind.

Useful scroller info

iScroll stores many useful information that you can use to augment your application.

You will probably find useful:

  • myScroll.x/y, current position
  • myScroll.directionX/Y, last direction (-1 down/right, 0 still, 1 up/left)
  • myScroll.currentPage, current snap point info

These pieces of information may be useful when dealing with custom events. Eg:

myScroll = new IScroll('#wrapper');
myScroll.on('scrollEnd', function () {
    if ( this.x < -1000 ) {
        // do something
    }
});

The above executes some code if the x position is lower than -1000px when the scroller stops. Note that I used this instead of myScroll, you can use both of course, but iScroll passes itself as this context when firing custom event functions.

Destroy

The public destroy() method can be used to free some memory when the iScroll is not needed anymore.

myScroll.destroy();
myScroll = null;

Contributing and CLA

If you want to contribute to the iScroll development, before I can accept your submission I have to ask you to sign the Contributor License Agreement. Unfortunately that is the only way to enforce the openness of the script.

As an end user you have to do nothing of course. Actually the CLA ensures that nobody will even come after you asking for your first born for using the iScroll.

Please note that pull requests may take some time to be accepted. Testing iScroll is one of the most time consuming tasks of the project. iScroll works from desktop to smartphone, from tablets to smart TVs. I do not have physical access to all the testing devices, so before I can push a change I have to make sure that the new code is working everywhere.

Critical bugs are usually applied very quickly, but enhancements and coding style changes have to pass a longer review phase. Remember that this is still a side project for me.

Who is using iScroll

It's impossible to track all the websites and applications that use the iScroll. It has been spotted on: Apple, Microsoft, People, LinkedIn, IKEA, Nike, Playboy, Bose, and countless others.

License (MIT)

Copyright (c) 2014 Matteo Spinelli, cubiq.org

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

================================================ FILE: _book/versions.html ================================================ 版本 | iScroll 5 API 中文版

iScroll 5 API 中文版

iScroll的版本

针对iScroll的优化。为了达到更高的性能,iScroll分为了多个版本。你可以选择最适合你的版本。

目前我们有以下版本:

  • iscroll.js,这个版本是常规应用的脚本。它包含大多数常用的功能,有很高的性能和很小的体积。
  • iscroll-lite.js,精简版本。它不支持快速跳跃,滚动条,鼠标滚轮,快捷键绑定。但如果你所需要的是滚动(特别是在移动平台) iScroll 精简版 是又小又快的解决方案。
  • iscroll-probe.js,探查当前滚动位置是一个要求很高的任务,这就是为什么我决定建立一个专门的版本。如果你需要知道滚动位置在任何给定的时间,这是iScroll给你的。(我正在做更多的测试,这可能最终在常规iscroll.js脚本,请留意)。
  • iscroll-zoom.js,在标准滚动功能上增加缩放功能。
  • iscroll-infinite.js,可以做无限缓存的滚动。处理很长的列表的元素为移动设备并非易事。 iScroll infinite版本使用缓存机制,允许你滚动一个潜在的无限数量的元素。
================================================ FILE: _book/zoom.html ================================================ 缩放 | iScroll 5 API 中文版 ================================================ FILE: advance.md ================================================ ## 高级选项 下面这些选项主要针对核心开发人员。 ### options.bindToWrapper `move`事件通常绑定到文档而不是滚动器容器(wrapper)。当你在滚动器容器(wrapper)外移动光标/手指,滚动条将不断滚动。这通常是你想要的,但是你也可以绑定事件转移到滚动器容器(wrapper)本身。这样做一旦指针离开了容器,滚动就会停止。 Default: `false` 默认值:`false` ### options.bounceEasing 擦除功能在弹跳动画过程中执行。有效的值为:`'quadratic'`, `'circular'`, `'back'`, `'bounce'`, `'elastic'`. 参见[bounce easing demo](http://lab.cubiq.org/iscroll5/demos/bounce-easing/),往下拽滚动条然后释放。 `bounceEasing`比上面的示例更强大。你可以自定义一个消除的方式,比如: ```js bounceEasing: { style: 'cubic-bezier(0,0,1,1)', fn: function (k) { return k; } } ``` 上面这个示例将执行一个线性的擦出。`style`选项将在在每次动画执行时使用CSS转场执行。`fn`和`requestAnimationFrame`一起使用。如果一个擦出功能太复杂,不能由一个三次贝塞尔曲线展现,那么为`style`属性传递 `''` (空字符串)。 注意:`bounce` 和 `elastic`这两种方式不能被CSS转场执行。 Default: `'circular'` 默认值:`'circular'` ### options.bounceTime 弹跳动画的持续时间,使用毫秒级。 默认值:`600` ### options.deceleration 这个值可以改变改变动画的势头持续时间/速度。更高的数字使动画更短。你可以从`0.01`开始去体验,这个值和基本的值比较,基本上没有动能。 默认值:`0.0006` ### options.mouseWheelSpeed 设置鼠标滚轮滚动的速度值。 默认值:`20` ### options.preventDefaultException 调用`preventDefault()`方法时所有的异常将被触发,尽管**preventDefault**设置了值。 这是一个强大的选项,如果你想为所有包含*formfield*样式名称的元素上应用`preventDefault()`方法,你可以设置为下面的值: ```js preventDefaultException: { className: /(^|\s)formfield(\s|$)/ } ``` 默认值:`{ tagName: /^(INPUT|TEXTAREA|BUTTON|SELECT)$/ }`. ### options.resizePolling 当你改变窗口的大小iScroll重新计算元素的位置和尺寸。这可能是一个相当艰巨的任务。轮询设置为60毫秒。 通过降低这个值你获得更好的视觉效果,但会占用更多的CPU资源。默认值是一个很好的折中。 默认值:`60` ================================================ FILE: basicfeatures.md ================================================ ## 基本功能 ### options.bounce 当滚动器到达容器边界时他将执行一个小反弹动画。在老的或者性能低的设备上禁用反弹对实现平滑的滚动有帮助。 默认值:`true` ### options.click 为了重写原生滚动条,iScroll禁止了一些默认的浏览器行为,比如鼠标的点击。如果你想你的应用程序响应*click*事件,那么该设置次属性为`true`。请注意,建议使用自定义的`tap` 事件来代替它(见下面)。 默认属性:`false` ### options.disableMouse
options.disablePointer
options.disableTouch 默认情况下,iScroll监听所有的指针事件,并且对这些事件中第一个被触发的做出反应。这看上去是浪费资源,但是在大量的浏览器/设备上兼容,特定的事件侦测证明是无效的,所以*listen-to-all*是一个安全的做法。 如果你有一种设备侦测的内部机制,或者你知道你的脚本将在什么地方运行,你可以把你不需要的事件禁用(鼠标,指针或者触摸事件)。 下面的例子是禁用鼠标和指针事件: ```js var myScroll = new IScroll('#wrapper', { disableMouse: true, disablePointer: true }); ``` 默认值:`false` ### options.eventPassthrough 有些时候你想保留原生纵向的滚动条但想为横向滚动条增加iScroll功能(比如走马灯)。设置这个属性为`true`并且iScroll区域只将影响横向滚动,纵向滚动将滚动整个页面。 在移动设备上访问[event passthrough demo](http://lab.cubiq.org/iscroll5/demos/event-passthrough/)。注意,这个值也可以设置为`'horizontal'`,其作用和上面介绍的相反(横向滚动条保持原生,纵向滚动条使用iScroll)。 ### options.freeScroll 此属性针对于两个两个纬度的滚动条(当你需要横向和纵向滚动条)。通常情况下你开始滚动一个方向上的滚动条,另外一个方向上会被锁定不动。有些时候,你需要无约束的移动(横向和纵向可以同时响应),在这样的情况下此属性需要设置为`true`。请参考 [2D scroll demo](http://lab.cubiq.org/iscroll5/demos/2d-scroll/)。 默认值:`false` ### options.keyBindings 此属性为`true`时激活键盘(和远程控制)绑定。请参考下面的[Key bindings](#key-bindings)内容。 默认值:`false` ### options.invertWheelDirection 当鼠标滚轮支持激活后,在有些情况下需要反转滚动的方向。(比如,鼠标滚轮向下滚动条向上,反之亦然)。 默认值:`false` ### options.momentum 在用户快速触摸屏幕时,你可以开/关势能动画。关闭此功能将大幅度提升性能。 默认值:`true` ### options.mouseWheel 侦听鼠标滚轮事件。 默认值:`false` ### options.preventDefault 当事件触发时师傅执行`preventDefault()`。此属性应该设置为`true`,除非你真的知道你需要怎么做。 请参考[Advanced features](#advanced-features)中的`preventDefaultException`,可以获取更多控制preventDefault行为的信息。 Default: `true` 默认值:`true` ### options.scrollbars 是否显示为默认的滚动条。更多信息请查看[Scrollbar](#scrollbar) 默认值:`false` ### options.scrollX
options.scrollY 默认情况下只有纵向滚动条可以使用。如果你需要使用横向滚动条,需要将`scrollX` 属性值设置为 `true`。请参考示例[horizontal demo](http://lab.cubiq.org/iscroll5/demos/horizontal/)。 也可以参考**freeScroll**选项。 默认值:`scrollX: false`,`scrollY: true` 注意属性 `scrollX/Y: true` 与`overflow: auto`有相同的效果。设置一个方向上的值为 `false` 可以节省一些检测的时间和CPU的计算周期。 ### options.startX
options.startY 默认情况下iScroll从`0, 0` (top left)位置开始,通过此属性可以让滚动条从不同的位置开始滚动。 默认值:`0` ### options.tap 设置此属性为`true`,当滚动区域被点击或者触摸但并没有滚动时,可以让iScroll抛出一个自定义的`tap`事件。 这是处理与可以点击元素之间的用户交互的建议方式。侦听`tap`事件和侦听标准事件的方式一致。示例如下: ```js element.addEventListener('tap', doSomething, false); \\ Native $('#element').on('tap', doSomething); \\ jQuery ``` 你可以通过传递一个字符串来自定义事件名称。比如: ```js tap: 'myCustomTapEvent' ``` 在这个示例里你应该侦听名为`myCustomTapEvent`的事件。 默认值:`false` ================================================ FILE: config.md ================================================ ## 配置iScroll 在iScroll初始化阶段可以通过构造函数的第二个参数配置它。 ```js var myScroll = new IScroll('#wrapper', { mouseWheel: true, scrollbars: true }); ``` 上面的例子示例了在iScroll初始化时开启鼠标滚轮支持和滚动条支持。 在初始化后你可以通过`options`对象访问*标准化*值。例如: ```js console.dir(myScroll.options); ``` 上面的语句将返回`myScroll`实例的配置信息。所谓的*标准化*意味着如果你设置`useTransform:true`,但是浏览器并不支持CSS transforms,那么`useTransform`属性值将为`false`。 ================================================ FILE: core.md ================================================ ## 理解核心 iScroll使用基于设备和浏览器性能的各种技术来进行滚动。**通常不需要你来配置引擎**,iScroll会为你选择最佳的方式。 尽管如此,理解iScroll工作机制和了解如何去配置他们也是很重要的。 ### options.useTransform 默认情况下引擎会使用CSS`transform`属性。如果现在还是2007年,那么可以设置这个属性为`false`,这就是说:引擎将使用`top`/`left`属性来进行滚动。 这个属性在滚动器感知到Flash,iframe或者视频插件内容时会有用,但是需要注意:性能会有极大的损耗。 默认值:`true` ### options.useTransition iScroll使用CSS transition来实现动画效果(动量和弹力)。如果设置为`false`,那么将使用`requestAnimationFrame`代替。 在现在浏览器中这两者之间的差异并不明显。在老的设备上transitions执行得更好。 默认值:`true` ### options.HWCompositing 这个选项尝试使用`translateZ(0)`来把滚动器附加到硬件层,以此来改变CSS属性。在移动设备上这将提高性能,但在有些情况下,你可能想要禁用它(特别是如果你有太多的元素和硬件性能跟不上)。 默认值:`true` 如果不确定iScroll的最优配置。从性能角度出发,上面的所有选项应该设置为`true`。(或者更好的方式,让他们自动设置属性为true)。你可以尝试这配置他们,但是要小心内存泄漏。 ================================================ FILE: customevents.md ================================================ ## 自定义事件

Custom events

iScroll还提供额一些你可以挂靠的有用的自定义事件。 使用`on(type, fn)`方法注册事件。 ```js myScroll = new IScroll('#wrapper'); myScroll.on('scrollEnd', doSomething); ``` 上面的代码会在每次滚动停止是执行`doSomething`方法。 可以挂靠的事件如下: * **beforeScrollStart**,在用户触摸屏幕但还没有开始滚动时触发。 * **scrollCancel**,滚动初始化完成,但没有执行。 * **scrollStart**,开始滚动 * **scroll**,内容滚动时触发,只有在`scroll-probe.js`版本中有效,请参考[onScroll event](#onscroll)。 * **scrollEnd**,停止滚动时触发。 * **flick**,用户打开左/右。 * **zoomStart**,开始缩放。 * **zoomEnd**,缩放结束。 ## onScroll事件 The `scroll` event is available on **iScroll probe edition** only (`iscroll-probe.js`). The probe behavior can be altered through the `probeType` option. `scroll`事件在**iScroll probe edition**版本中有效(仅包含在`iscroll-probe.js`脚本文件中)。可以通过改变`probeType`选项值来改变`scroll`事件的触发时机。 ### options.probeType 这个属性是调节在`scroll`事件触发中探针的活跃度或者频率。有效值有:`1`, `2`, `3`。数值越高表示更活跃的探测。探针活跃度越高对CPU的影响就越大。 `probeType: 1` 对性能没有影响。`scroll`事件只有在滚动条不繁忙的时候触发。 `probeType: 2` 除了在势能和反弹范围内,将在`scroll`事件周期内一直执行。这类似于原生的`onScroll`事件。 `probeType: 3` 像素级的触发`scroll`事件。注意,此时滚动只关注`requestAnimationFrame` (即:`useTransition:false`). 请参考 [probe demo](http://lab.cubiq.org/iscroll5/demos/probe/). ================================================ FILE: distory.md ================================================ ##销毁

Destroy

在不需要使用iScoll的时候调用iScroll实例的公共方法`destroy()`可以释放一些内存。 ```js myScroll.destroy(); myScroll = null; ``` ================================================ FILE: gettingstart.md ================================================ ## 入门 你想成为iScroll大师。行,这就是我写以下内容的目的。 最好的学习iScroll的方法是看示例。在存档文件中你会发现一个叫做`demo`的文件夹[示例](https://github.com/cubiq/iscroll/tree/master/demos)。这里有大多数脚本功能的概述。 `IScroll`是一个类,每个需要使用滚动功能的区域均要进行初始化。每个页面上的iScroll实例数目在设备的CPU和内存能承受的范围内是没有限制的。 尽可能保持DOM结构的简洁。iScroll使用硬件合成层但是有一个限制硬件可以处理的元素。 最佳的HTML结构如下: ```html
  • ...
  • ...
  • ...
``` iScroll作用于滚动区域的外层。在上面的例子中,`UL`元素能进行滚动。只有容器元素的第一个子元素能进行滚动,其他子元素完全被忽略。 `box-shadow`, `opacity`, `text-shadow` and alpha channels are all properties that don't go very well together with hardware acceleration. Scrolling might look good with few elements but as soon as your DOM becomes more complex you'll start experiencing lag and jerkiness. Sometimes a background image to simulate the shadow performs better than `box-shadow`. The bottom line is: experiment with CSS properties, you'll be surprised by the difference in performance a small CSS change can do. 最基本的脚本初始化的方式如下: ```js ``` 第一个参数可以是滚动容器元素的DOM选择器字符串,也可以是滚动容器元素的引用对象。下面是一个有效的语法: ```js var wrapper = document.getElementById('wrapper'); var myScroll = new IScroll(wrapper); ``` 所以基本上你要么直接传递元素,要么传递一个`querySelector`字符串。因此可以使用css名称代替ID去选择一个滚动器容器,如下: ```js var myScroll = new IScroll('.wrapper'); ``` 注意,iScroll使用的是`querySelector` 而不是 `querySelectorAll`,所以iScroll只会作用到选择器选中元素的第一个。如果你需要对多个对象使用iScroll,你需要构建自己的循环机制。

You don't strictly need to assign the instance to a variable (myScroll), but it is handy to keep a reference to the iScroll.

For example you could later check the scroller position or unload unnecessary events when you don't need the iScroll anymore.

================================================ FILE: indicator.md ================================================ ## 指示器 上面所有关于滚动条的选项实际上是包装了一个底层的选项`indicators`。它看起来或多或少像这样: ```js var myScroll = new IScroll('#wrapper', { indicators: { el: [element|element selector] fade: false, ignoreBoundaries: false, interactive: false, listenX: true, listenY: true, resize: true, shrink: false, speedRatioX: 0, speedRatioY: 0, } }); ``` ### options.indicators.el 这是一个强制性的参数,它保留了指向滚动条容器元素的引用。容器里的第一个子元素就是指示器。注意,滚动条可以在你的文档的任意地方,它不需要在滚动条包装器内。你是不是开始感到这样一个工具的厉害? 有效的语法如下: ```js indicators: { el: document.getElementById('indicator') } ``` 更简单的方式: ```js indicators: { el: '#indicator' } ``` ### options.indicators.ignoreBoundaries 这个属性是告诉指示器忽略它容器所带来的边界。当我们能改变滚动条速度的比率,在让滚动条滚动时这个属性很有用。比如你想让指示器是滚动条速度的两倍,指示器将很快到达它的结尾。这个属性被用在[视差滚动](#parallax-scrolling)。 默认值:`false` ### options.indicators.listenX
options.indicators.listenY 指示器的那一个轴(横向和纵向)被侦听。可以设置一个或者都设置 默认值:`true` ### options.indicators.speedRatioX
options.indicators.speedRatioY 指示器移动的速度和主要滚动条大小的关系。默认情况下是设置为自动。你很少需要去改变这个值。 默认值:`0` ### options.indicators.fade
options.indicators.interactive
options.indicators.resize
options.indicators.shrink 这几个选项和我们已经介绍过的[滚动条](#scrollbars)中的一样,在这里不重复介绍。 请参考[迷你地图示例](http://lab.cubiq.org/iscroll5/demos/minimap/),你将体验`indicators`选项的神奇力量。 你应该已经注意到选项`indicators`是复数,是的,实际上,传递一个对象数组你可以得到一个虚拟的无限大小的指示器。我不知道你是否需要,但是,这里我是想你介绍参数设置,所以要提及此。 ## 视差滚动 视差滚动是[指示器](#indicators)功能的一个 *附属功能* 指示器是一个遵循主滚动条移动和动画的层。如果你了解它你就会理解这个功能背后的力量。增加这个功能你就可以创建任意数量的指示器和视差滚动。 请参考 [视差滚动示例](http://lab.cubiq.org/iscroll5/demos/parallax/). ## 滚动的编程接口 当然还可以通过编程来进行滚动。 ### scrollTo(x, y, time, easing) 对应存在的一个叫做`myScroll`的iScroll实例,可以通过下面的方式滚动到任意的位置: ```js myScroll.scrollTo(0, -100); ``` 通过上面的方式将向下滚动100个像素。记住:0永远是左上角。需要滚动你必须传递负数。 `time` 和 `easing`是可选项。他们控制滚动周期(毫秒级别)和动画的擦除效果。 擦除功能是一个有效的`IScroll.utils.ease`对象。例如应用一个一秒的经典擦除动画你应该这么做: ```js myScroll.scrollTo(0, -100, 1000, IScroll.utils.ease.elastic); ``` 擦除动画的类型选项有:`quadratic`, `circular`, `back`, `bounce`, `elastic`。 ### scrollBy(x, y, time, easing) 和上面一个方法类似,但是可以传递X和Y的值从当前位置进行滚动。 ```js myScroll.scrollBy(0, -10); ``` 上面这个语句将在当前位置向下滚动10个像素。如果你当前所在位置为-100,那么滚动结束后位置为-110. ### scrollToElement(el, time, offsetX, offsetY, easing) 这是一个很有用的方法,你会喜欢它的。 在这个方法中只有一个强制的参数就是`el`。传递一个元素或者一个选择器,iScroll将尝试滚动到这个元素的左上角位置。 `time`是可选项,用于设置动画周期。 `offsetX` 和 `offsetY`定义像素级的偏移量,所以你可以滚动到元素并且加上特别的偏移量。但并不仅限于此。如果把这两个参数设置为`true`,元素将会位于屏幕的中间。请参考例子 [滚动到元素](http://lab.cubiq.org/iscroll5/demos/scroll-to-element/) example。 `easing`参数和**scrollTo**方法里的一样。 ================================================ FILE: infinite.md ================================================ ## 无限滚动 iScroll集成了一套智能缓存系统,它允许对一堆近乎无限的元素的数据进行处理和重用。目前无限滚动还处于早期开发阶段,所以虽然当前版本已经足够稳定,但是还没有做好广泛推广的准备。 具体示例请参考 [无限滚动示例](http://lab.cubiq.org/iscroll5/demos/infinite/) ,并请提交你的建议和报告bug。 作者将会尽可能快的将功能变更的细节添加上来。 ================================================ FILE: init.md ================================================ ## 初始化 当DOM准备完成后iScroll需要被初始化。最保险的方式是在window的`onload`事件中启动它。在`DOMContentLoaded`事件中或者inline initialization中做也可以,需要记住的是脚本需要知道滚动区域的高度和宽度。如果你有一些图片在滚动区域导致不能立马获取区域的高度和宽度,iScroll的滚动尺寸有可能会错误。 为滚动起容器增加```position:relative```或者```absolute```样式。这将解决大多数滚动器容器大小计算不正确的问题。 综上所述,最小的iScroll配置如下: ```html ... ...
  • ...
  • ...
  • ...
``` 转到[barebone example](http://lab.cubiq.org/iscroll5/demos/barebone/)获取更多关于最小化 CSS/HTML结构的需求。 如果你有一个复杂的DOM结构,最好在onload事件之后适当的延迟,再去初始化iScroll。最好给浏览器100或者200毫秒的间隙再去初始化iScroll。 ================================================ FILE: keybindings.md ================================================ ##按键绑定 你可以激活`keyBindings`选项来支持键盘控制。默认情况下iScroll监听方向键,上下翻页建,home/end键,但这些按键绑定完全可以自定义。 你可以通过传递一个包含按键代码列表的对象来进行按键绑定。 默认的按键值如下: ```js keyBindings: { pageUp: 33, pageDown: 34, end: 35, home: 36, left: 37, up: 38, right: 39, down: 40 } ``` 当然你也可以传递字符串进行按键绑定(例如:`pageUp: 'a'`)。只要你设置了对于的按键值,那么iScroll就会响应你的设置。 ================================================ FILE: refresh.md ================================================ ## 掌握刷新方法 iScroll需要知道包装器和滚动器确切的尺寸,在iScroll初始化的时候进行计算,如果元素大小发生了变化,需要告诉iScroll DOM发生了变化。 下面将提供调用`refresh`方法的正确时机。 每次触摸DOM,浏览器渲染器重绘页面。一旦发生了重画我们可以安全地读新的DOM属性。重新绘制阶段不是瞬时发生的只是范围结束时触发。这就是为什么我们需要给渲染器刷新iScroll之前一点时间。 为了确保javascript得到更新后的属性,应该像下面的例子这样使用刷新方法: ```js ajax('page.php', onCompletion); function onCompletion () { // Update here your DOM setTimeout(function () { myScroll.refresh(); }, 0); }; ``` 这里调用`refresh()`使用了零秒等待,如果你需要立即刷新iScroll边界就是如此使用。当然还有其他方法可以等待页面重绘,但零超时方式相当稳定。 > 如果你有一个相当复杂的HTML结构,你应该给浏览器更多的执行事件,可以设置100到200毫秒的超时时间。 > 这通常适用于所有任务必须在DOM上进行。通常给渲染器一些执行的时间。 ================================================ FILE: scrollerinfo.md ================================================ ##滚动条信息 iScroll存储了很多有用的信息,您可以使用它们来增强您的应用。 你可能会发现有用的: * **myScroll.x/y**,当前位置 * **myScroll.directionX/Y**,最后的方向 (-1 down/right, 0 still, 1 up/left) * **myScroll.currentPage**,当前对齐捕获点 下面是关于处理时间的代码示例: ```js myScroll = new IScroll('#wrapper'); myScroll.on('scrollEnd', function () { if ( this.x < -1000 ) { // do something } }); ``` The above executes some code if the `x` position is lower than -1000px when the scroller stops. Note that I used `this` instead of `myScroll`, you can use both of course, but iScroll passes itself as `this` context when firing custom event functions.

Destroy

The public `destroy()` method can be used to free some memory when the iScroll is not needed anymore. myScroll.destroy(); myScroll = null;

Contributing and CLA

If you want to contribute to the iScroll development, before I can accept your submission I have to ask you to sign the [Contributor License Agreement](http://cubiq.org/iscroll/cla/). Unfortunately that is the only way to enforce the openness of the script. As an end user you have to do nothing of course. Actually the CLA ensures that nobody will even come after you asking for your first born for using the iScroll. Please note that pull requests may take some time to be accepted. Testing iScroll is one of the most time consuming tasks of the project. iScroll works from desktop to smartphone, from tablets to smart TVs. I do not have physical access to all the testing devices, so before I can push a change I have to make sure that the new code is working everywhere. Critical bugs are usually applied very quickly, but enhancements and coding style changes have to pass a longer review phase. *Remember that this is still a side project for me.*

Who is using iScroll

It's impossible to track all the websites and applications that use the iScroll. It has been spotted on: Apple, Microsoft, People, LinkedIn, IKEA, Nike, Playboy, Bose, and countless others.

License (MIT)

Copyright (c) 2014 Matteo Spinelli, [cubiq.org](http://cubiq.org/) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: scrollers.md ================================================ ## 滚动条 滚动条不只是像名字所表达的意义一样,在内部它们是作为*indicators*的引用。 一个指示器侦听滚动条的位置并且现实它在全局中的位置,但是它可以做更多的事情。 先从最基本的开始。 ### options.scrollbars 正如我们在[基本功能介绍](#basic-features)中提到的,激活滚动条只需要做一件事情,这件事情就是: ```js var myScroll = new IScroll('#wrapper', { scrollbars: true }); ``` 当然这个默认的行为是可以定制的。 ### options.fadeScrollbars 不想使用滚动条淡入淡出方式时,需要设置此属性为`false`以便节省资源。 默认值:`false` ### options.interactiveScrollbars 此属性可以让滚动条能拖动,用户可以与之交互。 默认值:`false` ### options.resizeScrollbars 滚动条尺寸改变基于容器和滚动区域的宽/高之间的比例。此属性设置为`false`让滚动条固定大小。这可能有助于自定义滚动条样式([参考下面](#styling-the-scrollbar))。 默认值:`true` ### options.shrinkScrollbars 当在滚动区域外面滚动时滚动条是否可以收缩到较小的尺寸。 有效的值为:`'clip'` 和 `'scale'`。 `'clip'`是移动指示器到它容器的外面,效果就是滚动条收缩起来,简单的移动到屏幕以外的区域。属性设置为此值后将大大的提升整个iScroll的性能。 值`'scale'`关闭属性`useTransition`,之后所有的动画效果将使用`requestAnimationFrame`实现。指示器实际上有各种尺寸,并且最终的效果最好。 默认值:`false` 注意改变大小不是在GPU上执行的,所以'scale' 是在CPU上执行。 如果你的应用程序将在多种设备上运行,我建议你使用选项`'scale'`,或者设置`'clip'` 为 `false` (例如:在较老的设备上应该设置为`'clip'` ,而在桌面浏览器上应设置为`'scale'`)。 请参考 [滚动条示例](http://lab.cubiq.org/iscroll5/demos/scrollbars/)。

滚动条样式

如果你不喜欢默认的滚动条样式,而且你认为你可以做的更好,你可以自定义滚动条样式。第一步就是设置选项`scrollbars`的值为`'custom'`: ```js var myScroll = new IScroll('#wrapper', { scrollbars: 'custom' }); ``` 使用下面的CSS类可以简单的改变滚动条样式。 * **.iScrollHorizontalScrollbar**,这个样式应用到横向滚动条的容器。这个元素实际上承载了滚动条指示器。 * **.iScrollVerticalScrollbar**,和上面的样式类似,只不过适用于纵向滚动条容器。 * **.iScrollIndicator**,真正的滚动条指示器。 * **.iScrollBothScrollbars**,这个样式将在双向滚动条显示的情况下被加载到容器元素上。通常情况下其中一个(横向或者纵向)是可见的 [自定义滚动条样式示例](http://lab.cubiq.org/iscroll5/demos/styled-scrollbars/)。 如果你设置`resizeScrollbars: false`,滚动条将是固定大小,否则它将基于滚动区域的尺寸变化。 请接着阅读接下来的内容。 ================================================ FILE: snap.md ================================================ ## 对齐 iScroll能对齐到固定的位置和元素。 ### options.snap 最简单的对齐配置如下: ```js var myScroll = new IScroll('#wrapper', { snap: true }); ``` 这将按照页面容器的大小自动分割滚动条。 `snap`属性也可以传递字符类型类型的值。这个值是滚动条将要对齐到的元素的选择器。比如下面: ```js var myScroll = new IScroll('#wrapper', { snap: 'li' }); ``` 这个示例中滚动条将会对齐到每一个`LI`标记的元素。 下面将帮助你快速浏览iScroll提供的关于对齐的一系列有趣的方法。 ### goToPage(x, y, time, easing) `x` 和 `y`呈现你想滚动到横向轴或者纵向轴的页面数。如果你需要在单个唯独上使用滚动条,只需要为你不需要的轴向传递`0`值。 `time`属性是动画周期,`easing`属性是滚动到指定点使用的擦除功能类型。请参考[高级功能](#advanced-features)中的**option.bounceEasing**。这两个属性都是可选项。 ```js myScroll.goToPage(10, 0, 1000); ``` 上面这个例子将在一秒内沿着横向滚动到第10页。 ### next()
prev() 滚动到当前位置的下一页或者前一页。 ================================================ FILE: versions.md ================================================ ## iScroll的版本 针对iScroll的优化。为了达到更高的性能,iScroll分为了多个版本。你可以选择最适合你的版本。 目前我们有以下版本: * **iscroll.js**,这个版本是常规应用的脚本。它包含大多数常用的功能,有很高的性能和很小的体积。 * **iscroll-lite.js**,精简版本。它不支持快速跳跃,滚动条,鼠标滚轮,快捷键绑定。但如果你所需要的是滚动(特别是在移动平台) * iScroll 精简版 *是又小又快的解决方案。 * **iscroll-probe.js**,探查当前滚动位置是一个要求很高的任务,这就是为什么我决定建立一个专门的版本。如果你需要知道滚动位置在任何给定的时间,这是iScroll给你的。(我正在做更多的测试,这可能最终在常规iscroll.js脚本,请留意)。 * **iscroll-zoom.js**,在标准滚动功能上增加缩放功能。 * **iscroll-infinite.js**,可以做无限缓存的滚动。处理很长的列表的元素为移动设备并非易事。* iScroll infinite版本*使用缓存机制,允许你滚动一个潜在的无限数量的元素。 ================================================ FILE: zoom.md ================================================ ## 缩放 为了使用缩放功能,你最好使用`iscroll-zoom.js`脚本。 ### options.zoom 此属性设置为`true`启用缩放功能。 默认值:`false` ### options.zoomMax 最大缩放级数。 默认值:`4` ### options.zoomMin 最小缩放级数。 默认值:`1` ### options.zoomStart 初始的缩放级数。 默认值:`1` ### options.wheelAction 鼠标滚轮的动作可以设置为`'zoom'`,这样在滚动滚轮时缩放操作会代替原来的滚动操作。 默认值:`undefined`(即:鼠标滚轮滚动) 和前面的示例一样,一个好的缩放功能的配置如下: ```js myScroll = new IScroll('#wrapper', { zoom: true, mouseWheel: true, wheelAction: 'zoom' }); ``` > 缩放功能使用的CSS的转换功能。iScroll只能在支持此CSS功能的浏览器上执行。 > 一些浏览器(特别是基于webkit的)采取的快照缩放区域就放在硬件合成层(比如当你申请转换)。该快照作为纹理的缩放区域,它几乎不能被更新。这意味着您的纹理将基于 **scale 1** 进行缩放,将导致文本和图像模糊,清晰度低。 > 一个简单的解决方案是使用实际分辨率双倍(或者三倍)装载内容,然后 放到一个按照`scale(0.5)`比例缩小的div中。这种方法大多数情况下能适用。 请参考 [缩放示例](http://lab.cubiq.org/iscroll5/demos/zoom/)。 ### zoom(scale, x, y, time) 一个有意思的的方法,能让你进行缩放编程。 `scale`是缩放因子。 `x` 和 `y`是缩放关注点,即缩放的中心。如果没有指定,这个中心就是屏幕中心。 `time` is the duration of the animation in milliseconds (optional). `time`是毫秒级别的动画周期(可选项)。