diff --git a/.circleci/config.yml b/.circleci/config.yml index bc97bc170..7a6f72e96 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,7 @@ jobs: build: docker: # specify the version you desire here - - image: circleci/node:10.15.1 + - image: circleci/node:14.6.0 # Specify service dependencies here if necessary # CircleCI maintains a library of pre-built images @@ -20,28 +20,28 @@ jobs: - checkout # Download and cache dependencies - - restore_cache: - keys: - - v1-dependencies-{{ checksum "package.json" }} - # fallback to using the latest cache if no exact match is found - - v1-dependencies- + # - restore_cache: + # keys: + # - v1-dependencies-{{ checksum "package.json" }} + # # fallback to using the latest cache if no exact match is found + # - v1-dependencies- - - run: npm install + - run: npx lerna bootstrap - - save_cache: - paths: - - node_modules - key: v1-dependencies-{{ checksum "package.json" }} + # - save_cache: + # paths: + # - node_modules + # key: v1-dependencies-{{ checksum "package.json" }} - # run tests! - - run: npm run lint:formatting + # run tests! + #- run: npm run lint:formatting - - run: npm test + - run: npx lerna run build - - run: npm run build + - run: npx lerna run test - - run: npm run codecovUpload + - run: npx lerna run codecovUpload - store_artifacts: path: docs - destination: docs \ No newline at end of file + destination: docs diff --git a/.eslintrc.js b/.eslintrc.js index d302f34f1..28a2f3a47 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,146 +1,9 @@ module.exports = { - "extends": [ - "eslint:recommended", - "airbnb-base", - "plugin:import/errors", - "plugin:import/warnings", - "plugin:import/typescript", - "plugin:@typescript-eslint/eslint-recommended", - "plugin:@typescript-eslint/recommended", - "plugin:@typescript-eslint/recommended-requiring-type-checking", - "prettier/@typescript-eslint" - - ], - "parser": "@typescript-eslint/parser", - "parserOptions": { - "project": "./tsconfig.json", - "tsconfigRootDir": __dirname - }, - "plugins": [ - "import", - "@typescript-eslint" - ], - "settings": { - "import/parsers": { - "@typescript-eslint/parser": [ ".ts" ] - }, - "import/resolver": { "typescript": {} } - }, - "env": { - "browser": true, - "node": true - }, - "rules": { - "no-tabs": 0, - "no-restricted-globals": 0, - "no-buffer-constructor": 0, - "no-mixed-operators": 0, - "no-plusplus": 0, - "no-bitwise": 0, - "prefer-promise-reject-errors": 0, - "class-methods-use-this": 0, - "prefer-destructuring": 0, - "no-prototype-builtins": 0, - "comma-dangle": "off", - "quotes": [2, "single"], - "eol-last": 2, - "no-debugger": 1, - "no-mixed-requires": 0, - "no-underscore-dangle": 0, - "no-multi-spaces": 0, - "no-trailing-spaces": 0, - "no-extra-boolean-cast": 0, - "no-undef": 2, - "no-var": 2, - "no-param-reassign": 0, - "no-else-return": 0, - "no-console": 0, - "prefer-const": 2, - "new-cap": 0, - "semi": 0, - "valid-jsdoc": "off", - "object-curly-newline": "off", - "arrow-parens": "off", - "function-paren-newline": 0, - "max-classes-per-file": "off", - "prefer-object-spread": "off", - "no-multiple-empty-lines": "off", - "no-shadow": "off", - "no-use-before-define": "off", - "no-return-await": "off", - "no-useless-constructor": "off", - "indent": [2, 2, { - "FunctionDeclaration" : { "parameters": "first" }, - "FunctionExpression" : { "parameters": "first" }, - "ObjectExpression": "first", - "ArrayExpression": "first", - "ImportDeclaration": "first", - "CallExpression": { "arguments": "first" } - }], - "@typescript-eslint/explicit-member-accessibility": "off", - "@typescript-eslint/explicit-function-return-type": "off", - "@typescript-eslint/class-name-casing": "off", - "@typescript-eslint/camelcase": "off", - "@typescript-eslint/array-type": "off", - "@typescript-eslint/member-delimiter-style": "off", - "@typescript-eslint/no-angle-bracket-type-assertion": "off", - "@typescript-eslint/prefer-interface": "off", - "@typescript-eslint/no-use-before-define": "off", - "@typescript-eslint/no-inferrable-types": "off", - "@typescript-eslint/ban-ts-ignore": "off", - "@typescript-eslint/consistent-type-assertions": "off", - "@typescript-eslint/prefer-regexp-exec": "off", - "@typescript-eslint/no-useless-constructor": "error", - "@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }], - "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/no-misused-promises": "error", - "@typescript-eslint/no-floating-promises": "error", - "@typescript-eslint/require-await": "error", - "@typescript-eslint/await-thenable": "error", - - - // TODO: enable these when reasonable - "@typescript-eslint/promise-function-async": "off", - "@typescript-eslint/prefer-includes": "off", - "@typescript-eslint/prefer-string-starts-ends-with": "off", - // --- - - - "import/no-unresolved": "error", - "import/named": "error", - "import/prefer-default-export": "off", - - // TODO: enable these when reasonable -- these can help module dependencies be easier to bundle w/ tree-shaking. - "import/no-cycle": "off", - // --- - - "import/no-self-import": "error", - "import/no-useless-path-segments": ["error", { noUselessIndex: true }], - "import/no-unused-modules": ["error", { "missingExports": true }], - "import/export": "error", - "import/no-extraneous-dependencies": "error", - "import/no-duplicates": "error", - "import/no-unassigned-import": "error", - "import/order": "error", - - "import/no-nodejs-modules": ["error", { "allow": [ - - ]}], - - // ---- Enforce some blockstack.js specific rules ---- - - "no-restricted-globals": ["error", { - "name": "fetch", - "message": "Use `privateFetch` instead." - } - ], - - "no-restricted-modules": ["error", { - "name": "crypto", - "message": "Use a specific module from `./src/encryption/` " - } - ] - - // ---- + root: true, + reportUnusedDisableDirectives: true, + extends: ['@blockstack/eslint-config'], + parserOptions: { + tsconfigRootDir: __dirname, + project: ['./packages/**/tsconfig.json', './tsconfig.json'] } -} +}; diff --git a/.gitignore b/.gitignore index e83c9c594..40f0c5766 100644 --- a/.gitignore +++ b/.gitignore @@ -41,4 +41,9 @@ src/testing/browser/blockstack-proofs.js lib dist -docs \ No newline at end of file + +.rts2_cache_cjs/ +.rts2_cache_esm/ +.rts2_cache_umd/ +.idea + diff --git a/README.md b/README.md index f7c100925..69097a25b 100644 --- a/README.md +++ b/README.md @@ -1,104 +1,39 @@ -# blockstack.js [![CircleCI](https://img.shields.io/circleci/project/blockstack/blockstack.js/master.svg)](https://circleci.com/gh/blockstack/blockstack.js/tree/master) [![npm](https://img.shields.io/npm/v/blockstack.svg)](https://www.npmjs.com/package/blockstack) [![npm](https://img.shields.io/npm/dm/blockstack.svg)](https://www.npmjs.com/package/blockstack) [![npm](https://img.shields.io/npm/l/blockstack.svg)](https://www.npmjs.com/package/blockstack) [![Slack](https://img.shields.io/badge/join-slack-e32072.svg?style=flat)](http://slack.blockstack.org/) +# Stacks.js Monorepo [![CircleCI](https://img.shields.io/circleci/project/blockstack/blockstack.js/master.svg)](https://circleci.com/gh/blockstack/blockstack.js/tree/master) -Note: If you're looking for the Blockstack CLI repo it was merged with [Blockstack Core](https://github.com/blockstack/blockstack-core). +This repo is home to the Stacks.js libraries which provide everything you need to work with the Stacks blockchain. - - [Installation](#installation) - - [About](#about) - - [Documentation](#documentation) - - [Compatibility](#compatibility) - - [Contributing](#contributing) - - [Maintainer](#maintainer) - - [Testing](#testing) - - [Testing in a browser](#testing-in-a-browser) - - [Releasing](#releasing) +- [`@stacks/auth`](./packages/auth) Construct and decode authentication requests for Stacks apps. +- [`@stacks/storage`](./packages/storage) Store and fetch files with Gaia, the decentralized storage system. +- [`@stacks/transactions`](./packages/transactions) Construct, decode transactions and work with Clarity smart contracts on the Stacks blockchain. +- [`@stacks/cli`](./packages/cli) Command line interface to interact with auth, storage and Stacks transactions. +- [`@stacks/keychain`](./packages/keychain) Create and manage keys/wallets for the Stacks blockchain. +- [`@stacks/network`](./packages/network) Network and API library for working with Stacks blockchain nodes. +- [`@stacks/encryption`](./packages/encryption) Encryption functions used by Stacks.js packages. +- [`@stacks/profile`](./packages/profile) Functions for manipulating user profiles. +- [`@stacks/common`](./packages/common) Common utilities used by Stacks.js packages. -## Installation +See `README` in each package directory for installation instructions and usage. -``` -$ npm install blockstack -``` +## Migrating from blockstack.js -### Using blockstack.js with a CDN +To migrate your app from blockstack.js to stacks.js follow the steps in the [migration guide](./migration-guide.md). -You can import `blockstack.js` as a script without using a package manager. -To securely use the latest distribution of blockstack.js from a CDN, use the following script in your application: +## Development environment setup - -```html - -``` - - -_Note: this is script is bundled as standalone (UMD) lib, targeting ES6 (ECMAScript 2015)._ - - - -## About - -Blockstack JS is a library for profiles/identity, authentication, and storage. - -The authentication portion of this library can be used to: - -1. create an authentication request -2. create an authentication response - -The profiles/identity portion of this library can be used to: - -1. transform a JSON profile into cryptographically-signed tokens -2. recover a JSON profile from signed tokens -3. validate signed profile tokens - -The storage portion of this library can be used to: - -1. store and retrieve your app's data in storage that is controlled by the user - -_Note:_ this lib is written in Typescript and is compiled to ES6 (ECMAScript 2015) -syntax and uses CommonJS modules. The NPM package works out of the box within the -Node.js runtime, and within browsers when using a common bundler (e.g. Webpack, -Browserify, Rollup, etc). +To setup the development environment for this repository, follow these steps: +1. Clone this package. +2. Run `lerna bootstrap` to install dependencies +3. Run `lerna run build` to build packages +4. Run `lerna run test` to run tests ## Documentation -[![Documentation](/docs-button.png)](http://blockstack.github.io/blockstack.js/index.html) - -## Compatibility - -_Note:_ blockstack.js 0.14.0 and newer versions use a new on-disk format that is not backward compatible with prior versions. +[![Documentation](/docs-button.png)](https://docs.blockstack.org/) ## Contributing -This repository uses the [git flow branching mode](http://nvie.com/posts/a-successful-git-branching-model/). - -The latest released code as deployed to npm is in `master` and the latest delivered development -changes for the next release are in `develop`. - -We use the [git-flow-avh](https://github.com/petervanderdoes/gitflow-avh) plugin. - -Please send pull requests against `develop`. Pull requests should include tests, -[flow static type annotations](https://flow.org) and be lint free. Open your pull request using the template in `PULL_REQUEST_TEMPLATE.md` - -Github issues marked [help-wanted](https://github.com/blockstack/blockstack.js/labels/help-wanted) -are great places to start. Please ask in a github issue or slack before embarking +Github issues marked [help-wanted](https://github.com/blockstack/stacks.js/labels/help-wanted) +are great places to start. Please ask in a github issue or discord before embarking on larger issues that aren't labeled as help wanted or adding additional functionality so that we can make sure your contribution can be included! - -## Maintainer - -This repository is maintained by [yukan.id](https://explorer.blockstack.org/name/yukan.id). - -## Testing - - $ npm run test - - We test on the "Active LTS" version of Node. - -### Testing in a browser - -_This test will only work with your browser's Cross-Origin Restrictions disabled._ - -Run `npm run compile; npm run browserify` before opening the file `test.html` -in your browser. - -## Releasing -See `release-checklist.md` diff --git a/babel.config.js b/babel.config.js index 204bcf577..feb4bfbb1 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,30 +1,29 @@ -module.exports = function (api) { - +module.exports = function(api) { // TODO: Should cache on api.caller and api.env for faster build times. api.cache.invalidate(() => true); - const isTestEnv = api.env("test"); - const isDevEnv = api.env("development"); + const isTestEnv = api.env('test'); + const isDevEnv = api.env('development'); // Babel config for web browser lib dist with wide-spread browser support. let opts = { presets: [ - ["@babel/preset-env", { - "targets": { - "esmodules": true - } - }] + [ + '@babel/preset-env', + { + targets: { + esmodules: true, + }, + }, + ], ], - plugins: [ - "@babel/proposal-class-properties", - "@babel/proposal-object-rest-spread" - ] + plugins: ['@babel/proposal-class-properties', '@babel/proposal-object-rest-spread'], }; // Use full source maps in development env. if (!opts.sourceMaps && isDevEnv) { - opts.sourceMaps = "both"; + opts.sourceMaps = 'both'; } return opts; -} +}; diff --git a/bower.json b/bower.json deleted file mode 100644 index 6693153fd..000000000 --- a/bower.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "name": "blockstack", - "version": "0.2.22", - "description": "The Blockstack Javascript library for identity and authentication.", - "main": "dist/blockstack.js", - "license": "MIT", - "keywords": [ - "blockchain", - "id", - "auth", - "authentication", - "bitcoin", - "blockchain", - "auth", - "blockchain", - "authentication", - "blockchainid", - "blockchain", - "id", - "bitcoin", - "auth", - "bitcoin", - "authentication", - "bitcoin", - "login", - "blockchain", - "login", - "authorization", - "login", - "signin", - "sso", - "crypto", - "cryptography", - "token", - "blockstack", - "blockstack", - "auth", - "profile", - "identity", - "ethereum" - ], - "homepage": "https://github.com/blockstack/blockstack.js", - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ] -} diff --git a/docs/assets/css/main.css b/docs/assets/css/main.css index 000d63f3e..3c0dcab92 100644 --- a/docs/assets/css/main.css +++ b/docs/assets/css/main.css @@ -1,2328 +1 @@ -/*! normalize.css v1.1.3 | MIT License | git.io/normalize */ -/* ========================================================================== - * HTML5 display definitions - * ========================================================================== */ -/** - * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3. */ -article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { - display: block; } - -/** - * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3. */ -audio, canvas, video { - display: inline-block; - *display: inline; - *zoom: 1; } - -/** - * Prevent modern browsers from displaying `audio` without controls. - * Remove excess height in iOS 5 devices. */ -audio:not([controls]) { - display: none; - height: 0; } - -/** - * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4. - * Known issue: no IE 6 support. */ -[hidden] { - display: none; } - -/* ========================================================================== - * Base - * ========================================================================== */ -/** - * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using - * `em` units. - * 2. Prevent iOS text size adjust after orientation change, without disabling - * user zoom. */ -html { - font-size: 100%; - /* 1 */ - -ms-text-size-adjust: 100%; - /* 2 */ - -webkit-text-size-adjust: 100%; - /* 2 */ - font-family: sans-serif; } - -/** - * Address `font-family` inconsistency between `textarea` and other form - * elements. */ -button, input, select, textarea { - font-family: sans-serif; } - -/** - * Address margins handled incorrectly in IE 6/7. */ -body { - margin: 0; } - -/* ========================================================================== - * Links - * ========================================================================== */ -/** - * Address `outline` inconsistency between Chrome and other browsers. */ -a:focus { - outline: thin dotted; } - -a:active, a:hover { - outline: 0; } - -/** - * Improve readability when focused and also mouse hovered in all browsers. */ -/* ========================================================================== - * Typography - * ========================================================================== */ -/** - * Address font sizes and margins set differently in IE 6/7. - * Address font sizes within `section` and `article` in Firefox 4+, Safari 5, - * and Chrome. */ -h1 { - font-size: 2em; - margin: 0.67em 0; } - -h2 { - font-size: 1.5em; - margin: 0.83em 0; } - -h3 { - font-size: 1.17em; - margin: 1em 0; } - -h4, .tsd-index-panel h3 { - font-size: 1em; - margin: 1.33em 0; } - -h5 { - font-size: 0.83em; - margin: 1.67em 0; } - -h6 { - font-size: 0.67em; - margin: 2.33em 0; } - -/** - * Address styling not present in IE 7/8/9, Safari 5, and Chrome. */ -abbr[title] { - border-bottom: 1px dotted; } - -/** - * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome. */ -b, strong { - font-weight: bold; } - -blockquote { - margin: 1em 40px; } - -/** - * Address styling not present in Safari 5 and Chrome. */ -dfn { - font-style: italic; } - -/** - * Address differences between Firefox and other browsers. - * Known issue: no IE 6/7 normalization. */ -hr { - box-sizing: content-box; - height: 0; } - -/** - * Address styling not present in IE 6/7/8/9. */ -mark { - background: #ff0; - color: #000; } - -/** - * Address margins set differently in IE 6/7. */ -p, pre { - margin: 1em 0; } - -/** - * Correct font family set oddly in IE 6, Safari 4/5, and Chrome. */ -code, kbd, pre, samp { - font-family: monospace, serif; - _font-family: 'courier new', monospace; - font-size: 1em; } - -/** - * Improve readability of pre-formatted text in all browsers. */ -pre { - white-space: pre; - white-space: pre-wrap; - word-wrap: break-word; } - -/** - * Address CSS quotes not supported in IE 6/7. */ -q { - quotes: none; } - q:before, q:after { - content: ''; - content: none; } - -/** - * Address `quotes` property not supported in Safari 4. */ -/** - * Address inconsistent and variable font size in all browsers. */ -small { - font-size: 80%; } - -/** - * Prevent `sub` and `sup` affecting `line-height` in all browsers. */ -sub { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; } - -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; - top: -0.5em; } - -sub { - bottom: -0.25em; } - -/* ========================================================================== - * Lists - * ========================================================================== */ -/** - * Address margins set differently in IE 6/7. */ -dl, menu, ol, ul { - margin: 1em 0; } - -dd { - margin: 0 0 0 40px; } - -/** - * Address paddings set differently in IE 6/7. */ -menu, ol, ul { - padding: 0 0 0 40px; } - -/** - * Correct list images handled incorrectly in IE 7. */ -nav ul, nav ol { - list-style: none; - list-style-image: none; } - -/* ========================================================================== - * Embedded content - * ========================================================================== */ -/** - * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3. - * 2. Improve image quality when scaled in IE 7. */ -img { - border: 0; - /* 1 */ - -ms-interpolation-mode: bicubic; } - -/* 2 */ -/** - * Correct overflow displayed oddly in IE 9. */ -svg:not(:root) { - overflow: hidden; } - -/* ========================================================================== - * Figures - * ========================================================================== */ -/** - * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11. */ -figure, form { - margin: 0; } - -/* ========================================================================== - * Forms - * ========================================================================== */ -/** - * Correct margin displayed oddly in IE 6/7. */ -/** - * Define consistent border, margin, and padding. */ -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; } - -/** - * 1. Correct color not being inherited in IE 6/7/8/9. - * 2. Correct text not wrapping in Firefox 3. - * 3. Correct alignment displayed oddly in IE 6/7. */ -legend { - border: 0; - /* 1 */ - padding: 0; - white-space: normal; - /* 2 */ - *margin-left: -7px; } - -/* 3 */ -/** - * 1. Correct font size not being inherited in all browsers. - * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5, - * and Chrome. - * 3. Improve appearance and consistency in all browsers. */ -button, input, select, textarea { - font-size: 100%; - /* 1 */ - margin: 0; - /* 2 */ - vertical-align: baseline; - /* 3 */ - *vertical-align: middle; } - -/* 3 */ -/** - * Address Firefox 3+ setting `line-height` on `input` using `!important` in - * the UA stylesheet. */ -button, input { - line-height: normal; } - -/** - * Address inconsistent `text-transform` inheritance for `button` and `select`. - * All other form control elements do not inherit `text-transform` values. - * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+. - * Correct `select` style inheritance in Firefox 4+ and Opera. */ -button, select { - text-transform: none; } - -/** - * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` - * and `video` controls. - * 2. Correct inability to style clickable `input` types in iOS. - * 3. Improve usability and consistency of cursor style between image-type - * `input` and others. - * 4. Remove inner spacing in IE 7 without affecting normal text inputs. - * Known issue: inner spacing remains in IE 6. */ -button, html input[type="button"] { - -webkit-appearance: button; - /* 2 */ - cursor: pointer; - /* 3 */ - *overflow: visible; } - -/* 4 */ -input[type="reset"], input[type="submit"] { - -webkit-appearance: button; - /* 2 */ - cursor: pointer; - /* 3 */ - *overflow: visible; } - -/* 4 */ -/** - * Re-set default cursor for disabled elements. */ -button[disabled], html input[disabled] { - cursor: default; } - -/** - * 1. Address box sizing set to content-box in IE 8/9. - * 2. Remove excess padding in IE 8/9. - * 3. Remove excess padding in IE 7. - * Known issue: excess padding remains in IE 6. */ -input { - /* 3 */ } - input[type="checkbox"], input[type="radio"] { - box-sizing: border-box; - /* 1 */ - padding: 0; - /* 2 */ - *height: 13px; - /* 3 */ - *width: 13px; } - input[type="search"] { - -webkit-appearance: textfield; - /* 1 */ - /* 2 */ - box-sizing: content-box; } - input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; } - -/** - * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. - * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome - * (include `-moz` to future-proof). */ -/** - * Remove inner padding and search cancel button in Safari 5 and Chrome - * on OS X. */ -/** - * Remove inner padding and border in Firefox 3+. */ -button::-moz-focus-inner, input::-moz-focus-inner { - border: 0; - padding: 0; } - -/** - * 1. Remove default vertical scrollbar in IE 6/7/8/9. - * 2. Improve readability and alignment in all browsers. */ -textarea { - overflow: auto; - /* 1 */ - vertical-align: top; } - -/* 2 */ -/* ========================================================================== - * Tables - * ========================================================================== */ -/** - * Remove most spacing between table cells. */ -table { - border-collapse: collapse; - border-spacing: 0; } - -/* - * - *Visual Studio-like style based on original C# coloring by Jason Diamond */ -.hljs { - display: inline-block; - padding: 0.5em; - background: white; - color: black; } - -.hljs-comment, .hljs-annotation, .hljs-template_comment, .diff .hljs-header, .hljs-chunk, .apache .hljs-cbracket { - color: #008000; } - -.hljs-keyword, .hljs-id, .hljs-built_in, .css .smalltalk .hljs-class, .hljs-winutils, .bash .hljs-variable, .tex .hljs-command, .hljs-request, .hljs-status, .nginx .hljs-title { - color: #00f; } - -.xml .hljs-tag { - color: #00f; } - .xml .hljs-tag .hljs-value { - color: #00f; } - -.hljs-string, .hljs-title, .hljs-parent, .hljs-tag .hljs-value, .hljs-rules .hljs-value { - color: #a31515; } - -.ruby .hljs-symbol { - color: #a31515; } - .ruby .hljs-symbol .hljs-string { - color: #a31515; } - -.hljs-template_tag, .django .hljs-variable, .hljs-addition, .hljs-flow, .hljs-stream, .apache .hljs-tag, .hljs-date, .tex .hljs-formula, .coffeescript .hljs-attribute { - color: #a31515; } - -.ruby .hljs-string, .hljs-decorator, .hljs-filter .hljs-argument, .hljs-localvars, .hljs-array, .hljs-attr_selector, .hljs-pseudo, .hljs-pi, .hljs-doctype, .hljs-deletion, .hljs-envvar, .hljs-shebang, .hljs-preprocessor, .hljs-pragma, .userType, .apache .hljs-sqbracket, .nginx .hljs-built_in, .tex .hljs-special, .hljs-prompt { - color: #2b91af; } - -.hljs-phpdoc, .hljs-javadoc, .hljs-xmlDocTag { - color: #808080; } - -.vhdl .hljs-typename { - font-weight: bold; } - -.vhdl .hljs-string { - color: #666666; } - -.vhdl .hljs-literal { - color: #a31515; } - -.vhdl .hljs-attribute { - color: #00b0e8; } - -.xml .hljs-attribute { - color: #f00; } - -.col > :first-child, .col-1 > :first-child, .col-2 > :first-child, .col-3 > :first-child, .col-4 > :first-child, .col-5 > :first-child, .col-6 > :first-child, .col-7 > :first-child, .col-8 > :first-child, .col-9 > :first-child, .col-10 > :first-child, .col-11 > :first-child, .tsd-panel > :first-child, ul.tsd-descriptions > li > :first-child, -.col > :first-child > :first-child, -.col-1 > :first-child > :first-child, -.col-2 > :first-child > :first-child, -.col-3 > :first-child > :first-child, -.col-4 > :first-child > :first-child, -.col-5 > :first-child > :first-child, -.col-6 > :first-child > :first-child, -.col-7 > :first-child > :first-child, -.col-8 > :first-child > :first-child, -.col-9 > :first-child > :first-child, -.col-10 > :first-child > :first-child, -.col-11 > :first-child > :first-child, -.tsd-panel > :first-child > :first-child, -ul.tsd-descriptions > li > :first-child > :first-child, -.col > :first-child > :first-child > :first-child, -.col-1 > :first-child > :first-child > :first-child, -.col-2 > :first-child > :first-child > :first-child, -.col-3 > :first-child > :first-child > :first-child, -.col-4 > :first-child > :first-child > :first-child, -.col-5 > :first-child > :first-child > :first-child, -.col-6 > :first-child > :first-child > :first-child, -.col-7 > :first-child > :first-child > :first-child, -.col-8 > :first-child > :first-child > :first-child, -.col-9 > :first-child > :first-child > :first-child, -.col-10 > :first-child > :first-child > :first-child, -.col-11 > :first-child > :first-child > :first-child, -.tsd-panel > :first-child > :first-child > :first-child, -ul.tsd-descriptions > li > :first-child > :first-child > :first-child { - margin-top: 0; } - -.col > :last-child, .col-1 > :last-child, .col-2 > :last-child, .col-3 > :last-child, .col-4 > :last-child, .col-5 > :last-child, .col-6 > :last-child, .col-7 > :last-child, .col-8 > :last-child, .col-9 > :last-child, .col-10 > :last-child, .col-11 > :last-child, .tsd-panel > :last-child, ul.tsd-descriptions > li > :last-child, -.col > :last-child > :last-child, -.col-1 > :last-child > :last-child, -.col-2 > :last-child > :last-child, -.col-3 > :last-child > :last-child, -.col-4 > :last-child > :last-child, -.col-5 > :last-child > :last-child, -.col-6 > :last-child > :last-child, -.col-7 > :last-child > :last-child, -.col-8 > :last-child > :last-child, -.col-9 > :last-child > :last-child, -.col-10 > :last-child > :last-child, -.col-11 > :last-child > :last-child, -.tsd-panel > :last-child > :last-child, -ul.tsd-descriptions > li > :last-child > :last-child, -.col > :last-child > :last-child > :last-child, -.col-1 > :last-child > :last-child > :last-child, -.col-2 > :last-child > :last-child > :last-child, -.col-3 > :last-child > :last-child > :last-child, -.col-4 > :last-child > :last-child > :last-child, -.col-5 > :last-child > :last-child > :last-child, -.col-6 > :last-child > :last-child > :last-child, -.col-7 > :last-child > :last-child > :last-child, -.col-8 > :last-child > :last-child > :last-child, -.col-9 > :last-child > :last-child > :last-child, -.col-10 > :last-child > :last-child > :last-child, -.col-11 > :last-child > :last-child > :last-child, -.tsd-panel > :last-child > :last-child > :last-child, -ul.tsd-descriptions > li > :last-child > :last-child > :last-child { - margin-bottom: 0; } - -.container { - max-width: 1200px; - margin: 0 auto; - padding: 0 40px; } - @media (max-width: 640px) { - .container { - padding: 0 20px; } } - -.container-main { - padding-bottom: 200px; } - -.row { - display: -ms-flexbox; - display: flex; - position: relative; - margin: 0 -10px; } - .row:after { - visibility: hidden; - display: block; - content: ""; - clear: both; - height: 0; } - -.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11 { - box-sizing: border-box; - float: left; - padding: 0 10px; } - -.col-1 { - width: 8.3333333333%; } - -.offset-1 { - margin-left: 8.3333333333%; } - -.col-2 { - width: 16.6666666667%; } - -.offset-2 { - margin-left: 16.6666666667%; } - -.col-3 { - width: 25%; } - -.offset-3 { - margin-left: 25%; } - -.col-4 { - width: 33.3333333333%; } - -.offset-4 { - margin-left: 33.3333333333%; } - -.col-5 { - width: 41.6666666667%; } - -.offset-5 { - margin-left: 41.6666666667%; } - -.col-6 { - width: 50%; } - -.offset-6 { - margin-left: 50%; } - -.col-7 { - width: 58.3333333333%; } - -.offset-7 { - margin-left: 58.3333333333%; } - -.col-8 { - width: 66.6666666667%; } - -.offset-8 { - margin-left: 66.6666666667%; } - -.col-9 { - width: 75%; } - -.offset-9 { - margin-left: 75%; } - -.col-10 { - width: 83.3333333333%; } - -.offset-10 { - margin-left: 83.3333333333%; } - -.col-11 { - width: 91.6666666667%; } - -.offset-11 { - margin-left: 91.6666666667%; } - -.tsd-kind-icon { - display: block; - position: relative; - padding-left: 20px; - text-indent: -20px; } - .tsd-kind-icon:before { - content: ''; - display: inline-block; - vertical-align: middle; - width: 17px; - height: 17px; - margin: 0 3px 2px 0; - background-image: url(../images/icons.png); } - @media (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { - .tsd-kind-icon:before { - background-image: url(../images/icons@2x.png); - background-size: 238px 204px; } } - -.tsd-signature.tsd-kind-icon:before { - background-position: 0 -153px; } - -.tsd-kind-object-literal > .tsd-kind-icon:before { - background-position: 0px -17px; } - -.tsd-kind-object-literal.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -17px; } - -.tsd-kind-object-literal.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -17px; } - -.tsd-kind-class > .tsd-kind-icon:before { - background-position: 0px -34px; } - -.tsd-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -34px; } - -.tsd-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -34px; } - -.tsd-kind-class.tsd-has-type-parameter > .tsd-kind-icon:before { - background-position: 0px -51px; } - -.tsd-kind-class.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -51px; } - -.tsd-kind-class.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -51px; } - -.tsd-kind-interface > .tsd-kind-icon:before { - background-position: 0px -68px; } - -.tsd-kind-interface.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -68px; } - -.tsd-kind-interface.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -68px; } - -.tsd-kind-interface.tsd-has-type-parameter > .tsd-kind-icon:before { - background-position: 0px -85px; } - -.tsd-kind-interface.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -85px; } - -.tsd-kind-interface.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -85px; } - -.tsd-kind-module > .tsd-kind-icon:before { - background-position: 0px -102px; } - -.tsd-kind-module.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -102px; } - -.tsd-kind-module.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -102px; } - -.tsd-kind-external-module > .tsd-kind-icon:before { - background-position: 0px -102px; } - -.tsd-kind-external-module.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -102px; } - -.tsd-kind-external-module.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -102px; } - -.tsd-kind-enum > .tsd-kind-icon:before { - background-position: 0px -119px; } - -.tsd-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -119px; } - -.tsd-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -119px; } - -.tsd-kind-enum-member > .tsd-kind-icon:before { - background-position: 0px -136px; } - -.tsd-kind-enum-member.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -136px; } - -.tsd-kind-enum-member.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -136px; } - -.tsd-kind-signature > .tsd-kind-icon:before { - background-position: 0px -153px; } - -.tsd-kind-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -153px; } - -.tsd-kind-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -153px; } - -.tsd-kind-type-alias > .tsd-kind-icon:before { - background-position: 0px -170px; } - -.tsd-kind-type-alias.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -170px; } - -.tsd-kind-type-alias.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -170px; } - -.tsd-kind-type-alias.tsd-has-type-parameter > .tsd-kind-icon:before { - background-position: 0px -187px; } - -.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -187px; } - -.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -187px; } - -.tsd-kind-variable > .tsd-kind-icon:before { - background-position: -136px -0px; } - -.tsd-kind-variable.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -0px; } - -.tsd-kind-variable.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -0px; } - -.tsd-kind-variable.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -0px; } - -.tsd-kind-variable.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -0px; } - -.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -0px; } - -.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -0px; } - -.tsd-kind-variable.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -0px; } - -.tsd-kind-variable.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -0px; } - -.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -0px; } - -.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -0px; } - -.tsd-kind-variable.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -0px; } - -.tsd-kind-variable.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -0px; } - -.tsd-kind-property > .tsd-kind-icon:before { - background-position: -136px -0px; } - -.tsd-kind-property.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -0px; } - -.tsd-kind-property.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -0px; } - -.tsd-kind-property.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -0px; } - -.tsd-kind-property.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -0px; } - -.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -0px; } - -.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -0px; } - -.tsd-kind-property.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -0px; } - -.tsd-kind-property.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -0px; } - -.tsd-kind-property.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -0px; } - -.tsd-kind-property.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -0px; } - -.tsd-kind-property.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -0px; } - -.tsd-kind-property.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -0px; } - -.tsd-kind-get-signature > .tsd-kind-icon:before { - background-position: -136px -17px; } - -.tsd-kind-get-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -17px; } - -.tsd-kind-get-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -17px; } - -.tsd-kind-get-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -17px; } - -.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -17px; } - -.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -17px; } - -.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -17px; } - -.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -17px; } - -.tsd-kind-get-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -17px; } - -.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -17px; } - -.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -17px; } - -.tsd-kind-get-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -17px; } - -.tsd-kind-get-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -17px; } - -.tsd-kind-set-signature > .tsd-kind-icon:before { - background-position: -136px -34px; } - -.tsd-kind-set-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -34px; } - -.tsd-kind-set-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -34px; } - -.tsd-kind-set-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -34px; } - -.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -34px; } - -.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -34px; } - -.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -34px; } - -.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -34px; } - -.tsd-kind-set-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -34px; } - -.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -34px; } - -.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -34px; } - -.tsd-kind-set-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -34px; } - -.tsd-kind-set-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -34px; } - -.tsd-kind-accessor > .tsd-kind-icon:before { - background-position: -136px -51px; } - -.tsd-kind-accessor.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -51px; } - -.tsd-kind-accessor.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -51px; } - -.tsd-kind-accessor.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -51px; } - -.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -51px; } - -.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -51px; } - -.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -51px; } - -.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -51px; } - -.tsd-kind-accessor.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -51px; } - -.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -51px; } - -.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -51px; } - -.tsd-kind-accessor.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -51px; } - -.tsd-kind-accessor.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -51px; } - -.tsd-kind-function > .tsd-kind-icon:before { - background-position: -136px -68px; } - -.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -68px; } - -.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; } - -.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -68px; } - -.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -68px; } - -.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -68px; } - -.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -68px; } - -.tsd-kind-function.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; } - -.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -68px; } - -.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -68px; } - -.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; } - -.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -68px; } - -.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -68px; } - -.tsd-kind-method > .tsd-kind-icon:before { - background-position: -136px -68px; } - -.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -68px; } - -.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; } - -.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -68px; } - -.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -68px; } - -.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -68px; } - -.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -68px; } - -.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; } - -.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -68px; } - -.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -68px; } - -.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; } - -.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -68px; } - -.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -68px; } - -.tsd-kind-call-signature > .tsd-kind-icon:before { - background-position: -136px -68px; } - -.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -68px; } - -.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; } - -.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -68px; } - -.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -68px; } - -.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -68px; } - -.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -68px; } - -.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; } - -.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -68px; } - -.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -68px; } - -.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; } - -.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -68px; } - -.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -68px; } - -.tsd-kind-function.tsd-has-type-parameter > .tsd-kind-icon:before { - background-position: -136px -85px; } - -.tsd-kind-function.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -85px; } - -.tsd-kind-function.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -85px; } - -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -85px; } - -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -85px; } - -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -85px; } - -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -85px; } - -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -85px; } - -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -85px; } - -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -85px; } - -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -85px; } - -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -85px; } - -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -85px; } - -.tsd-kind-method.tsd-has-type-parameter > .tsd-kind-icon:before { - background-position: -136px -85px; } - -.tsd-kind-method.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -85px; } - -.tsd-kind-method.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -85px; } - -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -85px; } - -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -85px; } - -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -85px; } - -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -85px; } - -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -85px; } - -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -85px; } - -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -85px; } - -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -85px; } - -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -85px; } - -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -85px; } - -.tsd-kind-constructor > .tsd-kind-icon:before { - background-position: -136px -102px; } - -.tsd-kind-constructor.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -102px; } - -.tsd-kind-constructor.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -102px; } - -.tsd-kind-constructor.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -102px; } - -.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -102px; } - -.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -102px; } - -.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -102px; } - -.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -102px; } - -.tsd-kind-constructor.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -102px; } - -.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -102px; } - -.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -102px; } - -.tsd-kind-constructor.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -102px; } - -.tsd-kind-constructor.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -102px; } - -.tsd-kind-constructor-signature > .tsd-kind-icon:before { - background-position: -136px -102px; } - -.tsd-kind-constructor-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -102px; } - -.tsd-kind-constructor-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -102px; } - -.tsd-kind-constructor-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -102px; } - -.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -102px; } - -.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -102px; } - -.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -102px; } - -.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -102px; } - -.tsd-kind-constructor-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -102px; } - -.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -102px; } - -.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -102px; } - -.tsd-kind-constructor-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -102px; } - -.tsd-kind-constructor-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -102px; } - -.tsd-kind-index-signature > .tsd-kind-icon:before { - background-position: -136px -119px; } - -.tsd-kind-index-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -119px; } - -.tsd-kind-index-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -119px; } - -.tsd-kind-index-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -119px; } - -.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -119px; } - -.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -119px; } - -.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -119px; } - -.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -119px; } - -.tsd-kind-index-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -119px; } - -.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -119px; } - -.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -119px; } - -.tsd-kind-index-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -119px; } - -.tsd-kind-index-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -119px; } - -.tsd-kind-event > .tsd-kind-icon:before { - background-position: -136px -136px; } - -.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -136px; } - -.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -136px; } - -.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -136px; } - -.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -136px; } - -.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -136px; } - -.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -136px; } - -.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -136px; } - -.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -136px; } - -.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -136px; } - -.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -136px; } - -.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -136px; } - -.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -136px; } - -.tsd-is-static > .tsd-kind-icon:before { - background-position: -136px -153px; } - -.tsd-is-static.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -153px; } - -.tsd-is-static.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -153px; } - -.tsd-is-static.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -153px; } - -.tsd-is-static.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -153px; } - -.tsd-is-static.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -153px; } - -.tsd-is-static.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -153px; } - -.tsd-is-static.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -153px; } - -.tsd-is-static.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -153px; } - -.tsd-is-static.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -153px; } - -.tsd-is-static.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -153px; } - -.tsd-is-static.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -153px; } - -.tsd-is-static.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -153px; } - -.tsd-is-static.tsd-kind-function > .tsd-kind-icon:before { - background-position: -136px -170px; } - -.tsd-is-static.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -170px; } - -.tsd-is-static.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -170px; } - -.tsd-is-static.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -170px; } - -.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -170px; } - -.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -170px; } - -.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -170px; } - -.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -170px; } - -.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -170px; } - -.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -170px; } - -.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -170px; } - -.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -170px; } - -.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -170px; } - -.tsd-is-static.tsd-kind-method > .tsd-kind-icon:before { - background-position: -136px -170px; } - -.tsd-is-static.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -170px; } - -.tsd-is-static.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -170px; } - -.tsd-is-static.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -170px; } - -.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -170px; } - -.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -170px; } - -.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -170px; } - -.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -170px; } - -.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -170px; } - -.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -170px; } - -.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -170px; } - -.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -170px; } - -.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -170px; } - -.tsd-is-static.tsd-kind-call-signature > .tsd-kind-icon:before { - background-position: -136px -170px; } - -.tsd-is-static.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -170px; } - -.tsd-is-static.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -170px; } - -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -170px; } - -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -170px; } - -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -170px; } - -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -170px; } - -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -170px; } - -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -170px; } - -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -170px; } - -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -170px; } - -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -170px; } - -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -170px; } - -.tsd-is-static.tsd-kind-event > .tsd-kind-icon:before { - background-position: -136px -187px; } - -.tsd-is-static.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -187px; } - -.tsd-is-static.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -187px; } - -.tsd-is-static.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -187px; } - -.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -187px; } - -.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -187px; } - -.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -102px -187px; } - -.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -187px; } - -.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -187px; } - -.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -187px; } - -.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -187px; } - -.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -187px; } - -.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -221px -187px; } - -.no-transition { - transition: none !important; } - -@keyframes fade-in { - from { - opacity: 0; } - to { - opacity: 1; } } - -@keyframes fade-out { - from { - opacity: 1; - visibility: visible; } - to { - opacity: 0; } } - -@keyframes fade-in-delayed { - 0% { - opacity: 0; } - 33% { - opacity: 0; } - 100% { - opacity: 1; } } - -@keyframes fade-out-delayed { - 0% { - opacity: 1; - visibility: visible; } - 66% { - opacity: 0; } - 100% { - opacity: 0; } } - -@keyframes shift-to-left { - from { - transform: translate(0, 0); } - to { - transform: translate(-25%, 0); } } - -@keyframes unshift-to-left { - from { - transform: translate(-25%, 0); } - to { - transform: translate(0, 0); } } - -@keyframes pop-in-from-right { - from { - transform: translate(100%, 0); } - to { - transform: translate(0, 0); } } - -@keyframes pop-out-to-right { - from { - transform: translate(0, 0); - visibility: visible; } - to { - transform: translate(100%, 0); } } - -body { - background: #fdfdfd; - font-family: "Segoe UI", sans-serif; - font-size: 16px; - color: #222; } - -a { - color: #4da6ff; - text-decoration: none; } - a:hover { - text-decoration: underline; } - -code, pre { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; - padding: 0.2em; - margin: 0; - font-size: 14px; - background-color: rgba(0, 0, 0, 0.04); } - -pre { - padding: 10px; } - pre code { - padding: 0; - font-size: 100%; - background-color: transparent; } - -.tsd-typography { - line-height: 1.333em; } - .tsd-typography ul { - list-style: square; - padding: 0 0 0 20px; - margin: 0; } - .tsd-typography h4, .tsd-typography .tsd-index-panel h3, .tsd-index-panel .tsd-typography h3, .tsd-typography h5, .tsd-typography h6 { - font-size: 1em; - margin: 0; } - .tsd-typography h5, .tsd-typography h6 { - font-weight: normal; } - .tsd-typography p, .tsd-typography ul, .tsd-typography ol { - margin: 1em 0; } - -@media (min-width: 901px) and (max-width: 1024px) { - html.default .col-content { - width: 72%; } - html.default .col-menu { - width: 28%; } - html.default .tsd-navigation { - padding-left: 10px; } } - -@media (max-width: 900px) { - html.default .col-content { - float: none; - width: 100%; } - html.default .col-menu { - position: fixed !important; - overflow: auto; - -webkit-overflow-scrolling: touch; - overflow-scrolling: touch; - z-index: 1024; - top: 0 !important; - bottom: 0 !important; - left: auto !important; - right: 0 !important; - width: 100%; - padding: 20px 20px 0 0; - max-width: 450px; - visibility: hidden; - background-color: #fff; - transform: translate(100%, 0); } - html.default .col-menu > *:last-child { - padding-bottom: 20px; } - html.default .overlay { - content: ''; - display: block; - position: fixed; - z-index: 1023; - top: 0; - left: 0; - right: 0; - bottom: 0; - background-color: rgba(0, 0, 0, 0.75); - visibility: hidden; } - html.default.to-has-menu .overlay { - animation: fade-in 0.4s; } - html.default.to-has-menu header, - html.default.to-has-menu footer, - html.default.to-has-menu .col-content { - animation: shift-to-left 0.4s; } - html.default.to-has-menu .col-menu { - animation: pop-in-from-right 0.4s; } - html.default.from-has-menu .overlay { - animation: fade-out 0.4s; } - html.default.from-has-menu header, - html.default.from-has-menu footer, - html.default.from-has-menu .col-content { - animation: unshift-to-left 0.4s; } - html.default.from-has-menu .col-menu { - animation: pop-out-to-right 0.4s; } - html.default.has-menu body { - overflow: hidden; } - html.default.has-menu .overlay { - visibility: visible; } - html.default.has-menu header, - html.default.has-menu footer, - html.default.has-menu .col-content { - transform: translate(-25%, 0); } - html.default.has-menu .col-menu { - visibility: visible; - transform: translate(0, 0); } } - -.tsd-page-title { - padding: 70px 0 20px 0; - margin: 0 0 40px 0; - background: #fff; - box-shadow: 0 0 5px rgba(0, 0, 0, 0.35); } - .tsd-page-title h1 { - margin: 0; } - -.tsd-breadcrumb { - margin: 0; - padding: 0; - color: #808080; } - .tsd-breadcrumb a { - color: #808080; - text-decoration: none; } - .tsd-breadcrumb a:hover { - text-decoration: underline; } - .tsd-breadcrumb li { - display: inline; } - .tsd-breadcrumb li:after { - content: ' / '; } - -html.minimal .container { - margin: 0; } - -html.minimal .container-main { - padding-top: 50px; - padding-bottom: 0; } - -html.minimal .content-wrap { - padding-left: 300px; } - -html.minimal .tsd-navigation { - position: fixed !important; - overflow: auto; - -webkit-overflow-scrolling: touch; - overflow-scrolling: touch; - box-sizing: border-box; - z-index: 1; - left: 0; - top: 40px; - bottom: 0; - width: 300px; - padding: 20px; - margin: 0; } - -html.minimal .tsd-member .tsd-member { - margin-left: 0; } - -html.minimal .tsd-page-toolbar { - position: fixed; - z-index: 2; } - -html.minimal #tsd-filter .tsd-filter-group { - right: 0; - transform: none; } - -html.minimal footer { - background-color: transparent; } - html.minimal footer .container { - padding: 0; } - -html.minimal .tsd-generator { - padding: 0; } - -@media (max-width: 900px) { - html.minimal .tsd-navigation { - display: none; } - html.minimal .content-wrap { - padding-left: 0; } } - -dl.tsd-comment-tags { - overflow: hidden; } - dl.tsd-comment-tags dt { - float: left; - padding: 1px 5px; - margin: 0 10px 0 0; - border-radius: 4px; - border: 1px solid #808080; - color: #808080; - font-size: 0.8em; - font-weight: normal; } - dl.tsd-comment-tags dd { - margin: 0 0 10px 0; } - dl.tsd-comment-tags dd:before, dl.tsd-comment-tags dd:after { - display: table; - content: " "; } - dl.tsd-comment-tags dd pre, dl.tsd-comment-tags dd:after { - clear: both; } - dl.tsd-comment-tags p { - margin: 0; } - -.tsd-panel.tsd-comment .lead { - font-size: 1.1em; - line-height: 1.333em; - margin-bottom: 2em; } - .tsd-panel.tsd-comment .lead:last-child { - margin-bottom: 0; } - -.toggle-protected .tsd-is-private { - display: none; } - -.toggle-public .tsd-is-private, -.toggle-public .tsd-is-protected, -.toggle-public .tsd-is-private-protected { - display: none; } - -.toggle-inherited .tsd-is-inherited { - display: none; } - -.toggle-only-exported .tsd-is-not-exported { - display: none; } - -.toggle-externals .tsd-is-external { - display: none; } - -#tsd-filter { - position: relative; - display: inline-block; - height: 40px; - vertical-align: bottom; } - .no-filter #tsd-filter { - display: none; } - #tsd-filter .tsd-filter-group { - display: inline-block; - height: 40px; - vertical-align: bottom; - white-space: nowrap; } - #tsd-filter input { - display: none; } - @media (max-width: 900px) { - #tsd-filter .tsd-filter-group { - display: block; - position: absolute; - top: 40px; - right: 20px; - height: auto; - background-color: #fff; - visibility: hidden; - transform: translate(50%, 0); - box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); } - .has-options #tsd-filter .tsd-filter-group { - visibility: visible; } - .to-has-options #tsd-filter .tsd-filter-group { - animation: fade-in 0.2s; } - .from-has-options #tsd-filter .tsd-filter-group { - animation: fade-out 0.2s; } - #tsd-filter label, - #tsd-filter .tsd-select { - display: block; - padding-right: 20px; } } - -footer { - border-top: 1px solid #eee; - background-color: #fff; } - footer.with-border-bottom { - border-bottom: 1px solid #eee; } - footer .tsd-legend-group { - font-size: 0; } - footer .tsd-legend { - display: inline-block; - width: 25%; - padding: 0; - font-size: 16px; - list-style: none; - line-height: 1.333em; - vertical-align: top; } - @media (max-width: 900px) { - footer .tsd-legend { - width: 50%; } } - -.tsd-hierarchy { - list-style: square; - padding: 0 0 0 20px; - margin: 0; } - .tsd-hierarchy .target { - font-weight: bold; } - -.tsd-index-panel .tsd-index-content { - margin-bottom: -30px !important; } - -.tsd-index-panel .tsd-index-section { - margin-bottom: 30px !important; } - -.tsd-index-panel h3 { - margin: 0 -20px 10px -20px; - padding: 0 20px 10px 20px; - border-bottom: 1px solid #eee; } - -.tsd-index-panel ul.tsd-index-list { - -moz-column-count: 3; - -ms-column-count: 3; - -o-column-count: 3; - column-count: 3; - -moz-column-gap: 20px; - -ms-column-gap: 20px; - -o-column-gap: 20px; - column-gap: 20px; - padding: 0; - list-style: none; - line-height: 1.333em; } - @media (max-width: 900px) { - .tsd-index-panel ul.tsd-index-list { - -moz-column-count: 1; - -ms-column-count: 1; - -o-column-count: 1; - column-count: 1; } } - @media (min-width: 901px) and (max-width: 1024px) { - .tsd-index-panel ul.tsd-index-list { - -moz-column-count: 2; - -ms-column-count: 2; - -o-column-count: 2; - column-count: 2; } } - .tsd-index-panel ul.tsd-index-list li { - -webkit-column-break-inside: avoid; - -moz-column-break-inside: avoid; - -ms-column-break-inside: avoid; - -o-column-break-inside: avoid; - column-break-inside: avoid; - -webkit-page-break-inside: avoid; - -moz-page-break-inside: avoid; - -ms-page-break-inside: avoid; - -o-page-break-inside: avoid; - page-break-inside: avoid; } - -.tsd-index-panel a, -.tsd-index-panel .tsd-parent-kind-module a { - color: #9600ff; } - -.tsd-index-panel .tsd-parent-kind-interface a { - color: #7da01f; } - -.tsd-index-panel .tsd-parent-kind-enum a { - color: #cc9900; } - -.tsd-index-panel .tsd-parent-kind-class a { - color: #4da6ff; } - -.tsd-index-panel .tsd-kind-module a { - color: #9600ff; } - -.tsd-index-panel .tsd-kind-interface a { - color: #7da01f; } - -.tsd-index-panel .tsd-kind-enum a { - color: #cc9900; } - -.tsd-index-panel .tsd-kind-class a { - color: #4da6ff; } - -.tsd-index-panel .tsd-is-private a { - color: #808080; } - -.tsd-flag { - display: inline-block; - padding: 1px 5px; - border-radius: 4px; - color: #fff; - background-color: #808080; - text-indent: 0; - font-size: 14px; - font-weight: normal; } - -.tsd-anchor { - position: absolute; - top: -100px; } - -.tsd-member { - position: relative; } - .tsd-member .tsd-anchor + h3 { - margin-top: 0; - margin-bottom: 0; - border-bottom: none; } - -.tsd-navigation { - margin: 0 0 0 40px; } - .tsd-navigation a { - display: block; - padding-top: 2px; - padding-bottom: 2px; - border-left: 2px solid transparent; - color: #222; - text-decoration: none; - transition: border-left-color 0.1s; } - .tsd-navigation a:hover { - text-decoration: underline; } - .tsd-navigation ul { - margin: 0; - padding: 0; - list-style: none; } - .tsd-navigation li { - padding: 0; } - -.tsd-navigation.primary { - padding-bottom: 40px; } - .tsd-navigation.primary a { - display: block; - padding-top: 6px; - padding-bottom: 6px; } - .tsd-navigation.primary ul li a { - padding-left: 5px; } - .tsd-navigation.primary ul li li a { - padding-left: 25px; } - .tsd-navigation.primary ul li li li a { - padding-left: 45px; } - .tsd-navigation.primary ul li li li li a { - padding-left: 65px; } - .tsd-navigation.primary ul li li li li li a { - padding-left: 85px; } - .tsd-navigation.primary ul li li li li li li a { - padding-left: 105px; } - .tsd-navigation.primary > ul { - border-bottom: 1px solid #eee; } - .tsd-navigation.primary li { - border-top: 1px solid #eee; } - .tsd-navigation.primary li.current > a { - font-weight: bold; } - .tsd-navigation.primary li.label span { - display: block; - padding: 20px 0 6px 5px; - color: #808080; } - .tsd-navigation.primary li.globals + li > span, - .tsd-navigation.primary li.globals + li > a { - padding-top: 20px; } - -.tsd-navigation.secondary { - max-height: calc(100vh - 1rem - 40px); - overflow: auto; - position: -webkit-sticky; - position: sticky; - top: calc(.5rem + 40px); - transition: .3s; } - .tsd-navigation.secondary.tsd-navigation--toolbar-hide { - max-height: calc(100vh - 1rem); - top: .5rem; } - .tsd-navigation.secondary ul { - transition: opacity 0.2s; } - .tsd-navigation.secondary ul li a { - padding-left: 25px; } - .tsd-navigation.secondary ul li li a { - padding-left: 45px; } - .tsd-navigation.secondary ul li li li a { - padding-left: 65px; } - .tsd-navigation.secondary ul li li li li a { - padding-left: 85px; } - .tsd-navigation.secondary ul li li li li li a { - padding-left: 105px; } - .tsd-navigation.secondary ul li li li li li li a { - padding-left: 125px; } - .tsd-navigation.secondary ul.current a { - border-left-color: #eee; } - .tsd-navigation.secondary li.focus > a, - .tsd-navigation.secondary ul.current li.focus > a { - border-left-color: #000; } - .tsd-navigation.secondary li.current { - margin-top: 20px; - margin-bottom: 20px; - border-left-color: #eee; } - .tsd-navigation.secondary li.current > a { - font-weight: bold; } - -@media (min-width: 901px) { - .menu-sticky-wrap { - position: static; } } - -.tsd-panel { - margin: 20px 0; - padding: 20px; - background-color: #fff; - box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); } - .tsd-panel:empty { - display: none; } - .tsd-panel > h1, .tsd-panel > h2, .tsd-panel > h3 { - margin: 1.5em -20px 10px -20px; - padding: 0 20px 10px 20px; - border-bottom: 1px solid #eee; } - .tsd-panel > h1.tsd-before-signature, .tsd-panel > h2.tsd-before-signature, .tsd-panel > h3.tsd-before-signature { - margin-bottom: 0; - border-bottom: 0; } - .tsd-panel table { - display: block; - width: 100%; - overflow: auto; - margin-top: 10px; - word-break: normal; - word-break: keep-all; } - .tsd-panel table th { - font-weight: bold; } - .tsd-panel table th, .tsd-panel table td { - padding: 6px 13px; - border: 1px solid #ddd; } - .tsd-panel table tr { - background-color: #fff; - border-top: 1px solid #ccc; } - .tsd-panel table tr:nth-child(2n) { - background-color: #f8f8f8; } - -.tsd-panel-group { - margin: 60px 0; } - .tsd-panel-group > h1, .tsd-panel-group > h2, .tsd-panel-group > h3 { - padding-left: 20px; - padding-right: 20px; } - -#tsd-search { - transition: background-color 0.2s; } - #tsd-search .title { - position: relative; - z-index: 2; } - #tsd-search .field { - position: absolute; - left: 0; - top: 0; - right: 40px; - height: 40px; } - #tsd-search .field input { - box-sizing: border-box; - position: relative; - top: -50px; - z-index: 1; - width: 100%; - padding: 0 10px; - opacity: 0; - outline: 0; - border: 0; - background: transparent; - color: #222; } - #tsd-search .field label { - position: absolute; - overflow: hidden; - right: -40px; } - #tsd-search .field input, - #tsd-search .title { - transition: opacity 0.2s; } - #tsd-search .results { - position: absolute; - visibility: hidden; - top: 40px; - width: 100%; - margin: 0; - padding: 0; - list-style: none; - box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); } - #tsd-search .results li { - padding: 0 10px; - background-color: #fdfdfd; } - #tsd-search .results li:nth-child(even) { - background-color: #fff; } - #tsd-search .results li.state { - display: none; } - #tsd-search .results li.current, - #tsd-search .results li:hover { - background-color: #eee; } - #tsd-search .results a { - display: block; } - #tsd-search .results a:before { - top: 10px; } - #tsd-search .results span.parent { - color: #808080; - font-weight: normal; } - #tsd-search.has-focus { - background-color: #eee; } - #tsd-search.has-focus .field input { - top: 0; - opacity: 1; } - #tsd-search.has-focus .title { - z-index: 0; - opacity: 0; } - #tsd-search.has-focus .results { - visibility: visible; } - #tsd-search.loading .results li.state.loading { - display: block; } - #tsd-search.failure .results li.state.failure { - display: block; } - -.tsd-signature { - margin: 0 0 1em 0; - padding: 10px; - border: 1px solid #eee; - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; - font-size: 14px; } - .tsd-signature.tsd-kind-icon { - padding-left: 30px; } - .tsd-signature.tsd-kind-icon:before { - top: 10px; - left: 10px; } - .tsd-panel > .tsd-signature { - margin-left: -20px; - margin-right: -20px; - border-width: 1px 0; } - .tsd-panel > .tsd-signature.tsd-kind-icon { - padding-left: 40px; } - .tsd-panel > .tsd-signature.tsd-kind-icon:before { - left: 20px; } - -.tsd-signature-symbol { - color: #808080; - font-weight: normal; } - -.tsd-signature-type { - font-style: italic; - font-weight: normal; } - -.tsd-signatures { - padding: 0; - margin: 0 0 1em 0; - border: 1px solid #eee; } - .tsd-signatures .tsd-signature { - margin: 0; - border-width: 1px 0 0 0; - transition: background-color 0.1s; } - .tsd-signatures .tsd-signature:first-child { - border-top-width: 0; } - .tsd-signatures .tsd-signature.current { - background-color: #eee; } - .tsd-signatures.active > .tsd-signature { - cursor: pointer; } - .tsd-panel > .tsd-signatures { - margin-left: -20px; - margin-right: -20px; - border-width: 1px 0; } - .tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon { - padding-left: 40px; } - .tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon:before { - left: 20px; } - .tsd-panel > a.anchor + .tsd-signatures { - border-top-width: 0; - margin-top: -20px; } - -ul.tsd-descriptions { - position: relative; - overflow: hidden; - transition: height 0.3s; - padding: 0; - list-style: none; } - ul.tsd-descriptions.active > .tsd-description { - display: none; } - ul.tsd-descriptions.active > .tsd-description.current { - display: block; } - ul.tsd-descriptions.active > .tsd-description.fade-in { - animation: fade-in-delayed 0.3s; } - ul.tsd-descriptions.active > .tsd-description.fade-out { - animation: fade-out-delayed 0.3s; - position: absolute; - display: block; - top: 0; - left: 0; - right: 0; - opacity: 0; - visibility: hidden; } - ul.tsd-descriptions h4, ul.tsd-descriptions .tsd-index-panel h3, .tsd-index-panel ul.tsd-descriptions h3 { - font-size: 16px; - margin: 1em 0 0.5em 0; } - -ul.tsd-parameters, -ul.tsd-type-parameters { - list-style: square; - margin: 0; - padding-left: 20px; } - ul.tsd-parameters > li.tsd-parameter-siganture, - ul.tsd-type-parameters > li.tsd-parameter-siganture { - list-style: none; - margin-left: -20px; } - ul.tsd-parameters h5, - ul.tsd-type-parameters h5 { - font-size: 16px; - margin: 1em 0 0.5em 0; } - ul.tsd-parameters .tsd-comment, - ul.tsd-type-parameters .tsd-comment { - margin-top: -0.5em; } - -.tsd-sources { - font-size: 14px; - color: #808080; - margin: 0 0 1em 0; } - .tsd-sources a { - color: #808080; - text-decoration: underline; } - .tsd-sources ul, .tsd-sources p { - margin: 0 !important; } - .tsd-sources ul { - list-style: none; - padding: 0; } - -.tsd-page-toolbar { - position: fixed; - z-index: 1; - top: 0; - left: 0; - width: 100%; - height: 40px; - color: #333; - background: #fff; - border-bottom: 1px solid #eee; - transition: transform .3s linear; } - .tsd-page-toolbar a { - color: #333; - text-decoration: none; } - .tsd-page-toolbar a.title { - font-weight: bold; } - .tsd-page-toolbar a.title:hover { - text-decoration: underline; } - .tsd-page-toolbar .table-wrap { - display: table; - width: 100%; - height: 40px; } - .tsd-page-toolbar .table-cell { - display: table-cell; - position: relative; - white-space: nowrap; - line-height: 40px; } - .tsd-page-toolbar .table-cell:first-child { - width: 100%; } - -.tsd-page-toolbar--hide { - transform: translateY(-100%); } - -.tsd-widget:before, .tsd-select .tsd-select-label:before, .tsd-select .tsd-select-list li:before { - content: ''; - display: inline-block; - width: 40px; - height: 40px; - margin: 0 -8px 0 0; - background-image: url(../images/widgets.png); - background-repeat: no-repeat; - text-indent: -1024px; - vertical-align: bottom; } - @media (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { - .tsd-widget:before, .tsd-select .tsd-select-label:before, .tsd-select .tsd-select-list li:before { - background-image: url(../images/widgets@2x.png); - background-size: 320px 40px; } } - -.tsd-widget { - display: inline-block; - overflow: hidden; - opacity: 0.6; - height: 40px; - transition: opacity 0.1s, background-color 0.2s; - vertical-align: bottom; - cursor: pointer; } - .tsd-widget:hover { - opacity: 0.8; } - .tsd-widget.active { - opacity: 1; - background-color: #eee; } - .tsd-widget.no-caption { - width: 40px; } - .tsd-widget.no-caption:before { - margin: 0; } - .tsd-widget.search:before { - background-position: 0 0; } - .tsd-widget.menu:before { - background-position: -40px 0; } - .tsd-widget.options:before { - background-position: -80px 0; } - .tsd-widget.options, .tsd-widget.menu { - display: none; } - @media (max-width: 900px) { - .tsd-widget.options, .tsd-widget.menu { - display: inline-block; } } - input[type=checkbox] + .tsd-widget:before { - background-position: -120px 0; } - input[type=checkbox]:checked + .tsd-widget:before { - background-position: -160px 0; } - -.tsd-select { - position: relative; - display: inline-block; - height: 40px; - transition: opacity 0.1s, background-color 0.2s; - vertical-align: bottom; - cursor: pointer; } - .tsd-select .tsd-select-label { - opacity: 0.6; - transition: opacity 0.2s; } - .tsd-select .tsd-select-label:before { - background-position: -240px 0; } - .tsd-select.active .tsd-select-label { - opacity: 0.8; } - .tsd-select.active .tsd-select-list { - visibility: visible; - opacity: 1; - transition-delay: 0s; } - .tsd-select .tsd-select-list { - position: absolute; - visibility: hidden; - top: 40px; - left: 0; - margin: 0; - padding: 0; - opacity: 0; - list-style: none; - box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); - transition: visibility 0s 0.2s, opacity 0.2s; } - .tsd-select .tsd-select-list li { - padding: 0 20px 0 0; - background-color: #fdfdfd; } - .tsd-select .tsd-select-list li:before { - background-position: 40px 0; } - .tsd-select .tsd-select-list li:nth-child(even) { - background-color: #fff; } - .tsd-select .tsd-select-list li:hover { - background-color: #eee; } - .tsd-select .tsd-select-list li.selected:before { - background-position: -200px 0; } - @media (max-width: 900px) { - .tsd-select .tsd-select-list { - top: 0; - left: auto; - right: 100%; - margin-right: -5px; } - .tsd-select .tsd-select-label:before { - background-position: -280px 0; } } - -img { - max-width: 100%; } +/*! normalize.css v1.1.3 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;font-family:sans-serif}button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4,.tsd-index-panel h3{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:1em 40px}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}p,pre{margin:1em 0}code,kbd,pre,samp{font-family:monospace,serif;_font-family:"courier new",monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:"";content:none}small{font-size:80%}sub{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;top:-0.5em}sub{bottom:-0.25em}dl,menu,ol,ul{margin:1em 0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure,form{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button]{-webkit-appearance:button;cursor:pointer;*overflow:visible}input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;*overflow:visible}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}.hljs{display:inline-block;padding:.5em;background:#fff;color:#000}.hljs-comment,.hljs-annotation,.hljs-template_comment,.diff .hljs-header,.hljs-chunk,.apache .hljs-cbracket{color:green}.hljs-keyword,.hljs-id,.hljs-built_in,.css .smalltalk .hljs-class,.hljs-winutils,.bash .hljs-variable,.tex .hljs-command,.hljs-request,.hljs-status,.nginx .hljs-title{color:blue}.xml .hljs-tag{color:blue}.xml .hljs-tag .hljs-value{color:blue}.hljs-string,.hljs-title,.hljs-parent,.hljs-tag .hljs-value,.hljs-rules .hljs-value{color:#a31515}.ruby .hljs-symbol{color:#a31515}.ruby .hljs-symbol .hljs-string{color:#a31515}.hljs-template_tag,.django .hljs-variable,.hljs-addition,.hljs-flow,.hljs-stream,.apache .hljs-tag,.hljs-date,.tex .hljs-formula,.coffeescript .hljs-attribute{color:#a31515}.ruby .hljs-string,.hljs-decorator,.hljs-filter .hljs-argument,.hljs-localvars,.hljs-array,.hljs-attr_selector,.hljs-pseudo,.hljs-pi,.hljs-doctype,.hljs-deletion,.hljs-envvar,.hljs-shebang,.hljs-preprocessor,.hljs-pragma,.userType,.apache .hljs-sqbracket,.nginx .hljs-built_in,.tex .hljs-special,.hljs-prompt{color:#2b91af}.hljs-phpdoc,.hljs-javadoc,.hljs-xmlDocTag{color:gray}.vhdl .hljs-typename{font-weight:bold}.vhdl .hljs-string{color:#666}.vhdl .hljs-literal{color:#a31515}.vhdl .hljs-attribute{color:#00b0e8}.xml .hljs-attribute{color:red}ul.tsd-descriptions>li>:first-child,.tsd-panel>:first-child,.col>:first-child,.col-11>:first-child,.col-10>:first-child,.col-9>:first-child,.col-8>:first-child,.col-7>:first-child,.col-6>:first-child,.col-5>:first-child,.col-4>:first-child,.col-3>:first-child,.col-2>:first-child,.col-1>:first-child,ul.tsd-descriptions>li>:first-child>:first-child,.tsd-panel>:first-child>:first-child,.col>:first-child>:first-child,.col-11>:first-child>:first-child,.col-10>:first-child>:first-child,.col-9>:first-child>:first-child,.col-8>:first-child>:first-child,.col-7>:first-child>:first-child,.col-6>:first-child>:first-child,.col-5>:first-child>:first-child,.col-4>:first-child>:first-child,.col-3>:first-child>:first-child,.col-2>:first-child>:first-child,.col-1>:first-child>:first-child,ul.tsd-descriptions>li>:first-child>:first-child>:first-child,.tsd-panel>:first-child>:first-child>:first-child,.col>:first-child>:first-child>:first-child,.col-11>:first-child>:first-child>:first-child,.col-10>:first-child>:first-child>:first-child,.col-9>:first-child>:first-child>:first-child,.col-8>:first-child>:first-child>:first-child,.col-7>:first-child>:first-child>:first-child,.col-6>:first-child>:first-child>:first-child,.col-5>:first-child>:first-child>:first-child,.col-4>:first-child>:first-child>:first-child,.col-3>:first-child>:first-child>:first-child,.col-2>:first-child>:first-child>:first-child,.col-1>:first-child>:first-child>:first-child{margin-top:0}ul.tsd-descriptions>li>:last-child,.tsd-panel>:last-child,.col>:last-child,.col-11>:last-child,.col-10>:last-child,.col-9>:last-child,.col-8>:last-child,.col-7>:last-child,.col-6>:last-child,.col-5>:last-child,.col-4>:last-child,.col-3>:last-child,.col-2>:last-child,.col-1>:last-child,ul.tsd-descriptions>li>:last-child>:last-child,.tsd-panel>:last-child>:last-child,.col>:last-child>:last-child,.col-11>:last-child>:last-child,.col-10>:last-child>:last-child,.col-9>:last-child>:last-child,.col-8>:last-child>:last-child,.col-7>:last-child>:last-child,.col-6>:last-child>:last-child,.col-5>:last-child>:last-child,.col-4>:last-child>:last-child,.col-3>:last-child>:last-child,.col-2>:last-child>:last-child,.col-1>:last-child>:last-child,ul.tsd-descriptions>li>:last-child>:last-child>:last-child,.tsd-panel>:last-child>:last-child>:last-child,.col>:last-child>:last-child>:last-child,.col-11>:last-child>:last-child>:last-child,.col-10>:last-child>:last-child>:last-child,.col-9>:last-child>:last-child>:last-child,.col-8>:last-child>:last-child>:last-child,.col-7>:last-child>:last-child>:last-child,.col-6>:last-child>:last-child>:last-child,.col-5>:last-child>:last-child>:last-child,.col-4>:last-child>:last-child>:last-child,.col-3>:last-child>:last-child>:last-child,.col-2>:last-child>:last-child>:last-child,.col-1>:last-child>:last-child>:last-child{margin-bottom:0}.container{max-width:1200px;margin:0 auto;padding:0 40px}@media(max-width: 640px){.container{padding:0 20px}}.container-main{padding-bottom:200px}.row{display:flex;position:relative;margin:0 -10px}.row:after{visibility:hidden;display:block;content:"";clear:both;height:0}.col,.col-11,.col-10,.col-9,.col-8,.col-7,.col-6,.col-5,.col-4,.col-3,.col-2,.col-1{box-sizing:border-box;float:left;padding:0 10px}.col-1{width:8.3333333333%}.offset-1{margin-left:8.3333333333%}.col-2{width:16.6666666667%}.offset-2{margin-left:16.6666666667%}.col-3{width:25%}.offset-3{margin-left:25%}.col-4{width:33.3333333333%}.offset-4{margin-left:33.3333333333%}.col-5{width:41.6666666667%}.offset-5{margin-left:41.6666666667%}.col-6{width:50%}.offset-6{margin-left:50%}.col-7{width:58.3333333333%}.offset-7{margin-left:58.3333333333%}.col-8{width:66.6666666667%}.offset-8{margin-left:66.6666666667%}.col-9{width:75%}.offset-9{margin-left:75%}.col-10{width:83.3333333333%}.offset-10{margin-left:83.3333333333%}.col-11{width:91.6666666667%}.offset-11{margin-left:91.6666666667%}.tsd-kind-icon{display:block;position:relative;padding-left:20px;text-indent:-20px}.tsd-kind-icon:before{content:"";display:inline-block;vertical-align:middle;width:17px;height:17px;margin:0 3px 2px 0;background-image:url(../images/icons.png)}@media(-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi){.tsd-kind-icon:before{background-image:url(../images/icons@2x.png);background-size:238px 204px}}.tsd-signature.tsd-kind-icon:before{background-position:0 -153px}.tsd-kind-object-literal>.tsd-kind-icon:before{background-position:0px -17px}.tsd-kind-object-literal.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -17px}.tsd-kind-object-literal.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -17px}.tsd-kind-class>.tsd-kind-icon:before{background-position:0px -34px}.tsd-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -34px}.tsd-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -34px}.tsd-kind-class.tsd-has-type-parameter>.tsd-kind-icon:before{background-position:0px -51px}.tsd-kind-class.tsd-has-type-parameter.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -51px}.tsd-kind-class.tsd-has-type-parameter.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -51px}.tsd-kind-interface>.tsd-kind-icon:before{background-position:0px -68px}.tsd-kind-interface.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -68px}.tsd-kind-interface.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -68px}.tsd-kind-interface.tsd-has-type-parameter>.tsd-kind-icon:before{background-position:0px -85px}.tsd-kind-interface.tsd-has-type-parameter.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -85px}.tsd-kind-interface.tsd-has-type-parameter.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -85px}.tsd-kind-namespace>.tsd-kind-icon:before{background-position:0px -102px}.tsd-kind-namespace.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -102px}.tsd-kind-namespace.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -102px}.tsd-kind-module>.tsd-kind-icon:before{background-position:0px -102px}.tsd-kind-module.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -102px}.tsd-kind-module.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -102px}.tsd-kind-enum>.tsd-kind-icon:before{background-position:0px -119px}.tsd-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -119px}.tsd-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -119px}.tsd-kind-enum-member>.tsd-kind-icon:before{background-position:0px -136px}.tsd-kind-enum-member.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -136px}.tsd-kind-enum-member.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -136px}.tsd-kind-signature>.tsd-kind-icon:before{background-position:0px -153px}.tsd-kind-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -153px}.tsd-kind-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -153px}.tsd-kind-type-alias>.tsd-kind-icon:before{background-position:0px -170px}.tsd-kind-type-alias.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -170px}.tsd-kind-type-alias.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -170px}.tsd-kind-type-alias.tsd-has-type-parameter>.tsd-kind-icon:before{background-position:0px -187px}.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -187px}.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -187px}.tsd-kind-variable>.tsd-kind-icon:before{background-position:-136px -0px}.tsd-kind-variable.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -0px}.tsd-kind-variable.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-variable.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -0px}.tsd-kind-variable.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -0px}.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -0px}.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -0px}.tsd-kind-variable.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-variable.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -0px}.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -0px}.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-variable.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -0px}.tsd-kind-variable.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -0px}.tsd-kind-property>.tsd-kind-icon:before{background-position:-136px -0px}.tsd-kind-property.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -0px}.tsd-kind-property.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-property.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -0px}.tsd-kind-property.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -0px}.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -0px}.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -0px}.tsd-kind-property.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-property.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -0px}.tsd-kind-property.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -0px}.tsd-kind-property.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-property.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -0px}.tsd-kind-property.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -0px}.tsd-kind-get-signature>.tsd-kind-icon:before{background-position:-136px -17px}.tsd-kind-get-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -17px}.tsd-kind-get-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -17px}.tsd-kind-get-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -17px}.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -17px}.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -17px}.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -17px}.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -17px}.tsd-kind-get-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -17px}.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -17px}.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -17px}.tsd-kind-get-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -17px}.tsd-kind-get-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -17px}.tsd-kind-set-signature>.tsd-kind-icon:before{background-position:-136px -34px}.tsd-kind-set-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -34px}.tsd-kind-set-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -34px}.tsd-kind-set-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -34px}.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -34px}.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -34px}.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -34px}.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -34px}.tsd-kind-set-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -34px}.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -34px}.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -34px}.tsd-kind-set-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -34px}.tsd-kind-set-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -34px}.tsd-kind-accessor>.tsd-kind-icon:before{background-position:-136px -51px}.tsd-kind-accessor.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -51px}.tsd-kind-accessor.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -51px}.tsd-kind-accessor.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -51px}.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -51px}.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -51px}.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -51px}.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -51px}.tsd-kind-accessor.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -51px}.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -51px}.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -51px}.tsd-kind-accessor.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -51px}.tsd-kind-accessor.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -51px}.tsd-kind-function>.tsd-kind-icon:before{background-position:-136px -68px}.tsd-kind-function.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -68px}.tsd-kind-function.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-function.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -68px}.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -68px}.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -68px}.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -68px}.tsd-kind-function.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-function.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -68px}.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -68px}.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-function.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -68px}.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -68px}.tsd-kind-method>.tsd-kind-icon:before{background-position:-136px -68px}.tsd-kind-method.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -68px}.tsd-kind-method.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-method.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -68px}.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -68px}.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -68px}.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -68px}.tsd-kind-method.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-method.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -68px}.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -68px}.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-method.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -68px}.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -68px}.tsd-kind-call-signature>.tsd-kind-icon:before{background-position:-136px -68px}.tsd-kind-call-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -68px}.tsd-kind-call-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-call-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -68px}.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -68px}.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -68px}.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -68px}.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-call-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -68px}.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -68px}.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-call-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -68px}.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -68px}.tsd-kind-function.tsd-has-type-parameter>.tsd-kind-icon:before{background-position:-136px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -85px}.tsd-kind-method.tsd-has-type-parameter>.tsd-kind-icon:before{background-position:-136px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -85px}.tsd-kind-constructor>.tsd-kind-icon:before{background-position:-136px -102px}.tsd-kind-constructor.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -102px}.tsd-kind-constructor.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -102px}.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -102px}.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -102px}.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -102px}.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -102px}.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -102px}.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -102px}.tsd-kind-constructor.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -102px}.tsd-kind-constructor-signature>.tsd-kind-icon:before{background-position:-136px -102px}.tsd-kind-constructor-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -102px}.tsd-kind-constructor-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -102px}.tsd-kind-index-signature>.tsd-kind-icon:before{background-position:-136px -119px}.tsd-kind-index-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -119px}.tsd-kind-index-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -119px}.tsd-kind-index-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -119px}.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -119px}.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -119px}.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -119px}.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -119px}.tsd-kind-index-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -119px}.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -119px}.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -119px}.tsd-kind-index-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -119px}.tsd-kind-index-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -119px}.tsd-kind-event>.tsd-kind-icon:before{background-position:-136px -136px}.tsd-kind-event.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -136px}.tsd-kind-event.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -136px}.tsd-kind-event.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -136px}.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -136px}.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -136px}.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -136px}.tsd-kind-event.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -136px}.tsd-kind-event.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -136px}.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -136px}.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -136px}.tsd-kind-event.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -136px}.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -136px}.tsd-is-static>.tsd-kind-icon:before{background-position:-136px -153px}.tsd-is-static.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -153px}.tsd-is-static.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -153px}.tsd-is-static.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -153px}.tsd-is-static.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -153px}.tsd-is-static.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -153px}.tsd-is-static.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -153px}.tsd-is-static.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -153px}.tsd-is-static.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -153px}.tsd-is-static.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -153px}.tsd-is-static.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -153px}.tsd-is-static.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -153px}.tsd-is-static.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -153px}.tsd-is-static.tsd-kind-function>.tsd-kind-icon:before{background-position:-136px -170px}.tsd-is-static.tsd-kind-function.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -170px}.tsd-is-static.tsd-kind-function.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -170px}.tsd-is-static.tsd-kind-method>.tsd-kind-icon:before{background-position:-136px -170px}.tsd-is-static.tsd-kind-method.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -170px}.tsd-is-static.tsd-kind-method.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -170px}.tsd-is-static.tsd-kind-call-signature>.tsd-kind-icon:before{background-position:-136px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -170px}.tsd-is-static.tsd-kind-event>.tsd-kind-icon:before{background-position:-136px -187px}.tsd-is-static.tsd-kind-event.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -187px}.tsd-is-static.tsd-kind-event.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -187px}@keyframes fade-in{from{opacity:0}to{opacity:1}}@keyframes fade-out{from{opacity:1;visibility:visible}to{opacity:0}}@keyframes fade-in-delayed{0%{opacity:0}33%{opacity:0}100%{opacity:1}}@keyframes fade-out-delayed{0%{opacity:1;visibility:visible}66%{opacity:0}100%{opacity:0}}@keyframes shift-to-left{from{transform:translate(0, 0)}to{transform:translate(-25%, 0)}}@keyframes unshift-to-left{from{transform:translate(-25%, 0)}to{transform:translate(0, 0)}}@keyframes pop-in-from-right{from{transform:translate(100%, 0)}to{transform:translate(0, 0)}}@keyframes pop-out-to-right{from{transform:translate(0, 0);visibility:visible}to{transform:translate(100%, 0)}}body{background:#fdfdfd;font-family:"Segoe UI",sans-serif;font-size:16px;color:#222}a{color:#4da6ff;text-decoration:none}a:hover{text-decoration:underline}code,pre{font-family:Menlo,Monaco,Consolas,"Courier New",monospace;padding:.2em;margin:0;font-size:14px;background-color:rgba(0,0,0,.04)}pre{padding:10px}pre code{padding:0;font-size:100%;background-color:transparent}.tsd-typography{line-height:1.333em}.tsd-typography ul{list-style:square;padding:0 0 0 20px;margin:0}.tsd-typography h4,.tsd-typography .tsd-index-panel h3,.tsd-index-panel .tsd-typography h3,.tsd-typography h5,.tsd-typography h6{font-size:1em;margin:0}.tsd-typography h5,.tsd-typography h6{font-weight:normal}.tsd-typography p,.tsd-typography ul,.tsd-typography ol{margin:1em 0}@media(min-width: 901px)and (max-width: 1024px){html.default .col-content{width:72%}html.default .col-menu{width:28%}html.default .tsd-navigation{padding-left:10px}}@media(max-width: 900px){html.default .col-content{float:none;width:100%}html.default .col-menu{position:fixed !important;overflow:auto;-webkit-overflow-scrolling:touch;z-index:1024;top:0 !important;bottom:0 !important;left:auto !important;right:0 !important;width:100%;padding:20px 20px 0 0;max-width:450px;visibility:hidden;background-color:#fff;transform:translate(100%, 0)}html.default .col-menu>*:last-child{padding-bottom:20px}html.default .overlay{content:"";display:block;position:fixed;z-index:1023;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.75);visibility:hidden}html.default.to-has-menu .overlay{animation:fade-in .4s}html.default.to-has-menu header,html.default.to-has-menu footer,html.default.to-has-menu .col-content{animation:shift-to-left .4s}html.default.to-has-menu .col-menu{animation:pop-in-from-right .4s}html.default.from-has-menu .overlay{animation:fade-out .4s}html.default.from-has-menu header,html.default.from-has-menu footer,html.default.from-has-menu .col-content{animation:unshift-to-left .4s}html.default.from-has-menu .col-menu{animation:pop-out-to-right .4s}html.default.has-menu body{overflow:hidden}html.default.has-menu .overlay{visibility:visible}html.default.has-menu header,html.default.has-menu footer,html.default.has-menu .col-content{transform:translate(-25%, 0)}html.default.has-menu .col-menu{visibility:visible;transform:translate(0, 0)}}.tsd-page-title{padding:70px 0 20px 0;margin:0 0 40px 0;background:#fff;box-shadow:0 0 5px rgba(0,0,0,.35)}.tsd-page-title h1{margin:0}.tsd-breadcrumb{margin:0;padding:0;color:#707070}.tsd-breadcrumb a{color:#707070;text-decoration:none}.tsd-breadcrumb a:hover{text-decoration:underline}.tsd-breadcrumb li{display:inline}.tsd-breadcrumb li:after{content:" / "}html.minimal .container{margin:0}html.minimal .container-main{padding-top:50px;padding-bottom:0}html.minimal .content-wrap{padding-left:300px}html.minimal .tsd-navigation{position:fixed !important;overflow:auto;-webkit-overflow-scrolling:touch;box-sizing:border-box;z-index:1;left:0;top:40px;bottom:0;width:300px;padding:20px;margin:0}html.minimal .tsd-member .tsd-member{margin-left:0}html.minimal .tsd-page-toolbar{position:fixed;z-index:2}html.minimal #tsd-filter .tsd-filter-group{right:0;transform:none}html.minimal footer{background-color:transparent}html.minimal footer .container{padding:0}html.minimal .tsd-generator{padding:0}@media(max-width: 900px){html.minimal .tsd-navigation{display:none}html.minimal .content-wrap{padding-left:0}}dl.tsd-comment-tags{overflow:hidden}dl.tsd-comment-tags dt{float:left;padding:1px 5px;margin:0 10px 0 0;border-radius:4px;border:1px solid #707070;color:#707070;font-size:.8em;font-weight:normal}dl.tsd-comment-tags dd{margin:0 0 10px 0}dl.tsd-comment-tags dd:before,dl.tsd-comment-tags dd:after{display:table;content:" "}dl.tsd-comment-tags dd pre,dl.tsd-comment-tags dd:after{clear:both}dl.tsd-comment-tags p{margin:0}.tsd-panel.tsd-comment .lead{font-size:1.1em;line-height:1.333em;margin-bottom:2em}.tsd-panel.tsd-comment .lead:last-child{margin-bottom:0}.toggle-protected .tsd-is-private{display:none}.toggle-public .tsd-is-private,.toggle-public .tsd-is-protected,.toggle-public .tsd-is-private-protected{display:none}.toggle-inherited .tsd-is-inherited{display:none}.toggle-only-exported .tsd-is-not-exported{display:none}.toggle-externals .tsd-is-external{display:none}#tsd-filter{position:relative;display:inline-block;height:40px;vertical-align:bottom}.no-filter #tsd-filter{display:none}#tsd-filter .tsd-filter-group{display:inline-block;height:40px;vertical-align:bottom;white-space:nowrap}#tsd-filter input{display:none}@media(max-width: 900px){#tsd-filter .tsd-filter-group{display:block;position:absolute;top:40px;right:20px;height:auto;background-color:#fff;visibility:hidden;transform:translate(50%, 0);box-shadow:0 0 4px rgba(0,0,0,.25)}.has-options #tsd-filter .tsd-filter-group{visibility:visible}.to-has-options #tsd-filter .tsd-filter-group{animation:fade-in .2s}.from-has-options #tsd-filter .tsd-filter-group{animation:fade-out .2s}#tsd-filter label,#tsd-filter .tsd-select{display:block;padding-right:20px}}footer{border-top:1px solid #eee;background-color:#fff}footer.with-border-bottom{border-bottom:1px solid #eee}footer .tsd-legend-group{font-size:0}footer .tsd-legend{display:inline-block;width:25%;padding:0;font-size:16px;list-style:none;line-height:1.333em;vertical-align:top}@media(max-width: 900px){footer .tsd-legend{width:50%}}.tsd-hierarchy{list-style:square;padding:0 0 0 20px;margin:0}.tsd-hierarchy .target{font-weight:bold}.tsd-index-panel .tsd-index-content{margin-bottom:-30px !important}.tsd-index-panel .tsd-index-section{margin-bottom:30px !important}.tsd-index-panel h3{margin:0 -20px 10px -20px;padding:0 20px 10px 20px;border-bottom:1px solid #eee}.tsd-index-panel ul.tsd-index-list{-webkit-column-count:3;-moz-column-count:3;-ms-column-count:3;-o-column-count:3;column-count:3;-webkit-column-gap:20px;-moz-column-gap:20px;-ms-column-gap:20px;-o-column-gap:20px;column-gap:20px;padding:0;list-style:none;line-height:1.333em}@media(max-width: 900px){.tsd-index-panel ul.tsd-index-list{-webkit-column-count:1;-moz-column-count:1;-ms-column-count:1;-o-column-count:1;column-count:1}}@media(min-width: 901px)and (max-width: 1024px){.tsd-index-panel ul.tsd-index-list{-webkit-column-count:2;-moz-column-count:2;-ms-column-count:2;-o-column-count:2;column-count:2}}.tsd-index-panel ul.tsd-index-list li{-webkit-page-break-inside:avoid;-moz-page-break-inside:avoid;-ms-page-break-inside:avoid;-o-page-break-inside:avoid;page-break-inside:avoid}.tsd-index-panel a,.tsd-index-panel .tsd-parent-kind-module a{color:#9600ff}.tsd-index-panel .tsd-parent-kind-interface a{color:#647f1b}.tsd-index-panel .tsd-parent-kind-enum a{color:#937210}.tsd-index-panel .tsd-parent-kind-class a{color:#0672de}.tsd-index-panel .tsd-kind-module a{color:#9600ff}.tsd-index-panel .tsd-kind-interface a{color:#647f1b}.tsd-index-panel .tsd-kind-enum a{color:#937210}.tsd-index-panel .tsd-kind-class a{color:#0672de}.tsd-index-panel .tsd-is-private a{color:#707070}.tsd-flag{display:inline-block;padding:1px 5px;border-radius:4px;color:#fff;background-color:#707070;text-indent:0;font-size:14px;font-weight:normal}.tsd-anchor{position:absolute;top:-100px}.tsd-member{position:relative}.tsd-member .tsd-anchor+h3{margin-top:0;margin-bottom:0;border-bottom:none}.tsd-navigation{margin:0 0 0 40px}.tsd-navigation a{display:block;padding-top:2px;padding-bottom:2px;border-left:2px solid transparent;color:#222;text-decoration:none;transition:border-left-color .1s}.tsd-navigation a:hover{text-decoration:underline}.tsd-navigation ul{margin:0;padding:0;list-style:none}.tsd-navigation li{padding:0}.tsd-navigation.primary{padding-bottom:40px}.tsd-navigation.primary a{display:block;padding-top:6px;padding-bottom:6px}.tsd-navigation.primary ul li a{padding-left:5px}.tsd-navigation.primary ul li li a{padding-left:25px}.tsd-navigation.primary ul li li li a{padding-left:45px}.tsd-navigation.primary ul li li li li a{padding-left:65px}.tsd-navigation.primary ul li li li li li a{padding-left:85px}.tsd-navigation.primary ul li li li li li li a{padding-left:105px}.tsd-navigation.primary>ul{border-bottom:1px solid #eee}.tsd-navigation.primary li{border-top:1px solid #eee}.tsd-navigation.primary li.current>a{font-weight:bold}.tsd-navigation.primary li.label span{display:block;padding:20px 0 6px 5px;color:#707070}.tsd-navigation.primary li.globals+li>span,.tsd-navigation.primary li.globals+li>a{padding-top:20px}.tsd-navigation.secondary{max-height:calc(100vh - 1rem - 40px);overflow:auto;position:-webkit-sticky;position:sticky;top:calc(.5rem + 40px);transition:.3s}.tsd-navigation.secondary.tsd-navigation--toolbar-hide{max-height:calc(100vh - 1rem);top:.5rem}.tsd-navigation.secondary ul{transition:opacity .2s}.tsd-navigation.secondary ul li a{padding-left:25px}.tsd-navigation.secondary ul li li a{padding-left:45px}.tsd-navigation.secondary ul li li li a{padding-left:65px}.tsd-navigation.secondary ul li li li li a{padding-left:85px}.tsd-navigation.secondary ul li li li li li a{padding-left:105px}.tsd-navigation.secondary ul li li li li li li a{padding-left:125px}.tsd-navigation.secondary ul.current a{border-left-color:#eee}.tsd-navigation.secondary li.focus>a,.tsd-navigation.secondary ul.current li.focus>a{border-left-color:#000}.tsd-navigation.secondary li.current{margin-top:20px;margin-bottom:20px;border-left-color:#eee}.tsd-navigation.secondary li.current>a{font-weight:bold}@media(min-width: 901px){.menu-sticky-wrap{position:static}}.tsd-panel{margin:20px 0;padding:20px;background-color:#fff;box-shadow:0 0 4px rgba(0,0,0,.25)}.tsd-panel:empty{display:none}.tsd-panel>h1,.tsd-panel>h2,.tsd-panel>h3{margin:1.5em -20px 10px -20px;padding:0 20px 10px 20px;border-bottom:1px solid #eee}.tsd-panel>h1.tsd-before-signature,.tsd-panel>h2.tsd-before-signature,.tsd-panel>h3.tsd-before-signature{margin-bottom:0;border-bottom:0}.tsd-panel table{display:block;width:100%;overflow:auto;margin-top:10px;word-break:normal;word-break:keep-all}.tsd-panel table th{font-weight:bold}.tsd-panel table th,.tsd-panel table td{padding:6px 13px;border:1px solid #ddd}.tsd-panel table tr{background-color:#fff;border-top:1px solid #ccc}.tsd-panel table tr:nth-child(2n){background-color:#f8f8f8}.tsd-panel-group{margin:60px 0}.tsd-panel-group>h1,.tsd-panel-group>h2,.tsd-panel-group>h3{padding-left:20px;padding-right:20px}#tsd-search{transition:background-color .2s}#tsd-search .title{position:relative;z-index:2}#tsd-search .field{position:absolute;left:0;top:0;right:40px;height:40px}#tsd-search .field input{box-sizing:border-box;position:relative;top:-50px;z-index:1;width:100%;padding:0 10px;opacity:0;outline:0;border:0;background:transparent;color:#222}#tsd-search .field label{position:absolute;overflow:hidden;right:-40px}#tsd-search .field input,#tsd-search .title{transition:opacity .2s}#tsd-search .results{position:absolute;visibility:hidden;top:40px;width:100%;margin:0;padding:0;list-style:none;box-shadow:0 0 4px rgba(0,0,0,.25)}#tsd-search .results li{padding:0 10px;background-color:#fdfdfd}#tsd-search .results li:nth-child(even){background-color:#fff}#tsd-search .results li.state{display:none}#tsd-search .results li.current,#tsd-search .results li:hover{background-color:#eee}#tsd-search .results a{display:block}#tsd-search .results a:before{top:10px}#tsd-search .results span.parent{color:#707070;font-weight:normal}#tsd-search.has-focus{background-color:#eee}#tsd-search.has-focus .field input{top:0;opacity:1}#tsd-search.has-focus .title{z-index:0;opacity:0}#tsd-search.has-focus .results{visibility:visible}#tsd-search.loading .results li.state.loading{display:block}#tsd-search.failure .results li.state.failure{display:block}.tsd-signature{margin:0 0 1em 0;padding:10px;border:1px solid #eee;font-family:Menlo,Monaco,Consolas,"Courier New",monospace;font-size:14px;overflow-x:auto}.tsd-signature.tsd-kind-icon{padding-left:30px}.tsd-signature.tsd-kind-icon:before{top:10px;left:10px}.tsd-panel>.tsd-signature{margin-left:-20px;margin-right:-20px;border-width:1px 0}.tsd-panel>.tsd-signature.tsd-kind-icon{padding-left:40px}.tsd-panel>.tsd-signature.tsd-kind-icon:before{left:20px}.tsd-signature-symbol{color:#707070;font-weight:normal}.tsd-signature-type{font-style:italic;font-weight:normal}.tsd-signatures{padding:0;margin:0 0 1em 0;border:1px solid #eee}.tsd-signatures .tsd-signature{margin:0;border-width:1px 0 0 0;transition:background-color .1s}.tsd-signatures .tsd-signature:first-child{border-top-width:0}.tsd-signatures .tsd-signature.current{background-color:#eee}.tsd-signatures.active>.tsd-signature{cursor:pointer}.tsd-panel>.tsd-signatures{margin-left:-20px;margin-right:-20px;border-width:1px 0}.tsd-panel>.tsd-signatures .tsd-signature.tsd-kind-icon{padding-left:40px}.tsd-panel>.tsd-signatures .tsd-signature.tsd-kind-icon:before{left:20px}.tsd-panel>a.anchor+.tsd-signatures{border-top-width:0;margin-top:-20px}ul.tsd-descriptions{position:relative;overflow:hidden;padding:0;list-style:none}ul.tsd-descriptions.active>.tsd-description{display:none}ul.tsd-descriptions.active>.tsd-description.current{display:block}ul.tsd-descriptions.active>.tsd-description.fade-in{animation:fade-in-delayed .3s}ul.tsd-descriptions.active>.tsd-description.fade-out{animation:fade-out-delayed .3s;position:absolute;display:block;top:0;left:0;right:0;opacity:0;visibility:hidden}ul.tsd-descriptions h4,ul.tsd-descriptions .tsd-index-panel h3,.tsd-index-panel ul.tsd-descriptions h3{font-size:16px;margin:1em 0 .5em 0}ul.tsd-parameters,ul.tsd-type-parameters{list-style:square;margin:0;padding-left:20px}ul.tsd-parameters>li.tsd-parameter-signature,ul.tsd-type-parameters>li.tsd-parameter-signature{list-style:none;margin-left:-20px}ul.tsd-parameters h5,ul.tsd-type-parameters h5{font-size:16px;margin:1em 0 .5em 0}ul.tsd-parameters .tsd-comment,ul.tsd-type-parameters .tsd-comment{margin-top:-0.5em}.tsd-sources{font-size:14px;color:#707070;margin:0 0 1em 0}.tsd-sources a{color:#707070;text-decoration:underline}.tsd-sources ul,.tsd-sources p{margin:0 !important}.tsd-sources ul{list-style:none;padding:0}.tsd-page-toolbar{position:fixed;z-index:1;top:0;left:0;width:100%;height:40px;color:#333;background:#fff;border-bottom:1px solid #eee;transition:transform .3s linear}.tsd-page-toolbar a{color:#333;text-decoration:none}.tsd-page-toolbar a.title{font-weight:bold}.tsd-page-toolbar a.title:hover{text-decoration:underline}.tsd-page-toolbar .table-wrap{display:table;width:100%;height:40px}.tsd-page-toolbar .table-cell{display:table-cell;position:relative;white-space:nowrap;line-height:40px}.tsd-page-toolbar .table-cell:first-child{width:100%}.tsd-page-toolbar--hide{transform:translateY(-100%)}.tsd-select .tsd-select-list li:before,.tsd-select .tsd-select-label:before,.tsd-widget:before{content:"";display:inline-block;width:40px;height:40px;margin:0 -8px 0 0;background-image:url(../images/widgets.png);background-repeat:no-repeat;text-indent:-1024px;vertical-align:bottom}@media(-webkit-min-device-pixel-ratio: 1.5),(min-resolution: 144dpi){.tsd-select .tsd-select-list li:before,.tsd-select .tsd-select-label:before,.tsd-widget:before{background-image:url(../images/widgets@2x.png);background-size:320px 40px}}.tsd-widget{display:inline-block;overflow:hidden;opacity:.6;height:40px;transition:opacity .1s,background-color .2s;vertical-align:bottom;cursor:pointer}.tsd-widget:hover{opacity:.8}.tsd-widget.active{opacity:1;background-color:#eee}.tsd-widget.no-caption{width:40px}.tsd-widget.no-caption:before{margin:0}.tsd-widget.search:before{background-position:0 0}.tsd-widget.menu:before{background-position:-40px 0}.tsd-widget.options:before{background-position:-80px 0}.tsd-widget.options,.tsd-widget.menu{display:none}@media(max-width: 900px){.tsd-widget.options,.tsd-widget.menu{display:inline-block}}input[type=checkbox]+.tsd-widget:before{background-position:-120px 0}input[type=checkbox]:checked+.tsd-widget:before{background-position:-160px 0}.tsd-select{position:relative;display:inline-block;height:40px;transition:opacity .1s,background-color .2s;vertical-align:bottom;cursor:pointer}.tsd-select .tsd-select-label{opacity:.6;transition:opacity .2s}.tsd-select .tsd-select-label:before{background-position:-240px 0}.tsd-select.active .tsd-select-label{opacity:.8}.tsd-select.active .tsd-select-list{visibility:visible;opacity:1;transition-delay:0s}.tsd-select .tsd-select-list{position:absolute;visibility:hidden;top:40px;left:0;margin:0;padding:0;opacity:0;list-style:none;box-shadow:0 0 4px rgba(0,0,0,.25);transition:visibility 0s .2s,opacity .2s}.tsd-select .tsd-select-list li{padding:0 20px 0 0;background-color:#fdfdfd}.tsd-select .tsd-select-list li:before{background-position:40px 0}.tsd-select .tsd-select-list li:nth-child(even){background-color:#fff}.tsd-select .tsd-select-list li:hover{background-color:#eee}.tsd-select .tsd-select-list li.selected:before{background-position:-200px 0}@media(max-width: 900px){.tsd-select .tsd-select-list{top:0;left:auto;right:100%;margin-right:-5px}.tsd-select .tsd-select-label:before{background-position:-280px 0}}img{max-width:100%} diff --git a/docs/assets/js/main.js b/docs/assets/js/main.js index 5fe710b2a..c2190a936 100644 --- a/docs/assets/js/main.js +++ b/docs/assets/js/main.js @@ -1 +1,51 @@ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";function x(e){return null!=e&&e===e.window}var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0>10|55296,1023&r|56320)}function oe(){T()}var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,k="sizzle"+1*new Date,m=n.document,S=0,r=0,p=ue(),x=ue(),N=ue(),A=ue(),D=function(e,t){return e===t&&(l=!0),0},j={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){for((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;o--;)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){for(var n=e.split("|"),r=n.length;r--;)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){for(var n,r=a([],e.length,o),i=r.length;i--;)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&void 0!==e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if(void 0!==t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if(void 0!==t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"!==e)return o;for(;n=o[i++];)1===n.nodeType&&r.push(n);return r},b.find.CLASS=d.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"!=typeof e)return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this);if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;nx",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v)for(n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return void 0!==k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;l--;)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){for(l=(t=(t||"").match(R)||[""]).length;l--;)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){for(f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;o--;)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),i=("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,r.left):(a=parseFloat(o)||0,parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{for(t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position");)e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent;e&&"static"===k.css(e,"position");)e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0":">",'"':""","'":"'","`":"`"},P=h.invert(L);h.escape=W(L),h.unescape=W(P),h.result=function(n,r,t){h.isArray(r)||(r=[r]);var e=r.length;if(!e)return h.isFunction(t)?t.call(n):t;for(var u=0;u/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};function $(n){return"\\"+U[n]}var J=/(.)^/,U={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},V=/\\|'|\r|\n|\u2028|\u2029/g;h.template=function(i,n,r){!n&&r&&(n=r),n=h.defaults({},n,h.templateSettings);var t,e=RegExp([(n.escape||J).source,(n.interpolate||J).source,(n.evaluate||J).source].join("|")+"|$","g"),o=0,a="__p+='";i.replace(e,function(n,r,t,e,u){return a+=i.slice(o,u).replace(V,$),o=u+n.length,r?a+="'+\n((__t=("+r+"))==null?'':_.escape(__t))+\n'":t?a+="'+\n((__t=("+t+"))==null?'':__t)+\n'":e&&(a+="';\n"+e+"\n__p+='"),n}),a+="';\n",n.variable||(a="with(obj||{}){\n"+a+"}\n"),a="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+a+"return __p;\n";try{t=new Function(n.variable||"obj","_",a)}catch(n){throw n.source=a,n}function u(n){return t.call(this,n,h)}var c=n.variable||"obj";return u.source="function("+c+"){\n"+a+"}",u},h.chain=function(n){var r=h(n);return r._chain=!0,r};function G(n,r){return n._chain?h(r).chain():r}h.mixin=function(t){return h.each(h.functions(t),function(n){var r=h[n]=t[n];h.prototype[n]=function(){var n=[this._wrapped];return u.apply(n,arguments),G(this,r.apply(h,n))}}),h},h.mixin(h),h.each(["pop","push","reverse","shift","sort","splice","unshift"],function(r){var t=e[r];h.prototype[r]=function(){var n=this._wrapped;return t.apply(n,arguments),"shift"!==r&&"splice"!==r||0!==n.length||delete n[0],G(this,n)}}),h.each(["concat","join","slice"],function(n){var r=e[n];h.prototype[n]=function(){return G(this,r.apply(this._wrapped,arguments))}}),h.prototype.value=function(){return this._wrapped},h.prototype.valueOf=h.prototype.toJSON=h.prototype.value,h.prototype.toString=function(){return String(this._wrapped)},"function"==typeof define&&define.amd&&define("underscore",[],function(){return h})}(),function(t){var e="object"==typeof self&&self.self===self&&self||"object"==typeof global&&global.global===global&&global;if("function"==typeof define&&define.amd)define(["underscore","jquery","exports"],function(i,n,r){e.Backbone=t(e,r,i,n)});else if("undefined"!=typeof exports){var n,i=require("underscore");try{n=require("jquery")}catch(r){}t(e,exports,i,n)}else e.Backbone=t(e,{},e._,e.jQuery||e.Zepto||e.ender||e.$)}(function(t,e,i,n){var r=t.Backbone,s=Array.prototype.slice;e.VERSION="1.4.0",e.$=n,e.noConflict=function(){return t.Backbone=r,this},e.emulateHTTP=!1,e.emulateJSON=!1;var h,a=e.Events={},o=/\s+/,u=function(t,e,n,r,s){var h,a=0;if(n&&"object"==typeof n){void 0!==r&&"context"in s&&void 0===s.context&&(s.context=r);for(h=i.keys(n);athis.length&&(r=this.length),r<0&&(r+=this.length+1);var g,m,s=[],a=[],o=[],h=[],u={},l=e.add,c=e.merge,f=e.remove,d=!1,v=this.comparator&&null==r&&!1!==e.sort,p=i.isString(this.comparator)?this.comparator:null;for(m=0;m=this.length)return e.QueryLexer.EOS;var t=this.str.charAt(this.pos);return this.pos+=1,t},e.QueryLexer.prototype.width=function(){return this.pos-this.start},e.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},e.QueryLexer.prototype.backup=function(){this.pos-=1},e.QueryLexer.prototype.acceptDigitRun=function(){for(var t,r;47<(r=(t=this.next()).charCodeAt(0))&&r<58;);t!=e.QueryLexer.EOS&&this.backup()},e.QueryLexer.prototype.more=function(){return this.pos=this.scrollTop||0===this.scrollTop,isShown!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),this.secondaryNav.classList.toggle("tsd-navigation--toolbar-hide")),this.lastY=this.scrollTop},Viewport}(typedoc.Events);typedoc.Viewport=Viewport,typedoc.registerService(Viewport,"viewport")}(typedoc||(typedoc={})),function(typedoc){typedoc.pointerDown="mousedown",typedoc.pointerMove="mousemove",typedoc.pointerUp="mouseup",typedoc.pointerDownPosition={x:0,y:0},typedoc.preventNextClick=!1,typedoc.isPointerDown=!1,typedoc.isPointerTouch=!1,typedoc.hasPointerMoved=!1,typedoc.isMobile=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent),typedoc.$html.addClass(typedoc.isMobile?"is-mobile":"not-mobile"),typedoc.isMobile&&"ontouchstart"in document.documentElement&&(typedoc.isPointerTouch=!0,typedoc.pointerDown="touchstart",typedoc.pointerMove="touchmove",typedoc.pointerUp="touchend"),typedoc.$document.on(typedoc.pointerDown,function(e){typedoc.isPointerDown=!0,typedoc.hasPointerMoved=!1;var t="touchstart"==typedoc.pointerDown?e.originalEvent.targetTouches[0]:e;typedoc.pointerDownPosition.y=t.pageY||0,typedoc.pointerDownPosition.x=t.pageX||0}).on(typedoc.pointerMove,function(e){if(typedoc.isPointerDown&&!typedoc.hasPointerMoved){var t="touchstart"==typedoc.pointerDown?e.originalEvent.targetTouches[0]:e,x=typedoc.pointerDownPosition.x-(t.pageX||0),y=typedoc.pointerDownPosition.y-(t.pageY||0);typedoc.hasPointerMoved=10scrollTop;)index-=1;for(;index"+match+""}),parent=row.parent||"";(parent=parent.replace(new RegExp(query,"i"),function(match){return""+match+""}))&&(name=''+parent+"."+name),$results.append('
  • '+name+"
  • ")}}}function setLoadingState(value){loadingState!=value&&($el.removeClass(SearchLoadingState[loadingState].toLowerCase()),loadingState=value,$el.addClass(SearchLoadingState[loadingState].toLowerCase()),value==SearchLoadingState.Ready&&updateResults())}function setHasFocus(value){hasFocus!=value&&(hasFocus=value,$el.toggleClass("has-focus"),value?(setQuery(""),$field.val("")):$field.val(query))}function setQuery(value){query=$.trim(value),updateResults()}function setCurrentResult(dir){var $current=$results.find(".current");if(0==$current.length)$results.find(1==dir?"li:first-child":"li:last-child").addClass("current");else{var $rel=1==dir?$current.next("li"):$current.prev("li");0<$rel.length&&($current.removeClass("current"),$rel.addClass("current"))}}function gotoCurrentResult(){var $current=$results.find(".current");0==$current.length&&($current=$results.find("li:first-child")),0<$current.length&&(window.location.href=$current.find("a").prop("href"),$field.blur())}$results.on("mousedown",function(){resultClicked=!0}).on("mouseup",function(){setHasFocus(resultClicked=!1)}),$field.on("focusin",function(){setHasFocus(!0),loadIndex()}).on("focusout",function(){resultClicked?resultClicked=!1:setTimeout(function(){return setHasFocus(!1)},100)}).on("input",function(){setQuery($.trim(($field.val()||"").toString()))}).on("keydown",function(e){13==e.keyCode||27==e.keyCode||38==e.keyCode||40==e.keyCode?(preventPress=!0,e.preventDefault(),13==e.keyCode?gotoCurrentResult():27==e.keyCode?$field.blur():38==e.keyCode?setCurrentResult(-1):40==e.keyCode&&setCurrentResult(1)):preventPress=!1}).on("keypress",function(e){preventPress&&e.preventDefault()}),$("body").on("keydown",function(e){e.altKey||e.ctrlKey||e.metaKey||!hasFocus&&47this.groups.length-1&&(index=this.groups.length-1),this.index!=index){var to=this.groups[index];if(-1 .tsd-signature");if(!($signatures.length<2)){this.$container=this.$el.siblings(".tsd-descriptions");var $descriptions=this.$container.find("> .tsd-description");this.groups=[],$signatures.each(function(index,el){_this.groups.push(new SignatureGroup($(el),$descriptions.eq(index)))})}},Signature.prototype.onClick=function(e){var _this=this;_(this.groups).forEach(function(group,index){group.$signature.is(e.currentTarget)&&_this.setIndex(index)})},Signature}(Backbone.View);typedoc.registerComponent(Signature,".tsd-signatures")}(typedoc||(typedoc={})),function(typedoc){var Toggle=function(_super){function Toggle(options){var _this=_super.call(this,options)||this;return _this.className=_this.$el.attr("data-toggle")||"",_this.$el.on(typedoc.pointerUp,function(e){return _this.onPointerUp(e)}),_this.$el.on("click",function(e){return e.preventDefault()}),typedoc.$document.on(typedoc.pointerDown,function(e){return _this.onDocumentPointerDown(e)}),typedoc.$document.on(typedoc.pointerUp,function(e){return _this.onDocumentPointerUp(e)}),_this}return __extends(Toggle,_super),Toggle.prototype.setActive=function(value){if(this.active!=value){this.active=value,typedoc.$html.toggleClass("has-"+this.className,value),this.$el.toggleClass("active",value);var transition=(this.active?"to-has-":"from-has-")+this.className;typedoc.$html.addClass(transition),setTimeout(function(){return typedoc.$html.removeClass(transition)},500)}},Toggle.prototype.onPointerUp=function(event){typedoc.hasPointerMoved||(this.setActive(!0),event.preventDefault())},Toggle.prototype.onDocumentPointerDown=function(e){if(this.active){var $path=$(e.target).parents().addBack();if($path.hasClass("col-menu"))return;if($path.hasClass("tsd-filter-group"))return;this.setActive(!1)}},Toggle.prototype.onDocumentPointerUp=function(e){var _this=this;if(!typedoc.hasPointerMoved&&this.active){var $path=$(e.target).parents().addBack();if($path.hasClass("col-menu")){var $link=$path.filter("a");if($link.length){var href=window.location.href;-1!=href.indexOf("#")&&(href=href.substr(0,href.indexOf("#"))),$link.prop("href").substr(0,href.length)==href&&setTimeout(function(){return _this.setActive(!1)},250)}}}},Toggle}(Backbone.View);typedoc.registerComponent(Toggle,"a[data-toggle]")}(typedoc||(typedoc={})),function(typedoc){typedoc.app=new typedoc.Application}(typedoc||(typedoc={})); \ No newline at end of file +!function(e){var t={};function r(n){if(t[n])return t[n].exports;var i=t[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,r),i.l=!0,i.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)r.d(n,i,function(t){return e[t]}.bind(null,i));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=2)}([function(e,t,r){var n,i; +/** + * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 + * Copyright (C) 2020 Oliver Nightingale + * @license MIT + */!function(){var s,o,a,u,l,c,h,d,f,p,y,m,v,g,x,w,L,E,b,S,k,Q,O,P,T,_,C=function(e){var t=new C.Builder;return t.pipeline.add(C.trimmer,C.stopWordFilter,C.stemmer),t.searchPipeline.add(C.stemmer),e.call(t,t),t.build()};C.version="2.3.9" +/*! + * lunr.utils + * Copyright (C) 2020 Oliver Nightingale + */,C.utils={},C.utils.warn=(s=this,function(e){s.console&&console.warn&&console.warn(e)}),C.utils.asString=function(e){return null==e?"":e.toString()},C.utils.clone=function(e){if(null==e)return e;for(var t=Object.create(null),r=Object.keys(e),n=0;n0){var u=C.utils.clone(t)||{};u.position=[o,a],u.index=i.length,i.push(new C.Token(r.slice(o,s),u))}o=s+1}}return i},C.tokenizer.separator=/[\s\-]+/ +/*! + * lunr.Pipeline + * Copyright (C) 2020 Oliver Nightingale + */,C.Pipeline=function(){this._stack=[]},C.Pipeline.registeredFunctions=Object.create(null),C.Pipeline.registerFunction=function(e,t){t in this.registeredFunctions&&C.utils.warn("Overwriting existing registered function: "+t),e.label=t,C.Pipeline.registeredFunctions[e.label]=e},C.Pipeline.warnIfFunctionNotRegistered=function(e){e.label&&e.label in this.registeredFunctions||C.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},C.Pipeline.load=function(e){var t=new C.Pipeline;return e.forEach((function(e){var r=C.Pipeline.registeredFunctions[e];if(!r)throw new Error("Cannot load unregistered function: "+e);t.add(r)})),t},C.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach((function(e){C.Pipeline.warnIfFunctionNotRegistered(e),this._stack.push(e)}),this)},C.Pipeline.prototype.after=function(e,t){C.Pipeline.warnIfFunctionNotRegistered(t);var r=this._stack.indexOf(e);if(-1==r)throw new Error("Cannot find existingFn");r+=1,this._stack.splice(r,0,t)},C.Pipeline.prototype.before=function(e,t){C.Pipeline.warnIfFunctionNotRegistered(t);var r=this._stack.indexOf(e);if(-1==r)throw new Error("Cannot find existingFn");this._stack.splice(r,0,t)},C.Pipeline.prototype.remove=function(e){var t=this._stack.indexOf(e);-1!=t&&this._stack.splice(t,1)},C.Pipeline.prototype.run=function(e){for(var t=this._stack.length,r=0;r1&&(se&&(r=i),s!=e);)n=r-t,i=t+Math.floor(n/2),s=this.elements[2*i];return s==e||s>e?2*i:sa?l+=2:o==a&&(t+=r[u+1]*n[l+1],u+=2,l+=2);return t},C.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},C.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),t=1,r=0;t0){var s,o=i.str.charAt(0);o in i.node.edges?s=i.node.edges[o]:(s=new C.TokenSet,i.node.edges[o]=s),1==i.str.length&&(s.final=!0),n.push({node:s,editsRemaining:i.editsRemaining,str:i.str.slice(1)})}if(0!=i.editsRemaining){if("*"in i.node.edges)var a=i.node.edges["*"];else{a=new C.TokenSet;i.node.edges["*"]=a}if(0==i.str.length&&(a.final=!0),n.push({node:a,editsRemaining:i.editsRemaining-1,str:i.str}),i.str.length>1&&n.push({node:i.node,editsRemaining:i.editsRemaining-1,str:i.str.slice(1)}),1==i.str.length&&(i.node.final=!0),i.str.length>=1){if("*"in i.node.edges)var u=i.node.edges["*"];else{u=new C.TokenSet;i.node.edges["*"]=u}1==i.str.length&&(u.final=!0),n.push({node:u,editsRemaining:i.editsRemaining-1,str:i.str.slice(1)})}if(i.str.length>1){var l,c=i.str.charAt(0),h=i.str.charAt(1);h in i.node.edges?l=i.node.edges[h]:(l=new C.TokenSet,i.node.edges[h]=l),1==i.str.length&&(l.final=!0),n.push({node:l,editsRemaining:i.editsRemaining-1,str:c+i.str.slice(2)})}}}return r},C.TokenSet.fromString=function(e){for(var t=new C.TokenSet,r=t,n=0,i=e.length;n=e;t--){var r=this.uncheckedNodes[t],n=r.child.toString();n in this.minimizedNodes?r.parent.edges[r.char]=this.minimizedNodes[n]:(r.child._str=n,this.minimizedNodes[n]=r.child),this.uncheckedNodes.pop()}} +/*! + * lunr.Index + * Copyright (C) 2020 Oliver Nightingale + */,C.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},C.Index.prototype.search=function(e){return this.query((function(t){new C.QueryParser(e,t).parse()}))},C.Index.prototype.query=function(e){for(var t=new C.Query(this.fields),r=Object.create(null),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=0;a1?1:e},C.Builder.prototype.k1=function(e){this._k1=e},C.Builder.prototype.add=function(e,t){var r=e[this._ref],n=Object.keys(this._fields);this._documents[r]=t||{},this.documentCount+=1;for(var i=0;i=this.length)return C.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},C.QueryLexer.prototype.width=function(){return this.pos-this.start},C.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},C.QueryLexer.prototype.backup=function(){this.pos-=1},C.QueryLexer.prototype.acceptDigitRun=function(){var e,t;do{t=(e=this.next()).charCodeAt(0)}while(t>47&&t<58);e!=C.QueryLexer.EOS&&this.backup()},C.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(C.QueryLexer.TERM)),e.ignore(),e.more())return C.QueryLexer.lexText},C.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(C.QueryLexer.EDIT_DISTANCE),C.QueryLexer.lexText},C.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(C.QueryLexer.BOOST),C.QueryLexer.lexText},C.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(C.QueryLexer.TERM)},C.QueryLexer.termSeparator=C.tokenizer.separator,C.QueryLexer.lexText=function(e){for(;;){var t=e.next();if(t==C.QueryLexer.EOS)return C.QueryLexer.lexEOS;if(92!=t.charCodeAt(0)){if(":"==t)return C.QueryLexer.lexField;if("~"==t)return e.backup(),e.width()>0&&e.emit(C.QueryLexer.TERM),C.QueryLexer.lexEditDistance;if("^"==t)return e.backup(),e.width()>0&&e.emit(C.QueryLexer.TERM),C.QueryLexer.lexBoost;if("+"==t&&1===e.width())return e.emit(C.QueryLexer.PRESENCE),C.QueryLexer.lexText;if("-"==t&&1===e.width())return e.emit(C.QueryLexer.PRESENCE),C.QueryLexer.lexText;if(t.match(C.QueryLexer.termSeparator))return C.QueryLexer.lexTerm}else e.escapeCharacter()}},C.QueryParser=function(e,t){this.lexer=new C.QueryLexer(e),this.query=t,this.currentClause={},this.lexemeIdx=0},C.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=C.QueryParser.parseClause;e;)e=e(this);return this.query},C.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},C.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},C.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},C.QueryParser.parseClause=function(e){var t=e.peekLexeme();if(null!=t)switch(t.type){case C.QueryLexer.PRESENCE:return C.QueryParser.parsePresence;case C.QueryLexer.FIELD:return C.QueryParser.parseField;case C.QueryLexer.TERM:return C.QueryParser.parseTerm;default:var r="expected either a field or a term, found "+t.type;throw t.str.length>=1&&(r+=" with value '"+t.str+"'"),new C.QueryParseError(r,t.start,t.end)}},C.QueryParser.parsePresence=function(e){var t=e.consumeLexeme();if(null!=t){switch(t.str){case"-":e.currentClause.presence=C.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=C.Query.presence.REQUIRED;break;default:var r="unrecognised presence operator'"+t.str+"'";throw new C.QueryParseError(r,t.start,t.end)}var n=e.peekLexeme();if(null==n){r="expecting term or field, found nothing";throw new C.QueryParseError(r,t.start,t.end)}switch(n.type){case C.QueryLexer.FIELD:return C.QueryParser.parseField;case C.QueryLexer.TERM:return C.QueryParser.parseTerm;default:r="expecting term or field, found '"+n.type+"'";throw new C.QueryParseError(r,n.start,n.end)}}},C.QueryParser.parseField=function(e){var t=e.consumeLexeme();if(null!=t){if(-1==e.query.allFields.indexOf(t.str)){var r=e.query.allFields.map((function(e){return"'"+e+"'"})).join(", "),n="unrecognised field '"+t.str+"', possible fields: "+r;throw new C.QueryParseError(n,t.start,t.end)}e.currentClause.fields=[t.str];var i=e.peekLexeme();if(null==i){n="expecting term, found nothing";throw new C.QueryParseError(n,t.start,t.end)}switch(i.type){case C.QueryLexer.TERM:return C.QueryParser.parseTerm;default:n="expecting term, found '"+i.type+"'";throw new C.QueryParseError(n,i.start,i.end)}}},C.QueryParser.parseTerm=function(e){var t=e.consumeLexeme();if(null!=t){e.currentClause.term=t.str.toLowerCase(),-1!=t.str.indexOf("*")&&(e.currentClause.usePipeline=!1);var r=e.peekLexeme();if(null!=r)switch(r.type){case C.QueryLexer.TERM:return e.nextClause(),C.QueryParser.parseTerm;case C.QueryLexer.FIELD:return e.nextClause(),C.QueryParser.parseField;case C.QueryLexer.EDIT_DISTANCE:return C.QueryParser.parseEditDistance;case C.QueryLexer.BOOST:return C.QueryParser.parseBoost;case C.QueryLexer.PRESENCE:return e.nextClause(),C.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+r.type+"'";throw new C.QueryParseError(n,r.start,r.end)}else e.nextClause()}},C.QueryParser.parseEditDistance=function(e){var t=e.consumeLexeme();if(null!=t){var r=parseInt(t.str,10);if(isNaN(r)){var n="edit distance must be numeric";throw new C.QueryParseError(n,t.start,t.end)}e.currentClause.editDistance=r;var i=e.peekLexeme();if(null!=i)switch(i.type){case C.QueryLexer.TERM:return e.nextClause(),C.QueryParser.parseTerm;case C.QueryLexer.FIELD:return e.nextClause(),C.QueryParser.parseField;case C.QueryLexer.EDIT_DISTANCE:return C.QueryParser.parseEditDistance;case C.QueryLexer.BOOST:return C.QueryParser.parseBoost;case C.QueryLexer.PRESENCE:return e.nextClause(),C.QueryParser.parsePresence;default:n="Unexpected lexeme type '"+i.type+"'";throw new C.QueryParseError(n,i.start,i.end)}else e.nextClause()}},C.QueryParser.parseBoost=function(e){var t=e.consumeLexeme();if(null!=t){var r=parseInt(t.str,10);if(isNaN(r)){var n="boost must be numeric";throw new C.QueryParseError(n,t.start,t.end)}e.currentClause.boost=r;var i=e.peekLexeme();if(null!=i)switch(i.type){case C.QueryLexer.TERM:return e.nextClause(),C.QueryParser.parseTerm;case C.QueryLexer.FIELD:return e.nextClause(),C.QueryParser.parseField;case C.QueryLexer.EDIT_DISTANCE:return C.QueryParser.parseEditDistance;case C.QueryLexer.BOOST:return C.QueryParser.parseBoost;case C.QueryLexer.PRESENCE:return e.nextClause(),C.QueryParser.parsePresence;default:n="Unexpected lexeme type '"+i.type+"'";throw new C.QueryParseError(n,i.start,i.end)}else e.nextClause()}},void 0===(i="function"==typeof(n=function(){return C})?n.call(t,r,t,e):n)||(e.exports=i)}()},function(e,t,r){},function(e,t,r){"use strict";r.r(t);var n=[];function i(e,t){n.push({selector:t,constructor:e})}var s,o,a=function(){function e(){this.createComponents(document.body)}return e.prototype.createComponents=function(e){n.forEach((function(t){e.querySelectorAll(t.selector).forEach((function(e){e.dataset.hasInstance||(new t.constructor({el:e}),e.dataset.hasInstance=String(!0))}))}))},e}(),u=function(e){this.el=e.el},l=r(0),c=(s=function(e,t){return(s=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])})(e,t)},function(e,t){function r(){this.constructor=e}s(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)});!function(e){e[e.Idle=0]="Idle",e[e.Loading=1]="Loading",e[e.Ready=2]="Ready",e[e.Failure=3]="Failure"}(o||(o={}));var h=function(e){function t(t){var r=e.call(this,t)||this;r.query="",r.loadingState=o.Idle,r.hasFocus=!1,r.preventPress=!1,r.data=null,r.index=null,r.resultClicked=!1;var n=document.querySelector("#tsd-search-field"),i=document.querySelector(".results");if(!n||!i)throw new Error("The input field or the result list wrapper are not found");return r.field=n,r.results=i,r.base=r.el.dataset.base+"/",r.bindEvents(),r}return c(t,e),t.prototype.loadIndex=function(){var e=this;if(this.loadingState==o.Idle&&!this.data){setTimeout((function(){e.loadingState==o.Idle&&e.setLoadingState(o.Loading)}),500);var t=this.el.dataset.index;t?fetch(t).then((function(e){if(!e.ok)throw new Error("The search index is missing");return e.json()})).then((function(t){e.data=t,e.index=l.Index.load(t.index),e.setLoadingState(o.Ready)})).catch((function(t){console.error(t),e.setLoadingState(o.Failure)})):this.setLoadingState(o.Failure)}},t.prototype.updateResults=function(){if(this.loadingState==o.Ready&&(this.results.textContent="",this.query&&this.index&&this.data)){var e=this.index.search("*"+this.query+"*");0===e.length&&(e=this.index.search("*"+this.query+"~1*"));for(var t=0,r=Math.min(10,e.length);t"+e+""})),s=n.parent||"";(s=s.replace(new RegExp(this.query,"i"),(function(e){return""+e+""})))&&(i=''+s+"."+i);var a=document.createElement("li");a.classList.value=n.classes,a.innerHTML='\n '+i+"\n ",this.results.appendChild(a)}}},t.prototype.setLoadingState=function(e){this.loadingState!=e&&(this.el.classList.remove(o[this.loadingState].toLowerCase()),this.loadingState=e,this.el.classList.add(o[this.loadingState].toLowerCase()),this.updateResults())},t.prototype.setHasFocus=function(e){this.hasFocus!=e&&(this.hasFocus=e,this.el.classList.toggle("has-focus"),e?(this.setQuery(""),this.field.value=""):this.field.value=this.query)},t.prototype.setQuery=function(e){this.query=e.trim(),this.updateResults()},t.prototype.setCurrentResult=function(e){var t=this.results.querySelector(".current");if(t){var r=1==e?t.nextElementSibling:t.previousElementSibling;r&&(t.classList.remove("current"),r.classList.add("current"))}else(t=this.results.querySelector(1==e?"li:first-child":"li:last-child"))&&t.classList.add("current")},t.prototype.gotoCurrentResult=function(){var e=this.results.querySelector(".current");if(e||(e=this.results.querySelector("li:first-child")),e){var t=e.querySelector("a");t&&(window.location.href=t.href),this.field.blur()}},t.prototype.bindEvents=function(){var e=this;this.results.addEventListener("mousedown",(function(){e.resultClicked=!0})),this.results.addEventListener("mouseup",(function(){e.resultClicked=!1,e.setHasFocus(!1)})),this.field.addEventListener("focusin",(function(){e.setHasFocus(!0),e.loadIndex()})),this.field.addEventListener("focusout",(function(){e.resultClicked?e.resultClicked=!1:setTimeout((function(){return e.setHasFocus(!1)}),100)})),this.field.addEventListener("input",(function(){e.setQuery(e.field.value)})),this.field.addEventListener("keydown",(function(t){13==t.keyCode||27==t.keyCode||38==t.keyCode||40==t.keyCode?(e.preventPress=!0,t.preventDefault(),13==t.keyCode?e.gotoCurrentResult():27==t.keyCode?e.field.blur():38==t.keyCode?e.setCurrentResult(-1):40==t.keyCode&&e.setCurrentResult(1)):e.preventPress=!1})),this.field.addEventListener("keypress",(function(t){e.preventPress&&t.preventDefault()})),document.body.addEventListener("keydown",(function(t){t.altKey||t.ctrlKey||t.metaKey||!e.hasFocus&&t.keyCode>47&&t.keyCode<112&&e.field.focus()}))},t}(u),d=function(){function e(){this.listeners={}}return e.prototype.addEventListener=function(e,t){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(t)},e.prototype.removeEventListener=function(e,t){if(e in this.listeners)for(var r=this.listeners[e],n=0,i=r.length;n=this.scrollTop||0===this.scrollTop,e!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),this.secondaryNav.classList.toggle("tsd-navigation--toolbar-hide")),this.lastY=this.scrollTop},t.instance=new t,t}(d),m=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])})(t,r)};return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}(),v=function(e){function t(t){var r=e.call(this,t)||this;return r.anchors=[],r.index=-1,y.instance.addEventListener("resize",(function(){return r.onResize()})),y.instance.addEventListener("scroll",(function(e){return r.onScroll(e)})),r.createAnchors(),r}return m(t,e),t.prototype.createAnchors=function(){var e=this,t=window.location.href;-1!=t.indexOf("#")&&(t=t.substr(0,t.indexOf("#"))),this.el.querySelectorAll("a").forEach((function(r){var n=r.href;if(-1!=n.indexOf("#")&&n.substr(0,t.length)==t){var i=n.substr(n.indexOf("#")+1),s=document.querySelector("a.tsd-anchor[name="+i+"]"),o=r.parentNode;s&&o&&e.anchors.push({link:o,anchor:s,position:0})}})),this.onResize()},t.prototype.onResize=function(){for(var e,t=0,r=this.anchors.length;t-1&&r[i].position>t;)i-=1;for(;i-1&&this.anchors[this.index].link.classList.remove("focus"),this.index=i,this.index>-1&&this.anchors[this.index].link.classList.add("focus"))},t}(u),g=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])})(t,r)};return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}(),x=function(){function e(e,t){this.signature=e,this.description=t}return e.prototype.addClass=function(e){return this.signature.classList.add(e),this.description.classList.add(e),this},e.prototype.removeClass=function(e){return this.signature.classList.remove(e),this.description.classList.remove(e),this},e}(),w=function(e){function t(t){var r=e.call(this,t)||this;return r.groups=[],r.index=-1,r.createGroups(),r.container&&(r.el.classList.add("active"),Array.from(r.el.children).forEach((function(e){e.addEventListener("touchstart",(function(e){return r.onClick(e)})),e.addEventListener("click",(function(e){return r.onClick(e)}))})),r.container.classList.add("active"),r.setIndex(0)),r}return g(t,e),t.prototype.setIndex=function(e){if(e<0&&(e=0),e>this.groups.length-1&&(e=this.groups.length-1),this.index!=e){var t=this.groups[e];if(this.index>-1){var r=this.groups[this.index];r.removeClass("current").addClass("fade-out"),t.addClass("current"),t.addClass("fade-in"),y.instance.triggerResize(),setTimeout((function(){r.removeClass("fade-out"),t.removeClass("fade-in")}),300)}else t.addClass("current"),y.instance.triggerResize();this.index=e}},t.prototype.createGroups=function(){var e=this.el.children;if(!(e.length<2)){this.container=this.el.nextElementSibling;var t=this.container.children;this.groups=[];for(var r=0;r10}})),document.addEventListener(b,(function(){Q=!1})),document.addEventListener("click",(function(e){k&&(e.preventDefault(),e.stopImmediatePropagation(),k=!1)}));var T=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])})(t,r)};return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}(),_=function(e){function t(t){var r=e.call(this,t)||this;return r.className=r.el.dataset.toggle||"",r.el.addEventListener(b,(function(e){return r.onPointerUp(e)})),r.el.addEventListener("click",(function(e){return e.preventDefault()})),document.addEventListener(L,(function(e){return r.onDocumentPointerDown(e)})),document.addEventListener(b,(function(e){return r.onDocumentPointerUp(e)})),r}return T(t,e),t.prototype.setActive=function(e){if(this.active!=e){this.active=e,document.documentElement.classList.toggle("has-"+this.className,e),this.el.classList.toggle("active",e);var t=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(t),setTimeout((function(){return document.documentElement.classList.remove(t)}),500)}},t.prototype.onPointerUp=function(e){O||(this.setActive(!0),e.preventDefault())},t.prototype.onDocumentPointerDown=function(e){if(this.active){if(e.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}},t.prototype.onDocumentPointerUp=function(e){var t=this;if(!O&&this.active&&e.target.closest(".col-menu")){var r=e.target.closest("a");if(r){var n=window.location.href;-1!=n.indexOf("#")&&(n=n.substr(0,n.indexOf("#"))),r.href.substr(0,n.length)==n&&setTimeout((function(){return t.setActive(!1)}),250)}}},t}(u),C=function(){var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])})(t,r)};return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}(),R=function(){function e(e,t){this.key=e,this.value=t,this.defaultValue=t,this.initialize(),window.localStorage[this.key]&&this.setValue(this.fromLocalStorage(window.localStorage[this.key]))}return e.prototype.initialize=function(){},e.prototype.setValue=function(e){if(this.value!=e){var t=this.value;this.value=e,window.localStorage[this.key]=this.toLocalStorage(e),this.handleValueChange(t,e)}},e}(),I=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return C(t,e),t.prototype.initialize=function(){var e=this,t=document.querySelector("#tsd-filter-"+this.key);t&&(this.checkbox=t,this.checkbox.addEventListener("change",(function(){e.setValue(e.checkbox.checked)})))},t.prototype.handleValueChange=function(e,t){this.checkbox&&(this.checkbox.checked=this.value,document.documentElement.classList.toggle("toggle-"+this.key,this.value!=this.defaultValue))},t.prototype.fromLocalStorage=function(e){return"true"==e},t.prototype.toLocalStorage=function(e){return e?"true":"false"},t}(R),j=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return C(t,e),t.prototype.initialize=function(){var e=this;document.documentElement.classList.add("toggle-"+this.key+this.value);var t=document.querySelector("#tsd-filter-"+this.key);if(t){this.select=t;var r=function(){e.select.classList.add("active")};this.select.addEventListener(L,r),this.select.addEventListener("mouseover",r),this.select.addEventListener("mouseleave",(function(){e.select.classList.remove("active")})),this.select.querySelectorAll("li").forEach((function(r){r.addEventListener(b,(function(r){t.classList.remove("active"),e.setValue(r.target.dataset.value||"")}))})),document.addEventListener(L,(function(t){e.select.contains(t.target)||e.select.classList.remove("active")}))}},t.prototype.handleValueChange=function(e,t){this.select.querySelectorAll("li.selected").forEach((function(e){e.classList.remove("selected")}));var r=this.select.querySelector('li[data-value="'+t+'"]'),n=this.select.querySelector(".tsd-select-label");r&&n&&(r.classList.add("selected"),n.textContent=r.textContent),document.documentElement.classList.remove("toggle-"+e),document.documentElement.classList.add("toggle-"+t)},t.prototype.fromLocalStorage=function(e){return e},t.prototype.toLocalStorage=function(e){return e},t}(R),F=function(e){function t(t){var r=e.call(this,t)||this;return r.optionVisibility=new j("visibility","private"),r.optionInherited=new I("inherited",!0),r.optionExternals=new I("externals",!0),r.optionOnlyExported=new I("only-exported",!1),r}return C(t,e),t.isSupported=function(){try{return void 0!==window.localStorage}catch(e){return!1}},t}(u);r(1);i(h,"#tsd-search"),i(v,".menu-highlight"),i(w,".tsd-signatures"),i(_,"a[data-toggle]"),F.isSupported()?i(F,"#tsd-filter"):document.documentElement.classList.add("no-filter");var N=new a;Object.defineProperty(window,"app",{value:N})}]); \ No newline at end of file diff --git a/docs/assets/js/search.js b/docs/assets/js/search.js deleted file mode 100644 index 7030271b4..000000000 --- a/docs/assets/js/search.js +++ /dev/null @@ -1,3 +0,0 @@ -var typedoc = typedoc || {}; - typedoc.search = typedoc.search || {}; - typedoc.search.data = {"kinds":{"4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":4,"name":"AuthScope","url":"enums/authscope.html","classes":"tsd-kind-enum"},{"id":1,"kind":16,"name":"store_write","url":"enums/authscope.html#store_write","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AuthScope"},{"id":2,"kind":16,"name":"publish_data","url":"enums/authscope.html#publish_data","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AuthScope"},{"id":3,"kind":16,"name":"email","url":"enums/authscope.html#email","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AuthScope"},{"id":4,"kind":32,"name":"DEFAULT_BLOCKSTACK_HOST","url":"globals.html#default_blockstack_host","classes":"tsd-kind-variable"},{"id":5,"kind":256,"name":"HubErrorDetails","url":"interfaces/huberrordetails.html","classes":"tsd-kind-interface"},{"id":6,"kind":1024,"name":"message","url":"interfaces/huberrordetails.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HubErrorDetails"},{"id":7,"kind":1024,"name":"statusCode","url":"interfaces/huberrordetails.html#statuscode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HubErrorDetails"},{"id":8,"kind":1024,"name":"statusText","url":"interfaces/huberrordetails.html#statustext","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HubErrorDetails"},{"id":9,"kind":256,"name":"WebCryptoLib","url":"interfaces/webcryptolib.html","classes":"tsd-kind-interface"},{"id":10,"kind":1024,"name":"lib","url":"interfaces/webcryptolib.html#lib","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WebCryptoLib"},{"id":11,"kind":1024,"name":"name","url":"interfaces/webcryptolib.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WebCryptoLib"},{"id":12,"kind":256,"name":"NodeCryptoLib","url":"interfaces/nodecryptolib.html","classes":"tsd-kind-interface"},{"id":13,"kind":1024,"name":"lib","url":"interfaces/nodecryptolib.html#lib","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NodeCryptoLib"},{"id":14,"kind":1024,"name":"name","url":"interfaces/nodecryptolib.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NodeCryptoLib"},{"id":15,"kind":64,"name":"isSubtleCryptoAvailable","url":"globals.html#issubtlecryptoavailable","classes":"tsd-kind-function"},{"id":16,"kind":64,"name":"isNodeCryptoAvailable","url":"globals.html#isnodecryptoavailable","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":17,"kind":32,"name":"NO_CRYPTO_LIB","url":"globals.html#no_crypto_lib","classes":"tsd-kind-variable"},{"id":18,"kind":4194304,"name":"TriplesecDecryptSignature","url":"globals.html#triplesecdecryptsignature","classes":"tsd-kind-type-alias"},{"id":19,"kind":65536,"name":"__type","url":"globals.html#triplesecdecryptsignature.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported","parent":"TriplesecDecryptSignature"},{"id":20,"kind":64,"name":"getCryptoLib","url":"globals.html#getcryptolib","classes":"tsd-kind-function"},{"id":21,"kind":256,"name":"Sha2Hash","url":"interfaces/sha2hash.html","classes":"tsd-kind-interface"},{"id":22,"kind":2048,"name":"digest","url":"interfaces/sha2hash.html#digest","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Sha2Hash"},{"id":23,"kind":128,"name":"NodeCryptoSha2Hash","url":"classes/nodecryptosha2hash.html","classes":"tsd-kind-class"},{"id":24,"kind":1024,"name":"createHash","url":"classes/nodecryptosha2hash.html#createhash","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NodeCryptoSha2Hash"},{"id":25,"kind":512,"name":"constructor","url":"classes/nodecryptosha2hash.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"NodeCryptoSha2Hash"},{"id":26,"kind":2048,"name":"digest","url":"classes/nodecryptosha2hash.html#digest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"NodeCryptoSha2Hash"},{"id":27,"kind":128,"name":"WebCryptoSha2Hash","url":"classes/webcryptosha2hash.html","classes":"tsd-kind-class"},{"id":28,"kind":1024,"name":"subtleCrypto","url":"classes/webcryptosha2hash.html#subtlecrypto","classes":"tsd-kind-property tsd-parent-kind-class","parent":"WebCryptoSha2Hash"},{"id":29,"kind":512,"name":"constructor","url":"classes/webcryptosha2hash.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"WebCryptoSha2Hash"},{"id":30,"kind":2048,"name":"digest","url":"classes/webcryptosha2hash.html#digest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WebCryptoSha2Hash"},{"id":31,"kind":4194304,"name":"NodeCryptoCreateHash","url":"globals.html#nodecryptocreatehash","classes":"tsd-kind-type-alias tsd-is-not-exported"},{"id":32,"kind":64,"name":"createSha2Hash","url":"globals.html#createsha2hash","classes":"tsd-kind-function"},{"id":33,"kind":64,"name":"hashSha256Sync","url":"globals.html#hashsha256sync","classes":"tsd-kind-function"},{"id":34,"kind":64,"name":"hashSha512Sync","url":"globals.html#hashsha512sync","classes":"tsd-kind-function"},{"id":35,"kind":256,"name":"Ripemd160Digest","url":"interfaces/ripemd160digest.html","classes":"tsd-kind-interface"},{"id":36,"kind":2048,"name":"digest","url":"interfaces/ripemd160digest.html#digest","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Ripemd160Digest"},{"id":37,"kind":128,"name":"Ripemd160PolyfillDigest","url":"classes/ripemd160polyfilldigest.html","classes":"tsd-kind-class"},{"id":38,"kind":2048,"name":"digest","url":"classes/ripemd160polyfilldigest.html#digest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ripemd160PolyfillDigest"},{"id":39,"kind":128,"name":"NodeCryptoRipemd160Digest","url":"classes/nodecryptoripemd160digest.html","classes":"tsd-kind-class"},{"id":40,"kind":1024,"name":"nodeCryptoCreateHash","url":"classes/nodecryptoripemd160digest.html#nodecryptocreatehash","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NodeCryptoRipemd160Digest"},{"id":41,"kind":512,"name":"constructor","url":"classes/nodecryptoripemd160digest.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"NodeCryptoRipemd160Digest"},{"id":42,"kind":2048,"name":"digest","url":"classes/nodecryptoripemd160digest.html#digest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"NodeCryptoRipemd160Digest"},{"id":43,"kind":64,"name":"createHashRipemd160","url":"globals.html#createhashripemd160","classes":"tsd-kind-function"},{"id":44,"kind":64,"name":"hashRipemd160","url":"globals.html#hashripemd160","classes":"tsd-kind-function"},{"id":45,"kind":256,"name":"UTXO","url":"interfaces/utxo.html","classes":"tsd-kind-interface"},{"id":46,"kind":1024,"name":"value","url":"interfaces/utxo.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UTXO"},{"id":47,"kind":1024,"name":"confirmations","url":"interfaces/utxo.html#confirmations","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UTXO"},{"id":48,"kind":1024,"name":"tx_hash","url":"interfaces/utxo.html#tx_hash","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UTXO"},{"id":49,"kind":1024,"name":"tx_output_n","url":"interfaces/utxo.html#tx_output_n","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UTXO"},{"id":50,"kind":256,"name":"PriceInfo","url":"interfaces/priceinfo.html","classes":"tsd-kind-interface"},{"id":51,"kind":1024,"name":"units","url":"interfaces/priceinfo.html#units","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PriceInfo"},{"id":52,"kind":1024,"name":"amount","url":"interfaces/priceinfo.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PriceInfo"},{"id":53,"kind":256,"name":"AccountTokens","url":"interfaces/accounttokens.html","classes":"tsd-kind-interface"},{"id":54,"kind":1024,"name":"tokens","url":"interfaces/accounttokens.html#tokens","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AccountTokens"},{"id":55,"kind":256,"name":"TransactionInfo","url":"interfaces/transactioninfo.html","classes":"tsd-kind-interface"},{"id":56,"kind":1024,"name":"block_height","url":"interfaces/transactioninfo.html#block_height","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TransactionInfo"},{"id":57,"kind":128,"name":"BlockstackNetwork","url":"classes/blockstacknetwork.html","classes":"tsd-kind-class"},{"id":58,"kind":1024,"name":"blockstackAPIUrl","url":"classes/blockstacknetwork.html#blockstackapiurl","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":59,"kind":1024,"name":"broadcastServiceUrl","url":"classes/blockstacknetwork.html#broadcastserviceurl","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":60,"kind":1024,"name":"DUST_MINIMUM","url":"classes/blockstacknetwork.html#dust_minimum","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":61,"kind":1024,"name":"includeUtxoMap","url":"classes/blockstacknetwork.html#includeutxomap","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":62,"kind":65536,"name":"__type","url":"classes/blockstacknetwork.html#includeutxomap.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"BlockstackNetwork.includeUtxoMap"},{"id":63,"kind":1024,"name":"excludeUtxoSet","url":"classes/blockstacknetwork.html#excludeutxoset","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":64,"kind":1024,"name":"btc","url":"classes/blockstacknetwork.html#btc","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":65,"kind":1024,"name":"MAGIC_BYTES","url":"classes/blockstacknetwork.html#magic_bytes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":66,"kind":512,"name":"constructor","url":"classes/blockstacknetwork.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":67,"kind":2048,"name":"getDefaultBurnAddress","url":"classes/blockstacknetwork.html#getdefaultburnaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":68,"kind":2048,"name":"getNamePriceV1","url":"classes/blockstacknetwork.html#getnamepricev1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"BlockstackNetwork"},{"id":69,"kind":2048,"name":"getNamespacePriceV1","url":"classes/blockstacknetwork.html#getnamespacepricev1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"BlockstackNetwork"},{"id":70,"kind":2048,"name":"getNamePriceV2","url":"classes/blockstacknetwork.html#getnamepricev2","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"BlockstackNetwork"},{"id":71,"kind":2048,"name":"getNamespacePriceV2","url":"classes/blockstacknetwork.html#getnamespacepricev2","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"BlockstackNetwork"},{"id":72,"kind":2048,"name":"getNamePrice","url":"classes/blockstacknetwork.html#getnameprice","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":73,"kind":2048,"name":"getNamespacePrice","url":"classes/blockstacknetwork.html#getnamespaceprice","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":74,"kind":2048,"name":"getGracePeriod","url":"classes/blockstacknetwork.html#getgraceperiod","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":75,"kind":2048,"name":"getNamesOwned","url":"classes/blockstacknetwork.html#getnamesowned","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":76,"kind":2048,"name":"getNamespaceBurnAddress","url":"classes/blockstacknetwork.html#getnamespaceburnaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":77,"kind":2048,"name":"getNameInfo","url":"classes/blockstacknetwork.html#getnameinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":78,"kind":2048,"name":"getNamespaceInfo","url":"classes/blockstacknetwork.html#getnamespaceinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":79,"kind":2048,"name":"getZonefile","url":"classes/blockstacknetwork.html#getzonefile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":80,"kind":2048,"name":"getAccountStatus","url":"classes/blockstacknetwork.html#getaccountstatus","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":81,"kind":2048,"name":"getAccountHistoryPage","url":"classes/blockstacknetwork.html#getaccounthistorypage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":82,"kind":2048,"name":"getAccountAt","url":"classes/blockstacknetwork.html#getaccountat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":83,"kind":2048,"name":"getAccountTokens","url":"classes/blockstacknetwork.html#getaccounttokens","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":84,"kind":2048,"name":"getAccountBalance","url":"classes/blockstacknetwork.html#getaccountbalance","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":85,"kind":2048,"name":"broadcastServiceFetchHelper","url":"classes/blockstacknetwork.html#broadcastservicefetchhelper","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"BlockstackNetwork"},{"id":86,"kind":2048,"name":"broadcastTransaction","url":"classes/blockstacknetwork.html#broadcasttransaction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"BlockstackNetwork"},{"id":87,"kind":2048,"name":"broadcastZoneFile","url":"classes/blockstacknetwork.html#broadcastzonefile","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"BlockstackNetwork"},{"id":88,"kind":2048,"name":"broadcastNameRegistration","url":"classes/blockstacknetwork.html#broadcastnameregistration","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"BlockstackNetwork"},{"id":89,"kind":2048,"name":"getTransactionInfo","url":"classes/blockstacknetwork.html#gettransactioninfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":90,"kind":2048,"name":"getNetworkedUTXOs","url":"classes/blockstacknetwork.html#getnetworkedutxos","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlockstackNetwork"},{"id":91,"kind":32,"name":"SATOSHIS_PER_BTC","url":"globals.html#satoshis_per_btc","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":92,"kind":32,"name":"TX_BROADCAST_SERVICE_ZONE_FILE_ENDPOINT","url":"globals.html#tx_broadcast_service_zone_file_endpoint","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":93,"kind":32,"name":"TX_BROADCAST_SERVICE_REGISTRATION_ENDPOINT","url":"globals.html#tx_broadcast_service_registration_endpoint","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":94,"kind":32,"name":"TX_BROADCAST_SERVICE_TX_ENDPOINT","url":"globals.html#tx_broadcast_service_tx_endpoint","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":95,"kind":32,"name":"MAINNET_DEFAULT","url":"globals.html#mainnet_default","classes":"tsd-kind-variable"},{"id":96,"kind":64,"name":"getNameInfo","url":"globals.html#getnameinfo","classes":"tsd-kind-function"},{"id":97,"kind":32,"name":"levels","url":"globals.html#levels","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":98,"kind":32,"name":"levelToInt","url":"globals.html#leveltoint","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":99,"kind":65536,"name":"__type","url":"globals.html#leveltoint.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable tsd-is-not-exported","parent":"levelToInt"},{"id":100,"kind":32,"name":"intToLevel","url":"globals.html#inttolevel","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":101,"kind":65536,"name":"__type","url":"globals.html#inttolevel.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable tsd-is-not-exported","parent":"intToLevel"},{"id":102,"kind":4194304,"name":"GetRandomBytes","url":"globals.html#getrandombytes","classes":"tsd-kind-type-alias"},{"id":103,"kind":65536,"name":"__type","url":"globals.html#getrandombytes.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported","parent":"GetRandomBytes"},{"id":104,"kind":256,"name":"GaiaHubConfig","url":"interfaces/gaiahubconfig.html","classes":"tsd-kind-interface"},{"id":105,"kind":1024,"name":"address","url":"interfaces/gaiahubconfig.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GaiaHubConfig"},{"id":106,"kind":1024,"name":"url_prefix","url":"interfaces/gaiahubconfig.html#url_prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GaiaHubConfig"},{"id":107,"kind":1024,"name":"token","url":"interfaces/gaiahubconfig.html#token","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GaiaHubConfig"},{"id":108,"kind":1024,"name":"max_file_upload_size_megabytes","url":"interfaces/gaiahubconfig.html#max_file_upload_size_megabytes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GaiaHubConfig"},{"id":109,"kind":1024,"name":"server","url":"interfaces/gaiahubconfig.html#server","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GaiaHubConfig"},{"id":110,"kind":256,"name":"UploadResponse","url":"interfaces/uploadresponse.html","classes":"tsd-kind-interface tsd-is-not-exported"},{"id":111,"kind":1024,"name":"publicURL","url":"interfaces/uploadresponse.html#publicurl","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"UploadResponse"},{"id":112,"kind":1024,"name":"etag","url":"interfaces/uploadresponse.html#etag","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"UploadResponse"},{"id":113,"kind":64,"name":"deleteFromGaiaHub","url":"globals.html#deletefromgaiahub","classes":"tsd-kind-function"},{"id":114,"kind":256,"name":"GetGlobalObjectOptions","url":"interfaces/getglobalobjectoptions.html","classes":"tsd-kind-interface tsd-is-not-exported"},{"id":115,"kind":1024,"name":"throwIfUnavailable","url":"interfaces/getglobalobjectoptions.html#throwifunavailable","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"GetGlobalObjectOptions"},{"id":116,"kind":1024,"name":"usageDesc","url":"interfaces/getglobalobjectoptions.html#usagedesc","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"GetGlobalObjectOptions"},{"id":117,"kind":1024,"name":"returnEmptyObject","url":"interfaces/getglobalobjectoptions.html#returnemptyobject","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported","parent":"GetGlobalObjectOptions"},{"id":118,"kind":64,"name":"getBase64OutputLength","url":"globals.html#getbase64outputlength","classes":"tsd-kind-function"},{"id":119,"kind":64,"name":"getAPIUsageErrorMessage","url":"globals.html#getapiusageerrormessage","classes":"tsd-kind-function tsd-is-not-exported"},{"id":120,"kind":64,"name":"getGaiaErrorResponse","url":"globals.html#getgaiaerrorresponse","classes":"tsd-kind-function tsd-is-not-exported"},{"id":121,"kind":64,"name":"getBlockstackErrorFromResponse","url":"globals.html#getblockstackerrorfromresponse","classes":"tsd-kind-function"},{"id":122,"kind":128,"name":"AppConfig","url":"classes/appconfig.html","classes":"tsd-kind-class"},{"id":123,"kind":1024,"name":"appDomain","url":"classes/appconfig.html#appdomain","classes":"tsd-kind-property tsd-parent-kind-class","parent":"AppConfig"},{"id":124,"kind":1024,"name":"scopes","url":"classes/appconfig.html#scopes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"AppConfig"},{"id":125,"kind":1024,"name":"redirectPath","url":"classes/appconfig.html#redirectpath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"AppConfig"},{"id":126,"kind":1024,"name":"manifestPath","url":"classes/appconfig.html#manifestpath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"AppConfig"},{"id":127,"kind":1024,"name":"coreNode","url":"classes/appconfig.html#corenode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"AppConfig"},{"id":128,"kind":1024,"name":"authenticatorURL","url":"classes/appconfig.html#authenticatorurl","classes":"tsd-kind-property tsd-parent-kind-class","parent":"AppConfig"},{"id":129,"kind":512,"name":"constructor","url":"classes/appconfig.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"AppConfig"},{"id":130,"kind":2048,"name":"redirectURI","url":"classes/appconfig.html#redirecturi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AppConfig"},{"id":131,"kind":2048,"name":"manifestURI","url":"classes/appconfig.html#manifesturi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AppConfig"},{"id":132,"kind":256,"name":"Hmac","url":"interfaces/hmac.html","classes":"tsd-kind-interface"},{"id":133,"kind":2048,"name":"digest","url":"interfaces/hmac.html#digest","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Hmac"},{"id":134,"kind":128,"name":"NodeCryptoHmacSha256","url":"classes/nodecryptohmacsha256.html","classes":"tsd-kind-class"},{"id":135,"kind":1024,"name":"createHmac","url":"classes/nodecryptohmacsha256.html#createhmac","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NodeCryptoHmacSha256"},{"id":136,"kind":512,"name":"constructor","url":"classes/nodecryptohmacsha256.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"NodeCryptoHmacSha256"},{"id":137,"kind":2048,"name":"digest","url":"classes/nodecryptohmacsha256.html#digest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"NodeCryptoHmacSha256"},{"id":138,"kind":128,"name":"WebCryptoHmacSha256","url":"classes/webcryptohmacsha256.html","classes":"tsd-kind-class"},{"id":139,"kind":1024,"name":"subtleCrypto","url":"classes/webcryptohmacsha256.html#subtlecrypto","classes":"tsd-kind-property tsd-parent-kind-class","parent":"WebCryptoHmacSha256"},{"id":140,"kind":512,"name":"constructor","url":"classes/webcryptohmacsha256.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"WebCryptoHmacSha256"},{"id":141,"kind":2048,"name":"digest","url":"classes/webcryptohmacsha256.html#digest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WebCryptoHmacSha256"},{"id":142,"kind":4194304,"name":"NodeCryptoCreateHmac","url":"globals.html#nodecryptocreatehmac","classes":"tsd-kind-type-alias tsd-is-not-exported"},{"id":143,"kind":64,"name":"createHmacSha256","url":"globals.html#createhmacsha256","classes":"tsd-kind-function"},{"id":144,"kind":256,"name":"AesCipher","url":"interfaces/aescipher.html","classes":"tsd-kind-interface"},{"id":145,"kind":2048,"name":"encrypt","url":"interfaces/aescipher.html#encrypt","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"AesCipher"},{"id":146,"kind":2048,"name":"decrypt","url":"interfaces/aescipher.html#decrypt","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"AesCipher"},{"id":147,"kind":128,"name":"NodeCryptoAesCipher","url":"classes/nodecryptoaescipher.html","classes":"tsd-kind-class"},{"id":148,"kind":1024,"name":"createCipher","url":"classes/nodecryptoaescipher.html#createcipher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NodeCryptoAesCipher"},{"id":149,"kind":1024,"name":"createDecipher","url":"classes/nodecryptoaescipher.html#createdecipher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NodeCryptoAesCipher"},{"id":150,"kind":512,"name":"constructor","url":"classes/nodecryptoaescipher.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"NodeCryptoAesCipher"},{"id":151,"kind":2048,"name":"encrypt","url":"classes/nodecryptoaescipher.html#encrypt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"NodeCryptoAesCipher"},{"id":152,"kind":2048,"name":"decrypt","url":"classes/nodecryptoaescipher.html#decrypt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"NodeCryptoAesCipher"},{"id":153,"kind":128,"name":"WebCryptoAesCipher","url":"classes/webcryptoaescipher.html","classes":"tsd-kind-class"},{"id":154,"kind":1024,"name":"subtleCrypto","url":"classes/webcryptoaescipher.html#subtlecrypto","classes":"tsd-kind-property tsd-parent-kind-class","parent":"WebCryptoAesCipher"},{"id":155,"kind":512,"name":"constructor","url":"classes/webcryptoaescipher.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"WebCryptoAesCipher"},{"id":156,"kind":2048,"name":"encrypt","url":"classes/webcryptoaescipher.html#encrypt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WebCryptoAesCipher"},{"id":157,"kind":2048,"name":"decrypt","url":"classes/webcryptoaescipher.html#decrypt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WebCryptoAesCipher"},{"id":158,"kind":4194304,"name":"NodeCryptoCreateCipher","url":"globals.html#nodecryptocreatecipher","classes":"tsd-kind-type-alias tsd-is-not-exported"},{"id":159,"kind":4194304,"name":"NodeCryptoCreateDecipher","url":"globals.html#nodecryptocreatedecipher","classes":"tsd-kind-type-alias tsd-is-not-exported"},{"id":160,"kind":4194304,"name":"CipherAlgorithm","url":"globals.html#cipheralgorithm","classes":"tsd-kind-type-alias"},{"id":161,"kind":64,"name":"createCipher","url":"globals.html#createcipher","classes":"tsd-kind-function"},{"id":162,"kind":32,"name":"ecurve","url":"globals.html#ecurve","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":163,"kind":256,"name":"SessionOptions","url":"interfaces/sessionoptions.html","classes":"tsd-kind-interface"},{"id":164,"kind":1024,"name":"coreNode","url":"interfaces/sessionoptions.html#corenode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SessionOptions"},{"id":165,"kind":1024,"name":"userData","url":"interfaces/sessionoptions.html#userdata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SessionOptions"},{"id":166,"kind":1024,"name":"transitKey","url":"interfaces/sessionoptions.html#transitkey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SessionOptions"},{"id":167,"kind":1024,"name":"etags","url":"interfaces/sessionoptions.html#etags","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SessionOptions"},{"id":168,"kind":1024,"name":"localStorageKey","url":"interfaces/sessionoptions.html#localstoragekey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SessionOptions"},{"id":169,"kind":1024,"name":"storeOptions","url":"interfaces/sessionoptions.html#storeoptions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SessionOptions"},{"id":170,"kind":65536,"name":"__type","url":"interfaces/sessionoptions.html#storeoptions.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"SessionOptions.storeOptions"},{"id":171,"kind":32,"name":"localStorageKey","url":"interfaces/sessionoptions.html#storeoptions.__type.localstoragekey-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"SessionOptions.storeOptions.__type"},{"id":172,"kind":32,"name":"SESSION_VERSION","url":"globals.html#session_version","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":173,"kind":4194304,"name":"EtagMap","url":"globals.html#etagmap","classes":"tsd-kind-type-alias tsd-is-not-exported"},{"id":174,"kind":65536,"name":"__type","url":"globals.html#etagmap.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported","parent":"EtagMap"},{"id":175,"kind":128,"name":"SessionDataStore","url":"classes/sessiondatastore.html","classes":"tsd-kind-class"},{"id":176,"kind":512,"name":"constructor","url":"classes/sessiondatastore.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"SessionDataStore"},{"id":177,"kind":2048,"name":"getSessionData","url":"classes/sessiondatastore.html#getsessiondata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"SessionDataStore"},{"id":178,"kind":2048,"name":"setSessionData","url":"classes/sessiondatastore.html#setsessiondata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"SessionDataStore"},{"id":179,"kind":2048,"name":"deleteSessionData","url":"classes/sessiondatastore.html#deletesessiondata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"SessionDataStore"},{"id":180,"kind":64,"name":"signProfileToken","url":"globals.html#signprofiletoken","classes":"tsd-kind-function"},{"id":181,"kind":64,"name":"wrapProfileToken","url":"globals.html#wrapprofiletoken","classes":"tsd-kind-function"},{"id":182,"kind":64,"name":"verifyProfileToken","url":"globals.html#verifyprofiletoken","classes":"tsd-kind-function"},{"id":183,"kind":64,"name":"extractProfile","url":"globals.html#extractprofile","classes":"tsd-kind-function"},{"id":184,"kind":4194304,"name":"CheerioModuleType","url":"globals.html#cheeriomoduletype","classes":"tsd-kind-type-alias"},{"id":185,"kind":128,"name":"Facebook","url":"classes/facebook.html","classes":"tsd-kind-class tsd-is-not-exported"},{"id":186,"kind":2048,"name":"getProofUrl","url":"classes/facebook.html#getproofurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"Facebook"},{"id":187,"kind":2048,"name":"normalizeUrl","url":"classes/facebook.html#normalizeurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"Facebook"},{"id":188,"kind":2048,"name":"getProofStatement","url":"classes/facebook.html#getproofstatement","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"Facebook"},{"id":189,"kind":2048,"name":"getBaseUrls","url":"classes/facebook.html#getbaseurls","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-not-exported","parent":"Facebook"},{"id":190,"kind":2048,"name":"validateProof","url":"classes/facebook.html#validateproof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"Facebook"},{"id":191,"kind":2048,"name":"shouldValidateIdentityInBody","url":"classes/facebook.html#shouldvalidateidentityinbody","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"Facebook"},{"id":192,"kind":2048,"name":"prefixScheme","url":"classes/facebook.html#prefixscheme","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"Facebook"},{"id":193,"kind":2048,"name":"getProofIdentity","url":"classes/facebook.html#getproofidentity","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"Facebook"},{"id":194,"kind":128,"name":"Github","url":"classes/github.html","classes":"tsd-kind-class tsd-is-not-exported"},{"id":195,"kind":2048,"name":"getBaseUrls","url":"classes/github.html#getbaseurls","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-not-exported","parent":"Github"},{"id":196,"kind":2048,"name":"normalizeUrl","url":"classes/github.html#normalizeurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"Github"},{"id":197,"kind":2048,"name":"getProofUrl","url":"classes/github.html#getproofurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"Github"},{"id":198,"kind":2048,"name":"getProofStatement","url":"classes/github.html#getproofstatement","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"Github"},{"id":199,"kind":2048,"name":"validateProof","url":"classes/github.html#validateproof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"Github"},{"id":200,"kind":2048,"name":"shouldValidateIdentityInBody","url":"classes/github.html#shouldvalidateidentityinbody","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"Github"},{"id":201,"kind":2048,"name":"prefixScheme","url":"classes/github.html#prefixscheme","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"Github"},{"id":202,"kind":2048,"name":"getProofIdentity","url":"classes/github.html#getproofidentity","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"Github"},{"id":203,"kind":128,"name":"Twitter","url":"classes/twitter.html","classes":"tsd-kind-class tsd-is-not-exported"},{"id":204,"kind":2048,"name":"getBaseUrls","url":"classes/twitter.html#getbaseurls","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-not-exported","parent":"Twitter"},{"id":205,"kind":2048,"name":"normalizeUrl","url":"classes/twitter.html#normalizeurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"Twitter"},{"id":206,"kind":2048,"name":"getProofStatement","url":"classes/twitter.html#getproofstatement","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"Twitter"},{"id":207,"kind":2048,"name":"getProofUrl","url":"classes/twitter.html#getproofurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"Twitter"},{"id":208,"kind":2048,"name":"validateProof","url":"classes/twitter.html#validateproof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"Twitter"},{"id":209,"kind":2048,"name":"shouldValidateIdentityInBody","url":"classes/twitter.html#shouldvalidateidentityinbody","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"Twitter"},{"id":210,"kind":2048,"name":"prefixScheme","url":"classes/twitter.html#prefixscheme","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"Twitter"},{"id":211,"kind":2048,"name":"getProofIdentity","url":"classes/twitter.html#getproofidentity","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"Twitter"},{"id":212,"kind":128,"name":"Instagram","url":"classes/instagram.html","classes":"tsd-kind-class tsd-is-not-exported"},{"id":213,"kind":2048,"name":"getBaseUrls","url":"classes/instagram.html#getbaseurls","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-not-exported","parent":"Instagram"},{"id":214,"kind":2048,"name":"getProofUrl","url":"classes/instagram.html#getproofurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"Instagram"},{"id":215,"kind":2048,"name":"normalizeUrl","url":"classes/instagram.html#normalizeurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"Instagram"},{"id":216,"kind":2048,"name":"shouldValidateIdentityInBody","url":"classes/instagram.html#shouldvalidateidentityinbody","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"Instagram"},{"id":217,"kind":2048,"name":"getProofIdentity","url":"classes/instagram.html#getproofidentity","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"Instagram"},{"id":218,"kind":2048,"name":"getProofStatement","url":"classes/instagram.html#getproofstatement","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"Instagram"},{"id":219,"kind":2048,"name":"validateProof","url":"classes/instagram.html#validateproof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"Instagram"},{"id":220,"kind":2048,"name":"prefixScheme","url":"classes/instagram.html#prefixscheme","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"Instagram"},{"id":221,"kind":128,"name":"HackerNews","url":"classes/hackernews.html","classes":"tsd-kind-class tsd-is-not-exported"},{"id":222,"kind":2048,"name":"getBaseUrls","url":"classes/hackernews.html#getbaseurls","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-not-exported","parent":"HackerNews"},{"id":223,"kind":2048,"name":"getProofUrl","url":"classes/hackernews.html#getproofurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"HackerNews"},{"id":224,"kind":2048,"name":"normalizeUrl","url":"classes/hackernews.html#normalizeurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"HackerNews"},{"id":225,"kind":2048,"name":"getProofStatement","url":"classes/hackernews.html#getproofstatement","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"HackerNews"},{"id":226,"kind":2048,"name":"validateProof","url":"classes/hackernews.html#validateproof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"HackerNews"},{"id":227,"kind":2048,"name":"shouldValidateIdentityInBody","url":"classes/hackernews.html#shouldvalidateidentityinbody","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"HackerNews"},{"id":228,"kind":2048,"name":"prefixScheme","url":"classes/hackernews.html#prefixscheme","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"HackerNews"},{"id":229,"kind":2048,"name":"getProofIdentity","url":"classes/hackernews.html#getproofidentity","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"HackerNews"},{"id":230,"kind":128,"name":"LinkedIn","url":"classes/linkedin.html","classes":"tsd-kind-class tsd-is-not-exported"},{"id":231,"kind":2048,"name":"getBaseUrls","url":"classes/linkedin.html#getbaseurls","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-not-exported","parent":"LinkedIn"},{"id":232,"kind":2048,"name":"getProofUrl","url":"classes/linkedin.html#getproofurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"LinkedIn"},{"id":233,"kind":2048,"name":"normalizeUrl","url":"classes/linkedin.html#normalizeurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"LinkedIn"},{"id":234,"kind":2048,"name":"shouldValidateIdentityInBody","url":"classes/linkedin.html#shouldvalidateidentityinbody","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"LinkedIn"},{"id":235,"kind":2048,"name":"getProofIdentity","url":"classes/linkedin.html#getproofidentity","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"LinkedIn"},{"id":236,"kind":2048,"name":"getProofStatement","url":"classes/linkedin.html#getproofstatement","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-not-exported","parent":"LinkedIn"},{"id":237,"kind":2048,"name":"validateProof","url":"classes/linkedin.html#validateproof","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"LinkedIn"},{"id":238,"kind":2048,"name":"prefixScheme","url":"classes/linkedin.html#prefixscheme","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"LinkedIn"},{"id":239,"kind":256,"name":"AccountProofInfo","url":"interfaces/accountproofinfo.html","classes":"tsd-kind-interface"},{"id":240,"kind":1024,"name":"service","url":"interfaces/accountproofinfo.html#service","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AccountProofInfo"},{"id":241,"kind":1024,"name":"identifier","url":"interfaces/accountproofinfo.html#identifier","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AccountProofInfo"},{"id":242,"kind":1024,"name":"proof_url","url":"interfaces/accountproofinfo.html#proof_url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AccountProofInfo"},{"id":243,"kind":1024,"name":"valid","url":"interfaces/accountproofinfo.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AccountProofInfo"},{"id":244,"kind":64,"name":"validateProofs","url":"globals.html#validateproofs","classes":"tsd-kind-function"},{"id":245,"kind":128,"name":"Profile","url":"classes/profile.html","classes":"tsd-kind-class"},{"id":246,"kind":1024,"name":"_profile","url":"classes/profile.html#_profile","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Profile"},{"id":247,"kind":65536,"name":"__type","url":"classes/profile.html#_profile.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported","parent":"Profile._profile"},{"id":248,"kind":512,"name":"constructor","url":"classes/profile.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Profile"},{"id":249,"kind":2048,"name":"toJSON","url":"classes/profile.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Profile"},{"id":250,"kind":2048,"name":"toToken","url":"classes/profile.html#totoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Profile"},{"id":251,"kind":2048,"name":"validateSchema","url":"classes/profile.html#validateschema","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Profile"},{"id":252,"kind":2048,"name":"fromToken","url":"classes/profile.html#fromtoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Profile"},{"id":253,"kind":2048,"name":"makeZoneFile","url":"classes/profile.html#makezonefile","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Profile"},{"id":254,"kind":2048,"name":"validateProofs","url":"classes/profile.html#validateproofs","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Profile"},{"id":255,"kind":2097152,"name":"schemaDefinition","url":"globals.html#schemadefinition","classes":"tsd-kind-object-literal tsd-is-not-exported"},{"id":256,"kind":32,"name":"type","url":"globals.html#schemadefinition.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition"},{"id":257,"kind":2097152,"name":"properties","url":"globals.html#schemadefinition.properties","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition"},{"id":258,"kind":2097152,"name":"@context","url":"globals.html#schemadefinition.properties._context","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties"},{"id":259,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties._context.type-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.@context"},{"id":260,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties._context.optional","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.@context"},{"id":261,"kind":2097152,"name":"@type","url":"globals.html#schemadefinition.properties._type","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties"},{"id":262,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties._type.type-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.@type"},{"id":263,"kind":64,"name":"getName","url":"globals.html#getname","classes":"tsd-kind-function"},{"id":264,"kind":32,"name":"strict","url":"globals.html#schemadefinition.strict","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition"},{"id":265,"kind":2097152,"name":"@id","url":"globals.html#schemadefinition.properties._id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties"},{"id":266,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties._id.type-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.@id"},{"id":267,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties._id.optional-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.@id"},{"id":268,"kind":2097152,"name":"name","url":"globals.html#schemadefinition.properties.name-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties"},{"id":269,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.name-1.type-32","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.name"},{"id":270,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.name-1.optional-23","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.name"},{"id":271,"kind":2097152,"name":"givenName","url":"globals.html#schemadefinition.properties.givenname","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties"},{"id":272,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.givenname.type-22","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.givenName"},{"id":273,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.givenname.optional-17","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.givenName"},{"id":274,"kind":2097152,"name":"familyName","url":"globals.html#schemadefinition.properties.familyname","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties"},{"id":275,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.familyname.type-21","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.familyName"},{"id":276,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.familyname.optional-16","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.familyName"},{"id":277,"kind":2097152,"name":"description","url":"globals.html#schemadefinition.properties.description","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties"},{"id":278,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.description.type-20","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.description"},{"id":279,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.description.optional-15","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.description"},{"id":280,"kind":2097152,"name":"image","url":"globals.html#schemadefinition.properties.image","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties"},{"id":281,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.image.type-23","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.image"},{"id":282,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.image.optional-18","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.image"},{"id":283,"kind":2097152,"name":"items","url":"globals.html#schemadefinition.properties.image.items-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.image"},{"id":284,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.image.items-1.type-24","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.image.items"},{"id":285,"kind":2097152,"name":"properties","url":"globals.html#schemadefinition.properties.image.items-1.properties-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.image.items"},{"id":286,"kind":2097152,"name":"@type","url":"globals.html#schemadefinition.properties.image.items-1.properties-3._type-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.image.items.properties"},{"id":287,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.image.items-1.properties-3._type-3.type-25","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.image.items.properties.@type"},{"id":288,"kind":2097152,"name":"name","url":"globals.html#schemadefinition.properties.image.items-1.properties-3.name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.image.items.properties"},{"id":289,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.image.items-1.properties-3.name.type-27","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.image.items.properties.name"},{"id":290,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.image.items-1.properties-3.name.optional-20","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.image.items.properties.name"},{"id":291,"kind":2097152,"name":"contentUrl","url":"globals.html#schemadefinition.properties.image.items-1.properties-3.contenturl","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.image.items.properties"},{"id":292,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.image.items-1.properties-3.contenturl.type-26","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.image.items.properties.contentUrl"},{"id":293,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.image.items-1.properties-3.contenturl.optional-19","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.image.items.properties.contentUrl"},{"id":294,"kind":2097152,"name":"website","url":"globals.html#schemadefinition.properties.website","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties"},{"id":295,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.website.type-34","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.website"},{"id":296,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.website.optional-25","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.website"},{"id":297,"kind":2097152,"name":"items","url":"globals.html#schemadefinition.properties.website.items-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.website"},{"id":298,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.website.items-3.type-35","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.website.items"},{"id":299,"kind":2097152,"name":"properties","url":"globals.html#schemadefinition.properties.website.items-3.properties-5","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.website.items"},{"id":300,"kind":2097152,"name":"@type","url":"globals.html#schemadefinition.properties.website.items-3.properties-5._type-5","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.website.items.properties"},{"id":301,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.website.items-3.properties-5._type-5.type-36","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.website.items.properties.@type"},{"id":302,"kind":2097152,"name":"url","url":"globals.html#schemadefinition.properties.website.items-3.properties-5.url","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.website.items.properties"},{"id":303,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.website.items-3.properties-5.url.type-37","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.website.items.properties.url"},{"id":304,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.website.items-3.properties-5.url.optional-26","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.website.items.properties.url"},{"id":305,"kind":2097152,"name":"account","url":"globals.html#schemadefinition.properties.account","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties"},{"id":306,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.account.type-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account"},{"id":307,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.account.optional-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account"},{"id":308,"kind":2097152,"name":"items","url":"globals.html#schemadefinition.properties.account.items","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account"},{"id":309,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.account.items.type-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items"},{"id":310,"kind":2097152,"name":"properties","url":"globals.html#schemadefinition.properties.account.items.properties-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items"},{"id":311,"kind":2097152,"name":"@type","url":"globals.html#schemadefinition.properties.account.items.properties-1._type-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties"},{"id":312,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.account.items.properties-1._type-1.type-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties.@type"},{"id":313,"kind":2097152,"name":"service","url":"globals.html#schemadefinition.properties.account.items.properties-1.service","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties"},{"id":314,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.account.items.properties-1.service.type-12","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties.service"},{"id":315,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.account.items.properties-1.service.optional-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties.service"},{"id":316,"kind":2097152,"name":"identifier","url":"globals.html#schemadefinition.properties.account.items.properties-1.identifier","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties"},{"id":317,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.account.items.properties-1.identifier.type-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties.identifier"},{"id":318,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.account.items.properties-1.identifier.optional-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties.identifier"},{"id":319,"kind":2097152,"name":"proofType","url":"globals.html#schemadefinition.properties.account.items.properties-1.prooftype","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties"},{"id":320,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.account.items.properties-1.prooftype.type-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties.proofType"},{"id":321,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.account.items.properties-1.prooftype.optional-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties.proofType"},{"id":322,"kind":2097152,"name":"proofUrl","url":"globals.html#schemadefinition.properties.account.items.properties-1.proofurl","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties"},{"id":323,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.account.items.properties-1.proofurl.type-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties.proofUrl"},{"id":324,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.account.items.properties-1.proofurl.optional-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties.proofUrl"},{"id":325,"kind":2097152,"name":"proofMessage","url":"globals.html#schemadefinition.properties.account.items.properties-1.proofmessage","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties"},{"id":326,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.account.items.properties-1.proofmessage.type-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties.proofMessage"},{"id":327,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.account.items.properties-1.proofmessage.optional-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties.proofMessage"},{"id":328,"kind":2097152,"name":"proofSignature","url":"globals.html#schemadefinition.properties.account.items.properties-1.proofsignature","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties"},{"id":329,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.account.items.properties-1.proofsignature.type-9","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties.proofSignature"},{"id":330,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.account.items.properties-1.proofsignature.optional-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.account.items.properties.proofSignature"},{"id":331,"kind":2097152,"name":"worksFor","url":"globals.html#schemadefinition.properties.worksfor","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties"},{"id":332,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.worksfor.type-38","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.worksFor"},{"id":333,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.worksfor.optional-27","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.worksFor"},{"id":334,"kind":2097152,"name":"items","url":"globals.html#schemadefinition.properties.worksfor.items-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.worksFor"},{"id":335,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.worksfor.items-4.type-39","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.worksFor.items"},{"id":336,"kind":2097152,"name":"properties","url":"globals.html#schemadefinition.properties.worksfor.items-4.properties-6","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.worksFor.items"},{"id":337,"kind":2097152,"name":"@type","url":"globals.html#schemadefinition.properties.worksfor.items-4.properties-6._type-6","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.worksFor.items.properties"},{"id":338,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.worksfor.items-4.properties-6._type-6.type-41","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.worksFor.items.properties.@type"},{"id":339,"kind":2097152,"name":"@id","url":"globals.html#schemadefinition.properties.worksfor.items-4.properties-6._id-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.worksFor.items.properties"},{"id":340,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.worksfor.items-4.properties-6._id-2.type-40","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.worksFor.items.properties.@id"},{"id":341,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.worksfor.items-4.properties-6._id-2.optional-28","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.worksFor.items.properties.@id"},{"id":342,"kind":2097152,"name":"knows","url":"globals.html#schemadefinition.properties.knows","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties"},{"id":343,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.knows.type-28","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.knows"},{"id":344,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.knows.optional-21","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.knows"},{"id":345,"kind":2097152,"name":"items","url":"globals.html#schemadefinition.properties.knows.items-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.knows"},{"id":346,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.knows.items-2.type-29","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.knows.items"},{"id":347,"kind":2097152,"name":"properties","url":"globals.html#schemadefinition.properties.knows.items-2.properties-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.knows.items"},{"id":348,"kind":2097152,"name":"@type","url":"globals.html#schemadefinition.properties.knows.items-2.properties-4._type-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.knows.items.properties"},{"id":349,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.knows.items-2.properties-4._type-4.type-31","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.knows.items.properties.@type"},{"id":350,"kind":2097152,"name":"@id","url":"globals.html#schemadefinition.properties.knows.items-2.properties-4._id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.knows.items.properties"},{"id":351,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.knows.items-2.properties-4._id-1.type-30","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.knows.items.properties.@id"},{"id":352,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.knows.items-2.properties-4._id-1.optional-22","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.knows.items.properties.@id"},{"id":353,"kind":2097152,"name":"address","url":"globals.html#schemadefinition.properties.address","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties"},{"id":354,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.address.type-13","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address"},{"id":355,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.address.optional-9","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address"},{"id":356,"kind":2097152,"name":"properties","url":"globals.html#schemadefinition.properties.address.properties-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address"},{"id":357,"kind":2097152,"name":"@type","url":"globals.html#schemadefinition.properties.address.properties-2._type-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address.properties"},{"id":358,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.address.properties-2._type-2.type-14","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address.properties.@type"},{"id":359,"kind":2097152,"name":"streetAddress","url":"globals.html#schemadefinition.properties.address.properties-2.streetaddress","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address.properties"},{"id":360,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.address.properties-2.streetaddress.type-18","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address.properties.streetAddress"},{"id":361,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.address.properties-2.streetaddress.optional-13","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address.properties.streetAddress"},{"id":362,"kind":2097152,"name":"addressLocality","url":"globals.html#schemadefinition.properties.address.properties-2.addresslocality","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address.properties"},{"id":363,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.address.properties-2.addresslocality.type-16","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address.properties.addressLocality"},{"id":364,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.address.properties-2.addresslocality.optional-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address.properties.addressLocality"},{"id":365,"kind":2097152,"name":"postalCode","url":"globals.html#schemadefinition.properties.address.properties-2.postalcode","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address.properties"},{"id":366,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.address.properties-2.postalcode.type-17","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address.properties.postalCode"},{"id":367,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.address.properties-2.postalcode.optional-12","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address.properties.postalCode"},{"id":368,"kind":2097152,"name":"addressCountry","url":"globals.html#schemadefinition.properties.address.properties-2.addresscountry","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address.properties"},{"id":369,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.address.properties-2.addresscountry.type-15","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address.properties.addressCountry"},{"id":370,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.address.properties-2.addresscountry.optional-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.address.properties.addressCountry"},{"id":371,"kind":2097152,"name":"birthDate","url":"globals.html#schemadefinition.properties.birthdate","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties"},{"id":372,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.birthdate.type-19","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.birthDate"},{"id":373,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.birthdate.optional-14","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.birthDate"},{"id":374,"kind":2097152,"name":"taxID","url":"globals.html#schemadefinition.properties.taxid","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties"},{"id":375,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties.taxid.type-33","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.taxID"},{"id":376,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties.taxid.optional-24","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"schemaDefinition.properties.taxID"},{"id":377,"kind":64,"name":"lookupProfile","url":"globals.html#lookupprofile","classes":"tsd-kind-function"},{"id":378,"kind":256,"name":"EncryptionOptions","url":"interfaces/encryptionoptions.html","classes":"tsd-kind-interface"},{"id":379,"kind":1024,"name":"sign","url":"interfaces/encryptionoptions.html#sign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EncryptionOptions"},{"id":380,"kind":1024,"name":"cipherTextEncoding","url":"interfaces/encryptionoptions.html#ciphertextencoding","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EncryptionOptions"},{"id":381,"kind":1024,"name":"wasString","url":"interfaces/encryptionoptions.html#wasstring","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EncryptionOptions"},{"id":382,"kind":256,"name":"EncryptContentOptions","url":"interfaces/encryptcontentoptions.html","classes":"tsd-kind-interface"},{"id":383,"kind":1024,"name":"publicKey","url":"interfaces/encryptcontentoptions.html#publickey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EncryptContentOptions"},{"id":384,"kind":1024,"name":"sign","url":"interfaces/encryptcontentoptions.html#sign","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"EncryptContentOptions"},{"id":385,"kind":1024,"name":"cipherTextEncoding","url":"interfaces/encryptcontentoptions.html#ciphertextencoding","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"EncryptContentOptions"},{"id":386,"kind":1024,"name":"wasString","url":"interfaces/encryptcontentoptions.html#wasstring","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"EncryptContentOptions"},{"id":387,"kind":256,"name":"PutFileOptions","url":"interfaces/putfileoptions.html","classes":"tsd-kind-interface"},{"id":388,"kind":1024,"name":"contentType","url":"interfaces/putfileoptions.html#contenttype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PutFileOptions"},{"id":389,"kind":1024,"name":"encrypt","url":"interfaces/putfileoptions.html#encrypt","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PutFileOptions"},{"id":390,"kind":1024,"name":"dangerouslyIgnoreEtag","url":"interfaces/putfileoptions.html#dangerouslyignoreetag","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PutFileOptions"},{"id":391,"kind":1024,"name":"sign","url":"interfaces/putfileoptions.html#sign","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"PutFileOptions"},{"id":392,"kind":1024,"name":"cipherTextEncoding","url":"interfaces/putfileoptions.html#ciphertextencoding","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"PutFileOptions"},{"id":393,"kind":1024,"name":"wasString","url":"interfaces/putfileoptions.html#wasstring","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"PutFileOptions"},{"id":394,"kind":256,"name":"GetFileUrlOptions","url":"interfaces/getfileurloptions.html","classes":"tsd-kind-interface"},{"id":395,"kind":1024,"name":"username","url":"interfaces/getfileurloptions.html#username","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GetFileUrlOptions"},{"id":396,"kind":1024,"name":"app","url":"interfaces/getfileurloptions.html#app","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GetFileUrlOptions"},{"id":397,"kind":1024,"name":"zoneFileLookupURL","url":"interfaces/getfileurloptions.html#zonefilelookupurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GetFileUrlOptions"},{"id":398,"kind":256,"name":"GetFileOptions","url":"interfaces/getfileoptions.html","classes":"tsd-kind-interface"},{"id":399,"kind":1024,"name":"decrypt","url":"interfaces/getfileoptions.html#decrypt","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GetFileOptions"},{"id":400,"kind":1024,"name":"verify","url":"interfaces/getfileoptions.html#verify","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GetFileOptions"},{"id":401,"kind":1024,"name":"username","url":"interfaces/getfileoptions.html#username","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"GetFileOptions"},{"id":402,"kind":1024,"name":"app","url":"interfaces/getfileoptions.html#app","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"GetFileOptions"},{"id":403,"kind":1024,"name":"zoneFileLookupURL","url":"interfaces/getfileoptions.html#zonefilelookupurl","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"GetFileOptions"},{"id":404,"kind":32,"name":"SIGNATURE_FILE_SUFFIX","url":"globals.html#signature_file_suffix","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":405,"kind":64,"name":"getUserAppFileUrl","url":"globals.html#getuserappfileurl","classes":"tsd-kind-function"},{"id":406,"kind":64,"name":"encryptContent","url":"globals.html#encryptcontent","classes":"tsd-kind-function"},{"id":407,"kind":64,"name":"decryptContent","url":"globals.html#decryptcontent","classes":"tsd-kind-function"},{"id":408,"kind":64,"name":"getGaiaAddress","url":"globals.html#getgaiaaddress","classes":"tsd-kind-function tsd-is-not-exported"},{"id":409,"kind":64,"name":"getFileUrl","url":"globals.html#getfileurl","classes":"tsd-kind-function"},{"id":410,"kind":64,"name":"getFileContents","url":"globals.html#getfilecontents","classes":"tsd-kind-function tsd-is-not-exported"},{"id":411,"kind":64,"name":"getFileSignedUnencrypted","url":"globals.html#getfilesignedunencrypted","classes":"tsd-kind-function tsd-is-not-exported"},{"id":412,"kind":64,"name":"handleSignedEncryptedContents","url":"globals.html#handlesignedencryptedcontents","classes":"tsd-kind-function tsd-is-not-exported"},{"id":413,"kind":64,"name":"getFile","url":"globals.html#getfile","classes":"tsd-kind-function"},{"id":414,"kind":64,"name":"isRecoverableGaiaError","url":"globals.html#isrecoverablegaiaerror","classes":"tsd-kind-function tsd-is-not-exported"},{"id":415,"kind":64,"name":"putFile","url":"globals.html#putfile","classes":"tsd-kind-function"},{"id":416,"kind":64,"name":"deleteFile","url":"globals.html#deletefile","classes":"tsd-kind-function"},{"id":417,"kind":64,"name":"getAppBucketUrl","url":"globals.html#getappbucketurl","classes":"tsd-kind-function"},{"id":418,"kind":64,"name":"listFiles","url":"globals.html#listfiles","classes":"tsd-kind-function"},{"id":419,"kind":128,"name":"UserSession","url":"classes/usersession.html","classes":"tsd-kind-class"},{"id":420,"kind":1024,"name":"appConfig","url":"classes/usersession.html#appconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserSession"},{"id":421,"kind":1024,"name":"store","url":"classes/usersession.html#store","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserSession"},{"id":422,"kind":512,"name":"constructor","url":"classes/usersession.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"UserSession"},{"id":423,"kind":2048,"name":"redirectToSignIn","url":"classes/usersession.html#redirecttosignin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":424,"kind":2048,"name":"redirectToSignInWithAuthRequest","url":"classes/usersession.html#redirecttosigninwithauthrequest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":425,"kind":2048,"name":"makeAuthRequest","url":"classes/usersession.html#makeauthrequest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":426,"kind":2048,"name":"generateAndStoreTransitKey","url":"classes/usersession.html#generateandstoretransitkey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":427,"kind":2048,"name":"getAuthResponseToken","url":"classes/usersession.html#getauthresponsetoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":428,"kind":2048,"name":"isSignInPending","url":"classes/usersession.html#issigninpending","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":429,"kind":2048,"name":"isUserSignedIn","url":"classes/usersession.html#isusersignedin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":430,"kind":2048,"name":"handlePendingSignIn","url":"classes/usersession.html#handlependingsignin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":431,"kind":2048,"name":"loadUserData","url":"classes/usersession.html#loaduserdata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":432,"kind":2048,"name":"signUserOut","url":"classes/usersession.html#signuserout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":433,"kind":2048,"name":"encryptContent","url":"classes/usersession.html#encryptcontent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":434,"kind":2048,"name":"decryptContent","url":"classes/usersession.html#decryptcontent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":435,"kind":2048,"name":"putFile","url":"classes/usersession.html#putfile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":436,"kind":2048,"name":"getFile","url":"classes/usersession.html#getfile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":437,"kind":2048,"name":"getFileUrl","url":"classes/usersession.html#getfileurl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":438,"kind":2048,"name":"listFiles","url":"classes/usersession.html#listfiles","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":439,"kind":2048,"name":"deleteFile","url":"classes/usersession.html#deletefile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":440,"kind":2048,"name":"getOrSetLocalGaiaHubConnection","url":"classes/usersession.html#getorsetlocalgaiahubconnection","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":441,"kind":2048,"name":"setLocalGaiaHubConnection","url":"classes/usersession.html#setlocalgaiahubconnection","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"UserSession"},{"id":442,"kind":32,"name":"VERSION","url":"globals.html#version","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":443,"kind":4194304,"name":"AuthMetadata","url":"globals.html#authmetadata","classes":"tsd-kind-type-alias tsd-is-not-exported"},{"id":444,"kind":65536,"name":"__type","url":"globals.html#authmetadata.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported","parent":"AuthMetadata"},{"id":445,"kind":32,"name":"email","url":"globals.html#authmetadata.__type.email","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"AuthMetadata.__type"},{"id":446,"kind":32,"name":"profileUrl","url":"globals.html#authmetadata.__type.profileurl","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"AuthMetadata.__type"},{"id":447,"kind":64,"name":"makeAuthRequest","url":"globals.html#makeauthrequest","classes":"tsd-kind-function"},{"id":448,"kind":32,"name":"GLOBAL_DETECTION_CACHE_KEY","url":"globals.html#global_detection_cache_key","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":449,"kind":32,"name":"ECHO_REPLY_PARAM","url":"globals.html#echo_reply_param","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":450,"kind":32,"name":"AUTH_CONTINUATION_PARAM","url":"globals.html#auth_continuation_param","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":451,"kind":64,"name":"getQueryStringParams","url":"globals.html#getquerystringparams","classes":"tsd-kind-function tsd-is-not-exported"},{"id":452,"kind":64,"name":"launchCustomProtocol","url":"globals.html#launchcustomprotocol","classes":"tsd-kind-function"},{"id":453,"kind":256,"name":"UserData","url":"interfaces/userdata.html","classes":"tsd-kind-interface"},{"id":454,"kind":1024,"name":"username","url":"interfaces/userdata.html#username","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":455,"kind":1024,"name":"email","url":"interfaces/userdata.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":456,"kind":1024,"name":"decentralizedID","url":"interfaces/userdata.html#decentralizedid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":457,"kind":1024,"name":"identityAddress","url":"interfaces/userdata.html#identityaddress","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":458,"kind":1024,"name":"appPrivateKey","url":"interfaces/userdata.html#appprivatekey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":459,"kind":1024,"name":"hubUrl","url":"interfaces/userdata.html#huburl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":460,"kind":1024,"name":"coreNode","url":"interfaces/userdata.html#corenode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":461,"kind":1024,"name":"authResponseToken","url":"interfaces/userdata.html#authresponsetoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":462,"kind":1024,"name":"coreSessionToken","url":"interfaces/userdata.html#coresessiontoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":463,"kind":1024,"name":"gaiaAssociationToken","url":"interfaces/userdata.html#gaiaassociationtoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":464,"kind":1024,"name":"profile","url":"interfaces/userdata.html#profile","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":465,"kind":1024,"name":"gaiaHubConfig","url":"interfaces/userdata.html#gaiahubconfig","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":466,"kind":2097152,"name":"DEFAULT_PROFILE","url":"globals.html#default_profile","classes":"tsd-kind-object-literal tsd-is-not-exported"},{"id":467,"kind":32,"name":"@type","url":"globals.html#default_profile._type","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"DEFAULT_PROFILE"},{"id":468,"kind":32,"name":"@context","url":"globals.html#default_profile._context","classes":"tsd-kind-variable tsd-parent-kind-object-literal tsd-is-not-exported","parent":"DEFAULT_PROFILE"},{"id":469,"kind":64,"name":"isSignInPending","url":"globals.html#issigninpending","classes":"tsd-kind-function"},{"id":470,"kind":64,"name":"getAuthResponseToken","url":"globals.html#getauthresponsetoken","classes":"tsd-kind-function"},{"id":471,"kind":64,"name":"signUserOut","url":"globals.html#signuserout","classes":"tsd-kind-function"},{"id":472,"kind":64,"name":"redirectToSignInWithAuthRequest","url":"globals.html#redirecttosigninwithauthrequest","classes":"tsd-kind-function"},{"id":473,"kind":64,"name":"handlePendingSignIn","url":"globals.html#handlependingsignin","classes":"tsd-kind-function"},{"id":474,"kind":256,"name":"Pbkdf2","url":"interfaces/pbkdf2.html","classes":"tsd-kind-interface"},{"id":475,"kind":2048,"name":"derive","url":"interfaces/pbkdf2.html#derive","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pbkdf2"},{"id":476,"kind":128,"name":"NodeCryptoPbkdf2","url":"classes/nodecryptopbkdf2.html","classes":"tsd-kind-class"},{"id":477,"kind":1024,"name":"nodePbkdf2","url":"classes/nodecryptopbkdf2.html#nodepbkdf2","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NodeCryptoPbkdf2"},{"id":478,"kind":512,"name":"constructor","url":"classes/nodecryptopbkdf2.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"NodeCryptoPbkdf2"},{"id":479,"kind":2048,"name":"derive","url":"classes/nodecryptopbkdf2.html#derive","classes":"tsd-kind-method tsd-parent-kind-class","parent":"NodeCryptoPbkdf2"},{"id":480,"kind":128,"name":"WebCryptoPbkdf2","url":"classes/webcryptopbkdf2.html","classes":"tsd-kind-class"},{"id":481,"kind":1024,"name":"subtleCrypto","url":"classes/webcryptopbkdf2.html#subtlecrypto","classes":"tsd-kind-property tsd-parent-kind-class","parent":"WebCryptoPbkdf2"},{"id":482,"kind":512,"name":"constructor","url":"classes/webcryptopbkdf2.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"WebCryptoPbkdf2"},{"id":483,"kind":2048,"name":"derive","url":"classes/webcryptopbkdf2.html#derive","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WebCryptoPbkdf2"},{"id":484,"kind":128,"name":"WebCryptoPartialPbkdf2","url":"classes/webcryptopartialpbkdf2.html","classes":"tsd-kind-class"},{"id":485,"kind":1024,"name":"subtleCrypto","url":"classes/webcryptopartialpbkdf2.html#subtlecrypto","classes":"tsd-kind-property tsd-parent-kind-class","parent":"WebCryptoPartialPbkdf2"},{"id":486,"kind":512,"name":"constructor","url":"classes/webcryptopartialpbkdf2.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"WebCryptoPartialPbkdf2"},{"id":487,"kind":2048,"name":"derive","url":"classes/webcryptopartialpbkdf2.html#derive","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WebCryptoPartialPbkdf2"},{"id":488,"kind":4194304,"name":"Pbkdf2Digests","url":"globals.html#pbkdf2digests","classes":"tsd-kind-type-alias"},{"id":489,"kind":4194304,"name":"NodePbkdf2Fn","url":"globals.html#nodepbkdf2fn","classes":"tsd-kind-type-alias tsd-is-not-exported"},{"id":490,"kind":64,"name":"createPbkdf2","url":"globals.html#createpbkdf2","classes":"tsd-kind-function"},{"id":491,"kind":128,"name":"PasswordError","url":"classes/passworderror.html","classes":"tsd-kind-class tsd-is-not-exported"},{"id":492,"kind":1024,"name":"name","url":"classes/passworderror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"PasswordError"},{"id":493,"kind":1024,"name":"message","url":"classes/passworderror.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-not-exported","parent":"PasswordError"},{"id":494,"kind":1024,"name":"stack","url":"classes/passworderror.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited tsd-is-not-exported","parent":"PasswordError"},{"id":495,"kind":1024,"name":"Error","url":"classes/passworderror.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static tsd-is-not-exported","parent":"PasswordError"},{"id":496,"kind":32,"name":"TX_EMPTY_SIZE","url":"globals.html#tx_empty_size","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":497,"kind":32,"name":"TX_INPUT_BASE","url":"globals.html#tx_input_base","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":498,"kind":32,"name":"TX_INPUT_PUBKEYHASH","url":"globals.html#tx_input_pubkeyhash","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":499,"kind":32,"name":"TX_OUTPUT_BASE","url":"globals.html#tx_output_base","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":500,"kind":32,"name":"TX_OUTPUT_PUBKEYHASH","url":"globals.html#tx_output_pubkeyhash","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":501,"kind":4194304,"name":"txPoint","url":"globals.html#txpoint","classes":"tsd-kind-type-alias tsd-is-not-exported"},{"id":502,"kind":65536,"name":"__type","url":"globals.html#txpoint.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported","parent":"txPoint"},{"id":503,"kind":32,"name":"script","url":"globals.html#txpoint.__type.script","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"txPoint.__type"},{"id":504,"kind":65536,"name":"__type","url":"globals.html#txpoint.__type.script.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-variable tsd-is-not-exported","parent":"txPoint.__type.script"},{"id":505,"kind":32,"name":"length","url":"globals.html#txpoint.__type.script.__type-1.length","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"txPoint.__type.script.__type"},{"id":506,"kind":64,"name":"inputBytes","url":"globals.html#inputbytes","classes":"tsd-kind-function tsd-is-not-exported"},{"id":507,"kind":64,"name":"outputBytes","url":"globals.html#outputbytes","classes":"tsd-kind-function tsd-is-not-exported"},{"id":508,"kind":64,"name":"transactionBytes","url":"globals.html#transactionbytes","classes":"tsd-kind-function tsd-is-not-exported"},{"id":509,"kind":64,"name":"getTransaction","url":"globals.html#gettransaction","classes":"tsd-kind-function tsd-is-not-exported"},{"id":510,"kind":64,"name":"signInputs","url":"globals.html#signinputs","classes":"tsd-kind-function"},{"id":511,"kind":4194304,"name":"AmountTypeV1","url":"globals.html#amounttypev1","classes":"tsd-kind-type-alias tsd-is-not-exported"},{"id":512,"kind":4194304,"name":"AmountTypeV2","url":"globals.html#amounttypev2","classes":"tsd-kind-type-alias tsd-is-not-exported"},{"id":513,"kind":65536,"name":"__type","url":"globals.html#amounttypev2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported","parent":"AmountTypeV2"},{"id":514,"kind":32,"name":"units","url":"globals.html#amounttypev2.__type.units","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"AmountTypeV2.__type"},{"id":515,"kind":32,"name":"amount","url":"globals.html#amounttypev2.__type.amount","classes":"tsd-kind-variable tsd-parent-kind-type-literal tsd-is-not-exported","parent":"AmountTypeV2.__type"},{"id":516,"kind":4194304,"name":"AmountType","url":"globals.html#amounttype","classes":"tsd-kind-type-alias tsd-is-not-exported"},{"id":517,"kind":32,"name":"dummyConsensusHash","url":"globals.html#dummyconsensushash","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":518,"kind":32,"name":"dummyZonefileHash","url":"globals.html#dummyzonefilehash","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":519,"kind":64,"name":"estimatePreorder","url":"globals.html#estimatepreorder","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":520,"kind":64,"name":"estimateRegister","url":"globals.html#estimateregister","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":521,"kind":64,"name":"estimateUpdate","url":"globals.html#estimateupdate","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":522,"kind":64,"name":"estimateTransfer","url":"globals.html#estimatetransfer","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":523,"kind":64,"name":"estimateRenewal","url":"globals.html#estimaterenewal","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":524,"kind":64,"name":"estimateRevoke","url":"globals.html#estimaterevoke","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":525,"kind":64,"name":"estimateNamespacePreorder","url":"globals.html#estimatenamespacepreorder","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":526,"kind":64,"name":"estimateNamespaceReveal","url":"globals.html#estimatenamespacereveal","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":527,"kind":64,"name":"estimateNamespaceReady","url":"globals.html#estimatenamespaceready","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":528,"kind":64,"name":"estimateNameImport","url":"globals.html#estimatenameimport","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":529,"kind":64,"name":"estimateAnnounce","url":"globals.html#estimateannounce","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":530,"kind":64,"name":"estimateTokenTransfer","url":"globals.html#estimatetokentransfer","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":531,"kind":64,"name":"makePreorder","url":"globals.html#makepreorder","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":532,"kind":64,"name":"makeUpdate","url":"globals.html#makeupdate","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":533,"kind":64,"name":"makeRegister","url":"globals.html#makeregister","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":534,"kind":64,"name":"makeTransfer","url":"globals.html#maketransfer","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":535,"kind":64,"name":"makeRevoke","url":"globals.html#makerevoke","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":536,"kind":64,"name":"makeRenewal","url":"globals.html#makerenewal","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":537,"kind":64,"name":"makeNamespaceReveal","url":"globals.html#makenamespacereveal","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":538,"kind":64,"name":"makeNamespaceReady","url":"globals.html#makenamespaceready","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":539,"kind":64,"name":"makeNameImport","url":"globals.html#makenameimport","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":540,"kind":64,"name":"makeAnnounce","url":"globals.html#makeannounce","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":541,"kind":64,"name":"makeTokenTransfer","url":"globals.html#maketokentransfer","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":542,"kind":64,"name":"makeBitcoinSpend","url":"globals.html#makebitcoinspend","classes":"tsd-kind-function tsd-is-private tsd-is-not-exported"},{"id":543,"kind":2097152,"name":"transactions","url":"globals.html#transactions","classes":"tsd-kind-object-literal"},{"id":544,"kind":32,"name":"makeRenewal","url":"globals.html#transactions.makerenewal","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":545,"kind":32,"name":"makeUpdate","url":"globals.html#transactions.makeupdate","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":546,"kind":32,"name":"makePreorder","url":"globals.html#transactions.makepreorder","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":547,"kind":32,"name":"makeRegister","url":"globals.html#transactions.makeregister","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":548,"kind":32,"name":"makeTransfer","url":"globals.html#transactions.maketransfer","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":549,"kind":32,"name":"makeRevoke","url":"globals.html#transactions.makerevoke","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":550,"kind":32,"name":"makeNamespacePreorder","url":"globals.html#transactions.makenamespacepreorder","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":551,"kind":32,"name":"makeNamespaceReveal","url":"globals.html#transactions.makenamespacereveal","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":552,"kind":32,"name":"makeNamespaceReady","url":"globals.html#transactions.makenamespaceready","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":553,"kind":32,"name":"makeBitcoinSpend","url":"globals.html#transactions.makebitcoinspend","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":554,"kind":32,"name":"makeNameImport","url":"globals.html#transactions.makenameimport","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":555,"kind":32,"name":"makeAnnounce","url":"globals.html#transactions.makeannounce","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":556,"kind":32,"name":"makeTokenTransfer","url":"globals.html#transactions.maketokentransfer","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":557,"kind":32,"name":"BlockstackNamespace","url":"globals.html#transactions.blockstacknamespace","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":558,"kind":32,"name":"estimatePreorder","url":"globals.html#transactions.estimatepreorder","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":559,"kind":32,"name":"estimateRegister","url":"globals.html#transactions.estimateregister","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":560,"kind":32,"name":"estimateTransfer","url":"globals.html#transactions.estimatetransfer","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":561,"kind":32,"name":"estimateUpdate","url":"globals.html#transactions.estimateupdate","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":562,"kind":32,"name":"estimateRenewal","url":"globals.html#transactions.estimaterenewal","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":563,"kind":32,"name":"estimateRevoke","url":"globals.html#transactions.estimaterevoke","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":564,"kind":32,"name":"estimateNamespacePreorder","url":"globals.html#transactions.estimatenamespacepreorder","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":565,"kind":32,"name":"estimateNamespaceReveal","url":"globals.html#transactions.estimatenamespacereveal","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":566,"kind":32,"name":"estimateNamespaceReady","url":"globals.html#transactions.estimatenamespaceready","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":567,"kind":32,"name":"estimateNameImport","url":"globals.html#transactions.estimatenameimport","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":568,"kind":32,"name":"estimateAnnounce","url":"globals.html#transactions.estimateannounce","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":569,"kind":32,"name":"estimateTokenTransfer","url":"globals.html#transactions.estimatetokentransfer","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"transactions"},{"id":570,"kind":32,"name":"APPS_NODE_INDEX","url":"globals.html#apps_node_index","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":571,"kind":32,"name":"IDENTITY_KEYCHAIN","url":"globals.html#identity_keychain","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":572,"kind":32,"name":"BLOCKSTACK_ON_BITCOIN","url":"globals.html#blockstack_on_bitcoin","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":573,"kind":32,"name":"BITCOIN_BIP_44_PURPOSE","url":"globals.html#bitcoin_bip_44_purpose","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":574,"kind":32,"name":"BITCOIN_COIN_TYPE","url":"globals.html#bitcoin_coin_type","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":575,"kind":32,"name":"BITCOIN_ACCOUNT_INDEX","url":"globals.html#bitcoin_account_index","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":576,"kind":32,"name":"EXTERNAL_ADDRESS","url":"globals.html#external_address","classes":"tsd-kind-variable tsd-is-not-exported"},{"id":577,"kind":32,"name":"CHANGE_ADDRESS","url":"globals.html#change_address","classes":"tsd-kind-variable tsd-is-not-exported"}]}; \ No newline at end of file diff --git a/docs/assets/js/search.json b/docs/assets/js/search.json new file mode 100644 index 000000000..7a9000c86 --- /dev/null +++ b/docs/assets/js/search.json @@ -0,0 +1 @@ +{"kinds":{"4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":4,"name":"AuthScope","url":"enums/authscope.html","classes":"tsd-kind-enum"},{"id":1,"kind":16,"name":"store_write","url":"enums/authscope.html#store_write","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AuthScope"},{"id":2,"kind":16,"name":"publish_data","url":"enums/authscope.html#publish_data","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AuthScope"},{"id":3,"kind":16,"name":"email","url":"enums/authscope.html#email","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AuthScope"},{"id":4,"kind":32,"name":"DEFAULT_BLOCKSTACK_HOST","url":"globals.html#default_blockstack_host","classes":"tsd-kind-variable"},{"id":5,"kind":2097152,"name":"DEFAULT_PROFILE","url":"globals.html#default_profile","classes":"tsd-kind-object-literal"},{"id":6,"kind":32,"name":"@type","url":"globals.html#default_profile._type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"DEFAULT_PROFILE"},{"id":7,"kind":32,"name":"@context","url":"globals.html#default_profile._context","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"DEFAULT_PROFILE"},{"id":8,"kind":128,"name":"AppConfig","url":"classes/appconfig.html","classes":"tsd-kind-class"},{"id":9,"kind":1024,"name":"appDomain","url":"classes/appconfig.html#appdomain","classes":"tsd-kind-property tsd-parent-kind-class","parent":"AppConfig"},{"id":10,"kind":1024,"name":"scopes","url":"classes/appconfig.html#scopes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"AppConfig"},{"id":11,"kind":1024,"name":"redirectPath","url":"classes/appconfig.html#redirectpath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"AppConfig"},{"id":12,"kind":1024,"name":"manifestPath","url":"classes/appconfig.html#manifestpath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"AppConfig"},{"id":13,"kind":1024,"name":"coreNode","url":"classes/appconfig.html#corenode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"AppConfig"},{"id":14,"kind":1024,"name":"authenticatorURL","url":"classes/appconfig.html#authenticatorurl","classes":"tsd-kind-property tsd-parent-kind-class","parent":"AppConfig"},{"id":15,"kind":512,"name":"constructor","url":"classes/appconfig.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"AppConfig"},{"id":16,"kind":2048,"name":"redirectURI","url":"classes/appconfig.html#redirecturi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AppConfig"},{"id":17,"kind":2048,"name":"manifestURI","url":"classes/appconfig.html#manifesturi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AppConfig"},{"id":18,"kind":32,"name":"VERSION","url":"globals.html#version","classes":"tsd-kind-variable"},{"id":19,"kind":4194304,"name":"AuthMetadata","url":"globals.html#authmetadata","classes":"tsd-kind-type-alias"},{"id":20,"kind":65536,"name":"__type","url":"globals.html#authmetadata.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"AuthMetadata"},{"id":21,"kind":32,"name":"email","url":"globals.html#authmetadata.__type.email","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"AuthMetadata.__type"},{"id":22,"kind":32,"name":"profileUrl","url":"globals.html#authmetadata.__type.profileurl","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"AuthMetadata.__type"},{"id":23,"kind":64,"name":"makeAuthRequest","url":"globals.html#makeauthrequest","classes":"tsd-kind-function"},{"id":24,"kind":256,"name":"UserData","url":"interfaces/userdata.html","classes":"tsd-kind-interface"},{"id":25,"kind":1024,"name":"username","url":"interfaces/userdata.html#username","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":26,"kind":1024,"name":"email","url":"interfaces/userdata.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":27,"kind":1024,"name":"decentralizedID","url":"interfaces/userdata.html#decentralizedid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":28,"kind":1024,"name":"identityAddress","url":"interfaces/userdata.html#identityaddress","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":29,"kind":1024,"name":"appPrivateKey","url":"interfaces/userdata.html#appprivatekey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":30,"kind":1024,"name":"hubUrl","url":"interfaces/userdata.html#huburl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":31,"kind":1024,"name":"coreNode","url":"interfaces/userdata.html#corenode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":32,"kind":1024,"name":"authResponseToken","url":"interfaces/userdata.html#authresponsetoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":33,"kind":1024,"name":"coreSessionToken","url":"interfaces/userdata.html#coresessiontoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":34,"kind":1024,"name":"gaiaAssociationToken","url":"interfaces/userdata.html#gaiaassociationtoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":35,"kind":1024,"name":"profile","url":"interfaces/userdata.html#profile","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":36,"kind":1024,"name":"gaiaHubConfig","url":"interfaces/userdata.html#gaiahubconfig","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UserData"},{"id":37,"kind":256,"name":"SessionOptions","url":"interfaces/sessionoptions.html","classes":"tsd-kind-interface"},{"id":38,"kind":1024,"name":"coreNode","url":"interfaces/sessionoptions.html#corenode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SessionOptions"},{"id":39,"kind":1024,"name":"userData","url":"interfaces/sessionoptions.html#userdata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SessionOptions"},{"id":40,"kind":1024,"name":"transitKey","url":"interfaces/sessionoptions.html#transitkey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SessionOptions"},{"id":41,"kind":1024,"name":"etags","url":"interfaces/sessionoptions.html#etags","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SessionOptions"},{"id":42,"kind":1024,"name":"localStorageKey","url":"interfaces/sessionoptions.html#localstoragekey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SessionOptions"},{"id":43,"kind":1024,"name":"storeOptions","url":"interfaces/sessionoptions.html#storeoptions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SessionOptions"},{"id":44,"kind":32,"name":"SESSION_VERSION","url":"globals.html#session_version","classes":"tsd-kind-variable"},{"id":45,"kind":4194304,"name":"EtagMap","url":"globals.html#etagmap","classes":"tsd-kind-type-alias"},{"id":46,"kind":65536,"name":"__type","url":"globals.html#etagmap.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"EtagMap"},{"id":47,"kind":128,"name":"SessionDataStore","url":"classes/sessiondatastore.html","classes":"tsd-kind-class"},{"id":48,"kind":512,"name":"constructor","url":"classes/sessiondatastore.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"SessionDataStore"},{"id":49,"kind":2048,"name":"getSessionData","url":"classes/sessiondatastore.html#getsessiondata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"SessionDataStore"},{"id":50,"kind":2048,"name":"setSessionData","url":"classes/sessiondatastore.html#setsessiondata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"SessionDataStore"},{"id":51,"kind":2048,"name":"deleteSessionData","url":"classes/sessiondatastore.html#deletesessiondata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"SessionDataStore"},{"id":52,"kind":32,"name":"GLOBAL_DETECTION_CACHE_KEY","url":"globals.html#global_detection_cache_key","classes":"tsd-kind-variable"},{"id":53,"kind":32,"name":"ECHO_REPLY_PARAM","url":"globals.html#echo_reply_param","classes":"tsd-kind-variable"},{"id":54,"kind":32,"name":"AUTH_CONTINUATION_PARAM","url":"globals.html#auth_continuation_param","classes":"tsd-kind-variable"},{"id":55,"kind":64,"name":"getQueryStringParams","url":"globals.html#getquerystringparams","classes":"tsd-kind-function"},{"id":56,"kind":128,"name":"UserSession","url":"classes/usersession.html","classes":"tsd-kind-class"},{"id":57,"kind":1024,"name":"appConfig","url":"classes/usersession.html#appconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserSession"},{"id":58,"kind":1024,"name":"store","url":"classes/usersession.html#store","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserSession"},{"id":59,"kind":512,"name":"constructor","url":"classes/usersession.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"UserSession"},{"id":60,"kind":2048,"name":"makeAuthRequest","url":"classes/usersession.html#makeauthrequest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":61,"kind":2048,"name":"generateAndStoreTransitKey","url":"classes/usersession.html#generateandstoretransitkey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":62,"kind":2048,"name":"getAuthResponseToken","url":"classes/usersession.html#getauthresponsetoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":63,"kind":2048,"name":"isSignInPending","url":"classes/usersession.html#issigninpending","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":64,"kind":2048,"name":"isUserSignedIn","url":"classes/usersession.html#isusersignedin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":65,"kind":2048,"name":"handlePendingSignIn","url":"classes/usersession.html#handlependingsignin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":66,"kind":2048,"name":"loadUserData","url":"classes/usersession.html#loaduserdata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":67,"kind":2048,"name":"encryptContent","url":"classes/usersession.html#encryptcontent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":68,"kind":2048,"name":"decryptContent","url":"classes/usersession.html#decryptcontent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":69,"kind":2048,"name":"signUserOut","url":"classes/usersession.html#signuserout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserSession"},{"id":70,"kind":256,"name":"ProfileLookupOptions","url":"interfaces/profilelookupoptions.html","classes":"tsd-kind-interface"},{"id":71,"kind":1024,"name":"username","url":"interfaces/profilelookupoptions.html#username","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProfileLookupOptions"},{"id":72,"kind":1024,"name":"zoneFileLookupURL","url":"interfaces/profilelookupoptions.html#zonefilelookupurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProfileLookupOptions"},{"id":73,"kind":1024,"name":"network","url":"interfaces/profilelookupoptions.html#network","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProfileLookupOptions"},{"id":74,"kind":64,"name":"lookupProfile","url":"globals.html#lookupprofile","classes":"tsd-kind-function"},{"id":75,"kind":256,"name":"CLI_LOG_CONFIG_TYPE","url":"interfaces/cli_log_config_type.html","classes":"tsd-kind-interface"},{"id":76,"kind":1024,"name":"level","url":"interfaces/cli_log_config_type.html#level","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_LOG_CONFIG_TYPE"},{"id":77,"kind":1024,"name":"handleExceptions","url":"interfaces/cli_log_config_type.html#handleexceptions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_LOG_CONFIG_TYPE"},{"id":78,"kind":1024,"name":"timestamp","url":"interfaces/cli_log_config_type.html#timestamp","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_LOG_CONFIG_TYPE"},{"id":79,"kind":1024,"name":"stringify","url":"interfaces/cli_log_config_type.html#stringify","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_LOG_CONFIG_TYPE"},{"id":80,"kind":1024,"name":"colorize","url":"interfaces/cli_log_config_type.html#colorize","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_LOG_CONFIG_TYPE"},{"id":81,"kind":1024,"name":"json","url":"interfaces/cli_log_config_type.html#json","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_LOG_CONFIG_TYPE"},{"id":82,"kind":256,"name":"CLI_CONFIG_TYPE","url":"interfaces/cli_config_type.html","classes":"tsd-kind-interface"},{"id":83,"kind":1024,"name":"blockstackAPIUrl","url":"interfaces/cli_config_type.html#blockstackapiurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_CONFIG_TYPE"},{"id":84,"kind":1024,"name":"blockstackNodeUrl","url":"interfaces/cli_config_type.html#blockstacknodeurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_CONFIG_TYPE"},{"id":85,"kind":1024,"name":"broadcastServiceUrl","url":"interfaces/cli_config_type.html#broadcastserviceurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_CONFIG_TYPE"},{"id":86,"kind":1024,"name":"utxoServiceUrl","url":"interfaces/cli_config_type.html#utxoserviceurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_CONFIG_TYPE"},{"id":87,"kind":1024,"name":"logConfig","url":"interfaces/cli_config_type.html#logconfig","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_CONFIG_TYPE"},{"id":88,"kind":1024,"name":"bitcoindUsername","url":"interfaces/cli_config_type.html#bitcoindusername","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_CONFIG_TYPE"},{"id":89,"kind":1024,"name":"bitcoindPassword","url":"interfaces/cli_config_type.html#bitcoindpassword","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_CONFIG_TYPE"},{"id":90,"kind":256,"name":"CLI_PROP_ITEM","url":"interfaces/cli_prop_item.html","classes":"tsd-kind-interface"},{"id":91,"kind":1024,"name":"name","url":"interfaces/cli_prop_item.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_PROP_ITEM"},{"id":92,"kind":1024,"name":"type","url":"interfaces/cli_prop_item.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_PROP_ITEM"},{"id":93,"kind":1024,"name":"realtype","url":"interfaces/cli_prop_item.html#realtype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_PROP_ITEM"},{"id":94,"kind":1024,"name":"pattern","url":"interfaces/cli_prop_item.html#pattern","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_PROP_ITEM"},{"id":95,"kind":256,"name":"CLI_PROP","url":"interfaces/cli_prop.html","classes":"tsd-kind-interface"},{"id":96,"kind":256,"name":"CLI_COMMAND_HELP","url":"interfaces/cli_command_help.html","classes":"tsd-kind-interface"},{"id":97,"kind":1024,"name":"raw","url":"interfaces/cli_command_help.html#raw","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_COMMAND_HELP"},{"id":98,"kind":1024,"name":"kw","url":"interfaces/cli_command_help.html#kw","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_COMMAND_HELP"},{"id":99,"kind":256,"name":"CLI_COMMAND_GROUP_ITEM","url":"interfaces/cli_command_group_item.html","classes":"tsd-kind-interface"},{"id":100,"kind":1024,"name":"command","url":"interfaces/cli_command_group_item.html#command","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_COMMAND_GROUP_ITEM"},{"id":101,"kind":1024,"name":"help","url":"interfaces/cli_command_group_item.html#help","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_COMMAND_GROUP_ITEM"},{"id":102,"kind":256,"name":"CLI_COMMAND_GROUP","url":"interfaces/cli_command_group.html","classes":"tsd-kind-interface"},{"id":103,"kind":256,"name":"CLI_OPTS","url":"interfaces/cli_opts.html","classes":"tsd-kind-interface"},{"id":104,"kind":256,"name":"CheckArgsSuccessType","url":"interfaces/checkargssuccesstype.html","classes":"tsd-kind-interface"},{"id":105,"kind":1024,"name":"success","url":"interfaces/checkargssuccesstype.html#success","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CheckArgsSuccessType"},{"id":106,"kind":1024,"name":"command","url":"interfaces/checkargssuccesstype.html#command","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CheckArgsSuccessType"},{"id":107,"kind":1024,"name":"args","url":"interfaces/checkargssuccesstype.html#args","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CheckArgsSuccessType"},{"id":108,"kind":256,"name":"CheckArgsFailType","url":"interfaces/checkargsfailtype.html","classes":"tsd-kind-interface"},{"id":109,"kind":1024,"name":"success","url":"interfaces/checkargsfailtype.html#success","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CheckArgsFailType"},{"id":110,"kind":1024,"name":"error","url":"interfaces/checkargsfailtype.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CheckArgsFailType"},{"id":111,"kind":1024,"name":"command","url":"interfaces/checkargsfailtype.html#command","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CheckArgsFailType"},{"id":112,"kind":1024,"name":"usage","url":"interfaces/checkargsfailtype.html#usage","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CheckArgsFailType"},{"id":113,"kind":32,"name":"NAME_PATTERN","url":"globals.html#name_pattern","classes":"tsd-kind-variable"},{"id":114,"kind":32,"name":"NAMESPACE_PATTERN","url":"globals.html#namespace_pattern","classes":"tsd-kind-variable"},{"id":115,"kind":32,"name":"ADDRESS_CHARS","url":"globals.html#address_chars","classes":"tsd-kind-variable"},{"id":116,"kind":32,"name":"C32_ADDRESS_CHARS","url":"globals.html#c32_address_chars","classes":"tsd-kind-variable"},{"id":117,"kind":32,"name":"ADDRESS_PATTERN","url":"globals.html#address_pattern","classes":"tsd-kind-variable"},{"id":118,"kind":32,"name":"ID_ADDRESS_PATTERN","url":"globals.html#id_address_pattern","classes":"tsd-kind-variable"},{"id":119,"kind":32,"name":"STACKS_ADDRESS_PATTERN","url":"globals.html#stacks_address_pattern","classes":"tsd-kind-variable"},{"id":120,"kind":32,"name":"PRIVATE_KEY_PATTERN","url":"globals.html#private_key_pattern","classes":"tsd-kind-variable"},{"id":121,"kind":32,"name":"PRIVATE_KEY_UNCOMPRESSED_PATTERN","url":"globals.html#private_key_uncompressed_pattern","classes":"tsd-kind-variable"},{"id":122,"kind":32,"name":"PRIVATE_KEY_NOSIGN_PATTERN","url":"globals.html#private_key_nosign_pattern","classes":"tsd-kind-variable"},{"id":123,"kind":32,"name":"PRIVATE_KEY_MULTISIG_PATTERN","url":"globals.html#private_key_multisig_pattern","classes":"tsd-kind-variable"},{"id":124,"kind":32,"name":"PRIVATE_KEY_SEGWIT_P2SH_PATTERN","url":"globals.html#private_key_segwit_p2sh_pattern","classes":"tsd-kind-variable"},{"id":125,"kind":32,"name":"PRIVATE_KEY_PATTERN_ANY","url":"globals.html#private_key_pattern_any","classes":"tsd-kind-variable"},{"id":126,"kind":32,"name":"PUBLIC_KEY_PATTERN","url":"globals.html#public_key_pattern","classes":"tsd-kind-variable"},{"id":127,"kind":32,"name":"INT_PATTERN","url":"globals.html#int_pattern","classes":"tsd-kind-variable"},{"id":128,"kind":32,"name":"ZONEFILE_HASH_PATTERN","url":"globals.html#zonefile_hash_pattern","classes":"tsd-kind-variable"},{"id":129,"kind":32,"name":"URL_PATTERN","url":"globals.html#url_pattern","classes":"tsd-kind-variable"},{"id":130,"kind":32,"name":"SUBDOMAIN_PATTERN","url":"globals.html#subdomain_pattern","classes":"tsd-kind-variable"},{"id":131,"kind":32,"name":"TXID_PATTERN","url":"globals.html#txid_pattern","classes":"tsd-kind-variable"},{"id":132,"kind":32,"name":"BOOLEAN_PATTERN","url":"globals.html#boolean_pattern","classes":"tsd-kind-variable"},{"id":133,"kind":2097152,"name":"LOG_CONFIG_DEFAULTS","url":"globals.html#log_config_defaults","classes":"tsd-kind-object-literal"},{"id":134,"kind":32,"name":"level","url":"globals.html#log_config_defaults.level","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"LOG_CONFIG_DEFAULTS"},{"id":135,"kind":32,"name":"handleExceptions","url":"globals.html#log_config_defaults.handleexceptions","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"LOG_CONFIG_DEFAULTS"},{"id":136,"kind":32,"name":"timestamp","url":"globals.html#log_config_defaults.timestamp","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"LOG_CONFIG_DEFAULTS"},{"id":137,"kind":32,"name":"stringify","url":"globals.html#log_config_defaults.stringify","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"LOG_CONFIG_DEFAULTS"},{"id":138,"kind":32,"name":"colorize","url":"globals.html#log_config_defaults.colorize","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"LOG_CONFIG_DEFAULTS"},{"id":139,"kind":32,"name":"json","url":"globals.html#log_config_defaults.json","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"LOG_CONFIG_DEFAULTS"},{"id":140,"kind":2097152,"name":"CONFIG_DEFAULTS","url":"globals.html#config_defaults","classes":"tsd-kind-object-literal"},{"id":141,"kind":32,"name":"blockstackAPIUrl","url":"globals.html#config_defaults.blockstackapiurl","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_DEFAULTS"},{"id":142,"kind":32,"name":"blockstackNodeUrl","url":"globals.html#config_defaults.blockstacknodeurl","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_DEFAULTS"},{"id":143,"kind":32,"name":"broadcastServiceUrl","url":"globals.html#config_defaults.broadcastserviceurl","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_DEFAULTS"},{"id":144,"kind":32,"name":"utxoServiceUrl","url":"globals.html#config_defaults.utxoserviceurl","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_DEFAULTS"},{"id":145,"kind":32,"name":"logConfig","url":"globals.html#config_defaults.logconfig","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_DEFAULTS"},{"id":146,"kind":2097152,"name":"CONFIG_REGTEST_DEFAULTS","url":"globals.html#config_regtest_defaults","classes":"tsd-kind-object-literal"},{"id":147,"kind":32,"name":"blockstackAPIUrl","url":"globals.html#config_regtest_defaults.blockstackapiurl","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_REGTEST_DEFAULTS"},{"id":148,"kind":32,"name":"blockstackNodeUrl","url":"globals.html#config_regtest_defaults.blockstacknodeurl","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_REGTEST_DEFAULTS"},{"id":149,"kind":32,"name":"broadcastServiceUrl","url":"globals.html#config_regtest_defaults.broadcastserviceurl","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_REGTEST_DEFAULTS"},{"id":150,"kind":32,"name":"utxoServiceUrl","url":"globals.html#config_regtest_defaults.utxoserviceurl","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_REGTEST_DEFAULTS"},{"id":151,"kind":32,"name":"logConfig","url":"globals.html#config_regtest_defaults.logconfig","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_REGTEST_DEFAULTS"},{"id":152,"kind":32,"name":"bitcoindPassword","url":"globals.html#config_regtest_defaults.bitcoindpassword","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_REGTEST_DEFAULTS"},{"id":153,"kind":32,"name":"bitcoindUsername","url":"globals.html#config_regtest_defaults.bitcoindusername","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_REGTEST_DEFAULTS"},{"id":154,"kind":32,"name":"PUBLIC_TESTNET_HOST","url":"globals.html#public_testnet_host","classes":"tsd-kind-variable"},{"id":155,"kind":2097152,"name":"CONFIG_TESTNET_DEFAULTS","url":"globals.html#config_testnet_defaults","classes":"tsd-kind-object-literal"},{"id":156,"kind":32,"name":"blockstackAPIUrl","url":"globals.html#config_testnet_defaults.blockstackapiurl","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_TESTNET_DEFAULTS"},{"id":157,"kind":32,"name":"blockstackNodeUrl","url":"globals.html#config_testnet_defaults.blockstacknodeurl","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_TESTNET_DEFAULTS"},{"id":158,"kind":32,"name":"broadcastServiceUrl","url":"globals.html#config_testnet_defaults.broadcastserviceurl","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_TESTNET_DEFAULTS"},{"id":159,"kind":32,"name":"utxoServiceUrl","url":"globals.html#config_testnet_defaults.utxoserviceurl","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_TESTNET_DEFAULTS"},{"id":160,"kind":32,"name":"logConfig","url":"globals.html#config_testnet_defaults.logconfig","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CONFIG_TESTNET_DEFAULTS"},{"id":161,"kind":32,"name":"DEFAULT_CONFIG_PATH","url":"globals.html#default_config_path","classes":"tsd-kind-variable"},{"id":162,"kind":32,"name":"DEFAULT_CONFIG_REGTEST_PATH","url":"globals.html#default_config_regtest_path","classes":"tsd-kind-variable"},{"id":163,"kind":32,"name":"DEFAULT_CONFIG_TESTNET_PATH","url":"globals.html#default_config_testnet_path","classes":"tsd-kind-variable"},{"id":164,"kind":32,"name":"DEFAULT_MAX_ID_SEARCH_INDEX","url":"globals.html#default_max_id_search_index","classes":"tsd-kind-variable"},{"id":165,"kind":2097152,"name":"CLI_ARGS","url":"globals.html#cli_args","classes":"tsd-kind-object-literal"},{"id":166,"kind":32,"name":"type","url":"globals.html#cli_args.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CLI_ARGS"},{"id":167,"kind":32,"name":"properties","url":"globals.html#cli_args.properties","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CLI_ARGS"},{"id":168,"kind":32,"name":"additionalProperties","url":"globals.html#cli_args.additionalproperties","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CLI_ARGS"},{"id":169,"kind":32,"name":"strict","url":"globals.html#cli_args.strict","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"CLI_ARGS"},{"id":170,"kind":32,"name":"USAGE","url":"globals.html#usage","classes":"tsd-kind-variable"},{"id":171,"kind":64,"name":"formatHelpString","url":"globals.html#formathelpstring","classes":"tsd-kind-function"},{"id":172,"kind":64,"name":"formatCommandHelpLines","url":"globals.html#formatcommandhelplines","classes":"tsd-kind-function"},{"id":173,"kind":64,"name":"getCommandGroups","url":"globals.html#getcommandgroups","classes":"tsd-kind-function"},{"id":174,"kind":64,"name":"makeAllCommandsList","url":"globals.html#makeallcommandslist","classes":"tsd-kind-function"},{"id":175,"kind":64,"name":"makeAllCommandsHelp","url":"globals.html#makeallcommandshelp","classes":"tsd-kind-function"},{"id":176,"kind":64,"name":"makeCommandUsageString","url":"globals.html#makecommandusagestring","classes":"tsd-kind-function"},{"id":177,"kind":64,"name":"makeUsageString","url":"globals.html#makeusagestring","classes":"tsd-kind-function"},{"id":178,"kind":64,"name":"printUsage","url":"globals.html#printusage","classes":"tsd-kind-function"},{"id":179,"kind":64,"name":"getCLIOpts","url":"globals.html#getcliopts","classes":"tsd-kind-function"},{"id":180,"kind":64,"name":"CLIOptAsString","url":"globals.html#clioptasstring","classes":"tsd-kind-function"},{"id":181,"kind":64,"name":"CLIOptAsBool","url":"globals.html#clioptasbool","classes":"tsd-kind-function"},{"id":182,"kind":64,"name":"isStringArray","url":"globals.html#isstringarray","classes":"tsd-kind-function"},{"id":183,"kind":64,"name":"CLIOptAsStringArray","url":"globals.html#clioptasstringarray","classes":"tsd-kind-function"},{"id":184,"kind":64,"name":"getCommandArgs","url":"globals.html#getcommandargs","classes":"tsd-kind-function"},{"id":185,"kind":64,"name":"checkArgs","url":"globals.html#checkargs","classes":"tsd-kind-function"},{"id":186,"kind":64,"name":"loadConfig","url":"globals.html#loadconfig","classes":"tsd-kind-function"},{"id":187,"kind":64,"name":"encryptBackupPhrase","url":"globals.html#encryptbackupphrase","classes":"tsd-kind-function"},{"id":188,"kind":64,"name":"decryptBackupPhrase","url":"globals.html#decryptbackupphrase","classes":"tsd-kind-function"},{"id":189,"kind":256,"name":"CLI_NETWORK_OPTS","url":"interfaces/cli_network_opts.html","classes":"tsd-kind-interface"},{"id":190,"kind":1024,"name":"consensusHash","url":"interfaces/cli_network_opts.html#consensushash","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_NETWORK_OPTS"},{"id":191,"kind":1024,"name":"feeRate","url":"interfaces/cli_network_opts.html#feerate","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_NETWORK_OPTS"},{"id":192,"kind":1024,"name":"namespaceBurnAddress","url":"interfaces/cli_network_opts.html#namespaceburnaddress","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_NETWORK_OPTS"},{"id":193,"kind":1024,"name":"priceToPay","url":"interfaces/cli_network_opts.html#pricetopay","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_NETWORK_OPTS"},{"id":194,"kind":1024,"name":"priceUnits","url":"interfaces/cli_network_opts.html#priceunits","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_NETWORK_OPTS"},{"id":195,"kind":1024,"name":"receiveFeesPeriod","url":"interfaces/cli_network_opts.html#receivefeesperiod","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_NETWORK_OPTS"},{"id":196,"kind":1024,"name":"gracePeriod","url":"interfaces/cli_network_opts.html#graceperiod","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_NETWORK_OPTS"},{"id":197,"kind":1024,"name":"altAPIUrl","url":"interfaces/cli_network_opts.html#altapiurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_NETWORK_OPTS"},{"id":198,"kind":1024,"name":"altTransactionBroadcasterUrl","url":"interfaces/cli_network_opts.html#alttransactionbroadcasterurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_NETWORK_OPTS"},{"id":199,"kind":1024,"name":"nodeAPIUrl","url":"interfaces/cli_network_opts.html#nodeapiurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CLI_NETWORK_OPTS"},{"id":200,"kind":256,"name":"PriceType","url":"interfaces/pricetype.html","classes":"tsd-kind-interface"},{"id":201,"kind":1024,"name":"units","url":"interfaces/pricetype.html#units","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PriceType"},{"id":202,"kind":1024,"name":"amount","url":"interfaces/pricetype.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PriceType"},{"id":203,"kind":128,"name":"CLINetworkAdapter","url":"classes/clinetworkadapter.html","classes":"tsd-kind-class"},{"id":204,"kind":1024,"name":"consensusHash","url":"classes/clinetworkadapter.html#consensushash","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":205,"kind":1024,"name":"feeRate","url":"classes/clinetworkadapter.html#feerate","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":206,"kind":1024,"name":"namespaceBurnAddress","url":"classes/clinetworkadapter.html#namespaceburnaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":207,"kind":1024,"name":"priceToPay","url":"classes/clinetworkadapter.html#pricetopay","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":208,"kind":1024,"name":"priceUnits","url":"classes/clinetworkadapter.html#priceunits","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":209,"kind":1024,"name":"gracePeriod","url":"classes/clinetworkadapter.html#graceperiod","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":210,"kind":1024,"name":"receiveFeesPeriod","url":"classes/clinetworkadapter.html#receivefeesperiod","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":211,"kind":1024,"name":"nodeAPIUrl","url":"classes/clinetworkadapter.html#nodeapiurl","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":212,"kind":1024,"name":"optAlwaysCoerceAddress","url":"classes/clinetworkadapter.html#optalwayscoerceaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":213,"kind":1024,"name":"legacyNetwork","url":"classes/clinetworkadapter.html#legacynetwork","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":214,"kind":512,"name":"constructor","url":"classes/clinetworkadapter.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":215,"kind":2048,"name":"isMainnet","url":"classes/clinetworkadapter.html#ismainnet","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":216,"kind":2048,"name":"isTestnet","url":"classes/clinetworkadapter.html#istestnet","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":217,"kind":2048,"name":"setCoerceMainnetAddress","url":"classes/clinetworkadapter.html#setcoercemainnetaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":218,"kind":2048,"name":"coerceMainnetAddress","url":"classes/clinetworkadapter.html#coercemainnetaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":219,"kind":2048,"name":"getFeeRate","url":"classes/clinetworkadapter.html#getfeerate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":220,"kind":2048,"name":"getConsensusHash","url":"classes/clinetworkadapter.html#getconsensushash","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":221,"kind":2048,"name":"getGracePeriod","url":"classes/clinetworkadapter.html#getgraceperiod","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":222,"kind":2048,"name":"getNamePrice","url":"classes/clinetworkadapter.html#getnameprice","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":223,"kind":2048,"name":"getNamespacePrice","url":"classes/clinetworkadapter.html#getnamespaceprice","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":224,"kind":2048,"name":"getNamespaceBurnAddress","url":"classes/clinetworkadapter.html#getnamespaceburnaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":225,"kind":2048,"name":"getNameInfo","url":"classes/clinetworkadapter.html#getnameinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":226,"kind":2048,"name":"getBlockchainNameRecord","url":"classes/clinetworkadapter.html#getblockchainnamerecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":227,"kind":2048,"name":"getNameHistory","url":"classes/clinetworkadapter.html#getnamehistory","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":228,"kind":2048,"name":"coerceAddress","url":"classes/clinetworkadapter.html#coerceaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":229,"kind":2048,"name":"getAccountHistoryPage","url":"classes/clinetworkadapter.html#getaccounthistorypage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":230,"kind":2048,"name":"broadcastTransaction","url":"classes/clinetworkadapter.html#broadcasttransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":231,"kind":2048,"name":"broadcastZoneFile","url":"classes/clinetworkadapter.html#broadcastzonefile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":232,"kind":2048,"name":"getNamesOwned","url":"classes/clinetworkadapter.html#getnamesowned","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLINetworkAdapter"},{"id":233,"kind":32,"name":"BN","url":"globals.html#bn","classes":"tsd-kind-variable"},{"id":234,"kind":32,"name":"SATOSHIS_PER_BTC","url":"globals.html#satoshis_per_btc","classes":"tsd-kind-variable"},{"id":235,"kind":4194304,"name":"NameInfoType","url":"globals.html#nameinfotype","classes":"tsd-kind-type-alias"},{"id":236,"kind":65536,"name":"__type","url":"globals.html#nameinfotype.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"NameInfoType"},{"id":237,"kind":32,"name":"address","url":"globals.html#nameinfotype.__type.address","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"NameInfoType.__type"},{"id":238,"kind":32,"name":"blockchain","url":"globals.html#nameinfotype.__type.blockchain","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"NameInfoType.__type"},{"id":239,"kind":32,"name":"did","url":"globals.html#nameinfotype.__type.did","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"NameInfoType.__type"},{"id":240,"kind":32,"name":"expire_block","url":"globals.html#nameinfotype.__type.expire_block","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"NameInfoType.__type"},{"id":241,"kind":32,"name":"grace_period","url":"globals.html#nameinfotype.__type.grace_period","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"NameInfoType.__type"},{"id":242,"kind":32,"name":"last_txid","url":"globals.html#nameinfotype.__type.last_txid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"NameInfoType.__type"},{"id":243,"kind":32,"name":"renewal_deadline","url":"globals.html#nameinfotype.__type.renewal_deadline","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"NameInfoType.__type"},{"id":244,"kind":32,"name":"resolver","url":"globals.html#nameinfotype.__type.resolver","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"NameInfoType.__type"},{"id":245,"kind":32,"name":"status","url":"globals.html#nameinfotype.__type.status","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"NameInfoType.__type"},{"id":246,"kind":32,"name":"zonefile","url":"globals.html#nameinfotype.__type.zonefile","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"NameInfoType.__type"},{"id":247,"kind":32,"name":"zonefile_hash","url":"globals.html#nameinfotype.__type.zonefile_hash","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"NameInfoType.__type"},{"id":248,"kind":64,"name":"getNetwork","url":"globals.html#getnetwork","classes":"tsd-kind-function"},{"id":249,"kind":256,"name":"WhoisInfoType","url":"interfaces/whoisinfotype.html","classes":"tsd-kind-interface"},{"id":250,"kind":1024,"name":"address","url":"interfaces/whoisinfotype.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WhoisInfoType"},{"id":251,"kind":1024,"name":"blockchain","url":"interfaces/whoisinfotype.html#blockchain","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WhoisInfoType"},{"id":252,"kind":1024,"name":"block_renewed_at","url":"interfaces/whoisinfotype.html#block_renewed_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WhoisInfoType"},{"id":253,"kind":1024,"name":"did","url":"interfaces/whoisinfotype.html#did","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WhoisInfoType"},{"id":254,"kind":1024,"name":"expire_block","url":"interfaces/whoisinfotype.html#expire_block","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WhoisInfoType"},{"id":255,"kind":1024,"name":"grace_period","url":"interfaces/whoisinfotype.html#grace_period","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WhoisInfoType"},{"id":256,"kind":1024,"name":"last_transaction_height","url":"interfaces/whoisinfotype.html#last_transaction_height","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WhoisInfoType"},{"id":257,"kind":1024,"name":"last_txid","url":"interfaces/whoisinfotype.html#last_txid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WhoisInfoType"},{"id":258,"kind":1024,"name":"owner_address","url":"interfaces/whoisinfotype.html#owner_address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WhoisInfoType"},{"id":259,"kind":1024,"name":"owner_script","url":"interfaces/whoisinfotype.html#owner_script","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WhoisInfoType"},{"id":260,"kind":1024,"name":"renewal_deadline","url":"interfaces/whoisinfotype.html#renewal_deadline","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WhoisInfoType"},{"id":261,"kind":1024,"name":"resolver","url":"interfaces/whoisinfotype.html#resolver","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WhoisInfoType"},{"id":262,"kind":1024,"name":"status","url":"interfaces/whoisinfotype.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WhoisInfoType"},{"id":263,"kind":1024,"name":"zonefile","url":"interfaces/whoisinfotype.html#zonefile","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WhoisInfoType"},{"id":264,"kind":1024,"name":"zonefile_hash","url":"interfaces/whoisinfotype.html#zonefile_hash","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WhoisInfoType"},{"id":265,"kind":32,"name":"c32check","url":"globals.html#c32check","classes":"tsd-kind-variable"},{"id":266,"kind":32,"name":"txOnly","url":"globals.html#txonly","classes":"tsd-kind-variable"},{"id":267,"kind":32,"name":"estimateOnly","url":"globals.html#estimateonly","classes":"tsd-kind-variable"},{"id":268,"kind":32,"name":"safetyChecks","url":"globals.html#safetychecks","classes":"tsd-kind-variable"},{"id":269,"kind":32,"name":"receiveFeesPeriod","url":"globals.html#receivefeesperiod","classes":"tsd-kind-variable"},{"id":270,"kind":32,"name":"gracePeriod","url":"globals.html#graceperiod","classes":"tsd-kind-variable"},{"id":271,"kind":32,"name":"noExit","url":"globals.html#noexit","classes":"tsd-kind-variable"},{"id":272,"kind":32,"name":"maxIDSearchIndex","url":"globals.html#maxidsearchindex","classes":"tsd-kind-variable"},{"id":273,"kind":32,"name":"BLOCKSTACK_TEST","url":"globals.html#blockstack_test","classes":"tsd-kind-variable"},{"id":274,"kind":64,"name":"getMaxIDSearchIndex","url":"globals.html#getmaxidsearchindex","classes":"tsd-kind-function"},{"id":275,"kind":64,"name":"profileSign","url":"globals.html#profilesign","classes":"tsd-kind-function"},{"id":276,"kind":64,"name":"profileVerify","url":"globals.html#profileverify","classes":"tsd-kind-function"},{"id":277,"kind":64,"name":"profileStore","url":"globals.html#profilestore","classes":"tsd-kind-function"},{"id":278,"kind":64,"name":"getAppKeys","url":"globals.html#getappkeys","classes":"tsd-kind-function"},{"id":279,"kind":64,"name":"getOwnerKeys","url":"globals.html#getownerkeys","classes":"tsd-kind-function"},{"id":280,"kind":64,"name":"getPaymentKey","url":"globals.html#getpaymentkey","classes":"tsd-kind-function"},{"id":281,"kind":64,"name":"getStacksWalletKey","url":"globals.html#getstackswalletkey","classes":"tsd-kind-function"},{"id":282,"kind":64,"name":"makeKeychain","url":"globals.html#makekeychain","classes":"tsd-kind-function"},{"id":283,"kind":64,"name":"balance","url":"globals.html#balance","classes":"tsd-kind-function"},{"id":284,"kind":64,"name":"getAccountHistory","url":"globals.html#getaccounthistory","classes":"tsd-kind-function"},{"id":285,"kind":64,"name":"sendTokens","url":"globals.html#sendtokens","classes":"tsd-kind-function"},{"id":286,"kind":64,"name":"contractDeploy","url":"globals.html#contractdeploy","classes":"tsd-kind-function"},{"id":287,"kind":64,"name":"contractFunctionCall","url":"globals.html#contractfunctioncall","classes":"tsd-kind-function"},{"id":288,"kind":64,"name":"readOnlyContractFunctionCall","url":"globals.html#readonlycontractfunctioncall","classes":"tsd-kind-function"},{"id":289,"kind":64,"name":"getKeyAddress","url":"globals.html#getkeyaddress","classes":"tsd-kind-function"},{"id":290,"kind":64,"name":"gaiaGetFile","url":"globals.html#gaiagetfile","classes":"tsd-kind-function"},{"id":291,"kind":64,"name":"gaiaPutFile","url":"globals.html#gaiaputfile","classes":"tsd-kind-function"},{"id":292,"kind":64,"name":"gaiaDeleteFile","url":"globals.html#gaiadeletefile","classes":"tsd-kind-function"},{"id":293,"kind":64,"name":"gaiaListFiles","url":"globals.html#gaialistfiles","classes":"tsd-kind-function"},{"id":294,"kind":64,"name":"batchify","url":"globals.html#batchify","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":295,"kind":64,"name":"gaiaDumpBucket","url":"globals.html#gaiadumpbucket","classes":"tsd-kind-function"},{"id":296,"kind":64,"name":"gaiaRestoreBucket","url":"globals.html#gaiarestorebucket","classes":"tsd-kind-function"},{"id":297,"kind":64,"name":"gaiaSetHub","url":"globals.html#gaiasethub","classes":"tsd-kind-function"},{"id":298,"kind":64,"name":"addressConvert","url":"globals.html#addressconvert","classes":"tsd-kind-function"},{"id":299,"kind":64,"name":"authDaemon","url":"globals.html#authdaemon","classes":"tsd-kind-function"},{"id":300,"kind":4194304,"name":"DocsArgsType","url":"globals.html#docsargstype","classes":"tsd-kind-type-alias"},{"id":301,"kind":65536,"name":"__type","url":"globals.html#docsargstype.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"DocsArgsType"},{"id":302,"kind":32,"name":"name","url":"globals.html#docsargstype.__type.name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"DocsArgsType.__type"},{"id":303,"kind":32,"name":"type","url":"globals.html#docsargstype.__type.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"DocsArgsType.__type"},{"id":304,"kind":32,"name":"value","url":"globals.html#docsargstype.__type.value","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"DocsArgsType.__type"},{"id":305,"kind":32,"name":"format","url":"globals.html#docsargstype.__type.format","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"DocsArgsType.__type"},{"id":306,"kind":4194304,"name":"FormattedDocsType","url":"globals.html#formatteddocstype","classes":"tsd-kind-type-alias"},{"id":307,"kind":65536,"name":"__type","url":"globals.html#formatteddocstype.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"FormattedDocsType"},{"id":308,"kind":32,"name":"command","url":"globals.html#formatteddocstype.__type.command","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"FormattedDocsType.__type"},{"id":309,"kind":32,"name":"args","url":"globals.html#formatteddocstype.__type.args","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"FormattedDocsType.__type"},{"id":310,"kind":32,"name":"usage","url":"globals.html#formatteddocstype.__type.usage","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"FormattedDocsType.__type"},{"id":311,"kind":32,"name":"group","url":"globals.html#formatteddocstype.__type.group","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"FormattedDocsType.__type"},{"id":312,"kind":64,"name":"printDocs","url":"globals.html#printdocs","classes":"tsd-kind-function"},{"id":313,"kind":4194304,"name":"CommandFunction","url":"globals.html#commandfunction","classes":"tsd-kind-type-alias"},{"id":314,"kind":65536,"name":"__type","url":"globals.html#commandfunction.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"CommandFunction"},{"id":315,"kind":2097152,"name":"COMMANDS","url":"globals.html#commands","classes":"tsd-kind-object-literal"},{"id":316,"kind":32,"name":"authenticator","url":"globals.html#commands.authenticator","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":317,"kind":32,"name":"balance","url":"globals.html#commands.balance","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":318,"kind":32,"name":"call_contract_func","url":"globals.html#commands.call_contract_func","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":319,"kind":32,"name":"call_read_only_contract_func","url":"globals.html#commands.call_read_only_contract_func","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":320,"kind":32,"name":"convert_address","url":"globals.html#commands.convert_address","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":321,"kind":32,"name":"decrypt_keychain","url":"globals.html#commands.decrypt_keychain","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":322,"kind":32,"name":"deploy_contract","url":"globals.html#commands.deploy_contract","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":323,"kind":32,"name":"docs","url":"globals.html#commands.docs","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":324,"kind":32,"name":"encrypt_keychain","url":"globals.html#commands.encrypt_keychain","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":325,"kind":32,"name":"gaia_deletefile","url":"globals.html#commands.gaia_deletefile","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":326,"kind":32,"name":"gaia_dump_bucket","url":"globals.html#commands.gaia_dump_bucket","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":327,"kind":32,"name":"gaia_getfile","url":"globals.html#commands.gaia_getfile","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":328,"kind":32,"name":"gaia_listfiles","url":"globals.html#commands.gaia_listfiles","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":329,"kind":32,"name":"gaia_putfile","url":"globals.html#commands.gaia_putfile","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":330,"kind":32,"name":"gaia_restore_bucket","url":"globals.html#commands.gaia_restore_bucket","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":331,"kind":32,"name":"gaia_sethub","url":"globals.html#commands.gaia_sethub","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":332,"kind":32,"name":"get_address","url":"globals.html#commands.get_address","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":333,"kind":32,"name":"get_account_history","url":"globals.html#commands.get_account_history","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":334,"kind":32,"name":"get_app_keys","url":"globals.html#commands.get_app_keys","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":335,"kind":32,"name":"get_owner_keys","url":"globals.html#commands.get_owner_keys","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":336,"kind":32,"name":"get_payment_key","url":"globals.html#commands.get_payment_key","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":337,"kind":32,"name":"get_stacks_wallet_key","url":"globals.html#commands.get_stacks_wallet_key","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":338,"kind":32,"name":"make_keychain","url":"globals.html#commands.make_keychain","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":339,"kind":32,"name":"profile_sign","url":"globals.html#commands.profile_sign","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":340,"kind":32,"name":"profile_store","url":"globals.html#commands.profile_store","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":341,"kind":32,"name":"profile_verify","url":"globals.html#commands.profile_verify","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":342,"kind":32,"name":"send_tokens","url":"globals.html#commands.send_tokens","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"COMMANDS"},{"id":343,"kind":64,"name":"CLIMain","url":"globals.html#climain","classes":"tsd-kind-function"},{"id":344,"kind":32,"name":"STRENGTH","url":"globals.html#strength","classes":"tsd-kind-variable"},{"id":345,"kind":32,"name":"STX_WALLET_COMPATIBLE_SEED_STRENGTH","url":"globals.html#stx_wallet_compatible_seed_strength","classes":"tsd-kind-variable"},{"id":346,"kind":32,"name":"DERIVATION_PATH","url":"globals.html#derivation_path","classes":"tsd-kind-variable"},{"id":347,"kind":4194304,"name":"OwnerKeyInfoType","url":"globals.html#ownerkeyinfotype","classes":"tsd-kind-type-alias"},{"id":348,"kind":65536,"name":"__type","url":"globals.html#ownerkeyinfotype.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"OwnerKeyInfoType"},{"id":349,"kind":32,"name":"privateKey","url":"globals.html#ownerkeyinfotype.__type.privatekey","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"OwnerKeyInfoType.__type"},{"id":350,"kind":32,"name":"version","url":"globals.html#ownerkeyinfotype.__type.version","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"OwnerKeyInfoType.__type"},{"id":351,"kind":32,"name":"index","url":"globals.html#ownerkeyinfotype.__type.index","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"OwnerKeyInfoType.__type"},{"id":352,"kind":32,"name":"idAddress","url":"globals.html#ownerkeyinfotype.__type.idaddress","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"OwnerKeyInfoType.__type"},{"id":353,"kind":4194304,"name":"PaymentKeyInfoType","url":"globals.html#paymentkeyinfotype","classes":"tsd-kind-type-alias"},{"id":354,"kind":65536,"name":"__type","url":"globals.html#paymentkeyinfotype.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"PaymentKeyInfoType"},{"id":355,"kind":32,"name":"privateKey","url":"globals.html#paymentkeyinfotype.__type.privatekey","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"PaymentKeyInfoType.__type"},{"id":356,"kind":32,"name":"address","url":"globals.html#paymentkeyinfotype.__type.address","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"PaymentKeyInfoType.__type"},{"id":357,"kind":65536,"name":"__type","url":"globals.html#paymentkeyinfotype.__type.address.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"PaymentKeyInfoType.__type.address"},{"id":358,"kind":32,"name":"BTC","url":"globals.html#paymentkeyinfotype.__type.address.__type-1.btc","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"PaymentKeyInfoType.__type.address.__type"},{"id":359,"kind":32,"name":"STACKS","url":"globals.html#paymentkeyinfotype.__type.address.__type-1.stacks","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"PaymentKeyInfoType.__type.address.__type"},{"id":360,"kind":32,"name":"index","url":"globals.html#paymentkeyinfotype.__type.index","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"PaymentKeyInfoType.__type"},{"id":361,"kind":4194304,"name":"StacksKeyInfoType","url":"globals.html#stackskeyinfotype","classes":"tsd-kind-type-alias"},{"id":362,"kind":65536,"name":"__type","url":"globals.html#stackskeyinfotype.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"StacksKeyInfoType"},{"id":363,"kind":32,"name":"privateKey","url":"globals.html#stackskeyinfotype.__type.privatekey","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"StacksKeyInfoType.__type"},{"id":364,"kind":32,"name":"address","url":"globals.html#stackskeyinfotype.__type.address","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"StacksKeyInfoType.__type"},{"id":365,"kind":32,"name":"btcAddress","url":"globals.html#stackskeyinfotype.__type.btcaddress","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"StacksKeyInfoType.__type"},{"id":366,"kind":32,"name":"index","url":"globals.html#stackskeyinfotype.__type.index","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"StacksKeyInfoType.__type"},{"id":367,"kind":4194304,"name":"AppKeyInfoType","url":"globals.html#appkeyinfotype","classes":"tsd-kind-type-alias"},{"id":368,"kind":65536,"name":"__type","url":"globals.html#appkeyinfotype.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"AppKeyInfoType"},{"id":369,"kind":32,"name":"keyInfo","url":"globals.html#appkeyinfotype.__type.keyinfo","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"AppKeyInfoType.__type"},{"id":370,"kind":65536,"name":"__type","url":"globals.html#appkeyinfotype.__type.keyinfo.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"AppKeyInfoType.__type.keyInfo"},{"id":371,"kind":32,"name":"privateKey","url":"globals.html#appkeyinfotype.__type.keyinfo.__type-1.privatekey","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"AppKeyInfoType.__type.keyInfo.__type"},{"id":372,"kind":32,"name":"address","url":"globals.html#appkeyinfotype.__type.keyinfo.__type-1.address","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"AppKeyInfoType.__type.keyInfo.__type"},{"id":373,"kind":32,"name":"legacyKeyInfo","url":"globals.html#appkeyinfotype.__type.legacykeyinfo","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"AppKeyInfoType.__type"},{"id":374,"kind":65536,"name":"__type","url":"globals.html#appkeyinfotype.__type.legacykeyinfo.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"AppKeyInfoType.__type.legacyKeyInfo"},{"id":375,"kind":32,"name":"privateKey","url":"globals.html#appkeyinfotype.__type.legacykeyinfo.__type-2.privatekey-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"AppKeyInfoType.__type.legacyKeyInfo.__type"},{"id":376,"kind":32,"name":"address","url":"globals.html#appkeyinfotype.__type.legacykeyinfo.__type-2.address-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"AppKeyInfoType.__type.legacyKeyInfo.__type"},{"id":377,"kind":32,"name":"ownerKeyIndex","url":"globals.html#appkeyinfotype.__type.ownerkeyindex","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"AppKeyInfoType.__type"},{"id":378,"kind":64,"name":"walletFromMnemonic","url":"globals.html#walletfrommnemonic","classes":"tsd-kind-function"},{"id":379,"kind":64,"name":"getNodePrivateKey","url":"globals.html#getnodeprivatekey","classes":"tsd-kind-function"},{"id":380,"kind":64,"name":"getOwnerKeyInfo","url":"globals.html#getownerkeyinfo","classes":"tsd-kind-function"},{"id":381,"kind":64,"name":"getPaymentKeyInfo","url":"globals.html#getpaymentkeyinfo","classes":"tsd-kind-function"},{"id":382,"kind":64,"name":"getStacksWalletKeyInfo","url":"globals.html#getstackswalletkeyinfo","classes":"tsd-kind-function"},{"id":383,"kind":64,"name":"findIdentityIndex","url":"globals.html#findidentityindex","classes":"tsd-kind-function"},{"id":384,"kind":64,"name":"getApplicationKeyInfo","url":"globals.html#getapplicationkeyinfo","classes":"tsd-kind-function"},{"id":385,"kind":64,"name":"extractAppKey","url":"globals.html#extractappkey","classes":"tsd-kind-function"},{"id":386,"kind":256,"name":"UTXO","url":"interfaces/utxo.html","classes":"tsd-kind-interface"},{"id":387,"kind":1024,"name":"value","url":"interfaces/utxo.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UTXO"},{"id":388,"kind":1024,"name":"confirmations","url":"interfaces/utxo.html#confirmations","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UTXO"},{"id":389,"kind":1024,"name":"tx_hash","url":"interfaces/utxo.html#tx_hash","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UTXO"},{"id":390,"kind":1024,"name":"tx_output_n","url":"interfaces/utxo.html#tx_output_n","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UTXO"},{"id":391,"kind":128,"name":"CLITransactionSigner","url":"classes/clitransactionsigner.html","classes":"tsd-kind-class"},{"id":392,"kind":1024,"name":"address","url":"classes/clitransactionsigner.html#address","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CLITransactionSigner"},{"id":393,"kind":1024,"name":"isComplete","url":"classes/clitransactionsigner.html#iscomplete","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CLITransactionSigner"},{"id":394,"kind":512,"name":"constructor","url":"classes/clitransactionsigner.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"CLITransactionSigner"},{"id":395,"kind":2048,"name":"getAddress","url":"classes/clitransactionsigner.html#getaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLITransactionSigner"},{"id":396,"kind":2048,"name":"signTransaction","url":"classes/clitransactionsigner.html#signtransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLITransactionSigner"},{"id":397,"kind":2048,"name":"signerVersion","url":"classes/clitransactionsigner.html#signerversion","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CLITransactionSigner"},{"id":398,"kind":128,"name":"NullSigner","url":"classes/nullsigner.html","classes":"tsd-kind-class"},{"id":399,"kind":1024,"name":"address","url":"classes/nullsigner.html#address","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NullSigner"},{"id":400,"kind":1024,"name":"isComplete","url":"classes/nullsigner.html#iscomplete","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NullSigner"},{"id":401,"kind":512,"name":"constructor","url":"classes/nullsigner.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"NullSigner"},{"id":402,"kind":2048,"name":"getAddress","url":"classes/nullsigner.html#getaddress","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"NullSigner"},{"id":403,"kind":2048,"name":"signTransaction","url":"classes/nullsigner.html#signtransaction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"NullSigner"},{"id":404,"kind":2048,"name":"signerVersion","url":"classes/nullsigner.html#signerversion","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"NullSigner"},{"id":405,"kind":128,"name":"MultiSigKeySigner","url":"classes/multisigkeysigner.html","classes":"tsd-kind-class"},{"id":406,"kind":1024,"name":"redeemScript","url":"classes/multisigkeysigner.html#redeemscript","classes":"tsd-kind-property tsd-parent-kind-class","parent":"MultiSigKeySigner"},{"id":407,"kind":1024,"name":"privateKeys","url":"classes/multisigkeysigner.html#privatekeys","classes":"tsd-kind-property tsd-parent-kind-class","parent":"MultiSigKeySigner"},{"id":408,"kind":1024,"name":"m","url":"classes/multisigkeysigner.html#m","classes":"tsd-kind-property tsd-parent-kind-class","parent":"MultiSigKeySigner"},{"id":409,"kind":512,"name":"constructor","url":"classes/multisigkeysigner.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"MultiSigKeySigner"},{"id":410,"kind":2048,"name":"getAddress","url":"classes/multisigkeysigner.html#getaddress","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"MultiSigKeySigner"},{"id":411,"kind":2048,"name":"signTransaction","url":"classes/multisigkeysigner.html#signtransaction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"MultiSigKeySigner"},{"id":412,"kind":2048,"name":"signerVersion","url":"classes/multisigkeysigner.html#signerversion","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"MultiSigKeySigner"},{"id":413,"kind":1024,"name":"address","url":"classes/multisigkeysigner.html#address","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"MultiSigKeySigner"},{"id":414,"kind":1024,"name":"isComplete","url":"classes/multisigkeysigner.html#iscomplete","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"MultiSigKeySigner"},{"id":415,"kind":128,"name":"SegwitP2SHKeySigner","url":"classes/segwitp2shkeysigner.html","classes":"tsd-kind-class"},{"id":416,"kind":1024,"name":"redeemScript","url":"classes/segwitp2shkeysigner.html#redeemscript","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SegwitP2SHKeySigner"},{"id":417,"kind":1024,"name":"witnessScript","url":"classes/segwitp2shkeysigner.html#witnessscript","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SegwitP2SHKeySigner"},{"id":418,"kind":1024,"name":"privateKeys","url":"classes/segwitp2shkeysigner.html#privatekeys","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SegwitP2SHKeySigner"},{"id":419,"kind":1024,"name":"m","url":"classes/segwitp2shkeysigner.html#m","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SegwitP2SHKeySigner"},{"id":420,"kind":512,"name":"constructor","url":"classes/segwitp2shkeysigner.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"SegwitP2SHKeySigner"},{"id":421,"kind":2048,"name":"getAddress","url":"classes/segwitp2shkeysigner.html#getaddress","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"SegwitP2SHKeySigner"},{"id":422,"kind":2048,"name":"findUTXO","url":"classes/segwitp2shkeysigner.html#findutxo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"SegwitP2SHKeySigner"},{"id":423,"kind":2048,"name":"signTransaction","url":"classes/segwitp2shkeysigner.html#signtransaction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"SegwitP2SHKeySigner"},{"id":424,"kind":2048,"name":"signerVersion","url":"classes/segwitp2shkeysigner.html#signerversion","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"SegwitP2SHKeySigner"},{"id":425,"kind":1024,"name":"address","url":"classes/segwitp2shkeysigner.html#address","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"SegwitP2SHKeySigner"},{"id":426,"kind":1024,"name":"isComplete","url":"classes/segwitp2shkeysigner.html#iscomplete","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"SegwitP2SHKeySigner"},{"id":427,"kind":128,"name":"SafetyError","url":"classes/safetyerror.html","classes":"tsd-kind-class"},{"id":428,"kind":1024,"name":"safetyErrors","url":"classes/safetyerror.html#safetyerrors","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SafetyError"},{"id":429,"kind":512,"name":"constructor","url":"classes/safetyerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"SafetyError"},{"id":430,"kind":1024,"name":"name","url":"classes/safetyerror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"SafetyError"},{"id":431,"kind":1024,"name":"message","url":"classes/safetyerror.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"SafetyError"},{"id":432,"kind":1024,"name":"stack","url":"classes/safetyerror.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"SafetyError"},{"id":433,"kind":1024,"name":"Error","url":"classes/safetyerror.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"SafetyError"},{"id":434,"kind":256,"name":"IDAppKeys","url":"interfaces/idappkeys.html","classes":"tsd-kind-interface"},{"id":435,"kind":1024,"name":"ownerPrivateKey","url":"interfaces/idappkeys.html#ownerprivatekey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IDAppKeys"},{"id":436,"kind":1024,"name":"appPrivateKey","url":"interfaces/idappkeys.html#appprivatekey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IDAppKeys"},{"id":437,"kind":1024,"name":"mnemonic","url":"interfaces/idappkeys.html#mnemonic","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IDAppKeys"},{"id":438,"kind":256,"name":"InquirerPrompt","url":"interfaces/inquirerprompt.html","classes":"tsd-kind-interface"},{"id":439,"kind":1024,"name":"type","url":"interfaces/inquirerprompt.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"InquirerPrompt"},{"id":440,"kind":1024,"name":"name","url":"interfaces/inquirerprompt.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"InquirerPrompt"},{"id":441,"kind":1024,"name":"message","url":"interfaces/inquirerprompt.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"InquirerPrompt"},{"id":442,"kind":1024,"name":"choices","url":"interfaces/inquirerprompt.html#choices","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"InquirerPrompt"},{"id":443,"kind":256,"name":"ClarityFunctionArg","url":"interfaces/clarityfunctionarg.html","classes":"tsd-kind-interface"},{"id":444,"kind":1024,"name":"name","url":"interfaces/clarityfunctionarg.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityFunctionArg"},{"id":445,"kind":1024,"name":"type","url":"interfaces/clarityfunctionarg.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityFunctionArg"},{"id":446,"kind":32,"name":"ZoneFile","url":"globals.html#zonefile","classes":"tsd-kind-variable"},{"id":447,"kind":64,"name":"isCLITransactionSigner","url":"globals.html#isclitransactionsigner","classes":"tsd-kind-function"},{"id":448,"kind":64,"name":"hasKeys","url":"globals.html#haskeys","classes":"tsd-kind-function"},{"id":449,"kind":64,"name":"parseNullSigner","url":"globals.html#parsenullsigner","classes":"tsd-kind-function"},{"id":450,"kind":64,"name":"parseMultiSigKeys","url":"globals.html#parsemultisigkeys","classes":"tsd-kind-function"},{"id":451,"kind":64,"name":"parseSegwitP2SHKeys","url":"globals.html#parsesegwitp2shkeys","classes":"tsd-kind-function"},{"id":452,"kind":64,"name":"decodePrivateKey","url":"globals.html#decodeprivatekey","classes":"tsd-kind-function"},{"id":453,"kind":4194304,"name":"AnyJson","url":"globals.html#anyjson","classes":"tsd-kind-type-alias"},{"id":454,"kind":64,"name":"JSONStringify","url":"globals.html#jsonstringify","classes":"tsd-kind-function"},{"id":455,"kind":64,"name":"getPublicKeyFromPrivateKey","url":"globals.html#getpublickeyfromprivatekey","classes":"tsd-kind-function"},{"id":456,"kind":64,"name":"getPrivateKeyAddress","url":"globals.html#getprivatekeyaddress","classes":"tsd-kind-function"},{"id":457,"kind":64,"name":"isSubdomain","url":"globals.html#issubdomain","classes":"tsd-kind-function"},{"id":458,"kind":64,"name":"canonicalPrivateKey","url":"globals.html#canonicalprivatekey","classes":"tsd-kind-function"},{"id":459,"kind":64,"name":"sumUTXOs","url":"globals.html#sumutxos","classes":"tsd-kind-function"},{"id":460,"kind":64,"name":"hash160","url":"globals.html#hash160","classes":"tsd-kind-function"},{"id":461,"kind":64,"name":"checkUrl","url":"globals.html#checkurl","classes":"tsd-kind-function"},{"id":462,"kind":64,"name":"makeProfileJWT","url":"globals.html#makeprofilejwt","classes":"tsd-kind-function"},{"id":463,"kind":64,"name":"makeDIDConfiguration","url":"globals.html#makedidconfiguration","classes":"tsd-kind-function"},{"id":464,"kind":64,"name":"broadcastTransactionAndZoneFile","url":"globals.html#broadcasttransactionandzonefile","classes":"tsd-kind-function"},{"id":465,"kind":64,"name":"getNameInfoEasy","url":"globals.html#getnameinfoeasy","classes":"tsd-kind-function"},{"id":466,"kind":64,"name":"nameLookup","url":"globals.html#namelookup","classes":"tsd-kind-function"},{"id":467,"kind":64,"name":"getpass","url":"globals.html#getpass","classes":"tsd-kind-function"},{"id":468,"kind":64,"name":"getBackupPhrase","url":"globals.html#getbackupphrase","classes":"tsd-kind-function"},{"id":469,"kind":64,"name":"mkdirs","url":"globals.html#mkdirs","classes":"tsd-kind-function"},{"id":470,"kind":64,"name":"getIDAddress","url":"globals.html#getidaddress","classes":"tsd-kind-function"},{"id":471,"kind":64,"name":"getOwnerKeyFromIDAddress","url":"globals.html#getownerkeyfromidaddress","classes":"tsd-kind-function"},{"id":472,"kind":64,"name":"getIDAppKeys","url":"globals.html#getidappkeys","classes":"tsd-kind-function"},{"id":473,"kind":64,"name":"makePromptsFromArgList","url":"globals.html#makepromptsfromarglist","classes":"tsd-kind-function"},{"id":474,"kind":64,"name":"argToPrompt","url":"globals.html#argtoprompt","classes":"tsd-kind-function"},{"id":475,"kind":64,"name":"parseClarityFunctionArgAnswers","url":"globals.html#parseclarityfunctionarganswers","classes":"tsd-kind-function"},{"id":476,"kind":64,"name":"answerToClarityValue","url":"globals.html#answertoclarityvalue","classes":"tsd-kind-function"},{"id":477,"kind":64,"name":"generateExplorerTxPageUrl","url":"globals.html#generateexplorertxpageurl","classes":"tsd-kind-function"},{"id":478,"kind":64,"name":"makeFakeAuthResponseToken","url":"globals.html#makefakeauthresponsetoken","classes":"tsd-kind-function"},{"id":479,"kind":64,"name":"makeAssociationToken","url":"globals.html#makeassociationtoken","classes":"tsd-kind-function"},{"id":480,"kind":64,"name":"gaiaAuth","url":"globals.html#gaiaauth","classes":"tsd-kind-function"},{"id":481,"kind":64,"name":"gaiaConnect","url":"globals.html#gaiaconnect","classes":"tsd-kind-function"},{"id":482,"kind":64,"name":"gaiaFindProfileName","url":"globals.html#gaiafindprofilename","classes":"tsd-kind-function"},{"id":483,"kind":64,"name":"gaiaUploadProfile","url":"globals.html#gaiauploadprofile","classes":"tsd-kind-function"},{"id":484,"kind":64,"name":"gaiaUploadProfileAll","url":"globals.html#gaiauploadprofileall","classes":"tsd-kind-function"},{"id":485,"kind":64,"name":"makeZoneFileFromGaiaUrl","url":"globals.html#makezonefilefromgaiaurl","classes":"tsd-kind-function"},{"id":486,"kind":64,"name":"getGaiaAddressFromURL","url":"globals.html#getgaiaaddressfromurl","classes":"tsd-kind-function"},{"id":487,"kind":64,"name":"getGaiaAddressFromProfile","url":"globals.html#getgaiaaddressfromprofile","classes":"tsd-kind-function"},{"id":488,"kind":256,"name":"NamedIdentityType","url":"interfaces/namedidentitytype.html","classes":"tsd-kind-interface"},{"id":489,"kind":1024,"name":"name","url":"interfaces/namedidentitytype.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NamedIdentityType"},{"id":490,"kind":1024,"name":"idAddress","url":"interfaces/namedidentitytype.html#idaddress","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NamedIdentityType"},{"id":491,"kind":1024,"name":"privateKey","url":"interfaces/namedidentitytype.html#privatekey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NamedIdentityType"},{"id":492,"kind":1024,"name":"index","url":"interfaces/namedidentitytype.html#index","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NamedIdentityType"},{"id":493,"kind":1024,"name":"profile","url":"interfaces/namedidentitytype.html#profile","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NamedIdentityType"},{"id":494,"kind":1024,"name":"profileUrl","url":"interfaces/namedidentitytype.html#profileurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NamedIdentityType"},{"id":495,"kind":256,"name":"AuthRequestType","url":"interfaces/authrequesttype.html","classes":"tsd-kind-interface"},{"id":496,"kind":1024,"name":"jti","url":"interfaces/authrequesttype.html#jti","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AuthRequestType"},{"id":497,"kind":1024,"name":"iat","url":"interfaces/authrequesttype.html#iat","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AuthRequestType"},{"id":498,"kind":1024,"name":"exp","url":"interfaces/authrequesttype.html#exp","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AuthRequestType"},{"id":499,"kind":1024,"name":"iss","url":"interfaces/authrequesttype.html#iss","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AuthRequestType"},{"id":500,"kind":1024,"name":"public_keys","url":"interfaces/authrequesttype.html#public_keys","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AuthRequestType"},{"id":501,"kind":1024,"name":"domain_name","url":"interfaces/authrequesttype.html#domain_name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AuthRequestType"},{"id":502,"kind":1024,"name":"manifest_uri","url":"interfaces/authrequesttype.html#manifest_uri","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AuthRequestType"},{"id":503,"kind":1024,"name":"redirect_uri","url":"interfaces/authrequesttype.html#redirect_uri","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AuthRequestType"},{"id":504,"kind":1024,"name":"version","url":"interfaces/authrequesttype.html#version","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AuthRequestType"},{"id":505,"kind":1024,"name":"do_not_include_profile","url":"interfaces/authrequesttype.html#do_not_include_profile","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AuthRequestType"},{"id":506,"kind":1024,"name":"supports_hub_url","url":"interfaces/authrequesttype.html#supports_hub_url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AuthRequestType"},{"id":507,"kind":1024,"name":"scopes","url":"interfaces/authrequesttype.html#scopes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AuthRequestType"},{"id":508,"kind":32,"name":"SIGNIN_CSS","url":"globals.html#signin_css","classes":"tsd-kind-variable"},{"id":509,"kind":32,"name":"SIGNIN_HEADER","url":"globals.html#signin_header","classes":"tsd-kind-variable"},{"id":510,"kind":32,"name":"SIGNIN_DESC","url":"globals.html#signin_desc","classes":"tsd-kind-variable"},{"id":511,"kind":32,"name":"SIGNIN_SCOPES","url":"globals.html#signin_scopes","classes":"tsd-kind-variable"},{"id":512,"kind":32,"name":"SIGNIN_FMT_NAME","url":"globals.html#signin_fmt_name","classes":"tsd-kind-variable"},{"id":513,"kind":32,"name":"SIGNIN_FMT_ID","url":"globals.html#signin_fmt_id","classes":"tsd-kind-variable"},{"id":514,"kind":32,"name":"SIGNIN_FOOTER","url":"globals.html#signin_footer","classes":"tsd-kind-variable"},{"id":515,"kind":32,"name":"authTransitNonce","url":"globals.html#authtransitnonce","classes":"tsd-kind-variable"},{"id":516,"kind":64,"name":"getAppPrivateKey","url":"globals.html#getappprivatekey","classes":"tsd-kind-function"},{"id":517,"kind":64,"name":"makeSignInLink","url":"globals.html#makesigninlink","classes":"tsd-kind-function"},{"id":518,"kind":64,"name":"makeAuthPage","url":"globals.html#makeauthpage","classes":"tsd-kind-function"},{"id":519,"kind":64,"name":"loadNamedIdentitiesLoop","url":"globals.html#loadnamedidentitiesloop","classes":"tsd-kind-function"},{"id":520,"kind":64,"name":"loadNamedIdentities","url":"globals.html#loadnamedidentities","classes":"tsd-kind-function"},{"id":521,"kind":64,"name":"loadUnnamedIdentity","url":"globals.html#loadunnamedidentity","classes":"tsd-kind-function"},{"id":522,"kind":64,"name":"sendJSON","url":"globals.html#sendjson","classes":"tsd-kind-function"},{"id":523,"kind":64,"name":"getIdentityInfo","url":"globals.html#getidentityinfo","classes":"tsd-kind-function"},{"id":524,"kind":64,"name":"handleAuth","url":"globals.html#handleauth","classes":"tsd-kind-function"},{"id":525,"kind":64,"name":"updateProfileApps","url":"globals.html#updateprofileapps","classes":"tsd-kind-function"},{"id":526,"kind":64,"name":"updateProfileAPISettings","url":"globals.html#updateprofileapisettings","classes":"tsd-kind-function"},{"id":527,"kind":64,"name":"handleSignIn","url":"globals.html#handlesignin","classes":"tsd-kind-function"},{"id":528,"kind":32,"name":"localStorageRAM","url":"globals.html#localstorageram","classes":"tsd-kind-variable"},{"id":529,"kind":32,"name":"global","url":"globals.html#global","classes":"tsd-kind-variable"},{"id":530,"kind":4,"name":"ChainID","url":"enums/chainid.html","classes":"tsd-kind-enum"},{"id":531,"kind":16,"name":"Testnet","url":"enums/chainid.html#testnet","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ChainID"},{"id":532,"kind":16,"name":"Mainnet","url":"enums/chainid.html#mainnet","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ChainID"},{"id":533,"kind":4,"name":"TransactionVersion","url":"enums/transactionversion.html","classes":"tsd-kind-enum"},{"id":534,"kind":16,"name":"Mainnet","url":"enums/transactionversion.html#mainnet","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TransactionVersion"},{"id":535,"kind":16,"name":"Testnet","url":"enums/transactionversion.html#testnet","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TransactionVersion"},{"id":536,"kind":256,"name":"HubErrorDetails","url":"interfaces/huberrordetails.html","classes":"tsd-kind-interface"},{"id":537,"kind":1024,"name":"message","url":"interfaces/huberrordetails.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HubErrorDetails"},{"id":538,"kind":1024,"name":"statusCode","url":"interfaces/huberrordetails.html#statuscode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HubErrorDetails"},{"id":539,"kind":1024,"name":"statusText","url":"interfaces/huberrordetails.html#statustext","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HubErrorDetails"},{"id":540,"kind":32,"name":"levels","url":"globals.html#levels","classes":"tsd-kind-variable"},{"id":541,"kind":32,"name":"levelToInt","url":"globals.html#leveltoint","classes":"tsd-kind-variable"},{"id":542,"kind":65536,"name":"__type","url":"globals.html#leveltoint.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"levelToInt"},{"id":543,"kind":32,"name":"intToLevel","url":"globals.html#inttolevel","classes":"tsd-kind-variable"},{"id":544,"kind":65536,"name":"__type","url":"globals.html#inttolevel.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"intToLevel"},{"id":545,"kind":256,"name":"GetGlobalObjectOptions","url":"interfaces/getglobalobjectoptions.html","classes":"tsd-kind-interface"},{"id":546,"kind":1024,"name":"throwIfUnavailable","url":"interfaces/getglobalobjectoptions.html#throwifunavailable","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GetGlobalObjectOptions"},{"id":547,"kind":1024,"name":"usageDesc","url":"interfaces/getglobalobjectoptions.html#usagedesc","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GetGlobalObjectOptions"},{"id":548,"kind":1024,"name":"returnEmptyObject","url":"interfaces/getglobalobjectoptions.html#returnemptyobject","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GetGlobalObjectOptions"},{"id":549,"kind":64,"name":"getBase64OutputLength","url":"globals.html#getbase64outputlength","classes":"tsd-kind-function"},{"id":550,"kind":64,"name":"getAPIUsageErrorMessage","url":"globals.html#getapiusageerrormessage","classes":"tsd-kind-function"},{"id":551,"kind":256,"name":"WebCryptoLib","url":"interfaces/webcryptolib.html","classes":"tsd-kind-interface"},{"id":552,"kind":1024,"name":"lib","url":"interfaces/webcryptolib.html#lib","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WebCryptoLib"},{"id":553,"kind":1024,"name":"name","url":"interfaces/webcryptolib.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WebCryptoLib"},{"id":554,"kind":256,"name":"NodeCryptoLib","url":"interfaces/nodecryptolib.html","classes":"tsd-kind-interface"},{"id":555,"kind":1024,"name":"lib","url":"interfaces/nodecryptolib.html#lib","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NodeCryptoLib"},{"id":556,"kind":1024,"name":"name","url":"interfaces/nodecryptolib.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NodeCryptoLib"},{"id":557,"kind":64,"name":"isSubtleCryptoAvailable","url":"globals.html#issubtlecryptoavailable","classes":"tsd-kind-function"},{"id":558,"kind":64,"name":"isNodeCryptoAvailable","url":"globals.html#isnodecryptoavailable","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":559,"kind":32,"name":"NO_CRYPTO_LIB","url":"globals.html#no_crypto_lib","classes":"tsd-kind-variable"},{"id":560,"kind":4194304,"name":"TriplesecDecryptSignature","url":"globals.html#triplesecdecryptsignature","classes":"tsd-kind-type-alias"},{"id":561,"kind":65536,"name":"__type","url":"globals.html#triplesecdecryptsignature.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"TriplesecDecryptSignature"},{"id":562,"kind":64,"name":"getCryptoLib","url":"globals.html#getcryptolib","classes":"tsd-kind-function"},{"id":563,"kind":256,"name":"AesCipher","url":"interfaces/aescipher.html","classes":"tsd-kind-interface"},{"id":564,"kind":2048,"name":"encrypt","url":"interfaces/aescipher.html#encrypt","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"AesCipher"},{"id":565,"kind":2048,"name":"decrypt","url":"interfaces/aescipher.html#decrypt","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"AesCipher"},{"id":566,"kind":128,"name":"NodeCryptoAesCipher","url":"classes/nodecryptoaescipher.html","classes":"tsd-kind-class"},{"id":567,"kind":1024,"name":"createCipher","url":"classes/nodecryptoaescipher.html#createcipher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NodeCryptoAesCipher"},{"id":568,"kind":1024,"name":"createDecipher","url":"classes/nodecryptoaescipher.html#createdecipher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NodeCryptoAesCipher"},{"id":569,"kind":512,"name":"constructor","url":"classes/nodecryptoaescipher.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"NodeCryptoAesCipher"},{"id":570,"kind":2048,"name":"encrypt","url":"classes/nodecryptoaescipher.html#encrypt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"NodeCryptoAesCipher"},{"id":571,"kind":2048,"name":"decrypt","url":"classes/nodecryptoaescipher.html#decrypt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"NodeCryptoAesCipher"},{"id":572,"kind":128,"name":"WebCryptoAesCipher","url":"classes/webcryptoaescipher.html","classes":"tsd-kind-class"},{"id":573,"kind":1024,"name":"subtleCrypto","url":"classes/webcryptoaescipher.html#subtlecrypto","classes":"tsd-kind-property tsd-parent-kind-class","parent":"WebCryptoAesCipher"},{"id":574,"kind":512,"name":"constructor","url":"classes/webcryptoaescipher.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"WebCryptoAesCipher"},{"id":575,"kind":2048,"name":"encrypt","url":"classes/webcryptoaescipher.html#encrypt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WebCryptoAesCipher"},{"id":576,"kind":2048,"name":"decrypt","url":"classes/webcryptoaescipher.html#decrypt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WebCryptoAesCipher"},{"id":577,"kind":4194304,"name":"NodeCryptoCreateCipher","url":"globals.html#nodecryptocreatecipher","classes":"tsd-kind-type-alias"},{"id":578,"kind":4194304,"name":"NodeCryptoCreateDecipher","url":"globals.html#nodecryptocreatedecipher","classes":"tsd-kind-type-alias"},{"id":579,"kind":4194304,"name":"CipherAlgorithm","url":"globals.html#cipheralgorithm","classes":"tsd-kind-type-alias"},{"id":580,"kind":64,"name":"createCipher","url":"globals.html#createcipher","classes":"tsd-kind-function"},{"id":581,"kind":4194304,"name":"GetRandomBytes","url":"globals.html#getrandombytes","classes":"tsd-kind-type-alias"},{"id":582,"kind":65536,"name":"__type","url":"globals.html#getrandombytes.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"GetRandomBytes"},{"id":583,"kind":256,"name":"Sha2Hash","url":"interfaces/sha2hash.html","classes":"tsd-kind-interface"},{"id":584,"kind":2048,"name":"digest","url":"interfaces/sha2hash.html#digest","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Sha2Hash"},{"id":585,"kind":128,"name":"NodeCryptoSha2Hash","url":"classes/nodecryptosha2hash.html","classes":"tsd-kind-class"},{"id":586,"kind":1024,"name":"createHash","url":"classes/nodecryptosha2hash.html#createhash","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NodeCryptoSha2Hash"},{"id":587,"kind":512,"name":"constructor","url":"classes/nodecryptosha2hash.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"NodeCryptoSha2Hash"},{"id":588,"kind":2048,"name":"digest","url":"classes/nodecryptosha2hash.html#digest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"NodeCryptoSha2Hash"},{"id":589,"kind":128,"name":"WebCryptoSha2Hash","url":"classes/webcryptosha2hash.html","classes":"tsd-kind-class"},{"id":590,"kind":1024,"name":"subtleCrypto","url":"classes/webcryptosha2hash.html#subtlecrypto","classes":"tsd-kind-property tsd-parent-kind-class","parent":"WebCryptoSha2Hash"},{"id":591,"kind":512,"name":"constructor","url":"classes/webcryptosha2hash.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"WebCryptoSha2Hash"},{"id":592,"kind":2048,"name":"digest","url":"classes/webcryptosha2hash.html#digest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WebCryptoSha2Hash"},{"id":593,"kind":4194304,"name":"NodeCryptoCreateHash","url":"globals.html#nodecryptocreatehash","classes":"tsd-kind-type-alias"},{"id":594,"kind":64,"name":"createSha2Hash","url":"globals.html#createsha2hash","classes":"tsd-kind-function"},{"id":595,"kind":64,"name":"hashSha256Sync","url":"globals.html#hashsha256sync","classes":"tsd-kind-function"},{"id":596,"kind":64,"name":"hashSha512Sync","url":"globals.html#hashsha512sync","classes":"tsd-kind-function"},{"id":597,"kind":256,"name":"Ripemd160Digest","url":"interfaces/ripemd160digest.html","classes":"tsd-kind-interface"},{"id":598,"kind":2048,"name":"digest","url":"interfaces/ripemd160digest.html#digest","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Ripemd160Digest"},{"id":599,"kind":128,"name":"Ripemd160PolyfillDigest","url":"classes/ripemd160polyfilldigest.html","classes":"tsd-kind-class"},{"id":600,"kind":2048,"name":"digest","url":"classes/ripemd160polyfilldigest.html#digest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ripemd160PolyfillDigest"},{"id":601,"kind":128,"name":"NodeCryptoRipemd160Digest","url":"classes/nodecryptoripemd160digest.html","classes":"tsd-kind-class"},{"id":602,"kind":1024,"name":"nodeCryptoCreateHash","url":"classes/nodecryptoripemd160digest.html#nodecryptocreatehash","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NodeCryptoRipemd160Digest"},{"id":603,"kind":512,"name":"constructor","url":"classes/nodecryptoripemd160digest.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"NodeCryptoRipemd160Digest"},{"id":604,"kind":2048,"name":"digest","url":"classes/nodecryptoripemd160digest.html#digest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"NodeCryptoRipemd160Digest"},{"id":605,"kind":64,"name":"createHashRipemd160","url":"globals.html#createhashripemd160","classes":"tsd-kind-function"},{"id":606,"kind":64,"name":"hashRipemd160","url":"globals.html#hashripemd160","classes":"tsd-kind-function"},{"id":607,"kind":256,"name":"Hmac","url":"interfaces/hmac.html","classes":"tsd-kind-interface"},{"id":608,"kind":2048,"name":"digest","url":"interfaces/hmac.html#digest","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Hmac"},{"id":609,"kind":128,"name":"NodeCryptoHmacSha256","url":"classes/nodecryptohmacsha256.html","classes":"tsd-kind-class"},{"id":610,"kind":1024,"name":"createHmac","url":"classes/nodecryptohmacsha256.html#createhmac","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NodeCryptoHmacSha256"},{"id":611,"kind":512,"name":"constructor","url":"classes/nodecryptohmacsha256.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"NodeCryptoHmacSha256"},{"id":612,"kind":2048,"name":"digest","url":"classes/nodecryptohmacsha256.html#digest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"NodeCryptoHmacSha256"},{"id":613,"kind":128,"name":"WebCryptoHmacSha256","url":"classes/webcryptohmacsha256.html","classes":"tsd-kind-class"},{"id":614,"kind":1024,"name":"subtleCrypto","url":"classes/webcryptohmacsha256.html#subtlecrypto","classes":"tsd-kind-property tsd-parent-kind-class","parent":"WebCryptoHmacSha256"},{"id":615,"kind":512,"name":"constructor","url":"classes/webcryptohmacsha256.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"WebCryptoHmacSha256"},{"id":616,"kind":2048,"name":"digest","url":"classes/webcryptohmacsha256.html#digest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WebCryptoHmacSha256"},{"id":617,"kind":4194304,"name":"NodeCryptoCreateHmac","url":"globals.html#nodecryptocreatehmac","classes":"tsd-kind-type-alias"},{"id":618,"kind":64,"name":"createHmacSha256","url":"globals.html#createhmacsha256","classes":"tsd-kind-function"},{"id":619,"kind":32,"name":"ecurve","url":"globals.html#ecurve","classes":"tsd-kind-variable"},{"id":620,"kind":256,"name":"EncryptionOptions","url":"interfaces/encryptionoptions.html","classes":"tsd-kind-interface"},{"id":621,"kind":1024,"name":"sign","url":"interfaces/encryptionoptions.html#sign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EncryptionOptions"},{"id":622,"kind":1024,"name":"cipherTextEncoding","url":"interfaces/encryptionoptions.html#ciphertextencoding","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EncryptionOptions"},{"id":623,"kind":1024,"name":"wasString","url":"interfaces/encryptionoptions.html#wasstring","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EncryptionOptions"},{"id":624,"kind":256,"name":"EncryptContentOptions","url":"interfaces/encryptcontentoptions.html","classes":"tsd-kind-interface"},{"id":625,"kind":1024,"name":"publicKey","url":"interfaces/encryptcontentoptions.html#publickey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EncryptContentOptions"},{"id":626,"kind":1024,"name":"privateKey","url":"interfaces/encryptcontentoptions.html#privatekey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EncryptContentOptions"},{"id":627,"kind":1024,"name":"sign","url":"interfaces/encryptcontentoptions.html#sign","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"EncryptContentOptions"},{"id":628,"kind":1024,"name":"cipherTextEncoding","url":"interfaces/encryptcontentoptions.html#ciphertextencoding","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"EncryptContentOptions"},{"id":629,"kind":1024,"name":"wasString","url":"interfaces/encryptcontentoptions.html#wasstring","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"EncryptContentOptions"},{"id":630,"kind":64,"name":"encryptContent","url":"globals.html#encryptcontent","classes":"tsd-kind-function"},{"id":631,"kind":64,"name":"decryptContent","url":"globals.html#decryptcontent","classes":"tsd-kind-function"},{"id":632,"kind":256,"name":"Pbkdf2","url":"interfaces/pbkdf2.html","classes":"tsd-kind-interface"},{"id":633,"kind":2048,"name":"derive","url":"interfaces/pbkdf2.html#derive","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pbkdf2"},{"id":634,"kind":128,"name":"NodeCryptoPbkdf2","url":"classes/nodecryptopbkdf2.html","classes":"tsd-kind-class"},{"id":635,"kind":1024,"name":"nodePbkdf2","url":"classes/nodecryptopbkdf2.html#nodepbkdf2","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NodeCryptoPbkdf2"},{"id":636,"kind":512,"name":"constructor","url":"classes/nodecryptopbkdf2.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"NodeCryptoPbkdf2"},{"id":637,"kind":2048,"name":"derive","url":"classes/nodecryptopbkdf2.html#derive","classes":"tsd-kind-method tsd-parent-kind-class","parent":"NodeCryptoPbkdf2"},{"id":638,"kind":128,"name":"WebCryptoPbkdf2","url":"classes/webcryptopbkdf2.html","classes":"tsd-kind-class"},{"id":639,"kind":1024,"name":"subtleCrypto","url":"classes/webcryptopbkdf2.html#subtlecrypto","classes":"tsd-kind-property tsd-parent-kind-class","parent":"WebCryptoPbkdf2"},{"id":640,"kind":512,"name":"constructor","url":"classes/webcryptopbkdf2.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"WebCryptoPbkdf2"},{"id":641,"kind":2048,"name":"derive","url":"classes/webcryptopbkdf2.html#derive","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WebCryptoPbkdf2"},{"id":642,"kind":128,"name":"WebCryptoPartialPbkdf2","url":"classes/webcryptopartialpbkdf2.html","classes":"tsd-kind-class"},{"id":643,"kind":1024,"name":"subtleCrypto","url":"classes/webcryptopartialpbkdf2.html#subtlecrypto","classes":"tsd-kind-property tsd-parent-kind-class","parent":"WebCryptoPartialPbkdf2"},{"id":644,"kind":512,"name":"constructor","url":"classes/webcryptopartialpbkdf2.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"WebCryptoPartialPbkdf2"},{"id":645,"kind":2048,"name":"derive","url":"classes/webcryptopartialpbkdf2.html#derive","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WebCryptoPartialPbkdf2"},{"id":646,"kind":4194304,"name":"Pbkdf2Digests","url":"globals.html#pbkdf2digests","classes":"tsd-kind-type-alias"},{"id":647,"kind":4194304,"name":"NodePbkdf2Fn","url":"globals.html#nodepbkdf2fn","classes":"tsd-kind-type-alias"},{"id":648,"kind":64,"name":"createPbkdf2","url":"globals.html#createpbkdf2","classes":"tsd-kind-function"},{"id":649,"kind":128,"name":"PasswordError","url":"classes/passworderror.html","classes":"tsd-kind-class"},{"id":650,"kind":1024,"name":"name","url":"classes/passworderror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"PasswordError"},{"id":651,"kind":1024,"name":"message","url":"classes/passworderror.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"PasswordError"},{"id":652,"kind":1024,"name":"stack","url":"classes/passworderror.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"PasswordError"},{"id":653,"kind":1024,"name":"Error","url":"classes/passworderror.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"PasswordError"},{"id":654,"kind":32,"name":"networkDerivationPath","url":"globals.html#networkderivationpath","classes":"tsd-kind-variable"},{"id":655,"kind":2097152,"name":"derivationPaths","url":"globals.html#derivationpaths","classes":"tsd-kind-object-literal"},{"id":656,"kind":32,"name":"[ChainID.Mainnet]","url":"globals.html#derivationpaths._chainid_mainnet_","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"derivationPaths"},{"id":657,"kind":32,"name":"[ChainID.Testnet]","url":"globals.html#derivationpaths._chainid_testnet_","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"derivationPaths"},{"id":658,"kind":64,"name":"getDerivationPath","url":"globals.html#getderivationpath","classes":"tsd-kind-function"},{"id":659,"kind":64,"name":"deriveStxAddressChain","url":"globals.html#derivestxaddresschain","classes":"tsd-kind-function"},{"id":660,"kind":64,"name":"decrypt","url":"globals.html#decrypt","classes":"tsd-kind-function"},{"id":661,"kind":64,"name":"encrypt","url":"globals.html#encrypt","classes":"tsd-kind-function"},{"id":662,"kind":128,"name":"IdentityAddressOwnerNode","url":"classes/identityaddressownernode.html","classes":"tsd-kind-class"},{"id":663,"kind":1024,"name":"hdNode","url":"classes/identityaddressownernode.html#hdnode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"IdentityAddressOwnerNode"},{"id":664,"kind":1024,"name":"salt","url":"classes/identityaddressownernode.html#salt","classes":"tsd-kind-property tsd-parent-kind-class","parent":"IdentityAddressOwnerNode"},{"id":665,"kind":512,"name":"constructor","url":"classes/identityaddressownernode.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"IdentityAddressOwnerNode"},{"id":666,"kind":2048,"name":"getNode","url":"classes/identityaddressownernode.html#getnode","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IdentityAddressOwnerNode"},{"id":667,"kind":2048,"name":"getSalt","url":"classes/identityaddressownernode.html#getsalt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IdentityAddressOwnerNode"},{"id":668,"kind":2048,"name":"getIdentityKey","url":"classes/identityaddressownernode.html#getidentitykey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IdentityAddressOwnerNode"},{"id":669,"kind":2048,"name":"getIdentityKeyID","url":"classes/identityaddressownernode.html#getidentitykeyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IdentityAddressOwnerNode"},{"id":670,"kind":2048,"name":"getAppsNode","url":"classes/identityaddressownernode.html#getappsnode","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IdentityAddressOwnerNode"},{"id":671,"kind":2048,"name":"getAddress","url":"classes/identityaddressownernode.html#getaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IdentityAddressOwnerNode"},{"id":672,"kind":2048,"name":"getEncryptionNode","url":"classes/identityaddressownernode.html#getencryptionnode","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IdentityAddressOwnerNode"},{"id":673,"kind":2048,"name":"getSigningNode","url":"classes/identityaddressownernode.html#getsigningnode","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IdentityAddressOwnerNode"},{"id":674,"kind":2048,"name":"getSTXNode","url":"classes/identityaddressownernode.html#getstxnode","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IdentityAddressOwnerNode"},{"id":675,"kind":2048,"name":"getAppNode","url":"classes/identityaddressownernode.html#getappnode","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IdentityAddressOwnerNode"},{"id":676,"kind":2048,"name":"getAppPrivateKey","url":"classes/identityaddressownernode.html#getappprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IdentityAddressOwnerNode"},{"id":677,"kind":2048,"name":"getAppAddress","url":"classes/identityaddressownernode.html#getappaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IdentityAddressOwnerNode"},{"id":678,"kind":32,"name":"APPS_NODE_INDEX","url":"globals.html#apps_node_index","classes":"tsd-kind-variable"},{"id":679,"kind":32,"name":"SIGNING_NODE_INDEX","url":"globals.html#signing_node_index","classes":"tsd-kind-variable"},{"id":680,"kind":32,"name":"ENCRYPTION_NODE_INDEX","url":"globals.html#encryption_node_index","classes":"tsd-kind-variable"},{"id":681,"kind":32,"name":"STX_NODE_INDEX","url":"globals.html#stx_node_index","classes":"tsd-kind-variable"},{"id":682,"kind":256,"name":"HubInfo","url":"interfaces/hubinfo.html","classes":"tsd-kind-interface"},{"id":683,"kind":1024,"name":"challenge_text","url":"interfaces/hubinfo.html#challenge_text","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HubInfo"},{"id":684,"kind":1024,"name":"read_url_prefix","url":"interfaces/hubinfo.html#read_url_prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HubInfo"},{"id":685,"kind":256,"name":"ConnectToGaiaOptions","url":"interfaces/connecttogaiaoptions.html","classes":"tsd-kind-interface"},{"id":686,"kind":1024,"name":"hubInfo","url":"interfaces/connecttogaiaoptions.html#hubinfo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConnectToGaiaOptions"},{"id":687,"kind":1024,"name":"privateKey","url":"interfaces/connecttogaiaoptions.html#privatekey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConnectToGaiaOptions"},{"id":688,"kind":1024,"name":"gaiaHubUrl","url":"interfaces/connecttogaiaoptions.html#gaiahuburl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConnectToGaiaOptions"},{"id":689,"kind":256,"name":"ReadOnlyGaiaConfigOptions","url":"interfaces/readonlygaiaconfigoptions.html","classes":"tsd-kind-interface"},{"id":690,"kind":1024,"name":"readURL","url":"interfaces/readonlygaiaconfigoptions.html#readurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ReadOnlyGaiaConfigOptions"},{"id":691,"kind":1024,"name":"privateKey","url":"interfaces/readonlygaiaconfigoptions.html#privatekey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ReadOnlyGaiaConfigOptions"},{"id":692,"kind":256,"name":"GaiaAuthPayload","url":"interfaces/gaiaauthpayload.html","classes":"tsd-kind-interface"},{"id":693,"kind":1024,"name":"gaiaHubUrl","url":"interfaces/gaiaauthpayload.html#gaiahuburl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GaiaAuthPayload"},{"id":694,"kind":1024,"name":"iss","url":"interfaces/gaiaauthpayload.html#iss","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GaiaAuthPayload"},{"id":695,"kind":1024,"name":"salt","url":"interfaces/gaiaauthpayload.html#salt","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GaiaAuthPayload"},{"id":696,"kind":32,"name":"DEFAULT_GAIA_HUB","url":"globals.html#default_gaia_hub","classes":"tsd-kind-variable"},{"id":697,"kind":64,"name":"getHubInfo","url":"globals.html#gethubinfo","classes":"tsd-kind-function"},{"id":698,"kind":64,"name":"getHubPrefix","url":"globals.html#gethubprefix","classes":"tsd-kind-function"},{"id":699,"kind":64,"name":"makeGaiaAssociationToken","url":"globals.html#makegaiaassociationtoken","classes":"tsd-kind-function"},{"id":700,"kind":64,"name":"connectToGaiaHubWithConfig","url":"globals.html#connecttogaiahubwithconfig","classes":"tsd-kind-function"},{"id":701,"kind":64,"name":"makeReadOnlyGaiaConfig","url":"globals.html#makereadonlygaiaconfig","classes":"tsd-kind-function"},{"id":702,"kind":64,"name":"makeGaiaAuthToken","url":"globals.html#makegaiaauthtoken","classes":"tsd-kind-function"},{"id":703,"kind":256,"name":"ProfileImage","url":"interfaces/profileimage.html","classes":"tsd-kind-interface"},{"id":704,"kind":1024,"name":"@type","url":"interfaces/profileimage.html#_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProfileImage"},{"id":705,"kind":1024,"name":"name","url":"interfaces/profileimage.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProfileImage"},{"id":706,"kind":1024,"name":"contentUrl","url":"interfaces/profileimage.html#contenturl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProfileImage"},{"id":707,"kind":128,"name":"Profile","url":"classes/profile.html","classes":"tsd-kind-class"},{"id":708,"kind":1024,"name":"@type","url":"classes/profile.html#_type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Profile"},{"id":709,"kind":1024,"name":"@context","url":"classes/profile.html#_context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Profile"},{"id":710,"kind":1024,"name":"apps","url":"classes/profile.html#apps","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Profile"},{"id":711,"kind":1024,"name":"appsMeta","url":"classes/profile.html#appsmeta","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Profile"},{"id":712,"kind":1024,"name":"name","url":"classes/profile.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Profile"},{"id":713,"kind":1024,"name":"image","url":"classes/profile.html#image","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Profile"},{"id":714,"kind":4,"name":"Subdomains","url":"enums/subdomains.html","classes":"tsd-kind-enum"},{"id":715,"kind":16,"name":"TEST","url":"enums/subdomains.html#test","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Subdomains"},{"id":716,"kind":16,"name":"BLOCKSTACK","url":"enums/subdomains.html#blockstack","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Subdomains"},{"id":717,"kind":256,"name":"SendToRegistrarParams","url":"interfaces/sendtoregistrarparams.html","classes":"tsd-kind-interface"},{"id":718,"kind":1024,"name":"username","url":"interfaces/sendtoregistrarparams.html#username","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SendToRegistrarParams"},{"id":719,"kind":1024,"name":"subdomain","url":"interfaces/sendtoregistrarparams.html#subdomain","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SendToRegistrarParams"},{"id":720,"kind":1024,"name":"zoneFile","url":"interfaces/sendtoregistrarparams.html#zonefile","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SendToRegistrarParams"},{"id":721,"kind":1024,"name":"identity","url":"interfaces/sendtoregistrarparams.html#identity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SendToRegistrarParams"},{"id":722,"kind":256,"name":"RegisterParams","url":"interfaces/registerparams.html","classes":"tsd-kind-interface"},{"id":723,"kind":1024,"name":"identity","url":"interfaces/registerparams.html#identity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RegisterParams"},{"id":724,"kind":1024,"name":"gaiaHubUrl","url":"interfaces/registerparams.html#gaiahuburl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RegisterParams"},{"id":725,"kind":1024,"name":"username","url":"interfaces/registerparams.html#username","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RegisterParams"},{"id":726,"kind":1024,"name":"subdomain","url":"interfaces/registerparams.html#subdomain","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RegisterParams"},{"id":727,"kind":32,"name":"PERSON_TYPE","url":"globals.html#person_type","classes":"tsd-kind-variable"},{"id":728,"kind":32,"name":"CONTEXT","url":"globals.html#context","classes":"tsd-kind-variable"},{"id":729,"kind":32,"name":"IMAGE_TYPE","url":"globals.html#image_type","classes":"tsd-kind-variable"},{"id":730,"kind":32,"name":"DEFAULT_PROFILE_FILE_NAME","url":"globals.html#default_profile_file_name","classes":"tsd-kind-variable"},{"id":731,"kind":2097152,"name":"registrars","url":"globals.html#registrars","classes":"tsd-kind-object-literal"},{"id":732,"kind":2097152,"name":"[Subdomains.TEST]","url":"globals.html#registrars._subdomains_test_","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"registrars"},{"id":733,"kind":32,"name":"registerUrl","url":"globals.html#registrars._subdomains_test_.registerurl-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"registrars.[Subdomains.TEST]"},{"id":734,"kind":32,"name":"apiUrl","url":"globals.html#registrars._subdomains_test_.apiurl-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"registrars.[Subdomains.TEST]"},{"id":735,"kind":2097152,"name":"[Subdomains.BLOCKSTACK]","url":"globals.html#registrars._subdomains_blockstack_","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"registrars"},{"id":736,"kind":32,"name":"registerUrl","url":"globals.html#registrars._subdomains_blockstack_.registerurl","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"registrars.[Subdomains.BLOCKSTACK]"},{"id":737,"kind":32,"name":"apiUrl","url":"globals.html#registrars._subdomains_blockstack_.apiurl","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"registrars.[Subdomains.BLOCKSTACK]"},{"id":738,"kind":64,"name":"signProfileForUpload","url":"globals.html#signprofileforupload","classes":"tsd-kind-function"},{"id":739,"kind":64,"name":"uploadProfile","url":"globals.html#uploadprofile","classes":"tsd-kind-function"},{"id":740,"kind":64,"name":"sendUsernameToRegistrar","url":"globals.html#sendusernametoregistrar","classes":"tsd-kind-function"},{"id":741,"kind":64,"name":"registerSubdomain","url":"globals.html#registersubdomain","classes":"tsd-kind-function"},{"id":742,"kind":64,"name":"signAndUploadProfile","url":"globals.html#signanduploadprofile","classes":"tsd-kind-function"},{"id":743,"kind":64,"name":"fetchProfile","url":"globals.html#fetchprofile","classes":"tsd-kind-function"},{"id":744,"kind":256,"name":"IdentityKeyPair","url":"interfaces/identitykeypair.html","classes":"tsd-kind-interface"},{"id":745,"kind":1024,"name":"key","url":"interfaces/identitykeypair.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IdentityKeyPair"},{"id":746,"kind":1024,"name":"keyID","url":"interfaces/identitykeypair.html#keyid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IdentityKeyPair"},{"id":747,"kind":1024,"name":"address","url":"interfaces/identitykeypair.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IdentityKeyPair"},{"id":748,"kind":1024,"name":"appsNodeKey","url":"interfaces/identitykeypair.html#appsnodekey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IdentityKeyPair"},{"id":749,"kind":1024,"name":"stxNodeKey","url":"interfaces/identitykeypair.html#stxnodekey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IdentityKeyPair"},{"id":750,"kind":1024,"name":"salt","url":"interfaces/identitykeypair.html#salt","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IdentityKeyPair"},{"id":751,"kind":4,"name":"IdentityNameValidityError","url":"enums/identitynamevalidityerror.html","classes":"tsd-kind-enum"},{"id":752,"kind":16,"name":"MINIMUM_LENGTH","url":"enums/identitynamevalidityerror.html#minimum_length","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"IdentityNameValidityError"},{"id":753,"kind":16,"name":"MAXIMUM_LENGTH","url":"enums/identitynamevalidityerror.html#maximum_length","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"IdentityNameValidityError"},{"id":754,"kind":16,"name":"ILLEGAL_CHARACTER","url":"enums/identitynamevalidityerror.html#illegal_character","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"IdentityNameValidityError"},{"id":755,"kind":16,"name":"UNAVAILABLE","url":"enums/identitynamevalidityerror.html#unavailable","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"IdentityNameValidityError"},{"id":756,"kind":256,"name":"RecursiveMakeIdentitiesOptions","url":"interfaces/recursivemakeidentitiesoptions.html","classes":"tsd-kind-interface"},{"id":757,"kind":1024,"name":"rootNode","url":"interfaces/recursivemakeidentitiesoptions.html#rootnode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RecursiveMakeIdentitiesOptions"},{"id":758,"kind":1024,"name":"index","url":"interfaces/recursivemakeidentitiesoptions.html#index","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RecursiveMakeIdentitiesOptions"},{"id":759,"kind":1024,"name":"identities","url":"interfaces/recursivemakeidentitiesoptions.html#identities","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RecursiveMakeIdentitiesOptions"},{"id":760,"kind":256,"name":"NameInfoResponse","url":"interfaces/nameinforesponse.html","classes":"tsd-kind-interface"},{"id":761,"kind":1024,"name":"address","url":"interfaces/nameinforesponse.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NameInfoResponse"},{"id":762,"kind":1024,"name":"zonefile","url":"interfaces/nameinforesponse.html#zonefile","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NameInfoResponse"},{"id":763,"kind":32,"name":"IDENTITY_KEYCHAIN","url":"globals.html#identity_keychain","classes":"tsd-kind-variable"},{"id":764,"kind":32,"name":"BLOCKSTACK_ON_BITCOIN","url":"globals.html#blockstack_on_bitcoin","classes":"tsd-kind-variable"},{"id":765,"kind":64,"name":"getIdentityPrivateKeychain","url":"globals.html#getidentityprivatekeychain","classes":"tsd-kind-function"},{"id":766,"kind":32,"name":"EXTERNAL_ADDRESS","url":"globals.html#external_address","classes":"tsd-kind-variable"},{"id":767,"kind":32,"name":"CHANGE_ADDRESS","url":"globals.html#change_address","classes":"tsd-kind-variable"},{"id":768,"kind":64,"name":"getBitcoinPrivateKeychain","url":"globals.html#getbitcoinprivatekeychain","classes":"tsd-kind-function"},{"id":769,"kind":64,"name":"getBitcoinAddressNode","url":"globals.html#getbitcoinaddressnode","classes":"tsd-kind-function"},{"id":770,"kind":64,"name":"getIdentityOwnerAddressNode","url":"globals.html#getidentityowneraddressnode","classes":"tsd-kind-function"},{"id":771,"kind":64,"name":"deriveIdentityKeyPair","url":"globals.html#deriveidentitykeypair","classes":"tsd-kind-function"},{"id":772,"kind":64,"name":"getBlockchainIdentities","url":"globals.html#getblockchainidentities","classes":"tsd-kind-function"},{"id":773,"kind":64,"name":"makeIdentity","url":"globals.html#makeidentity","classes":"tsd-kind-function"},{"id":774,"kind":64,"name":"assertIsTruthy","url":"globals.html#assertistruthy","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":775,"kind":64,"name":"containsLegalCharacters","url":"globals.html#containslegalcharacters","classes":"tsd-kind-function"},{"id":776,"kind":64,"name":"validateSubdomainFormat","url":"globals.html#validatesubdomainformat","classes":"tsd-kind-function"},{"id":777,"kind":64,"name":"validateSubdomainAvailability","url":"globals.html#validatesubdomainavailability","classes":"tsd-kind-function"},{"id":778,"kind":64,"name":"recursiveRestoreIdentities","url":"globals.html#recursiverestoreidentities","classes":"tsd-kind-function"},{"id":779,"kind":64,"name":"validateSubdomain","url":"globals.html#validatesubdomain","classes":"tsd-kind-function"},{"id":780,"kind":64,"name":"getProfileURLFromZoneFile","url":"globals.html#getprofileurlfromzonefile","classes":"tsd-kind-function"},{"id":781,"kind":256,"name":"IdentityConstructorOptions","url":"interfaces/identityconstructoroptions.html","classes":"tsd-kind-interface"},{"id":782,"kind":1024,"name":"keyPair","url":"interfaces/identityconstructoroptions.html#keypair","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IdentityConstructorOptions"},{"id":783,"kind":1024,"name":"address","url":"interfaces/identityconstructoroptions.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IdentityConstructorOptions"},{"id":784,"kind":1024,"name":"usernames","url":"interfaces/identityconstructoroptions.html#usernames","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IdentityConstructorOptions"},{"id":785,"kind":1024,"name":"defaultUsername","url":"interfaces/identityconstructoroptions.html#defaultusername","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IdentityConstructorOptions"},{"id":786,"kind":1024,"name":"profile","url":"interfaces/identityconstructoroptions.html#profile","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IdentityConstructorOptions"},{"id":787,"kind":256,"name":"RefreshOptions","url":"interfaces/refreshoptions.html","classes":"tsd-kind-interface"},{"id":788,"kind":1024,"name":"gaiaUrl","url":"interfaces/refreshoptions.html#gaiaurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RefreshOptions"},{"id":789,"kind":128,"name":"Identity","url":"classes/identity.html","classes":"tsd-kind-class"},{"id":790,"kind":1024,"name":"keyPair","url":"classes/identity.html#keypair","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Identity"},{"id":791,"kind":1024,"name":"address","url":"classes/identity.html#address","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Identity"},{"id":792,"kind":1024,"name":"defaultUsername","url":"classes/identity.html#defaultusername","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Identity"},{"id":793,"kind":1024,"name":"usernames","url":"classes/identity.html#usernames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Identity"},{"id":794,"kind":1024,"name":"profile","url":"classes/identity.html#profile","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Identity"},{"id":795,"kind":512,"name":"constructor","url":"classes/identity.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Identity"},{"id":796,"kind":2048,"name":"makeAuthResponse","url":"classes/identity.html#makeauthresponse","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Identity"},{"id":797,"kind":2048,"name":"appPrivateKey","url":"classes/identity.html#appprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Identity"},{"id":798,"kind":2048,"name":"profileUrl","url":"classes/identity.html#profileurl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Identity"},{"id":799,"kind":2048,"name":"fetchNames","url":"classes/identity.html#fetchnames","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Identity"},{"id":800,"kind":2048,"name":"refresh","url":"classes/identity.html#refresh","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Identity"},{"id":801,"kind":4194304,"name":"AllowedKeyEntropyBits","url":"globals.html#allowedkeyentropybits","classes":"tsd-kind-type-alias"},{"id":802,"kind":64,"name":"generateMnemonicRootKeychain","url":"globals.html#generatemnemonicrootkeychain","classes":"tsd-kind-function"},{"id":803,"kind":64,"name":"generateEncryptedMnemonicRootKeychain","url":"globals.html#generateencryptedmnemonicrootkeychain","classes":"tsd-kind-function"},{"id":804,"kind":64,"name":"deriveRootKeychainFromMnemonic","url":"globals.html#deriverootkeychainfrommnemonic","classes":"tsd-kind-function"},{"id":805,"kind":64,"name":"encryptMnemonicFormatted","url":"globals.html#encryptmnemonicformatted","classes":"tsd-kind-function"},{"id":806,"kind":256,"name":"ContractCallOptions","url":"interfaces/contractcalloptions.html","classes":"tsd-kind-interface"},{"id":807,"kind":1024,"name":"contractName","url":"interfaces/contractcalloptions.html#contractname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallOptions"},{"id":808,"kind":1024,"name":"contractAddress","url":"interfaces/contractcalloptions.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallOptions"},{"id":809,"kind":1024,"name":"functionName","url":"interfaces/contractcalloptions.html#functionname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallOptions"},{"id":810,"kind":1024,"name":"functionArgs","url":"interfaces/contractcalloptions.html#functionargs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallOptions"},{"id":811,"kind":1024,"name":"version","url":"interfaces/contractcalloptions.html#version","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallOptions"},{"id":812,"kind":1024,"name":"nonce","url":"interfaces/contractcalloptions.html#nonce","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallOptions"},{"id":813,"kind":1024,"name":"postConditions","url":"interfaces/contractcalloptions.html#postconditions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallOptions"},{"id":814,"kind":1024,"name":"postConditionMode","url":"interfaces/contractcalloptions.html#postconditionmode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallOptions"},{"id":815,"kind":1024,"name":"network","url":"interfaces/contractcalloptions.html#network","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallOptions"},{"id":816,"kind":256,"name":"ContractDeployOptions","url":"interfaces/contractdeployoptions.html","classes":"tsd-kind-interface"},{"id":817,"kind":1024,"name":"contractName","url":"interfaces/contractdeployoptions.html#contractname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractDeployOptions"},{"id":818,"kind":1024,"name":"codeBody","url":"interfaces/contractdeployoptions.html#codebody","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractDeployOptions"},{"id":819,"kind":1024,"name":"version","url":"interfaces/contractdeployoptions.html#version","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractDeployOptions"},{"id":820,"kind":1024,"name":"nonce","url":"interfaces/contractdeployoptions.html#nonce","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractDeployOptions"},{"id":821,"kind":1024,"name":"postConditions","url":"interfaces/contractdeployoptions.html#postconditions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractDeployOptions"},{"id":822,"kind":1024,"name":"postConditionMode","url":"interfaces/contractdeployoptions.html#postconditionmode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractDeployOptions"},{"id":823,"kind":1024,"name":"network","url":"interfaces/contractdeployoptions.html#network","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractDeployOptions"},{"id":824,"kind":256,"name":"STXTransferOptions","url":"interfaces/stxtransferoptions.html","classes":"tsd-kind-interface"},{"id":825,"kind":1024,"name":"recipient","url":"interfaces/stxtransferoptions.html#recipient","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"STXTransferOptions"},{"id":826,"kind":1024,"name":"amount","url":"interfaces/stxtransferoptions.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"STXTransferOptions"},{"id":827,"kind":1024,"name":"memo","url":"interfaces/stxtransferoptions.html#memo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"STXTransferOptions"},{"id":828,"kind":1024,"name":"nonce","url":"interfaces/stxtransferoptions.html#nonce","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"STXTransferOptions"},{"id":829,"kind":1024,"name":"postConditions","url":"interfaces/stxtransferoptions.html#postconditions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"STXTransferOptions"},{"id":830,"kind":1024,"name":"postConditionMode","url":"interfaces/stxtransferoptions.html#postconditionmode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"STXTransferOptions"},{"id":831,"kind":1024,"name":"network","url":"interfaces/stxtransferoptions.html#network","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"STXTransferOptions"},{"id":832,"kind":128,"name":"WalletSigner","url":"classes/walletsigner.html","classes":"tsd-kind-class"},{"id":833,"kind":1024,"name":"privateKey","url":"classes/walletsigner.html#privatekey","classes":"tsd-kind-property tsd-parent-kind-class","parent":"WalletSigner"},{"id":834,"kind":512,"name":"constructor","url":"classes/walletsigner.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"WalletSigner"},{"id":835,"kind":2048,"name":"getSTXAddress","url":"classes/walletsigner.html#getstxaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WalletSigner"},{"id":836,"kind":2048,"name":"getSTXPrivateKey","url":"classes/walletsigner.html#getstxprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WalletSigner"},{"id":837,"kind":2048,"name":"getNetwork","url":"classes/walletsigner.html#getnetwork","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WalletSigner"},{"id":838,"kind":2048,"name":"fetchAccount","url":"classes/walletsigner.html#fetchaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WalletSigner"},{"id":839,"kind":2048,"name":"signContractCall","url":"classes/walletsigner.html#signcontractcall","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WalletSigner"},{"id":840,"kind":2048,"name":"signContractDeploy","url":"classes/walletsigner.html#signcontractdeploy","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WalletSigner"},{"id":841,"kind":2048,"name":"signSTXTransfer","url":"classes/walletsigner.html#signstxtransfer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"WalletSigner"},{"id":842,"kind":256,"name":"ConfigApp","url":"interfaces/configapp.html","classes":"tsd-kind-interface"},{"id":843,"kind":1024,"name":"origin","url":"interfaces/configapp.html#origin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConfigApp"},{"id":844,"kind":1024,"name":"scopes","url":"interfaces/configapp.html#scopes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConfigApp"},{"id":845,"kind":1024,"name":"lastLoginAt","url":"interfaces/configapp.html#lastloginat","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConfigApp"},{"id":846,"kind":1024,"name":"appIcon","url":"interfaces/configapp.html#appicon","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConfigApp"},{"id":847,"kind":1024,"name":"name","url":"interfaces/configapp.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConfigApp"},{"id":848,"kind":256,"name":"ConfigIdentity","url":"interfaces/configidentity.html","classes":"tsd-kind-interface"},{"id":849,"kind":1024,"name":"username","url":"interfaces/configidentity.html#username","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConfigIdentity"},{"id":850,"kind":1024,"name":"address","url":"interfaces/configidentity.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConfigIdentity"},{"id":851,"kind":1024,"name":"apps","url":"interfaces/configidentity.html#apps","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConfigIdentity"},{"id":852,"kind":65536,"name":"__type","url":"interfaces/configidentity.html#apps.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"ConfigIdentity.apps"},{"id":853,"kind":256,"name":"WalletConfig","url":"interfaces/walletconfig.html","classes":"tsd-kind-interface"},{"id":854,"kind":1024,"name":"identities","url":"interfaces/walletconfig.html#identities","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WalletConfig"},{"id":855,"kind":1024,"name":"hideWarningForReusingIdentity","url":"interfaces/walletconfig.html#hidewarningforreusingidentity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"WalletConfig"},{"id":856,"kind":256,"name":"ConstructorOptions","url":"interfaces/constructoroptions.html","classes":"tsd-kind-interface"},{"id":857,"kind":1024,"name":"chain","url":"interfaces/constructoroptions.html#chain","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConstructorOptions"},{"id":858,"kind":1024,"name":"identityPublicKeychain","url":"interfaces/constructoroptions.html#identitypublickeychain","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConstructorOptions"},{"id":859,"kind":1024,"name":"bitcoinPublicKeychain","url":"interfaces/constructoroptions.html#bitcoinpublickeychain","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConstructorOptions"},{"id":860,"kind":1024,"name":"firstBitcoinAddress","url":"interfaces/constructoroptions.html#firstbitcoinaddress","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConstructorOptions"},{"id":861,"kind":1024,"name":"identityKeypairs","url":"interfaces/constructoroptions.html#identitykeypairs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConstructorOptions"},{"id":862,"kind":1024,"name":"identityAddresses","url":"interfaces/constructoroptions.html#identityaddresses","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConstructorOptions"},{"id":863,"kind":1024,"name":"encryptedBackupPhrase","url":"interfaces/constructoroptions.html#encryptedbackupphrase","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConstructorOptions"},{"id":864,"kind":1024,"name":"identities","url":"interfaces/constructoroptions.html#identities","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConstructorOptions"},{"id":865,"kind":1024,"name":"configPrivateKey","url":"interfaces/constructoroptions.html#configprivatekey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConstructorOptions"},{"id":866,"kind":1024,"name":"stacksPrivateKey","url":"interfaces/constructoroptions.html#stacksprivatekey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConstructorOptions"},{"id":867,"kind":1024,"name":"walletConfig","url":"interfaces/constructoroptions.html#walletconfig","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConstructorOptions"},{"id":868,"kind":128,"name":"Wallet","url":"classes/wallet.html","classes":"tsd-kind-class"},{"id":869,"kind":1024,"name":"chain","url":"classes/wallet.html#chain","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Wallet"},{"id":870,"kind":1024,"name":"encryptedBackupPhrase","url":"classes/wallet.html#encryptedbackupphrase","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Wallet"},{"id":871,"kind":1024,"name":"bitcoinPublicKeychain","url":"classes/wallet.html#bitcoinpublickeychain","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Wallet"},{"id":872,"kind":1024,"name":"firstBitcoinAddress","url":"classes/wallet.html#firstbitcoinaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Wallet"},{"id":873,"kind":1024,"name":"identityKeypairs","url":"classes/wallet.html#identitykeypairs","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Wallet"},{"id":874,"kind":1024,"name":"identityAddresses","url":"classes/wallet.html#identityaddresses","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Wallet"},{"id":875,"kind":1024,"name":"identityPublicKeychain","url":"classes/wallet.html#identitypublickeychain","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Wallet"},{"id":876,"kind":1024,"name":"identities","url":"classes/wallet.html#identities","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Wallet"},{"id":877,"kind":1024,"name":"configPrivateKey","url":"classes/wallet.html#configprivatekey","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Wallet"},{"id":878,"kind":1024,"name":"stacksPrivateKey","url":"classes/wallet.html#stacksprivatekey","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Wallet"},{"id":879,"kind":1024,"name":"walletConfig","url":"classes/wallet.html#walletconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Wallet"},{"id":880,"kind":512,"name":"constructor","url":"classes/wallet.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Wallet"},{"id":881,"kind":2048,"name":"generateFactory","url":"classes/wallet.html#generatefactory","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Wallet"},{"id":882,"kind":2048,"name":"generate","url":"classes/wallet.html#generate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Wallet"},{"id":883,"kind":2048,"name":"generateStrong","url":"classes/wallet.html#generatestrong","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Wallet"},{"id":884,"kind":2048,"name":"restore","url":"classes/wallet.html#restore","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Wallet"},{"id":885,"kind":2048,"name":"createAccount","url":"classes/wallet.html#createaccount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Wallet"},{"id":886,"kind":2048,"name":"restoreIdentities","url":"classes/wallet.html#restoreidentities","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Wallet"},{"id":887,"kind":2048,"name":"createNewIdentity","url":"classes/wallet.html#createnewidentity","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Wallet"},{"id":888,"kind":2048,"name":"createGaiaConfig","url":"classes/wallet.html#creategaiaconfig","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Wallet"},{"id":889,"kind":2048,"name":"fetchConfig","url":"classes/wallet.html#fetchconfig","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Wallet"},{"id":890,"kind":2048,"name":"getOrCreateConfig","url":"classes/wallet.html#getorcreateconfig","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Wallet"},{"id":891,"kind":2048,"name":"updateConfig","url":"classes/wallet.html#updateconfig","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Wallet"},{"id":892,"kind":2048,"name":"updateConfigWithAuth","url":"classes/wallet.html#updateconfigwithauth","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Wallet"},{"id":893,"kind":2048,"name":"updateConfigForReuseWarning","url":"classes/wallet.html#updateconfigforreusewarning","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Wallet"},{"id":894,"kind":2048,"name":"getSigner","url":"classes/wallet.html#getsigner","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Wallet"},{"id":895,"kind":32,"name":"CONFIG_INDEX","url":"globals.html#config_index","classes":"tsd-kind-variable"},{"id":896,"kind":256,"name":"StacksNetwork","url":"interfaces/stacksnetwork.html","classes":"tsd-kind-interface"},{"id":897,"kind":1024,"name":"version","url":"interfaces/stacksnetwork.html#version","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksNetwork"},{"id":898,"kind":1024,"name":"chainId","url":"interfaces/stacksnetwork.html#chainid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksNetwork"},{"id":899,"kind":1024,"name":"coreApiUrl","url":"interfaces/stacksnetwork.html#coreapiurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksNetwork"},{"id":900,"kind":1024,"name":"broadcastEndpoint","url":"interfaces/stacksnetwork.html#broadcastendpoint","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksNetwork"},{"id":901,"kind":1024,"name":"transferFeeEstimateEndpoint","url":"interfaces/stacksnetwork.html#transferfeeestimateendpoint","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksNetwork"},{"id":902,"kind":1024,"name":"accountEndpoint","url":"interfaces/stacksnetwork.html#accountendpoint","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksNetwork"},{"id":903,"kind":1024,"name":"contractAbiEndpoint","url":"interfaces/stacksnetwork.html#contractabiendpoint","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksNetwork"},{"id":904,"kind":1024,"name":"readOnlyFunctionCallEndpoint","url":"interfaces/stacksnetwork.html#readonlyfunctioncallendpoint","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksNetwork"},{"id":905,"kind":1024,"name":"getBroadcastApiUrl","url":"interfaces/stacksnetwork.html#getbroadcastapiurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksNetwork"},{"id":906,"kind":65536,"name":"__type","url":"interfaces/stacksnetwork.html#getbroadcastapiurl.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"StacksNetwork.getBroadcastApiUrl"},{"id":907,"kind":1024,"name":"getTransferFeeEstimateApiUrl","url":"interfaces/stacksnetwork.html#gettransferfeeestimateapiurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksNetwork"},{"id":908,"kind":65536,"name":"__type","url":"interfaces/stacksnetwork.html#gettransferfeeestimateapiurl.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"StacksNetwork.getTransferFeeEstimateApiUrl"},{"id":909,"kind":1024,"name":"getAccountApiUrl","url":"interfaces/stacksnetwork.html#getaccountapiurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksNetwork"},{"id":910,"kind":65536,"name":"__type","url":"interfaces/stacksnetwork.html#getaccountapiurl.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"StacksNetwork.getAccountApiUrl"},{"id":911,"kind":1024,"name":"getAbiApiUrl","url":"interfaces/stacksnetwork.html#getabiapiurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksNetwork"},{"id":912,"kind":65536,"name":"__type","url":"interfaces/stacksnetwork.html#getabiapiurl.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"StacksNetwork.getAbiApiUrl"},{"id":913,"kind":1024,"name":"getReadOnlyFunctionCallApiUrl","url":"interfaces/stacksnetwork.html#getreadonlyfunctioncallapiurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksNetwork"},{"id":914,"kind":65536,"name":"__type","url":"interfaces/stacksnetwork.html#getreadonlyfunctioncallapiurl.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"StacksNetwork.getReadOnlyFunctionCallApiUrl"},{"id":915,"kind":1024,"name":"getNameInfo","url":"interfaces/stacksnetwork.html#getnameinfo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksNetwork"},{"id":916,"kind":65536,"name":"__type","url":"interfaces/stacksnetwork.html#getnameinfo.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"StacksNetwork.getNameInfo"},{"id":917,"kind":128,"name":"StacksMainnet","url":"classes/stacksmainnet.html","classes":"tsd-kind-class"},{"id":918,"kind":1024,"name":"version","url":"classes/stacksmainnet.html#version","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StacksMainnet"},{"id":919,"kind":1024,"name":"chainId","url":"classes/stacksmainnet.html#chainid","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StacksMainnet"},{"id":920,"kind":1024,"name":"coreApiUrl","url":"classes/stacksmainnet.html#coreapiurl","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StacksMainnet"},{"id":921,"kind":1024,"name":"broadcastEndpoint","url":"classes/stacksmainnet.html#broadcastendpoint","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StacksMainnet"},{"id":922,"kind":1024,"name":"transferFeeEstimateEndpoint","url":"classes/stacksmainnet.html#transferfeeestimateendpoint","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StacksMainnet"},{"id":923,"kind":1024,"name":"accountEndpoint","url":"classes/stacksmainnet.html#accountendpoint","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StacksMainnet"},{"id":924,"kind":1024,"name":"contractAbiEndpoint","url":"classes/stacksmainnet.html#contractabiendpoint","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StacksMainnet"},{"id":925,"kind":1024,"name":"readOnlyFunctionCallEndpoint","url":"classes/stacksmainnet.html#readonlyfunctioncallendpoint","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StacksMainnet"},{"id":926,"kind":2048,"name":"getBroadcastApiUrl","url":"classes/stacksmainnet.html#getbroadcastapiurl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksMainnet"},{"id":927,"kind":2048,"name":"getTransferFeeEstimateApiUrl","url":"classes/stacksmainnet.html#gettransferfeeestimateapiurl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksMainnet"},{"id":928,"kind":2048,"name":"getAccountApiUrl","url":"classes/stacksmainnet.html#getaccountapiurl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksMainnet"},{"id":929,"kind":2048,"name":"getAbiApiUrl","url":"classes/stacksmainnet.html#getabiapiurl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksMainnet"},{"id":930,"kind":2048,"name":"getReadOnlyFunctionCallApiUrl","url":"classes/stacksmainnet.html#getreadonlyfunctioncallapiurl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksMainnet"},{"id":931,"kind":2048,"name":"getNameInfo","url":"classes/stacksmainnet.html#getnameinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksMainnet"},{"id":932,"kind":128,"name":"StacksTestnet","url":"classes/stackstestnet.html","classes":"tsd-kind-class"},{"id":933,"kind":1024,"name":"version","url":"classes/stackstestnet.html#version","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"StacksTestnet"},{"id":934,"kind":1024,"name":"chainId","url":"classes/stackstestnet.html#chainid","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"StacksTestnet"},{"id":935,"kind":1024,"name":"coreApiUrl","url":"classes/stackstestnet.html#coreapiurl","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"StacksTestnet"},{"id":936,"kind":1024,"name":"broadcastEndpoint","url":"classes/stackstestnet.html#broadcastendpoint","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StacksTestnet"},{"id":937,"kind":1024,"name":"transferFeeEstimateEndpoint","url":"classes/stackstestnet.html#transferfeeestimateendpoint","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StacksTestnet"},{"id":938,"kind":1024,"name":"accountEndpoint","url":"classes/stackstestnet.html#accountendpoint","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StacksTestnet"},{"id":939,"kind":1024,"name":"contractAbiEndpoint","url":"classes/stackstestnet.html#contractabiendpoint","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StacksTestnet"},{"id":940,"kind":1024,"name":"readOnlyFunctionCallEndpoint","url":"classes/stackstestnet.html#readonlyfunctioncallendpoint","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StacksTestnet"},{"id":941,"kind":2048,"name":"getBroadcastApiUrl","url":"classes/stackstestnet.html#getbroadcastapiurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StacksTestnet"},{"id":942,"kind":2048,"name":"getTransferFeeEstimateApiUrl","url":"classes/stackstestnet.html#gettransferfeeestimateapiurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StacksTestnet"},{"id":943,"kind":2048,"name":"getAccountApiUrl","url":"classes/stackstestnet.html#getaccountapiurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StacksTestnet"},{"id":944,"kind":2048,"name":"getAbiApiUrl","url":"classes/stackstestnet.html#getabiapiurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StacksTestnet"},{"id":945,"kind":2048,"name":"getReadOnlyFunctionCallApiUrl","url":"classes/stackstestnet.html#getreadonlyfunctioncallapiurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StacksTestnet"},{"id":946,"kind":2048,"name":"getNameInfo","url":"classes/stackstestnet.html#getnameinfo","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StacksTestnet"},{"id":947,"kind":128,"name":"StacksMocknet","url":"classes/stacksmocknet.html","classes":"tsd-kind-class"},{"id":948,"kind":1024,"name":"version","url":"classes/stacksmocknet.html#version","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"StacksMocknet"},{"id":949,"kind":1024,"name":"chainId","url":"classes/stacksmocknet.html#chainid","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"StacksMocknet"},{"id":950,"kind":1024,"name":"coreApiUrl","url":"classes/stacksmocknet.html#coreapiurl","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"StacksMocknet"},{"id":951,"kind":1024,"name":"broadcastEndpoint","url":"classes/stacksmocknet.html#broadcastendpoint","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StacksMocknet"},{"id":952,"kind":1024,"name":"transferFeeEstimateEndpoint","url":"classes/stacksmocknet.html#transferfeeestimateendpoint","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StacksMocknet"},{"id":953,"kind":1024,"name":"accountEndpoint","url":"classes/stacksmocknet.html#accountendpoint","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StacksMocknet"},{"id":954,"kind":1024,"name":"contractAbiEndpoint","url":"classes/stacksmocknet.html#contractabiendpoint","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StacksMocknet"},{"id":955,"kind":1024,"name":"readOnlyFunctionCallEndpoint","url":"classes/stacksmocknet.html#readonlyfunctioncallendpoint","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StacksMocknet"},{"id":956,"kind":2048,"name":"getBroadcastApiUrl","url":"classes/stacksmocknet.html#getbroadcastapiurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StacksMocknet"},{"id":957,"kind":2048,"name":"getTransferFeeEstimateApiUrl","url":"classes/stacksmocknet.html#gettransferfeeestimateapiurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StacksMocknet"},{"id":958,"kind":2048,"name":"getAccountApiUrl","url":"classes/stacksmocknet.html#getaccountapiurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StacksMocknet"},{"id":959,"kind":2048,"name":"getAbiApiUrl","url":"classes/stacksmocknet.html#getabiapiurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StacksMocknet"},{"id":960,"kind":2048,"name":"getReadOnlyFunctionCallApiUrl","url":"classes/stacksmocknet.html#getreadonlyfunctioncallapiurl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StacksMocknet"},{"id":961,"kind":2048,"name":"getNameInfo","url":"classes/stacksmocknet.html#getnameinfo","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StacksMocknet"},{"id":962,"kind":64,"name":"signProfileToken","url":"globals.html#signprofiletoken","classes":"tsd-kind-function"},{"id":963,"kind":64,"name":"wrapProfileToken","url":"globals.html#wrapprofiletoken","classes":"tsd-kind-function"},{"id":964,"kind":64,"name":"verifyProfileToken","url":"globals.html#verifyprofiletoken","classes":"tsd-kind-function"},{"id":965,"kind":64,"name":"extractProfile","url":"globals.html#extractprofile","classes":"tsd-kind-function"},{"id":966,"kind":64,"name":"getName","url":"globals.html#getname","classes":"tsd-kind-function"},{"id":967,"kind":1024,"name":"_profile","url":"classes/profile.html#_profile","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Profile"},{"id":968,"kind":65536,"name":"__type","url":"classes/profile.html#_profile.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Profile._profile"},{"id":969,"kind":512,"name":"constructor","url":"classes/profile.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Profile"},{"id":970,"kind":2048,"name":"toJSON","url":"classes/profile.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Profile"},{"id":971,"kind":2048,"name":"toToken","url":"classes/profile.html#totoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Profile"},{"id":972,"kind":2048,"name":"validateSchema","url":"classes/profile.html#validateschema","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Profile"},{"id":973,"kind":2048,"name":"fromToken","url":"classes/profile.html#fromtoken","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Profile"},{"id":974,"kind":2048,"name":"makeZoneFile","url":"classes/profile.html#makezonefile","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Profile"},{"id":975,"kind":2097152,"name":"schemaDefinition","url":"globals.html#schemadefinition","classes":"tsd-kind-object-literal"},{"id":976,"kind":32,"name":"type","url":"globals.html#schemadefinition.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"schemaDefinition"},{"id":977,"kind":2097152,"name":"properties","url":"globals.html#schemadefinition.properties","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"schemaDefinition"},{"id":978,"kind":2097152,"name":"@context","url":"globals.html#schemadefinition.properties._context","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"schemaDefinition.properties"},{"id":979,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties._context.type-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"schemaDefinition.properties.@context"},{"id":980,"kind":32,"name":"optional","url":"globals.html#schemadefinition.properties._context.optional","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"schemaDefinition.properties.@context"},{"id":981,"kind":2097152,"name":"@type","url":"globals.html#schemadefinition.properties._type","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"schemaDefinition.properties"},{"id":982,"kind":32,"name":"type","url":"globals.html#schemadefinition.properties._type.type-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"schemaDefinition.properties.@type"},{"id":983,"kind":2097152,"name":"personSchemaDefinition","url":"globals.html#personschemadefinition","classes":"tsd-kind-object-literal"},{"id":984,"kind":32,"name":"type","url":"globals.html#personschemadefinition.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition"},{"id":985,"kind":32,"name":"strict","url":"globals.html#personschemadefinition.strict","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition"},{"id":986,"kind":2097152,"name":"properties","url":"globals.html#personschemadefinition.properties","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition"},{"id":987,"kind":2097152,"name":"@context","url":"globals.html#personschemadefinition.properties._context","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties"},{"id":988,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties._context.type-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.@context"},{"id":989,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties._context.optional","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.@context"},{"id":990,"kind":2097152,"name":"@type","url":"globals.html#personschemadefinition.properties._type","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties"},{"id":991,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties._type.type-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.@type"},{"id":992,"kind":2097152,"name":"@id","url":"globals.html#personschemadefinition.properties._id","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties"},{"id":993,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties._id.type-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.@id"},{"id":994,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties._id.optional-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.@id"},{"id":995,"kind":2097152,"name":"name","url":"globals.html#personschemadefinition.properties.name-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties"},{"id":996,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.name-1.type-32","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.name"},{"id":997,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.name-1.optional-23","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.name"},{"id":998,"kind":2097152,"name":"givenName","url":"globals.html#personschemadefinition.properties.givenname","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties"},{"id":999,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.givenname.type-22","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.givenName"},{"id":1000,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.givenname.optional-17","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.givenName"},{"id":1001,"kind":2097152,"name":"familyName","url":"globals.html#personschemadefinition.properties.familyname","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties"},{"id":1002,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.familyname.type-21","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.familyName"},{"id":1003,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.familyname.optional-16","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.familyName"},{"id":1004,"kind":2097152,"name":"description","url":"globals.html#personschemadefinition.properties.description","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties"},{"id":1005,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.description.type-20","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.description"},{"id":1006,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.description.optional-15","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.description"},{"id":1007,"kind":2097152,"name":"image","url":"globals.html#personschemadefinition.properties.image","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties"},{"id":1008,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.image.type-23","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.image"},{"id":1009,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.image.optional-18","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.image"},{"id":1010,"kind":2097152,"name":"items","url":"globals.html#personschemadefinition.properties.image.items-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.image"},{"id":1011,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.image.items-1.type-24","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.image.items"},{"id":1012,"kind":2097152,"name":"properties","url":"globals.html#personschemadefinition.properties.image.items-1.properties-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.image.items"},{"id":1013,"kind":2097152,"name":"@type","url":"globals.html#personschemadefinition.properties.image.items-1.properties-3._type-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.image.items.properties"},{"id":1014,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.image.items-1.properties-3._type-3.type-25","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.image.items.properties.@type"},{"id":1015,"kind":2097152,"name":"name","url":"globals.html#personschemadefinition.properties.image.items-1.properties-3.name","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.image.items.properties"},{"id":1016,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.image.items-1.properties-3.name.type-27","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.image.items.properties.name"},{"id":1017,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.image.items-1.properties-3.name.optional-20","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.image.items.properties.name"},{"id":1018,"kind":2097152,"name":"contentUrl","url":"globals.html#personschemadefinition.properties.image.items-1.properties-3.contenturl","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.image.items.properties"},{"id":1019,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.image.items-1.properties-3.contenturl.type-26","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.image.items.properties.contentUrl"},{"id":1020,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.image.items-1.properties-3.contenturl.optional-19","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.image.items.properties.contentUrl"},{"id":1021,"kind":2097152,"name":"website","url":"globals.html#personschemadefinition.properties.website","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties"},{"id":1022,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.website.type-34","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.website"},{"id":1023,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.website.optional-25","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.website"},{"id":1024,"kind":2097152,"name":"items","url":"globals.html#personschemadefinition.properties.website.items-3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.website"},{"id":1025,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.website.items-3.type-35","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.website.items"},{"id":1026,"kind":2097152,"name":"properties","url":"globals.html#personschemadefinition.properties.website.items-3.properties-5","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.website.items"},{"id":1027,"kind":2097152,"name":"@type","url":"globals.html#personschemadefinition.properties.website.items-3.properties-5._type-5","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.website.items.properties"},{"id":1028,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.website.items-3.properties-5._type-5.type-36","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.website.items.properties.@type"},{"id":1029,"kind":2097152,"name":"url","url":"globals.html#personschemadefinition.properties.website.items-3.properties-5.url","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.website.items.properties"},{"id":1030,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.website.items-3.properties-5.url.type-37","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.website.items.properties.url"},{"id":1031,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.website.items-3.properties-5.url.optional-26","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.website.items.properties.url"},{"id":1032,"kind":2097152,"name":"account","url":"globals.html#personschemadefinition.properties.account","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties"},{"id":1033,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.account.type-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account"},{"id":1034,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.account.optional-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account"},{"id":1035,"kind":2097152,"name":"items","url":"globals.html#personschemadefinition.properties.account.items","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account"},{"id":1036,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.account.items.type-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items"},{"id":1037,"kind":2097152,"name":"properties","url":"globals.html#personschemadefinition.properties.account.items.properties-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items"},{"id":1038,"kind":2097152,"name":"@type","url":"globals.html#personschemadefinition.properties.account.items.properties-1._type-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties"},{"id":1039,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.account.items.properties-1._type-1.type-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties.@type"},{"id":1040,"kind":2097152,"name":"service","url":"globals.html#personschemadefinition.properties.account.items.properties-1.service","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties"},{"id":1041,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.account.items.properties-1.service.type-12","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties.service"},{"id":1042,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.account.items.properties-1.service.optional-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties.service"},{"id":1043,"kind":2097152,"name":"identifier","url":"globals.html#personschemadefinition.properties.account.items.properties-1.identifier","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties"},{"id":1044,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.account.items.properties-1.identifier.type-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties.identifier"},{"id":1045,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.account.items.properties-1.identifier.optional-3","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties.identifier"},{"id":1046,"kind":2097152,"name":"proofType","url":"globals.html#personschemadefinition.properties.account.items.properties-1.prooftype","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties"},{"id":1047,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.account.items.properties-1.prooftype.type-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties.proofType"},{"id":1048,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.account.items.properties-1.prooftype.optional-6","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties.proofType"},{"id":1049,"kind":2097152,"name":"proofUrl","url":"globals.html#personschemadefinition.properties.account.items.properties-1.proofurl","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties"},{"id":1050,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.account.items.properties-1.proofurl.type-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties.proofUrl"},{"id":1051,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.account.items.properties-1.proofurl.optional-7","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties.proofUrl"},{"id":1052,"kind":2097152,"name":"proofMessage","url":"globals.html#personschemadefinition.properties.account.items.properties-1.proofmessage","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties"},{"id":1053,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.account.items.properties-1.proofmessage.type-8","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties.proofMessage"},{"id":1054,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.account.items.properties-1.proofmessage.optional-4","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties.proofMessage"},{"id":1055,"kind":2097152,"name":"proofSignature","url":"globals.html#personschemadefinition.properties.account.items.properties-1.proofsignature","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties"},{"id":1056,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.account.items.properties-1.proofsignature.type-9","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties.proofSignature"},{"id":1057,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.account.items.properties-1.proofsignature.optional-5","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.account.items.properties.proofSignature"},{"id":1058,"kind":2097152,"name":"worksFor","url":"globals.html#personschemadefinition.properties.worksfor","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties"},{"id":1059,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.worksfor.type-38","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.worksFor"},{"id":1060,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.worksfor.optional-27","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.worksFor"},{"id":1061,"kind":2097152,"name":"items","url":"globals.html#personschemadefinition.properties.worksfor.items-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.worksFor"},{"id":1062,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.worksfor.items-4.type-39","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.worksFor.items"},{"id":1063,"kind":2097152,"name":"properties","url":"globals.html#personschemadefinition.properties.worksfor.items-4.properties-6","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.worksFor.items"},{"id":1064,"kind":2097152,"name":"@type","url":"globals.html#personschemadefinition.properties.worksfor.items-4.properties-6._type-6","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.worksFor.items.properties"},{"id":1065,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.worksfor.items-4.properties-6._type-6.type-41","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.worksFor.items.properties.@type"},{"id":1066,"kind":2097152,"name":"@id","url":"globals.html#personschemadefinition.properties.worksfor.items-4.properties-6._id-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.worksFor.items.properties"},{"id":1067,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.worksfor.items-4.properties-6._id-2.type-40","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.worksFor.items.properties.@id"},{"id":1068,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.worksfor.items-4.properties-6._id-2.optional-28","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.worksFor.items.properties.@id"},{"id":1069,"kind":2097152,"name":"knows","url":"globals.html#personschemadefinition.properties.knows","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties"},{"id":1070,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.knows.type-28","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.knows"},{"id":1071,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.knows.optional-21","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.knows"},{"id":1072,"kind":2097152,"name":"items","url":"globals.html#personschemadefinition.properties.knows.items-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.knows"},{"id":1073,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.knows.items-2.type-29","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.knows.items"},{"id":1074,"kind":2097152,"name":"properties","url":"globals.html#personschemadefinition.properties.knows.items-2.properties-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.knows.items"},{"id":1075,"kind":2097152,"name":"@type","url":"globals.html#personschemadefinition.properties.knows.items-2.properties-4._type-4","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.knows.items.properties"},{"id":1076,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.knows.items-2.properties-4._type-4.type-31","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.knows.items.properties.@type"},{"id":1077,"kind":2097152,"name":"@id","url":"globals.html#personschemadefinition.properties.knows.items-2.properties-4._id-1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.knows.items.properties"},{"id":1078,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.knows.items-2.properties-4._id-1.type-30","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.knows.items.properties.@id"},{"id":1079,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.knows.items-2.properties-4._id-1.optional-22","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.knows.items.properties.@id"},{"id":1080,"kind":2097152,"name":"address","url":"globals.html#personschemadefinition.properties.address","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties"},{"id":1081,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.address.type-13","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address"},{"id":1082,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.address.optional-9","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address"},{"id":1083,"kind":2097152,"name":"properties","url":"globals.html#personschemadefinition.properties.address.properties-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address"},{"id":1084,"kind":2097152,"name":"@type","url":"globals.html#personschemadefinition.properties.address.properties-2._type-2","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address.properties"},{"id":1085,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.address.properties-2._type-2.type-14","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address.properties.@type"},{"id":1086,"kind":2097152,"name":"streetAddress","url":"globals.html#personschemadefinition.properties.address.properties-2.streetaddress","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address.properties"},{"id":1087,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.address.properties-2.streetaddress.type-18","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address.properties.streetAddress"},{"id":1088,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.address.properties-2.streetaddress.optional-13","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address.properties.streetAddress"},{"id":1089,"kind":2097152,"name":"addressLocality","url":"globals.html#personschemadefinition.properties.address.properties-2.addresslocality","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address.properties"},{"id":1090,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.address.properties-2.addresslocality.type-16","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address.properties.addressLocality"},{"id":1091,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.address.properties-2.addresslocality.optional-11","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address.properties.addressLocality"},{"id":1092,"kind":2097152,"name":"postalCode","url":"globals.html#personschemadefinition.properties.address.properties-2.postalcode","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address.properties"},{"id":1093,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.address.properties-2.postalcode.type-17","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address.properties.postalCode"},{"id":1094,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.address.properties-2.postalcode.optional-12","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address.properties.postalCode"},{"id":1095,"kind":2097152,"name":"addressCountry","url":"globals.html#personschemadefinition.properties.address.properties-2.addresscountry","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address.properties"},{"id":1096,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.address.properties-2.addresscountry.type-15","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address.properties.addressCountry"},{"id":1097,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.address.properties-2.addresscountry.optional-10","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.address.properties.addressCountry"},{"id":1098,"kind":2097152,"name":"birthDate","url":"globals.html#personschemadefinition.properties.birthdate","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties"},{"id":1099,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.birthdate.type-19","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.birthDate"},{"id":1100,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.birthdate.optional-14","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.birthDate"},{"id":1101,"kind":2097152,"name":"taxID","url":"globals.html#personschemadefinition.properties.taxid","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties"},{"id":1102,"kind":32,"name":"type","url":"globals.html#personschemadefinition.properties.taxid.type-33","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.taxID"},{"id":1103,"kind":32,"name":"optional","url":"globals.html#personschemadefinition.properties.taxid.optional-24","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"personSchemaDefinition.properties.taxID"},{"id":1104,"kind":4194304,"name":"PutFileContent","url":"globals.html#putfilecontent","classes":"tsd-kind-type-alias"},{"id":1105,"kind":256,"name":"GaiaHubConfig","url":"interfaces/gaiahubconfig.html","classes":"tsd-kind-interface"},{"id":1106,"kind":1024,"name":"address","url":"interfaces/gaiahubconfig.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GaiaHubConfig"},{"id":1107,"kind":1024,"name":"url_prefix","url":"interfaces/gaiahubconfig.html#url_prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GaiaHubConfig"},{"id":1108,"kind":1024,"name":"token","url":"interfaces/gaiahubconfig.html#token","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GaiaHubConfig"},{"id":1109,"kind":1024,"name":"max_file_upload_size_megabytes","url":"interfaces/gaiahubconfig.html#max_file_upload_size_megabytes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GaiaHubConfig"},{"id":1110,"kind":1024,"name":"server","url":"interfaces/gaiahubconfig.html#server","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GaiaHubConfig"},{"id":1111,"kind":256,"name":"UploadResponse","url":"interfaces/uploadresponse.html","classes":"tsd-kind-interface"},{"id":1112,"kind":1024,"name":"publicURL","url":"interfaces/uploadresponse.html#publicurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UploadResponse"},{"id":1113,"kind":1024,"name":"etag","url":"interfaces/uploadresponse.html#etag","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UploadResponse"},{"id":1114,"kind":64,"name":"deleteFromGaiaHub","url":"globals.html#deletefromgaiahub","classes":"tsd-kind-function"},{"id":1115,"kind":64,"name":"getGaiaErrorResponse","url":"globals.html#getgaiaerrorresponse","classes":"tsd-kind-function"},{"id":1116,"kind":64,"name":"getBlockstackErrorFromResponse","url":"globals.html#getblockstackerrorfromresponse","classes":"tsd-kind-function"},{"id":1117,"kind":256,"name":"PutFileOptions","url":"interfaces/putfileoptions.html","classes":"tsd-kind-interface"},{"id":1118,"kind":1024,"name":"contentType","url":"interfaces/putfileoptions.html#contenttype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PutFileOptions"},{"id":1119,"kind":1024,"name":"encrypt","url":"interfaces/putfileoptions.html#encrypt","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PutFileOptions"},{"id":1120,"kind":1024,"name":"sign","url":"interfaces/putfileoptions.html#sign","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"PutFileOptions"},{"id":1121,"kind":1024,"name":"cipherTextEncoding","url":"interfaces/putfileoptions.html#ciphertextencoding","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"PutFileOptions"},{"id":1122,"kind":1024,"name":"wasString","url":"interfaces/putfileoptions.html#wasstring","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"PutFileOptions"},{"id":1123,"kind":256,"name":"GetFileOptions","url":"interfaces/getfileoptions.html","classes":"tsd-kind-interface"},{"id":1124,"kind":1024,"name":"decrypt","url":"interfaces/getfileoptions.html#decrypt","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GetFileOptions"},{"id":1125,"kind":1024,"name":"verify","url":"interfaces/getfileoptions.html#verify","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GetFileOptions"},{"id":1126,"kind":1024,"name":"username","url":"interfaces/getfileoptions.html#username","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"GetFileOptions"},{"id":1127,"kind":1024,"name":"app","url":"interfaces/getfileoptions.html#app","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"GetFileOptions"},{"id":1128,"kind":1024,"name":"zoneFileLookupURL","url":"interfaces/getfileoptions.html#zonefilelookupurl","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"GetFileOptions"},{"id":1129,"kind":256,"name":"GetFileUrlOptions","url":"interfaces/getfileurloptions.html","classes":"tsd-kind-interface"},{"id":1130,"kind":1024,"name":"username","url":"interfaces/getfileurloptions.html#username","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GetFileUrlOptions"},{"id":1131,"kind":1024,"name":"app","url":"interfaces/getfileurloptions.html#app","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GetFileUrlOptions"},{"id":1132,"kind":1024,"name":"zoneFileLookupURL","url":"interfaces/getfileurloptions.html#zonefilelookupurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GetFileUrlOptions"},{"id":1133,"kind":256,"name":"StorageOptions","url":"interfaces/storageoptions.html","classes":"tsd-kind-interface"},{"id":1134,"kind":1024,"name":"userSession","url":"interfaces/storageoptions.html#usersession","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StorageOptions"},{"id":1135,"kind":128,"name":"Storage","url":"classes/storage.html","classes":"tsd-kind-class"},{"id":1136,"kind":1024,"name":"userSession","url":"classes/storage.html#usersession","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Storage"},{"id":1137,"kind":512,"name":"constructor","url":"classes/storage.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Storage"},{"id":1138,"kind":2048,"name":"getFile","url":"classes/storage.html#getfile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Storage"},{"id":1139,"kind":2048,"name":"getUserAppFileUrl","url":"classes/storage.html#getuserappfileurl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Storage"},{"id":1140,"kind":2048,"name":"getGaiaAddress","url":"classes/storage.html#getgaiaaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Storage"},{"id":1141,"kind":2048,"name":"getFileUrl","url":"classes/storage.html#getfileurl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Storage"},{"id":1142,"kind":2048,"name":"getFileContents","url":"classes/storage.html#getfilecontents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Storage"},{"id":1143,"kind":2048,"name":"getFileSignedUnencrypted","url":"classes/storage.html#getfilesignedunencrypted","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Storage"},{"id":1144,"kind":2048,"name":"handleSignedEncryptedContents","url":"classes/storage.html#handlesignedencryptedcontents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Storage"},{"id":1145,"kind":2048,"name":"putFile","url":"classes/storage.html#putfile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Storage"},{"id":1146,"kind":2048,"name":"deleteFile","url":"classes/storage.html#deletefile","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Storage"},{"id":1147,"kind":2048,"name":"getAppBucketUrl","url":"classes/storage.html#getappbucketurl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Storage"},{"id":1148,"kind":2048,"name":"listFiles","url":"classes/storage.html#listfiles","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Storage"},{"id":1149,"kind":32,"name":"SIGNATURE_FILE_SUFFIX","url":"globals.html#signature_file_suffix","classes":"tsd-kind-variable"},{"id":1150,"kind":64,"name":"isRecoverableGaiaError","url":"globals.html#isrecoverablegaiaerror","classes":"tsd-kind-function"},{"id":1151,"kind":4,"name":"StacksMessageType","url":"enums/stacksmessagetype.html","classes":"tsd-kind-enum"},{"id":1152,"kind":16,"name":"Address","url":"enums/stacksmessagetype.html#address","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"StacksMessageType"},{"id":1153,"kind":16,"name":"Principal","url":"enums/stacksmessagetype.html#principal","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"StacksMessageType"},{"id":1154,"kind":16,"name":"LengthPrefixedString","url":"enums/stacksmessagetype.html#lengthprefixedstring","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"StacksMessageType"},{"id":1155,"kind":16,"name":"MemoString","url":"enums/stacksmessagetype.html#memostring","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"StacksMessageType"},{"id":1156,"kind":16,"name":"AssetInfo","url":"enums/stacksmessagetype.html#assetinfo","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"StacksMessageType"},{"id":1157,"kind":16,"name":"PostCondition","url":"enums/stacksmessagetype.html#postcondition","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"StacksMessageType"},{"id":1158,"kind":16,"name":"PublicKey","url":"enums/stacksmessagetype.html#publickey","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"StacksMessageType"},{"id":1159,"kind":16,"name":"LengthPrefixedList","url":"enums/stacksmessagetype.html#lengthprefixedlist","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"StacksMessageType"},{"id":1160,"kind":16,"name":"Payload","url":"enums/stacksmessagetype.html#payload","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"StacksMessageType"},{"id":1161,"kind":16,"name":"MessageSignature","url":"enums/stacksmessagetype.html#messagesignature","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"StacksMessageType"},{"id":1162,"kind":16,"name":"TransactionAuthField","url":"enums/stacksmessagetype.html#transactionauthfield","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"StacksMessageType"},{"id":1163,"kind":4,"name":"PayloadType","url":"enums/payloadtype.html","classes":"tsd-kind-enum"},{"id":1164,"kind":16,"name":"TokenTransfer","url":"enums/payloadtype.html#tokentransfer","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PayloadType"},{"id":1165,"kind":16,"name":"SmartContract","url":"enums/payloadtype.html#smartcontract","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PayloadType"},{"id":1166,"kind":16,"name":"ContractCall","url":"enums/payloadtype.html#contractcall","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PayloadType"},{"id":1167,"kind":16,"name":"PoisonMicroblock","url":"enums/payloadtype.html#poisonmicroblock","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PayloadType"},{"id":1168,"kind":16,"name":"Coinbase","url":"enums/payloadtype.html#coinbase","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PayloadType"},{"id":1169,"kind":4,"name":"AnchorMode","url":"enums/anchormode.html","classes":"tsd-kind-enum"},{"id":1170,"kind":16,"name":"OnChainOnly","url":"enums/anchormode.html#onchainonly","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorMode"},{"id":1171,"kind":16,"name":"OffChainOnly","url":"enums/anchormode.html#offchainonly","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorMode"},{"id":1172,"kind":16,"name":"Any","url":"enums/anchormode.html#any","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorMode"},{"id":1173,"kind":4,"name":"PostConditionMode","url":"enums/postconditionmode.html","classes":"tsd-kind-enum"},{"id":1174,"kind":16,"name":"Allow","url":"enums/postconditionmode.html#allow","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PostConditionMode"},{"id":1175,"kind":16,"name":"Deny","url":"enums/postconditionmode.html#deny","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PostConditionMode"},{"id":1176,"kind":4,"name":"PostConditionType","url":"enums/postconditiontype.html","classes":"tsd-kind-enum"},{"id":1177,"kind":16,"name":"STX","url":"enums/postconditiontype.html#stx","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PostConditionType"},{"id":1178,"kind":16,"name":"Fungible","url":"enums/postconditiontype.html#fungible","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PostConditionType"},{"id":1179,"kind":16,"name":"NonFungible","url":"enums/postconditiontype.html#nonfungible","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PostConditionType"},{"id":1180,"kind":4,"name":"AuthType","url":"enums/authtype.html","classes":"tsd-kind-enum"},{"id":1181,"kind":16,"name":"Standard","url":"enums/authtype.html#standard","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AuthType"},{"id":1182,"kind":16,"name":"Sponsored","url":"enums/authtype.html#sponsored","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AuthType"},{"id":1183,"kind":4,"name":"AddressHashMode","url":"enums/addresshashmode.html","classes":"tsd-kind-enum"},{"id":1184,"kind":16,"name":"SerializeP2PKH","url":"enums/addresshashmode.html#serializep2pkh","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AddressHashMode"},{"id":1185,"kind":16,"name":"SerializeP2SH","url":"enums/addresshashmode.html#serializep2sh","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AddressHashMode"},{"id":1186,"kind":16,"name":"SerializeP2WPKH","url":"enums/addresshashmode.html#serializep2wpkh","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AddressHashMode"},{"id":1187,"kind":16,"name":"SerializeP2WSH","url":"enums/addresshashmode.html#serializep2wsh","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AddressHashMode"},{"id":1188,"kind":4,"name":"AddressVersion","url":"enums/addressversion.html","classes":"tsd-kind-enum"},{"id":1189,"kind":16,"name":"MainnetSingleSig","url":"enums/addressversion.html#mainnetsinglesig","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AddressVersion"},{"id":1190,"kind":16,"name":"MainnetMultiSig","url":"enums/addressversion.html#mainnetmultisig","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AddressVersion"},{"id":1191,"kind":16,"name":"TestnetSingleSig","url":"enums/addressversion.html#testnetsinglesig","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AddressVersion"},{"id":1192,"kind":16,"name":"TestnetMultiSig","url":"enums/addressversion.html#testnetmultisig","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AddressVersion"},{"id":1193,"kind":4,"name":"PubKeyEncoding","url":"enums/pubkeyencoding.html","classes":"tsd-kind-enum"},{"id":1194,"kind":16,"name":"Compressed","url":"enums/pubkeyencoding.html#compressed","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PubKeyEncoding"},{"id":1195,"kind":16,"name":"Uncompressed","url":"enums/pubkeyencoding.html#uncompressed","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PubKeyEncoding"},{"id":1196,"kind":4,"name":"FungibleConditionCode","url":"enums/fungibleconditioncode.html","classes":"tsd-kind-enum"},{"id":1197,"kind":16,"name":"Equal","url":"enums/fungibleconditioncode.html#equal","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FungibleConditionCode"},{"id":1198,"kind":16,"name":"Greater","url":"enums/fungibleconditioncode.html#greater","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FungibleConditionCode"},{"id":1199,"kind":16,"name":"GreaterEqual","url":"enums/fungibleconditioncode.html#greaterequal","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FungibleConditionCode"},{"id":1200,"kind":16,"name":"Less","url":"enums/fungibleconditioncode.html#less","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FungibleConditionCode"},{"id":1201,"kind":16,"name":"LessEqual","url":"enums/fungibleconditioncode.html#lessequal","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FungibleConditionCode"},{"id":1202,"kind":4,"name":"NonFungibleConditionCode","url":"enums/nonfungibleconditioncode.html","classes":"tsd-kind-enum"},{"id":1203,"kind":16,"name":"DoesNotOwn","url":"enums/nonfungibleconditioncode.html#doesnotown","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"NonFungibleConditionCode"},{"id":1204,"kind":16,"name":"Owns","url":"enums/nonfungibleconditioncode.html#owns","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"NonFungibleConditionCode"},{"id":1205,"kind":4,"name":"PostConditionPrincipalID","url":"enums/postconditionprincipalid.html","classes":"tsd-kind-enum"},{"id":1206,"kind":16,"name":"Origin","url":"enums/postconditionprincipalid.html#origin","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PostConditionPrincipalID"},{"id":1207,"kind":16,"name":"Standard","url":"enums/postconditionprincipalid.html#standard","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PostConditionPrincipalID"},{"id":1208,"kind":16,"name":"Contract","url":"enums/postconditionprincipalid.html#contract","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PostConditionPrincipalID"},{"id":1209,"kind":4,"name":"AssetType","url":"enums/assettype.html","classes":"tsd-kind-enum"},{"id":1210,"kind":16,"name":"STX","url":"enums/assettype.html#stx","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AssetType"},{"id":1211,"kind":16,"name":"Fungible","url":"enums/assettype.html#fungible","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AssetType"},{"id":1212,"kind":16,"name":"NonFungible","url":"enums/assettype.html#nonfungible","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AssetType"},{"id":1213,"kind":4,"name":"TxRejectedReason","url":"enums/txrejectedreason.html","classes":"tsd-kind-enum"},{"id":1214,"kind":16,"name":"Serialization","url":"enums/txrejectedreason.html#serialization","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1215,"kind":16,"name":"Deserialization","url":"enums/txrejectedreason.html#deserialization","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1216,"kind":16,"name":"SignatureValidation","url":"enums/txrejectedreason.html#signaturevalidation","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1217,"kind":16,"name":"FeeTooLow","url":"enums/txrejectedreason.html#feetoolow","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1218,"kind":16,"name":"BadNonce","url":"enums/txrejectedreason.html#badnonce","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1219,"kind":16,"name":"NotEnoughFunds","url":"enums/txrejectedreason.html#notenoughfunds","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1220,"kind":16,"name":"NoSuchContract","url":"enums/txrejectedreason.html#nosuchcontract","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1221,"kind":16,"name":"NoSuchPublicFunction","url":"enums/txrejectedreason.html#nosuchpublicfunction","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1222,"kind":16,"name":"BadFunctionArgument","url":"enums/txrejectedreason.html#badfunctionargument","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1223,"kind":16,"name":"ContractAlreadyExists","url":"enums/txrejectedreason.html#contractalreadyexists","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1224,"kind":16,"name":"PoisonMicroblocksDoNotConflict","url":"enums/txrejectedreason.html#poisonmicroblocksdonotconflict","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1225,"kind":16,"name":"PoisonMicroblockHasUnknownPubKeyHash","url":"enums/txrejectedreason.html#poisonmicroblockhasunknownpubkeyhash","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1226,"kind":16,"name":"PoisonMicroblockIsInvalid","url":"enums/txrejectedreason.html#poisonmicroblockisinvalid","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1227,"kind":16,"name":"BadAddressVersionByte","url":"enums/txrejectedreason.html#badaddressversionbyte","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1228,"kind":16,"name":"NoCoinbaseViaMempool","url":"enums/txrejectedreason.html#nocoinbaseviamempool","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1229,"kind":16,"name":"ServerFailureNoSuchChainTip","url":"enums/txrejectedreason.html#serverfailurenosuchchaintip","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1230,"kind":16,"name":"ServerFailureDatabase","url":"enums/txrejectedreason.html#serverfailuredatabase","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1231,"kind":16,"name":"ServerFailureOther","url":"enums/txrejectedreason.html#serverfailureother","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TxRejectedReason"},{"id":1232,"kind":32,"name":"DEFAULT_CHAIN_ID","url":"globals.html#default_chain_id","classes":"tsd-kind-variable"},{"id":1233,"kind":32,"name":"MAX_STRING_LENGTH_BYTES","url":"globals.html#max_string_length_bytes","classes":"tsd-kind-variable"},{"id":1234,"kind":32,"name":"CLARITY_INT_SIZE","url":"globals.html#clarity_int_size","classes":"tsd-kind-variable"},{"id":1235,"kind":32,"name":"COINBASE_BUFFER_LENGTH_BYTES","url":"globals.html#coinbase_buffer_length_bytes","classes":"tsd-kind-variable"},{"id":1236,"kind":32,"name":"RECOVERABLE_ECDSA_SIG_LENGTH_BYTES","url":"globals.html#recoverable_ecdsa_sig_length_bytes","classes":"tsd-kind-variable"},{"id":1237,"kind":32,"name":"COMPRESSED_PUBKEY_LENGTH_BYTES","url":"globals.html#compressed_pubkey_length_bytes","classes":"tsd-kind-variable"},{"id":1238,"kind":32,"name":"UNCOMPRESSED_PUBKEY_LENGTH_BYTES","url":"globals.html#uncompressed_pubkey_length_bytes","classes":"tsd-kind-variable"},{"id":1239,"kind":32,"name":"MEMO_MAX_LENGTH_BYTES","url":"globals.html#memo_max_length_bytes","classes":"tsd-kind-variable"},{"id":1240,"kind":32,"name":"DEFAULT_CORE_NODE_API_URL","url":"globals.html#default_core_node_api_url","classes":"tsd-kind-variable"},{"id":1241,"kind":32,"name":"DEFAULT_TRANSACTION_VERSION","url":"globals.html#default_transaction_version","classes":"tsd-kind-variable"},{"id":1242,"kind":4194304,"name":"SingleSigHashMode","url":"globals.html#singlesighashmode","classes":"tsd-kind-type-alias"},{"id":1243,"kind":4194304,"name":"MultiSigHashMode","url":"globals.html#multisighashmode","classes":"tsd-kind-type-alias"},{"id":1244,"kind":128,"name":"BufferReader","url":"classes/bufferreader.html","classes":"tsd-kind-class"},{"id":1245,"kind":2048,"name":"fromBuffer","url":"classes/bufferreader.html#frombuffer","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static","parent":"BufferReader"},{"id":1246,"kind":512,"name":"constructor","url":"classes/bufferreader.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"BufferReader"},{"id":1247,"kind":2048,"name":"readBigUIntLE","url":"classes/bufferreader.html#readbiguintle","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BufferReader"},{"id":1248,"kind":2048,"name":"readBigUIntBE","url":"classes/bufferreader.html#readbiguintbe","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BufferReader"},{"id":1249,"kind":2048,"name":"readUInt8Enum","url":"classes/bufferreader.html#readuint8enum","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"BufferReader"},{"id":1250,"kind":1024,"name":"length","url":"classes/bufferreader.html#length","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1251,"kind":2048,"name":"fromSize","url":"classes/bufferreader.html#fromsize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"BufferReader"},{"id":1252,"kind":2048,"name":"fromOptions","url":"classes/bufferreader.html#fromoptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"BufferReader"},{"id":1253,"kind":2048,"name":"isSmartBufferOptions","url":"classes/bufferreader.html#issmartbufferoptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"BufferReader"},{"id":1254,"kind":2048,"name":"readInt8","url":"classes/bufferreader.html#readint8","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1255,"kind":2048,"name":"readInt16BE","url":"classes/bufferreader.html#readint16be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1256,"kind":2048,"name":"readInt16LE","url":"classes/bufferreader.html#readint16le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1257,"kind":2048,"name":"readInt32BE","url":"classes/bufferreader.html#readint32be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1258,"kind":2048,"name":"readInt32LE","url":"classes/bufferreader.html#readint32le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1259,"kind":2048,"name":"readBigInt64BE","url":"classes/bufferreader.html#readbigint64be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1260,"kind":2048,"name":"readBigInt64LE","url":"classes/bufferreader.html#readbigint64le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1261,"kind":2048,"name":"writeInt8","url":"classes/bufferreader.html#writeint8","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1262,"kind":2048,"name":"insertInt8","url":"classes/bufferreader.html#insertint8","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1263,"kind":2048,"name":"writeInt16BE","url":"classes/bufferreader.html#writeint16be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1264,"kind":2048,"name":"insertInt16BE","url":"classes/bufferreader.html#insertint16be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1265,"kind":2048,"name":"writeInt16LE","url":"classes/bufferreader.html#writeint16le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1266,"kind":2048,"name":"insertInt16LE","url":"classes/bufferreader.html#insertint16le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1267,"kind":2048,"name":"writeInt32BE","url":"classes/bufferreader.html#writeint32be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1268,"kind":2048,"name":"insertInt32BE","url":"classes/bufferreader.html#insertint32be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1269,"kind":2048,"name":"writeInt32LE","url":"classes/bufferreader.html#writeint32le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1270,"kind":2048,"name":"insertInt32LE","url":"classes/bufferreader.html#insertint32le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1271,"kind":2048,"name":"writeBigInt64BE","url":"classes/bufferreader.html#writebigint64be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1272,"kind":2048,"name":"insertBigInt64BE","url":"classes/bufferreader.html#insertbigint64be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1273,"kind":2048,"name":"writeBigInt64LE","url":"classes/bufferreader.html#writebigint64le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1274,"kind":2048,"name":"insertBigInt64LE","url":"classes/bufferreader.html#insertbigint64le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1275,"kind":2048,"name":"readUInt8","url":"classes/bufferreader.html#readuint8","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1276,"kind":2048,"name":"readUInt16BE","url":"classes/bufferreader.html#readuint16be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1277,"kind":2048,"name":"readUInt16LE","url":"classes/bufferreader.html#readuint16le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1278,"kind":2048,"name":"readUInt32BE","url":"classes/bufferreader.html#readuint32be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1279,"kind":2048,"name":"readUInt32LE","url":"classes/bufferreader.html#readuint32le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1280,"kind":2048,"name":"readBigUInt64BE","url":"classes/bufferreader.html#readbiguint64be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1281,"kind":2048,"name":"readBigUInt64LE","url":"classes/bufferreader.html#readbiguint64le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1282,"kind":2048,"name":"writeUInt8","url":"classes/bufferreader.html#writeuint8","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1283,"kind":2048,"name":"insertUInt8","url":"classes/bufferreader.html#insertuint8","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1284,"kind":2048,"name":"writeUInt16BE","url":"classes/bufferreader.html#writeuint16be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1285,"kind":2048,"name":"insertUInt16BE","url":"classes/bufferreader.html#insertuint16be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1286,"kind":2048,"name":"writeUInt16LE","url":"classes/bufferreader.html#writeuint16le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1287,"kind":2048,"name":"insertUInt16LE","url":"classes/bufferreader.html#insertuint16le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1288,"kind":2048,"name":"writeUInt32BE","url":"classes/bufferreader.html#writeuint32be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1289,"kind":2048,"name":"insertUInt32BE","url":"classes/bufferreader.html#insertuint32be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1290,"kind":2048,"name":"writeUInt32LE","url":"classes/bufferreader.html#writeuint32le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1291,"kind":2048,"name":"insertUInt32LE","url":"classes/bufferreader.html#insertuint32le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1292,"kind":2048,"name":"writeBigUInt64BE","url":"classes/bufferreader.html#writebiguint64be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1293,"kind":2048,"name":"insertBigUInt64BE","url":"classes/bufferreader.html#insertbiguint64be","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1294,"kind":2048,"name":"writeBigUInt64LE","url":"classes/bufferreader.html#writebiguint64le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1295,"kind":2048,"name":"insertBigUInt64LE","url":"classes/bufferreader.html#insertbiguint64le","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1296,"kind":2048,"name":"readFloatBE","url":"classes/bufferreader.html#readfloatbe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1297,"kind":2048,"name":"readFloatLE","url":"classes/bufferreader.html#readfloatle","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1298,"kind":2048,"name":"writeFloatBE","url":"classes/bufferreader.html#writefloatbe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1299,"kind":2048,"name":"insertFloatBE","url":"classes/bufferreader.html#insertfloatbe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1300,"kind":2048,"name":"writeFloatLE","url":"classes/bufferreader.html#writefloatle","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1301,"kind":2048,"name":"insertFloatLE","url":"classes/bufferreader.html#insertfloatle","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1302,"kind":2048,"name":"readDoubleBE","url":"classes/bufferreader.html#readdoublebe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1303,"kind":2048,"name":"readDoubleLE","url":"classes/bufferreader.html#readdoublele","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1304,"kind":2048,"name":"writeDoubleBE","url":"classes/bufferreader.html#writedoublebe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1305,"kind":2048,"name":"insertDoubleBE","url":"classes/bufferreader.html#insertdoublebe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1306,"kind":2048,"name":"writeDoubleLE","url":"classes/bufferreader.html#writedoublele","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1307,"kind":2048,"name":"insertDoubleLE","url":"classes/bufferreader.html#insertdoublele","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1308,"kind":2048,"name":"readString","url":"classes/bufferreader.html#readstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1309,"kind":2048,"name":"insertString","url":"classes/bufferreader.html#insertstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1310,"kind":2048,"name":"writeString","url":"classes/bufferreader.html#writestring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1311,"kind":2048,"name":"readStringNT","url":"classes/bufferreader.html#readstringnt","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1312,"kind":2048,"name":"insertStringNT","url":"classes/bufferreader.html#insertstringnt","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1313,"kind":2048,"name":"writeStringNT","url":"classes/bufferreader.html#writestringnt","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1314,"kind":2048,"name":"readBuffer","url":"classes/bufferreader.html#readbuffer","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1315,"kind":2048,"name":"insertBuffer","url":"classes/bufferreader.html#insertbuffer","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1316,"kind":2048,"name":"writeBuffer","url":"classes/bufferreader.html#writebuffer","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1317,"kind":2048,"name":"readBufferNT","url":"classes/bufferreader.html#readbuffernt","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1318,"kind":2048,"name":"insertBufferNT","url":"classes/bufferreader.html#insertbuffernt","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1319,"kind":2048,"name":"writeBufferNT","url":"classes/bufferreader.html#writebuffernt","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1320,"kind":2048,"name":"clear","url":"classes/bufferreader.html#clear","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1321,"kind":2048,"name":"remaining","url":"classes/bufferreader.html#remaining","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1322,"kind":1024,"name":"readOffset","url":"classes/bufferreader.html#readoffset","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1323,"kind":1024,"name":"writeOffset","url":"classes/bufferreader.html#writeoffset","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1324,"kind":1024,"name":"encoding","url":"classes/bufferreader.html#encoding","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1325,"kind":1024,"name":"internalBuffer","url":"classes/bufferreader.html#internalbuffer","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1326,"kind":2048,"name":"toBuffer","url":"classes/bufferreader.html#tobuffer","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1327,"kind":2048,"name":"toString","url":"classes/bufferreader.html#tostring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1328,"kind":2048,"name":"destroy","url":"classes/bufferreader.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"BufferReader"},{"id":1329,"kind":64,"name":"createEnumChecker","url":"globals.html#createenumchecker","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":1330,"kind":32,"name":"enumCheckFunctions","url":"globals.html#enumcheckfunctions","classes":"tsd-kind-variable"},{"id":1331,"kind":64,"name":"isEnum","url":"globals.html#isenum","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":1332,"kind":256,"name":"StacksPublicKey","url":"interfaces/stackspublickey.html","classes":"tsd-kind-interface"},{"id":1333,"kind":1024,"name":"type","url":"interfaces/stackspublickey.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksPublicKey"},{"id":1334,"kind":1024,"name":"data","url":"interfaces/stackspublickey.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksPublicKey"},{"id":1335,"kind":256,"name":"StacksPrivateKey","url":"interfaces/stacksprivatekey.html","classes":"tsd-kind-interface"},{"id":1336,"kind":1024,"name":"data","url":"interfaces/stacksprivatekey.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksPrivateKey"},{"id":1337,"kind":1024,"name":"compressed","url":"interfaces/stacksprivatekey.html#compressed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StacksPrivateKey"},{"id":1338,"kind":64,"name":"getAddressFromPrivateKey","url":"globals.html#getaddressfromprivatekey","classes":"tsd-kind-function"},{"id":1339,"kind":64,"name":"getAddressFromPublicKey","url":"globals.html#getaddressfrompublickey","classes":"tsd-kind-function"},{"id":1340,"kind":64,"name":"createStacksPublicKey","url":"globals.html#createstackspublickey","classes":"tsd-kind-function"},{"id":1341,"kind":64,"name":"publicKeyFromSignature","url":"globals.html#publickeyfromsignature","classes":"tsd-kind-function"},{"id":1342,"kind":64,"name":"publicKeyFromBuffer","url":"globals.html#publickeyfrombuffer","classes":"tsd-kind-function"},{"id":1343,"kind":64,"name":"isCompressed","url":"globals.html#iscompressed","classes":"tsd-kind-function"},{"id":1344,"kind":64,"name":"publicKeyToString","url":"globals.html#publickeytostring","classes":"tsd-kind-function"},{"id":1345,"kind":64,"name":"serializePublicKey","url":"globals.html#serializepublickey","classes":"tsd-kind-function"},{"id":1346,"kind":64,"name":"pubKeyfromPrivKey","url":"globals.html#pubkeyfromprivkey","classes":"tsd-kind-function"},{"id":1347,"kind":64,"name":"deserializePublicKey","url":"globals.html#deserializepublickey","classes":"tsd-kind-function"},{"id":1348,"kind":64,"name":"createStacksPrivateKey","url":"globals.html#createstacksprivatekey","classes":"tsd-kind-function"},{"id":1349,"kind":64,"name":"makeRandomPrivKey","url":"globals.html#makerandomprivkey","classes":"tsd-kind-function"},{"id":1350,"kind":64,"name":"signWithKey","url":"globals.html#signwithkey","classes":"tsd-kind-function"},{"id":1351,"kind":64,"name":"getSignatureRecoveryParam","url":"globals.html#getsignaturerecoveryparam","classes":"tsd-kind-function"},{"id":1352,"kind":64,"name":"parseRecoverableSignature","url":"globals.html#parserecoverablesignature","classes":"tsd-kind-function"},{"id":1353,"kind":64,"name":"getPublicKey","url":"globals.html#getpublickey","classes":"tsd-kind-function"},{"id":1354,"kind":64,"name":"privateKeyToString","url":"globals.html#privatekeytostring","classes":"tsd-kind-function"},{"id":1355,"kind":128,"name":"StacksTransactionError","url":"classes/stackstransactionerror.html","classes":"tsd-kind-class"},{"id":1356,"kind":512,"name":"constructor","url":"classes/stackstransactionerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"StacksTransactionError"},{"id":1357,"kind":1024,"name":"name","url":"classes/stackstransactionerror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StacksTransactionError"},{"id":1358,"kind":1024,"name":"message","url":"classes/stackstransactionerror.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StacksTransactionError"},{"id":1359,"kind":1024,"name":"stack","url":"classes/stackstransactionerror.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"StacksTransactionError"},{"id":1360,"kind":1024,"name":"Error","url":"classes/stackstransactionerror.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"StacksTransactionError"},{"id":1361,"kind":128,"name":"SerializationError","url":"classes/serializationerror.html","classes":"tsd-kind-class"},{"id":1362,"kind":512,"name":"constructor","url":"classes/serializationerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"SerializationError"},{"id":1363,"kind":1024,"name":"name","url":"classes/serializationerror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"SerializationError"},{"id":1364,"kind":1024,"name":"message","url":"classes/serializationerror.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"SerializationError"},{"id":1365,"kind":1024,"name":"stack","url":"classes/serializationerror.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"SerializationError"},{"id":1366,"kind":1024,"name":"Error","url":"classes/serializationerror.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"SerializationError"},{"id":1367,"kind":128,"name":"DeserializationError","url":"classes/deserializationerror.html","classes":"tsd-kind-class"},{"id":1368,"kind":512,"name":"constructor","url":"classes/deserializationerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"DeserializationError"},{"id":1369,"kind":1024,"name":"name","url":"classes/deserializationerror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"DeserializationError"},{"id":1370,"kind":1024,"name":"message","url":"classes/deserializationerror.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"DeserializationError"},{"id":1371,"kind":1024,"name":"stack","url":"classes/deserializationerror.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"DeserializationError"},{"id":1372,"kind":1024,"name":"Error","url":"classes/deserializationerror.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"DeserializationError"},{"id":1373,"kind":128,"name":"NotImplementedError","url":"classes/notimplementederror.html","classes":"tsd-kind-class"},{"id":1374,"kind":512,"name":"constructor","url":"classes/notimplementederror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"NotImplementedError"},{"id":1375,"kind":1024,"name":"name","url":"classes/notimplementederror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotImplementedError"},{"id":1376,"kind":1024,"name":"message","url":"classes/notimplementederror.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotImplementedError"},{"id":1377,"kind":1024,"name":"stack","url":"classes/notimplementederror.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"NotImplementedError"},{"id":1378,"kind":1024,"name":"Error","url":"classes/notimplementederror.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"NotImplementedError"},{"id":1379,"kind":128,"name":"SigningError","url":"classes/signingerror.html","classes":"tsd-kind-class"},{"id":1380,"kind":512,"name":"constructor","url":"classes/signingerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"SigningError"},{"id":1381,"kind":1024,"name":"name","url":"classes/signingerror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"SigningError"},{"id":1382,"kind":1024,"name":"message","url":"classes/signingerror.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"SigningError"},{"id":1383,"kind":1024,"name":"stack","url":"classes/signingerror.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"SigningError"},{"id":1384,"kind":1024,"name":"Error","url":"classes/signingerror.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"SigningError"},{"id":1385,"kind":128,"name":"VerificationError","url":"classes/verificationerror.html","classes":"tsd-kind-class"},{"id":1386,"kind":512,"name":"constructor","url":"classes/verificationerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"VerificationError"},{"id":1387,"kind":1024,"name":"name","url":"classes/verificationerror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"VerificationError"},{"id":1388,"kind":1024,"name":"message","url":"classes/verificationerror.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"VerificationError"},{"id":1389,"kind":1024,"name":"stack","url":"classes/verificationerror.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"VerificationError"},{"id":1390,"kind":1024,"name":"Error","url":"classes/verificationerror.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"VerificationError"},{"id":1391,"kind":256,"name":"STXPostCondition","url":"interfaces/stxpostcondition.html","classes":"tsd-kind-interface"},{"id":1392,"kind":1024,"name":"type","url":"interfaces/stxpostcondition.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"STXPostCondition"},{"id":1393,"kind":1024,"name":"conditionType","url":"interfaces/stxpostcondition.html#conditiontype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"STXPostCondition"},{"id":1394,"kind":1024,"name":"principal","url":"interfaces/stxpostcondition.html#principal","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"STXPostCondition"},{"id":1395,"kind":1024,"name":"conditionCode","url":"interfaces/stxpostcondition.html#conditioncode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"STXPostCondition"},{"id":1396,"kind":1024,"name":"amount","url":"interfaces/stxpostcondition.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"STXPostCondition"},{"id":1397,"kind":256,"name":"FungiblePostCondition","url":"interfaces/fungiblepostcondition.html","classes":"tsd-kind-interface"},{"id":1398,"kind":1024,"name":"type","url":"interfaces/fungiblepostcondition.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"FungiblePostCondition"},{"id":1399,"kind":1024,"name":"conditionType","url":"interfaces/fungiblepostcondition.html#conditiontype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"FungiblePostCondition"},{"id":1400,"kind":1024,"name":"principal","url":"interfaces/fungiblepostcondition.html#principal","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"FungiblePostCondition"},{"id":1401,"kind":1024,"name":"conditionCode","url":"interfaces/fungiblepostcondition.html#conditioncode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"FungiblePostCondition"},{"id":1402,"kind":1024,"name":"amount","url":"interfaces/fungiblepostcondition.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"FungiblePostCondition"},{"id":1403,"kind":1024,"name":"assetInfo","url":"interfaces/fungiblepostcondition.html#assetinfo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"FungiblePostCondition"},{"id":1404,"kind":256,"name":"NonFungiblePostCondition","url":"interfaces/nonfungiblepostcondition.html","classes":"tsd-kind-interface"},{"id":1405,"kind":1024,"name":"type","url":"interfaces/nonfungiblepostcondition.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NonFungiblePostCondition"},{"id":1406,"kind":1024,"name":"conditionType","url":"interfaces/nonfungiblepostcondition.html#conditiontype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NonFungiblePostCondition"},{"id":1407,"kind":1024,"name":"principal","url":"interfaces/nonfungiblepostcondition.html#principal","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NonFungiblePostCondition"},{"id":1408,"kind":1024,"name":"conditionCode","url":"interfaces/nonfungiblepostcondition.html#conditioncode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NonFungiblePostCondition"},{"id":1409,"kind":1024,"name":"assetInfo","url":"interfaces/nonfungiblepostcondition.html#assetinfo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NonFungiblePostCondition"},{"id":1410,"kind":1024,"name":"assetName","url":"interfaces/nonfungiblepostcondition.html#assetname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NonFungiblePostCondition"},{"id":1411,"kind":4194304,"name":"PostCondition","url":"globals.html#postcondition","classes":"tsd-kind-type-alias"},{"id":1412,"kind":64,"name":"createSTXPostCondition","url":"globals.html#createstxpostcondition","classes":"tsd-kind-function"},{"id":1413,"kind":64,"name":"createFungiblePostCondition","url":"globals.html#createfungiblepostcondition","classes":"tsd-kind-function"},{"id":1414,"kind":64,"name":"createNonFungiblePostCondition","url":"globals.html#createnonfungiblepostcondition","classes":"tsd-kind-function"},{"id":1415,"kind":64,"name":"serializePostCondition","url":"globals.html#serializepostcondition","classes":"tsd-kind-function"},{"id":1416,"kind":64,"name":"deserializePostCondition","url":"globals.html#deserializepostcondition","classes":"tsd-kind-function"},{"id":1417,"kind":256,"name":"TokenTransferPayload","url":"interfaces/tokentransferpayload.html","classes":"tsd-kind-interface"},{"id":1418,"kind":1024,"name":"type","url":"interfaces/tokentransferpayload.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TokenTransferPayload"},{"id":1419,"kind":1024,"name":"payloadType","url":"interfaces/tokentransferpayload.html#payloadtype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TokenTransferPayload"},{"id":1420,"kind":1024,"name":"recipient","url":"interfaces/tokentransferpayload.html#recipient","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TokenTransferPayload"},{"id":1421,"kind":1024,"name":"amount","url":"interfaces/tokentransferpayload.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TokenTransferPayload"},{"id":1422,"kind":1024,"name":"memo","url":"interfaces/tokentransferpayload.html#memo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TokenTransferPayload"},{"id":1423,"kind":256,"name":"ContractCallPayload","url":"interfaces/contractcallpayload.html","classes":"tsd-kind-interface"},{"id":1424,"kind":1024,"name":"type","url":"interfaces/contractcallpayload.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallPayload"},{"id":1425,"kind":1024,"name":"payloadType","url":"interfaces/contractcallpayload.html#payloadtype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallPayload"},{"id":1426,"kind":1024,"name":"contractAddress","url":"interfaces/contractcallpayload.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallPayload"},{"id":1427,"kind":1024,"name":"contractName","url":"interfaces/contractcallpayload.html#contractname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallPayload"},{"id":1428,"kind":1024,"name":"functionName","url":"interfaces/contractcallpayload.html#functionname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallPayload"},{"id":1429,"kind":1024,"name":"functionArgs","url":"interfaces/contractcallpayload.html#functionargs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallPayload"},{"id":1430,"kind":256,"name":"SmartContractPayload","url":"interfaces/smartcontractpayload.html","classes":"tsd-kind-interface"},{"id":1431,"kind":1024,"name":"type","url":"interfaces/smartcontractpayload.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SmartContractPayload"},{"id":1432,"kind":1024,"name":"payloadType","url":"interfaces/smartcontractpayload.html#payloadtype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SmartContractPayload"},{"id":1433,"kind":1024,"name":"contractName","url":"interfaces/smartcontractpayload.html#contractname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SmartContractPayload"},{"id":1434,"kind":1024,"name":"codeBody","url":"interfaces/smartcontractpayload.html#codebody","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SmartContractPayload"},{"id":1435,"kind":256,"name":"PoisonPayload","url":"interfaces/poisonpayload.html","classes":"tsd-kind-interface"},{"id":1436,"kind":1024,"name":"type","url":"interfaces/poisonpayload.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PoisonPayload"},{"id":1437,"kind":1024,"name":"payloadType","url":"interfaces/poisonpayload.html#payloadtype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PoisonPayload"},{"id":1438,"kind":256,"name":"CoinbasePayload","url":"interfaces/coinbasepayload.html","classes":"tsd-kind-interface"},{"id":1439,"kind":1024,"name":"type","url":"interfaces/coinbasepayload.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CoinbasePayload"},{"id":1440,"kind":1024,"name":"payloadType","url":"interfaces/coinbasepayload.html#payloadtype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CoinbasePayload"},{"id":1441,"kind":1024,"name":"coinbaseBuffer","url":"interfaces/coinbasepayload.html#coinbasebuffer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CoinbasePayload"},{"id":1442,"kind":4194304,"name":"Payload","url":"globals.html#payload","classes":"tsd-kind-type-alias"},{"id":1443,"kind":64,"name":"createTokenTransferPayload","url":"globals.html#createtokentransferpayload","classes":"tsd-kind-function"},{"id":1444,"kind":64,"name":"createContractCallPayload","url":"globals.html#createcontractcallpayload","classes":"tsd-kind-function"},{"id":1445,"kind":64,"name":"createSmartContractPayload","url":"globals.html#createsmartcontractpayload","classes":"tsd-kind-function"},{"id":1446,"kind":64,"name":"createPoisonPayload","url":"globals.html#createpoisonpayload","classes":"tsd-kind-function"},{"id":1447,"kind":64,"name":"createCoinbasePayload","url":"globals.html#createcoinbasepayload","classes":"tsd-kind-function"},{"id":1448,"kind":64,"name":"serializePayload","url":"globals.html#serializepayload","classes":"tsd-kind-function"},{"id":1449,"kind":64,"name":"deserializePayload","url":"globals.html#deserializepayload","classes":"tsd-kind-function"},{"id":1450,"kind":256,"name":"Address","url":"interfaces/address.html","classes":"tsd-kind-interface"},{"id":1451,"kind":1024,"name":"type","url":"interfaces/address.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Address"},{"id":1452,"kind":1024,"name":"version","url":"interfaces/address.html#version","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Address"},{"id":1453,"kind":1024,"name":"hash160","url":"interfaces/address.html#hash160","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Address"},{"id":1454,"kind":256,"name":"StandardPrincipal","url":"interfaces/standardprincipal.html","classes":"tsd-kind-interface"},{"id":1455,"kind":1024,"name":"type","url":"interfaces/standardprincipal.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StandardPrincipal"},{"id":1456,"kind":1024,"name":"prefix","url":"interfaces/standardprincipal.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StandardPrincipal"},{"id":1457,"kind":1024,"name":"address","url":"interfaces/standardprincipal.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StandardPrincipal"},{"id":1458,"kind":256,"name":"ContractPrincipal","url":"interfaces/contractprincipal.html","classes":"tsd-kind-interface"},{"id":1459,"kind":1024,"name":"type","url":"interfaces/contractprincipal.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractPrincipal"},{"id":1460,"kind":1024,"name":"prefix","url":"interfaces/contractprincipal.html#prefix","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractPrincipal"},{"id":1461,"kind":1024,"name":"address","url":"interfaces/contractprincipal.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractPrincipal"},{"id":1462,"kind":1024,"name":"contractName","url":"interfaces/contractprincipal.html#contractname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractPrincipal"},{"id":1463,"kind":256,"name":"LengthPrefixedString","url":"interfaces/lengthprefixedstring.html","classes":"tsd-kind-interface"},{"id":1464,"kind":1024,"name":"type","url":"interfaces/lengthprefixedstring.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LengthPrefixedString"},{"id":1465,"kind":1024,"name":"content","url":"interfaces/lengthprefixedstring.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LengthPrefixedString"},{"id":1466,"kind":1024,"name":"lengthPrefixBytes","url":"interfaces/lengthprefixedstring.html#lengthprefixbytes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LengthPrefixedString"},{"id":1467,"kind":1024,"name":"maxLengthBytes","url":"interfaces/lengthprefixedstring.html#maxlengthbytes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LengthPrefixedString"},{"id":1468,"kind":256,"name":"MemoString","url":"interfaces/memostring.html","classes":"tsd-kind-interface"},{"id":1469,"kind":1024,"name":"type","url":"interfaces/memostring.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MemoString"},{"id":1470,"kind":1024,"name":"content","url":"interfaces/memostring.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MemoString"},{"id":1471,"kind":256,"name":"AssetInfo","url":"interfaces/assetinfo.html","classes":"tsd-kind-interface"},{"id":1472,"kind":1024,"name":"type","url":"interfaces/assetinfo.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AssetInfo"},{"id":1473,"kind":1024,"name":"address","url":"interfaces/assetinfo.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AssetInfo"},{"id":1474,"kind":1024,"name":"contractName","url":"interfaces/assetinfo.html#contractname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AssetInfo"},{"id":1475,"kind":1024,"name":"assetName","url":"interfaces/assetinfo.html#assetname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AssetInfo"},{"id":1476,"kind":256,"name":"LengthPrefixedList","url":"interfaces/lengthprefixedlist.html","classes":"tsd-kind-interface"},{"id":1477,"kind":1024,"name":"type","url":"interfaces/lengthprefixedlist.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LengthPrefixedList"},{"id":1478,"kind":1024,"name":"lengthPrefixBytes","url":"interfaces/lengthprefixedlist.html#lengthprefixbytes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LengthPrefixedList"},{"id":1479,"kind":1024,"name":"values","url":"interfaces/lengthprefixedlist.html#values","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LengthPrefixedList"},{"id":1480,"kind":4194304,"name":"StacksMessage","url":"globals.html#stacksmessage","classes":"tsd-kind-type-alias"},{"id":1481,"kind":64,"name":"serializeStacksMessage","url":"globals.html#serializestacksmessage","classes":"tsd-kind-function"},{"id":1482,"kind":64,"name":"deserializeStacksMessage","url":"globals.html#deserializestacksmessage","classes":"tsd-kind-function"},{"id":1483,"kind":64,"name":"createAddress","url":"globals.html#createaddress","classes":"tsd-kind-function"},{"id":1484,"kind":64,"name":"createEmptyAddress","url":"globals.html#createemptyaddress","classes":"tsd-kind-function"},{"id":1485,"kind":64,"name":"addressFromVersionHash","url":"globals.html#addressfromversionhash","classes":"tsd-kind-function"},{"id":1486,"kind":64,"name":"addressHashModeToVersion","url":"globals.html#addresshashmodetoversion","classes":"tsd-kind-function"},{"id":1487,"kind":64,"name":"addressFromHashMode","url":"globals.html#addressfromhashmode","classes":"tsd-kind-function"},{"id":1488,"kind":64,"name":"addressFromPublicKeys","url":"globals.html#addressfrompublickeys","classes":"tsd-kind-function"},{"id":1489,"kind":64,"name":"addressToString","url":"globals.html#addresstostring","classes":"tsd-kind-function"},{"id":1490,"kind":64,"name":"serializeAddress","url":"globals.html#serializeaddress","classes":"tsd-kind-function"},{"id":1491,"kind":64,"name":"deserializeAddress","url":"globals.html#deserializeaddress","classes":"tsd-kind-function"},{"id":1492,"kind":4194304,"name":"PostConditionPrincipal","url":"globals.html#postconditionprincipal","classes":"tsd-kind-type-alias"},{"id":1493,"kind":64,"name":"parsePrincipalString","url":"globals.html#parseprincipalstring","classes":"tsd-kind-function"},{"id":1494,"kind":64,"name":"createStandardPrincipal","url":"globals.html#createstandardprincipal","classes":"tsd-kind-function"},{"id":1495,"kind":64,"name":"createContractPrincipal","url":"globals.html#createcontractprincipal","classes":"tsd-kind-function"},{"id":1496,"kind":64,"name":"serializePrincipal","url":"globals.html#serializeprincipal","classes":"tsd-kind-function"},{"id":1497,"kind":64,"name":"deserializePrincipal","url":"globals.html#deserializeprincipal","classes":"tsd-kind-function"},{"id":1498,"kind":64,"name":"createLPString","url":"globals.html#createlpstring","classes":"tsd-kind-function"},{"id":1499,"kind":64,"name":"serializeLPString","url":"globals.html#serializelpstring","classes":"tsd-kind-function"},{"id":1500,"kind":64,"name":"deserializeLPString","url":"globals.html#deserializelpstring","classes":"tsd-kind-function"},{"id":1501,"kind":64,"name":"codeBodyString","url":"globals.html#codebodystring","classes":"tsd-kind-function"},{"id":1502,"kind":64,"name":"createMemoString","url":"globals.html#creatememostring","classes":"tsd-kind-function"},{"id":1503,"kind":64,"name":"serializeMemoString","url":"globals.html#serializememostring","classes":"tsd-kind-function"},{"id":1504,"kind":64,"name":"deserializeMemoString","url":"globals.html#deserializememostring","classes":"tsd-kind-function"},{"id":1505,"kind":64,"name":"parseAssetInfoString","url":"globals.html#parseassetinfostring","classes":"tsd-kind-function"},{"id":1506,"kind":64,"name":"createAssetInfo","url":"globals.html#createassetinfo","classes":"tsd-kind-function"},{"id":1507,"kind":64,"name":"serializeAssetInfo","url":"globals.html#serializeassetinfo","classes":"tsd-kind-function"},{"id":1508,"kind":64,"name":"deserializeAssetInfo","url":"globals.html#deserializeassetinfo","classes":"tsd-kind-function"},{"id":1509,"kind":64,"name":"createLPList","url":"globals.html#createlplist","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":1510,"kind":64,"name":"serializeLPList","url":"globals.html#serializelplist","classes":"tsd-kind-function"},{"id":1511,"kind":64,"name":"deserializeLPList","url":"globals.html#deserializelplist","classes":"tsd-kind-function"},{"id":1512,"kind":256,"name":"StandardPrincipalCV","url":"interfaces/standardprincipalcv.html","classes":"tsd-kind-interface"},{"id":1513,"kind":1024,"name":"type","url":"interfaces/standardprincipalcv.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StandardPrincipalCV"},{"id":1514,"kind":1024,"name":"address","url":"interfaces/standardprincipalcv.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StandardPrincipalCV"},{"id":1515,"kind":256,"name":"ContractPrincipalCV","url":"interfaces/contractprincipalcv.html","classes":"tsd-kind-interface"},{"id":1516,"kind":1024,"name":"type","url":"interfaces/contractprincipalcv.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractPrincipalCV"},{"id":1517,"kind":1024,"name":"address","url":"interfaces/contractprincipalcv.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractPrincipalCV"},{"id":1518,"kind":1024,"name":"contractName","url":"interfaces/contractprincipalcv.html#contractname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractPrincipalCV"},{"id":1519,"kind":4194304,"name":"PrincipalCV","url":"globals.html#principalcv","classes":"tsd-kind-type-alias"},{"id":1520,"kind":64,"name":"principalToString","url":"globals.html#principaltostring","classes":"tsd-kind-function"},{"id":1521,"kind":64,"name":"principalCV","url":"globals.html#principalcv","classes":"tsd-kind-function"},{"id":1522,"kind":64,"name":"standardPrincipalCV","url":"globals.html#standardprincipalcv","classes":"tsd-kind-function"},{"id":1523,"kind":64,"name":"standardPrincipalCVFromAddress","url":"globals.html#standardprincipalcvfromaddress","classes":"tsd-kind-function"},{"id":1524,"kind":64,"name":"contractPrincipalCV","url":"globals.html#contractprincipalcv","classes":"tsd-kind-function"},{"id":1525,"kind":64,"name":"contractPrincipalCVFromAddress","url":"globals.html#contractprincipalcvfromaddress","classes":"tsd-kind-function"},{"id":1526,"kind":64,"name":"contractPrincipalCVFromStandard","url":"globals.html#contractprincipalcvfromstandard","classes":"tsd-kind-function"},{"id":1527,"kind":4,"name":"ClarityType","url":"enums/claritytype.html","classes":"tsd-kind-enum"},{"id":1528,"kind":16,"name":"Int","url":"enums/claritytype.html#int","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityType"},{"id":1529,"kind":16,"name":"UInt","url":"enums/claritytype.html#uint","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityType"},{"id":1530,"kind":16,"name":"Buffer","url":"enums/claritytype.html#buffer","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityType"},{"id":1531,"kind":16,"name":"BoolTrue","url":"enums/claritytype.html#booltrue","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityType"},{"id":1532,"kind":16,"name":"BoolFalse","url":"enums/claritytype.html#boolfalse","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityType"},{"id":1533,"kind":16,"name":"PrincipalStandard","url":"enums/claritytype.html#principalstandard","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityType"},{"id":1534,"kind":16,"name":"PrincipalContract","url":"enums/claritytype.html#principalcontract","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityType"},{"id":1535,"kind":16,"name":"ResponseOk","url":"enums/claritytype.html#responseok","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityType"},{"id":1536,"kind":16,"name":"ResponseErr","url":"enums/claritytype.html#responseerr","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityType"},{"id":1537,"kind":16,"name":"OptionalNone","url":"enums/claritytype.html#optionalnone","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityType"},{"id":1538,"kind":16,"name":"OptionalSome","url":"enums/claritytype.html#optionalsome","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityType"},{"id":1539,"kind":16,"name":"List","url":"enums/claritytype.html#list","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityType"},{"id":1540,"kind":16,"name":"Tuple","url":"enums/claritytype.html#tuple","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityType"},{"id":1541,"kind":16,"name":"StringASCII","url":"enums/claritytype.html#stringascii","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityType"},{"id":1542,"kind":16,"name":"StringUTF8","url":"enums/claritytype.html#stringutf8","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityType"},{"id":1543,"kind":4194304,"name":"ClarityValue","url":"globals.html#clarityvalue","classes":"tsd-kind-type-alias"},{"id":1544,"kind":64,"name":"cvToString","url":"globals.html#cvtostring","classes":"tsd-kind-function"},{"id":1545,"kind":64,"name":"getCVTypeString","url":"globals.html#getcvtypestring","classes":"tsd-kind-function"},{"id":1546,"kind":256,"name":"TrueCV","url":"interfaces/truecv.html","classes":"tsd-kind-interface"},{"id":1547,"kind":1024,"name":"type","url":"interfaces/truecv.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TrueCV"},{"id":1548,"kind":256,"name":"FalseCV","url":"interfaces/falsecv.html","classes":"tsd-kind-interface"},{"id":1549,"kind":1024,"name":"type","url":"interfaces/falsecv.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"FalseCV"},{"id":1550,"kind":4194304,"name":"BooleanCV","url":"globals.html#booleancv","classes":"tsd-kind-type-alias"},{"id":1551,"kind":64,"name":"trueCV","url":"globals.html#truecv","classes":"tsd-kind-function"},{"id":1552,"kind":64,"name":"falseCV","url":"globals.html#falsecv","classes":"tsd-kind-function"},{"id":1553,"kind":256,"name":"IntCV","url":"interfaces/intcv.html","classes":"tsd-kind-interface"},{"id":1554,"kind":1024,"name":"type","url":"interfaces/intcv.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IntCV"},{"id":1555,"kind":1024,"name":"value","url":"interfaces/intcv.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IntCV"},{"id":1556,"kind":256,"name":"UIntCV","url":"interfaces/uintcv.html","classes":"tsd-kind-interface"},{"id":1557,"kind":1024,"name":"type","url":"interfaces/uintcv.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UIntCV"},{"id":1558,"kind":1024,"name":"value","url":"interfaces/uintcv.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UIntCV"},{"id":1559,"kind":64,"name":"intCV","url":"globals.html#intcv","classes":"tsd-kind-function"},{"id":1560,"kind":64,"name":"uintCV","url":"globals.html#uintcv","classes":"tsd-kind-function"},{"id":1561,"kind":256,"name":"BufferCV","url":"interfaces/buffercv.html","classes":"tsd-kind-interface"},{"id":1562,"kind":1024,"name":"type","url":"interfaces/buffercv.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BufferCV"},{"id":1563,"kind":1024,"name":"buffer","url":"interfaces/buffercv.html#buffer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BufferCV"},{"id":1564,"kind":64,"name":"bufferCV","url":"globals.html#buffercv","classes":"tsd-kind-function"},{"id":1565,"kind":64,"name":"bufferCVFromString","url":"globals.html#buffercvfromstring","classes":"tsd-kind-function"},{"id":1566,"kind":256,"name":"NoneCV","url":"interfaces/nonecv.html","classes":"tsd-kind-interface"},{"id":1567,"kind":1024,"name":"type","url":"interfaces/nonecv.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"NoneCV"},{"id":1568,"kind":256,"name":"SomeCV","url":"interfaces/somecv.html","classes":"tsd-kind-interface"},{"id":1569,"kind":1024,"name":"type","url":"interfaces/somecv.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SomeCV"},{"id":1570,"kind":1024,"name":"value","url":"interfaces/somecv.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SomeCV"},{"id":1571,"kind":4194304,"name":"OptionalCV","url":"globals.html#optionalcv","classes":"tsd-kind-type-alias"},{"id":1572,"kind":64,"name":"noneCV","url":"globals.html#nonecv","classes":"tsd-kind-function"},{"id":1573,"kind":64,"name":"someCV","url":"globals.html#somecv","classes":"tsd-kind-function"},{"id":1574,"kind":64,"name":"optionalCVOf","url":"globals.html#optionalcvof","classes":"tsd-kind-function"},{"id":1575,"kind":256,"name":"ResponseErrorCV","url":"interfaces/responseerrorcv.html","classes":"tsd-kind-interface"},{"id":1576,"kind":1024,"name":"type","url":"interfaces/responseerrorcv.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseErrorCV"},{"id":1577,"kind":1024,"name":"value","url":"interfaces/responseerrorcv.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseErrorCV"},{"id":1578,"kind":256,"name":"ResponseOkCV","url":"interfaces/responseokcv.html","classes":"tsd-kind-interface"},{"id":1579,"kind":1024,"name":"type","url":"interfaces/responseokcv.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseOkCV"},{"id":1580,"kind":1024,"name":"value","url":"interfaces/responseokcv.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseOkCV"},{"id":1581,"kind":4194304,"name":"ResponseCV","url":"globals.html#responsecv","classes":"tsd-kind-type-alias"},{"id":1582,"kind":64,"name":"responseErrorCV","url":"globals.html#responseerrorcv","classes":"tsd-kind-function"},{"id":1583,"kind":64,"name":"responseOkCV","url":"globals.html#responseokcv","classes":"tsd-kind-function"},{"id":1584,"kind":256,"name":"ListCV","url":"interfaces/listcv.html","classes":"tsd-kind-interface"},{"id":1585,"kind":1024,"name":"type","url":"interfaces/listcv.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ListCV"},{"id":1586,"kind":1024,"name":"list","url":"interfaces/listcv.html#list","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ListCV"},{"id":1587,"kind":64,"name":"listCV","url":"globals.html#listcv","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":1588,"kind":256,"name":"TupleCV","url":"interfaces/tuplecv.html","classes":"tsd-kind-interface"},{"id":1589,"kind":1024,"name":"type","url":"interfaces/tuplecv.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TupleCV"},{"id":1590,"kind":1024,"name":"data","url":"interfaces/tuplecv.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TupleCV"},{"id":1591,"kind":4194304,"name":"TupleData","url":"globals.html#tupledata","classes":"tsd-kind-type-alias"},{"id":1592,"kind":65536,"name":"__type","url":"globals.html#tupledata.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"TupleData"},{"id":1593,"kind":64,"name":"tupleCV","url":"globals.html#tuplecv","classes":"tsd-kind-function"},{"id":1594,"kind":256,"name":"StringAsciiCV","url":"interfaces/stringasciicv.html","classes":"tsd-kind-interface"},{"id":1595,"kind":1024,"name":"type","url":"interfaces/stringasciicv.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StringAsciiCV"},{"id":1596,"kind":1024,"name":"data","url":"interfaces/stringasciicv.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StringAsciiCV"},{"id":1597,"kind":256,"name":"StringUtf8CV","url":"interfaces/stringutf8cv.html","classes":"tsd-kind-interface"},{"id":1598,"kind":1024,"name":"type","url":"interfaces/stringutf8cv.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StringUtf8CV"},{"id":1599,"kind":1024,"name":"data","url":"interfaces/stringutf8cv.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StringUtf8CV"},{"id":1600,"kind":64,"name":"stringAsciiCV","url":"globals.html#stringasciicv","classes":"tsd-kind-function"},{"id":1601,"kind":64,"name":"stringUtf8CV","url":"globals.html#stringutf8cv","classes":"tsd-kind-function"},{"id":1602,"kind":64,"name":"stringCV","url":"globals.html#stringcv","classes":"tsd-kind-function"},{"id":1603,"kind":64,"name":"bufferWithTypeID","url":"globals.html#bufferwithtypeid","classes":"tsd-kind-function"},{"id":1604,"kind":64,"name":"serializeBoolCV","url":"globals.html#serializeboolcv","classes":"tsd-kind-function"},{"id":1605,"kind":64,"name":"serializeOptionalCV","url":"globals.html#serializeoptionalcv","classes":"tsd-kind-function"},{"id":1606,"kind":64,"name":"serializeBufferCV","url":"globals.html#serializebuffercv","classes":"tsd-kind-function"},{"id":1607,"kind":64,"name":"serializeIntCV","url":"globals.html#serializeintcv","classes":"tsd-kind-function"},{"id":1608,"kind":64,"name":"serializeStandardPrincipalCV","url":"globals.html#serializestandardprincipalcv","classes":"tsd-kind-function"},{"id":1609,"kind":64,"name":"serializeContractPrincipalCV","url":"globals.html#serializecontractprincipalcv","classes":"tsd-kind-function"},{"id":1610,"kind":64,"name":"serializeResponseCV","url":"globals.html#serializeresponsecv","classes":"tsd-kind-function"},{"id":1611,"kind":64,"name":"serializeListCV","url":"globals.html#serializelistcv","classes":"tsd-kind-function"},{"id":1612,"kind":64,"name":"serializeTupleCV","url":"globals.html#serializetuplecv","classes":"tsd-kind-function"},{"id":1613,"kind":64,"name":"serializeStringCV","url":"globals.html#serializestringcv","classes":"tsd-kind-function"},{"id":1614,"kind":64,"name":"serializeStringAsciiCV","url":"globals.html#serializestringasciicv","classes":"tsd-kind-function"},{"id":1615,"kind":64,"name":"serializeStringUtf8CV","url":"globals.html#serializestringutf8cv","classes":"tsd-kind-function"},{"id":1616,"kind":64,"name":"serializeCV","url":"globals.html#serializecv","classes":"tsd-kind-function"},{"id":1617,"kind":64,"name":"deserializeCV","url":"globals.html#deserializecv","classes":"tsd-kind-function"},{"id":1618,"kind":128,"name":"BufferArray","url":"classes/bufferarray.html","classes":"tsd-kind-class"},{"id":1619,"kind":1024,"name":"_value","url":"classes/bufferarray.html#_value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BufferArray"},{"id":1620,"kind":262144,"name":"value","url":"classes/bufferarray.html#value","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"BufferArray"},{"id":1621,"kind":2048,"name":"appendHexString","url":"classes/bufferarray.html#appendhexstring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BufferArray"},{"id":1622,"kind":2048,"name":"push","url":"classes/bufferarray.html#push","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BufferArray"},{"id":1623,"kind":2048,"name":"appendByte","url":"classes/bufferarray.html#appendbyte","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BufferArray"},{"id":1624,"kind":2048,"name":"concatBuffer","url":"classes/bufferarray.html#concatbuffer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BufferArray"},{"id":1625,"kind":128,"name":"sha512_256","url":"classes/sha512_256.html","classes":"tsd-kind-class"},{"id":1626,"kind":512,"name":"constructor","url":"classes/sha512_256.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"sha512_256"},{"id":1627,"kind":2048,"name":"digest","url":"classes/sha512_256.html#digest","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"sha512_256"},{"id":1628,"kind":2048,"name":"update","url":"classes/sha512_256.html#update","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1629,"kind":2048,"name":"_transform","url":"classes/sha512_256.html#_transform","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1630,"kind":2048,"name":"_flush","url":"classes/sha512_256.html#_flush","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1631,"kind":1024,"name":"writable","url":"classes/sha512_256.html#writable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1632,"kind":1024,"name":"writableHighWaterMark","url":"classes/sha512_256.html#writablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1633,"kind":1024,"name":"writableLength","url":"classes/sha512_256.html#writablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1634,"kind":2048,"name":"_write","url":"classes/sha512_256.html#_write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1635,"kind":2048,"name":"_writev","url":"classes/sha512_256.html#_writev","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1636,"kind":2048,"name":"_destroy","url":"classes/sha512_256.html#_destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"sha512_256"},{"id":1637,"kind":2048,"name":"_final","url":"classes/sha512_256.html#_final","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1638,"kind":2048,"name":"write","url":"classes/sha512_256.html#write","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1639,"kind":2048,"name":"setDefaultEncoding","url":"classes/sha512_256.html#setdefaultencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1640,"kind":2048,"name":"end","url":"classes/sha512_256.html#end","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1641,"kind":2048,"name":"cork","url":"classes/sha512_256.html#cork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1642,"kind":2048,"name":"uncork","url":"classes/sha512_256.html#uncork","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1643,"kind":1024,"name":"readable","url":"classes/sha512_256.html#readable","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1644,"kind":1024,"name":"readableFlowing","url":"classes/sha512_256.html#readableflowing","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1645,"kind":1024,"name":"readableHighWaterMark","url":"classes/sha512_256.html#readablehighwatermark","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1646,"kind":1024,"name":"readableLength","url":"classes/sha512_256.html#readablelength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1647,"kind":2048,"name":"_read","url":"classes/sha512_256.html#_read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1648,"kind":2048,"name":"read","url":"classes/sha512_256.html#read","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1649,"kind":2048,"name":"setEncoding","url":"classes/sha512_256.html#setencoding","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1650,"kind":2048,"name":"pause","url":"classes/sha512_256.html#pause","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1651,"kind":2048,"name":"resume","url":"classes/sha512_256.html#resume","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1652,"kind":2048,"name":"isPaused","url":"classes/sha512_256.html#ispaused","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1653,"kind":2048,"name":"unpipe","url":"classes/sha512_256.html#unpipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1654,"kind":2048,"name":"unshift","url":"classes/sha512_256.html#unshift","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1655,"kind":2048,"name":"wrap","url":"classes/sha512_256.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1656,"kind":2048,"name":"push","url":"classes/sha512_256.html#push","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1657,"kind":2048,"name":"destroy","url":"classes/sha512_256.html#destroy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1658,"kind":2048,"name":"addListener","url":"classes/sha512_256.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"sha512_256"},{"id":1659,"kind":2048,"name":"emit","url":"classes/sha512_256.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"sha512_256"},{"id":1660,"kind":2048,"name":"on","url":"classes/sha512_256.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"sha512_256"},{"id":1661,"kind":2048,"name":"once","url":"classes/sha512_256.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"sha512_256"},{"id":1662,"kind":2048,"name":"prependListener","url":"classes/sha512_256.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"sha512_256"},{"id":1663,"kind":2048,"name":"prependOnceListener","url":"classes/sha512_256.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"sha512_256"},{"id":1664,"kind":2048,"name":"removeListener","url":"classes/sha512_256.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"sha512_256"},{"id":1665,"kind":2048,"name":"[Symbol.asyncIterator]","url":"classes/sha512_256.html#_symbol_asynciterator_","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1666,"kind":2048,"name":"pipe","url":"classes/sha512_256.html#pipe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited","parent":"sha512_256"},{"id":1667,"kind":2048,"name":"listenerCount","url":"classes/sha512_256.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"sha512_256"},{"id":1668,"kind":1024,"name":"defaultMaxListeners","url":"classes/sha512_256.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"sha512_256"},{"id":1669,"kind":2048,"name":"off","url":"classes/sha512_256.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1670,"kind":2048,"name":"removeAllListeners","url":"classes/sha512_256.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1671,"kind":2048,"name":"setMaxListeners","url":"classes/sha512_256.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1672,"kind":2048,"name":"getMaxListeners","url":"classes/sha512_256.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1673,"kind":2048,"name":"listeners","url":"classes/sha512_256.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1674,"kind":2048,"name":"rawListeners","url":"classes/sha512_256.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1675,"kind":2048,"name":"eventNames","url":"classes/sha512_256.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1676,"kind":2048,"name":"listenerCount","url":"classes/sha512_256.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"sha512_256"},{"id":1677,"kind":256,"name":"ReadOnlyFunctionResponse","url":"interfaces/readonlyfunctionresponse.html","classes":"tsd-kind-interface"},{"id":1678,"kind":1024,"name":"okay","url":"interfaces/readonlyfunctionresponse.html#okay","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ReadOnlyFunctionResponse"},{"id":1679,"kind":1024,"name":"result","url":"interfaces/readonlyfunctionresponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ReadOnlyFunctionResponse"},{"id":1680,"kind":64,"name":"leftPadHex","url":"globals.html#leftpadhex","classes":"tsd-kind-function"},{"id":1681,"kind":64,"name":"leftPadHexToLength","url":"globals.html#leftpadhextolength","classes":"tsd-kind-function"},{"id":1682,"kind":64,"name":"rightPadHexToLength","url":"globals.html#rightpadhextolength","classes":"tsd-kind-function"},{"id":1683,"kind":64,"name":"intToHexString","url":"globals.html#inttohexstring","classes":"tsd-kind-function"},{"id":1684,"kind":64,"name":"hexStringToInt","url":"globals.html#hexstringtoint","classes":"tsd-kind-function"},{"id":1685,"kind":64,"name":"exceedsMaxLengthBytes","url":"globals.html#exceedsmaxlengthbytes","classes":"tsd-kind-function"},{"id":1686,"kind":64,"name":"cloneDeep","url":"globals.html#clonedeep","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":1687,"kind":64,"name":"omit","url":"globals.html#omit","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":1688,"kind":64,"name":"txidFromData","url":"globals.html#txidfromdata","classes":"tsd-kind-function"},{"id":1689,"kind":64,"name":"hashP2PKH","url":"globals.html#hashp2pkh","classes":"tsd-kind-function"},{"id":1690,"kind":64,"name":"hashP2SH","url":"globals.html#hashp2sh","classes":"tsd-kind-function"},{"id":1691,"kind":64,"name":"isClarityName","url":"globals.html#isclarityname","classes":"tsd-kind-function"},{"id":1692,"kind":64,"name":"cvToHex","url":"globals.html#cvtohex","classes":"tsd-kind-function"},{"id":1693,"kind":64,"name":"hexToCV","url":"globals.html#hextocv","classes":"tsd-kind-function"},{"id":1694,"kind":64,"name":"parseReadOnlyResponse","url":"globals.html#parsereadonlyresponse","classes":"tsd-kind-function"},{"id":1695,"kind":64,"name":"validateStacksAddress","url":"globals.html#validatestacksaddress","classes":"tsd-kind-function"},{"id":1696,"kind":128,"name":"Deserializable","url":"classes/deserializable.html","classes":"tsd-kind-class"},{"id":1697,"kind":2048,"name":"serialize","url":"classes/deserializable.html#serialize","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Deserializable"},{"id":1698,"kind":2048,"name":"deserialize","url":"classes/deserializable.html#deserialize","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Deserializable"},{"id":1699,"kind":2048,"name":"deserialize","url":"classes/deserializable.html#deserialize-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Deserializable"},{"id":1700,"kind":256,"name":"MessageSignature","url":"interfaces/messagesignature.html","classes":"tsd-kind-interface"},{"id":1701,"kind":1024,"name":"type","url":"interfaces/messagesignature.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MessageSignature"},{"id":1702,"kind":1024,"name":"data","url":"interfaces/messagesignature.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MessageSignature"},{"id":1703,"kind":4,"name":"AuthFieldType","url":"enums/authfieldtype.html","classes":"tsd-kind-enum"},{"id":1704,"kind":16,"name":"PublicKey","url":"enums/authfieldtype.html#publickey","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AuthFieldType"},{"id":1705,"kind":16,"name":"Signature","url":"enums/authfieldtype.html#signature","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AuthFieldType"},{"id":1706,"kind":256,"name":"TransactionAuthField","url":"interfaces/transactionauthfield.html","classes":"tsd-kind-interface"},{"id":1707,"kind":1024,"name":"type","url":"interfaces/transactionauthfield.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TransactionAuthField"},{"id":1708,"kind":1024,"name":"contents","url":"interfaces/transactionauthfield.html#contents","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TransactionAuthField"},{"id":1709,"kind":256,"name":"SingleSigSpendingCondition","url":"interfaces/singlesigspendingcondition.html","classes":"tsd-kind-interface"},{"id":1710,"kind":1024,"name":"hashMode","url":"interfaces/singlesigspendingcondition.html#hashmode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SingleSigSpendingCondition"},{"id":1711,"kind":1024,"name":"signer","url":"interfaces/singlesigspendingcondition.html#signer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SingleSigSpendingCondition"},{"id":1712,"kind":1024,"name":"nonce","url":"interfaces/singlesigspendingcondition.html#nonce","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SingleSigSpendingCondition"},{"id":1713,"kind":1024,"name":"fee","url":"interfaces/singlesigspendingcondition.html#fee","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SingleSigSpendingCondition"},{"id":1714,"kind":1024,"name":"keyEncoding","url":"interfaces/singlesigspendingcondition.html#keyencoding","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SingleSigSpendingCondition"},{"id":1715,"kind":1024,"name":"signature","url":"interfaces/singlesigspendingcondition.html#signature","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SingleSigSpendingCondition"},{"id":1716,"kind":256,"name":"MultiSigSpendingCondition","url":"interfaces/multisigspendingcondition.html","classes":"tsd-kind-interface"},{"id":1717,"kind":1024,"name":"hashMode","url":"interfaces/multisigspendingcondition.html#hashmode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MultiSigSpendingCondition"},{"id":1718,"kind":1024,"name":"signer","url":"interfaces/multisigspendingcondition.html#signer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MultiSigSpendingCondition"},{"id":1719,"kind":1024,"name":"nonce","url":"interfaces/multisigspendingcondition.html#nonce","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MultiSigSpendingCondition"},{"id":1720,"kind":1024,"name":"fee","url":"interfaces/multisigspendingcondition.html#fee","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MultiSigSpendingCondition"},{"id":1721,"kind":1024,"name":"fields","url":"interfaces/multisigspendingcondition.html#fields","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MultiSigSpendingCondition"},{"id":1722,"kind":1024,"name":"signaturesRequired","url":"interfaces/multisigspendingcondition.html#signaturesrequired","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MultiSigSpendingCondition"},{"id":1723,"kind":128,"name":"Authorization","url":"classes/authorization.html","classes":"tsd-kind-class"},{"id":1724,"kind":1024,"name":"authType","url":"classes/authorization.html#authtype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Authorization"},{"id":1725,"kind":1024,"name":"spendingCondition","url":"classes/authorization.html#spendingcondition","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Authorization"},{"id":1726,"kind":1024,"name":"sponsorSpendingCondition","url":"classes/authorization.html#sponsorspendingcondition","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Authorization"},{"id":1727,"kind":512,"name":"constructor","url":"classes/authorization.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Authorization"},{"id":1728,"kind":2048,"name":"intoInitialSighashAuth","url":"classes/authorization.html#intoinitialsighashauth","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Authorization"},{"id":1729,"kind":2048,"name":"setFee","url":"classes/authorization.html#setfee","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Authorization"},{"id":1730,"kind":2048,"name":"getFee","url":"classes/authorization.html#getfee","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Authorization"},{"id":1731,"kind":2048,"name":"setNonce","url":"classes/authorization.html#setnonce","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Authorization"},{"id":1732,"kind":2048,"name":"setSponsorNonce","url":"classes/authorization.html#setsponsornonce","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Authorization"},{"id":1733,"kind":2048,"name":"setSponsor","url":"classes/authorization.html#setsponsor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Authorization"},{"id":1734,"kind":2048,"name":"verifyOrigin","url":"classes/authorization.html#verifyorigin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Authorization"},{"id":1735,"kind":2048,"name":"serialize","url":"classes/authorization.html#serialize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Authorization"},{"id":1736,"kind":2048,"name":"deserialize","url":"classes/authorization.html#deserialize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Authorization"},{"id":1737,"kind":2048,"name":"deserialize","url":"classes/authorization.html#deserialize-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"Authorization"},{"id":1738,"kind":128,"name":"StandardAuthorization","url":"classes/standardauthorization.html","classes":"tsd-kind-class"},{"id":1739,"kind":512,"name":"constructor","url":"classes/standardauthorization.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"StandardAuthorization"},{"id":1740,"kind":1024,"name":"authType","url":"classes/standardauthorization.html#authtype","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StandardAuthorization"},{"id":1741,"kind":1024,"name":"spendingCondition","url":"classes/standardauthorization.html#spendingcondition","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StandardAuthorization"},{"id":1742,"kind":1024,"name":"sponsorSpendingCondition","url":"classes/standardauthorization.html#sponsorspendingcondition","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StandardAuthorization"},{"id":1743,"kind":2048,"name":"intoInitialSighashAuth","url":"classes/standardauthorization.html#intoinitialsighashauth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StandardAuthorization"},{"id":1744,"kind":2048,"name":"setFee","url":"classes/standardauthorization.html#setfee","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StandardAuthorization"},{"id":1745,"kind":2048,"name":"getFee","url":"classes/standardauthorization.html#getfee","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StandardAuthorization"},{"id":1746,"kind":2048,"name":"setNonce","url":"classes/standardauthorization.html#setnonce","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StandardAuthorization"},{"id":1747,"kind":2048,"name":"setSponsorNonce","url":"classes/standardauthorization.html#setsponsornonce","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StandardAuthorization"},{"id":1748,"kind":2048,"name":"setSponsor","url":"classes/standardauthorization.html#setsponsor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StandardAuthorization"},{"id":1749,"kind":2048,"name":"verifyOrigin","url":"classes/standardauthorization.html#verifyorigin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StandardAuthorization"},{"id":1750,"kind":2048,"name":"serialize","url":"classes/standardauthorization.html#serialize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"StandardAuthorization"},{"id":1751,"kind":2048,"name":"deserialize","url":"classes/standardauthorization.html#deserialize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"StandardAuthorization"},{"id":1752,"kind":2048,"name":"deserialize","url":"classes/standardauthorization.html#deserialize-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"StandardAuthorization"},{"id":1753,"kind":128,"name":"SponsoredAuthorization","url":"classes/sponsoredauthorization.html","classes":"tsd-kind-class"},{"id":1754,"kind":512,"name":"constructor","url":"classes/sponsoredauthorization.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"SponsoredAuthorization"},{"id":1755,"kind":1024,"name":"authType","url":"classes/sponsoredauthorization.html#authtype","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"SponsoredAuthorization"},{"id":1756,"kind":1024,"name":"spendingCondition","url":"classes/sponsoredauthorization.html#spendingcondition","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"SponsoredAuthorization"},{"id":1757,"kind":1024,"name":"sponsorSpendingCondition","url":"classes/sponsoredauthorization.html#sponsorspendingcondition","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"SponsoredAuthorization"},{"id":1758,"kind":2048,"name":"intoInitialSighashAuth","url":"classes/sponsoredauthorization.html#intoinitialsighashauth","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"SponsoredAuthorization"},{"id":1759,"kind":2048,"name":"setFee","url":"classes/sponsoredauthorization.html#setfee","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"SponsoredAuthorization"},{"id":1760,"kind":2048,"name":"getFee","url":"classes/sponsoredauthorization.html#getfee","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"SponsoredAuthorization"},{"id":1761,"kind":2048,"name":"setNonce","url":"classes/sponsoredauthorization.html#setnonce","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"SponsoredAuthorization"},{"id":1762,"kind":2048,"name":"setSponsorNonce","url":"classes/sponsoredauthorization.html#setsponsornonce","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"SponsoredAuthorization"},{"id":1763,"kind":2048,"name":"setSponsor","url":"classes/sponsoredauthorization.html#setsponsor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"SponsoredAuthorization"},{"id":1764,"kind":2048,"name":"verifyOrigin","url":"classes/sponsoredauthorization.html#verifyorigin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"SponsoredAuthorization"},{"id":1765,"kind":2048,"name":"serialize","url":"classes/sponsoredauthorization.html#serialize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"SponsoredAuthorization"},{"id":1766,"kind":2048,"name":"deserialize","url":"classes/sponsoredauthorization.html#deserialize","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"SponsoredAuthorization"},{"id":1767,"kind":2048,"name":"deserialize","url":"classes/sponsoredauthorization.html#deserialize-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-static","parent":"SponsoredAuthorization"},{"id":1768,"kind":64,"name":"createMessageSignature","url":"globals.html#createmessagesignature","classes":"tsd-kind-function"},{"id":1769,"kind":64,"name":"emptyMessageSignature","url":"globals.html#emptymessagesignature","classes":"tsd-kind-function"},{"id":1770,"kind":64,"name":"serializeMessageSignature","url":"globals.html#serializemessagesignature","classes":"tsd-kind-function"},{"id":1771,"kind":64,"name":"deserializeMessageSignature","url":"globals.html#deserializemessagesignature","classes":"tsd-kind-function"},{"id":1772,"kind":4194304,"name":"TransactionAuthFieldContents","url":"globals.html#transactionauthfieldcontents","classes":"tsd-kind-type-alias"},{"id":1773,"kind":64,"name":"createTransactionAuthField","url":"globals.html#createtransactionauthfield","classes":"tsd-kind-function"},{"id":1774,"kind":64,"name":"serializeTransactionAuthField","url":"globals.html#serializetransactionauthfield","classes":"tsd-kind-function"},{"id":1775,"kind":64,"name":"deserializeTransactionAuthField","url":"globals.html#deserializetransactionauthfield","classes":"tsd-kind-function"},{"id":1776,"kind":4194304,"name":"SpendingCondition","url":"globals.html#spendingcondition","classes":"tsd-kind-type-alias"},{"id":1777,"kind":64,"name":"createSingleSigSpendingCondition","url":"globals.html#createsinglesigspendingcondition","classes":"tsd-kind-function"},{"id":1778,"kind":64,"name":"createMultiSigSpendingCondition","url":"globals.html#createmultisigspendingcondition","classes":"tsd-kind-function"},{"id":1779,"kind":64,"name":"isSingleSig","url":"globals.html#issinglesig","classes":"tsd-kind-function"},{"id":1780,"kind":64,"name":"clearCondition","url":"globals.html#clearcondition","classes":"tsd-kind-function"},{"id":1781,"kind":64,"name":"serializeSingleSigSpendingCondition","url":"globals.html#serializesinglesigspendingcondition","classes":"tsd-kind-function"},{"id":1782,"kind":64,"name":"serializeMultiSigSpendingCondition","url":"globals.html#serializemultisigspendingcondition","classes":"tsd-kind-function"},{"id":1783,"kind":64,"name":"deserializeSingleSigSpendingCondition","url":"globals.html#deserializesinglesigspendingcondition","classes":"tsd-kind-function"},{"id":1784,"kind":64,"name":"deserializeMultiSigSpendingCondition","url":"globals.html#deserializemultisigspendingcondition","classes":"tsd-kind-function"},{"id":1785,"kind":64,"name":"serializeSpendingCondition","url":"globals.html#serializespendingcondition","classes":"tsd-kind-function"},{"id":1786,"kind":64,"name":"deserializeSpendingCondition","url":"globals.html#deserializespendingcondition","classes":"tsd-kind-function"},{"id":1787,"kind":64,"name":"makeSigHashPreSign","url":"globals.html#makesighashpresign","classes":"tsd-kind-function"},{"id":1788,"kind":64,"name":"makeSigHashPostSign","url":"globals.html#makesighashpostsign","classes":"tsd-kind-function"},{"id":1789,"kind":64,"name":"nextSignature","url":"globals.html#nextsignature","classes":"tsd-kind-function"},{"id":1790,"kind":64,"name":"nextVerification","url":"globals.html#nextverification","classes":"tsd-kind-function"},{"id":1791,"kind":64,"name":"newInitialSigHash","url":"globals.html#newinitialsighash","classes":"tsd-kind-function"},{"id":1792,"kind":64,"name":"verify","url":"globals.html#verify","classes":"tsd-kind-function"},{"id":1793,"kind":64,"name":"verifySingleSig","url":"globals.html#verifysinglesig","classes":"tsd-kind-function"},{"id":1794,"kind":128,"name":"StacksTransaction","url":"classes/stackstransaction.html","classes":"tsd-kind-class"},{"id":1795,"kind":1024,"name":"version","url":"classes/stackstransaction.html#version","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1796,"kind":1024,"name":"chainId","url":"classes/stackstransaction.html#chainid","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1797,"kind":1024,"name":"auth","url":"classes/stackstransaction.html#auth","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1798,"kind":1024,"name":"anchorMode","url":"classes/stackstransaction.html#anchormode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1799,"kind":1024,"name":"payload","url":"classes/stackstransaction.html#payload","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1800,"kind":1024,"name":"postConditionMode","url":"classes/stackstransaction.html#postconditionmode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1801,"kind":1024,"name":"postConditions","url":"classes/stackstransaction.html#postconditions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1802,"kind":512,"name":"constructor","url":"classes/stackstransaction.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1803,"kind":2048,"name":"signBegin","url":"classes/stackstransaction.html#signbegin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1804,"kind":2048,"name":"verifyBegin","url":"classes/stackstransaction.html#verifybegin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1805,"kind":2048,"name":"createTxWithSignature","url":"classes/stackstransaction.html#createtxwithsignature","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1806,"kind":2048,"name":"verifyOrigin","url":"classes/stackstransaction.html#verifyorigin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1807,"kind":2048,"name":"signNextOrigin","url":"classes/stackstransaction.html#signnextorigin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1808,"kind":2048,"name":"signNextSponsor","url":"classes/stackstransaction.html#signnextsponsor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1809,"kind":2048,"name":"appendPubkey","url":"classes/stackstransaction.html#appendpubkey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1810,"kind":2048,"name":"signAndAppend","url":"classes/stackstransaction.html#signandappend","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1811,"kind":2048,"name":"txid","url":"classes/stackstransaction.html#txid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1812,"kind":2048,"name":"setSponsor","url":"classes/stackstransaction.html#setsponsor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1813,"kind":2048,"name":"setFee","url":"classes/stackstransaction.html#setfee","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1814,"kind":2048,"name":"setNonce","url":"classes/stackstransaction.html#setnonce","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1815,"kind":2048,"name":"setSponsorNonce","url":"classes/stackstransaction.html#setsponsornonce","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1816,"kind":2048,"name":"serialize","url":"classes/stackstransaction.html#serialize","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StacksTransaction"},{"id":1817,"kind":64,"name":"deserializeTransaction","url":"globals.html#deserializetransaction","classes":"tsd-kind-function"},{"id":1818,"kind":128,"name":"TransactionSigner","url":"classes/transactionsigner.html","classes":"tsd-kind-class"},{"id":1819,"kind":1024,"name":"transaction","url":"classes/transactionsigner.html#transaction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"TransactionSigner"},{"id":1820,"kind":1024,"name":"sigHash","url":"classes/transactionsigner.html#sighash","classes":"tsd-kind-property tsd-parent-kind-class","parent":"TransactionSigner"},{"id":1821,"kind":1024,"name":"originDone","url":"classes/transactionsigner.html#origindone","classes":"tsd-kind-property tsd-parent-kind-class","parent":"TransactionSigner"},{"id":1822,"kind":1024,"name":"checkOversign","url":"classes/transactionsigner.html#checkoversign","classes":"tsd-kind-property tsd-parent-kind-class","parent":"TransactionSigner"},{"id":1823,"kind":1024,"name":"checkOverlap","url":"classes/transactionsigner.html#checkoverlap","classes":"tsd-kind-property tsd-parent-kind-class","parent":"TransactionSigner"},{"id":1824,"kind":512,"name":"constructor","url":"classes/transactionsigner.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"TransactionSigner"},{"id":1825,"kind":2048,"name":"createSponsorSigner","url":"classes/transactionsigner.html#createsponsorsigner","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"TransactionSigner"},{"id":1826,"kind":2048,"name":"signOrigin","url":"classes/transactionsigner.html#signorigin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TransactionSigner"},{"id":1827,"kind":2048,"name":"appendOrigin","url":"classes/transactionsigner.html#appendorigin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TransactionSigner"},{"id":1828,"kind":2048,"name":"signSponsor","url":"classes/transactionsigner.html#signsponsor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TransactionSigner"},{"id":1829,"kind":2048,"name":"getTxInComplete","url":"classes/transactionsigner.html#gettxincomplete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TransactionSigner"},{"id":1830,"kind":2048,"name":"resume","url":"classes/transactionsigner.html#resume","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TransactionSigner"},{"id":1831,"kind":4,"name":"ClarityAbiTypeId","url":"enums/clarityabitypeid.html","classes":"tsd-kind-enum"},{"id":1832,"kind":16,"name":"ClarityAbiTypeUInt128","url":"enums/clarityabitypeid.html#clarityabitypeuint128","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityAbiTypeId"},{"id":1833,"kind":16,"name":"ClarityAbiTypeInt128","url":"enums/clarityabitypeid.html#clarityabitypeint128","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityAbiTypeId"},{"id":1834,"kind":16,"name":"ClarityAbiTypeBool","url":"enums/clarityabitypeid.html#clarityabitypebool","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityAbiTypeId"},{"id":1835,"kind":16,"name":"ClarityAbiTypePrincipal","url":"enums/clarityabitypeid.html#clarityabitypeprincipal","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityAbiTypeId"},{"id":1836,"kind":16,"name":"ClarityAbiTypeNone","url":"enums/clarityabitypeid.html#clarityabitypenone","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityAbiTypeId"},{"id":1837,"kind":16,"name":"ClarityAbiTypeBuffer","url":"enums/clarityabitypeid.html#clarityabitypebuffer","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityAbiTypeId"},{"id":1838,"kind":16,"name":"ClarityAbiTypeResponse","url":"enums/clarityabitypeid.html#clarityabityperesponse","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityAbiTypeId"},{"id":1839,"kind":16,"name":"ClarityAbiTypeOptional","url":"enums/clarityabitypeid.html#clarityabitypeoptional","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityAbiTypeId"},{"id":1840,"kind":16,"name":"ClarityAbiTypeTuple","url":"enums/clarityabitypeid.html#clarityabitypetuple","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityAbiTypeId"},{"id":1841,"kind":16,"name":"ClarityAbiTypeList","url":"enums/clarityabitypeid.html#clarityabitypelist","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityAbiTypeId"},{"id":1842,"kind":16,"name":"ClarityAbiTypeStringAscii","url":"enums/clarityabitypeid.html#clarityabitypestringascii","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityAbiTypeId"},{"id":1843,"kind":16,"name":"ClarityAbiTypeStringUtf8","url":"enums/clarityabitypeid.html#clarityabitypestringutf8","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ClarityAbiTypeId"},{"id":1844,"kind":256,"name":"ClarityAbiFunction","url":"interfaces/clarityabifunction.html","classes":"tsd-kind-interface"},{"id":1845,"kind":1024,"name":"name","url":"interfaces/clarityabifunction.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbiFunction"},{"id":1846,"kind":1024,"name":"access","url":"interfaces/clarityabifunction.html#access","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbiFunction"},{"id":1847,"kind":1024,"name":"args","url":"interfaces/clarityabifunction.html#args","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbiFunction"},{"id":1848,"kind":1024,"name":"outputs","url":"interfaces/clarityabifunction.html#outputs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbiFunction"},{"id":1849,"kind":65536,"name":"__type","url":"interfaces/clarityabifunction.html#outputs.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"ClarityAbiFunction.outputs"},{"id":1850,"kind":32,"name":"type","url":"interfaces/clarityabifunction.html#outputs.__type.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"ClarityAbiFunction.outputs.__type"},{"id":1851,"kind":256,"name":"ClarityAbiVariable","url":"interfaces/clarityabivariable.html","classes":"tsd-kind-interface"},{"id":1852,"kind":1024,"name":"name","url":"interfaces/clarityabivariable.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbiVariable"},{"id":1853,"kind":1024,"name":"access","url":"interfaces/clarityabivariable.html#access","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbiVariable"},{"id":1854,"kind":1024,"name":"type","url":"interfaces/clarityabivariable.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbiVariable"},{"id":1855,"kind":256,"name":"ClarityAbiMap","url":"interfaces/clarityabimap.html","classes":"tsd-kind-interface"},{"id":1856,"kind":1024,"name":"name","url":"interfaces/clarityabimap.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbiMap"},{"id":1857,"kind":1024,"name":"key","url":"interfaces/clarityabimap.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbiMap"},{"id":1858,"kind":1024,"name":"value","url":"interfaces/clarityabimap.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbiMap"},{"id":1859,"kind":256,"name":"ClarityAbiTypeFungibleToken","url":"interfaces/clarityabitypefungibletoken.html","classes":"tsd-kind-interface"},{"id":1860,"kind":1024,"name":"name","url":"interfaces/clarityabitypefungibletoken.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbiTypeFungibleToken"},{"id":1861,"kind":256,"name":"ClarityAbiTypeNonFungibleToken","url":"interfaces/clarityabitypenonfungibletoken.html","classes":"tsd-kind-interface"},{"id":1862,"kind":1024,"name":"name","url":"interfaces/clarityabitypenonfungibletoken.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbiTypeNonFungibleToken"},{"id":1863,"kind":1024,"name":"type","url":"interfaces/clarityabitypenonfungibletoken.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbiTypeNonFungibleToken"},{"id":1864,"kind":256,"name":"ClarityAbi","url":"interfaces/clarityabi.html","classes":"tsd-kind-interface"},{"id":1865,"kind":1024,"name":"functions","url":"interfaces/clarityabi.html#functions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbi"},{"id":1866,"kind":1024,"name":"variables","url":"interfaces/clarityabi.html#variables","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbi"},{"id":1867,"kind":1024,"name":"maps","url":"interfaces/clarityabi.html#maps","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbi"},{"id":1868,"kind":1024,"name":"fungible_tokens","url":"interfaces/clarityabi.html#fungible_tokens","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbi"},{"id":1869,"kind":1024,"name":"non_fungible_tokens","url":"interfaces/clarityabi.html#non_fungible_tokens","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClarityAbi"},{"id":1870,"kind":4194304,"name":"ClarityAbiTypeBuffer","url":"globals.html#clarityabitypebuffer","classes":"tsd-kind-type-alias"},{"id":1871,"kind":65536,"name":"__type","url":"globals.html#clarityabitypebuffer.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ClarityAbiTypeBuffer"},{"id":1872,"kind":32,"name":"buffer","url":"globals.html#clarityabitypebuffer.__type.buffer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"ClarityAbiTypeBuffer.__type"},{"id":1873,"kind":65536,"name":"__type","url":"globals.html#clarityabitypebuffer.__type.buffer.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"ClarityAbiTypeBuffer.__type.buffer"},{"id":1874,"kind":32,"name":"length","url":"globals.html#clarityabitypebuffer.__type.buffer.__type-1.length","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"ClarityAbiTypeBuffer.__type.buffer.__type"},{"id":1875,"kind":4194304,"name":"ClarityAbiTypeStringAscii","url":"globals.html#clarityabitypestringascii","classes":"tsd-kind-type-alias"},{"id":1876,"kind":65536,"name":"__type","url":"globals.html#clarityabitypestringascii.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ClarityAbiTypeStringAscii"},{"id":1877,"kind":32,"name":"string-ascii","url":"globals.html#clarityabitypestringascii.__type.string_ascii","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"ClarityAbiTypeStringAscii.__type"},{"id":1878,"kind":65536,"name":"__type","url":"globals.html#clarityabitypestringascii.__type.string_ascii.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"ClarityAbiTypeStringAscii.__type.string-ascii"},{"id":1879,"kind":32,"name":"length","url":"globals.html#clarityabitypestringascii.__type.string_ascii.__type-1.length","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"ClarityAbiTypeStringAscii.__type.string-ascii.__type"},{"id":1880,"kind":4194304,"name":"ClarityAbiTypeStringUtf8","url":"globals.html#clarityabitypestringutf8","classes":"tsd-kind-type-alias"},{"id":1881,"kind":65536,"name":"__type","url":"globals.html#clarityabitypestringutf8.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ClarityAbiTypeStringUtf8"},{"id":1882,"kind":32,"name":"string-utf8","url":"globals.html#clarityabitypestringutf8.__type.string_utf8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"ClarityAbiTypeStringUtf8.__type"},{"id":1883,"kind":65536,"name":"__type","url":"globals.html#clarityabitypestringutf8.__type.string_utf8.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"ClarityAbiTypeStringUtf8.__type.string-utf8"},{"id":1884,"kind":32,"name":"length","url":"globals.html#clarityabitypestringutf8.__type.string_utf8.__type-1.length","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"ClarityAbiTypeStringUtf8.__type.string-utf8.__type"},{"id":1885,"kind":4194304,"name":"ClarityAbiTypeResponse","url":"globals.html#clarityabityperesponse","classes":"tsd-kind-type-alias"},{"id":1886,"kind":65536,"name":"__type","url":"globals.html#clarityabityperesponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ClarityAbiTypeResponse"},{"id":1887,"kind":32,"name":"response","url":"globals.html#clarityabityperesponse.__type.response","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"ClarityAbiTypeResponse.__type"},{"id":1888,"kind":65536,"name":"__type","url":"globals.html#clarityabityperesponse.__type.response.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"ClarityAbiTypeResponse.__type.response"},{"id":1889,"kind":32,"name":"ok","url":"globals.html#clarityabityperesponse.__type.response.__type-1.ok","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"ClarityAbiTypeResponse.__type.response.__type"},{"id":1890,"kind":32,"name":"error","url":"globals.html#clarityabityperesponse.__type.response.__type-1.error","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"ClarityAbiTypeResponse.__type.response.__type"},{"id":1891,"kind":4194304,"name":"ClarityAbiTypeOptional","url":"globals.html#clarityabitypeoptional","classes":"tsd-kind-type-alias"},{"id":1892,"kind":65536,"name":"__type","url":"globals.html#clarityabitypeoptional.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ClarityAbiTypeOptional"},{"id":1893,"kind":32,"name":"optional","url":"globals.html#clarityabitypeoptional.__type.optional","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"ClarityAbiTypeOptional.__type"},{"id":1894,"kind":4194304,"name":"ClarityAbiTypeTuple","url":"globals.html#clarityabitypetuple","classes":"tsd-kind-type-alias"},{"id":1895,"kind":65536,"name":"__type","url":"globals.html#clarityabitypetuple.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ClarityAbiTypeTuple"},{"id":1896,"kind":32,"name":"tuple","url":"globals.html#clarityabitypetuple.__type.tuple","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"ClarityAbiTypeTuple.__type"},{"id":1897,"kind":4194304,"name":"ClarityAbiTypeList","url":"globals.html#clarityabitypelist","classes":"tsd-kind-type-alias"},{"id":1898,"kind":65536,"name":"__type","url":"globals.html#clarityabitypelist.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ClarityAbiTypeList"},{"id":1899,"kind":32,"name":"list","url":"globals.html#clarityabitypelist.__type.list","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"ClarityAbiTypeList.__type"},{"id":1900,"kind":65536,"name":"__type","url":"globals.html#clarityabitypelist.__type.list.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"ClarityAbiTypeList.__type.list"},{"id":1901,"kind":32,"name":"type","url":"globals.html#clarityabitypelist.__type.list.__type-1.type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"ClarityAbiTypeList.__type.list.__type"},{"id":1902,"kind":32,"name":"length","url":"globals.html#clarityabitypelist.__type.list.__type-1.length","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"ClarityAbiTypeList.__type.list.__type"},{"id":1903,"kind":4194304,"name":"ClarityAbiTypeUInt128","url":"globals.html#clarityabitypeuint128","classes":"tsd-kind-type-alias"},{"id":1904,"kind":4194304,"name":"ClarityAbiTypeInt128","url":"globals.html#clarityabitypeint128","classes":"tsd-kind-type-alias"},{"id":1905,"kind":4194304,"name":"ClarityAbiTypeBool","url":"globals.html#clarityabitypebool","classes":"tsd-kind-type-alias"},{"id":1906,"kind":4194304,"name":"ClarityAbiTypePrincipal","url":"globals.html#clarityabitypeprincipal","classes":"tsd-kind-type-alias"},{"id":1907,"kind":4194304,"name":"ClarityAbiTypeNone","url":"globals.html#clarityabitypenone","classes":"tsd-kind-type-alias"},{"id":1908,"kind":4194304,"name":"ClarityAbiTypePrimitive","url":"globals.html#clarityabitypeprimitive","classes":"tsd-kind-type-alias"},{"id":1909,"kind":4194304,"name":"ClarityAbiType","url":"globals.html#clarityabitype","classes":"tsd-kind-type-alias"},{"id":1910,"kind":64,"name":"isClarityAbiPrimitive","url":"globals.html#isclarityabiprimitive","classes":"tsd-kind-function"},{"id":1911,"kind":64,"name":"isClarityAbiBuffer","url":"globals.html#isclarityabibuffer","classes":"tsd-kind-function"},{"id":1912,"kind":64,"name":"isClarityAbiStringAscii","url":"globals.html#isclarityabistringascii","classes":"tsd-kind-function"},{"id":1913,"kind":64,"name":"isClarityAbiStringUtf8","url":"globals.html#isclarityabistringutf8","classes":"tsd-kind-function"},{"id":1914,"kind":64,"name":"isClarityAbiResponse","url":"globals.html#isclarityabiresponse","classes":"tsd-kind-function"},{"id":1915,"kind":64,"name":"isClarityAbiOptional","url":"globals.html#isclarityabioptional","classes":"tsd-kind-function"},{"id":1916,"kind":64,"name":"isClarityAbiTuple","url":"globals.html#isclarityabituple","classes":"tsd-kind-function"},{"id":1917,"kind":64,"name":"isClarityAbiList","url":"globals.html#isclarityabilist","classes":"tsd-kind-function"},{"id":1918,"kind":4194304,"name":"ClarityAbiTypeUnion","url":"globals.html#clarityabitypeunion","classes":"tsd-kind-type-alias"},{"id":1919,"kind":64,"name":"getTypeUnion","url":"globals.html#gettypeunion","classes":"tsd-kind-function"},{"id":1920,"kind":64,"name":"encodeClarityValue","url":"globals.html#encodeclarityvalue","classes":"tsd-kind-function"},{"id":1921,"kind":64,"name":"getTypeString","url":"globals.html#gettypestring","classes":"tsd-kind-function"},{"id":1922,"kind":64,"name":"abiFunctionToString","url":"globals.html#abifunctiontostring","classes":"tsd-kind-function"},{"id":1923,"kind":64,"name":"matchType","url":"globals.html#matchtype","classes":"tsd-kind-function"},{"id":1924,"kind":64,"name":"validateContractCall","url":"globals.html#validatecontractcall","classes":"tsd-kind-function"},{"id":1925,"kind":64,"name":"parseToCV","url":"globals.html#parsetocv","classes":"tsd-kind-function"},{"id":1926,"kind":256,"name":"MultiSigOptions","url":"interfaces/multisigoptions.html","classes":"tsd-kind-interface"},{"id":1927,"kind":1024,"name":"numSignatures","url":"interfaces/multisigoptions.html#numsignatures","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MultiSigOptions"},{"id":1928,"kind":1024,"name":"publicKeys","url":"interfaces/multisigoptions.html#publickeys","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MultiSigOptions"},{"id":1929,"kind":1024,"name":"signerKeys","url":"interfaces/multisigoptions.html#signerkeys","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MultiSigOptions"},{"id":1930,"kind":256,"name":"TokenTransferOptions","url":"interfaces/tokentransferoptions.html","classes":"tsd-kind-interface"},{"id":1931,"kind":1024,"name":"recipient","url":"interfaces/tokentransferoptions.html#recipient","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TokenTransferOptions"},{"id":1932,"kind":1024,"name":"amount","url":"interfaces/tokentransferoptions.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TokenTransferOptions"},{"id":1933,"kind":1024,"name":"fee","url":"interfaces/tokentransferoptions.html#fee","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TokenTransferOptions"},{"id":1934,"kind":1024,"name":"nonce","url":"interfaces/tokentransferoptions.html#nonce","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TokenTransferOptions"},{"id":1935,"kind":1024,"name":"network","url":"interfaces/tokentransferoptions.html#network","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TokenTransferOptions"},{"id":1936,"kind":1024,"name":"anchorMode","url":"interfaces/tokentransferoptions.html#anchormode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TokenTransferOptions"},{"id":1937,"kind":1024,"name":"memo","url":"interfaces/tokentransferoptions.html#memo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TokenTransferOptions"},{"id":1938,"kind":1024,"name":"postConditionMode","url":"interfaces/tokentransferoptions.html#postconditionmode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TokenTransferOptions"},{"id":1939,"kind":1024,"name":"postConditions","url":"interfaces/tokentransferoptions.html#postconditions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TokenTransferOptions"},{"id":1940,"kind":1024,"name":"sponsored","url":"interfaces/tokentransferoptions.html#sponsored","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TokenTransferOptions"},{"id":1941,"kind":256,"name":"UnsignedTokenTransferOptions","url":"interfaces/unsignedtokentransferoptions.html","classes":"tsd-kind-interface"},{"id":1942,"kind":1024,"name":"publicKey","url":"interfaces/unsignedtokentransferoptions.html#publickey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UnsignedTokenTransferOptions"},{"id":1943,"kind":1024,"name":"recipient","url":"interfaces/unsignedtokentransferoptions.html#recipient","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedTokenTransferOptions"},{"id":1944,"kind":1024,"name":"amount","url":"interfaces/unsignedtokentransferoptions.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedTokenTransferOptions"},{"id":1945,"kind":1024,"name":"fee","url":"interfaces/unsignedtokentransferoptions.html#fee","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedTokenTransferOptions"},{"id":1946,"kind":1024,"name":"nonce","url":"interfaces/unsignedtokentransferoptions.html#nonce","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedTokenTransferOptions"},{"id":1947,"kind":1024,"name":"network","url":"interfaces/unsignedtokentransferoptions.html#network","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedTokenTransferOptions"},{"id":1948,"kind":1024,"name":"anchorMode","url":"interfaces/unsignedtokentransferoptions.html#anchormode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedTokenTransferOptions"},{"id":1949,"kind":1024,"name":"memo","url":"interfaces/unsignedtokentransferoptions.html#memo","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedTokenTransferOptions"},{"id":1950,"kind":1024,"name":"postConditionMode","url":"interfaces/unsignedtokentransferoptions.html#postconditionmode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedTokenTransferOptions"},{"id":1951,"kind":1024,"name":"postConditions","url":"interfaces/unsignedtokentransferoptions.html#postconditions","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedTokenTransferOptions"},{"id":1952,"kind":1024,"name":"sponsored","url":"interfaces/unsignedtokentransferoptions.html#sponsored","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedTokenTransferOptions"},{"id":1953,"kind":256,"name":"SignedTokenTransferOptions","url":"interfaces/signedtokentransferoptions.html","classes":"tsd-kind-interface"},{"id":1954,"kind":1024,"name":"senderKey","url":"interfaces/signedtokentransferoptions.html#senderkey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SignedTokenTransferOptions"},{"id":1955,"kind":1024,"name":"recipient","url":"interfaces/signedtokentransferoptions.html#recipient","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedTokenTransferOptions"},{"id":1956,"kind":1024,"name":"amount","url":"interfaces/signedtokentransferoptions.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedTokenTransferOptions"},{"id":1957,"kind":1024,"name":"fee","url":"interfaces/signedtokentransferoptions.html#fee","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedTokenTransferOptions"},{"id":1958,"kind":1024,"name":"nonce","url":"interfaces/signedtokentransferoptions.html#nonce","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedTokenTransferOptions"},{"id":1959,"kind":1024,"name":"network","url":"interfaces/signedtokentransferoptions.html#network","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedTokenTransferOptions"},{"id":1960,"kind":1024,"name":"anchorMode","url":"interfaces/signedtokentransferoptions.html#anchormode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedTokenTransferOptions"},{"id":1961,"kind":1024,"name":"memo","url":"interfaces/signedtokentransferoptions.html#memo","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedTokenTransferOptions"},{"id":1962,"kind":1024,"name":"postConditionMode","url":"interfaces/signedtokentransferoptions.html#postconditionmode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedTokenTransferOptions"},{"id":1963,"kind":1024,"name":"postConditions","url":"interfaces/signedtokentransferoptions.html#postconditions","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedTokenTransferOptions"},{"id":1964,"kind":1024,"name":"sponsored","url":"interfaces/signedtokentransferoptions.html#sponsored","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedTokenTransferOptions"},{"id":1965,"kind":256,"name":"UnsignedMultiSigTokenTransferOptions","url":"interfaces/unsignedmultisigtokentransferoptions.html","classes":"tsd-kind-interface"},{"id":1966,"kind":1024,"name":"numSignatures","url":"interfaces/unsignedmultisigtokentransferoptions.html#numsignatures","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UnsignedMultiSigTokenTransferOptions"},{"id":1967,"kind":1024,"name":"publicKeys","url":"interfaces/unsignedmultisigtokentransferoptions.html#publickeys","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UnsignedMultiSigTokenTransferOptions"},{"id":1968,"kind":1024,"name":"recipient","url":"interfaces/unsignedmultisigtokentransferoptions.html#recipient","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigTokenTransferOptions"},{"id":1969,"kind":1024,"name":"amount","url":"interfaces/unsignedmultisigtokentransferoptions.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigTokenTransferOptions"},{"id":1970,"kind":1024,"name":"fee","url":"interfaces/unsignedmultisigtokentransferoptions.html#fee","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigTokenTransferOptions"},{"id":1971,"kind":1024,"name":"nonce","url":"interfaces/unsignedmultisigtokentransferoptions.html#nonce","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigTokenTransferOptions"},{"id":1972,"kind":1024,"name":"network","url":"interfaces/unsignedmultisigtokentransferoptions.html#network","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigTokenTransferOptions"},{"id":1973,"kind":1024,"name":"anchorMode","url":"interfaces/unsignedmultisigtokentransferoptions.html#anchormode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigTokenTransferOptions"},{"id":1974,"kind":1024,"name":"memo","url":"interfaces/unsignedmultisigtokentransferoptions.html#memo","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigTokenTransferOptions"},{"id":1975,"kind":1024,"name":"postConditionMode","url":"interfaces/unsignedmultisigtokentransferoptions.html#postconditionmode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigTokenTransferOptions"},{"id":1976,"kind":1024,"name":"postConditions","url":"interfaces/unsignedmultisigtokentransferoptions.html#postconditions","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigTokenTransferOptions"},{"id":1977,"kind":1024,"name":"sponsored","url":"interfaces/unsignedmultisigtokentransferoptions.html#sponsored","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigTokenTransferOptions"},{"id":1978,"kind":256,"name":"SignedMultiSigTokenTransferOptions","url":"interfaces/signedmultisigtokentransferoptions.html","classes":"tsd-kind-interface"},{"id":1979,"kind":1024,"name":"numSignatures","url":"interfaces/signedmultisigtokentransferoptions.html#numsignatures","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SignedMultiSigTokenTransferOptions"},{"id":1980,"kind":1024,"name":"publicKeys","url":"interfaces/signedmultisigtokentransferoptions.html#publickeys","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SignedMultiSigTokenTransferOptions"},{"id":1981,"kind":1024,"name":"signerKeys","url":"interfaces/signedmultisigtokentransferoptions.html#signerkeys","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SignedMultiSigTokenTransferOptions"},{"id":1982,"kind":1024,"name":"recipient","url":"interfaces/signedmultisigtokentransferoptions.html#recipient","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigTokenTransferOptions"},{"id":1983,"kind":1024,"name":"amount","url":"interfaces/signedmultisigtokentransferoptions.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigTokenTransferOptions"},{"id":1984,"kind":1024,"name":"fee","url":"interfaces/signedmultisigtokentransferoptions.html#fee","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigTokenTransferOptions"},{"id":1985,"kind":1024,"name":"nonce","url":"interfaces/signedmultisigtokentransferoptions.html#nonce","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigTokenTransferOptions"},{"id":1986,"kind":1024,"name":"network","url":"interfaces/signedmultisigtokentransferoptions.html#network","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigTokenTransferOptions"},{"id":1987,"kind":1024,"name":"anchorMode","url":"interfaces/signedmultisigtokentransferoptions.html#anchormode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigTokenTransferOptions"},{"id":1988,"kind":1024,"name":"memo","url":"interfaces/signedmultisigtokentransferoptions.html#memo","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigTokenTransferOptions"},{"id":1989,"kind":1024,"name":"postConditionMode","url":"interfaces/signedmultisigtokentransferoptions.html#postconditionmode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigTokenTransferOptions"},{"id":1990,"kind":1024,"name":"postConditions","url":"interfaces/signedmultisigtokentransferoptions.html#postconditions","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigTokenTransferOptions"},{"id":1991,"kind":1024,"name":"sponsored","url":"interfaces/signedmultisigtokentransferoptions.html#sponsored","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigTokenTransferOptions"},{"id":1992,"kind":1024,"name":"senderKey","url":"interfaces/contractdeployoptions.html#senderkey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractDeployOptions"},{"id":1993,"kind":1024,"name":"fee","url":"interfaces/contractdeployoptions.html#fee","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractDeployOptions"},{"id":1994,"kind":1024,"name":"anchorMode","url":"interfaces/contractdeployoptions.html#anchormode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractDeployOptions"},{"id":1995,"kind":1024,"name":"sponsored","url":"interfaces/contractdeployoptions.html#sponsored","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractDeployOptions"},{"id":1996,"kind":1024,"name":"fee","url":"interfaces/contractcalloptions.html#fee","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallOptions"},{"id":1997,"kind":1024,"name":"feeEstimateApiUrl","url":"interfaces/contractcalloptions.html#feeestimateapiurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallOptions"},{"id":1998,"kind":1024,"name":"anchorMode","url":"interfaces/contractcalloptions.html#anchormode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallOptions"},{"id":1999,"kind":1024,"name":"validateWithAbi","url":"interfaces/contractcalloptions.html#validatewithabi","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallOptions"},{"id":2000,"kind":1024,"name":"sponsored","url":"interfaces/contractcalloptions.html#sponsored","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ContractCallOptions"},{"id":2001,"kind":256,"name":"UnsignedContractCallOptions","url":"interfaces/unsignedcontractcalloptions.html","classes":"tsd-kind-interface"},{"id":2002,"kind":1024,"name":"publicKey","url":"interfaces/unsignedcontractcalloptions.html#publickey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UnsignedContractCallOptions"},{"id":2003,"kind":1024,"name":"contractAddress","url":"interfaces/unsignedcontractcalloptions.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedContractCallOptions"},{"id":2004,"kind":1024,"name":"contractName","url":"interfaces/unsignedcontractcalloptions.html#contractname","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedContractCallOptions"},{"id":2005,"kind":1024,"name":"functionName","url":"interfaces/unsignedcontractcalloptions.html#functionname","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedContractCallOptions"},{"id":2006,"kind":1024,"name":"functionArgs","url":"interfaces/unsignedcontractcalloptions.html#functionargs","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedContractCallOptions"},{"id":2007,"kind":1024,"name":"fee","url":"interfaces/unsignedcontractcalloptions.html#fee","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedContractCallOptions"},{"id":2008,"kind":1024,"name":"feeEstimateApiUrl","url":"interfaces/unsignedcontractcalloptions.html#feeestimateapiurl","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedContractCallOptions"},{"id":2009,"kind":1024,"name":"nonce","url":"interfaces/unsignedcontractcalloptions.html#nonce","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedContractCallOptions"},{"id":2010,"kind":1024,"name":"network","url":"interfaces/unsignedcontractcalloptions.html#network","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedContractCallOptions"},{"id":2011,"kind":1024,"name":"anchorMode","url":"interfaces/unsignedcontractcalloptions.html#anchormode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedContractCallOptions"},{"id":2012,"kind":1024,"name":"postConditionMode","url":"interfaces/unsignedcontractcalloptions.html#postconditionmode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedContractCallOptions"},{"id":2013,"kind":1024,"name":"postConditions","url":"interfaces/unsignedcontractcalloptions.html#postconditions","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedContractCallOptions"},{"id":2014,"kind":1024,"name":"validateWithAbi","url":"interfaces/unsignedcontractcalloptions.html#validatewithabi","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedContractCallOptions"},{"id":2015,"kind":1024,"name":"sponsored","url":"interfaces/unsignedcontractcalloptions.html#sponsored","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedContractCallOptions"},{"id":2016,"kind":256,"name":"SignedContractCallOptions","url":"interfaces/signedcontractcalloptions.html","classes":"tsd-kind-interface"},{"id":2017,"kind":1024,"name":"senderKey","url":"interfaces/signedcontractcalloptions.html#senderkey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SignedContractCallOptions"},{"id":2018,"kind":1024,"name":"contractAddress","url":"interfaces/signedcontractcalloptions.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedContractCallOptions"},{"id":2019,"kind":1024,"name":"contractName","url":"interfaces/signedcontractcalloptions.html#contractname","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedContractCallOptions"},{"id":2020,"kind":1024,"name":"functionName","url":"interfaces/signedcontractcalloptions.html#functionname","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedContractCallOptions"},{"id":2021,"kind":1024,"name":"functionArgs","url":"interfaces/signedcontractcalloptions.html#functionargs","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedContractCallOptions"},{"id":2022,"kind":1024,"name":"fee","url":"interfaces/signedcontractcalloptions.html#fee","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedContractCallOptions"},{"id":2023,"kind":1024,"name":"feeEstimateApiUrl","url":"interfaces/signedcontractcalloptions.html#feeestimateapiurl","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedContractCallOptions"},{"id":2024,"kind":1024,"name":"nonce","url":"interfaces/signedcontractcalloptions.html#nonce","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedContractCallOptions"},{"id":2025,"kind":1024,"name":"network","url":"interfaces/signedcontractcalloptions.html#network","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedContractCallOptions"},{"id":2026,"kind":1024,"name":"anchorMode","url":"interfaces/signedcontractcalloptions.html#anchormode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedContractCallOptions"},{"id":2027,"kind":1024,"name":"postConditionMode","url":"interfaces/signedcontractcalloptions.html#postconditionmode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedContractCallOptions"},{"id":2028,"kind":1024,"name":"postConditions","url":"interfaces/signedcontractcalloptions.html#postconditions","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedContractCallOptions"},{"id":2029,"kind":1024,"name":"validateWithAbi","url":"interfaces/signedcontractcalloptions.html#validatewithabi","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedContractCallOptions"},{"id":2030,"kind":1024,"name":"sponsored","url":"interfaces/signedcontractcalloptions.html#sponsored","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedContractCallOptions"},{"id":2031,"kind":256,"name":"UnsignedMultiSigContractCallOptions","url":"interfaces/unsignedmultisigcontractcalloptions.html","classes":"tsd-kind-interface"},{"id":2032,"kind":1024,"name":"numSignatures","url":"interfaces/unsignedmultisigcontractcalloptions.html#numsignatures","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UnsignedMultiSigContractCallOptions"},{"id":2033,"kind":1024,"name":"publicKeys","url":"interfaces/unsignedmultisigcontractcalloptions.html#publickeys","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"UnsignedMultiSigContractCallOptions"},{"id":2034,"kind":1024,"name":"contractAddress","url":"interfaces/unsignedmultisigcontractcalloptions.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigContractCallOptions"},{"id":2035,"kind":1024,"name":"contractName","url":"interfaces/unsignedmultisigcontractcalloptions.html#contractname","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigContractCallOptions"},{"id":2036,"kind":1024,"name":"functionName","url":"interfaces/unsignedmultisigcontractcalloptions.html#functionname","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigContractCallOptions"},{"id":2037,"kind":1024,"name":"functionArgs","url":"interfaces/unsignedmultisigcontractcalloptions.html#functionargs","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigContractCallOptions"},{"id":2038,"kind":1024,"name":"fee","url":"interfaces/unsignedmultisigcontractcalloptions.html#fee","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigContractCallOptions"},{"id":2039,"kind":1024,"name":"feeEstimateApiUrl","url":"interfaces/unsignedmultisigcontractcalloptions.html#feeestimateapiurl","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigContractCallOptions"},{"id":2040,"kind":1024,"name":"nonce","url":"interfaces/unsignedmultisigcontractcalloptions.html#nonce","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigContractCallOptions"},{"id":2041,"kind":1024,"name":"network","url":"interfaces/unsignedmultisigcontractcalloptions.html#network","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigContractCallOptions"},{"id":2042,"kind":1024,"name":"anchorMode","url":"interfaces/unsignedmultisigcontractcalloptions.html#anchormode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigContractCallOptions"},{"id":2043,"kind":1024,"name":"postConditionMode","url":"interfaces/unsignedmultisigcontractcalloptions.html#postconditionmode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigContractCallOptions"},{"id":2044,"kind":1024,"name":"postConditions","url":"interfaces/unsignedmultisigcontractcalloptions.html#postconditions","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigContractCallOptions"},{"id":2045,"kind":1024,"name":"validateWithAbi","url":"interfaces/unsignedmultisigcontractcalloptions.html#validatewithabi","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigContractCallOptions"},{"id":2046,"kind":1024,"name":"sponsored","url":"interfaces/unsignedmultisigcontractcalloptions.html#sponsored","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"UnsignedMultiSigContractCallOptions"},{"id":2047,"kind":256,"name":"SignedMultiSigContractCallOptions","url":"interfaces/signedmultisigcontractcalloptions.html","classes":"tsd-kind-interface"},{"id":2048,"kind":1024,"name":"numSignatures","url":"interfaces/signedmultisigcontractcalloptions.html#numsignatures","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SignedMultiSigContractCallOptions"},{"id":2049,"kind":1024,"name":"publicKeys","url":"interfaces/signedmultisigcontractcalloptions.html#publickeys","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SignedMultiSigContractCallOptions"},{"id":2050,"kind":1024,"name":"signerKeys","url":"interfaces/signedmultisigcontractcalloptions.html#signerkeys","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SignedMultiSigContractCallOptions"},{"id":2051,"kind":1024,"name":"contractAddress","url":"interfaces/signedmultisigcontractcalloptions.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigContractCallOptions"},{"id":2052,"kind":1024,"name":"contractName","url":"interfaces/signedmultisigcontractcalloptions.html#contractname","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigContractCallOptions"},{"id":2053,"kind":1024,"name":"functionName","url":"interfaces/signedmultisigcontractcalloptions.html#functionname","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigContractCallOptions"},{"id":2054,"kind":1024,"name":"functionArgs","url":"interfaces/signedmultisigcontractcalloptions.html#functionargs","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigContractCallOptions"},{"id":2055,"kind":1024,"name":"fee","url":"interfaces/signedmultisigcontractcalloptions.html#fee","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigContractCallOptions"},{"id":2056,"kind":1024,"name":"feeEstimateApiUrl","url":"interfaces/signedmultisigcontractcalloptions.html#feeestimateapiurl","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigContractCallOptions"},{"id":2057,"kind":1024,"name":"nonce","url":"interfaces/signedmultisigcontractcalloptions.html#nonce","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigContractCallOptions"},{"id":2058,"kind":1024,"name":"network","url":"interfaces/signedmultisigcontractcalloptions.html#network","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigContractCallOptions"},{"id":2059,"kind":1024,"name":"anchorMode","url":"interfaces/signedmultisigcontractcalloptions.html#anchormode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigContractCallOptions"},{"id":2060,"kind":1024,"name":"postConditionMode","url":"interfaces/signedmultisigcontractcalloptions.html#postconditionmode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigContractCallOptions"},{"id":2061,"kind":1024,"name":"postConditions","url":"interfaces/signedmultisigcontractcalloptions.html#postconditions","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigContractCallOptions"},{"id":2062,"kind":1024,"name":"validateWithAbi","url":"interfaces/signedmultisigcontractcalloptions.html#validatewithabi","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigContractCallOptions"},{"id":2063,"kind":1024,"name":"sponsored","url":"interfaces/signedmultisigcontractcalloptions.html#sponsored","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"SignedMultiSigContractCallOptions"},{"id":2064,"kind":256,"name":"ReadOnlyFunctionOptions","url":"interfaces/readonlyfunctionoptions.html","classes":"tsd-kind-interface"},{"id":2065,"kind":1024,"name":"contractName","url":"interfaces/readonlyfunctionoptions.html#contractname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ReadOnlyFunctionOptions"},{"id":2066,"kind":1024,"name":"contractAddress","url":"interfaces/readonlyfunctionoptions.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ReadOnlyFunctionOptions"},{"id":2067,"kind":1024,"name":"functionName","url":"interfaces/readonlyfunctionoptions.html#functionname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ReadOnlyFunctionOptions"},{"id":2068,"kind":1024,"name":"functionArgs","url":"interfaces/readonlyfunctionoptions.html#functionargs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ReadOnlyFunctionOptions"},{"id":2069,"kind":1024,"name":"network","url":"interfaces/readonlyfunctionoptions.html#network","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ReadOnlyFunctionOptions"},{"id":2070,"kind":1024,"name":"senderAddress","url":"interfaces/readonlyfunctionoptions.html#senderaddress","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ReadOnlyFunctionOptions"},{"id":2071,"kind":256,"name":"SponsorOptions","url":"interfaces/sponsoroptions.html","classes":"tsd-kind-interface"},{"id":2072,"kind":1024,"name":"transaction","url":"interfaces/sponsoroptions.html#transaction","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SponsorOptions"},{"id":2073,"kind":1024,"name":"sponsorPrivateKey","url":"interfaces/sponsoroptions.html#sponsorprivatekey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SponsorOptions"},{"id":2074,"kind":1024,"name":"fee","url":"interfaces/sponsoroptions.html#fee","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SponsorOptions"},{"id":2075,"kind":1024,"name":"sponsorNonce","url":"interfaces/sponsoroptions.html#sponsornonce","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SponsorOptions"},{"id":2076,"kind":1024,"name":"sponsorAddressHashmode","url":"interfaces/sponsoroptions.html#sponsoraddresshashmode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SponsorOptions"},{"id":2077,"kind":1024,"name":"network","url":"interfaces/sponsoroptions.html#network","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SponsorOptions"},{"id":2078,"kind":64,"name":"getNonce","url":"globals.html#getnonce","classes":"tsd-kind-function"},{"id":2079,"kind":64,"name":"estimateTransfer","url":"globals.html#estimatetransfer","classes":"tsd-kind-function"},{"id":2080,"kind":4194304,"name":"TxBroadcastResultOk","url":"globals.html#txbroadcastresultok","classes":"tsd-kind-type-alias"},{"id":2081,"kind":4194304,"name":"TxBroadcastResultRejected","url":"globals.html#txbroadcastresultrejected","classes":"tsd-kind-type-alias"},{"id":2082,"kind":65536,"name":"__type","url":"globals.html#txbroadcastresultrejected.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"TxBroadcastResultRejected"},{"id":2083,"kind":32,"name":"error","url":"globals.html#txbroadcastresultrejected.__type.error","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"TxBroadcastResultRejected.__type"},{"id":2084,"kind":32,"name":"reason","url":"globals.html#txbroadcastresultrejected.__type.reason","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"TxBroadcastResultRejected.__type"},{"id":2085,"kind":32,"name":"reason_data","url":"globals.html#txbroadcastresultrejected.__type.reason_data","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"TxBroadcastResultRejected.__type"},{"id":2086,"kind":32,"name":"txid","url":"globals.html#txbroadcastresultrejected.__type.txid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"TxBroadcastResultRejected.__type"},{"id":2087,"kind":4194304,"name":"TxBroadcastResult","url":"globals.html#txbroadcastresult","classes":"tsd-kind-type-alias"},{"id":2088,"kind":64,"name":"broadcastTransaction","url":"globals.html#broadcasttransaction","classes":"tsd-kind-function"},{"id":2089,"kind":64,"name":"broadcastRawTransaction","url":"globals.html#broadcastrawtransaction","classes":"tsd-kind-function"},{"id":2090,"kind":64,"name":"getAbi","url":"globals.html#getabi","classes":"tsd-kind-function"},{"id":2091,"kind":64,"name":"makeUnsignedSTXTokenTransfer","url":"globals.html#makeunsignedstxtokentransfer","classes":"tsd-kind-function"},{"id":2092,"kind":64,"name":"makeSTXTokenTransfer","url":"globals.html#makestxtokentransfer","classes":"tsd-kind-function"},{"id":2093,"kind":64,"name":"estimateContractDeploy","url":"globals.html#estimatecontractdeploy","classes":"tsd-kind-function"},{"id":2094,"kind":64,"name":"makeContractDeploy","url":"globals.html#makecontractdeploy","classes":"tsd-kind-function"},{"id":2095,"kind":64,"name":"estimateContractFunctionCall","url":"globals.html#estimatecontractfunctioncall","classes":"tsd-kind-function"},{"id":2096,"kind":64,"name":"makeUnsignedContractCall","url":"globals.html#makeunsignedcontractcall","classes":"tsd-kind-function"},{"id":2097,"kind":64,"name":"makeContractCall","url":"globals.html#makecontractcall","classes":"tsd-kind-function"},{"id":2098,"kind":64,"name":"makeStandardSTXPostCondition","url":"globals.html#makestandardstxpostcondition","classes":"tsd-kind-function"},{"id":2099,"kind":64,"name":"makeContractSTXPostCondition","url":"globals.html#makecontractstxpostcondition","classes":"tsd-kind-function"},{"id":2100,"kind":64,"name":"makeStandardFungiblePostCondition","url":"globals.html#makestandardfungiblepostcondition","classes":"tsd-kind-function"},{"id":2101,"kind":64,"name":"makeContractFungiblePostCondition","url":"globals.html#makecontractfungiblepostcondition","classes":"tsd-kind-function"},{"id":2102,"kind":64,"name":"makeStandardNonFungiblePostCondition","url":"globals.html#makestandardnonfungiblepostcondition","classes":"tsd-kind-function"},{"id":2103,"kind":64,"name":"makeContractNonFungiblePostCondition","url":"globals.html#makecontractnonfungiblepostcondition","classes":"tsd-kind-function"},{"id":2104,"kind":64,"name":"callReadOnlyFunction","url":"globals.html#callreadonlyfunction","classes":"tsd-kind-function"},{"id":2105,"kind":64,"name":"sponsorTransaction","url":"globals.html#sponsortransaction","classes":"tsd-kind-function"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,61.513]],["parent/0",[]],["name/1",[1,72.504]],["parent/1",[0,5.153]],["name/2",[2,72.504]],["parent/2",[0,5.153]],["name/3",[3,64.027]],["parent/3",[0,5.153]],["name/4",[4,72.504]],["parent/4",[]],["name/5",[5,64.027]],["parent/5",[]],["name/6",[6,30.642]],["parent/6",[5,5.363]],["name/7",[7,59.506]],["parent/7",[5,5.363]],["name/8",[8,52.127]],["parent/8",[]],["name/9",[9,72.504]],["parent/9",[8,4.366]],["name/10",[10,64.027]],["parent/10",[8,4.366]],["name/11",[11,72.504]],["parent/11",[8,4.366]],["name/12",[12,72.504]],["parent/12",[8,4.366]],["name/13",[13,64.027]],["parent/13",[8,4.366]],["name/14",[14,72.504]],["parent/14",[8,4.366]],["name/15",[15,40.039]],["parent/15",[8,4.366]],["name/16",[16,72.504]],["parent/16",[8,4.366]],["name/17",[17,72.504]],["parent/17",[8,4.366]],["name/18",[18,52.127]],["parent/18",[]],["name/19",[19,67.393]],["parent/19",[]],["name/20",[20,39.533]],["parent/20",[19,5.645]],["name/21",[3,64.027]],["parent/21",[21,5.645]],["name/22",[22,64.027]],["parent/22",[21,5.645]],["name/23",[23,67.393]],["parent/23",[]],["name/24",[24,49.808]],["parent/24",[]],["name/25",[25,56.403]],["parent/25",[24,4.172]],["name/26",[3,64.027]],["parent/26",[24,4.172]],["name/27",[26,72.504]],["parent/27",[24,4.172]],["name/28",[27,72.504]],["parent/28",[24,4.172]],["name/29",[28,64.027]],["parent/29",[24,4.172]],["name/30",[29,72.504]],["parent/30",[24,4.172]],["name/31",[13,64.027]],["parent/31",[24,4.172]],["name/32",[30,72.504]],["parent/32",[24,4.172]],["name/33",[31,72.504]],["parent/33",[24,4.172]],["name/34",[32,72.504]],["parent/34",[24,4.172]],["name/35",[33,47.371]],["parent/35",[24,4.172]],["name/36",[34,56.403]],["parent/36",[24,4.172]],["name/37",[35,56.403]],["parent/37",[]],["name/38",[13,64.027]],["parent/38",[35,4.724]],["name/39",[24,49.808]],["parent/39",[35,4.724]],["name/40",[36,72.504]],["parent/40",[35,4.724]],["name/41",[37,72.504]],["parent/41",[35,4.724]],["name/42",[38,72.504]],["parent/42",[35,4.724]],["name/43",[39,72.504]],["parent/43",[35,4.724]],["name/44",[40,72.504]],["parent/44",[]],["name/45",[41,67.393]],["parent/45",[]],["name/46",[20,39.533]],["parent/46",[41,5.645]],["name/47",[42,59.506]],["parent/47",[]],["name/48",[15,40.039]],["parent/48",[42,4.984]],["name/49",[43,72.504]],["parent/49",[42,4.984]],["name/50",[44,72.504]],["parent/50",[42,4.984]],["name/51",[45,72.504]],["parent/51",[42,4.984]],["name/52",[46,72.504]],["parent/52",[]],["name/53",[47,72.504]],["parent/53",[]],["name/54",[48,72.504]],["parent/54",[]],["name/55",[49,72.504]],["parent/55",[]],["name/56",[50,48.515]],["parent/56",[]],["name/57",[8,52.127]],["parent/57",[50,4.064]],["name/58",[51,72.504]],["parent/58",[50,4.064]],["name/59",[15,40.039]],["parent/59",[50,4.064]],["name/60",[23,67.393]],["parent/60",[50,4.064]],["name/61",[52,72.504]],["parent/61",[50,4.064]],["name/62",[53,72.504]],["parent/62",[50,4.064]],["name/63",[54,72.504]],["parent/63",[50,4.064]],["name/64",[55,72.504]],["parent/64",[50,4.064]],["name/65",[56,72.504]],["parent/65",[50,4.064]],["name/66",[57,72.504]],["parent/66",[50,4.064]],["name/67",[58,67.393]],["parent/67",[50,4.064]],["name/68",[59,67.393]],["parent/68",[50,4.064]],["name/69",[60,72.504]],["parent/69",[50,4.064]],["name/70",[61,61.513]],["parent/70",[]],["name/71",[25,56.403]],["parent/71",[61,5.153]],["name/72",[62,64.027]],["parent/72",[61,5.153]],["name/73",[63,49.141]],["parent/73",[61,5.153]],["name/74",[64,72.504]],["parent/74",[]],["name/75",[65,56.403]],["parent/75",[]],["name/76",[66,67.393]],["parent/76",[65,4.724]],["name/77",[67,67.393]],["parent/77",[65,4.724]],["name/78",[68,67.393]],["parent/78",[65,4.724]],["name/79",[69,67.393]],["parent/79",[65,4.724]],["name/80",[70,67.393]],["parent/80",[65,4.724]],["name/81",[71,67.393]],["parent/81",[65,4.724]],["name/82",[72,55.151]],["parent/82",[]],["name/83",[73,61.513]],["parent/83",[72,4.62]],["name/84",[74,61.513]],["parent/84",[72,4.62]],["name/85",[75,61.513]],["parent/85",[72,4.62]],["name/86",[76,61.513]],["parent/86",[72,4.62]],["name/87",[77,61.513]],["parent/87",[72,4.62]],["name/88",[78,67.393]],["parent/88",[72,4.62]],["name/89",[79,67.393]],["parent/89",[72,4.62]],["name/90",[80,59.506]],["parent/90",[]],["name/91",[81,44.161]],["parent/91",[80,4.984]],["name/92",[6,30.642]],["parent/92",[80,4.984]],["name/93",[82,72.504]],["parent/93",[80,4.984]],["name/94",[83,72.504]],["parent/94",[80,4.984]],["name/95",[84,72.504]],["parent/95",[]],["name/96",[85,64.027]],["parent/96",[]],["name/97",[86,72.504]],["parent/97",[85,5.363]],["name/98",[87,72.504]],["parent/98",[85,5.363]],["name/99",[88,64.027]],["parent/99",[]],["name/100",[89,61.513]],["parent/100",[88,5.363]],["name/101",[90,72.504]],["parent/101",[88,5.363]],["name/102",[91,72.504]],["parent/102",[]],["name/103",[92,72.504]],["parent/103",[]],["name/104",[93,61.513]],["parent/104",[]],["name/105",[94,67.393]],["parent/105",[93,5.153]],["name/106",[89,61.513]],["parent/106",[93,5.153]],["name/107",[95,64.027]],["parent/107",[93,5.153]],["name/108",[96,59.506]],["parent/108",[]],["name/109",[94,67.393]],["parent/109",[96,4.984]],["name/110",[97,52.127]],["parent/110",[96,4.984]],["name/111",[89,61.513]],["parent/111",[96,4.984]],["name/112",[98,64.027]],["parent/112",[96,4.984]],["name/113",[99,72.504]],["parent/113",[]],["name/114",[100,72.504]],["parent/114",[]],["name/115",[101,72.504]],["parent/115",[]],["name/116",[102,72.504]],["parent/116",[]],["name/117",[103,72.504]],["parent/117",[]],["name/118",[104,72.504]],["parent/118",[]],["name/119",[105,72.504]],["parent/119",[]],["name/120",[106,72.504]],["parent/120",[]],["name/121",[107,72.504]],["parent/121",[]],["name/122",[108,72.504]],["parent/122",[]],["name/123",[109,72.504]],["parent/123",[]],["name/124",[110,72.504]],["parent/124",[]],["name/125",[111,72.504]],["parent/125",[]],["name/126",[112,72.504]],["parent/126",[]],["name/127",[113,72.504]],["parent/127",[]],["name/128",[114,72.504]],["parent/128",[]],["name/129",[115,72.504]],["parent/129",[]],["name/130",[116,72.504]],["parent/130",[]],["name/131",[117,72.504]],["parent/131",[]],["name/132",[118,72.504]],["parent/132",[]],["name/133",[119,56.403]],["parent/133",[]],["name/134",[66,67.393]],["parent/134",[119,4.724]],["name/135",[67,67.393]],["parent/135",[119,4.724]],["name/136",[68,67.393]],["parent/136",[119,4.724]],["name/137",[69,67.393]],["parent/137",[119,4.724]],["name/138",[70,67.393]],["parent/138",[119,4.724]],["name/139",[71,67.393]],["parent/139",[119,4.724]],["name/140",[120,57.835]],["parent/140",[]],["name/141",[73,61.513]],["parent/141",[120,4.844]],["name/142",[74,61.513]],["parent/142",[120,4.844]],["name/143",[75,61.513]],["parent/143",[120,4.844]],["name/144",[76,61.513]],["parent/144",[120,4.844]],["name/145",[77,61.513]],["parent/145",[120,4.844]],["name/146",[121,55.151]],["parent/146",[]],["name/147",[73,61.513]],["parent/147",[121,4.62]],["name/148",[74,61.513]],["parent/148",[121,4.62]],["name/149",[75,61.513]],["parent/149",[121,4.62]],["name/150",[76,61.513]],["parent/150",[121,4.62]],["name/151",[77,61.513]],["parent/151",[121,4.62]],["name/152",[79,67.393]],["parent/152",[121,4.62]],["name/153",[78,67.393]],["parent/153",[121,4.62]],["name/154",[122,72.504]],["parent/154",[]],["name/155",[123,57.835]],["parent/155",[]],["name/156",[73,61.513]],["parent/156",[123,4.844]],["name/157",[74,61.513]],["parent/157",[123,4.844]],["name/158",[75,61.513]],["parent/158",[123,4.844]],["name/159",[76,61.513]],["parent/159",[123,4.844]],["name/160",[77,61.513]],["parent/160",[123,4.844]],["name/161",[124,72.504]],["parent/161",[]],["name/162",[125,72.504]],["parent/162",[]],["name/163",[126,72.504]],["parent/163",[]],["name/164",[127,72.504]],["parent/164",[]],["name/165",[128,59.506]],["parent/165",[]],["name/166",[6,30.642]],["parent/166",[128,4.984]],["name/167",[129,54.038]],["parent/167",[128,4.984]],["name/168",[130,72.504]],["parent/168",[128,4.984]],["name/169",[131,67.393]],["parent/169",[128,4.984]],["name/170",[98,64.027]],["parent/170",[]],["name/171",[132,72.504]],["parent/171",[]],["name/172",[133,72.504]],["parent/172",[]],["name/173",[134,72.504]],["parent/173",[]],["name/174",[135,72.504]],["parent/174",[]],["name/175",[136,72.504]],["parent/175",[]],["name/176",[137,72.504]],["parent/176",[]],["name/177",[138,72.504]],["parent/177",[]],["name/178",[139,72.504]],["parent/178",[]],["name/179",[140,72.504]],["parent/179",[]],["name/180",[141,72.504]],["parent/180",[]],["name/181",[142,72.504]],["parent/181",[]],["name/182",[143,72.504]],["parent/182",[]],["name/183",[144,72.504]],["parent/183",[]],["name/184",[145,72.504]],["parent/184",[]],["name/185",[146,72.504]],["parent/185",[]],["name/186",[147,72.504]],["parent/186",[]],["name/187",[148,72.504]],["parent/187",[]],["name/188",[149,72.504]],["parent/188",[]],["name/189",[150,52.127]],["parent/189",[]],["name/190",[151,67.393]],["parent/190",[150,4.366]],["name/191",[152,67.393]],["parent/191",[150,4.366]],["name/192",[153,67.393]],["parent/192",[150,4.366]],["name/193",[154,67.393]],["parent/193",[150,4.366]],["name/194",[155,67.393]],["parent/194",[150,4.366]],["name/195",[156,64.027]],["parent/195",[150,4.366]],["name/196",[157,64.027]],["parent/196",[150,4.366]],["name/197",[158,72.504]],["parent/197",[150,4.366]],["name/198",[159,72.504]],["parent/198",[150,4.366]],["name/199",[160,67.393]],["parent/199",[150,4.366]],["name/200",[161,64.027]],["parent/200",[]],["name/201",[162,72.504]],["parent/201",[161,5.363]],["name/202",[163,53.037]],["parent/202",[161,5.363]],["name/203",[164,42.369]],["parent/203",[]],["name/204",[151,67.393]],["parent/204",[164,3.549]],["name/205",[152,67.393]],["parent/205",[164,3.549]],["name/206",[153,67.393]],["parent/206",[164,3.549]],["name/207",[154,67.393]],["parent/207",[164,3.549]],["name/208",[155,67.393]],["parent/208",[164,3.549]],["name/209",[157,64.027]],["parent/209",[164,3.549]],["name/210",[156,64.027]],["parent/210",[164,3.549]],["name/211",[160,67.393]],["parent/211",[164,3.549]],["name/212",[165,72.504]],["parent/212",[164,3.549]],["name/213",[166,72.504]],["parent/213",[164,3.549]],["name/214",[15,40.039]],["parent/214",[164,3.549]],["name/215",[167,72.504]],["parent/215",[164,3.549]],["name/216",[168,72.504]],["parent/216",[164,3.549]],["name/217",[169,72.504]],["parent/217",[164,3.549]],["name/218",[170,72.504]],["parent/218",[164,3.549]],["name/219",[171,72.504]],["parent/219",[164,3.549]],["name/220",[172,72.504]],["parent/220",[164,3.549]],["name/221",[173,72.504]],["parent/221",[164,3.549]],["name/222",[174,72.504]],["parent/222",[164,3.549]],["name/223",[175,72.504]],["parent/223",[164,3.549]],["name/224",[176,72.504]],["parent/224",[164,3.549]],["name/225",[177,59.506]],["parent/225",[164,3.549]],["name/226",[178,72.504]],["parent/226",[164,3.549]],["name/227",[179,72.504]],["parent/227",[164,3.549]],["name/228",[180,72.504]],["parent/228",[164,3.549]],["name/229",[181,72.504]],["parent/229",[164,3.549]],["name/230",[182,67.393]],["parent/230",[164,3.549]],["name/231",[183,72.504]],["parent/231",[164,3.549]],["name/232",[184,72.504]],["parent/232",[164,3.549]],["name/233",[185,72.504]],["parent/233",[]],["name/234",[186,72.504]],["parent/234",[]],["name/235",[187,67.393]],["parent/235",[]],["name/236",[20,39.533]],["parent/236",[187,5.645]],["name/237",[188,43.405]],["parent/237",[189,4.366]],["name/238",[190,67.393]],["parent/238",[189,4.366]],["name/239",[191,67.393]],["parent/239",[189,4.366]],["name/240",[192,67.393]],["parent/240",[189,4.366]],["name/241",[193,67.393]],["parent/241",[189,4.366]],["name/242",[194,67.393]],["parent/242",[189,4.366]],["name/243",[195,67.393]],["parent/243",[189,4.366]],["name/244",[196,67.393]],["parent/244",[189,4.366]],["name/245",[197,67.393]],["parent/245",[189,4.366]],["name/246",[198,59.506]],["parent/246",[189,4.366]],["name/247",[199,67.393]],["parent/247",[189,4.366]],["name/248",[200,67.393]],["parent/248",[]],["name/249",[201,48.515]],["parent/249",[]],["name/250",[188,43.405]],["parent/250",[201,4.064]],["name/251",[190,67.393]],["parent/251",[201,4.064]],["name/252",[202,72.504]],["parent/252",[201,4.064]],["name/253",[191,67.393]],["parent/253",[201,4.064]],["name/254",[192,67.393]],["parent/254",[201,4.064]],["name/255",[193,67.393]],["parent/255",[201,4.064]],["name/256",[203,72.504]],["parent/256",[201,4.064]],["name/257",[194,67.393]],["parent/257",[201,4.064]],["name/258",[204,72.504]],["parent/258",[201,4.064]],["name/259",[205,72.504]],["parent/259",[201,4.064]],["name/260",[195,67.393]],["parent/260",[201,4.064]],["name/261",[196,67.393]],["parent/261",[201,4.064]],["name/262",[197,67.393]],["parent/262",[201,4.064]],["name/263",[198,59.506]],["parent/263",[201,4.064]],["name/264",[199,67.393]],["parent/264",[201,4.064]],["name/265",[206,72.504]],["parent/265",[]],["name/266",[207,72.504]],["parent/266",[]],["name/267",[208,72.504]],["parent/267",[]],["name/268",[209,72.504]],["parent/268",[]],["name/269",[156,64.027]],["parent/269",[]],["name/270",[157,64.027]],["parent/270",[]],["name/271",[210,72.504]],["parent/271",[]],["name/272",[211,72.504]],["parent/272",[]],["name/273",[212,72.504]],["parent/273",[]],["name/274",[213,72.504]],["parent/274",[]],["name/275",[214,72.504]],["parent/275",[]],["name/276",[215,72.504]],["parent/276",[]],["name/277",[216,72.504]],["parent/277",[]],["name/278",[217,72.504]],["parent/278",[]],["name/279",[218,72.504]],["parent/279",[]],["name/280",[219,72.504]],["parent/280",[]],["name/281",[220,72.504]],["parent/281",[]],["name/282",[221,72.504]],["parent/282",[]],["name/283",[222,67.393]],["parent/283",[]],["name/284",[223,72.504]],["parent/284",[]],["name/285",[224,72.504]],["parent/285",[]],["name/286",[225,72.504]],["parent/286",[]],["name/287",[226,72.504]],["parent/287",[]],["name/288",[227,72.504]],["parent/288",[]],["name/289",[228,72.504]],["parent/289",[]],["name/290",[229,72.504]],["parent/290",[]],["name/291",[230,72.504]],["parent/291",[]],["name/292",[231,72.504]],["parent/292",[]],["name/293",[232,72.504]],["parent/293",[]],["name/294",[233,72.504]],["parent/294",[]],["name/295",[234,72.504]],["parent/295",[]],["name/296",[235,72.504]],["parent/296",[]],["name/297",[236,72.504]],["parent/297",[]],["name/298",[237,72.504]],["parent/298",[]],["name/299",[238,72.504]],["parent/299",[]],["name/300",[239,67.393]],["parent/300",[]],["name/301",[20,39.533]],["parent/301",[239,5.645]],["name/302",[81,44.161]],["parent/302",[240,5.153]],["name/303",[6,30.642]],["parent/303",[240,5.153]],["name/304",[241,54.038]],["parent/304",[240,5.153]],["name/305",[242,72.504]],["parent/305",[240,5.153]],["name/306",[243,67.393]],["parent/306",[]],["name/307",[20,39.533]],["parent/307",[243,5.645]],["name/308",[89,61.513]],["parent/308",[244,5.153]],["name/309",[95,64.027]],["parent/309",[244,5.153]],["name/310",[98,64.027]],["parent/310",[244,5.153]],["name/311",[245,72.504]],["parent/311",[244,5.153]],["name/312",[246,72.504]],["parent/312",[]],["name/313",[247,67.393]],["parent/313",[]],["name/314",[20,39.533]],["parent/314",[247,5.645]],["name/315",[248,43.048]],["parent/315",[]],["name/316",[249,72.504]],["parent/316",[248,3.606]],["name/317",[222,67.393]],["parent/317",[248,3.606]],["name/318",[250,72.504]],["parent/318",[248,3.606]],["name/319",[251,72.504]],["parent/319",[248,3.606]],["name/320",[252,72.504]],["parent/320",[248,3.606]],["name/321",[253,72.504]],["parent/321",[248,3.606]],["name/322",[254,72.504]],["parent/322",[248,3.606]],["name/323",[255,72.504]],["parent/323",[248,3.606]],["name/324",[256,72.504]],["parent/324",[248,3.606]],["name/325",[257,72.504]],["parent/325",[248,3.606]],["name/326",[258,72.504]],["parent/326",[248,3.606]],["name/327",[259,72.504]],["parent/327",[248,3.606]],["name/328",[260,72.504]],["parent/328",[248,3.606]],["name/329",[261,72.504]],["parent/329",[248,3.606]],["name/330",[262,72.504]],["parent/330",[248,3.606]],["name/331",[263,72.504]],["parent/331",[248,3.606]],["name/332",[264,72.504]],["parent/332",[248,3.606]],["name/333",[265,72.504]],["parent/333",[248,3.606]],["name/334",[266,72.504]],["parent/334",[248,3.606]],["name/335",[267,72.504]],["parent/335",[248,3.606]],["name/336",[268,72.504]],["parent/336",[248,3.606]],["name/337",[269,72.504]],["parent/337",[248,3.606]],["name/338",[270,72.504]],["parent/338",[248,3.606]],["name/339",[271,72.504]],["parent/339",[248,3.606]],["name/340",[272,72.504]],["parent/340",[248,3.606]],["name/341",[273,72.504]],["parent/341",[248,3.606]],["name/342",[274,72.504]],["parent/342",[248,3.606]],["name/343",[275,72.504]],["parent/343",[]],["name/344",[276,72.504]],["parent/344",[]],["name/345",[277,72.504]],["parent/345",[]],["name/346",[278,72.504]],["parent/346",[]],["name/347",[279,67.393]],["parent/347",[]],["name/348",[20,39.533]],["parent/348",[279,5.645]],["name/349",[280,53.037]],["parent/349",[281,5.153]],["name/350",[18,52.127]],["parent/350",[281,5.153]],["name/351",[282,59.506]],["parent/351",[281,5.153]],["name/352",[283,67.393]],["parent/352",[281,5.153]],["name/353",[284,67.393]],["parent/353",[]],["name/354",[20,39.533]],["parent/354",[284,5.645]],["name/355",[280,53.037]],["parent/355",[285,5.363]],["name/356",[188,43.405]],["parent/356",[285,5.363]],["name/357",[20,39.533]],["parent/357",[286,6.073]],["name/358",[287,72.504]],["parent/358",[288,5.645]],["name/359",[289,72.504]],["parent/359",[288,5.645]],["name/360",[282,59.506]],["parent/360",[285,5.363]],["name/361",[290,67.393]],["parent/361",[]],["name/362",[20,39.533]],["parent/362",[290,5.645]],["name/363",[280,53.037]],["parent/363",[291,5.153]],["name/364",[188,43.405]],["parent/364",[291,5.153]],["name/365",[292,72.504]],["parent/365",[291,5.153]],["name/366",[282,59.506]],["parent/366",[291,5.153]],["name/367",[293,67.393]],["parent/367",[]],["name/368",[20,39.533]],["parent/368",[293,5.645]],["name/369",[294,72.504]],["parent/369",[295,5.363]],["name/370",[20,39.533]],["parent/370",[296,6.073]],["name/371",[280,53.037]],["parent/371",[297,5.645]],["name/372",[188,43.405]],["parent/372",[297,5.645]],["name/373",[298,72.504]],["parent/373",[295,5.363]],["name/374",[20,39.533]],["parent/374",[299,6.073]],["name/375",[280,53.037]],["parent/375",[300,5.645]],["name/376",[188,43.405]],["parent/376",[300,5.645]],["name/377",[301,72.504]],["parent/377",[295,5.363]],["name/378",[302,72.504]],["parent/378",[]],["name/379",[303,72.504]],["parent/379",[]],["name/380",[304,72.504]],["parent/380",[]],["name/381",[305,72.504]],["parent/381",[]],["name/382",[306,72.504]],["parent/382",[]],["name/383",[307,72.504]],["parent/383",[]],["name/384",[308,72.504]],["parent/384",[]],["name/385",[309,72.504]],["parent/385",[]],["name/386",[310,59.506]],["parent/386",[]],["name/387",[241,54.038]],["parent/387",[310,4.984]],["name/388",[311,72.504]],["parent/388",[310,4.984]],["name/389",[312,72.504]],["parent/389",[310,4.984]],["name/390",[313,72.504]],["parent/390",[310,4.984]],["name/391",[314,56.403]],["parent/391",[]],["name/392",[188,43.405]],["parent/392",[314,4.724]],["name/393",[315,61.513]],["parent/393",[314,4.724]],["name/394",[15,40.039]],["parent/394",[314,4.724]],["name/395",[316,59.506]],["parent/395",[314,4.724]],["name/396",[317,61.513]],["parent/396",[314,4.724]],["name/397",[318,61.513]],["parent/397",[314,4.724]],["name/398",[319,56.403]],["parent/398",[]],["name/399",[188,43.405]],["parent/399",[319,4.724]],["name/400",[315,61.513]],["parent/400",[319,4.724]],["name/401",[15,40.039]],["parent/401",[319,4.724]],["name/402",[316,59.506]],["parent/402",[319,4.724]],["name/403",[317,61.513]],["parent/403",[319,4.724]],["name/404",[318,61.513]],["parent/404",[319,4.724]],["name/405",[320,53.037]],["parent/405",[]],["name/406",[321,67.393]],["parent/406",[320,4.443]],["name/407",[322,67.393]],["parent/407",[320,4.443]],["name/408",[323,67.393]],["parent/408",[320,4.443]],["name/409",[15,40.039]],["parent/409",[320,4.443]],["name/410",[316,59.506]],["parent/410",[320,4.443]],["name/411",[317,61.513]],["parent/411",[320,4.443]],["name/412",[318,61.513]],["parent/412",[320,4.443]],["name/413",[188,43.405]],["parent/413",[320,4.443]],["name/414",[315,61.513]],["parent/414",[320,4.443]],["name/415",[324,51.293]],["parent/415",[]],["name/416",[321,67.393]],["parent/416",[324,4.296]],["name/417",[325,72.504]],["parent/417",[324,4.296]],["name/418",[322,67.393]],["parent/418",[324,4.296]],["name/419",[323,67.393]],["parent/419",[324,4.296]],["name/420",[15,40.039]],["parent/420",[324,4.296]],["name/421",[316,59.506]],["parent/421",[324,4.296]],["name/422",[326,72.504]],["parent/422",[324,4.296]],["name/423",[317,61.513]],["parent/423",[324,4.296]],["name/424",[318,61.513]],["parent/424",[324,4.296]],["name/425",[188,43.405]],["parent/425",[324,4.296]],["name/426",[315,61.513]],["parent/426",[324,4.296]],["name/427",[327,56.403]],["parent/427",[]],["name/428",[328,72.504]],["parent/428",[327,4.724]],["name/429",[15,40.039]],["parent/429",[327,4.724]],["name/430",[81,44.161]],["parent/430",[327,4.724]],["name/431",[329,53.037]],["parent/431",[327,4.724]],["name/432",[330,55.151]],["parent/432",[327,4.724]],["name/433",[97,52.127]],["parent/433",[327,4.724]],["name/434",[331,61.513]],["parent/434",[]],["name/435",[332,72.504]],["parent/435",[331,5.153]],["name/436",[28,64.027]],["parent/436",[331,5.153]],["name/437",[333,72.504]],["parent/437",[331,5.153]],["name/438",[334,59.506]],["parent/438",[]],["name/439",[6,30.642]],["parent/439",[334,4.984]],["name/440",[81,44.161]],["parent/440",[334,4.984]],["name/441",[329,53.037]],["parent/441",[334,4.984]],["name/442",[335,72.504]],["parent/442",[334,4.984]],["name/443",[336,64.027]],["parent/443",[]],["name/444",[81,44.161]],["parent/444",[336,5.363]],["name/445",[6,30.642]],["parent/445",[336,5.363]],["name/446",[198,59.506]],["parent/446",[]],["name/447",[337,72.504]],["parent/447",[]],["name/448",[338,72.504]],["parent/448",[]],["name/449",[339,72.504]],["parent/449",[]],["name/450",[340,72.504]],["parent/450",[]],["name/451",[341,72.504]],["parent/451",[]],["name/452",[342,72.504]],["parent/452",[]],["name/453",[343,72.504]],["parent/453",[]],["name/454",[344,72.504]],["parent/454",[]],["name/455",[345,72.504]],["parent/455",[]],["name/456",[346,72.504]],["parent/456",[]],["name/457",[347,72.504]],["parent/457",[]],["name/458",[348,72.504]],["parent/458",[]],["name/459",[349,72.504]],["parent/459",[]],["name/460",[350,67.393]],["parent/460",[]],["name/461",[351,72.504]],["parent/461",[]],["name/462",[352,72.504]],["parent/462",[]],["name/463",[353,72.504]],["parent/463",[]],["name/464",[354,72.504]],["parent/464",[]],["name/465",[355,72.504]],["parent/465",[]],["name/466",[356,72.504]],["parent/466",[]],["name/467",[357,72.504]],["parent/467",[]],["name/468",[358,72.504]],["parent/468",[]],["name/469",[359,72.504]],["parent/469",[]],["name/470",[360,72.504]],["parent/470",[]],["name/471",[361,72.504]],["parent/471",[]],["name/472",[362,72.504]],["parent/472",[]],["name/473",[363,72.504]],["parent/473",[]],["name/474",[364,72.504]],["parent/474",[]],["name/475",[365,72.504]],["parent/475",[]],["name/476",[366,72.504]],["parent/476",[]],["name/477",[367,72.504]],["parent/477",[]],["name/478",[368,72.504]],["parent/478",[]],["name/479",[369,72.504]],["parent/479",[]],["name/480",[370,72.504]],["parent/480",[]],["name/481",[371,72.504]],["parent/481",[]],["name/482",[372,72.504]],["parent/482",[]],["name/483",[373,72.504]],["parent/483",[]],["name/484",[374,72.504]],["parent/484",[]],["name/485",[375,72.504]],["parent/485",[]],["name/486",[376,72.504]],["parent/486",[]],["name/487",[377,72.504]],["parent/487",[]],["name/488",[378,56.403]],["parent/488",[]],["name/489",[81,44.161]],["parent/489",[378,4.724]],["name/490",[283,67.393]],["parent/490",[378,4.724]],["name/491",[280,53.037]],["parent/491",[378,4.724]],["name/492",[282,59.506]],["parent/492",[378,4.724]],["name/493",[33,47.371]],["parent/493",[378,4.724]],["name/494",[22,64.027]],["parent/494",[378,4.724]],["name/495",[379,50.523]],["parent/495",[]],["name/496",[380,72.504]],["parent/496",[379,4.232]],["name/497",[381,72.504]],["parent/497",[379,4.232]],["name/498",[382,72.504]],["parent/498",[379,4.232]],["name/499",[383,67.393]],["parent/499",[379,4.232]],["name/500",[384,72.504]],["parent/500",[379,4.232]],["name/501",[385,72.504]],["parent/501",[379,4.232]],["name/502",[386,72.504]],["parent/502",[379,4.232]],["name/503",[387,72.504]],["parent/503",[379,4.232]],["name/504",[18,52.127]],["parent/504",[379,4.232]],["name/505",[388,72.504]],["parent/505",[379,4.232]],["name/506",[389,72.504]],["parent/506",[379,4.232]],["name/507",[10,64.027]],["parent/507",[379,4.232]],["name/508",[390,72.504]],["parent/508",[]],["name/509",[391,72.504]],["parent/509",[]],["name/510",[392,72.504]],["parent/510",[]],["name/511",[393,72.504]],["parent/511",[]],["name/512",[394,72.504]],["parent/512",[]],["name/513",[395,72.504]],["parent/513",[]],["name/514",[396,72.504]],["parent/514",[]],["name/515",[397,72.504]],["parent/515",[]],["name/516",[398,67.393]],["parent/516",[]],["name/517",[399,72.504]],["parent/517",[]],["name/518",[400,72.504]],["parent/518",[]],["name/519",[401,72.504]],["parent/519",[]],["name/520",[402,72.504]],["parent/520",[]],["name/521",[403,72.504]],["parent/521",[]],["name/522",[404,72.504]],["parent/522",[]],["name/523",[405,72.504]],["parent/523",[]],["name/524",[406,72.504]],["parent/524",[]],["name/525",[407,72.504]],["parent/525",[]],["name/526",[408,72.504]],["parent/526",[]],["name/527",[409,72.504]],["parent/527",[]],["name/528",[410,72.504]],["parent/528",[]],["name/529",[411,72.504]],["parent/529",[]],["name/530",[412,55.151]],["parent/530",[]],["name/531",[413,67.393]],["parent/531",[412,4.62]],["name/532",[414,67.393]],["parent/532",[412,4.62]],["name/533",[415,64.027]],["parent/533",[]],["name/534",[414,67.393]],["parent/534",[415,5.363]],["name/535",[413,67.393]],["parent/535",[415,5.363]],["name/536",[416,61.513]],["parent/536",[]],["name/537",[329,53.037]],["parent/537",[416,5.153]],["name/538",[417,72.504]],["parent/538",[416,5.153]],["name/539",[418,72.504]],["parent/539",[416,5.153]],["name/540",[419,72.504]],["parent/540",[]],["name/541",[420,67.393]],["parent/541",[]],["name/542",[20,39.533]],["parent/542",[420,5.645]],["name/543",[421,67.393]],["parent/543",[]],["name/544",[20,39.533]],["parent/544",[421,5.645]],["name/545",[422,61.513]],["parent/545",[]],["name/546",[423,72.504]],["parent/546",[422,5.153]],["name/547",[424,72.504]],["parent/547",[422,5.153]],["name/548",[425,72.504]],["parent/548",[422,5.153]],["name/549",[426,72.504]],["parent/549",[]],["name/550",[427,72.504]],["parent/550",[]],["name/551",[428,64.027]],["parent/551",[]],["name/552",[429,67.393]],["parent/552",[428,5.363]],["name/553",[81,44.161]],["parent/553",[428,5.363]],["name/554",[430,64.027]],["parent/554",[]],["name/555",[429,67.393]],["parent/555",[430,5.363]],["name/556",[81,44.161]],["parent/556",[430,5.363]],["name/557",[431,72.504]],["parent/557",[]],["name/558",[432,72.504]],["parent/558",[]],["name/559",[433,72.504]],["parent/559",[]],["name/560",[434,67.393]],["parent/560",[]],["name/561",[20,39.533]],["parent/561",[434,5.645]],["name/562",[435,72.504]],["parent/562",[]],["name/563",[436,64.027]],["parent/563",[]],["name/564",[437,59.506]],["parent/564",[436,5.363]],["name/565",[438,59.506]],["parent/565",[436,5.363]],["name/566",[439,57.835]],["parent/566",[]],["name/567",[440,67.393]],["parent/567",[439,4.844]],["name/568",[441,72.504]],["parent/568",[439,4.844]],["name/569",[15,40.039]],["parent/569",[439,4.844]],["name/570",[437,59.506]],["parent/570",[439,4.844]],["name/571",[438,59.506]],["parent/571",[439,4.844]],["name/572",[442,59.506]],["parent/572",[]],["name/573",[443,59.506]],["parent/573",[442,4.984]],["name/574",[15,40.039]],["parent/574",[442,4.984]],["name/575",[437,59.506]],["parent/575",[442,4.984]],["name/576",[438,59.506]],["parent/576",[442,4.984]],["name/577",[444,72.504]],["parent/577",[]],["name/578",[445,72.504]],["parent/578",[]],["name/579",[446,72.504]],["parent/579",[]],["name/580",[440,67.393]],["parent/580",[]],["name/581",[447,67.393]],["parent/581",[]],["name/582",[20,39.533]],["parent/582",[447,5.645]],["name/583",[448,67.393]],["parent/583",[]],["name/584",[449,53.037]],["parent/584",[448,5.645]],["name/585",[450,61.513]],["parent/585",[]],["name/586",[451,72.504]],["parent/586",[450,5.153]],["name/587",[15,40.039]],["parent/587",[450,5.153]],["name/588",[449,53.037]],["parent/588",[450,5.153]],["name/589",[452,61.513]],["parent/589",[]],["name/590",[443,59.506]],["parent/590",[452,5.153]],["name/591",[15,40.039]],["parent/591",[452,5.153]],["name/592",[449,53.037]],["parent/592",[452,5.153]],["name/593",[453,67.393]],["parent/593",[]],["name/594",[454,72.504]],["parent/594",[]],["name/595",[455,72.504]],["parent/595",[]],["name/596",[456,72.504]],["parent/596",[]],["name/597",[457,67.393]],["parent/597",[]],["name/598",[449,53.037]],["parent/598",[457,5.645]],["name/599",[458,67.393]],["parent/599",[]],["name/600",[449,53.037]],["parent/600",[458,5.645]],["name/601",[459,61.513]],["parent/601",[]],["name/602",[453,67.393]],["parent/602",[459,5.153]],["name/603",[15,40.039]],["parent/603",[459,5.153]],["name/604",[449,53.037]],["parent/604",[459,5.153]],["name/605",[460,72.504]],["parent/605",[]],["name/606",[461,72.504]],["parent/606",[]],["name/607",[462,67.393]],["parent/607",[]],["name/608",[449,53.037]],["parent/608",[462,5.645]],["name/609",[463,61.513]],["parent/609",[]],["name/610",[464,72.504]],["parent/610",[463,5.153]],["name/611",[15,40.039]],["parent/611",[463,5.153]],["name/612",[449,53.037]],["parent/612",[463,5.153]],["name/613",[465,61.513]],["parent/613",[]],["name/614",[443,59.506]],["parent/614",[465,5.153]],["name/615",[15,40.039]],["parent/615",[465,5.153]],["name/616",[449,53.037]],["parent/616",[465,5.153]],["name/617",[466,72.504]],["parent/617",[]],["name/618",[467,72.504]],["parent/618",[]],["name/619",[468,72.504]],["parent/619",[]],["name/620",[469,61.513]],["parent/620",[]],["name/621",[470,64.027]],["parent/621",[469,5.153]],["name/622",[471,64.027]],["parent/622",[469,5.153]],["name/623",[472,64.027]],["parent/623",[469,5.153]],["name/624",[473,57.835]],["parent/624",[]],["name/625",[474,59.506]],["parent/625",[473,4.844]],["name/626",[280,53.037]],["parent/626",[473,4.844]],["name/627",[470,64.027]],["parent/627",[473,4.844]],["name/628",[471,64.027]],["parent/628",[473,4.844]],["name/629",[472,64.027]],["parent/629",[473,4.844]],["name/630",[58,67.393]],["parent/630",[]],["name/631",[59,67.393]],["parent/631",[]],["name/632",[475,67.393]],["parent/632",[]],["name/633",[476,61.513]],["parent/633",[475,5.645]],["name/634",[477,61.513]],["parent/634",[]],["name/635",[478,72.504]],["parent/635",[477,5.153]],["name/636",[15,40.039]],["parent/636",[477,5.153]],["name/637",[476,61.513]],["parent/637",[477,5.153]],["name/638",[479,61.513]],["parent/638",[]],["name/639",[443,59.506]],["parent/639",[479,5.153]],["name/640",[15,40.039]],["parent/640",[479,5.153]],["name/641",[476,61.513]],["parent/641",[479,5.153]],["name/642",[480,61.513]],["parent/642",[]],["name/643",[443,59.506]],["parent/643",[480,5.153]],["name/644",[15,40.039]],["parent/644",[480,5.153]],["name/645",[476,61.513]],["parent/645",[480,5.153]],["name/646",[481,72.504]],["parent/646",[]],["name/647",[482,72.504]],["parent/647",[]],["name/648",[483,72.504]],["parent/648",[]],["name/649",[484,59.506]],["parent/649",[]],["name/650",[81,44.161]],["parent/650",[484,4.984]],["name/651",[329,53.037]],["parent/651",[484,4.984]],["name/652",[330,55.151]],["parent/652",[484,4.984]],["name/653",[97,52.127]],["parent/653",[484,4.984]],["name/654",[485,72.504]],["parent/654",[]],["name/655",[486,64.027]],["parent/655",[]],["name/656",[487,72.504]],["parent/656",[486,5.363]],["name/657",[488,72.504]],["parent/657",[486,5.363]],["name/658",[489,72.504]],["parent/658",[]],["name/659",[490,72.504]],["parent/659",[]],["name/660",[438,59.506]],["parent/660",[]],["name/661",[437,59.506]],["parent/661",[]],["name/662",[491,48.515]],["parent/662",[]],["name/663",[492,72.504]],["parent/663",[491,4.064]],["name/664",[493,64.027]],["parent/664",[491,4.064]],["name/665",[15,40.039]],["parent/665",[491,4.064]],["name/666",[494,72.504]],["parent/666",[491,4.064]],["name/667",[495,72.504]],["parent/667",[491,4.064]],["name/668",[496,72.504]],["parent/668",[491,4.064]],["name/669",[497,72.504]],["parent/669",[491,4.064]],["name/670",[498,72.504]],["parent/670",[491,4.064]],["name/671",[316,59.506]],["parent/671",[491,4.064]],["name/672",[499,72.504]],["parent/672",[491,4.064]],["name/673",[500,72.504]],["parent/673",[491,4.064]],["name/674",[501,72.504]],["parent/674",[491,4.064]],["name/675",[502,72.504]],["parent/675",[491,4.064]],["name/676",[398,67.393]],["parent/676",[491,4.064]],["name/677",[503,72.504]],["parent/677",[491,4.064]],["name/678",[504,72.504]],["parent/678",[]],["name/679",[505,72.504]],["parent/679",[]],["name/680",[506,72.504]],["parent/680",[]],["name/681",[507,72.504]],["parent/681",[]],["name/682",[508,61.513]],["parent/682",[]],["name/683",[509,72.504]],["parent/683",[508,5.153]],["name/684",[510,72.504]],["parent/684",[508,5.153]],["name/685",[511,61.513]],["parent/685",[]],["name/686",[508,61.513]],["parent/686",[511,5.153]],["name/687",[280,53.037]],["parent/687",[511,5.153]],["name/688",[512,64.027]],["parent/688",[511,5.153]],["name/689",[513,64.027]],["parent/689",[]],["name/690",[514,72.504]],["parent/690",[513,5.363]],["name/691",[280,53.037]],["parent/691",[513,5.363]],["name/692",[515,61.513]],["parent/692",[]],["name/693",[512,64.027]],["parent/693",[515,5.153]],["name/694",[383,67.393]],["parent/694",[515,5.153]],["name/695",[493,64.027]],["parent/695",[515,5.153]],["name/696",[516,72.504]],["parent/696",[]],["name/697",[517,72.504]],["parent/697",[]],["name/698",[518,72.504]],["parent/698",[]],["name/699",[519,72.504]],["parent/699",[]],["name/700",[520,72.504]],["parent/700",[]],["name/701",[521,72.504]],["parent/701",[]],["name/702",[522,72.504]],["parent/702",[]],["name/703",[523,61.513]],["parent/703",[]],["name/704",[6,30.642]],["parent/704",[523,5.153]],["name/705",[81,44.161]],["parent/705",[523,5.153]],["name/706",[524,67.393]],["parent/706",[523,5.153]],["name/707",[33,47.371]],["parent/707",[]],["name/708",[6,30.642]],["parent/708",[33,3.968]],["name/709",[7,59.506]],["parent/709",[33,3.968]],["name/710",[525,67.393]],["parent/710",[33,3.968]],["name/711",[526,72.504]],["parent/711",[33,3.968]],["name/712",[81,44.161]],["parent/712",[33,3.968]],["name/713",[527,67.393]],["parent/713",[33,3.968]],["name/714",[528,64.027]],["parent/714",[]],["name/715",[529,72.504]],["parent/715",[528,5.363]],["name/716",[530,72.504]],["parent/716",[528,5.363]],["name/717",[531,59.506]],["parent/717",[]],["name/718",[25,56.403]],["parent/718",[531,4.984]],["name/719",[532,67.393]],["parent/719",[531,4.984]],["name/720",[198,59.506]],["parent/720",[531,4.984]],["name/721",[533,49.808]],["parent/721",[531,4.984]],["name/722",[534,59.506]],["parent/722",[]],["name/723",[533,49.808]],["parent/723",[534,4.984]],["name/724",[512,64.027]],["parent/724",[534,4.984]],["name/725",[25,56.403]],["parent/725",[534,4.984]],["name/726",[532,67.393]],["parent/726",[534,4.984]],["name/727",[535,72.504]],["parent/727",[]],["name/728",[7,59.506]],["parent/728",[]],["name/729",[536,72.504]],["parent/729",[]],["name/730",[537,72.504]],["parent/730",[]],["name/731",[538,64.027]],["parent/731",[]],["name/732",[539,72.504]],["parent/732",[538,5.363]],["name/733",[540,67.393]],["parent/733",[541,5.645]],["name/734",[542,67.393]],["parent/734",[541,5.645]],["name/735",[543,72.504]],["parent/735",[538,5.363]],["name/736",[540,67.393]],["parent/736",[544,5.645]],["name/737",[542,67.393]],["parent/737",[544,5.645]],["name/738",[545,72.504]],["parent/738",[]],["name/739",[546,72.504]],["parent/739",[]],["name/740",[547,72.504]],["parent/740",[]],["name/741",[548,72.504]],["parent/741",[]],["name/742",[549,72.504]],["parent/742",[]],["name/743",[550,72.504]],["parent/743",[]],["name/744",[551,56.403]],["parent/744",[]],["name/745",[552,67.393]],["parent/745",[551,4.724]],["name/746",[553,72.504]],["parent/746",[551,4.724]],["name/747",[188,43.405]],["parent/747",[551,4.724]],["name/748",[554,72.504]],["parent/748",[551,4.724]],["name/749",[555,72.504]],["parent/749",[551,4.724]],["name/750",[493,64.027]],["parent/750",[551,4.724]],["name/751",[556,59.506]],["parent/751",[]],["name/752",[557,72.504]],["parent/752",[556,4.984]],["name/753",[558,72.504]],["parent/753",[556,4.984]],["name/754",[559,72.504]],["parent/754",[556,4.984]],["name/755",[560,72.504]],["parent/755",[556,4.984]],["name/756",[561,61.513]],["parent/756",[]],["name/757",[562,72.504]],["parent/757",[561,5.153]],["name/758",[282,59.506]],["parent/758",[561,5.153]],["name/759",[563,61.513]],["parent/759",[561,5.153]],["name/760",[564,64.027]],["parent/760",[]],["name/761",[188,43.405]],["parent/761",[564,5.363]],["name/762",[198,59.506]],["parent/762",[564,5.363]],["name/763",[565,72.504]],["parent/763",[]],["name/764",[566,72.504]],["parent/764",[]],["name/765",[567,72.504]],["parent/765",[]],["name/766",[568,72.504]],["parent/766",[]],["name/767",[569,72.504]],["parent/767",[]],["name/768",[570,72.504]],["parent/768",[]],["name/769",[571,72.504]],["parent/769",[]],["name/770",[572,72.504]],["parent/770",[]],["name/771",[573,72.504]],["parent/771",[]],["name/772",[574,72.504]],["parent/772",[]],["name/773",[575,72.504]],["parent/773",[]],["name/774",[576,72.504]],["parent/774",[]],["name/775",[577,72.504]],["parent/775",[]],["name/776",[578,72.504]],["parent/776",[]],["name/777",[579,72.504]],["parent/777",[]],["name/778",[580,72.504]],["parent/778",[]],["name/779",[581,72.504]],["parent/779",[]],["name/780",[582,72.504]],["parent/780",[]],["name/781",[583,57.835]],["parent/781",[]],["name/782",[584,67.393]],["parent/782",[583,4.844]],["name/783",[188,43.405]],["parent/783",[583,4.844]],["name/784",[585,67.393]],["parent/784",[583,4.844]],["name/785",[586,67.393]],["parent/785",[583,4.844]],["name/786",[33,47.371]],["parent/786",[583,4.844]],["name/787",[587,67.393]],["parent/787",[]],["name/788",[588,72.504]],["parent/788",[587,5.645]],["name/789",[533,49.808]],["parent/789",[]],["name/790",[584,67.393]],["parent/790",[533,4.172]],["name/791",[188,43.405]],["parent/791",[533,4.172]],["name/792",[586,67.393]],["parent/792",[533,4.172]],["name/793",[585,67.393]],["parent/793",[533,4.172]],["name/794",[33,47.371]],["parent/794",[533,4.172]],["name/795",[15,40.039]],["parent/795",[533,4.172]],["name/796",[589,72.504]],["parent/796",[533,4.172]],["name/797",[28,64.027]],["parent/797",[533,4.172]],["name/798",[22,64.027]],["parent/798",[533,4.172]],["name/799",[590,72.504]],["parent/799",[533,4.172]],["name/800",[591,72.504]],["parent/800",[533,4.172]],["name/801",[592,72.504]],["parent/801",[]],["name/802",[593,72.504]],["parent/802",[]],["name/803",[594,72.504]],["parent/803",[]],["name/804",[595,72.504]],["parent/804",[]],["name/805",[596,72.504]],["parent/805",[]],["name/806",[597,49.141]],["parent/806",[]],["name/807",[598,51.293]],["parent/807",[597,4.116]],["name/808",[599,56.403]],["parent/808",[597,4.116]],["name/809",[600,56.403]],["parent/809",[597,4.116]],["name/810",[601,56.403]],["parent/810",[597,4.116]],["name/811",[18,52.127]],["parent/811",[597,4.116]],["name/812",[602,49.808]],["parent/812",[597,4.116]],["name/813",[603,50.523]],["parent/813",[597,4.116]],["name/814",[604,48.515]],["parent/814",[597,4.116]],["name/815",[63,49.141]],["parent/815",[597,4.116]],["name/816",[605,51.293]],["parent/816",[]],["name/817",[598,51.293]],["parent/817",[605,4.296]],["name/818",[606,67.393]],["parent/818",[605,4.296]],["name/819",[18,52.127]],["parent/819",[605,4.296]],["name/820",[602,49.808]],["parent/820",[605,4.296]],["name/821",[603,50.523]],["parent/821",[605,4.296]],["name/822",[604,48.515]],["parent/822",[605,4.296]],["name/823",[63,49.141]],["parent/823",[605,4.296]],["name/824",[607,55.151]],["parent/824",[]],["name/825",[608,56.403]],["parent/825",[607,4.62]],["name/826",[163,53.037]],["parent/826",[607,4.62]],["name/827",[609,56.403]],["parent/827",[607,4.62]],["name/828",[602,49.808]],["parent/828",[607,4.62]],["name/829",[603,50.523]],["parent/829",[607,4.62]],["name/830",[604,48.515]],["parent/830",[607,4.62]],["name/831",[63,49.141]],["parent/831",[607,4.62]],["name/832",[610,53.037]],["parent/832",[]],["name/833",[280,53.037]],["parent/833",[610,4.443]],["name/834",[15,40.039]],["parent/834",[610,4.443]],["name/835",[611,72.504]],["parent/835",[610,4.443]],["name/836",[612,72.504]],["parent/836",[610,4.443]],["name/837",[200,67.393]],["parent/837",[610,4.443]],["name/838",[613,72.504]],["parent/838",[610,4.443]],["name/839",[614,72.504]],["parent/839",[610,4.443]],["name/840",[615,72.504]],["parent/840",[610,4.443]],["name/841",[616,72.504]],["parent/841",[610,4.443]],["name/842",[617,57.835]],["parent/842",[]],["name/843",[618,67.393]],["parent/843",[617,4.844]],["name/844",[10,64.027]],["parent/844",[617,4.844]],["name/845",[619,72.504]],["parent/845",[617,4.844]],["name/846",[620,72.504]],["parent/846",[617,4.844]],["name/847",[81,44.161]],["parent/847",[617,4.844]],["name/848",[621,61.513]],["parent/848",[]],["name/849",[25,56.403]],["parent/849",[621,5.153]],["name/850",[188,43.405]],["parent/850",[621,5.153]],["name/851",[525,67.393]],["parent/851",[621,5.153]],["name/852",[20,39.533]],["parent/852",[622,6.073]],["name/853",[623,59.506]],["parent/853",[]],["name/854",[563,61.513]],["parent/854",[623,4.984]],["name/855",[624,72.504]],["parent/855",[623,4.984]],["name/856",[625,51.293]],["parent/856",[]],["name/857",[626,67.393]],["parent/857",[625,4.296]],["name/858",[627,67.393]],["parent/858",[625,4.296]],["name/859",[628,67.393]],["parent/859",[625,4.296]],["name/860",[629,67.393]],["parent/860",[625,4.296]],["name/861",[630,67.393]],["parent/861",[625,4.296]],["name/862",[631,67.393]],["parent/862",[625,4.296]],["name/863",[632,67.393]],["parent/863",[625,4.296]],["name/864",[563,61.513]],["parent/864",[625,4.296]],["name/865",[633,67.393]],["parent/865",[625,4.296]],["name/866",[634,59.506]],["parent/866",[625,4.296]],["name/867",[623,59.506]],["parent/867",[625,4.296]],["name/868",[635,43.405]],["parent/868",[]],["name/869",[626,67.393]],["parent/869",[635,3.636]],["name/870",[632,67.393]],["parent/870",[635,3.636]],["name/871",[628,67.393]],["parent/871",[635,3.636]],["name/872",[629,67.393]],["parent/872",[635,3.636]],["name/873",[630,67.393]],["parent/873",[635,3.636]],["name/874",[631,67.393]],["parent/874",[635,3.636]],["name/875",[627,67.393]],["parent/875",[635,3.636]],["name/876",[563,61.513]],["parent/876",[635,3.636]],["name/877",[633,67.393]],["parent/877",[635,3.636]],["name/878",[634,59.506]],["parent/878",[635,3.636]],["name/879",[623,59.506]],["parent/879",[635,3.636]],["name/880",[15,40.039]],["parent/880",[635,3.636]],["name/881",[636,72.504]],["parent/881",[635,3.636]],["name/882",[637,72.504]],["parent/882",[635,3.636]],["name/883",[638,72.504]],["parent/883",[635,3.636]],["name/884",[639,72.504]],["parent/884",[635,3.636]],["name/885",[640,72.504]],["parent/885",[635,3.636]],["name/886",[641,72.504]],["parent/886",[635,3.636]],["name/887",[642,72.504]],["parent/887",[635,3.636]],["name/888",[643,72.504]],["parent/888",[635,3.636]],["name/889",[644,72.504]],["parent/889",[635,3.636]],["name/890",[645,72.504]],["parent/890",[635,3.636]],["name/891",[646,72.504]],["parent/891",[635,3.636]],["name/892",[647,72.504]],["parent/892",[635,3.636]],["name/893",[648,72.504]],["parent/893",[635,3.636]],["name/894",[649,72.504]],["parent/894",[635,3.636]],["name/895",[650,72.504]],["parent/895",[]],["name/896",[651,49.141]],["parent/896",[]],["name/897",[18,52.127]],["parent/897",[651,4.116]],["name/898",[412,55.151]],["parent/898",[651,4.116]],["name/899",[652,61.513]],["parent/899",[651,4.116]],["name/900",[653,61.513]],["parent/900",[651,4.116]],["name/901",[654,61.513]],["parent/901",[651,4.116]],["name/902",[655,61.513]],["parent/902",[651,4.116]],["name/903",[656,61.513]],["parent/903",[651,4.116]],["name/904",[657,61.513]],["parent/904",[651,4.116]],["name/905",[658,61.513]],["parent/905",[651,4.116]],["name/906",[20,39.533]],["parent/906",[659,6.073]],["name/907",[660,61.513]],["parent/907",[651,4.116]],["name/908",[20,39.533]],["parent/908",[661,6.073]],["name/909",[662,61.513]],["parent/909",[651,4.116]],["name/910",[20,39.533]],["parent/910",[663,6.073]],["name/911",[664,61.513]],["parent/911",[651,4.116]],["name/912",[20,39.533]],["parent/912",[665,6.073]],["name/913",[666,61.513]],["parent/913",[651,4.116]],["name/914",[20,39.533]],["parent/914",[667,6.073]],["name/915",[177,59.506]],["parent/915",[651,4.116]],["name/916",[20,39.533]],["parent/916",[668,6.073]],["name/917",[669,49.141]],["parent/917",[]],["name/918",[18,52.127]],["parent/918",[669,4.116]],["name/919",[412,55.151]],["parent/919",[669,4.116]],["name/920",[652,61.513]],["parent/920",[669,4.116]],["name/921",[653,61.513]],["parent/921",[669,4.116]],["name/922",[654,61.513]],["parent/922",[669,4.116]],["name/923",[655,61.513]],["parent/923",[669,4.116]],["name/924",[656,61.513]],["parent/924",[669,4.116]],["name/925",[657,61.513]],["parent/925",[669,4.116]],["name/926",[658,61.513]],["parent/926",[669,4.116]],["name/927",[660,61.513]],["parent/927",[669,4.116]],["name/928",[662,61.513]],["parent/928",[669,4.116]],["name/929",[664,61.513]],["parent/929",[669,4.116]],["name/930",[666,61.513]],["parent/930",[669,4.116]],["name/931",[177,59.506]],["parent/931",[669,4.116]],["name/932",[670,49.141]],["parent/932",[]],["name/933",[18,52.127]],["parent/933",[670,4.116]],["name/934",[412,55.151]],["parent/934",[670,4.116]],["name/935",[652,61.513]],["parent/935",[670,4.116]],["name/936",[653,61.513]],["parent/936",[670,4.116]],["name/937",[654,61.513]],["parent/937",[670,4.116]],["name/938",[655,61.513]],["parent/938",[670,4.116]],["name/939",[656,61.513]],["parent/939",[670,4.116]],["name/940",[657,61.513]],["parent/940",[670,4.116]],["name/941",[658,61.513]],["parent/941",[670,4.116]],["name/942",[660,61.513]],["parent/942",[670,4.116]],["name/943",[662,61.513]],["parent/943",[670,4.116]],["name/944",[664,61.513]],["parent/944",[670,4.116]],["name/945",[666,61.513]],["parent/945",[670,4.116]],["name/946",[177,59.506]],["parent/946",[670,4.116]],["name/947",[671,49.141]],["parent/947",[]],["name/948",[18,52.127]],["parent/948",[671,4.116]],["name/949",[412,55.151]],["parent/949",[671,4.116]],["name/950",[652,61.513]],["parent/950",[671,4.116]],["name/951",[653,61.513]],["parent/951",[671,4.116]],["name/952",[654,61.513]],["parent/952",[671,4.116]],["name/953",[655,61.513]],["parent/953",[671,4.116]],["name/954",[656,61.513]],["parent/954",[671,4.116]],["name/955",[657,61.513]],["parent/955",[671,4.116]],["name/956",[658,61.513]],["parent/956",[671,4.116]],["name/957",[660,61.513]],["parent/957",[671,4.116]],["name/958",[662,61.513]],["parent/958",[671,4.116]],["name/959",[664,61.513]],["parent/959",[671,4.116]],["name/960",[666,61.513]],["parent/960",[671,4.116]],["name/961",[177,59.506]],["parent/961",[671,4.116]],["name/962",[672,72.504]],["parent/962",[]],["name/963",[673,72.504]],["parent/963",[]],["name/964",[674,72.504]],["parent/964",[]],["name/965",[675,72.504]],["parent/965",[]],["name/966",[676,72.504]],["parent/966",[]],["name/967",[677,72.504]],["parent/967",[33,3.968]],["name/968",[20,39.533]],["parent/968",[678,6.073]],["name/969",[15,40.039]],["parent/969",[33,3.968]],["name/970",[679,72.504]],["parent/970",[33,3.968]],["name/971",[680,72.504]],["parent/971",[33,3.968]],["name/972",[681,72.504]],["parent/972",[33,3.968]],["name/973",[682,72.504]],["parent/973",[33,3.968]],["name/974",[683,72.504]],["parent/974",[33,3.968]],["name/975",[684,64.027]],["parent/975",[]],["name/976",[6,30.642]],["parent/976",[684,5.363]],["name/977",[129,54.038]],["parent/977",[684,5.363]],["name/978",[7,59.506]],["parent/978",[685,5.645]],["name/979",[6,30.642]],["parent/979",[686,5.645]],["name/980",[687,42.047]],["parent/980",[686,5.645]],["name/981",[6,30.642]],["parent/981",[685,5.645]],["name/982",[6,30.642]],["parent/982",[688,6.073]],["name/983",[689,61.513]],["parent/983",[]],["name/984",[6,30.642]],["parent/984",[689,5.153]],["name/985",[131,67.393]],["parent/985",[689,5.153]],["name/986",[129,54.038]],["parent/986",[689,5.153]],["name/987",[7,59.506]],["parent/987",[690,4.116]],["name/988",[6,30.642]],["parent/988",[691,5.645]],["name/989",[687,42.047]],["parent/989",[691,5.645]],["name/990",[6,30.642]],["parent/990",[690,4.116]],["name/991",[6,30.642]],["parent/991",[692,6.073]],["name/992",[693,64.027]],["parent/992",[690,4.116]],["name/993",[6,30.642]],["parent/993",[694,5.645]],["name/994",[687,42.047]],["parent/994",[694,5.645]],["name/995",[81,44.161]],["parent/995",[690,4.116]],["name/996",[6,30.642]],["parent/996",[695,5.645]],["name/997",[687,42.047]],["parent/997",[695,5.645]],["name/998",[696,72.504]],["parent/998",[690,4.116]],["name/999",[6,30.642]],["parent/999",[697,5.645]],["name/1000",[687,42.047]],["parent/1000",[697,5.645]],["name/1001",[698,72.504]],["parent/1001",[690,4.116]],["name/1002",[6,30.642]],["parent/1002",[699,5.645]],["name/1003",[687,42.047]],["parent/1003",[699,5.645]],["name/1004",[700,72.504]],["parent/1004",[690,4.116]],["name/1005",[6,30.642]],["parent/1005",[701,5.645]],["name/1006",[687,42.047]],["parent/1006",[701,5.645]],["name/1007",[527,67.393]],["parent/1007",[690,4.116]],["name/1008",[6,30.642]],["parent/1008",[702,5.363]],["name/1009",[687,42.047]],["parent/1009",[702,5.363]],["name/1010",[703,59.506]],["parent/1010",[702,5.363]],["name/1011",[6,30.642]],["parent/1011",[704,5.645]],["name/1012",[129,54.038]],["parent/1012",[704,5.645]],["name/1013",[6,30.642]],["parent/1013",[705,5.363]],["name/1014",[6,30.642]],["parent/1014",[706,6.073]],["name/1015",[81,44.161]],["parent/1015",[705,5.363]],["name/1016",[6,30.642]],["parent/1016",[707,5.645]],["name/1017",[687,42.047]],["parent/1017",[707,5.645]],["name/1018",[524,67.393]],["parent/1018",[705,5.363]],["name/1019",[6,30.642]],["parent/1019",[708,5.645]],["name/1020",[687,42.047]],["parent/1020",[708,5.645]],["name/1021",[709,72.504]],["parent/1021",[690,4.116]],["name/1022",[6,30.642]],["parent/1022",[710,5.363]],["name/1023",[687,42.047]],["parent/1023",[710,5.363]],["name/1024",[703,59.506]],["parent/1024",[710,5.363]],["name/1025",[6,30.642]],["parent/1025",[711,5.645]],["name/1026",[129,54.038]],["parent/1026",[711,5.645]],["name/1027",[6,30.642]],["parent/1027",[712,5.645]],["name/1028",[6,30.642]],["parent/1028",[713,6.073]],["name/1029",[714,72.504]],["parent/1029",[712,5.645]],["name/1030",[6,30.642]],["parent/1030",[715,5.645]],["name/1031",[687,42.047]],["parent/1031",[715,5.645]],["name/1032",[716,72.504]],["parent/1032",[690,4.116]],["name/1033",[6,30.642]],["parent/1033",[717,5.363]],["name/1034",[687,42.047]],["parent/1034",[717,5.363]],["name/1035",[703,59.506]],["parent/1035",[717,5.363]],["name/1036",[6,30.642]],["parent/1036",[718,5.645]],["name/1037",[129,54.038]],["parent/1037",[718,5.645]],["name/1038",[6,30.642]],["parent/1038",[719,4.724]],["name/1039",[6,30.642]],["parent/1039",[720,6.073]],["name/1040",[721,72.504]],["parent/1040",[719,4.724]],["name/1041",[6,30.642]],["parent/1041",[722,5.645]],["name/1042",[687,42.047]],["parent/1042",[722,5.645]],["name/1043",[723,72.504]],["parent/1043",[719,4.724]],["name/1044",[6,30.642]],["parent/1044",[724,5.645]],["name/1045",[687,42.047]],["parent/1045",[724,5.645]],["name/1046",[725,72.504]],["parent/1046",[719,4.724]],["name/1047",[6,30.642]],["parent/1047",[726,5.645]],["name/1048",[687,42.047]],["parent/1048",[726,5.645]],["name/1049",[727,72.504]],["parent/1049",[719,4.724]],["name/1050",[6,30.642]],["parent/1050",[728,5.645]],["name/1051",[687,42.047]],["parent/1051",[728,5.645]],["name/1052",[729,72.504]],["parent/1052",[719,4.724]],["name/1053",[6,30.642]],["parent/1053",[730,5.645]],["name/1054",[687,42.047]],["parent/1054",[730,5.645]],["name/1055",[731,72.504]],["parent/1055",[719,4.724]],["name/1056",[6,30.642]],["parent/1056",[732,5.645]],["name/1057",[687,42.047]],["parent/1057",[732,5.645]],["name/1058",[733,72.504]],["parent/1058",[690,4.116]],["name/1059",[6,30.642]],["parent/1059",[734,5.363]],["name/1060",[687,42.047]],["parent/1060",[734,5.363]],["name/1061",[703,59.506]],["parent/1061",[734,5.363]],["name/1062",[6,30.642]],["parent/1062",[735,5.645]],["name/1063",[129,54.038]],["parent/1063",[735,5.645]],["name/1064",[6,30.642]],["parent/1064",[736,5.645]],["name/1065",[6,30.642]],["parent/1065",[737,6.073]],["name/1066",[693,64.027]],["parent/1066",[736,5.645]],["name/1067",[6,30.642]],["parent/1067",[738,5.645]],["name/1068",[687,42.047]],["parent/1068",[738,5.645]],["name/1069",[739,72.504]],["parent/1069",[690,4.116]],["name/1070",[6,30.642]],["parent/1070",[740,5.363]],["name/1071",[687,42.047]],["parent/1071",[740,5.363]],["name/1072",[703,59.506]],["parent/1072",[740,5.363]],["name/1073",[6,30.642]],["parent/1073",[741,5.645]],["name/1074",[129,54.038]],["parent/1074",[741,5.645]],["name/1075",[6,30.642]],["parent/1075",[742,5.645]],["name/1076",[6,30.642]],["parent/1076",[743,6.073]],["name/1077",[693,64.027]],["parent/1077",[742,5.645]],["name/1078",[6,30.642]],["parent/1078",[744,5.645]],["name/1079",[687,42.047]],["parent/1079",[744,5.645]],["name/1080",[188,43.405]],["parent/1080",[690,4.116]],["name/1081",[6,30.642]],["parent/1081",[745,5.363]],["name/1082",[687,42.047]],["parent/1082",[745,5.363]],["name/1083",[129,54.038]],["parent/1083",[745,5.363]],["name/1084",[6,30.642]],["parent/1084",[746,4.984]],["name/1085",[6,30.642]],["parent/1085",[747,6.073]],["name/1086",[748,72.504]],["parent/1086",[746,4.984]],["name/1087",[6,30.642]],["parent/1087",[749,5.645]],["name/1088",[687,42.047]],["parent/1088",[749,5.645]],["name/1089",[750,72.504]],["parent/1089",[746,4.984]],["name/1090",[6,30.642]],["parent/1090",[751,5.645]],["name/1091",[687,42.047]],["parent/1091",[751,5.645]],["name/1092",[752,72.504]],["parent/1092",[746,4.984]],["name/1093",[6,30.642]],["parent/1093",[753,5.645]],["name/1094",[687,42.047]],["parent/1094",[753,5.645]],["name/1095",[754,72.504]],["parent/1095",[746,4.984]],["name/1096",[6,30.642]],["parent/1096",[755,5.645]],["name/1097",[687,42.047]],["parent/1097",[755,5.645]],["name/1098",[756,72.504]],["parent/1098",[690,4.116]],["name/1099",[6,30.642]],["parent/1099",[757,5.645]],["name/1100",[687,42.047]],["parent/1100",[757,5.645]],["name/1101",[758,72.504]],["parent/1101",[690,4.116]],["name/1102",[6,30.642]],["parent/1102",[759,5.645]],["name/1103",[687,42.047]],["parent/1103",[759,5.645]],["name/1104",[760,72.504]],["parent/1104",[]],["name/1105",[34,56.403]],["parent/1105",[]],["name/1106",[188,43.405]],["parent/1106",[34,4.724]],["name/1107",[761,72.504]],["parent/1107",[34,4.724]],["name/1108",[762,72.504]],["parent/1108",[34,4.724]],["name/1109",[763,72.504]],["parent/1109",[34,4.724]],["name/1110",[764,72.504]],["parent/1110",[34,4.724]],["name/1111",[765,64.027]],["parent/1111",[]],["name/1112",[766,72.504]],["parent/1112",[765,5.363]],["name/1113",[767,72.504]],["parent/1113",[765,5.363]],["name/1114",[768,72.504]],["parent/1114",[]],["name/1115",[769,72.504]],["parent/1115",[]],["name/1116",[770,72.504]],["parent/1116",[]],["name/1117",[771,57.835]],["parent/1117",[]],["name/1118",[772,72.504]],["parent/1118",[771,4.844]],["name/1119",[437,59.506]],["parent/1119",[771,4.844]],["name/1120",[470,64.027]],["parent/1120",[771,4.844]],["name/1121",[471,64.027]],["parent/1121",[771,4.844]],["name/1122",[472,64.027]],["parent/1122",[771,4.844]],["name/1123",[773,57.835]],["parent/1123",[]],["name/1124",[438,59.506]],["parent/1124",[773,4.844]],["name/1125",[774,67.393]],["parent/1125",[773,4.844]],["name/1126",[25,56.403]],["parent/1126",[773,4.844]],["name/1127",[775,67.393]],["parent/1127",[773,4.844]],["name/1128",[62,64.027]],["parent/1128",[773,4.844]],["name/1129",[776,61.513]],["parent/1129",[]],["name/1130",[25,56.403]],["parent/1130",[776,5.153]],["name/1131",[775,67.393]],["parent/1131",[776,5.153]],["name/1132",[62,64.027]],["parent/1132",[776,5.153]],["name/1133",[777,67.393]],["parent/1133",[]],["name/1134",[50,48.515]],["parent/1134",[777,5.645]],["name/1135",[778,49.808]],["parent/1135",[]],["name/1136",[50,48.515]],["parent/1136",[778,4.172]],["name/1137",[15,40.039]],["parent/1137",[778,4.172]],["name/1138",[779,72.504]],["parent/1138",[778,4.172]],["name/1139",[780,72.504]],["parent/1139",[778,4.172]],["name/1140",[781,72.504]],["parent/1140",[778,4.172]],["name/1141",[782,72.504]],["parent/1141",[778,4.172]],["name/1142",[783,72.504]],["parent/1142",[778,4.172]],["name/1143",[784,72.504]],["parent/1143",[778,4.172]],["name/1144",[785,72.504]],["parent/1144",[778,4.172]],["name/1145",[786,72.504]],["parent/1145",[778,4.172]],["name/1146",[787,72.504]],["parent/1146",[778,4.172]],["name/1147",[788,72.504]],["parent/1147",[778,4.172]],["name/1148",[789,72.504]],["parent/1148",[778,4.172]],["name/1149",[790,72.504]],["parent/1149",[]],["name/1150",[791,72.504]],["parent/1150",[]],["name/1151",[792,51.293]],["parent/1151",[]],["name/1152",[188,43.405]],["parent/1152",[792,4.296]],["name/1153",[793,61.513]],["parent/1153",[792,4.296]],["name/1154",[794,57.835]],["parent/1154",[792,4.296]],["name/1155",[795,61.513]],["parent/1155",[792,4.296]],["name/1156",[796,55.151]],["parent/1156",[792,4.296]],["name/1157",[797,67.393]],["parent/1157",[792,4.296]],["name/1158",[474,59.506]],["parent/1158",[792,4.296]],["name/1159",[798,59.506]],["parent/1159",[792,4.296]],["name/1160",[799,64.027]],["parent/1160",[792,4.296]],["name/1161",[800,61.513]],["parent/1161",[792,4.296]],["name/1162",[801,61.513]],["parent/1162",[792,4.296]],["name/1163",[802,52.127]],["parent/1163",[]],["name/1164",[803,72.504]],["parent/1164",[802,4.366]],["name/1165",[804,72.504]],["parent/1165",[802,4.366]],["name/1166",[805,72.504]],["parent/1166",[802,4.366]],["name/1167",[806,72.504]],["parent/1167",[802,4.366]],["name/1168",[807,72.504]],["parent/1168",[802,4.366]],["name/1169",[808,48.515]],["parent/1169",[]],["name/1170",[809,72.504]],["parent/1170",[808,4.064]],["name/1171",[810,72.504]],["parent/1171",[808,4.064]],["name/1172",[811,72.504]],["parent/1172",[808,4.064]],["name/1173",[604,48.515]],["parent/1173",[]],["name/1174",[812,72.504]],["parent/1174",[604,4.064]],["name/1175",[813,72.504]],["parent/1175",[604,4.064]],["name/1176",[814,61.513]],["parent/1176",[]],["name/1177",[815,67.393]],["parent/1177",[814,5.153]],["name/1178",[816,67.393]],["parent/1178",[814,5.153]],["name/1179",[817,67.393]],["parent/1179",[814,5.153]],["name/1180",[818,57.835]],["parent/1180",[]],["name/1181",[819,67.393]],["parent/1181",[818,4.844]],["name/1182",[820,51.293]],["parent/1182",[818,4.844]],["name/1183",[821,59.506]],["parent/1183",[]],["name/1184",[822,72.504]],["parent/1184",[821,4.984]],["name/1185",[823,72.504]],["parent/1185",[821,4.984]],["name/1186",[824,72.504]],["parent/1186",[821,4.984]],["name/1187",[825,72.504]],["parent/1187",[821,4.984]],["name/1188",[826,59.506]],["parent/1188",[]],["name/1189",[827,72.504]],["parent/1189",[826,4.984]],["name/1190",[828,72.504]],["parent/1190",[826,4.984]],["name/1191",[829,72.504]],["parent/1191",[826,4.984]],["name/1192",[830,72.504]],["parent/1192",[826,4.984]],["name/1193",[831,64.027]],["parent/1193",[]],["name/1194",[832,67.393]],["parent/1194",[831,5.363]],["name/1195",[833,72.504]],["parent/1195",[831,5.363]],["name/1196",[834,57.835]],["parent/1196",[]],["name/1197",[835,72.504]],["parent/1197",[834,4.844]],["name/1198",[836,72.504]],["parent/1198",[834,4.844]],["name/1199",[837,72.504]],["parent/1199",[834,4.844]],["name/1200",[838,72.504]],["parent/1200",[834,4.844]],["name/1201",[839,72.504]],["parent/1201",[834,4.844]],["name/1202",[840,64.027]],["parent/1202",[]],["name/1203",[841,72.504]],["parent/1203",[840,5.363]],["name/1204",[842,72.504]],["parent/1204",[840,5.363]],["name/1205",[843,61.513]],["parent/1205",[]],["name/1206",[618,67.393]],["parent/1206",[843,5.153]],["name/1207",[819,67.393]],["parent/1207",[843,5.153]],["name/1208",[844,72.504]],["parent/1208",[843,5.153]],["name/1209",[845,61.513]],["parent/1209",[]],["name/1210",[815,67.393]],["parent/1210",[845,5.153]],["name/1211",[816,67.393]],["parent/1211",[845,5.153]],["name/1212",[817,67.393]],["parent/1212",[845,5.153]],["name/1213",[846,46.844]],["parent/1213",[]],["name/1214",[847,72.504]],["parent/1214",[846,3.924]],["name/1215",[848,72.504]],["parent/1215",[846,3.924]],["name/1216",[849,72.504]],["parent/1216",[846,3.924]],["name/1217",[850,72.504]],["parent/1217",[846,3.924]],["name/1218",[851,72.504]],["parent/1218",[846,3.924]],["name/1219",[852,72.504]],["parent/1219",[846,3.924]],["name/1220",[853,72.504]],["parent/1220",[846,3.924]],["name/1221",[854,72.504]],["parent/1221",[846,3.924]],["name/1222",[855,72.504]],["parent/1222",[846,3.924]],["name/1223",[856,72.504]],["parent/1223",[846,3.924]],["name/1224",[857,72.504]],["parent/1224",[846,3.924]],["name/1225",[858,72.504]],["parent/1225",[846,3.924]],["name/1226",[859,72.504]],["parent/1226",[846,3.924]],["name/1227",[860,72.504]],["parent/1227",[846,3.924]],["name/1228",[861,72.504]],["parent/1228",[846,3.924]],["name/1229",[862,72.504]],["parent/1229",[846,3.924]],["name/1230",[863,72.504]],["parent/1230",[846,3.924]],["name/1231",[864,72.504]],["parent/1231",[846,3.924]],["name/1232",[865,72.504]],["parent/1232",[]],["name/1233",[866,72.504]],["parent/1233",[]],["name/1234",[867,72.504]],["parent/1234",[]],["name/1235",[868,72.504]],["parent/1235",[]],["name/1236",[869,72.504]],["parent/1236",[]],["name/1237",[870,72.504]],["parent/1237",[]],["name/1238",[871,72.504]],["parent/1238",[]],["name/1239",[872,72.504]],["parent/1239",[]],["name/1240",[873,72.504]],["parent/1240",[]],["name/1241",[874,72.504]],["parent/1241",[]],["name/1242",[875,72.504]],["parent/1242",[]],["name/1243",[876,72.504]],["parent/1243",[]],["name/1244",[877,32.057]],["parent/1244",[]],["name/1245",[878,72.504]],["parent/1245",[877,2.685]],["name/1246",[15,40.039]],["parent/1246",[877,2.685]],["name/1247",[879,72.504]],["parent/1247",[877,2.685]],["name/1248",[880,72.504]],["parent/1248",[877,2.685]],["name/1249",[881,72.504]],["parent/1249",[877,2.685]],["name/1250",[882,59.506]],["parent/1250",[877,2.685]],["name/1251",[883,72.504]],["parent/1251",[877,2.685]],["name/1252",[884,72.504]],["parent/1252",[877,2.685]],["name/1253",[885,72.504]],["parent/1253",[877,2.685]],["name/1254",[886,72.504]],["parent/1254",[877,2.685]],["name/1255",[887,72.504]],["parent/1255",[877,2.685]],["name/1256",[888,72.504]],["parent/1256",[877,2.685]],["name/1257",[889,72.504]],["parent/1257",[877,2.685]],["name/1258",[890,72.504]],["parent/1258",[877,2.685]],["name/1259",[891,72.504]],["parent/1259",[877,2.685]],["name/1260",[892,72.504]],["parent/1260",[877,2.685]],["name/1261",[893,72.504]],["parent/1261",[877,2.685]],["name/1262",[894,72.504]],["parent/1262",[877,2.685]],["name/1263",[895,72.504]],["parent/1263",[877,2.685]],["name/1264",[896,72.504]],["parent/1264",[877,2.685]],["name/1265",[897,72.504]],["parent/1265",[877,2.685]],["name/1266",[898,72.504]],["parent/1266",[877,2.685]],["name/1267",[899,72.504]],["parent/1267",[877,2.685]],["name/1268",[900,72.504]],["parent/1268",[877,2.685]],["name/1269",[901,72.504]],["parent/1269",[877,2.685]],["name/1270",[902,72.504]],["parent/1270",[877,2.685]],["name/1271",[903,72.504]],["parent/1271",[877,2.685]],["name/1272",[904,72.504]],["parent/1272",[877,2.685]],["name/1273",[905,72.504]],["parent/1273",[877,2.685]],["name/1274",[906,72.504]],["parent/1274",[877,2.685]],["name/1275",[907,72.504]],["parent/1275",[877,2.685]],["name/1276",[908,72.504]],["parent/1276",[877,2.685]],["name/1277",[909,72.504]],["parent/1277",[877,2.685]],["name/1278",[910,72.504]],["parent/1278",[877,2.685]],["name/1279",[911,72.504]],["parent/1279",[877,2.685]],["name/1280",[912,72.504]],["parent/1280",[877,2.685]],["name/1281",[913,72.504]],["parent/1281",[877,2.685]],["name/1282",[914,72.504]],["parent/1282",[877,2.685]],["name/1283",[915,72.504]],["parent/1283",[877,2.685]],["name/1284",[916,72.504]],["parent/1284",[877,2.685]],["name/1285",[917,72.504]],["parent/1285",[877,2.685]],["name/1286",[918,72.504]],["parent/1286",[877,2.685]],["name/1287",[919,72.504]],["parent/1287",[877,2.685]],["name/1288",[920,72.504]],["parent/1288",[877,2.685]],["name/1289",[921,72.504]],["parent/1289",[877,2.685]],["name/1290",[922,72.504]],["parent/1290",[877,2.685]],["name/1291",[923,72.504]],["parent/1291",[877,2.685]],["name/1292",[924,72.504]],["parent/1292",[877,2.685]],["name/1293",[925,72.504]],["parent/1293",[877,2.685]],["name/1294",[926,72.504]],["parent/1294",[877,2.685]],["name/1295",[927,72.504]],["parent/1295",[877,2.685]],["name/1296",[928,72.504]],["parent/1296",[877,2.685]],["name/1297",[929,72.504]],["parent/1297",[877,2.685]],["name/1298",[930,72.504]],["parent/1298",[877,2.685]],["name/1299",[931,72.504]],["parent/1299",[877,2.685]],["name/1300",[932,72.504]],["parent/1300",[877,2.685]],["name/1301",[933,72.504]],["parent/1301",[877,2.685]],["name/1302",[934,72.504]],["parent/1302",[877,2.685]],["name/1303",[935,72.504]],["parent/1303",[877,2.685]],["name/1304",[936,72.504]],["parent/1304",[877,2.685]],["name/1305",[937,72.504]],["parent/1305",[877,2.685]],["name/1306",[938,72.504]],["parent/1306",[877,2.685]],["name/1307",[939,72.504]],["parent/1307",[877,2.685]],["name/1308",[940,72.504]],["parent/1308",[877,2.685]],["name/1309",[941,72.504]],["parent/1309",[877,2.685]],["name/1310",[942,72.504]],["parent/1310",[877,2.685]],["name/1311",[943,72.504]],["parent/1311",[877,2.685]],["name/1312",[944,72.504]],["parent/1312",[877,2.685]],["name/1313",[945,72.504]],["parent/1313",[877,2.685]],["name/1314",[946,72.504]],["parent/1314",[877,2.685]],["name/1315",[947,72.504]],["parent/1315",[877,2.685]],["name/1316",[948,72.504]],["parent/1316",[877,2.685]],["name/1317",[949,72.504]],["parent/1317",[877,2.685]],["name/1318",[950,72.504]],["parent/1318",[877,2.685]],["name/1319",[951,72.504]],["parent/1319",[877,2.685]],["name/1320",[952,72.504]],["parent/1320",[877,2.685]],["name/1321",[953,72.504]],["parent/1321",[877,2.685]],["name/1322",[954,72.504]],["parent/1322",[877,2.685]],["name/1323",[955,72.504]],["parent/1323",[877,2.685]],["name/1324",[956,72.504]],["parent/1324",[877,2.685]],["name/1325",[957,72.504]],["parent/1325",[877,2.685]],["name/1326",[958,72.504]],["parent/1326",[877,2.685]],["name/1327",[959,72.504]],["parent/1327",[877,2.685]],["name/1328",[960,67.393]],["parent/1328",[877,2.685]],["name/1329",[961,72.504]],["parent/1329",[]],["name/1330",[962,72.504]],["parent/1330",[]],["name/1331",[963,72.504]],["parent/1331",[]],["name/1332",[964,64.027]],["parent/1332",[]],["name/1333",[6,30.642]],["parent/1333",[964,5.363]],["name/1334",[965,57.835]],["parent/1334",[964,5.363]],["name/1335",[634,59.506]],["parent/1335",[]],["name/1336",[965,57.835]],["parent/1336",[634,4.984]],["name/1337",[832,67.393]],["parent/1337",[634,4.984]],["name/1338",[966,72.504]],["parent/1338",[]],["name/1339",[967,72.504]],["parent/1339",[]],["name/1340",[968,72.504]],["parent/1340",[]],["name/1341",[969,72.504]],["parent/1341",[]],["name/1342",[970,72.504]],["parent/1342",[]],["name/1343",[971,72.504]],["parent/1343",[]],["name/1344",[972,72.504]],["parent/1344",[]],["name/1345",[973,72.504]],["parent/1345",[]],["name/1346",[974,72.504]],["parent/1346",[]],["name/1347",[975,72.504]],["parent/1347",[]],["name/1348",[976,72.504]],["parent/1348",[]],["name/1349",[977,72.504]],["parent/1349",[]],["name/1350",[978,72.504]],["parent/1350",[]],["name/1351",[979,72.504]],["parent/1351",[]],["name/1352",[980,72.504]],["parent/1352",[]],["name/1353",[981,72.504]],["parent/1353",[]],["name/1354",[982,72.504]],["parent/1354",[]],["name/1355",[983,57.835]],["parent/1355",[]],["name/1356",[15,40.039]],["parent/1356",[983,4.844]],["name/1357",[81,44.161]],["parent/1357",[983,4.844]],["name/1358",[329,53.037]],["parent/1358",[983,4.844]],["name/1359",[330,55.151]],["parent/1359",[983,4.844]],["name/1360",[97,52.127]],["parent/1360",[983,4.844]],["name/1361",[984,57.835]],["parent/1361",[]],["name/1362",[15,40.039]],["parent/1362",[984,4.844]],["name/1363",[81,44.161]],["parent/1363",[984,4.844]],["name/1364",[329,53.037]],["parent/1364",[984,4.844]],["name/1365",[330,55.151]],["parent/1365",[984,4.844]],["name/1366",[97,52.127]],["parent/1366",[984,4.844]],["name/1367",[985,57.835]],["parent/1367",[]],["name/1368",[15,40.039]],["parent/1368",[985,4.844]],["name/1369",[81,44.161]],["parent/1369",[985,4.844]],["name/1370",[329,53.037]],["parent/1370",[985,4.844]],["name/1371",[330,55.151]],["parent/1371",[985,4.844]],["name/1372",[97,52.127]],["parent/1372",[985,4.844]],["name/1373",[986,57.835]],["parent/1373",[]],["name/1374",[15,40.039]],["parent/1374",[986,4.844]],["name/1375",[81,44.161]],["parent/1375",[986,4.844]],["name/1376",[329,53.037]],["parent/1376",[986,4.844]],["name/1377",[330,55.151]],["parent/1377",[986,4.844]],["name/1378",[97,52.127]],["parent/1378",[986,4.844]],["name/1379",[987,57.835]],["parent/1379",[]],["name/1380",[15,40.039]],["parent/1380",[987,4.844]],["name/1381",[81,44.161]],["parent/1381",[987,4.844]],["name/1382",[329,53.037]],["parent/1382",[987,4.844]],["name/1383",[330,55.151]],["parent/1383",[987,4.844]],["name/1384",[97,52.127]],["parent/1384",[987,4.844]],["name/1385",[988,57.835]],["parent/1385",[]],["name/1386",[15,40.039]],["parent/1386",[988,4.844]],["name/1387",[81,44.161]],["parent/1387",[988,4.844]],["name/1388",[329,53.037]],["parent/1388",[988,4.844]],["name/1389",[330,55.151]],["parent/1389",[988,4.844]],["name/1390",[97,52.127]],["parent/1390",[988,4.844]],["name/1391",[989,57.835]],["parent/1391",[]],["name/1392",[6,30.642]],["parent/1392",[989,4.844]],["name/1393",[990,64.027]],["parent/1393",[989,4.844]],["name/1394",[793,61.513]],["parent/1394",[989,4.844]],["name/1395",[991,64.027]],["parent/1395",[989,4.844]],["name/1396",[163,53.037]],["parent/1396",[989,4.844]],["name/1397",[992,56.403]],["parent/1397",[]],["name/1398",[6,30.642]],["parent/1398",[992,4.724]],["name/1399",[990,64.027]],["parent/1399",[992,4.724]],["name/1400",[793,61.513]],["parent/1400",[992,4.724]],["name/1401",[991,64.027]],["parent/1401",[992,4.724]],["name/1402",[163,53.037]],["parent/1402",[992,4.724]],["name/1403",[796,55.151]],["parent/1403",[992,4.724]],["name/1404",[993,56.403]],["parent/1404",[]],["name/1405",[6,30.642]],["parent/1405",[993,4.724]],["name/1406",[990,64.027]],["parent/1406",[993,4.724]],["name/1407",[793,61.513]],["parent/1407",[993,4.724]],["name/1408",[991,64.027]],["parent/1408",[993,4.724]],["name/1409",[796,55.151]],["parent/1409",[993,4.724]],["name/1410",[994,67.393]],["parent/1410",[993,4.724]],["name/1411",[797,67.393]],["parent/1411",[]],["name/1412",[995,72.504]],["parent/1412",[]],["name/1413",[996,72.504]],["parent/1413",[]],["name/1414",[997,72.504]],["parent/1414",[]],["name/1415",[998,72.504]],["parent/1415",[]],["name/1416",[999,72.504]],["parent/1416",[]],["name/1417",[1000,57.835]],["parent/1417",[]],["name/1418",[6,30.642]],["parent/1418",[1000,4.844]],["name/1419",[802,52.127]],["parent/1419",[1000,4.844]],["name/1420",[608,56.403]],["parent/1420",[1000,4.844]],["name/1421",[163,53.037]],["parent/1421",[1000,4.844]],["name/1422",[609,56.403]],["parent/1422",[1000,4.844]],["name/1423",[1001,56.403]],["parent/1423",[]],["name/1424",[6,30.642]],["parent/1424",[1001,4.724]],["name/1425",[802,52.127]],["parent/1425",[1001,4.724]],["name/1426",[599,56.403]],["parent/1426",[1001,4.724]],["name/1427",[598,51.293]],["parent/1427",[1001,4.724]],["name/1428",[600,56.403]],["parent/1428",[1001,4.724]],["name/1429",[601,56.403]],["parent/1429",[1001,4.724]],["name/1430",[1002,59.506]],["parent/1430",[]],["name/1431",[6,30.642]],["parent/1431",[1002,4.984]],["name/1432",[802,52.127]],["parent/1432",[1002,4.984]],["name/1433",[598,51.293]],["parent/1433",[1002,4.984]],["name/1434",[606,67.393]],["parent/1434",[1002,4.984]],["name/1435",[1003,64.027]],["parent/1435",[]],["name/1436",[6,30.642]],["parent/1436",[1003,5.363]],["name/1437",[802,52.127]],["parent/1437",[1003,5.363]],["name/1438",[1004,61.513]],["parent/1438",[]],["name/1439",[6,30.642]],["parent/1439",[1004,5.153]],["name/1440",[802,52.127]],["parent/1440",[1004,5.153]],["name/1441",[1005,72.504]],["parent/1441",[1004,5.153]],["name/1442",[799,64.027]],["parent/1442",[]],["name/1443",[1006,72.504]],["parent/1443",[]],["name/1444",[1007,72.504]],["parent/1444",[]],["name/1445",[1008,72.504]],["parent/1445",[]],["name/1446",[1009,72.504]],["parent/1446",[]],["name/1447",[1010,72.504]],["parent/1447",[]],["name/1448",[1011,72.504]],["parent/1448",[]],["name/1449",[1012,72.504]],["parent/1449",[]],["name/1450",[188,43.405]],["parent/1450",[]],["name/1451",[6,30.642]],["parent/1451",[188,3.636]],["name/1452",[18,52.127]],["parent/1452",[188,3.636]],["name/1453",[350,67.393]],["parent/1453",[188,3.636]],["name/1454",[1013,61.513]],["parent/1454",[]],["name/1455",[6,30.642]],["parent/1455",[1013,5.153]],["name/1456",[1014,67.393]],["parent/1456",[1013,5.153]],["name/1457",[188,43.405]],["parent/1457",[1013,5.153]],["name/1458",[1015,59.506]],["parent/1458",[]],["name/1459",[6,30.642]],["parent/1459",[1015,4.984]],["name/1460",[1014,67.393]],["parent/1460",[1015,4.984]],["name/1461",[188,43.405]],["parent/1461",[1015,4.984]],["name/1462",[598,51.293]],["parent/1462",[1015,4.984]],["name/1463",[794,57.835]],["parent/1463",[]],["name/1464",[6,30.642]],["parent/1464",[794,4.844]],["name/1465",[1016,67.393]],["parent/1465",[794,4.844]],["name/1466",[1017,67.393]],["parent/1466",[794,4.844]],["name/1467",[1018,72.504]],["parent/1467",[794,4.844]],["name/1468",[795,61.513]],["parent/1468",[]],["name/1469",[6,30.642]],["parent/1469",[795,5.153]],["name/1470",[1016,67.393]],["parent/1470",[795,5.153]],["name/1471",[796,55.151]],["parent/1471",[]],["name/1472",[6,30.642]],["parent/1472",[796,4.62]],["name/1473",[188,43.405]],["parent/1473",[796,4.62]],["name/1474",[598,51.293]],["parent/1474",[796,4.62]],["name/1475",[994,67.393]],["parent/1475",[796,4.62]],["name/1476",[798,59.506]],["parent/1476",[]],["name/1477",[6,30.642]],["parent/1477",[798,4.984]],["name/1478",[1017,67.393]],["parent/1478",[798,4.984]],["name/1479",[1019,72.504]],["parent/1479",[798,4.984]],["name/1480",[1020,72.504]],["parent/1480",[]],["name/1481",[1021,72.504]],["parent/1481",[]],["name/1482",[1022,72.504]],["parent/1482",[]],["name/1483",[1023,72.504]],["parent/1483",[]],["name/1484",[1024,72.504]],["parent/1484",[]],["name/1485",[1025,72.504]],["parent/1485",[]],["name/1486",[1026,72.504]],["parent/1486",[]],["name/1487",[1027,72.504]],["parent/1487",[]],["name/1488",[1028,72.504]],["parent/1488",[]],["name/1489",[1029,72.504]],["parent/1489",[]],["name/1490",[1030,72.504]],["parent/1490",[]],["name/1491",[1031,72.504]],["parent/1491",[]],["name/1492",[1032,72.504]],["parent/1492",[]],["name/1493",[1033,72.504]],["parent/1493",[]],["name/1494",[1034,72.504]],["parent/1494",[]],["name/1495",[1035,72.504]],["parent/1495",[]],["name/1496",[1036,72.504]],["parent/1496",[]],["name/1497",[1037,72.504]],["parent/1497",[]],["name/1498",[1038,72.504]],["parent/1498",[]],["name/1499",[1039,72.504]],["parent/1499",[]],["name/1500",[1040,72.504]],["parent/1500",[]],["name/1501",[1041,72.504]],["parent/1501",[]],["name/1502",[1042,72.504]],["parent/1502",[]],["name/1503",[1043,72.504]],["parent/1503",[]],["name/1504",[1044,72.504]],["parent/1504",[]],["name/1505",[1045,72.504]],["parent/1505",[]],["name/1506",[1046,72.504]],["parent/1506",[]],["name/1507",[1047,72.504]],["parent/1507",[]],["name/1508",[1048,72.504]],["parent/1508",[]],["name/1509",[1049,72.504]],["parent/1509",[]],["name/1510",[1050,72.504]],["parent/1510",[]],["name/1511",[1051,72.504]],["parent/1511",[]],["name/1512",[1052,61.513]],["parent/1512",[]],["name/1513",[6,30.642]],["parent/1513",[1052,5.153]],["name/1514",[188,43.405]],["parent/1514",[1052,5.153]],["name/1515",[1053,59.506]],["parent/1515",[]],["name/1516",[6,30.642]],["parent/1516",[1053,4.984]],["name/1517",[188,43.405]],["parent/1517",[1053,4.984]],["name/1518",[598,51.293]],["parent/1518",[1053,4.984]],["name/1519",[1054,67.393]],["parent/1519",[]],["name/1520",[1055,72.504]],["parent/1520",[]],["name/1521",[1054,67.393]],["parent/1521",[]],["name/1522",[1052,61.513]],["parent/1522",[]],["name/1523",[1056,72.504]],["parent/1523",[]],["name/1524",[1053,59.506]],["parent/1524",[]],["name/1525",[1057,72.504]],["parent/1525",[]],["name/1526",[1058,72.504]],["parent/1526",[]],["name/1527",[1059,48.515]],["parent/1527",[]],["name/1528",[1060,72.504]],["parent/1528",[1059,4.064]],["name/1529",[1061,72.504]],["parent/1529",[1059,4.064]],["name/1530",[1062,64.027]],["parent/1530",[1059,4.064]],["name/1531",[1063,72.504]],["parent/1531",[1059,4.064]],["name/1532",[1064,72.504]],["parent/1532",[1059,4.064]],["name/1533",[1065,72.504]],["parent/1533",[1059,4.064]],["name/1534",[1066,72.504]],["parent/1534",[1059,4.064]],["name/1535",[1067,72.504]],["parent/1535",[1059,4.064]],["name/1536",[1068,72.504]],["parent/1536",[1059,4.064]],["name/1537",[1069,72.504]],["parent/1537",[1059,4.064]],["name/1538",[1070,72.504]],["parent/1538",[1059,4.064]],["name/1539",[1071,64.027]],["parent/1539",[1059,4.064]],["name/1540",[1072,67.393]],["parent/1540",[1059,4.064]],["name/1541",[1073,72.504]],["parent/1541",[1059,4.064]],["name/1542",[1074,72.504]],["parent/1542",[1059,4.064]],["name/1543",[1075,72.504]],["parent/1543",[]],["name/1544",[1076,72.504]],["parent/1544",[]],["name/1545",[1077,72.504]],["parent/1545",[]],["name/1546",[1078,64.027]],["parent/1546",[]],["name/1547",[6,30.642]],["parent/1547",[1078,5.363]],["name/1548",[1079,64.027]],["parent/1548",[]],["name/1549",[6,30.642]],["parent/1549",[1079,5.363]],["name/1550",[1080,72.504]],["parent/1550",[]],["name/1551",[1078,64.027]],["parent/1551",[]],["name/1552",[1079,64.027]],["parent/1552",[]],["name/1553",[1081,61.513]],["parent/1553",[]],["name/1554",[6,30.642]],["parent/1554",[1081,5.153]],["name/1555",[241,54.038]],["parent/1555",[1081,5.153]],["name/1556",[1082,61.513]],["parent/1556",[]],["name/1557",[6,30.642]],["parent/1557",[1082,5.153]],["name/1558",[241,54.038]],["parent/1558",[1082,5.153]],["name/1559",[1081,61.513]],["parent/1559",[]],["name/1560",[1082,61.513]],["parent/1560",[]],["name/1561",[1083,61.513]],["parent/1561",[]],["name/1562",[6,30.642]],["parent/1562",[1083,5.153]],["name/1563",[1062,64.027]],["parent/1563",[1083,5.153]],["name/1564",[1083,61.513]],["parent/1564",[]],["name/1565",[1084,72.504]],["parent/1565",[]],["name/1566",[1085,64.027]],["parent/1566",[]],["name/1567",[6,30.642]],["parent/1567",[1085,5.363]],["name/1568",[1086,61.513]],["parent/1568",[]],["name/1569",[6,30.642]],["parent/1569",[1086,5.153]],["name/1570",[241,54.038]],["parent/1570",[1086,5.153]],["name/1571",[1087,72.504]],["parent/1571",[]],["name/1572",[1085,64.027]],["parent/1572",[]],["name/1573",[1086,61.513]],["parent/1573",[]],["name/1574",[1088,72.504]],["parent/1574",[]],["name/1575",[1089,61.513]],["parent/1575",[]],["name/1576",[6,30.642]],["parent/1576",[1089,5.153]],["name/1577",[241,54.038]],["parent/1577",[1089,5.153]],["name/1578",[1090,61.513]],["parent/1578",[]],["name/1579",[6,30.642]],["parent/1579",[1090,5.153]],["name/1580",[241,54.038]],["parent/1580",[1090,5.153]],["name/1581",[1091,72.504]],["parent/1581",[]],["name/1582",[1089,61.513]],["parent/1582",[]],["name/1583",[1090,61.513]],["parent/1583",[]],["name/1584",[1092,61.513]],["parent/1584",[]],["name/1585",[6,30.642]],["parent/1585",[1092,5.153]],["name/1586",[1071,64.027]],["parent/1586",[1092,5.153]],["name/1587",[1092,61.513]],["parent/1587",[]],["name/1588",[1093,61.513]],["parent/1588",[]],["name/1589",[6,30.642]],["parent/1589",[1093,5.153]],["name/1590",[965,57.835]],["parent/1590",[1093,5.153]],["name/1591",[1094,67.393]],["parent/1591",[]],["name/1592",[20,39.533]],["parent/1592",[1094,5.645]],["name/1593",[1093,61.513]],["parent/1593",[]],["name/1594",[1095,61.513]],["parent/1594",[]],["name/1595",[6,30.642]],["parent/1595",[1095,5.153]],["name/1596",[965,57.835]],["parent/1596",[1095,5.153]],["name/1597",[1096,61.513]],["parent/1597",[]],["name/1598",[6,30.642]],["parent/1598",[1096,5.153]],["name/1599",[965,57.835]],["parent/1599",[1096,5.153]],["name/1600",[1095,61.513]],["parent/1600",[]],["name/1601",[1096,61.513]],["parent/1601",[]],["name/1602",[1097,72.504]],["parent/1602",[]],["name/1603",[1098,72.504]],["parent/1603",[]],["name/1604",[1099,72.504]],["parent/1604",[]],["name/1605",[1100,72.504]],["parent/1605",[]],["name/1606",[1101,72.504]],["parent/1606",[]],["name/1607",[1102,72.504]],["parent/1607",[]],["name/1608",[1103,72.504]],["parent/1608",[]],["name/1609",[1104,72.504]],["parent/1609",[]],["name/1610",[1105,72.504]],["parent/1610",[]],["name/1611",[1106,72.504]],["parent/1611",[]],["name/1612",[1107,72.504]],["parent/1612",[]],["name/1613",[1108,72.504]],["parent/1613",[]],["name/1614",[1109,72.504]],["parent/1614",[]],["name/1615",[1110,72.504]],["parent/1615",[]],["name/1616",[1111,72.504]],["parent/1616",[]],["name/1617",[1112,72.504]],["parent/1617",[]],["name/1618",[1113,56.403]],["parent/1618",[]],["name/1619",[1114,72.504]],["parent/1619",[1113,4.724]],["name/1620",[241,54.038]],["parent/1620",[1113,4.724]],["name/1621",[1115,72.504]],["parent/1621",[1113,4.724]],["name/1622",[1116,67.393]],["parent/1622",[1113,4.724]],["name/1623",[1117,72.504]],["parent/1623",[1113,4.724]],["name/1624",[1118,72.504]],["parent/1624",[1113,4.724]],["name/1625",[1119,36.936]],["parent/1625",[]],["name/1626",[15,40.039]],["parent/1626",[1119,3.094]],["name/1627",[449,53.037]],["parent/1627",[1119,3.094]],["name/1628",[1120,72.504]],["parent/1628",[1119,3.094]],["name/1629",[1121,72.504]],["parent/1629",[1119,3.094]],["name/1630",[1122,72.504]],["parent/1630",[1119,3.094]],["name/1631",[1123,72.504]],["parent/1631",[1119,3.094]],["name/1632",[1124,72.504]],["parent/1632",[1119,3.094]],["name/1633",[1125,72.504]],["parent/1633",[1119,3.094]],["name/1634",[1126,72.504]],["parent/1634",[1119,3.094]],["name/1635",[1127,72.504]],["parent/1635",[1119,3.094]],["name/1636",[1128,72.504]],["parent/1636",[1119,3.094]],["name/1637",[1129,72.504]],["parent/1637",[1119,3.094]],["name/1638",[1130,72.504]],["parent/1638",[1119,3.094]],["name/1639",[1131,72.504]],["parent/1639",[1119,3.094]],["name/1640",[1132,72.504]],["parent/1640",[1119,3.094]],["name/1641",[1133,72.504]],["parent/1641",[1119,3.094]],["name/1642",[1134,72.504]],["parent/1642",[1119,3.094]],["name/1643",[1135,72.504]],["parent/1643",[1119,3.094]],["name/1644",[1136,72.504]],["parent/1644",[1119,3.094]],["name/1645",[1137,72.504]],["parent/1645",[1119,3.094]],["name/1646",[1138,72.504]],["parent/1646",[1119,3.094]],["name/1647",[1139,72.504]],["parent/1647",[1119,3.094]],["name/1648",[1140,72.504]],["parent/1648",[1119,3.094]],["name/1649",[1141,72.504]],["parent/1649",[1119,3.094]],["name/1650",[1142,72.504]],["parent/1650",[1119,3.094]],["name/1651",[1143,67.393]],["parent/1651",[1119,3.094]],["name/1652",[1144,72.504]],["parent/1652",[1119,3.094]],["name/1653",[1145,72.504]],["parent/1653",[1119,3.094]],["name/1654",[1146,72.504]],["parent/1654",[1119,3.094]],["name/1655",[1147,72.504]],["parent/1655",[1119,3.094]],["name/1656",[1116,67.393]],["parent/1656",[1119,3.094]],["name/1657",[960,67.393]],["parent/1657",[1119,3.094]],["name/1658",[1148,72.504]],["parent/1658",[1119,3.094]],["name/1659",[1149,72.504]],["parent/1659",[1119,3.094]],["name/1660",[1150,72.504]],["parent/1660",[1119,3.094]],["name/1661",[1151,72.504]],["parent/1661",[1119,3.094]],["name/1662",[1152,72.504]],["parent/1662",[1119,3.094]],["name/1663",[1153,72.504]],["parent/1663",[1119,3.094]],["name/1664",[1154,72.504]],["parent/1664",[1119,3.094]],["name/1665",[1155,72.504]],["parent/1665",[1119,3.094]],["name/1666",[1156,72.504]],["parent/1666",[1119,3.094]],["name/1667",[1157,67.393]],["parent/1667",[1119,3.094]],["name/1668",[1158,72.504]],["parent/1668",[1119,3.094]],["name/1669",[1159,72.504]],["parent/1669",[1119,3.094]],["name/1670",[1160,72.504]],["parent/1670",[1119,3.094]],["name/1671",[1161,72.504]],["parent/1671",[1119,3.094]],["name/1672",[1162,72.504]],["parent/1672",[1119,3.094]],["name/1673",[1163,72.504]],["parent/1673",[1119,3.094]],["name/1674",[1164,72.504]],["parent/1674",[1119,3.094]],["name/1675",[1165,72.504]],["parent/1675",[1119,3.094]],["name/1676",[1157,67.393]],["parent/1676",[1119,3.094]],["name/1677",[1166,64.027]],["parent/1677",[]],["name/1678",[1167,72.504]],["parent/1678",[1166,5.363]],["name/1679",[1168,72.504]],["parent/1679",[1166,5.363]],["name/1680",[1169,72.504]],["parent/1680",[]],["name/1681",[1170,72.504]],["parent/1681",[]],["name/1682",[1171,72.504]],["parent/1682",[]],["name/1683",[1172,72.504]],["parent/1683",[]],["name/1684",[1173,72.504]],["parent/1684",[]],["name/1685",[1174,72.504]],["parent/1685",[]],["name/1686",[1175,72.504]],["parent/1686",[]],["name/1687",[1176,72.504]],["parent/1687",[]],["name/1688",[1177,72.504]],["parent/1688",[]],["name/1689",[1178,72.504]],["parent/1689",[]],["name/1690",[1179,72.504]],["parent/1690",[]],["name/1691",[1180,72.504]],["parent/1691",[]],["name/1692",[1181,72.504]],["parent/1692",[]],["name/1693",[1182,72.504]],["parent/1693",[]],["name/1694",[1183,72.504]],["parent/1694",[]],["name/1695",[1184,72.504]],["parent/1695",[]],["name/1696",[1185,61.513]],["parent/1696",[]],["name/1697",[1186,59.506]],["parent/1697",[1185,5.153]],["name/1698",[1187,55.151]],["parent/1698",[1185,5.153]],["name/1699",[1187,55.151]],["parent/1699",[1185,5.153]],["name/1700",[800,61.513]],["parent/1700",[]],["name/1701",[6,30.642]],["parent/1701",[800,5.153]],["name/1702",[965,57.835]],["parent/1702",[800,5.153]],["name/1703",[1188,64.027]],["parent/1703",[]],["name/1704",[474,59.506]],["parent/1704",[1188,5.363]],["name/1705",[1189,67.393]],["parent/1705",[1188,5.363]],["name/1706",[801,61.513]],["parent/1706",[]],["name/1707",[6,30.642]],["parent/1707",[801,5.153]],["name/1708",[1190,72.504]],["parent/1708",[801,5.153]],["name/1709",[1191,56.403]],["parent/1709",[]],["name/1710",[1192,67.393]],["parent/1710",[1191,4.724]],["name/1711",[1193,67.393]],["parent/1711",[1191,4.724]],["name/1712",[602,49.808]],["parent/1712",[1191,4.724]],["name/1713",[1194,49.808]],["parent/1713",[1191,4.724]],["name/1714",[1195,72.504]],["parent/1714",[1191,4.724]],["name/1715",[1189,67.393]],["parent/1715",[1191,4.724]],["name/1716",[1196,56.403]],["parent/1716",[]],["name/1717",[1192,67.393]],["parent/1717",[1196,4.724]],["name/1718",[1193,67.393]],["parent/1718",[1196,4.724]],["name/1719",[602,49.808]],["parent/1719",[1196,4.724]],["name/1720",[1194,49.808]],["parent/1720",[1196,4.724]],["name/1721",[1197,72.504]],["parent/1721",[1196,4.724]],["name/1722",[1198,72.504]],["parent/1722",[1196,4.724]],["name/1723",[1199,49.141]],["parent/1723",[]],["name/1724",[818,57.835]],["parent/1724",[1199,4.116]],["name/1725",[1200,61.513]],["parent/1725",[1199,4.116]],["name/1726",[1201,64.027]],["parent/1726",[1199,4.116]],["name/1727",[15,40.039]],["parent/1727",[1199,4.116]],["name/1728",[1202,64.027]],["parent/1728",[1199,4.116]],["name/1729",[1203,61.513]],["parent/1729",[1199,4.116]],["name/1730",[1204,64.027]],["parent/1730",[1199,4.116]],["name/1731",[1205,61.513]],["parent/1731",[1199,4.116]],["name/1732",[1206,61.513]],["parent/1732",[1199,4.116]],["name/1733",[1207,61.513]],["parent/1733",[1199,4.116]],["name/1734",[1208,61.513]],["parent/1734",[1199,4.116]],["name/1735",[1186,59.506]],["parent/1735",[1199,4.116]],["name/1736",[1187,55.151]],["parent/1736",[1199,4.116]],["name/1737",[1187,55.151]],["parent/1737",[1199,4.116]],["name/1738",[1209,49.141]],["parent/1738",[]],["name/1739",[15,40.039]],["parent/1739",[1209,4.116]],["name/1740",[818,57.835]],["parent/1740",[1209,4.116]],["name/1741",[1200,61.513]],["parent/1741",[1209,4.116]],["name/1742",[1201,64.027]],["parent/1742",[1209,4.116]],["name/1743",[1202,64.027]],["parent/1743",[1209,4.116]],["name/1744",[1203,61.513]],["parent/1744",[1209,4.116]],["name/1745",[1204,64.027]],["parent/1745",[1209,4.116]],["name/1746",[1205,61.513]],["parent/1746",[1209,4.116]],["name/1747",[1206,61.513]],["parent/1747",[1209,4.116]],["name/1748",[1207,61.513]],["parent/1748",[1209,4.116]],["name/1749",[1208,61.513]],["parent/1749",[1209,4.116]],["name/1750",[1186,59.506]],["parent/1750",[1209,4.116]],["name/1751",[1187,55.151]],["parent/1751",[1209,4.116]],["name/1752",[1187,55.151]],["parent/1752",[1209,4.116]],["name/1753",[1210,49.141]],["parent/1753",[]],["name/1754",[15,40.039]],["parent/1754",[1210,4.116]],["name/1755",[818,57.835]],["parent/1755",[1210,4.116]],["name/1756",[1200,61.513]],["parent/1756",[1210,4.116]],["name/1757",[1201,64.027]],["parent/1757",[1210,4.116]],["name/1758",[1202,64.027]],["parent/1758",[1210,4.116]],["name/1759",[1203,61.513]],["parent/1759",[1210,4.116]],["name/1760",[1204,64.027]],["parent/1760",[1210,4.116]],["name/1761",[1205,61.513]],["parent/1761",[1210,4.116]],["name/1762",[1206,61.513]],["parent/1762",[1210,4.116]],["name/1763",[1207,61.513]],["parent/1763",[1210,4.116]],["name/1764",[1208,61.513]],["parent/1764",[1210,4.116]],["name/1765",[1186,59.506]],["parent/1765",[1210,4.116]],["name/1766",[1187,55.151]],["parent/1766",[1210,4.116]],["name/1767",[1187,55.151]],["parent/1767",[1210,4.116]],["name/1768",[1211,72.504]],["parent/1768",[]],["name/1769",[1212,72.504]],["parent/1769",[]],["name/1770",[1213,72.504]],["parent/1770",[]],["name/1771",[1214,72.504]],["parent/1771",[]],["name/1772",[1215,72.504]],["parent/1772",[]],["name/1773",[1216,72.504]],["parent/1773",[]],["name/1774",[1217,72.504]],["parent/1774",[]],["name/1775",[1218,72.504]],["parent/1775",[]],["name/1776",[1200,61.513]],["parent/1776",[]],["name/1777",[1219,72.504]],["parent/1777",[]],["name/1778",[1220,72.504]],["parent/1778",[]],["name/1779",[1221,72.504]],["parent/1779",[]],["name/1780",[1222,72.504]],["parent/1780",[]],["name/1781",[1223,72.504]],["parent/1781",[]],["name/1782",[1224,72.504]],["parent/1782",[]],["name/1783",[1225,72.504]],["parent/1783",[]],["name/1784",[1226,72.504]],["parent/1784",[]],["name/1785",[1227,72.504]],["parent/1785",[]],["name/1786",[1228,72.504]],["parent/1786",[]],["name/1787",[1229,72.504]],["parent/1787",[]],["name/1788",[1230,72.504]],["parent/1788",[]],["name/1789",[1231,72.504]],["parent/1789",[]],["name/1790",[1232,72.504]],["parent/1790",[]],["name/1791",[1233,72.504]],["parent/1791",[]],["name/1792",[774,67.393]],["parent/1792",[]],["name/1793",[1234,72.504]],["parent/1793",[]],["name/1794",[1235,44.978]],["parent/1794",[]],["name/1795",[18,52.127]],["parent/1795",[1235,3.767]],["name/1796",[412,55.151]],["parent/1796",[1235,3.767]],["name/1797",[1236,72.504]],["parent/1797",[1235,3.767]],["name/1798",[808,48.515]],["parent/1798",[1235,3.767]],["name/1799",[799,64.027]],["parent/1799",[1235,3.767]],["name/1800",[604,48.515]],["parent/1800",[1235,3.767]],["name/1801",[603,50.523]],["parent/1801",[1235,3.767]],["name/1802",[15,40.039]],["parent/1802",[1235,3.767]],["name/1803",[1237,72.504]],["parent/1803",[1235,3.767]],["name/1804",[1238,72.504]],["parent/1804",[1235,3.767]],["name/1805",[1239,72.504]],["parent/1805",[1235,3.767]],["name/1806",[1208,61.513]],["parent/1806",[1235,3.767]],["name/1807",[1240,72.504]],["parent/1807",[1235,3.767]],["name/1808",[1241,72.504]],["parent/1808",[1235,3.767]],["name/1809",[1242,72.504]],["parent/1809",[1235,3.767]],["name/1810",[1243,72.504]],["parent/1810",[1235,3.767]],["name/1811",[1244,67.393]],["parent/1811",[1235,3.767]],["name/1812",[1207,61.513]],["parent/1812",[1235,3.767]],["name/1813",[1203,61.513]],["parent/1813",[1235,3.767]],["name/1814",[1205,61.513]],["parent/1814",[1235,3.767]],["name/1815",[1206,61.513]],["parent/1815",[1235,3.767]],["name/1816",[1186,59.506]],["parent/1816",[1235,3.767]],["name/1817",[1245,72.504]],["parent/1817",[]],["name/1818",[1246,50.523]],["parent/1818",[]],["name/1819",[1247,67.393]],["parent/1819",[1246,4.232]],["name/1820",[1248,72.504]],["parent/1820",[1246,4.232]],["name/1821",[1249,72.504]],["parent/1821",[1246,4.232]],["name/1822",[1250,72.504]],["parent/1822",[1246,4.232]],["name/1823",[1251,72.504]],["parent/1823",[1246,4.232]],["name/1824",[15,40.039]],["parent/1824",[1246,4.232]],["name/1825",[1252,72.504]],["parent/1825",[1246,4.232]],["name/1826",[1253,72.504]],["parent/1826",[1246,4.232]],["name/1827",[1254,72.504]],["parent/1827",[1246,4.232]],["name/1828",[1255,72.504]],["parent/1828",[1246,4.232]],["name/1829",[1256,72.504]],["parent/1829",[1246,4.232]],["name/1830",[1143,67.393]],["parent/1830",[1246,4.232]],["name/1831",[1257,50.523]],["parent/1831",[]],["name/1832",[1258,67.393]],["parent/1832",[1257,4.232]],["name/1833",[1259,67.393]],["parent/1833",[1257,4.232]],["name/1834",[1260,67.393]],["parent/1834",[1257,4.232]],["name/1835",[1261,67.393]],["parent/1835",[1257,4.232]],["name/1836",[1262,67.393]],["parent/1836",[1257,4.232]],["name/1837",[1263,64.027]],["parent/1837",[1257,4.232]],["name/1838",[1264,64.027]],["parent/1838",[1257,4.232]],["name/1839",[1265,64.027]],["parent/1839",[1257,4.232]],["name/1840",[1266,64.027]],["parent/1840",[1257,4.232]],["name/1841",[1267,64.027]],["parent/1841",[1257,4.232]],["name/1842",[1268,64.027]],["parent/1842",[1257,4.232]],["name/1843",[1269,64.027]],["parent/1843",[1257,4.232]],["name/1844",[1270,59.506]],["parent/1844",[]],["name/1845",[81,44.161]],["parent/1845",[1270,4.984]],["name/1846",[1271,67.393]],["parent/1846",[1270,4.984]],["name/1847",[95,64.027]],["parent/1847",[1270,4.984]],["name/1848",[1272,72.504]],["parent/1848",[1270,4.984]],["name/1849",[20,39.533]],["parent/1849",[1273,6.073]],["name/1850",[6,30.642]],["parent/1850",[1274,6.073]],["name/1851",[1275,61.513]],["parent/1851",[]],["name/1852",[81,44.161]],["parent/1852",[1275,5.153]],["name/1853",[1271,67.393]],["parent/1853",[1275,5.153]],["name/1854",[6,30.642]],["parent/1854",[1275,5.153]],["name/1855",[1276,61.513]],["parent/1855",[]],["name/1856",[81,44.161]],["parent/1856",[1276,5.153]],["name/1857",[552,67.393]],["parent/1857",[1276,5.153]],["name/1858",[241,54.038]],["parent/1858",[1276,5.153]],["name/1859",[1277,67.393]],["parent/1859",[]],["name/1860",[81,44.161]],["parent/1860",[1277,5.645]],["name/1861",[1278,64.027]],["parent/1861",[]],["name/1862",[81,44.161]],["parent/1862",[1278,5.363]],["name/1863",[6,30.642]],["parent/1863",[1278,5.363]],["name/1864",[1279,57.835]],["parent/1864",[]],["name/1865",[1280,72.504]],["parent/1865",[1279,4.844]],["name/1866",[1281,72.504]],["parent/1866",[1279,4.844]],["name/1867",[1282,72.504]],["parent/1867",[1279,4.844]],["name/1868",[1283,72.504]],["parent/1868",[1279,4.844]],["name/1869",[1284,72.504]],["parent/1869",[1279,4.844]],["name/1870",[1263,64.027]],["parent/1870",[]],["name/1871",[20,39.533]],["parent/1871",[1263,5.363]],["name/1872",[1062,64.027]],["parent/1872",[1285,6.073]],["name/1873",[20,39.533]],["parent/1873",[1286,6.073]],["name/1874",[882,59.506]],["parent/1874",[1287,6.073]],["name/1875",[1268,64.027]],["parent/1875",[]],["name/1876",[20,39.533]],["parent/1876",[1268,5.363]],["name/1877",[1288,47.835,1289,47.835]],["parent/1877",[1290,6.073]],["name/1878",[20,39.533]],["parent/1878",[1289,3.751,1291,3.751]],["name/1879",[882,59.506]],["parent/1879",[1291,3.751,1292,4.036]],["name/1880",[1269,64.027]],["parent/1880",[]],["name/1881",[20,39.533]],["parent/1881",[1269,5.363]],["name/1882",[1288,47.835,1293,47.835]],["parent/1882",[1294,6.073]],["name/1883",[20,39.533]],["parent/1883",[1293,3.751,1295,3.751]],["name/1884",[882,59.506]],["parent/1884",[1295,3.751,1296,4.036]],["name/1885",[1264,64.027]],["parent/1885",[]],["name/1886",[20,39.533]],["parent/1886",[1264,5.363]],["name/1887",[1297,72.504]],["parent/1887",[1298,6.073]],["name/1888",[20,39.533]],["parent/1888",[1299,6.073]],["name/1889",[1300,72.504]],["parent/1889",[1301,5.645]],["name/1890",[97,52.127]],["parent/1890",[1301,5.645]],["name/1891",[1265,64.027]],["parent/1891",[]],["name/1892",[20,39.533]],["parent/1892",[1265,5.363]],["name/1893",[687,42.047]],["parent/1893",[1302,6.073]],["name/1894",[1266,64.027]],["parent/1894",[]],["name/1895",[20,39.533]],["parent/1895",[1266,5.363]],["name/1896",[1072,67.393]],["parent/1896",[1303,6.073]],["name/1897",[1267,64.027]],["parent/1897",[]],["name/1898",[20,39.533]],["parent/1898",[1267,5.363]],["name/1899",[1071,64.027]],["parent/1899",[1304,6.073]],["name/1900",[20,39.533]],["parent/1900",[1305,6.073]],["name/1901",[6,30.642]],["parent/1901",[1306,5.645]],["name/1902",[882,59.506]],["parent/1902",[1306,5.645]],["name/1903",[1258,67.393]],["parent/1903",[]],["name/1904",[1259,67.393]],["parent/1904",[]],["name/1905",[1260,67.393]],["parent/1905",[]],["name/1906",[1261,67.393]],["parent/1906",[]],["name/1907",[1262,67.393]],["parent/1907",[]],["name/1908",[1307,72.504]],["parent/1908",[]],["name/1909",[1308,72.504]],["parent/1909",[]],["name/1910",[1309,72.504]],["parent/1910",[]],["name/1911",[1310,72.504]],["parent/1911",[]],["name/1912",[1311,72.504]],["parent/1912",[]],["name/1913",[1312,72.504]],["parent/1913",[]],["name/1914",[1313,72.504]],["parent/1914",[]],["name/1915",[1314,72.504]],["parent/1915",[]],["name/1916",[1315,72.504]],["parent/1916",[]],["name/1917",[1316,72.504]],["parent/1917",[]],["name/1918",[1317,72.504]],["parent/1918",[]],["name/1919",[1318,72.504]],["parent/1919",[]],["name/1920",[1319,72.504]],["parent/1920",[]],["name/1921",[1320,72.504]],["parent/1921",[]],["name/1922",[1321,72.504]],["parent/1922",[]],["name/1923",[1322,72.504]],["parent/1923",[]],["name/1924",[1323,72.504]],["parent/1924",[]],["name/1925",[1324,72.504]],["parent/1925",[]],["name/1926",[1325,61.513]],["parent/1926",[]],["name/1927",[1326,59.506]],["parent/1927",[1325,5.153]],["name/1928",[1327,59.506]],["parent/1928",[1325,5.153]],["name/1929",[1328,64.027]],["parent/1929",[1325,5.153]],["name/1930",[1329,52.127]],["parent/1930",[]],["name/1931",[608,56.403]],["parent/1931",[1329,4.366]],["name/1932",[163,53.037]],["parent/1932",[1329,4.366]],["name/1933",[1194,49.808]],["parent/1933",[1329,4.366]],["name/1934",[602,49.808]],["parent/1934",[1329,4.366]],["name/1935",[63,49.141]],["parent/1935",[1329,4.366]],["name/1936",[808,48.515]],["parent/1936",[1329,4.366]],["name/1937",[609,56.403]],["parent/1937",[1329,4.366]],["name/1938",[604,48.515]],["parent/1938",[1329,4.366]],["name/1939",[603,50.523]],["parent/1939",[1329,4.366]],["name/1940",[820,51.293]],["parent/1940",[1329,4.366]],["name/1941",[1330,51.293]],["parent/1941",[]],["name/1942",[474,59.506]],["parent/1942",[1330,4.296]],["name/1943",[608,56.403]],["parent/1943",[1330,4.296]],["name/1944",[163,53.037]],["parent/1944",[1330,4.296]],["name/1945",[1194,49.808]],["parent/1945",[1330,4.296]],["name/1946",[602,49.808]],["parent/1946",[1330,4.296]],["name/1947",[63,49.141]],["parent/1947",[1330,4.296]],["name/1948",[808,48.515]],["parent/1948",[1330,4.296]],["name/1949",[609,56.403]],["parent/1949",[1330,4.296]],["name/1950",[604,48.515]],["parent/1950",[1330,4.296]],["name/1951",[603,50.523]],["parent/1951",[1330,4.296]],["name/1952",[820,51.293]],["parent/1952",[1330,4.296]],["name/1953",[1331,51.293]],["parent/1953",[]],["name/1954",[1332,64.027]],["parent/1954",[1331,4.296]],["name/1955",[608,56.403]],["parent/1955",[1331,4.296]],["name/1956",[163,53.037]],["parent/1956",[1331,4.296]],["name/1957",[1194,49.808]],["parent/1957",[1331,4.296]],["name/1958",[602,49.808]],["parent/1958",[1331,4.296]],["name/1959",[63,49.141]],["parent/1959",[1331,4.296]],["name/1960",[808,48.515]],["parent/1960",[1331,4.296]],["name/1961",[609,56.403]],["parent/1961",[1331,4.296]],["name/1962",[604,48.515]],["parent/1962",[1331,4.296]],["name/1963",[603,50.523]],["parent/1963",[1331,4.296]],["name/1964",[820,51.293]],["parent/1964",[1331,4.296]],["name/1965",[1333,50.523]],["parent/1965",[]],["name/1966",[1326,59.506]],["parent/1966",[1333,4.232]],["name/1967",[1327,59.506]],["parent/1967",[1333,4.232]],["name/1968",[608,56.403]],["parent/1968",[1333,4.232]],["name/1969",[163,53.037]],["parent/1969",[1333,4.232]],["name/1970",[1194,49.808]],["parent/1970",[1333,4.232]],["name/1971",[602,49.808]],["parent/1971",[1333,4.232]],["name/1972",[63,49.141]],["parent/1972",[1333,4.232]],["name/1973",[808,48.515]],["parent/1973",[1333,4.232]],["name/1974",[609,56.403]],["parent/1974",[1333,4.232]],["name/1975",[604,48.515]],["parent/1975",[1333,4.232]],["name/1976",[603,50.523]],["parent/1976",[1333,4.232]],["name/1977",[820,51.293]],["parent/1977",[1333,4.232]],["name/1978",[1334,49.808]],["parent/1978",[]],["name/1979",[1326,59.506]],["parent/1979",[1334,4.172]],["name/1980",[1327,59.506]],["parent/1980",[1334,4.172]],["name/1981",[1328,64.027]],["parent/1981",[1334,4.172]],["name/1982",[608,56.403]],["parent/1982",[1334,4.172]],["name/1983",[163,53.037]],["parent/1983",[1334,4.172]],["name/1984",[1194,49.808]],["parent/1984",[1334,4.172]],["name/1985",[602,49.808]],["parent/1985",[1334,4.172]],["name/1986",[63,49.141]],["parent/1986",[1334,4.172]],["name/1987",[808,48.515]],["parent/1987",[1334,4.172]],["name/1988",[609,56.403]],["parent/1988",[1334,4.172]],["name/1989",[604,48.515]],["parent/1989",[1334,4.172]],["name/1990",[603,50.523]],["parent/1990",[1334,4.172]],["name/1991",[820,51.293]],["parent/1991",[1334,4.172]],["name/1992",[1332,64.027]],["parent/1992",[605,4.296]],["name/1993",[1194,49.808]],["parent/1993",[605,4.296]],["name/1994",[808,48.515]],["parent/1994",[605,4.296]],["name/1995",[820,51.293]],["parent/1995",[605,4.296]],["name/1996",[1194,49.808]],["parent/1996",[597,4.116]],["name/1997",[1335,59.506]],["parent/1997",[597,4.116]],["name/1998",[808,48.515]],["parent/1998",[597,4.116]],["name/1999",[1336,59.506]],["parent/1999",[597,4.116]],["name/2000",[820,51.293]],["parent/2000",[597,4.116]],["name/2001",[1337,49.141]],["parent/2001",[]],["name/2002",[474,59.506]],["parent/2002",[1337,4.116]],["name/2003",[599,56.403]],["parent/2003",[1337,4.116]],["name/2004",[598,51.293]],["parent/2004",[1337,4.116]],["name/2005",[600,56.403]],["parent/2005",[1337,4.116]],["name/2006",[601,56.403]],["parent/2006",[1337,4.116]],["name/2007",[1194,49.808]],["parent/2007",[1337,4.116]],["name/2008",[1335,59.506]],["parent/2008",[1337,4.116]],["name/2009",[602,49.808]],["parent/2009",[1337,4.116]],["name/2010",[63,49.141]],["parent/2010",[1337,4.116]],["name/2011",[808,48.515]],["parent/2011",[1337,4.116]],["name/2012",[604,48.515]],["parent/2012",[1337,4.116]],["name/2013",[603,50.523]],["parent/2013",[1337,4.116]],["name/2014",[1336,59.506]],["parent/2014",[1337,4.116]],["name/2015",[820,51.293]],["parent/2015",[1337,4.116]],["name/2016",[1338,49.141]],["parent/2016",[]],["name/2017",[1332,64.027]],["parent/2017",[1338,4.116]],["name/2018",[599,56.403]],["parent/2018",[1338,4.116]],["name/2019",[598,51.293]],["parent/2019",[1338,4.116]],["name/2020",[600,56.403]],["parent/2020",[1338,4.116]],["name/2021",[601,56.403]],["parent/2021",[1338,4.116]],["name/2022",[1194,49.808]],["parent/2022",[1338,4.116]],["name/2023",[1335,59.506]],["parent/2023",[1338,4.116]],["name/2024",[602,49.808]],["parent/2024",[1338,4.116]],["name/2025",[63,49.141]],["parent/2025",[1338,4.116]],["name/2026",[808,48.515]],["parent/2026",[1338,4.116]],["name/2027",[604,48.515]],["parent/2027",[1338,4.116]],["name/2028",[603,50.523]],["parent/2028",[1338,4.116]],["name/2029",[1336,59.506]],["parent/2029",[1338,4.116]],["name/2030",[820,51.293]],["parent/2030",[1338,4.116]],["name/2031",[1339,48.515]],["parent/2031",[]],["name/2032",[1326,59.506]],["parent/2032",[1339,4.064]],["name/2033",[1327,59.506]],["parent/2033",[1339,4.064]],["name/2034",[599,56.403]],["parent/2034",[1339,4.064]],["name/2035",[598,51.293]],["parent/2035",[1339,4.064]],["name/2036",[600,56.403]],["parent/2036",[1339,4.064]],["name/2037",[601,56.403]],["parent/2037",[1339,4.064]],["name/2038",[1194,49.808]],["parent/2038",[1339,4.064]],["name/2039",[1335,59.506]],["parent/2039",[1339,4.064]],["name/2040",[602,49.808]],["parent/2040",[1339,4.064]],["name/2041",[63,49.141]],["parent/2041",[1339,4.064]],["name/2042",[808,48.515]],["parent/2042",[1339,4.064]],["name/2043",[604,48.515]],["parent/2043",[1339,4.064]],["name/2044",[603,50.523]],["parent/2044",[1339,4.064]],["name/2045",[1336,59.506]],["parent/2045",[1339,4.064]],["name/2046",[820,51.293]],["parent/2046",[1339,4.064]],["name/2047",[1340,47.927]],["parent/2047",[]],["name/2048",[1326,59.506]],["parent/2048",[1340,4.014]],["name/2049",[1327,59.506]],["parent/2049",[1340,4.014]],["name/2050",[1328,64.027]],["parent/2050",[1340,4.014]],["name/2051",[599,56.403]],["parent/2051",[1340,4.014]],["name/2052",[598,51.293]],["parent/2052",[1340,4.014]],["name/2053",[600,56.403]],["parent/2053",[1340,4.014]],["name/2054",[601,56.403]],["parent/2054",[1340,4.014]],["name/2055",[1194,49.808]],["parent/2055",[1340,4.014]],["name/2056",[1335,59.506]],["parent/2056",[1340,4.014]],["name/2057",[602,49.808]],["parent/2057",[1340,4.014]],["name/2058",[63,49.141]],["parent/2058",[1340,4.014]],["name/2059",[808,48.515]],["parent/2059",[1340,4.014]],["name/2060",[604,48.515]],["parent/2060",[1340,4.014]],["name/2061",[603,50.523]],["parent/2061",[1340,4.014]],["name/2062",[1336,59.506]],["parent/2062",[1340,4.014]],["name/2063",[820,51.293]],["parent/2063",[1340,4.014]],["name/2064",[1341,56.403]],["parent/2064",[]],["name/2065",[598,51.293]],["parent/2065",[1341,4.724]],["name/2066",[599,56.403]],["parent/2066",[1341,4.724]],["name/2067",[600,56.403]],["parent/2067",[1341,4.724]],["name/2068",[601,56.403]],["parent/2068",[1341,4.724]],["name/2069",[63,49.141]],["parent/2069",[1341,4.724]],["name/2070",[1342,72.504]],["parent/2070",[1341,4.724]],["name/2071",[1343,56.403]],["parent/2071",[]],["name/2072",[1247,67.393]],["parent/2072",[1343,4.724]],["name/2073",[1344,72.504]],["parent/2073",[1343,4.724]],["name/2074",[1194,49.808]],["parent/2074",[1343,4.724]],["name/2075",[1345,72.504]],["parent/2075",[1343,4.724]],["name/2076",[1346,72.504]],["parent/2076",[1343,4.724]],["name/2077",[63,49.141]],["parent/2077",[1343,4.724]],["name/2078",[1347,72.504]],["parent/2078",[]],["name/2079",[1348,72.504]],["parent/2079",[]],["name/2080",[1349,72.504]],["parent/2080",[]],["name/2081",[1350,67.393]],["parent/2081",[]],["name/2082",[20,39.533]],["parent/2082",[1350,5.645]],["name/2083",[97,52.127]],["parent/2083",[1351,5.153]],["name/2084",[1352,72.504]],["parent/2084",[1351,5.153]],["name/2085",[1353,72.504]],["parent/2085",[1351,5.153]],["name/2086",[1244,67.393]],["parent/2086",[1351,5.153]],["name/2087",[1354,72.504]],["parent/2087",[]],["name/2088",[182,67.393]],["parent/2088",[]],["name/2089",[1355,72.504]],["parent/2089",[]],["name/2090",[1356,72.504]],["parent/2090",[]],["name/2091",[1357,72.504]],["parent/2091",[]],["name/2092",[1358,72.504]],["parent/2092",[]],["name/2093",[1359,72.504]],["parent/2093",[]],["name/2094",[1360,72.504]],["parent/2094",[]],["name/2095",[1361,72.504]],["parent/2095",[]],["name/2096",[1362,72.504]],["parent/2096",[]],["name/2097",[1363,72.504]],["parent/2097",[]],["name/2098",[1364,72.504]],["parent/2098",[]],["name/2099",[1365,72.504]],["parent/2099",[]],["name/2100",[1366,72.504]],["parent/2100",[]],["name/2101",[1367,72.504]],["parent/2101",[]],["name/2102",[1368,72.504]],["parent/2102",[]],["name/2103",[1369,72.504]],["parent/2103",[]],["name/2104",[1370,72.504]],["parent/2104",[]],["name/2105",[1371,72.504]],["parent/2105",[]]],"invertedIndex":[["__type",{"_index":20,"name":{"20":{},"46":{},"236":{},"301":{},"307":{},"314":{},"348":{},"354":{},"357":{},"362":{},"368":{},"370":{},"374":{},"542":{},"544":{},"561":{},"582":{},"852":{},"906":{},"908":{},"910":{},"912":{},"914":{},"916":{},"968":{},"1592":{},"1849":{},"1871":{},"1873":{},"1876":{},"1878":{},"1881":{},"1883":{},"1886":{},"1888":{},"1892":{},"1895":{},"1898":{},"1900":{},"2082":{}},"parent":{}}],["_destroy",{"_index":1128,"name":{"1636":{}},"parent":{}}],["_final",{"_index":1129,"name":{"1637":{}},"parent":{}}],["_flush",{"_index":1122,"name":{"1630":{}},"parent":{}}],["_profile",{"_index":677,"name":{"967":{}},"parent":{}}],["_read",{"_index":1139,"name":{"1647":{}},"parent":{}}],["_transform",{"_index":1121,"name":{"1629":{}},"parent":{}}],["_value",{"_index":1114,"name":{"1619":{}},"parent":{}}],["_write",{"_index":1126,"name":{"1634":{}},"parent":{}}],["_writev",{"_index":1127,"name":{"1635":{}},"parent":{}}],["abifunctiontostring",{"_index":1321,"name":{"1922":{}},"parent":{}}],["access",{"_index":1271,"name":{"1846":{},"1853":{}},"parent":{}}],["account",{"_index":716,"name":{"1032":{}},"parent":{}}],["accountendpoint",{"_index":655,"name":{"902":{},"923":{},"938":{},"953":{}},"parent":{}}],["additionalproperties",{"_index":130,"name":{"168":{}},"parent":{}}],["addlistener",{"_index":1148,"name":{"1658":{}},"parent":{}}],["address",{"_index":188,"name":{"237":{},"250":{},"356":{},"364":{},"372":{},"376":{},"392":{},"399":{},"413":{},"425":{},"747":{},"761":{},"783":{},"791":{},"850":{},"1080":{},"1106":{},"1152":{},"1450":{},"1457":{},"1461":{},"1473":{},"1514":{},"1517":{}},"parent":{"1451":{},"1452":{},"1453":{}}}],["address_chars",{"_index":101,"name":{"115":{}},"parent":{}}],["address_pattern",{"_index":103,"name":{"117":{}},"parent":{}}],["addressconvert",{"_index":237,"name":{"298":{}},"parent":{}}],["addresscountry",{"_index":754,"name":{"1095":{}},"parent":{}}],["addressfromhashmode",{"_index":1027,"name":{"1487":{}},"parent":{}}],["addressfrompublickeys",{"_index":1028,"name":{"1488":{}},"parent":{}}],["addressfromversionhash",{"_index":1025,"name":{"1485":{}},"parent":{}}],["addresshashmode",{"_index":821,"name":{"1183":{}},"parent":{"1184":{},"1185":{},"1186":{},"1187":{}}}],["addresshashmodetoversion",{"_index":1026,"name":{"1486":{}},"parent":{}}],["addresslocality",{"_index":750,"name":{"1089":{}},"parent":{}}],["addresstostring",{"_index":1029,"name":{"1489":{}},"parent":{}}],["addressversion",{"_index":826,"name":{"1188":{}},"parent":{"1189":{},"1190":{},"1191":{},"1192":{}}}],["aescipher",{"_index":436,"name":{"563":{}},"parent":{"564":{},"565":{}}}],["allow",{"_index":812,"name":{"1174":{}},"parent":{}}],["allowedkeyentropybits",{"_index":592,"name":{"801":{}},"parent":{}}],["altapiurl",{"_index":158,"name":{"197":{}},"parent":{}}],["alttransactionbroadcasterurl",{"_index":159,"name":{"198":{}},"parent":{}}],["amount",{"_index":163,"name":{"202":{},"826":{},"1396":{},"1402":{},"1421":{},"1932":{},"1944":{},"1956":{},"1969":{},"1983":{}},"parent":{}}],["anchormode",{"_index":808,"name":{"1169":{},"1798":{},"1936":{},"1948":{},"1960":{},"1973":{},"1987":{},"1994":{},"1998":{},"2011":{},"2026":{},"2042":{},"2059":{}},"parent":{"1170":{},"1171":{},"1172":{}}}],["answertoclarityvalue",{"_index":366,"name":{"476":{}},"parent":{}}],["any",{"_index":811,"name":{"1172":{}},"parent":{}}],["anyjson",{"_index":343,"name":{"453":{}},"parent":{}}],["apiurl",{"_index":542,"name":{"734":{},"737":{}},"parent":{}}],["app",{"_index":775,"name":{"1127":{},"1131":{}},"parent":{}}],["appconfig",{"_index":8,"name":{"8":{},"57":{}},"parent":{"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{}}}],["appdomain",{"_index":9,"name":{"9":{}},"parent":{}}],["appendbyte",{"_index":1117,"name":{"1623":{}},"parent":{}}],["appendhexstring",{"_index":1115,"name":{"1621":{}},"parent":{}}],["appendorigin",{"_index":1254,"name":{"1827":{}},"parent":{}}],["appendpubkey",{"_index":1242,"name":{"1809":{}},"parent":{}}],["appicon",{"_index":620,"name":{"846":{}},"parent":{}}],["appkeyinfotype",{"_index":293,"name":{"367":{}},"parent":{"368":{}}}],["appkeyinfotype.__type",{"_index":295,"name":{},"parent":{"369":{},"373":{},"377":{}}}],["appkeyinfotype.__type.keyinfo",{"_index":296,"name":{},"parent":{"370":{}}}],["appkeyinfotype.__type.keyinfo.__type",{"_index":297,"name":{},"parent":{"371":{},"372":{}}}],["appkeyinfotype.__type.legacykeyinfo",{"_index":299,"name":{},"parent":{"374":{}}}],["appkeyinfotype.__type.legacykeyinfo.__type",{"_index":300,"name":{},"parent":{"375":{},"376":{}}}],["appprivatekey",{"_index":28,"name":{"29":{},"436":{},"797":{}},"parent":{}}],["apps",{"_index":525,"name":{"710":{},"851":{}},"parent":{}}],["apps_node_index",{"_index":504,"name":{"678":{}},"parent":{}}],["appsmeta",{"_index":526,"name":{"711":{}},"parent":{}}],["appsnodekey",{"_index":554,"name":{"748":{}},"parent":{}}],["args",{"_index":95,"name":{"107":{},"309":{},"1847":{}},"parent":{}}],["argtoprompt",{"_index":364,"name":{"474":{}},"parent":{}}],["ascii",{"_index":1289,"name":{"1877":{}},"parent":{"1878":{}}}],["ascii.__type",{"_index":1292,"name":{},"parent":{"1879":{}}}],["assertistruthy",{"_index":576,"name":{"774":{}},"parent":{}}],["assetinfo",{"_index":796,"name":{"1156":{},"1403":{},"1409":{},"1471":{}},"parent":{"1472":{},"1473":{},"1474":{},"1475":{}}}],["assetname",{"_index":994,"name":{"1410":{},"1475":{}},"parent":{}}],["assettype",{"_index":845,"name":{"1209":{}},"parent":{"1210":{},"1211":{},"1212":{}}}],["auth",{"_index":1236,"name":{"1797":{}},"parent":{}}],["auth_continuation_param",{"_index":48,"name":{"54":{}},"parent":{}}],["authdaemon",{"_index":238,"name":{"299":{}},"parent":{}}],["authenticator",{"_index":249,"name":{"316":{}},"parent":{}}],["authenticatorurl",{"_index":14,"name":{"14":{}},"parent":{}}],["authfieldtype",{"_index":1188,"name":{"1703":{}},"parent":{"1704":{},"1705":{}}}],["authmetadata",{"_index":19,"name":{"19":{}},"parent":{"20":{}}}],["authmetadata.__type",{"_index":21,"name":{},"parent":{"21":{},"22":{}}}],["authorization",{"_index":1199,"name":{"1723":{}},"parent":{"1724":{},"1725":{},"1726":{},"1727":{},"1728":{},"1729":{},"1730":{},"1731":{},"1732":{},"1733":{},"1734":{},"1735":{},"1736":{},"1737":{}}}],["authrequesttype",{"_index":379,"name":{"495":{}},"parent":{"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{}}}],["authresponsetoken",{"_index":30,"name":{"32":{}},"parent":{}}],["authscope",{"_index":0,"name":{"0":{}},"parent":{"1":{},"2":{},"3":{}}}],["authtransitnonce",{"_index":397,"name":{"515":{}},"parent":{}}],["authtype",{"_index":818,"name":{"1180":{},"1724":{},"1740":{},"1755":{}},"parent":{"1181":{},"1182":{}}}],["badaddressversionbyte",{"_index":860,"name":{"1227":{}},"parent":{}}],["badfunctionargument",{"_index":855,"name":{"1222":{}},"parent":{}}],["badnonce",{"_index":851,"name":{"1218":{}},"parent":{}}],["balance",{"_index":222,"name":{"283":{},"317":{}},"parent":{}}],["batchify",{"_index":233,"name":{"294":{}},"parent":{}}],["birthdate",{"_index":756,"name":{"1098":{}},"parent":{}}],["bitcoindpassword",{"_index":79,"name":{"89":{},"152":{}},"parent":{}}],["bitcoindusername",{"_index":78,"name":{"88":{},"153":{}},"parent":{}}],["bitcoinpublickeychain",{"_index":628,"name":{"859":{},"871":{}},"parent":{}}],["block_renewed_at",{"_index":202,"name":{"252":{}},"parent":{}}],["blockchain",{"_index":190,"name":{"238":{},"251":{}},"parent":{}}],["blockstack",{"_index":530,"name":{"716":{}},"parent":{}}],["blockstack_on_bitcoin",{"_index":566,"name":{"764":{}},"parent":{}}],["blockstack_test",{"_index":212,"name":{"273":{}},"parent":{}}],["blockstackapiurl",{"_index":73,"name":{"83":{},"141":{},"147":{},"156":{}},"parent":{}}],["blockstacknodeurl",{"_index":74,"name":{"84":{},"142":{},"148":{},"157":{}},"parent":{}}],["bn",{"_index":185,"name":{"233":{}},"parent":{}}],["boolean_pattern",{"_index":118,"name":{"132":{}},"parent":{}}],["booleancv",{"_index":1080,"name":{"1550":{}},"parent":{}}],["boolfalse",{"_index":1064,"name":{"1532":{}},"parent":{}}],["booltrue",{"_index":1063,"name":{"1531":{}},"parent":{}}],["broadcastendpoint",{"_index":653,"name":{"900":{},"921":{},"936":{},"951":{}},"parent":{}}],["broadcastrawtransaction",{"_index":1355,"name":{"2089":{}},"parent":{}}],["broadcastserviceurl",{"_index":75,"name":{"85":{},"143":{},"149":{},"158":{}},"parent":{}}],["broadcasttransaction",{"_index":182,"name":{"230":{},"2088":{}},"parent":{}}],["broadcasttransactionandzonefile",{"_index":354,"name":{"464":{}},"parent":{}}],["broadcastzonefile",{"_index":183,"name":{"231":{}},"parent":{}}],["btc",{"_index":287,"name":{"358":{}},"parent":{}}],["btcaddress",{"_index":292,"name":{"365":{}},"parent":{}}],["buffer",{"_index":1062,"name":{"1530":{},"1563":{},"1872":{}},"parent":{}}],["bufferarray",{"_index":1113,"name":{"1618":{}},"parent":{"1619":{},"1620":{},"1621":{},"1622":{},"1623":{},"1624":{}}}],["buffercv",{"_index":1083,"name":{"1561":{},"1564":{}},"parent":{"1562":{},"1563":{}}}],["buffercvfromstring",{"_index":1084,"name":{"1565":{}},"parent":{}}],["bufferreader",{"_index":877,"name":{"1244":{}},"parent":{"1245":{},"1246":{},"1247":{},"1248":{},"1249":{},"1250":{},"1251":{},"1252":{},"1253":{},"1254":{},"1255":{},"1256":{},"1257":{},"1258":{},"1259":{},"1260":{},"1261":{},"1262":{},"1263":{},"1264":{},"1265":{},"1266":{},"1267":{},"1268":{},"1269":{},"1270":{},"1271":{},"1272":{},"1273":{},"1274":{},"1275":{},"1276":{},"1277":{},"1278":{},"1279":{},"1280":{},"1281":{},"1282":{},"1283":{},"1284":{},"1285":{},"1286":{},"1287":{},"1288":{},"1289":{},"1290":{},"1291":{},"1292":{},"1293":{},"1294":{},"1295":{},"1296":{},"1297":{},"1298":{},"1299":{},"1300":{},"1301":{},"1302":{},"1303":{},"1304":{},"1305":{},"1306":{},"1307":{},"1308":{},"1309":{},"1310":{},"1311":{},"1312":{},"1313":{},"1314":{},"1315":{},"1316":{},"1317":{},"1318":{},"1319":{},"1320":{},"1321":{},"1322":{},"1323":{},"1324":{},"1325":{},"1326":{},"1327":{},"1328":{}}}],["bufferwithtypeid",{"_index":1098,"name":{"1603":{}},"parent":{}}],["c32_address_chars",{"_index":102,"name":{"116":{}},"parent":{}}],["c32check",{"_index":206,"name":{"265":{}},"parent":{}}],["call_contract_func",{"_index":250,"name":{"318":{}},"parent":{}}],["call_read_only_contract_func",{"_index":251,"name":{"319":{}},"parent":{}}],["callreadonlyfunction",{"_index":1370,"name":{"2104":{}},"parent":{}}],["canonicalprivatekey",{"_index":348,"name":{"458":{}},"parent":{}}],["chain",{"_index":626,"name":{"857":{},"869":{}},"parent":{}}],["chainid",{"_index":412,"name":{"530":{},"898":{},"919":{},"934":{},"949":{},"1796":{}},"parent":{"531":{},"532":{}}}],["chainid.mainnet",{"_index":487,"name":{"656":{}},"parent":{}}],["chainid.testnet",{"_index":488,"name":{"657":{}},"parent":{}}],["challenge_text",{"_index":509,"name":{"683":{}},"parent":{}}],["change_address",{"_index":569,"name":{"767":{}},"parent":{}}],["checkargs",{"_index":146,"name":{"185":{}},"parent":{}}],["checkargsfailtype",{"_index":96,"name":{"108":{}},"parent":{"109":{},"110":{},"111":{},"112":{}}}],["checkargssuccesstype",{"_index":93,"name":{"104":{}},"parent":{"105":{},"106":{},"107":{}}}],["checkoverlap",{"_index":1251,"name":{"1823":{}},"parent":{}}],["checkoversign",{"_index":1250,"name":{"1822":{}},"parent":{}}],["checkurl",{"_index":351,"name":{"461":{}},"parent":{}}],["choices",{"_index":335,"name":{"442":{}},"parent":{}}],["cipheralgorithm",{"_index":446,"name":{"579":{}},"parent":{}}],["ciphertextencoding",{"_index":471,"name":{"622":{},"628":{},"1121":{}},"parent":{}}],["clarity_int_size",{"_index":867,"name":{"1234":{}},"parent":{}}],["clarityabi",{"_index":1279,"name":{"1864":{}},"parent":{"1865":{},"1866":{},"1867":{},"1868":{},"1869":{}}}],["clarityabifunction",{"_index":1270,"name":{"1844":{}},"parent":{"1845":{},"1846":{},"1847":{},"1848":{}}}],["clarityabifunction.outputs",{"_index":1273,"name":{},"parent":{"1849":{}}}],["clarityabifunction.outputs.__type",{"_index":1274,"name":{},"parent":{"1850":{}}}],["clarityabimap",{"_index":1276,"name":{"1855":{}},"parent":{"1856":{},"1857":{},"1858":{}}}],["clarityabitype",{"_index":1308,"name":{"1909":{}},"parent":{}}],["clarityabitypebool",{"_index":1260,"name":{"1834":{},"1905":{}},"parent":{}}],["clarityabitypebuffer",{"_index":1263,"name":{"1837":{},"1870":{}},"parent":{"1871":{}}}],["clarityabitypebuffer.__type",{"_index":1285,"name":{},"parent":{"1872":{}}}],["clarityabitypebuffer.__type.buffer",{"_index":1286,"name":{},"parent":{"1873":{}}}],["clarityabitypebuffer.__type.buffer.__type",{"_index":1287,"name":{},"parent":{"1874":{}}}],["clarityabitypefungibletoken",{"_index":1277,"name":{"1859":{}},"parent":{"1860":{}}}],["clarityabitypeid",{"_index":1257,"name":{"1831":{}},"parent":{"1832":{},"1833":{},"1834":{},"1835":{},"1836":{},"1837":{},"1838":{},"1839":{},"1840":{},"1841":{},"1842":{},"1843":{}}}],["clarityabitypeint128",{"_index":1259,"name":{"1833":{},"1904":{}},"parent":{}}],["clarityabitypelist",{"_index":1267,"name":{"1841":{},"1897":{}},"parent":{"1898":{}}}],["clarityabitypelist.__type",{"_index":1304,"name":{},"parent":{"1899":{}}}],["clarityabitypelist.__type.list",{"_index":1305,"name":{},"parent":{"1900":{}}}],["clarityabitypelist.__type.list.__type",{"_index":1306,"name":{},"parent":{"1901":{},"1902":{}}}],["clarityabitypenone",{"_index":1262,"name":{"1836":{},"1907":{}},"parent":{}}],["clarityabitypenonfungibletoken",{"_index":1278,"name":{"1861":{}},"parent":{"1862":{},"1863":{}}}],["clarityabitypeoptional",{"_index":1265,"name":{"1839":{},"1891":{}},"parent":{"1892":{}}}],["clarityabitypeoptional.__type",{"_index":1302,"name":{},"parent":{"1893":{}}}],["clarityabitypeprimitive",{"_index":1307,"name":{"1908":{}},"parent":{}}],["clarityabitypeprincipal",{"_index":1261,"name":{"1835":{},"1906":{}},"parent":{}}],["clarityabityperesponse",{"_index":1264,"name":{"1838":{},"1885":{}},"parent":{"1886":{}}}],["clarityabityperesponse.__type",{"_index":1298,"name":{},"parent":{"1887":{}}}],["clarityabityperesponse.__type.response",{"_index":1299,"name":{},"parent":{"1888":{}}}],["clarityabityperesponse.__type.response.__type",{"_index":1301,"name":{},"parent":{"1889":{},"1890":{}}}],["clarityabitypestringascii",{"_index":1268,"name":{"1842":{},"1875":{}},"parent":{"1876":{}}}],["clarityabitypestringascii.__type",{"_index":1290,"name":{},"parent":{"1877":{}}}],["clarityabitypestringascii.__type.string",{"_index":1291,"name":{},"parent":{"1878":{},"1879":{}}}],["clarityabitypestringutf8",{"_index":1269,"name":{"1843":{},"1880":{}},"parent":{"1881":{}}}],["clarityabitypestringutf8.__type",{"_index":1294,"name":{},"parent":{"1882":{}}}],["clarityabitypestringutf8.__type.string",{"_index":1295,"name":{},"parent":{"1883":{},"1884":{}}}],["clarityabitypetuple",{"_index":1266,"name":{"1840":{},"1894":{}},"parent":{"1895":{}}}],["clarityabitypetuple.__type",{"_index":1303,"name":{},"parent":{"1896":{}}}],["clarityabitypeuint128",{"_index":1258,"name":{"1832":{},"1903":{}},"parent":{}}],["clarityabitypeunion",{"_index":1317,"name":{"1918":{}},"parent":{}}],["clarityabivariable",{"_index":1275,"name":{"1851":{}},"parent":{"1852":{},"1853":{},"1854":{}}}],["clarityfunctionarg",{"_index":336,"name":{"443":{}},"parent":{"444":{},"445":{}}}],["claritytype",{"_index":1059,"name":{"1527":{}},"parent":{"1528":{},"1529":{},"1530":{},"1531":{},"1532":{},"1533":{},"1534":{},"1535":{},"1536":{},"1537":{},"1538":{},"1539":{},"1540":{},"1541":{},"1542":{}}}],["clarityvalue",{"_index":1075,"name":{"1543":{}},"parent":{}}],["clear",{"_index":952,"name":{"1320":{}},"parent":{}}],["clearcondition",{"_index":1222,"name":{"1780":{}},"parent":{}}],["cli_args",{"_index":128,"name":{"165":{}},"parent":{"166":{},"167":{},"168":{},"169":{}}}],["cli_command_group",{"_index":91,"name":{"102":{}},"parent":{}}],["cli_command_group_item",{"_index":88,"name":{"99":{}},"parent":{"100":{},"101":{}}}],["cli_command_help",{"_index":85,"name":{"96":{}},"parent":{"97":{},"98":{}}}],["cli_config_type",{"_index":72,"name":{"82":{}},"parent":{"83":{},"84":{},"85":{},"86":{},"87":{},"88":{},"89":{}}}],["cli_log_config_type",{"_index":65,"name":{"75":{}},"parent":{"76":{},"77":{},"78":{},"79":{},"80":{},"81":{}}}],["cli_network_opts",{"_index":150,"name":{"189":{}},"parent":{"190":{},"191":{},"192":{},"193":{},"194":{},"195":{},"196":{},"197":{},"198":{},"199":{}}}],["cli_opts",{"_index":92,"name":{"103":{}},"parent":{}}],["cli_prop",{"_index":84,"name":{"95":{}},"parent":{}}],["cli_prop_item",{"_index":80,"name":{"90":{}},"parent":{"91":{},"92":{},"93":{},"94":{}}}],["climain",{"_index":275,"name":{"343":{}},"parent":{}}],["clinetworkadapter",{"_index":164,"name":{"203":{}},"parent":{"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{}}}],["clioptasbool",{"_index":142,"name":{"181":{}},"parent":{}}],["clioptasstring",{"_index":141,"name":{"180":{}},"parent":{}}],["clioptasstringarray",{"_index":144,"name":{"183":{}},"parent":{}}],["clitransactionsigner",{"_index":314,"name":{"391":{}},"parent":{"392":{},"393":{},"394":{},"395":{},"396":{},"397":{}}}],["clonedeep",{"_index":1175,"name":{"1686":{}},"parent":{}}],["codebody",{"_index":606,"name":{"818":{},"1434":{}},"parent":{}}],["codebodystring",{"_index":1041,"name":{"1501":{}},"parent":{}}],["coerceaddress",{"_index":180,"name":{"228":{}},"parent":{}}],["coercemainnetaddress",{"_index":170,"name":{"218":{}},"parent":{}}],["coinbase",{"_index":807,"name":{"1168":{}},"parent":{}}],["coinbase_buffer_length_bytes",{"_index":868,"name":{"1235":{}},"parent":{}}],["coinbasebuffer",{"_index":1005,"name":{"1441":{}},"parent":{}}],["coinbasepayload",{"_index":1004,"name":{"1438":{}},"parent":{"1439":{},"1440":{},"1441":{}}}],["colorize",{"_index":70,"name":{"80":{},"138":{}},"parent":{}}],["command",{"_index":89,"name":{"100":{},"106":{},"111":{},"308":{}},"parent":{}}],["commandfunction",{"_index":247,"name":{"313":{}},"parent":{"314":{}}}],["commands",{"_index":248,"name":{"315":{}},"parent":{"316":{},"317":{},"318":{},"319":{},"320":{},"321":{},"322":{},"323":{},"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{},"333":{},"334":{},"335":{},"336":{},"337":{},"338":{},"339":{},"340":{},"341":{},"342":{}}}],["compressed",{"_index":832,"name":{"1194":{},"1337":{}},"parent":{}}],["compressed_pubkey_length_bytes",{"_index":870,"name":{"1237":{}},"parent":{}}],["concatbuffer",{"_index":1118,"name":{"1624":{}},"parent":{}}],["conditioncode",{"_index":991,"name":{"1395":{},"1401":{},"1408":{}},"parent":{}}],["conditiontype",{"_index":990,"name":{"1393":{},"1399":{},"1406":{}},"parent":{}}],["config_defaults",{"_index":120,"name":{"140":{}},"parent":{"141":{},"142":{},"143":{},"144":{},"145":{}}}],["config_index",{"_index":650,"name":{"895":{}},"parent":{}}],["config_regtest_defaults",{"_index":121,"name":{"146":{}},"parent":{"147":{},"148":{},"149":{},"150":{},"151":{},"152":{},"153":{}}}],["config_testnet_defaults",{"_index":123,"name":{"155":{}},"parent":{"156":{},"157":{},"158":{},"159":{},"160":{}}}],["configapp",{"_index":617,"name":{"842":{}},"parent":{"843":{},"844":{},"845":{},"846":{},"847":{}}}],["configidentity",{"_index":621,"name":{"848":{}},"parent":{"849":{},"850":{},"851":{}}}],["configidentity.apps",{"_index":622,"name":{},"parent":{"852":{}}}],["configprivatekey",{"_index":633,"name":{"865":{},"877":{}},"parent":{}}],["confirmations",{"_index":311,"name":{"388":{}},"parent":{}}],["connecttogaiahubwithconfig",{"_index":520,"name":{"700":{}},"parent":{}}],["connecttogaiaoptions",{"_index":511,"name":{"685":{}},"parent":{"686":{},"687":{},"688":{}}}],["consensushash",{"_index":151,"name":{"190":{},"204":{}},"parent":{}}],["constructor",{"_index":15,"name":{"15":{},"48":{},"59":{},"214":{},"394":{},"401":{},"409":{},"420":{},"429":{},"569":{},"574":{},"587":{},"591":{},"603":{},"611":{},"615":{},"636":{},"640":{},"644":{},"665":{},"795":{},"834":{},"880":{},"969":{},"1137":{},"1246":{},"1356":{},"1362":{},"1368":{},"1374":{},"1380":{},"1386":{},"1626":{},"1727":{},"1739":{},"1754":{},"1802":{},"1824":{}},"parent":{}}],["constructoroptions",{"_index":625,"name":{"856":{}},"parent":{"857":{},"858":{},"859":{},"860":{},"861":{},"862":{},"863":{},"864":{},"865":{},"866":{},"867":{}}}],["containslegalcharacters",{"_index":577,"name":{"775":{}},"parent":{}}],["content",{"_index":1016,"name":{"1465":{},"1470":{}},"parent":{}}],["contents",{"_index":1190,"name":{"1708":{}},"parent":{}}],["contenttype",{"_index":772,"name":{"1118":{}},"parent":{}}],["contenturl",{"_index":524,"name":{"706":{},"1018":{}},"parent":{}}],["context",{"_index":7,"name":{"7":{},"709":{},"728":{},"978":{},"987":{}},"parent":{}}],["contract",{"_index":844,"name":{"1208":{}},"parent":{}}],["contractabiendpoint",{"_index":656,"name":{"903":{},"924":{},"939":{},"954":{}},"parent":{}}],["contractaddress",{"_index":599,"name":{"808":{},"1426":{},"2003":{},"2018":{},"2034":{},"2051":{},"2066":{}},"parent":{}}],["contractalreadyexists",{"_index":856,"name":{"1223":{}},"parent":{}}],["contractcall",{"_index":805,"name":{"1166":{}},"parent":{}}],["contractcalloptions",{"_index":597,"name":{"806":{}},"parent":{"807":{},"808":{},"809":{},"810":{},"811":{},"812":{},"813":{},"814":{},"815":{},"1996":{},"1997":{},"1998":{},"1999":{},"2000":{}}}],["contractcallpayload",{"_index":1001,"name":{"1423":{}},"parent":{"1424":{},"1425":{},"1426":{},"1427":{},"1428":{},"1429":{}}}],["contractdeploy",{"_index":225,"name":{"286":{}},"parent":{}}],["contractdeployoptions",{"_index":605,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{},"822":{},"823":{},"1992":{},"1993":{},"1994":{},"1995":{}}}],["contractfunctioncall",{"_index":226,"name":{"287":{}},"parent":{}}],["contractname",{"_index":598,"name":{"807":{},"817":{},"1427":{},"1433":{},"1462":{},"1474":{},"1518":{},"2004":{},"2019":{},"2035":{},"2052":{},"2065":{}},"parent":{}}],["contractprincipal",{"_index":1015,"name":{"1458":{}},"parent":{"1459":{},"1460":{},"1461":{},"1462":{}}}],["contractprincipalcv",{"_index":1053,"name":{"1515":{},"1524":{}},"parent":{"1516":{},"1517":{},"1518":{}}}],["contractprincipalcvfromaddress",{"_index":1057,"name":{"1525":{}},"parent":{}}],["contractprincipalcvfromstandard",{"_index":1058,"name":{"1526":{}},"parent":{}}],["convert_address",{"_index":252,"name":{"320":{}},"parent":{}}],["coreapiurl",{"_index":652,"name":{"899":{},"920":{},"935":{},"950":{}},"parent":{}}],["corenode",{"_index":13,"name":{"13":{},"31":{},"38":{}},"parent":{}}],["coresessiontoken",{"_index":31,"name":{"33":{}},"parent":{}}],["cork",{"_index":1133,"name":{"1641":{}},"parent":{}}],["createaccount",{"_index":640,"name":{"885":{}},"parent":{}}],["createaddress",{"_index":1023,"name":{"1483":{}},"parent":{}}],["createassetinfo",{"_index":1046,"name":{"1506":{}},"parent":{}}],["createcipher",{"_index":440,"name":{"567":{},"580":{}},"parent":{}}],["createcoinbasepayload",{"_index":1010,"name":{"1447":{}},"parent":{}}],["createcontractcallpayload",{"_index":1007,"name":{"1444":{}},"parent":{}}],["createcontractprincipal",{"_index":1035,"name":{"1495":{}},"parent":{}}],["createdecipher",{"_index":441,"name":{"568":{}},"parent":{}}],["createemptyaddress",{"_index":1024,"name":{"1484":{}},"parent":{}}],["createenumchecker",{"_index":961,"name":{"1329":{}},"parent":{}}],["createfungiblepostcondition",{"_index":996,"name":{"1413":{}},"parent":{}}],["creategaiaconfig",{"_index":643,"name":{"888":{}},"parent":{}}],["createhash",{"_index":451,"name":{"586":{}},"parent":{}}],["createhashripemd160",{"_index":460,"name":{"605":{}},"parent":{}}],["createhmac",{"_index":464,"name":{"610":{}},"parent":{}}],["createhmacsha256",{"_index":467,"name":{"618":{}},"parent":{}}],["createlplist",{"_index":1049,"name":{"1509":{}},"parent":{}}],["createlpstring",{"_index":1038,"name":{"1498":{}},"parent":{}}],["creatememostring",{"_index":1042,"name":{"1502":{}},"parent":{}}],["createmessagesignature",{"_index":1211,"name":{"1768":{}},"parent":{}}],["createmultisigspendingcondition",{"_index":1220,"name":{"1778":{}},"parent":{}}],["createnewidentity",{"_index":642,"name":{"887":{}},"parent":{}}],["createnonfungiblepostcondition",{"_index":997,"name":{"1414":{}},"parent":{}}],["createpbkdf2",{"_index":483,"name":{"648":{}},"parent":{}}],["createpoisonpayload",{"_index":1009,"name":{"1446":{}},"parent":{}}],["createsha2hash",{"_index":454,"name":{"594":{}},"parent":{}}],["createsinglesigspendingcondition",{"_index":1219,"name":{"1777":{}},"parent":{}}],["createsmartcontractpayload",{"_index":1008,"name":{"1445":{}},"parent":{}}],["createsponsorsigner",{"_index":1252,"name":{"1825":{}},"parent":{}}],["createstacksprivatekey",{"_index":976,"name":{"1348":{}},"parent":{}}],["createstackspublickey",{"_index":968,"name":{"1340":{}},"parent":{}}],["createstandardprincipal",{"_index":1034,"name":{"1494":{}},"parent":{}}],["createstxpostcondition",{"_index":995,"name":{"1412":{}},"parent":{}}],["createtokentransferpayload",{"_index":1006,"name":{"1443":{}},"parent":{}}],["createtransactionauthfield",{"_index":1216,"name":{"1773":{}},"parent":{}}],["createtxwithsignature",{"_index":1239,"name":{"1805":{}},"parent":{}}],["cvtohex",{"_index":1181,"name":{"1692":{}},"parent":{}}],["cvtostring",{"_index":1076,"name":{"1544":{}},"parent":{}}],["data",{"_index":965,"name":{"1334":{},"1336":{},"1590":{},"1596":{},"1599":{},"1702":{}},"parent":{}}],["decentralizedid",{"_index":26,"name":{"27":{}},"parent":{}}],["decodeprivatekey",{"_index":342,"name":{"452":{}},"parent":{}}],["decrypt",{"_index":438,"name":{"565":{},"571":{},"576":{},"660":{},"1124":{}},"parent":{}}],["decrypt_keychain",{"_index":253,"name":{"321":{}},"parent":{}}],["decryptbackupphrase",{"_index":149,"name":{"188":{}},"parent":{}}],["decryptcontent",{"_index":59,"name":{"68":{},"631":{}},"parent":{}}],["default_blockstack_host",{"_index":4,"name":{"4":{}},"parent":{}}],["default_chain_id",{"_index":865,"name":{"1232":{}},"parent":{}}],["default_config_path",{"_index":124,"name":{"161":{}},"parent":{}}],["default_config_regtest_path",{"_index":125,"name":{"162":{}},"parent":{}}],["default_config_testnet_path",{"_index":126,"name":{"163":{}},"parent":{}}],["default_core_node_api_url",{"_index":873,"name":{"1240":{}},"parent":{}}],["default_gaia_hub",{"_index":516,"name":{"696":{}},"parent":{}}],["default_max_id_search_index",{"_index":127,"name":{"164":{}},"parent":{}}],["default_profile",{"_index":5,"name":{"5":{}},"parent":{"6":{},"7":{}}}],["default_profile_file_name",{"_index":537,"name":{"730":{}},"parent":{}}],["default_transaction_version",{"_index":874,"name":{"1241":{}},"parent":{}}],["defaultmaxlisteners",{"_index":1158,"name":{"1668":{}},"parent":{}}],["defaultusername",{"_index":586,"name":{"785":{},"792":{}},"parent":{}}],["deletefile",{"_index":787,"name":{"1146":{}},"parent":{}}],["deletefromgaiahub",{"_index":768,"name":{"1114":{}},"parent":{}}],["deletesessiondata",{"_index":45,"name":{"51":{}},"parent":{}}],["deny",{"_index":813,"name":{"1175":{}},"parent":{}}],["deploy_contract",{"_index":254,"name":{"322":{}},"parent":{}}],["derivation_path",{"_index":278,"name":{"346":{}},"parent":{}}],["derivationpaths",{"_index":486,"name":{"655":{}},"parent":{"656":{},"657":{}}}],["derive",{"_index":476,"name":{"633":{},"637":{},"641":{},"645":{}},"parent":{}}],["deriveidentitykeypair",{"_index":573,"name":{"771":{}},"parent":{}}],["deriverootkeychainfrommnemonic",{"_index":595,"name":{"804":{}},"parent":{}}],["derivestxaddresschain",{"_index":490,"name":{"659":{}},"parent":{}}],["description",{"_index":700,"name":{"1004":{}},"parent":{}}],["deserializable",{"_index":1185,"name":{"1696":{}},"parent":{"1697":{},"1698":{},"1699":{}}}],["deserialization",{"_index":848,"name":{"1215":{}},"parent":{}}],["deserializationerror",{"_index":985,"name":{"1367":{}},"parent":{"1368":{},"1369":{},"1370":{},"1371":{},"1372":{}}}],["deserialize",{"_index":1187,"name":{"1698":{},"1699":{},"1736":{},"1737":{},"1751":{},"1752":{},"1766":{},"1767":{}},"parent":{}}],["deserializeaddress",{"_index":1031,"name":{"1491":{}},"parent":{}}],["deserializeassetinfo",{"_index":1048,"name":{"1508":{}},"parent":{}}],["deserializecv",{"_index":1112,"name":{"1617":{}},"parent":{}}],["deserializelplist",{"_index":1051,"name":{"1511":{}},"parent":{}}],["deserializelpstring",{"_index":1040,"name":{"1500":{}},"parent":{}}],["deserializememostring",{"_index":1044,"name":{"1504":{}},"parent":{}}],["deserializemessagesignature",{"_index":1214,"name":{"1771":{}},"parent":{}}],["deserializemultisigspendingcondition",{"_index":1226,"name":{"1784":{}},"parent":{}}],["deserializepayload",{"_index":1012,"name":{"1449":{}},"parent":{}}],["deserializepostcondition",{"_index":999,"name":{"1416":{}},"parent":{}}],["deserializeprincipal",{"_index":1037,"name":{"1497":{}},"parent":{}}],["deserializepublickey",{"_index":975,"name":{"1347":{}},"parent":{}}],["deserializesinglesigspendingcondition",{"_index":1225,"name":{"1783":{}},"parent":{}}],["deserializespendingcondition",{"_index":1228,"name":{"1786":{}},"parent":{}}],["deserializestacksmessage",{"_index":1022,"name":{"1482":{}},"parent":{}}],["deserializetransaction",{"_index":1245,"name":{"1817":{}},"parent":{}}],["deserializetransactionauthfield",{"_index":1218,"name":{"1775":{}},"parent":{}}],["destroy",{"_index":960,"name":{"1328":{},"1657":{}},"parent":{}}],["did",{"_index":191,"name":{"239":{},"253":{}},"parent":{}}],["digest",{"_index":449,"name":{"584":{},"588":{},"592":{},"598":{},"600":{},"604":{},"608":{},"612":{},"616":{},"1627":{}},"parent":{}}],["do_not_include_profile",{"_index":388,"name":{"505":{}},"parent":{}}],["docs",{"_index":255,"name":{"323":{}},"parent":{}}],["docsargstype",{"_index":239,"name":{"300":{}},"parent":{"301":{}}}],["docsargstype.__type",{"_index":240,"name":{},"parent":{"302":{},"303":{},"304":{},"305":{}}}],["doesnotown",{"_index":841,"name":{"1203":{}},"parent":{}}],["domain_name",{"_index":385,"name":{"501":{}},"parent":{}}],["echo_reply_param",{"_index":47,"name":{"53":{}},"parent":{}}],["ecurve",{"_index":468,"name":{"619":{}},"parent":{}}],["email",{"_index":3,"name":{"3":{},"21":{},"26":{}},"parent":{}}],["emit",{"_index":1149,"name":{"1659":{}},"parent":{}}],["emptymessagesignature",{"_index":1212,"name":{"1769":{}},"parent":{}}],["encodeclarityvalue",{"_index":1319,"name":{"1920":{}},"parent":{}}],["encoding",{"_index":956,"name":{"1324":{}},"parent":{}}],["encrypt",{"_index":437,"name":{"564":{},"570":{},"575":{},"661":{},"1119":{}},"parent":{}}],["encrypt_keychain",{"_index":256,"name":{"324":{}},"parent":{}}],["encryptbackupphrase",{"_index":148,"name":{"187":{}},"parent":{}}],["encryptcontent",{"_index":58,"name":{"67":{},"630":{}},"parent":{}}],["encryptcontentoptions",{"_index":473,"name":{"624":{}},"parent":{"625":{},"626":{},"627":{},"628":{},"629":{}}}],["encryptedbackupphrase",{"_index":632,"name":{"863":{},"870":{}},"parent":{}}],["encryption_node_index",{"_index":506,"name":{"680":{}},"parent":{}}],["encryptionoptions",{"_index":469,"name":{"620":{}},"parent":{"621":{},"622":{},"623":{}}}],["encryptmnemonicformatted",{"_index":596,"name":{"805":{}},"parent":{}}],["end",{"_index":1132,"name":{"1640":{}},"parent":{}}],["enumcheckfunctions",{"_index":962,"name":{"1330":{}},"parent":{}}],["equal",{"_index":835,"name":{"1197":{}},"parent":{}}],["error",{"_index":97,"name":{"110":{},"433":{},"653":{},"1360":{},"1366":{},"1372":{},"1378":{},"1384":{},"1390":{},"1890":{},"2083":{}},"parent":{}}],["estimatecontractdeploy",{"_index":1359,"name":{"2093":{}},"parent":{}}],["estimatecontractfunctioncall",{"_index":1361,"name":{"2095":{}},"parent":{}}],["estimateonly",{"_index":208,"name":{"267":{}},"parent":{}}],["estimatetransfer",{"_index":1348,"name":{"2079":{}},"parent":{}}],["etag",{"_index":767,"name":{"1113":{}},"parent":{}}],["etagmap",{"_index":41,"name":{"45":{}},"parent":{"46":{}}}],["etags",{"_index":37,"name":{"41":{}},"parent":{}}],["eventnames",{"_index":1165,"name":{"1675":{}},"parent":{}}],["exceedsmaxlengthbytes",{"_index":1174,"name":{"1685":{}},"parent":{}}],["exp",{"_index":382,"name":{"498":{}},"parent":{}}],["expire_block",{"_index":192,"name":{"240":{},"254":{}},"parent":{}}],["external_address",{"_index":568,"name":{"766":{}},"parent":{}}],["extractappkey",{"_index":309,"name":{"385":{}},"parent":{}}],["extractprofile",{"_index":675,"name":{"965":{}},"parent":{}}],["falsecv",{"_index":1079,"name":{"1548":{},"1552":{}},"parent":{"1549":{}}}],["familyname",{"_index":698,"name":{"1001":{}},"parent":{}}],["fee",{"_index":1194,"name":{"1713":{},"1720":{},"1933":{},"1945":{},"1957":{},"1970":{},"1984":{},"1993":{},"1996":{},"2007":{},"2022":{},"2038":{},"2055":{},"2074":{}},"parent":{}}],["feeestimateapiurl",{"_index":1335,"name":{"1997":{},"2008":{},"2023":{},"2039":{},"2056":{}},"parent":{}}],["feerate",{"_index":152,"name":{"191":{},"205":{}},"parent":{}}],["feetoolow",{"_index":850,"name":{"1217":{}},"parent":{}}],["fetchaccount",{"_index":613,"name":{"838":{}},"parent":{}}],["fetchconfig",{"_index":644,"name":{"889":{}},"parent":{}}],["fetchnames",{"_index":590,"name":{"799":{}},"parent":{}}],["fetchprofile",{"_index":550,"name":{"743":{}},"parent":{}}],["fields",{"_index":1197,"name":{"1721":{}},"parent":{}}],["findidentityindex",{"_index":307,"name":{"383":{}},"parent":{}}],["findutxo",{"_index":326,"name":{"422":{}},"parent":{}}],["firstbitcoinaddress",{"_index":629,"name":{"860":{},"872":{}},"parent":{}}],["format",{"_index":242,"name":{"305":{}},"parent":{}}],["formatcommandhelplines",{"_index":133,"name":{"172":{}},"parent":{}}],["formathelpstring",{"_index":132,"name":{"171":{}},"parent":{}}],["formatteddocstype",{"_index":243,"name":{"306":{}},"parent":{"307":{}}}],["formatteddocstype.__type",{"_index":244,"name":{},"parent":{"308":{},"309":{},"310":{},"311":{}}}],["frombuffer",{"_index":878,"name":{"1245":{}},"parent":{}}],["fromoptions",{"_index":884,"name":{"1252":{}},"parent":{}}],["fromsize",{"_index":883,"name":{"1251":{}},"parent":{}}],["fromtoken",{"_index":682,"name":{"973":{}},"parent":{}}],["functionargs",{"_index":601,"name":{"810":{},"1429":{},"2006":{},"2021":{},"2037":{},"2054":{},"2068":{}},"parent":{}}],["functionname",{"_index":600,"name":{"809":{},"1428":{},"2005":{},"2020":{},"2036":{},"2053":{},"2067":{}},"parent":{}}],["functions",{"_index":1280,"name":{"1865":{}},"parent":{}}],["fungible",{"_index":816,"name":{"1178":{},"1211":{}},"parent":{}}],["fungible_tokens",{"_index":1283,"name":{"1868":{}},"parent":{}}],["fungibleconditioncode",{"_index":834,"name":{"1196":{}},"parent":{"1197":{},"1198":{},"1199":{},"1200":{},"1201":{}}}],["fungiblepostcondition",{"_index":992,"name":{"1397":{}},"parent":{"1398":{},"1399":{},"1400":{},"1401":{},"1402":{},"1403":{}}}],["gaia_deletefile",{"_index":257,"name":{"325":{}},"parent":{}}],["gaia_dump_bucket",{"_index":258,"name":{"326":{}},"parent":{}}],["gaia_getfile",{"_index":259,"name":{"327":{}},"parent":{}}],["gaia_listfiles",{"_index":260,"name":{"328":{}},"parent":{}}],["gaia_putfile",{"_index":261,"name":{"329":{}},"parent":{}}],["gaia_restore_bucket",{"_index":262,"name":{"330":{}},"parent":{}}],["gaia_sethub",{"_index":263,"name":{"331":{}},"parent":{}}],["gaiaassociationtoken",{"_index":32,"name":{"34":{}},"parent":{}}],["gaiaauth",{"_index":370,"name":{"480":{}},"parent":{}}],["gaiaauthpayload",{"_index":515,"name":{"692":{}},"parent":{"693":{},"694":{},"695":{}}}],["gaiaconnect",{"_index":371,"name":{"481":{}},"parent":{}}],["gaiadeletefile",{"_index":231,"name":{"292":{}},"parent":{}}],["gaiadumpbucket",{"_index":234,"name":{"295":{}},"parent":{}}],["gaiafindprofilename",{"_index":372,"name":{"482":{}},"parent":{}}],["gaiagetfile",{"_index":229,"name":{"290":{}},"parent":{}}],["gaiahubconfig",{"_index":34,"name":{"36":{},"1105":{}},"parent":{"1106":{},"1107":{},"1108":{},"1109":{},"1110":{}}}],["gaiahuburl",{"_index":512,"name":{"688":{},"693":{},"724":{}},"parent":{}}],["gaialistfiles",{"_index":232,"name":{"293":{}},"parent":{}}],["gaiaputfile",{"_index":230,"name":{"291":{}},"parent":{}}],["gaiarestorebucket",{"_index":235,"name":{"296":{}},"parent":{}}],["gaiasethub",{"_index":236,"name":{"297":{}},"parent":{}}],["gaiauploadprofile",{"_index":373,"name":{"483":{}},"parent":{}}],["gaiauploadprofileall",{"_index":374,"name":{"484":{}},"parent":{}}],["gaiaurl",{"_index":588,"name":{"788":{}},"parent":{}}],["generate",{"_index":637,"name":{"882":{}},"parent":{}}],["generateandstoretransitkey",{"_index":52,"name":{"61":{}},"parent":{}}],["generateencryptedmnemonicrootkeychain",{"_index":594,"name":{"803":{}},"parent":{}}],["generateexplorertxpageurl",{"_index":367,"name":{"477":{}},"parent":{}}],["generatefactory",{"_index":636,"name":{"881":{}},"parent":{}}],["generatemnemonicrootkeychain",{"_index":593,"name":{"802":{}},"parent":{}}],["generatestrong",{"_index":638,"name":{"883":{}},"parent":{}}],["get_account_history",{"_index":265,"name":{"333":{}},"parent":{}}],["get_address",{"_index":264,"name":{"332":{}},"parent":{}}],["get_app_keys",{"_index":266,"name":{"334":{}},"parent":{}}],["get_owner_keys",{"_index":267,"name":{"335":{}},"parent":{}}],["get_payment_key",{"_index":268,"name":{"336":{}},"parent":{}}],["get_stacks_wallet_key",{"_index":269,"name":{"337":{}},"parent":{}}],["getabi",{"_index":1356,"name":{"2090":{}},"parent":{}}],["getabiapiurl",{"_index":664,"name":{"911":{},"929":{},"944":{},"959":{}},"parent":{}}],["getaccountapiurl",{"_index":662,"name":{"909":{},"928":{},"943":{},"958":{}},"parent":{}}],["getaccounthistory",{"_index":223,"name":{"284":{}},"parent":{}}],["getaccounthistorypage",{"_index":181,"name":{"229":{}},"parent":{}}],["getaddress",{"_index":316,"name":{"395":{},"402":{},"410":{},"421":{},"671":{}},"parent":{}}],["getaddressfromprivatekey",{"_index":966,"name":{"1338":{}},"parent":{}}],["getaddressfrompublickey",{"_index":967,"name":{"1339":{}},"parent":{}}],["getapiusageerrormessage",{"_index":427,"name":{"550":{}},"parent":{}}],["getappaddress",{"_index":503,"name":{"677":{}},"parent":{}}],["getappbucketurl",{"_index":788,"name":{"1147":{}},"parent":{}}],["getappkeys",{"_index":217,"name":{"278":{}},"parent":{}}],["getapplicationkeyinfo",{"_index":308,"name":{"384":{}},"parent":{}}],["getappnode",{"_index":502,"name":{"675":{}},"parent":{}}],["getappprivatekey",{"_index":398,"name":{"516":{},"676":{}},"parent":{}}],["getappsnode",{"_index":498,"name":{"670":{}},"parent":{}}],["getauthresponsetoken",{"_index":53,"name":{"62":{}},"parent":{}}],["getbackupphrase",{"_index":358,"name":{"468":{}},"parent":{}}],["getbase64outputlength",{"_index":426,"name":{"549":{}},"parent":{}}],["getbitcoinaddressnode",{"_index":571,"name":{"769":{}},"parent":{}}],["getbitcoinprivatekeychain",{"_index":570,"name":{"768":{}},"parent":{}}],["getblockchainidentities",{"_index":574,"name":{"772":{}},"parent":{}}],["getblockchainnamerecord",{"_index":178,"name":{"226":{}},"parent":{}}],["getblockstackerrorfromresponse",{"_index":770,"name":{"1116":{}},"parent":{}}],["getbroadcastapiurl",{"_index":658,"name":{"905":{},"926":{},"941":{},"956":{}},"parent":{}}],["getcliopts",{"_index":140,"name":{"179":{}},"parent":{}}],["getcommandargs",{"_index":145,"name":{"184":{}},"parent":{}}],["getcommandgroups",{"_index":134,"name":{"173":{}},"parent":{}}],["getconsensushash",{"_index":172,"name":{"220":{}},"parent":{}}],["getcryptolib",{"_index":435,"name":{"562":{}},"parent":{}}],["getcvtypestring",{"_index":1077,"name":{"1545":{}},"parent":{}}],["getderivationpath",{"_index":489,"name":{"658":{}},"parent":{}}],["getencryptionnode",{"_index":499,"name":{"672":{}},"parent":{}}],["getfee",{"_index":1204,"name":{"1730":{},"1745":{},"1760":{}},"parent":{}}],["getfeerate",{"_index":171,"name":{"219":{}},"parent":{}}],["getfile",{"_index":779,"name":{"1138":{}},"parent":{}}],["getfilecontents",{"_index":783,"name":{"1142":{}},"parent":{}}],["getfileoptions",{"_index":773,"name":{"1123":{}},"parent":{"1124":{},"1125":{},"1126":{},"1127":{},"1128":{}}}],["getfilesignedunencrypted",{"_index":784,"name":{"1143":{}},"parent":{}}],["getfileurl",{"_index":782,"name":{"1141":{}},"parent":{}}],["getfileurloptions",{"_index":776,"name":{"1129":{}},"parent":{"1130":{},"1131":{},"1132":{}}}],["getgaiaaddress",{"_index":781,"name":{"1140":{}},"parent":{}}],["getgaiaaddressfromprofile",{"_index":377,"name":{"487":{}},"parent":{}}],["getgaiaaddressfromurl",{"_index":376,"name":{"486":{}},"parent":{}}],["getgaiaerrorresponse",{"_index":769,"name":{"1115":{}},"parent":{}}],["getglobalobjectoptions",{"_index":422,"name":{"545":{}},"parent":{"546":{},"547":{},"548":{}}}],["getgraceperiod",{"_index":173,"name":{"221":{}},"parent":{}}],["gethubinfo",{"_index":517,"name":{"697":{}},"parent":{}}],["gethubprefix",{"_index":518,"name":{"698":{}},"parent":{}}],["getidaddress",{"_index":360,"name":{"470":{}},"parent":{}}],["getidappkeys",{"_index":362,"name":{"472":{}},"parent":{}}],["getidentityinfo",{"_index":405,"name":{"523":{}},"parent":{}}],["getidentitykey",{"_index":496,"name":{"668":{}},"parent":{}}],["getidentitykeyid",{"_index":497,"name":{"669":{}},"parent":{}}],["getidentityowneraddressnode",{"_index":572,"name":{"770":{}},"parent":{}}],["getidentityprivatekeychain",{"_index":567,"name":{"765":{}},"parent":{}}],["getkeyaddress",{"_index":228,"name":{"289":{}},"parent":{}}],["getmaxidsearchindex",{"_index":213,"name":{"274":{}},"parent":{}}],["getmaxlisteners",{"_index":1162,"name":{"1672":{}},"parent":{}}],["getname",{"_index":676,"name":{"966":{}},"parent":{}}],["getnamehistory",{"_index":179,"name":{"227":{}},"parent":{}}],["getnameinfo",{"_index":177,"name":{"225":{},"915":{},"931":{},"946":{},"961":{}},"parent":{}}],["getnameinfoeasy",{"_index":355,"name":{"465":{}},"parent":{}}],["getnameprice",{"_index":174,"name":{"222":{}},"parent":{}}],["getnamesowned",{"_index":184,"name":{"232":{}},"parent":{}}],["getnamespaceburnaddress",{"_index":176,"name":{"224":{}},"parent":{}}],["getnamespaceprice",{"_index":175,"name":{"223":{}},"parent":{}}],["getnetwork",{"_index":200,"name":{"248":{},"837":{}},"parent":{}}],["getnode",{"_index":494,"name":{"666":{}},"parent":{}}],["getnodeprivatekey",{"_index":303,"name":{"379":{}},"parent":{}}],["getnonce",{"_index":1347,"name":{"2078":{}},"parent":{}}],["getorcreateconfig",{"_index":645,"name":{"890":{}},"parent":{}}],["getownerkeyfromidaddress",{"_index":361,"name":{"471":{}},"parent":{}}],["getownerkeyinfo",{"_index":304,"name":{"380":{}},"parent":{}}],["getownerkeys",{"_index":218,"name":{"279":{}},"parent":{}}],["getpass",{"_index":357,"name":{"467":{}},"parent":{}}],["getpaymentkey",{"_index":219,"name":{"280":{}},"parent":{}}],["getpaymentkeyinfo",{"_index":305,"name":{"381":{}},"parent":{}}],["getprivatekeyaddress",{"_index":346,"name":{"456":{}},"parent":{}}],["getprofileurlfromzonefile",{"_index":582,"name":{"780":{}},"parent":{}}],["getpublickey",{"_index":981,"name":{"1353":{}},"parent":{}}],["getpublickeyfromprivatekey",{"_index":345,"name":{"455":{}},"parent":{}}],["getquerystringparams",{"_index":49,"name":{"55":{}},"parent":{}}],["getrandombytes",{"_index":447,"name":{"581":{}},"parent":{"582":{}}}],["getreadonlyfunctioncallapiurl",{"_index":666,"name":{"913":{},"930":{},"945":{},"960":{}},"parent":{}}],["getsalt",{"_index":495,"name":{"667":{}},"parent":{}}],["getsessiondata",{"_index":43,"name":{"49":{}},"parent":{}}],["getsignaturerecoveryparam",{"_index":979,"name":{"1351":{}},"parent":{}}],["getsigner",{"_index":649,"name":{"894":{}},"parent":{}}],["getsigningnode",{"_index":500,"name":{"673":{}},"parent":{}}],["getstackswalletkey",{"_index":220,"name":{"281":{}},"parent":{}}],["getstackswalletkeyinfo",{"_index":306,"name":{"382":{}},"parent":{}}],["getstxaddress",{"_index":611,"name":{"835":{}},"parent":{}}],["getstxnode",{"_index":501,"name":{"674":{}},"parent":{}}],["getstxprivatekey",{"_index":612,"name":{"836":{}},"parent":{}}],["gettransferfeeestimateapiurl",{"_index":660,"name":{"907":{},"927":{},"942":{},"957":{}},"parent":{}}],["gettxincomplete",{"_index":1256,"name":{"1829":{}},"parent":{}}],["gettypestring",{"_index":1320,"name":{"1921":{}},"parent":{}}],["gettypeunion",{"_index":1318,"name":{"1919":{}},"parent":{}}],["getuserappfileurl",{"_index":780,"name":{"1139":{}},"parent":{}}],["givenname",{"_index":696,"name":{"998":{}},"parent":{}}],["global",{"_index":411,"name":{"529":{}},"parent":{}}],["global_detection_cache_key",{"_index":46,"name":{"52":{}},"parent":{}}],["grace_period",{"_index":193,"name":{"241":{},"255":{}},"parent":{}}],["graceperiod",{"_index":157,"name":{"196":{},"209":{},"270":{}},"parent":{}}],["greater",{"_index":836,"name":{"1198":{}},"parent":{}}],["greaterequal",{"_index":837,"name":{"1199":{}},"parent":{}}],["group",{"_index":245,"name":{"311":{}},"parent":{}}],["handleauth",{"_index":406,"name":{"524":{}},"parent":{}}],["handleexceptions",{"_index":67,"name":{"77":{},"135":{}},"parent":{}}],["handlependingsignin",{"_index":56,"name":{"65":{}},"parent":{}}],["handlesignedencryptedcontents",{"_index":785,"name":{"1144":{}},"parent":{}}],["handlesignin",{"_index":409,"name":{"527":{}},"parent":{}}],["hash160",{"_index":350,"name":{"460":{},"1453":{}},"parent":{}}],["hashmode",{"_index":1192,"name":{"1710":{},"1717":{}},"parent":{}}],["hashp2pkh",{"_index":1178,"name":{"1689":{}},"parent":{}}],["hashp2sh",{"_index":1179,"name":{"1690":{}},"parent":{}}],["hashripemd160",{"_index":461,"name":{"606":{}},"parent":{}}],["hashsha256sync",{"_index":455,"name":{"595":{}},"parent":{}}],["hashsha512sync",{"_index":456,"name":{"596":{}},"parent":{}}],["haskeys",{"_index":338,"name":{"448":{}},"parent":{}}],["hdnode",{"_index":492,"name":{"663":{}},"parent":{}}],["help",{"_index":90,"name":{"101":{}},"parent":{}}],["hexstringtoint",{"_index":1173,"name":{"1684":{}},"parent":{}}],["hextocv",{"_index":1182,"name":{"1693":{}},"parent":{}}],["hidewarningforreusingidentity",{"_index":624,"name":{"855":{}},"parent":{}}],["hmac",{"_index":462,"name":{"607":{}},"parent":{"608":{}}}],["huberrordetails",{"_index":416,"name":{"536":{}},"parent":{"537":{},"538":{},"539":{}}}],["hubinfo",{"_index":508,"name":{"682":{},"686":{}},"parent":{"683":{},"684":{}}}],["huburl",{"_index":29,"name":{"30":{}},"parent":{}}],["iat",{"_index":381,"name":{"497":{}},"parent":{}}],["id",{"_index":693,"name":{"992":{},"1066":{},"1077":{}},"parent":{}}],["id_address_pattern",{"_index":104,"name":{"118":{}},"parent":{}}],["idaddress",{"_index":283,"name":{"352":{},"490":{}},"parent":{}}],["idappkeys",{"_index":331,"name":{"434":{}},"parent":{"435":{},"436":{},"437":{}}}],["identifier",{"_index":723,"name":{"1043":{}},"parent":{}}],["identities",{"_index":563,"name":{"759":{},"854":{},"864":{},"876":{}},"parent":{}}],["identity",{"_index":533,"name":{"721":{},"723":{},"789":{}},"parent":{"790":{},"791":{},"792":{},"793":{},"794":{},"795":{},"796":{},"797":{},"798":{},"799":{},"800":{}}}],["identity_keychain",{"_index":565,"name":{"763":{}},"parent":{}}],["identityaddress",{"_index":27,"name":{"28":{}},"parent":{}}],["identityaddresses",{"_index":631,"name":{"862":{},"874":{}},"parent":{}}],["identityaddressownernode",{"_index":491,"name":{"662":{}},"parent":{"663":{},"664":{},"665":{},"666":{},"667":{},"668":{},"669":{},"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{}}}],["identityconstructoroptions",{"_index":583,"name":{"781":{}},"parent":{"782":{},"783":{},"784":{},"785":{},"786":{}}}],["identitykeypair",{"_index":551,"name":{"744":{}},"parent":{"745":{},"746":{},"747":{},"748":{},"749":{},"750":{}}}],["identitykeypairs",{"_index":630,"name":{"861":{},"873":{}},"parent":{}}],["identitynamevalidityerror",{"_index":556,"name":{"751":{}},"parent":{"752":{},"753":{},"754":{},"755":{}}}],["identitypublickeychain",{"_index":627,"name":{"858":{},"875":{}},"parent":{}}],["illegal_character",{"_index":559,"name":{"754":{}},"parent":{}}],["image",{"_index":527,"name":{"713":{},"1007":{}},"parent":{}}],["image_type",{"_index":536,"name":{"729":{}},"parent":{}}],["index",{"_index":282,"name":{"351":{},"360":{},"366":{},"492":{},"758":{}},"parent":{}}],["inquirerprompt",{"_index":334,"name":{"438":{}},"parent":{"439":{},"440":{},"441":{},"442":{}}}],["insertbigint64be",{"_index":904,"name":{"1272":{}},"parent":{}}],["insertbigint64le",{"_index":906,"name":{"1274":{}},"parent":{}}],["insertbiguint64be",{"_index":925,"name":{"1293":{}},"parent":{}}],["insertbiguint64le",{"_index":927,"name":{"1295":{}},"parent":{}}],["insertbuffer",{"_index":947,"name":{"1315":{}},"parent":{}}],["insertbuffernt",{"_index":950,"name":{"1318":{}},"parent":{}}],["insertdoublebe",{"_index":937,"name":{"1305":{}},"parent":{}}],["insertdoublele",{"_index":939,"name":{"1307":{}},"parent":{}}],["insertfloatbe",{"_index":931,"name":{"1299":{}},"parent":{}}],["insertfloatle",{"_index":933,"name":{"1301":{}},"parent":{}}],["insertint16be",{"_index":896,"name":{"1264":{}},"parent":{}}],["insertint16le",{"_index":898,"name":{"1266":{}},"parent":{}}],["insertint32be",{"_index":900,"name":{"1268":{}},"parent":{}}],["insertint32le",{"_index":902,"name":{"1270":{}},"parent":{}}],["insertint8",{"_index":894,"name":{"1262":{}},"parent":{}}],["insertstring",{"_index":941,"name":{"1309":{}},"parent":{}}],["insertstringnt",{"_index":944,"name":{"1312":{}},"parent":{}}],["insertuint16be",{"_index":917,"name":{"1285":{}},"parent":{}}],["insertuint16le",{"_index":919,"name":{"1287":{}},"parent":{}}],["insertuint32be",{"_index":921,"name":{"1289":{}},"parent":{}}],["insertuint32le",{"_index":923,"name":{"1291":{}},"parent":{}}],["insertuint8",{"_index":915,"name":{"1283":{}},"parent":{}}],["int",{"_index":1060,"name":{"1528":{}},"parent":{}}],["int_pattern",{"_index":113,"name":{"127":{}},"parent":{}}],["intcv",{"_index":1081,"name":{"1553":{},"1559":{}},"parent":{"1554":{},"1555":{}}}],["internalbuffer",{"_index":957,"name":{"1325":{}},"parent":{}}],["intoinitialsighashauth",{"_index":1202,"name":{"1728":{},"1743":{},"1758":{}},"parent":{}}],["inttohexstring",{"_index":1172,"name":{"1683":{}},"parent":{}}],["inttolevel",{"_index":421,"name":{"543":{}},"parent":{"544":{}}}],["isclarityabibuffer",{"_index":1310,"name":{"1911":{}},"parent":{}}],["isclarityabilist",{"_index":1316,"name":{"1917":{}},"parent":{}}],["isclarityabioptional",{"_index":1314,"name":{"1915":{}},"parent":{}}],["isclarityabiprimitive",{"_index":1309,"name":{"1910":{}},"parent":{}}],["isclarityabiresponse",{"_index":1313,"name":{"1914":{}},"parent":{}}],["isclarityabistringascii",{"_index":1311,"name":{"1912":{}},"parent":{}}],["isclarityabistringutf8",{"_index":1312,"name":{"1913":{}},"parent":{}}],["isclarityabituple",{"_index":1315,"name":{"1916":{}},"parent":{}}],["isclarityname",{"_index":1180,"name":{"1691":{}},"parent":{}}],["isclitransactionsigner",{"_index":337,"name":{"447":{}},"parent":{}}],["iscomplete",{"_index":315,"name":{"393":{},"400":{},"414":{},"426":{}},"parent":{}}],["iscompressed",{"_index":971,"name":{"1343":{}},"parent":{}}],["isenum",{"_index":963,"name":{"1331":{}},"parent":{}}],["ismainnet",{"_index":167,"name":{"215":{}},"parent":{}}],["isnodecryptoavailable",{"_index":432,"name":{"558":{}},"parent":{}}],["ispaused",{"_index":1144,"name":{"1652":{}},"parent":{}}],["isrecoverablegaiaerror",{"_index":791,"name":{"1150":{}},"parent":{}}],["iss",{"_index":383,"name":{"499":{},"694":{}},"parent":{}}],["issigninpending",{"_index":54,"name":{"63":{}},"parent":{}}],["issinglesig",{"_index":1221,"name":{"1779":{}},"parent":{}}],["issmartbufferoptions",{"_index":885,"name":{"1253":{}},"parent":{}}],["isstringarray",{"_index":143,"name":{"182":{}},"parent":{}}],["issubdomain",{"_index":347,"name":{"457":{}},"parent":{}}],["issubtlecryptoavailable",{"_index":431,"name":{"557":{}},"parent":{}}],["istestnet",{"_index":168,"name":{"216":{}},"parent":{}}],["isusersignedin",{"_index":55,"name":{"64":{}},"parent":{}}],["items",{"_index":703,"name":{"1010":{},"1024":{},"1035":{},"1061":{},"1072":{}},"parent":{}}],["json",{"_index":71,"name":{"81":{},"139":{}},"parent":{}}],["jsonstringify",{"_index":344,"name":{"454":{}},"parent":{}}],["jti",{"_index":380,"name":{"496":{}},"parent":{}}],["key",{"_index":552,"name":{"745":{},"1857":{}},"parent":{}}],["keyencoding",{"_index":1195,"name":{"1714":{}},"parent":{}}],["keyid",{"_index":553,"name":{"746":{}},"parent":{}}],["keyinfo",{"_index":294,"name":{"369":{}},"parent":{}}],["keypair",{"_index":584,"name":{"782":{},"790":{}},"parent":{}}],["knows",{"_index":739,"name":{"1069":{}},"parent":{}}],["kw",{"_index":87,"name":{"98":{}},"parent":{}}],["last_transaction_height",{"_index":203,"name":{"256":{}},"parent":{}}],["last_txid",{"_index":194,"name":{"242":{},"257":{}},"parent":{}}],["lastloginat",{"_index":619,"name":{"845":{}},"parent":{}}],["leftpadhex",{"_index":1169,"name":{"1680":{}},"parent":{}}],["leftpadhextolength",{"_index":1170,"name":{"1681":{}},"parent":{}}],["legacykeyinfo",{"_index":298,"name":{"373":{}},"parent":{}}],["legacynetwork",{"_index":166,"name":{"213":{}},"parent":{}}],["length",{"_index":882,"name":{"1250":{},"1874":{},"1879":{},"1884":{},"1902":{}},"parent":{}}],["lengthprefixbytes",{"_index":1017,"name":{"1466":{},"1478":{}},"parent":{}}],["lengthprefixedlist",{"_index":798,"name":{"1159":{},"1476":{}},"parent":{"1477":{},"1478":{},"1479":{}}}],["lengthprefixedstring",{"_index":794,"name":{"1154":{},"1463":{}},"parent":{"1464":{},"1465":{},"1466":{},"1467":{}}}],["less",{"_index":838,"name":{"1200":{}},"parent":{}}],["lessequal",{"_index":839,"name":{"1201":{}},"parent":{}}],["level",{"_index":66,"name":{"76":{},"134":{}},"parent":{}}],["levels",{"_index":419,"name":{"540":{}},"parent":{}}],["leveltoint",{"_index":420,"name":{"541":{}},"parent":{"542":{}}}],["lib",{"_index":429,"name":{"552":{},"555":{}},"parent":{}}],["list",{"_index":1071,"name":{"1539":{},"1586":{},"1899":{}},"parent":{}}],["listcv",{"_index":1092,"name":{"1584":{},"1587":{}},"parent":{"1585":{},"1586":{}}}],["listenercount",{"_index":1157,"name":{"1667":{},"1676":{}},"parent":{}}],["listeners",{"_index":1163,"name":{"1673":{}},"parent":{}}],["listfiles",{"_index":789,"name":{"1148":{}},"parent":{}}],["loadconfig",{"_index":147,"name":{"186":{}},"parent":{}}],["loadnamedidentities",{"_index":402,"name":{"520":{}},"parent":{}}],["loadnamedidentitiesloop",{"_index":401,"name":{"519":{}},"parent":{}}],["loadunnamedidentity",{"_index":403,"name":{"521":{}},"parent":{}}],["loaduserdata",{"_index":57,"name":{"66":{}},"parent":{}}],["localstoragekey",{"_index":38,"name":{"42":{}},"parent":{}}],["localstorageram",{"_index":410,"name":{"528":{}},"parent":{}}],["log_config_defaults",{"_index":119,"name":{"133":{}},"parent":{"134":{},"135":{},"136":{},"137":{},"138":{},"139":{}}}],["logconfig",{"_index":77,"name":{"87":{},"145":{},"151":{},"160":{}},"parent":{}}],["lookupprofile",{"_index":64,"name":{"74":{}},"parent":{}}],["m",{"_index":323,"name":{"408":{},"419":{}},"parent":{}}],["mainnet",{"_index":414,"name":{"532":{},"534":{}},"parent":{}}],["mainnetmultisig",{"_index":828,"name":{"1190":{}},"parent":{}}],["mainnetsinglesig",{"_index":827,"name":{"1189":{}},"parent":{}}],["make_keychain",{"_index":270,"name":{"338":{}},"parent":{}}],["makeallcommandshelp",{"_index":136,"name":{"175":{}},"parent":{}}],["makeallcommandslist",{"_index":135,"name":{"174":{}},"parent":{}}],["makeassociationtoken",{"_index":369,"name":{"479":{}},"parent":{}}],["makeauthpage",{"_index":400,"name":{"518":{}},"parent":{}}],["makeauthrequest",{"_index":23,"name":{"23":{},"60":{}},"parent":{}}],["makeauthresponse",{"_index":589,"name":{"796":{}},"parent":{}}],["makecommandusagestring",{"_index":137,"name":{"176":{}},"parent":{}}],["makecontractcall",{"_index":1363,"name":{"2097":{}},"parent":{}}],["makecontractdeploy",{"_index":1360,"name":{"2094":{}},"parent":{}}],["makecontractfungiblepostcondition",{"_index":1367,"name":{"2101":{}},"parent":{}}],["makecontractnonfungiblepostcondition",{"_index":1369,"name":{"2103":{}},"parent":{}}],["makecontractstxpostcondition",{"_index":1365,"name":{"2099":{}},"parent":{}}],["makedidconfiguration",{"_index":353,"name":{"463":{}},"parent":{}}],["makefakeauthresponsetoken",{"_index":368,"name":{"478":{}},"parent":{}}],["makegaiaassociationtoken",{"_index":519,"name":{"699":{}},"parent":{}}],["makegaiaauthtoken",{"_index":522,"name":{"702":{}},"parent":{}}],["makeidentity",{"_index":575,"name":{"773":{}},"parent":{}}],["makekeychain",{"_index":221,"name":{"282":{}},"parent":{}}],["makeprofilejwt",{"_index":352,"name":{"462":{}},"parent":{}}],["makepromptsfromarglist",{"_index":363,"name":{"473":{}},"parent":{}}],["makerandomprivkey",{"_index":977,"name":{"1349":{}},"parent":{}}],["makereadonlygaiaconfig",{"_index":521,"name":{"701":{}},"parent":{}}],["makesighashpostsign",{"_index":1230,"name":{"1788":{}},"parent":{}}],["makesighashpresign",{"_index":1229,"name":{"1787":{}},"parent":{}}],["makesigninlink",{"_index":399,"name":{"517":{}},"parent":{}}],["makestandardfungiblepostcondition",{"_index":1366,"name":{"2100":{}},"parent":{}}],["makestandardnonfungiblepostcondition",{"_index":1368,"name":{"2102":{}},"parent":{}}],["makestandardstxpostcondition",{"_index":1364,"name":{"2098":{}},"parent":{}}],["makestxtokentransfer",{"_index":1358,"name":{"2092":{}},"parent":{}}],["makeunsignedcontractcall",{"_index":1362,"name":{"2096":{}},"parent":{}}],["makeunsignedstxtokentransfer",{"_index":1357,"name":{"2091":{}},"parent":{}}],["makeusagestring",{"_index":138,"name":{"177":{}},"parent":{}}],["makezonefile",{"_index":683,"name":{"974":{}},"parent":{}}],["makezonefilefromgaiaurl",{"_index":375,"name":{"485":{}},"parent":{}}],["manifest_uri",{"_index":386,"name":{"502":{}},"parent":{}}],["manifestpath",{"_index":12,"name":{"12":{}},"parent":{}}],["manifesturi",{"_index":17,"name":{"17":{}},"parent":{}}],["maps",{"_index":1282,"name":{"1867":{}},"parent":{}}],["matchtype",{"_index":1322,"name":{"1923":{}},"parent":{}}],["max_file_upload_size_megabytes",{"_index":763,"name":{"1109":{}},"parent":{}}],["max_string_length_bytes",{"_index":866,"name":{"1233":{}},"parent":{}}],["maxidsearchindex",{"_index":211,"name":{"272":{}},"parent":{}}],["maximum_length",{"_index":558,"name":{"753":{}},"parent":{}}],["maxlengthbytes",{"_index":1018,"name":{"1467":{}},"parent":{}}],["memo",{"_index":609,"name":{"827":{},"1422":{},"1937":{},"1949":{},"1961":{},"1974":{},"1988":{}},"parent":{}}],["memo_max_length_bytes",{"_index":872,"name":{"1239":{}},"parent":{}}],["memostring",{"_index":795,"name":{"1155":{},"1468":{}},"parent":{"1469":{},"1470":{}}}],["message",{"_index":329,"name":{"431":{},"441":{},"537":{},"651":{},"1358":{},"1364":{},"1370":{},"1376":{},"1382":{},"1388":{}},"parent":{}}],["messagesignature",{"_index":800,"name":{"1161":{},"1700":{}},"parent":{"1701":{},"1702":{}}}],["minimum_length",{"_index":557,"name":{"752":{}},"parent":{}}],["mkdirs",{"_index":359,"name":{"469":{}},"parent":{}}],["mnemonic",{"_index":333,"name":{"437":{}},"parent":{}}],["multisighashmode",{"_index":876,"name":{"1243":{}},"parent":{}}],["multisigkeysigner",{"_index":320,"name":{"405":{}},"parent":{"406":{},"407":{},"408":{},"409":{},"410":{},"411":{},"412":{},"413":{},"414":{}}}],["multisigoptions",{"_index":1325,"name":{"1926":{}},"parent":{"1927":{},"1928":{},"1929":{}}}],["multisigspendingcondition",{"_index":1196,"name":{"1716":{}},"parent":{"1717":{},"1718":{},"1719":{},"1720":{},"1721":{},"1722":{}}}],["name",{"_index":81,"name":{"91":{},"302":{},"430":{},"440":{},"444":{},"489":{},"553":{},"556":{},"650":{},"705":{},"712":{},"847":{},"995":{},"1015":{},"1357":{},"1363":{},"1369":{},"1375":{},"1381":{},"1387":{},"1845":{},"1852":{},"1856":{},"1860":{},"1862":{}},"parent":{}}],["name_pattern",{"_index":99,"name":{"113":{}},"parent":{}}],["namedidentitytype",{"_index":378,"name":{"488":{}},"parent":{"489":{},"490":{},"491":{},"492":{},"493":{},"494":{}}}],["nameinforesponse",{"_index":564,"name":{"760":{}},"parent":{"761":{},"762":{}}}],["nameinfotype",{"_index":187,"name":{"235":{}},"parent":{"236":{}}}],["nameinfotype.__type",{"_index":189,"name":{},"parent":{"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{}}}],["namelookup",{"_index":356,"name":{"466":{}},"parent":{}}],["namespace_pattern",{"_index":100,"name":{"114":{}},"parent":{}}],["namespaceburnaddress",{"_index":153,"name":{"192":{},"206":{}},"parent":{}}],["network",{"_index":63,"name":{"73":{},"815":{},"823":{},"831":{},"1935":{},"1947":{},"1959":{},"1972":{},"1986":{},"2010":{},"2025":{},"2041":{},"2058":{},"2069":{},"2077":{}},"parent":{}}],["networkderivationpath",{"_index":485,"name":{"654":{}},"parent":{}}],["newinitialsighash",{"_index":1233,"name":{"1791":{}},"parent":{}}],["nextsignature",{"_index":1231,"name":{"1789":{}},"parent":{}}],["nextverification",{"_index":1232,"name":{"1790":{}},"parent":{}}],["no_crypto_lib",{"_index":433,"name":{"559":{}},"parent":{}}],["nocoinbaseviamempool",{"_index":861,"name":{"1228":{}},"parent":{}}],["nodeapiurl",{"_index":160,"name":{"199":{},"211":{}},"parent":{}}],["nodecryptoaescipher",{"_index":439,"name":{"566":{}},"parent":{"567":{},"568":{},"569":{},"570":{},"571":{}}}],["nodecryptocreatecipher",{"_index":444,"name":{"577":{}},"parent":{}}],["nodecryptocreatedecipher",{"_index":445,"name":{"578":{}},"parent":{}}],["nodecryptocreatehash",{"_index":453,"name":{"593":{},"602":{}},"parent":{}}],["nodecryptocreatehmac",{"_index":466,"name":{"617":{}},"parent":{}}],["nodecryptohmacsha256",{"_index":463,"name":{"609":{}},"parent":{"610":{},"611":{},"612":{}}}],["nodecryptolib",{"_index":430,"name":{"554":{}},"parent":{"555":{},"556":{}}}],["nodecryptopbkdf2",{"_index":477,"name":{"634":{}},"parent":{"635":{},"636":{},"637":{}}}],["nodecryptoripemd160digest",{"_index":459,"name":{"601":{}},"parent":{"602":{},"603":{},"604":{}}}],["nodecryptosha2hash",{"_index":450,"name":{"585":{}},"parent":{"586":{},"587":{},"588":{}}}],["nodepbkdf2",{"_index":478,"name":{"635":{}},"parent":{}}],["nodepbkdf2fn",{"_index":482,"name":{"647":{}},"parent":{}}],["noexit",{"_index":210,"name":{"271":{}},"parent":{}}],["non_fungible_tokens",{"_index":1284,"name":{"1869":{}},"parent":{}}],["nonce",{"_index":602,"name":{"812":{},"820":{},"828":{},"1712":{},"1719":{},"1934":{},"1946":{},"1958":{},"1971":{},"1985":{},"2009":{},"2024":{},"2040":{},"2057":{}},"parent":{}}],["nonecv",{"_index":1085,"name":{"1566":{},"1572":{}},"parent":{"1567":{}}}],["nonfungible",{"_index":817,"name":{"1179":{},"1212":{}},"parent":{}}],["nonfungibleconditioncode",{"_index":840,"name":{"1202":{}},"parent":{"1203":{},"1204":{}}}],["nonfungiblepostcondition",{"_index":993,"name":{"1404":{}},"parent":{"1405":{},"1406":{},"1407":{},"1408":{},"1409":{},"1410":{}}}],["nosuchcontract",{"_index":853,"name":{"1220":{}},"parent":{}}],["nosuchpublicfunction",{"_index":854,"name":{"1221":{}},"parent":{}}],["notenoughfunds",{"_index":852,"name":{"1219":{}},"parent":{}}],["notimplementederror",{"_index":986,"name":{"1373":{}},"parent":{"1374":{},"1375":{},"1376":{},"1377":{},"1378":{}}}],["nullsigner",{"_index":319,"name":{"398":{}},"parent":{"399":{},"400":{},"401":{},"402":{},"403":{},"404":{}}}],["numsignatures",{"_index":1326,"name":{"1927":{},"1966":{},"1979":{},"2032":{},"2048":{}},"parent":{}}],["off",{"_index":1159,"name":{"1669":{}},"parent":{}}],["offchainonly",{"_index":810,"name":{"1171":{}},"parent":{}}],["ok",{"_index":1300,"name":{"1889":{}},"parent":{}}],["okay",{"_index":1167,"name":{"1678":{}},"parent":{}}],["omit",{"_index":1176,"name":{"1687":{}},"parent":{}}],["on",{"_index":1150,"name":{"1660":{}},"parent":{}}],["once",{"_index":1151,"name":{"1661":{}},"parent":{}}],["onchainonly",{"_index":809,"name":{"1170":{}},"parent":{}}],["optalwayscoerceaddress",{"_index":165,"name":{"212":{}},"parent":{}}],["optional",{"_index":687,"name":{"980":{},"989":{},"994":{},"997":{},"1000":{},"1003":{},"1006":{},"1009":{},"1017":{},"1020":{},"1023":{},"1031":{},"1034":{},"1042":{},"1045":{},"1048":{},"1051":{},"1054":{},"1057":{},"1060":{},"1068":{},"1071":{},"1079":{},"1082":{},"1088":{},"1091":{},"1094":{},"1097":{},"1100":{},"1103":{},"1893":{}},"parent":{}}],["optionalcv",{"_index":1087,"name":{"1571":{}},"parent":{}}],["optionalcvof",{"_index":1088,"name":{"1574":{}},"parent":{}}],["optionalnone",{"_index":1069,"name":{"1537":{}},"parent":{}}],["optionalsome",{"_index":1070,"name":{"1538":{}},"parent":{}}],["origin",{"_index":618,"name":{"843":{},"1206":{}},"parent":{}}],["origindone",{"_index":1249,"name":{"1821":{}},"parent":{}}],["outputs",{"_index":1272,"name":{"1848":{}},"parent":{}}],["owner_address",{"_index":204,"name":{"258":{}},"parent":{}}],["owner_script",{"_index":205,"name":{"259":{}},"parent":{}}],["ownerkeyindex",{"_index":301,"name":{"377":{}},"parent":{}}],["ownerkeyinfotype",{"_index":279,"name":{"347":{}},"parent":{"348":{}}}],["ownerkeyinfotype.__type",{"_index":281,"name":{},"parent":{"349":{},"350":{},"351":{},"352":{}}}],["ownerprivatekey",{"_index":332,"name":{"435":{}},"parent":{}}],["owns",{"_index":842,"name":{"1204":{}},"parent":{}}],["parseassetinfostring",{"_index":1045,"name":{"1505":{}},"parent":{}}],["parseclarityfunctionarganswers",{"_index":365,"name":{"475":{}},"parent":{}}],["parsemultisigkeys",{"_index":340,"name":{"450":{}},"parent":{}}],["parsenullsigner",{"_index":339,"name":{"449":{}},"parent":{}}],["parseprincipalstring",{"_index":1033,"name":{"1493":{}},"parent":{}}],["parsereadonlyresponse",{"_index":1183,"name":{"1694":{}},"parent":{}}],["parserecoverablesignature",{"_index":980,"name":{"1352":{}},"parent":{}}],["parsesegwitp2shkeys",{"_index":341,"name":{"451":{}},"parent":{}}],["parsetocv",{"_index":1324,"name":{"1925":{}},"parent":{}}],["passworderror",{"_index":484,"name":{"649":{}},"parent":{"650":{},"651":{},"652":{},"653":{}}}],["pattern",{"_index":83,"name":{"94":{}},"parent":{}}],["pause",{"_index":1142,"name":{"1650":{}},"parent":{}}],["payload",{"_index":799,"name":{"1160":{},"1442":{},"1799":{}},"parent":{}}],["payloadtype",{"_index":802,"name":{"1163":{},"1419":{},"1425":{},"1432":{},"1437":{},"1440":{}},"parent":{"1164":{},"1165":{},"1166":{},"1167":{},"1168":{}}}],["paymentkeyinfotype",{"_index":284,"name":{"353":{}},"parent":{"354":{}}}],["paymentkeyinfotype.__type",{"_index":285,"name":{},"parent":{"355":{},"356":{},"360":{}}}],["paymentkeyinfotype.__type.address",{"_index":286,"name":{},"parent":{"357":{}}}],["paymentkeyinfotype.__type.address.__type",{"_index":288,"name":{},"parent":{"358":{},"359":{}}}],["pbkdf2",{"_index":475,"name":{"632":{}},"parent":{"633":{}}}],["pbkdf2digests",{"_index":481,"name":{"646":{}},"parent":{}}],["person_type",{"_index":535,"name":{"727":{}},"parent":{}}],["personschemadefinition",{"_index":689,"name":{"983":{}},"parent":{"984":{},"985":{},"986":{}}}],["personschemadefinition.properties",{"_index":690,"name":{},"parent":{"987":{},"990":{},"992":{},"995":{},"998":{},"1001":{},"1004":{},"1007":{},"1021":{},"1032":{},"1058":{},"1069":{},"1080":{},"1098":{},"1101":{}}}],["personschemadefinition.properties.@context",{"_index":691,"name":{},"parent":{"988":{},"989":{}}}],["personschemadefinition.properties.@id",{"_index":694,"name":{},"parent":{"993":{},"994":{}}}],["personschemadefinition.properties.@type",{"_index":692,"name":{},"parent":{"991":{}}}],["personschemadefinition.properties.account",{"_index":717,"name":{},"parent":{"1033":{},"1034":{},"1035":{}}}],["personschemadefinition.properties.account.items",{"_index":718,"name":{},"parent":{"1036":{},"1037":{}}}],["personschemadefinition.properties.account.items.properties",{"_index":719,"name":{},"parent":{"1038":{},"1040":{},"1043":{},"1046":{},"1049":{},"1052":{},"1055":{}}}],["personschemadefinition.properties.account.items.properties.@type",{"_index":720,"name":{},"parent":{"1039":{}}}],["personschemadefinition.properties.account.items.properties.identifier",{"_index":724,"name":{},"parent":{"1044":{},"1045":{}}}],["personschemadefinition.properties.account.items.properties.proofmessage",{"_index":730,"name":{},"parent":{"1053":{},"1054":{}}}],["personschemadefinition.properties.account.items.properties.proofsignature",{"_index":732,"name":{},"parent":{"1056":{},"1057":{}}}],["personschemadefinition.properties.account.items.properties.prooftype",{"_index":726,"name":{},"parent":{"1047":{},"1048":{}}}],["personschemadefinition.properties.account.items.properties.proofurl",{"_index":728,"name":{},"parent":{"1050":{},"1051":{}}}],["personschemadefinition.properties.account.items.properties.service",{"_index":722,"name":{},"parent":{"1041":{},"1042":{}}}],["personschemadefinition.properties.address",{"_index":745,"name":{},"parent":{"1081":{},"1082":{},"1083":{}}}],["personschemadefinition.properties.address.properties",{"_index":746,"name":{},"parent":{"1084":{},"1086":{},"1089":{},"1092":{},"1095":{}}}],["personschemadefinition.properties.address.properties.@type",{"_index":747,"name":{},"parent":{"1085":{}}}],["personschemadefinition.properties.address.properties.addresscountry",{"_index":755,"name":{},"parent":{"1096":{},"1097":{}}}],["personschemadefinition.properties.address.properties.addresslocality",{"_index":751,"name":{},"parent":{"1090":{},"1091":{}}}],["personschemadefinition.properties.address.properties.postalcode",{"_index":753,"name":{},"parent":{"1093":{},"1094":{}}}],["personschemadefinition.properties.address.properties.streetaddress",{"_index":749,"name":{},"parent":{"1087":{},"1088":{}}}],["personschemadefinition.properties.birthdate",{"_index":757,"name":{},"parent":{"1099":{},"1100":{}}}],["personschemadefinition.properties.description",{"_index":701,"name":{},"parent":{"1005":{},"1006":{}}}],["personschemadefinition.properties.familyname",{"_index":699,"name":{},"parent":{"1002":{},"1003":{}}}],["personschemadefinition.properties.givenname",{"_index":697,"name":{},"parent":{"999":{},"1000":{}}}],["personschemadefinition.properties.image",{"_index":702,"name":{},"parent":{"1008":{},"1009":{},"1010":{}}}],["personschemadefinition.properties.image.items",{"_index":704,"name":{},"parent":{"1011":{},"1012":{}}}],["personschemadefinition.properties.image.items.properties",{"_index":705,"name":{},"parent":{"1013":{},"1015":{},"1018":{}}}],["personschemadefinition.properties.image.items.properties.@type",{"_index":706,"name":{},"parent":{"1014":{}}}],["personschemadefinition.properties.image.items.properties.contenturl",{"_index":708,"name":{},"parent":{"1019":{},"1020":{}}}],["personschemadefinition.properties.image.items.properties.name",{"_index":707,"name":{},"parent":{"1016":{},"1017":{}}}],["personschemadefinition.properties.knows",{"_index":740,"name":{},"parent":{"1070":{},"1071":{},"1072":{}}}],["personschemadefinition.properties.knows.items",{"_index":741,"name":{},"parent":{"1073":{},"1074":{}}}],["personschemadefinition.properties.knows.items.properties",{"_index":742,"name":{},"parent":{"1075":{},"1077":{}}}],["personschemadefinition.properties.knows.items.properties.@id",{"_index":744,"name":{},"parent":{"1078":{},"1079":{}}}],["personschemadefinition.properties.knows.items.properties.@type",{"_index":743,"name":{},"parent":{"1076":{}}}],["personschemadefinition.properties.name",{"_index":695,"name":{},"parent":{"996":{},"997":{}}}],["personschemadefinition.properties.taxid",{"_index":759,"name":{},"parent":{"1102":{},"1103":{}}}],["personschemadefinition.properties.website",{"_index":710,"name":{},"parent":{"1022":{},"1023":{},"1024":{}}}],["personschemadefinition.properties.website.items",{"_index":711,"name":{},"parent":{"1025":{},"1026":{}}}],["personschemadefinition.properties.website.items.properties",{"_index":712,"name":{},"parent":{"1027":{},"1029":{}}}],["personschemadefinition.properties.website.items.properties.@type",{"_index":713,"name":{},"parent":{"1028":{}}}],["personschemadefinition.properties.website.items.properties.url",{"_index":715,"name":{},"parent":{"1030":{},"1031":{}}}],["personschemadefinition.properties.worksfor",{"_index":734,"name":{},"parent":{"1059":{},"1060":{},"1061":{}}}],["personschemadefinition.properties.worksfor.items",{"_index":735,"name":{},"parent":{"1062":{},"1063":{}}}],["personschemadefinition.properties.worksfor.items.properties",{"_index":736,"name":{},"parent":{"1064":{},"1066":{}}}],["personschemadefinition.properties.worksfor.items.properties.@id",{"_index":738,"name":{},"parent":{"1067":{},"1068":{}}}],["personschemadefinition.properties.worksfor.items.properties.@type",{"_index":737,"name":{},"parent":{"1065":{}}}],["pipe",{"_index":1156,"name":{"1666":{}},"parent":{}}],["poisonmicroblock",{"_index":806,"name":{"1167":{}},"parent":{}}],["poisonmicroblockhasunknownpubkeyhash",{"_index":858,"name":{"1225":{}},"parent":{}}],["poisonmicroblockisinvalid",{"_index":859,"name":{"1226":{}},"parent":{}}],["poisonmicroblocksdonotconflict",{"_index":857,"name":{"1224":{}},"parent":{}}],["poisonpayload",{"_index":1003,"name":{"1435":{}},"parent":{"1436":{},"1437":{}}}],["postalcode",{"_index":752,"name":{"1092":{}},"parent":{}}],["postcondition",{"_index":797,"name":{"1157":{},"1411":{}},"parent":{}}],["postconditionmode",{"_index":604,"name":{"814":{},"822":{},"830":{},"1173":{},"1800":{},"1938":{},"1950":{},"1962":{},"1975":{},"1989":{},"2012":{},"2027":{},"2043":{},"2060":{}},"parent":{"1174":{},"1175":{}}}],["postconditionprincipal",{"_index":1032,"name":{"1492":{}},"parent":{}}],["postconditionprincipalid",{"_index":843,"name":{"1205":{}},"parent":{"1206":{},"1207":{},"1208":{}}}],["postconditions",{"_index":603,"name":{"813":{},"821":{},"829":{},"1801":{},"1939":{},"1951":{},"1963":{},"1976":{},"1990":{},"2013":{},"2028":{},"2044":{},"2061":{}},"parent":{}}],["postconditiontype",{"_index":814,"name":{"1176":{}},"parent":{"1177":{},"1178":{},"1179":{}}}],["prefix",{"_index":1014,"name":{"1456":{},"1460":{}},"parent":{}}],["prependlistener",{"_index":1152,"name":{"1662":{}},"parent":{}}],["prependoncelistener",{"_index":1153,"name":{"1663":{}},"parent":{}}],["pricetopay",{"_index":154,"name":{"193":{},"207":{}},"parent":{}}],["pricetype",{"_index":161,"name":{"200":{}},"parent":{"201":{},"202":{}}}],["priceunits",{"_index":155,"name":{"194":{},"208":{}},"parent":{}}],["principal",{"_index":793,"name":{"1153":{},"1394":{},"1400":{},"1407":{}},"parent":{}}],["principalcontract",{"_index":1066,"name":{"1534":{}},"parent":{}}],["principalcv",{"_index":1054,"name":{"1519":{},"1521":{}},"parent":{}}],["principalstandard",{"_index":1065,"name":{"1533":{}},"parent":{}}],["principaltostring",{"_index":1055,"name":{"1520":{}},"parent":{}}],["printdocs",{"_index":246,"name":{"312":{}},"parent":{}}],["printusage",{"_index":139,"name":{"178":{}},"parent":{}}],["private_key_multisig_pattern",{"_index":109,"name":{"123":{}},"parent":{}}],["private_key_nosign_pattern",{"_index":108,"name":{"122":{}},"parent":{}}],["private_key_pattern",{"_index":106,"name":{"120":{}},"parent":{}}],["private_key_pattern_any",{"_index":111,"name":{"125":{}},"parent":{}}],["private_key_segwit_p2sh_pattern",{"_index":110,"name":{"124":{}},"parent":{}}],["private_key_uncompressed_pattern",{"_index":107,"name":{"121":{}},"parent":{}}],["privatekey",{"_index":280,"name":{"349":{},"355":{},"363":{},"371":{},"375":{},"491":{},"626":{},"687":{},"691":{},"833":{}},"parent":{}}],["privatekeys",{"_index":322,"name":{"407":{},"418":{}},"parent":{}}],["privatekeytostring",{"_index":982,"name":{"1354":{}},"parent":{}}],["profile",{"_index":33,"name":{"35":{},"493":{},"707":{},"786":{},"794":{}},"parent":{"708":{},"709":{},"710":{},"711":{},"712":{},"713":{},"967":{},"969":{},"970":{},"971":{},"972":{},"973":{},"974":{}}}],["profile._profile",{"_index":678,"name":{},"parent":{"968":{}}}],["profile_sign",{"_index":271,"name":{"339":{}},"parent":{}}],["profile_store",{"_index":272,"name":{"340":{}},"parent":{}}],["profile_verify",{"_index":273,"name":{"341":{}},"parent":{}}],["profileimage",{"_index":523,"name":{"703":{}},"parent":{"704":{},"705":{},"706":{}}}],["profilelookupoptions",{"_index":61,"name":{"70":{}},"parent":{"71":{},"72":{},"73":{}}}],["profilesign",{"_index":214,"name":{"275":{}},"parent":{}}],["profilestore",{"_index":216,"name":{"277":{}},"parent":{}}],["profileurl",{"_index":22,"name":{"22":{},"494":{},"798":{}},"parent":{}}],["profileverify",{"_index":215,"name":{"276":{}},"parent":{}}],["proofmessage",{"_index":729,"name":{"1052":{}},"parent":{}}],["proofsignature",{"_index":731,"name":{"1055":{}},"parent":{}}],["prooftype",{"_index":725,"name":{"1046":{}},"parent":{}}],["proofurl",{"_index":727,"name":{"1049":{}},"parent":{}}],["properties",{"_index":129,"name":{"167":{},"977":{},"986":{},"1012":{},"1026":{},"1037":{},"1063":{},"1074":{},"1083":{}},"parent":{}}],["pubkeyencoding",{"_index":831,"name":{"1193":{}},"parent":{"1194":{},"1195":{}}}],["pubkeyfromprivkey",{"_index":974,"name":{"1346":{}},"parent":{}}],["public_key_pattern",{"_index":112,"name":{"126":{}},"parent":{}}],["public_keys",{"_index":384,"name":{"500":{}},"parent":{}}],["public_testnet_host",{"_index":122,"name":{"154":{}},"parent":{}}],["publickey",{"_index":474,"name":{"625":{},"1158":{},"1704":{},"1942":{},"2002":{}},"parent":{}}],["publickeyfrombuffer",{"_index":970,"name":{"1342":{}},"parent":{}}],["publickeyfromsignature",{"_index":969,"name":{"1341":{}},"parent":{}}],["publickeys",{"_index":1327,"name":{"1928":{},"1967":{},"1980":{},"2033":{},"2049":{}},"parent":{}}],["publickeytostring",{"_index":972,"name":{"1344":{}},"parent":{}}],["publicurl",{"_index":766,"name":{"1112":{}},"parent":{}}],["publish_data",{"_index":2,"name":{"2":{}},"parent":{}}],["push",{"_index":1116,"name":{"1622":{},"1656":{}},"parent":{}}],["putfile",{"_index":786,"name":{"1145":{}},"parent":{}}],["putfilecontent",{"_index":760,"name":{"1104":{}},"parent":{}}],["putfileoptions",{"_index":771,"name":{"1117":{}},"parent":{"1118":{},"1119":{},"1120":{},"1121":{},"1122":{}}}],["raw",{"_index":86,"name":{"97":{}},"parent":{}}],["rawlisteners",{"_index":1164,"name":{"1674":{}},"parent":{}}],["read",{"_index":1140,"name":{"1648":{}},"parent":{}}],["read_url_prefix",{"_index":510,"name":{"684":{}},"parent":{}}],["readable",{"_index":1135,"name":{"1643":{}},"parent":{}}],["readableflowing",{"_index":1136,"name":{"1644":{}},"parent":{}}],["readablehighwatermark",{"_index":1137,"name":{"1645":{}},"parent":{}}],["readablelength",{"_index":1138,"name":{"1646":{}},"parent":{}}],["readbigint64be",{"_index":891,"name":{"1259":{}},"parent":{}}],["readbigint64le",{"_index":892,"name":{"1260":{}},"parent":{}}],["readbiguint64be",{"_index":912,"name":{"1280":{}},"parent":{}}],["readbiguint64le",{"_index":913,"name":{"1281":{}},"parent":{}}],["readbiguintbe",{"_index":880,"name":{"1248":{}},"parent":{}}],["readbiguintle",{"_index":879,"name":{"1247":{}},"parent":{}}],["readbuffer",{"_index":946,"name":{"1314":{}},"parent":{}}],["readbuffernt",{"_index":949,"name":{"1317":{}},"parent":{}}],["readdoublebe",{"_index":934,"name":{"1302":{}},"parent":{}}],["readdoublele",{"_index":935,"name":{"1303":{}},"parent":{}}],["readfloatbe",{"_index":928,"name":{"1296":{}},"parent":{}}],["readfloatle",{"_index":929,"name":{"1297":{}},"parent":{}}],["readint16be",{"_index":887,"name":{"1255":{}},"parent":{}}],["readint16le",{"_index":888,"name":{"1256":{}},"parent":{}}],["readint32be",{"_index":889,"name":{"1257":{}},"parent":{}}],["readint32le",{"_index":890,"name":{"1258":{}},"parent":{}}],["readint8",{"_index":886,"name":{"1254":{}},"parent":{}}],["readoffset",{"_index":954,"name":{"1322":{}},"parent":{}}],["readonlycontractfunctioncall",{"_index":227,"name":{"288":{}},"parent":{}}],["readonlyfunctioncallendpoint",{"_index":657,"name":{"904":{},"925":{},"940":{},"955":{}},"parent":{}}],["readonlyfunctionoptions",{"_index":1341,"name":{"2064":{}},"parent":{"2065":{},"2066":{},"2067":{},"2068":{},"2069":{},"2070":{}}}],["readonlyfunctionresponse",{"_index":1166,"name":{"1677":{}},"parent":{"1678":{},"1679":{}}}],["readonlygaiaconfigoptions",{"_index":513,"name":{"689":{}},"parent":{"690":{},"691":{}}}],["readstring",{"_index":940,"name":{"1308":{}},"parent":{}}],["readstringnt",{"_index":943,"name":{"1311":{}},"parent":{}}],["readuint16be",{"_index":908,"name":{"1276":{}},"parent":{}}],["readuint16le",{"_index":909,"name":{"1277":{}},"parent":{}}],["readuint32be",{"_index":910,"name":{"1278":{}},"parent":{}}],["readuint32le",{"_index":911,"name":{"1279":{}},"parent":{}}],["readuint8",{"_index":907,"name":{"1275":{}},"parent":{}}],["readuint8enum",{"_index":881,"name":{"1249":{}},"parent":{}}],["readurl",{"_index":514,"name":{"690":{}},"parent":{}}],["realtype",{"_index":82,"name":{"93":{}},"parent":{}}],["reason",{"_index":1352,"name":{"2084":{}},"parent":{}}],["reason_data",{"_index":1353,"name":{"2085":{}},"parent":{}}],["receivefeesperiod",{"_index":156,"name":{"195":{},"210":{},"269":{}},"parent":{}}],["recipient",{"_index":608,"name":{"825":{},"1420":{},"1931":{},"1943":{},"1955":{},"1968":{},"1982":{}},"parent":{}}],["recoverable_ecdsa_sig_length_bytes",{"_index":869,"name":{"1236":{}},"parent":{}}],["recursivemakeidentitiesoptions",{"_index":561,"name":{"756":{}},"parent":{"757":{},"758":{},"759":{}}}],["recursiverestoreidentities",{"_index":580,"name":{"778":{}},"parent":{}}],["redeemscript",{"_index":321,"name":{"406":{},"416":{}},"parent":{}}],["redirect_uri",{"_index":387,"name":{"503":{}},"parent":{}}],["redirectpath",{"_index":11,"name":{"11":{}},"parent":{}}],["redirecturi",{"_index":16,"name":{"16":{}},"parent":{}}],["refresh",{"_index":591,"name":{"800":{}},"parent":{}}],["refreshoptions",{"_index":587,"name":{"787":{}},"parent":{"788":{}}}],["registerparams",{"_index":534,"name":{"722":{}},"parent":{"723":{},"724":{},"725":{},"726":{}}}],["registersubdomain",{"_index":548,"name":{"741":{}},"parent":{}}],["registerurl",{"_index":540,"name":{"733":{},"736":{}},"parent":{}}],["registrars",{"_index":538,"name":{"731":{}},"parent":{"732":{},"735":{}}}],["registrars.[subdomains.blockstack",{"_index":544,"name":{},"parent":{"736":{},"737":{}}}],["registrars.[subdomains.test",{"_index":541,"name":{},"parent":{"733":{},"734":{}}}],["remaining",{"_index":953,"name":{"1321":{}},"parent":{}}],["removealllisteners",{"_index":1160,"name":{"1670":{}},"parent":{}}],["removelistener",{"_index":1154,"name":{"1664":{}},"parent":{}}],["renewal_deadline",{"_index":195,"name":{"243":{},"260":{}},"parent":{}}],["resolver",{"_index":196,"name":{"244":{},"261":{}},"parent":{}}],["response",{"_index":1297,"name":{"1887":{}},"parent":{}}],["responsecv",{"_index":1091,"name":{"1581":{}},"parent":{}}],["responseerr",{"_index":1068,"name":{"1536":{}},"parent":{}}],["responseerrorcv",{"_index":1089,"name":{"1575":{},"1582":{}},"parent":{"1576":{},"1577":{}}}],["responseok",{"_index":1067,"name":{"1535":{}},"parent":{}}],["responseokcv",{"_index":1090,"name":{"1578":{},"1583":{}},"parent":{"1579":{},"1580":{}}}],["restore",{"_index":639,"name":{"884":{}},"parent":{}}],["restoreidentities",{"_index":641,"name":{"886":{}},"parent":{}}],["result",{"_index":1168,"name":{"1679":{}},"parent":{}}],["resume",{"_index":1143,"name":{"1651":{},"1830":{}},"parent":{}}],["returnemptyobject",{"_index":425,"name":{"548":{}},"parent":{}}],["rightpadhextolength",{"_index":1171,"name":{"1682":{}},"parent":{}}],["ripemd160digest",{"_index":457,"name":{"597":{}},"parent":{"598":{}}}],["ripemd160polyfilldigest",{"_index":458,"name":{"599":{}},"parent":{"600":{}}}],["rootnode",{"_index":562,"name":{"757":{}},"parent":{}}],["safetychecks",{"_index":209,"name":{"268":{}},"parent":{}}],["safetyerror",{"_index":327,"name":{"427":{}},"parent":{"428":{},"429":{},"430":{},"431":{},"432":{},"433":{}}}],["safetyerrors",{"_index":328,"name":{"428":{}},"parent":{}}],["salt",{"_index":493,"name":{"664":{},"695":{},"750":{}},"parent":{}}],["satoshis_per_btc",{"_index":186,"name":{"234":{}},"parent":{}}],["schemadefinition",{"_index":684,"name":{"975":{}},"parent":{"976":{},"977":{}}}],["schemadefinition.properties",{"_index":685,"name":{},"parent":{"978":{},"981":{}}}],["schemadefinition.properties.@context",{"_index":686,"name":{},"parent":{"979":{},"980":{}}}],["schemadefinition.properties.@type",{"_index":688,"name":{},"parent":{"982":{}}}],["scopes",{"_index":10,"name":{"10":{},"507":{},"844":{}},"parent":{}}],["segwitp2shkeysigner",{"_index":324,"name":{"415":{}},"parent":{"416":{},"417":{},"418":{},"419":{},"420":{},"421":{},"422":{},"423":{},"424":{},"425":{},"426":{}}}],["send_tokens",{"_index":274,"name":{"342":{}},"parent":{}}],["senderaddress",{"_index":1342,"name":{"2070":{}},"parent":{}}],["senderkey",{"_index":1332,"name":{"1954":{},"1992":{},"2017":{}},"parent":{}}],["sendjson",{"_index":404,"name":{"522":{}},"parent":{}}],["sendtokens",{"_index":224,"name":{"285":{}},"parent":{}}],["sendtoregistrarparams",{"_index":531,"name":{"717":{}},"parent":{"718":{},"719":{},"720":{},"721":{}}}],["sendusernametoregistrar",{"_index":547,"name":{"740":{}},"parent":{}}],["serialization",{"_index":847,"name":{"1214":{}},"parent":{}}],["serializationerror",{"_index":984,"name":{"1361":{}},"parent":{"1362":{},"1363":{},"1364":{},"1365":{},"1366":{}}}],["serialize",{"_index":1186,"name":{"1697":{},"1735":{},"1750":{},"1765":{},"1816":{}},"parent":{}}],["serializeaddress",{"_index":1030,"name":{"1490":{}},"parent":{}}],["serializeassetinfo",{"_index":1047,"name":{"1507":{}},"parent":{}}],["serializeboolcv",{"_index":1099,"name":{"1604":{}},"parent":{}}],["serializebuffercv",{"_index":1101,"name":{"1606":{}},"parent":{}}],["serializecontractprincipalcv",{"_index":1104,"name":{"1609":{}},"parent":{}}],["serializecv",{"_index":1111,"name":{"1616":{}},"parent":{}}],["serializeintcv",{"_index":1102,"name":{"1607":{}},"parent":{}}],["serializelistcv",{"_index":1106,"name":{"1611":{}},"parent":{}}],["serializelplist",{"_index":1050,"name":{"1510":{}},"parent":{}}],["serializelpstring",{"_index":1039,"name":{"1499":{}},"parent":{}}],["serializememostring",{"_index":1043,"name":{"1503":{}},"parent":{}}],["serializemessagesignature",{"_index":1213,"name":{"1770":{}},"parent":{}}],["serializemultisigspendingcondition",{"_index":1224,"name":{"1782":{}},"parent":{}}],["serializeoptionalcv",{"_index":1100,"name":{"1605":{}},"parent":{}}],["serializep2pkh",{"_index":822,"name":{"1184":{}},"parent":{}}],["serializep2sh",{"_index":823,"name":{"1185":{}},"parent":{}}],["serializep2wpkh",{"_index":824,"name":{"1186":{}},"parent":{}}],["serializep2wsh",{"_index":825,"name":{"1187":{}},"parent":{}}],["serializepayload",{"_index":1011,"name":{"1448":{}},"parent":{}}],["serializepostcondition",{"_index":998,"name":{"1415":{}},"parent":{}}],["serializeprincipal",{"_index":1036,"name":{"1496":{}},"parent":{}}],["serializepublickey",{"_index":973,"name":{"1345":{}},"parent":{}}],["serializeresponsecv",{"_index":1105,"name":{"1610":{}},"parent":{}}],["serializesinglesigspendingcondition",{"_index":1223,"name":{"1781":{}},"parent":{}}],["serializespendingcondition",{"_index":1227,"name":{"1785":{}},"parent":{}}],["serializestacksmessage",{"_index":1021,"name":{"1481":{}},"parent":{}}],["serializestandardprincipalcv",{"_index":1103,"name":{"1608":{}},"parent":{}}],["serializestringasciicv",{"_index":1109,"name":{"1614":{}},"parent":{}}],["serializestringcv",{"_index":1108,"name":{"1613":{}},"parent":{}}],["serializestringutf8cv",{"_index":1110,"name":{"1615":{}},"parent":{}}],["serializetransactionauthfield",{"_index":1217,"name":{"1774":{}},"parent":{}}],["serializetuplecv",{"_index":1107,"name":{"1612":{}},"parent":{}}],["server",{"_index":764,"name":{"1110":{}},"parent":{}}],["serverfailuredatabase",{"_index":863,"name":{"1230":{}},"parent":{}}],["serverfailurenosuchchaintip",{"_index":862,"name":{"1229":{}},"parent":{}}],["serverfailureother",{"_index":864,"name":{"1231":{}},"parent":{}}],["service",{"_index":721,"name":{"1040":{}},"parent":{}}],["session_version",{"_index":40,"name":{"44":{}},"parent":{}}],["sessiondatastore",{"_index":42,"name":{"47":{}},"parent":{"48":{},"49":{},"50":{},"51":{}}}],["sessionoptions",{"_index":35,"name":{"37":{}},"parent":{"38":{},"39":{},"40":{},"41":{},"42":{},"43":{}}}],["setcoercemainnetaddress",{"_index":169,"name":{"217":{}},"parent":{}}],["setdefaultencoding",{"_index":1131,"name":{"1639":{}},"parent":{}}],["setencoding",{"_index":1141,"name":{"1649":{}},"parent":{}}],["setfee",{"_index":1203,"name":{"1729":{},"1744":{},"1759":{},"1813":{}},"parent":{}}],["setmaxlisteners",{"_index":1161,"name":{"1671":{}},"parent":{}}],["setnonce",{"_index":1205,"name":{"1731":{},"1746":{},"1761":{},"1814":{}},"parent":{}}],["setsessiondata",{"_index":44,"name":{"50":{}},"parent":{}}],["setsponsor",{"_index":1207,"name":{"1733":{},"1748":{},"1763":{},"1812":{}},"parent":{}}],["setsponsornonce",{"_index":1206,"name":{"1732":{},"1747":{},"1762":{},"1815":{}},"parent":{}}],["sha2hash",{"_index":448,"name":{"583":{}},"parent":{"584":{}}}],["sha512_256",{"_index":1119,"name":{"1625":{}},"parent":{"1626":{},"1627":{},"1628":{},"1629":{},"1630":{},"1631":{},"1632":{},"1633":{},"1634":{},"1635":{},"1636":{},"1637":{},"1638":{},"1639":{},"1640":{},"1641":{},"1642":{},"1643":{},"1644":{},"1645":{},"1646":{},"1647":{},"1648":{},"1649":{},"1650":{},"1651":{},"1652":{},"1653":{},"1654":{},"1655":{},"1656":{},"1657":{},"1658":{},"1659":{},"1660":{},"1661":{},"1662":{},"1663":{},"1664":{},"1665":{},"1666":{},"1667":{},"1668":{},"1669":{},"1670":{},"1671":{},"1672":{},"1673":{},"1674":{},"1675":{},"1676":{}}}],["sighash",{"_index":1248,"name":{"1820":{}},"parent":{}}],["sign",{"_index":470,"name":{"621":{},"627":{},"1120":{}},"parent":{}}],["signandappend",{"_index":1243,"name":{"1810":{}},"parent":{}}],["signanduploadprofile",{"_index":549,"name":{"742":{}},"parent":{}}],["signature",{"_index":1189,"name":{"1705":{},"1715":{}},"parent":{}}],["signature_file_suffix",{"_index":790,"name":{"1149":{}},"parent":{}}],["signaturesrequired",{"_index":1198,"name":{"1722":{}},"parent":{}}],["signaturevalidation",{"_index":849,"name":{"1216":{}},"parent":{}}],["signbegin",{"_index":1237,"name":{"1803":{}},"parent":{}}],["signcontractcall",{"_index":614,"name":{"839":{}},"parent":{}}],["signcontractdeploy",{"_index":615,"name":{"840":{}},"parent":{}}],["signedcontractcalloptions",{"_index":1338,"name":{"2016":{}},"parent":{"2017":{},"2018":{},"2019":{},"2020":{},"2021":{},"2022":{},"2023":{},"2024":{},"2025":{},"2026":{},"2027":{},"2028":{},"2029":{},"2030":{}}}],["signedmultisigcontractcalloptions",{"_index":1340,"name":{"2047":{}},"parent":{"2048":{},"2049":{},"2050":{},"2051":{},"2052":{},"2053":{},"2054":{},"2055":{},"2056":{},"2057":{},"2058":{},"2059":{},"2060":{},"2061":{},"2062":{},"2063":{}}}],["signedmultisigtokentransferoptions",{"_index":1334,"name":{"1978":{}},"parent":{"1979":{},"1980":{},"1981":{},"1982":{},"1983":{},"1984":{},"1985":{},"1986":{},"1987":{},"1988":{},"1989":{},"1990":{},"1991":{}}}],["signedtokentransferoptions",{"_index":1331,"name":{"1953":{}},"parent":{"1954":{},"1955":{},"1956":{},"1957":{},"1958":{},"1959":{},"1960":{},"1961":{},"1962":{},"1963":{},"1964":{}}}],["signer",{"_index":1193,"name":{"1711":{},"1718":{}},"parent":{}}],["signerkeys",{"_index":1328,"name":{"1929":{},"1981":{},"2050":{}},"parent":{}}],["signerversion",{"_index":318,"name":{"397":{},"404":{},"412":{},"424":{}},"parent":{}}],["signin_css",{"_index":390,"name":{"508":{}},"parent":{}}],["signin_desc",{"_index":392,"name":{"510":{}},"parent":{}}],["signin_fmt_id",{"_index":395,"name":{"513":{}},"parent":{}}],["signin_fmt_name",{"_index":394,"name":{"512":{}},"parent":{}}],["signin_footer",{"_index":396,"name":{"514":{}},"parent":{}}],["signin_header",{"_index":391,"name":{"509":{}},"parent":{}}],["signin_scopes",{"_index":393,"name":{"511":{}},"parent":{}}],["signing_node_index",{"_index":505,"name":{"679":{}},"parent":{}}],["signingerror",{"_index":987,"name":{"1379":{}},"parent":{"1380":{},"1381":{},"1382":{},"1383":{},"1384":{}}}],["signnextorigin",{"_index":1240,"name":{"1807":{}},"parent":{}}],["signnextsponsor",{"_index":1241,"name":{"1808":{}},"parent":{}}],["signorigin",{"_index":1253,"name":{"1826":{}},"parent":{}}],["signprofileforupload",{"_index":545,"name":{"738":{}},"parent":{}}],["signprofiletoken",{"_index":672,"name":{"962":{}},"parent":{}}],["signsponsor",{"_index":1255,"name":{"1828":{}},"parent":{}}],["signstxtransfer",{"_index":616,"name":{"841":{}},"parent":{}}],["signtransaction",{"_index":317,"name":{"396":{},"403":{},"411":{},"423":{}},"parent":{}}],["signuserout",{"_index":60,"name":{"69":{}},"parent":{}}],["signwithkey",{"_index":978,"name":{"1350":{}},"parent":{}}],["singlesighashmode",{"_index":875,"name":{"1242":{}},"parent":{}}],["singlesigspendingcondition",{"_index":1191,"name":{"1709":{}},"parent":{"1710":{},"1711":{},"1712":{},"1713":{},"1714":{},"1715":{}}}],["smartcontract",{"_index":804,"name":{"1165":{}},"parent":{}}],["smartcontractpayload",{"_index":1002,"name":{"1430":{}},"parent":{"1431":{},"1432":{},"1433":{},"1434":{}}}],["somecv",{"_index":1086,"name":{"1568":{},"1573":{}},"parent":{"1569":{},"1570":{}}}],["spendingcondition",{"_index":1200,"name":{"1725":{},"1741":{},"1756":{},"1776":{}},"parent":{}}],["sponsoraddresshashmode",{"_index":1346,"name":{"2076":{}},"parent":{}}],["sponsored",{"_index":820,"name":{"1182":{},"1940":{},"1952":{},"1964":{},"1977":{},"1991":{},"1995":{},"2000":{},"2015":{},"2030":{},"2046":{},"2063":{}},"parent":{}}],["sponsoredauthorization",{"_index":1210,"name":{"1753":{}},"parent":{"1754":{},"1755":{},"1756":{},"1757":{},"1758":{},"1759":{},"1760":{},"1761":{},"1762":{},"1763":{},"1764":{},"1765":{},"1766":{},"1767":{}}}],["sponsornonce",{"_index":1345,"name":{"2075":{}},"parent":{}}],["sponsoroptions",{"_index":1343,"name":{"2071":{}},"parent":{"2072":{},"2073":{},"2074":{},"2075":{},"2076":{},"2077":{}}}],["sponsorprivatekey",{"_index":1344,"name":{"2073":{}},"parent":{}}],["sponsorspendingcondition",{"_index":1201,"name":{"1726":{},"1742":{},"1757":{}},"parent":{}}],["sponsortransaction",{"_index":1371,"name":{"2105":{}},"parent":{}}],["stack",{"_index":330,"name":{"432":{},"652":{},"1359":{},"1365":{},"1371":{},"1377":{},"1383":{},"1389":{}},"parent":{}}],["stacks",{"_index":289,"name":{"359":{}},"parent":{}}],["stacks_address_pattern",{"_index":105,"name":{"119":{}},"parent":{}}],["stackskeyinfotype",{"_index":290,"name":{"361":{}},"parent":{"362":{}}}],["stackskeyinfotype.__type",{"_index":291,"name":{},"parent":{"363":{},"364":{},"365":{},"366":{}}}],["stacksmainnet",{"_index":669,"name":{"917":{}},"parent":{"918":{},"919":{},"920":{},"921":{},"922":{},"923":{},"924":{},"925":{},"926":{},"927":{},"928":{},"929":{},"930":{},"931":{}}}],["stacksmessage",{"_index":1020,"name":{"1480":{}},"parent":{}}],["stacksmessagetype",{"_index":792,"name":{"1151":{}},"parent":{"1152":{},"1153":{},"1154":{},"1155":{},"1156":{},"1157":{},"1158":{},"1159":{},"1160":{},"1161":{},"1162":{}}}],["stacksmocknet",{"_index":671,"name":{"947":{}},"parent":{"948":{},"949":{},"950":{},"951":{},"952":{},"953":{},"954":{},"955":{},"956":{},"957":{},"958":{},"959":{},"960":{},"961":{}}}],["stacksnetwork",{"_index":651,"name":{"896":{}},"parent":{"897":{},"898":{},"899":{},"900":{},"901":{},"902":{},"903":{},"904":{},"905":{},"907":{},"909":{},"911":{},"913":{},"915":{}}}],["stacksnetwork.getabiapiurl",{"_index":665,"name":{},"parent":{"912":{}}}],["stacksnetwork.getaccountapiurl",{"_index":663,"name":{},"parent":{"910":{}}}],["stacksnetwork.getbroadcastapiurl",{"_index":659,"name":{},"parent":{"906":{}}}],["stacksnetwork.getnameinfo",{"_index":668,"name":{},"parent":{"916":{}}}],["stacksnetwork.getreadonlyfunctioncallapiurl",{"_index":667,"name":{},"parent":{"914":{}}}],["stacksnetwork.gettransferfeeestimateapiurl",{"_index":661,"name":{},"parent":{"908":{}}}],["stacksprivatekey",{"_index":634,"name":{"866":{},"878":{},"1335":{}},"parent":{"1336":{},"1337":{}}}],["stackspublickey",{"_index":964,"name":{"1332":{}},"parent":{"1333":{},"1334":{}}}],["stackstestnet",{"_index":670,"name":{"932":{}},"parent":{"933":{},"934":{},"935":{},"936":{},"937":{},"938":{},"939":{},"940":{},"941":{},"942":{},"943":{},"944":{},"945":{},"946":{}}}],["stackstransaction",{"_index":1235,"name":{"1794":{}},"parent":{"1795":{},"1796":{},"1797":{},"1798":{},"1799":{},"1800":{},"1801":{},"1802":{},"1803":{},"1804":{},"1805":{},"1806":{},"1807":{},"1808":{},"1809":{},"1810":{},"1811":{},"1812":{},"1813":{},"1814":{},"1815":{},"1816":{}}}],["stackstransactionerror",{"_index":983,"name":{"1355":{}},"parent":{"1356":{},"1357":{},"1358":{},"1359":{},"1360":{}}}],["standard",{"_index":819,"name":{"1181":{},"1207":{}},"parent":{}}],["standardauthorization",{"_index":1209,"name":{"1738":{}},"parent":{"1739":{},"1740":{},"1741":{},"1742":{},"1743":{},"1744":{},"1745":{},"1746":{},"1747":{},"1748":{},"1749":{},"1750":{},"1751":{},"1752":{}}}],["standardprincipal",{"_index":1013,"name":{"1454":{}},"parent":{"1455":{},"1456":{},"1457":{}}}],["standardprincipalcv",{"_index":1052,"name":{"1512":{},"1522":{}},"parent":{"1513":{},"1514":{}}}],["standardprincipalcvfromaddress",{"_index":1056,"name":{"1523":{}},"parent":{}}],["status",{"_index":197,"name":{"245":{},"262":{}},"parent":{}}],["statuscode",{"_index":417,"name":{"538":{}},"parent":{}}],["statustext",{"_index":418,"name":{"539":{}},"parent":{}}],["storage",{"_index":778,"name":{"1135":{}},"parent":{"1136":{},"1137":{},"1138":{},"1139":{},"1140":{},"1141":{},"1142":{},"1143":{},"1144":{},"1145":{},"1146":{},"1147":{},"1148":{}}}],["storageoptions",{"_index":777,"name":{"1133":{}},"parent":{"1134":{}}}],["store",{"_index":51,"name":{"58":{}},"parent":{}}],["store_write",{"_index":1,"name":{"1":{}},"parent":{}}],["storeoptions",{"_index":39,"name":{"43":{}},"parent":{}}],["streetaddress",{"_index":748,"name":{"1086":{}},"parent":{}}],["strength",{"_index":276,"name":{"344":{}},"parent":{}}],["strict",{"_index":131,"name":{"169":{},"985":{}},"parent":{}}],["string",{"_index":1288,"name":{"1877":{},"1882":{}},"parent":{}}],["stringascii",{"_index":1073,"name":{"1541":{}},"parent":{}}],["stringasciicv",{"_index":1095,"name":{"1594":{},"1600":{}},"parent":{"1595":{},"1596":{}}}],["stringcv",{"_index":1097,"name":{"1602":{}},"parent":{}}],["stringify",{"_index":69,"name":{"79":{},"137":{}},"parent":{}}],["stringutf8",{"_index":1074,"name":{"1542":{}},"parent":{}}],["stringutf8cv",{"_index":1096,"name":{"1597":{},"1601":{}},"parent":{"1598":{},"1599":{}}}],["stx",{"_index":815,"name":{"1177":{},"1210":{}},"parent":{}}],["stx_node_index",{"_index":507,"name":{"681":{}},"parent":{}}],["stx_wallet_compatible_seed_strength",{"_index":277,"name":{"345":{}},"parent":{}}],["stxnodekey",{"_index":555,"name":{"749":{}},"parent":{}}],["stxpostcondition",{"_index":989,"name":{"1391":{}},"parent":{"1392":{},"1393":{},"1394":{},"1395":{},"1396":{}}}],["stxtransferoptions",{"_index":607,"name":{"824":{}},"parent":{"825":{},"826":{},"827":{},"828":{},"829":{},"830":{},"831":{}}}],["subdomain",{"_index":532,"name":{"719":{},"726":{}},"parent":{}}],["subdomain_pattern",{"_index":116,"name":{"130":{}},"parent":{}}],["subdomains",{"_index":528,"name":{"714":{}},"parent":{"715":{},"716":{}}}],["subdomains.blockstack",{"_index":543,"name":{"735":{}},"parent":{}}],["subdomains.test",{"_index":539,"name":{"732":{}},"parent":{}}],["subtlecrypto",{"_index":443,"name":{"573":{},"590":{},"614":{},"639":{},"643":{}},"parent":{}}],["success",{"_index":94,"name":{"105":{},"109":{}},"parent":{}}],["sumutxos",{"_index":349,"name":{"459":{}},"parent":{}}],["supports_hub_url",{"_index":389,"name":{"506":{}},"parent":{}}],["symbol.asynciterator",{"_index":1155,"name":{"1665":{}},"parent":{}}],["taxid",{"_index":758,"name":{"1101":{}},"parent":{}}],["test",{"_index":529,"name":{"715":{}},"parent":{}}],["testnet",{"_index":413,"name":{"531":{},"535":{}},"parent":{}}],["testnetmultisig",{"_index":830,"name":{"1192":{}},"parent":{}}],["testnetsinglesig",{"_index":829,"name":{"1191":{}},"parent":{}}],["throwifunavailable",{"_index":423,"name":{"546":{}},"parent":{}}],["timestamp",{"_index":68,"name":{"78":{},"136":{}},"parent":{}}],["tobuffer",{"_index":958,"name":{"1326":{}},"parent":{}}],["tojson",{"_index":679,"name":{"970":{}},"parent":{}}],["token",{"_index":762,"name":{"1108":{}},"parent":{}}],["tokentransfer",{"_index":803,"name":{"1164":{}},"parent":{}}],["tokentransferoptions",{"_index":1329,"name":{"1930":{}},"parent":{"1931":{},"1932":{},"1933":{},"1934":{},"1935":{},"1936":{},"1937":{},"1938":{},"1939":{},"1940":{}}}],["tokentransferpayload",{"_index":1000,"name":{"1417":{}},"parent":{"1418":{},"1419":{},"1420":{},"1421":{},"1422":{}}}],["tostring",{"_index":959,"name":{"1327":{}},"parent":{}}],["totoken",{"_index":680,"name":{"971":{}},"parent":{}}],["transaction",{"_index":1247,"name":{"1819":{},"2072":{}},"parent":{}}],["transactionauthfield",{"_index":801,"name":{"1162":{},"1706":{}},"parent":{"1707":{},"1708":{}}}],["transactionauthfieldcontents",{"_index":1215,"name":{"1772":{}},"parent":{}}],["transactionsigner",{"_index":1246,"name":{"1818":{}},"parent":{"1819":{},"1820":{},"1821":{},"1822":{},"1823":{},"1824":{},"1825":{},"1826":{},"1827":{},"1828":{},"1829":{},"1830":{}}}],["transactionversion",{"_index":415,"name":{"533":{}},"parent":{"534":{},"535":{}}}],["transferfeeestimateendpoint",{"_index":654,"name":{"901":{},"922":{},"937":{},"952":{}},"parent":{}}],["transitkey",{"_index":36,"name":{"40":{}},"parent":{}}],["triplesecdecryptsignature",{"_index":434,"name":{"560":{}},"parent":{"561":{}}}],["truecv",{"_index":1078,"name":{"1546":{},"1551":{}},"parent":{"1547":{}}}],["tuple",{"_index":1072,"name":{"1540":{},"1896":{}},"parent":{}}],["tuplecv",{"_index":1093,"name":{"1588":{},"1593":{}},"parent":{"1589":{},"1590":{}}}],["tupledata",{"_index":1094,"name":{"1591":{}},"parent":{"1592":{}}}],["tx_hash",{"_index":312,"name":{"389":{}},"parent":{}}],["tx_output_n",{"_index":313,"name":{"390":{}},"parent":{}}],["txbroadcastresult",{"_index":1354,"name":{"2087":{}},"parent":{}}],["txbroadcastresultok",{"_index":1349,"name":{"2080":{}},"parent":{}}],["txbroadcastresultrejected",{"_index":1350,"name":{"2081":{}},"parent":{"2082":{}}}],["txbroadcastresultrejected.__type",{"_index":1351,"name":{},"parent":{"2083":{},"2084":{},"2085":{},"2086":{}}}],["txid",{"_index":1244,"name":{"1811":{},"2086":{}},"parent":{}}],["txid_pattern",{"_index":117,"name":{"131":{}},"parent":{}}],["txidfromdata",{"_index":1177,"name":{"1688":{}},"parent":{}}],["txonly",{"_index":207,"name":{"266":{}},"parent":{}}],["txrejectedreason",{"_index":846,"name":{"1213":{}},"parent":{"1214":{},"1215":{},"1216":{},"1217":{},"1218":{},"1219":{},"1220":{},"1221":{},"1222":{},"1223":{},"1224":{},"1225":{},"1226":{},"1227":{},"1228":{},"1229":{},"1230":{},"1231":{}}}],["type",{"_index":6,"name":{"6":{},"92":{},"166":{},"303":{},"439":{},"445":{},"704":{},"708":{},"976":{},"979":{},"981":{},"982":{},"984":{},"988":{},"990":{},"991":{},"993":{},"996":{},"999":{},"1002":{},"1005":{},"1008":{},"1011":{},"1013":{},"1014":{},"1016":{},"1019":{},"1022":{},"1025":{},"1027":{},"1028":{},"1030":{},"1033":{},"1036":{},"1038":{},"1039":{},"1041":{},"1044":{},"1047":{},"1050":{},"1053":{},"1056":{},"1059":{},"1062":{},"1064":{},"1065":{},"1067":{},"1070":{},"1073":{},"1075":{},"1076":{},"1078":{},"1081":{},"1084":{},"1085":{},"1087":{},"1090":{},"1093":{},"1096":{},"1099":{},"1102":{},"1333":{},"1392":{},"1398":{},"1405":{},"1418":{},"1424":{},"1431":{},"1436":{},"1439":{},"1451":{},"1455":{},"1459":{},"1464":{},"1469":{},"1472":{},"1477":{},"1513":{},"1516":{},"1547":{},"1549":{},"1554":{},"1557":{},"1562":{},"1567":{},"1569":{},"1576":{},"1579":{},"1585":{},"1589":{},"1595":{},"1598":{},"1701":{},"1707":{},"1850":{},"1854":{},"1863":{},"1901":{}},"parent":{}}],["uint",{"_index":1061,"name":{"1529":{}},"parent":{}}],["uintcv",{"_index":1082,"name":{"1556":{},"1560":{}},"parent":{"1557":{},"1558":{}}}],["unavailable",{"_index":560,"name":{"755":{}},"parent":{}}],["uncompressed",{"_index":833,"name":{"1195":{}},"parent":{}}],["uncompressed_pubkey_length_bytes",{"_index":871,"name":{"1238":{}},"parent":{}}],["uncork",{"_index":1134,"name":{"1642":{}},"parent":{}}],["units",{"_index":162,"name":{"201":{}},"parent":{}}],["unpipe",{"_index":1145,"name":{"1653":{}},"parent":{}}],["unshift",{"_index":1146,"name":{"1654":{}},"parent":{}}],["unsignedcontractcalloptions",{"_index":1337,"name":{"2001":{}},"parent":{"2002":{},"2003":{},"2004":{},"2005":{},"2006":{},"2007":{},"2008":{},"2009":{},"2010":{},"2011":{},"2012":{},"2013":{},"2014":{},"2015":{}}}],["unsignedmultisigcontractcalloptions",{"_index":1339,"name":{"2031":{}},"parent":{"2032":{},"2033":{},"2034":{},"2035":{},"2036":{},"2037":{},"2038":{},"2039":{},"2040":{},"2041":{},"2042":{},"2043":{},"2044":{},"2045":{},"2046":{}}}],["unsignedmultisigtokentransferoptions",{"_index":1333,"name":{"1965":{}},"parent":{"1966":{},"1967":{},"1968":{},"1969":{},"1970":{},"1971":{},"1972":{},"1973":{},"1974":{},"1975":{},"1976":{},"1977":{}}}],["unsignedtokentransferoptions",{"_index":1330,"name":{"1941":{}},"parent":{"1942":{},"1943":{},"1944":{},"1945":{},"1946":{},"1947":{},"1948":{},"1949":{},"1950":{},"1951":{},"1952":{}}}],["update",{"_index":1120,"name":{"1628":{}},"parent":{}}],["updateconfig",{"_index":646,"name":{"891":{}},"parent":{}}],["updateconfigforreusewarning",{"_index":648,"name":{"893":{}},"parent":{}}],["updateconfigwithauth",{"_index":647,"name":{"892":{}},"parent":{}}],["updateprofileapisettings",{"_index":408,"name":{"526":{}},"parent":{}}],["updateprofileapps",{"_index":407,"name":{"525":{}},"parent":{}}],["uploadprofile",{"_index":546,"name":{"739":{}},"parent":{}}],["uploadresponse",{"_index":765,"name":{"1111":{}},"parent":{"1112":{},"1113":{}}}],["url",{"_index":714,"name":{"1029":{}},"parent":{}}],["url_pattern",{"_index":115,"name":{"129":{}},"parent":{}}],["url_prefix",{"_index":761,"name":{"1107":{}},"parent":{}}],["usage",{"_index":98,"name":{"112":{},"170":{},"310":{}},"parent":{}}],["usagedesc",{"_index":424,"name":{"547":{}},"parent":{}}],["userdata",{"_index":24,"name":{"24":{},"39":{}},"parent":{"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{}}}],["username",{"_index":25,"name":{"25":{},"71":{},"718":{},"725":{},"849":{},"1126":{},"1130":{}},"parent":{}}],["usernames",{"_index":585,"name":{"784":{},"793":{}},"parent":{}}],["usersession",{"_index":50,"name":{"56":{},"1134":{},"1136":{}},"parent":{"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{}}}],["utf8",{"_index":1293,"name":{"1882":{}},"parent":{"1883":{}}}],["utf8.__type",{"_index":1296,"name":{},"parent":{"1884":{}}}],["utxo",{"_index":310,"name":{"386":{}},"parent":{"387":{},"388":{},"389":{},"390":{}}}],["utxoserviceurl",{"_index":76,"name":{"86":{},"144":{},"150":{},"159":{}},"parent":{}}],["validatecontractcall",{"_index":1323,"name":{"1924":{}},"parent":{}}],["validateschema",{"_index":681,"name":{"972":{}},"parent":{}}],["validatestacksaddress",{"_index":1184,"name":{"1695":{}},"parent":{}}],["validatesubdomain",{"_index":581,"name":{"779":{}},"parent":{}}],["validatesubdomainavailability",{"_index":579,"name":{"777":{}},"parent":{}}],["validatesubdomainformat",{"_index":578,"name":{"776":{}},"parent":{}}],["validatewithabi",{"_index":1336,"name":{"1999":{},"2014":{},"2029":{},"2045":{},"2062":{}},"parent":{}}],["value",{"_index":241,"name":{"304":{},"387":{},"1555":{},"1558":{},"1570":{},"1577":{},"1580":{},"1620":{},"1858":{}},"parent":{}}],["values",{"_index":1019,"name":{"1479":{}},"parent":{}}],["variables",{"_index":1281,"name":{"1866":{}},"parent":{}}],["verificationerror",{"_index":988,"name":{"1385":{}},"parent":{"1386":{},"1387":{},"1388":{},"1389":{},"1390":{}}}],["verify",{"_index":774,"name":{"1125":{},"1792":{}},"parent":{}}],["verifybegin",{"_index":1238,"name":{"1804":{}},"parent":{}}],["verifyorigin",{"_index":1208,"name":{"1734":{},"1749":{},"1764":{},"1806":{}},"parent":{}}],["verifyprofiletoken",{"_index":674,"name":{"964":{}},"parent":{}}],["verifysinglesig",{"_index":1234,"name":{"1793":{}},"parent":{}}],["version",{"_index":18,"name":{"18":{},"350":{},"504":{},"811":{},"819":{},"897":{},"918":{},"933":{},"948":{},"1452":{},"1795":{}},"parent":{}}],["wallet",{"_index":635,"name":{"868":{}},"parent":{"869":{},"870":{},"871":{},"872":{},"873":{},"874":{},"875":{},"876":{},"877":{},"878":{},"879":{},"880":{},"881":{},"882":{},"883":{},"884":{},"885":{},"886":{},"887":{},"888":{},"889":{},"890":{},"891":{},"892":{},"893":{},"894":{}}}],["walletconfig",{"_index":623,"name":{"853":{},"867":{},"879":{}},"parent":{"854":{},"855":{}}}],["walletfrommnemonic",{"_index":302,"name":{"378":{}},"parent":{}}],["walletsigner",{"_index":610,"name":{"832":{}},"parent":{"833":{},"834":{},"835":{},"836":{},"837":{},"838":{},"839":{},"840":{},"841":{}}}],["wasstring",{"_index":472,"name":{"623":{},"629":{},"1122":{}},"parent":{}}],["webcryptoaescipher",{"_index":442,"name":{"572":{}},"parent":{"573":{},"574":{},"575":{},"576":{}}}],["webcryptohmacsha256",{"_index":465,"name":{"613":{}},"parent":{"614":{},"615":{},"616":{}}}],["webcryptolib",{"_index":428,"name":{"551":{}},"parent":{"552":{},"553":{}}}],["webcryptopartialpbkdf2",{"_index":480,"name":{"642":{}},"parent":{"643":{},"644":{},"645":{}}}],["webcryptopbkdf2",{"_index":479,"name":{"638":{}},"parent":{"639":{},"640":{},"641":{}}}],["webcryptosha2hash",{"_index":452,"name":{"589":{}},"parent":{"590":{},"591":{},"592":{}}}],["website",{"_index":709,"name":{"1021":{}},"parent":{}}],["whoisinfotype",{"_index":201,"name":{"249":{}},"parent":{"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{}}}],["witnessscript",{"_index":325,"name":{"417":{}},"parent":{}}],["worksfor",{"_index":733,"name":{"1058":{}},"parent":{}}],["wrap",{"_index":1147,"name":{"1655":{}},"parent":{}}],["wrapprofiletoken",{"_index":673,"name":{"963":{}},"parent":{}}],["writable",{"_index":1123,"name":{"1631":{}},"parent":{}}],["writablehighwatermark",{"_index":1124,"name":{"1632":{}},"parent":{}}],["writablelength",{"_index":1125,"name":{"1633":{}},"parent":{}}],["write",{"_index":1130,"name":{"1638":{}},"parent":{}}],["writebigint64be",{"_index":903,"name":{"1271":{}},"parent":{}}],["writebigint64le",{"_index":905,"name":{"1273":{}},"parent":{}}],["writebiguint64be",{"_index":924,"name":{"1292":{}},"parent":{}}],["writebiguint64le",{"_index":926,"name":{"1294":{}},"parent":{}}],["writebuffer",{"_index":948,"name":{"1316":{}},"parent":{}}],["writebuffernt",{"_index":951,"name":{"1319":{}},"parent":{}}],["writedoublebe",{"_index":936,"name":{"1304":{}},"parent":{}}],["writedoublele",{"_index":938,"name":{"1306":{}},"parent":{}}],["writefloatbe",{"_index":930,"name":{"1298":{}},"parent":{}}],["writefloatle",{"_index":932,"name":{"1300":{}},"parent":{}}],["writeint16be",{"_index":895,"name":{"1263":{}},"parent":{}}],["writeint16le",{"_index":897,"name":{"1265":{}},"parent":{}}],["writeint32be",{"_index":899,"name":{"1267":{}},"parent":{}}],["writeint32le",{"_index":901,"name":{"1269":{}},"parent":{}}],["writeint8",{"_index":893,"name":{"1261":{}},"parent":{}}],["writeoffset",{"_index":955,"name":{"1323":{}},"parent":{}}],["writestring",{"_index":942,"name":{"1310":{}},"parent":{}}],["writestringnt",{"_index":945,"name":{"1313":{}},"parent":{}}],["writeuint16be",{"_index":916,"name":{"1284":{}},"parent":{}}],["writeuint16le",{"_index":918,"name":{"1286":{}},"parent":{}}],["writeuint32be",{"_index":920,"name":{"1288":{}},"parent":{}}],["writeuint32le",{"_index":922,"name":{"1290":{}},"parent":{}}],["writeuint8",{"_index":914,"name":{"1282":{}},"parent":{}}],["zonefile",{"_index":198,"name":{"246":{},"263":{},"446":{},"720":{},"762":{}},"parent":{}}],["zonefile_hash",{"_index":199,"name":{"247":{},"264":{}},"parent":{}}],["zonefile_hash_pattern",{"_index":114,"name":{"128":{}},"parent":{}}],["zonefilelookupurl",{"_index":62,"name":{"72":{},"1128":{},"1132":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/classes/appconfig.html b/docs/classes/appconfig.html index 33f9b42a0..1b29008f8 100644 --- a/docs/classes/appconfig.html +++ b/docs/classes/appconfig.html @@ -3,8 +3,8 @@ - AppConfig | blockstack.js 21.1.1 Library Reference - + AppConfig | Stacks.js 1.0.0 Library Reference + @@ -14,7 +14,7 @@
    -