diff --git a/dist/vue2-storage.common.js b/dist/vue2-storage.common.js index 94f8db0..61572b3 100644 --- a/dist/vue2-storage.common.js +++ b/dist/vue2-storage.common.js @@ -1,5 +1,5 @@ /*! - * vue2-storage v6.0.0 + * vue2-storage v6.0.3 * (c) 2021 Yarkov Aleksey * Released under the MIT License. */ @@ -96,7 +96,7 @@ class Vue2Storage { return 'vue2-storage'; } get version() { - return '6.0.0'; + return '6.0.3'; } get driver() { switch (this.options.driver) { @@ -184,6 +184,7 @@ class Vue2Storage { } } has(key) { + this.removeExpiredValuesByKeys([this.addPrefix(key)]); if (this.options.driver !== StorageDriver.MEMORY) { return (this.addPrefix(key) in this.driver); } @@ -199,10 +200,18 @@ class Vue2Storage { } } keys() { - if (this.options.driver !== StorageDriver.MEMORY) { - return Object.keys(this.driver); + let keys = []; + switch (this.options.driver) { + case StorageDriver.MEMORY: + keys = Object.keys(this.driver.storage); + break; + default: + keys = Object.keys(this.driver); + break; } - return Object.keys(this.driver.storage); + return keys.filter(key => { + return this.fromJSON(key) !== null; + }); } checkConfig(config) { if (config.prefix !== undefined) { @@ -227,7 +236,7 @@ class Vue2Storage { } } addPrefix(key) { - return `${this.options.prefix || ''}${key}`; + return `${this.options.prefix || ''}${this.removePrefix(key)}`; } removePrefix(key) { const re = new RegExp(`^${this.options.prefix || ''}`); @@ -248,14 +257,9 @@ class Vue2Storage { } fromJSON(key) { try { + this.removeExpiredValuesByKeys([key]); const data = JSON.parse(this.driver.getItem(key)); if (data !== null) { - if (('ttl' in data) - && Number(data.ttl) > 0 - && Number(data.ttl) < Date.now()) { - this.remove(this.removePrefix(key)); - return null; - } if ('value' in data) { return data.value; } @@ -267,6 +271,24 @@ class Vue2Storage { return null; } } + removeExpiredValuesByKeys(keys) { + try { + keys.forEach(key => { + const data = JSON.parse(this.driver.getItem(key)); + if (data === null) { + return; + } + if (('ttl' in data) + && Number(data.ttl) > 0 + && Number(data.ttl) < Date.now()) { + this.remove(this.removePrefix(key)); + } + }); + } + catch (e) { + return null; + } + } throwError(e) { throw new StorageError(`${this.name}[${this.version}]: ${e.message}`, e.stack); } diff --git a/dist/vue2-storage.d.ts b/dist/vue2-storage.d.ts index d8de4c7..8e735cd 100644 --- a/dist/vue2-storage.d.ts +++ b/dist/vue2-storage.d.ts @@ -28,7 +28,7 @@ export declare class Vue2Storage { get (key: string, fallback?: any): any; pull (key: string, fallback?: any): any; set (key: string, data: any, options?: SetterOptions): void; - remember (key: string, closure: () => Promise, options?: SetterOptions): void; + remember (key: string, closure: () => Promise, options?: SetterOptions): Promise; remove (key: string): void; clear (force?: boolean): void; has (key: string): boolean; diff --git a/dist/vue2-storage.esm.js b/dist/vue2-storage.esm.js index 13ab854..738e5f6 100644 --- a/dist/vue2-storage.esm.js +++ b/dist/vue2-storage.esm.js @@ -1,5 +1,5 @@ /*! - * vue2-storage v6.0.0 + * vue2-storage v6.0.3 * (c) 2021 Yarkov Aleksey * Released under the MIT License. */ @@ -92,7 +92,7 @@ class Vue2Storage { return 'vue2-storage'; } get version() { - return '6.0.0'; + return '6.0.3'; } get driver() { switch (this.options.driver) { @@ -180,6 +180,7 @@ class Vue2Storage { } } has(key) { + this.removeExpiredValuesByKeys([this.addPrefix(key)]); if (this.options.driver !== StorageDriver.MEMORY) { return (this.addPrefix(key) in this.driver); } @@ -195,10 +196,18 @@ class Vue2Storage { } } keys() { - if (this.options.driver !== StorageDriver.MEMORY) { - return Object.keys(this.driver); + let keys = []; + switch (this.options.driver) { + case StorageDriver.MEMORY: + keys = Object.keys(this.driver.storage); + break; + default: + keys = Object.keys(this.driver); + break; } - return Object.keys(this.driver.storage); + return keys.filter(key => { + return this.fromJSON(key) !== null; + }); } checkConfig(config) { if (config.prefix !== undefined) { @@ -223,7 +232,7 @@ class Vue2Storage { } } addPrefix(key) { - return `${this.options.prefix || ''}${key}`; + return `${this.options.prefix || ''}${this.removePrefix(key)}`; } removePrefix(key) { const re = new RegExp(`^${this.options.prefix || ''}`); @@ -244,14 +253,9 @@ class Vue2Storage { } fromJSON(key) { try { + this.removeExpiredValuesByKeys([key]); const data = JSON.parse(this.driver.getItem(key)); if (data !== null) { - if (('ttl' in data) - && Number(data.ttl) > 0 - && Number(data.ttl) < Date.now()) { - this.remove(this.removePrefix(key)); - return null; - } if ('value' in data) { return data.value; } @@ -263,6 +267,24 @@ class Vue2Storage { return null; } } + removeExpiredValuesByKeys(keys) { + try { + keys.forEach(key => { + const data = JSON.parse(this.driver.getItem(key)); + if (data === null) { + return; + } + if (('ttl' in data) + && Number(data.ttl) > 0 + && Number(data.ttl) < Date.now()) { + this.remove(this.removePrefix(key)); + } + }); + } + catch (e) { + return null; + } + } throwError(e) { throw new StorageError(`${this.name}[${this.version}]: ${e.message}`, e.stack); } diff --git a/dist/vue2-storage.js b/dist/vue2-storage.js index 8012de2..7626262 100644 --- a/dist/vue2-storage.js +++ b/dist/vue2-storage.js @@ -1,5 +1,5 @@ /*! - * vue2-storage v6.0.0 + * vue2-storage v6.0.3 * (c) 2021 Yarkov Aleksey * Released under the MIT License. */ @@ -98,7 +98,7 @@ return 'vue2-storage'; } get version() { - return '6.0.0'; + return '6.0.3'; } get driver() { switch (this.options.driver) { @@ -186,6 +186,7 @@ } } has(key) { + this.removeExpiredValuesByKeys([this.addPrefix(key)]); if (this.options.driver !== StorageDriver.MEMORY) { return (this.addPrefix(key) in this.driver); } @@ -201,10 +202,18 @@ } } keys() { - if (this.options.driver !== StorageDriver.MEMORY) { - return Object.keys(this.driver); + let keys = []; + switch (this.options.driver) { + case StorageDriver.MEMORY: + keys = Object.keys(this.driver.storage); + break; + default: + keys = Object.keys(this.driver); + break; } - return Object.keys(this.driver.storage); + return keys.filter(key => { + return this.fromJSON(key) !== null; + }); } checkConfig(config) { if (config.prefix !== undefined) { @@ -229,7 +238,7 @@ } } addPrefix(key) { - return `${this.options.prefix || ''}${key}`; + return `${this.options.prefix || ''}${this.removePrefix(key)}`; } removePrefix(key) { const re = new RegExp(`^${this.options.prefix || ''}`); @@ -250,14 +259,9 @@ } fromJSON(key) { try { + this.removeExpiredValuesByKeys([key]); const data = JSON.parse(this.driver.getItem(key)); if (data !== null) { - if (('ttl' in data) - && Number(data.ttl) > 0 - && Number(data.ttl) < Date.now()) { - this.remove(this.removePrefix(key)); - return null; - } if ('value' in data) { return data.value; } @@ -269,6 +273,24 @@ return null; } } + removeExpiredValuesByKeys(keys) { + try { + keys.forEach(key => { + const data = JSON.parse(this.driver.getItem(key)); + if (data === null) { + return; + } + if (('ttl' in data) + && Number(data.ttl) > 0 + && Number(data.ttl) < Date.now()) { + this.remove(this.removePrefix(key)); + } + }); + } + catch (e) { + return null; + } + } throwError(e) { throw new StorageError(`${this.name}[${this.version}]: ${e.message}`, e.stack); } diff --git a/dist/vue2-storage.min.js b/dist/vue2-storage.min.js index 9f73ccb..f1d6f9f 100644 --- a/dist/vue2-storage.min.js +++ b/dist/vue2-storage.min.js @@ -1 +1 @@ -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):(t=t||self,e(t.Vue2Storage={}))}(this,function(t){"use strict";function e(t,e,r,n){return new(r||(r=Promise))(function(i,o){function s(t){try{c(n.next(t))}catch(t){o(t)}}function u(t){try{c(n.throw(t))}catch(t){o(t)}}function c(t){t.done?i(t.value):new r(function(e){e(t.value)}).then(s,u)}c((n=n.apply(t,e||[])).next())})}const r={};class n{get length(){return Object.keys(this.storage).length}get storage(){return r}getItem(t){return t in this.storage?this.storage[t]:null}setItem(t,e){this.storage[t]=e}removeItem(t){t in this.storage&&delete this.storage[t]}clear(){const t=Object.keys(this.storage);for(let e=0;e<=t.length;e++)try{delete this.storage[t[e]]}catch(t){}}}var i,o=new n;!function(t){t.LOCAL="local",t.SESSION="session",t.MEMORY="memory"}(i||(i={}));class s extends Error{constructor(t,e){super(t),this.name="StorageError",e&&(this.stack=e)}}const u=["local","session","memory"];class c{constructor(t={}){this.setOptions(t)}get length(){return this.keys().length}get prefix(){return this.options.prefix}get name(){return"vue2-storage"}get version(){return"6.0.0"}get driver(){switch(this.options.driver){case i.LOCAL:default:return"undefined"!=typeof window?window.localStorage:o;case i.SESSION:return"undefined"!=typeof window?window.sessionStorage:o;case i.MEMORY:return o}}setOptions(t={}){this.checkConfig(t),this.options=Object.freeze({prefix:t.prefix||"app_",driver:t.driver||i.LOCAL,ttl:t.ttl||0,replacer:t.replacer||void 0})}get(t,e=null){try{const r=this.fromJSON(this.addPrefix(t));return null===r?e:r}catch(t){this.throwError(t)}}pull(t,e=null){const r=this.get(t,e);return r!==e&&this.remove(t),r}set(t,e,r={}){try{this.driver.setItem(this.addPrefix(t),this.toJSON(e,r))}catch(t){this.throwError(t)}}remember(t,r,n={}){return e(this,void 0,void 0,function*(){let e=this.get(t,null);if(null!==e)return e;try{return e=yield r(),this.set(t,e,n),e}catch(t){this.throwError(t)}})}remove(t){try{this.driver.removeItem(this.addPrefix(t))}catch(t){this.throwError(t)}}clear(t=!1){try{if(t)this.driver.clear();else{const t=this.keys().filter(t=>t.startsWith(this.options.prefix||""));t.forEach(t=>this.remove(this.removePrefix(t)))}}catch(t){this.throwError(t)}}has(t){return this.options.driver!==i.MEMORY?this.addPrefix(t)in this.driver:this.addPrefix(t)in this.driver.storage}key(t){try{const e=this.keys()[t];return this.get(this.removePrefix(e))}catch(t){this.throwError(t)}}keys(){return this.options.driver!==i.MEMORY?Object.keys(this.driver):Object.keys(this.driver.storage)}checkConfig(t){void 0!==t.prefix&&"string"!=typeof t.prefix&&this.throwError(new TypeError('Option "prefix" must be a string')),void 0!==t.driver&&(u.includes(t.driver)||this.throwError(new TypeError(`Option "driver" must be one of ${u.join(", ")}`))),void 0!==t.ttl&&"number"!=typeof t.ttl&&this.throwError(new TypeError('Option "ttl" must be a number')),void 0!==t.replacer&&"function"!=typeof t.replacer&&this.throwError(new TypeError('Option "replacer" must be a function'))}addPrefix(t){return`${this.options.prefix||""}${t}`}removePrefix(t){const e=new RegExp(`^${this.options.prefix||""}`);return t.replace(e,"")}toJSON(t,e={}){const r="ttl"in e?e.ttl:this.options.ttl,{replacer:replacer}=this.options;return JSON.stringify({value:t,ttl:r>0?r+Date.now():0},(t,e)=>{if(!replacer||"value"!==t)return e;return replacer(t,e)})}fromJSON(t){try{const e=JSON.parse(this.driver.getItem(t));return null!==e?"ttl"in e&&Number(e.ttl)>0&&Number(e.ttl)t.startsWith(this.options.prefix||""));t.forEach(t=>this.remove(this.removePrefix(t)))}}catch(t){this.throwError(t)}}has(t){return this.removeExpiredValuesByKeys([this.addPrefix(t)]),this.options.driver!==i.MEMORY?this.addPrefix(t)in this.driver:this.addPrefix(t)in this.driver.storage}key(t){try{const e=this.keys()[t];return this.get(this.removePrefix(e))}catch(t){this.throwError(t)}}keys(){let t=[];switch(this.options.driver){case i.MEMORY:t=Object.keys(this.driver.storage);break;default:t=Object.keys(this.driver)}return t.filter(t=>null!==this.fromJSON(t))}checkConfig(t){void 0!==t.prefix&&"string"!=typeof t.prefix&&this.throwError(new TypeError('Option "prefix" must be a string')),void 0!==t.driver&&(u.includes(t.driver)||this.throwError(new TypeError(`Option "driver" must be one of ${u.join(", ")}`))),void 0!==t.ttl&&"number"!=typeof t.ttl&&this.throwError(new TypeError('Option "ttl" must be a number')),void 0!==t.replacer&&"function"!=typeof t.replacer&&this.throwError(new TypeError('Option "replacer" must be a function'))}addPrefix(t){return`${this.options.prefix||""}${this.removePrefix(t)}`}removePrefix(t){const e=new RegExp(`^${this.options.prefix||""}`);return t.replace(e,"")}toJSON(t,e={}){const r="ttl"in e?e.ttl:this.options.ttl,{replacer:replacer}=this.options;return JSON.stringify({value:t,ttl:r>0?r+Date.now():0},(t,e)=>{if(!replacer||"value"!==t)return e;return replacer(t,e)})}fromJSON(t){try{this.removeExpiredValuesByKeys([t]);const e=JSON.parse(this.driver.getItem(t));return null!==e?"value"in e?e.value:e:null}catch(t){return null}}removeExpiredValuesByKeys(t){try{t.forEach(t=>{const e=JSON.parse(this.driver.getItem(t));if(null===e)return;"ttl"in e&&Number(e.ttl)>0&&Number(e.ttl)remember

Example:

-
export default {
+
// JavaScript
+export default {
   async created () {
     const data = await this.$storage.remember('test', async () => {
         // Do HTTP calls or other async stuff
@@ -630,6 +631,18 @@ 

remember

} }
+
// TypeScript
+export default {
+  async created () {
+    // You can specify the type of expected data
+    const data = await this.$storage.remember<string>('test', async () => {
+        // Do HTTP calls or other async stuff
+        return 'value'
+    })
+    console.log(data) // outputs "value"
+  }
+}
+

Return value: Any

In case of failure, the method will throw a StorageError exception

remove

@@ -854,7 +867,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"API","level":"1.6","depth":1,"next":{"title":"Methods","level":"1.6.1","depth":2,"anchor":"#methods","path":"api.md","ref":"api.md#methods","articles":[{"title":"setOptions","level":"1.6.1.1","depth":3,"anchor":"#setoptions","path":"api.md","ref":"api.md#setoptions","articles":[]},{"title":"get","level":"1.6.1.2","depth":3,"anchor":"#get","path":"api.md","ref":"api.md#get","articles":[]},{"title":"pull","level":"1.6.1.3","depth":3,"anchor":"#pull","path":"api.md","ref":"api.md#pull","articles":[]},{"title":"set","level":"1.6.1.4","depth":3,"anchor":"#set","path":"api.md","ref":"api.md#set","articles":[]},{"title":"remember","level":"1.6.1.5","depth":3,"anchor":"#remember","path":"api.md","ref":"api.md#remember","articles":[]},{"title":"remove","level":"1.6.1.6","depth":3,"anchor":"#remove","path":"api.md","ref":"api.md#remove","articles":[]},{"title":"clear","level":"1.6.1.7","depth":3,"anchor":"#clear","path":"api.md","ref":"api.md#clear","articles":[]},{"title":"has","level":"1.6.1.8","depth":3,"anchor":"#has","path":"api.md","ref":"api.md#has","articles":[]},{"title":"key","level":"1.6.1.9","depth":3,"anchor":"#key","path":"api.md","ref":"api.md#key","articles":[]},{"title":"keys","level":"1.6.1.10","depth":3,"anchor":"#keys","path":"api.md","ref":"api.md#keys","articles":[]}]},"previous":{"title":"Options","level":"1.5","depth":1,"path":"options.md","ref":"options.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"livereload":{},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.0"},"language":"en","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"api.md","mtime":"2021-03-18T19:37:20.380Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T12:19:06.224Z"},"basePath":".","book":{"language":"en"}}); + gitbook.page.hasChanged({"page":{"title":"API","level":"1.6","depth":1,"next":{"title":"Methods","level":"1.6.1","depth":2,"anchor":"#methods","path":"api.md","ref":"api.md#methods","articles":[{"title":"setOptions","level":"1.6.1.1","depth":3,"anchor":"#setoptions","path":"api.md","ref":"api.md#setoptions","articles":[]},{"title":"get","level":"1.6.1.2","depth":3,"anchor":"#get","path":"api.md","ref":"api.md#get","articles":[]},{"title":"pull","level":"1.6.1.3","depth":3,"anchor":"#pull","path":"api.md","ref":"api.md#pull","articles":[]},{"title":"set","level":"1.6.1.4","depth":3,"anchor":"#set","path":"api.md","ref":"api.md#set","articles":[]},{"title":"remember","level":"1.6.1.5","depth":3,"anchor":"#remember","path":"api.md","ref":"api.md#remember","articles":[]},{"title":"remove","level":"1.6.1.6","depth":3,"anchor":"#remove","path":"api.md","ref":"api.md#remove","articles":[]},{"title":"clear","level":"1.6.1.7","depth":3,"anchor":"#clear","path":"api.md","ref":"api.md#clear","articles":[]},{"title":"has","level":"1.6.1.8","depth":3,"anchor":"#has","path":"api.md","ref":"api.md#has","articles":[]},{"title":"key","level":"1.6.1.9","depth":3,"anchor":"#key","path":"api.md","ref":"api.md#key","articles":[]},{"title":"keys","level":"1.6.1.10","depth":3,"anchor":"#keys","path":"api.md","ref":"api.md#keys","articles":[]}]},"previous":{"title":"Options","level":"1.5","depth":1,"path":"options.md","ref":"options.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.3"},"language":"en","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"api.md","mtime":"2021-03-20T14:39:21.134Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T14:55:29.719Z"},"basePath":".","book":{"language":"en"}}); }); @@ -872,10 +885,6 @@

No results matching " - - - diff --git a/docs/en/index.html b/docs/en/index.html index bc30d40..57ae8e7 100644 --- a/docs/en/index.html +++ b/docs/en/index.html @@ -484,7 +484,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Introduction","level":"1.1","depth":1,"next":{"title":"Installation","level":"1.2","depth":1,"path":"installation.md","ref":"installation.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"livereload":{},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.0"},"language":"en","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"README.md","mtime":"2021-03-20T12:21:19.622Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T12:19:06.224Z"},"basePath":".","book":{"language":"en"}}); + gitbook.page.hasChanged({"page":{"title":"Introduction","level":"1.1","depth":1,"next":{"title":"Installation","level":"1.2","depth":1,"path":"installation.md","ref":"installation.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.3"},"language":"en","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"README.md","mtime":"2021-03-20T12:45:33.554Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T14:55:29.719Z"},"basePath":".","book":{"language":"en"}}); }); @@ -502,10 +502,6 @@

No results matching " - - - diff --git a/docs/en/installation.html b/docs/en/installation.html index 17ca3d8..39def05 100644 --- a/docs/en/installation.html +++ b/docs/en/installation.html @@ -419,7 +419,7 @@

Installation

Direct Download / CDN

https://unpkg.com/vue2-storage/dist/vue2-storage

-

unpkg.com provides NPM-based CDN links. The above link will always point to the latest release on NPM. You can also use a specific version/tag via URLs like https://unpkg.com/vue2-storage@6.0.0/dist/vue2-storage.js

+

unpkg.com provides NPM-based CDN links. The above link will always point to the latest release on NPM. You can also use a specific version/tag via URLs like https://unpkg.com/vue2-storage@6.0.3/dist/vue2-storage.js

Include vue2-storage after Vue and use according to the documentation:

<script src="https://unpkg.com/vue/dist/vue.js"></script>
 <script src="https://unpkg.com/vue2-storage/dist/vue2-storage.js"></script>
@@ -504,7 +504,7 @@ 

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Installation","level":"1.2","depth":1,"next":{"title":"Using without Vue","level":"1.3","depth":1,"path":"vanilla.md","ref":"vanilla.md","articles":[]},"previous":{"title":"Introduction","level":"1.1","depth":1,"path":"README.md","ref":"README.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"livereload":{},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.0"},"language":"en","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"installation.md","mtime":"2021-03-20T12:17:12.570Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T12:19:06.224Z"},"basePath":".","book":{"language":"en"}}); + gitbook.page.hasChanged({"page":{"title":"Installation","level":"1.2","depth":1,"next":{"title":"Using without Vue","level":"1.3","depth":1,"path":"vanilla.md","ref":"vanilla.md","articles":[]},"previous":{"title":"Introduction","level":"1.1","depth":1,"path":"README.md","ref":"README.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.3"},"language":"en","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"installation.md","mtime":"2021-03-20T12:45:33.554Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T14:55:29.719Z"},"basePath":".","book":{"language":"en"}}); }); @@ -522,10 +522,6 @@

No results matching " - - - diff --git a/docs/en/options.html b/docs/en/options.html index a191548..126fdaf 100644 --- a/docs/en/options.html +++ b/docs/en/options.html @@ -465,7 +465,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Options","level":"1.5","depth":1,"next":{"title":"API","level":"1.6","depth":1,"path":"api.md","ref":"api.md","articles":[{"title":"Methods","level":"1.6.1","depth":2,"anchor":"#methods","path":"api.md","ref":"api.md#methods","articles":[{"title":"setOptions","level":"1.6.1.1","depth":3,"anchor":"#setoptions","path":"api.md","ref":"api.md#setoptions","articles":[]},{"title":"get","level":"1.6.1.2","depth":3,"anchor":"#get","path":"api.md","ref":"api.md#get","articles":[]},{"title":"pull","level":"1.6.1.3","depth":3,"anchor":"#pull","path":"api.md","ref":"api.md#pull","articles":[]},{"title":"set","level":"1.6.1.4","depth":3,"anchor":"#set","path":"api.md","ref":"api.md#set","articles":[]},{"title":"remember","level":"1.6.1.5","depth":3,"anchor":"#remember","path":"api.md","ref":"api.md#remember","articles":[]},{"title":"remove","level":"1.6.1.6","depth":3,"anchor":"#remove","path":"api.md","ref":"api.md#remove","articles":[]},{"title":"clear","level":"1.6.1.7","depth":3,"anchor":"#clear","path":"api.md","ref":"api.md#clear","articles":[]},{"title":"has","level":"1.6.1.8","depth":3,"anchor":"#has","path":"api.md","ref":"api.md#has","articles":[]},{"title":"key","level":"1.6.1.9","depth":3,"anchor":"#key","path":"api.md","ref":"api.md#key","articles":[]},{"title":"keys","level":"1.6.1.10","depth":3,"anchor":"#keys","path":"api.md","ref":"api.md#keys","articles":[]}]},{"title":"Properties","level":"1.6.2","depth":2,"anchor":"#properties","path":"api.md","ref":"api.md#properties","articles":[{"title":"length","level":"1.6.2.1","depth":3,"anchor":"#length","path":"api.md","ref":"api.md#length","articles":[]},{"title":"prefix","level":"1.6.2.2","depth":3,"anchor":"#prefix","path":"api.md","ref":"api.md#prefix","articles":[]}]}]},"previous":{"title":"Getting Started","level":"1.4","depth":1,"path":"started.md","ref":"started.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"livereload":{},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.0"},"language":"en","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"options.md","mtime":"2021-03-18T19:37:20.380Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T12:19:06.224Z"},"basePath":".","book":{"language":"en"}}); + gitbook.page.hasChanged({"page":{"title":"Options","level":"1.5","depth":1,"next":{"title":"API","level":"1.6","depth":1,"path":"api.md","ref":"api.md","articles":[{"title":"Methods","level":"1.6.1","depth":2,"anchor":"#methods","path":"api.md","ref":"api.md#methods","articles":[{"title":"setOptions","level":"1.6.1.1","depth":3,"anchor":"#setoptions","path":"api.md","ref":"api.md#setoptions","articles":[]},{"title":"get","level":"1.6.1.2","depth":3,"anchor":"#get","path":"api.md","ref":"api.md#get","articles":[]},{"title":"pull","level":"1.6.1.3","depth":3,"anchor":"#pull","path":"api.md","ref":"api.md#pull","articles":[]},{"title":"set","level":"1.6.1.4","depth":3,"anchor":"#set","path":"api.md","ref":"api.md#set","articles":[]},{"title":"remember","level":"1.6.1.5","depth":3,"anchor":"#remember","path":"api.md","ref":"api.md#remember","articles":[]},{"title":"remove","level":"1.6.1.6","depth":3,"anchor":"#remove","path":"api.md","ref":"api.md#remove","articles":[]},{"title":"clear","level":"1.6.1.7","depth":3,"anchor":"#clear","path":"api.md","ref":"api.md#clear","articles":[]},{"title":"has","level":"1.6.1.8","depth":3,"anchor":"#has","path":"api.md","ref":"api.md#has","articles":[]},{"title":"key","level":"1.6.1.9","depth":3,"anchor":"#key","path":"api.md","ref":"api.md#key","articles":[]},{"title":"keys","level":"1.6.1.10","depth":3,"anchor":"#keys","path":"api.md","ref":"api.md#keys","articles":[]}]},{"title":"Properties","level":"1.6.2","depth":2,"anchor":"#properties","path":"api.md","ref":"api.md#properties","articles":[{"title":"length","level":"1.6.2.1","depth":3,"anchor":"#length","path":"api.md","ref":"api.md#length","articles":[]},{"title":"prefix","level":"1.6.2.2","depth":3,"anchor":"#prefix","path":"api.md","ref":"api.md#prefix","articles":[]}]}]},"previous":{"title":"Getting Started","level":"1.4","depth":1,"path":"started.md","ref":"started.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.3"},"language":"en","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"options.md","mtime":"2021-03-18T19:37:20.380Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T14:55:29.719Z"},"basePath":".","book":{"language":"en"}}); }); @@ -483,10 +483,6 @@

No results matching " - - - diff --git a/docs/en/search_index.json b/docs/en/search_index.json index 29d3460..cc2f58b 100644 --- a/docs/en/search_index.json +++ b/docs/en/search_index.json @@ -1 +1 @@ -{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["api","app","browser","clear","document","get","instal","introduct","javascript","key","length","method","option","prefix","properti","pull","rememb","remov","set","setopt","start","storag","us","vue","vue.j","vue2","without"],"installation.html":["$","'app_',","'local',","'vue';","'vue2","(key,","*","/","//","1000,","24","60","=>","abov","accord","add","alway","base","build","build.","cd","cdn","clone","dev","direct","directli","documentation:","don't","download","driver:","explicitli","flag","git","github","global","hour","https://github.com/yarkovaleksei/vue2","https://unpkg.com/vue2","ignor","import","includ","instal","latest","link","links.","modul","need","node_modules/vue2","npm","npm.","option","optional:","packag","pass","plan","plugin","point","prefix:","provid","releas","replacer:","script","specif","storag","storage';","storage.git","storage.j","storage/dist/vue2","storage@6.0.0/dist/vue2","system,","tags.","ttl:","unpkg.com","url","us","valu","value)","version/tag","via","vue","vue,","vue.use():","vue.use(plugin);","vue.use(plugin,","vue2","want","window.vue.use(window.vue2storageplugin)","without","yarn","yourself","{","}","});"],"vanilla.html":["'app_',","'local',","'value');","'vue2","(key,","*","//","1000,","24","60","=","=>","call","chang","class","code","configur","console.log(storage.get('key'));","const","driver:","es2015","guide.","html","import","instanti","it.","javascript","method","modular","object","pass","prefix:","replacer:","sampl","set","setopt","specifi","storag","storage';","storage.set('key',","storage.setoptions({","system","time.","ttl:","us","valu","value)","value.repeat(2)","valuevalu","vue","vue2storag","vue2storage({","window.vue2storage({","without","});","часа"],"started.html":["'#app',","'app_',","'local',","'vue';","'vue2","()","(e.g.","(key,","*","//","1000,","24","60","=>","app","call","chang","cli),","code","configur","connecting,","creat","driver:","el:","es2015","get","guide.","hour","html","import","it.","javascript","method","modul","new","now","object","pass","plug","plugin","prefix:","replacer:","sampl","second","set","setopt","specifi","start","started!","storage';","system","this.$storage.setoptions({","time.","ttl:","us","valu","value)","via","vue","vue({","vue.us","vue.use(plugin,","vue.use(vue2storage).","vue2storag","window.vue({","window.vue.use(window.vue2storageplugin,","{","}","}).$mount('#app');","});"],"options.html":["(key:","(localstorage,","//","0","=>","accept","ad","any)","any.","app_.","avoid","befor","begin","call","certain","collisions.","configuration,","data","default","disabl","driver","forever.","format.","function","handler","identifi","instal","kept","key","lifetim","local,","local.","memori","memorystorag","milliseconds.","object","option","plug","prefix","record","replac","respectively).","session","sessionstorag","signature:","storag","storage.","store.","string","string,","such","support","ttl","undefined.","used.","valu","value:","written"],"api.html":["\"fallback\"","\"value\"","'app_',","'fallback')","'local',","'lol']","'value'","'value')","()","(key,","*","+","//","1000","1000,","2","24","60","=","=>","['test',","allow","alreadi","anymor","api","app_","argument","arguments:","array","async","await","befor","begin","boolean","call","case","clear","cleared.","closur","config","console.log(data)","console.log(fallback)","console.log(haslol)","console.log(hastest)","console.log(key)","console.log(keys)","console.log(this.$storage.length)","console.log(this.$storage.prefix)","const","creat","data","default","delet","deleted.","describ","driver:","entir","entri","example:","except","execut","exist","export","failure,","fallback","fals","find","forc","function","get","given","haslol","hastest","here","hour","http","immedi","index","index.","initialization.","it.","item.","key","key.","key:","keys.","length","lifetime.","method","name","null","number","numer","object","option","otherwis","otherwise,","out","output","overrid","pass","plugin","prefix","prefix:","promis","properti","pull","record","rememb","remov","replacer:","repositori","repository.","requir","retriev","return","save","set","setopt","specifi","storag","storage.","storageerror","store","string","structur","stuff","this.$storage.clear()","this.$storage.get('test')","this.$storage.get('test',","this.$storage.get('unknown',","this.$storage.has('lol')","this.$storage.has('test')","this.$storage.key(0)","this.$storage.keys()","this.$storage.pull('test')","this.$storage.remember('test',","this.$storage.remove('test')","this.$storage.set('lol',","this.$storage.set('test',","this.$storage.setoptions({","throw","true","true,","ttl:","type","us","valu","value)","value.","value:","whether","whose","write","{","{}","}","})","},"]},"length":6},"tokenStore":{"root":{"0":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}},"1":{"0":{"0":{"0":{"docs":{"api.html":{"ref":"api.html","tf":0.011869436201780416}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002967359050445104}}}},"docs":{}},"docs":{}},"docs":{}},"2":{"4":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":0.046242774566473986},"started.html":{"ref":"started.html","tf":0.0425531914893617},"api.html":{"ref":"api.html","tf":0.005934718100890208}}},"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}},"6":{"0":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":0.046242774566473986},"started.html":{"ref":"started.html","tf":0.0425531914893617},"api.html":{"ref":"api.html","tf":0.017804154302670624}}},"docs":{}},"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":10}}},"p":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":0.005319148936170213}},"_":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.024691358024691357}}}},"l":{"docs":{},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"api.html":{"ref":"api.html","tf":0.025222551928783383}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}},"n":{"docs":{},"y":{"docs":{},")":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},"s":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.013353115727002967}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"api.html":{"ref":"api.html","tf":0.004451038575667656}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.03571428571428571}}}}}}}},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.018518518518518517}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.002967359050445104}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.017341040462427744}}}}},"i":{"docs":{},")":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.015957446808510637},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}},"s":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.008902077151335312}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},"u":{"docs":{},"r":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.008902077151335312}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}},"s":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"api.html":{"ref":"api.html","tf":0.017804154302670624}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.017804154302670624}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"w":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}},"e":{"docs":{},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.06153846153846154},"api.html":{"ref":"api.html","tf":0.03115727002967359}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"l":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.010385756676557863}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":5.00531914893617},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}},"i":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":10.024691358024691},"options.html":{"ref":"options.html","tf":0.015384615384615385}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497}}}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}}}}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.015957446808510637}}}}}},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"t":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.001483679525222552}}},"e":{"docs":{},"m":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.07142857142857142},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.020771513353115726}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.005934718100890208}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.019287833827893175}}},"s":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}},"p":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"s":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"f":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077}},"e":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.025222551928783383}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.005319148936170213}},"a":{"docs":{},"r":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.018518518518518517},"options.html":{"ref":"options.html","tf":10.015384615384615},"api.html":{"ref":"api.html","tf":0.002967359050445104}},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.02127659574468085},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},"e":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.004451038575667656}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}},"s":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}},"u":{"docs":{},"g":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425},"options.html":{"ref":"options.html","tf":0.015384615384615385}},"i":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}},"o":{"docs":{},"v":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.005934718100890208}}},"y":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077},"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"y":{"docs":{},")":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.013353115727002967}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"api.html":{"ref":"api.html","tf":0.004451038575667656}}}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.02373887240356083}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.004451038575667656}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":5.00531914893617}},"e":{"docs":{},"d":{"docs":{},"!":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.07142857142857142},"installation.html":{"ref":"installation.html","tf":0.06172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.03468208092485549},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.005934718100890208}},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.002967359050445104}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"j":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497}}}}}}}}}}}}}}},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}},"docs":{}}}}}}}}}},"@":{"6":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}},"docs":{}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.008902077151335312}}}}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.016320474777448073}},",":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"i":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.004451038575667656}}}}}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}},"v":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},":":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.043209876543209874}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.005319148936170213}},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248}}}}}}}}}}}},"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":3.339113680154142},"started.html":{"ref":"started.html","tf":0.015957446808510637},"./":{"ref":"./","tf":0.03571428571428571}},".":{"docs":{},"j":{"docs":{"./":{"ref":"./","tf":0.03571428571428571}}},"u":{"docs":{},"s":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}},"`":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}},"docs":{}}}}}}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"options.html":{"ref":"options.html","tf":0.03076923076923077},"api.html":{"ref":"api.html","tf":0.02967359050445104}},"e":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002967359050445104}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"2":{"docs":{},")":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497}}}},"docs":{}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497}}}}}},":":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.011869436201780416}}}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}}}},"i":{"docs":{},"a":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}},"$":{"docs":{"installation.html":{"ref":"installation.html","tf":0.04938271604938271}}},"'":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"_":{"docs":{},"'":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}}},"l":{"docs":{},"'":{"docs":{},"]":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}},"docs":{},"'":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.005319148936170213},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{"api.html":{"ref":"api.html","tf":0.02225519287833828}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},";":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993}}}}}}}}}},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"'":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}}}}}}}}},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002967359050445104}}},":":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},")":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.019287833827893175}}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},".":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}}},"н":{"docs":{},"а":{"docs":{},"п":{"docs":{},"р":{"docs":{},"и":{"docs":{},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}},"*":{"docs":{"installation.html":{"ref":"installation.html","tf":0.018518518518518517},"vanilla.html":{"ref":"vanilla.html","tf":0.06936416184971098},"started.html":{"ref":"started.html","tf":0.06382978723404255},"api.html":{"ref":"api.html","tf":0.025222551928783383}}},"/":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"/":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":0.08670520231213873},"started.html":{"ref":"started.html","tf":0.06382978723404255},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.028189910979228485}}}},"=":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"api.html":{"ref":"api.html","tf":0.017804154302670624}},">":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.004451038575667656}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.017804154302670624}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.017804154302670624}}}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.008902077151335312}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"s":{"2":{"0":{"1":{"5":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"l":{"docs":{},":":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}},"r":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"c":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.008902077151335312}}}}}}}},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"api.html":{"ref":"api.html","tf":0.005934718100890208}}}}}}},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"k":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}},"docs":{}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.018518518518518517}}}},"w":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}},"docs":{}}}}}}}}}}}}}}},"w":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}},"p":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.024691358024691357}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.013353115727002967}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.00741839762611276}}}}},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"t":{"docs":{},"l":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.017804154302670624}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.013353115727002967}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.005934718100890208}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}},"u":{"docs":{},"n":{"docs":{},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"(":{"0":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}},"docs":{}},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"api.html":{"ref":"api.html","tf":0.008902077151335312}}}}}},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.013353115727002967}}}}}},"u":{"docs":{},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}},"r":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.043209876543209874},"vanilla.html":{"ref":"vanilla.html","tf":3.3506743737957607},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.004451038575667656},"./":{"ref":"./","tf":0.03571428571428571}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"w":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248}}}}}}}}}}}},"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}},",":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":3.339113680154142},"./":{"ref":"./","tf":0.03571428571428571}}}}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077}}}}},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"h":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.030864197530864196}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}},"{":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"started.html":{"ref":"started.html","tf":0.026595744680851064},"api.html":{"ref":"api.html","tf":0.0712166172106825}},"}":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}},"}":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.015957446808510637},"api.html":{"ref":"api.html","tf":0.04302670623145401}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.019287833827893175},"started.html":{"ref":"started.html","tf":0.0043859649122807015}},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085}}},".":{"docs":{},"$":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"'":{"docs":{},")":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}},";":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}}}}}}}}}}}}}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.011869436201780416}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213},"./":{"ref":"./","tf":0.03571428571428571}}}}}}}}}}}},"ч":{"docs":{},"а":{"docs":{},"с":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"е":{"docs":{},"р":{"docs":{},"е":{"docs":{},"з":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}},"`":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}},"и":{"docs":{},"с":{"docs":{},"л":{"docs":{},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"м":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}},"\"":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"\"":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}},"+":{"docs":{"api.html":{"ref":"api.html","tf":0.013353115727002967}}},"[":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}},"б":{"docs":{},"р":{"docs":{},"а":{"docs":{},"у":{"docs":{},"з":{"docs":{},"е":{"docs":{},"р":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}}}}}}}}}},"е":{"docs":{},"з":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":3.338164251207729},"./":{"ref":"./","tf":0.030303030303030304}}}},"у":{"docs":{},"д":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"options.html":{"ref":"options.html","tf":0.03296703296703297},"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"м":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},"у":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"ы":{"docs":{},"т":{"docs":{},"ь":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}},"д":{"docs":{},"л":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.06060606060606061},"options.html":{"ref":"options.html","tf":0.03296703296703297}}}},"о":{"docs":{},"к":{"docs":{},"у":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}},"и":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}},"б":{"docs":{},"а":{"docs":{},"в":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"л":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"ы":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"е":{"docs":{},"л":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"е":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}},"р":{"docs":{},"у":{"docs":{},"г":{"docs":{},"и":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.03296703296703297},"api.html":{"ref":"api.html","tf":0.005571030640668524},"./":{"ref":"./","tf":0.030303030303030304}},"с":{"docs":{},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"з":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"started.html":{"ref":"started.html","tf":5.004385964912281}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":3.338164251207729},"./":{"ref":"./","tf":0.030303030303030304}}}}},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.020833333333333332},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}},"у":{"docs":{},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"е":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},"м":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}}}}}}}}}}},"з":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"api.html":{"ref":"api.html","tf":0.005571030640668524}},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"е":{"docs":{},"н":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}}},"б":{"docs":{},"е":{"docs":{},"ж":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"в":{"docs":{},"л":{"docs":{},"е":{"docs":{},"к":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"ч":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"м":{"docs":{},"п":{"docs":{},"о":{"docs":{},"р":{"docs":{},"т":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}},"е":{"docs":{},"е":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"д":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},"и":{"docs":{},"ф":{"docs":{},"и":{"docs":{},"к":{"docs":{},"а":{"docs":{},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}},"л":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"н":{"docs":{},"д":{"docs":{},"е":{"docs":{},"к":{"docs":{},"с":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"и":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"а":{"docs":{},"л":{"docs":{},"и":{"docs":{},"з":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}}}},"м":{"docs":{},"е":{"docs":{},"т":{"docs":{},"о":{"docs":{},"д":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.023676880222841225}},"ы":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"о":{"docs":{},"д":{"docs":{},"у":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},"й":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"у":{"docs":{},"ю":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"ж":{"docs":{},"е":{"docs":{},"т":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}}},"ы":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}},"и":{"docs":{},"л":{"docs":{},"л":{"docs":{},"и":{"docs":{},"с":{"docs":{},"е":{"docs":{},"к":{"docs":{},"у":{"docs":{},"н":{"docs":{},"д":{"docs":{},"а":{"docs":{},"х":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}}},"а":{"docs":{},"с":{"docs":{},"с":{"docs":{},"и":{"docs":{},"в":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"н":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625}},"с":{"docs":{},"т":{"docs":{},"р":{"docs":{},"о":{"docs":{},"й":{"docs":{},"к":{"docs":{},"и":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"options.html":{"ref":"options.html","tf":10.010989010989011},"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"а":{"docs":{},"м":{"docs":{},"и":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"х":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}},"ч":{"docs":{},"а":{"docs":{},"л":{"docs":{},"о":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"started.html":{"ref":"started.html","tf":5.004385964912281},"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}},"и":{"docs":{},"н":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"д":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"п":{"docs":{},"р":{"docs":{},"и":{"docs":{},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"п":{"docs":{},"о":{"docs":{},"с":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}}}},"г":{"docs":{},"о":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"м":{"docs":{},"е":{"docs":{},"д":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"у":{"docs":{},"д":{"docs":{},"а":{"docs":{},"ч":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}}}}}}}},"у":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}},"о":{"docs":{},"б":{"docs":{},"е":{"docs":{},"р":{"docs":{},"т":{"docs":{},"к":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}}}}}},"ъ":{"docs":{},"е":{"docs":{},"к":{"docs":{},"т":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"р":{"docs":{},"а":{"docs":{},"б":{"docs":{},"о":{"docs":{},"т":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"к":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}},"п":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"а":{"docs":{},"н":{"docs":{},"а":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"с":{"docs":{},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"т":{"docs":{},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}},"ч":{"docs":{},"и":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"щ":{"docs":{},"е":{"docs":{},"н":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"р":{"docs":{},"а":{"docs":{},"б":{"docs":{},"о":{"docs":{},"т":{"docs":{},"ы":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}}}}}},"у":{"docs":{},"к":{"docs":{},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"д":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}}}},"с":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}},"в":{"docs":{},"о":{"docs":{},"й":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"а":{"docs":{},"м":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{},"я":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"т":{"docs":{},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"й":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"у":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}},",":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}}}},"г":{"docs":{},"н":{"docs":{},"а":{"docs":{},"т":{"docs":{},"у":{"docs":{},"р":{"docs":{},"у":{"docs":{},":":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}},"к":{"docs":{},"р":{"docs":{},"и":{"docs":{},"п":{"docs":{},"т":{"docs":{},"о":{"docs":{},"в":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"б":{"docs":{},"и":{"docs":{},"р":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"г":{"docs":{},"л":{"docs":{},"а":{"docs":{},"с":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"з":{"docs":{},"д":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}}}},"о":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},")":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}}}},"х":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}},"с":{"docs":{},"ы":{"docs":{},"л":{"docs":{},"к":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"т":{"docs":{},"р":{"docs":{},"о":{"docs":{},"к":{"docs":{},"а":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"м":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}},"ы":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"у":{"docs":{},"к":{"docs":{},"т":{"docs":{},"у":{"docs":{},"р":{"docs":{},"а":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"л":{"docs":{},"у":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.011142061281337047}}}}}}},"у":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}},"у":{"docs":{},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"к":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":10.005208333333334}}},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"в":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"ы":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"м":{"docs":{},"о":{"docs":{},"л":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"ю":{"docs":{"options.html":{"ref":"options.html","tf":0.04395604395604396}}}}}}}}}},"д":{"docs":{},"а":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}},"я":{"docs":{},"е":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"ж":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"з":{"docs":{},"н":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"х":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"л":{"docs":{},"и":{"docs":{},"щ":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}},"м":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.02197802197802198},"api.html":{"ref":"api.html","tf":0.005571030640668524}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"api.html":{"ref":"api.html","tf":0.004178272980501393}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}},"о":{"docs":{},"т":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"а":{"docs":{},"д":{"docs":{},"р":{"docs":{},"е":{"docs":{},"с":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"р":{"docs":{},"г":{"docs":{},"у":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"о":{"docs":{},"м":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"ы":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}}}}}}}},"с":{"docs":{},"и":{"docs":{},"н":{"docs":{},"х":{"docs":{},"р":{"docs":{},"о":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}},"в":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.028985507246376812},"started.html":{"ref":"started.html","tf":0.03508771929824561},"options.html":{"ref":"options.html","tf":0.04395604395604396},"api.html":{"ref":"api.html","tf":0.019498607242339833}},"а":{"docs":{},"м":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"е":{"docs":{},"р":{"docs":{},"с":{"docs":{},"и":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"/":{"docs":{},"т":{"docs":{},"е":{"docs":{},"г":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"н":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"ч":{"docs":{},"н":{"docs":{},"о":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"щ":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"с":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"г":{"docs":{},"д":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"ы":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625},"vanilla.html":{"ref":"vanilla.html","tf":0.014492753623188406},"started.html":{"ref":"started.html","tf":0.013157894736842105}},"ш":{"docs":{},"е":{"docs":{},"у":{"docs":{},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"а":{"docs":{},"я":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}},"з":{"docs":{},"о":{"docs":{},"в":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"а":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}},"б":{"docs":{},"р":{"docs":{},"о":{"docs":{},"с":{"docs":{},"и":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}}}}}}}},"в":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"н":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"ы":{"docs":{},"м":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}},"р":{"docs":{},"е":{"docs":{},"м":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.02197802197802198},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"о":{"docs":{},"з":{"docs":{},"в":{"docs":{},"р":{"docs":{},"а":{"docs":{},"т":{"docs":{},"о":{"docs":{},"м":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"щ":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.005571030640668524}}}}}}}}}}}},"г":{"docs":{},"л":{"docs":{},"о":{"docs":{},"б":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}},"е":{"docs":{},"с":{"docs":{},"л":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}},"г":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.004178272980501393}}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"з":{"docs":{},"а":{"docs":{},"г":{"docs":{},"р":{"docs":{},"у":{"docs":{},"з":{"docs":{},"к":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"о":{"docs":{},"д":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"п":{"docs":{},"у":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"л":{"docs":{},"о":{"docs":{},"с":{"docs":{},"ь":{"docs":{},"!":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"а":{"docs":{},"н":{"docs":{},"ы":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"ь":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"е":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}},"р":{"docs":{},"о":{"docs":{},"с":{"docs":{},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"н":{"docs":{},"а":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.011142061281337047}}},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"д":{"docs":{},"е":{"docs":{},"с":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}},"к":{"docs":{},"л":{"docs":{},"о":{"docs":{},"н":{"docs":{},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}},"а":{"docs":{},"с":{"docs":{},"с":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}},"ю":{"docs":{},"ч":{"docs":{"api.html":{"ref":"api.html","tf":0.004178272980501393}},"а":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"е":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"о":{"docs":{},"м":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"у":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}},"о":{"docs":{},"н":{"docs":{},"к":{"docs":{},"р":{"docs":{},"е":{"docs":{},"т":{"docs":{},"н":{"docs":{},"у":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"ф":{"docs":{},"и":{"docs":{},"г":{"docs":{},"у":{"docs":{},"р":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"ю":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}},"я":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}},"д":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},"л":{"docs":{},"л":{"docs":{},"и":{"docs":{},"з":{"docs":{},"и":{"docs":{},"й":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}},"и":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"а":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"о":{"docs":{},"е":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"ы":{"docs":{},"х":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"а":{"docs":{},"к":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}},"п":{"docs":{},"а":{"docs":{},"к":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}},"а":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"е":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"в":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}},"н":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"н":{"docs":{},"а":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"ы":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"о":{"docs":{},"п":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"л":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}}},"л":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}}}},"г":{"docs":{},"и":{"docs":{},"н":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"options.html":{"ref":"options.html","tf":0.01098901098901099}},"а":{"docs":{"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.04395604395604396},"api.html":{"ref":"api.html","tf":0.004178272980501393}},"д":{"docs":{},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},",":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"д":{"docs":{},"е":{"docs":{},"р":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}},"с":{"docs":{},"л":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"api.html":{"ref":"api.html","tf":0.001392757660167131}},"д":{"docs":{},"н":{"docs":{},"ю":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}}}},"к":{"docs":{},"а":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"з":{"docs":{},"в":{"docs":{},"о":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.011142061281337047}}}}}}}}},"л":{"docs":{},"у":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}},"ф":{"docs":{},"и":{"docs":{},"к":{"docs":{},"с":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"а":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{},"а":{"docs":{},"х":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.016713091922005572}}}}}},"л":{"docs":{},"о":{"docs":{},"ж":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"н":{"docs":{},"и":{"docs":{},"м":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"я":{"docs":{},"м":{"docs":{},"а":{"docs":{},"я":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"т":{"docs":{},"и":{"docs":{},"в":{"docs":{},"н":{"docs":{},"о":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}}},"и":{"docs":{},"ш":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"т":{"docs":{},"а":{"docs":{},"к":{"docs":{},"ж":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"у":{"docs":{},"ю":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.002785515320334262}},"л":{"docs":{},"ь":{"docs":{},"к":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"е":{"docs":{},"м":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}},"ф":{"docs":{},"л":{"docs":{},"а":{"docs":{},"г":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}},"о":{"docs":{},"р":{"docs":{},"м":{"docs":{},"а":{"docs":{},"т":{"docs":{},"а":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"у":{"docs":{},"н":{"docs":{},"к":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"э":{"docs":{},"т":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"к":{"docs":{},"з":{"docs":{},"е":{"docs":{},"м":{"docs":{},"п":{"docs":{},"л":{"docs":{},"я":{"docs":{},"р":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}}}}}}},"л":{"docs":{},"е":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"я":{"docs":{},"в":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"л":{"docs":{},"ю":{"docs":{},"б":{"docs":{},"о":{"docs":{},"й":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"ж":{"docs":{},"и":{"docs":{},"з":{"docs":{},"н":{"docs":{},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.02197802197802198}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"length":2594},"corpusTokens":["\"fallback\"","\"value\"","$","'#app',","'app_',","'fallback')","'local',","'lol']","'value'","'value')","'value');","'vue';","'vue2","()","(e.g.","(key,","(key:","(localstorage,","(например","*","+","/","//","0","1000","1000,","2","24","60","=","=>","['test',","abov","accept","accord","ad","add","allow","alreadi","alway","any)","any.","anymor","api","app","app_","app_.","argument","arguments:","array","async","avoid","await","base","befor","begin","boolean","browser","build","build.","call","case","cd","cdn","certain","chang","class","clear","cleared.","cli),","clone","closur","code","collisions.","config","configur","configuration,","connecting,","console.log(data)","console.log(fallback)","console.log(haslol)","console.log(hastest)","console.log(key)","console.log(keys)","console.log(storage.get('key'));","console.log(this.$storage.length)","console.log(this.$storage.prefix)","const","creat","data","default","delet","deleted.","describ","dev","direct","directli","disabl","document","documentation:","don't","download","driver","driver:","el:","entir","entri","es2015","example:","except","execut","exist","explicitli","export","failure,","fallback","fals","find","flag","forc","forever.","format.","function","get","git","github","given","global","guide.","handler","haslol","hastest","here","hour","html","http","https://github.com/yarkovaleksei/vue2","https://unpkg.com/vue2","identifi","ignor","immedi","import","includ","index","index.","initialization.","instal","instanti","introduct","it.","item.","javascript","kept","key","key.","key:","keys.","latest","length","lifetim","lifetime.","link","links.","local,","local.","memori","memorystorag","method","milliseconds.","modul","modular","name","need","new","node_modules/vue2","now","npm","npm.","null","number","numer","object","option","optional:","otherwis","otherwise,","out","output","overrid","packag","pass","plan","plug","plugin","point","prefix","prefix:","promis","properti","provid","pull","record","releas","rememb","remov","replac","replacer:","repositori","repository.","requir","respectively).","retriev","return","sampl","save","script","second","session","sessionstorag","set","setopt","signature:","specif","specifi","start","started!","storag","storage';","storage,","storage.","storage.git","storage.j","storage.set('key',","storage.setoptions({","storage/dist/vue2","storage@6.0.0/dist/vue2","storageerror","store","store.","string","string,","structur","stuff","such","support","system","system,","tags.","this.$storage.clear()","this.$storage.get('test')","this.$storage.get('test',","this.$storage.get('unknown',","this.$storage.has('lol')","this.$storage.has('test')","this.$storage.key(0)","this.$storage.keys()","this.$storage.pull('test')","this.$storage.remember('test',","this.$storage.remove('test')","this.$storage.set('lol',","this.$storage.set('test',","this.$storage.setoptions({","throw","time.","true","true,","ttl","ttl:","type","undefined.","unpkg.com","url","us","used.","valu","value)","value.","value.repeat(2)","value:","valuevalu","version/tag","via","vue","vue({","vue,","vue.j","vue.us","vue.use():","vue.use(plugin);","vue.use(plugin,","vue.use(vue2storage).","vue.use(vue2storage)`","vue2","vue2storag","vue2storage({","want","whether","whose","window.vue({","window.vue.use(window.vue2storageplugin)","window.vue.use(window.vue2storageplugin,","window.vue2storage({","without","write","written","yarn","yourself","{","{}","}","})","}).$mount('#app')","}).$mount('#app');","});","},","адрес,","аргумент","аргументом","аргументы:","асинхронные","без","браузерным","будем","будет","будут","быть","в","вам","вернет","версию","версию.","версию/тег","вечно.","вещи","возвратом.","возвращаемое","возвращает","время","все","всегда","вторым","вы","выбросит","выведет","вызвана","вызовите","выполняется","вышеуказанная","глобально.","данные","делаем","делать","для","добавить","добавлено","документации:","документация","должны","другие","его","ее","если","жизни","жизни.","загрузка","заодно","записаны","записать","записей","записи","запись","запросы","запустилось!","здесь","значение","значение.","значение:","значением","значения","значения,","и","идентификатор","из","избежания","извлекаем","извлечь","изменена","или","имеет","импортируйте","индексу","инициализации.","исключение","использование","использовании","использования","использовать","используемого","используете","используйте","используя","как","класс","класса","клонировать","ключ","ключ.","ключа,","ключа.","ключей","ключом.","ключу.","кода","количество","коллизий.","конкретную","конфигурации","конфигурацию","конфигурация","которая","которое","которых","ли","любой","массив","метод","методы","миллисекундах.","модульной","модульную","может","можете","можно","момент.","мы","на","надо","например","настройками","настройками.","настройках.","настройки","начало","начинается","не","него","немедленно","непосредственно","неудачи","нужно","обертка","обработчик","объект","описана","описаны","определенного","опции","основе","отключает","очистить","очищено","пакет","пакета.","перед","передав","передайте","передан","переданная","переданный","передать","переопределить","пишется","плагин","плагина","планируете","по","поддерживаются","подключении","подключении,","подключите","позволяет","пока","получить","после","последнюю","предоставляет","префикс","префикса,","при","приложение","пример:","примерах","принимает","просто","противном","прямая","работы","руководстве.","с","самостоятельно","свойства","сигнатуру:","системой","систему","систему,","скриптов","случае","со","собирать","согласно","создании","соответственно).","сохраняется","ссылка","ссылки","строка,","строковой","строковому","строковый","структура","существует","существует,","также","такую","тем","то","только","удалены","удалить","удаляем","уже","узнать","указав","указанного","указанным","указать","указывает","умолчанию","установить","установка","установки","флаг","формата.","функция","хотите","хранилища","хранилища,","хранилища.","хранилище","хранилище,","хранилище.","хранилищем","храниться","часа","через","через`","черезvue.use():","числовому","экземпляра","элемент.","это","явно"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"vue2-storage documentation\n\nBrowser storage for JavaScript or Vue.js app\n\n\nInstallation\nUsing without Vue\nGetting Started\nOptions\nAPI\nMethods\nsetOptions\nget\npull\nset\nremember\nremove\nclear\nhas\nkey\nkeys\n\n\nProperties\nlength\nprefix\n\n\n\n\n\n"},"installation.html":{"url":"installation.html","title":"Installation","keywords":"","body":"Installation\nDirect Download / CDN\nhttps://unpkg.com/vue2-storage/dist/vue2-storage\nunpkg.com provides NPM-based CDN links. The above link will always point to the latest release on NPM. You can also use a specific version/tag via URLs like https://unpkg.com/vue2-storage@6.0.0/dist/vue2-storage.js\nInclude vue2-storage after Vue and use according to the documentation:\n\n\n\n window.Vue.use(window.Vue2StoragePlugin)\n\n\nNPM\n$ npm install vue2-storage\n\nIf you plan to use the package without Vue, then you need to add the flag --no-optional:\n$ npm install --no-optional vue2-storage\n\nYarn\n$ yarn add vue2-storage\n\nIf you plan to use the package without Vue, then you need to add the flag --ignore-optional:\n$ yarn add --ignore-optional vue2-storage\n\nWhen used with a module system, you must explicitly install the vue2-storage via Vue.use():\nimport Vue from 'vue';\nimport { Plugin } from 'vue2-storage';\n\nVue.use(Plugin);\n// You can pass options\nVue.use(Plugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n});\n\nYou don't need to do this when using global script tags.\nDev Build\nYou will have to clone directly from GitHub and build vue2-storage yourself if\nyou want to use the latest dev build.\n$ git clone https://github.com/yarkovaleksei/vue2-storage.git node_modules/vue2-storage\n$ cd node_modules/vue2-storage\n$ yarn\n$ yarn build\n\n"},"vanilla.html":{"url":"vanilla.html","title":"Using without Vue","keywords":"","body":"Using without Vue\n\nWe will be using ES2015 in the code samples in the guide.\n\nHTML\n\n\n\n // You can specify the storage configuration when instantiating the class\n const storage = window.Vue2Storage({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n });\n\n storage.set('key', 'value');\n console.log(storage.get('key')); // value\n\n // The configuration of the storage can be changed at any time.\n // Just call the setOptions method and pass the object with the settings to it.\n storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value.repeat(2)\n });\n\n storage.set('key', 'value');\n console.log(storage.get('key')); // valuevalue\n\n\nJavaScript\n// If you are using a modular system then import the Vue2Storage class\nimport Vue2Storage from 'vue2-storage';\n\n// You can specify the storage configuration when instantiating the class\nconst storage = Vue2Storage({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n});\n\nstorage.set('key', 'value');\nconsole.log(storage.get('key')); // value\n\n// The configuration of the storage can be changed at any time.\n// Just call the setOptions method and pass the object with the settings to it.\nstorage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value.repeat(2)\n});\n\nstorage.set('key', 'value');\nconsole.log(storage.get('key')); // valuevalue\n\n"},"started.html":{"url":"started.html","title":"Getting Started","keywords":"","body":"Getting Started\n\nWe will be using ES2015 in the code samples in the guide.\n\nHTML\n\n\n\n\n\n\n // You can specify the plug-in configuration when connecting, passing the second object to Vue.use\n window.Vue.use(window.Vue2StoragePlugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n });\n\n new window.Vue({\n el: '#app',\n created () {\n // The configuration of the plugin can be changed at any time.\n // Just call the setOptions method and pass the object with the settings to it.\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n });\n }\n }).$mount('#app');\n\n\nJavaScript\n\n\n// If using a module system (e.g. via vue-cli), import Vue and Vue2Storage plugin and then call Vue.use(Vue2Storage).\nimport Vue from 'vue';\nimport { Plugin } from 'vue2-storage';\n\n// You can specify the plug-in configuration when connecting, passing the second object to Vue.use\nVue.use(Plugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n});\n\n// Now the app has started!\nnew Vue({\n el: '#app',\n created () {\n // The configuration of the plugin can be changed at any time.\n // Just call the setOptions method and pass the object with the settings to it.\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n });\n }\n}).$mount('#app');\n\n"},"options.html":{"url":"options.html","title":"Options","keywords":"","body":"Options\nTo install the configuration, the plug-in accepts an object of a certain format.\nprefix - a string that will be added to the beginning of the key to avoid collisions. Default is an app_.\ndriver - the identifier of the storage used. While values are supported local, session and memory (localStorage, sessionStorage and memoryStorage respectively). Default is an local.\nttl - record lifetime in milliseconds. Default is an 0 // disables the lifetime and the record will be kept forever.\nreplacer - a handler function for the value that is written to the store. Will be called before data is written to storage. Has such a signature: (key: string, value: any) => any. Default is an undefined.\n"},"api.html":{"url":"api.html","title":"API","keywords":"","body":"Methods\nsetOptions\nThe method allows you to override the plugin settings after initialization.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nconfig\nThe structure is described here\nThe values are described here\n-\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n })\n }\n}\n\nget\nThe method allows you to retrieve a value from the repository using a string key.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nfallback\n*\n\n-\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.get('test')\n const fallback = this.$storage.get('unknown', 'fallback') // Not in storage\n console.log(data) // { key: 'value' }\n console.log(fallback) // \"fallback\"\n }\n}\n\nReturn value: Any\nIn case of failure, the method will throw a StorageError exception\npull\nThe method allows you to retrieve a value and delete it from the repository using a string key.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nfallback\n*\n\n-\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.pull('test')\n const fallback = this.$storage.get('test', 'fallback') // Not in storage anymore\n console.log(data) // { key: 'value' }\n console.log(fallback) // \"fallback\"\n }\n}\n\nReturn value: Any\nset\nThe method allows you to write the value in the store by specifying the string key and the lifetime.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\ndata\n*\n\n+\n\n\n\noptions\nObject\n{}\n-\n{ ttl: number }\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.get('test')\n console.log(data) // { key: 'value' }\n }\n}\n\nIn case of failure, the method will throw a StorageError exception\nremember\nThe method allows you to retrieve an item. If given key already exists it will immediately return its value.\nOtherwise the passed function gets executed and its return value is saved to the store before returning it.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nclosure\nPromise\n\n+\n\n\n\noptions\nObject\n{}\n-\n{ ttl: number }\n\n\n\nExample:\nexport default {\n async created () {\n const data = await this.$storage.remember('test', async () => {\n // Do HTTP calls or other async stuff\n return 'value'\n })\n console.log(data) // outputs \"value\"\n }\n}\n\nReturn value: Any\nIn case of failure, the method will throw a StorageError exception\nremove\nThe method allows you to delete a value from the repository using a string key.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.remove('test')\n const data = this.$storage.get('test')\n console.log(data) // null\n }\n}\n\nIn case of failure, the method will throw a StorageError exception\nclear\nThe method allows you to clear the repository.\nIf the argument force is passed with a value of true, then the entire storage will be cleared.\nOtherwise, only the values whose key begins with the prefix specified in the settings will be deleted.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nforce\nBoolean\nfalse\n-\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.clear()\n const data = this.$storage.get('test')\n console.log(data) // null\n }\n}\n\nIn case of failure, the method will throw a StorageError exception\nhas\nThe method allows you to find out whether there is an entry in the repository with the specified key.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const hasTest = this.$storage.has('test')\n const hasLol = this.$storage.has('lol')\n console.log(hasTest) // true\n console.log(hasLol) // false\n }\n}\n\nReturn value: Boolean\nkey\nThe method returns a value from the numeric key index.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nindex\nNumber\n\n+\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.set('test', 'value')\n const key = this.$storage.key(0)\n console.log(key) // 'value'\n }\n}\n\nReturn value: Any\nIn case of failure, the method will throw a StorageError exception\nkeys\nThe method returns an array of storage keys.\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.set('lol', { key: 'value' }, { ttl: 60 * 1000 })\n const keys = this.$storage.keys()\n console.log(keys) // ['test', 'lol']\n }\n}\n\nReturn value: Array\n\nProperties\nlength\nReturns the number of records in the storage.\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' })\n this.$storage.set('lol', { key: 'value' })\n console.log(this.$storage.length) // 2\n }\n}\n\nReturn value: Number\n\nprefix\nReturns the prefix of records in the storage.\nExample:\nexport default {\n created () {\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n })\n console.log(this.$storage.prefix) // app_\n }\n}\n\nReturn value: String\n"}}} \ No newline at end of file +{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["api","app","browser","clear","document","get","instal","introduct","javascript","key","length","method","option","prefix","properti","pull","rememb","remov","set","setopt","start","storag","us","vue","vue.j","vue2","without"],"installation.html":["$","'app_',","'local',","'vue';","'vue2","(key,","*","/","//","1000,","24","60","=>","abov","accord","add","alway","base","build","build.","cd","cdn","clone","dev","direct","directli","documentation:","don't","download","driver:","explicitli","flag","git","github","global","hour","https://github.com/yarkovaleksei/vue2","https://unpkg.com/vue2","ignor","import","includ","instal","latest","link","links.","modul","need","node_modules/vue2","npm","npm.","option","optional:","packag","pass","plan","plugin","point","prefix:","provid","releas","replacer:","script","specif","storag","storage';","storage.git","storage.j","storage/dist/vue2","storage@6.0.3/dist/vue2","system,","tags.","ttl:","unpkg.com","url","us","valu","value)","version/tag","via","vue","vue,","vue.use():","vue.use(plugin);","vue.use(plugin,","vue2","want","window.vue.use(window.vue2storageplugin)","without","yarn","yourself","{","}","});"],"vanilla.html":["'app_',","'local',","'value');","'vue2","(key,","*","//","1000,","24","60","=","=>","call","chang","class","code","configur","console.log(storage.get('key'));","const","driver:","es2015","guide.","html","import","instanti","it.","javascript","method","modular","object","pass","prefix:","replacer:","sampl","set","setopt","specifi","storag","storage';","storage.set('key',","storage.setoptions({","system","time.","ttl:","us","valu","value)","value.repeat(2)","valuevalu","vue","vue2storag","vue2storage({","window.vue2storage({","without","});","часа"],"started.html":["'#app',","'app_',","'local',","'vue';","'vue2","()","(e.g.","(key,","*","//","1000,","24","60","=>","app","call","chang","cli),","code","configur","connecting,","creat","driver:","el:","es2015","get","guide.","hour","html","import","it.","javascript","method","modul","new","now","object","pass","plug","plugin","prefix:","replacer:","sampl","second","set","setopt","specifi","start","started!","storage';","system","this.$storage.setoptions({","time.","ttl:","us","valu","value)","via","vue","vue({","vue.us","vue.use(plugin,","vue.use(vue2storage).","vue2storag","window.vue({","window.vue.use(window.vue2storageplugin,","{","}","}).$mount('#app');","});"],"options.html":["(key:","(localstorage,","//","0","=>","accept","ad","any)","any.","app_.","avoid","befor","begin","call","certain","collisions.","configuration,","data","default","disabl","driver","forever.","format.","function","handler","identifi","instal","kept","key","lifetim","local,","local.","memori","memorystorag","milliseconds.","object","option","plug","prefix","record","replac","respectively).","session","sessionstorag","signature:","storag","storage.","store.","string","string,","such","support","ttl","undefined.","used.","valu","value:","written"],"api.html":["\"fallback\"","\"value\"","'app_',","'fallback')","'local',","'lol']","'value'","'value')","()","(key,","*","+","//","1000","1000,","2","24","60","=","=>","['test',","allow","alreadi","anymor","api","app_","argument","arguments:","array","async","await","befor","begin","boolean","call","case","clear","cleared.","closur","config","console.log(data)","console.log(fallback)","console.log(haslol)","console.log(hastest)","console.log(key)","console.log(keys)","console.log(this.$storage.length)","console.log(this.$storage.prefix)","const","creat","data","default","delet","deleted.","describ","driver:","entir","entri","example:","except","execut","exist","expect","export","failure,","fallback","fals","find","forc","function","get","given","haslol","hastest","here","hour","http","immedi","index","index.","initialization.","it.","item.","javascript","key","key.","key:","keys.","length","lifetime.","method","name","null","number","numer","object","option","otherwis","otherwise,","out","output","overrid","pass","plugin","prefix","prefix:","promis","properti","pull","record","rememb","remov","replacer:","repositori","repository.","requir","retriev","return","save","set","setopt","specifi","storag","storage.","storageerror","store","string","structur","stuff","this.$storage.clear()","this.$storage.get('test')","this.$storage.get('test',","this.$storage.get('unknown',","this.$storage.has('lol')","this.$storage.has('test')","this.$storage.key(0)","this.$storage.keys()","this.$storage.pull('test')","this.$storage.remember('test',","this.$storage.remove('test')","this.$storage.set('lol',","this.$storage.set('test',","this.$storage.setoptions({","throw","true","true,","ttl:","type","typescript","us","valu","value)","value.","value:","whether","whose","write","{","{}","}","})","},"]},"length":6},"tokenStore":{"root":{"0":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}},"1":{"0":{"0":{"0":{"docs":{"api.html":{"ref":"api.html","tf":0.011220196353436185}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}},"docs":{}},"docs":{}},"docs":{}},"2":{"4":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":0.046242774566473986},"started.html":{"ref":"started.html","tf":0.0425531914893617},"api.html":{"ref":"api.html","tf":0.005610098176718092}}},"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}},"6":{"0":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":0.046242774566473986},"started.html":{"ref":"started.html","tf":0.0425531914893617},"api.html":{"ref":"api.html","tf":0.016830294530154277}}},"docs":{}},"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":10}}},"p":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":0.005319148936170213}},"_":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.024691358024691357}}}},"l":{"docs":{},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"api.html":{"ref":"api.html","tf":0.023842917251051893}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}},"n":{"docs":{},"y":{"docs":{},")":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},"s":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.012622720897615708}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"api.html":{"ref":"api.html","tf":0.008415147265077139}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.03571428571428571}}}}}}}},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.018518518518518517}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.002805049088359046}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.017341040462427744}}}}},"i":{"docs":{},")":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.015957446808510637},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}},"s":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.008415147265077139}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},"u":{"docs":{},"r":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.009817671809256662}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}},"s":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"api.html":{"ref":"api.html","tf":0.0182328190743338}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.0182328190743338}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"w":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}},"e":{"docs":{},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.06153846153846154},"api.html":{"ref":"api.html","tf":0.030855539971949508}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"l":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.012622720897615708}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":5.00531914893617},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}},"i":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":10.024691358024691},"options.html":{"ref":"options.html","tf":0.015384615384615385}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497}}}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}}}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.015957446808510637}}}}}},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"t":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.001402524544179523}}},"e":{"docs":{},"m":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.07142857142857142},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.019635343618513323}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.005610098176718092}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0182328190743338}}},"s":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"p":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"s":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"f":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077}},"e":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.023842917251051893}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.005319148936170213}},"a":{"docs":{},"r":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.018518518518518517},"options.html":{"ref":"options.html","tf":10.015384615384615},"api.html":{"ref":"api.html","tf":0.002805049088359046}},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.02127659574468085},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},"e":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.004207573632538569}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}},"s":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}},"u":{"docs":{},"g":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425},"options.html":{"ref":"options.html","tf":0.015384615384615385}},"i":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"o":{"docs":{},"v":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.005610098176718092}}},"y":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"y":{"docs":{},")":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.012622720897615708}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"api.html":{"ref":"api.html","tf":0.004207573632538569}}}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.023842917251051893}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.004207573632538569}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":5.00531914893617}},"e":{"docs":{},"d":{"docs":{},"!":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.07142857142857142},"installation.html":{"ref":"installation.html","tf":0.06172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.03468208092485549},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.005610098176718092}},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.002805049088359046}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"j":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497}}}}}}}}}}}}}}},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}},"docs":{}}}}}}}}}},"@":{"6":{"docs":{},".":{"0":{"docs":{},".":{"3":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}},"docs":{}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.008415147265077139}}}}}}}}}},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.015427769985974754}},",":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"i":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.005610098176718092}}}}}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}},"v":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},":":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}},"u":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.043209876543209874},"vanilla.html":{"ref":"vanilla.html","tf":3.3506743737957607},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.004207573632538569}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}},"r":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.043209876543209874}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.005319148936170213}},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248}}}}}}}}}}}},"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":3.339113680154142},"started.html":{"ref":"started.html","tf":0.015957446808510637}},".":{"docs":{},"j":{"docs":{"./":{"ref":"./","tf":0.03571428571428571}}},"u":{"docs":{},"s":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}}}}}},"docs":{}}}}}}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"options.html":{"ref":"options.html","tf":0.03076923076923077},"api.html":{"ref":"api.html","tf":0.028050490883590462}},"e":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002805049088359046}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"2":{"docs":{},")":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497}}}},"docs":{}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497}}}}}},":":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.011220196353436185}}}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}}}},"i":{"docs":{},"a":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":3.339113680154142}}}}}}},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248}}}}}}}}}}}},"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}},",":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077}}}}},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"h":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"$":{"docs":{"installation.html":{"ref":"installation.html","tf":0.04938271604938271}}},"'":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"_":{"docs":{},"'":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}},"l":{"docs":{},"'":{"docs":{},"]":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}},"docs":{},"'":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{"api.html":{"ref":"api.html","tf":0.02244039270687237}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},";":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993}}}}}}}}}},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"'":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}}}}}}}},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002805049088359046}}},":":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},")":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.021037868162692847}}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},".":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}}}},"*":{"docs":{"installation.html":{"ref":"installation.html","tf":0.018518518518518517},"vanilla.html":{"ref":"vanilla.html","tf":0.06936416184971098},"started.html":{"ref":"started.html","tf":0.06382978723404255},"api.html":{"ref":"api.html","tf":0.023842917251051893}}},"/":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"/":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":0.08670520231213873},"started.html":{"ref":"started.html","tf":0.06382978723404255},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.033660589060308554}}}},"=":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"api.html":{"ref":"api.html","tf":0.0182328190743338}},">":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.005610098176718092}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.0182328190743338}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.016830294530154277}}}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.008415147265077139}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"s":{"2":{"0":{"1":{"5":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"l":{"docs":{},":":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}},"r":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"c":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.008415147265077139}}}}}}}},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"api.html":{"ref":"api.html","tf":0.005610098176718092}}}}}}},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"k":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}},"docs":{}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.018518518518518517}}}},"w":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}},"docs":{}}}}}}}}}}}}}}},"w":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}},"p":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.024691358024691357}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.012622720897615708}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.0070126227208976155}}}}},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"t":{"docs":{},"l":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.016830294530154277}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.012622720897615708}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.005610098176718092}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}},"u":{"docs":{},"n":{"docs":{},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"(":{"0":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}},"docs":{}},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"api.html":{"ref":"api.html","tf":0.008415147265077139}}}}}},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.014025245441795231}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}}},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.030864197530864196}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}},"{":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"started.html":{"ref":"started.html","tf":0.026595744680851064},"api.html":{"ref":"api.html","tf":0.07152875175315568}},"}":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}},"}":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.015957446808510637},"api.html":{"ref":"api.html","tf":0.043478260869565216}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.019635343618513323}},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085}}},".":{"docs":{},"$":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}}}}}}}}}}}}}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.011220196353436185}}}},"ч":{"docs":{},"а":{"docs":{},"с":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993}}}}}},"\"":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"\"":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}}}},"+":{"docs":{"api.html":{"ref":"api.html","tf":0.012622720897615708}}},"[":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}},"length":466},"corpusTokens":["\"fallback\"","\"value\"","$","'#app',","'app_',","'fallback')","'local',","'lol']","'value'","'value')","'value');","'vue';","'vue2","()","(e.g.","(key,","(key:","(localstorage,","*","+","/","//","0","1000","1000,","2","24","60","=","=>","['test',","abov","accept","accord","ad","add","allow","alreadi","alway","any)","any.","anymor","api","app","app_","app_.","argument","arguments:","array","async","avoid","await","base","befor","begin","boolean","browser","build","build.","call","case","cd","cdn","certain","chang","class","clear","cleared.","cli),","clone","closur","code","collisions.","config","configur","configuration,","connecting,","console.log(data)","console.log(fallback)","console.log(haslol)","console.log(hastest)","console.log(key)","console.log(keys)","console.log(storage.get('key'));","console.log(this.$storage.length)","console.log(this.$storage.prefix)","const","creat","data","default","delet","deleted.","describ","dev","direct","directli","disabl","document","documentation:","don't","download","driver","driver:","el:","entir","entri","es2015","example:","except","execut","exist","expect","explicitli","export","failure,","fallback","fals","find","flag","forc","forever.","format.","function","get","git","github","given","global","guide.","handler","haslol","hastest","here","hour","html","http","https://github.com/yarkovaleksei/vue2","https://unpkg.com/vue2","identifi","ignor","immedi","import","includ","index","index.","initialization.","instal","instanti","introduct","it.","item.","javascript","kept","key","key.","key:","keys.","latest","length","lifetim","lifetime.","link","links.","local,","local.","memori","memorystorag","method","milliseconds.","modul","modular","name","need","new","node_modules/vue2","now","npm","npm.","null","number","numer","object","option","optional:","otherwis","otherwise,","out","output","overrid","packag","pass","plan","plug","plugin","point","prefix","prefix:","promis","properti","provid","pull","record","releas","rememb","remov","replac","replacer:","repositori","repository.","requir","respectively).","retriev","return","sampl","save","script","second","session","sessionstorag","set","setopt","signature:","specif","specifi","start","started!","storag","storage';","storage.","storage.git","storage.j","storage.set('key',","storage.setoptions({","storage/dist/vue2","storage@6.0.3/dist/vue2","storageerror","store","store.","string","string,","structur","stuff","such","support","system","system,","tags.","this.$storage.clear()","this.$storage.get('test')","this.$storage.get('test',","this.$storage.get('unknown',","this.$storage.has('lol')","this.$storage.has('test')","this.$storage.key(0)","this.$storage.keys()","this.$storage.pull('test')","this.$storage.remember('test',","this.$storage.remove('test')","this.$storage.set('lol',","this.$storage.set('test',","this.$storage.setoptions({","throw","time.","true","true,","ttl","ttl:","type","typescript","undefined.","unpkg.com","url","us","used.","valu","value)","value.","value.repeat(2)","value:","valuevalu","version/tag","via","vue","vue({","vue,","vue.j","vue.us","vue.use():","vue.use(plugin);","vue.use(plugin,","vue.use(vue2storage).","vue2","vue2storag","vue2storage({","want","whether","whose","window.vue({","window.vue.use(window.vue2storageplugin)","window.vue.use(window.vue2storageplugin,","window.vue2storage({","without","write","written","yarn","yourself","{","{}","}","})","}).$mount('#app');","});","},","часа"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"vue2-storage documentation\n\nBrowser storage for JavaScript or Vue.js app\n\n\nInstallation\nUsing without Vue\nGetting Started\nOptions\nAPI\nMethods\nsetOptions\nget\npull\nset\nremember\nremove\nclear\nhas\nkey\nkeys\n\n\nProperties\nlength\nprefix\n\n\n\n\n\n"},"installation.html":{"url":"installation.html","title":"Installation","keywords":"","body":"Installation\nDirect Download / CDN\nhttps://unpkg.com/vue2-storage/dist/vue2-storage\nunpkg.com provides NPM-based CDN links. The above link will always point to the latest release on NPM. You can also use a specific version/tag via URLs like https://unpkg.com/vue2-storage@6.0.3/dist/vue2-storage.js\nInclude vue2-storage after Vue and use according to the documentation:\n\n\n\n window.Vue.use(window.Vue2StoragePlugin)\n\n\nNPM\n$ npm install vue2-storage\n\nIf you plan to use the package without Vue, then you need to add the flag --no-optional:\n$ npm install --no-optional vue2-storage\n\nYarn\n$ yarn add vue2-storage\n\nIf you plan to use the package without Vue, then you need to add the flag --ignore-optional:\n$ yarn add --ignore-optional vue2-storage\n\nWhen used with a module system, you must explicitly install the vue2-storage via Vue.use():\nimport Vue from 'vue';\nimport { Plugin } from 'vue2-storage';\n\nVue.use(Plugin);\n// You can pass options\nVue.use(Plugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n});\n\nYou don't need to do this when using global script tags.\nDev Build\nYou will have to clone directly from GitHub and build vue2-storage yourself if\nyou want to use the latest dev build.\n$ git clone https://github.com/yarkovaleksei/vue2-storage.git node_modules/vue2-storage\n$ cd node_modules/vue2-storage\n$ yarn\n$ yarn build\n\n"},"vanilla.html":{"url":"vanilla.html","title":"Using without Vue","keywords":"","body":"Using without Vue\n\nWe will be using ES2015 in the code samples in the guide.\n\nHTML\n\n\n\n // You can specify the storage configuration when instantiating the class\n const storage = window.Vue2Storage({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n });\n\n storage.set('key', 'value');\n console.log(storage.get('key')); // value\n\n // The configuration of the storage can be changed at any time.\n // Just call the setOptions method and pass the object with the settings to it.\n storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value.repeat(2)\n });\n\n storage.set('key', 'value');\n console.log(storage.get('key')); // valuevalue\n\n\nJavaScript\n// If you are using a modular system then import the Vue2Storage class\nimport Vue2Storage from 'vue2-storage';\n\n// You can specify the storage configuration when instantiating the class\nconst storage = Vue2Storage({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n});\n\nstorage.set('key', 'value');\nconsole.log(storage.get('key')); // value\n\n// The configuration of the storage can be changed at any time.\n// Just call the setOptions method and pass the object with the settings to it.\nstorage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value.repeat(2)\n});\n\nstorage.set('key', 'value');\nconsole.log(storage.get('key')); // valuevalue\n\n"},"started.html":{"url":"started.html","title":"Getting Started","keywords":"","body":"Getting Started\n\nWe will be using ES2015 in the code samples in the guide.\n\nHTML\n\n\n\n\n\n\n // You can specify the plug-in configuration when connecting, passing the second object to Vue.use\n window.Vue.use(window.Vue2StoragePlugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n });\n\n new window.Vue({\n el: '#app',\n created () {\n // The configuration of the plugin can be changed at any time.\n // Just call the setOptions method and pass the object with the settings to it.\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n });\n }\n }).$mount('#app');\n\n\nJavaScript\n\n\n// If using a module system (e.g. via vue-cli), import Vue and Vue2Storage plugin and then call Vue.use(Vue2Storage).\nimport Vue from 'vue';\nimport { Plugin } from 'vue2-storage';\n\n// You can specify the plug-in configuration when connecting, passing the second object to Vue.use\nVue.use(Plugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n});\n\n// Now the app has started!\nnew Vue({\n el: '#app',\n created () {\n // The configuration of the plugin can be changed at any time.\n // Just call the setOptions method and pass the object with the settings to it.\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n });\n }\n}).$mount('#app');\n\n"},"options.html":{"url":"options.html","title":"Options","keywords":"","body":"Options\nTo install the configuration, the plug-in accepts an object of a certain format.\nprefix - a string that will be added to the beginning of the key to avoid collisions. Default is an app_.\ndriver - the identifier of the storage used. While values are supported local, session and memory (localStorage, sessionStorage and memoryStorage respectively). Default is an local.\nttl - record lifetime in milliseconds. Default is an 0 // disables the lifetime and the record will be kept forever.\nreplacer - a handler function for the value that is written to the store. Will be called before data is written to storage. Has such a signature: (key: string, value: any) => any. Default is an undefined.\n"},"api.html":{"url":"api.html","title":"API","keywords":"","body":"Methods\nsetOptions\nThe method allows you to override the plugin settings after initialization.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nconfig\nThe structure is described here\nThe values are described here\n-\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n })\n }\n}\n\nget\nThe method allows you to retrieve a value from the repository using a string key.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nfallback\n*\n\n-\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.get('test')\n const fallback = this.$storage.get('unknown', 'fallback') // Not in storage\n console.log(data) // { key: 'value' }\n console.log(fallback) // \"fallback\"\n }\n}\n\nReturn value: Any\nIn case of failure, the method will throw a StorageError exception\npull\nThe method allows you to retrieve a value and delete it from the repository using a string key.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nfallback\n*\n\n-\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.pull('test')\n const fallback = this.$storage.get('test', 'fallback') // Not in storage anymore\n console.log(data) // { key: 'value' }\n console.log(fallback) // \"fallback\"\n }\n}\n\nReturn value: Any\nset\nThe method allows you to write the value in the store by specifying the string key and the lifetime.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\ndata\n*\n\n+\n\n\n\noptions\nObject\n{}\n-\n{ ttl: number }\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.get('test')\n console.log(data) // { key: 'value' }\n }\n}\n\nIn case of failure, the method will throw a StorageError exception\nremember\nThe method allows you to retrieve an item. If given key already exists it will immediately return its value.\nOtherwise the passed function gets executed and its return value is saved to the store before returning it.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nclosure\nPromise\n\n+\n\n\n\noptions\nObject\n{}\n-\n{ ttl: number }\n\n\n\nExample:\n// JavaScript\nexport default {\n async created () {\n const data = await this.$storage.remember('test', async () => {\n // Do HTTP calls or other async stuff\n return 'value'\n })\n console.log(data) // outputs \"value\"\n }\n}\n\n// TypeScript\nexport default {\n async created () {\n // You can specify the type of expected data\n const data = await this.$storage.remember('test', async () => {\n // Do HTTP calls or other async stuff\n return 'value'\n })\n console.log(data) // outputs \"value\"\n }\n}\n\nReturn value: Any\nIn case of failure, the method will throw a StorageError exception\nremove\nThe method allows you to delete a value from the repository using a string key.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.remove('test')\n const data = this.$storage.get('test')\n console.log(data) // null\n }\n}\n\nIn case of failure, the method will throw a StorageError exception\nclear\nThe method allows you to clear the repository.\nIf the argument force is passed with a value of true, then the entire storage will be cleared.\nOtherwise, only the values whose key begins with the prefix specified in the settings will be deleted.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nforce\nBoolean\nfalse\n-\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.clear()\n const data = this.$storage.get('test')\n console.log(data) // null\n }\n}\n\nIn case of failure, the method will throw a StorageError exception\nhas\nThe method allows you to find out whether there is an entry in the repository with the specified key.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const hasTest = this.$storage.has('test')\n const hasLol = this.$storage.has('lol')\n console.log(hasTest) // true\n console.log(hasLol) // false\n }\n}\n\nReturn value: Boolean\nkey\nThe method returns a value from the numeric key index.\nArguments:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nindex\nNumber\n\n+\n\n\n\nExample:\nexport default {\n created () {\n this.$storage.set('test', 'value')\n const key = this.$storage.key(0)\n console.log(key) // 'value'\n }\n}\n\nReturn value: Any\nIn case of failure, the method will throw a StorageError exception\nkeys\nThe method returns an array of storage keys.\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.set('lol', { key: 'value' }, { ttl: 60 * 1000 })\n const keys = this.$storage.keys()\n console.log(keys) // ['test', 'lol']\n }\n}\n\nReturn value: Array\n\nProperties\nlength\nReturns the number of records in the storage.\nExample:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' })\n this.$storage.set('lol', { key: 'value' })\n console.log(this.$storage.length) // 2\n }\n}\n\nReturn value: Number\n\nprefix\nReturns the prefix of records in the storage.\nExample:\nexport default {\n created () {\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n })\n console.log(this.$storage.prefix) // app_\n }\n}\n\nReturn value: String\n"}}} \ No newline at end of file diff --git a/docs/en/started.html b/docs/en/started.html index 76ba264..8e73af9 100644 --- a/docs/en/started.html +++ b/docs/en/started.html @@ -523,7 +523,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Getting Started","level":"1.4","depth":1,"next":{"title":"Options","level":"1.5","depth":1,"path":"options.md","ref":"options.md","articles":[]},"previous":{"title":"Using without Vue","level":"1.3","depth":1,"path":"vanilla.md","ref":"vanilla.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"livereload":{},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.0"},"language":"en","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"started.md","mtime":"2021-03-20T11:50:01.486Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T12:19:06.224Z"},"basePath":".","book":{"language":"en"}}); + gitbook.page.hasChanged({"page":{"title":"Getting Started","level":"1.4","depth":1,"next":{"title":"Options","level":"1.5","depth":1,"path":"options.md","ref":"options.md","articles":[]},"previous":{"title":"Using without Vue","level":"1.3","depth":1,"path":"vanilla.md","ref":"vanilla.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.3"},"language":"en","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"started.md","mtime":"2021-03-20T12:45:33.554Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T14:55:29.719Z"},"basePath":".","book":{"language":"en"}}); }); @@ -541,10 +541,6 @@

No results matching " - - - diff --git a/docs/en/vanilla.html b/docs/en/vanilla.html index 4d66081..0801fc9 100644 --- a/docs/en/vanilla.html +++ b/docs/en/vanilla.html @@ -518,7 +518,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Using without Vue","level":"1.3","depth":1,"next":{"title":"Getting Started","level":"1.4","depth":1,"path":"started.md","ref":"started.md","articles":[]},"previous":{"title":"Installation","level":"1.2","depth":1,"path":"installation.md","ref":"installation.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"livereload":{},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.0"},"language":"en","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"vanilla.md","mtime":"2021-03-20T12:07:38.604Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T12:19:06.224Z"},"basePath":".","book":{"language":"en"}}); + gitbook.page.hasChanged({"page":{"title":"Using without Vue","level":"1.3","depth":1,"next":{"title":"Getting Started","level":"1.4","depth":1,"path":"started.md","ref":"started.md","articles":[]},"previous":{"title":"Installation","level":"1.2","depth":1,"path":"installation.md","ref":"installation.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.3"},"language":"en","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"vanilla.md","mtime":"2021-03-20T12:45:33.554Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T14:55:29.719Z"},"basePath":".","book":{"language":"en"}}); }); @@ -536,10 +536,6 @@

No results matching " - - - diff --git a/docs/gitbook/gitbook-plugin-livereload/plugin.js b/docs/gitbook/gitbook-plugin-livereload/plugin.js deleted file mode 100644 index 923b3ae..0000000 --- a/docs/gitbook/gitbook-plugin-livereload/plugin.js +++ /dev/null @@ -1,11 +0,0 @@ -(function() { - var newEl = document.createElement('script'), - firstScriptTag = document.getElementsByTagName('script')[0]; - - if (firstScriptTag) { - newEl.async = 1; - newEl.src = '//' + window.location.hostname + ':35729/livereload.js'; - firstScriptTag.parentNode.insertBefore(newEl, firstScriptTag); - } - -})(); diff --git a/docs/ru/api.html b/docs/ru/api.html index d2e0632..747ca00 100644 --- a/docs/ru/api.html +++ b/docs/ru/api.html @@ -620,7 +620,8 @@

remember

Пример:

-
export default {
+
// JavaScript
+export default {
   async created () {
     const data = await this.$storage.remember('test', async () => {
         // Делаем HTTP-запросы или другие асинхронные вещи
@@ -630,6 +631,18 @@ 

remember

} }
+
// TypeScript
+export default {
+  async created () {
+    // Можно указать тип ожидаемых данных
+    const data = await this.$storage.remember<string>('test', async () => {
+        // Делаем HTTP-запросы или другие асинхронные вещи
+        return 'value'
+    })
+    console.log(data) // выведет "value"
+  }
+}
+

Возвращаемое значение: Any

В случае неудачи метод выбросит исключение StorageError

remove

@@ -854,7 +867,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"API","level":"1.6","depth":1,"next":{"title":"Методы","level":"1.6.1","depth":2,"anchor":"#методы","path":"api.md","ref":"api.md#методы","articles":[{"title":"setOptions","level":"1.6.1.1","depth":3,"anchor":"#setoptions","path":"api.md","ref":"api.md#setoptions","articles":[]},{"title":"get","level":"1.6.1.2","depth":3,"anchor":"#get","path":"api.md","ref":"api.md#get","articles":[]},{"title":"pull","level":"1.6.1.3","depth":3,"anchor":"#pull","path":"api.md","ref":"api.md#pull","articles":[]},{"title":"set","level":"1.6.1.4","depth":3,"anchor":"#set","path":"api.md","ref":"api.md#set","articles":[]},{"title":"remember","level":"1.6.1.5","depth":3,"anchor":"#remember","path":"api.md","ref":"api.md#remember","articles":[]},{"title":"remove","level":"1.6.1.6","depth":3,"anchor":"#remove","path":"api.md","ref":"api.md#remove","articles":[]},{"title":"clear","level":"1.6.1.7","depth":3,"anchor":"#clear","path":"api.md","ref":"api.md#clear","articles":[]},{"title":"has","level":"1.6.1.8","depth":3,"anchor":"#has","path":"api.md","ref":"api.md#has","articles":[]},{"title":"key","level":"1.6.1.9","depth":3,"anchor":"#key","path":"api.md","ref":"api.md#key","articles":[]},{"title":"keys","level":"1.6.1.10","depth":3,"anchor":"#keys","path":"api.md","ref":"api.md#keys","articles":[]}]},"previous":{"title":"Настройки","level":"1.5","depth":1,"path":"options.md","ref":"options.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"livereload":{},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.0"},"language":"ru","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"api.md","mtime":"2021-03-18T19:37:20.380Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T12:19:06.224Z"},"basePath":".","book":{"language":"ru"}}); + gitbook.page.hasChanged({"page":{"title":"API","level":"1.6","depth":1,"next":{"title":"Методы","level":"1.6.1","depth":2,"anchor":"#методы","path":"api.md","ref":"api.md#методы","articles":[{"title":"setOptions","level":"1.6.1.1","depth":3,"anchor":"#setoptions","path":"api.md","ref":"api.md#setoptions","articles":[]},{"title":"get","level":"1.6.1.2","depth":3,"anchor":"#get","path":"api.md","ref":"api.md#get","articles":[]},{"title":"pull","level":"1.6.1.3","depth":3,"anchor":"#pull","path":"api.md","ref":"api.md#pull","articles":[]},{"title":"set","level":"1.6.1.4","depth":3,"anchor":"#set","path":"api.md","ref":"api.md#set","articles":[]},{"title":"remember","level":"1.6.1.5","depth":3,"anchor":"#remember","path":"api.md","ref":"api.md#remember","articles":[]},{"title":"remove","level":"1.6.1.6","depth":3,"anchor":"#remove","path":"api.md","ref":"api.md#remove","articles":[]},{"title":"clear","level":"1.6.1.7","depth":3,"anchor":"#clear","path":"api.md","ref":"api.md#clear","articles":[]},{"title":"has","level":"1.6.1.8","depth":3,"anchor":"#has","path":"api.md","ref":"api.md#has","articles":[]},{"title":"key","level":"1.6.1.9","depth":3,"anchor":"#key","path":"api.md","ref":"api.md#key","articles":[]},{"title":"keys","level":"1.6.1.10","depth":3,"anchor":"#keys","path":"api.md","ref":"api.md#keys","articles":[]}]},"previous":{"title":"Настройки","level":"1.5","depth":1,"path":"options.md","ref":"options.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.3"},"language":"ru","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"api.md","mtime":"2021-03-20T14:38:02.047Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T14:55:29.719Z"},"basePath":".","book":{"language":"ru"}}); }); @@ -872,10 +885,6 @@

No results matching " - - - diff --git a/docs/ru/index.html b/docs/ru/index.html index 742b083..dac68c9 100644 --- a/docs/ru/index.html +++ b/docs/ru/index.html @@ -484,7 +484,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Introduction","level":"1.1","depth":1,"next":{"title":"Установка","level":"1.2","depth":1,"path":"installation.md","ref":"installation.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"livereload":{},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.0"},"language":"ru","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"README.md","mtime":"2021-03-20T12:20:55.534Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T12:19:06.224Z"},"basePath":".","book":{"language":"ru"}}); + gitbook.page.hasChanged({"page":{"title":"Introduction","level":"1.1","depth":1,"next":{"title":"Установка","level":"1.2","depth":1,"path":"installation.md","ref":"installation.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.3"},"language":"ru","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"README.md","mtime":"2021-03-20T12:45:33.554Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T14:55:29.719Z"},"basePath":".","book":{"language":"ru"}}); }); @@ -502,10 +502,6 @@

No results matching " - - - diff --git a/docs/ru/installation.html b/docs/ru/installation.html index da4350e..dcaa3b7 100644 --- a/docs/ru/installation.html +++ b/docs/ru/installation.html @@ -419,7 +419,7 @@

Установка

Прямая загрузка / CDN

https://unpkg.com/vue2-storage/dist/vue2-storage

-

unpkg.com предоставляет ссылки на CDN на основе NPM. Вышеуказанная ссылка всегда указывает на последнюю версию NPM пакета. Вы также можете использовать конкретную версию/тег через URL-адрес, например https://unpkg.com/vue2-storage@6.0.0/dist/vue2-storage.js

+

unpkg.com предоставляет ссылки на CDN на основе NPM. Вышеуказанная ссылка всегда указывает на последнюю версию NPM пакета. Вы также можете использовать конкретную версию/тег через URL-адрес, например https://unpkg.com/vue2-storage@6.0.3/dist/vue2-storage.js

Подключите vue2-storage после Vue и используйте согласно документации:

<script src="https://unpkg.com/vue/dist/vue.js"></script>
 <script src="https://unpkg.com/vue2-storage/dist/vue2-storage.js"></script>
@@ -504,7 +504,7 @@ 

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Установка","level":"1.2","depth":1,"next":{"title":"Использование без Vue","level":"1.3","depth":1,"path":"vanilla.md","ref":"vanilla.md","articles":[]},"previous":{"title":"Introduction","level":"1.1","depth":1,"path":"README.md","ref":"README.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"livereload":{},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.0"},"language":"ru","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"installation.md","mtime":"2021-03-20T12:17:28.310Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T12:19:06.224Z"},"basePath":".","book":{"language":"ru"}}); + gitbook.page.hasChanged({"page":{"title":"Установка","level":"1.2","depth":1,"next":{"title":"Использование без Vue","level":"1.3","depth":1,"path":"vanilla.md","ref":"vanilla.md","articles":[]},"previous":{"title":"Introduction","level":"1.1","depth":1,"path":"README.md","ref":"README.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.3"},"language":"ru","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"installation.md","mtime":"2021-03-20T12:45:33.554Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T14:55:29.719Z"},"basePath":".","book":{"language":"ru"}}); }); @@ -522,10 +522,6 @@

No results matching " - - - diff --git a/docs/ru/options.html b/docs/ru/options.html index f20396b..66650e8 100644 --- a/docs/ru/options.html +++ b/docs/ru/options.html @@ -465,7 +465,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Настройки","level":"1.5","depth":1,"next":{"title":"API","level":"1.6","depth":1,"path":"api.md","ref":"api.md","articles":[{"title":"Методы","level":"1.6.1","depth":2,"anchor":"#методы","path":"api.md","ref":"api.md#методы","articles":[{"title":"setOptions","level":"1.6.1.1","depth":3,"anchor":"#setoptions","path":"api.md","ref":"api.md#setoptions","articles":[]},{"title":"get","level":"1.6.1.2","depth":3,"anchor":"#get","path":"api.md","ref":"api.md#get","articles":[]},{"title":"pull","level":"1.6.1.3","depth":3,"anchor":"#pull","path":"api.md","ref":"api.md#pull","articles":[]},{"title":"set","level":"1.6.1.4","depth":3,"anchor":"#set","path":"api.md","ref":"api.md#set","articles":[]},{"title":"remember","level":"1.6.1.5","depth":3,"anchor":"#remember","path":"api.md","ref":"api.md#remember","articles":[]},{"title":"remove","level":"1.6.1.6","depth":3,"anchor":"#remove","path":"api.md","ref":"api.md#remove","articles":[]},{"title":"clear","level":"1.6.1.7","depth":3,"anchor":"#clear","path":"api.md","ref":"api.md#clear","articles":[]},{"title":"has","level":"1.6.1.8","depth":3,"anchor":"#has","path":"api.md","ref":"api.md#has","articles":[]},{"title":"key","level":"1.6.1.9","depth":3,"anchor":"#key","path":"api.md","ref":"api.md#key","articles":[]},{"title":"keys","level":"1.6.1.10","depth":3,"anchor":"#keys","path":"api.md","ref":"api.md#keys","articles":[]}]},{"title":"Свойства","level":"1.6.2","depth":2,"anchor":"#свойства","path":"api.md","ref":"api.md#свойства","articles":[{"title":"length","level":"1.6.2.1","depth":3,"anchor":"#length","path":"api.md","ref":"api.md#length","articles":[]},{"title":"prefix","level":"1.6.2.2","depth":3,"anchor":"#prefix","path":"api.md","ref":"api.md#prefix","articles":[]}]}]},"previous":{"title":"Начало использования","level":"1.4","depth":1,"path":"started.md","ref":"started.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"livereload":{},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.0"},"language":"ru","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"options.md","mtime":"2021-03-18T19:37:20.384Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T12:19:06.224Z"},"basePath":".","book":{"language":"ru"}}); + gitbook.page.hasChanged({"page":{"title":"Настройки","level":"1.5","depth":1,"next":{"title":"API","level":"1.6","depth":1,"path":"api.md","ref":"api.md","articles":[{"title":"Методы","level":"1.6.1","depth":2,"anchor":"#методы","path":"api.md","ref":"api.md#методы","articles":[{"title":"setOptions","level":"1.6.1.1","depth":3,"anchor":"#setoptions","path":"api.md","ref":"api.md#setoptions","articles":[]},{"title":"get","level":"1.6.1.2","depth":3,"anchor":"#get","path":"api.md","ref":"api.md#get","articles":[]},{"title":"pull","level":"1.6.1.3","depth":3,"anchor":"#pull","path":"api.md","ref":"api.md#pull","articles":[]},{"title":"set","level":"1.6.1.4","depth":3,"anchor":"#set","path":"api.md","ref":"api.md#set","articles":[]},{"title":"remember","level":"1.6.1.5","depth":3,"anchor":"#remember","path":"api.md","ref":"api.md#remember","articles":[]},{"title":"remove","level":"1.6.1.6","depth":3,"anchor":"#remove","path":"api.md","ref":"api.md#remove","articles":[]},{"title":"clear","level":"1.6.1.7","depth":3,"anchor":"#clear","path":"api.md","ref":"api.md#clear","articles":[]},{"title":"has","level":"1.6.1.8","depth":3,"anchor":"#has","path":"api.md","ref":"api.md#has","articles":[]},{"title":"key","level":"1.6.1.9","depth":3,"anchor":"#key","path":"api.md","ref":"api.md#key","articles":[]},{"title":"keys","level":"1.6.1.10","depth":3,"anchor":"#keys","path":"api.md","ref":"api.md#keys","articles":[]}]},{"title":"Свойства","level":"1.6.2","depth":2,"anchor":"#свойства","path":"api.md","ref":"api.md#свойства","articles":[{"title":"length","level":"1.6.2.1","depth":3,"anchor":"#length","path":"api.md","ref":"api.md#length","articles":[]},{"title":"prefix","level":"1.6.2.2","depth":3,"anchor":"#prefix","path":"api.md","ref":"api.md#prefix","articles":[]}]}]},"previous":{"title":"Начало использования","level":"1.4","depth":1,"path":"started.md","ref":"started.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.3"},"language":"ru","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"options.md","mtime":"2021-03-18T19:37:20.384Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T14:55:29.719Z"},"basePath":".","book":{"language":"ru"}}); }); @@ -483,10 +483,6 @@

No results matching " - - - diff --git a/docs/ru/search_index.json b/docs/ru/search_index.json index 817229e..186601c 100644 --- a/docs/ru/search_index.json +++ b/docs/ru/search_index.json @@ -1 +1 @@ -{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["api","clear","introduct","javascript","key","length","prefix","pull","rememb","remov","set","setopt","storag","vue","vue.j","vue2","без","браузерным","для","документация","и","использование","использования","методы","настройки","начало","обертка","работы","с","свойства","установка","хранилищем"],"installation.html":["$","'app_',","'local',","'vue';","'vue2","(key,","*","/","//","1000,","24","60","=>","add","build","cd","cdn","clone","dev","driver:","git","github","https://github.com/yarkovaleksei/vue2","https://unpkg.com/vue2","ignor","import","instal","node_modules/vue2","npm","npm.","option","optional:","plugin","prefix:","replacer:","storag","storage';","storage,","storage.git","storage.j","storage/dist/vue2","storage@6.0.0/dist/vue2","ttl:","unpkg.com","url","valu","value)","vue","vue,","vue.use(plugin);","vue.use(plugin,","vue2","window.vue.use(window.vue2storageplugin)","yarn","{","}","});","адрес,","без","будет","вам","версию","версию.","версию/тег","всегда","вы","вышеуказанная","глобально.","делать","добавить","документации:","должны","если","загрузка","заодно","и","из","использовании","использовать","используйте","клонировать","конкретную","модульной","можете","можно","на","надо","например","не","непосредственно","нужно","опции","основе","пакет","пакета.","передать","планируете","подключении","подключите","после","последнюю","предоставляет","при","прямая","с","самостоятельно","системой","скриптов","собирать","согласно","ссылка","ссылки","также","то","указывает","установить","установка","флаг","хотите","часа","через","черезvue.use():","это","явно"],"vanilla.html":["'app_',","'local',","'value');","'vue';","'vue2","(key,","*","//","1000,","24","60","=","=>","console.log(storage.get('key'));","const","driver:","es2015","html","import","javascript","prefix:","replacer:","setopt","storag","storage';","storage.set('key',","storage.setoptions({","ttl:","valu","value)","value.repeat(2)","valuevalu","vue","vue2storag","vue2storage({","window.vue2storage({","});","без","будем","быть","в","вы","вызовите","если","и","изменена","импортируйте","использование","использовать","используете","класс","класса","кода","конфигурацию","конфигурация","любой","метод","модульную","может","можете","момент.","мы","настройками.","него","объект","передайте","при","примерах","просто","руководстве.","с","систему,","создании","то","указать","хранилища","часа","экземпляра"],"started.html":["'#app',","'app_',","'local',","'vue';","'vue2","()","(key,","(например","*","//","1000,","24","60","=>","cli),","creat","driver:","el:","es2015","html","import","javascript","new","plugin","prefix:","replacer:","setopt","storage';","this.$storage.setoptions({","ttl:","valu","value)","via","vue","vue({","vue.us","vue.use(plugin,","vue.use(vue2storage)`","vue2storag","window.vue({","window.vue.use(window.vue2storageplugin,","{","}","})","}).$mount('#app')","}).$mount('#app');","});","аргументом","будем","быть","в","вторым","вы","вызовите","если","запустилось!","и","изменена","импортируйте","использования","использовать","используете","кода","конфигурацию","конфигурация","любой","метод","модульную","может","можете","момент.","мы","настройками","настройками.","начало","него","объект","передав","передайте","плагин","плагина","подключении,","подключите","при","приложение","примерах","просто","руководстве.","с","систему","то","указать","часа","через`"],"options.html":["(key:","(localstorage,","//","0","=>","any)","any.","app_.","driver","local,","local.","memori","memorystorag","prefix","replac","session","sessionstorag","string,","ttl","undefined.","value:","будет","будут","в","вечно.","время","вызвана","данные","для","добавлено","жизни","записаны","записи","запись","значения","значения,","и","идентификатор","избежания","имеет","используемого","как","ключа,","коллизий.","конфигурации","которая","которое","миллисекундах.","настройки","начало","обработчик","объект","определенного","отключает","перед","пишется","плагин","по","поддерживаются","пока","принимает","сигнатуру:","соответственно).","строка,","такую","тем","умолчанию","установки","формата.","функция","хранилища.","хранилище.","храниться"],"api.html":["\"fallback\"","\"value\"","'app_',","'fallback')","'local',","'lol']","'value'","'value')","()","(key,","*","+","//","1000","1000,","2","24","60","=","=>","['test',","allow","api","app_","array","async","await","boolean","clear","closur","config","console.log(data)","console.log(fallback)","console.log(haslol)","console.log(hastest)","console.log(key)","console.log(keys)","console.log(this.$storage.length)","console.log(this.$storage.prefix)","const","creat","data","default","driver:","export","fallback","fals","forc","haslol","hastest","hour","http","index","key","key:","length","name","null","number","object","option","prefix","prefix:","promis","pull","rememb","remov","replacer:","requir","return","set","setopt","storag","storageerror","string","this.$storage.clear()","this.$storage.get('test')","this.$storage.get('test',","this.$storage.get('unknown',","this.$storage.has('lol')","this.$storage.has('test')","this.$storage.key(0)","this.$storage.keys()","this.$storage.pull('test')","this.$storage.remember('test',","this.$storage.remove('test')","this.$storage.set('lol',","this.$storage.set('test',","this.$storage.setoptions({","true","true,","ttl:","type","valu","value)","{","{}","}","})","},","аргумент","аргументы:","асинхронные","будет","будут","в","вернет","вещи","возвратом.","возвращаемое","возвращает","время","все","выбросит","выведет","выполняется","делаем","другие","его","ее","если","жизни.","записать","записей","запись","запросы","здесь","значение","значение.","значение:","значением","значения","значения,","и","из","извлекаем","извлечь","или","индексу","инициализации.","исключение","используя","ключ","ключ.","ключа.","ключей","ключом.","ключу.","количество","которых","ли","массив","метод","методы","настройках.","настройки","начинается","немедленно","неудачи","описана","описаны","очистить","очищено","перед","передан","переданная","переданный","переопределить","плагина","по","позволяет","получить","после","префикс","префикса,","пример:","противном","с","свойства","случае","со","сохраняется","строковой","строковому","строковый","структура","существует","существует,","то","только","удалены","удалить","удаляем","уже","узнать","указав","указанного","указанным","функция","хранилища","хранилища,","хранилища.","хранилище","хранилище,","хранилище.","часа","числовому","элемент."]},"length":6},"tokenStore":{"root":{"0":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"1":{"0":{"0":{"0":{"docs":{"api.html":{"ref":"api.html","tf":0.011142061281337047}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}},"docs":{}},"docs":{}},"docs":{}},"2":{"4":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.03864734299516908},"started.html":{"ref":"started.html","tf":0.03508771929824561},"api.html":{"ref":"api.html","tf":0.005571030640668524}}},"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"6":{"0":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.03864734299516908},"started.html":{"ref":"started.html","tf":0.03508771929824561},"api.html":{"ref":"api.html","tf":0.016713091922005572}}},"docs":{}},"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":10}}},"p":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":0.005319148936170213}},"_":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"l":{"docs":{},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}},"n":{"docs":{},"y":{"docs":{},")":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},"s":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.013353115727002967}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.03571428571428571}}}}}}}},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.017341040462427744}}}}},"i":{"docs":{},")":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.015957446808510637},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}},"s":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.008902077151335312}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"u":{"docs":{},"r":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"s":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"api.html":{"ref":"api.html","tf":0.016713091922005572}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.016713091922005572}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"w":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}},"e":{"docs":{},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.06153846153846154},"api.html":{"ref":"api.html","tf":0.02924791086350975}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"l":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.009749303621169917}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":5.00531914893617},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}},"i":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"options.html":{"ref":"options.html","tf":0.015384615384615385}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497}}}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}}}}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"t":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.001483679525222552}}},"e":{"docs":{},"m":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.06060606060606061},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.013927576601671309}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.005934718100890208}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.018105849582172703}}},"s":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}},"p":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"s":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"f":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077}},"e":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.025222551928783383}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.005319148936170213}},"a":{"docs":{},"r":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"options.html":{"ref":"options.html","tf":10.015384615384615},"api.html":{"ref":"api.html","tf":0.002785515320334262}},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.02127659574468085},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},"e":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}},"s":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}},"u":{"docs":{},"g":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425},"options.html":{"ref":"options.html","tf":0.015384615384615385}},"i":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"o":{"docs":{},"v":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.005934718100890208}}},"y":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077},"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"y":{"docs":{},")":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"api.html":{"ref":"api.html","tf":0.004451038575667656}}}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.001392757660167131}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":5.00531914893617}},"e":{"docs":{},"d":{"docs":{},"!":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.046875},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001392757660167131}},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.002967359050445104}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"j":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}}}}}}}}}}},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"docs":{}}}}}}}}}},"@":{"6":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"docs":{}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}}}}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.009749303621169917}},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"i":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.004451038575667656}}}}}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}},"v":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},":":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.036458333333333336}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.0043859649122807015}},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}}}}}}}},"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":3.3429951690821254},"started.html":{"ref":"started.html","tf":0.013157894736842105},"./":{"ref":"./","tf":0.030303030303030304}},".":{"docs":{},"j":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}},"u":{"docs":{},"s":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}},"`":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}},"docs":{}}}}}}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.03076923076923077},"api.html":{"ref":"api.html","tf":0.01532033426183844}},"e":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"2":{"docs":{},")":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}},"docs":{}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}},":":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.011869436201780416}}}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}}}},"i":{"docs":{},"a":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}},"$":{"docs":{"installation.html":{"ref":"installation.html","tf":0.041666666666666664}}},"'":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"_":{"docs":{},"'":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}},"l":{"docs":{},"'":{"docs":{},"]":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}},"docs":{},"'":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{"api.html":{"ref":"api.html","tf":0.020891364902506964}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},";":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454}}}}}}}}}},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"'":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}}}}}},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}},":":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},")":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.018105849582172703}}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},".":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}}},"н":{"docs":{},"а":{"docs":{},"п":{"docs":{},"р":{"docs":{},"и":{"docs":{},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}},"*":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625},"vanilla.html":{"ref":"vanilla.html","tf":0.057971014492753624},"started.html":{"ref":"started.html","tf":0.05263157894736842},"api.html":{"ref":"api.html","tf":0.023676880222841225}}},"/":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"/":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.07246376811594203},"started.html":{"ref":"started.html","tf":0.05263157894736842},"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.026462395543175487}}}},"=":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"api.html":{"ref":"api.html","tf":0.016713091922005572}},">":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.004178272980501393}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.016713091922005572}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.017804154302670624}}}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.008902077151335312}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"s":{"2":{"0":{"1":{"5":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"l":{"docs":{},":":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}},"r":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"c":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.008902077151335312}}}}}}}},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"api.html":{"ref":"api.html","tf":0.005571030640668524}}}}}}},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"k":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"docs":{}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.018518518518518517}}}},"w":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"docs":{}}}}}}}}}}}}}}},"w":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}},"p":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.020833333333333332}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.005571030640668524}}}}},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"t":{"docs":{},"l":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.016713091922005572}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.005571030640668524}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"u":{"docs":{},"n":{"docs":{},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"(":{"0":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"docs":{}},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"api.html":{"ref":"api.html","tf":0.008902077151335312}}}}}},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}}},"u":{"docs":{},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}},"r":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.043209876543209874},"vanilla.html":{"ref":"vanilla.html","tf":3.3506743737957607},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.004451038575667656},"./":{"ref":"./","tf":0.03571428571428571}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"w":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}}}}}}}},"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},",":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":3.339113680154142},"./":{"ref":"./","tf":0.03571428571428571}}}}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077}}}}},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"h":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.026041666666666668}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}},"{":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"started.html":{"ref":"started.html","tf":0.021929824561403508},"api.html":{"ref":"api.html","tf":0.06685236768802229}},"}":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}},"}":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.013157894736842105},"api.html":{"ref":"api.html","tf":0.0403899721448468}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.018105849582172703},"started.html":{"ref":"started.html","tf":0.0043859649122807015}},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.013157894736842105}}},".":{"docs":{},"$":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"'":{"docs":{},")":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}},";":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}}}}}}}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.011142061281337047}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"./":{"ref":"./","tf":0.030303030303030304}}}}}}}}}}}},"ч":{"docs":{},"а":{"docs":{},"с":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"е":{"docs":{},"р":{"docs":{},"е":{"docs":{},"з":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}},"`":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}},"и":{"docs":{},"с":{"docs":{},"л":{"docs":{},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"м":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}},"\"":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"\"":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"+":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}},"[":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"б":{"docs":{},"р":{"docs":{},"а":{"docs":{},"у":{"docs":{},"з":{"docs":{},"е":{"docs":{},"р":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}}}}}}}}}},"е":{"docs":{},"з":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":3.338164251207729},"./":{"ref":"./","tf":0.030303030303030304}}}},"у":{"docs":{},"д":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"options.html":{"ref":"options.html","tf":0.03296703296703297},"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"м":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},"у":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"ы":{"docs":{},"т":{"docs":{},"ь":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}},"д":{"docs":{},"л":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.06060606060606061},"options.html":{"ref":"options.html","tf":0.03296703296703297}}}},"о":{"docs":{},"к":{"docs":{},"у":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}},"и":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}},"б":{"docs":{},"а":{"docs":{},"в":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"л":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"ы":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"е":{"docs":{},"л":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"е":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}},"р":{"docs":{},"у":{"docs":{},"г":{"docs":{},"и":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.03296703296703297},"api.html":{"ref":"api.html","tf":0.005571030640668524},"./":{"ref":"./","tf":0.030303030303030304}},"с":{"docs":{},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"з":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"started.html":{"ref":"started.html","tf":5.004385964912281}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":3.338164251207729},"./":{"ref":"./","tf":0.030303030303030304}}}}},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.020833333333333332},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}},"у":{"docs":{},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"е":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},"м":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}}}}}}}}}}},"з":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"api.html":{"ref":"api.html","tf":0.005571030640668524}},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"е":{"docs":{},"н":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}}},"б":{"docs":{},"е":{"docs":{},"ж":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"в":{"docs":{},"л":{"docs":{},"е":{"docs":{},"к":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"ч":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"м":{"docs":{},"п":{"docs":{},"о":{"docs":{},"р":{"docs":{},"т":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}},"е":{"docs":{},"е":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"д":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},"и":{"docs":{},"ф":{"docs":{},"и":{"docs":{},"к":{"docs":{},"а":{"docs":{},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}},"л":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"н":{"docs":{},"д":{"docs":{},"е":{"docs":{},"к":{"docs":{},"с":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"и":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"а":{"docs":{},"л":{"docs":{},"и":{"docs":{},"з":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}}}},"м":{"docs":{},"е":{"docs":{},"т":{"docs":{},"о":{"docs":{},"д":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.023676880222841225}},"ы":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"о":{"docs":{},"д":{"docs":{},"у":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},"й":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"у":{"docs":{},"ю":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"ж":{"docs":{},"е":{"docs":{},"т":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}}},"ы":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}},"и":{"docs":{},"л":{"docs":{},"л":{"docs":{},"и":{"docs":{},"с":{"docs":{},"е":{"docs":{},"к":{"docs":{},"у":{"docs":{},"н":{"docs":{},"д":{"docs":{},"а":{"docs":{},"х":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}}},"а":{"docs":{},"с":{"docs":{},"с":{"docs":{},"и":{"docs":{},"в":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"н":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625}},"с":{"docs":{},"т":{"docs":{},"р":{"docs":{},"о":{"docs":{},"й":{"docs":{},"к":{"docs":{},"и":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"options.html":{"ref":"options.html","tf":10.010989010989011},"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"а":{"docs":{},"м":{"docs":{},"и":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"х":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}},"ч":{"docs":{},"а":{"docs":{},"л":{"docs":{},"о":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"started.html":{"ref":"started.html","tf":5.004385964912281},"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}},"и":{"docs":{},"н":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"д":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"п":{"docs":{},"р":{"docs":{},"и":{"docs":{},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"п":{"docs":{},"о":{"docs":{},"с":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}}}},"г":{"docs":{},"о":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"м":{"docs":{},"е":{"docs":{},"д":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"у":{"docs":{},"д":{"docs":{},"а":{"docs":{},"ч":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}}}}}}}},"у":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}},"о":{"docs":{},"б":{"docs":{},"е":{"docs":{},"р":{"docs":{},"т":{"docs":{},"к":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}}}}}},"ъ":{"docs":{},"е":{"docs":{},"к":{"docs":{},"т":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"р":{"docs":{},"а":{"docs":{},"б":{"docs":{},"о":{"docs":{},"т":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"к":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}},"п":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"а":{"docs":{},"н":{"docs":{},"а":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"с":{"docs":{},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"т":{"docs":{},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}},"ч":{"docs":{},"и":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"щ":{"docs":{},"е":{"docs":{},"н":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"р":{"docs":{},"а":{"docs":{},"б":{"docs":{},"о":{"docs":{},"т":{"docs":{},"ы":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}}}}}},"у":{"docs":{},"к":{"docs":{},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"д":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}}}},"с":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}},"в":{"docs":{},"о":{"docs":{},"й":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"а":{"docs":{},"м":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{},"я":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"т":{"docs":{},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"й":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"у":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}},",":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}}}},"г":{"docs":{},"н":{"docs":{},"а":{"docs":{},"т":{"docs":{},"у":{"docs":{},"р":{"docs":{},"у":{"docs":{},":":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}},"к":{"docs":{},"р":{"docs":{},"и":{"docs":{},"п":{"docs":{},"т":{"docs":{},"о":{"docs":{},"в":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"б":{"docs":{},"и":{"docs":{},"р":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"г":{"docs":{},"л":{"docs":{},"а":{"docs":{},"с":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"з":{"docs":{},"д":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}}}},"о":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},")":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}}}},"х":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}},"с":{"docs":{},"ы":{"docs":{},"л":{"docs":{},"к":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"т":{"docs":{},"р":{"docs":{},"о":{"docs":{},"к":{"docs":{},"а":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"м":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}},"ы":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"у":{"docs":{},"к":{"docs":{},"т":{"docs":{},"у":{"docs":{},"р":{"docs":{},"а":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"л":{"docs":{},"у":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.011142061281337047}}}}}}},"у":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}},"у":{"docs":{},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"к":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":10.005208333333334}}},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"в":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"ы":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"м":{"docs":{},"о":{"docs":{},"л":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"ю":{"docs":{"options.html":{"ref":"options.html","tf":0.04395604395604396}}}}}}}}}},"д":{"docs":{},"а":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}},"я":{"docs":{},"е":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"ж":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"з":{"docs":{},"н":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"х":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"л":{"docs":{},"и":{"docs":{},"щ":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}},"м":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.02197802197802198},"api.html":{"ref":"api.html","tf":0.005571030640668524}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"api.html":{"ref":"api.html","tf":0.004178272980501393}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}},"о":{"docs":{},"т":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"а":{"docs":{},"д":{"docs":{},"р":{"docs":{},"е":{"docs":{},"с":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"р":{"docs":{},"г":{"docs":{},"у":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"о":{"docs":{},"м":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"ы":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}}}}}}}},"с":{"docs":{},"и":{"docs":{},"н":{"docs":{},"х":{"docs":{},"р":{"docs":{},"о":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}},"в":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.028985507246376812},"started.html":{"ref":"started.html","tf":0.03508771929824561},"options.html":{"ref":"options.html","tf":0.04395604395604396},"api.html":{"ref":"api.html","tf":0.019498607242339833}},"а":{"docs":{},"м":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"е":{"docs":{},"р":{"docs":{},"с":{"docs":{},"и":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"/":{"docs":{},"т":{"docs":{},"е":{"docs":{},"г":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"н":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"ч":{"docs":{},"н":{"docs":{},"о":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"щ":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"с":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"г":{"docs":{},"д":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"ы":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625},"vanilla.html":{"ref":"vanilla.html","tf":0.014492753623188406},"started.html":{"ref":"started.html","tf":0.013157894736842105}},"ш":{"docs":{},"е":{"docs":{},"у":{"docs":{},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"а":{"docs":{},"я":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}},"з":{"docs":{},"о":{"docs":{},"в":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"а":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}},"б":{"docs":{},"р":{"docs":{},"о":{"docs":{},"с":{"docs":{},"и":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}}}}}}}},"в":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"н":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"ы":{"docs":{},"м":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}},"р":{"docs":{},"е":{"docs":{},"м":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.02197802197802198},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"о":{"docs":{},"з":{"docs":{},"в":{"docs":{},"р":{"docs":{},"а":{"docs":{},"т":{"docs":{},"о":{"docs":{},"м":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"щ":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.005571030640668524}}}}}}}}}}}},"г":{"docs":{},"л":{"docs":{},"о":{"docs":{},"б":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}},"е":{"docs":{},"с":{"docs":{},"л":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}},"г":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.004178272980501393}}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"з":{"docs":{},"а":{"docs":{},"г":{"docs":{},"р":{"docs":{},"у":{"docs":{},"з":{"docs":{},"к":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"о":{"docs":{},"д":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"п":{"docs":{},"у":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"л":{"docs":{},"о":{"docs":{},"с":{"docs":{},"ь":{"docs":{},"!":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"а":{"docs":{},"н":{"docs":{},"ы":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"ь":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"е":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}},"р":{"docs":{},"о":{"docs":{},"с":{"docs":{},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"н":{"docs":{},"а":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.011142061281337047}}},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"д":{"docs":{},"е":{"docs":{},"с":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}},"к":{"docs":{},"л":{"docs":{},"о":{"docs":{},"н":{"docs":{},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}},"а":{"docs":{},"с":{"docs":{},"с":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}},"ю":{"docs":{},"ч":{"docs":{"api.html":{"ref":"api.html","tf":0.004178272980501393}},"а":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"е":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"о":{"docs":{},"м":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"у":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}},"о":{"docs":{},"н":{"docs":{},"к":{"docs":{},"р":{"docs":{},"е":{"docs":{},"т":{"docs":{},"н":{"docs":{},"у":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"ф":{"docs":{},"и":{"docs":{},"г":{"docs":{},"у":{"docs":{},"р":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"ю":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}},"я":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}},"д":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},"л":{"docs":{},"л":{"docs":{},"и":{"docs":{},"з":{"docs":{},"и":{"docs":{},"й":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}},"и":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"а":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"о":{"docs":{},"е":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"ы":{"docs":{},"х":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"а":{"docs":{},"к":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}},"п":{"docs":{},"а":{"docs":{},"к":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}},"а":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"е":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"в":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}},"н":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"н":{"docs":{},"а":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"ы":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"о":{"docs":{},"п":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"л":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}}},"л":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}}}},"г":{"docs":{},"и":{"docs":{},"н":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"options.html":{"ref":"options.html","tf":0.01098901098901099}},"а":{"docs":{"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.04395604395604396},"api.html":{"ref":"api.html","tf":0.004178272980501393}},"д":{"docs":{},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},",":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"д":{"docs":{},"е":{"docs":{},"р":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}},"с":{"docs":{},"л":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"api.html":{"ref":"api.html","tf":0.001392757660167131}},"д":{"docs":{},"н":{"docs":{},"ю":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}}}},"к":{"docs":{},"а":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"з":{"docs":{},"в":{"docs":{},"о":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.011142061281337047}}}}}}}}},"л":{"docs":{},"у":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}},"ф":{"docs":{},"и":{"docs":{},"к":{"docs":{},"с":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"а":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{},"а":{"docs":{},"х":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.016713091922005572}}}}}},"л":{"docs":{},"о":{"docs":{},"ж":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"н":{"docs":{},"и":{"docs":{},"м":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"я":{"docs":{},"м":{"docs":{},"а":{"docs":{},"я":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"т":{"docs":{},"и":{"docs":{},"в":{"docs":{},"н":{"docs":{},"о":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}}},"и":{"docs":{},"ш":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"т":{"docs":{},"а":{"docs":{},"к":{"docs":{},"ж":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"у":{"docs":{},"ю":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.002785515320334262}},"л":{"docs":{},"ь":{"docs":{},"к":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"е":{"docs":{},"м":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}},"ф":{"docs":{},"л":{"docs":{},"а":{"docs":{},"г":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}},"о":{"docs":{},"р":{"docs":{},"м":{"docs":{},"а":{"docs":{},"т":{"docs":{},"а":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"у":{"docs":{},"н":{"docs":{},"к":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"э":{"docs":{},"т":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"к":{"docs":{},"з":{"docs":{},"е":{"docs":{},"м":{"docs":{},"п":{"docs":{},"л":{"docs":{},"я":{"docs":{},"р":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}}}}}}},"л":{"docs":{},"е":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"я":{"docs":{},"в":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"л":{"docs":{},"ю":{"docs":{},"б":{"docs":{},"о":{"docs":{},"й":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"ж":{"docs":{},"и":{"docs":{},"з":{"docs":{},"н":{"docs":{},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.02197802197802198}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"length":3203},"corpusTokens":["\"fallback\"","\"value\"","$","'#app',","'app_',","'fallback')","'local',","'lol']","'value'","'value')","'value');","'vue';","'vue2","()","(e.g.","(key,","(key:","(localstorage,","(например","*","+","/","//","0","1000","1000,","2","24","60","=","=>","['test',","abov","accept","accord","ad","add","allow","alreadi","alway","any)","any.","anymor","api","app","app_","app_.","argument","arguments:","array","async","avoid","await","base","befor","begin","boolean","browser","build","build.","call","case","cd","cdn","certain","chang","class","clear","cleared.","cli),","clone","closur","code","collisions.","config","configur","configuration,","connecting,","console.log(data)","console.log(fallback)","console.log(haslol)","console.log(hastest)","console.log(key)","console.log(keys)","console.log(storage.get('key'));","console.log(this.$storage.length)","console.log(this.$storage.prefix)","const","creat","data","default","delet","deleted.","describ","dev","direct","directli","disabl","document","documentation:","don't","download","driver","driver:","el:","entir","entri","es2015","example:","except","execut","exist","explicitli","export","failure,","fallback","fals","find","flag","forc","forever.","format.","function","get","git","github","given","global","guide.","handler","haslol","hastest","here","hour","html","http","https://github.com/yarkovaleksei/vue2","https://unpkg.com/vue2","identifi","ignor","immedi","import","includ","index","index.","initialization.","instal","instanti","introduct","it.","item.","javascript","kept","key","key.","key:","keys.","latest","length","lifetim","lifetime.","link","links.","local,","local.","memori","memorystorag","method","milliseconds.","modul","modular","name","need","new","node_modules/vue2","now","npm","npm.","null","number","numer","object","option","optional:","otherwis","otherwise,","out","output","overrid","packag","pass","plan","plug","plugin","point","prefix","prefix:","promis","properti","provid","pull","record","releas","rememb","remov","replac","replacer:","repositori","repository.","requir","respectively).","retriev","return","sampl","save","script","second","session","sessionstorag","set","setopt","signature:","specif","specifi","start","started!","storag","storage';","storage,","storage.","storage.git","storage.j","storage.set('key',","storage.setoptions({","storage/dist/vue2","storage@6.0.0/dist/vue2","storageerror","store","store.","string","string,","structur","stuff","such","support","system","system,","tags.","this.$storage.clear()","this.$storage.get('test')","this.$storage.get('test',","this.$storage.get('unknown',","this.$storage.has('lol')","this.$storage.has('test')","this.$storage.key(0)","this.$storage.keys()","this.$storage.pull('test')","this.$storage.remember('test',","this.$storage.remove('test')","this.$storage.set('lol',","this.$storage.set('test',","this.$storage.setoptions({","throw","time.","true","true,","ttl","ttl:","type","undefined.","unpkg.com","url","us","used.","valu","value)","value.","value.repeat(2)","value:","valuevalu","version/tag","via","vue","vue({","vue,","vue.j","vue.us","vue.use():","vue.use(plugin);","vue.use(plugin,","vue.use(vue2storage).","vue.use(vue2storage)`","vue2","vue2storag","vue2storage({","want","whether","whose","window.vue({","window.vue.use(window.vue2storageplugin)","window.vue.use(window.vue2storageplugin,","window.vue2storage({","without","write","written","yarn","yourself","{","{}","}","})","}).$mount('#app')","}).$mount('#app');","});","},","адрес,","аргумент","аргументом","аргументы:","асинхронные","без","браузерным","будем","будет","будут","быть","в","вам","вернет","версию","версию.","версию/тег","вечно.","вещи","возвратом.","возвращаемое","возвращает","время","все","всегда","вторым","вы","выбросит","выведет","вызвана","вызовите","выполняется","вышеуказанная","глобально.","данные","делаем","делать","для","добавить","добавлено","документации:","документация","должны","другие","его","ее","если","жизни","жизни.","загрузка","заодно","записаны","записать","записей","записи","запись","запросы","запустилось!","здесь","значение","значение.","значение:","значением","значения","значения,","и","идентификатор","из","избежания","извлекаем","извлечь","изменена","или","имеет","импортируйте","индексу","инициализации.","исключение","использование","использовании","использования","использовать","используемого","используете","используйте","используя","как","класс","класса","клонировать","ключ","ключ.","ключа,","ключа.","ключей","ключом.","ключу.","кода","количество","коллизий.","конкретную","конфигурации","конфигурацию","конфигурация","которая","которое","которых","ли","любой","массив","метод","методы","миллисекундах.","модульной","модульную","может","можете","можно","момент.","мы","на","надо","например","настройками","настройками.","настройках.","настройки","начало","начинается","не","него","немедленно","непосредственно","неудачи","нужно","обертка","обработчик","объект","описана","описаны","определенного","опции","основе","отключает","очистить","очищено","пакет","пакета.","перед","передав","передайте","передан","переданная","переданный","передать","переопределить","пишется","плагин","плагина","планируете","по","поддерживаются","подключении","подключении,","подключите","позволяет","пока","получить","после","последнюю","предоставляет","префикс","префикса,","при","приложение","пример:","примерах","принимает","просто","противном","прямая","работы","руководстве.","с","самостоятельно","свойства","сигнатуру:","системой","систему","систему,","скриптов","случае","со","собирать","согласно","создании","соответственно).","сохраняется","ссылка","ссылки","строка,","строковой","строковому","строковый","структура","существует","существует,","также","такую","тем","то","только","удалены","удалить","удаляем","уже","узнать","указав","указанного","указанным","указать","указывает","умолчанию","установить","установка","установки","флаг","формата.","функция","хотите","хранилища","хранилища,","хранилища.","хранилище","хранилище,","хранилище.","хранилищем","храниться","часа","через","через`","черезvue.use():","числовому","экземпляра","элемент.","это","явно"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"vue2-storage документация\n\nОбертка для работы с браузерным хранилищем для JavaScript и Vue.js\n\n\nУстановка\nИспользование без Vue\nНачало использования\nНастройки\nAPI\nМетоды\nsetOptions\nget\npull\nset\nremember\nremove\nclear\nhas\nkey\nkeys\n\n\nСвойства\nlength\nprefix\n\n\n\n\n\n"},"installation.html":{"url":"installation.html","title":"Установка","keywords":"","body":"Установка\nПрямая загрузка / CDN\nhttps://unpkg.com/vue2-storage/dist/vue2-storage\nunpkg.com предоставляет ссылки на CDN на основе NPM. Вышеуказанная ссылка всегда указывает на последнюю версию NPM пакета. Вы также можете использовать конкретную версию/тег через URL-адрес, например https://unpkg.com/vue2-storage@6.0.0/dist/vue2-storage.js\nПодключите vue2-storage после Vue и используйте согласно документации:\n\n\n\n window.Vue.use(window.Vue2StoragePlugin)\n\n\nNPM\n$ npm install vue2-storage\n\nЕсли планируете использовать пакет без Vue, то надо добавить флаг --no-optional:\n$ npm install --no-optional vue2-storage\n\nYarn\n$ yarn add vue2-storage\n\nЕсли планируете использовать пакет без Vue, то надо добавить флаг --ignore-optional:\n$ yarn add --ignore-optional vue2-storage\n\nПри использовании с модульной системой вы должны явно установить vue2-storage черезVue.use():\nimport Vue from 'vue';\nimport { Plugin } from 'vue2-storage';\n\nVue.use(Plugin);\n// Можно заодно передать опции\nVue.use(Plugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n});\n\nВам не нужно делать это при подключении скриптов глобально.\nDev Build\nВам нужно будет клонировать непосредственно из GitHub и самостоятельно собирать vue2-storage, если\nвы хотите использовать последнюю dev версию.\n$ git clone https://github.com/yarkovaleksei/vue2-storage.git node_modules/vue2-storage\n$ cd node_modules/vue2-storage\n$ yarn\n$ yarn build\n\n"},"vanilla.html":{"url":"vanilla.html","title":"Использование без Vue","keywords":"","body":"Использование без Vue\n\nМы будем использовать ES2015 в примерах кода в руководстве.\n\nHTML\n\n\n\n // Вы можете указать конфигурацию хранилища при создании экземпляра класса\n const storage = window.Vue2Storage({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n });\n\n storage.set('key', 'value');\n console.log(storage.get('key')); // value\n\n // Конфигурация хранилища может быть изменена в любой момент.\n // Просто вызовите метод setOptions и передайте в него объект с настройками.\n storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value.repeat(2)\n });\n\n storage.set('key', 'value');\n console.log(storage.get('key')); // valuevalue\n\n\nJavaScript\n// Если вы используете модульную систему, то импортируйте класс Vue2Storage\nimport Vue from 'vue';\nimport Vue2Storage from 'vue2-storage';\n\n// Вы можете указать конфигурацию хранилища при создании экземпляра класса\nconst storage = Vue2Storage({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n});\n\nstorage.set('key', 'value');\nconsole.log(storage.get('key')); // value\n\n// Конфигурация хранилища может быть изменена в любой момент.\n// Просто вызовите метод setOptions и передайте в него объект с настройками.\nstorage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value.repeat(2)\n});\n\nstorage.set('key', 'value');\nconsole.log(storage.get('key')); // valuevalue\n\n"},"started.html":{"url":"started.html","title":"Начало использования","keywords":"","body":"Начало использования\n\nМы будем использовать ES2015 в примерах кода в руководстве.\n\nHTML\n\n\n\n\n\n\n // Вы можете указать конфигурацию плагина при подключении, передав в Vue.use вторым аргументом объект с настройками\n window.Vue.use(window.Vue2StoragePlugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n })\n\n new window.Vue({\n el: '#app',\n created () {\n // Конфигурация плагина может быть изменена в любой момент.\n // Просто вызовите метод setOptions и передайте в него объект с настройками.\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n });\n }\n }).$mount('#app')\n\n\nJavaScript\n\n\n// Если вы используете модульную систему (например via vue-cli), то импортируйте Vue и плагин Vue2Storage и подключите плагин через` Vue.use(Vue2Storage)`\nimport Vue from 'vue';\nimport { Plugin } from 'vue2-storage';\n\n// Вы можете указать конфигурацию плагина при подключении, передав в Vue.use вторым аргументом объект с настройками\nVue.use(Plugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n});\n\n// Приложение запустилось!\nnew Vue({\n el: '#app',\n created () {\n // Конфигурация плагина может быть изменена в любой момент.\n // Просто вызовите метод setOptions и передайте в него объект с настройками.\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n });\n }\n}).$mount('#app');\n\n"},"options.html":{"url":"options.html","title":"Настройки","keywords":"","body":"Настройки\nДля установки конфигурации плагин принимает объект определенного формата.\nprefix - строка, которая будет добавлено в начало ключа, для избежания коллизий. По-умолчанию app_.\ndriver - идентификатор используемого хранилища. Пока поддерживаются значения local, session и memory (localStorage, sessionStorage и memoryStorage соответственно). По-умолчанию local.\nttl - время жизни записи в миллисекундах. По-умолчанию 0 // отключает время жизни и запись будет храниться вечно.\nreplacer - функция-обработчик для значения, которое пишется в хранилище. Будет вызвана перед тем как данные будут записаны в хранилище. Имеет такую сигнатуру: (key: string, value: any) => any. По-умолчанию undefined.\n"},"api.html":{"url":"api.html","title":"API","keywords":"","body":"Методы\nsetOptions\nМетод позволяет переопределить настройки плагина после инициализации.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nconfig\nСтруктура описана здесь\nЗначения описаны здесь\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n })\n }\n}\n\nget\nМетод позволяет получить значение из хранилища по строковому ключу.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nfallback\n*\n\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.get('test')\n const fallback = this.$storage.get('unknown', 'fallback') // Not in storage\n console.log(data) // { key: 'value' }\n console.log(fallback) // \"fallback\"\n }\n}\n\nВозвращаемое значение: Any\nВ случае неудачи метод выбросит исключение StorageError\npull\nМетод позволяет извлечь значение и удалить его из хранилища, используя строковый ключ.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nfallback\n*\n\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.pull('test')\n const fallback = this.$storage.get('test', 'fallback') // Извлекаем и удаляем из хранилища\n console.log(data) // { key: 'value' }\n console.log(fallback) // \"fallback\"\n }\n}\n\nВозвращаемое значение: Any\nset\nМетод позволяет записать значение в хранилище, указав строковой ключ и время жизни.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\ndata\n*\n\n+\n\n\n\noptions\nObject\n{}\n-\n{ ttl: number }\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.get('test')\n console.log(data) // { key: 'value' }\n }\n}\n\nВ случае неудачи метод выбросит исключение StorageError\nremember\nМетод позволяет получить элемент. Если переданный ключ уже существует, то метод немедленно вернет его значение.\nВ противном случае переданная функция выполняется и ее возвращаемое значение сохраняется в хранилище перед его возвратом.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nclosure\nPromise\n\n+\n\n\n\noptions\nObject\n{}\n-\n{ ttl: number }\n\n\n\nПример:\nexport default {\n async created () {\n const data = await this.$storage.remember('test', async () => {\n // Делаем HTTP-запросы или другие асинхронные вещи\n return 'value'\n })\n console.log(data) // выведет \"value\"\n }\n}\n\nВозвращаемое значение: Any\nВ случае неудачи метод выбросит исключение StorageError\nremove\nМетод позволяет удалить значение из хранилища по строковому ключу.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.remove('test')\n const data = this.$storage.get('test')\n console.log(data) // null\n }\n}\n\nВ случае неудачи метод выбросит исключение StorageError\nclear\nМетод позволяет очистить хранилище.\nЕсли передан аргумент force со значением true, то будет очищено все хранилище.\nВ противном случае будут удалены только значения, ключ которых начинается с префикса, указанного в настройках.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nforce\nBoolean\nfalse\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.clear()\n const data = this.$storage.get('test')\n console.log(data) // null\n }\n}\n\nВ случае неудачи метод выбросит исключение StorageError\nhas\nМетод позволяет узнать существует ли в хранилище запись с указанным ключом.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const hasTest = this.$storage.has('test')\n const hasLol = this.$storage.has('lol')\n console.log(hasTest) // true\n console.log(hasLol) // false\n }\n}\n\nВозвращаемое значение: Boolean\nkey\nМетод возвращает значение по числовому индексу ключа.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nindex\nNumber\n\n+\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', 'value')\n const key = this.$storage.key(0)\n console.log(key) // 'value'\n }\n}\n\nВозвращаемое значение: Any\nВ случае неудачи метод выбросит исключение StorageError\nkeys\nМетод возвращает массив ключей хранилища.\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.set('lol', { key: 'value' }, { ttl: 60 * 1000 })\n const keys = this.$storage.keys()\n console.log(keys) // ['test', 'lol']\n }\n}\n\nВозвращаемое значение: Array\n\nСвойства\nlength\nВозвращает количество записей в хранилище.\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' })\n this.$storage.set('lol', { key: 'value' })\n console.log(this.$storage.length) // 2\n }\n}\n\nВозвращаемое значение: Number\n\nprefix\nВозвращает префикс записей в хранилище.\nПример:\nexport default {\n created () {\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n })\n console.log(this.$storage.prefix) // app_\n }\n}\n\nВозвращаемое значение: String\n"}}} \ No newline at end of file +{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["api","clear","introduct","javascript","key","length","prefix","pull","rememb","remov","set","setopt","storag","vue","vue.j","vue2","без","браузерным","для","документация","и","использование","использования","методы","настройки","начало","обертка","работы","с","свойства","установка","хранилищем"],"installation.html":["$","'app_',","'local',","'vue';","'vue2","(key,","*","/","//","1000,","24","60","=>","add","build","cd","cdn","clone","dev","driver:","git","github","https://github.com/yarkovaleksei/vue2","https://unpkg.com/vue2","ignor","import","instal","node_modules/vue2","npm","npm.","option","optional:","plugin","prefix:","replacer:","storag","storage';","storage,","storage.git","storage.j","storage/dist/vue2","storage@6.0.3/dist/vue2","ttl:","unpkg.com","url","valu","value)","vue","vue,","vue.use(plugin);","vue.use(plugin,","vue2","window.vue.use(window.vue2storageplugin)","yarn","{","}","});","адрес,","без","будет","вам","версию","версию.","версию/тег","всегда","вы","вышеуказанная","глобально.","делать","добавить","документации:","должны","если","загрузка","заодно","и","из","использовании","использовать","используйте","клонировать","конкретную","модульной","можете","можно","на","надо","например","не","непосредственно","нужно","опции","основе","пакет","пакета.","передать","планируете","подключении","подключите","после","последнюю","предоставляет","при","прямая","с","самостоятельно","системой","скриптов","собирать","согласно","ссылка","ссылки","также","то","указывает","установить","установка","флаг","хотите","часа","через","черезvue.use():","это","явно"],"vanilla.html":["'app_',","'local',","'value');","'vue';","'vue2","(key,","*","//","1000,","24","60","=","=>","console.log(storage.get('key'));","const","driver:","es2015","html","import","javascript","prefix:","replacer:","setopt","storag","storage';","storage.set('key',","storage.setoptions({","ttl:","valu","value)","value.repeat(2)","valuevalu","vue","vue2storag","vue2storage({","window.vue2storage({","});","без","будем","быть","в","вы","вызовите","если","и","изменена","импортируйте","использование","использовать","используете","класс","класса","кода","конфигурацию","конфигурация","любой","метод","модульную","может","можете","момент.","мы","настройками.","него","объект","передайте","при","примерах","просто","руководстве.","с","систему,","создании","то","указать","хранилища","часа","экземпляра"],"started.html":["'#app',","'app_',","'local',","'vue';","'vue2","()","(key,","(например","*","//","1000,","24","60","=>","cli),","creat","driver:","el:","es2015","html","import","javascript","new","plugin","prefix:","replacer:","setopt","storage';","this.$storage.setoptions({","ttl:","valu","value)","via","vue","vue({","vue.us","vue.use(plugin,","vue.use(vue2storage)`","vue2storag","window.vue({","window.vue.use(window.vue2storageplugin,","{","}","})","}).$mount('#app')","}).$mount('#app');","});","аргументом","будем","быть","в","вторым","вы","вызовите","если","запустилось!","и","изменена","импортируйте","использования","использовать","используете","кода","конфигурацию","конфигурация","любой","метод","модульную","может","можете","момент.","мы","настройками","настройками.","начало","него","объект","передав","передайте","плагин","плагина","подключении,","подключите","при","приложение","примерах","просто","руководстве.","с","систему","то","указать","часа","через`"],"options.html":["(key:","(localstorage,","//","0","=>","any)","any.","app_.","driver","local,","local.","memori","memorystorag","prefix","replac","session","sessionstorag","string,","ttl","undefined.","value:","будет","будут","в","вечно.","время","вызвана","данные","для","добавлено","жизни","записаны","записи","запись","значения","значения,","и","идентификатор","избежания","имеет","используемого","как","ключа,","коллизий.","конфигурации","которая","которое","миллисекундах.","настройки","начало","обработчик","объект","определенного","отключает","перед","пишется","плагин","по","поддерживаются","пока","принимает","сигнатуру:","соответственно).","строка,","такую","тем","умолчанию","установки","формата.","функция","хранилища.","хранилище.","храниться"],"api.html":["\"fallback\"","\"value\"","'app_',","'fallback')","'local',","'lol']","'value'","'value')","()","(key,","*","+","//","1000","1000,","2","24","60","=","=>","['test',","allow","api","app_","array","async","await","boolean","clear","closur","config","console.log(data)","console.log(fallback)","console.log(haslol)","console.log(hastest)","console.log(key)","console.log(keys)","console.log(this.$storage.length)","console.log(this.$storage.prefix)","const","creat","data","default","driver:","export","fallback","fals","forc","haslol","hastest","hour","http","index","javascript","key","key:","length","name","null","number","object","option","prefix","prefix:","promis","pull","rememb","remov","replacer:","requir","return","set","setopt","storag","storageerror","string","this.$storage.clear()","this.$storage.get('test')","this.$storage.get('test',","this.$storage.get('unknown',","this.$storage.has('lol')","this.$storage.has('test')","this.$storage.key(0)","this.$storage.keys()","this.$storage.pull('test')","this.$storage.remember('test',","this.$storage.remove('test')","this.$storage.set('lol',","this.$storage.set('test',","this.$storage.setoptions({","true","true,","ttl:","type","typescript","valu","value)","{","{}","}","})","},","аргумент","аргументы:","асинхронные","будет","будут","в","вернет","вещи","возвратом.","возвращаемое","возвращает","время","все","выбросит","выведет","выполняется","данных","делаем","другие","его","ее","если","жизни.","записать","записей","запись","запросы","здесь","значение","значение.","значение:","значением","значения","значения,","и","из","извлекаем","извлечь","или","индексу","инициализации.","исключение","используя","ключ","ключ.","ключа.","ключей","ключом.","ключу.","количество","которых","ли","массив","метод","методы","можно","настройках.","настройки","начинается","немедленно","неудачи","ожидаемых","описана","описаны","очистить","очищено","перед","передан","переданная","переданный","переопределить","плагина","по","позволяет","получить","после","префикс","префикса,","пример:","противном","с","свойства","случае","со","сохраняется","строковой","строковому","строковый","структура","существует","существует,","тип","то","только","удалены","удалить","удаляем","уже","узнать","указав","указанного","указанным","указать","функция","хранилища","хранилища,","хранилища.","хранилище","хранилище,","хранилище.","часа","числовому","элемент."]},"length":6},"tokenStore":{"root":{"0":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"1":{"0":{"0":{"0":{"docs":{"api.html":{"ref":"api.html","tf":0.010512483574244415}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}},"docs":{}},"docs":{}},"docs":{}},"2":{"4":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.03864734299516908},"started.html":{"ref":"started.html","tf":0.03508771929824561},"api.html":{"ref":"api.html","tf":0.005256241787122208}}},"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"6":{"0":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.03864734299516908},"started.html":{"ref":"started.html","tf":0.03508771929824561},"api.html":{"ref":"api.html","tf":0.01576872536136662}}},"docs":{}},"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":10}}},"p":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":0.005319148936170213}},"_":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"l":{"docs":{},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}},"n":{"docs":{},"y":{"docs":{},")":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},"s":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.012622720897615708}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"api.html":{"ref":"api.html","tf":0.005256241787122208}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.03571428571428571}}}}}}}},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001314060446780552}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.017341040462427744}}}}},"i":{"docs":{},")":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.015957446808510637},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}},"s":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.008415147265077139}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},"u":{"docs":{},"r":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.009198423127463863}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"s":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"api.html":{"ref":"api.html","tf":0.017082785808147174}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.017082785808147174}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"w":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}},"e":{"docs":{},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.06153846153846154},"api.html":{"ref":"api.html","tf":0.02890932982917214}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"l":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.010512483574244415}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":5.00531914893617},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}},"i":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"options.html":{"ref":"options.html","tf":0.015384615384615385}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497}}}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}}}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"t":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.001402524544179523}}},"e":{"docs":{},"m":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.06060606060606061},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.013140604467805518}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.005610098176718092}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.017082785808147174}}},"s":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"p":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"s":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"f":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077}},"e":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.023842917251051893}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.005319148936170213}},"a":{"docs":{},"r":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"options.html":{"ref":"options.html","tf":10.015384615384615},"api.html":{"ref":"api.html","tf":0.002628120893561104}},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.02127659574468085},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},"e":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}},"s":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}},"u":{"docs":{},"g":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425},"options.html":{"ref":"options.html","tf":0.015384615384615385}},"i":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"o":{"docs":{},"v":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.005610098176718092}}},"y":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"y":{"docs":{},")":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"api.html":{"ref":"api.html","tf":0.004207573632538569}}}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.001314060446780552}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":5.00531914893617}},"e":{"docs":{},"d":{"docs":{},"!":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.046875},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001314060446780552}},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.002805049088359046}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"j":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}}}}}}}}}}},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"docs":{}}}}}}}}}},"@":{"6":{"docs":{},".":{"0":{"docs":{},".":{"3":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"docs":{}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.00788436268068331}}}}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.009198423127463863}},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"i":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.005610098176718092}}}}}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}},"v":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},":":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}},"u":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.043209876543209874},"vanilla.html":{"ref":"vanilla.html","tf":3.3506743737957607},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.004207573632538569}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}},"r":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.036458333333333336}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.0043859649122807015}},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}}}}}}}},"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":3.3429951690821254},"started.html":{"ref":"started.html","tf":0.013157894736842105}},".":{"docs":{},"j":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}},"u":{"docs":{},"s":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}},"`":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}},"docs":{}}}}}}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.03076923076923077},"api.html":{"ref":"api.html","tf":0.01445466491458607}},"e":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"2":{"docs":{},")":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}},"docs":{}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}},":":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.011220196353436185}}}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}}}},"i":{"docs":{},"a":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":3.339113680154142}}}}}}},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}}}}}}}},"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},",":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077}}}}},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"h":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"$":{"docs":{"installation.html":{"ref":"installation.html","tf":0.041666666666666664}}},"'":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"_":{"docs":{},"'":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"l":{"docs":{},"'":{"docs":{},"]":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}},"docs":{},"'":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{"api.html":{"ref":"api.html","tf":0.02102496714848883}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},";":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454}}}}}}}}}},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"'":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}}}}}},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}},":":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},")":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.01971090670170828}}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},".":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}}},"н":{"docs":{},"а":{"docs":{},"п":{"docs":{},"р":{"docs":{},"и":{"docs":{},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}},"*":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625},"vanilla.html":{"ref":"vanilla.html","tf":0.057971014492753624},"started.html":{"ref":"started.html","tf":0.05263157894736842},"api.html":{"ref":"api.html","tf":0.022339027595269383}}},"/":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"/":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.07246376811594203},"started.html":{"ref":"started.html","tf":0.05263157894736842},"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.03153745072273324}}}},"=":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"api.html":{"ref":"api.html","tf":0.017082785808147174}},">":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.005256241787122208}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.017082785808147174}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.016830294530154277}}}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.008415147265077139}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"s":{"2":{"0":{"1":{"5":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"l":{"docs":{},":":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}},"r":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"c":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.008415147265077139}}}}}}}},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"api.html":{"ref":"api.html","tf":0.005256241787122208}}}}}}},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"k":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"docs":{}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.018518518518518517}}}},"w":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"docs":{}}}}}}}}}}}}}}},"w":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}},"p":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.020833333333333332}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.005256241787122208}}}}},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"t":{"docs":{},"l":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.01576872536136662}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.005256241787122208}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"u":{"docs":{},"n":{"docs":{},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"(":{"0":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"docs":{}},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"api.html":{"ref":"api.html","tf":0.008415147265077139}}}}}},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.026041666666666668}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}},"{":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"started.html":{"ref":"started.html","tf":0.021929824561403508},"api.html":{"ref":"api.html","tf":0.06701708278580815}},"}":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}},"}":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.013157894736842105},"api.html":{"ref":"api.html","tf":0.040735873850197106}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.018396846254927726},"started.html":{"ref":"started.html","tf":0.0043859649122807015}},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.013157894736842105}}},".":{"docs":{},"$":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"'":{"docs":{},")":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}},";":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}}}}}}}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.010512483574244415}}}},"ч":{"docs":{},"а":{"docs":{},"с":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"е":{"docs":{},"р":{"docs":{},"е":{"docs":{},"з":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}},"`":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}},"и":{"docs":{},"с":{"docs":{},"л":{"docs":{},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"м":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}},"\"":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"\"":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}},"+":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}}},"[":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"б":{"docs":{},"е":{"docs":{},"з":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":3.338164251207729}}}},"р":{"docs":{},"а":{"docs":{},"у":{"docs":{},"з":{"docs":{},"е":{"docs":{},"р":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}}}}}}}}}},"у":{"docs":{},"д":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"options.html":{"ref":"options.html","tf":0.03296703296703297},"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"м":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},"у":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"ы":{"docs":{},"т":{"docs":{},"ь":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}},"д":{"docs":{},"л":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.06060606060606061},"options.html":{"ref":"options.html","tf":0.03296703296703297}}}},"о":{"docs":{},"к":{"docs":{},"у":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}},"и":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}},"б":{"docs":{},"а":{"docs":{},"в":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"л":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"ы":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"е":{"docs":{},"л":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"е":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"х":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"р":{"docs":{},"у":{"docs":{},"г":{"docs":{},"и":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}},"и":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.03296703296703297},"api.html":{"ref":"api.html","tf":0.005256241787122208}},"с":{"docs":{},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"з":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"vanilla.html":{"ref":"vanilla.html","tf":3.338164251207729}}},"я":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"started.html":{"ref":"started.html","tf":5.004385964912281}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.020833333333333332},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}},"у":{"docs":{},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"е":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},"м":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.00788436268068331}}}}}}}}}}},"з":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"api.html":{"ref":"api.html","tf":0.005256241787122208}},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"е":{"docs":{},"н":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}}},"б":{"docs":{},"е":{"docs":{},"ж":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"в":{"docs":{},"л":{"docs":{},"е":{"docs":{},"к":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"ч":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"м":{"docs":{},"п":{"docs":{},"о":{"docs":{},"р":{"docs":{},"т":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}},"е":{"docs":{},"е":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"д":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},"и":{"docs":{},"ф":{"docs":{},"и":{"docs":{},"к":{"docs":{},"а":{"docs":{},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}},"л":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}},"н":{"docs":{},"д":{"docs":{},"е":{"docs":{},"к":{"docs":{},"с":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"и":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"а":{"docs":{},"л":{"docs":{},"и":{"docs":{},"з":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}}}}},"м":{"docs":{},"е":{"docs":{},"т":{"docs":{},"о":{"docs":{},"д":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.022339027595269383}},"ы":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"о":{"docs":{},"д":{"docs":{},"у":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},"й":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"у":{"docs":{},"ю":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"ж":{"docs":{},"е":{"docs":{},"т":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}}},"ы":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}},"и":{"docs":{},"л":{"docs":{},"л":{"docs":{},"и":{"docs":{},"с":{"docs":{},"е":{"docs":{},"к":{"docs":{},"у":{"docs":{},"н":{"docs":{},"д":{"docs":{},"а":{"docs":{},"х":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}}},"а":{"docs":{},"с":{"docs":{},"с":{"docs":{},"и":{"docs":{},"в":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"н":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625}},"с":{"docs":{},"т":{"docs":{},"р":{"docs":{},"о":{"docs":{},"й":{"docs":{},"к":{"docs":{},"и":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"options.html":{"ref":"options.html","tf":10.010989010989011},"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"а":{"docs":{},"м":{"docs":{},"и":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"х":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}},"ч":{"docs":{},"а":{"docs":{},"л":{"docs":{},"о":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"started.html":{"ref":"started.html","tf":5.004385964912281},"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}},"и":{"docs":{},"н":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"д":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"п":{"docs":{},"р":{"docs":{},"и":{"docs":{},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"п":{"docs":{},"о":{"docs":{},"с":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}}}},"г":{"docs":{},"о":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"м":{"docs":{},"е":{"docs":{},"д":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"у":{"docs":{},"д":{"docs":{},"а":{"docs":{},"ч":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.00788436268068331}}}}}}}},"у":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}},"о":{"docs":{},"б":{"docs":{},"е":{"docs":{},"р":{"docs":{},"т":{"docs":{},"к":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}}}}}},"ъ":{"docs":{},"е":{"docs":{},"к":{"docs":{},"т":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"р":{"docs":{},"а":{"docs":{},"б":{"docs":{},"о":{"docs":{},"т":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"к":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}},"п":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"а":{"docs":{},"н":{"docs":{},"а":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"с":{"docs":{},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"т":{"docs":{},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}},"ж":{"docs":{},"и":{"docs":{},"д":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{},"ы":{"docs":{},"х":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"ч":{"docs":{},"и":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"щ":{"docs":{},"е":{"docs":{},"н":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"р":{"docs":{},"а":{"docs":{},"б":{"docs":{},"о":{"docs":{},"т":{"docs":{},"ы":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}}}}}},"у":{"docs":{},"к":{"docs":{},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"д":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}}}},"с":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}},"в":{"docs":{},"о":{"docs":{},"й":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"а":{"docs":{},"м":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{},"я":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"т":{"docs":{},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"й":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"у":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}},",":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}}}},"г":{"docs":{},"н":{"docs":{},"а":{"docs":{},"т":{"docs":{},"у":{"docs":{},"р":{"docs":{},"у":{"docs":{},":":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}},"к":{"docs":{},"р":{"docs":{},"и":{"docs":{},"п":{"docs":{},"т":{"docs":{},"о":{"docs":{},"в":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},"б":{"docs":{},"и":{"docs":{},"р":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"г":{"docs":{},"л":{"docs":{},"а":{"docs":{},"с":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"з":{"docs":{},"д":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}}}},"о":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},")":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}}}},"х":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}},"с":{"docs":{},"ы":{"docs":{},"л":{"docs":{},"к":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"т":{"docs":{},"р":{"docs":{},"о":{"docs":{},"к":{"docs":{},"а":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"м":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}},"ы":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"у":{"docs":{},"к":{"docs":{},"т":{"docs":{},"у":{"docs":{},"р":{"docs":{},"а":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"л":{"docs":{},"у":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.010512483574244415}}}}}}},"у":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}},"у":{"docs":{},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"к":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":10.005208333333334}}},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"в":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"ы":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"м":{"docs":{},"о":{"docs":{},"л":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"ю":{"docs":{"options.html":{"ref":"options.html","tf":0.04395604395604396}}}}}}}}}},"д":{"docs":{},"а":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}},"я":{"docs":{},"е":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"ж":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"з":{"docs":{},"н":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"х":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"л":{"docs":{},"и":{"docs":{},"щ":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}},"м":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.02197802197802198},"api.html":{"ref":"api.html","tf":0.005256241787122208}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"api.html":{"ref":"api.html","tf":0.003942181340341655}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}},"о":{"docs":{},"т":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"а":{"docs":{},"д":{"docs":{},"р":{"docs":{},"е":{"docs":{},"с":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"р":{"docs":{},"г":{"docs":{},"у":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},"о":{"docs":{},"м":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"ы":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}}}}}}}}}}},"с":{"docs":{},"и":{"docs":{},"н":{"docs":{},"х":{"docs":{},"р":{"docs":{},"о":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}}}}}},"в":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.028985507246376812},"started.html":{"ref":"started.html","tf":0.03508771929824561},"options.html":{"ref":"options.html","tf":0.04395604395604396},"api.html":{"ref":"api.html","tf":0.018396846254927726}},"а":{"docs":{},"м":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"е":{"docs":{},"р":{"docs":{},"с":{"docs":{},"и":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"/":{"docs":{},"т":{"docs":{},"е":{"docs":{},"г":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"н":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"ч":{"docs":{},"н":{"docs":{},"о":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"щ":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}},"с":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},"г":{"docs":{},"д":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"ы":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625},"vanilla.html":{"ref":"vanilla.html","tf":0.014492753623188406},"started.html":{"ref":"started.html","tf":0.013157894736842105}},"ш":{"docs":{},"е":{"docs":{},"у":{"docs":{},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"а":{"docs":{},"я":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}},"з":{"docs":{},"о":{"docs":{},"в":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"а":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}},"б":{"docs":{},"р":{"docs":{},"о":{"docs":{},"с":{"docs":{},"и":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.00788436268068331}}}}}}}},"в":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"н":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"ы":{"docs":{},"м":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}},"р":{"docs":{},"е":{"docs":{},"м":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.02197802197802198},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"о":{"docs":{},"з":{"docs":{},"в":{"docs":{},"р":{"docs":{},"а":{"docs":{},"т":{"docs":{},"о":{"docs":{},"м":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"щ":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}}}}},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.005256241787122208}}}}}}}}}}}},"г":{"docs":{},"л":{"docs":{},"о":{"docs":{},"б":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}},"е":{"docs":{},"с":{"docs":{},"л":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}},"г":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.003942181340341655}}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"з":{"docs":{},"а":{"docs":{},"г":{"docs":{},"р":{"docs":{},"у":{"docs":{},"з":{"docs":{},"к":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"о":{"docs":{},"д":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"п":{"docs":{},"у":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"л":{"docs":{},"о":{"docs":{},"с":{"docs":{},"ь":{"docs":{},"!":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"а":{"docs":{},"н":{"docs":{},"ы":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"ь":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"е":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}},"р":{"docs":{},"о":{"docs":{},"с":{"docs":{},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}},"н":{"docs":{},"а":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.00788436268068331}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.010512483574244415}}},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"д":{"docs":{},"е":{"docs":{},"с":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"к":{"docs":{},"л":{"docs":{},"о":{"docs":{},"н":{"docs":{},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}},"а":{"docs":{},"с":{"docs":{},"с":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}},"ю":{"docs":{},"ч":{"docs":{"api.html":{"ref":"api.html","tf":0.003942181340341655}},"а":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"е":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"о":{"docs":{},"м":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"у":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"о":{"docs":{},"н":{"docs":{},"к":{"docs":{},"р":{"docs":{},"е":{"docs":{},"т":{"docs":{},"н":{"docs":{},"у":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"ф":{"docs":{},"и":{"docs":{},"г":{"docs":{},"у":{"docs":{},"р":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"ю":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}},"я":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}},"д":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},"л":{"docs":{},"л":{"docs":{},"и":{"docs":{},"з":{"docs":{},"и":{"docs":{},"й":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}},"и":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"а":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"о":{"docs":{},"е":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"ы":{"docs":{},"х":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"а":{"docs":{},"к":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}},"п":{"docs":{},"а":{"docs":{},"к":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}},"а":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"е":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"в":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}},"н":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},"н":{"docs":{},"а":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"ы":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"о":{"docs":{},"п":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"л":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}}}},"л":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}}}},"г":{"docs":{},"и":{"docs":{},"н":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"options.html":{"ref":"options.html","tf":0.01098901098901099}},"а":{"docs":{"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.04395604395604396},"api.html":{"ref":"api.html","tf":0.003942181340341655}},"д":{"docs":{},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},",":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"д":{"docs":{},"е":{"docs":{},"р":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}},"с":{"docs":{},"л":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"api.html":{"ref":"api.html","tf":0.001314060446780552}},"д":{"docs":{},"н":{"docs":{},"ю":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}}}},"к":{"docs":{},"а":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"з":{"docs":{},"в":{"docs":{},"о":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.010512483574244415}}}}}}}}},"л":{"docs":{},"у":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}},"ф":{"docs":{},"и":{"docs":{},"к":{"docs":{},"с":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},"а":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{},"а":{"docs":{},"х":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.01576872536136662}}}}}},"л":{"docs":{},"о":{"docs":{},"ж":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"н":{"docs":{},"и":{"docs":{},"м":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"я":{"docs":{},"м":{"docs":{},"а":{"docs":{},"я":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"т":{"docs":{},"и":{"docs":{},"в":{"docs":{},"н":{"docs":{},"о":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}}},"и":{"docs":{},"ш":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"т":{"docs":{},"а":{"docs":{},"к":{"docs":{},"ж":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"у":{"docs":{},"ю":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.002628120893561104}},"л":{"docs":{},"ь":{"docs":{},"к":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"е":{"docs":{},"м":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"и":{"docs":{},"п":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"ф":{"docs":{},"л":{"docs":{},"а":{"docs":{},"г":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}},"о":{"docs":{},"р":{"docs":{},"м":{"docs":{},"а":{"docs":{},"т":{"docs":{},"а":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"у":{"docs":{},"н":{"docs":{},"к":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"э":{"docs":{},"т":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"к":{"docs":{},"з":{"docs":{},"е":{"docs":{},"м":{"docs":{},"п":{"docs":{},"л":{"docs":{},"я":{"docs":{},"р":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}}}}}}},"л":{"docs":{},"е":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"я":{"docs":{},"в":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"л":{"docs":{},"ю":{"docs":{},"б":{"docs":{},"о":{"docs":{},"й":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"ж":{"docs":{},"и":{"docs":{},"з":{"docs":{},"н":{"docs":{},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.02197802197802198}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"length":1082},"corpusTokens":["\"fallback\"","\"value\"","$","'#app',","'app_',","'fallback')","'local',","'lol']","'value'","'value')","'value');","'vue';","'vue2","()","(e.g.","(key,","(key:","(localstorage,","(например","*","+","/","//","0","1000","1000,","2","24","60","=","=>","['test',","abov","accept","accord","ad","add","allow","alreadi","alway","any)","any.","anymor","api","app","app_","app_.","argument","arguments:","array","async","avoid","await","base","befor","begin","boolean","browser","build","build.","call","case","cd","cdn","certain","chang","class","clear","cleared.","cli),","clone","closur","code","collisions.","config","configur","configuration,","connecting,","console.log(data)","console.log(fallback)","console.log(haslol)","console.log(hastest)","console.log(key)","console.log(keys)","console.log(storage.get('key'));","console.log(this.$storage.length)","console.log(this.$storage.prefix)","const","creat","data","default","delet","deleted.","describ","dev","direct","directli","disabl","document","documentation:","don't","download","driver","driver:","el:","entir","entri","es2015","example:","except","execut","exist","expect","explicitli","export","failure,","fallback","fals","find","flag","forc","forever.","format.","function","get","git","github","given","global","guide.","handler","haslol","hastest","here","hour","html","http","https://github.com/yarkovaleksei/vue2","https://unpkg.com/vue2","identifi","ignor","immedi","import","includ","index","index.","initialization.","instal","instanti","introduct","it.","item.","javascript","kept","key","key.","key:","keys.","latest","length","lifetim","lifetime.","link","links.","local,","local.","memori","memorystorag","method","milliseconds.","modul","modular","name","need","new","node_modules/vue2","now","npm","npm.","null","number","numer","object","option","optional:","otherwis","otherwise,","out","output","overrid","packag","pass","plan","plug","plugin","point","prefix","prefix:","promis","properti","provid","pull","record","releas","rememb","remov","replac","replacer:","repositori","repository.","requir","respectively).","retriev","return","sampl","save","script","second","session","sessionstorag","set","setopt","signature:","specif","specifi","start","started!","storag","storage';","storage,","storage.","storage.git","storage.j","storage.set('key',","storage.setoptions({","storage/dist/vue2","storage@6.0.3/dist/vue2","storageerror","store","store.","string","string,","structur","stuff","such","support","system","system,","tags.","this.$storage.clear()","this.$storage.get('test')","this.$storage.get('test',","this.$storage.get('unknown',","this.$storage.has('lol')","this.$storage.has('test')","this.$storage.key(0)","this.$storage.keys()","this.$storage.pull('test')","this.$storage.remember('test',","this.$storage.remove('test')","this.$storage.set('lol',","this.$storage.set('test',","this.$storage.setoptions({","throw","time.","true","true,","ttl","ttl:","type","typescript","undefined.","unpkg.com","url","us","used.","valu","value)","value.","value.repeat(2)","value:","valuevalu","version/tag","via","vue","vue({","vue,","vue.j","vue.us","vue.use():","vue.use(plugin);","vue.use(plugin,","vue.use(vue2storage).","vue.use(vue2storage)`","vue2","vue2storag","vue2storage({","want","whether","whose","window.vue({","window.vue.use(window.vue2storageplugin)","window.vue.use(window.vue2storageplugin,","window.vue2storage({","without","write","written","yarn","yourself","{","{}","}","})","}).$mount('#app')","}).$mount('#app');","});","},","адрес,","аргумент","аргументом","аргументы:","асинхронные","без","браузерным","будем","будет","будут","быть","в","вам","вернет","версию","версию.","версию/тег","вечно.","вещи","возвратом.","возвращаемое","возвращает","время","все","всегда","вторым","вы","выбросит","выведет","вызвана","вызовите","выполняется","вышеуказанная","глобально.","данные","данных","делаем","делать","для","добавить","добавлено","документации:","документация","должны","другие","его","ее","если","жизни","жизни.","загрузка","заодно","записаны","записать","записей","записи","запись","запросы","запустилось!","здесь","значение","значение.","значение:","значением","значения","значения,","и","идентификатор","из","избежания","извлекаем","извлечь","изменена","или","имеет","импортируйте","индексу","инициализации.","исключение","использование","использовании","использования","использовать","используемого","используете","используйте","используя","как","класс","класса","клонировать","ключ","ключ.","ключа,","ключа.","ключей","ключом.","ключу.","кода","количество","коллизий.","конкретную","конфигурации","конфигурацию","конфигурация","которая","которое","которых","ли","любой","массив","метод","методы","миллисекундах.","модульной","модульную","может","можете","можно","момент.","мы","на","надо","например","настройками","настройками.","настройках.","настройки","начало","начинается","не","него","немедленно","непосредственно","неудачи","нужно","обертка","обработчик","объект","ожидаемых","описана","описаны","определенного","опции","основе","отключает","очистить","очищено","пакет","пакета.","перед","передав","передайте","передан","переданная","переданный","передать","переопределить","пишется","плагин","плагина","планируете","по","поддерживаются","подключении","подключении,","подключите","позволяет","пока","получить","после","последнюю","предоставляет","префикс","префикса,","при","приложение","пример:","примерах","принимает","просто","противном","прямая","работы","руководстве.","с","самостоятельно","свойства","сигнатуру:","системой","систему","систему,","скриптов","случае","со","собирать","согласно","создании","соответственно).","сохраняется","ссылка","ссылки","строка,","строковой","строковому","строковый","структура","существует","существует,","также","такую","тем","тип","то","только","удалены","удалить","удаляем","уже","узнать","указав","указанного","указанным","указать","указывает","умолчанию","установить","установка","установки","флаг","формата.","функция","хотите","хранилища","хранилища,","хранилища.","хранилище","хранилище,","хранилище.","хранилищем","храниться","часа","через","через`","черезvue.use():","числовому","экземпляра","элемент.","это","явно"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"vue2-storage документация\n\nОбертка для работы с браузерным хранилищем для JavaScript и Vue.js\n\n\nУстановка\nИспользование без Vue\nНачало использования\nНастройки\nAPI\nМетоды\nsetOptions\nget\npull\nset\nremember\nremove\nclear\nhas\nkey\nkeys\n\n\nСвойства\nlength\nprefix\n\n\n\n\n\n"},"installation.html":{"url":"installation.html","title":"Установка","keywords":"","body":"Установка\nПрямая загрузка / CDN\nhttps://unpkg.com/vue2-storage/dist/vue2-storage\nunpkg.com предоставляет ссылки на CDN на основе NPM. Вышеуказанная ссылка всегда указывает на последнюю версию NPM пакета. Вы также можете использовать конкретную версию/тег через URL-адрес, например https://unpkg.com/vue2-storage@6.0.3/dist/vue2-storage.js\nПодключите vue2-storage после Vue и используйте согласно документации:\n\n\n\n window.Vue.use(window.Vue2StoragePlugin)\n\n\nNPM\n$ npm install vue2-storage\n\nЕсли планируете использовать пакет без Vue, то надо добавить флаг --no-optional:\n$ npm install --no-optional vue2-storage\n\nYarn\n$ yarn add vue2-storage\n\nЕсли планируете использовать пакет без Vue, то надо добавить флаг --ignore-optional:\n$ yarn add --ignore-optional vue2-storage\n\nПри использовании с модульной системой вы должны явно установить vue2-storage черезVue.use():\nimport Vue from 'vue';\nimport { Plugin } from 'vue2-storage';\n\nVue.use(Plugin);\n// Можно заодно передать опции\nVue.use(Plugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n});\n\nВам не нужно делать это при подключении скриптов глобально.\nDev Build\nВам нужно будет клонировать непосредственно из GitHub и самостоятельно собирать vue2-storage, если\nвы хотите использовать последнюю dev версию.\n$ git clone https://github.com/yarkovaleksei/vue2-storage.git node_modules/vue2-storage\n$ cd node_modules/vue2-storage\n$ yarn\n$ yarn build\n\n"},"vanilla.html":{"url":"vanilla.html","title":"Использование без Vue","keywords":"","body":"Использование без Vue\n\nМы будем использовать ES2015 в примерах кода в руководстве.\n\nHTML\n\n\n\n // Вы можете указать конфигурацию хранилища при создании экземпляра класса\n const storage = window.Vue2Storage({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n });\n\n storage.set('key', 'value');\n console.log(storage.get('key')); // value\n\n // Конфигурация хранилища может быть изменена в любой момент.\n // Просто вызовите метод setOptions и передайте в него объект с настройками.\n storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value.repeat(2)\n });\n\n storage.set('key', 'value');\n console.log(storage.get('key')); // valuevalue\n\n\nJavaScript\n// Если вы используете модульную систему, то импортируйте класс Vue2Storage\nimport Vue from 'vue';\nimport Vue2Storage from 'vue2-storage';\n\n// Вы можете указать конфигурацию хранилища при создании экземпляра класса\nconst storage = Vue2Storage({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n});\n\nstorage.set('key', 'value');\nconsole.log(storage.get('key')); // value\n\n// Конфигурация хранилища может быть изменена в любой момент.\n// Просто вызовите метод setOptions и передайте в него объект с настройками.\nstorage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value.repeat(2)\n});\n\nstorage.set('key', 'value');\nconsole.log(storage.get('key')); // valuevalue\n\n"},"started.html":{"url":"started.html","title":"Начало использования","keywords":"","body":"Начало использования\n\nМы будем использовать ES2015 в примерах кода в руководстве.\n\nHTML\n\n\n\n\n\n\n // Вы можете указать конфигурацию плагина при подключении, передав в Vue.use вторым аргументом объект с настройками\n window.Vue.use(window.Vue2StoragePlugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n })\n\n new window.Vue({\n el: '#app',\n created () {\n // Конфигурация плагина может быть изменена в любой момент.\n // Просто вызовите метод setOptions и передайте в него объект с настройками.\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n });\n }\n }).$mount('#app')\n\n\nJavaScript\n\n\n// Если вы используете модульную систему (например via vue-cli), то импортируйте Vue и плагин Vue2Storage и подключите плагин через` Vue.use(Vue2Storage)`\nimport Vue from 'vue';\nimport { Plugin } from 'vue2-storage';\n\n// Вы можете указать конфигурацию плагина при подключении, передав в Vue.use вторым аргументом объект с настройками\nVue.use(Plugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n});\n\n// Приложение запустилось!\nnew Vue({\n el: '#app',\n created () {\n // Конфигурация плагина может быть изменена в любой момент.\n // Просто вызовите метод setOptions и передайте в него объект с настройками.\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n });\n }\n}).$mount('#app');\n\n"},"options.html":{"url":"options.html","title":"Настройки","keywords":"","body":"Настройки\nДля установки конфигурации плагин принимает объект определенного формата.\nprefix - строка, которая будет добавлено в начало ключа, для избежания коллизий. По-умолчанию app_.\ndriver - идентификатор используемого хранилища. Пока поддерживаются значения local, session и memory (localStorage, sessionStorage и memoryStorage соответственно). По-умолчанию local.\nttl - время жизни записи в миллисекундах. По-умолчанию 0 // отключает время жизни и запись будет храниться вечно.\nreplacer - функция-обработчик для значения, которое пишется в хранилище. Будет вызвана перед тем как данные будут записаны в хранилище. Имеет такую сигнатуру: (key: string, value: any) => any. По-умолчанию undefined.\n"},"api.html":{"url":"api.html","title":"API","keywords":"","body":"Методы\nsetOptions\nМетод позволяет переопределить настройки плагина после инициализации.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nconfig\nСтруктура описана здесь\nЗначения описаны здесь\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n })\n }\n}\n\nget\nМетод позволяет получить значение из хранилища по строковому ключу.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nfallback\n*\n\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.get('test')\n const fallback = this.$storage.get('unknown', 'fallback') // Not in storage\n console.log(data) // { key: 'value' }\n console.log(fallback) // \"fallback\"\n }\n}\n\nВозвращаемое значение: Any\nВ случае неудачи метод выбросит исключение StorageError\npull\nМетод позволяет извлечь значение и удалить его из хранилища, используя строковый ключ.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nfallback\n*\n\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.pull('test')\n const fallback = this.$storage.get('test', 'fallback') // Извлекаем и удаляем из хранилища\n console.log(data) // { key: 'value' }\n console.log(fallback) // \"fallback\"\n }\n}\n\nВозвращаемое значение: Any\nset\nМетод позволяет записать значение в хранилище, указав строковой ключ и время жизни.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\ndata\n*\n\n+\n\n\n\noptions\nObject\n{}\n-\n{ ttl: number }\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.get('test')\n console.log(data) // { key: 'value' }\n }\n}\n\nВ случае неудачи метод выбросит исключение StorageError\nremember\nМетод позволяет получить элемент. Если переданный ключ уже существует, то метод немедленно вернет его значение.\nВ противном случае переданная функция выполняется и ее возвращаемое значение сохраняется в хранилище перед его возвратом.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nclosure\nPromise\n\n+\n\n\n\noptions\nObject\n{}\n-\n{ ttl: number }\n\n\n\nПример:\n// JavaScript\nexport default {\n async created () {\n const data = await this.$storage.remember('test', async () => {\n // Делаем HTTP-запросы или другие асинхронные вещи\n return 'value'\n })\n console.log(data) // выведет \"value\"\n }\n}\n\n// TypeScript\nexport default {\n async created () {\n // Можно указать тип ожидаемых данных\n const data = await this.$storage.remember('test', async () => {\n // Делаем HTTP-запросы или другие асинхронные вещи\n return 'value'\n })\n console.log(data) // выведет \"value\"\n }\n}\n\nВозвращаемое значение: Any\nВ случае неудачи метод выбросит исключение StorageError\nremove\nМетод позволяет удалить значение из хранилища по строковому ключу.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.remove('test')\n const data = this.$storage.get('test')\n console.log(data) // null\n }\n}\n\nВ случае неудачи метод выбросит исключение StorageError\nclear\nМетод позволяет очистить хранилище.\nЕсли передан аргумент force со значением true, то будет очищено все хранилище.\nВ противном случае будут удалены только значения, ключ которых начинается с префикса, указанного в настройках.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nforce\nBoolean\nfalse\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.clear()\n const data = this.$storage.get('test')\n console.log(data) // null\n }\n}\n\nВ случае неудачи метод выбросит исключение StorageError\nhas\nМетод позволяет узнать существует ли в хранилище запись с указанным ключом.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const hasTest = this.$storage.has('test')\n const hasLol = this.$storage.has('lol')\n console.log(hasTest) // true\n console.log(hasLol) // false\n }\n}\n\nВозвращаемое значение: Boolean\nkey\nМетод возвращает значение по числовому индексу ключа.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nindex\nNumber\n\n+\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', 'value')\n const key = this.$storage.key(0)\n console.log(key) // 'value'\n }\n}\n\nВозвращаемое значение: Any\nВ случае неудачи метод выбросит исключение StorageError\nkeys\nМетод возвращает массив ключей хранилища.\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.set('lol', { key: 'value' }, { ttl: 60 * 1000 })\n const keys = this.$storage.keys()\n console.log(keys) // ['test', 'lol']\n }\n}\n\nВозвращаемое значение: Array\n\nСвойства\nlength\nВозвращает количество записей в хранилище.\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' })\n this.$storage.set('lol', { key: 'value' })\n console.log(this.$storage.length) // 2\n }\n}\n\nВозвращаемое значение: Number\n\nprefix\nВозвращает префикс записей в хранилище.\nПример:\nexport default {\n created () {\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n })\n console.log(this.$storage.prefix) // app_\n }\n}\n\nВозвращаемое значение: String\n"}}} \ No newline at end of file diff --git a/docs/ru/started.html b/docs/ru/started.html index 491b6b3..92f59fb 100644 --- a/docs/ru/started.html +++ b/docs/ru/started.html @@ -523,7 +523,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Начало использования","level":"1.4","depth":1,"next":{"title":"Настройки","level":"1.5","depth":1,"path":"options.md","ref":"options.md","articles":[]},"previous":{"title":"Использование без Vue","level":"1.3","depth":1,"path":"vanilla.md","ref":"vanilla.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"livereload":{},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.0"},"language":"ru","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"started.md","mtime":"2021-03-20T11:50:49.237Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T12:19:06.224Z"},"basePath":".","book":{"language":"ru"}}); + gitbook.page.hasChanged({"page":{"title":"Начало использования","level":"1.4","depth":1,"next":{"title":"Настройки","level":"1.5","depth":1,"path":"options.md","ref":"options.md","articles":[]},"previous":{"title":"Использование без Vue","level":"1.3","depth":1,"path":"vanilla.md","ref":"vanilla.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.3"},"language":"ru","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"started.md","mtime":"2021-03-20T12:45:33.554Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T14:55:29.719Z"},"basePath":".","book":{"language":"ru"}}); }); @@ -541,10 +541,6 @@

No results matching " - - - diff --git a/docs/ru/vanilla.html b/docs/ru/vanilla.html index f311c1b..ccb5241 100644 --- a/docs/ru/vanilla.html +++ b/docs/ru/vanilla.html @@ -519,7 +519,7 @@

No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Использование без Vue","level":"1.3","depth":1,"next":{"title":"Начало использования","level":"1.4","depth":1,"path":"started.md","ref":"started.md","articles":[]},"previous":{"title":"Установка","level":"1.2","depth":1,"path":"installation.md","ref":"installation.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"livereload":{},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.0"},"language":"ru","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"vanilla.md","mtime":"2021-03-20T12:03:17.929Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T12:19:06.224Z"},"basePath":".","book":{"language":"ru"}}); + gitbook.page.hasChanged({"page":{"title":"Использование без Vue","level":"1.3","depth":1,"next":{"title":"Начало использования","level":"1.4","depth":1,"path":"started.md","ref":"started.md","articles":[]},"previous":{"title":"Установка","level":"1.2","depth":1,"path":"installation.md","ref":"installation.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git","github"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/yarkovaleksei/vue2-storage/"},"search":{},"theme-vuejs":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"edit-link":{"label":"Edit This Page","base":"https://github.com/yarkovaleksei/vue2-storage/tree/master/gitbook"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"packageName":"vue2-storage","packageVersion":"6.0.3"},"language":"ru","links":{"sharing":{"facebook":true,"twitter":true}},"gitbook":"*"},"file":{"path":"vanilla.md","mtime":"2021-03-20T12:45:33.554Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2021-03-20T14:55:29.719Z"},"basePath":".","book":{"language":"ru"}}); }); @@ -537,10 +537,6 @@

No results matching " - - - diff --git a/docs/search_index.json b/docs/search_index.json index 817229e..186601c 100644 --- a/docs/search_index.json +++ b/docs/search_index.json @@ -1 +1 @@ -{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["api","clear","introduct","javascript","key","length","prefix","pull","rememb","remov","set","setopt","storag","vue","vue.j","vue2","без","браузерным","для","документация","и","использование","использования","методы","настройки","начало","обертка","работы","с","свойства","установка","хранилищем"],"installation.html":["$","'app_',","'local',","'vue';","'vue2","(key,","*","/","//","1000,","24","60","=>","add","build","cd","cdn","clone","dev","driver:","git","github","https://github.com/yarkovaleksei/vue2","https://unpkg.com/vue2","ignor","import","instal","node_modules/vue2","npm","npm.","option","optional:","plugin","prefix:","replacer:","storag","storage';","storage,","storage.git","storage.j","storage/dist/vue2","storage@6.0.0/dist/vue2","ttl:","unpkg.com","url","valu","value)","vue","vue,","vue.use(plugin);","vue.use(plugin,","vue2","window.vue.use(window.vue2storageplugin)","yarn","{","}","});","адрес,","без","будет","вам","версию","версию.","версию/тег","всегда","вы","вышеуказанная","глобально.","делать","добавить","документации:","должны","если","загрузка","заодно","и","из","использовании","использовать","используйте","клонировать","конкретную","модульной","можете","можно","на","надо","например","не","непосредственно","нужно","опции","основе","пакет","пакета.","передать","планируете","подключении","подключите","после","последнюю","предоставляет","при","прямая","с","самостоятельно","системой","скриптов","собирать","согласно","ссылка","ссылки","также","то","указывает","установить","установка","флаг","хотите","часа","через","черезvue.use():","это","явно"],"vanilla.html":["'app_',","'local',","'value');","'vue';","'vue2","(key,","*","//","1000,","24","60","=","=>","console.log(storage.get('key'));","const","driver:","es2015","html","import","javascript","prefix:","replacer:","setopt","storag","storage';","storage.set('key',","storage.setoptions({","ttl:","valu","value)","value.repeat(2)","valuevalu","vue","vue2storag","vue2storage({","window.vue2storage({","});","без","будем","быть","в","вы","вызовите","если","и","изменена","импортируйте","использование","использовать","используете","класс","класса","кода","конфигурацию","конфигурация","любой","метод","модульную","может","можете","момент.","мы","настройками.","него","объект","передайте","при","примерах","просто","руководстве.","с","систему,","создании","то","указать","хранилища","часа","экземпляра"],"started.html":["'#app',","'app_',","'local',","'vue';","'vue2","()","(key,","(например","*","//","1000,","24","60","=>","cli),","creat","driver:","el:","es2015","html","import","javascript","new","plugin","prefix:","replacer:","setopt","storage';","this.$storage.setoptions({","ttl:","valu","value)","via","vue","vue({","vue.us","vue.use(plugin,","vue.use(vue2storage)`","vue2storag","window.vue({","window.vue.use(window.vue2storageplugin,","{","}","})","}).$mount('#app')","}).$mount('#app');","});","аргументом","будем","быть","в","вторым","вы","вызовите","если","запустилось!","и","изменена","импортируйте","использования","использовать","используете","кода","конфигурацию","конфигурация","любой","метод","модульную","может","можете","момент.","мы","настройками","настройками.","начало","него","объект","передав","передайте","плагин","плагина","подключении,","подключите","при","приложение","примерах","просто","руководстве.","с","систему","то","указать","часа","через`"],"options.html":["(key:","(localstorage,","//","0","=>","any)","any.","app_.","driver","local,","local.","memori","memorystorag","prefix","replac","session","sessionstorag","string,","ttl","undefined.","value:","будет","будут","в","вечно.","время","вызвана","данные","для","добавлено","жизни","записаны","записи","запись","значения","значения,","и","идентификатор","избежания","имеет","используемого","как","ключа,","коллизий.","конфигурации","которая","которое","миллисекундах.","настройки","начало","обработчик","объект","определенного","отключает","перед","пишется","плагин","по","поддерживаются","пока","принимает","сигнатуру:","соответственно).","строка,","такую","тем","умолчанию","установки","формата.","функция","хранилища.","хранилище.","храниться"],"api.html":["\"fallback\"","\"value\"","'app_',","'fallback')","'local',","'lol']","'value'","'value')","()","(key,","*","+","//","1000","1000,","2","24","60","=","=>","['test',","allow","api","app_","array","async","await","boolean","clear","closur","config","console.log(data)","console.log(fallback)","console.log(haslol)","console.log(hastest)","console.log(key)","console.log(keys)","console.log(this.$storage.length)","console.log(this.$storage.prefix)","const","creat","data","default","driver:","export","fallback","fals","forc","haslol","hastest","hour","http","index","key","key:","length","name","null","number","object","option","prefix","prefix:","promis","pull","rememb","remov","replacer:","requir","return","set","setopt","storag","storageerror","string","this.$storage.clear()","this.$storage.get('test')","this.$storage.get('test',","this.$storage.get('unknown',","this.$storage.has('lol')","this.$storage.has('test')","this.$storage.key(0)","this.$storage.keys()","this.$storage.pull('test')","this.$storage.remember('test',","this.$storage.remove('test')","this.$storage.set('lol',","this.$storage.set('test',","this.$storage.setoptions({","true","true,","ttl:","type","valu","value)","{","{}","}","})","},","аргумент","аргументы:","асинхронные","будет","будут","в","вернет","вещи","возвратом.","возвращаемое","возвращает","время","все","выбросит","выведет","выполняется","делаем","другие","его","ее","если","жизни.","записать","записей","запись","запросы","здесь","значение","значение.","значение:","значением","значения","значения,","и","из","извлекаем","извлечь","или","индексу","инициализации.","исключение","используя","ключ","ключ.","ключа.","ключей","ключом.","ключу.","количество","которых","ли","массив","метод","методы","настройках.","настройки","начинается","немедленно","неудачи","описана","описаны","очистить","очищено","перед","передан","переданная","переданный","переопределить","плагина","по","позволяет","получить","после","префикс","префикса,","пример:","противном","с","свойства","случае","со","сохраняется","строковой","строковому","строковый","структура","существует","существует,","то","только","удалены","удалить","удаляем","уже","узнать","указав","указанного","указанным","функция","хранилища","хранилища,","хранилища.","хранилище","хранилище,","хранилище.","часа","числовому","элемент."]},"length":6},"tokenStore":{"root":{"0":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"1":{"0":{"0":{"0":{"docs":{"api.html":{"ref":"api.html","tf":0.011142061281337047}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}},"docs":{}},"docs":{}},"docs":{}},"2":{"4":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.03864734299516908},"started.html":{"ref":"started.html","tf":0.03508771929824561},"api.html":{"ref":"api.html","tf":0.005571030640668524}}},"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"6":{"0":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.03864734299516908},"started.html":{"ref":"started.html","tf":0.03508771929824561},"api.html":{"ref":"api.html","tf":0.016713091922005572}}},"docs":{}},"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":10}}},"p":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":0.005319148936170213}},"_":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"l":{"docs":{},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}},"n":{"docs":{},"y":{"docs":{},")":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},"s":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.013353115727002967}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.03571428571428571}}}}}}}},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.017341040462427744}}}}},"i":{"docs":{},")":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.015957446808510637},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}},"s":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.008902077151335312}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"u":{"docs":{},"r":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"s":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"api.html":{"ref":"api.html","tf":0.016713091922005572}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.016713091922005572}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"w":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}},"e":{"docs":{},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.06153846153846154},"api.html":{"ref":"api.html","tf":0.02924791086350975}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"l":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.009749303621169917}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":5.00531914893617},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}},"i":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"options.html":{"ref":"options.html","tf":0.015384615384615385}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497}}}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}}}}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"t":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.001483679525222552}}},"e":{"docs":{},"m":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.06060606060606061},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.013927576601671309}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.005934718100890208}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.018105849582172703}}},"s":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}},"p":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"s":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"f":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077}},"e":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.025222551928783383}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.005319148936170213}},"a":{"docs":{},"r":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"options.html":{"ref":"options.html","tf":10.015384615384615},"api.html":{"ref":"api.html","tf":0.002785515320334262}},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.02127659574468085},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},"e":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}},"s":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}},"u":{"docs":{},"g":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425},"options.html":{"ref":"options.html","tf":0.015384615384615385}},"i":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"o":{"docs":{},"v":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.005934718100890208}}},"y":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077},"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"y":{"docs":{},")":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"api.html":{"ref":"api.html","tf":0.004451038575667656}}}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.001392757660167131}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":5.00531914893617}},"e":{"docs":{},"d":{"docs":{},"!":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.046875},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001392757660167131}},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.002967359050445104}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"j":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}}}}}}}}}}},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"docs":{}}}}}}}}}},"@":{"6":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"docs":{}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}}}}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.009749303621169917}},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"i":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.004451038575667656}}}}}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}},"v":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},":":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.036458333333333336}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.0043859649122807015}},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}}}}}}}},"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":3.3429951690821254},"started.html":{"ref":"started.html","tf":0.013157894736842105},"./":{"ref":"./","tf":0.030303030303030304}},".":{"docs":{},"j":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}},"u":{"docs":{},"s":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}},"`":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}},"docs":{}}}}}}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.03076923076923077},"api.html":{"ref":"api.html","tf":0.01532033426183844}},"e":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"2":{"docs":{},")":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}},"docs":{}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}},":":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.011869436201780416}}}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}}}},"i":{"docs":{},"a":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}},"$":{"docs":{"installation.html":{"ref":"installation.html","tf":0.041666666666666664}}},"'":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"_":{"docs":{},"'":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}},"l":{"docs":{},"'":{"docs":{},"]":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}},"docs":{},"'":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{"api.html":{"ref":"api.html","tf":0.020891364902506964}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},";":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454}}}}}}}}}},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"'":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}}}}}},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}}},":":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},")":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.018105849582172703}}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},".":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}}},"н":{"docs":{},"а":{"docs":{},"п":{"docs":{},"р":{"docs":{},"и":{"docs":{},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}},"*":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625},"vanilla.html":{"ref":"vanilla.html","tf":0.057971014492753624},"started.html":{"ref":"started.html","tf":0.05263157894736842},"api.html":{"ref":"api.html","tf":0.023676880222841225}}},"/":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"/":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.07246376811594203},"started.html":{"ref":"started.html","tf":0.05263157894736842},"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.026462395543175487}}}},"=":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"api.html":{"ref":"api.html","tf":0.016713091922005572}},">":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.004178272980501393}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.016713091922005572}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.017804154302670624}}}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.008902077151335312}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"s":{"2":{"0":{"1":{"5":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"l":{"docs":{},":":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}},"r":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"c":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.008902077151335312}}}}}}}},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"api.html":{"ref":"api.html","tf":0.005571030640668524}}}}}}},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"k":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"docs":{}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.002967359050445104}}}}}},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.018518518518518517}}}},"w":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"docs":{}}}}}}}}}}}}}}},"w":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}},"p":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.020833333333333332}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.005571030640668524}}}}},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"t":{"docs":{},"l":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.016713091922005572}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.005571030640668524}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"u":{"docs":{},"n":{"docs":{},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"(":{"0":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"docs":{}},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"api.html":{"ref":"api.html","tf":0.008902077151335312}}}}}},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}}},"u":{"docs":{},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}},"r":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.043209876543209874},"vanilla.html":{"ref":"vanilla.html","tf":3.3506743737957607},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.004451038575667656},"./":{"ref":"./","tf":0.03571428571428571}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"w":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}}}}}}}},"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},",":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":3.339113680154142},"./":{"ref":"./","tf":0.03571428571428571}}}}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077}}}}},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}},"h":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001483679525222552}}}}}}},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.026041666666666668}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}},"{":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"started.html":{"ref":"started.html","tf":0.021929824561403508},"api.html":{"ref":"api.html","tf":0.06685236768802229}},"}":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}},"}":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.013157894736842105},"api.html":{"ref":"api.html","tf":0.0403899721448468}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.018105849582172703},"started.html":{"ref":"started.html","tf":0.0043859649122807015}},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.013157894736842105}}},".":{"docs":{},"$":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"'":{"docs":{},")":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}},";":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}}}}}}}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.011142061281337047}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"./":{"ref":"./","tf":0.030303030303030304}}}}}}}}}}}},"ч":{"docs":{},"а":{"docs":{},"с":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"е":{"docs":{},"р":{"docs":{},"е":{"docs":{},"з":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}},"`":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}},"и":{"docs":{},"с":{"docs":{},"л":{"docs":{},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"м":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}},"\"":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"\"":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"+":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}},"[":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"б":{"docs":{},"р":{"docs":{},"а":{"docs":{},"у":{"docs":{},"з":{"docs":{},"е":{"docs":{},"р":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}}}}}}}}}},"е":{"docs":{},"з":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":3.338164251207729},"./":{"ref":"./","tf":0.030303030303030304}}}},"у":{"docs":{},"д":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"options.html":{"ref":"options.html","tf":0.03296703296703297},"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"м":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},"у":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"ы":{"docs":{},"т":{"docs":{},"ь":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}},"д":{"docs":{},"л":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.06060606060606061},"options.html":{"ref":"options.html","tf":0.03296703296703297}}}},"о":{"docs":{},"к":{"docs":{},"у":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}},"и":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}},"б":{"docs":{},"а":{"docs":{},"в":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"л":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"ы":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"е":{"docs":{},"л":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"е":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}},"р":{"docs":{},"у":{"docs":{},"г":{"docs":{},"и":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.03296703296703297},"api.html":{"ref":"api.html","tf":0.005571030640668524},"./":{"ref":"./","tf":0.030303030303030304}},"с":{"docs":{},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"з":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"started.html":{"ref":"started.html","tf":5.004385964912281}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":3.338164251207729},"./":{"ref":"./","tf":0.030303030303030304}}}}},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.020833333333333332},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}},"у":{"docs":{},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"е":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},"м":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}}}}}}}}}}},"з":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"api.html":{"ref":"api.html","tf":0.005571030640668524}},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"е":{"docs":{},"н":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}}},"б":{"docs":{},"е":{"docs":{},"ж":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"в":{"docs":{},"л":{"docs":{},"е":{"docs":{},"к":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"ч":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"м":{"docs":{},"п":{"docs":{},"о":{"docs":{},"р":{"docs":{},"т":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}},"е":{"docs":{},"е":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"д":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},"и":{"docs":{},"ф":{"docs":{},"и":{"docs":{},"к":{"docs":{},"а":{"docs":{},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}},"л":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"н":{"docs":{},"д":{"docs":{},"е":{"docs":{},"к":{"docs":{},"с":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"и":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"а":{"docs":{},"л":{"docs":{},"и":{"docs":{},"з":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}}}},"м":{"docs":{},"е":{"docs":{},"т":{"docs":{},"о":{"docs":{},"д":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.023676880222841225}},"ы":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"о":{"docs":{},"д":{"docs":{},"у":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},"й":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"у":{"docs":{},"ю":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"ж":{"docs":{},"е":{"docs":{},"т":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}}},"ы":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}},"и":{"docs":{},"л":{"docs":{},"л":{"docs":{},"и":{"docs":{},"с":{"docs":{},"е":{"docs":{},"к":{"docs":{},"у":{"docs":{},"н":{"docs":{},"д":{"docs":{},"а":{"docs":{},"х":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}}},"а":{"docs":{},"с":{"docs":{},"с":{"docs":{},"и":{"docs":{},"в":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"н":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625}},"с":{"docs":{},"т":{"docs":{},"р":{"docs":{},"о":{"docs":{},"й":{"docs":{},"к":{"docs":{},"и":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"options.html":{"ref":"options.html","tf":10.010989010989011},"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"а":{"docs":{},"м":{"docs":{},"и":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"х":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}},"ч":{"docs":{},"а":{"docs":{},"л":{"docs":{},"о":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"started.html":{"ref":"started.html","tf":5.004385964912281},"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}},"и":{"docs":{},"н":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"д":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"п":{"docs":{},"р":{"docs":{},"и":{"docs":{},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"п":{"docs":{},"о":{"docs":{},"с":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}}}},"г":{"docs":{},"о":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"м":{"docs":{},"е":{"docs":{},"д":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"у":{"docs":{},"д":{"docs":{},"а":{"docs":{},"ч":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}}}}}}}},"у":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}},"о":{"docs":{},"б":{"docs":{},"е":{"docs":{},"р":{"docs":{},"т":{"docs":{},"к":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}}}}}},"ъ":{"docs":{},"е":{"docs":{},"к":{"docs":{},"т":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"р":{"docs":{},"а":{"docs":{},"б":{"docs":{},"о":{"docs":{},"т":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"к":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}},"п":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"а":{"docs":{},"н":{"docs":{},"а":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"с":{"docs":{},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"т":{"docs":{},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}},"ч":{"docs":{},"и":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"щ":{"docs":{},"е":{"docs":{},"н":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"р":{"docs":{},"а":{"docs":{},"б":{"docs":{},"о":{"docs":{},"т":{"docs":{},"ы":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}}}}}},"у":{"docs":{},"к":{"docs":{},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"д":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}}}},"с":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002785515320334262}},"в":{"docs":{},"о":{"docs":{},"й":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"а":{"docs":{},"м":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{},"я":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"т":{"docs":{},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"й":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"у":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}},",":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}}}},"г":{"docs":{},"н":{"docs":{},"а":{"docs":{},"т":{"docs":{},"у":{"docs":{},"р":{"docs":{},"у":{"docs":{},":":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}},"к":{"docs":{},"р":{"docs":{},"и":{"docs":{},"п":{"docs":{},"т":{"docs":{},"о":{"docs":{},"в":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"б":{"docs":{},"и":{"docs":{},"р":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"г":{"docs":{},"л":{"docs":{},"а":{"docs":{},"с":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"з":{"docs":{},"д":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}}}},"о":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},")":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}}}},"х":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}},"с":{"docs":{},"ы":{"docs":{},"л":{"docs":{},"к":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"т":{"docs":{},"р":{"docs":{},"о":{"docs":{},"к":{"docs":{},"а":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"м":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}},"ы":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"у":{"docs":{},"к":{"docs":{},"т":{"docs":{},"у":{"docs":{},"р":{"docs":{},"а":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"л":{"docs":{},"у":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.011142061281337047}}}}}}},"у":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}},"у":{"docs":{},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"к":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":10.005208333333334}}},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"в":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"ы":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"м":{"docs":{},"о":{"docs":{},"л":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"ю":{"docs":{"options.html":{"ref":"options.html","tf":0.04395604395604396}}}}}}}}}},"д":{"docs":{},"а":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}},"я":{"docs":{},"е":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"ж":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"з":{"docs":{},"н":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"х":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"л":{"docs":{},"и":{"docs":{},"щ":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}},"м":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.02197802197802198},"api.html":{"ref":"api.html","tf":0.005571030640668524}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"api.html":{"ref":"api.html","tf":0.004178272980501393}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}},"о":{"docs":{},"т":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"а":{"docs":{},"д":{"docs":{},"р":{"docs":{},"е":{"docs":{},"с":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"р":{"docs":{},"г":{"docs":{},"у":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"о":{"docs":{},"м":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"ы":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}}}}}}}},"с":{"docs":{},"и":{"docs":{},"н":{"docs":{},"х":{"docs":{},"р":{"docs":{},"о":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}},"в":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.028985507246376812},"started.html":{"ref":"started.html","tf":0.03508771929824561},"options.html":{"ref":"options.html","tf":0.04395604395604396},"api.html":{"ref":"api.html","tf":0.019498607242339833}},"а":{"docs":{},"м":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"е":{"docs":{},"р":{"docs":{},"с":{"docs":{},"и":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"/":{"docs":{},"т":{"docs":{},"е":{"docs":{},"г":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"н":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"ч":{"docs":{},"н":{"docs":{},"о":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"щ":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"с":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"г":{"docs":{},"д":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"ы":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625},"vanilla.html":{"ref":"vanilla.html","tf":0.014492753623188406},"started.html":{"ref":"started.html","tf":0.013157894736842105}},"ш":{"docs":{},"е":{"docs":{},"у":{"docs":{},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"а":{"docs":{},"я":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}},"з":{"docs":{},"о":{"docs":{},"в":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"а":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}},"б":{"docs":{},"р":{"docs":{},"о":{"docs":{},"с":{"docs":{},"и":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}}}}}}}},"в":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"н":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"ы":{"docs":{},"м":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}},"р":{"docs":{},"е":{"docs":{},"м":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.02197802197802198},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"о":{"docs":{},"з":{"docs":{},"в":{"docs":{},"р":{"docs":{},"а":{"docs":{},"т":{"docs":{},"о":{"docs":{},"м":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}},"щ":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.012534818941504178}}}}},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.005571030640668524}}}}}}}}}}}},"г":{"docs":{},"л":{"docs":{},"о":{"docs":{},"б":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}},"е":{"docs":{},"с":{"docs":{},"л":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}},"г":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.004178272980501393}}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"з":{"docs":{},"а":{"docs":{},"г":{"docs":{},"р":{"docs":{},"у":{"docs":{},"з":{"docs":{},"к":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"о":{"docs":{},"д":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"п":{"docs":{},"у":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"л":{"docs":{},"о":{"docs":{},"с":{"docs":{},"ь":{"docs":{},"!":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"а":{"docs":{},"н":{"docs":{},"ы":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"ь":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"е":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}},"р":{"docs":{},"о":{"docs":{},"с":{"docs":{},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"н":{"docs":{},"а":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.008356545961002786}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.011142061281337047}}},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"д":{"docs":{},"е":{"docs":{},"с":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}},"к":{"docs":{},"л":{"docs":{},"о":{"docs":{},"н":{"docs":{},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}},"а":{"docs":{},"с":{"docs":{},"с":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}},"ю":{"docs":{},"ч":{"docs":{"api.html":{"ref":"api.html","tf":0.004178272980501393}},"а":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}},"е":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"о":{"docs":{},"м":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}},"у":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}},"о":{"docs":{},"н":{"docs":{},"к":{"docs":{},"р":{"docs":{},"е":{"docs":{},"т":{"docs":{},"н":{"docs":{},"у":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"ф":{"docs":{},"и":{"docs":{},"г":{"docs":{},"у":{"docs":{},"р":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"ю":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}},"я":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}},"д":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},"л":{"docs":{},"л":{"docs":{},"и":{"docs":{},"з":{"docs":{},"и":{"docs":{},"й":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}},"и":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"а":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"о":{"docs":{},"е":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"ы":{"docs":{},"х":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"а":{"docs":{},"к":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}},"п":{"docs":{},"а":{"docs":{},"к":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}},"а":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"е":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"в":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}},"н":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"н":{"docs":{},"а":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"ы":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"о":{"docs":{},"п":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"л":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}}}}}}},"л":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}}}},"г":{"docs":{},"и":{"docs":{},"н":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"options.html":{"ref":"options.html","tf":0.01098901098901099}},"а":{"docs":{"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.04395604395604396},"api.html":{"ref":"api.html","tf":0.004178272980501393}},"д":{"docs":{},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},",":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"д":{"docs":{},"е":{"docs":{},"р":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}},"с":{"docs":{},"л":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"api.html":{"ref":"api.html","tf":0.001392757660167131}},"д":{"docs":{},"н":{"docs":{},"ю":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}}}},"к":{"docs":{},"а":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"з":{"docs":{},"в":{"docs":{},"о":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.011142061281337047}}}}}}}}},"л":{"docs":{},"у":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}},"ф":{"docs":{},"и":{"docs":{},"к":{"docs":{},"с":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}},"а":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{},"а":{"docs":{},"х":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.016713091922005572}}}}}},"л":{"docs":{},"о":{"docs":{},"ж":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"н":{"docs":{},"и":{"docs":{},"м":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"я":{"docs":{},"м":{"docs":{},"а":{"docs":{},"я":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"т":{"docs":{},"и":{"docs":{},"в":{"docs":{},"н":{"docs":{},"о":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.002785515320334262}}}}}}}}}},"и":{"docs":{},"ш":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"т":{"docs":{},"а":{"docs":{},"к":{"docs":{},"ж":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"у":{"docs":{},"ю":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.002785515320334262}},"л":{"docs":{},"ь":{"docs":{},"к":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}},"е":{"docs":{},"м":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}},"ф":{"docs":{},"л":{"docs":{},"а":{"docs":{},"г":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}},"о":{"docs":{},"р":{"docs":{},"м":{"docs":{},"а":{"docs":{},"т":{"docs":{},"а":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"у":{"docs":{},"н":{"docs":{},"к":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"э":{"docs":{},"т":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"к":{"docs":{},"з":{"docs":{},"е":{"docs":{},"м":{"docs":{},"п":{"docs":{},"л":{"docs":{},"я":{"docs":{},"р":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}}}}}}},"л":{"docs":{},"е":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}}},"я":{"docs":{},"в":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"л":{"docs":{},"ю":{"docs":{},"б":{"docs":{},"о":{"docs":{},"й":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}},"ж":{"docs":{},"и":{"docs":{},"з":{"docs":{},"н":{"docs":{},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.02197802197802198}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001392757660167131}}}}}}}}},"length":3203},"corpusTokens":["\"fallback\"","\"value\"","$","'#app',","'app_',","'fallback')","'local',","'lol']","'value'","'value')","'value');","'vue';","'vue2","()","(e.g.","(key,","(key:","(localstorage,","(например","*","+","/","//","0","1000","1000,","2","24","60","=","=>","['test',","abov","accept","accord","ad","add","allow","alreadi","alway","any)","any.","anymor","api","app","app_","app_.","argument","arguments:","array","async","avoid","await","base","befor","begin","boolean","browser","build","build.","call","case","cd","cdn","certain","chang","class","clear","cleared.","cli),","clone","closur","code","collisions.","config","configur","configuration,","connecting,","console.log(data)","console.log(fallback)","console.log(haslol)","console.log(hastest)","console.log(key)","console.log(keys)","console.log(storage.get('key'));","console.log(this.$storage.length)","console.log(this.$storage.prefix)","const","creat","data","default","delet","deleted.","describ","dev","direct","directli","disabl","document","documentation:","don't","download","driver","driver:","el:","entir","entri","es2015","example:","except","execut","exist","explicitli","export","failure,","fallback","fals","find","flag","forc","forever.","format.","function","get","git","github","given","global","guide.","handler","haslol","hastest","here","hour","html","http","https://github.com/yarkovaleksei/vue2","https://unpkg.com/vue2","identifi","ignor","immedi","import","includ","index","index.","initialization.","instal","instanti","introduct","it.","item.","javascript","kept","key","key.","key:","keys.","latest","length","lifetim","lifetime.","link","links.","local,","local.","memori","memorystorag","method","milliseconds.","modul","modular","name","need","new","node_modules/vue2","now","npm","npm.","null","number","numer","object","option","optional:","otherwis","otherwise,","out","output","overrid","packag","pass","plan","plug","plugin","point","prefix","prefix:","promis","properti","provid","pull","record","releas","rememb","remov","replac","replacer:","repositori","repository.","requir","respectively).","retriev","return","sampl","save","script","second","session","sessionstorag","set","setopt","signature:","specif","specifi","start","started!","storag","storage';","storage,","storage.","storage.git","storage.j","storage.set('key',","storage.setoptions({","storage/dist/vue2","storage@6.0.0/dist/vue2","storageerror","store","store.","string","string,","structur","stuff","such","support","system","system,","tags.","this.$storage.clear()","this.$storage.get('test')","this.$storage.get('test',","this.$storage.get('unknown',","this.$storage.has('lol')","this.$storage.has('test')","this.$storage.key(0)","this.$storage.keys()","this.$storage.pull('test')","this.$storage.remember('test',","this.$storage.remove('test')","this.$storage.set('lol',","this.$storage.set('test',","this.$storage.setoptions({","throw","time.","true","true,","ttl","ttl:","type","undefined.","unpkg.com","url","us","used.","valu","value)","value.","value.repeat(2)","value:","valuevalu","version/tag","via","vue","vue({","vue,","vue.j","vue.us","vue.use():","vue.use(plugin);","vue.use(plugin,","vue.use(vue2storage).","vue.use(vue2storage)`","vue2","vue2storag","vue2storage({","want","whether","whose","window.vue({","window.vue.use(window.vue2storageplugin)","window.vue.use(window.vue2storageplugin,","window.vue2storage({","without","write","written","yarn","yourself","{","{}","}","})","}).$mount('#app')","}).$mount('#app');","});","},","адрес,","аргумент","аргументом","аргументы:","асинхронные","без","браузерным","будем","будет","будут","быть","в","вам","вернет","версию","версию.","версию/тег","вечно.","вещи","возвратом.","возвращаемое","возвращает","время","все","всегда","вторым","вы","выбросит","выведет","вызвана","вызовите","выполняется","вышеуказанная","глобально.","данные","делаем","делать","для","добавить","добавлено","документации:","документация","должны","другие","его","ее","если","жизни","жизни.","загрузка","заодно","записаны","записать","записей","записи","запись","запросы","запустилось!","здесь","значение","значение.","значение:","значением","значения","значения,","и","идентификатор","из","избежания","извлекаем","извлечь","изменена","или","имеет","импортируйте","индексу","инициализации.","исключение","использование","использовании","использования","использовать","используемого","используете","используйте","используя","как","класс","класса","клонировать","ключ","ключ.","ключа,","ключа.","ключей","ключом.","ключу.","кода","количество","коллизий.","конкретную","конфигурации","конфигурацию","конфигурация","которая","которое","которых","ли","любой","массив","метод","методы","миллисекундах.","модульной","модульную","может","можете","можно","момент.","мы","на","надо","например","настройками","настройками.","настройках.","настройки","начало","начинается","не","него","немедленно","непосредственно","неудачи","нужно","обертка","обработчик","объект","описана","описаны","определенного","опции","основе","отключает","очистить","очищено","пакет","пакета.","перед","передав","передайте","передан","переданная","переданный","передать","переопределить","пишется","плагин","плагина","планируете","по","поддерживаются","подключении","подключении,","подключите","позволяет","пока","получить","после","последнюю","предоставляет","префикс","префикса,","при","приложение","пример:","примерах","принимает","просто","противном","прямая","работы","руководстве.","с","самостоятельно","свойства","сигнатуру:","системой","систему","систему,","скриптов","случае","со","собирать","согласно","создании","соответственно).","сохраняется","ссылка","ссылки","строка,","строковой","строковому","строковый","структура","существует","существует,","также","такую","тем","то","только","удалены","удалить","удаляем","уже","узнать","указав","указанного","указанным","указать","указывает","умолчанию","установить","установка","установки","флаг","формата.","функция","хотите","хранилища","хранилища,","хранилища.","хранилище","хранилище,","хранилище.","хранилищем","храниться","часа","через","через`","черезvue.use():","числовому","экземпляра","элемент.","это","явно"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"vue2-storage документация\n\nОбертка для работы с браузерным хранилищем для JavaScript и Vue.js\n\n\nУстановка\nИспользование без Vue\nНачало использования\nНастройки\nAPI\nМетоды\nsetOptions\nget\npull\nset\nremember\nremove\nclear\nhas\nkey\nkeys\n\n\nСвойства\nlength\nprefix\n\n\n\n\n\n"},"installation.html":{"url":"installation.html","title":"Установка","keywords":"","body":"Установка\nПрямая загрузка / CDN\nhttps://unpkg.com/vue2-storage/dist/vue2-storage\nunpkg.com предоставляет ссылки на CDN на основе NPM. Вышеуказанная ссылка всегда указывает на последнюю версию NPM пакета. Вы также можете использовать конкретную версию/тег через URL-адрес, например https://unpkg.com/vue2-storage@6.0.0/dist/vue2-storage.js\nПодключите vue2-storage после Vue и используйте согласно документации:\n\n\n\n window.Vue.use(window.Vue2StoragePlugin)\n\n\nNPM\n$ npm install vue2-storage\n\nЕсли планируете использовать пакет без Vue, то надо добавить флаг --no-optional:\n$ npm install --no-optional vue2-storage\n\nYarn\n$ yarn add vue2-storage\n\nЕсли планируете использовать пакет без Vue, то надо добавить флаг --ignore-optional:\n$ yarn add --ignore-optional vue2-storage\n\nПри использовании с модульной системой вы должны явно установить vue2-storage черезVue.use():\nimport Vue from 'vue';\nimport { Plugin } from 'vue2-storage';\n\nVue.use(Plugin);\n// Можно заодно передать опции\nVue.use(Plugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n});\n\nВам не нужно делать это при подключении скриптов глобально.\nDev Build\nВам нужно будет клонировать непосредственно из GitHub и самостоятельно собирать vue2-storage, если\nвы хотите использовать последнюю dev версию.\n$ git clone https://github.com/yarkovaleksei/vue2-storage.git node_modules/vue2-storage\n$ cd node_modules/vue2-storage\n$ yarn\n$ yarn build\n\n"},"vanilla.html":{"url":"vanilla.html","title":"Использование без Vue","keywords":"","body":"Использование без Vue\n\nМы будем использовать ES2015 в примерах кода в руководстве.\n\nHTML\n\n\n\n // Вы можете указать конфигурацию хранилища при создании экземпляра класса\n const storage = window.Vue2Storage({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n });\n\n storage.set('key', 'value');\n console.log(storage.get('key')); // value\n\n // Конфигурация хранилища может быть изменена в любой момент.\n // Просто вызовите метод setOptions и передайте в него объект с настройками.\n storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value.repeat(2)\n });\n\n storage.set('key', 'value');\n console.log(storage.get('key')); // valuevalue\n\n\nJavaScript\n// Если вы используете модульную систему, то импортируйте класс Vue2Storage\nimport Vue from 'vue';\nimport Vue2Storage from 'vue2-storage';\n\n// Вы можете указать конфигурацию хранилища при создании экземпляра класса\nconst storage = Vue2Storage({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n});\n\nstorage.set('key', 'value');\nconsole.log(storage.get('key')); // value\n\n// Конфигурация хранилища может быть изменена в любой момент.\n// Просто вызовите метод setOptions и передайте в него объект с настройками.\nstorage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value.repeat(2)\n});\n\nstorage.set('key', 'value');\nconsole.log(storage.get('key')); // valuevalue\n\n"},"started.html":{"url":"started.html","title":"Начало использования","keywords":"","body":"Начало использования\n\nМы будем использовать ES2015 в примерах кода в руководстве.\n\nHTML\n\n\n\n\n\n\n // Вы можете указать конфигурацию плагина при подключении, передав в Vue.use вторым аргументом объект с настройками\n window.Vue.use(window.Vue2StoragePlugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n })\n\n new window.Vue({\n el: '#app',\n created () {\n // Конфигурация плагина может быть изменена в любой момент.\n // Просто вызовите метод setOptions и передайте в него объект с настройками.\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n });\n }\n }).$mount('#app')\n\n\nJavaScript\n\n\n// Если вы используете модульную систему (например via vue-cli), то импортируйте Vue и плагин Vue2Storage и подключите плагин через` Vue.use(Vue2Storage)`\nimport Vue from 'vue';\nimport { Plugin } from 'vue2-storage';\n\n// Вы можете указать конфигурацию плагина при подключении, передав в Vue.use вторым аргументом объект с настройками\nVue.use(Plugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n});\n\n// Приложение запустилось!\nnew Vue({\n el: '#app',\n created () {\n // Конфигурация плагина может быть изменена в любой момент.\n // Просто вызовите метод setOptions и передайте в него объект с настройками.\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n });\n }\n}).$mount('#app');\n\n"},"options.html":{"url":"options.html","title":"Настройки","keywords":"","body":"Настройки\nДля установки конфигурации плагин принимает объект определенного формата.\nprefix - строка, которая будет добавлено в начало ключа, для избежания коллизий. По-умолчанию app_.\ndriver - идентификатор используемого хранилища. Пока поддерживаются значения local, session и memory (localStorage, sessionStorage и memoryStorage соответственно). По-умолчанию local.\nttl - время жизни записи в миллисекундах. По-умолчанию 0 // отключает время жизни и запись будет храниться вечно.\nreplacer - функция-обработчик для значения, которое пишется в хранилище. Будет вызвана перед тем как данные будут записаны в хранилище. Имеет такую сигнатуру: (key: string, value: any) => any. По-умолчанию undefined.\n"},"api.html":{"url":"api.html","title":"API","keywords":"","body":"Методы\nsetOptions\nМетод позволяет переопределить настройки плагина после инициализации.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nconfig\nСтруктура описана здесь\nЗначения описаны здесь\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n })\n }\n}\n\nget\nМетод позволяет получить значение из хранилища по строковому ключу.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nfallback\n*\n\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.get('test')\n const fallback = this.$storage.get('unknown', 'fallback') // Not in storage\n console.log(data) // { key: 'value' }\n console.log(fallback) // \"fallback\"\n }\n}\n\nВозвращаемое значение: Any\nВ случае неудачи метод выбросит исключение StorageError\npull\nМетод позволяет извлечь значение и удалить его из хранилища, используя строковый ключ.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nfallback\n*\n\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.pull('test')\n const fallback = this.$storage.get('test', 'fallback') // Извлекаем и удаляем из хранилища\n console.log(data) // { key: 'value' }\n console.log(fallback) // \"fallback\"\n }\n}\n\nВозвращаемое значение: Any\nset\nМетод позволяет записать значение в хранилище, указав строковой ключ и время жизни.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\ndata\n*\n\n+\n\n\n\noptions\nObject\n{}\n-\n{ ttl: number }\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.get('test')\n console.log(data) // { key: 'value' }\n }\n}\n\nВ случае неудачи метод выбросит исключение StorageError\nremember\nМетод позволяет получить элемент. Если переданный ключ уже существует, то метод немедленно вернет его значение.\nВ противном случае переданная функция выполняется и ее возвращаемое значение сохраняется в хранилище перед его возвратом.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nclosure\nPromise\n\n+\n\n\n\noptions\nObject\n{}\n-\n{ ttl: number }\n\n\n\nПример:\nexport default {\n async created () {\n const data = await this.$storage.remember('test', async () => {\n // Делаем HTTP-запросы или другие асинхронные вещи\n return 'value'\n })\n console.log(data) // выведет \"value\"\n }\n}\n\nВозвращаемое значение: Any\nВ случае неудачи метод выбросит исключение StorageError\nremove\nМетод позволяет удалить значение из хранилища по строковому ключу.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.remove('test')\n const data = this.$storage.get('test')\n console.log(data) // null\n }\n}\n\nВ случае неудачи метод выбросит исключение StorageError\nclear\nМетод позволяет очистить хранилище.\nЕсли передан аргумент force со значением true, то будет очищено все хранилище.\nВ противном случае будут удалены только значения, ключ которых начинается с префикса, указанного в настройках.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nforce\nBoolean\nfalse\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.clear()\n const data = this.$storage.get('test')\n console.log(data) // null\n }\n}\n\nВ случае неудачи метод выбросит исключение StorageError\nhas\nМетод позволяет узнать существует ли в хранилище запись с указанным ключом.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const hasTest = this.$storage.has('test')\n const hasLol = this.$storage.has('lol')\n console.log(hasTest) // true\n console.log(hasLol) // false\n }\n}\n\nВозвращаемое значение: Boolean\nkey\nМетод возвращает значение по числовому индексу ключа.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nindex\nNumber\n\n+\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', 'value')\n const key = this.$storage.key(0)\n console.log(key) // 'value'\n }\n}\n\nВозвращаемое значение: Any\nВ случае неудачи метод выбросит исключение StorageError\nkeys\nМетод возвращает массив ключей хранилища.\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.set('lol', { key: 'value' }, { ttl: 60 * 1000 })\n const keys = this.$storage.keys()\n console.log(keys) // ['test', 'lol']\n }\n}\n\nВозвращаемое значение: Array\n\nСвойства\nlength\nВозвращает количество записей в хранилище.\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' })\n this.$storage.set('lol', { key: 'value' })\n console.log(this.$storage.length) // 2\n }\n}\n\nВозвращаемое значение: Number\n\nprefix\nВозвращает префикс записей в хранилище.\nПример:\nexport default {\n created () {\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n })\n console.log(this.$storage.prefix) // app_\n }\n}\n\nВозвращаемое значение: String\n"}}} \ No newline at end of file +{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["api","clear","introduct","javascript","key","length","prefix","pull","rememb","remov","set","setopt","storag","vue","vue.j","vue2","без","браузерным","для","документация","и","использование","использования","методы","настройки","начало","обертка","работы","с","свойства","установка","хранилищем"],"installation.html":["$","'app_',","'local',","'vue';","'vue2","(key,","*","/","//","1000,","24","60","=>","add","build","cd","cdn","clone","dev","driver:","git","github","https://github.com/yarkovaleksei/vue2","https://unpkg.com/vue2","ignor","import","instal","node_modules/vue2","npm","npm.","option","optional:","plugin","prefix:","replacer:","storag","storage';","storage,","storage.git","storage.j","storage/dist/vue2","storage@6.0.3/dist/vue2","ttl:","unpkg.com","url","valu","value)","vue","vue,","vue.use(plugin);","vue.use(plugin,","vue2","window.vue.use(window.vue2storageplugin)","yarn","{","}","});","адрес,","без","будет","вам","версию","версию.","версию/тег","всегда","вы","вышеуказанная","глобально.","делать","добавить","документации:","должны","если","загрузка","заодно","и","из","использовании","использовать","используйте","клонировать","конкретную","модульной","можете","можно","на","надо","например","не","непосредственно","нужно","опции","основе","пакет","пакета.","передать","планируете","подключении","подключите","после","последнюю","предоставляет","при","прямая","с","самостоятельно","системой","скриптов","собирать","согласно","ссылка","ссылки","также","то","указывает","установить","установка","флаг","хотите","часа","через","черезvue.use():","это","явно"],"vanilla.html":["'app_',","'local',","'value');","'vue';","'vue2","(key,","*","//","1000,","24","60","=","=>","console.log(storage.get('key'));","const","driver:","es2015","html","import","javascript","prefix:","replacer:","setopt","storag","storage';","storage.set('key',","storage.setoptions({","ttl:","valu","value)","value.repeat(2)","valuevalu","vue","vue2storag","vue2storage({","window.vue2storage({","});","без","будем","быть","в","вы","вызовите","если","и","изменена","импортируйте","использование","использовать","используете","класс","класса","кода","конфигурацию","конфигурация","любой","метод","модульную","может","можете","момент.","мы","настройками.","него","объект","передайте","при","примерах","просто","руководстве.","с","систему,","создании","то","указать","хранилища","часа","экземпляра"],"started.html":["'#app',","'app_',","'local',","'vue';","'vue2","()","(key,","(например","*","//","1000,","24","60","=>","cli),","creat","driver:","el:","es2015","html","import","javascript","new","plugin","prefix:","replacer:","setopt","storage';","this.$storage.setoptions({","ttl:","valu","value)","via","vue","vue({","vue.us","vue.use(plugin,","vue.use(vue2storage)`","vue2storag","window.vue({","window.vue.use(window.vue2storageplugin,","{","}","})","}).$mount('#app')","}).$mount('#app');","});","аргументом","будем","быть","в","вторым","вы","вызовите","если","запустилось!","и","изменена","импортируйте","использования","использовать","используете","кода","конфигурацию","конфигурация","любой","метод","модульную","может","можете","момент.","мы","настройками","настройками.","начало","него","объект","передав","передайте","плагин","плагина","подключении,","подключите","при","приложение","примерах","просто","руководстве.","с","систему","то","указать","часа","через`"],"options.html":["(key:","(localstorage,","//","0","=>","any)","any.","app_.","driver","local,","local.","memori","memorystorag","prefix","replac","session","sessionstorag","string,","ttl","undefined.","value:","будет","будут","в","вечно.","время","вызвана","данные","для","добавлено","жизни","записаны","записи","запись","значения","значения,","и","идентификатор","избежания","имеет","используемого","как","ключа,","коллизий.","конфигурации","которая","которое","миллисекундах.","настройки","начало","обработчик","объект","определенного","отключает","перед","пишется","плагин","по","поддерживаются","пока","принимает","сигнатуру:","соответственно).","строка,","такую","тем","умолчанию","установки","формата.","функция","хранилища.","хранилище.","храниться"],"api.html":["\"fallback\"","\"value\"","'app_',","'fallback')","'local',","'lol']","'value'","'value')","()","(key,","*","+","//","1000","1000,","2","24","60","=","=>","['test',","allow","api","app_","array","async","await","boolean","clear","closur","config","console.log(data)","console.log(fallback)","console.log(haslol)","console.log(hastest)","console.log(key)","console.log(keys)","console.log(this.$storage.length)","console.log(this.$storage.prefix)","const","creat","data","default","driver:","export","fallback","fals","forc","haslol","hastest","hour","http","index","javascript","key","key:","length","name","null","number","object","option","prefix","prefix:","promis","pull","rememb","remov","replacer:","requir","return","set","setopt","storag","storageerror","string","this.$storage.clear()","this.$storage.get('test')","this.$storage.get('test',","this.$storage.get('unknown',","this.$storage.has('lol')","this.$storage.has('test')","this.$storage.key(0)","this.$storage.keys()","this.$storage.pull('test')","this.$storage.remember('test',","this.$storage.remove('test')","this.$storage.set('lol',","this.$storage.set('test',","this.$storage.setoptions({","true","true,","ttl:","type","typescript","valu","value)","{","{}","}","})","},","аргумент","аргументы:","асинхронные","будет","будут","в","вернет","вещи","возвратом.","возвращаемое","возвращает","время","все","выбросит","выведет","выполняется","данных","делаем","другие","его","ее","если","жизни.","записать","записей","запись","запросы","здесь","значение","значение.","значение:","значением","значения","значения,","и","из","извлекаем","извлечь","или","индексу","инициализации.","исключение","используя","ключ","ключ.","ключа.","ключей","ключом.","ключу.","количество","которых","ли","массив","метод","методы","можно","настройках.","настройки","начинается","немедленно","неудачи","ожидаемых","описана","описаны","очистить","очищено","перед","передан","переданная","переданный","переопределить","плагина","по","позволяет","получить","после","префикс","префикса,","пример:","противном","с","свойства","случае","со","сохраняется","строковой","строковому","строковый","структура","существует","существует,","тип","то","только","удалены","удалить","удаляем","уже","узнать","указав","указанного","указанным","указать","функция","хранилища","хранилища,","хранилища.","хранилище","хранилище,","хранилище.","часа","числовому","элемент."]},"length":6},"tokenStore":{"root":{"0":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"1":{"0":{"0":{"0":{"docs":{"api.html":{"ref":"api.html","tf":0.010512483574244415}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}},"docs":{}},"docs":{}},"docs":{}},"2":{"4":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.03864734299516908},"started.html":{"ref":"started.html","tf":0.03508771929824561},"api.html":{"ref":"api.html","tf":0.005256241787122208}}},"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"6":{"0":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.03864734299516908},"started.html":{"ref":"started.html","tf":0.03508771929824561},"api.html":{"ref":"api.html","tf":0.01576872536136662}}},"docs":{}},"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":10}}},"p":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":0.005319148936170213}},"_":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"l":{"docs":{},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}},"n":{"docs":{},"y":{"docs":{},")":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},"s":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.012622720897615708}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"api.html":{"ref":"api.html","tf":0.005256241787122208}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.03571428571428571}}}}}}}},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001314060446780552}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.017341040462427744}}}}},"i":{"docs":{},")":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.015957446808510637},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}},"s":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.008415147265077139}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},"u":{"docs":{},"r":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.023121387283236993},"started.html":{"ref":"started.html","tf":0.02127659574468085}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.009198423127463863}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"s":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"api.html":{"ref":"api.html","tf":0.017082785808147174}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.017082785808147174}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"w":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}},"e":{"docs":{},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.06153846153846154},"api.html":{"ref":"api.html","tf":0.02890932982917214}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"l":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.010512483574244415}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":5.00531914893617},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}},"i":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"options.html":{"ref":"options.html","tf":0.015384615384615385}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497}}}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}}}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"t":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.001402524544179523}}},"e":{"docs":{},"m":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.06060606060606061},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.013140604467805518}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.005610098176718092}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.017082785808147174}}},"s":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"p":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"s":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"f":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077}},"e":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.023842917251051893}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.005319148936170213}},"a":{"docs":{},"r":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"options.html":{"ref":"options.html","tf":10.015384615384615},"api.html":{"ref":"api.html","tf":0.002628120893561104}},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.02127659574468085},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},"e":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}}},"s":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}},"u":{"docs":{},"g":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425},"options.html":{"ref":"options.html","tf":0.015384615384615385}},"i":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"o":{"docs":{},"v":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.005610098176718092}}},"y":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077},"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"y":{"docs":{},")":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"api.html":{"ref":"api.html","tf":0.004207573632538569}}}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.001314060446780552}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"started.html":{"ref":"started.html","tf":5.00531914893617}},"e":{"docs":{},"d":{"docs":{},"!":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}}}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.046875},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001314060446780552}},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.002805049088359046}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"j":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}}}}}}}}}}},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"docs":{}}}}}}}}}},"@":{"6":{"docs":{},".":{"0":{"docs":{},".":{"3":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"docs":{}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.00788436268068331}}}}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.009198423127463863}},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}},"i":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.005610098176718092}}}}}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.005780346820809248},"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}},"v":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},":":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}}}},"u":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.043209876543209874},"vanilla.html":{"ref":"vanilla.html","tf":3.3506743737957607},"started.html":{"ref":"started.html","tf":0.010638297872340425},"api.html":{"ref":"api.html","tf":0.004207573632538569}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}},"r":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.036458333333333336}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.0043859649122807015}},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}}}}}}}},"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":3.3429951690821254},"started.html":{"ref":"started.html","tf":0.013157894736842105}},".":{"docs":{},"j":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}},"u":{"docs":{},"s":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}},"`":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}},"docs":{}}}}}}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.03076923076923077},"api.html":{"ref":"api.html","tf":0.01445466491458607}},"e":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"2":{"docs":{},")":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}},"docs":{}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}},":":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.011220196353436185}}}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}}}},"i":{"docs":{},"a":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03571428571428571},"installation.html":{"ref":"installation.html","tf":0.012345679012345678},"vanilla.html":{"ref":"vanilla.html","tf":3.339113680154142}}}}}}},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}}}}}}}},"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},",":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.03076923076923077}}}}},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"h":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"$":{"docs":{"installation.html":{"ref":"installation.html","tf":0.041666666666666664}}},"'":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"_":{"docs":{},"'":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"l":{"docs":{},"'":{"docs":{},"]":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}},"docs":{},"'":{"docs":{},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{"api.html":{"ref":"api.html","tf":0.02102496714848883}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},";":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454}}}}}}}}}},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"'":{"docs":{},",":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}}}}}},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}}},":":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},")":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.01971090670170828}}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},".":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}}},"н":{"docs":{},"а":{"docs":{},"п":{"docs":{},"р":{"docs":{},"и":{"docs":{},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}},"*":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625},"vanilla.html":{"ref":"vanilla.html","tf":0.057971014492753624},"started.html":{"ref":"started.html","tf":0.05263157894736842},"api.html":{"ref":"api.html","tf":0.022339027595269383}}},"/":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"/":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.07246376811594203},"started.html":{"ref":"started.html","tf":0.05263157894736842},"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.03153745072273324}}}},"=":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"api.html":{"ref":"api.html","tf":0.017082785808147174}},">":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.005256241787122208}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.017082785808147174}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.016830294530154277}}}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.008415147265077139}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"s":{"2":{"0":{"1":{"5":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"l":{"docs":{},":":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}},"r":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.012345679012345678}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}},"c":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385},"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.008415147265077139}}}}}}}},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"api.html":{"ref":"api.html","tf":0.005256241787122208}}}}}}},"s":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839},"started.html":{"ref":"started.html","tf":0.02127659574468085},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"k":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"docs":{}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"l":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"options.html":{"ref":"options.html","tf":0.015384615384615385}}}}}}},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.002805049088359046}}}}}},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.018518518518518517}}}},"w":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"2":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}},"docs":{}}}}}}}}}}}}}}},"w":{"docs":{"started.html":{"ref":"started.html","tf":0.005319148936170213}}}},"p":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.020833333333333332}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.005256241787122208}}}}},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.001402524544179523}}}}}}},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}},"t":{"docs":{},"l":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.01576872536136662}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.011560693641618497},"started.html":{"ref":"started.html","tf":0.010638297872340425}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"{":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.005256241787122208}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"u":{"docs":{},"n":{"docs":{},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"l":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"(":{"0":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"docs":{}},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"api.html":{"ref":"api.html","tf":0.008415147265077139}}}}}},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.026041666666666668}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"installation.html":{"ref":"installation.html","tf":0.006172839506172839}}}}}}}}}},"{":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"started.html":{"ref":"started.html","tf":0.021929824561403508},"api.html":{"ref":"api.html","tf":0.06701708278580815}},"}":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}},"}":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.013157894736842105},"api.html":{"ref":"api.html","tf":0.040735873850197106}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.018396846254927726},"started.html":{"ref":"started.html","tf":0.0043859649122807015}},";":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"started.html":{"ref":"started.html","tf":0.013157894736842105}}},".":{"docs":{},"$":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"'":{"docs":{},")":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}},";":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}}}}}}}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.010512483574244415}}}},"ч":{"docs":{},"а":{"docs":{},"с":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"е":{"docs":{},"р":{"docs":{},"е":{"docs":{},"з":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}},"`":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}},"и":{"docs":{},"с":{"docs":{},"л":{"docs":{},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"м":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}},"\"":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"\"":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}},"+":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}}},"[":{"docs":{},"'":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"б":{"docs":{},"е":{"docs":{},"з":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":3.338164251207729}}}},"р":{"docs":{},"а":{"docs":{},"у":{"docs":{},"з":{"docs":{},"е":{"docs":{},"р":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}}}}}}}}}},"у":{"docs":{},"д":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"options.html":{"ref":"options.html","tf":0.03296703296703297},"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"м":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},"у":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"ы":{"docs":{},"т":{"docs":{},"ь":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}},"д":{"docs":{},"л":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.06060606060606061},"options.html":{"ref":"options.html","tf":0.03296703296703297}}}},"о":{"docs":{},"к":{"docs":{},"у":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}},"и":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}},"б":{"docs":{},"а":{"docs":{},"в":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"л":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"ы":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"е":{"docs":{},"л":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"е":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"х":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"р":{"docs":{},"у":{"docs":{},"г":{"docs":{},"и":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}},"и":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.03296703296703297},"api.html":{"ref":"api.html","tf":0.005256241787122208}},"с":{"docs":{},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"з":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"vanilla.html":{"ref":"vanilla.html","tf":3.338164251207729}}},"я":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"started.html":{"ref":"started.html","tf":5.004385964912281}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.020833333333333332},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}},"у":{"docs":{},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"е":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},"м":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.00788436268068331}}}}}}}}}}},"з":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"api.html":{"ref":"api.html","tf":0.005256241787122208}},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"е":{"docs":{},"н":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}}},"б":{"docs":{},"е":{"docs":{},"ж":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"в":{"docs":{},"л":{"docs":{},"е":{"docs":{},"к":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"ч":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"м":{"docs":{},"п":{"docs":{},"о":{"docs":{},"р":{"docs":{},"т":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}},"е":{"docs":{},"е":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"д":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},"и":{"docs":{},"ф":{"docs":{},"и":{"docs":{},"к":{"docs":{},"а":{"docs":{},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}},"л":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}},"н":{"docs":{},"д":{"docs":{},"е":{"docs":{},"к":{"docs":{},"с":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"и":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"а":{"docs":{},"л":{"docs":{},"и":{"docs":{},"з":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}}}}},"м":{"docs":{},"е":{"docs":{},"т":{"docs":{},"о":{"docs":{},"д":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.022339027595269383}},"ы":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"о":{"docs":{},"д":{"docs":{},"у":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},"й":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"у":{"docs":{},"ю":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"ж":{"docs":{},"е":{"docs":{},"т":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}}},"ы":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}},"и":{"docs":{},"л":{"docs":{},"л":{"docs":{},"и":{"docs":{},"с":{"docs":{},"е":{"docs":{},"к":{"docs":{},"у":{"docs":{},"н":{"docs":{},"д":{"docs":{},"а":{"docs":{},"х":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}}},"а":{"docs":{},"с":{"docs":{},"с":{"docs":{},"и":{"docs":{},"в":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"н":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625}},"с":{"docs":{},"т":{"docs":{},"р":{"docs":{},"о":{"docs":{},"й":{"docs":{},"к":{"docs":{},"и":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"options.html":{"ref":"options.html","tf":10.010989010989011},"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"а":{"docs":{},"м":{"docs":{},"и":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"х":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}},"ч":{"docs":{},"а":{"docs":{},"л":{"docs":{},"о":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"started.html":{"ref":"started.html","tf":5.004385964912281},"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}},"и":{"docs":{},"н":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"д":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"п":{"docs":{},"р":{"docs":{},"и":{"docs":{},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},"п":{"docs":{},"о":{"docs":{},"с":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}}}},"г":{"docs":{},"о":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"м":{"docs":{},"е":{"docs":{},"д":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"у":{"docs":{},"д":{"docs":{},"а":{"docs":{},"ч":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.00788436268068331}}}}}}}},"у":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}},"о":{"docs":{},"б":{"docs":{},"е":{"docs":{},"р":{"docs":{},"т":{"docs":{},"к":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}}}}}},"ъ":{"docs":{},"е":{"docs":{},"к":{"docs":{},"т":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.017543859649122806},"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"р":{"docs":{},"а":{"docs":{},"б":{"docs":{},"о":{"docs":{},"т":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"к":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}},"п":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"а":{"docs":{},"н":{"docs":{},"а":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"с":{"docs":{},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"т":{"docs":{},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}},"ж":{"docs":{},"и":{"docs":{},"д":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{},"ы":{"docs":{},"х":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"ч":{"docs":{},"и":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"щ":{"docs":{},"е":{"docs":{},"н":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"р":{"docs":{},"а":{"docs":{},"б":{"docs":{},"о":{"docs":{},"т":{"docs":{},"ы":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}}}}}},"у":{"docs":{},"к":{"docs":{},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"д":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},".":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}}}}},"с":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.002628120893561104}},"в":{"docs":{},"о":{"docs":{},"й":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"а":{"docs":{},"м":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{},"я":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"т":{"docs":{},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"й":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"у":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}},",":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}}}}}}}},"г":{"docs":{},"н":{"docs":{},"а":{"docs":{},"т":{"docs":{},"у":{"docs":{},"р":{"docs":{},"у":{"docs":{},":":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}},"к":{"docs":{},"р":{"docs":{},"и":{"docs":{},"п":{"docs":{},"т":{"docs":{},"о":{"docs":{},"в":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},"б":{"docs":{},"и":{"docs":{},"р":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"г":{"docs":{},"л":{"docs":{},"а":{"docs":{},"с":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"з":{"docs":{},"д":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}}}},"о":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},")":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}}}},"х":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}},"с":{"docs":{},"ы":{"docs":{},"л":{"docs":{},"к":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"т":{"docs":{},"р":{"docs":{},"о":{"docs":{},"к":{"docs":{},"а":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"м":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}},"ы":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"у":{"docs":{},"к":{"docs":{},"т":{"docs":{},"у":{"docs":{},"р":{"docs":{},"а":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"л":{"docs":{},"у":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.010512483574244415}}}}}}},"у":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}},"у":{"docs":{},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"к":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.030303030303030304},"installation.html":{"ref":"installation.html","tf":10.005208333333334}}},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"в":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"ы":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"м":{"docs":{},"о":{"docs":{},"л":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"ю":{"docs":{"options.html":{"ref":"options.html","tf":0.04395604395604396}}}}}}}}}},"д":{"docs":{},"а":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}},"я":{"docs":{},"е":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"ж":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"з":{"docs":{},"н":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"х":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"л":{"docs":{},"и":{"docs":{},"щ":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}},"м":{"docs":{"./":{"ref":"./","tf":0.030303030303030304}}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.02197802197802198},"api.html":{"ref":"api.html","tf":0.005256241787122208}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.01932367149758454},"api.html":{"ref":"api.html","tf":0.003942181340341655}},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}},"о":{"docs":{},"т":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"а":{"docs":{},"д":{"docs":{},"р":{"docs":{},"е":{"docs":{},"с":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"р":{"docs":{},"г":{"docs":{},"у":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},"о":{"docs":{},"м":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}},"ы":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}}}}}}}}}}},"с":{"docs":{},"и":{"docs":{},"н":{"docs":{},"х":{"docs":{},"р":{"docs":{},"о":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}}}}}},"в":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.028985507246376812},"started.html":{"ref":"started.html","tf":0.03508771929824561},"options.html":{"ref":"options.html","tf":0.04395604395604396},"api.html":{"ref":"api.html","tf":0.018396846254927726}},"а":{"docs":{},"м":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}},"е":{"docs":{},"р":{"docs":{},"с":{"docs":{},"и":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}},"/":{"docs":{},"т":{"docs":{},"е":{"docs":{},"г":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"н":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"ч":{"docs":{},"н":{"docs":{},"о":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"щ":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}},"с":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},"г":{"docs":{},"д":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}},"ы":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625},"vanilla.html":{"ref":"vanilla.html","tf":0.014492753623188406},"started.html":{"ref":"started.html","tf":0.013157894736842105}},"ш":{"docs":{},"е":{"docs":{},"у":{"docs":{},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"а":{"docs":{},"я":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}}},"з":{"docs":{},"о":{"docs":{},"в":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"а":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}},"б":{"docs":{},"р":{"docs":{},"о":{"docs":{},"с":{"docs":{},"и":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.00788436268068331}}}}}}}},"в":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"н":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"ы":{"docs":{},"м":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}},"р":{"docs":{},"е":{"docs":{},"м":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.02197802197802198},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"о":{"docs":{},"з":{"docs":{},"в":{"docs":{},"р":{"docs":{},"а":{"docs":{},"т":{"docs":{},"о":{"docs":{},"м":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}},"щ":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.011826544021024968}}}}},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.005256241787122208}}}}}}}}}}}},"г":{"docs":{},"л":{"docs":{},"о":{"docs":{},"б":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}},"е":{"docs":{},"с":{"docs":{},"л":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015625},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}},"г":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.003942181340341655}}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"з":{"docs":{},"а":{"docs":{},"г":{"docs":{},"р":{"docs":{},"у":{"docs":{},"з":{"docs":{},"к":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"о":{"docs":{},"д":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"п":{"docs":{},"у":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"л":{"docs":{},"о":{"docs":{},"с":{"docs":{},"ь":{"docs":{},"!":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"а":{"docs":{},"н":{"docs":{},"ы":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},"ь":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"е":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}},"р":{"docs":{},"о":{"docs":{},"с":{"docs":{},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}},"н":{"docs":{},"а":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.00788436268068331}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.010512483574244415}}},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"д":{"docs":{},"е":{"docs":{},"с":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"к":{"docs":{},"л":{"docs":{},"о":{"docs":{},"н":{"docs":{},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}},"а":{"docs":{},"с":{"docs":{},"с":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135}},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}},"ю":{"docs":{},"ч":{"docs":{"api.html":{"ref":"api.html","tf":0.003942181340341655}},"а":{"docs":{},",":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}},"е":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"о":{"docs":{},"м":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"у":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}},"о":{"docs":{},"н":{"docs":{},"к":{"docs":{},"р":{"docs":{},"е":{"docs":{},"т":{"docs":{},"н":{"docs":{},"у":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}},"ф":{"docs":{},"и":{"docs":{},"г":{"docs":{},"у":{"docs":{},"р":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"ю":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}},"я":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}},"д":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},"л":{"docs":{},"л":{"docs":{},"и":{"docs":{},"з":{"docs":{},"и":{"docs":{},"й":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}},"и":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"а":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"о":{"docs":{},"е":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"ы":{"docs":{},"х":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"а":{"docs":{},"к":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}},"п":{"docs":{},"а":{"docs":{},"к":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}},"а":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}},"е":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"в":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}},"н":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},"н":{"docs":{},"а":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"ы":{"docs":{},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"о":{"docs":{},"п":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"л":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}}}}}}},"л":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}}}},"г":{"docs":{},"и":{"docs":{},"н":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403},"options.html":{"ref":"options.html","tf":0.01098901098901099}},"а":{"docs":{"started.html":{"ref":"started.html","tf":0.017543859649122806},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}},"о":{"docs":{"options.html":{"ref":"options.html","tf":0.04395604395604396},"api.html":{"ref":"api.html","tf":0.003942181340341655}},"д":{"docs":{},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}},",":{"docs":{"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}}},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"д":{"docs":{},"е":{"docs":{},"р":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}}}}}}},"с":{"docs":{},"л":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333},"api.html":{"ref":"api.html","tf":0.001314060446780552}},"д":{"docs":{},"н":{"docs":{},"ю":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}}}}}},"к":{"docs":{},"а":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"з":{"docs":{},"в":{"docs":{},"о":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.010512483574244415}}}}}}}}},"л":{"docs":{},"у":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}}}}}}}},"ф":{"docs":{},"и":{"docs":{},"к":{"docs":{},"с":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}},"а":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{},"а":{"docs":{},"х":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.01576872536136662}}}}}},"л":{"docs":{},"о":{"docs":{},"ж":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"started.html":{"ref":"started.html","tf":0.0043859649122807015}}}}}}}}},"н":{"docs":{},"и":{"docs":{},"м":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"я":{"docs":{},"м":{"docs":{},"а":{"docs":{},"я":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}},"т":{"docs":{},"и":{"docs":{},"в":{"docs":{},"н":{"docs":{},"о":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.002628120893561104}}}}}}}}}},"и":{"docs":{},"ш":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"т":{"docs":{},"а":{"docs":{},"к":{"docs":{},"ж":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"у":{"docs":{},"ю":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666},"vanilla.html":{"ref":"vanilla.html","tf":0.004830917874396135},"started.html":{"ref":"started.html","tf":0.0043859649122807015},"api.html":{"ref":"api.html","tf":0.002628120893561104}},"л":{"docs":{},"ь":{"docs":{},"к":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}},"е":{"docs":{},"м":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}},"и":{"docs":{},"п":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}},"ф":{"docs":{},"л":{"docs":{},"а":{"docs":{},"г":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010416666666666666}}}}},"о":{"docs":{},"р":{"docs":{},"м":{"docs":{},"а":{"docs":{},"т":{"docs":{},"а":{"docs":{},".":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099}}}}}}}}},"у":{"docs":{},"н":{"docs":{},"к":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"я":{"docs":{"options.html":{"ref":"options.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"э":{"docs":{},"т":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}},"к":{"docs":{},"з":{"docs":{},"е":{"docs":{},"м":{"docs":{},"п":{"docs":{},"л":{"docs":{},"я":{"docs":{},"р":{"docs":{},"а":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227}}}}}}}}}}},"л":{"docs":{},"е":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}}},"я":{"docs":{},"в":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.005208333333333333}}}}}},"л":{"docs":{},"ю":{"docs":{},"б":{"docs":{},"о":{"docs":{},"й":{"docs":{"vanilla.html":{"ref":"vanilla.html","tf":0.00966183574879227},"started.html":{"ref":"started.html","tf":0.008771929824561403}}}}}},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}},"ж":{"docs":{},"и":{"docs":{},"з":{"docs":{},"н":{"docs":{},"и":{"docs":{"options.html":{"ref":"options.html","tf":0.02197802197802198}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.001314060446780552}}}}}}}}},"length":1082},"corpusTokens":["\"fallback\"","\"value\"","$","'#app',","'app_',","'fallback')","'local',","'lol']","'value'","'value')","'value');","'vue';","'vue2","()","(e.g.","(key,","(key:","(localstorage,","(например","*","+","/","//","0","1000","1000,","2","24","60","=","=>","['test',","abov","accept","accord","ad","add","allow","alreadi","alway","any)","any.","anymor","api","app","app_","app_.","argument","arguments:","array","async","avoid","await","base","befor","begin","boolean","browser","build","build.","call","case","cd","cdn","certain","chang","class","clear","cleared.","cli),","clone","closur","code","collisions.","config","configur","configuration,","connecting,","console.log(data)","console.log(fallback)","console.log(haslol)","console.log(hastest)","console.log(key)","console.log(keys)","console.log(storage.get('key'));","console.log(this.$storage.length)","console.log(this.$storage.prefix)","const","creat","data","default","delet","deleted.","describ","dev","direct","directli","disabl","document","documentation:","don't","download","driver","driver:","el:","entir","entri","es2015","example:","except","execut","exist","expect","explicitli","export","failure,","fallback","fals","find","flag","forc","forever.","format.","function","get","git","github","given","global","guide.","handler","haslol","hastest","here","hour","html","http","https://github.com/yarkovaleksei/vue2","https://unpkg.com/vue2","identifi","ignor","immedi","import","includ","index","index.","initialization.","instal","instanti","introduct","it.","item.","javascript","kept","key","key.","key:","keys.","latest","length","lifetim","lifetime.","link","links.","local,","local.","memori","memorystorag","method","milliseconds.","modul","modular","name","need","new","node_modules/vue2","now","npm","npm.","null","number","numer","object","option","optional:","otherwis","otherwise,","out","output","overrid","packag","pass","plan","plug","plugin","point","prefix","prefix:","promis","properti","provid","pull","record","releas","rememb","remov","replac","replacer:","repositori","repository.","requir","respectively).","retriev","return","sampl","save","script","second","session","sessionstorag","set","setopt","signature:","specif","specifi","start","started!","storag","storage';","storage,","storage.","storage.git","storage.j","storage.set('key',","storage.setoptions({","storage/dist/vue2","storage@6.0.3/dist/vue2","storageerror","store","store.","string","string,","structur","stuff","such","support","system","system,","tags.","this.$storage.clear()","this.$storage.get('test')","this.$storage.get('test',","this.$storage.get('unknown',","this.$storage.has('lol')","this.$storage.has('test')","this.$storage.key(0)","this.$storage.keys()","this.$storage.pull('test')","this.$storage.remember('test',","this.$storage.remove('test')","this.$storage.set('lol',","this.$storage.set('test',","this.$storage.setoptions({","throw","time.","true","true,","ttl","ttl:","type","typescript","undefined.","unpkg.com","url","us","used.","valu","value)","value.","value.repeat(2)","value:","valuevalu","version/tag","via","vue","vue({","vue,","vue.j","vue.us","vue.use():","vue.use(plugin);","vue.use(plugin,","vue.use(vue2storage).","vue.use(vue2storage)`","vue2","vue2storag","vue2storage({","want","whether","whose","window.vue({","window.vue.use(window.vue2storageplugin)","window.vue.use(window.vue2storageplugin,","window.vue2storage({","without","write","written","yarn","yourself","{","{}","}","})","}).$mount('#app')","}).$mount('#app');","});","},","адрес,","аргумент","аргументом","аргументы:","асинхронные","без","браузерным","будем","будет","будут","быть","в","вам","вернет","версию","версию.","версию/тег","вечно.","вещи","возвратом.","возвращаемое","возвращает","время","все","всегда","вторым","вы","выбросит","выведет","вызвана","вызовите","выполняется","вышеуказанная","глобально.","данные","данных","делаем","делать","для","добавить","добавлено","документации:","документация","должны","другие","его","ее","если","жизни","жизни.","загрузка","заодно","записаны","записать","записей","записи","запись","запросы","запустилось!","здесь","значение","значение.","значение:","значением","значения","значения,","и","идентификатор","из","избежания","извлекаем","извлечь","изменена","или","имеет","импортируйте","индексу","инициализации.","исключение","использование","использовании","использования","использовать","используемого","используете","используйте","используя","как","класс","класса","клонировать","ключ","ключ.","ключа,","ключа.","ключей","ключом.","ключу.","кода","количество","коллизий.","конкретную","конфигурации","конфигурацию","конфигурация","которая","которое","которых","ли","любой","массив","метод","методы","миллисекундах.","модульной","модульную","может","можете","можно","момент.","мы","на","надо","например","настройками","настройками.","настройках.","настройки","начало","начинается","не","него","немедленно","непосредственно","неудачи","нужно","обертка","обработчик","объект","ожидаемых","описана","описаны","определенного","опции","основе","отключает","очистить","очищено","пакет","пакета.","перед","передав","передайте","передан","переданная","переданный","передать","переопределить","пишется","плагин","плагина","планируете","по","поддерживаются","подключении","подключении,","подключите","позволяет","пока","получить","после","последнюю","предоставляет","префикс","префикса,","при","приложение","пример:","примерах","принимает","просто","противном","прямая","работы","руководстве.","с","самостоятельно","свойства","сигнатуру:","системой","систему","систему,","скриптов","случае","со","собирать","согласно","создании","соответственно).","сохраняется","ссылка","ссылки","строка,","строковой","строковому","строковый","структура","существует","существует,","также","такую","тем","тип","то","только","удалены","удалить","удаляем","уже","узнать","указав","указанного","указанным","указать","указывает","умолчанию","установить","установка","установки","флаг","формата.","функция","хотите","хранилища","хранилища,","хранилища.","хранилище","хранилище,","хранилище.","хранилищем","храниться","часа","через","через`","черезvue.use():","числовому","экземпляра","элемент.","это","явно"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"vue2-storage документация\n\nОбертка для работы с браузерным хранилищем для JavaScript и Vue.js\n\n\nУстановка\nИспользование без Vue\nНачало использования\nНастройки\nAPI\nМетоды\nsetOptions\nget\npull\nset\nremember\nremove\nclear\nhas\nkey\nkeys\n\n\nСвойства\nlength\nprefix\n\n\n\n\n\n"},"installation.html":{"url":"installation.html","title":"Установка","keywords":"","body":"Установка\nПрямая загрузка / CDN\nhttps://unpkg.com/vue2-storage/dist/vue2-storage\nunpkg.com предоставляет ссылки на CDN на основе NPM. Вышеуказанная ссылка всегда указывает на последнюю версию NPM пакета. Вы также можете использовать конкретную версию/тег через URL-адрес, например https://unpkg.com/vue2-storage@6.0.3/dist/vue2-storage.js\nПодключите vue2-storage после Vue и используйте согласно документации:\n\n\n\n window.Vue.use(window.Vue2StoragePlugin)\n\n\nNPM\n$ npm install vue2-storage\n\nЕсли планируете использовать пакет без Vue, то надо добавить флаг --no-optional:\n$ npm install --no-optional vue2-storage\n\nYarn\n$ yarn add vue2-storage\n\nЕсли планируете использовать пакет без Vue, то надо добавить флаг --ignore-optional:\n$ yarn add --ignore-optional vue2-storage\n\nПри использовании с модульной системой вы должны явно установить vue2-storage черезVue.use():\nimport Vue from 'vue';\nimport { Plugin } from 'vue2-storage';\n\nVue.use(Plugin);\n// Можно заодно передать опции\nVue.use(Plugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n});\n\nВам не нужно делать это при подключении скриптов глобально.\nDev Build\nВам нужно будет клонировать непосредственно из GitHub и самостоятельно собирать vue2-storage, если\nвы хотите использовать последнюю dev версию.\n$ git clone https://github.com/yarkovaleksei/vue2-storage.git node_modules/vue2-storage\n$ cd node_modules/vue2-storage\n$ yarn\n$ yarn build\n\n"},"vanilla.html":{"url":"vanilla.html","title":"Использование без Vue","keywords":"","body":"Использование без Vue\n\nМы будем использовать ES2015 в примерах кода в руководстве.\n\nHTML\n\n\n\n // Вы можете указать конфигурацию хранилища при создании экземпляра класса\n const storage = window.Vue2Storage({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n });\n\n storage.set('key', 'value');\n console.log(storage.get('key')); // value\n\n // Конфигурация хранилища может быть изменена в любой момент.\n // Просто вызовите метод setOptions и передайте в него объект с настройками.\n storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value.repeat(2)\n });\n\n storage.set('key', 'value');\n console.log(storage.get('key')); // valuevalue\n\n\nJavaScript\n// Если вы используете модульную систему, то импортируйте класс Vue2Storage\nimport Vue from 'vue';\nimport Vue2Storage from 'vue2-storage';\n\n// Вы можете указать конфигурацию хранилища при создании экземпляра класса\nconst storage = Vue2Storage({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n});\n\nstorage.set('key', 'value');\nconsole.log(storage.get('key')); // value\n\n// Конфигурация хранилища может быть изменена в любой момент.\n// Просто вызовите метод setOptions и передайте в него объект с настройками.\nstorage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value.repeat(2)\n});\n\nstorage.set('key', 'value');\nconsole.log(storage.get('key')); // valuevalue\n\n"},"started.html":{"url":"started.html","title":"Начало использования","keywords":"","body":"Начало использования\n\nМы будем использовать ES2015 в примерах кода в руководстве.\n\nHTML\n\n\n\n\n\n\n // Вы можете указать конфигурацию плагина при подключении, передав в Vue.use вторым аргументом объект с настройками\n window.Vue.use(window.Vue2StoragePlugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n })\n\n new window.Vue({\n el: '#app',\n created () {\n // Конфигурация плагина может быть изменена в любой момент.\n // Просто вызовите метод setOptions и передайте в него объект с настройками.\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n });\n }\n }).$mount('#app')\n\n\nJavaScript\n\n\n// Если вы используете модульную систему (например via vue-cli), то импортируйте Vue и плагин Vue2Storage и подключите плагин через` Vue.use(Vue2Storage)`\nimport Vue from 'vue';\nimport { Plugin } from 'vue2-storage';\n\n// Вы можете указать конфигурацию плагина при подключении, передав в Vue.use вторым аргументом объект с настройками\nVue.use(Plugin, {\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n});\n\n// Приложение запустилось!\nnew Vue({\n el: '#app',\n created () {\n // Конфигурация плагина может быть изменена в любой момент.\n // Просто вызовите метод setOptions и передайте в него объект с настройками.\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n });\n }\n}).$mount('#app');\n\n"},"options.html":{"url":"options.html","title":"Настройки","keywords":"","body":"Настройки\nДля установки конфигурации плагин принимает объект определенного формата.\nprefix - строка, которая будет добавлено в начало ключа, для избежания коллизий. По-умолчанию app_.\ndriver - идентификатор используемого хранилища. Пока поддерживаются значения local, session и memory (localStorage, sessionStorage и memoryStorage соответственно). По-умолчанию local.\nttl - время жизни записи в миллисекундах. По-умолчанию 0 // отключает время жизни и запись будет храниться вечно.\nreplacer - функция-обработчик для значения, которое пишется в хранилище. Будет вызвана перед тем как данные будут записаны в хранилище. Имеет такую сигнатуру: (key: string, value: any) => any. По-умолчанию undefined.\n"},"api.html":{"url":"api.html","title":"API","keywords":"","body":"Методы\nsetOptions\nМетод позволяет переопределить настройки плагина после инициализации.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nconfig\nСтруктура описана здесь\nЗначения описаны здесь\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 часа\n replacer: (key, value) => value\n })\n }\n}\n\nget\nМетод позволяет получить значение из хранилища по строковому ключу.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nfallback\n*\n\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.get('test')\n const fallback = this.$storage.get('unknown', 'fallback') // Not in storage\n console.log(data) // { key: 'value' }\n console.log(fallback) // \"fallback\"\n }\n}\n\nВозвращаемое значение: Any\nВ случае неудачи метод выбросит исключение StorageError\npull\nМетод позволяет извлечь значение и удалить его из хранилища, используя строковый ключ.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nfallback\n*\n\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.pull('test')\n const fallback = this.$storage.get('test', 'fallback') // Извлекаем и удаляем из хранилища\n console.log(data) // { key: 'value' }\n console.log(fallback) // \"fallback\"\n }\n}\n\nВозвращаемое значение: Any\nset\nМетод позволяет записать значение в хранилище, указав строковой ключ и время жизни.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\ndata\n*\n\n+\n\n\n\noptions\nObject\n{}\n-\n{ ttl: number }\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const data = this.$storage.get('test')\n console.log(data) // { key: 'value' }\n }\n}\n\nВ случае неудачи метод выбросит исключение StorageError\nremember\nМетод позволяет получить элемент. Если переданный ключ уже существует, то метод немедленно вернет его значение.\nВ противном случае переданная функция выполняется и ее возвращаемое значение сохраняется в хранилище перед его возвратом.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nclosure\nPromise\n\n+\n\n\n\noptions\nObject\n{}\n-\n{ ttl: number }\n\n\n\nПример:\n// JavaScript\nexport default {\n async created () {\n const data = await this.$storage.remember('test', async () => {\n // Делаем HTTP-запросы или другие асинхронные вещи\n return 'value'\n })\n console.log(data) // выведет \"value\"\n }\n}\n\n// TypeScript\nexport default {\n async created () {\n // Можно указать тип ожидаемых данных\n const data = await this.$storage.remember('test', async () => {\n // Делаем HTTP-запросы или другие асинхронные вещи\n return 'value'\n })\n console.log(data) // выведет \"value\"\n }\n}\n\nВозвращаемое значение: Any\nВ случае неудачи метод выбросит исключение StorageError\nremove\nМетод позволяет удалить значение из хранилища по строковому ключу.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.remove('test')\n const data = this.$storage.get('test')\n console.log(data) // null\n }\n}\n\nВ случае неудачи метод выбросит исключение StorageError\nclear\nМетод позволяет очистить хранилище.\nЕсли передан аргумент force со значением true, то будет очищено все хранилище.\nВ противном случае будут удалены только значения, ключ которых начинается с префикса, указанного в настройках.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nforce\nBoolean\nfalse\n-\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.clear()\n const data = this.$storage.get('test')\n console.log(data) // null\n }\n}\n\nВ случае неудачи метод выбросит исключение StorageError\nhas\nМетод позволяет узнать существует ли в хранилище запись с указанным ключом.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nkey\nString\n\n+\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n const hasTest = this.$storage.has('test')\n const hasLol = this.$storage.has('lol')\n console.log(hasTest) // true\n console.log(hasLol) // false\n }\n}\n\nВозвращаемое значение: Boolean\nkey\nМетод возвращает значение по числовому индексу ключа.\nАргументы:\n\n\n\nname\ntype\ndefault\nrequired\nallow values\n\n\n\n\nindex\nNumber\n\n+\n\n\n\nПример:\nexport default {\n created () {\n this.$storage.set('test', 'value')\n const key = this.$storage.key(0)\n console.log(key) // 'value'\n }\n}\n\nВозвращаемое значение: Any\nВ случае неудачи метод выбросит исключение StorageError\nkeys\nМетод возвращает массив ключей хранилища.\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' }, { ttl: 60 * 1000 })\n this.$storage.set('lol', { key: 'value' }, { ttl: 60 * 1000 })\n const keys = this.$storage.keys()\n console.log(keys) // ['test', 'lol']\n }\n}\n\nВозвращаемое значение: Array\n\nСвойства\nlength\nВозвращает количество записей в хранилище.\nПример:\nexport default {\n created () {\n this.$storage.set('test', { key: 'value' })\n this.$storage.set('lol', { key: 'value' })\n console.log(this.$storage.length) // 2\n }\n}\n\nВозвращаемое значение: Number\n\nprefix\nВозвращает префикс записей в хранилище.\nПример:\nexport default {\n created () {\n this.$storage.setOptions({\n prefix: 'app_',\n driver: 'local',\n ttl: 60 * 60 * 24 * 1000, // 24 hours\n replacer: (key, value) => value\n })\n console.log(this.$storage.prefix) // app_\n }\n}\n\nВозвращаемое значение: String\n"}}} \ No newline at end of file diff --git a/gitbook/book.json b/gitbook/book.json index c1b3969..57cb487 100644 --- a/gitbook/book.json +++ b/gitbook/book.json @@ -19,6 +19,6 @@ }, "variables": { "packageName": "vue2-storage", - "packageVersion": "6.0.0" + "packageVersion": "6.0.3" } } diff --git a/package.json b/package.json index e2fbfdf..7bacd8a 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "memoryStorage", "sessionStorage" ], - "version": "6.0.0", + "version": "6.0.3", "license": "MIT", "author": { "name": "Yarkov Aleksey",