From dfe844372a2533ac223bbdf425220841929edc03 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Thu, 3 Jan 2019 13:25:32 +0100 Subject: [PATCH 001/125] removed several electron references --- app/src/config.json | 15 ++ app/src/helpers/keystore.js | 54 +++++ app/src/helpers/wallet.js | 222 ++++++++++++++++++ .../renderer/components/common/AnchorCopy.vue | 3 +- .../components/common/ShortBech32.vue | 3 +- .../renderer/components/common/TmBtnCopy.vue | 3 +- .../components/common/TmModalError.vue | 30 +-- .../components/common/TmModalNodeHalted.vue | 5 +- .../components/common/TmSessionLoading.vue | 12 +- app/src/renderer/connectors/rpcWrapper.js | 4 +- app/src/renderer/google-analytics.js | 7 +- app/src/renderer/main.js | 99 ++++---- app/src/renderer/vuex/modules/connection.js | 26 +- app/src/renderer/vuex/modules/user.js | 5 +- app/src/renderer/vuex/modules/wallet.js | 62 ++--- 15 files changed, 427 insertions(+), 123 deletions(-) create mode 100644 app/src/config.json create mode 100644 app/src/helpers/keystore.js create mode 100644 app/src/helpers/wallet.js diff --git a/app/src/config.json b/app/src/config.json new file mode 100644 index 0000000000..6e15ed264f --- /dev/null +++ b/app/src/config.json @@ -0,0 +1,15 @@ +{ + "name": "Cosmos Voyager", + "wds_port": 9080, + "lcd_port": 9070, + "lcd_port_prod": 9071, + "relay_port": 9060, + "relay_port_prod": 9061, + "default_tendermint_port": 26657, + "default_network": "gaia-8001", + "node_lcd": "http://fabo.interblock.io:1317", + "node_rpc": "http://fabo.interblock.io:26657", + "google_analytics_uid": "UA-51029217-3", + "sentry_dsn": "https://4dee9f70a7d94cc0959a265c45902d84:cbf160384aab4cdeafbe9a08dee3b961@sentry.io/288169", + "node_halted_timeout": 120000 +} diff --git a/app/src/helpers/keystore.js b/app/src/helpers/keystore.js new file mode 100644 index 0000000000..f1ca7ff746 --- /dev/null +++ b/app/src/helpers/keystore.js @@ -0,0 +1,54 @@ +// require the plugin +// import { SecureStorage } from "nativescript-secure-storage" +// instantiate the plugin +// let secureStorage = new SecureStorage() +let CryptoJS = require(`crypto-js`) +let AES = require(`crypto-js/aes`) + +import { generateWallet, generateWalletFromSeed } from "./wallet.js" + +export async function storeKeyNames(keys) { + // async + await localStorage.set({ + key: `keys`, + value: JSON.stringify(keys) + }) +} +export async function loadKeyNames() { + return await localStorage.get({ + key: `keys` + }) +} +async function storeKey(wallet, name, password) { + let ciphertext = AES.encrypt(JSON.stringify(wallet), password).toString() + await localStorage.set({ + key: `key_` + name, + value: ciphertext + }) +} +export async function addKey(name, password, wallet) { + let keysString = (await loadKeyNames()) || `[]` + let keys = JSON.parse(keysString) + + keys.push({ + name, + address: wallet.cosmosAddress + }) + await storeKeyNames(keys) + + await storeKey(wallet, name, password) + + return wallet +} +export async function addNewKey(name, password) { + const wallet = generateWallet(CryptoJS.lib.WordArray.random) + await addKey(name, password, wallet) + + return wallet +} +export async function importKey(name, password, seed) { + const wallet = generateWalletFromSeed(seed) + await addKey(name, password, wallet) + + return wallet +} diff --git a/app/src/helpers/wallet.js b/app/src/helpers/wallet.js new file mode 100644 index 0000000000..267571ed54 --- /dev/null +++ b/app/src/helpers/wallet.js @@ -0,0 +1,222 @@ +const bip39 = require(`./bip39.min.js`) +const bip32 = require(`./bip32.js`) +const bech32 = require(`bech32`) +const secp256k1 = require(`./secp256k1.min.js`) +import sha256 from "crypto-js/sha256" +import ripemd160 from "crypto-js/ripemd160" +import CryptoJS from "crypto-js" + +const hdPathAtom = `m/44'/118'/0'/0/0` // key controlling ATOM allocation + +export function generateWalletFromSeed(mnemonic) { + try { + const masterKey = deriveMasterKey(mnemonic) + const { privateKey, publicKey } = deriveKeypair(masterKey) + const cosmosAddress = createCosmosAddress(publicKey) + return { + privateKey: privateKey.toString(`hex`), + publicKey: publicKey.toString(`hex`), + cosmosAddress, + mnemonic + } + } catch (err) { + console.error(err) + return {} + } +} + +export function generateWallet(randomByteFunc) { + console.log(randomByteFunc) + const randomBytes = Buffer.from(randomByteFunc(32), `base64`) + if (randomBytes.length !== 32) throw Error(`Entropy has incorrect length`) + + const mnemonic = bip39.entropyToMnemonic(randomBytes.toString(`hex`)) + if (mnemonic.split(` `).length !== 24) + throw Error(`Mnemonic needs to have a length of 24 words.`) + + return generateWalletFromSeed(mnemonic) +} + +/* vectors +pub 52FDFC072182654F163F5F0F9A621D729566C74D10037C4D7BBB0407D1E2C64981 +acc cosmos1v3z3242hq7xrms35gu722v4nt8uux8nvug5gye +pub 855AD8681D0D86D1E91E00167939CB6694D2C422ACD208A0072939487F6999EB9D +acc cosmos1hrtz7umxfyzun8v2xcas0v45hj2uhp6sgdpac8 +*/ + +// let address = createCosmosAddress( +// Buffer.from( +// "52FDFC072182654F163F5F0F9A621D729566C74D10037C4D7BBB0407D1E2C64981", +// "hex" +// ) +// ); +// if (address !== "cosmos1v3z3242hq7xrms35gu722v4nt8uux8nvug5gye") { +// throw new Error( +// "address generation is wrong. Expected cosmos1v3z3242hq7xrms35gu722v4nt8uux8nvug5gye, got " + +// address +// ); +// } +// address = createCosmosAddress( +// Buffer.from( +// "855AD8681D0D86D1E91E00167939CB6694D2C422ACD208A0072939487F6999EB9D", +// "hex" +// ) +// ); +// if (address !== "cosmos1hrtz7umxfyzun8v2xcas0v45hj2uhp6sgdpac8") { +// throw new Error( +// "address generation is wrong. Expected cosmos1hrtz7umxfyzun8v2xcas0v45hj2uhp6sgdpac8, got " + +// address +// ); +// } + +export function createCosmosAddress(publicKey) { + let message = CryptoJS.enc.Hex.parse(publicKey.toString(`hex`)) + const hash = ripemd160(sha256(message)).toString() + const address = Buffer.from(hash, `hex`) + const cosmosAddress = bech32ify(address, `cosmos`) + + if (cosmosAddress.length !== 45) + throw Error(`Cosmos address should have length 45`) + + return cosmosAddress +} +function deriveMasterKey(mnemonic) { + // throws if mnemonic is invalid + bip39.validateMnemonic(mnemonic) + + let seed = bip39.mnemonicToSeed(mnemonic) + let masterKey = bip32.fromSeed(seed) + return masterKey +} + +function deriveKeypair(masterKey) { + const cosmosHD = masterKey.derivePath(hdPathAtom) + + const privateKey = cosmosHD.privateKey + if (privateKey.length !== 32) + throw Error(`privateKey should have length 32 bytes`) + + const publicKey = secp256k1.publicKeyCreate(privateKey, true) + if (publicKey.length !== 33) + throw Error(`publicKey should have length 33 bytes`) + + return { + privateKey, + publicKey + } +} + +function bech32ify(address, prefix) { + if (address.length !== 20) + throw Error(`address should have a length of 20 bytes`) + + let words = bech32.toWords(address) + return bech32.encode(prefix, words) +} + +export function prepareSignBytes(jsonTx) { + if (Array.isArray(jsonTx)) { + return jsonTx.map(prepareSignBytes) + } + + // string or number + if (typeof jsonTx !== `object`) { + return jsonTx + } + + const keys = Object.keys(jsonTx) + if (keys.length === 2 && keys.includes(`type`) && keys.includes(`value`)) { + return prepareSignBytes(jsonTx.value) + } + + let sorted = {} + Object.keys(jsonTx) + .sort() + .forEach(key => { + if (jsonTx[key] === undefined || jsonTx[key] === null) return + + sorted[key] = prepareSignBytes(jsonTx[key]) + }) + return sorted +} + +export function createSignMessage(jsonTx, sequence, account_number, chain_id) { + return JSON.stringify( + prepareSignBytes({ + fee: jsonTx.fee, + memo: jsonTx.memo, + msgs: jsonTx.msg, + sequence, + account_number, + chain_id + }) + ) +} + +export function createSignature(signMessage, privateKey, publicKey) { + const signHash = Buffer.from(sha256(signMessage).toString(), `hex`) + + const { signature } = secp256k1.sign(signHash, Buffer.from(privateKey, `hex`)) + // test created signature + if (!secp256k1.verify(signHash, signature, Buffer.from(publicKey, `hex`))) + throw Error(`Created signature couldn't be verified.`) + + return signature.toString(`base64`) +} + +export function sign(jsonTx, wallet, { sequence, account_number, chain_id }) { + // remove empty values + // Object.keys(jsonObject).forEach(key => { + // if (jsonObject[key] === null || jsonObject[key] === undefined) { + // delete jsonObject[key]; + // } + // }); + + // create StdSignMsg + /* + type StdSignMsg struct { + ChainID string `json:"chain_id"` + AccountNumber uint64 `json:"account_number"` + Sequence uint64 `json:"sequence"` + Fee auth.StdFee `json:"fee"` + Msgs []sdk.Msg `json:"msgs"` + Memo string `json:"memo"` + } + */ + const signMessage = createSignMessage( + jsonTx, + sequence, + account_number, + chain_id + ) + console.log(`signMessage`, signMessage) + + let signature = createSignature( + signMessage, + wallet.privateKey, + wallet.publicKey + ) + + return { + pub_key: { + type: `tendermint/PubKeySecp256k1`, // TODO allow other keytypes + value: Buffer.from(wallet.publicKey, `hex`).toString(`base64`) + }, + signature, + account_number: account_number, + sequence + } +} + +export function createSignedTx(tx, signature) { + return Object.assign({}, tx, { + signatures: [signature] + }) +} + +export function createBroadcastBody(signedTx) { + return JSON.stringify({ + tx: signedTx, + return: `block` + }) +} diff --git a/app/src/renderer/components/common/AnchorCopy.vue b/app/src/renderer/components/common/AnchorCopy.vue index 93df2a77f7..93f7c1b0db 100644 --- a/app/src/renderer/components/common/AnchorCopy.vue +++ b/app/src/renderer/components/common/AnchorCopy.vue @@ -6,7 +6,6 @@ diff --git a/app/src/renderer/components/common/TmModalNodeHalted.vue b/app/src/renderer/components/common/TmModalNodeHalted.vue index b177df85ea..4a220c410a 100644 --- a/app/src/renderer/components/common/TmModalNodeHalted.vue +++ b/app/src/renderer/components/common/TmModalNodeHalted.vue @@ -32,14 +32,15 @@ diff --git a/app/src/renderer/connectors/rpcWrapper.js b/app/src/renderer/connectors/rpcWrapper.js index fa6d9fb06a..fc6c50d9a9 100644 --- a/app/src/renderer/connectors/rpcWrapper.js +++ b/app/src/renderer/connectors/rpcWrapper.js @@ -1,7 +1,7 @@ "use strict" const RpcClient = require(`tendermint`) -const { ipcRenderer } = require(`electron`) +// const { ipcRenderer } = require(`electron`) module.exports = function setRpcWrapper(container) { let rpcWrapper = { @@ -53,7 +53,7 @@ module.exports = function setRpcWrapper(container) { console.log(`trying to reconnect`) - ipcRenderer.send(`reconnect`) + // ipcRenderer.send(`reconnect`) // TODO } } diff --git a/app/src/renderer/google-analytics.js b/app/src/renderer/google-analytics.js index 5122c93d23..e4f486e74b 100644 --- a/app/src/renderer/google-analytics.js +++ b/app/src/renderer/google-analytics.js @@ -1,8 +1,9 @@ "use strict" -import Analytics from "electron-ga" +// import Analytics from "electron-ga" module.exports = function(gaUID) { - const analytics = new Analytics(gaUID) - window.analytics = analytics + // TODO + // const analytics = new Analytics(gaUID) + // window.analytics = analytics } diff --git a/app/src/renderer/main.js b/app/src/renderer/main.js index 5a1d848ff3..760a560267 100644 --- a/app/src/renderer/main.js +++ b/app/src/renderer/main.js @@ -1,20 +1,22 @@ "use strict" import Vue from "vue" -import Electron from "vue-electron" +// import Electron from "vue-electron" import Router from "vue-router" import Tooltip from "vue-directive-tooltip" import Vuelidate from "vuelidate" import * as Sentry from "@sentry/browser" -import { ipcRenderer, remote } from "electron" +// import { ipcRenderer, remote } from "electron" import App from "./App" import routes from "./routes" import Node from "./connectors/node" import Store from "./vuex/store" -import AxiosProxy from "./scripts/axiosProxy" +import axios from "axios" +import { sleep } from "./scripts/common" -const config = remote.getGlobal(`config`) +// const config = remote.getGlobal(`config`) +const config = require(`../../src/config.json`) // exporting this for testing let store @@ -59,7 +61,7 @@ Guru Meditation #${trace}`) } } -Vue.use(Electron) +// Vue.use(Electron) Vue.use(Router) Vue.use(Tooltip, { delay: 1 }) Vue.use(Vuelidate) @@ -76,7 +78,7 @@ async function main() { let localLcdURL = `https://localhost:${lcdPort}` console.log(`Expecting lcd-server on port: ` + lcdPort) - node = Node(AxiosProxy(), localLcdURL, config.node_lcd, config.mocked) + node = Node(axios, localLcdURL, config.node_lcd, config.mocked) store = Store({ node }) store.dispatch(`loadTheme`) @@ -92,44 +94,53 @@ async function main() { next() }) - ipcRenderer.on(`error`, (event, err) => { - switch (err.code) { - case `NO_NODES_AVAILABLE`: - store.commit(`setModalNoNodes`, true) - break - default: - store.commit(`setModalError`, true) - store.commit(`setModalErrorMessage`, err.message) - } - }) - ipcRenderer.on(`approve-hash`, (event, hash) => { - console.log(hash) - store.commit(`setNodeApprovalRequired`, hash) - }) - - let firstStart = true - ipcRenderer.on(`connected`, (event, { rpcURL }) => { - node.rpcConnect(rpcURL) - store.dispatch(`rpcSubscribe`) - store.dispatch(`subscribeToBlocks`) - - if (firstStart) { - store.dispatch(`showInitialScreen`) - - // test connection - node.lcdConnected().then(connected => { - if (connected) { - ipcRenderer.send(`successful-launch`) - } - }) - - firstStart = false - } else { - store.dispatch(`reconnected`) - } - }) - - ipcRenderer.send(`booted`) + // ipcRenderer.on(`error`, (event, err) => { + // switch (err.code) { + // case `NO_NODES_AVAILABLE`: + // store.commit(`setModalNoNodes`, true) + // break + // default: + // store.commit(`setModalError`, true) + // store.commit(`setModalErrorMessage`, err.message) + // } + // }) + // ipcRenderer.on(`approve-hash`, (event, hash) => { + // console.log(hash) + // store.commit(`setNodeApprovalRequired`, hash) + // }) + + // let firstStart = true + // ipcRenderer.on(`connected`, (event, { rpcURL }) => { + // node.rpcConnect(rpcURL) + // store.dispatch(`rpcSubscribe`) + // store.dispatch(`subscribeToBlocks`) + + // if (firstStart) { + // store.dispatch(`showInitialScreen`) + + // // test connection + // node.lcdConnected().then(connected => { + // if (connected) { + // ipcRenderer.send(`successful-launch`) + // } + // }) + + // firstStart = false + // } else { + // store.dispatch(`reconnected`) + // } + // }) + + // ipcRenderer.send(`booted`) + + while (true) { + try { + await axios(`https://localhost:9070/keys`) + break + } catch (err) {} + await sleep(1000) + } + store.dispatch(`showInitialScreen`) return new Vue({ router, diff --git a/app/src/renderer/vuex/modules/connection.js b/app/src/renderer/vuex/modules/connection.js index d269dc4af9..343fe65451 100644 --- a/app/src/renderer/vuex/modules/connection.js +++ b/app/src/renderer/vuex/modules/connection.js @@ -1,8 +1,8 @@ -import { ipcRenderer, remote } from "electron" +// import { ipcRenderer, remote } from "electron" import * as Sentry from "@sentry/browser" import { sleep } from "scripts/common.js" -const config = remote.getGlobal(`config`) +const config = require(`../../../config.json`) const NODE_HALTED_TIMEOUT = config.node_halted_timeout export default function({ node }) { @@ -138,19 +138,19 @@ export default function({ node }) { }, timeout) }) }, - approveNodeHash({ state }, hash) { - state.approvalRequired = null - ipcRenderer.send(`hash-approved`, hash) - }, - disapproveNodeHash({ state }, hash) { - state.approvalRequired = null - ipcRenderer.send(`hash-disapproved`, hash) - }, + // approveNodeHash({ state }, hash) { + // state.approvalRequired = null + // ipcRenderer.send(`hash-approved`, hash) + // }, + // disapproveNodeHash({ state }, hash) { + // state.approvalRequired = null + // ipcRenderer.send(`hash-disapproved`, hash) + // }, async setMockedConnector({ state, dispatch, commit }, mocked) { state.mocked = mocked // Tell the main process our status in case of reload. - ipcRenderer.send(`mocked`, mocked) + // ipcRenderer.send(`mocked`, mocked) // disable updates from the live node node.rpcDisconnect() @@ -163,7 +163,7 @@ export default function({ node }) { if (mocked) { // if we run a mocked version only, we don't want the lcd to run in the meantime - ipcRenderer.send(`stop-lcd`) + // ipcRenderer.send(`stop-lcd`) // we need to trigger this event for the mocked mode as it is usually triggered by the "connected" event from the main thread dispatch(`rpcSubscribe`) @@ -173,7 +173,7 @@ export default function({ node }) { } else { // if we switch to a live connector, we need to wait for the process to have started up again so we can access the KMS commit(`setModalSession`, `loading`) - await new Promise(resolve => ipcRenderer.once(`connected`, resolve)) + // await new Promise(resolve => ipcRenderer.once(`connected`, resolve)) } // sign user out, as when switching from mocked to live node, the account address needs to be clarified again diff --git a/app/src/renderer/vuex/modules/user.js b/app/src/renderer/vuex/modules/user.js index 162ea728b2..f17fa1207d 100644 --- a/app/src/renderer/vuex/modules/user.js +++ b/app/src/renderer/vuex/modules/user.js @@ -1,7 +1,8 @@ import * as Sentry from "@sentry/browser" -import { ipcRenderer, remote } from "electron" +// import { ipcRenderer, remote } from "electron" import enableGoogleAnalytics from "../../google-analytics.js" -const config = remote.getGlobal(`config`) +// const config = remote.getGlobal(`config`) +const config = require(`../../../config.json`) export default ({ node }) => { const ERROR_COLLECTION_KEY = `voyager_error_collection` diff --git a/app/src/renderer/vuex/modules/wallet.js b/app/src/renderer/vuex/modules/wallet.js index a8bdf5e5c0..c652fce391 100644 --- a/app/src/renderer/vuex/modules/wallet.js +++ b/app/src/renderer/vuex/modules/wallet.js @@ -1,9 +1,9 @@ import * as Sentry from "@sentry/browser" import fs from "fs-extra" import { join } from "path" -import { remote } from "electron" +// import { remote } from "electron" import { sleep } from "scripts/common.js" -const root = remote.getGlobal(`root`) +// const root = remote.getGlobal(`root`) export default ({ node }) => { let emptyState = { @@ -85,39 +85,39 @@ export default ({ node }) => { } }, async loadDenoms({ commit, state }, maxIterations = 10) { - // read genesis.json to get default denoms + // // read genesis.json to get default denoms - // wait for genesis.json to exist - let genesisPath = join(root, `genesis.json`) + // // wait for genesis.json to exist + // let genesisPath = join(root, `genesis.json`) - // wait for the genesis and load it - // at some point give up and throw an error - while (maxIterations) { - try { - await fs.pathExists(genesisPath) - break - } catch (error) { - console.log(`waiting for genesis`, error, genesisPath) - maxIterations-- - await sleep(500) - } - } - if (maxIterations === 0) { - const error = new Error(`Couldn't load genesis at path ${genesisPath}`) - Sentry.captureException(error) - state.error = error - return - } + // // wait for the genesis and load it + // // at some point give up and throw an error + // while (maxIterations) { + // try { + // await fs.pathExists(genesisPath) + // break + // } catch (error) { + // console.log(`waiting for genesis`, error, genesisPath) + // maxIterations-- + // await sleep(500) + // } + // } + // if (maxIterations === 0) { + // const error = new Error(`Couldn't load genesis at path ${genesisPath}`) + // Sentry.captureException(error) + // state.error = error + // return + // } - let genesis = await fs.readJson(genesisPath) + // let genesis = await fs.readJson(genesisPath) let denoms = [] - for (let account of genesis.app_state.accounts) { - if (account.coins) { - for (let { denom } of account.coins) { - denoms.push(denom) - } - } - } + // for (let account of genesis.app_state.accounts) { + // if (account.coins) { + // for (let { denom } of account.coins) { + // denoms.push(denom) + // } + // } + // } commit(`setDenoms`, denoms) }, From 99e12372a9effeb3af70f32107e4a1959f20267f Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Thu, 3 Jan 2019 14:29:50 +0100 Subject: [PATCH 002/125] basic sign in working --- app/index.ejs | 4 - app/src/helpers/bip32.js | 20143 ++++++++++ app/src/helpers/bip39.min.js | 31484 ++++++++++++++++ app/src/helpers/keystore.js | 27 +- app/src/helpers/secp256k1.min.js | 15988 ++++++++ app/src/helpers/wallet.js | 11 +- .../components/common/TmSessionSignIn.vue | 32 +- .../components/common/TmSessionSignUp.vue | 49 +- app/src/renderer/main.js | 44 +- app/src/renderer/vuex/modules/user.js | 30 +- app/src/renderer/vuex/modules/wallet.js | 6 +- tasks/runner.js | 88 +- tasks/testnet.js | 6 +- webpack.renderer.config.js | 6 +- 14 files changed, 67750 insertions(+), 168 deletions(-) create mode 100644 app/src/helpers/bip32.js create mode 100644 app/src/helpers/bip39.min.js create mode 100644 app/src/helpers/secp256k1.min.js diff --git a/app/index.ejs b/app/index.ejs index 98861f9afd..1f4150ec91 100644 --- a/app/index.ejs +++ b/app/index.ejs @@ -6,10 +6,6 @@ Cosmos Voyager <% if (htmlWebpackPlugin.options.appModules) { %> - - <% } %> diff --git a/app/src/helpers/bip32.js b/app/src/helpers/bip32.js new file mode 100644 index 0000000000..69ea573841 --- /dev/null +++ b/app/src/helpers/bip32.js @@ -0,0 +1,20143 @@ +;(function(f) { + if (typeof exports === "object" && typeof module !== "undefined") { + module.exports = f() + } else if (typeof define === "function" && define.amd) { + define([], f) + } else { + var g + if (typeof window !== "undefined") { + g = window + } else if (typeof global !== "undefined") { + g = global + } else if (typeof self !== "undefined") { + g = self + } else { + g = this + } + g.bip32 = f() + } +})(function() { + var define, module, exports + return (function() { + function r(e, n, t) { + function o(i, f) { + if (!n[i]) { + if (!e[i]) { + var c = "function" == typeof require && require + if (!f && c) return c(i, !0) + if (u) return u(i, !0) + var a = new Error("Cannot find module '" + i + "'") + throw ((a.code = "MODULE_NOT_FOUND"), a) + } + var p = (n[i] = { exports: {} }) + e[i][0].call( + p.exports, + function(r) { + var n = e[i][1][r] + return o(n || r) + }, + p, + p.exports, + r, + e, + n, + t + ) + } + return n[i].exports + } + for ( + var u = "function" == typeof require && require, i = 0; + i < t.length; + i++ + ) + o(t[i]) + return o + } + return r + })()( + { + 1: [ + function(require, module, exports) { + "use strict" + + exports.byteLength = byteLength + exports.toByteArray = toByteArray + exports.fromByteArray = fromByteArray + + var lookup = [] + var revLookup = [] + var Arr = typeof Uint8Array !== "undefined" ? Uint8Array : Array + + var code = + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" + for (var i = 0, len = code.length; i < len; ++i) { + lookup[i] = code[i] + revLookup[code.charCodeAt(i)] = i + } + + // Support decoding URL-safe base64 strings, as Node.js does. + // See: https://en.wikipedia.org/wiki/Base64#URL_applications + revLookup["-".charCodeAt(0)] = 62 + revLookup["_".charCodeAt(0)] = 63 + + function getLens(b64) { + var len = b64.length + + if (len % 4 > 0) { + throw new Error("Invalid string. Length must be a multiple of 4") + } + + // Trim off extra bytes after placeholder bytes are found + // See: https://github.com/beatgammit/base64-js/issues/42 + var validLen = b64.indexOf("=") + if (validLen === -1) validLen = len + + var placeHoldersLen = validLen === len ? 0 : 4 - (validLen % 4) + + return [validLen, placeHoldersLen] + } + + // base64 is 4/3 + up to two characters of the original data + function byteLength(b64) { + var lens = getLens(b64) + var validLen = lens[0] + var placeHoldersLen = lens[1] + return ((validLen + placeHoldersLen) * 3) / 4 - placeHoldersLen + } + + function _byteLength(b64, validLen, placeHoldersLen) { + return ((validLen + placeHoldersLen) * 3) / 4 - placeHoldersLen + } + + function toByteArray(b64) { + var tmp + var lens = getLens(b64) + var validLen = lens[0] + var placeHoldersLen = lens[1] + + var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen)) + + var curByte = 0 + + // if there are placeholders, only get up to the last complete 4 chars + var len = placeHoldersLen > 0 ? validLen - 4 : validLen + + for (var i = 0; i < len; i += 4) { + tmp = + (revLookup[b64.charCodeAt(i)] << 18) | + (revLookup[b64.charCodeAt(i + 1)] << 12) | + (revLookup[b64.charCodeAt(i + 2)] << 6) | + revLookup[b64.charCodeAt(i + 3)] + arr[curByte++] = (tmp >> 16) & 0xff + arr[curByte++] = (tmp >> 8) & 0xff + arr[curByte++] = tmp & 0xff + } + + if (placeHoldersLen === 2) { + tmp = + (revLookup[b64.charCodeAt(i)] << 2) | + (revLookup[b64.charCodeAt(i + 1)] >> 4) + arr[curByte++] = tmp & 0xff + } + + if (placeHoldersLen === 1) { + tmp = + (revLookup[b64.charCodeAt(i)] << 10) | + (revLookup[b64.charCodeAt(i + 1)] << 4) | + (revLookup[b64.charCodeAt(i + 2)] >> 2) + arr[curByte++] = (tmp >> 8) & 0xff + arr[curByte++] = tmp & 0xff + } + + return arr + } + + function tripletToBase64(num) { + return ( + lookup[(num >> 18) & 0x3f] + + lookup[(num >> 12) & 0x3f] + + lookup[(num >> 6) & 0x3f] + + lookup[num & 0x3f] + ) + } + + function encodeChunk(uint8, start, end) { + var tmp + var output = [] + for (var i = start; i < end; i += 3) { + tmp = + ((uint8[i] << 16) & 0xff0000) + + ((uint8[i + 1] << 8) & 0xff00) + + (uint8[i + 2] & 0xff) + output.push(tripletToBase64(tmp)) + } + return output.join("") + } + + function fromByteArray(uint8) { + var tmp + var len = uint8.length + var extraBytes = len % 3 // if we have 1 byte left, pad 2 bytes + var parts = [] + var maxChunkLength = 16383 // must be multiple of 3 + + // go through the array every three bytes, we'll deal with trailing stuff later + for ( + var i = 0, len2 = len - extraBytes; + i < len2; + i += maxChunkLength + ) { + parts.push( + encodeChunk( + uint8, + i, + i + maxChunkLength > len2 ? len2 : i + maxChunkLength + ) + ) + } + + // pad the end with zeros, but make sure to not forget the extra bytes + if (extraBytes === 1) { + tmp = uint8[len - 1] + parts.push(lookup[tmp >> 2] + lookup[(tmp << 4) & 0x3f] + "==") + } else if (extraBytes === 2) { + tmp = (uint8[len - 2] << 8) + uint8[len - 1] + parts.push( + lookup[tmp >> 10] + + lookup[(tmp >> 4) & 0x3f] + + lookup[(tmp << 2) & 0x3f] + + "=" + ) + } + + return parts.join("") + } + }, + {} + ], + 2: [function(require, module, exports) {}, {}], + 3: [ + function(require, module, exports) { + /*! + * The buffer module from node.js, for the browser. + * + * @author Feross Aboukhadijeh + * @license MIT + */ + /* eslint-disable no-proto */ + + "use strict" + + var base64 = require("base64-js") + var ieee754 = require("ieee754") + + exports.Buffer = Buffer + exports.SlowBuffer = SlowBuffer + exports.INSPECT_MAX_BYTES = 50 + + var K_MAX_LENGTH = 0x7fffffff + exports.kMaxLength = K_MAX_LENGTH + + /** + * If `Buffer.TYPED_ARRAY_SUPPORT`: + * === true Use Uint8Array implementation (fastest) + * === false Print warning and recommend using `buffer` v4.x which has an Object + * implementation (most compatible, even IE6) + * + * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+, + * Opera 11.6+, iOS 4.2+. + * + * We report that the browser does not support typed arrays if the are not subclassable + * using __proto__. Firefox 4-29 lacks support for adding new properties to `Uint8Array` + * (See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438). IE 10 lacks support + * for __proto__ and has a buggy typed array implementation. + */ + Buffer.TYPED_ARRAY_SUPPORT = typedArraySupport() + + if ( + !Buffer.TYPED_ARRAY_SUPPORT && + typeof console !== "undefined" && + typeof console.error === "function" + ) { + console.error( + "This browser lacks typed array (Uint8Array) support which is required by " + + "`buffer` v5.x. Use `buffer` v4.x if you require old browser support." + ) + } + + function typedArraySupport() { + // Can typed array instances can be augmented? + try { + var arr = new Uint8Array(1) + arr.__proto__ = { + __proto__: Uint8Array.prototype, + foo: function() { + return 42 + } + } + return arr.foo() === 42 + } catch (e) { + return false + } + } + + Object.defineProperty(Buffer.prototype, "parent", { + enumerable: true, + get: function() { + if (!Buffer.isBuffer(this)) return undefined + return this.buffer + } + }) + + Object.defineProperty(Buffer.prototype, "offset", { + enumerable: true, + get: function() { + if (!Buffer.isBuffer(this)) return undefined + return this.byteOffset + } + }) + + function createBuffer(length) { + if (length > K_MAX_LENGTH) { + throw new RangeError( + 'The value "' + length + '" is invalid for option "size"' + ) + } + // Return an augmented `Uint8Array` instance + var buf = new Uint8Array(length) + buf.__proto__ = Buffer.prototype + return buf + } + + /** + * The Buffer constructor returns instances of `Uint8Array` that have their + * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of + * `Uint8Array`, so the returned instances will have all the node `Buffer` methods + * and the `Uint8Array` methods. Square bracket notation works as expected -- it + * returns a single octet. + * + * The `Uint8Array` prototype remains unmodified. + */ + + function Buffer(arg, encodingOrOffset, length) { + // Common case. + if (typeof arg === "number") { + if (typeof encodingOrOffset === "string") { + throw new TypeError( + 'The "string" argument must be of type string. Received type number' + ) + } + return allocUnsafe(arg) + } + return from(arg, encodingOrOffset, length) + } + + // Fix subarray() in ES2016. See: https://github.com/feross/buffer/pull/97 + if ( + typeof Symbol !== "undefined" && + Symbol.species != null && + Buffer[Symbol.species] === Buffer + ) { + Object.defineProperty(Buffer, Symbol.species, { + value: null, + configurable: true, + enumerable: false, + writable: false + }) + } + + Buffer.poolSize = 8192 // not used by this implementation + + function from(value, encodingOrOffset, length) { + if (typeof value === "string") { + return fromString(value, encodingOrOffset) + } + + if (ArrayBuffer.isView(value)) { + return fromArrayLike(value) + } + + if (value == null) { + throw TypeError( + "The first argument must be one of type string, Buffer, ArrayBuffer, Array, " + + "or Array-like Object. Received type " + + typeof value + ) + } + + if ( + isInstance(value, ArrayBuffer) || + (value && isInstance(value.buffer, ArrayBuffer)) + ) { + return fromArrayBuffer(value, encodingOrOffset, length) + } + + if (typeof value === "number") { + throw new TypeError( + 'The "value" argument must not be of type number. Received type number' + ) + } + + var valueOf = value.valueOf && value.valueOf() + if (valueOf != null && valueOf !== value) { + return Buffer.from(valueOf, encodingOrOffset, length) + } + + var b = fromObject(value) + if (b) return b + + if ( + typeof Symbol !== "undefined" && + Symbol.toPrimitive != null && + typeof value[Symbol.toPrimitive] === "function" + ) { + return Buffer.from( + value[Symbol.toPrimitive]("string"), + encodingOrOffset, + length + ) + } + + throw new TypeError( + "The first argument must be one of type string, Buffer, ArrayBuffer, Array, " + + "or Array-like Object. Received type " + + typeof value + ) + } + + /** + * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError + * if value is a number. + * Buffer.from(str[, encoding]) + * Buffer.from(array) + * Buffer.from(buffer) + * Buffer.from(arrayBuffer[, byteOffset[, length]]) + **/ + Buffer.from = function(value, encodingOrOffset, length) { + return from(value, encodingOrOffset, length) + } + + // Note: Change prototype *after* Buffer.from is defined to workaround Chrome bug: + // https://github.com/feross/buffer/pull/148 + Buffer.prototype.__proto__ = Uint8Array.prototype + Buffer.__proto__ = Uint8Array + + function assertSize(size) { + if (typeof size !== "number") { + throw new TypeError('"size" argument must be of type number') + } else if (size < 0) { + throw new RangeError( + 'The value "' + size + '" is invalid for option "size"' + ) + } + } + + function alloc(size, fill, encoding) { + assertSize(size) + if (size <= 0) { + return createBuffer(size) + } + if (fill !== undefined) { + // Only pay attention to encoding if it's a string. This + // prevents accidentally sending in a number that would + // be interpretted as a start offset. + return typeof encoding === "string" + ? createBuffer(size).fill(fill, encoding) + : createBuffer(size).fill(fill) + } + return createBuffer(size) + } + + /** + * Creates a new filled Buffer instance. + * alloc(size[, fill[, encoding]]) + **/ + Buffer.alloc = function(size, fill, encoding) { + return alloc(size, fill, encoding) + } + + function allocUnsafe(size) { + assertSize(size) + return createBuffer(size < 0 ? 0 : checked(size) | 0) + } + + /** + * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance. + * */ + Buffer.allocUnsafe = function(size) { + return allocUnsafe(size) + } + /** + * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance. + */ + Buffer.allocUnsafeSlow = function(size) { + return allocUnsafe(size) + } + + function fromString(string, encoding) { + if (typeof encoding !== "string" || encoding === "") { + encoding = "utf8" + } + + if (!Buffer.isEncoding(encoding)) { + throw new TypeError("Unknown encoding: " + encoding) + } + + var length = byteLength(string, encoding) | 0 + var buf = createBuffer(length) + + var actual = buf.write(string, encoding) + + if (actual !== length) { + // Writing a hex string, for example, that contains invalid characters will + // cause everything after the first invalid character to be ignored. (e.g. + // 'abxxcd' will be treated as 'ab') + buf = buf.slice(0, actual) + } + + return buf + } + + function fromArrayLike(array) { + var length = array.length < 0 ? 0 : checked(array.length) | 0 + var buf = createBuffer(length) + for (var i = 0; i < length; i += 1) { + buf[i] = array[i] & 255 + } + return buf + } + + function fromArrayBuffer(array, byteOffset, length) { + if (byteOffset < 0 || array.byteLength < byteOffset) { + throw new RangeError('"offset" is outside of buffer bounds') + } + + if (array.byteLength < byteOffset + (length || 0)) { + throw new RangeError('"length" is outside of buffer bounds') + } + + var buf + if (byteOffset === undefined && length === undefined) { + buf = new Uint8Array(array) + } else if (length === undefined) { + buf = new Uint8Array(array, byteOffset) + } else { + buf = new Uint8Array(array, byteOffset, length) + } + + // Return an augmented `Uint8Array` instance + buf.__proto__ = Buffer.prototype + return buf + } + + function fromObject(obj) { + if (Buffer.isBuffer(obj)) { + var len = checked(obj.length) | 0 + var buf = createBuffer(len) + + if (buf.length === 0) { + return buf + } + + obj.copy(buf, 0, 0, len) + return buf + } + + if (obj.length !== undefined) { + if (typeof obj.length !== "number" || numberIsNaN(obj.length)) { + return createBuffer(0) + } + return fromArrayLike(obj) + } + + if (obj.type === "Buffer" && Array.isArray(obj.data)) { + return fromArrayLike(obj.data) + } + } + + function checked(length) { + // Note: cannot use `length < K_MAX_LENGTH` here because that fails when + // length is NaN (which is otherwise coerced to zero.) + if (length >= K_MAX_LENGTH) { + throw new RangeError( + "Attempt to allocate Buffer larger than maximum " + + "size: 0x" + + K_MAX_LENGTH.toString(16) + + " bytes" + ) + } + return length | 0 + } + + function SlowBuffer(length) { + if (+length != length) { + // eslint-disable-line eqeqeq + length = 0 + } + return Buffer.alloc(+length) + } + + Buffer.isBuffer = function isBuffer(b) { + return b != null && b._isBuffer === true && b !== Buffer.prototype // so Buffer.isBuffer(Buffer.prototype) will be false + } + + Buffer.compare = function compare(a, b) { + if (isInstance(a, Uint8Array)) + a = Buffer.from(a, a.offset, a.byteLength) + if (isInstance(b, Uint8Array)) + b = Buffer.from(b, b.offset, b.byteLength) + if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) { + throw new TypeError( + 'The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array' + ) + } + + if (a === b) return 0 + + var x = a.length + var y = b.length + + for (var i = 0, len = Math.min(x, y); i < len; ++i) { + if (a[i] !== b[i]) { + x = a[i] + y = b[i] + break + } + } + + if (x < y) return -1 + if (y < x) return 1 + return 0 + } + + Buffer.isEncoding = function isEncoding(encoding) { + switch (String(encoding).toLowerCase()) { + case "hex": + case "utf8": + case "utf-8": + case "ascii": + case "latin1": + case "binary": + case "base64": + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return true + default: + return false + } + } + + Buffer.concat = function concat(list, length) { + if (!Array.isArray(list)) { + throw new TypeError('"list" argument must be an Array of Buffers') + } + + if (list.length === 0) { + return Buffer.alloc(0) + } + + var i + if (length === undefined) { + length = 0 + for (i = 0; i < list.length; ++i) { + length += list[i].length + } + } + + var buffer = Buffer.allocUnsafe(length) + var pos = 0 + for (i = 0; i < list.length; ++i) { + var buf = list[i] + if (isInstance(buf, Uint8Array)) { + buf = Buffer.from(buf) + } + if (!Buffer.isBuffer(buf)) { + throw new TypeError( + '"list" argument must be an Array of Buffers' + ) + } + buf.copy(buffer, pos) + pos += buf.length + } + return buffer + } + + function byteLength(string, encoding) { + if (Buffer.isBuffer(string)) { + return string.length + } + if (ArrayBuffer.isView(string) || isInstance(string, ArrayBuffer)) { + return string.byteLength + } + if (typeof string !== "string") { + throw new TypeError( + 'The "string" argument must be one of type string, Buffer, or ArrayBuffer. ' + + "Received type " + + typeof string + ) + } + + var len = string.length + var mustMatch = arguments.length > 2 && arguments[2] === true + if (!mustMatch && len === 0) return 0 + + // Use a for loop to avoid recursion + var loweredCase = false + for (;;) { + switch (encoding) { + case "ascii": + case "latin1": + case "binary": + return len + case "utf8": + case "utf-8": + return utf8ToBytes(string).length + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return len * 2 + case "hex": + return len >>> 1 + case "base64": + return base64ToBytes(string).length + default: + if (loweredCase) { + return mustMatch ? -1 : utf8ToBytes(string).length // assume utf8 + } + encoding = ("" + encoding).toLowerCase() + loweredCase = true + } + } + } + Buffer.byteLength = byteLength + + function slowToString(encoding, start, end) { + var loweredCase = false + + // No need to verify that "this.length <= MAX_UINT32" since it's a read-only + // property of a typed array. + + // This behaves neither like String nor Uint8Array in that we set start/end + // to their upper/lower bounds if the value passed is out of range. + // undefined is handled specially as per ECMA-262 6th Edition, + // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization. + if (start === undefined || start < 0) { + start = 0 + } + // Return early if start > this.length. Done here to prevent potential uint32 + // coercion fail below. + if (start > this.length) { + return "" + } + + if (end === undefined || end > this.length) { + end = this.length + } + + if (end <= 0) { + return "" + } + + // Force coersion to uint32. This will also coerce falsey/NaN values to 0. + end >>>= 0 + start >>>= 0 + + if (end <= start) { + return "" + } + + if (!encoding) encoding = "utf8" + + while (true) { + switch (encoding) { + case "hex": + return hexSlice(this, start, end) + + case "utf8": + case "utf-8": + return utf8Slice(this, start, end) + + case "ascii": + return asciiSlice(this, start, end) + + case "latin1": + case "binary": + return latin1Slice(this, start, end) + + case "base64": + return base64Slice(this, start, end) + + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return utf16leSlice(this, start, end) + + default: + if (loweredCase) + throw new TypeError("Unknown encoding: " + encoding) + encoding = (encoding + "").toLowerCase() + loweredCase = true + } + } + } + + // This property is used by `Buffer.isBuffer` (and the `is-buffer` npm package) + // to detect a Buffer instance. It's not possible to use `instanceof Buffer` + // reliably in a browserify context because there could be multiple different + // copies of the 'buffer' package in use. This method works even for Buffer + // instances that were created from another copy of the `buffer` package. + // See: https://github.com/feross/buffer/issues/154 + Buffer.prototype._isBuffer = true + + function swap(b, n, m) { + var i = b[n] + b[n] = b[m] + b[m] = i + } + + Buffer.prototype.swap16 = function swap16() { + var len = this.length + if (len % 2 !== 0) { + throw new RangeError("Buffer size must be a multiple of 16-bits") + } + for (var i = 0; i < len; i += 2) { + swap(this, i, i + 1) + } + return this + } + + Buffer.prototype.swap32 = function swap32() { + var len = this.length + if (len % 4 !== 0) { + throw new RangeError("Buffer size must be a multiple of 32-bits") + } + for (var i = 0; i < len; i += 4) { + swap(this, i, i + 3) + swap(this, i + 1, i + 2) + } + return this + } + + Buffer.prototype.swap64 = function swap64() { + var len = this.length + if (len % 8 !== 0) { + throw new RangeError("Buffer size must be a multiple of 64-bits") + } + for (var i = 0; i < len; i += 8) { + swap(this, i, i + 7) + swap(this, i + 1, i + 6) + swap(this, i + 2, i + 5) + swap(this, i + 3, i + 4) + } + return this + } + + Buffer.prototype.toString = function toString() { + var length = this.length + if (length === 0) return "" + if (arguments.length === 0) return utf8Slice(this, 0, length) + return slowToString.apply(this, arguments) + } + + Buffer.prototype.toLocaleString = Buffer.prototype.toString + + Buffer.prototype.equals = function equals(b) { + if (!Buffer.isBuffer(b)) + throw new TypeError("Argument must be a Buffer") + if (this === b) return true + return Buffer.compare(this, b) === 0 + } + + Buffer.prototype.inspect = function inspect() { + var str = "" + var max = exports.INSPECT_MAX_BYTES + str = this.toString("hex", 0, max) + .replace(/(.{2})/g, "$1 ") + .trim() + if (this.length > max) str += " ... " + return "" + } + + Buffer.prototype.compare = function compare( + target, + start, + end, + thisStart, + thisEnd + ) { + if (isInstance(target, Uint8Array)) { + target = Buffer.from(target, target.offset, target.byteLength) + } + if (!Buffer.isBuffer(target)) { + throw new TypeError( + 'The "target" argument must be one of type Buffer or Uint8Array. ' + + "Received type " + + typeof target + ) + } + + if (start === undefined) { + start = 0 + } + if (end === undefined) { + end = target ? target.length : 0 + } + if (thisStart === undefined) { + thisStart = 0 + } + if (thisEnd === undefined) { + thisEnd = this.length + } + + if ( + start < 0 || + end > target.length || + thisStart < 0 || + thisEnd > this.length + ) { + throw new RangeError("out of range index") + } + + if (thisStart >= thisEnd && start >= end) { + return 0 + } + if (thisStart >= thisEnd) { + return -1 + } + if (start >= end) { + return 1 + } + + start >>>= 0 + end >>>= 0 + thisStart >>>= 0 + thisEnd >>>= 0 + + if (this === target) return 0 + + var x = thisEnd - thisStart + var y = end - start + var len = Math.min(x, y) + + var thisCopy = this.slice(thisStart, thisEnd) + var targetCopy = target.slice(start, end) + + for (var i = 0; i < len; ++i) { + if (thisCopy[i] !== targetCopy[i]) { + x = thisCopy[i] + y = targetCopy[i] + break + } + } + + if (x < y) return -1 + if (y < x) return 1 + return 0 + } + + // Finds either the first index of `val` in `buffer` at offset >= `byteOffset`, + // OR the last index of `val` in `buffer` at offset <= `byteOffset`. + // + // Arguments: + // - buffer - a Buffer to search + // - val - a string, Buffer, or number + // - byteOffset - an index into `buffer`; will be clamped to an int32 + // - encoding - an optional encoding, relevant is val is a string + // - dir - true for indexOf, false for lastIndexOf + function bidirectionalIndexOf( + buffer, + val, + byteOffset, + encoding, + dir + ) { + // Empty buffer means no match + if (buffer.length === 0) return -1 + + // Normalize byteOffset + if (typeof byteOffset === "string") { + encoding = byteOffset + byteOffset = 0 + } else if (byteOffset > 0x7fffffff) { + byteOffset = 0x7fffffff + } else if (byteOffset < -0x80000000) { + byteOffset = -0x80000000 + } + byteOffset = +byteOffset // Coerce to Number. + if (numberIsNaN(byteOffset)) { + // byteOffset: it it's undefined, null, NaN, "foo", etc, search whole buffer + byteOffset = dir ? 0 : buffer.length - 1 + } + + // Normalize byteOffset: negative offsets start from the end of the buffer + if (byteOffset < 0) byteOffset = buffer.length + byteOffset + if (byteOffset >= buffer.length) { + if (dir) return -1 + else byteOffset = buffer.length - 1 + } else if (byteOffset < 0) { + if (dir) byteOffset = 0 + else return -1 + } + + // Normalize val + if (typeof val === "string") { + val = Buffer.from(val, encoding) + } + + // Finally, search either indexOf (if dir is true) or lastIndexOf + if (Buffer.isBuffer(val)) { + // Special case: looking for empty string/buffer always fails + if (val.length === 0) { + return -1 + } + return arrayIndexOf(buffer, val, byteOffset, encoding, dir) + } else if (typeof val === "number") { + val = val & 0xff // Search for a byte value [0-255] + if (typeof Uint8Array.prototype.indexOf === "function") { + if (dir) { + return Uint8Array.prototype.indexOf.call( + buffer, + val, + byteOffset + ) + } else { + return Uint8Array.prototype.lastIndexOf.call( + buffer, + val, + byteOffset + ) + } + } + return arrayIndexOf(buffer, [val], byteOffset, encoding, dir) + } + + throw new TypeError("val must be string, number or Buffer") + } + + function arrayIndexOf(arr, val, byteOffset, encoding, dir) { + var indexSize = 1 + var arrLength = arr.length + var valLength = val.length + + if (encoding !== undefined) { + encoding = String(encoding).toLowerCase() + if ( + encoding === "ucs2" || + encoding === "ucs-2" || + encoding === "utf16le" || + encoding === "utf-16le" + ) { + if (arr.length < 2 || val.length < 2) { + return -1 + } + indexSize = 2 + arrLength /= 2 + valLength /= 2 + byteOffset /= 2 + } + } + + function read(buf, i) { + if (indexSize === 1) { + return buf[i] + } else { + return buf.readUInt16BE(i * indexSize) + } + } + + var i + if (dir) { + var foundIndex = -1 + for (i = byteOffset; i < arrLength; i++) { + if ( + read(arr, i) === + read(val, foundIndex === -1 ? 0 : i - foundIndex) + ) { + if (foundIndex === -1) foundIndex = i + if (i - foundIndex + 1 === valLength) + return foundIndex * indexSize + } else { + if (foundIndex !== -1) i -= i - foundIndex + foundIndex = -1 + } + } + } else { + if (byteOffset + valLength > arrLength) + byteOffset = arrLength - valLength + for (i = byteOffset; i >= 0; i--) { + var found = true + for (var j = 0; j < valLength; j++) { + if (read(arr, i + j) !== read(val, j)) { + found = false + break + } + } + if (found) return i + } + } + + return -1 + } + + Buffer.prototype.includes = function includes( + val, + byteOffset, + encoding + ) { + return this.indexOf(val, byteOffset, encoding) !== -1 + } + + Buffer.prototype.indexOf = function indexOf( + val, + byteOffset, + encoding + ) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, true) + } + + Buffer.prototype.lastIndexOf = function lastIndexOf( + val, + byteOffset, + encoding + ) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, false) + } + + function hexWrite(buf, string, offset, length) { + offset = Number(offset) || 0 + var remaining = buf.length - offset + if (!length) { + length = remaining + } else { + length = Number(length) + if (length > remaining) { + length = remaining + } + } + + var strLen = string.length + + if (length > strLen / 2) { + length = strLen / 2 + } + for (var i = 0; i < length; ++i) { + var parsed = parseInt(string.substr(i * 2, 2), 16) + if (numberIsNaN(parsed)) return i + buf[offset + i] = parsed + } + return i + } + + function utf8Write(buf, string, offset, length) { + return blitBuffer( + utf8ToBytes(string, buf.length - offset), + buf, + offset, + length + ) + } + + function asciiWrite(buf, string, offset, length) { + return blitBuffer(asciiToBytes(string), buf, offset, length) + } + + function latin1Write(buf, string, offset, length) { + return asciiWrite(buf, string, offset, length) + } + + function base64Write(buf, string, offset, length) { + return blitBuffer(base64ToBytes(string), buf, offset, length) + } + + function ucs2Write(buf, string, offset, length) { + return blitBuffer( + utf16leToBytes(string, buf.length - offset), + buf, + offset, + length + ) + } + + Buffer.prototype.write = function write( + string, + offset, + length, + encoding + ) { + // Buffer#write(string) + if (offset === undefined) { + encoding = "utf8" + length = this.length + offset = 0 + // Buffer#write(string, encoding) + } else if (length === undefined && typeof offset === "string") { + encoding = offset + length = this.length + offset = 0 + // Buffer#write(string, offset[, length][, encoding]) + } else if (isFinite(offset)) { + offset = offset >>> 0 + if (isFinite(length)) { + length = length >>> 0 + if (encoding === undefined) encoding = "utf8" + } else { + encoding = length + length = undefined + } + } else { + throw new Error( + "Buffer.write(string, encoding, offset[, length]) is no longer supported" + ) + } + + var remaining = this.length - offset + if (length === undefined || length > remaining) length = remaining + + if ( + (string.length > 0 && (length < 0 || offset < 0)) || + offset > this.length + ) { + throw new RangeError("Attempt to write outside buffer bounds") + } + + if (!encoding) encoding = "utf8" + + var loweredCase = false + for (;;) { + switch (encoding) { + case "hex": + return hexWrite(this, string, offset, length) + + case "utf8": + case "utf-8": + return utf8Write(this, string, offset, length) + + case "ascii": + return asciiWrite(this, string, offset, length) + + case "latin1": + case "binary": + return latin1Write(this, string, offset, length) + + case "base64": + // Warning: maxLength not taken into account in base64Write + return base64Write(this, string, offset, length) + + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return ucs2Write(this, string, offset, length) + + default: + if (loweredCase) + throw new TypeError("Unknown encoding: " + encoding) + encoding = ("" + encoding).toLowerCase() + loweredCase = true + } + } + } + + Buffer.prototype.toJSON = function toJSON() { + return { + type: "Buffer", + data: Array.prototype.slice.call(this._arr || this, 0) + } + } + + function base64Slice(buf, start, end) { + if (start === 0 && end === buf.length) { + return base64.fromByteArray(buf) + } else { + return base64.fromByteArray(buf.slice(start, end)) + } + } + + function utf8Slice(buf, start, end) { + end = Math.min(buf.length, end) + var res = [] + + var i = start + while (i < end) { + var firstByte = buf[i] + var codePoint = null + var bytesPerSequence = + firstByte > 0xef + ? 4 + : firstByte > 0xdf + ? 3 + : firstByte > 0xbf + ? 2 + : 1 + + if (i + bytesPerSequence <= end) { + var secondByte, thirdByte, fourthByte, tempCodePoint + + switch (bytesPerSequence) { + case 1: + if (firstByte < 0x80) { + codePoint = firstByte + } + break + case 2: + secondByte = buf[i + 1] + if ((secondByte & 0xc0) === 0x80) { + tempCodePoint = + ((firstByte & 0x1f) << 0x6) | (secondByte & 0x3f) + if (tempCodePoint > 0x7f) { + codePoint = tempCodePoint + } + } + break + case 3: + secondByte = buf[i + 1] + thirdByte = buf[i + 2] + if ( + (secondByte & 0xc0) === 0x80 && + (thirdByte & 0xc0) === 0x80 + ) { + tempCodePoint = + ((firstByte & 0xf) << 0xc) | + ((secondByte & 0x3f) << 0x6) | + (thirdByte & 0x3f) + if ( + tempCodePoint > 0x7ff && + (tempCodePoint < 0xd800 || tempCodePoint > 0xdfff) + ) { + codePoint = tempCodePoint + } + } + break + case 4: + secondByte = buf[i + 1] + thirdByte = buf[i + 2] + fourthByte = buf[i + 3] + if ( + (secondByte & 0xc0) === 0x80 && + (thirdByte & 0xc0) === 0x80 && + (fourthByte & 0xc0) === 0x80 + ) { + tempCodePoint = + ((firstByte & 0xf) << 0x12) | + ((secondByte & 0x3f) << 0xc) | + ((thirdByte & 0x3f) << 0x6) | + (fourthByte & 0x3f) + if (tempCodePoint > 0xffff && tempCodePoint < 0x110000) { + codePoint = tempCodePoint + } + } + } + } + + if (codePoint === null) { + // we did not generate a valid codePoint so insert a + // replacement char (U+FFFD) and advance only 1 byte + codePoint = 0xfffd + bytesPerSequence = 1 + } else if (codePoint > 0xffff) { + // encode to utf16 (surrogate pair dance) + codePoint -= 0x10000 + res.push(((codePoint >>> 10) & 0x3ff) | 0xd800) + codePoint = 0xdc00 | (codePoint & 0x3ff) + } + + res.push(codePoint) + i += bytesPerSequence + } + + return decodeCodePointsArray(res) + } + + // Based on http://stackoverflow.com/a/22747272/680742, the browser with + // the lowest limit is Chrome, with 0x10000 args. + // We go 1 magnitude less, for safety + var MAX_ARGUMENTS_LENGTH = 0x1000 + + function decodeCodePointsArray(codePoints) { + var len = codePoints.length + if (len <= MAX_ARGUMENTS_LENGTH) { + return String.fromCharCode.apply(String, codePoints) // avoid extra slice() + } + + // Decode in chunks to avoid "call stack size exceeded". + var res = "" + var i = 0 + while (i < len) { + res += String.fromCharCode.apply( + String, + codePoints.slice(i, (i += MAX_ARGUMENTS_LENGTH)) + ) + } + return res + } + + function asciiSlice(buf, start, end) { + var ret = "" + end = Math.min(buf.length, end) + + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i] & 0x7f) + } + return ret + } + + function latin1Slice(buf, start, end) { + var ret = "" + end = Math.min(buf.length, end) + + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i]) + } + return ret + } + + function hexSlice(buf, start, end) { + var len = buf.length + + if (!start || start < 0) start = 0 + if (!end || end < 0 || end > len) end = len + + var out = "" + for (var i = start; i < end; ++i) { + out += toHex(buf[i]) + } + return out + } + + function utf16leSlice(buf, start, end) { + var bytes = buf.slice(start, end) + var res = "" + for (var i = 0; i < bytes.length; i += 2) { + res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256) + } + return res + } + + Buffer.prototype.slice = function slice(start, end) { + var len = this.length + start = ~~start + end = end === undefined ? len : ~~end + + if (start < 0) { + start += len + if (start < 0) start = 0 + } else if (start > len) { + start = len + } + + if (end < 0) { + end += len + if (end < 0) end = 0 + } else if (end > len) { + end = len + } + + if (end < start) end = start + + var newBuf = this.subarray(start, end) + // Return an augmented `Uint8Array` instance + newBuf.__proto__ = Buffer.prototype + return newBuf + } + + /* + * Need to make sure that buffer isn't trying to write out of bounds. + */ + function checkOffset(offset, ext, length) { + if (offset % 1 !== 0 || offset < 0) + throw new RangeError("offset is not uint") + if (offset + ext > length) + throw new RangeError("Trying to access beyond buffer length") + } + + Buffer.prototype.readUIntLE = function readUIntLE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + + var val = this[offset] + var mul = 1 + var i = 0 + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul + } + + return val + } + + Buffer.prototype.readUIntBE = function readUIntBE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) { + checkOffset(offset, byteLength, this.length) + } + + var val = this[offset + --byteLength] + var mul = 1 + while (byteLength > 0 && (mul *= 0x100)) { + val += this[offset + --byteLength] * mul + } + + return val + } + + Buffer.prototype.readUInt8 = function readUInt8(offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 1, this.length) + return this[offset] + } + + Buffer.prototype.readUInt16LE = function readUInt16LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + return this[offset] | (this[offset + 1] << 8) + } + + Buffer.prototype.readUInt16BE = function readUInt16BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + return (this[offset] << 8) | this[offset + 1] + } + + Buffer.prototype.readUInt32LE = function readUInt32LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + + return ( + (this[offset] | + (this[offset + 1] << 8) | + (this[offset + 2] << 16)) + + this[offset + 3] * 0x1000000 + ) + } + + Buffer.prototype.readUInt32BE = function readUInt32BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + + return ( + this[offset] * 0x1000000 + + ((this[offset + 1] << 16) | + (this[offset + 2] << 8) | + this[offset + 3]) + ) + } + + Buffer.prototype.readIntLE = function readIntLE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + + var val = this[offset] + var mul = 1 + var i = 0 + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul + } + mul *= 0x80 + + if (val >= mul) val -= Math.pow(2, 8 * byteLength) + + return val + } + + Buffer.prototype.readIntBE = function readIntBE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + + var i = byteLength + var mul = 1 + var val = this[offset + --i] + while (i > 0 && (mul *= 0x100)) { + val += this[offset + --i] * mul + } + mul *= 0x80 + + if (val >= mul) val -= Math.pow(2, 8 * byteLength) + + return val + } + + Buffer.prototype.readInt8 = function readInt8(offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 1, this.length) + if (!(this[offset] & 0x80)) return this[offset] + return (0xff - this[offset] + 1) * -1 + } + + Buffer.prototype.readInt16LE = function readInt16LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + var val = this[offset] | (this[offset + 1] << 8) + return val & 0x8000 ? val | 0xffff0000 : val + } + + Buffer.prototype.readInt16BE = function readInt16BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + var val = this[offset + 1] | (this[offset] << 8) + return val & 0x8000 ? val | 0xffff0000 : val + } + + Buffer.prototype.readInt32LE = function readInt32LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + + return ( + this[offset] | + (this[offset + 1] << 8) | + (this[offset + 2] << 16) | + (this[offset + 3] << 24) + ) + } + + Buffer.prototype.readInt32BE = function readInt32BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + + return ( + (this[offset] << 24) | + (this[offset + 1] << 16) | + (this[offset + 2] << 8) | + this[offset + 3] + ) + } + + Buffer.prototype.readFloatLE = function readFloatLE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ieee754.read(this, offset, true, 23, 4) + } + + Buffer.prototype.readFloatBE = function readFloatBE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ieee754.read(this, offset, false, 23, 4) + } + + Buffer.prototype.readDoubleLE = function readDoubleLE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 8, this.length) + return ieee754.read(this, offset, true, 52, 8) + } + + Buffer.prototype.readDoubleBE = function readDoubleBE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 8, this.length) + return ieee754.read(this, offset, false, 52, 8) + } + + function checkInt(buf, value, offset, ext, max, min) { + if (!Buffer.isBuffer(buf)) + throw new TypeError('"buffer" argument must be a Buffer instance') + if (value > max || value < min) + throw new RangeError('"value" argument is out of bounds') + if (offset + ext > buf.length) + throw new RangeError("Index out of range") + } + + Buffer.prototype.writeUIntLE = function writeUIntLE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1 + checkInt(this, value, offset, byteLength, maxBytes, 0) + } + + var mul = 1 + var i = 0 + this[offset] = value & 0xff + while (++i < byteLength && (mul *= 0x100)) { + this[offset + i] = (value / mul) & 0xff + } + + return offset + byteLength + } + + Buffer.prototype.writeUIntBE = function writeUIntBE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1 + checkInt(this, value, offset, byteLength, maxBytes, 0) + } + + var i = byteLength - 1 + var mul = 1 + this[offset + i] = value & 0xff + while (--i >= 0 && (mul *= 0x100)) { + this[offset + i] = (value / mul) & 0xff + } + + return offset + byteLength + } + + Buffer.prototype.writeUInt8 = function writeUInt8( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0) + this[offset] = value & 0xff + return offset + 1 + } + + Buffer.prototype.writeUInt16LE = function writeUInt16LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0) + this[offset] = value & 0xff + this[offset + 1] = value >>> 8 + return offset + 2 + } + + Buffer.prototype.writeUInt16BE = function writeUInt16BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0) + this[offset] = value >>> 8 + this[offset + 1] = value & 0xff + return offset + 2 + } + + Buffer.prototype.writeUInt32LE = function writeUInt32LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0) + this[offset + 3] = value >>> 24 + this[offset + 2] = value >>> 16 + this[offset + 1] = value >>> 8 + this[offset] = value & 0xff + return offset + 4 + } + + Buffer.prototype.writeUInt32BE = function writeUInt32BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0) + this[offset] = value >>> 24 + this[offset + 1] = value >>> 16 + this[offset + 2] = value >>> 8 + this[offset + 3] = value & 0xff + return offset + 4 + } + + Buffer.prototype.writeIntLE = function writeIntLE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1) + + checkInt(this, value, offset, byteLength, limit - 1, -limit) + } + + var i = 0 + var mul = 1 + var sub = 0 + this[offset] = value & 0xff + while (++i < byteLength && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) { + sub = 1 + } + this[offset + i] = (((value / mul) >> 0) - sub) & 0xff + } + + return offset + byteLength + } + + Buffer.prototype.writeIntBE = function writeIntBE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1) + + checkInt(this, value, offset, byteLength, limit - 1, -limit) + } + + var i = byteLength - 1 + var mul = 1 + var sub = 0 + this[offset + i] = value & 0xff + while (--i >= 0 && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) { + sub = 1 + } + this[offset + i] = (((value / mul) >> 0) - sub) & 0xff + } + + return offset + byteLength + } + + Buffer.prototype.writeInt8 = function writeInt8( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80) + if (value < 0) value = 0xff + value + 1 + this[offset] = value & 0xff + return offset + 1 + } + + Buffer.prototype.writeInt16LE = function writeInt16LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000) + this[offset] = value & 0xff + this[offset + 1] = value >>> 8 + return offset + 2 + } + + Buffer.prototype.writeInt16BE = function writeInt16BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000) + this[offset] = value >>> 8 + this[offset + 1] = value & 0xff + return offset + 2 + } + + Buffer.prototype.writeInt32LE = function writeInt32LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) + checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000) + this[offset] = value & 0xff + this[offset + 1] = value >>> 8 + this[offset + 2] = value >>> 16 + this[offset + 3] = value >>> 24 + return offset + 4 + } + + Buffer.prototype.writeInt32BE = function writeInt32BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) + checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000) + if (value < 0) value = 0xffffffff + value + 1 + this[offset] = value >>> 24 + this[offset + 1] = value >>> 16 + this[offset + 2] = value >>> 8 + this[offset + 3] = value & 0xff + return offset + 4 + } + + function checkIEEE754(buf, value, offset, ext, max, min) { + if (offset + ext > buf.length) + throw new RangeError("Index out of range") + if (offset < 0) throw new RangeError("Index out of range") + } + + function writeFloat(buf, value, offset, littleEndian, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + checkIEEE754( + buf, + value, + offset, + 4, + 3.4028234663852886e38, + -3.4028234663852886e38 + ) + } + ieee754.write(buf, value, offset, littleEndian, 23, 4) + return offset + 4 + } + + Buffer.prototype.writeFloatLE = function writeFloatLE( + value, + offset, + noAssert + ) { + return writeFloat(this, value, offset, true, noAssert) + } + + Buffer.prototype.writeFloatBE = function writeFloatBE( + value, + offset, + noAssert + ) { + return writeFloat(this, value, offset, false, noAssert) + } + + function writeDouble(buf, value, offset, littleEndian, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + checkIEEE754( + buf, + value, + offset, + 8, + 1.7976931348623157e308, + -1.7976931348623157e308 + ) + } + ieee754.write(buf, value, offset, littleEndian, 52, 8) + return offset + 8 + } + + Buffer.prototype.writeDoubleLE = function writeDoubleLE( + value, + offset, + noAssert + ) { + return writeDouble(this, value, offset, true, noAssert) + } + + Buffer.prototype.writeDoubleBE = function writeDoubleBE( + value, + offset, + noAssert + ) { + return writeDouble(this, value, offset, false, noAssert) + } + + // copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length) + Buffer.prototype.copy = function copy( + target, + targetStart, + start, + end + ) { + if (!Buffer.isBuffer(target)) + throw new TypeError("argument should be a Buffer") + if (!start) start = 0 + if (!end && end !== 0) end = this.length + if (targetStart >= target.length) targetStart = target.length + if (!targetStart) targetStart = 0 + if (end > 0 && end < start) end = start + + // Copy 0 bytes; we're done + if (end === start) return 0 + if (target.length === 0 || this.length === 0) return 0 + + // Fatal error conditions + if (targetStart < 0) { + throw new RangeError("targetStart out of bounds") + } + if (start < 0 || start >= this.length) + throw new RangeError("Index out of range") + if (end < 0) throw new RangeError("sourceEnd out of bounds") + + // Are we oob? + if (end > this.length) end = this.length + if (target.length - targetStart < end - start) { + end = target.length - targetStart + start + } + + var len = end - start + + if ( + this === target && + typeof Uint8Array.prototype.copyWithin === "function" + ) { + // Use built-in when available, missing from IE11 + this.copyWithin(targetStart, start, end) + } else if ( + this === target && + start < targetStart && + targetStart < end + ) { + // descending copy from end + for (var i = len - 1; i >= 0; --i) { + target[i + targetStart] = this[i + start] + } + } else { + Uint8Array.prototype.set.call( + target, + this.subarray(start, end), + targetStart + ) + } + + return len + } + + // Usage: + // buffer.fill(number[, offset[, end]]) + // buffer.fill(buffer[, offset[, end]]) + // buffer.fill(string[, offset[, end]][, encoding]) + Buffer.prototype.fill = function fill(val, start, end, encoding) { + // Handle string cases: + if (typeof val === "string") { + if (typeof start === "string") { + encoding = start + start = 0 + end = this.length + } else if (typeof end === "string") { + encoding = end + end = this.length + } + if (encoding !== undefined && typeof encoding !== "string") { + throw new TypeError("encoding must be a string") + } + if ( + typeof encoding === "string" && + !Buffer.isEncoding(encoding) + ) { + throw new TypeError("Unknown encoding: " + encoding) + } + if (val.length === 1) { + var code = val.charCodeAt(0) + if ( + (encoding === "utf8" && code < 128) || + encoding === "latin1" + ) { + // Fast path: If `val` fits into a single byte, use that numeric value. + val = code + } + } + } else if (typeof val === "number") { + val = val & 255 + } + + // Invalid ranges are not set to a default, so can range check early. + if (start < 0 || this.length < start || this.length < end) { + throw new RangeError("Out of range index") + } + + if (end <= start) { + return this + } + + start = start >>> 0 + end = end === undefined ? this.length : end >>> 0 + + if (!val) val = 0 + + var i + if (typeof val === "number") { + for (i = start; i < end; ++i) { + this[i] = val + } + } else { + var bytes = Buffer.isBuffer(val) + ? val + : Buffer.from(val, encoding) + var len = bytes.length + if (len === 0) { + throw new TypeError( + 'The value "' + val + '" is invalid for argument "value"' + ) + } + for (i = 0; i < end - start; ++i) { + this[i + start] = bytes[i % len] + } + } + + return this + } + + // HELPER FUNCTIONS + // ================ + + var INVALID_BASE64_RE = /[^+/0-9A-Za-z-_]/g + + function base64clean(str) { + // Node takes equal signs as end of the Base64 encoding + str = str.split("=")[0] + // Node strips out invalid characters like \n and \t from the string, base64-js does not + str = str.trim().replace(INVALID_BASE64_RE, "") + // Node converts strings with length < 2 to '' + if (str.length < 2) return "" + // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not + while (str.length % 4 !== 0) { + str = str + "=" + } + return str + } + + function toHex(n) { + if (n < 16) return "0" + n.toString(16) + return n.toString(16) + } + + function utf8ToBytes(string, units) { + units = units || Infinity + var codePoint + var length = string.length + var leadSurrogate = null + var bytes = [] + + for (var i = 0; i < length; ++i) { + codePoint = string.charCodeAt(i) + + // is surrogate component + if (codePoint > 0xd7ff && codePoint < 0xe000) { + // last char was a lead + if (!leadSurrogate) { + // no lead yet + if (codePoint > 0xdbff) { + // unexpected trail + if ((units -= 3) > -1) bytes.push(0xef, 0xbf, 0xbd) + continue + } else if (i + 1 === length) { + // unpaired lead + if ((units -= 3) > -1) bytes.push(0xef, 0xbf, 0xbd) + continue + } + + // valid lead + leadSurrogate = codePoint + + continue + } + + // 2 leads in a row + if (codePoint < 0xdc00) { + if ((units -= 3) > -1) bytes.push(0xef, 0xbf, 0xbd) + leadSurrogate = codePoint + continue + } + + // valid surrogate pair + codePoint = + (((leadSurrogate - 0xd800) << 10) | (codePoint - 0xdc00)) + + 0x10000 + } else if (leadSurrogate) { + // valid bmp char, but last char was a lead + if ((units -= 3) > -1) bytes.push(0xef, 0xbf, 0xbd) + } + + leadSurrogate = null + + // encode utf8 + if (codePoint < 0x80) { + if ((units -= 1) < 0) break + bytes.push(codePoint) + } else if (codePoint < 0x800) { + if ((units -= 2) < 0) break + bytes.push((codePoint >> 0x6) | 0xc0, (codePoint & 0x3f) | 0x80) + } else if (codePoint < 0x10000) { + if ((units -= 3) < 0) break + bytes.push( + (codePoint >> 0xc) | 0xe0, + ((codePoint >> 0x6) & 0x3f) | 0x80, + (codePoint & 0x3f) | 0x80 + ) + } else if (codePoint < 0x110000) { + if ((units -= 4) < 0) break + bytes.push( + (codePoint >> 0x12) | 0xf0, + ((codePoint >> 0xc) & 0x3f) | 0x80, + ((codePoint >> 0x6) & 0x3f) | 0x80, + (codePoint & 0x3f) | 0x80 + ) + } else { + throw new Error("Invalid code point") + } + } + + return bytes + } + + function asciiToBytes(str) { + var byteArray = [] + for (var i = 0; i < str.length; ++i) { + // Node's code seems to be doing this and not & 0x7F.. + byteArray.push(str.charCodeAt(i) & 0xff) + } + return byteArray + } + + function utf16leToBytes(str, units) { + var c, hi, lo + var byteArray = [] + for (var i = 0; i < str.length; ++i) { + if ((units -= 2) < 0) break + + c = str.charCodeAt(i) + hi = c >> 8 + lo = c % 256 + byteArray.push(lo) + byteArray.push(hi) + } + + return byteArray + } + + function base64ToBytes(str) { + return base64.toByteArray(base64clean(str)) + } + + function blitBuffer(src, dst, offset, length) { + for (var i = 0; i < length; ++i) { + if (i + offset >= dst.length || i >= src.length) break + dst[i + offset] = src[i] + } + return i + } + + // ArrayBuffer or Uint8Array objects from other contexts (i.e. iframes) do not pass + // the `instanceof` check but they should be treated as of that type. + // See: https://github.com/feross/buffer/issues/166 + function isInstance(obj, type) { + return ( + obj instanceof type || + (obj != null && + obj.constructor != null && + obj.constructor.name != null && + obj.constructor.name === type.name) + ) + } + function numberIsNaN(obj) { + // For IE11 support + return obj !== obj // eslint-disable-line no-self-compare + } + }, + { "base64-js": 1, ieee754: 6 } + ], + 4: [ + function(require, module, exports) { + ;(function(Buffer) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + // NOTE: These type checking functions intentionally don't use `instanceof` + // because it is fragile and can be easily faked with `Object.create()`. + + function isArray(arg) { + if (Array.isArray) { + return Array.isArray(arg) + } + return objectToString(arg) === "[object Array]" + } + exports.isArray = isArray + + function isBoolean(arg) { + return typeof arg === "boolean" + } + exports.isBoolean = isBoolean + + function isNull(arg) { + return arg === null + } + exports.isNull = isNull + + function isNullOrUndefined(arg) { + return arg == null + } + exports.isNullOrUndefined = isNullOrUndefined + + function isNumber(arg) { + return typeof arg === "number" + } + exports.isNumber = isNumber + + function isString(arg) { + return typeof arg === "string" + } + exports.isString = isString + + function isSymbol(arg) { + return typeof arg === "symbol" + } + exports.isSymbol = isSymbol + + function isUndefined(arg) { + return arg === void 0 + } + exports.isUndefined = isUndefined + + function isRegExp(re) { + return objectToString(re) === "[object RegExp]" + } + exports.isRegExp = isRegExp + + function isObject(arg) { + return typeof arg === "object" && arg !== null + } + exports.isObject = isObject + + function isDate(d) { + return objectToString(d) === "[object Date]" + } + exports.isDate = isDate + + function isError(e) { + return ( + objectToString(e) === "[object Error]" || e instanceof Error + ) + } + exports.isError = isError + + function isFunction(arg) { + return typeof arg === "function" + } + exports.isFunction = isFunction + + function isPrimitive(arg) { + return ( + arg === null || + typeof arg === "boolean" || + typeof arg === "number" || + typeof arg === "string" || + typeof arg === "symbol" || // ES6 symbol + typeof arg === "undefined" + ) + } + exports.isPrimitive = isPrimitive + + exports.isBuffer = Buffer.isBuffer + + function objectToString(o) { + return Object.prototype.toString.call(o) + } + }.call(this, { isBuffer: require("../../is-buffer/index.js") })) + }, + { "../../is-buffer/index.js": 8 } + ], + 5: [ + function(require, module, exports) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + var objectCreate = Object.create || objectCreatePolyfill + var objectKeys = Object.keys || objectKeysPolyfill + var bind = Function.prototype.bind || functionBindPolyfill + + function EventEmitter() { + if ( + !this._events || + !Object.prototype.hasOwnProperty.call(this, "_events") + ) { + this._events = objectCreate(null) + this._eventsCount = 0 + } + + this._maxListeners = this._maxListeners || undefined + } + module.exports = EventEmitter + + // Backwards-compat with node 0.10.x + EventEmitter.EventEmitter = EventEmitter + + EventEmitter.prototype._events = undefined + EventEmitter.prototype._maxListeners = undefined + + // By default EventEmitters will print a warning if more than 10 listeners are + // added to it. This is a useful default which helps finding memory leaks. + var defaultMaxListeners = 10 + + var hasDefineProperty + try { + var o = {} + if (Object.defineProperty) + Object.defineProperty(o, "x", { value: 0 }) + hasDefineProperty = o.x === 0 + } catch (err) { + hasDefineProperty = false + } + if (hasDefineProperty) { + Object.defineProperty(EventEmitter, "defaultMaxListeners", { + enumerable: true, + get: function() { + return defaultMaxListeners + }, + set: function(arg) { + // check whether the input is a positive number (whose value is zero or + // greater and not a NaN). + if (typeof arg !== "number" || arg < 0 || arg !== arg) + throw new TypeError( + '"defaultMaxListeners" must be a positive number' + ) + defaultMaxListeners = arg + } + }) + } else { + EventEmitter.defaultMaxListeners = defaultMaxListeners + } + + // Obviously not all Emitters should be limited to 10. This function allows + // that to be increased. Set to zero for unlimited. + EventEmitter.prototype.setMaxListeners = function setMaxListeners(n) { + if (typeof n !== "number" || n < 0 || isNaN(n)) + throw new TypeError('"n" argument must be a positive number') + this._maxListeners = n + return this + } + + function $getMaxListeners(that) { + if (that._maxListeners === undefined) + return EventEmitter.defaultMaxListeners + return that._maxListeners + } + + EventEmitter.prototype.getMaxListeners = function getMaxListeners() { + return $getMaxListeners(this) + } + + // These standalone emit* functions are used to optimize calling of event + // handlers for fast cases because emit() itself often has a variable number of + // arguments and can be deoptimized because of that. These functions always have + // the same number of arguments and thus do not get deoptimized, so the code + // inside them can execute faster. + function emitNone(handler, isFn, self) { + if (isFn) handler.call(self) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].call(self) + } + } + function emitOne(handler, isFn, self, arg1) { + if (isFn) handler.call(self, arg1) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].call(self, arg1) + } + } + function emitTwo(handler, isFn, self, arg1, arg2) { + if (isFn) handler.call(self, arg1, arg2) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].call(self, arg1, arg2) + } + } + function emitThree(handler, isFn, self, arg1, arg2, arg3) { + if (isFn) handler.call(self, arg1, arg2, arg3) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) + listeners[i].call(self, arg1, arg2, arg3) + } + } + + function emitMany(handler, isFn, self, args) { + if (isFn) handler.apply(self, args) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].apply(self, args) + } + } + + EventEmitter.prototype.emit = function emit(type) { + var er, handler, len, args, i, events + var doError = type === "error" + + events = this._events + if (events) doError = doError && events.error == null + else if (!doError) return false + + // If there is no 'error' event listener then throw. + if (doError) { + if (arguments.length > 1) er = arguments[1] + if (er instanceof Error) { + throw er // Unhandled 'error' event + } else { + // At least give some kind of context to the user + var err = new Error('Unhandled "error" event. (' + er + ")") + err.context = er + throw err + } + return false + } + + handler = events[type] + + if (!handler) return false + + var isFn = typeof handler === "function" + len = arguments.length + switch (len) { + // fast cases + case 1: + emitNone(handler, isFn, this) + break + case 2: + emitOne(handler, isFn, this, arguments[1]) + break + case 3: + emitTwo(handler, isFn, this, arguments[1], arguments[2]) + break + case 4: + emitThree( + handler, + isFn, + this, + arguments[1], + arguments[2], + arguments[3] + ) + break + // slower + default: + args = new Array(len - 1) + for (i = 1; i < len; i++) args[i - 1] = arguments[i] + emitMany(handler, isFn, this, args) + } + + return true + } + + function _addListener(target, type, listener, prepend) { + var m + var events + var existing + + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + + events = target._events + if (!events) { + events = target._events = objectCreate(null) + target._eventsCount = 0 + } else { + // To avoid recursion in the case that type === "newListener"! Before + // adding it to the listeners, first emit "newListener". + if (events.newListener) { + target.emit( + "newListener", + type, + listener.listener ? listener.listener : listener + ) + + // Re-assign `events` because a newListener handler could have caused the + // this._events to be assigned to a new object + events = target._events + } + existing = events[type] + } + + if (!existing) { + // Optimize the case of one listener. Don't need the extra array object. + existing = events[type] = listener + ++target._eventsCount + } else { + if (typeof existing === "function") { + // Adding the second element, need to change to array. + existing = events[type] = prepend + ? [listener, existing] + : [existing, listener] + } else { + // If we've already got an array, just append. + if (prepend) { + existing.unshift(listener) + } else { + existing.push(listener) + } + } + + // Check for listener leak + if (!existing.warned) { + m = $getMaxListeners(target) + if (m && m > 0 && existing.length > m) { + existing.warned = true + var w = new Error( + "Possible EventEmitter memory leak detected. " + + existing.length + + ' "' + + String(type) + + '" listeners ' + + "added. Use emitter.setMaxListeners() to " + + "increase limit." + ) + w.name = "MaxListenersExceededWarning" + w.emitter = target + w.type = type + w.count = existing.length + if (typeof console === "object" && console.warn) { + console.warn("%s: %s", w.name, w.message) + } + } + } + } + + return target + } + + EventEmitter.prototype.addListener = function addListener( + type, + listener + ) { + return _addListener(this, type, listener, false) + } + + EventEmitter.prototype.on = EventEmitter.prototype.addListener + + EventEmitter.prototype.prependListener = function prependListener( + type, + listener + ) { + return _addListener(this, type, listener, true) + } + + function onceWrapper() { + if (!this.fired) { + this.target.removeListener(this.type, this.wrapFn) + this.fired = true + switch (arguments.length) { + case 0: + return this.listener.call(this.target) + case 1: + return this.listener.call(this.target, arguments[0]) + case 2: + return this.listener.call( + this.target, + arguments[0], + arguments[1] + ) + case 3: + return this.listener.call( + this.target, + arguments[0], + arguments[1], + arguments[2] + ) + default: + var args = new Array(arguments.length) + for (var i = 0; i < args.length; ++i) args[i] = arguments[i] + this.listener.apply(this.target, args) + } + } + } + + function _onceWrap(target, type, listener) { + var state = { + fired: false, + wrapFn: undefined, + target: target, + type: type, + listener: listener + } + var wrapped = bind.call(onceWrapper, state) + wrapped.listener = listener + state.wrapFn = wrapped + return wrapped + } + + EventEmitter.prototype.once = function once(type, listener) { + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + this.on(type, _onceWrap(this, type, listener)) + return this + } + + EventEmitter.prototype.prependOnceListener = function prependOnceListener( + type, + listener + ) { + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + this.prependListener(type, _onceWrap(this, type, listener)) + return this + } + + // Emits a 'removeListener' event if and only if the listener was removed. + EventEmitter.prototype.removeListener = function removeListener( + type, + listener + ) { + var list, events, position, i, originalListener + + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + + events = this._events + if (!events) return this + + list = events[type] + if (!list) return this + + if (list === listener || list.listener === listener) { + if (--this._eventsCount === 0) this._events = objectCreate(null) + else { + delete events[type] + if (events.removeListener) + this.emit("removeListener", type, list.listener || listener) + } + } else if (typeof list !== "function") { + position = -1 + + for (i = list.length - 1; i >= 0; i--) { + if (list[i] === listener || list[i].listener === listener) { + originalListener = list[i].listener + position = i + break + } + } + + if (position < 0) return this + + if (position === 0) list.shift() + else spliceOne(list, position) + + if (list.length === 1) events[type] = list[0] + + if (events.removeListener) + this.emit("removeListener", type, originalListener || listener) + } + + return this + } + + EventEmitter.prototype.removeAllListeners = function removeAllListeners( + type + ) { + var listeners, events, i + + events = this._events + if (!events) return this + + // not listening for removeListener, no need to emit + if (!events.removeListener) { + if (arguments.length === 0) { + this._events = objectCreate(null) + this._eventsCount = 0 + } else if (events[type]) { + if (--this._eventsCount === 0) this._events = objectCreate(null) + else delete events[type] + } + return this + } + + // emit removeListener for all listeners on all events + if (arguments.length === 0) { + var keys = objectKeys(events) + var key + for (i = 0; i < keys.length; ++i) { + key = keys[i] + if (key === "removeListener") continue + this.removeAllListeners(key) + } + this.removeAllListeners("removeListener") + this._events = objectCreate(null) + this._eventsCount = 0 + return this + } + + listeners = events[type] + + if (typeof listeners === "function") { + this.removeListener(type, listeners) + } else if (listeners) { + // LIFO order + for (i = listeners.length - 1; i >= 0; i--) { + this.removeListener(type, listeners[i]) + } + } + + return this + } + + function _listeners(target, type, unwrap) { + var events = target._events + + if (!events) return [] + + var evlistener = events[type] + if (!evlistener) return [] + + if (typeof evlistener === "function") + return unwrap ? [evlistener.listener || evlistener] : [evlistener] + + return unwrap + ? unwrapListeners(evlistener) + : arrayClone(evlistener, evlistener.length) + } + + EventEmitter.prototype.listeners = function listeners(type) { + return _listeners(this, type, true) + } + + EventEmitter.prototype.rawListeners = function rawListeners(type) { + return _listeners(this, type, false) + } + + EventEmitter.listenerCount = function(emitter, type) { + if (typeof emitter.listenerCount === "function") { + return emitter.listenerCount(type) + } else { + return listenerCount.call(emitter, type) + } + } + + EventEmitter.prototype.listenerCount = listenerCount + function listenerCount(type) { + var events = this._events + + if (events) { + var evlistener = events[type] + + if (typeof evlistener === "function") { + return 1 + } else if (evlistener) { + return evlistener.length + } + } + + return 0 + } + + EventEmitter.prototype.eventNames = function eventNames() { + return this._eventsCount > 0 ? Reflect.ownKeys(this._events) : [] + } + + // About 1.5x faster than the two-arg version of Array#splice(). + function spliceOne(list, index) { + for ( + var i = index, k = i + 1, n = list.length; + k < n; + i += 1, k += 1 + ) + list[i] = list[k] + list.pop() + } + + function arrayClone(arr, n) { + var copy = new Array(n) + for (var i = 0; i < n; ++i) copy[i] = arr[i] + return copy + } + + function unwrapListeners(arr) { + var ret = new Array(arr.length) + for (var i = 0; i < ret.length; ++i) { + ret[i] = arr[i].listener || arr[i] + } + return ret + } + + function objectCreatePolyfill(proto) { + var F = function() {} + F.prototype = proto + return new F() + } + function objectKeysPolyfill(obj) { + var keys = [] + for (var k in obj) + if (Object.prototype.hasOwnProperty.call(obj, k)) { + keys.push(k) + } + return k + } + function functionBindPolyfill(context) { + var fn = this + return function() { + return fn.apply(context, arguments) + } + } + }, + {} + ], + 6: [ + function(require, module, exports) { + exports.read = function(buffer, offset, isLE, mLen, nBytes) { + var e, m + var eLen = nBytes * 8 - mLen - 1 + var eMax = (1 << eLen) - 1 + var eBias = eMax >> 1 + var nBits = -7 + var i = isLE ? nBytes - 1 : 0 + var d = isLE ? -1 : 1 + var s = buffer[offset + i] + + i += d + + e = s & ((1 << -nBits) - 1) + s >>= -nBits + nBits += eLen + for ( + ; + nBits > 0; + e = e * 256 + buffer[offset + i], i += d, nBits -= 8 + ) {} + + m = e & ((1 << -nBits) - 1) + e >>= -nBits + nBits += mLen + for ( + ; + nBits > 0; + m = m * 256 + buffer[offset + i], i += d, nBits -= 8 + ) {} + + if (e === 0) { + e = 1 - eBias + } else if (e === eMax) { + return m ? NaN : (s ? -1 : 1) * Infinity + } else { + m = m + Math.pow(2, mLen) + e = e - eBias + } + return (s ? -1 : 1) * m * Math.pow(2, e - mLen) + } + + exports.write = function(buffer, value, offset, isLE, mLen, nBytes) { + var e, m, c + var eLen = nBytes * 8 - mLen - 1 + var eMax = (1 << eLen) - 1 + var eBias = eMax >> 1 + var rt = mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0 + var i = isLE ? 0 : nBytes - 1 + var d = isLE ? 1 : -1 + var s = value < 0 || (value === 0 && 1 / value < 0) ? 1 : 0 + + value = Math.abs(value) + + if (isNaN(value) || value === Infinity) { + m = isNaN(value) ? 1 : 0 + e = eMax + } else { + e = Math.floor(Math.log(value) / Math.LN2) + if (value * (c = Math.pow(2, -e)) < 1) { + e-- + c *= 2 + } + if (e + eBias >= 1) { + value += rt / c + } else { + value += rt * Math.pow(2, 1 - eBias) + } + if (value * c >= 2) { + e++ + c /= 2 + } + + if (e + eBias >= eMax) { + m = 0 + e = eMax + } else if (e + eBias >= 1) { + m = (value * c - 1) * Math.pow(2, mLen) + e = e + eBias + } else { + m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen) + e = 0 + } + } + + for ( + ; + mLen >= 8; + buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8 + ) {} + + e = (e << mLen) | m + eLen += mLen + for ( + ; + eLen > 0; + buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8 + ) {} + + buffer[offset + i - d] |= s * 128 + } + }, + {} + ], + 7: [ + function(require, module, exports) { + if (typeof Object.create === "function") { + // implementation from standard node.js 'util' module + module.exports = function inherits(ctor, superCtor) { + ctor.super_ = superCtor + ctor.prototype = Object.create(superCtor.prototype, { + constructor: { + value: ctor, + enumerable: false, + writable: true, + configurable: true + } + }) + } + } else { + // old school shim for old browsers + module.exports = function inherits(ctor, superCtor) { + ctor.super_ = superCtor + var TempCtor = function() {} + TempCtor.prototype = superCtor.prototype + ctor.prototype = new TempCtor() + ctor.prototype.constructor = ctor + } + } + }, + {} + ], + 8: [ + function(require, module, exports) { + /*! + * Determine if an object is a Buffer + * + * @author Feross Aboukhadijeh + * @license MIT + */ + + // The _isBuffer check is for Safari 5-7 support, because it's missing + // Object.prototype.constructor. Remove this eventually + module.exports = function(obj) { + return ( + obj != null && + (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer) + ) + } + + function isBuffer(obj) { + return ( + !!obj.constructor && + typeof obj.constructor.isBuffer === "function" && + obj.constructor.isBuffer(obj) + ) + } + + // For Node v0.10 support. Remove this eventually. + function isSlowBuffer(obj) { + return ( + typeof obj.readFloatLE === "function" && + typeof obj.slice === "function" && + isBuffer(obj.slice(0, 0)) + ) + } + }, + {} + ], + 9: [ + function(require, module, exports) { + var toString = {}.toString + + module.exports = + Array.isArray || + function(arr) { + return toString.call(arr) == "[object Array]" + } + }, + {} + ], + 10: [ + function(require, module, exports) { + ;(function(process) { + "use strict" + + if ( + !process.version || + process.version.indexOf("v0.") === 0 || + (process.version.indexOf("v1.") === 0 && + process.version.indexOf("v1.8.") !== 0) + ) { + module.exports = { nextTick: nextTick } + } else { + module.exports = process + } + + function nextTick(fn, arg1, arg2, arg3) { + if (typeof fn !== "function") { + throw new TypeError('"callback" argument must be a function') + } + var len = arguments.length + var args, i + switch (len) { + case 0: + case 1: + return process.nextTick(fn) + case 2: + return process.nextTick(function afterTickOne() { + fn.call(null, arg1) + }) + case 3: + return process.nextTick(function afterTickTwo() { + fn.call(null, arg1, arg2) + }) + case 4: + return process.nextTick(function afterTickThree() { + fn.call(null, arg1, arg2, arg3) + }) + default: + args = new Array(len - 1) + i = 0 + while (i < args.length) { + args[i++] = arguments[i] + } + return process.nextTick(function afterTick() { + fn.apply(null, args) + }) + } + } + }.call(this, require("_process"))) + }, + { _process: 11 } + ], + 11: [ + function(require, module, exports) { + // shim for using process in browser + var process = (module.exports = {}) + + // cached from whatever global is present so that test runners that stub it + // don't break things. But we need to wrap it in a try catch in case it is + // wrapped in strict mode code which doesn't define any globals. It's inside a + // function because try/catches deoptimize in certain engines. + + var cachedSetTimeout + var cachedClearTimeout + + function defaultSetTimout() { + throw new Error("setTimeout has not been defined") + } + function defaultClearTimeout() { + throw new Error("clearTimeout has not been defined") + } + ;(function() { + try { + if (typeof setTimeout === "function") { + cachedSetTimeout = setTimeout + } else { + cachedSetTimeout = defaultSetTimout + } + } catch (e) { + cachedSetTimeout = defaultSetTimout + } + try { + if (typeof clearTimeout === "function") { + cachedClearTimeout = clearTimeout + } else { + cachedClearTimeout = defaultClearTimeout + } + } catch (e) { + cachedClearTimeout = defaultClearTimeout + } + })() + function runTimeout(fun) { + if (cachedSetTimeout === setTimeout) { + //normal enviroments in sane situations + return setTimeout(fun, 0) + } + // if setTimeout wasn't available but was latter defined + if ( + (cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && + setTimeout + ) { + cachedSetTimeout = setTimeout + return setTimeout(fun, 0) + } + try { + // when when somebody has screwed with setTimeout but no I.E. maddness + return cachedSetTimeout(fun, 0) + } catch (e) { + try { + // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally + return cachedSetTimeout.call(null, fun, 0) + } catch (e) { + // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error + return cachedSetTimeout.call(this, fun, 0) + } + } + } + function runClearTimeout(marker) { + if (cachedClearTimeout === clearTimeout) { + //normal enviroments in sane situations + return clearTimeout(marker) + } + // if clearTimeout wasn't available but was latter defined + if ( + (cachedClearTimeout === defaultClearTimeout || + !cachedClearTimeout) && + clearTimeout + ) { + cachedClearTimeout = clearTimeout + return clearTimeout(marker) + } + try { + // when when somebody has screwed with setTimeout but no I.E. maddness + return cachedClearTimeout(marker) + } catch (e) { + try { + // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally + return cachedClearTimeout.call(null, marker) + } catch (e) { + // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error. + // Some versions of I.E. have different rules for clearTimeout vs setTimeout + return cachedClearTimeout.call(this, marker) + } + } + } + var queue = [] + var draining = false + var currentQueue + var queueIndex = -1 + + function cleanUpNextTick() { + if (!draining || !currentQueue) { + return + } + draining = false + if (currentQueue.length) { + queue = currentQueue.concat(queue) + } else { + queueIndex = -1 + } + if (queue.length) { + drainQueue() + } + } + + function drainQueue() { + if (draining) { + return + } + var timeout = runTimeout(cleanUpNextTick) + draining = true + + var len = queue.length + while (len) { + currentQueue = queue + queue = [] + while (++queueIndex < len) { + if (currentQueue) { + currentQueue[queueIndex].run() + } + } + queueIndex = -1 + len = queue.length + } + currentQueue = null + draining = false + runClearTimeout(timeout) + } + + process.nextTick = function(fun) { + var args = new Array(arguments.length - 1) + if (arguments.length > 1) { + for (var i = 1; i < arguments.length; i++) { + args[i - 1] = arguments[i] + } + } + queue.push(new Item(fun, args)) + if (queue.length === 1 && !draining) { + runTimeout(drainQueue) + } + } + + // v8 likes predictible objects + function Item(fun, array) { + this.fun = fun + this.array = array + } + Item.prototype.run = function() { + this.fun.apply(null, this.array) + } + process.title = "browser" + process.browser = true + process.env = {} + process.argv = [] + process.version = "" // empty string to avoid regexp issues + process.versions = {} + + function noop() {} + + process.on = noop + process.addListener = noop + process.once = noop + process.off = noop + process.removeListener = noop + process.removeAllListeners = noop + process.emit = noop + process.prependListener = noop + process.prependOnceListener = noop + + process.listeners = function(name) { + return [] + } + + process.binding = function(name) { + throw new Error("process.binding is not supported") + } + + process.cwd = function() { + return "/" + } + process.chdir = function(dir) { + throw new Error("process.chdir is not supported") + } + process.umask = function() { + return 0 + } + }, + {} + ], + 12: [ + function(require, module, exports) { + module.exports = require("./lib/_stream_duplex.js") + }, + { "./lib/_stream_duplex.js": 13 } + ], + 13: [ + function(require, module, exports) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + // a duplex stream is just a stream that is both readable and writable. + // Since JS doesn't have multiple prototypal inheritance, this class + // prototypally inherits from Readable, and then parasitically from + // Writable. + + "use strict" + + /**/ + + var pna = require("process-nextick-args") + /**/ + + /**/ + var objectKeys = + Object.keys || + function(obj) { + var keys = [] + for (var key in obj) { + keys.push(key) + } + return keys + } + /**/ + + module.exports = Duplex + + /**/ + var util = require("core-util-is") + util.inherits = require("inherits") + /**/ + + var Readable = require("./_stream_readable") + var Writable = require("./_stream_writable") + + util.inherits(Duplex, Readable) + + { + // avoid scope creep, the keys array can then be collected + var keys = objectKeys(Writable.prototype) + for (var v = 0; v < keys.length; v++) { + var method = keys[v] + if (!Duplex.prototype[method]) + Duplex.prototype[method] = Writable.prototype[method] + } + } + + function Duplex(options) { + if (!(this instanceof Duplex)) return new Duplex(options) + + Readable.call(this, options) + Writable.call(this, options) + + if (options && options.readable === false) this.readable = false + + if (options && options.writable === false) this.writable = false + + this.allowHalfOpen = true + if (options && options.allowHalfOpen === false) + this.allowHalfOpen = false + + this.once("end", onend) + } + + Object.defineProperty(Duplex.prototype, "writableHighWaterMark", { + // making it explicit this property is not enumerable + // because otherwise some prototype manipulation in + // userland will fail + enumerable: false, + get: function() { + return this._writableState.highWaterMark + } + }) + + // the no-half-open enforcer + function onend() { + // if we allow half-open state, or if the writable side ended, + // then we're ok. + if (this.allowHalfOpen || this._writableState.ended) return + + // no more data can be written. + // But allow more writes to happen in this tick. + pna.nextTick(onEndNT, this) + } + + function onEndNT(self) { + self.end() + } + + Object.defineProperty(Duplex.prototype, "destroyed", { + get: function() { + if ( + this._readableState === undefined || + this._writableState === undefined + ) { + return false + } + return ( + this._readableState.destroyed && this._writableState.destroyed + ) + }, + set: function(value) { + // we ignore the value if the stream + // has not been initialized yet + if ( + this._readableState === undefined || + this._writableState === undefined + ) { + return + } + + // backward compatibility, the user is explicitly + // managing destroyed + this._readableState.destroyed = value + this._writableState.destroyed = value + } + }) + + Duplex.prototype._destroy = function(err, cb) { + this.push(null) + this.end() + + pna.nextTick(cb, err) + } + }, + { + "./_stream_readable": 15, + "./_stream_writable": 17, + "core-util-is": 4, + inherits: 7, + "process-nextick-args": 10 + } + ], + 14: [ + function(require, module, exports) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + // a passthrough stream. + // basically just the most minimal sort of Transform stream. + // Every written chunk gets output as-is. + + "use strict" + + module.exports = PassThrough + + var Transform = require("./_stream_transform") + + /**/ + var util = require("core-util-is") + util.inherits = require("inherits") + /**/ + + util.inherits(PassThrough, Transform) + + function PassThrough(options) { + if (!(this instanceof PassThrough)) return new PassThrough(options) + + Transform.call(this, options) + } + + PassThrough.prototype._transform = function(chunk, encoding, cb) { + cb(null, chunk) + } + }, + { "./_stream_transform": 16, "core-util-is": 4, inherits: 7 } + ], + 15: [ + function(require, module, exports) { + ;(function(process, global) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + "use strict" + + /**/ + + var pna = require("process-nextick-args") + /**/ + + module.exports = Readable + + /**/ + var isArray = require("isarray") + /**/ + + /**/ + var Duplex + /**/ + + Readable.ReadableState = ReadableState + + /**/ + var EE = require("events").EventEmitter + + var EElistenerCount = function(emitter, type) { + return emitter.listeners(type).length + } + /**/ + + /**/ + var Stream = require("./internal/streams/stream") + /**/ + + /**/ + + var Buffer = require("safe-buffer").Buffer + var OurUint8Array = global.Uint8Array || function() {} + function _uint8ArrayToBuffer(chunk) { + return Buffer.from(chunk) + } + function _isUint8Array(obj) { + return Buffer.isBuffer(obj) || obj instanceof OurUint8Array + } + + /**/ + + /**/ + var util = require("core-util-is") + util.inherits = require("inherits") + /**/ + + /**/ + var debugUtil = require("util") + var debug = void 0 + if (debugUtil && debugUtil.debuglog) { + debug = debugUtil.debuglog("stream") + } else { + debug = function() {} + } + /**/ + + var BufferList = require("./internal/streams/BufferList") + var destroyImpl = require("./internal/streams/destroy") + var StringDecoder + + util.inherits(Readable, Stream) + + var kProxyEvents = ["error", "close", "destroy", "pause", "resume"] + + function prependListener(emitter, event, fn) { + // Sadly this is not cacheable as some libraries bundle their own + // event emitter implementation with them. + if (typeof emitter.prependListener === "function") + return emitter.prependListener(event, fn) + + // This is a hack to make sure that our error handler is attached before any + // userland ones. NEVER DO THIS. This is here only because this code needs + // to continue to work with older versions of Node.js that do not include + // the prependListener() method. The goal is to eventually remove this hack. + if (!emitter._events || !emitter._events[event]) + emitter.on(event, fn) + else if (isArray(emitter._events[event])) + emitter._events[event].unshift(fn) + else emitter._events[event] = [fn, emitter._events[event]] + } + + function ReadableState(options, stream) { + Duplex = Duplex || require("./_stream_duplex") + + options = options || {} + + // Duplex streams are both readable and writable, but share + // the same options object. + // However, some cases require setting options to different + // values for the readable and the writable sides of the duplex stream. + // These options can be provided separately as readableXXX and writableXXX. + var isDuplex = stream instanceof Duplex + + // object stream flag. Used to make read(n) ignore n and to + // make all the buffer merging and length checks go away + this.objectMode = !!options.objectMode + + if (isDuplex) + this.objectMode = + this.objectMode || !!options.readableObjectMode + + // the point at which it stops calling _read() to fill the buffer + // Note: 0 is a valid value, means "don't call _read preemptively ever" + var hwm = options.highWaterMark + var readableHwm = options.readableHighWaterMark + var defaultHwm = this.objectMode ? 16 : 16 * 1024 + + if (hwm || hwm === 0) this.highWaterMark = hwm + else if (isDuplex && (readableHwm || readableHwm === 0)) + this.highWaterMark = readableHwm + else this.highWaterMark = defaultHwm + + // cast to ints. + this.highWaterMark = Math.floor(this.highWaterMark) + + // A linked list is used to store data chunks instead of an array because the + // linked list can remove elements from the beginning faster than + // array.shift() + this.buffer = new BufferList() + this.length = 0 + this.pipes = null + this.pipesCount = 0 + this.flowing = null + this.ended = false + this.endEmitted = false + this.reading = false + + // a flag to be able to tell if the event 'readable'/'data' is emitted + // immediately, or on a later tick. We set this to true at first, because + // any actions that shouldn't happen until "later" should generally also + // not happen before the first read call. + this.sync = true + + // whenever we return null, then we set a flag to say + // that we're awaiting a 'readable' event emission. + this.needReadable = false + this.emittedReadable = false + this.readableListening = false + this.resumeScheduled = false + + // has it been destroyed + this.destroyed = false + + // Crypto is kind of old and crusty. Historically, its default string + // encoding is 'binary' so we have to make this configurable. + // Everything else in the universe uses 'utf8', though. + this.defaultEncoding = options.defaultEncoding || "utf8" + + // the number of writers that are awaiting a drain event in .pipe()s + this.awaitDrain = 0 + + // if true, a maybeReadMore has been scheduled + this.readingMore = false + + this.decoder = null + this.encoding = null + if (options.encoding) { + if (!StringDecoder) + StringDecoder = require("string_decoder/").StringDecoder + this.decoder = new StringDecoder(options.encoding) + this.encoding = options.encoding + } + } + + function Readable(options) { + Duplex = Duplex || require("./_stream_duplex") + + if (!(this instanceof Readable)) return new Readable(options) + + this._readableState = new ReadableState(options, this) + + // legacy + this.readable = true + + if (options) { + if (typeof options.read === "function") + this._read = options.read + + if (typeof options.destroy === "function") + this._destroy = options.destroy + } + + Stream.call(this) + } + + Object.defineProperty(Readable.prototype, "destroyed", { + get: function() { + if (this._readableState === undefined) { + return false + } + return this._readableState.destroyed + }, + set: function(value) { + // we ignore the value if the stream + // has not been initialized yet + if (!this._readableState) { + return + } + + // backward compatibility, the user is explicitly + // managing destroyed + this._readableState.destroyed = value + } + }) + + Readable.prototype.destroy = destroyImpl.destroy + Readable.prototype._undestroy = destroyImpl.undestroy + Readable.prototype._destroy = function(err, cb) { + this.push(null) + cb(err) + } + + // Manually shove something into the read() buffer. + // This returns true if the highWaterMark has not been hit yet, + // similar to how Writable.write() returns true if you should + // write() some more. + Readable.prototype.push = function(chunk, encoding) { + var state = this._readableState + var skipChunkCheck + + if (!state.objectMode) { + if (typeof chunk === "string") { + encoding = encoding || state.defaultEncoding + if (encoding !== state.encoding) { + chunk = Buffer.from(chunk, encoding) + encoding = "" + } + skipChunkCheck = true + } + } else { + skipChunkCheck = true + } + + return readableAddChunk( + this, + chunk, + encoding, + false, + skipChunkCheck + ) + } + + // Unshift should *always* be something directly out of read() + Readable.prototype.unshift = function(chunk) { + return readableAddChunk(this, chunk, null, true, false) + } + + function readableAddChunk( + stream, + chunk, + encoding, + addToFront, + skipChunkCheck + ) { + var state = stream._readableState + if (chunk === null) { + state.reading = false + onEofChunk(stream, state) + } else { + var er + if (!skipChunkCheck) er = chunkInvalid(state, chunk) + if (er) { + stream.emit("error", er) + } else if (state.objectMode || (chunk && chunk.length > 0)) { + if ( + typeof chunk !== "string" && + !state.objectMode && + Object.getPrototypeOf(chunk) !== Buffer.prototype + ) { + chunk = _uint8ArrayToBuffer(chunk) + } + + if (addToFront) { + if (state.endEmitted) + stream.emit( + "error", + new Error("stream.unshift() after end event") + ) + else addChunk(stream, state, chunk, true) + } else if (state.ended) { + stream.emit("error", new Error("stream.push() after EOF")) + } else { + state.reading = false + if (state.decoder && !encoding) { + chunk = state.decoder.write(chunk) + if (state.objectMode || chunk.length !== 0) + addChunk(stream, state, chunk, false) + else maybeReadMore(stream, state) + } else { + addChunk(stream, state, chunk, false) + } + } + } else if (!addToFront) { + state.reading = false + } + } + + return needMoreData(state) + } + + function addChunk(stream, state, chunk, addToFront) { + if (state.flowing && state.length === 0 && !state.sync) { + stream.emit("data", chunk) + stream.read(0) + } else { + // update the buffer info. + state.length += state.objectMode ? 1 : chunk.length + if (addToFront) state.buffer.unshift(chunk) + else state.buffer.push(chunk) + + if (state.needReadable) emitReadable(stream) + } + maybeReadMore(stream, state) + } + + function chunkInvalid(state, chunk) { + var er + if ( + !_isUint8Array(chunk) && + typeof chunk !== "string" && + chunk !== undefined && + !state.objectMode + ) { + er = new TypeError("Invalid non-string/buffer chunk") + } + return er + } + + // if it's past the high water mark, we can push in some more. + // Also, if we have no data yet, we can stand some + // more bytes. This is to work around cases where hwm=0, + // such as the repl. Also, if the push() triggered a + // readable event, and the user called read(largeNumber) such that + // needReadable was set, then we ought to push more, so that another + // 'readable' event will be triggered. + function needMoreData(state) { + return ( + !state.ended && + (state.needReadable || + state.length < state.highWaterMark || + state.length === 0) + ) + } + + Readable.prototype.isPaused = function() { + return this._readableState.flowing === false + } + + // backwards compatibility. + Readable.prototype.setEncoding = function(enc) { + if (!StringDecoder) + StringDecoder = require("string_decoder/").StringDecoder + this._readableState.decoder = new StringDecoder(enc) + this._readableState.encoding = enc + return this + } + + // Don't raise the hwm > 8MB + var MAX_HWM = 0x800000 + function computeNewHighWaterMark(n) { + if (n >= MAX_HWM) { + n = MAX_HWM + } else { + // Get the next highest power of 2 to prevent increasing hwm excessively in + // tiny amounts + n-- + n |= n >>> 1 + n |= n >>> 2 + n |= n >>> 4 + n |= n >>> 8 + n |= n >>> 16 + n++ + } + return n + } + + // This function is designed to be inlinable, so please take care when making + // changes to the function body. + function howMuchToRead(n, state) { + if (n <= 0 || (state.length === 0 && state.ended)) return 0 + if (state.objectMode) return 1 + if (n !== n) { + // Only flow one buffer at a time + if (state.flowing && state.length) + return state.buffer.head.data.length + else return state.length + } + // If we're asking for more than the current hwm, then raise the hwm. + if (n > state.highWaterMark) + state.highWaterMark = computeNewHighWaterMark(n) + if (n <= state.length) return n + // Don't have enough + if (!state.ended) { + state.needReadable = true + return 0 + } + return state.length + } + + // you can override either this method, or the async _read(n) below. + Readable.prototype.read = function(n) { + debug("read", n) + n = parseInt(n, 10) + var state = this._readableState + var nOrig = n + + if (n !== 0) state.emittedReadable = false + + // if we're doing read(0) to trigger a readable event, but we + // already have a bunch of data in the buffer, then just trigger + // the 'readable' event and move on. + if ( + n === 0 && + state.needReadable && + (state.length >= state.highWaterMark || state.ended) + ) { + debug("read: emitReadable", state.length, state.ended) + if (state.length === 0 && state.ended) endReadable(this) + else emitReadable(this) + return null + } + + n = howMuchToRead(n, state) + + // if we've ended, and we're now clear, then finish it up. + if (n === 0 && state.ended) { + if (state.length === 0) endReadable(this) + return null + } + + // All the actual chunk generation logic needs to be + // *below* the call to _read. The reason is that in certain + // synthetic stream cases, such as passthrough streams, _read + // may be a completely synchronous operation which may change + // the state of the read buffer, providing enough data when + // before there was *not* enough. + // + // So, the steps are: + // 1. Figure out what the state of things will be after we do + // a read from the buffer. + // + // 2. If that resulting state will trigger a _read, then call _read. + // Note that this may be asynchronous, or synchronous. Yes, it is + // deeply ugly to write APIs this way, but that still doesn't mean + // that the Readable class should behave improperly, as streams are + // designed to be sync/async agnostic. + // Take note if the _read call is sync or async (ie, if the read call + // has returned yet), so that we know whether or not it's safe to emit + // 'readable' etc. + // + // 3. Actually pull the requested chunks out of the buffer and return. + + // if we need a readable event, then we need to do some reading. + var doRead = state.needReadable + debug("need readable", doRead) + + // if we currently have less than the highWaterMark, then also read some + if ( + state.length === 0 || + state.length - n < state.highWaterMark + ) { + doRead = true + debug("length less than watermark", doRead) + } + + // however, if we've ended, then there's no point, and if we're already + // reading, then it's unnecessary. + if (state.ended || state.reading) { + doRead = false + debug("reading or ended", doRead) + } else if (doRead) { + debug("do read") + state.reading = true + state.sync = true + // if the length is currently zero, then we *need* a readable event. + if (state.length === 0) state.needReadable = true + // call internal read method + this._read(state.highWaterMark) + state.sync = false + // If _read pushed data synchronously, then `reading` will be false, + // and we need to re-evaluate how much data we can return to the user. + if (!state.reading) n = howMuchToRead(nOrig, state) + } + + var ret + if (n > 0) ret = fromList(n, state) + else ret = null + + if (ret === null) { + state.needReadable = true + n = 0 + } else { + state.length -= n + } + + if (state.length === 0) { + // If we have nothing in the buffer, then we want to know + // as soon as we *do* get something into the buffer. + if (!state.ended) state.needReadable = true + + // If we tried to read() past the EOF, then emit end on the next tick. + if (nOrig !== n && state.ended) endReadable(this) + } + + if (ret !== null) this.emit("data", ret) + + return ret + } + + function onEofChunk(stream, state) { + if (state.ended) return + if (state.decoder) { + var chunk = state.decoder.end() + if (chunk && chunk.length) { + state.buffer.push(chunk) + state.length += state.objectMode ? 1 : chunk.length + } + } + state.ended = true + + // emit 'readable' now to make sure it gets picked up. + emitReadable(stream) + } + + // Don't emit readable right away in sync mode, because this can trigger + // another read() call => stack overflow. This way, it might trigger + // a nextTick recursion warning, but that's not so bad. + function emitReadable(stream) { + var state = stream._readableState + state.needReadable = false + if (!state.emittedReadable) { + debug("emitReadable", state.flowing) + state.emittedReadable = true + if (state.sync) pna.nextTick(emitReadable_, stream) + else emitReadable_(stream) + } + } + + function emitReadable_(stream) { + debug("emit readable") + stream.emit("readable") + flow(stream) + } + + // at this point, the user has presumably seen the 'readable' event, + // and called read() to consume some data. that may have triggered + // in turn another _read(n) call, in which case reading = true if + // it's in progress. + // However, if we're not ended, or reading, and the length < hwm, + // then go ahead and try to read some more preemptively. + function maybeReadMore(stream, state) { + if (!state.readingMore) { + state.readingMore = true + pna.nextTick(maybeReadMore_, stream, state) + } + } + + function maybeReadMore_(stream, state) { + var len = state.length + while ( + !state.reading && + !state.flowing && + !state.ended && + state.length < state.highWaterMark + ) { + debug("maybeReadMore read 0") + stream.read(0) + if (len === state.length) + // didn't get any data, stop spinning. + break + else len = state.length + } + state.readingMore = false + } + + // abstract method. to be overridden in specific implementation classes. + // call cb(er, data) where data is <= n in length. + // for virtual (non-string, non-buffer) streams, "length" is somewhat + // arbitrary, and perhaps not very meaningful. + Readable.prototype._read = function(n) { + this.emit("error", new Error("_read() is not implemented")) + } + + Readable.prototype.pipe = function(dest, pipeOpts) { + var src = this + var state = this._readableState + + switch (state.pipesCount) { + case 0: + state.pipes = dest + break + case 1: + state.pipes = [state.pipes, dest] + break + default: + state.pipes.push(dest) + break + } + state.pipesCount += 1 + debug("pipe count=%d opts=%j", state.pipesCount, pipeOpts) + + var doEnd = + (!pipeOpts || pipeOpts.end !== false) && + dest !== process.stdout && + dest !== process.stderr + + var endFn = doEnd ? onend : unpipe + if (state.endEmitted) pna.nextTick(endFn) + else src.once("end", endFn) + + dest.on("unpipe", onunpipe) + function onunpipe(readable, unpipeInfo) { + debug("onunpipe") + if (readable === src) { + if (unpipeInfo && unpipeInfo.hasUnpiped === false) { + unpipeInfo.hasUnpiped = true + cleanup() + } + } + } + + function onend() { + debug("onend") + dest.end() + } + + // when the dest drains, it reduces the awaitDrain counter + // on the source. This would be more elegant with a .once() + // handler in flow(), but adding and removing repeatedly is + // too slow. + var ondrain = pipeOnDrain(src) + dest.on("drain", ondrain) + + var cleanedUp = false + function cleanup() { + debug("cleanup") + // cleanup event handlers once the pipe is broken + dest.removeListener("close", onclose) + dest.removeListener("finish", onfinish) + dest.removeListener("drain", ondrain) + dest.removeListener("error", onerror) + dest.removeListener("unpipe", onunpipe) + src.removeListener("end", onend) + src.removeListener("end", unpipe) + src.removeListener("data", ondata) + + cleanedUp = true + + // if the reader is waiting for a drain event from this + // specific writer, then it would cause it to never start + // flowing again. + // So, if this is awaiting a drain, then we just call it now. + // If we don't know, then assume that we are waiting for one. + if ( + state.awaitDrain && + (!dest._writableState || dest._writableState.needDrain) + ) + ondrain() + } + + // If the user pushes more data while we're writing to dest then we'll end up + // in ondata again. However, we only want to increase awaitDrain once because + // dest will only emit one 'drain' event for the multiple writes. + // => Introduce a guard on increasing awaitDrain. + var increasedAwaitDrain = false + src.on("data", ondata) + function ondata(chunk) { + debug("ondata") + increasedAwaitDrain = false + var ret = dest.write(chunk) + if (false === ret && !increasedAwaitDrain) { + // If the user unpiped during `dest.write()`, it is possible + // to get stuck in a permanently paused state if that write + // also returned false. + // => Check whether `dest` is still a piping destination. + if ( + ((state.pipesCount === 1 && state.pipes === dest) || + (state.pipesCount > 1 && + indexOf(state.pipes, dest) !== -1)) && + !cleanedUp + ) { + debug( + "false write response, pause", + src._readableState.awaitDrain + ) + src._readableState.awaitDrain++ + increasedAwaitDrain = true + } + src.pause() + } + } + + // if the dest has an error, then stop piping into it. + // however, don't suppress the throwing behavior for this. + function onerror(er) { + debug("onerror", er) + unpipe() + dest.removeListener("error", onerror) + if (EElistenerCount(dest, "error") === 0) dest.emit("error", er) + } + + // Make sure our error handler is attached before userland ones. + prependListener(dest, "error", onerror) + + // Both close and finish should trigger unpipe, but only once. + function onclose() { + dest.removeListener("finish", onfinish) + unpipe() + } + dest.once("close", onclose) + function onfinish() { + debug("onfinish") + dest.removeListener("close", onclose) + unpipe() + } + dest.once("finish", onfinish) + + function unpipe() { + debug("unpipe") + src.unpipe(dest) + } + + // tell the dest that it's being piped to + dest.emit("pipe", src) + + // start the flow if it hasn't been started already. + if (!state.flowing) { + debug("pipe resume") + src.resume() + } + + return dest + } + + function pipeOnDrain(src) { + return function() { + var state = src._readableState + debug("pipeOnDrain", state.awaitDrain) + if (state.awaitDrain) state.awaitDrain-- + if (state.awaitDrain === 0 && EElistenerCount(src, "data")) { + state.flowing = true + flow(src) + } + } + } + + Readable.prototype.unpipe = function(dest) { + var state = this._readableState + var unpipeInfo = { hasUnpiped: false } + + // if we're not piping anywhere, then do nothing. + if (state.pipesCount === 0) return this + + // just one destination. most common case. + if (state.pipesCount === 1) { + // passed in one, but it's not the right one. + if (dest && dest !== state.pipes) return this + + if (!dest) dest = state.pipes + + // got a match. + state.pipes = null + state.pipesCount = 0 + state.flowing = false + if (dest) dest.emit("unpipe", this, unpipeInfo) + return this + } + + // slow case. multiple pipe destinations. + + if (!dest) { + // remove all. + var dests = state.pipes + var len = state.pipesCount + state.pipes = null + state.pipesCount = 0 + state.flowing = false + + for (var i = 0; i < len; i++) { + dests[i].emit("unpipe", this, unpipeInfo) + } + return this + } + + // try to find the right one. + var index = indexOf(state.pipes, dest) + if (index === -1) return this + + state.pipes.splice(index, 1) + state.pipesCount -= 1 + if (state.pipesCount === 1) state.pipes = state.pipes[0] + + dest.emit("unpipe", this, unpipeInfo) + + return this + } + + // set up data events if they are asked for + // Ensure readable listeners eventually get something + Readable.prototype.on = function(ev, fn) { + var res = Stream.prototype.on.call(this, ev, fn) + + if (ev === "data") { + // Start flowing on next tick if stream isn't explicitly paused + if (this._readableState.flowing !== false) this.resume() + } else if (ev === "readable") { + var state = this._readableState + if (!state.endEmitted && !state.readableListening) { + state.readableListening = state.needReadable = true + state.emittedReadable = false + if (!state.reading) { + pna.nextTick(nReadingNextTick, this) + } else if (state.length) { + emitReadable(this) + } + } + } + + return res + } + Readable.prototype.addListener = Readable.prototype.on + + function nReadingNextTick(self) { + debug("readable nexttick read 0") + self.read(0) + } + + // pause() and resume() are remnants of the legacy readable stream API + // If the user uses them, then switch into old mode. + Readable.prototype.resume = function() { + var state = this._readableState + if (!state.flowing) { + debug("resume") + state.flowing = true + resume(this, state) + } + return this + } + + function resume(stream, state) { + if (!state.resumeScheduled) { + state.resumeScheduled = true + pna.nextTick(resume_, stream, state) + } + } + + function resume_(stream, state) { + if (!state.reading) { + debug("resume read 0") + stream.read(0) + } + + state.resumeScheduled = false + state.awaitDrain = 0 + stream.emit("resume") + flow(stream) + if (state.flowing && !state.reading) stream.read(0) + } + + Readable.prototype.pause = function() { + debug("call pause flowing=%j", this._readableState.flowing) + if (false !== this._readableState.flowing) { + debug("pause") + this._readableState.flowing = false + this.emit("pause") + } + return this + } + + function flow(stream) { + var state = stream._readableState + debug("flow", state.flowing) + while (state.flowing && stream.read() !== null) {} + } + + // wrap an old-style stream as the async data source. + // This is *not* part of the readable stream interface. + // It is an ugly unfortunate mess of history. + Readable.prototype.wrap = function(stream) { + var _this = this + + var state = this._readableState + var paused = false + + stream.on("end", function() { + debug("wrapped end") + if (state.decoder && !state.ended) { + var chunk = state.decoder.end() + if (chunk && chunk.length) _this.push(chunk) + } + + _this.push(null) + }) + + stream.on("data", function(chunk) { + debug("wrapped data") + if (state.decoder) chunk = state.decoder.write(chunk) + + // don't skip over falsy values in objectMode + if (state.objectMode && (chunk === null || chunk === undefined)) + return + else if (!state.objectMode && (!chunk || !chunk.length)) return + + var ret = _this.push(chunk) + if (!ret) { + paused = true + stream.pause() + } + }) + + // proxy all the other methods. + // important when wrapping filters and duplexes. + for (var i in stream) { + if (this[i] === undefined && typeof stream[i] === "function") { + this[i] = (function(method) { + return function() { + return stream[method].apply(stream, arguments) + } + })(i) + } + } + + // proxy certain important events. + for (var n = 0; n < kProxyEvents.length; n++) { + stream.on( + kProxyEvents[n], + this.emit.bind(this, kProxyEvents[n]) + ) + } + + // when we try to consume some more bytes, simply unpause the + // underlying stream. + this._read = function(n) { + debug("wrapped _read", n) + if (paused) { + paused = false + stream.resume() + } + } + + return this + } + + Object.defineProperty(Readable.prototype, "readableHighWaterMark", { + // making it explicit this property is not enumerable + // because otherwise some prototype manipulation in + // userland will fail + enumerable: false, + get: function() { + return this._readableState.highWaterMark + } + }) + + // exposed for testing purposes only. + Readable._fromList = fromList + + // Pluck off n bytes from an array of buffers. + // Length is the combined lengths of all the buffers in the list. + // This function is designed to be inlinable, so please take care when making + // changes to the function body. + function fromList(n, state) { + // nothing buffered + if (state.length === 0) return null + + var ret + if (state.objectMode) ret = state.buffer.shift() + else if (!n || n >= state.length) { + // read it all, truncate the list + if (state.decoder) ret = state.buffer.join("") + else if (state.buffer.length === 1) ret = state.buffer.head.data + else ret = state.buffer.concat(state.length) + state.buffer.clear() + } else { + // read part of list + ret = fromListPartial(n, state.buffer, state.decoder) + } + + return ret + } + + // Extracts only enough buffered data to satisfy the amount requested. + // This function is designed to be inlinable, so please take care when making + // changes to the function body. + function fromListPartial(n, list, hasStrings) { + var ret + if (n < list.head.data.length) { + // slice is the same for buffers and strings + ret = list.head.data.slice(0, n) + list.head.data = list.head.data.slice(n) + } else if (n === list.head.data.length) { + // first chunk is a perfect match + ret = list.shift() + } else { + // result spans more than one buffer + ret = hasStrings + ? copyFromBufferString(n, list) + : copyFromBuffer(n, list) + } + return ret + } + + // Copies a specified amount of characters from the list of buffered data + // chunks. + // This function is designed to be inlinable, so please take care when making + // changes to the function body. + function copyFromBufferString(n, list) { + var p = list.head + var c = 1 + var ret = p.data + n -= ret.length + while ((p = p.next)) { + var str = p.data + var nb = n > str.length ? str.length : n + if (nb === str.length) ret += str + else ret += str.slice(0, n) + n -= nb + if (n === 0) { + if (nb === str.length) { + ++c + if (p.next) list.head = p.next + else list.head = list.tail = null + } else { + list.head = p + p.data = str.slice(nb) + } + break + } + ++c + } + list.length -= c + return ret + } + + // Copies a specified amount of bytes from the list of buffered data chunks. + // This function is designed to be inlinable, so please take care when making + // changes to the function body. + function copyFromBuffer(n, list) { + var ret = Buffer.allocUnsafe(n) + var p = list.head + var c = 1 + p.data.copy(ret) + n -= p.data.length + while ((p = p.next)) { + var buf = p.data + var nb = n > buf.length ? buf.length : n + buf.copy(ret, ret.length - n, 0, nb) + n -= nb + if (n === 0) { + if (nb === buf.length) { + ++c + if (p.next) list.head = p.next + else list.head = list.tail = null + } else { + list.head = p + p.data = buf.slice(nb) + } + break + } + ++c + } + list.length -= c + return ret + } + + function endReadable(stream) { + var state = stream._readableState + + // If we get here before consuming all the bytes, then that is a + // bug in node. Should never happen. + if (state.length > 0) + throw new Error('"endReadable()" called on non-empty stream') + + if (!state.endEmitted) { + state.ended = true + pna.nextTick(endReadableNT, state, stream) + } + } + + function endReadableNT(state, stream) { + // Check that we didn't get one last unshift. + if (!state.endEmitted && state.length === 0) { + state.endEmitted = true + stream.readable = false + stream.emit("end") + } + } + + function indexOf(xs, x) { + for (var i = 0, l = xs.length; i < l; i++) { + if (xs[i] === x) return i + } + return -1 + } + }.call( + this, + require("_process"), + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + { + "./_stream_duplex": 13, + "./internal/streams/BufferList": 18, + "./internal/streams/destroy": 19, + "./internal/streams/stream": 20, + _process: 11, + "core-util-is": 4, + events: 5, + inherits: 7, + isarray: 9, + "process-nextick-args": 10, + "safe-buffer": 26, + "string_decoder/": 21, + util: 2 + } + ], + 16: [ + function(require, module, exports) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + // a transform stream is a readable/writable stream where you do + // something with the data. Sometimes it's called a "filter", + // but that's not a great name for it, since that implies a thing where + // some bits pass through, and others are simply ignored. (That would + // be a valid example of a transform, of course.) + // + // While the output is causally related to the input, it's not a + // necessarily symmetric or synchronous transformation. For example, + // a zlib stream might take multiple plain-text writes(), and then + // emit a single compressed chunk some time in the future. + // + // Here's how this works: + // + // The Transform stream has all the aspects of the readable and writable + // stream classes. When you write(chunk), that calls _write(chunk,cb) + // internally, and returns false if there's a lot of pending writes + // buffered up. When you call read(), that calls _read(n) until + // there's enough pending readable data buffered up. + // + // In a transform stream, the written data is placed in a buffer. When + // _read(n) is called, it transforms the queued up data, calling the + // buffered _write cb's as it consumes chunks. If consuming a single + // written chunk would result in multiple output chunks, then the first + // outputted bit calls the readcb, and subsequent chunks just go into + // the read buffer, and will cause it to emit 'readable' if necessary. + // + // This way, back-pressure is actually determined by the reading side, + // since _read has to be called to start processing a new chunk. However, + // a pathological inflate type of transform can cause excessive buffering + // here. For example, imagine a stream where every byte of input is + // interpreted as an integer from 0-255, and then results in that many + // bytes of output. Writing the 4 bytes {ff,ff,ff,ff} would result in + // 1kb of data being output. In this case, you could write a very small + // amount of input, and end up with a very large amount of output. In + // such a pathological inflating mechanism, there'd be no way to tell + // the system to stop doing the transform. A single 4MB write could + // cause the system to run out of memory. + // + // However, even in such a pathological case, only a single written chunk + // would be consumed, and then the rest would wait (un-transformed) until + // the results of the previous transformed chunk were consumed. + + "use strict" + + module.exports = Transform + + var Duplex = require("./_stream_duplex") + + /**/ + var util = require("core-util-is") + util.inherits = require("inherits") + /**/ + + util.inherits(Transform, Duplex) + + function afterTransform(er, data) { + var ts = this._transformState + ts.transforming = false + + var cb = ts.writecb + + if (!cb) { + return this.emit( + "error", + new Error("write callback called multiple times") + ) + } + + ts.writechunk = null + ts.writecb = null + + if (data != null) + // single equals check for both `null` and `undefined` + this.push(data) + + cb(er) + + var rs = this._readableState + rs.reading = false + if (rs.needReadable || rs.length < rs.highWaterMark) { + this._read(rs.highWaterMark) + } + } + + function Transform(options) { + if (!(this instanceof Transform)) return new Transform(options) + + Duplex.call(this, options) + + this._transformState = { + afterTransform: afterTransform.bind(this), + needTransform: false, + transforming: false, + writecb: null, + writechunk: null, + writeencoding: null + } + + // start out asking for a readable event once data is transformed. + this._readableState.needReadable = true + + // we have implemented the _read method, and done the other things + // that Readable wants before the first _read call, so unset the + // sync guard flag. + this._readableState.sync = false + + if (options) { + if (typeof options.transform === "function") + this._transform = options.transform + + if (typeof options.flush === "function") + this._flush = options.flush + } + + // When the writable side finishes, then flush out anything remaining. + this.on("prefinish", prefinish) + } + + function prefinish() { + var _this = this + + if (typeof this._flush === "function") { + this._flush(function(er, data) { + done(_this, er, data) + }) + } else { + done(this, null, null) + } + } + + Transform.prototype.push = function(chunk, encoding) { + this._transformState.needTransform = false + return Duplex.prototype.push.call(this, chunk, encoding) + } + + // This is the part where you do stuff! + // override this function in implementation classes. + // 'chunk' is an input chunk. + // + // Call `push(newChunk)` to pass along transformed output + // to the readable side. You may call 'push' zero or more times. + // + // Call `cb(err)` when you are done with this chunk. If you pass + // an error, then that'll put the hurt on the whole operation. If you + // never call cb(), then you'll never get another chunk. + Transform.prototype._transform = function(chunk, encoding, cb) { + throw new Error("_transform() is not implemented") + } + + Transform.prototype._write = function(chunk, encoding, cb) { + var ts = this._transformState + ts.writecb = cb + ts.writechunk = chunk + ts.writeencoding = encoding + if (!ts.transforming) { + var rs = this._readableState + if ( + ts.needTransform || + rs.needReadable || + rs.length < rs.highWaterMark + ) + this._read(rs.highWaterMark) + } + } + + // Doesn't matter what the args are here. + // _transform does all the work. + // That we got here means that the readable side wants more data. + Transform.prototype._read = function(n) { + var ts = this._transformState + + if (ts.writechunk !== null && ts.writecb && !ts.transforming) { + ts.transforming = true + this._transform( + ts.writechunk, + ts.writeencoding, + ts.afterTransform + ) + } else { + // mark that we need a transform, so that any data that comes in + // will get processed, now that we've asked for it. + ts.needTransform = true + } + } + + Transform.prototype._destroy = function(err, cb) { + var _this2 = this + + Duplex.prototype._destroy.call(this, err, function(err2) { + cb(err2) + _this2.emit("close") + }) + } + + function done(stream, er, data) { + if (er) return stream.emit("error", er) + + if (data != null) + // single equals check for both `null` and `undefined` + stream.push(data) + + // if there's nothing in the write buffer, then that means + // that nothing more will ever be provided + if (stream._writableState.length) + throw new Error("Calling transform done when ws.length != 0") + + if (stream._transformState.transforming) + throw new Error("Calling transform done when still transforming") + + return stream.push(null) + } + }, + { "./_stream_duplex": 13, "core-util-is": 4, inherits: 7 } + ], + 17: [ + function(require, module, exports) { + ;(function(process, global, setImmediate) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + // A bit simpler than readable streams. + // Implement an async ._write(chunk, encoding, cb), and it'll handle all + // the drain event emission and buffering. + + "use strict" + + /**/ + + var pna = require("process-nextick-args") + /**/ + + module.exports = Writable + + /* */ + function WriteReq(chunk, encoding, cb) { + this.chunk = chunk + this.encoding = encoding + this.callback = cb + this.next = null + } + + // It seems a linked list but it is not + // there will be only 2 of these for each stream + function CorkedRequest(state) { + var _this = this + + this.next = null + this.entry = null + this.finish = function() { + onCorkedFinish(_this, state) + } + } + /* */ + + /**/ + var asyncWrite = + !process.browser && + ["v0.10", "v0.9."].indexOf(process.version.slice(0, 5)) > -1 + ? setImmediate + : pna.nextTick + /**/ + + /**/ + var Duplex + /**/ + + Writable.WritableState = WritableState + + /**/ + var util = require("core-util-is") + util.inherits = require("inherits") + /**/ + + /**/ + var internalUtil = { + deprecate: require("util-deprecate") + } + /**/ + + /**/ + var Stream = require("./internal/streams/stream") + /**/ + + /**/ + + var Buffer = require("safe-buffer").Buffer + var OurUint8Array = global.Uint8Array || function() {} + function _uint8ArrayToBuffer(chunk) { + return Buffer.from(chunk) + } + function _isUint8Array(obj) { + return Buffer.isBuffer(obj) || obj instanceof OurUint8Array + } + + /**/ + + var destroyImpl = require("./internal/streams/destroy") + + util.inherits(Writable, Stream) + + function nop() {} + + function WritableState(options, stream) { + Duplex = Duplex || require("./_stream_duplex") + + options = options || {} + + // Duplex streams are both readable and writable, but share + // the same options object. + // However, some cases require setting options to different + // values for the readable and the writable sides of the duplex stream. + // These options can be provided separately as readableXXX and writableXXX. + var isDuplex = stream instanceof Duplex + + // object stream flag to indicate whether or not this stream + // contains buffers or objects. + this.objectMode = !!options.objectMode + + if (isDuplex) + this.objectMode = + this.objectMode || !!options.writableObjectMode + + // the point at which write() starts returning false + // Note: 0 is a valid value, means that we always return false if + // the entire buffer is not flushed immediately on write() + var hwm = options.highWaterMark + var writableHwm = options.writableHighWaterMark + var defaultHwm = this.objectMode ? 16 : 16 * 1024 + + if (hwm || hwm === 0) this.highWaterMark = hwm + else if (isDuplex && (writableHwm || writableHwm === 0)) + this.highWaterMark = writableHwm + else this.highWaterMark = defaultHwm + + // cast to ints. + this.highWaterMark = Math.floor(this.highWaterMark) + + // if _final has been called + this.finalCalled = false + + // drain event flag. + this.needDrain = false + // at the start of calling end() + this.ending = false + // when end() has been called, and returned + this.ended = false + // when 'finish' is emitted + this.finished = false + + // has it been destroyed + this.destroyed = false + + // should we decode strings into buffers before passing to _write? + // this is here so that some node-core streams can optimize string + // handling at a lower level. + var noDecode = options.decodeStrings === false + this.decodeStrings = !noDecode + + // Crypto is kind of old and crusty. Historically, its default string + // encoding is 'binary' so we have to make this configurable. + // Everything else in the universe uses 'utf8', though. + this.defaultEncoding = options.defaultEncoding || "utf8" + + // not an actual buffer we keep track of, but a measurement + // of how much we're waiting to get pushed to some underlying + // socket or file. + this.length = 0 + + // a flag to see when we're in the middle of a write. + this.writing = false + + // when true all writes will be buffered until .uncork() call + this.corked = 0 + + // a flag to be able to tell if the onwrite cb is called immediately, + // or on a later tick. We set this to true at first, because any + // actions that shouldn't happen until "later" should generally also + // not happen before the first write call. + this.sync = true + + // a flag to know if we're processing previously buffered items, which + // may call the _write() callback in the same tick, so that we don't + // end up in an overlapped onwrite situation. + this.bufferProcessing = false + + // the callback that's passed to _write(chunk,cb) + this.onwrite = function(er) { + onwrite(stream, er) + } + + // the callback that the user supplies to write(chunk,encoding,cb) + this.writecb = null + + // the amount that is being written when _write is called. + this.writelen = 0 + + this.bufferedRequest = null + this.lastBufferedRequest = null + + // number of pending user-supplied write callbacks + // this must be 0 before 'finish' can be emitted + this.pendingcb = 0 + + // emit prefinish if the only thing we're waiting for is _write cbs + // This is relevant for synchronous Transform streams + this.prefinished = false + + // True if the error was already emitted and should not be thrown again + this.errorEmitted = false + + // count buffered requests + this.bufferedRequestCount = 0 + + // allocate the first CorkedRequest, there is always + // one allocated and free to use, and we maintain at most two + this.corkedRequestsFree = new CorkedRequest(this) + } + + WritableState.prototype.getBuffer = function getBuffer() { + var current = this.bufferedRequest + var out = [] + while (current) { + out.push(current) + current = current.next + } + return out + } + + ;(function() { + try { + Object.defineProperty(WritableState.prototype, "buffer", { + get: internalUtil.deprecate( + function() { + return this.getBuffer() + }, + "_writableState.buffer is deprecated. Use _writableState.getBuffer " + + "instead.", + "DEP0003" + ) + }) + } catch (_) {} + })() + + // Test _writableState for inheritance to account for Duplex streams, + // whose prototype chain only points to Readable. + var realHasInstance + if ( + typeof Symbol === "function" && + Symbol.hasInstance && + typeof Function.prototype[Symbol.hasInstance] === "function" + ) { + realHasInstance = Function.prototype[Symbol.hasInstance] + Object.defineProperty(Writable, Symbol.hasInstance, { + value: function(object) { + if (realHasInstance.call(this, object)) return true + if (this !== Writable) return false + + return ( + object && object._writableState instanceof WritableState + ) + } + }) + } else { + realHasInstance = function(object) { + return object instanceof this + } + } + + function Writable(options) { + Duplex = Duplex || require("./_stream_duplex") + + // Writable ctor is applied to Duplexes, too. + // `realHasInstance` is necessary because using plain `instanceof` + // would return false, as no `_writableState` property is attached. + + // Trying to use the custom `instanceof` for Writable here will also break the + // Node.js LazyTransform implementation, which has a non-trivial getter for + // `_writableState` that would lead to infinite recursion. + if ( + !realHasInstance.call(Writable, this) && + !(this instanceof Duplex) + ) { + return new Writable(options) + } + + this._writableState = new WritableState(options, this) + + // legacy. + this.writable = true + + if (options) { + if (typeof options.write === "function") + this._write = options.write + + if (typeof options.writev === "function") + this._writev = options.writev + + if (typeof options.destroy === "function") + this._destroy = options.destroy + + if (typeof options.final === "function") + this._final = options.final + } + + Stream.call(this) + } + + // Otherwise people can pipe Writable streams, which is just wrong. + Writable.prototype.pipe = function() { + this.emit("error", new Error("Cannot pipe, not readable")) + } + + function writeAfterEnd(stream, cb) { + var er = new Error("write after end") + // TODO: defer error events consistently everywhere, not just the cb + stream.emit("error", er) + pna.nextTick(cb, er) + } + + // Checks that a user-supplied chunk is valid, especially for the particular + // mode the stream is in. Currently this means that `null` is never accepted + // and undefined/non-string values are only allowed in object mode. + function validChunk(stream, state, chunk, cb) { + var valid = true + var er = false + + if (chunk === null) { + er = new TypeError("May not write null values to stream") + } else if ( + typeof chunk !== "string" && + chunk !== undefined && + !state.objectMode + ) { + er = new TypeError("Invalid non-string/buffer chunk") + } + if (er) { + stream.emit("error", er) + pna.nextTick(cb, er) + valid = false + } + return valid + } + + Writable.prototype.write = function(chunk, encoding, cb) { + var state = this._writableState + var ret = false + var isBuf = !state.objectMode && _isUint8Array(chunk) + + if (isBuf && !Buffer.isBuffer(chunk)) { + chunk = _uint8ArrayToBuffer(chunk) + } + + if (typeof encoding === "function") { + cb = encoding + encoding = null + } + + if (isBuf) encoding = "buffer" + else if (!encoding) encoding = state.defaultEncoding + + if (typeof cb !== "function") cb = nop + + if (state.ended) writeAfterEnd(this, cb) + else if (isBuf || validChunk(this, state, chunk, cb)) { + state.pendingcb++ + ret = writeOrBuffer(this, state, isBuf, chunk, encoding, cb) + } + + return ret + } + + Writable.prototype.cork = function() { + var state = this._writableState + + state.corked++ + } + + Writable.prototype.uncork = function() { + var state = this._writableState + + if (state.corked) { + state.corked-- + + if ( + !state.writing && + !state.corked && + !state.finished && + !state.bufferProcessing && + state.bufferedRequest + ) + clearBuffer(this, state) + } + } + + Writable.prototype.setDefaultEncoding = function setDefaultEncoding( + encoding + ) { + // node::ParseEncoding() requires lower case. + if (typeof encoding === "string") + encoding = encoding.toLowerCase() + if ( + !( + [ + "hex", + "utf8", + "utf-8", + "ascii", + "binary", + "base64", + "ucs2", + "ucs-2", + "utf16le", + "utf-16le", + "raw" + ].indexOf((encoding + "").toLowerCase()) > -1 + ) + ) + throw new TypeError("Unknown encoding: " + encoding) + this._writableState.defaultEncoding = encoding + return this + } + + function decodeChunk(state, chunk, encoding) { + if ( + !state.objectMode && + state.decodeStrings !== false && + typeof chunk === "string" + ) { + chunk = Buffer.from(chunk, encoding) + } + return chunk + } + + Object.defineProperty(Writable.prototype, "writableHighWaterMark", { + // making it explicit this property is not enumerable + // because otherwise some prototype manipulation in + // userland will fail + enumerable: false, + get: function() { + return this._writableState.highWaterMark + } + }) + + // if we're already writing something, then just put this + // in the queue, and wait our turn. Otherwise, call _write + // If we return false, then we need a drain event, so set that flag. + function writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) { + if (!isBuf) { + var newChunk = decodeChunk(state, chunk, encoding) + if (chunk !== newChunk) { + isBuf = true + encoding = "buffer" + chunk = newChunk + } + } + var len = state.objectMode ? 1 : chunk.length + + state.length += len + + var ret = state.length < state.highWaterMark + // we must ensure that previous needDrain will not be reset to false. + if (!ret) state.needDrain = true + + if (state.writing || state.corked) { + var last = state.lastBufferedRequest + state.lastBufferedRequest = { + chunk: chunk, + encoding: encoding, + isBuf: isBuf, + callback: cb, + next: null + } + if (last) { + last.next = state.lastBufferedRequest + } else { + state.bufferedRequest = state.lastBufferedRequest + } + state.bufferedRequestCount += 1 + } else { + doWrite(stream, state, false, len, chunk, encoding, cb) + } + + return ret + } + + function doWrite(stream, state, writev, len, chunk, encoding, cb) { + state.writelen = len + state.writecb = cb + state.writing = true + state.sync = true + if (writev) stream._writev(chunk, state.onwrite) + else stream._write(chunk, encoding, state.onwrite) + state.sync = false + } + + function onwriteError(stream, state, sync, er, cb) { + --state.pendingcb + + if (sync) { + // defer the callback if we are being called synchronously + // to avoid piling up things on the stack + pna.nextTick(cb, er) + // this can emit finish, and it will always happen + // after error + pna.nextTick(finishMaybe, stream, state) + stream._writableState.errorEmitted = true + stream.emit("error", er) + } else { + // the caller expect this to happen before if + // it is async + cb(er) + stream._writableState.errorEmitted = true + stream.emit("error", er) + // this can emit finish, but finish must + // always follow error + finishMaybe(stream, state) + } + } + + function onwriteStateUpdate(state) { + state.writing = false + state.writecb = null + state.length -= state.writelen + state.writelen = 0 + } + + function onwrite(stream, er) { + var state = stream._writableState + var sync = state.sync + var cb = state.writecb + + onwriteStateUpdate(state) + + if (er) onwriteError(stream, state, sync, er, cb) + else { + // Check if we're actually ready to finish, but don't emit yet + var finished = needFinish(state) + + if ( + !finished && + !state.corked && + !state.bufferProcessing && + state.bufferedRequest + ) { + clearBuffer(stream, state) + } + + if (sync) { + /**/ + asyncWrite(afterWrite, stream, state, finished, cb) + /**/ + } else { + afterWrite(stream, state, finished, cb) + } + } + } + + function afterWrite(stream, state, finished, cb) { + if (!finished) onwriteDrain(stream, state) + state.pendingcb-- + cb() + finishMaybe(stream, state) + } + + // Must force callback to be called on nextTick, so that we don't + // emit 'drain' before the write() consumer gets the 'false' return + // value, and has a chance to attach a 'drain' listener. + function onwriteDrain(stream, state) { + if (state.length === 0 && state.needDrain) { + state.needDrain = false + stream.emit("drain") + } + } + + // if there's something in the buffer waiting, then process it + function clearBuffer(stream, state) { + state.bufferProcessing = true + var entry = state.bufferedRequest + + if (stream._writev && entry && entry.next) { + // Fast case, write everything using _writev() + var l = state.bufferedRequestCount + var buffer = new Array(l) + var holder = state.corkedRequestsFree + holder.entry = entry + + var count = 0 + var allBuffers = true + while (entry) { + buffer[count] = entry + if (!entry.isBuf) allBuffers = false + entry = entry.next + count += 1 + } + buffer.allBuffers = allBuffers + + doWrite( + stream, + state, + true, + state.length, + buffer, + "", + holder.finish + ) + + // doWrite is almost always async, defer these to save a bit of time + // as the hot path ends with doWrite + state.pendingcb++ + state.lastBufferedRequest = null + if (holder.next) { + state.corkedRequestsFree = holder.next + holder.next = null + } else { + state.corkedRequestsFree = new CorkedRequest(state) + } + state.bufferedRequestCount = 0 + } else { + // Slow case, write chunks one-by-one + while (entry) { + var chunk = entry.chunk + var encoding = entry.encoding + var cb = entry.callback + var len = state.objectMode ? 1 : chunk.length + + doWrite(stream, state, false, len, chunk, encoding, cb) + entry = entry.next + state.bufferedRequestCount-- + // if we didn't call the onwrite immediately, then + // it means that we need to wait until it does. + // also, that means that the chunk and cb are currently + // being processed, so move the buffer counter past them. + if (state.writing) { + break + } + } + + if (entry === null) state.lastBufferedRequest = null + } + + state.bufferedRequest = entry + state.bufferProcessing = false + } + + Writable.prototype._write = function(chunk, encoding, cb) { + cb(new Error("_write() is not implemented")) + } + + Writable.prototype._writev = null + + Writable.prototype.end = function(chunk, encoding, cb) { + var state = this._writableState + + if (typeof chunk === "function") { + cb = chunk + chunk = null + encoding = null + } else if (typeof encoding === "function") { + cb = encoding + encoding = null + } + + if (chunk !== null && chunk !== undefined) + this.write(chunk, encoding) + + // .end() fully uncorks + if (state.corked) { + state.corked = 1 + this.uncork() + } + + // ignore unnecessary end() calls. + if (!state.ending && !state.finished) endWritable(this, state, cb) + } + + function needFinish(state) { + return ( + state.ending && + state.length === 0 && + state.bufferedRequest === null && + !state.finished && + !state.writing + ) + } + function callFinal(stream, state) { + stream._final(function(err) { + state.pendingcb-- + if (err) { + stream.emit("error", err) + } + state.prefinished = true + stream.emit("prefinish") + finishMaybe(stream, state) + }) + } + function prefinish(stream, state) { + if (!state.prefinished && !state.finalCalled) { + if (typeof stream._final === "function") { + state.pendingcb++ + state.finalCalled = true + pna.nextTick(callFinal, stream, state) + } else { + state.prefinished = true + stream.emit("prefinish") + } + } + } + + function finishMaybe(stream, state) { + var need = needFinish(state) + if (need) { + prefinish(stream, state) + if (state.pendingcb === 0) { + state.finished = true + stream.emit("finish") + } + } + return need + } + + function endWritable(stream, state, cb) { + state.ending = true + finishMaybe(stream, state) + if (cb) { + if (state.finished) pna.nextTick(cb) + else stream.once("finish", cb) + } + state.ended = true + stream.writable = false + } + + function onCorkedFinish(corkReq, state, err) { + var entry = corkReq.entry + corkReq.entry = null + while (entry) { + var cb = entry.callback + state.pendingcb-- + cb(err) + entry = entry.next + } + if (state.corkedRequestsFree) { + state.corkedRequestsFree.next = corkReq + } else { + state.corkedRequestsFree = corkReq + } + } + + Object.defineProperty(Writable.prototype, "destroyed", { + get: function() { + if (this._writableState === undefined) { + return false + } + return this._writableState.destroyed + }, + set: function(value) { + // we ignore the value if the stream + // has not been initialized yet + if (!this._writableState) { + return + } + + // backward compatibility, the user is explicitly + // managing destroyed + this._writableState.destroyed = value + } + }) + + Writable.prototype.destroy = destroyImpl.destroy + Writable.prototype._undestroy = destroyImpl.undestroy + Writable.prototype._destroy = function(err, cb) { + this.end() + cb(err) + } + }.call( + this, + require("_process"), + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {}, + require("timers").setImmediate + )) + }, + { + "./_stream_duplex": 13, + "./internal/streams/destroy": 19, + "./internal/streams/stream": 20, + _process: 11, + "core-util-is": 4, + inherits: 7, + "process-nextick-args": 10, + "safe-buffer": 26, + timers: 29, + "util-deprecate": 30 + } + ], + 18: [ + function(require, module, exports) { + "use strict" + + function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function") + } + } + + var Buffer = require("safe-buffer").Buffer + var util = require("util") + + function copyBuffer(src, target, offset) { + src.copy(target, offset) + } + + module.exports = (function() { + function BufferList() { + _classCallCheck(this, BufferList) + + this.head = null + this.tail = null + this.length = 0 + } + + BufferList.prototype.push = function push(v) { + var entry = { data: v, next: null } + if (this.length > 0) this.tail.next = entry + else this.head = entry + this.tail = entry + ++this.length + } + + BufferList.prototype.unshift = function unshift(v) { + var entry = { data: v, next: this.head } + if (this.length === 0) this.tail = entry + this.head = entry + ++this.length + } + + BufferList.prototype.shift = function shift() { + if (this.length === 0) return + var ret = this.head.data + if (this.length === 1) this.head = this.tail = null + else this.head = this.head.next + --this.length + return ret + } + + BufferList.prototype.clear = function clear() { + this.head = this.tail = null + this.length = 0 + } + + BufferList.prototype.join = function join(s) { + if (this.length === 0) return "" + var p = this.head + var ret = "" + p.data + while ((p = p.next)) { + ret += s + p.data + } + return ret + } + + BufferList.prototype.concat = function concat(n) { + if (this.length === 0) return Buffer.alloc(0) + if (this.length === 1) return this.head.data + var ret = Buffer.allocUnsafe(n >>> 0) + var p = this.head + var i = 0 + while (p) { + copyBuffer(p.data, ret, i) + i += p.data.length + p = p.next + } + return ret + } + + return BufferList + })() + + if (util && util.inspect && util.inspect.custom) { + module.exports.prototype[util.inspect.custom] = function() { + var obj = util.inspect({ length: this.length }) + return this.constructor.name + " " + obj + } + } + }, + { "safe-buffer": 26, util: 2 } + ], + 19: [ + function(require, module, exports) { + "use strict" + + /**/ + + var pna = require("process-nextick-args") + /**/ + + // undocumented cb() API, needed for core, not for public API + function destroy(err, cb) { + var _this = this + + var readableDestroyed = + this._readableState && this._readableState.destroyed + var writableDestroyed = + this._writableState && this._writableState.destroyed + + if (readableDestroyed || writableDestroyed) { + if (cb) { + cb(err) + } else if ( + err && + (!this._writableState || !this._writableState.errorEmitted) + ) { + pna.nextTick(emitErrorNT, this, err) + } + return this + } + + // we set destroyed to true before firing error callbacks in order + // to make it re-entrance safe in case destroy() is called within callbacks + + if (this._readableState) { + this._readableState.destroyed = true + } + + // if this is a duplex stream mark the writable part as destroyed as well + if (this._writableState) { + this._writableState.destroyed = true + } + + this._destroy(err || null, function(err) { + if (!cb && err) { + pna.nextTick(emitErrorNT, _this, err) + if (_this._writableState) { + _this._writableState.errorEmitted = true + } + } else if (cb) { + cb(err) + } + }) + + return this + } + + function undestroy() { + if (this._readableState) { + this._readableState.destroyed = false + this._readableState.reading = false + this._readableState.ended = false + this._readableState.endEmitted = false + } + + if (this._writableState) { + this._writableState.destroyed = false + this._writableState.ended = false + this._writableState.ending = false + this._writableState.finished = false + this._writableState.errorEmitted = false + } + } + + function emitErrorNT(self, err) { + self.emit("error", err) + } + + module.exports = { + destroy: destroy, + undestroy: undestroy + } + }, + { "process-nextick-args": 10 } + ], + 20: [ + function(require, module, exports) { + module.exports = require("events").EventEmitter + }, + { events: 5 } + ], + 21: [ + function(require, module, exports) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + "use strict" + + /**/ + + var Buffer = require("safe-buffer").Buffer + /**/ + + var isEncoding = + Buffer.isEncoding || + function(encoding) { + encoding = "" + encoding + switch (encoding && encoding.toLowerCase()) { + case "hex": + case "utf8": + case "utf-8": + case "ascii": + case "binary": + case "base64": + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + case "raw": + return true + default: + return false + } + } + + function _normalizeEncoding(enc) { + if (!enc) return "utf8" + var retried + while (true) { + switch (enc) { + case "utf8": + case "utf-8": + return "utf8" + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return "utf16le" + case "latin1": + case "binary": + return "latin1" + case "base64": + case "ascii": + case "hex": + return enc + default: + if (retried) return // undefined + enc = ("" + enc).toLowerCase() + retried = true + } + } + } + + // Do not cache `Buffer.isEncoding` when checking encoding names as some + // modules monkey-patch it to support additional encodings + function normalizeEncoding(enc) { + var nenc = _normalizeEncoding(enc) + if ( + typeof nenc !== "string" && + (Buffer.isEncoding === isEncoding || !isEncoding(enc)) + ) + throw new Error("Unknown encoding: " + enc) + return nenc || enc + } + + // StringDecoder provides an interface for efficiently splitting a series of + // buffers into a series of JS strings without breaking apart multi-byte + // characters. + exports.StringDecoder = StringDecoder + function StringDecoder(encoding) { + this.encoding = normalizeEncoding(encoding) + var nb + switch (this.encoding) { + case "utf16le": + this.text = utf16Text + this.end = utf16End + nb = 4 + break + case "utf8": + this.fillLast = utf8FillLast + nb = 4 + break + case "base64": + this.text = base64Text + this.end = base64End + nb = 3 + break + default: + this.write = simpleWrite + this.end = simpleEnd + return + } + this.lastNeed = 0 + this.lastTotal = 0 + this.lastChar = Buffer.allocUnsafe(nb) + } + + StringDecoder.prototype.write = function(buf) { + if (buf.length === 0) return "" + var r + var i + if (this.lastNeed) { + r = this.fillLast(buf) + if (r === undefined) return "" + i = this.lastNeed + this.lastNeed = 0 + } else { + i = 0 + } + if (i < buf.length) + return r ? r + this.text(buf, i) : this.text(buf, i) + return r || "" + } + + StringDecoder.prototype.end = utf8End + + // Returns only complete characters in a Buffer + StringDecoder.prototype.text = utf8Text + + // Attempts to complete a partial non-UTF-8 character using bytes from a Buffer + StringDecoder.prototype.fillLast = function(buf) { + if (this.lastNeed <= buf.length) { + buf.copy( + this.lastChar, + this.lastTotal - this.lastNeed, + 0, + this.lastNeed + ) + return this.lastChar.toString(this.encoding, 0, this.lastTotal) + } + buf.copy( + this.lastChar, + this.lastTotal - this.lastNeed, + 0, + buf.length + ) + this.lastNeed -= buf.length + } + + // Checks the type of a UTF-8 byte, whether it's ASCII, a leading byte, or a + // continuation byte. If an invalid byte is detected, -2 is returned. + function utf8CheckByte(byte) { + if (byte <= 0x7f) return 0 + else if (byte >> 5 === 0x06) return 2 + else if (byte >> 4 === 0x0e) return 3 + else if (byte >> 3 === 0x1e) return 4 + return byte >> 6 === 0x02 ? -1 : -2 + } + + // Checks at most 3 bytes at the end of a Buffer in order to detect an + // incomplete multi-byte UTF-8 character. The total number of bytes (2, 3, or 4) + // needed to complete the UTF-8 character (if applicable) are returned. + function utf8CheckIncomplete(self, buf, i) { + var j = buf.length - 1 + if (j < i) return 0 + var nb = utf8CheckByte(buf[j]) + if (nb >= 0) { + if (nb > 0) self.lastNeed = nb - 1 + return nb + } + if (--j < i || nb === -2) return 0 + nb = utf8CheckByte(buf[j]) + if (nb >= 0) { + if (nb > 0) self.lastNeed = nb - 2 + return nb + } + if (--j < i || nb === -2) return 0 + nb = utf8CheckByte(buf[j]) + if (nb >= 0) { + if (nb > 0) { + if (nb === 2) nb = 0 + else self.lastNeed = nb - 3 + } + return nb + } + return 0 + } + + // Validates as many continuation bytes for a multi-byte UTF-8 character as + // needed or are available. If we see a non-continuation byte where we expect + // one, we "replace" the validated continuation bytes we've seen so far with + // a single UTF-8 replacement character ('\ufffd'), to match v8's UTF-8 decoding + // behavior. The continuation byte check is included three times in the case + // where all of the continuation bytes for a character exist in the same buffer. + // It is also done this way as a slight performance increase instead of using a + // loop. + function utf8CheckExtraBytes(self, buf, p) { + if ((buf[0] & 0xc0) !== 0x80) { + self.lastNeed = 0 + return "\ufffd" + } + if (self.lastNeed > 1 && buf.length > 1) { + if ((buf[1] & 0xc0) !== 0x80) { + self.lastNeed = 1 + return "\ufffd" + } + if (self.lastNeed > 2 && buf.length > 2) { + if ((buf[2] & 0xc0) !== 0x80) { + self.lastNeed = 2 + return "\ufffd" + } + } + } + } + + // Attempts to complete a multi-byte UTF-8 character using bytes from a Buffer. + function utf8FillLast(buf) { + var p = this.lastTotal - this.lastNeed + var r = utf8CheckExtraBytes(this, buf, p) + if (r !== undefined) return r + if (this.lastNeed <= buf.length) { + buf.copy(this.lastChar, p, 0, this.lastNeed) + return this.lastChar.toString(this.encoding, 0, this.lastTotal) + } + buf.copy(this.lastChar, p, 0, buf.length) + this.lastNeed -= buf.length + } + + // Returns all complete UTF-8 characters in a Buffer. If the Buffer ended on a + // partial character, the character's bytes are buffered until the required + // number of bytes are available. + function utf8Text(buf, i) { + var total = utf8CheckIncomplete(this, buf, i) + if (!this.lastNeed) return buf.toString("utf8", i) + this.lastTotal = total + var end = buf.length - (total - this.lastNeed) + buf.copy(this.lastChar, 0, end) + return buf.toString("utf8", i, end) + } + + // For UTF-8, a replacement character is added when ending on a partial + // character. + function utf8End(buf) { + var r = buf && buf.length ? this.write(buf) : "" + if (this.lastNeed) return r + "\ufffd" + return r + } + + // UTF-16LE typically needs two bytes per character, but even if we have an even + // number of bytes available, we need to check if we end on a leading/high + // surrogate. In that case, we need to wait for the next two bytes in order to + // decode the last character properly. + function utf16Text(buf, i) { + if ((buf.length - i) % 2 === 0) { + var r = buf.toString("utf16le", i) + if (r) { + var c = r.charCodeAt(r.length - 1) + if (c >= 0xd800 && c <= 0xdbff) { + this.lastNeed = 2 + this.lastTotal = 4 + this.lastChar[0] = buf[buf.length - 2] + this.lastChar[1] = buf[buf.length - 1] + return r.slice(0, -1) + } + } + return r + } + this.lastNeed = 1 + this.lastTotal = 2 + this.lastChar[0] = buf[buf.length - 1] + return buf.toString("utf16le", i, buf.length - 1) + } + + // For UTF-16LE we do not explicitly append special replacement characters if we + // end on a partial character, we simply let v8 handle that. + function utf16End(buf) { + var r = buf && buf.length ? this.write(buf) : "" + if (this.lastNeed) { + var end = this.lastTotal - this.lastNeed + return r + this.lastChar.toString("utf16le", 0, end) + } + return r + } + + function base64Text(buf, i) { + var n = (buf.length - i) % 3 + if (n === 0) return buf.toString("base64", i) + this.lastNeed = 3 - n + this.lastTotal = 3 + if (n === 1) { + this.lastChar[0] = buf[buf.length - 1] + } else { + this.lastChar[0] = buf[buf.length - 2] + this.lastChar[1] = buf[buf.length - 1] + } + return buf.toString("base64", i, buf.length - n) + } + + function base64End(buf) { + var r = buf && buf.length ? this.write(buf) : "" + if (this.lastNeed) + return r + this.lastChar.toString("base64", 0, 3 - this.lastNeed) + return r + } + + // Pass bytes on through for single-byte encodings (e.g. ascii, latin1, hex) + function simpleWrite(buf) { + return buf.toString(this.encoding) + } + + function simpleEnd(buf) { + return buf && buf.length ? this.write(buf) : "" + } + }, + { "safe-buffer": 26 } + ], + 22: [ + function(require, module, exports) { + module.exports = require("./readable").PassThrough + }, + { "./readable": 23 } + ], + 23: [ + function(require, module, exports) { + exports = module.exports = require("./lib/_stream_readable.js") + exports.Stream = exports + exports.Readable = exports + exports.Writable = require("./lib/_stream_writable.js") + exports.Duplex = require("./lib/_stream_duplex.js") + exports.Transform = require("./lib/_stream_transform.js") + exports.PassThrough = require("./lib/_stream_passthrough.js") + }, + { + "./lib/_stream_duplex.js": 13, + "./lib/_stream_passthrough.js": 14, + "./lib/_stream_readable.js": 15, + "./lib/_stream_transform.js": 16, + "./lib/_stream_writable.js": 17 + } + ], + 24: [ + function(require, module, exports) { + module.exports = require("./readable").Transform + }, + { "./readable": 23 } + ], + 25: [ + function(require, module, exports) { + module.exports = require("./lib/_stream_writable.js") + }, + { "./lib/_stream_writable.js": 17 } + ], + 26: [ + function(require, module, exports) { + /* eslint-disable node/no-deprecated-api */ + var buffer = require("buffer") + var Buffer = buffer.Buffer + + // alternative to using Object.keys for old browsers + function copyProps(src, dst) { + for (var key in src) { + dst[key] = src[key] + } + } + if ( + Buffer.from && + Buffer.alloc && + Buffer.allocUnsafe && + Buffer.allocUnsafeSlow + ) { + module.exports = buffer + } else { + // Copy properties from require('buffer') + copyProps(buffer, exports) + exports.Buffer = SafeBuffer + } + + function SafeBuffer(arg, encodingOrOffset, length) { + return Buffer(arg, encodingOrOffset, length) + } + + // Copy static methods from Buffer + copyProps(Buffer, SafeBuffer) + + SafeBuffer.from = function(arg, encodingOrOffset, length) { + if (typeof arg === "number") { + throw new TypeError("Argument must not be a number") + } + return Buffer(arg, encodingOrOffset, length) + } + + SafeBuffer.alloc = function(size, fill, encoding) { + if (typeof size !== "number") { + throw new TypeError("Argument must be a number") + } + var buf = Buffer(size) + if (fill !== undefined) { + if (typeof encoding === "string") { + buf.fill(fill, encoding) + } else { + buf.fill(fill) + } + } else { + buf.fill(0) + } + return buf + } + + SafeBuffer.allocUnsafe = function(size) { + if (typeof size !== "number") { + throw new TypeError("Argument must be a number") + } + return Buffer(size) + } + + SafeBuffer.allocUnsafeSlow = function(size) { + if (typeof size !== "number") { + throw new TypeError("Argument must be a number") + } + return buffer.SlowBuffer(size) + } + }, + { buffer: 3 } + ], + 27: [ + function(require, module, exports) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + module.exports = Stream + + var EE = require("events").EventEmitter + var inherits = require("inherits") + + inherits(Stream, EE) + Stream.Readable = require("readable-stream/readable.js") + Stream.Writable = require("readable-stream/writable.js") + Stream.Duplex = require("readable-stream/duplex.js") + Stream.Transform = require("readable-stream/transform.js") + Stream.PassThrough = require("readable-stream/passthrough.js") + + // Backwards-compat with node 0.4.x + Stream.Stream = Stream + + // old-style streams. Note that the pipe method (the only relevant + // part of this class) is overridden in the Readable class. + + function Stream() { + EE.call(this) + } + + Stream.prototype.pipe = function(dest, options) { + var source = this + + function ondata(chunk) { + if (dest.writable) { + if (false === dest.write(chunk) && source.pause) { + source.pause() + } + } + } + + source.on("data", ondata) + + function ondrain() { + if (source.readable && source.resume) { + source.resume() + } + } + + dest.on("drain", ondrain) + + // If the 'end' option is not supplied, dest.end() will be called when + // source gets the 'end' or 'close' events. Only dest.end() once. + if (!dest._isStdio && (!options || options.end !== false)) { + source.on("end", onend) + source.on("close", onclose) + } + + var didOnEnd = false + function onend() { + if (didOnEnd) return + didOnEnd = true + + dest.end() + } + + function onclose() { + if (didOnEnd) return + didOnEnd = true + + if (typeof dest.destroy === "function") dest.destroy() + } + + // don't leave dangling pipes when there are errors. + function onerror(er) { + cleanup() + if (EE.listenerCount(this, "error") === 0) { + throw er // Unhandled stream error in pipe. + } + } + + source.on("error", onerror) + dest.on("error", onerror) + + // remove all the event listeners that were added. + function cleanup() { + source.removeListener("data", ondata) + dest.removeListener("drain", ondrain) + + source.removeListener("end", onend) + source.removeListener("close", onclose) + + source.removeListener("error", onerror) + dest.removeListener("error", onerror) + + source.removeListener("end", cleanup) + source.removeListener("close", cleanup) + + dest.removeListener("close", cleanup) + } + + source.on("end", cleanup) + source.on("close", cleanup) + + dest.on("close", cleanup) + + dest.emit("pipe", source) + + // Allow for unix-like usage: A.pipe(B).pipe(C) + return dest + } + }, + { + events: 5, + inherits: 7, + "readable-stream/duplex.js": 12, + "readable-stream/passthrough.js": 22, + "readable-stream/readable.js": 23, + "readable-stream/transform.js": 24, + "readable-stream/writable.js": 25 + } + ], + 28: [ + function(require, module, exports) { + arguments[4][21][0].apply(exports, arguments) + }, + { dup: 21, "safe-buffer": 26 } + ], + 29: [ + function(require, module, exports) { + ;(function(setImmediate, clearImmediate) { + var nextTick = require("process/browser.js").nextTick + var apply = Function.prototype.apply + var slice = Array.prototype.slice + var immediateIds = {} + var nextImmediateId = 0 + + // DOM APIs, for completeness + + exports.setTimeout = function() { + return new Timeout( + apply.call(setTimeout, window, arguments), + clearTimeout + ) + } + exports.setInterval = function() { + return new Timeout( + apply.call(setInterval, window, arguments), + clearInterval + ) + } + exports.clearTimeout = exports.clearInterval = function(timeout) { + timeout.close() + } + + function Timeout(id, clearFn) { + this._id = id + this._clearFn = clearFn + } + Timeout.prototype.unref = Timeout.prototype.ref = function() {} + Timeout.prototype.close = function() { + this._clearFn.call(window, this._id) + } + + // Does not start the time, just sets up the members needed. + exports.enroll = function(item, msecs) { + clearTimeout(item._idleTimeoutId) + item._idleTimeout = msecs + } + + exports.unenroll = function(item) { + clearTimeout(item._idleTimeoutId) + item._idleTimeout = -1 + } + + exports._unrefActive = exports.active = function(item) { + clearTimeout(item._idleTimeoutId) + + var msecs = item._idleTimeout + if (msecs >= 0) { + item._idleTimeoutId = setTimeout(function onTimeout() { + if (item._onTimeout) item._onTimeout() + }, msecs) + } + } + + // That's not how node.js implements it but the exposed api is the same. + exports.setImmediate = + typeof setImmediate === "function" + ? setImmediate + : function(fn) { + var id = nextImmediateId++ + var args = + arguments.length < 2 ? false : slice.call(arguments, 1) + + immediateIds[id] = true + + nextTick(function onNextTick() { + if (immediateIds[id]) { + // fn.call() is faster so we optimize for the common use-case + // @see http://jsperf.com/call-apply-segu + if (args) { + fn.apply(null, args) + } else { + fn.call(null) + } + // Prevent ids from leaking + exports.clearImmediate(id) + } + }) + + return id + } + + exports.clearImmediate = + typeof clearImmediate === "function" + ? clearImmediate + : function(id) { + delete immediateIds[id] + } + }.call( + this, + require("timers").setImmediate, + require("timers").clearImmediate + )) + }, + { "process/browser.js": 11, timers: 29 } + ], + 30: [ + function(require, module, exports) { + ;(function(global) { + /** + * Module exports. + */ + + module.exports = deprecate + + /** + * Mark that a method should not be used. + * Returns a modified function which warns once by default. + * + * If `localStorage.noDeprecation = true` is set, then it is a no-op. + * + * If `localStorage.throwDeprecation = true` is set, then deprecated functions + * will throw an Error when invoked. + * + * If `localStorage.traceDeprecation = true` is set, then deprecated functions + * will invoke `console.trace()` instead of `console.error()`. + * + * @param {Function} fn - the function to deprecate + * @param {String} msg - the string to print to the console when `fn` is invoked + * @returns {Function} a new "deprecated" version of `fn` + * @api public + */ + + function deprecate(fn, msg) { + if (config("noDeprecation")) { + return fn + } + + var warned = false + function deprecated() { + if (!warned) { + if (config("throwDeprecation")) { + throw new Error(msg) + } else if (config("traceDeprecation")) { + console.trace(msg) + } else { + console.warn(msg) + } + warned = true + } + return fn.apply(this, arguments) + } + + return deprecated + } + + /** + * Checks `localStorage` for boolean values for the given `name`. + * + * @param {String} name + * @returns {Boolean} + * @api private + */ + + function config(name) { + // accessing global.localStorage can trigger a DOMException in sandboxed iframes + try { + if (!global.localStorage) return false + } catch (_) { + return false + } + var val = global.localStorage[name] + if (null == val) return false + return String(val).toLowerCase() === "true" + } + }.call( + this, + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + {} + ], + 31: [ + function(require, module, exports) { + // base-x encoding / decoding + // Copyright (c) 2018 base-x contributors + // Copyright (c) 2014-2018 The Bitcoin Core developers (base58.cpp) + // Distributed under the MIT software license, see the accompanying + // file LICENSE or http://www.opensource.org/licenses/mit-license.php. + + const Buffer = require("safe-buffer").Buffer + + module.exports = function base(ALPHABET) { + if (ALPHABET.length >= 255) throw new TypeError("Alphabet too long") + + const BASE_MAP = new Uint8Array(256) + BASE_MAP.fill(255) + + for (let i = 0; i < ALPHABET.length; i++) { + const x = ALPHABET.charAt(i) + const xc = x.charCodeAt(0) + + if (BASE_MAP[xc] !== 255) throw new TypeError(x + " is ambiguous") + BASE_MAP[xc] = i + } + + const BASE = ALPHABET.length + const LEADER = ALPHABET.charAt(0) + const FACTOR = Math.log(BASE) / Math.log(256) // log(BASE) / log(256), rounded up + const iFACTOR = Math.log(256) / Math.log(BASE) // log(256) / log(BASE), rounded up + + function encode(source) { + if (!Buffer.isBuffer(source)) + throw new TypeError("Expected Buffer") + if (source.length === 0) return "" + + // Skip & count leading zeroes. + let zeroes = 0 + let length = 0 + let pbegin = 0 + const pend = source.length + + while (pbegin !== pend && source[pbegin] === 0) { + pbegin++ + zeroes++ + } + + // Allocate enough space in big-endian base58 representation. + const size = ((pend - pbegin) * iFACTOR + 1) >>> 0 + const b58 = new Uint8Array(size) + + // Process the bytes. + while (pbegin !== pend) { + let carry = source[pbegin] + + // Apply "b58 = b58 * 256 + ch". + let i = 0 + for ( + let it = size - 1; + (carry !== 0 || i < length) && it !== -1; + it--, i++ + ) { + carry += (256 * b58[it]) >>> 0 + b58[it] = carry % BASE >>> 0 + carry = (carry / BASE) >>> 0 + } + + if (carry !== 0) throw new Error("Non-zero carry") + length = i + pbegin++ + } + + // Skip leading zeroes in base58 result. + let it = size - length + while (it !== size && b58[it] === 0) { + it++ + } + + // Translate the result into a string. + let str = LEADER.repeat(zeroes) + for (; it < size; ++it) str += ALPHABET.charAt(b58[it]) + + return str + } + + function decodeUnsafe(source) { + if (typeof source !== "string") + throw new TypeError("Expected String") + if (source.length === 0) return Buffer.alloc(0) + + let psz = 0 + + // Skip leading spaces. + if (source[psz] === " ") return + + // Skip and count leading '1's. + let zeroes = 0 + let length = 0 + while (source[psz] === LEADER) { + zeroes++ + psz++ + } + + // Allocate enough space in big-endian base256 representation. + const size = ((source.length - psz) * FACTOR + 1) >>> 0 // log(58) / log(256), rounded up. + const b256 = new Uint8Array(size) + + // Process the characters. + while (source[psz]) { + // Decode character + let carry = BASE_MAP[source.charCodeAt(psz)] + + // Invalid character + if (carry === 255) return + + let i = 0 + for ( + let it = size - 1; + (carry !== 0 || i < length) && it !== -1; + it--, i++ + ) { + carry += (BASE * b256[it]) >>> 0 + b256[it] = carry % 256 >>> 0 + carry = (carry / 256) >>> 0 + } + + if (carry !== 0) throw new Error("Non-zero carry") + length = i + psz++ + } + + // Skip trailing spaces. + if (source[psz] === " ") return + + // Skip leading zeroes in b256. + let it = size - length + while (it !== size && b256[it] === 0) { + it++ + } + + const vch = Buffer.allocUnsafe(zeroes + (size - it)) + vch.fill(0x00, 0, zeroes) + + let j = zeroes + while (it !== size) { + vch[j++] = b256[it++] + } + + return vch + } + + function decode(string) { + const buffer = decodeUnsafe(string) + if (buffer) return buffer + + throw new Error("Non-base" + BASE + " character") + } + + return { + encode: encode, + decodeUnsafe: decodeUnsafe, + decode: decode + } + } + }, + { "safe-buffer": 79 } + ], + 32: [ + function(require, module, exports) { + let createHash = require("create-hash") + let createHmac = require("create-hmac") + + function hash160(buffer) { + return createHash("rmd160") + .update( + createHash("sha256") + .update(buffer) + .digest() + ) + .digest() + } + + function hmacSHA512(key, data) { + return createHmac("sha512", key) + .update(data) + .digest() + } + + module.exports = { hash160, hmacSHA512 } + }, + { "create-hash": 40, "create-hmac": 42 } + ], + 33: [ + function(require, module, exports) { + let Buffer = require("safe-buffer").Buffer + let bs58check = require("bs58check") + let crypto = require("./crypto") + let ecc = require("tiny-secp256k1") + let typeforce = require("typeforce") + let wif = require("wif") + + let UINT256_TYPE = typeforce.BufferN(32) + let NETWORK_TYPE = typeforce.compile({ + wif: typeforce.UInt8, + bip32: { + public: typeforce.UInt32, + private: typeforce.UInt32 + } + }) + + let BITCOIN = { + wif: 0x80, + bip32: { + public: 0x0488b21e, + private: 0x0488ade4 + } + } + + function BIP32(d, Q, chainCode, network) { + typeforce(NETWORK_TYPE, network) + + this.__d = d || null + this.__Q = Q || null + + this.chainCode = chainCode + this.depth = 0 + this.index = 0 + this.network = network + this.parentFingerprint = 0x00000000 + } + + Object.defineProperty(BIP32.prototype, "identifier", { + get: function() { + return crypto.hash160(this.publicKey) + } + }) + Object.defineProperty(BIP32.prototype, "fingerprint", { + get: function() { + return this.identifier.slice(0, 4) + } + }) + Object.defineProperty(BIP32.prototype, "privateKey", { + enumerable: false, + get: function() { + return this.__d + } + }) + Object.defineProperty(BIP32.prototype, "publicKey", { + get: function() { + if (!this.__Q) + this.__Q = ecc.pointFromScalar(this.__d, this.compressed) + return this.__Q + } + }) + + // Private === not neutered + // Public === neutered + BIP32.prototype.isNeutered = function() { + return this.__d === null + } + + BIP32.prototype.neutered = function() { + let neutered = fromPublicKey( + this.publicKey, + this.chainCode, + this.network + ) + neutered.depth = this.depth + neutered.index = this.index + neutered.parentFingerprint = this.parentFingerprint + return neutered + } + + BIP32.prototype.toBase58 = function() { + let network = this.network + let version = !this.isNeutered() + ? network.bip32.private + : network.bip32.public + let buffer = Buffer.allocUnsafe(78) + + // 4 bytes: version bytes + buffer.writeUInt32BE(version, 0) + + // 1 byte: depth: 0x00 for master nodes, 0x01 for level-1 descendants, .... + buffer.writeUInt8(this.depth, 4) + + // 4 bytes: the fingerprint of the parent's key (0x00000000 if master key) + buffer.writeUInt32BE(this.parentFingerprint, 5) + + // 4 bytes: child number. This is the number i in xi = xpar/i, with xi the key being serialized. + // This is encoded in big endian. (0x00000000 if master key) + buffer.writeUInt32BE(this.index, 9) + + // 32 bytes: the chain code + this.chainCode.copy(buffer, 13) + + // 33 bytes: the public key or private key data + if (!this.isNeutered()) { + // 0x00 + k for private keys + buffer.writeUInt8(0, 45) + this.privateKey.copy(buffer, 46) + + // 33 bytes: the public key + } else { + // X9.62 encoding for public keys + this.publicKey.copy(buffer, 45) + } + + return bs58check.encode(buffer) + } + + BIP32.prototype.toWIF = function() { + if (!this.privateKey) throw new TypeError("Missing private key") + return wif.encode(this.network.wif, this.privateKey, true) + } + + let HIGHEST_BIT = 0x80000000 + + // https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki#child-key-derivation-ckd-functions + BIP32.prototype.derive = function(index) { + typeforce(typeforce.UInt32, index) + + let isHardened = index >= HIGHEST_BIT + let data = Buffer.allocUnsafe(37) + + // Hardened child + if (isHardened) { + if (this.isNeutered()) + throw new TypeError( + "Missing private key for hardened child key" + ) + + // data = 0x00 || ser256(kpar) || ser32(index) + data[0] = 0x00 + this.privateKey.copy(data, 1) + data.writeUInt32BE(index, 33) + + // Normal child + } else { + // data = serP(point(kpar)) || ser32(index) + // = serP(Kpar) || ser32(index) + this.publicKey.copy(data, 0) + data.writeUInt32BE(index, 33) + } + + let I = crypto.hmacSHA512(this.chainCode, data) + let IL = I.slice(0, 32) + let IR = I.slice(32) + + // if parse256(IL) >= n, proceed with the next value for i + if (!ecc.isPrivate(IL)) return this.derive(index + 1) + + // Private parent key -> private child key + let hd + if (!this.isNeutered()) { + // ki = parse256(IL) + kpar (mod n) + let ki = ecc.privateAdd(this.privateKey, IL) + + // In case ki == 0, proceed with the next value for i + if (ki == null) return this.derive(index + 1) + + hd = fromPrivateKey(ki, IR, this.network) + + // Public parent key -> public child key + } else { + // Ki = point(parse256(IL)) + Kpar + // = G*IL + Kpar + let Ki = ecc.pointAddScalar(this.publicKey, IL, true) + + // In case Ki is the point at infinity, proceed with the next value for i + if (Ki === null) return this.derive(index + 1) + + hd = fromPublicKey(Ki, IR, this.network) + } + + hd.depth = this.depth + 1 + hd.index = index + hd.parentFingerprint = this.fingerprint.readUInt32BE(0) + return hd + } + + let UINT31_MAX = Math.pow(2, 31) - 1 + function UInt31(value) { + return typeforce.UInt32(value) && value <= UINT31_MAX + } + + BIP32.prototype.deriveHardened = function(index) { + typeforce(UInt31, index) + + // Only derives hardened private keys by default + return this.derive(index + HIGHEST_BIT) + } + + function BIP32Path(value) { + return ( + typeforce.String(value) && value.match(/^(m\/)?(\d+'?\/)*\d+'?$/) + ) + } + + BIP32.prototype.derivePath = function(path) { + typeforce(BIP32Path, path) + + let splitPath = path.split("/") + if (splitPath[0] === "m") { + if (this.parentFingerprint) + throw new TypeError("Expected master, got child") + + splitPath = splitPath.slice(1) + } + + return splitPath.reduce(function(prevHd, indexStr) { + let index + if (indexStr.slice(-1) === "'") { + index = parseInt(indexStr.slice(0, -1), 10) + return prevHd.deriveHardened(index) + } else { + index = parseInt(indexStr, 10) + return prevHd.derive(index) + } + }, this) + } + + BIP32.prototype.sign = function(hash) { + return ecc.sign(hash, this.privateKey) + } + + BIP32.prototype.verify = function(hash, signature) { + return ecc.verify(hash, this.publicKey, signature) + } + + function fromBase58(string, network) { + let buffer = bs58check.decode(string) + if (buffer.length !== 78) + throw new TypeError("Invalid buffer length") + network = network || BITCOIN + + // 4 bytes: version bytes + let version = buffer.readUInt32BE(0) + if ( + version !== network.bip32.private && + version !== network.bip32.public + ) + throw new TypeError("Invalid network version") + + // 1 byte: depth: 0x00 for master nodes, 0x01 for level-1 descendants, ... + let depth = buffer[4] + + // 4 bytes: the fingerprint of the parent's key (0x00000000 if master key) + let parentFingerprint = buffer.readUInt32BE(5) + if (depth === 0) { + if (parentFingerprint !== 0x00000000) + throw new TypeError("Invalid parent fingerprint") + } + + // 4 bytes: child number. This is the number i in xi = xpar/i, with xi the key being serialized. + // This is encoded in MSB order. (0x00000000 if master key) + let index = buffer.readUInt32BE(9) + if (depth === 0 && index !== 0) throw new TypeError("Invalid index") + + // 32 bytes: the chain code + let chainCode = buffer.slice(13, 45) + let hd + + // 33 bytes: private key data (0x00 + k) + if (version === network.bip32.private) { + if (buffer.readUInt8(45) !== 0x00) + throw new TypeError("Invalid private key") + let k = buffer.slice(46, 78) + + hd = fromPrivateKey(k, chainCode, network) + + // 33 bytes: public key data (0x02 + X or 0x03 + X) + } else { + let X = buffer.slice(45, 78) + + hd = fromPublicKey(X, chainCode, network) + } + + hd.depth = depth + hd.index = index + hd.parentFingerprint = parentFingerprint + return hd + } + + function fromPrivateKey(privateKey, chainCode, network) { + typeforce( + { + privateKey: UINT256_TYPE, + chainCode: UINT256_TYPE + }, + { privateKey, chainCode } + ) + network = network || BITCOIN + + if (!ecc.isPrivate(privateKey)) + throw new TypeError("Private key not in range [1, n)") + return new BIP32(privateKey, null, chainCode, network) + } + + function fromPublicKey(publicKey, chainCode, network) { + typeforce( + { + publicKey: typeforce.BufferN(33), + chainCode: UINT256_TYPE + }, + { publicKey, chainCode } + ) + network = network || BITCOIN + + // verify the X coordinate is a point on the curve + if (!ecc.isPoint(publicKey)) + throw new TypeError("Point is not on the curve") + return new BIP32(null, publicKey, chainCode, network) + } + + function fromSeed(seed, network) { + typeforce(typeforce.Buffer, seed) + if (seed.length < 16) + throw new TypeError("Seed should be at least 128 bits") + if (seed.length > 64) + throw new TypeError("Seed should be at most 512 bits") + network = network || BITCOIN + + let I = crypto.hmacSHA512("Bitcoin seed", seed) + let IL = I.slice(0, 32) + let IR = I.slice(32) + + return fromPrivateKey(IL, IR, network) + } + + module.exports = { + fromBase58, + fromPrivateKey, + fromPublicKey, + fromSeed + } + }, + { + "./crypto": 32, + bs58check: 38, + "safe-buffer": 79, + "tiny-secp256k1": 88, + typeforce: 92, + wif: 94 + } + ], + 34: [ + function(require, module, exports) { + ;(function(module, exports) { + "use strict" + + // Utils + function assert(val, msg) { + if (!val) throw new Error(msg || "Assertion failed") + } + + // Could use `inherits` module, but don't want to move from single file + // architecture yet. + function inherits(ctor, superCtor) { + ctor.super_ = superCtor + var TempCtor = function() {} + TempCtor.prototype = superCtor.prototype + ctor.prototype = new TempCtor() + ctor.prototype.constructor = ctor + } + + // BN + + function BN(number, base, endian) { + if (BN.isBN(number)) { + return number + } + + this.negative = 0 + this.words = null + this.length = 0 + + // Reduction context + this.red = null + + if (number !== null) { + if (base === "le" || base === "be") { + endian = base + base = 10 + } + + this._init(number || 0, base || 10, endian || "be") + } + } + if (typeof module === "object") { + module.exports = BN + } else { + exports.BN = BN + } + + BN.BN = BN + BN.wordSize = 26 + + var Buffer + try { + Buffer = require("buffer").Buffer + } catch (e) {} + + BN.isBN = function isBN(num) { + if (num instanceof BN) { + return true + } + + return ( + num !== null && + typeof num === "object" && + num.constructor.wordSize === BN.wordSize && + Array.isArray(num.words) + ) + } + + BN.max = function max(left, right) { + if (left.cmp(right) > 0) return left + return right + } + + BN.min = function min(left, right) { + if (left.cmp(right) < 0) return left + return right + } + + BN.prototype._init = function init(number, base, endian) { + if (typeof number === "number") { + return this._initNumber(number, base, endian) + } + + if (typeof number === "object") { + return this._initArray(number, base, endian) + } + + if (base === "hex") { + base = 16 + } + assert(base === (base | 0) && base >= 2 && base <= 36) + + number = number.toString().replace(/\s+/g, "") + var start = 0 + if (number[0] === "-") { + start++ + } + + if (base === 16) { + this._parseHex(number, start) + } else { + this._parseBase(number, base, start) + } + + if (number[0] === "-") { + this.negative = 1 + } + + this.strip() + + if (endian !== "le") return + + this._initArray(this.toArray(), base, endian) + } + + BN.prototype._initNumber = function _initNumber( + number, + base, + endian + ) { + if (number < 0) { + this.negative = 1 + number = -number + } + if (number < 0x4000000) { + this.words = [number & 0x3ffffff] + this.length = 1 + } else if (number < 0x10000000000000) { + this.words = [ + number & 0x3ffffff, + (number / 0x4000000) & 0x3ffffff + ] + this.length = 2 + } else { + assert(number < 0x20000000000000) // 2 ^ 53 (unsafe) + this.words = [ + number & 0x3ffffff, + (number / 0x4000000) & 0x3ffffff, + 1 + ] + this.length = 3 + } + + if (endian !== "le") return + + // Reverse the bytes + this._initArray(this.toArray(), base, endian) + } + + BN.prototype._initArray = function _initArray( + number, + base, + endian + ) { + // Perhaps a Uint8Array + assert(typeof number.length === "number") + if (number.length <= 0) { + this.words = [0] + this.length = 1 + return this + } + + this.length = Math.ceil(number.length / 3) + this.words = new Array(this.length) + for (var i = 0; i < this.length; i++) { + this.words[i] = 0 + } + + var j, w + var off = 0 + if (endian === "be") { + for (i = number.length - 1, j = 0; i >= 0; i -= 3) { + w = number[i] | (number[i - 1] << 8) | (number[i - 2] << 16) + this.words[j] |= (w << off) & 0x3ffffff + this.words[j + 1] = (w >>> (26 - off)) & 0x3ffffff + off += 24 + if (off >= 26) { + off -= 26 + j++ + } + } + } else if (endian === "le") { + for (i = 0, j = 0; i < number.length; i += 3) { + w = number[i] | (number[i + 1] << 8) | (number[i + 2] << 16) + this.words[j] |= (w << off) & 0x3ffffff + this.words[j + 1] = (w >>> (26 - off)) & 0x3ffffff + off += 24 + if (off >= 26) { + off -= 26 + j++ + } + } + } + return this.strip() + } + + function parseHex(str, start, end) { + var r = 0 + var len = Math.min(str.length, end) + for (var i = start; i < len; i++) { + var c = str.charCodeAt(i) - 48 + + r <<= 4 + + // 'a' - 'f' + if (c >= 49 && c <= 54) { + r |= c - 49 + 0xa + + // 'A' - 'F' + } else if (c >= 17 && c <= 22) { + r |= c - 17 + 0xa + + // '0' - '9' + } else { + r |= c & 0xf + } + } + return r + } + + BN.prototype._parseHex = function _parseHex(number, start) { + // Create possibly bigger array to ensure that it fits the number + this.length = Math.ceil((number.length - start) / 6) + this.words = new Array(this.length) + for (var i = 0; i < this.length; i++) { + this.words[i] = 0 + } + + var j, w + // Scan 24-bit chunks and add them to the number + var off = 0 + for (i = number.length - 6, j = 0; i >= start; i -= 6) { + w = parseHex(number, i, i + 6) + this.words[j] |= (w << off) & 0x3ffffff + // NOTE: `0x3fffff` is intentional here, 26bits max shift + 24bit hex limb + this.words[j + 1] |= (w >>> (26 - off)) & 0x3fffff + off += 24 + if (off >= 26) { + off -= 26 + j++ + } + } + if (i + 6 !== start) { + w = parseHex(number, start, i + 6) + this.words[j] |= (w << off) & 0x3ffffff + this.words[j + 1] |= (w >>> (26 - off)) & 0x3fffff + } + this.strip() + } + + function parseBase(str, start, end, mul) { + var r = 0 + var len = Math.min(str.length, end) + for (var i = start; i < len; i++) { + var c = str.charCodeAt(i) - 48 + + r *= mul + + // 'a' + if (c >= 49) { + r += c - 49 + 0xa + + // 'A' + } else if (c >= 17) { + r += c - 17 + 0xa + + // '0' - '9' + } else { + r += c + } + } + return r + } + + BN.prototype._parseBase = function _parseBase(number, base, start) { + // Initialize as zero + this.words = [0] + this.length = 1 + + // Find length of limb in base + for ( + var limbLen = 0, limbPow = 1; + limbPow <= 0x3ffffff; + limbPow *= base + ) { + limbLen++ + } + limbLen-- + limbPow = (limbPow / base) | 0 + + var total = number.length - start + var mod = total % limbLen + var end = Math.min(total, total - mod) + start + + var word = 0 + for (var i = start; i < end; i += limbLen) { + word = parseBase(number, i, i + limbLen, base) + + this.imuln(limbPow) + if (this.words[0] + word < 0x4000000) { + this.words[0] += word + } else { + this._iaddn(word) + } + } + + if (mod !== 0) { + var pow = 1 + word = parseBase(number, i, number.length, base) + + for (i = 0; i < mod; i++) { + pow *= base + } + + this.imuln(pow) + if (this.words[0] + word < 0x4000000) { + this.words[0] += word + } else { + this._iaddn(word) + } + } + } + + BN.prototype.copy = function copy(dest) { + dest.words = new Array(this.length) + for (var i = 0; i < this.length; i++) { + dest.words[i] = this.words[i] + } + dest.length = this.length + dest.negative = this.negative + dest.red = this.red + } + + BN.prototype.clone = function clone() { + var r = new BN(null) + this.copy(r) + return r + } + + BN.prototype._expand = function _expand(size) { + while (this.length < size) { + this.words[this.length++] = 0 + } + return this + } + + // Remove leading `0` from `this` + BN.prototype.strip = function strip() { + while (this.length > 1 && this.words[this.length - 1] === 0) { + this.length-- + } + return this._normSign() + } + + BN.prototype._normSign = function _normSign() { + // -0 = 0 + if (this.length === 1 && this.words[0] === 0) { + this.negative = 0 + } + return this + } + + BN.prototype.inspect = function inspect() { + return (this.red ? "" + } + + /* + + var zeros = []; + var groupSizes = []; + var groupBases = []; + + var s = ''; + var i = -1; + while (++i < BN.wordSize) { + zeros[i] = s; + s += '0'; + } + groupSizes[0] = 0; + groupSizes[1] = 0; + groupBases[0] = 0; + groupBases[1] = 0; + var base = 2 - 1; + while (++base < 36 + 1) { + var groupSize = 0; + var groupBase = 1; + while (groupBase < (1 << BN.wordSize) / base) { + groupBase *= base; + groupSize += 1; + } + groupSizes[base] = groupSize; + groupBases[base] = groupBase; + } + + */ + + var zeros = [ + "", + "0", + "00", + "000", + "0000", + "00000", + "000000", + "0000000", + "00000000", + "000000000", + "0000000000", + "00000000000", + "000000000000", + "0000000000000", + "00000000000000", + "000000000000000", + "0000000000000000", + "00000000000000000", + "000000000000000000", + "0000000000000000000", + "00000000000000000000", + "000000000000000000000", + "0000000000000000000000", + "00000000000000000000000", + "000000000000000000000000", + "0000000000000000000000000" + ] + + var groupSizes = [ + 0, + 0, + 25, + 16, + 12, + 11, + 10, + 9, + 8, + 8, + 7, + 7, + 7, + 7, + 6, + 6, + 6, + 6, + 6, + 6, + 6, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5 + ] + + var groupBases = [ + 0, + 0, + 33554432, + 43046721, + 16777216, + 48828125, + 60466176, + 40353607, + 16777216, + 43046721, + 10000000, + 19487171, + 35831808, + 62748517, + 7529536, + 11390625, + 16777216, + 24137569, + 34012224, + 47045881, + 64000000, + 4084101, + 5153632, + 6436343, + 7962624, + 9765625, + 11881376, + 14348907, + 17210368, + 20511149, + 24300000, + 28629151, + 33554432, + 39135393, + 45435424, + 52521875, + 60466176 + ] + + BN.prototype.toString = function toString(base, padding) { + base = base || 10 + padding = padding | 0 || 1 + + var out + if (base === 16 || base === "hex") { + out = "" + var off = 0 + var carry = 0 + for (var i = 0; i < this.length; i++) { + var w = this.words[i] + var word = (((w << off) | carry) & 0xffffff).toString(16) + carry = (w >>> (24 - off)) & 0xffffff + if (carry !== 0 || i !== this.length - 1) { + out = zeros[6 - word.length] + word + out + } else { + out = word + out + } + off += 2 + if (off >= 26) { + off -= 26 + i-- + } + } + if (carry !== 0) { + out = carry.toString(16) + out + } + while (out.length % padding !== 0) { + out = "0" + out + } + if (this.negative !== 0) { + out = "-" + out + } + return out + } + + if (base === (base | 0) && base >= 2 && base <= 36) { + // var groupSize = Math.floor(BN.wordSize * Math.LN2 / Math.log(base)); + var groupSize = groupSizes[base] + // var groupBase = Math.pow(base, groupSize); + var groupBase = groupBases[base] + out = "" + var c = this.clone() + c.negative = 0 + while (!c.isZero()) { + var r = c.modn(groupBase).toString(base) + c = c.idivn(groupBase) + + if (!c.isZero()) { + out = zeros[groupSize - r.length] + r + out + } else { + out = r + out + } + } + if (this.isZero()) { + out = "0" + out + } + while (out.length % padding !== 0) { + out = "0" + out + } + if (this.negative !== 0) { + out = "-" + out + } + return out + } + + assert(false, "Base should be between 2 and 36") + } + + BN.prototype.toNumber = function toNumber() { + var ret = this.words[0] + if (this.length === 2) { + ret += this.words[1] * 0x4000000 + } else if (this.length === 3 && this.words[2] === 0x01) { + // NOTE: at this stage it is known that the top bit is set + ret += 0x10000000000000 + this.words[1] * 0x4000000 + } else if (this.length > 2) { + assert(false, "Number can only safely store up to 53 bits") + } + return this.negative !== 0 ? -ret : ret + } + + BN.prototype.toJSON = function toJSON() { + return this.toString(16) + } + + BN.prototype.toBuffer = function toBuffer(endian, length) { + assert(typeof Buffer !== "undefined") + return this.toArrayLike(Buffer, endian, length) + } + + BN.prototype.toArray = function toArray(endian, length) { + return this.toArrayLike(Array, endian, length) + } + + BN.prototype.toArrayLike = function toArrayLike( + ArrayType, + endian, + length + ) { + var byteLength = this.byteLength() + var reqLength = length || Math.max(1, byteLength) + assert( + byteLength <= reqLength, + "byte array longer than desired length" + ) + assert(reqLength > 0, "Requested array length <= 0") + + this.strip() + var littleEndian = endian === "le" + var res = new ArrayType(reqLength) + + var b, i + var q = this.clone() + if (!littleEndian) { + // Assume big-endian + for (i = 0; i < reqLength - byteLength; i++) { + res[i] = 0 + } + + for (i = 0; !q.isZero(); i++) { + b = q.andln(0xff) + q.iushrn(8) + + res[reqLength - i - 1] = b + } + } else { + for (i = 0; !q.isZero(); i++) { + b = q.andln(0xff) + q.iushrn(8) + + res[i] = b + } + + for (; i < reqLength; i++) { + res[i] = 0 + } + } + + return res + } + + if (Math.clz32) { + BN.prototype._countBits = function _countBits(w) { + return 32 - Math.clz32(w) + } + } else { + BN.prototype._countBits = function _countBits(w) { + var t = w + var r = 0 + if (t >= 0x1000) { + r += 13 + t >>>= 13 + } + if (t >= 0x40) { + r += 7 + t >>>= 7 + } + if (t >= 0x8) { + r += 4 + t >>>= 4 + } + if (t >= 0x02) { + r += 2 + t >>>= 2 + } + return r + t + } + } + + BN.prototype._zeroBits = function _zeroBits(w) { + // Short-cut + if (w === 0) return 26 + + var t = w + var r = 0 + if ((t & 0x1fff) === 0) { + r += 13 + t >>>= 13 + } + if ((t & 0x7f) === 0) { + r += 7 + t >>>= 7 + } + if ((t & 0xf) === 0) { + r += 4 + t >>>= 4 + } + if ((t & 0x3) === 0) { + r += 2 + t >>>= 2 + } + if ((t & 0x1) === 0) { + r++ + } + return r + } + + // Return number of used bits in a BN + BN.prototype.bitLength = function bitLength() { + var w = this.words[this.length - 1] + var hi = this._countBits(w) + return (this.length - 1) * 26 + hi + } + + function toBitArray(num) { + var w = new Array(num.bitLength()) + + for (var bit = 0; bit < w.length; bit++) { + var off = (bit / 26) | 0 + var wbit = bit % 26 + + w[bit] = (num.words[off] & (1 << wbit)) >>> wbit + } + + return w + } + + // Number of trailing zero bits + BN.prototype.zeroBits = function zeroBits() { + if (this.isZero()) return 0 + + var r = 0 + for (var i = 0; i < this.length; i++) { + var b = this._zeroBits(this.words[i]) + r += b + if (b !== 26) break + } + return r + } + + BN.prototype.byteLength = function byteLength() { + return Math.ceil(this.bitLength() / 8) + } + + BN.prototype.toTwos = function toTwos(width) { + if (this.negative !== 0) { + return this.abs() + .inotn(width) + .iaddn(1) + } + return this.clone() + } + + BN.prototype.fromTwos = function fromTwos(width) { + if (this.testn(width - 1)) { + return this.notn(width) + .iaddn(1) + .ineg() + } + return this.clone() + } + + BN.prototype.isNeg = function isNeg() { + return this.negative !== 0 + } + + // Return negative clone of `this` + BN.prototype.neg = function neg() { + return this.clone().ineg() + } + + BN.prototype.ineg = function ineg() { + if (!this.isZero()) { + this.negative ^= 1 + } + + return this + } + + // Or `num` with `this` in-place + BN.prototype.iuor = function iuor(num) { + while (this.length < num.length) { + this.words[this.length++] = 0 + } + + for (var i = 0; i < num.length; i++) { + this.words[i] = this.words[i] | num.words[i] + } + + return this.strip() + } + + BN.prototype.ior = function ior(num) { + assert((this.negative | num.negative) === 0) + return this.iuor(num) + } + + // Or `num` with `this` + BN.prototype.or = function or(num) { + if (this.length > num.length) return this.clone().ior(num) + return num.clone().ior(this) + } + + BN.prototype.uor = function uor(num) { + if (this.length > num.length) return this.clone().iuor(num) + return num.clone().iuor(this) + } + + // And `num` with `this` in-place + BN.prototype.iuand = function iuand(num) { + // b = min-length(num, this) + var b + if (this.length > num.length) { + b = num + } else { + b = this + } + + for (var i = 0; i < b.length; i++) { + this.words[i] = this.words[i] & num.words[i] + } + + this.length = b.length + + return this.strip() + } + + BN.prototype.iand = function iand(num) { + assert((this.negative | num.negative) === 0) + return this.iuand(num) + } + + // And `num` with `this` + BN.prototype.and = function and(num) { + if (this.length > num.length) return this.clone().iand(num) + return num.clone().iand(this) + } + + BN.prototype.uand = function uand(num) { + if (this.length > num.length) return this.clone().iuand(num) + return num.clone().iuand(this) + } + + // Xor `num` with `this` in-place + BN.prototype.iuxor = function iuxor(num) { + // a.length > b.length + var a + var b + if (this.length > num.length) { + a = this + b = num + } else { + a = num + b = this + } + + for (var i = 0; i < b.length; i++) { + this.words[i] = a.words[i] ^ b.words[i] + } + + if (this !== a) { + for (; i < a.length; i++) { + this.words[i] = a.words[i] + } + } + + this.length = a.length + + return this.strip() + } + + BN.prototype.ixor = function ixor(num) { + assert((this.negative | num.negative) === 0) + return this.iuxor(num) + } + + // Xor `num` with `this` + BN.prototype.xor = function xor(num) { + if (this.length > num.length) return this.clone().ixor(num) + return num.clone().ixor(this) + } + + BN.prototype.uxor = function uxor(num) { + if (this.length > num.length) return this.clone().iuxor(num) + return num.clone().iuxor(this) + } + + // Not ``this`` with ``width`` bitwidth + BN.prototype.inotn = function inotn(width) { + assert(typeof width === "number" && width >= 0) + + var bytesNeeded = Math.ceil(width / 26) | 0 + var bitsLeft = width % 26 + + // Extend the buffer with leading zeroes + this._expand(bytesNeeded) + + if (bitsLeft > 0) { + bytesNeeded-- + } + + // Handle complete words + for (var i = 0; i < bytesNeeded; i++) { + this.words[i] = ~this.words[i] & 0x3ffffff + } + + // Handle the residue + if (bitsLeft > 0) { + this.words[i] = ~this.words[i] & (0x3ffffff >> (26 - bitsLeft)) + } + + // And remove leading zeroes + return this.strip() + } + + BN.prototype.notn = function notn(width) { + return this.clone().inotn(width) + } + + // Set `bit` of `this` + BN.prototype.setn = function setn(bit, val) { + assert(typeof bit === "number" && bit >= 0) + + var off = (bit / 26) | 0 + var wbit = bit % 26 + + this._expand(off + 1) + + if (val) { + this.words[off] = this.words[off] | (1 << wbit) + } else { + this.words[off] = this.words[off] & ~(1 << wbit) + } + + return this.strip() + } + + // Add `num` to `this` in-place + BN.prototype.iadd = function iadd(num) { + var r + + // negative + positive + if (this.negative !== 0 && num.negative === 0) { + this.negative = 0 + r = this.isub(num) + this.negative ^= 1 + return this._normSign() + + // positive + negative + } else if (this.negative === 0 && num.negative !== 0) { + num.negative = 0 + r = this.isub(num) + num.negative = 1 + return r._normSign() + } + + // a.length > b.length + var a, b + if (this.length > num.length) { + a = this + b = num + } else { + a = num + b = this + } + + var carry = 0 + for (var i = 0; i < b.length; i++) { + r = (a.words[i] | 0) + (b.words[i] | 0) + carry + this.words[i] = r & 0x3ffffff + carry = r >>> 26 + } + for (; carry !== 0 && i < a.length; i++) { + r = (a.words[i] | 0) + carry + this.words[i] = r & 0x3ffffff + carry = r >>> 26 + } + + this.length = a.length + if (carry !== 0) { + this.words[this.length] = carry + this.length++ + // Copy the rest of the words + } else if (a !== this) { + for (; i < a.length; i++) { + this.words[i] = a.words[i] + } + } + + return this + } + + // Add `num` to `this` + BN.prototype.add = function add(num) { + var res + if (num.negative !== 0 && this.negative === 0) { + num.negative = 0 + res = this.sub(num) + num.negative ^= 1 + return res + } else if (num.negative === 0 && this.negative !== 0) { + this.negative = 0 + res = num.sub(this) + this.negative = 1 + return res + } + + if (this.length > num.length) return this.clone().iadd(num) + + return num.clone().iadd(this) + } + + // Subtract `num` from `this` in-place + BN.prototype.isub = function isub(num) { + // this - (-num) = this + num + if (num.negative !== 0) { + num.negative = 0 + var r = this.iadd(num) + num.negative = 1 + return r._normSign() + + // -this - num = -(this + num) + } else if (this.negative !== 0) { + this.negative = 0 + this.iadd(num) + this.negative = 1 + return this._normSign() + } + + // At this point both numbers are positive + var cmp = this.cmp(num) + + // Optimization - zeroify + if (cmp === 0) { + this.negative = 0 + this.length = 1 + this.words[0] = 0 + return this + } + + // a > b + var a, b + if (cmp > 0) { + a = this + b = num + } else { + a = num + b = this + } + + var carry = 0 + for (var i = 0; i < b.length; i++) { + r = (a.words[i] | 0) - (b.words[i] | 0) + carry + carry = r >> 26 + this.words[i] = r & 0x3ffffff + } + for (; carry !== 0 && i < a.length; i++) { + r = (a.words[i] | 0) + carry + carry = r >> 26 + this.words[i] = r & 0x3ffffff + } + + // Copy rest of the words + if (carry === 0 && i < a.length && a !== this) { + for (; i < a.length; i++) { + this.words[i] = a.words[i] + } + } + + this.length = Math.max(this.length, i) + + if (a !== this) { + this.negative = 1 + } + + return this.strip() + } + + // Subtract `num` from `this` + BN.prototype.sub = function sub(num) { + return this.clone().isub(num) + } + + function smallMulTo(self, num, out) { + out.negative = num.negative ^ self.negative + var len = (self.length + num.length) | 0 + out.length = len + len = (len - 1) | 0 + + // Peel one iteration (compiler can't do it, because of code complexity) + var a = self.words[0] | 0 + var b = num.words[0] | 0 + var r = a * b + + var lo = r & 0x3ffffff + var carry = (r / 0x4000000) | 0 + out.words[0] = lo + + for (var k = 1; k < len; k++) { + // Sum all words with the same `i + j = k` and accumulate `ncarry`, + // note that ncarry could be >= 0x3ffffff + var ncarry = carry >>> 26 + var rword = carry & 0x3ffffff + var maxJ = Math.min(k, num.length - 1) + for (var j = Math.max(0, k - self.length + 1); j <= maxJ; j++) { + var i = (k - j) | 0 + a = self.words[i] | 0 + b = num.words[j] | 0 + r = a * b + rword + ncarry += (r / 0x4000000) | 0 + rword = r & 0x3ffffff + } + out.words[k] = rword | 0 + carry = ncarry | 0 + } + if (carry !== 0) { + out.words[k] = carry | 0 + } else { + out.length-- + } + + return out.strip() + } + + // TODO(indutny): it may be reasonable to omit it for users who don't need + // to work with 256-bit numbers, otherwise it gives 20% improvement for 256-bit + // multiplication (like elliptic secp256k1). + var comb10MulTo = function comb10MulTo(self, num, out) { + var a = self.words + var b = num.words + var o = out.words + var c = 0 + var lo + var mid + var hi + var a0 = a[0] | 0 + var al0 = a0 & 0x1fff + var ah0 = a0 >>> 13 + var a1 = a[1] | 0 + var al1 = a1 & 0x1fff + var ah1 = a1 >>> 13 + var a2 = a[2] | 0 + var al2 = a2 & 0x1fff + var ah2 = a2 >>> 13 + var a3 = a[3] | 0 + var al3 = a3 & 0x1fff + var ah3 = a3 >>> 13 + var a4 = a[4] | 0 + var al4 = a4 & 0x1fff + var ah4 = a4 >>> 13 + var a5 = a[5] | 0 + var al5 = a5 & 0x1fff + var ah5 = a5 >>> 13 + var a6 = a[6] | 0 + var al6 = a6 & 0x1fff + var ah6 = a6 >>> 13 + var a7 = a[7] | 0 + var al7 = a7 & 0x1fff + var ah7 = a7 >>> 13 + var a8 = a[8] | 0 + var al8 = a8 & 0x1fff + var ah8 = a8 >>> 13 + var a9 = a[9] | 0 + var al9 = a9 & 0x1fff + var ah9 = a9 >>> 13 + var b0 = b[0] | 0 + var bl0 = b0 & 0x1fff + var bh0 = b0 >>> 13 + var b1 = b[1] | 0 + var bl1 = b1 & 0x1fff + var bh1 = b1 >>> 13 + var b2 = b[2] | 0 + var bl2 = b2 & 0x1fff + var bh2 = b2 >>> 13 + var b3 = b[3] | 0 + var bl3 = b3 & 0x1fff + var bh3 = b3 >>> 13 + var b4 = b[4] | 0 + var bl4 = b4 & 0x1fff + var bh4 = b4 >>> 13 + var b5 = b[5] | 0 + var bl5 = b5 & 0x1fff + var bh5 = b5 >>> 13 + var b6 = b[6] | 0 + var bl6 = b6 & 0x1fff + var bh6 = b6 >>> 13 + var b7 = b[7] | 0 + var bl7 = b7 & 0x1fff + var bh7 = b7 >>> 13 + var b8 = b[8] | 0 + var bl8 = b8 & 0x1fff + var bh8 = b8 >>> 13 + var b9 = b[9] | 0 + var bl9 = b9 & 0x1fff + var bh9 = b9 >>> 13 + + out.negative = self.negative ^ num.negative + out.length = 19 + /* k = 0 */ + lo = Math.imul(al0, bl0) + mid = Math.imul(al0, bh0) + mid = (mid + Math.imul(ah0, bl0)) | 0 + hi = Math.imul(ah0, bh0) + var w0 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w0 >>> 26)) | 0 + w0 &= 0x3ffffff + /* k = 1 */ + lo = Math.imul(al1, bl0) + mid = Math.imul(al1, bh0) + mid = (mid + Math.imul(ah1, bl0)) | 0 + hi = Math.imul(ah1, bh0) + lo = (lo + Math.imul(al0, bl1)) | 0 + mid = (mid + Math.imul(al0, bh1)) | 0 + mid = (mid + Math.imul(ah0, bl1)) | 0 + hi = (hi + Math.imul(ah0, bh1)) | 0 + var w1 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w1 >>> 26)) | 0 + w1 &= 0x3ffffff + /* k = 2 */ + lo = Math.imul(al2, bl0) + mid = Math.imul(al2, bh0) + mid = (mid + Math.imul(ah2, bl0)) | 0 + hi = Math.imul(ah2, bh0) + lo = (lo + Math.imul(al1, bl1)) | 0 + mid = (mid + Math.imul(al1, bh1)) | 0 + mid = (mid + Math.imul(ah1, bl1)) | 0 + hi = (hi + Math.imul(ah1, bh1)) | 0 + lo = (lo + Math.imul(al0, bl2)) | 0 + mid = (mid + Math.imul(al0, bh2)) | 0 + mid = (mid + Math.imul(ah0, bl2)) | 0 + hi = (hi + Math.imul(ah0, bh2)) | 0 + var w2 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w2 >>> 26)) | 0 + w2 &= 0x3ffffff + /* k = 3 */ + lo = Math.imul(al3, bl0) + mid = Math.imul(al3, bh0) + mid = (mid + Math.imul(ah3, bl0)) | 0 + hi = Math.imul(ah3, bh0) + lo = (lo + Math.imul(al2, bl1)) | 0 + mid = (mid + Math.imul(al2, bh1)) | 0 + mid = (mid + Math.imul(ah2, bl1)) | 0 + hi = (hi + Math.imul(ah2, bh1)) | 0 + lo = (lo + Math.imul(al1, bl2)) | 0 + mid = (mid + Math.imul(al1, bh2)) | 0 + mid = (mid + Math.imul(ah1, bl2)) | 0 + hi = (hi + Math.imul(ah1, bh2)) | 0 + lo = (lo + Math.imul(al0, bl3)) | 0 + mid = (mid + Math.imul(al0, bh3)) | 0 + mid = (mid + Math.imul(ah0, bl3)) | 0 + hi = (hi + Math.imul(ah0, bh3)) | 0 + var w3 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w3 >>> 26)) | 0 + w3 &= 0x3ffffff + /* k = 4 */ + lo = Math.imul(al4, bl0) + mid = Math.imul(al4, bh0) + mid = (mid + Math.imul(ah4, bl0)) | 0 + hi = Math.imul(ah4, bh0) + lo = (lo + Math.imul(al3, bl1)) | 0 + mid = (mid + Math.imul(al3, bh1)) | 0 + mid = (mid + Math.imul(ah3, bl1)) | 0 + hi = (hi + Math.imul(ah3, bh1)) | 0 + lo = (lo + Math.imul(al2, bl2)) | 0 + mid = (mid + Math.imul(al2, bh2)) | 0 + mid = (mid + Math.imul(ah2, bl2)) | 0 + hi = (hi + Math.imul(ah2, bh2)) | 0 + lo = (lo + Math.imul(al1, bl3)) | 0 + mid = (mid + Math.imul(al1, bh3)) | 0 + mid = (mid + Math.imul(ah1, bl3)) | 0 + hi = (hi + Math.imul(ah1, bh3)) | 0 + lo = (lo + Math.imul(al0, bl4)) | 0 + mid = (mid + Math.imul(al0, bh4)) | 0 + mid = (mid + Math.imul(ah0, bl4)) | 0 + hi = (hi + Math.imul(ah0, bh4)) | 0 + var w4 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w4 >>> 26)) | 0 + w4 &= 0x3ffffff + /* k = 5 */ + lo = Math.imul(al5, bl0) + mid = Math.imul(al5, bh0) + mid = (mid + Math.imul(ah5, bl0)) | 0 + hi = Math.imul(ah5, bh0) + lo = (lo + Math.imul(al4, bl1)) | 0 + mid = (mid + Math.imul(al4, bh1)) | 0 + mid = (mid + Math.imul(ah4, bl1)) | 0 + hi = (hi + Math.imul(ah4, bh1)) | 0 + lo = (lo + Math.imul(al3, bl2)) | 0 + mid = (mid + Math.imul(al3, bh2)) | 0 + mid = (mid + Math.imul(ah3, bl2)) | 0 + hi = (hi + Math.imul(ah3, bh2)) | 0 + lo = (lo + Math.imul(al2, bl3)) | 0 + mid = (mid + Math.imul(al2, bh3)) | 0 + mid = (mid + Math.imul(ah2, bl3)) | 0 + hi = (hi + Math.imul(ah2, bh3)) | 0 + lo = (lo + Math.imul(al1, bl4)) | 0 + mid = (mid + Math.imul(al1, bh4)) | 0 + mid = (mid + Math.imul(ah1, bl4)) | 0 + hi = (hi + Math.imul(ah1, bh4)) | 0 + lo = (lo + Math.imul(al0, bl5)) | 0 + mid = (mid + Math.imul(al0, bh5)) | 0 + mid = (mid + Math.imul(ah0, bl5)) | 0 + hi = (hi + Math.imul(ah0, bh5)) | 0 + var w5 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w5 >>> 26)) | 0 + w5 &= 0x3ffffff + /* k = 6 */ + lo = Math.imul(al6, bl0) + mid = Math.imul(al6, bh0) + mid = (mid + Math.imul(ah6, bl0)) | 0 + hi = Math.imul(ah6, bh0) + lo = (lo + Math.imul(al5, bl1)) | 0 + mid = (mid + Math.imul(al5, bh1)) | 0 + mid = (mid + Math.imul(ah5, bl1)) | 0 + hi = (hi + Math.imul(ah5, bh1)) | 0 + lo = (lo + Math.imul(al4, bl2)) | 0 + mid = (mid + Math.imul(al4, bh2)) | 0 + mid = (mid + Math.imul(ah4, bl2)) | 0 + hi = (hi + Math.imul(ah4, bh2)) | 0 + lo = (lo + Math.imul(al3, bl3)) | 0 + mid = (mid + Math.imul(al3, bh3)) | 0 + mid = (mid + Math.imul(ah3, bl3)) | 0 + hi = (hi + Math.imul(ah3, bh3)) | 0 + lo = (lo + Math.imul(al2, bl4)) | 0 + mid = (mid + Math.imul(al2, bh4)) | 0 + mid = (mid + Math.imul(ah2, bl4)) | 0 + hi = (hi + Math.imul(ah2, bh4)) | 0 + lo = (lo + Math.imul(al1, bl5)) | 0 + mid = (mid + Math.imul(al1, bh5)) | 0 + mid = (mid + Math.imul(ah1, bl5)) | 0 + hi = (hi + Math.imul(ah1, bh5)) | 0 + lo = (lo + Math.imul(al0, bl6)) | 0 + mid = (mid + Math.imul(al0, bh6)) | 0 + mid = (mid + Math.imul(ah0, bl6)) | 0 + hi = (hi + Math.imul(ah0, bh6)) | 0 + var w6 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w6 >>> 26)) | 0 + w6 &= 0x3ffffff + /* k = 7 */ + lo = Math.imul(al7, bl0) + mid = Math.imul(al7, bh0) + mid = (mid + Math.imul(ah7, bl0)) | 0 + hi = Math.imul(ah7, bh0) + lo = (lo + Math.imul(al6, bl1)) | 0 + mid = (mid + Math.imul(al6, bh1)) | 0 + mid = (mid + Math.imul(ah6, bl1)) | 0 + hi = (hi + Math.imul(ah6, bh1)) | 0 + lo = (lo + Math.imul(al5, bl2)) | 0 + mid = (mid + Math.imul(al5, bh2)) | 0 + mid = (mid + Math.imul(ah5, bl2)) | 0 + hi = (hi + Math.imul(ah5, bh2)) | 0 + lo = (lo + Math.imul(al4, bl3)) | 0 + mid = (mid + Math.imul(al4, bh3)) | 0 + mid = (mid + Math.imul(ah4, bl3)) | 0 + hi = (hi + Math.imul(ah4, bh3)) | 0 + lo = (lo + Math.imul(al3, bl4)) | 0 + mid = (mid + Math.imul(al3, bh4)) | 0 + mid = (mid + Math.imul(ah3, bl4)) | 0 + hi = (hi + Math.imul(ah3, bh4)) | 0 + lo = (lo + Math.imul(al2, bl5)) | 0 + mid = (mid + Math.imul(al2, bh5)) | 0 + mid = (mid + Math.imul(ah2, bl5)) | 0 + hi = (hi + Math.imul(ah2, bh5)) | 0 + lo = (lo + Math.imul(al1, bl6)) | 0 + mid = (mid + Math.imul(al1, bh6)) | 0 + mid = (mid + Math.imul(ah1, bl6)) | 0 + hi = (hi + Math.imul(ah1, bh6)) | 0 + lo = (lo + Math.imul(al0, bl7)) | 0 + mid = (mid + Math.imul(al0, bh7)) | 0 + mid = (mid + Math.imul(ah0, bl7)) | 0 + hi = (hi + Math.imul(ah0, bh7)) | 0 + var w7 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w7 >>> 26)) | 0 + w7 &= 0x3ffffff + /* k = 8 */ + lo = Math.imul(al8, bl0) + mid = Math.imul(al8, bh0) + mid = (mid + Math.imul(ah8, bl0)) | 0 + hi = Math.imul(ah8, bh0) + lo = (lo + Math.imul(al7, bl1)) | 0 + mid = (mid + Math.imul(al7, bh1)) | 0 + mid = (mid + Math.imul(ah7, bl1)) | 0 + hi = (hi + Math.imul(ah7, bh1)) | 0 + lo = (lo + Math.imul(al6, bl2)) | 0 + mid = (mid + Math.imul(al6, bh2)) | 0 + mid = (mid + Math.imul(ah6, bl2)) | 0 + hi = (hi + Math.imul(ah6, bh2)) | 0 + lo = (lo + Math.imul(al5, bl3)) | 0 + mid = (mid + Math.imul(al5, bh3)) | 0 + mid = (mid + Math.imul(ah5, bl3)) | 0 + hi = (hi + Math.imul(ah5, bh3)) | 0 + lo = (lo + Math.imul(al4, bl4)) | 0 + mid = (mid + Math.imul(al4, bh4)) | 0 + mid = (mid + Math.imul(ah4, bl4)) | 0 + hi = (hi + Math.imul(ah4, bh4)) | 0 + lo = (lo + Math.imul(al3, bl5)) | 0 + mid = (mid + Math.imul(al3, bh5)) | 0 + mid = (mid + Math.imul(ah3, bl5)) | 0 + hi = (hi + Math.imul(ah3, bh5)) | 0 + lo = (lo + Math.imul(al2, bl6)) | 0 + mid = (mid + Math.imul(al2, bh6)) | 0 + mid = (mid + Math.imul(ah2, bl6)) | 0 + hi = (hi + Math.imul(ah2, bh6)) | 0 + lo = (lo + Math.imul(al1, bl7)) | 0 + mid = (mid + Math.imul(al1, bh7)) | 0 + mid = (mid + Math.imul(ah1, bl7)) | 0 + hi = (hi + Math.imul(ah1, bh7)) | 0 + lo = (lo + Math.imul(al0, bl8)) | 0 + mid = (mid + Math.imul(al0, bh8)) | 0 + mid = (mid + Math.imul(ah0, bl8)) | 0 + hi = (hi + Math.imul(ah0, bh8)) | 0 + var w8 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w8 >>> 26)) | 0 + w8 &= 0x3ffffff + /* k = 9 */ + lo = Math.imul(al9, bl0) + mid = Math.imul(al9, bh0) + mid = (mid + Math.imul(ah9, bl0)) | 0 + hi = Math.imul(ah9, bh0) + lo = (lo + Math.imul(al8, bl1)) | 0 + mid = (mid + Math.imul(al8, bh1)) | 0 + mid = (mid + Math.imul(ah8, bl1)) | 0 + hi = (hi + Math.imul(ah8, bh1)) | 0 + lo = (lo + Math.imul(al7, bl2)) | 0 + mid = (mid + Math.imul(al7, bh2)) | 0 + mid = (mid + Math.imul(ah7, bl2)) | 0 + hi = (hi + Math.imul(ah7, bh2)) | 0 + lo = (lo + Math.imul(al6, bl3)) | 0 + mid = (mid + Math.imul(al6, bh3)) | 0 + mid = (mid + Math.imul(ah6, bl3)) | 0 + hi = (hi + Math.imul(ah6, bh3)) | 0 + lo = (lo + Math.imul(al5, bl4)) | 0 + mid = (mid + Math.imul(al5, bh4)) | 0 + mid = (mid + Math.imul(ah5, bl4)) | 0 + hi = (hi + Math.imul(ah5, bh4)) | 0 + lo = (lo + Math.imul(al4, bl5)) | 0 + mid = (mid + Math.imul(al4, bh5)) | 0 + mid = (mid + Math.imul(ah4, bl5)) | 0 + hi = (hi + Math.imul(ah4, bh5)) | 0 + lo = (lo + Math.imul(al3, bl6)) | 0 + mid = (mid + Math.imul(al3, bh6)) | 0 + mid = (mid + Math.imul(ah3, bl6)) | 0 + hi = (hi + Math.imul(ah3, bh6)) | 0 + lo = (lo + Math.imul(al2, bl7)) | 0 + mid = (mid + Math.imul(al2, bh7)) | 0 + mid = (mid + Math.imul(ah2, bl7)) | 0 + hi = (hi + Math.imul(ah2, bh7)) | 0 + lo = (lo + Math.imul(al1, bl8)) | 0 + mid = (mid + Math.imul(al1, bh8)) | 0 + mid = (mid + Math.imul(ah1, bl8)) | 0 + hi = (hi + Math.imul(ah1, bh8)) | 0 + lo = (lo + Math.imul(al0, bl9)) | 0 + mid = (mid + Math.imul(al0, bh9)) | 0 + mid = (mid + Math.imul(ah0, bl9)) | 0 + hi = (hi + Math.imul(ah0, bh9)) | 0 + var w9 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w9 >>> 26)) | 0 + w9 &= 0x3ffffff + /* k = 10 */ + lo = Math.imul(al9, bl1) + mid = Math.imul(al9, bh1) + mid = (mid + Math.imul(ah9, bl1)) | 0 + hi = Math.imul(ah9, bh1) + lo = (lo + Math.imul(al8, bl2)) | 0 + mid = (mid + Math.imul(al8, bh2)) | 0 + mid = (mid + Math.imul(ah8, bl2)) | 0 + hi = (hi + Math.imul(ah8, bh2)) | 0 + lo = (lo + Math.imul(al7, bl3)) | 0 + mid = (mid + Math.imul(al7, bh3)) | 0 + mid = (mid + Math.imul(ah7, bl3)) | 0 + hi = (hi + Math.imul(ah7, bh3)) | 0 + lo = (lo + Math.imul(al6, bl4)) | 0 + mid = (mid + Math.imul(al6, bh4)) | 0 + mid = (mid + Math.imul(ah6, bl4)) | 0 + hi = (hi + Math.imul(ah6, bh4)) | 0 + lo = (lo + Math.imul(al5, bl5)) | 0 + mid = (mid + Math.imul(al5, bh5)) | 0 + mid = (mid + Math.imul(ah5, bl5)) | 0 + hi = (hi + Math.imul(ah5, bh5)) | 0 + lo = (lo + Math.imul(al4, bl6)) | 0 + mid = (mid + Math.imul(al4, bh6)) | 0 + mid = (mid + Math.imul(ah4, bl6)) | 0 + hi = (hi + Math.imul(ah4, bh6)) | 0 + lo = (lo + Math.imul(al3, bl7)) | 0 + mid = (mid + Math.imul(al3, bh7)) | 0 + mid = (mid + Math.imul(ah3, bl7)) | 0 + hi = (hi + Math.imul(ah3, bh7)) | 0 + lo = (lo + Math.imul(al2, bl8)) | 0 + mid = (mid + Math.imul(al2, bh8)) | 0 + mid = (mid + Math.imul(ah2, bl8)) | 0 + hi = (hi + Math.imul(ah2, bh8)) | 0 + lo = (lo + Math.imul(al1, bl9)) | 0 + mid = (mid + Math.imul(al1, bh9)) | 0 + mid = (mid + Math.imul(ah1, bl9)) | 0 + hi = (hi + Math.imul(ah1, bh9)) | 0 + var w10 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w10 >>> 26)) | 0 + w10 &= 0x3ffffff + /* k = 11 */ + lo = Math.imul(al9, bl2) + mid = Math.imul(al9, bh2) + mid = (mid + Math.imul(ah9, bl2)) | 0 + hi = Math.imul(ah9, bh2) + lo = (lo + Math.imul(al8, bl3)) | 0 + mid = (mid + Math.imul(al8, bh3)) | 0 + mid = (mid + Math.imul(ah8, bl3)) | 0 + hi = (hi + Math.imul(ah8, bh3)) | 0 + lo = (lo + Math.imul(al7, bl4)) | 0 + mid = (mid + Math.imul(al7, bh4)) | 0 + mid = (mid + Math.imul(ah7, bl4)) | 0 + hi = (hi + Math.imul(ah7, bh4)) | 0 + lo = (lo + Math.imul(al6, bl5)) | 0 + mid = (mid + Math.imul(al6, bh5)) | 0 + mid = (mid + Math.imul(ah6, bl5)) | 0 + hi = (hi + Math.imul(ah6, bh5)) | 0 + lo = (lo + Math.imul(al5, bl6)) | 0 + mid = (mid + Math.imul(al5, bh6)) | 0 + mid = (mid + Math.imul(ah5, bl6)) | 0 + hi = (hi + Math.imul(ah5, bh6)) | 0 + lo = (lo + Math.imul(al4, bl7)) | 0 + mid = (mid + Math.imul(al4, bh7)) | 0 + mid = (mid + Math.imul(ah4, bl7)) | 0 + hi = (hi + Math.imul(ah4, bh7)) | 0 + lo = (lo + Math.imul(al3, bl8)) | 0 + mid = (mid + Math.imul(al3, bh8)) | 0 + mid = (mid + Math.imul(ah3, bl8)) | 0 + hi = (hi + Math.imul(ah3, bh8)) | 0 + lo = (lo + Math.imul(al2, bl9)) | 0 + mid = (mid + Math.imul(al2, bh9)) | 0 + mid = (mid + Math.imul(ah2, bl9)) | 0 + hi = (hi + Math.imul(ah2, bh9)) | 0 + var w11 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w11 >>> 26)) | 0 + w11 &= 0x3ffffff + /* k = 12 */ + lo = Math.imul(al9, bl3) + mid = Math.imul(al9, bh3) + mid = (mid + Math.imul(ah9, bl3)) | 0 + hi = Math.imul(ah9, bh3) + lo = (lo + Math.imul(al8, bl4)) | 0 + mid = (mid + Math.imul(al8, bh4)) | 0 + mid = (mid + Math.imul(ah8, bl4)) | 0 + hi = (hi + Math.imul(ah8, bh4)) | 0 + lo = (lo + Math.imul(al7, bl5)) | 0 + mid = (mid + Math.imul(al7, bh5)) | 0 + mid = (mid + Math.imul(ah7, bl5)) | 0 + hi = (hi + Math.imul(ah7, bh5)) | 0 + lo = (lo + Math.imul(al6, bl6)) | 0 + mid = (mid + Math.imul(al6, bh6)) | 0 + mid = (mid + Math.imul(ah6, bl6)) | 0 + hi = (hi + Math.imul(ah6, bh6)) | 0 + lo = (lo + Math.imul(al5, bl7)) | 0 + mid = (mid + Math.imul(al5, bh7)) | 0 + mid = (mid + Math.imul(ah5, bl7)) | 0 + hi = (hi + Math.imul(ah5, bh7)) | 0 + lo = (lo + Math.imul(al4, bl8)) | 0 + mid = (mid + Math.imul(al4, bh8)) | 0 + mid = (mid + Math.imul(ah4, bl8)) | 0 + hi = (hi + Math.imul(ah4, bh8)) | 0 + lo = (lo + Math.imul(al3, bl9)) | 0 + mid = (mid + Math.imul(al3, bh9)) | 0 + mid = (mid + Math.imul(ah3, bl9)) | 0 + hi = (hi + Math.imul(ah3, bh9)) | 0 + var w12 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w12 >>> 26)) | 0 + w12 &= 0x3ffffff + /* k = 13 */ + lo = Math.imul(al9, bl4) + mid = Math.imul(al9, bh4) + mid = (mid + Math.imul(ah9, bl4)) | 0 + hi = Math.imul(ah9, bh4) + lo = (lo + Math.imul(al8, bl5)) | 0 + mid = (mid + Math.imul(al8, bh5)) | 0 + mid = (mid + Math.imul(ah8, bl5)) | 0 + hi = (hi + Math.imul(ah8, bh5)) | 0 + lo = (lo + Math.imul(al7, bl6)) | 0 + mid = (mid + Math.imul(al7, bh6)) | 0 + mid = (mid + Math.imul(ah7, bl6)) | 0 + hi = (hi + Math.imul(ah7, bh6)) | 0 + lo = (lo + Math.imul(al6, bl7)) | 0 + mid = (mid + Math.imul(al6, bh7)) | 0 + mid = (mid + Math.imul(ah6, bl7)) | 0 + hi = (hi + Math.imul(ah6, bh7)) | 0 + lo = (lo + Math.imul(al5, bl8)) | 0 + mid = (mid + Math.imul(al5, bh8)) | 0 + mid = (mid + Math.imul(ah5, bl8)) | 0 + hi = (hi + Math.imul(ah5, bh8)) | 0 + lo = (lo + Math.imul(al4, bl9)) | 0 + mid = (mid + Math.imul(al4, bh9)) | 0 + mid = (mid + Math.imul(ah4, bl9)) | 0 + hi = (hi + Math.imul(ah4, bh9)) | 0 + var w13 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w13 >>> 26)) | 0 + w13 &= 0x3ffffff + /* k = 14 */ + lo = Math.imul(al9, bl5) + mid = Math.imul(al9, bh5) + mid = (mid + Math.imul(ah9, bl5)) | 0 + hi = Math.imul(ah9, bh5) + lo = (lo + Math.imul(al8, bl6)) | 0 + mid = (mid + Math.imul(al8, bh6)) | 0 + mid = (mid + Math.imul(ah8, bl6)) | 0 + hi = (hi + Math.imul(ah8, bh6)) | 0 + lo = (lo + Math.imul(al7, bl7)) | 0 + mid = (mid + Math.imul(al7, bh7)) | 0 + mid = (mid + Math.imul(ah7, bl7)) | 0 + hi = (hi + Math.imul(ah7, bh7)) | 0 + lo = (lo + Math.imul(al6, bl8)) | 0 + mid = (mid + Math.imul(al6, bh8)) | 0 + mid = (mid + Math.imul(ah6, bl8)) | 0 + hi = (hi + Math.imul(ah6, bh8)) | 0 + lo = (lo + Math.imul(al5, bl9)) | 0 + mid = (mid + Math.imul(al5, bh9)) | 0 + mid = (mid + Math.imul(ah5, bl9)) | 0 + hi = (hi + Math.imul(ah5, bh9)) | 0 + var w14 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w14 >>> 26)) | 0 + w14 &= 0x3ffffff + /* k = 15 */ + lo = Math.imul(al9, bl6) + mid = Math.imul(al9, bh6) + mid = (mid + Math.imul(ah9, bl6)) | 0 + hi = Math.imul(ah9, bh6) + lo = (lo + Math.imul(al8, bl7)) | 0 + mid = (mid + Math.imul(al8, bh7)) | 0 + mid = (mid + Math.imul(ah8, bl7)) | 0 + hi = (hi + Math.imul(ah8, bh7)) | 0 + lo = (lo + Math.imul(al7, bl8)) | 0 + mid = (mid + Math.imul(al7, bh8)) | 0 + mid = (mid + Math.imul(ah7, bl8)) | 0 + hi = (hi + Math.imul(ah7, bh8)) | 0 + lo = (lo + Math.imul(al6, bl9)) | 0 + mid = (mid + Math.imul(al6, bh9)) | 0 + mid = (mid + Math.imul(ah6, bl9)) | 0 + hi = (hi + Math.imul(ah6, bh9)) | 0 + var w15 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w15 >>> 26)) | 0 + w15 &= 0x3ffffff + /* k = 16 */ + lo = Math.imul(al9, bl7) + mid = Math.imul(al9, bh7) + mid = (mid + Math.imul(ah9, bl7)) | 0 + hi = Math.imul(ah9, bh7) + lo = (lo + Math.imul(al8, bl8)) | 0 + mid = (mid + Math.imul(al8, bh8)) | 0 + mid = (mid + Math.imul(ah8, bl8)) | 0 + hi = (hi + Math.imul(ah8, bh8)) | 0 + lo = (lo + Math.imul(al7, bl9)) | 0 + mid = (mid + Math.imul(al7, bh9)) | 0 + mid = (mid + Math.imul(ah7, bl9)) | 0 + hi = (hi + Math.imul(ah7, bh9)) | 0 + var w16 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w16 >>> 26)) | 0 + w16 &= 0x3ffffff + /* k = 17 */ + lo = Math.imul(al9, bl8) + mid = Math.imul(al9, bh8) + mid = (mid + Math.imul(ah9, bl8)) | 0 + hi = Math.imul(ah9, bh8) + lo = (lo + Math.imul(al8, bl9)) | 0 + mid = (mid + Math.imul(al8, bh9)) | 0 + mid = (mid + Math.imul(ah8, bl9)) | 0 + hi = (hi + Math.imul(ah8, bh9)) | 0 + var w17 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w17 >>> 26)) | 0 + w17 &= 0x3ffffff + /* k = 18 */ + lo = Math.imul(al9, bl9) + mid = Math.imul(al9, bh9) + mid = (mid + Math.imul(ah9, bl9)) | 0 + hi = Math.imul(ah9, bh9) + var w18 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w18 >>> 26)) | 0 + w18 &= 0x3ffffff + o[0] = w0 + o[1] = w1 + o[2] = w2 + o[3] = w3 + o[4] = w4 + o[5] = w5 + o[6] = w6 + o[7] = w7 + o[8] = w8 + o[9] = w9 + o[10] = w10 + o[11] = w11 + o[12] = w12 + o[13] = w13 + o[14] = w14 + o[15] = w15 + o[16] = w16 + o[17] = w17 + o[18] = w18 + if (c !== 0) { + o[19] = c + out.length++ + } + return out + } + + // Polyfill comb + if (!Math.imul) { + comb10MulTo = smallMulTo + } + + function bigMulTo(self, num, out) { + out.negative = num.negative ^ self.negative + out.length = self.length + num.length + + var carry = 0 + var hncarry = 0 + for (var k = 0; k < out.length - 1; k++) { + // Sum all words with the same `i + j = k` and accumulate `ncarry`, + // note that ncarry could be >= 0x3ffffff + var ncarry = hncarry + hncarry = 0 + var rword = carry & 0x3ffffff + var maxJ = Math.min(k, num.length - 1) + for (var j = Math.max(0, k - self.length + 1); j <= maxJ; j++) { + var i = k - j + var a = self.words[i] | 0 + var b = num.words[j] | 0 + var r = a * b + + var lo = r & 0x3ffffff + ncarry = (ncarry + ((r / 0x4000000) | 0)) | 0 + lo = (lo + rword) | 0 + rword = lo & 0x3ffffff + ncarry = (ncarry + (lo >>> 26)) | 0 + + hncarry += ncarry >>> 26 + ncarry &= 0x3ffffff + } + out.words[k] = rword + carry = ncarry + ncarry = hncarry + } + if (carry !== 0) { + out.words[k] = carry + } else { + out.length-- + } + + return out.strip() + } + + function jumboMulTo(self, num, out) { + var fftm = new FFTM() + return fftm.mulp(self, num, out) + } + + BN.prototype.mulTo = function mulTo(num, out) { + var res + var len = this.length + num.length + if (this.length === 10 && num.length === 10) { + res = comb10MulTo(this, num, out) + } else if (len < 63) { + res = smallMulTo(this, num, out) + } else if (len < 1024) { + res = bigMulTo(this, num, out) + } else { + res = jumboMulTo(this, num, out) + } + + return res + } + + // Cooley-Tukey algorithm for FFT + // slightly revisited to rely on looping instead of recursion + + function FFTM(x, y) { + this.x = x + this.y = y + } + + FFTM.prototype.makeRBT = function makeRBT(N) { + var t = new Array(N) + var l = BN.prototype._countBits(N) - 1 + for (var i = 0; i < N; i++) { + t[i] = this.revBin(i, l, N) + } + + return t + } + + // Returns binary-reversed representation of `x` + FFTM.prototype.revBin = function revBin(x, l, N) { + if (x === 0 || x === N - 1) return x + + var rb = 0 + for (var i = 0; i < l; i++) { + rb |= (x & 1) << (l - i - 1) + x >>= 1 + } + + return rb + } + + // Performs "tweedling" phase, therefore 'emulating' + // behaviour of the recursive algorithm + FFTM.prototype.permute = function permute( + rbt, + rws, + iws, + rtws, + itws, + N + ) { + for (var i = 0; i < N; i++) { + rtws[i] = rws[rbt[i]] + itws[i] = iws[rbt[i]] + } + } + + FFTM.prototype.transform = function transform( + rws, + iws, + rtws, + itws, + N, + rbt + ) { + this.permute(rbt, rws, iws, rtws, itws, N) + + for (var s = 1; s < N; s <<= 1) { + var l = s << 1 + + var rtwdf = Math.cos((2 * Math.PI) / l) + var itwdf = Math.sin((2 * Math.PI) / l) + + for (var p = 0; p < N; p += l) { + var rtwdf_ = rtwdf + var itwdf_ = itwdf + + for (var j = 0; j < s; j++) { + var re = rtws[p + j] + var ie = itws[p + j] + + var ro = rtws[p + j + s] + var io = itws[p + j + s] + + var rx = rtwdf_ * ro - itwdf_ * io + + io = rtwdf_ * io + itwdf_ * ro + ro = rx + + rtws[p + j] = re + ro + itws[p + j] = ie + io + + rtws[p + j + s] = re - ro + itws[p + j + s] = ie - io + + /* jshint maxdepth : false */ + if (j !== l) { + rx = rtwdf * rtwdf_ - itwdf * itwdf_ + + itwdf_ = rtwdf * itwdf_ + itwdf * rtwdf_ + rtwdf_ = rx + } + } + } + } + } + + FFTM.prototype.guessLen13b = function guessLen13b(n, m) { + var N = Math.max(m, n) | 1 + var odd = N & 1 + var i = 0 + for (N = (N / 2) | 0; N; N = N >>> 1) { + i++ + } + + return 1 << (i + 1 + odd) + } + + FFTM.prototype.conjugate = function conjugate(rws, iws, N) { + if (N <= 1) return + + for (var i = 0; i < N / 2; i++) { + var t = rws[i] + + rws[i] = rws[N - i - 1] + rws[N - i - 1] = t + + t = iws[i] + + iws[i] = -iws[N - i - 1] + iws[N - i - 1] = -t + } + } + + FFTM.prototype.normalize13b = function normalize13b(ws, N) { + var carry = 0 + for (var i = 0; i < N / 2; i++) { + var w = + Math.round(ws[2 * i + 1] / N) * 0x2000 + + Math.round(ws[2 * i] / N) + + carry + + ws[i] = w & 0x3ffffff + + if (w < 0x4000000) { + carry = 0 + } else { + carry = (w / 0x4000000) | 0 + } + } + + return ws + } + + FFTM.prototype.convert13b = function convert13b(ws, len, rws, N) { + var carry = 0 + for (var i = 0; i < len; i++) { + carry = carry + (ws[i] | 0) + + rws[2 * i] = carry & 0x1fff + carry = carry >>> 13 + rws[2 * i + 1] = carry & 0x1fff + carry = carry >>> 13 + } + + // Pad with zeroes + for (i = 2 * len; i < N; ++i) { + rws[i] = 0 + } + + assert(carry === 0) + assert((carry & ~0x1fff) === 0) + } + + FFTM.prototype.stub = function stub(N) { + var ph = new Array(N) + for (var i = 0; i < N; i++) { + ph[i] = 0 + } + + return ph + } + + FFTM.prototype.mulp = function mulp(x, y, out) { + var N = 2 * this.guessLen13b(x.length, y.length) + + var rbt = this.makeRBT(N) + + var _ = this.stub(N) + + var rws = new Array(N) + var rwst = new Array(N) + var iwst = new Array(N) + + var nrws = new Array(N) + var nrwst = new Array(N) + var niwst = new Array(N) + + var rmws = out.words + rmws.length = N + + this.convert13b(x.words, x.length, rws, N) + this.convert13b(y.words, y.length, nrws, N) + + this.transform(rws, _, rwst, iwst, N, rbt) + this.transform(nrws, _, nrwst, niwst, N, rbt) + + for (var i = 0; i < N; i++) { + var rx = rwst[i] * nrwst[i] - iwst[i] * niwst[i] + iwst[i] = rwst[i] * niwst[i] + iwst[i] * nrwst[i] + rwst[i] = rx + } + + this.conjugate(rwst, iwst, N) + this.transform(rwst, iwst, rmws, _, N, rbt) + this.conjugate(rmws, _, N) + this.normalize13b(rmws, N) + + out.negative = x.negative ^ y.negative + out.length = x.length + y.length + return out.strip() + } + + // Multiply `this` by `num` + BN.prototype.mul = function mul(num) { + var out = new BN(null) + out.words = new Array(this.length + num.length) + return this.mulTo(num, out) + } + + // Multiply employing FFT + BN.prototype.mulf = function mulf(num) { + var out = new BN(null) + out.words = new Array(this.length + num.length) + return jumboMulTo(this, num, out) + } + + // In-place Multiplication + BN.prototype.imul = function imul(num) { + return this.clone().mulTo(num, this) + } + + BN.prototype.imuln = function imuln(num) { + assert(typeof num === "number") + assert(num < 0x4000000) + + // Carry + var carry = 0 + for (var i = 0; i < this.length; i++) { + var w = (this.words[i] | 0) * num + var lo = (w & 0x3ffffff) + (carry & 0x3ffffff) + carry >>= 26 + carry += (w / 0x4000000) | 0 + // NOTE: lo is 27bit maximum + carry += lo >>> 26 + this.words[i] = lo & 0x3ffffff + } + + if (carry !== 0) { + this.words[i] = carry + this.length++ + } + + return this + } + + BN.prototype.muln = function muln(num) { + return this.clone().imuln(num) + } + + // `this` * `this` + BN.prototype.sqr = function sqr() { + return this.mul(this) + } + + // `this` * `this` in-place + BN.prototype.isqr = function isqr() { + return this.imul(this.clone()) + } + + // Math.pow(`this`, `num`) + BN.prototype.pow = function pow(num) { + var w = toBitArray(num) + if (w.length === 0) return new BN(1) + + // Skip leading zeroes + var res = this + for (var i = 0; i < w.length; i++, res = res.sqr()) { + if (w[i] !== 0) break + } + + if (++i < w.length) { + for (var q = res.sqr(); i < w.length; i++, q = q.sqr()) { + if (w[i] === 0) continue + + res = res.mul(q) + } + } + + return res + } + + // Shift-left in-place + BN.prototype.iushln = function iushln(bits) { + assert(typeof bits === "number" && bits >= 0) + var r = bits % 26 + var s = (bits - r) / 26 + var carryMask = (0x3ffffff >>> (26 - r)) << (26 - r) + var i + + if (r !== 0) { + var carry = 0 + + for (i = 0; i < this.length; i++) { + var newCarry = this.words[i] & carryMask + var c = ((this.words[i] | 0) - newCarry) << r + this.words[i] = c | carry + carry = newCarry >>> (26 - r) + } + + if (carry) { + this.words[i] = carry + this.length++ + } + } + + if (s !== 0) { + for (i = this.length - 1; i >= 0; i--) { + this.words[i + s] = this.words[i] + } + + for (i = 0; i < s; i++) { + this.words[i] = 0 + } + + this.length += s + } + + return this.strip() + } + + BN.prototype.ishln = function ishln(bits) { + // TODO(indutny): implement me + assert(this.negative === 0) + return this.iushln(bits) + } + + // Shift-right in-place + // NOTE: `hint` is a lowest bit before trailing zeroes + // NOTE: if `extended` is present - it will be filled with destroyed bits + BN.prototype.iushrn = function iushrn(bits, hint, extended) { + assert(typeof bits === "number" && bits >= 0) + var h + if (hint) { + h = (hint - (hint % 26)) / 26 + } else { + h = 0 + } + + var r = bits % 26 + var s = Math.min((bits - r) / 26, this.length) + var mask = 0x3ffffff ^ ((0x3ffffff >>> r) << r) + var maskedWords = extended + + h -= s + h = Math.max(0, h) + + // Extended mode, copy masked part + if (maskedWords) { + for (var i = 0; i < s; i++) { + maskedWords.words[i] = this.words[i] + } + maskedWords.length = s + } + + if (s === 0) { + // No-op, we should not move anything at all + } else if (this.length > s) { + this.length -= s + for (i = 0; i < this.length; i++) { + this.words[i] = this.words[i + s] + } + } else { + this.words[0] = 0 + this.length = 1 + } + + var carry = 0 + for ( + i = this.length - 1; + i >= 0 && (carry !== 0 || i >= h); + i-- + ) { + var word = this.words[i] | 0 + this.words[i] = (carry << (26 - r)) | (word >>> r) + carry = word & mask + } + + // Push carried bits as a mask + if (maskedWords && carry !== 0) { + maskedWords.words[maskedWords.length++] = carry + } + + if (this.length === 0) { + this.words[0] = 0 + this.length = 1 + } + + return this.strip() + } + + BN.prototype.ishrn = function ishrn(bits, hint, extended) { + // TODO(indutny): implement me + assert(this.negative === 0) + return this.iushrn(bits, hint, extended) + } + + // Shift-left + BN.prototype.shln = function shln(bits) { + return this.clone().ishln(bits) + } + + BN.prototype.ushln = function ushln(bits) { + return this.clone().iushln(bits) + } + + // Shift-right + BN.prototype.shrn = function shrn(bits) { + return this.clone().ishrn(bits) + } + + BN.prototype.ushrn = function ushrn(bits) { + return this.clone().iushrn(bits) + } + + // Test if n bit is set + BN.prototype.testn = function testn(bit) { + assert(typeof bit === "number" && bit >= 0) + var r = bit % 26 + var s = (bit - r) / 26 + var q = 1 << r + + // Fast case: bit is much higher than all existing words + if (this.length <= s) return false + + // Check bit and return + var w = this.words[s] + + return !!(w & q) + } + + // Return only lowers bits of number (in-place) + BN.prototype.imaskn = function imaskn(bits) { + assert(typeof bits === "number" && bits >= 0) + var r = bits % 26 + var s = (bits - r) / 26 + + assert( + this.negative === 0, + "imaskn works only with positive numbers" + ) + + if (this.length <= s) { + return this + } + + if (r !== 0) { + s++ + } + this.length = Math.min(s, this.length) + + if (r !== 0) { + var mask = 0x3ffffff ^ ((0x3ffffff >>> r) << r) + this.words[this.length - 1] &= mask + } + + return this.strip() + } + + // Return only lowers bits of number + BN.prototype.maskn = function maskn(bits) { + return this.clone().imaskn(bits) + } + + // Add plain number `num` to `this` + BN.prototype.iaddn = function iaddn(num) { + assert(typeof num === "number") + assert(num < 0x4000000) + if (num < 0) return this.isubn(-num) + + // Possible sign change + if (this.negative !== 0) { + if (this.length === 1 && (this.words[0] | 0) < num) { + this.words[0] = num - (this.words[0] | 0) + this.negative = 0 + return this + } + + this.negative = 0 + this.isubn(num) + this.negative = 1 + return this + } + + // Add without checks + return this._iaddn(num) + } + + BN.prototype._iaddn = function _iaddn(num) { + this.words[0] += num + + // Carry + for ( + var i = 0; + i < this.length && this.words[i] >= 0x4000000; + i++ + ) { + this.words[i] -= 0x4000000 + if (i === this.length - 1) { + this.words[i + 1] = 1 + } else { + this.words[i + 1]++ + } + } + this.length = Math.max(this.length, i + 1) + + return this + } + + // Subtract plain number `num` from `this` + BN.prototype.isubn = function isubn(num) { + assert(typeof num === "number") + assert(num < 0x4000000) + if (num < 0) return this.iaddn(-num) + + if (this.negative !== 0) { + this.negative = 0 + this.iaddn(num) + this.negative = 1 + return this + } + + this.words[0] -= num + + if (this.length === 1 && this.words[0] < 0) { + this.words[0] = -this.words[0] + this.negative = 1 + } else { + // Carry + for (var i = 0; i < this.length && this.words[i] < 0; i++) { + this.words[i] += 0x4000000 + this.words[i + 1] -= 1 + } + } + + return this.strip() + } + + BN.prototype.addn = function addn(num) { + return this.clone().iaddn(num) + } + + BN.prototype.subn = function subn(num) { + return this.clone().isubn(num) + } + + BN.prototype.iabs = function iabs() { + this.negative = 0 + + return this + } + + BN.prototype.abs = function abs() { + return this.clone().iabs() + } + + BN.prototype._ishlnsubmul = function _ishlnsubmul(num, mul, shift) { + var len = num.length + shift + var i + + this._expand(len) + + var w + var carry = 0 + for (i = 0; i < num.length; i++) { + w = (this.words[i + shift] | 0) + carry + var right = (num.words[i] | 0) * mul + w -= right & 0x3ffffff + carry = (w >> 26) - ((right / 0x4000000) | 0) + this.words[i + shift] = w & 0x3ffffff + } + for (; i < this.length - shift; i++) { + w = (this.words[i + shift] | 0) + carry + carry = w >> 26 + this.words[i + shift] = w & 0x3ffffff + } + + if (carry === 0) return this.strip() + + // Subtraction overflow + assert(carry === -1) + carry = 0 + for (i = 0; i < this.length; i++) { + w = -(this.words[i] | 0) + carry + carry = w >> 26 + this.words[i] = w & 0x3ffffff + } + this.negative = 1 + + return this.strip() + } + + BN.prototype._wordDiv = function _wordDiv(num, mode) { + var shift = this.length - num.length + + var a = this.clone() + var b = num + + // Normalize + var bhi = b.words[b.length - 1] | 0 + var bhiBits = this._countBits(bhi) + shift = 26 - bhiBits + if (shift !== 0) { + b = b.ushln(shift) + a.iushln(shift) + bhi = b.words[b.length - 1] | 0 + } + + // Initialize quotient + var m = a.length - b.length + var q + + if (mode !== "mod") { + q = new BN(null) + q.length = m + 1 + q.words = new Array(q.length) + for (var i = 0; i < q.length; i++) { + q.words[i] = 0 + } + } + + var diff = a.clone()._ishlnsubmul(b, 1, m) + if (diff.negative === 0) { + a = diff + if (q) { + q.words[m] = 1 + } + } + + for (var j = m - 1; j >= 0; j--) { + var qj = + (a.words[b.length + j] | 0) * 0x4000000 + + (a.words[b.length + j - 1] | 0) + + // NOTE: (qj / bhi) is (0x3ffffff * 0x4000000 + 0x3ffffff) / 0x2000000 max + // (0x7ffffff) + qj = Math.min((qj / bhi) | 0, 0x3ffffff) + + a._ishlnsubmul(b, qj, j) + while (a.negative !== 0) { + qj-- + a.negative = 0 + a._ishlnsubmul(b, 1, j) + if (!a.isZero()) { + a.negative ^= 1 + } + } + if (q) { + q.words[j] = qj + } + } + if (q) { + q.strip() + } + a.strip() + + // Denormalize + if (mode !== "div" && shift !== 0) { + a.iushrn(shift) + } + + return { + div: q || null, + mod: a + } + } + + // NOTE: 1) `mode` can be set to `mod` to request mod only, + // to `div` to request div only, or be absent to + // request both div & mod + // 2) `positive` is true if unsigned mod is requested + BN.prototype.divmod = function divmod(num, mode, positive) { + assert(!num.isZero()) + + if (this.isZero()) { + return { + div: new BN(0), + mod: new BN(0) + } + } + + var div, mod, res + if (this.negative !== 0 && num.negative === 0) { + res = this.neg().divmod(num, mode) + + if (mode !== "mod") { + div = res.div.neg() + } + + if (mode !== "div") { + mod = res.mod.neg() + if (positive && mod.negative !== 0) { + mod.iadd(num) + } + } + + return { + div: div, + mod: mod + } + } + + if (this.negative === 0 && num.negative !== 0) { + res = this.divmod(num.neg(), mode) + + if (mode !== "mod") { + div = res.div.neg() + } + + return { + div: div, + mod: res.mod + } + } + + if ((this.negative & num.negative) !== 0) { + res = this.neg().divmod(num.neg(), mode) + + if (mode !== "div") { + mod = res.mod.neg() + if (positive && mod.negative !== 0) { + mod.isub(num) + } + } + + return { + div: res.div, + mod: mod + } + } + + // Both numbers are positive at this point + + // Strip both numbers to approximate shift value + if (num.length > this.length || this.cmp(num) < 0) { + return { + div: new BN(0), + mod: this + } + } + + // Very short reduction + if (num.length === 1) { + if (mode === "div") { + return { + div: this.divn(num.words[0]), + mod: null + } + } + + if (mode === "mod") { + return { + div: null, + mod: new BN(this.modn(num.words[0])) + } + } + + return { + div: this.divn(num.words[0]), + mod: new BN(this.modn(num.words[0])) + } + } + + return this._wordDiv(num, mode) + } + + // Find `this` / `num` + BN.prototype.div = function div(num) { + return this.divmod(num, "div", false).div + } + + // Find `this` % `num` + BN.prototype.mod = function mod(num) { + return this.divmod(num, "mod", false).mod + } + + BN.prototype.umod = function umod(num) { + return this.divmod(num, "mod", true).mod + } + + // Find Round(`this` / `num`) + BN.prototype.divRound = function divRound(num) { + var dm = this.divmod(num) + + // Fast case - exact division + if (dm.mod.isZero()) return dm.div + + var mod = dm.div.negative !== 0 ? dm.mod.isub(num) : dm.mod + + var half = num.ushrn(1) + var r2 = num.andln(1) + var cmp = mod.cmp(half) + + // Round down + if (cmp < 0 || (r2 === 1 && cmp === 0)) return dm.div + + // Round up + return dm.div.negative !== 0 ? dm.div.isubn(1) : dm.div.iaddn(1) + } + + BN.prototype.modn = function modn(num) { + assert(num <= 0x3ffffff) + var p = (1 << 26) % num + + var acc = 0 + for (var i = this.length - 1; i >= 0; i--) { + acc = (p * acc + (this.words[i] | 0)) % num + } + + return acc + } + + // In-place division by number + BN.prototype.idivn = function idivn(num) { + assert(num <= 0x3ffffff) + + var carry = 0 + for (var i = this.length - 1; i >= 0; i--) { + var w = (this.words[i] | 0) + carry * 0x4000000 + this.words[i] = (w / num) | 0 + carry = w % num + } + + return this.strip() + } + + BN.prototype.divn = function divn(num) { + return this.clone().idivn(num) + } + + BN.prototype.egcd = function egcd(p) { + assert(p.negative === 0) + assert(!p.isZero()) + + var x = this + var y = p.clone() + + if (x.negative !== 0) { + x = x.umod(p) + } else { + x = x.clone() + } + + // A * x + B * y = x + var A = new BN(1) + var B = new BN(0) + + // C * x + D * y = y + var C = new BN(0) + var D = new BN(1) + + var g = 0 + + while (x.isEven() && y.isEven()) { + x.iushrn(1) + y.iushrn(1) + ++g + } + + var yp = y.clone() + var xp = x.clone() + + while (!x.isZero()) { + for ( + var i = 0, im = 1; + (x.words[0] & im) === 0 && i < 26; + ++i, im <<= 1 + ); + if (i > 0) { + x.iushrn(i) + while (i-- > 0) { + if (A.isOdd() || B.isOdd()) { + A.iadd(yp) + B.isub(xp) + } + + A.iushrn(1) + B.iushrn(1) + } + } + + for ( + var j = 0, jm = 1; + (y.words[0] & jm) === 0 && j < 26; + ++j, jm <<= 1 + ); + if (j > 0) { + y.iushrn(j) + while (j-- > 0) { + if (C.isOdd() || D.isOdd()) { + C.iadd(yp) + D.isub(xp) + } + + C.iushrn(1) + D.iushrn(1) + } + } + + if (x.cmp(y) >= 0) { + x.isub(y) + A.isub(C) + B.isub(D) + } else { + y.isub(x) + C.isub(A) + D.isub(B) + } + } + + return { + a: C, + b: D, + gcd: y.iushln(g) + } + } + + // This is reduced incarnation of the binary EEA + // above, designated to invert members of the + // _prime_ fields F(p) at a maximal speed + BN.prototype._invmp = function _invmp(p) { + assert(p.negative === 0) + assert(!p.isZero()) + + var a = this + var b = p.clone() + + if (a.negative !== 0) { + a = a.umod(p) + } else { + a = a.clone() + } + + var x1 = new BN(1) + var x2 = new BN(0) + + var delta = b.clone() + + while (a.cmpn(1) > 0 && b.cmpn(1) > 0) { + for ( + var i = 0, im = 1; + (a.words[0] & im) === 0 && i < 26; + ++i, im <<= 1 + ); + if (i > 0) { + a.iushrn(i) + while (i-- > 0) { + if (x1.isOdd()) { + x1.iadd(delta) + } + + x1.iushrn(1) + } + } + + for ( + var j = 0, jm = 1; + (b.words[0] & jm) === 0 && j < 26; + ++j, jm <<= 1 + ); + if (j > 0) { + b.iushrn(j) + while (j-- > 0) { + if (x2.isOdd()) { + x2.iadd(delta) + } + + x2.iushrn(1) + } + } + + if (a.cmp(b) >= 0) { + a.isub(b) + x1.isub(x2) + } else { + b.isub(a) + x2.isub(x1) + } + } + + var res + if (a.cmpn(1) === 0) { + res = x1 + } else { + res = x2 + } + + if (res.cmpn(0) < 0) { + res.iadd(p) + } + + return res + } + + BN.prototype.gcd = function gcd(num) { + if (this.isZero()) return num.abs() + if (num.isZero()) return this.abs() + + var a = this.clone() + var b = num.clone() + a.negative = 0 + b.negative = 0 + + // Remove common factor of two + for (var shift = 0; a.isEven() && b.isEven(); shift++) { + a.iushrn(1) + b.iushrn(1) + } + + do { + while (a.isEven()) { + a.iushrn(1) + } + while (b.isEven()) { + b.iushrn(1) + } + + var r = a.cmp(b) + if (r < 0) { + // Swap `a` and `b` to make `a` always bigger than `b` + var t = a + a = b + b = t + } else if (r === 0 || b.cmpn(1) === 0) { + break + } + + a.isub(b) + } while (true) + + return b.iushln(shift) + } + + // Invert number in the field F(num) + BN.prototype.invm = function invm(num) { + return this.egcd(num).a.umod(num) + } + + BN.prototype.isEven = function isEven() { + return (this.words[0] & 1) === 0 + } + + BN.prototype.isOdd = function isOdd() { + return (this.words[0] & 1) === 1 + } + + // And first word and num + BN.prototype.andln = function andln(num) { + return this.words[0] & num + } + + // Increment at the bit position in-line + BN.prototype.bincn = function bincn(bit) { + assert(typeof bit === "number") + var r = bit % 26 + var s = (bit - r) / 26 + var q = 1 << r + + // Fast case: bit is much higher than all existing words + if (this.length <= s) { + this._expand(s + 1) + this.words[s] |= q + return this + } + + // Add bit and propagate, if needed + var carry = q + for (var i = s; carry !== 0 && i < this.length; i++) { + var w = this.words[i] | 0 + w += carry + carry = w >>> 26 + w &= 0x3ffffff + this.words[i] = w + } + if (carry !== 0) { + this.words[i] = carry + this.length++ + } + return this + } + + BN.prototype.isZero = function isZero() { + return this.length === 1 && this.words[0] === 0 + } + + BN.prototype.cmpn = function cmpn(num) { + var negative = num < 0 + + if (this.negative !== 0 && !negative) return -1 + if (this.negative === 0 && negative) return 1 + + this.strip() + + var res + if (this.length > 1) { + res = 1 + } else { + if (negative) { + num = -num + } + + assert(num <= 0x3ffffff, "Number is too big") + + var w = this.words[0] | 0 + res = w === num ? 0 : w < num ? -1 : 1 + } + if (this.negative !== 0) return -res | 0 + return res + } + + // Compare two numbers and return: + // 1 - if `this` > `num` + // 0 - if `this` == `num` + // -1 - if `this` < `num` + BN.prototype.cmp = function cmp(num) { + if (this.negative !== 0 && num.negative === 0) return -1 + if (this.negative === 0 && num.negative !== 0) return 1 + + var res = this.ucmp(num) + if (this.negative !== 0) return -res | 0 + return res + } + + // Unsigned comparison + BN.prototype.ucmp = function ucmp(num) { + // At this point both numbers have the same sign + if (this.length > num.length) return 1 + if (this.length < num.length) return -1 + + var res = 0 + for (var i = this.length - 1; i >= 0; i--) { + var a = this.words[i] | 0 + var b = num.words[i] | 0 + + if (a === b) continue + if (a < b) { + res = -1 + } else if (a > b) { + res = 1 + } + break + } + return res + } + + BN.prototype.gtn = function gtn(num) { + return this.cmpn(num) === 1 + } + + BN.prototype.gt = function gt(num) { + return this.cmp(num) === 1 + } + + BN.prototype.gten = function gten(num) { + return this.cmpn(num) >= 0 + } + + BN.prototype.gte = function gte(num) { + return this.cmp(num) >= 0 + } + + BN.prototype.ltn = function ltn(num) { + return this.cmpn(num) === -1 + } + + BN.prototype.lt = function lt(num) { + return this.cmp(num) === -1 + } + + BN.prototype.lten = function lten(num) { + return this.cmpn(num) <= 0 + } + + BN.prototype.lte = function lte(num) { + return this.cmp(num) <= 0 + } + + BN.prototype.eqn = function eqn(num) { + return this.cmpn(num) === 0 + } + + BN.prototype.eq = function eq(num) { + return this.cmp(num) === 0 + } + + // + // A reduce context, could be using montgomery or something better, depending + // on the `m` itself. + // + BN.red = function red(num) { + return new Red(num) + } + + BN.prototype.toRed = function toRed(ctx) { + assert(!this.red, "Already a number in reduction context") + assert(this.negative === 0, "red works only with positives") + return ctx.convertTo(this)._forceRed(ctx) + } + + BN.prototype.fromRed = function fromRed() { + assert( + this.red, + "fromRed works only with numbers in reduction context" + ) + return this.red.convertFrom(this) + } + + BN.prototype._forceRed = function _forceRed(ctx) { + this.red = ctx + return this + } + + BN.prototype.forceRed = function forceRed(ctx) { + assert(!this.red, "Already a number in reduction context") + return this._forceRed(ctx) + } + + BN.prototype.redAdd = function redAdd(num) { + assert(this.red, "redAdd works only with red numbers") + return this.red.add(this, num) + } + + BN.prototype.redIAdd = function redIAdd(num) { + assert(this.red, "redIAdd works only with red numbers") + return this.red.iadd(this, num) + } + + BN.prototype.redSub = function redSub(num) { + assert(this.red, "redSub works only with red numbers") + return this.red.sub(this, num) + } + + BN.prototype.redISub = function redISub(num) { + assert(this.red, "redISub works only with red numbers") + return this.red.isub(this, num) + } + + BN.prototype.redShl = function redShl(num) { + assert(this.red, "redShl works only with red numbers") + return this.red.shl(this, num) + } + + BN.prototype.redMul = function redMul(num) { + assert(this.red, "redMul works only with red numbers") + this.red._verify2(this, num) + return this.red.mul(this, num) + } + + BN.prototype.redIMul = function redIMul(num) { + assert(this.red, "redMul works only with red numbers") + this.red._verify2(this, num) + return this.red.imul(this, num) + } + + BN.prototype.redSqr = function redSqr() { + assert(this.red, "redSqr works only with red numbers") + this.red._verify1(this) + return this.red.sqr(this) + } + + BN.prototype.redISqr = function redISqr() { + assert(this.red, "redISqr works only with red numbers") + this.red._verify1(this) + return this.red.isqr(this) + } + + // Square root over p + BN.prototype.redSqrt = function redSqrt() { + assert(this.red, "redSqrt works only with red numbers") + this.red._verify1(this) + return this.red.sqrt(this) + } + + BN.prototype.redInvm = function redInvm() { + assert(this.red, "redInvm works only with red numbers") + this.red._verify1(this) + return this.red.invm(this) + } + + // Return negative clone of `this` % `red modulo` + BN.prototype.redNeg = function redNeg() { + assert(this.red, "redNeg works only with red numbers") + this.red._verify1(this) + return this.red.neg(this) + } + + BN.prototype.redPow = function redPow(num) { + assert(this.red && !num.red, "redPow(normalNum)") + this.red._verify1(this) + return this.red.pow(this, num) + } + + // Prime numbers with efficient reduction + var primes = { + k256: null, + p224: null, + p192: null, + p25519: null + } + + // Pseudo-Mersenne prime + function MPrime(name, p) { + // P = 2 ^ N - K + this.name = name + this.p = new BN(p, 16) + this.n = this.p.bitLength() + this.k = new BN(1).iushln(this.n).isub(this.p) + + this.tmp = this._tmp() + } + + MPrime.prototype._tmp = function _tmp() { + var tmp = new BN(null) + tmp.words = new Array(Math.ceil(this.n / 13)) + return tmp + } + + MPrime.prototype.ireduce = function ireduce(num) { + // Assumes that `num` is less than `P^2` + // num = HI * (2 ^ N - K) + HI * K + LO = HI * K + LO (mod P) + var r = num + var rlen + + do { + this.split(r, this.tmp) + r = this.imulK(r) + r = r.iadd(this.tmp) + rlen = r.bitLength() + } while (rlen > this.n) + + var cmp = rlen < this.n ? -1 : r.ucmp(this.p) + if (cmp === 0) { + r.words[0] = 0 + r.length = 1 + } else if (cmp > 0) { + r.isub(this.p) + } else { + r.strip() + } + + return r + } + + MPrime.prototype.split = function split(input, out) { + input.iushrn(this.n, 0, out) + } + + MPrime.prototype.imulK = function imulK(num) { + return num.imul(this.k) + } + + function K256() { + MPrime.call( + this, + "k256", + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f" + ) + } + inherits(K256, MPrime) + + K256.prototype.split = function split(input, output) { + // 256 = 9 * 26 + 22 + var mask = 0x3fffff + + var outLen = Math.min(input.length, 9) + for (var i = 0; i < outLen; i++) { + output.words[i] = input.words[i] + } + output.length = outLen + + if (input.length <= 9) { + input.words[0] = 0 + input.length = 1 + return + } + + // Shift by 9 limbs + var prev = input.words[9] + output.words[output.length++] = prev & mask + + for (i = 10; i < input.length; i++) { + var next = input.words[i] | 0 + input.words[i - 10] = ((next & mask) << 4) | (prev >>> 22) + prev = next + } + prev >>>= 22 + input.words[i - 10] = prev + if (prev === 0 && input.length > 10) { + input.length -= 10 + } else { + input.length -= 9 + } + } + + K256.prototype.imulK = function imulK(num) { + // K = 0x1000003d1 = [ 0x40, 0x3d1 ] + num.words[num.length] = 0 + num.words[num.length + 1] = 0 + num.length += 2 + + // bounded at: 0x40 * 0x3ffffff + 0x3d0 = 0x100000390 + var lo = 0 + for (var i = 0; i < num.length; i++) { + var w = num.words[i] | 0 + lo += w * 0x3d1 + num.words[i] = lo & 0x3ffffff + lo = w * 0x40 + ((lo / 0x4000000) | 0) + } + + // Fast length reduction + if (num.words[num.length - 1] === 0) { + num.length-- + if (num.words[num.length - 1] === 0) { + num.length-- + } + } + return num + } + + function P224() { + MPrime.call( + this, + "p224", + "ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001" + ) + } + inherits(P224, MPrime) + + function P192() { + MPrime.call( + this, + "p192", + "ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff" + ) + } + inherits(P192, MPrime) + + function P25519() { + // 2 ^ 255 - 19 + MPrime.call( + this, + "25519", + "7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed" + ) + } + inherits(P25519, MPrime) + + P25519.prototype.imulK = function imulK(num) { + // K = 0x13 + var carry = 0 + for (var i = 0; i < num.length; i++) { + var hi = (num.words[i] | 0) * 0x13 + carry + var lo = hi & 0x3ffffff + hi >>>= 26 + + num.words[i] = lo + carry = hi + } + if (carry !== 0) { + num.words[num.length++] = carry + } + return num + } + + // Exported mostly for testing purposes, use plain name instead + BN._prime = function prime(name) { + // Cached version of prime + if (primes[name]) return primes[name] + + var prime + if (name === "k256") { + prime = new K256() + } else if (name === "p224") { + prime = new P224() + } else if (name === "p192") { + prime = new P192() + } else if (name === "p25519") { + prime = new P25519() + } else { + throw new Error("Unknown prime " + name) + } + primes[name] = prime + + return prime + } + + // + // Base reduction engine + // + function Red(m) { + if (typeof m === "string") { + var prime = BN._prime(m) + this.m = prime.p + this.prime = prime + } else { + assert(m.gtn(1), "modulus must be greater than 1") + this.m = m + this.prime = null + } + } + + Red.prototype._verify1 = function _verify1(a) { + assert(a.negative === 0, "red works only with positives") + assert(a.red, "red works only with red numbers") + } + + Red.prototype._verify2 = function _verify2(a, b) { + assert( + (a.negative | b.negative) === 0, + "red works only with positives" + ) + assert( + a.red && a.red === b.red, + "red works only with red numbers" + ) + } + + Red.prototype.imod = function imod(a) { + if (this.prime) return this.prime.ireduce(a)._forceRed(this) + return a.umod(this.m)._forceRed(this) + } + + Red.prototype.neg = function neg(a) { + if (a.isZero()) { + return a.clone() + } + + return this.m.sub(a)._forceRed(this) + } + + Red.prototype.add = function add(a, b) { + this._verify2(a, b) + + var res = a.add(b) + if (res.cmp(this.m) >= 0) { + res.isub(this.m) + } + return res._forceRed(this) + } + + Red.prototype.iadd = function iadd(a, b) { + this._verify2(a, b) + + var res = a.iadd(b) + if (res.cmp(this.m) >= 0) { + res.isub(this.m) + } + return res + } + + Red.prototype.sub = function sub(a, b) { + this._verify2(a, b) + + var res = a.sub(b) + if (res.cmpn(0) < 0) { + res.iadd(this.m) + } + return res._forceRed(this) + } + + Red.prototype.isub = function isub(a, b) { + this._verify2(a, b) + + var res = a.isub(b) + if (res.cmpn(0) < 0) { + res.iadd(this.m) + } + return res + } + + Red.prototype.shl = function shl(a, num) { + this._verify1(a) + return this.imod(a.ushln(num)) + } + + Red.prototype.imul = function imul(a, b) { + this._verify2(a, b) + return this.imod(a.imul(b)) + } + + Red.prototype.mul = function mul(a, b) { + this._verify2(a, b) + return this.imod(a.mul(b)) + } + + Red.prototype.isqr = function isqr(a) { + return this.imul(a, a.clone()) + } + + Red.prototype.sqr = function sqr(a) { + return this.mul(a, a) + } + + Red.prototype.sqrt = function sqrt(a) { + if (a.isZero()) return a.clone() + + var mod3 = this.m.andln(3) + assert(mod3 % 2 === 1) + + // Fast case + if (mod3 === 3) { + var pow = this.m.add(new BN(1)).iushrn(2) + return this.pow(a, pow) + } + + // Tonelli-Shanks algorithm (Totally unoptimized and slow) + // + // Find Q and S, that Q * 2 ^ S = (P - 1) + var q = this.m.subn(1) + var s = 0 + while (!q.isZero() && q.andln(1) === 0) { + s++ + q.iushrn(1) + } + assert(!q.isZero()) + + var one = new BN(1).toRed(this) + var nOne = one.redNeg() + + // Find quadratic non-residue + // NOTE: Max is such because of generalized Riemann hypothesis. + var lpow = this.m.subn(1).iushrn(1) + var z = this.m.bitLength() + z = new BN(2 * z * z).toRed(this) + + while (this.pow(z, lpow).cmp(nOne) !== 0) { + z.redIAdd(nOne) + } + + var c = this.pow(z, q) + var r = this.pow(a, q.addn(1).iushrn(1)) + var t = this.pow(a, q) + var m = s + while (t.cmp(one) !== 0) { + var tmp = t + for (var i = 0; tmp.cmp(one) !== 0; i++) { + tmp = tmp.redSqr() + } + assert(i < m) + var b = this.pow(c, new BN(1).iushln(m - i - 1)) + + r = r.redMul(b) + c = b.redSqr() + t = t.redMul(c) + m = i + } + + return r + } + + Red.prototype.invm = function invm(a) { + var inv = a._invmp(this.m) + if (inv.negative !== 0) { + inv.negative = 0 + return this.imod(inv).redNeg() + } else { + return this.imod(inv) + } + } + + Red.prototype.pow = function pow(a, num) { + if (num.isZero()) return new BN(1).toRed(this) + if (num.cmpn(1) === 0) return a.clone() + + var windowSize = 4 + var wnd = new Array(1 << windowSize) + wnd[0] = new BN(1).toRed(this) + wnd[1] = a + for (var i = 2; i < wnd.length; i++) { + wnd[i] = this.mul(wnd[i - 1], a) + } + + var res = wnd[0] + var current = 0 + var currentLen = 0 + var start = num.bitLength() % 26 + if (start === 0) { + start = 26 + } + + for (i = num.length - 1; i >= 0; i--) { + var word = num.words[i] + for (var j = start - 1; j >= 0; j--) { + var bit = (word >> j) & 1 + if (res !== wnd[0]) { + res = this.sqr(res) + } + + if (bit === 0 && current === 0) { + currentLen = 0 + continue + } + + current <<= 1 + current |= bit + currentLen++ + if (currentLen !== windowSize && (i !== 0 || j !== 0)) + continue + + res = this.mul(res, wnd[current]) + currentLen = 0 + current = 0 + } + start = 26 + } + + return res + } + + Red.prototype.convertTo = function convertTo(num) { + var r = num.umod(this.m) + + return r === num ? r.clone() : r + } + + Red.prototype.convertFrom = function convertFrom(num) { + var res = num.clone() + res.red = null + return res + } + + // + // Montgomery method engine + // + + BN.mont = function mont(num) { + return new Mont(num) + } + + function Mont(m) { + Red.call(this, m) + + this.shift = this.m.bitLength() + if (this.shift % 26 !== 0) { + this.shift += 26 - (this.shift % 26) + } + + this.r = new BN(1).iushln(this.shift) + this.r2 = this.imod(this.r.sqr()) + this.rinv = this.r._invmp(this.m) + + this.minv = this.rinv + .mul(this.r) + .isubn(1) + .div(this.m) + this.minv = this.minv.umod(this.r) + this.minv = this.r.sub(this.minv) + } + inherits(Mont, Red) + + Mont.prototype.convertTo = function convertTo(num) { + return this.imod(num.ushln(this.shift)) + } + + Mont.prototype.convertFrom = function convertFrom(num) { + var r = this.imod(num.mul(this.rinv)) + r.red = null + return r + } + + Mont.prototype.imul = function imul(a, b) { + if (a.isZero() || b.isZero()) { + a.words[0] = 0 + a.length = 1 + return a + } + + var t = a.imul(b) + var c = t + .maskn(this.shift) + .mul(this.minv) + .imaskn(this.shift) + .mul(this.m) + var u = t.isub(c).iushrn(this.shift) + var res = u + + if (u.cmp(this.m) >= 0) { + res = u.isub(this.m) + } else if (u.cmpn(0) < 0) { + res = u.iadd(this.m) + } + + return res._forceRed(this) + } + + Mont.prototype.mul = function mul(a, b) { + if (a.isZero() || b.isZero()) return new BN(0)._forceRed(this) + + var t = a.mul(b) + var c = t + .maskn(this.shift) + .mul(this.minv) + .imaskn(this.shift) + .mul(this.m) + var u = t.isub(c).iushrn(this.shift) + var res = u + if (u.cmp(this.m) >= 0) { + res = u.isub(this.m) + } else if (u.cmpn(0) < 0) { + res = u.iadd(this.m) + } + + return res._forceRed(this) + } + + Mont.prototype.invm = function invm(a) { + // (AR)^-1 * R^2 = (A^-1 * R^-1) * R^2 = A^-1 * R + var res = this.imod(a._invmp(this.m).mul(this.r2)) + return res._forceRed(this) + } + })(typeof module === "undefined" || module, this) + }, + { buffer: 2 } + ], + 35: [ + function(require, module, exports) { + var r + + module.exports = function rand(len) { + if (!r) r = new Rand(null) + + return r.generate(len) + } + + function Rand(rand) { + this.rand = rand + } + module.exports.Rand = Rand + + Rand.prototype.generate = function generate(len) { + return this._rand(len) + } + + // Emulate crypto API using randy + Rand.prototype._rand = function _rand(n) { + if (this.rand.getBytes) return this.rand.getBytes(n) + + var res = new Uint8Array(n) + for (var i = 0; i < res.length; i++) res[i] = this.rand.getByte() + return res + } + + if (typeof self === "object") { + if (self.crypto && self.crypto.getRandomValues) { + // Modern browsers + Rand.prototype._rand = function _rand(n) { + var arr = new Uint8Array(n) + self.crypto.getRandomValues(arr) + return arr + } + } else if (self.msCrypto && self.msCrypto.getRandomValues) { + // IE + Rand.prototype._rand = function _rand(n) { + var arr = new Uint8Array(n) + self.msCrypto.getRandomValues(arr) + return arr + } + + // Safari's WebWorkers do not have `crypto` + } else if (typeof window === "object") { + // Old junk + Rand.prototype._rand = function() { + throw new Error("Not implemented yet") + } + } + } else { + // Node.js or Web worker with no crypto support + try { + var crypto = require("crypto") + if (typeof crypto.randomBytes !== "function") + throw new Error("Not supported") + + Rand.prototype._rand = function _rand(n) { + return crypto.randomBytes(n) + } + } catch (e) {} + } + }, + { crypto: 2 } + ], + 36: [ + function(require, module, exports) { + var basex = require("base-x") + var ALPHABET = + "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz" + + module.exports = basex(ALPHABET) + }, + { "base-x": 31 } + ], + 37: [ + function(require, module, exports) { + "use strict" + + var base58 = require("bs58") + var Buffer = require("safe-buffer").Buffer + + module.exports = function(checksumFn) { + // Encode a buffer as a base58-check encoded string + function encode(payload) { + var checksum = checksumFn(payload) + + return base58.encode( + Buffer.concat([payload, checksum], payload.length + 4) + ) + } + + function decodeRaw(buffer) { + var payload = buffer.slice(0, -4) + var checksum = buffer.slice(-4) + var newChecksum = checksumFn(payload) + + if ( + (checksum[0] ^ newChecksum[0]) | + (checksum[1] ^ newChecksum[1]) | + (checksum[2] ^ newChecksum[2]) | + (checksum[3] ^ newChecksum[3]) + ) + return + + return payload + } + + // Decode a base58-check encoded string to a buffer, no result if checksum is wrong + function decodeUnsafe(string) { + var buffer = base58.decodeUnsafe(string) + if (!buffer) return + + return decodeRaw(buffer) + } + + function decode(string) { + var buffer = base58.decode(string) + var payload = decodeRaw(buffer, checksumFn) + if (!payload) throw new Error("Invalid checksum") + return payload + } + + return { + encode: encode, + decode: decode, + decodeUnsafe: decodeUnsafe + } + } + }, + { bs58: 36, "safe-buffer": 79 } + ], + 38: [ + function(require, module, exports) { + "use strict" + + var createHash = require("create-hash") + var bs58checkBase = require("./base") + + // SHA256(SHA256(buffer)) + function sha256x2(buffer) { + var tmp = createHash("sha256") + .update(buffer) + .digest() + return createHash("sha256") + .update(tmp) + .digest() + } + + module.exports = bs58checkBase(sha256x2) + }, + { "./base": 37, "create-hash": 40 } + ], + 39: [ + function(require, module, exports) { + var Buffer = require("safe-buffer").Buffer + var Transform = require("stream").Transform + var StringDecoder = require("string_decoder").StringDecoder + var inherits = require("inherits") + + function CipherBase(hashMode) { + Transform.call(this) + this.hashMode = typeof hashMode === "string" + if (this.hashMode) { + this[hashMode] = this._finalOrDigest + } else { + this.final = this._finalOrDigest + } + if (this._final) { + this.__final = this._final + this._final = null + } + this._decoder = null + this._encoding = null + } + inherits(CipherBase, Transform) + + CipherBase.prototype.update = function(data, inputEnc, outputEnc) { + if (typeof data === "string") { + data = Buffer.from(data, inputEnc) + } + + var outData = this._update(data) + if (this.hashMode) return this + + if (outputEnc) { + outData = this._toString(outData, outputEnc) + } + + return outData + } + + CipherBase.prototype.setAutoPadding = function() {} + CipherBase.prototype.getAuthTag = function() { + throw new Error("trying to get auth tag in unsupported state") + } + + CipherBase.prototype.setAuthTag = function() { + throw new Error("trying to set auth tag in unsupported state") + } + + CipherBase.prototype.setAAD = function() { + throw new Error("trying to set aad in unsupported state") + } + + CipherBase.prototype._transform = function(data, _, next) { + var err + try { + if (this.hashMode) { + this._update(data) + } else { + this.push(this._update(data)) + } + } catch (e) { + err = e + } finally { + next(err) + } + } + CipherBase.prototype._flush = function(done) { + var err + try { + this.push(this.__final()) + } catch (e) { + err = e + } + + done(err) + } + CipherBase.prototype._finalOrDigest = function(outputEnc) { + var outData = this.__final() || Buffer.alloc(0) + if (outputEnc) { + outData = this._toString(outData, outputEnc, true) + } + return outData + } + + CipherBase.prototype._toString = function(value, enc, fin) { + if (!this._decoder) { + this._decoder = new StringDecoder(enc) + this._encoding = enc + } + + if (this._encoding !== enc) + throw new Error("can't switch encodings") + + var out = this._decoder.write(value) + if (fin) { + out += this._decoder.end() + } + + return out + } + + module.exports = CipherBase + }, + { inherits: 74, "safe-buffer": 79, stream: 27, string_decoder: 28 } + ], + 40: [ + function(require, module, exports) { + "use strict" + var inherits = require("inherits") + var MD5 = require("md5.js") + var RIPEMD160 = require("ripemd160") + var sha = require("sha.js") + var Base = require("cipher-base") + + function Hash(hash) { + Base.call(this, "digest") + + this._hash = hash + } + + inherits(Hash, Base) + + Hash.prototype._update = function(data) { + this._hash.update(data) + } + + Hash.prototype._final = function() { + return this._hash.digest() + } + + module.exports = function createHash(alg) { + alg = alg.toLowerCase() + if (alg === "md5") return new MD5() + if (alg === "rmd160" || alg === "ripemd160") return new RIPEMD160() + + return new Hash(sha(alg)) + } + }, + { + "cipher-base": 39, + inherits: 74, + "md5.js": 75, + ripemd160: 78, + "sha.js": 81 + } + ], + 41: [ + function(require, module, exports) { + var MD5 = require("md5.js") + + module.exports = function(buffer) { + return new MD5().update(buffer).digest() + } + }, + { "md5.js": 75 } + ], + 42: [ + function(require, module, exports) { + "use strict" + var inherits = require("inherits") + var Legacy = require("./legacy") + var Base = require("cipher-base") + var Buffer = require("safe-buffer").Buffer + var md5 = require("create-hash/md5") + var RIPEMD160 = require("ripemd160") + + var sha = require("sha.js") + + var ZEROS = Buffer.alloc(128) + + function Hmac(alg, key) { + Base.call(this, "digest") + if (typeof key === "string") { + key = Buffer.from(key) + } + + var blocksize = alg === "sha512" || alg === "sha384" ? 128 : 64 + + this._alg = alg + this._key = key + if (key.length > blocksize) { + var hash = alg === "rmd160" ? new RIPEMD160() : sha(alg) + key = hash.update(key).digest() + } else if (key.length < blocksize) { + key = Buffer.concat([key, ZEROS], blocksize) + } + + var ipad = (this._ipad = Buffer.allocUnsafe(blocksize)) + var opad = (this._opad = Buffer.allocUnsafe(blocksize)) + + for (var i = 0; i < blocksize; i++) { + ipad[i] = key[i] ^ 0x36 + opad[i] = key[i] ^ 0x5c + } + this._hash = alg === "rmd160" ? new RIPEMD160() : sha(alg) + this._hash.update(ipad) + } + + inherits(Hmac, Base) + + Hmac.prototype._update = function(data) { + this._hash.update(data) + } + + Hmac.prototype._final = function() { + var h = this._hash.digest() + var hash = this._alg === "rmd160" ? new RIPEMD160() : sha(this._alg) + return hash + .update(this._opad) + .update(h) + .digest() + } + + module.exports = function createHmac(alg, key) { + alg = alg.toLowerCase() + if (alg === "rmd160" || alg === "ripemd160") { + return new Hmac("rmd160", key) + } + if (alg === "md5") { + return new Legacy(md5, key) + } + return new Hmac(alg, key) + } + }, + { + "./legacy": 43, + "cipher-base": 39, + "create-hash/md5": 41, + inherits: 74, + ripemd160: 78, + "safe-buffer": 79, + "sha.js": 81 + } + ], + 43: [ + function(require, module, exports) { + "use strict" + var inherits = require("inherits") + var Buffer = require("safe-buffer").Buffer + + var Base = require("cipher-base") + + var ZEROS = Buffer.alloc(128) + var blocksize = 64 + + function Hmac(alg, key) { + Base.call(this, "digest") + if (typeof key === "string") { + key = Buffer.from(key) + } + + this._alg = alg + this._key = key + + if (key.length > blocksize) { + key = alg(key) + } else if (key.length < blocksize) { + key = Buffer.concat([key, ZEROS], blocksize) + } + + var ipad = (this._ipad = Buffer.allocUnsafe(blocksize)) + var opad = (this._opad = Buffer.allocUnsafe(blocksize)) + + for (var i = 0; i < blocksize; i++) { + ipad[i] = key[i] ^ 0x36 + opad[i] = key[i] ^ 0x5c + } + + this._hash = [ipad] + } + + inherits(Hmac, Base) + + Hmac.prototype._update = function(data) { + this._hash.push(data) + } + + Hmac.prototype._final = function() { + var h = this._alg(Buffer.concat(this._hash)) + return this._alg(Buffer.concat([this._opad, h])) + } + module.exports = Hmac + }, + { "cipher-base": 39, inherits: 74, "safe-buffer": 79 } + ], + 44: [ + function(require, module, exports) { + "use strict" + + var elliptic = exports + + elliptic.version = require("../package.json").version + elliptic.utils = require("./elliptic/utils") + elliptic.rand = require("brorand") + elliptic.curve = require("./elliptic/curve") + elliptic.curves = require("./elliptic/curves") + + // Protocols + elliptic.ec = require("./elliptic/ec") + elliptic.eddsa = require("./elliptic/eddsa") + }, + { + "../package.json": 59, + "./elliptic/curve": 47, + "./elliptic/curves": 50, + "./elliptic/ec": 51, + "./elliptic/eddsa": 54, + "./elliptic/utils": 58, + brorand: 35 + } + ], + 45: [ + function(require, module, exports) { + "use strict" + + var BN = require("bn.js") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var getNAF = utils.getNAF + var getJSF = utils.getJSF + var assert = utils.assert + + function BaseCurve(type, conf) { + this.type = type + this.p = new BN(conf.p, 16) + + // Use Montgomery, when there is no fast reduction for the prime + this.red = conf.prime ? BN.red(conf.prime) : BN.mont(this.p) + + // Useful for many curves + this.zero = new BN(0).toRed(this.red) + this.one = new BN(1).toRed(this.red) + this.two = new BN(2).toRed(this.red) + + // Curve configuration, optional + this.n = conf.n && new BN(conf.n, 16) + this.g = conf.g && this.pointFromJSON(conf.g, conf.gRed) + + // Temporary arrays + this._wnafT1 = new Array(4) + this._wnafT2 = new Array(4) + this._wnafT3 = new Array(4) + this._wnafT4 = new Array(4) + + // Generalized Greg Maxwell's trick + var adjustCount = this.n && this.p.div(this.n) + if (!adjustCount || adjustCount.cmpn(100) > 0) { + this.redN = null + } else { + this._maxwellTrick = true + this.redN = this.n.toRed(this.red) + } + } + module.exports = BaseCurve + + BaseCurve.prototype.point = function point() { + throw new Error("Not implemented") + } + + BaseCurve.prototype.validate = function validate() { + throw new Error("Not implemented") + } + + BaseCurve.prototype._fixedNafMul = function _fixedNafMul(p, k) { + assert(p.precomputed) + var doubles = p._getDoubles() + + var naf = getNAF(k, 1) + var I = (1 << (doubles.step + 1)) - (doubles.step % 2 === 0 ? 2 : 1) + I /= 3 + + // Translate into more windowed form + var repr = [] + for (var j = 0; j < naf.length; j += doubles.step) { + var nafW = 0 + for (var k = j + doubles.step - 1; k >= j; k--) + nafW = (nafW << 1) + naf[k] + repr.push(nafW) + } + + var a = this.jpoint(null, null, null) + var b = this.jpoint(null, null, null) + for (var i = I; i > 0; i--) { + for (var j = 0; j < repr.length; j++) { + var nafW = repr[j] + if (nafW === i) b = b.mixedAdd(doubles.points[j]) + else if (nafW === -i) b = b.mixedAdd(doubles.points[j].neg()) + } + a = a.add(b) + } + return a.toP() + } + + BaseCurve.prototype._wnafMul = function _wnafMul(p, k) { + var w = 4 + + // Precompute window + var nafPoints = p._getNAFPoints(w) + w = nafPoints.wnd + var wnd = nafPoints.points + + // Get NAF form + var naf = getNAF(k, w) + + // Add `this`*(N+1) for every w-NAF index + var acc = this.jpoint(null, null, null) + for (var i = naf.length - 1; i >= 0; i--) { + // Count zeroes + for (var k = 0; i >= 0 && naf[i] === 0; i--) k++ + if (i >= 0) k++ + acc = acc.dblp(k) + + if (i < 0) break + var z = naf[i] + assert(z !== 0) + if (p.type === "affine") { + // J +- P + if (z > 0) acc = acc.mixedAdd(wnd[(z - 1) >> 1]) + else acc = acc.mixedAdd(wnd[(-z - 1) >> 1].neg()) + } else { + // J +- J + if (z > 0) acc = acc.add(wnd[(z - 1) >> 1]) + else acc = acc.add(wnd[(-z - 1) >> 1].neg()) + } + } + return p.type === "affine" ? acc.toP() : acc + } + + BaseCurve.prototype._wnafMulAdd = function _wnafMulAdd( + defW, + points, + coeffs, + len, + jacobianResult + ) { + var wndWidth = this._wnafT1 + var wnd = this._wnafT2 + var naf = this._wnafT3 + + // Fill all arrays + var max = 0 + for (var i = 0; i < len; i++) { + var p = points[i] + var nafPoints = p._getNAFPoints(defW) + wndWidth[i] = nafPoints.wnd + wnd[i] = nafPoints.points + } + + // Comb small window NAFs + for (var i = len - 1; i >= 1; i -= 2) { + var a = i - 1 + var b = i + if (wndWidth[a] !== 1 || wndWidth[b] !== 1) { + naf[a] = getNAF(coeffs[a], wndWidth[a]) + naf[b] = getNAF(coeffs[b], wndWidth[b]) + max = Math.max(naf[a].length, max) + max = Math.max(naf[b].length, max) + continue + } + + var comb = [ + points[a] /* 1 */, + null /* 3 */, + null /* 5 */, + points[b] /* 7 */ + ] + + // Try to avoid Projective points, if possible + if (points[a].y.cmp(points[b].y) === 0) { + comb[1] = points[a].add(points[b]) + comb[2] = points[a].toJ().mixedAdd(points[b].neg()) + } else if (points[a].y.cmp(points[b].y.redNeg()) === 0) { + comb[1] = points[a].toJ().mixedAdd(points[b]) + comb[2] = points[a].add(points[b].neg()) + } else { + comb[1] = points[a].toJ().mixedAdd(points[b]) + comb[2] = points[a].toJ().mixedAdd(points[b].neg()) + } + + var index = [ + -3 /* -1 -1 */, + -1 /* -1 0 */, + -5 /* -1 1 */, + -7 /* 0 -1 */, + 0 /* 0 0 */, + 7 /* 0 1 */, + 5 /* 1 -1 */, + 1 /* 1 0 */, + 3 /* 1 1 */ + ] + + var jsf = getJSF(coeffs[a], coeffs[b]) + max = Math.max(jsf[0].length, max) + naf[a] = new Array(max) + naf[b] = new Array(max) + for (var j = 0; j < max; j++) { + var ja = jsf[0][j] | 0 + var jb = jsf[1][j] | 0 + + naf[a][j] = index[(ja + 1) * 3 + (jb + 1)] + naf[b][j] = 0 + wnd[a] = comb + } + } + + var acc = this.jpoint(null, null, null) + var tmp = this._wnafT4 + for (var i = max; i >= 0; i--) { + var k = 0 + + while (i >= 0) { + var zero = true + for (var j = 0; j < len; j++) { + tmp[j] = naf[j][i] | 0 + if (tmp[j] !== 0) zero = false + } + if (!zero) break + k++ + i-- + } + if (i >= 0) k++ + acc = acc.dblp(k) + if (i < 0) break + + for (var j = 0; j < len; j++) { + var z = tmp[j] + var p + if (z === 0) continue + else if (z > 0) p = wnd[j][(z - 1) >> 1] + else if (z < 0) p = wnd[j][(-z - 1) >> 1].neg() + + if (p.type === "affine") acc = acc.mixedAdd(p) + else acc = acc.add(p) + } + } + // Zeroify references + for (var i = 0; i < len; i++) wnd[i] = null + + if (jacobianResult) return acc + else return acc.toP() + } + + function BasePoint(curve, type) { + this.curve = curve + this.type = type + this.precomputed = null + } + BaseCurve.BasePoint = BasePoint + + BasePoint.prototype.eq = function eq(/*other*/) { + throw new Error("Not implemented") + } + + BasePoint.prototype.validate = function validate() { + return this.curve.validate(this) + } + + BaseCurve.prototype.decodePoint = function decodePoint(bytes, enc) { + bytes = utils.toArray(bytes, enc) + + var len = this.p.byteLength() + + // uncompressed, hybrid-odd, hybrid-even + if ( + (bytes[0] === 0x04 || bytes[0] === 0x06 || bytes[0] === 0x07) && + bytes.length - 1 === 2 * len + ) { + if (bytes[0] === 0x06) assert(bytes[bytes.length - 1] % 2 === 0) + else if (bytes[0] === 0x07) + assert(bytes[bytes.length - 1] % 2 === 1) + + var res = this.point( + bytes.slice(1, 1 + len), + bytes.slice(1 + len, 1 + 2 * len) + ) + + return res + } else if ( + (bytes[0] === 0x02 || bytes[0] === 0x03) && + bytes.length - 1 === len + ) { + return this.pointFromX(bytes.slice(1, 1 + len), bytes[0] === 0x03) + } + throw new Error("Unknown point format") + } + + BasePoint.prototype.encodeCompressed = function encodeCompressed( + enc + ) { + return this.encode(enc, true) + } + + BasePoint.prototype._encode = function _encode(compact) { + var len = this.curve.p.byteLength() + var x = this.getX().toArray("be", len) + + if (compact) return [this.getY().isEven() ? 0x02 : 0x03].concat(x) + + return [0x04].concat(x, this.getY().toArray("be", len)) + } + + BasePoint.prototype.encode = function encode(enc, compact) { + return utils.encode(this._encode(compact), enc) + } + + BasePoint.prototype.precompute = function precompute(power) { + if (this.precomputed) return this + + var precomputed = { + doubles: null, + naf: null, + beta: null + } + precomputed.naf = this._getNAFPoints(8) + precomputed.doubles = this._getDoubles(4, power) + precomputed.beta = this._getBeta() + this.precomputed = precomputed + + return this + } + + BasePoint.prototype._hasDoubles = function _hasDoubles(k) { + if (!this.precomputed) return false + + var doubles = this.precomputed.doubles + if (!doubles) return false + + return ( + doubles.points.length >= + Math.ceil((k.bitLength() + 1) / doubles.step) + ) + } + + BasePoint.prototype._getDoubles = function _getDoubles(step, power) { + if (this.precomputed && this.precomputed.doubles) + return this.precomputed.doubles + + var doubles = [this] + var acc = this + for (var i = 0; i < power; i += step) { + for (var j = 0; j < step; j++) acc = acc.dbl() + doubles.push(acc) + } + return { + step: step, + points: doubles + } + } + + BasePoint.prototype._getNAFPoints = function _getNAFPoints(wnd) { + if (this.precomputed && this.precomputed.naf) + return this.precomputed.naf + + var res = [this] + var max = (1 << wnd) - 1 + var dbl = max === 1 ? null : this.dbl() + for (var i = 1; i < max; i++) res[i] = res[i - 1].add(dbl) + return { + wnd: wnd, + points: res + } + } + + BasePoint.prototype._getBeta = function _getBeta() { + return null + } + + BasePoint.prototype.dblp = function dblp(k) { + var r = this + for (var i = 0; i < k; i++) r = r.dbl() + return r + } + }, + { "../../elliptic": 44, "bn.js": 34 } + ], + 46: [ + function(require, module, exports) { + "use strict" + + var curve = require("../curve") + var elliptic = require("../../elliptic") + var BN = require("bn.js") + var inherits = require("inherits") + var Base = curve.base + + var assert = elliptic.utils.assert + + function EdwardsCurve(conf) { + // NOTE: Important as we are creating point in Base.call() + this.twisted = (conf.a | 0) !== 1 + this.mOneA = this.twisted && (conf.a | 0) === -1 + this.extended = this.mOneA + + Base.call(this, "edwards", conf) + + this.a = new BN(conf.a, 16).umod(this.red.m) + this.a = this.a.toRed(this.red) + this.c = new BN(conf.c, 16).toRed(this.red) + this.c2 = this.c.redSqr() + this.d = new BN(conf.d, 16).toRed(this.red) + this.dd = this.d.redAdd(this.d) + + assert(!this.twisted || this.c.fromRed().cmpn(1) === 0) + this.oneC = (conf.c | 0) === 1 + } + inherits(EdwardsCurve, Base) + module.exports = EdwardsCurve + + EdwardsCurve.prototype._mulA = function _mulA(num) { + if (this.mOneA) return num.redNeg() + else return this.a.redMul(num) + } + + EdwardsCurve.prototype._mulC = function _mulC(num) { + if (this.oneC) return num + else return this.c.redMul(num) + } + + // Just for compatibility with Short curve + EdwardsCurve.prototype.jpoint = function jpoint(x, y, z, t) { + return this.point(x, y, z, t) + } + + EdwardsCurve.prototype.pointFromX = function pointFromX(x, odd) { + x = new BN(x, 16) + if (!x.red) x = x.toRed(this.red) + + var x2 = x.redSqr() + var rhs = this.c2.redSub(this.a.redMul(x2)) + var lhs = this.one.redSub(this.c2.redMul(this.d).redMul(x2)) + + var y2 = rhs.redMul(lhs.redInvm()) + var y = y2.redSqrt() + if ( + y + .redSqr() + .redSub(y2) + .cmp(this.zero) !== 0 + ) + throw new Error("invalid point") + + var isOdd = y.fromRed().isOdd() + if ((odd && !isOdd) || (!odd && isOdd)) y = y.redNeg() + + return this.point(x, y) + } + + EdwardsCurve.prototype.pointFromY = function pointFromY(y, odd) { + y = new BN(y, 16) + if (!y.red) y = y.toRed(this.red) + + // x^2 = (y^2 - c^2) / (c^2 d y^2 - a) + var y2 = y.redSqr() + var lhs = y2.redSub(this.c2) + var rhs = y2 + .redMul(this.d) + .redMul(this.c2) + .redSub(this.a) + var x2 = lhs.redMul(rhs.redInvm()) + + if (x2.cmp(this.zero) === 0) { + if (odd) throw new Error("invalid point") + else return this.point(this.zero, y) + } + + var x = x2.redSqrt() + if ( + x + .redSqr() + .redSub(x2) + .cmp(this.zero) !== 0 + ) + throw new Error("invalid point") + + if (x.fromRed().isOdd() !== odd) x = x.redNeg() + + return this.point(x, y) + } + + EdwardsCurve.prototype.validate = function validate(point) { + if (point.isInfinity()) return true + + // Curve: A * X^2 + Y^2 = C^2 * (1 + D * X^2 * Y^2) + point.normalize() + + var x2 = point.x.redSqr() + var y2 = point.y.redSqr() + var lhs = x2.redMul(this.a).redAdd(y2) + var rhs = this.c2.redMul( + this.one.redAdd(this.d.redMul(x2).redMul(y2)) + ) + + return lhs.cmp(rhs) === 0 + } + + function Point(curve, x, y, z, t) { + Base.BasePoint.call(this, curve, "projective") + if (x === null && y === null && z === null) { + this.x = this.curve.zero + this.y = this.curve.one + this.z = this.curve.one + this.t = this.curve.zero + this.zOne = true + } else { + this.x = new BN(x, 16) + this.y = new BN(y, 16) + this.z = z ? new BN(z, 16) : this.curve.one + this.t = t && new BN(t, 16) + if (!this.x.red) this.x = this.x.toRed(this.curve.red) + if (!this.y.red) this.y = this.y.toRed(this.curve.red) + if (!this.z.red) this.z = this.z.toRed(this.curve.red) + if (this.t && !this.t.red) this.t = this.t.toRed(this.curve.red) + this.zOne = this.z === this.curve.one + + // Use extended coordinates + if (this.curve.extended && !this.t) { + this.t = this.x.redMul(this.y) + if (!this.zOne) this.t = this.t.redMul(this.z.redInvm()) + } + } + } + inherits(Point, Base.BasePoint) + + EdwardsCurve.prototype.pointFromJSON = function pointFromJSON(obj) { + return Point.fromJSON(this, obj) + } + + EdwardsCurve.prototype.point = function point(x, y, z, t) { + return new Point(this, x, y, z, t) + } + + Point.fromJSON = function fromJSON(curve, obj) { + return new Point(curve, obj[0], obj[1], obj[2]) + } + + Point.prototype.inspect = function inspect() { + if (this.isInfinity()) return "" + return ( + "" + ) + } + + Point.prototype.isInfinity = function isInfinity() { + // XXX This code assumes that zero is always zero in red + return ( + this.x.cmpn(0) === 0 && + (this.y.cmp(this.z) === 0 || + (this.zOne && this.y.cmp(this.curve.c) === 0)) + ) + } + + Point.prototype._extDbl = function _extDbl() { + // hyperelliptic.org/EFD/g1p/auto-twisted-extended-1.html + // #doubling-dbl-2008-hwcd + // 4M + 4S + + // A = X1^2 + var a = this.x.redSqr() + // B = Y1^2 + var b = this.y.redSqr() + // C = 2 * Z1^2 + var c = this.z.redSqr() + c = c.redIAdd(c) + // D = a * A + var d = this.curve._mulA(a) + // E = (X1 + Y1)^2 - A - B + var e = this.x + .redAdd(this.y) + .redSqr() + .redISub(a) + .redISub(b) + // G = D + B + var g = d.redAdd(b) + // F = G - C + var f = g.redSub(c) + // H = D - B + var h = d.redSub(b) + // X3 = E * F + var nx = e.redMul(f) + // Y3 = G * H + var ny = g.redMul(h) + // T3 = E * H + var nt = e.redMul(h) + // Z3 = F * G + var nz = f.redMul(g) + return this.curve.point(nx, ny, nz, nt) + } + + Point.prototype._projDbl = function _projDbl() { + // hyperelliptic.org/EFD/g1p/auto-twisted-projective.html + // #doubling-dbl-2008-bbjlp + // #doubling-dbl-2007-bl + // and others + // Generally 3M + 4S or 2M + 4S + + // B = (X1 + Y1)^2 + var b = this.x.redAdd(this.y).redSqr() + // C = X1^2 + var c = this.x.redSqr() + // D = Y1^2 + var d = this.y.redSqr() + + var nx + var ny + var nz + if (this.curve.twisted) { + // E = a * C + var e = this.curve._mulA(c) + // F = E + D + var f = e.redAdd(d) + if (this.zOne) { + // X3 = (B - C - D) * (F - 2) + nx = b + .redSub(c) + .redSub(d) + .redMul(f.redSub(this.curve.two)) + // Y3 = F * (E - D) + ny = f.redMul(e.redSub(d)) + // Z3 = F^2 - 2 * F + nz = f + .redSqr() + .redSub(f) + .redSub(f) + } else { + // H = Z1^2 + var h = this.z.redSqr() + // J = F - 2 * H + var j = f.redSub(h).redISub(h) + // X3 = (B-C-D)*J + nx = b + .redSub(c) + .redISub(d) + .redMul(j) + // Y3 = F * (E - D) + ny = f.redMul(e.redSub(d)) + // Z3 = F * J + nz = f.redMul(j) + } + } else { + // E = C + D + var e = c.redAdd(d) + // H = (c * Z1)^2 + var h = this.curve._mulC(this.z).redSqr() + // J = E - 2 * H + var j = e.redSub(h).redSub(h) + // X3 = c * (B - E) * J + nx = this.curve._mulC(b.redISub(e)).redMul(j) + // Y3 = c * E * (C - D) + ny = this.curve._mulC(e).redMul(c.redISub(d)) + // Z3 = E * J + nz = e.redMul(j) + } + return this.curve.point(nx, ny, nz) + } + + Point.prototype.dbl = function dbl() { + if (this.isInfinity()) return this + + // Double in extended coordinates + if (this.curve.extended) return this._extDbl() + else return this._projDbl() + } + + Point.prototype._extAdd = function _extAdd(p) { + // hyperelliptic.org/EFD/g1p/auto-twisted-extended-1.html + // #addition-add-2008-hwcd-3 + // 8M + + // A = (Y1 - X1) * (Y2 - X2) + var a = this.y.redSub(this.x).redMul(p.y.redSub(p.x)) + // B = (Y1 + X1) * (Y2 + X2) + var b = this.y.redAdd(this.x).redMul(p.y.redAdd(p.x)) + // C = T1 * k * T2 + var c = this.t.redMul(this.curve.dd).redMul(p.t) + // D = Z1 * 2 * Z2 + var d = this.z.redMul(p.z.redAdd(p.z)) + // E = B - A + var e = b.redSub(a) + // F = D - C + var f = d.redSub(c) + // G = D + C + var g = d.redAdd(c) + // H = B + A + var h = b.redAdd(a) + // X3 = E * F + var nx = e.redMul(f) + // Y3 = G * H + var ny = g.redMul(h) + // T3 = E * H + var nt = e.redMul(h) + // Z3 = F * G + var nz = f.redMul(g) + return this.curve.point(nx, ny, nz, nt) + } + + Point.prototype._projAdd = function _projAdd(p) { + // hyperelliptic.org/EFD/g1p/auto-twisted-projective.html + // #addition-add-2008-bbjlp + // #addition-add-2007-bl + // 10M + 1S + + // A = Z1 * Z2 + var a = this.z.redMul(p.z) + // B = A^2 + var b = a.redSqr() + // C = X1 * X2 + var c = this.x.redMul(p.x) + // D = Y1 * Y2 + var d = this.y.redMul(p.y) + // E = d * C * D + var e = this.curve.d.redMul(c).redMul(d) + // F = B - E + var f = b.redSub(e) + // G = B + E + var g = b.redAdd(e) + // X3 = A * F * ((X1 + Y1) * (X2 + Y2) - C - D) + var tmp = this.x + .redAdd(this.y) + .redMul(p.x.redAdd(p.y)) + .redISub(c) + .redISub(d) + var nx = a.redMul(f).redMul(tmp) + var ny + var nz + if (this.curve.twisted) { + // Y3 = A * G * (D - a * C) + ny = a.redMul(g).redMul(d.redSub(this.curve._mulA(c))) + // Z3 = F * G + nz = f.redMul(g) + } else { + // Y3 = A * G * (D - C) + ny = a.redMul(g).redMul(d.redSub(c)) + // Z3 = c * F * G + nz = this.curve._mulC(f).redMul(g) + } + return this.curve.point(nx, ny, nz) + } + + Point.prototype.add = function add(p) { + if (this.isInfinity()) return p + if (p.isInfinity()) return this + + if (this.curve.extended) return this._extAdd(p) + else return this._projAdd(p) + } + + Point.prototype.mul = function mul(k) { + if (this._hasDoubles(k)) return this.curve._fixedNafMul(this, k) + else return this.curve._wnafMul(this, k) + } + + Point.prototype.mulAdd = function mulAdd(k1, p, k2) { + return this.curve._wnafMulAdd(1, [this, p], [k1, k2], 2, false) + } + + Point.prototype.jmulAdd = function jmulAdd(k1, p, k2) { + return this.curve._wnafMulAdd(1, [this, p], [k1, k2], 2, true) + } + + Point.prototype.normalize = function normalize() { + if (this.zOne) return this + + // Normalize coordinates + var zi = this.z.redInvm() + this.x = this.x.redMul(zi) + this.y = this.y.redMul(zi) + if (this.t) this.t = this.t.redMul(zi) + this.z = this.curve.one + this.zOne = true + return this + } + + Point.prototype.neg = function neg() { + return this.curve.point( + this.x.redNeg(), + this.y, + this.z, + this.t && this.t.redNeg() + ) + } + + Point.prototype.getX = function getX() { + this.normalize() + return this.x.fromRed() + } + + Point.prototype.getY = function getY() { + this.normalize() + return this.y.fromRed() + } + + Point.prototype.eq = function eq(other) { + return ( + this === other || + (this.getX().cmp(other.getX()) === 0 && + this.getY().cmp(other.getY()) === 0) + ) + } + + Point.prototype.eqXToP = function eqXToP(x) { + var rx = x.toRed(this.curve.red).redMul(this.z) + if (this.x.cmp(rx) === 0) return true + + var xc = x.clone() + var t = this.curve.redN.redMul(this.z) + for (;;) { + xc.iadd(this.curve.n) + if (xc.cmp(this.curve.p) >= 0) return false + + rx.redIAdd(t) + if (this.x.cmp(rx) === 0) return true + } + } + + // Compatibility with BaseCurve + Point.prototype.toP = Point.prototype.normalize + Point.prototype.mixedAdd = Point.prototype.add + }, + { "../../elliptic": 44, "../curve": 47, "bn.js": 34, inherits: 74 } + ], + 47: [ + function(require, module, exports) { + "use strict" + + var curve = exports + + curve.base = require("./base") + curve.short = require("./short") + curve.mont = require("./mont") + curve.edwards = require("./edwards") + }, + { "./base": 45, "./edwards": 46, "./mont": 48, "./short": 49 } + ], + 48: [ + function(require, module, exports) { + "use strict" + + var curve = require("../curve") + var BN = require("bn.js") + var inherits = require("inherits") + var Base = curve.base + + var elliptic = require("../../elliptic") + var utils = elliptic.utils + + function MontCurve(conf) { + Base.call(this, "mont", conf) + + this.a = new BN(conf.a, 16).toRed(this.red) + this.b = new BN(conf.b, 16).toRed(this.red) + this.i4 = new BN(4).toRed(this.red).redInvm() + this.two = new BN(2).toRed(this.red) + this.a24 = this.i4.redMul(this.a.redAdd(this.two)) + } + inherits(MontCurve, Base) + module.exports = MontCurve + + MontCurve.prototype.validate = function validate(point) { + var x = point.normalize().x + var x2 = x.redSqr() + var rhs = x2 + .redMul(x) + .redAdd(x2.redMul(this.a)) + .redAdd(x) + var y = rhs.redSqrt() + + return y.redSqr().cmp(rhs) === 0 + } + + function Point(curve, x, z) { + Base.BasePoint.call(this, curve, "projective") + if (x === null && z === null) { + this.x = this.curve.one + this.z = this.curve.zero + } else { + this.x = new BN(x, 16) + this.z = new BN(z, 16) + if (!this.x.red) this.x = this.x.toRed(this.curve.red) + if (!this.z.red) this.z = this.z.toRed(this.curve.red) + } + } + inherits(Point, Base.BasePoint) + + MontCurve.prototype.decodePoint = function decodePoint(bytes, enc) { + return this.point(utils.toArray(bytes, enc), 1) + } + + MontCurve.prototype.point = function point(x, z) { + return new Point(this, x, z) + } + + MontCurve.prototype.pointFromJSON = function pointFromJSON(obj) { + return Point.fromJSON(this, obj) + } + + Point.prototype.precompute = function precompute() { + // No-op + } + + Point.prototype._encode = function _encode() { + return this.getX().toArray("be", this.curve.p.byteLength()) + } + + Point.fromJSON = function fromJSON(curve, obj) { + return new Point(curve, obj[0], obj[1] || curve.one) + } + + Point.prototype.inspect = function inspect() { + if (this.isInfinity()) return "" + return ( + "" + ) + } + + Point.prototype.isInfinity = function isInfinity() { + // XXX This code assumes that zero is always zero in red + return this.z.cmpn(0) === 0 + } + + Point.prototype.dbl = function dbl() { + // http://hyperelliptic.org/EFD/g1p/auto-montgom-xz.html#doubling-dbl-1987-m-3 + // 2M + 2S + 4A + + // A = X1 + Z1 + var a = this.x.redAdd(this.z) + // AA = A^2 + var aa = a.redSqr() + // B = X1 - Z1 + var b = this.x.redSub(this.z) + // BB = B^2 + var bb = b.redSqr() + // C = AA - BB + var c = aa.redSub(bb) + // X3 = AA * BB + var nx = aa.redMul(bb) + // Z3 = C * (BB + A24 * C) + var nz = c.redMul(bb.redAdd(this.curve.a24.redMul(c))) + return this.curve.point(nx, nz) + } + + Point.prototype.add = function add() { + throw new Error("Not supported on Montgomery curve") + } + + Point.prototype.diffAdd = function diffAdd(p, diff) { + // http://hyperelliptic.org/EFD/g1p/auto-montgom-xz.html#diffadd-dadd-1987-m-3 + // 4M + 2S + 6A + + // A = X2 + Z2 + var a = this.x.redAdd(this.z) + // B = X2 - Z2 + var b = this.x.redSub(this.z) + // C = X3 + Z3 + var c = p.x.redAdd(p.z) + // D = X3 - Z3 + var d = p.x.redSub(p.z) + // DA = D * A + var da = d.redMul(a) + // CB = C * B + var cb = c.redMul(b) + // X5 = Z1 * (DA + CB)^2 + var nx = diff.z.redMul(da.redAdd(cb).redSqr()) + // Z5 = X1 * (DA - CB)^2 + var nz = diff.x.redMul(da.redISub(cb).redSqr()) + return this.curve.point(nx, nz) + } + + Point.prototype.mul = function mul(k) { + var t = k.clone() + var a = this // (N / 2) * Q + Q + var b = this.curve.point(null, null) // (N / 2) * Q + var c = this // Q + + for (var bits = []; t.cmpn(0) !== 0; t.iushrn(1)) + bits.push(t.andln(1)) + + for (var i = bits.length - 1; i >= 0; i--) { + if (bits[i] === 0) { + // N * Q + Q = ((N / 2) * Q + Q)) + (N / 2) * Q + a = a.diffAdd(b, c) + // N * Q = 2 * ((N / 2) * Q + Q)) + b = b.dbl() + } else { + // N * Q = ((N / 2) * Q + Q) + ((N / 2) * Q) + b = a.diffAdd(b, c) + // N * Q + Q = 2 * ((N / 2) * Q + Q) + a = a.dbl() + } + } + return b + } + + Point.prototype.mulAdd = function mulAdd() { + throw new Error("Not supported on Montgomery curve") + } + + Point.prototype.jumlAdd = function jumlAdd() { + throw new Error("Not supported on Montgomery curve") + } + + Point.prototype.eq = function eq(other) { + return this.getX().cmp(other.getX()) === 0 + } + + Point.prototype.normalize = function normalize() { + this.x = this.x.redMul(this.z.redInvm()) + this.z = this.curve.one + return this + } + + Point.prototype.getX = function getX() { + // Normalize coordinates + this.normalize() + + return this.x.fromRed() + } + }, + { "../../elliptic": 44, "../curve": 47, "bn.js": 34, inherits: 74 } + ], + 49: [ + function(require, module, exports) { + "use strict" + + var curve = require("../curve") + var elliptic = require("../../elliptic") + var BN = require("bn.js") + var inherits = require("inherits") + var Base = curve.base + + var assert = elliptic.utils.assert + + function ShortCurve(conf) { + Base.call(this, "short", conf) + + this.a = new BN(conf.a, 16).toRed(this.red) + this.b = new BN(conf.b, 16).toRed(this.red) + this.tinv = this.two.redInvm() + + this.zeroA = this.a.fromRed().cmpn(0) === 0 + this.threeA = + this.a + .fromRed() + .sub(this.p) + .cmpn(-3) === 0 + + // If the curve is endomorphic, precalculate beta and lambda + this.endo = this._getEndomorphism(conf) + this._endoWnafT1 = new Array(4) + this._endoWnafT2 = new Array(4) + } + inherits(ShortCurve, Base) + module.exports = ShortCurve + + ShortCurve.prototype._getEndomorphism = function _getEndomorphism( + conf + ) { + // No efficient endomorphism + if (!this.zeroA || !this.g || !this.n || this.p.modn(3) !== 1) + return + + // Compute beta and lambda, that lambda * P = (beta * Px; Py) + var beta + var lambda + if (conf.beta) { + beta = new BN(conf.beta, 16).toRed(this.red) + } else { + var betas = this._getEndoRoots(this.p) + // Choose the smallest beta + beta = betas[0].cmp(betas[1]) < 0 ? betas[0] : betas[1] + beta = beta.toRed(this.red) + } + if (conf.lambda) { + lambda = new BN(conf.lambda, 16) + } else { + // Choose the lambda that is matching selected beta + var lambdas = this._getEndoRoots(this.n) + if (this.g.mul(lambdas[0]).x.cmp(this.g.x.redMul(beta)) === 0) { + lambda = lambdas[0] + } else { + lambda = lambdas[1] + assert(this.g.mul(lambda).x.cmp(this.g.x.redMul(beta)) === 0) + } + } + + // Get basis vectors, used for balanced length-two representation + var basis + if (conf.basis) { + basis = conf.basis.map(function(vec) { + return { + a: new BN(vec.a, 16), + b: new BN(vec.b, 16) + } + }) + } else { + basis = this._getEndoBasis(lambda) + } + + return { + beta: beta, + lambda: lambda, + basis: basis + } + } + + ShortCurve.prototype._getEndoRoots = function _getEndoRoots(num) { + // Find roots of for x^2 + x + 1 in F + // Root = (-1 +- Sqrt(-3)) / 2 + // + var red = num === this.p ? this.red : BN.mont(num) + var tinv = new BN(2).toRed(red).redInvm() + var ntinv = tinv.redNeg() + + var s = new BN(3) + .toRed(red) + .redNeg() + .redSqrt() + .redMul(tinv) + + var l1 = ntinv.redAdd(s).fromRed() + var l2 = ntinv.redSub(s).fromRed() + return [l1, l2] + } + + ShortCurve.prototype._getEndoBasis = function _getEndoBasis(lambda) { + // aprxSqrt >= sqrt(this.n) + var aprxSqrt = this.n.ushrn(Math.floor(this.n.bitLength() / 2)) + + // 3.74 + // Run EGCD, until r(L + 1) < aprxSqrt + var u = lambda + var v = this.n.clone() + var x1 = new BN(1) + var y1 = new BN(0) + var x2 = new BN(0) + var y2 = new BN(1) + + // NOTE: all vectors are roots of: a + b * lambda = 0 (mod n) + var a0 + var b0 + // First vector + var a1 + var b1 + // Second vector + var a2 + var b2 + + var prevR + var i = 0 + var r + var x + while (u.cmpn(0) !== 0) { + var q = v.div(u) + r = v.sub(q.mul(u)) + x = x2.sub(q.mul(x1)) + var y = y2.sub(q.mul(y1)) + + if (!a1 && r.cmp(aprxSqrt) < 0) { + a0 = prevR.neg() + b0 = x1 + a1 = r.neg() + b1 = x + } else if (a1 && ++i === 2) { + break + } + prevR = r + + v = u + u = r + x2 = x1 + x1 = x + y2 = y1 + y1 = y + } + a2 = r.neg() + b2 = x + + var len1 = a1.sqr().add(b1.sqr()) + var len2 = a2.sqr().add(b2.sqr()) + if (len2.cmp(len1) >= 0) { + a2 = a0 + b2 = b0 + } + + // Normalize signs + if (a1.negative) { + a1 = a1.neg() + b1 = b1.neg() + } + if (a2.negative) { + a2 = a2.neg() + b2 = b2.neg() + } + + return [{ a: a1, b: b1 }, { a: a2, b: b2 }] + } + + ShortCurve.prototype._endoSplit = function _endoSplit(k) { + var basis = this.endo.basis + var v1 = basis[0] + var v2 = basis[1] + + var c1 = v2.b.mul(k).divRound(this.n) + var c2 = v1.b + .neg() + .mul(k) + .divRound(this.n) + + var p1 = c1.mul(v1.a) + var p2 = c2.mul(v2.a) + var q1 = c1.mul(v1.b) + var q2 = c2.mul(v2.b) + + // Calculate answer + var k1 = k.sub(p1).sub(p2) + var k2 = q1.add(q2).neg() + return { k1: k1, k2: k2 } + } + + ShortCurve.prototype.pointFromX = function pointFromX(x, odd) { + x = new BN(x, 16) + if (!x.red) x = x.toRed(this.red) + + var y2 = x + .redSqr() + .redMul(x) + .redIAdd(x.redMul(this.a)) + .redIAdd(this.b) + var y = y2.redSqrt() + if ( + y + .redSqr() + .redSub(y2) + .cmp(this.zero) !== 0 + ) + throw new Error("invalid point") + + // XXX Is there any way to tell if the number is odd without converting it + // to non-red form? + var isOdd = y.fromRed().isOdd() + if ((odd && !isOdd) || (!odd && isOdd)) y = y.redNeg() + + return this.point(x, y) + } + + ShortCurve.prototype.validate = function validate(point) { + if (point.inf) return true + + var x = point.x + var y = point.y + + var ax = this.a.redMul(x) + var rhs = x + .redSqr() + .redMul(x) + .redIAdd(ax) + .redIAdd(this.b) + return ( + y + .redSqr() + .redISub(rhs) + .cmpn(0) === 0 + ) + } + + ShortCurve.prototype._endoWnafMulAdd = function _endoWnafMulAdd( + points, + coeffs, + jacobianResult + ) { + var npoints = this._endoWnafT1 + var ncoeffs = this._endoWnafT2 + for (var i = 0; i < points.length; i++) { + var split = this._endoSplit(coeffs[i]) + var p = points[i] + var beta = p._getBeta() + + if (split.k1.negative) { + split.k1.ineg() + p = p.neg(true) + } + if (split.k2.negative) { + split.k2.ineg() + beta = beta.neg(true) + } + + npoints[i * 2] = p + npoints[i * 2 + 1] = beta + ncoeffs[i * 2] = split.k1 + ncoeffs[i * 2 + 1] = split.k2 + } + var res = this._wnafMulAdd( + 1, + npoints, + ncoeffs, + i * 2, + jacobianResult + ) + + // Clean-up references to points and coefficients + for (var j = 0; j < i * 2; j++) { + npoints[j] = null + ncoeffs[j] = null + } + return res + } + + function Point(curve, x, y, isRed) { + Base.BasePoint.call(this, curve, "affine") + if (x === null && y === null) { + this.x = null + this.y = null + this.inf = true + } else { + this.x = new BN(x, 16) + this.y = new BN(y, 16) + // Force redgomery representation when loading from JSON + if (isRed) { + this.x.forceRed(this.curve.red) + this.y.forceRed(this.curve.red) + } + if (!this.x.red) this.x = this.x.toRed(this.curve.red) + if (!this.y.red) this.y = this.y.toRed(this.curve.red) + this.inf = false + } + } + inherits(Point, Base.BasePoint) + + ShortCurve.prototype.point = function point(x, y, isRed) { + return new Point(this, x, y, isRed) + } + + ShortCurve.prototype.pointFromJSON = function pointFromJSON( + obj, + red + ) { + return Point.fromJSON(this, obj, red) + } + + Point.prototype._getBeta = function _getBeta() { + if (!this.curve.endo) return + + var pre = this.precomputed + if (pre && pre.beta) return pre.beta + + var beta = this.curve.point( + this.x.redMul(this.curve.endo.beta), + this.y + ) + if (pre) { + var curve = this.curve + var endoMul = function(p) { + return curve.point(p.x.redMul(curve.endo.beta), p.y) + } + pre.beta = beta + beta.precomputed = { + beta: null, + naf: pre.naf && { + wnd: pre.naf.wnd, + points: pre.naf.points.map(endoMul) + }, + doubles: pre.doubles && { + step: pre.doubles.step, + points: pre.doubles.points.map(endoMul) + } + } + } + return beta + } + + Point.prototype.toJSON = function toJSON() { + if (!this.precomputed) return [this.x, this.y] + + return [ + this.x, + this.y, + this.precomputed && { + doubles: this.precomputed.doubles && { + step: this.precomputed.doubles.step, + points: this.precomputed.doubles.points.slice(1) + }, + naf: this.precomputed.naf && { + wnd: this.precomputed.naf.wnd, + points: this.precomputed.naf.points.slice(1) + } + } + ] + } + + Point.fromJSON = function fromJSON(curve, obj, red) { + if (typeof obj === "string") obj = JSON.parse(obj) + var res = curve.point(obj[0], obj[1], red) + if (!obj[2]) return res + + function obj2point(obj) { + return curve.point(obj[0], obj[1], red) + } + + var pre = obj[2] + res.precomputed = { + beta: null, + doubles: pre.doubles && { + step: pre.doubles.step, + points: [res].concat(pre.doubles.points.map(obj2point)) + }, + naf: pre.naf && { + wnd: pre.naf.wnd, + points: [res].concat(pre.naf.points.map(obj2point)) + } + } + return res + } + + Point.prototype.inspect = function inspect() { + if (this.isInfinity()) return "" + return ( + "" + ) + } + + Point.prototype.isInfinity = function isInfinity() { + return this.inf + } + + Point.prototype.add = function add(p) { + // O + P = P + if (this.inf) return p + + // P + O = P + if (p.inf) return this + + // P + P = 2P + if (this.eq(p)) return this.dbl() + + // P + (-P) = O + if (this.neg().eq(p)) return this.curve.point(null, null) + + // P + Q = O + if (this.x.cmp(p.x) === 0) return this.curve.point(null, null) + + var c = this.y.redSub(p.y) + if (c.cmpn(0) !== 0) c = c.redMul(this.x.redSub(p.x).redInvm()) + var nx = c + .redSqr() + .redISub(this.x) + .redISub(p.x) + var ny = c.redMul(this.x.redSub(nx)).redISub(this.y) + return this.curve.point(nx, ny) + } + + Point.prototype.dbl = function dbl() { + if (this.inf) return this + + // 2P = O + var ys1 = this.y.redAdd(this.y) + if (ys1.cmpn(0) === 0) return this.curve.point(null, null) + + var a = this.curve.a + + var x2 = this.x.redSqr() + var dyinv = ys1.redInvm() + var c = x2 + .redAdd(x2) + .redIAdd(x2) + .redIAdd(a) + .redMul(dyinv) + + var nx = c.redSqr().redISub(this.x.redAdd(this.x)) + var ny = c.redMul(this.x.redSub(nx)).redISub(this.y) + return this.curve.point(nx, ny) + } + + Point.prototype.getX = function getX() { + return this.x.fromRed() + } + + Point.prototype.getY = function getY() { + return this.y.fromRed() + } + + Point.prototype.mul = function mul(k) { + k = new BN(k, 16) + + if (this._hasDoubles(k)) return this.curve._fixedNafMul(this, k) + else if (this.curve.endo) + return this.curve._endoWnafMulAdd([this], [k]) + else return this.curve._wnafMul(this, k) + } + + Point.prototype.mulAdd = function mulAdd(k1, p2, k2) { + var points = [this, p2] + var coeffs = [k1, k2] + if (this.curve.endo) + return this.curve._endoWnafMulAdd(points, coeffs) + else return this.curve._wnafMulAdd(1, points, coeffs, 2) + } + + Point.prototype.jmulAdd = function jmulAdd(k1, p2, k2) { + var points = [this, p2] + var coeffs = [k1, k2] + if (this.curve.endo) + return this.curve._endoWnafMulAdd(points, coeffs, true) + else return this.curve._wnafMulAdd(1, points, coeffs, 2, true) + } + + Point.prototype.eq = function eq(p) { + return ( + this === p || + (this.inf === p.inf && + (this.inf || (this.x.cmp(p.x) === 0 && this.y.cmp(p.y) === 0))) + ) + } + + Point.prototype.neg = function neg(_precompute) { + if (this.inf) return this + + var res = this.curve.point(this.x, this.y.redNeg()) + if (_precompute && this.precomputed) { + var pre = this.precomputed + var negate = function(p) { + return p.neg() + } + res.precomputed = { + naf: pre.naf && { + wnd: pre.naf.wnd, + points: pre.naf.points.map(negate) + }, + doubles: pre.doubles && { + step: pre.doubles.step, + points: pre.doubles.points.map(negate) + } + } + } + return res + } + + Point.prototype.toJ = function toJ() { + if (this.inf) return this.curve.jpoint(null, null, null) + + var res = this.curve.jpoint(this.x, this.y, this.curve.one) + return res + } + + function JPoint(curve, x, y, z) { + Base.BasePoint.call(this, curve, "jacobian") + if (x === null && y === null && z === null) { + this.x = this.curve.one + this.y = this.curve.one + this.z = new BN(0) + } else { + this.x = new BN(x, 16) + this.y = new BN(y, 16) + this.z = new BN(z, 16) + } + if (!this.x.red) this.x = this.x.toRed(this.curve.red) + if (!this.y.red) this.y = this.y.toRed(this.curve.red) + if (!this.z.red) this.z = this.z.toRed(this.curve.red) + + this.zOne = this.z === this.curve.one + } + inherits(JPoint, Base.BasePoint) + + ShortCurve.prototype.jpoint = function jpoint(x, y, z) { + return new JPoint(this, x, y, z) + } + + JPoint.prototype.toP = function toP() { + if (this.isInfinity()) return this.curve.point(null, null) + + var zinv = this.z.redInvm() + var zinv2 = zinv.redSqr() + var ax = this.x.redMul(zinv2) + var ay = this.y.redMul(zinv2).redMul(zinv) + + return this.curve.point(ax, ay) + } + + JPoint.prototype.neg = function neg() { + return this.curve.jpoint(this.x, this.y.redNeg(), this.z) + } + + JPoint.prototype.add = function add(p) { + // O + P = P + if (this.isInfinity()) return p + + // P + O = P + if (p.isInfinity()) return this + + // 12M + 4S + 7A + var pz2 = p.z.redSqr() + var z2 = this.z.redSqr() + var u1 = this.x.redMul(pz2) + var u2 = p.x.redMul(z2) + var s1 = this.y.redMul(pz2.redMul(p.z)) + var s2 = p.y.redMul(z2.redMul(this.z)) + + var h = u1.redSub(u2) + var r = s1.redSub(s2) + if (h.cmpn(0) === 0) { + if (r.cmpn(0) !== 0) return this.curve.jpoint(null, null, null) + else return this.dbl() + } + + var h2 = h.redSqr() + var h3 = h2.redMul(h) + var v = u1.redMul(h2) + + var nx = r + .redSqr() + .redIAdd(h3) + .redISub(v) + .redISub(v) + var ny = r.redMul(v.redISub(nx)).redISub(s1.redMul(h3)) + var nz = this.z.redMul(p.z).redMul(h) + + return this.curve.jpoint(nx, ny, nz) + } + + JPoint.prototype.mixedAdd = function mixedAdd(p) { + // O + P = P + if (this.isInfinity()) return p.toJ() + + // P + O = P + if (p.isInfinity()) return this + + // 8M + 3S + 7A + var z2 = this.z.redSqr() + var u1 = this.x + var u2 = p.x.redMul(z2) + var s1 = this.y + var s2 = p.y.redMul(z2).redMul(this.z) + + var h = u1.redSub(u2) + var r = s1.redSub(s2) + if (h.cmpn(0) === 0) { + if (r.cmpn(0) !== 0) return this.curve.jpoint(null, null, null) + else return this.dbl() + } + + var h2 = h.redSqr() + var h3 = h2.redMul(h) + var v = u1.redMul(h2) + + var nx = r + .redSqr() + .redIAdd(h3) + .redISub(v) + .redISub(v) + var ny = r.redMul(v.redISub(nx)).redISub(s1.redMul(h3)) + var nz = this.z.redMul(h) + + return this.curve.jpoint(nx, ny, nz) + } + + JPoint.prototype.dblp = function dblp(pow) { + if (pow === 0) return this + if (this.isInfinity()) return this + if (!pow) return this.dbl() + + if (this.curve.zeroA || this.curve.threeA) { + var r = this + for (var i = 0; i < pow; i++) r = r.dbl() + return r + } + + // 1M + 2S + 1A + N * (4S + 5M + 8A) + // N = 1 => 6M + 6S + 9A + var a = this.curve.a + var tinv = this.curve.tinv + + var jx = this.x + var jy = this.y + var jz = this.z + var jz4 = jz.redSqr().redSqr() + + // Reuse results + var jyd = jy.redAdd(jy) + for (var i = 0; i < pow; i++) { + var jx2 = jx.redSqr() + var jyd2 = jyd.redSqr() + var jyd4 = jyd2.redSqr() + var c = jx2 + .redAdd(jx2) + .redIAdd(jx2) + .redIAdd(a.redMul(jz4)) + + var t1 = jx.redMul(jyd2) + var nx = c.redSqr().redISub(t1.redAdd(t1)) + var t2 = t1.redISub(nx) + var dny = c.redMul(t2) + dny = dny.redIAdd(dny).redISub(jyd4) + var nz = jyd.redMul(jz) + if (i + 1 < pow) jz4 = jz4.redMul(jyd4) + + jx = nx + jz = nz + jyd = dny + } + + return this.curve.jpoint(jx, jyd.redMul(tinv), jz) + } + + JPoint.prototype.dbl = function dbl() { + if (this.isInfinity()) return this + + if (this.curve.zeroA) return this._zeroDbl() + else if (this.curve.threeA) return this._threeDbl() + else return this._dbl() + } + + JPoint.prototype._zeroDbl = function _zeroDbl() { + var nx + var ny + var nz + // Z = 1 + if (this.zOne) { + // hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-0.html + // #doubling-mdbl-2007-bl + // 1M + 5S + 14A + + // XX = X1^2 + var xx = this.x.redSqr() + // YY = Y1^2 + var yy = this.y.redSqr() + // YYYY = YY^2 + var yyyy = yy.redSqr() + // S = 2 * ((X1 + YY)^2 - XX - YYYY) + var s = this.x + .redAdd(yy) + .redSqr() + .redISub(xx) + .redISub(yyyy) + s = s.redIAdd(s) + // M = 3 * XX + a; a = 0 + var m = xx.redAdd(xx).redIAdd(xx) + // T = M ^ 2 - 2*S + var t = m + .redSqr() + .redISub(s) + .redISub(s) + + // 8 * YYYY + var yyyy8 = yyyy.redIAdd(yyyy) + yyyy8 = yyyy8.redIAdd(yyyy8) + yyyy8 = yyyy8.redIAdd(yyyy8) + + // X3 = T + nx = t + // Y3 = M * (S - T) - 8 * YYYY + ny = m.redMul(s.redISub(t)).redISub(yyyy8) + // Z3 = 2*Y1 + nz = this.y.redAdd(this.y) + } else { + // hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-0.html + // #doubling-dbl-2009-l + // 2M + 5S + 13A + + // A = X1^2 + var a = this.x.redSqr() + // B = Y1^2 + var b = this.y.redSqr() + // C = B^2 + var c = b.redSqr() + // D = 2 * ((X1 + B)^2 - A - C) + var d = this.x + .redAdd(b) + .redSqr() + .redISub(a) + .redISub(c) + d = d.redIAdd(d) + // E = 3 * A + var e = a.redAdd(a).redIAdd(a) + // F = E^2 + var f = e.redSqr() + + // 8 * C + var c8 = c.redIAdd(c) + c8 = c8.redIAdd(c8) + c8 = c8.redIAdd(c8) + + // X3 = F - 2 * D + nx = f.redISub(d).redISub(d) + // Y3 = E * (D - X3) - 8 * C + ny = e.redMul(d.redISub(nx)).redISub(c8) + // Z3 = 2 * Y1 * Z1 + nz = this.y.redMul(this.z) + nz = nz.redIAdd(nz) + } + + return this.curve.jpoint(nx, ny, nz) + } + + JPoint.prototype._threeDbl = function _threeDbl() { + var nx + var ny + var nz + // Z = 1 + if (this.zOne) { + // hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html + // #doubling-mdbl-2007-bl + // 1M + 5S + 15A + + // XX = X1^2 + var xx = this.x.redSqr() + // YY = Y1^2 + var yy = this.y.redSqr() + // YYYY = YY^2 + var yyyy = yy.redSqr() + // S = 2 * ((X1 + YY)^2 - XX - YYYY) + var s = this.x + .redAdd(yy) + .redSqr() + .redISub(xx) + .redISub(yyyy) + s = s.redIAdd(s) + // M = 3 * XX + a + var m = xx + .redAdd(xx) + .redIAdd(xx) + .redIAdd(this.curve.a) + // T = M^2 - 2 * S + var t = m + .redSqr() + .redISub(s) + .redISub(s) + // X3 = T + nx = t + // Y3 = M * (S - T) - 8 * YYYY + var yyyy8 = yyyy.redIAdd(yyyy) + yyyy8 = yyyy8.redIAdd(yyyy8) + yyyy8 = yyyy8.redIAdd(yyyy8) + ny = m.redMul(s.redISub(t)).redISub(yyyy8) + // Z3 = 2 * Y1 + nz = this.y.redAdd(this.y) + } else { + // hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html#doubling-dbl-2001-b + // 3M + 5S + + // delta = Z1^2 + var delta = this.z.redSqr() + // gamma = Y1^2 + var gamma = this.y.redSqr() + // beta = X1 * gamma + var beta = this.x.redMul(gamma) + // alpha = 3 * (X1 - delta) * (X1 + delta) + var alpha = this.x.redSub(delta).redMul(this.x.redAdd(delta)) + alpha = alpha.redAdd(alpha).redIAdd(alpha) + // X3 = alpha^2 - 8 * beta + var beta4 = beta.redIAdd(beta) + beta4 = beta4.redIAdd(beta4) + var beta8 = beta4.redAdd(beta4) + nx = alpha.redSqr().redISub(beta8) + // Z3 = (Y1 + Z1)^2 - gamma - delta + nz = this.y + .redAdd(this.z) + .redSqr() + .redISub(gamma) + .redISub(delta) + // Y3 = alpha * (4 * beta - X3) - 8 * gamma^2 + var ggamma8 = gamma.redSqr() + ggamma8 = ggamma8.redIAdd(ggamma8) + ggamma8 = ggamma8.redIAdd(ggamma8) + ggamma8 = ggamma8.redIAdd(ggamma8) + ny = alpha.redMul(beta4.redISub(nx)).redISub(ggamma8) + } + + return this.curve.jpoint(nx, ny, nz) + } + + JPoint.prototype._dbl = function _dbl() { + var a = this.curve.a + + // 4M + 6S + 10A + var jx = this.x + var jy = this.y + var jz = this.z + var jz4 = jz.redSqr().redSqr() + + var jx2 = jx.redSqr() + var jy2 = jy.redSqr() + + var c = jx2 + .redAdd(jx2) + .redIAdd(jx2) + .redIAdd(a.redMul(jz4)) + + var jxd4 = jx.redAdd(jx) + jxd4 = jxd4.redIAdd(jxd4) + var t1 = jxd4.redMul(jy2) + var nx = c.redSqr().redISub(t1.redAdd(t1)) + var t2 = t1.redISub(nx) + + var jyd8 = jy2.redSqr() + jyd8 = jyd8.redIAdd(jyd8) + jyd8 = jyd8.redIAdd(jyd8) + jyd8 = jyd8.redIAdd(jyd8) + var ny = c.redMul(t2).redISub(jyd8) + var nz = jy.redAdd(jy).redMul(jz) + + return this.curve.jpoint(nx, ny, nz) + } + + JPoint.prototype.trpl = function trpl() { + if (!this.curve.zeroA) return this.dbl().add(this) + + // hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-0.html#tripling-tpl-2007-bl + // 5M + 10S + ... + + // XX = X1^2 + var xx = this.x.redSqr() + // YY = Y1^2 + var yy = this.y.redSqr() + // ZZ = Z1^2 + var zz = this.z.redSqr() + // YYYY = YY^2 + var yyyy = yy.redSqr() + // M = 3 * XX + a * ZZ2; a = 0 + var m = xx.redAdd(xx).redIAdd(xx) + // MM = M^2 + var mm = m.redSqr() + // E = 6 * ((X1 + YY)^2 - XX - YYYY) - MM + var e = this.x + .redAdd(yy) + .redSqr() + .redISub(xx) + .redISub(yyyy) + e = e.redIAdd(e) + e = e.redAdd(e).redIAdd(e) + e = e.redISub(mm) + // EE = E^2 + var ee = e.redSqr() + // T = 16*YYYY + var t = yyyy.redIAdd(yyyy) + t = t.redIAdd(t) + t = t.redIAdd(t) + t = t.redIAdd(t) + // U = (M + E)^2 - MM - EE - T + var u = m + .redIAdd(e) + .redSqr() + .redISub(mm) + .redISub(ee) + .redISub(t) + // X3 = 4 * (X1 * EE - 4 * YY * U) + var yyu4 = yy.redMul(u) + yyu4 = yyu4.redIAdd(yyu4) + yyu4 = yyu4.redIAdd(yyu4) + var nx = this.x.redMul(ee).redISub(yyu4) + nx = nx.redIAdd(nx) + nx = nx.redIAdd(nx) + // Y3 = 8 * Y1 * (U * (T - U) - E * EE) + var ny = this.y.redMul(u.redMul(t.redISub(u)).redISub(e.redMul(ee))) + ny = ny.redIAdd(ny) + ny = ny.redIAdd(ny) + ny = ny.redIAdd(ny) + // Z3 = (Z1 + E)^2 - ZZ - EE + var nz = this.z + .redAdd(e) + .redSqr() + .redISub(zz) + .redISub(ee) + + return this.curve.jpoint(nx, ny, nz) + } + + JPoint.prototype.mul = function mul(k, kbase) { + k = new BN(k, kbase) + + return this.curve._wnafMul(this, k) + } + + JPoint.prototype.eq = function eq(p) { + if (p.type === "affine") return this.eq(p.toJ()) + + if (this === p) return true + + // x1 * z2^2 == x2 * z1^2 + var z2 = this.z.redSqr() + var pz2 = p.z.redSqr() + if ( + this.x + .redMul(pz2) + .redISub(p.x.redMul(z2)) + .cmpn(0) !== 0 + ) + return false + + // y1 * z2^3 == y2 * z1^3 + var z3 = z2.redMul(this.z) + var pz3 = pz2.redMul(p.z) + return ( + this.y + .redMul(pz3) + .redISub(p.y.redMul(z3)) + .cmpn(0) === 0 + ) + } + + JPoint.prototype.eqXToP = function eqXToP(x) { + var zs = this.z.redSqr() + var rx = x.toRed(this.curve.red).redMul(zs) + if (this.x.cmp(rx) === 0) return true + + var xc = x.clone() + var t = this.curve.redN.redMul(zs) + for (;;) { + xc.iadd(this.curve.n) + if (xc.cmp(this.curve.p) >= 0) return false + + rx.redIAdd(t) + if (this.x.cmp(rx) === 0) return true + } + } + + JPoint.prototype.inspect = function inspect() { + if (this.isInfinity()) return "" + return ( + "" + ) + } + + JPoint.prototype.isInfinity = function isInfinity() { + // XXX This code assumes that zero is always zero in red + return this.z.cmpn(0) === 0 + } + }, + { "../../elliptic": 44, "../curve": 47, "bn.js": 34, inherits: 74 } + ], + 50: [ + function(require, module, exports) { + "use strict" + + var curves = exports + + var hash = require("hash.js") + var elliptic = require("../elliptic") + + var assert = elliptic.utils.assert + + function PresetCurve(options) { + if (options.type === "short") + this.curve = new elliptic.curve.short(options) + else if (options.type === "edwards") + this.curve = new elliptic.curve.edwards(options) + else this.curve = new elliptic.curve.mont(options) + this.g = this.curve.g + this.n = this.curve.n + this.hash = options.hash + + assert(this.g.validate(), "Invalid curve") + assert(this.g.mul(this.n).isInfinity(), "Invalid curve, G*N != O") + } + curves.PresetCurve = PresetCurve + + function defineCurve(name, options) { + Object.defineProperty(curves, name, { + configurable: true, + enumerable: true, + get: function() { + var curve = new PresetCurve(options) + Object.defineProperty(curves, name, { + configurable: true, + enumerable: true, + value: curve + }) + return curve + } + }) + } + + defineCurve("p192", { + type: "short", + prime: "p192", + p: "ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff", + a: "ffffffff ffffffff ffffffff fffffffe ffffffff fffffffc", + b: "64210519 e59c80e7 0fa7e9ab 72243049 feb8deec c146b9b1", + n: "ffffffff ffffffff ffffffff 99def836 146bc9b1 b4d22831", + hash: hash.sha256, + gRed: false, + g: [ + "188da80e b03090f6 7cbf20eb 43a18800 f4ff0afd 82ff1012", + "07192b95 ffc8da78 631011ed 6b24cdd5 73f977a1 1e794811" + ] + }) + + defineCurve("p224", { + type: "short", + prime: "p224", + p: "ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001", + a: "ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff fffffffe", + b: "b4050a85 0c04b3ab f5413256 5044b0b7 d7bfd8ba 270b3943 2355ffb4", + n: "ffffffff ffffffff ffffffff ffff16a2 e0b8f03e 13dd2945 5c5c2a3d", + hash: hash.sha256, + gRed: false, + g: [ + "b70e0cbd 6bb4bf7f 321390b9 4a03c1d3 56c21122 343280d6 115c1d21", + "bd376388 b5f723fb 4c22dfe6 cd4375a0 5a074764 44d58199 85007e34" + ] + }) + + defineCurve("p256", { + type: "short", + prime: null, + p: + "ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff ffffffff", + a: + "ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff fffffffc", + b: + "5ac635d8 aa3a93e7 b3ebbd55 769886bc 651d06b0 cc53b0f6 3bce3c3e 27d2604b", + n: + "ffffffff 00000000 ffffffff ffffffff bce6faad a7179e84 f3b9cac2 fc632551", + hash: hash.sha256, + gRed: false, + g: [ + "6b17d1f2 e12c4247 f8bce6e5 63a440f2 77037d81 2deb33a0 f4a13945 d898c296", + "4fe342e2 fe1a7f9b 8ee7eb4a 7c0f9e16 2bce3357 6b315ece cbb64068 37bf51f5" + ] + }) + + defineCurve("p384", { + type: "short", + prime: null, + p: + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "fffffffe ffffffff 00000000 00000000 ffffffff", + a: + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "fffffffe ffffffff 00000000 00000000 fffffffc", + b: + "b3312fa7 e23ee7e4 988e056b e3f82d19 181d9c6e fe814112 0314088f " + + "5013875a c656398d 8a2ed19d 2a85c8ed d3ec2aef", + n: + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff c7634d81 " + + "f4372ddf 581a0db2 48b0a77a ecec196a ccc52973", + hash: hash.sha384, + gRed: false, + g: [ + "aa87ca22 be8b0537 8eb1c71e f320ad74 6e1d3b62 8ba79b98 59f741e0 82542a38 " + + "5502f25d bf55296c 3a545e38 72760ab7", + "3617de4a 96262c6f 5d9e98bf 9292dc29 f8f41dbd 289a147c e9da3113 b5f0b8c0 " + + "0a60b1ce 1d7e819d 7a431d7c 90ea0e5f" + ] + }) + + defineCurve("p521", { + type: "short", + prime: null, + p: + "000001ff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "ffffffff ffffffff ffffffff ffffffff ffffffff", + a: + "000001ff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "ffffffff ffffffff ffffffff ffffffff fffffffc", + b: + "00000051 953eb961 8e1c9a1f 929a21a0 b68540ee a2da725b " + + "99b315f3 b8b48991 8ef109e1 56193951 ec7e937b 1652c0bd " + + "3bb1bf07 3573df88 3d2c34f1 ef451fd4 6b503f00", + n: + "000001ff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "ffffffff ffffffff fffffffa 51868783 bf2f966b 7fcc0148 " + + "f709a5d0 3bb5c9b8 899c47ae bb6fb71e 91386409", + hash: hash.sha512, + gRed: false, + g: [ + "000000c6 858e06b7 0404e9cd 9e3ecb66 2395b442 9c648139 " + + "053fb521 f828af60 6b4d3dba a14b5e77 efe75928 fe1dc127 " + + "a2ffa8de 3348b3c1 856a429b f97e7e31 c2e5bd66", + "00000118 39296a78 9a3bc004 5c8a5fb4 2c7d1bd9 98f54449 " + + "579b4468 17afbd17 273e662c 97ee7299 5ef42640 c550b901 " + + "3fad0761 353c7086 a272c240 88be9476 9fd16650" + ] + }) + + defineCurve("curve25519", { + type: "mont", + prime: "p25519", + p: + "7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed", + a: "76d06", + b: "1", + n: + "1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed", + hash: hash.sha256, + gRed: false, + g: ["9"] + }) + + defineCurve("ed25519", { + type: "edwards", + prime: "p25519", + p: + "7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed", + a: "-1", + c: "1", + // -121665 * (121666^(-1)) (mod P) + d: + "52036cee2b6ffe73 8cc740797779e898 00700a4d4141d8ab 75eb4dca135978a3", + n: + "1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed", + hash: hash.sha256, + gRed: false, + g: [ + "216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51a", + + // 4/5 + "6666666666666666666666666666666666666666666666666666666666666658" + ] + }) + + var pre + try { + pre = require("./precomputed/secp256k1") + } catch (e) { + pre = undefined + } + + defineCurve("secp256k1", { + type: "short", + prime: "k256", + p: + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f", + a: "0", + b: "7", + n: + "ffffffff ffffffff ffffffff fffffffe baaedce6 af48a03b bfd25e8c d0364141", + h: "1", + hash: hash.sha256, + + // Precomputed endomorphism + beta: + "7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee", + lambda: + "5363ad4cc05c30e0a5261c028812645a122e22ea20816678df02967c1b23bd72", + basis: [ + { + a: "3086d221a7d46bcde86c90e49284eb15", + b: "-e4437ed6010e88286f547fa90abfe4c3" + }, + { + a: "114ca50f7a8e2f3f657c1108d9d44cfd8", + b: "3086d221a7d46bcde86c90e49284eb15" + } + ], + + gRed: false, + g: [ + "79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798", + "483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8", + pre + ] + }) + }, + { "../elliptic": 44, "./precomputed/secp256k1": 57, "hash.js": 61 } + ], + 51: [ + function(require, module, exports) { + "use strict" + + var BN = require("bn.js") + var HmacDRBG = require("hmac-drbg") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + + var KeyPair = require("./key") + var Signature = require("./signature") + + function EC(options) { + if (!(this instanceof EC)) return new EC(options) + + // Shortcut `elliptic.ec(curve-name)` + if (typeof options === "string") { + assert( + elliptic.curves.hasOwnProperty(options), + "Unknown curve " + options + ) + + options = elliptic.curves[options] + } + + // Shortcut for `elliptic.ec(elliptic.curves.curveName)` + if (options instanceof elliptic.curves.PresetCurve) + options = { curve: options } + + this.curve = options.curve.curve + this.n = this.curve.n + this.nh = this.n.ushrn(1) + this.g = this.curve.g + + // Point on curve + this.g = options.curve.g + this.g.precompute(options.curve.n.bitLength() + 1) + + // Hash for function for DRBG + this.hash = options.hash || options.curve.hash + } + module.exports = EC + + EC.prototype.keyPair = function keyPair(options) { + return new KeyPair(this, options) + } + + EC.prototype.keyFromPrivate = function keyFromPrivate(priv, enc) { + return KeyPair.fromPrivate(this, priv, enc) + } + + EC.prototype.keyFromPublic = function keyFromPublic(pub, enc) { + return KeyPair.fromPublic(this, pub, enc) + } + + EC.prototype.genKeyPair = function genKeyPair(options) { + if (!options) options = {} + + // Instantiate Hmac_DRBG + var drbg = new HmacDRBG({ + hash: this.hash, + pers: options.pers, + persEnc: options.persEnc || "utf8", + entropy: options.entropy || elliptic.rand(this.hash.hmacStrength), + entropyEnc: (options.entropy && options.entropyEnc) || "utf8", + nonce: this.n.toArray() + }) + + var bytes = this.n.byteLength() + var ns2 = this.n.sub(new BN(2)) + do { + var priv = new BN(drbg.generate(bytes)) + if (priv.cmp(ns2) > 0) continue + + priv.iaddn(1) + return this.keyFromPrivate(priv) + } while (true) + } + + EC.prototype._truncateToN = function truncateToN(msg, truncOnly) { + var delta = msg.byteLength() * 8 - this.n.bitLength() + if (delta > 0) msg = msg.ushrn(delta) + if (!truncOnly && msg.cmp(this.n) >= 0) return msg.sub(this.n) + else return msg + } + + EC.prototype.sign = function sign(msg, key, enc, options) { + if (typeof enc === "object") { + options = enc + enc = null + } + if (!options) options = {} + + key = this.keyFromPrivate(key, enc) + msg = this._truncateToN(new BN(msg, 16)) + + // Zero-extend key to provide enough entropy + var bytes = this.n.byteLength() + var bkey = key.getPrivate().toArray("be", bytes) + + // Zero-extend nonce to have the same byte size as N + var nonce = msg.toArray("be", bytes) + + // Instantiate Hmac_DRBG + var drbg = new HmacDRBG({ + hash: this.hash, + entropy: bkey, + nonce: nonce, + pers: options.pers, + persEnc: options.persEnc || "utf8" + }) + + // Number of bytes to generate + var ns1 = this.n.sub(new BN(1)) + + for (var iter = 0; true; iter++) { + var k = options.k + ? options.k(iter) + : new BN(drbg.generate(this.n.byteLength())) + k = this._truncateToN(k, true) + if (k.cmpn(1) <= 0 || k.cmp(ns1) >= 0) continue + + var kp = this.g.mul(k) + if (kp.isInfinity()) continue + + var kpX = kp.getX() + var r = kpX.umod(this.n) + if (r.cmpn(0) === 0) continue + + var s = k.invm(this.n).mul(r.mul(key.getPrivate()).iadd(msg)) + s = s.umod(this.n) + if (s.cmpn(0) === 0) continue + + var recoveryParam = + (kp.getY().isOdd() ? 1 : 0) | (kpX.cmp(r) !== 0 ? 2 : 0) + + // Use complement of `s`, if it is > `n / 2` + if (options.canonical && s.cmp(this.nh) > 0) { + s = this.n.sub(s) + recoveryParam ^= 1 + } + + return new Signature({ r: r, s: s, recoveryParam: recoveryParam }) + } + } + + EC.prototype.verify = function verify(msg, signature, key, enc) { + msg = this._truncateToN(new BN(msg, 16)) + key = this.keyFromPublic(key, enc) + signature = new Signature(signature, "hex") + + // Perform primitive values validation + var r = signature.r + var s = signature.s + if (r.cmpn(1) < 0 || r.cmp(this.n) >= 0) return false + if (s.cmpn(1) < 0 || s.cmp(this.n) >= 0) return false + + // Validate signature + var sinv = s.invm(this.n) + var u1 = sinv.mul(msg).umod(this.n) + var u2 = sinv.mul(r).umod(this.n) + + if (!this.curve._maxwellTrick) { + var p = this.g.mulAdd(u1, key.getPublic(), u2) + if (p.isInfinity()) return false + + return ( + p + .getX() + .umod(this.n) + .cmp(r) === 0 + ) + } + + // NOTE: Greg Maxwell's trick, inspired by: + // https://git.io/vad3K + + var p = this.g.jmulAdd(u1, key.getPublic(), u2) + if (p.isInfinity()) return false + + // Compare `p.x` of Jacobian point with `r`, + // this will do `p.x == r * p.z^2` instead of multiplying `p.x` by the + // inverse of `p.z^2` + return p.eqXToP(r) + } + + EC.prototype.recoverPubKey = function(msg, signature, j, enc) { + assert((3 & j) === j, "The recovery param is more than two bits") + signature = new Signature(signature, enc) + + var n = this.n + var e = new BN(msg) + var r = signature.r + var s = signature.s + + // A set LSB signifies that the y-coordinate is odd + var isYOdd = j & 1 + var isSecondKey = j >> 1 + if (r.cmp(this.curve.p.umod(this.curve.n)) >= 0 && isSecondKey) + throw new Error("Unable to find sencond key candinate") + + // 1.1. Let x = r + jn. + if (isSecondKey) + r = this.curve.pointFromX(r.add(this.curve.n), isYOdd) + else r = this.curve.pointFromX(r, isYOdd) + + var rInv = signature.r.invm(n) + var s1 = n + .sub(e) + .mul(rInv) + .umod(n) + var s2 = s.mul(rInv).umod(n) + + // 1.6.1 Compute Q = r^-1 (sR - eG) + // Q = r^-1 (sR + -eG) + return this.g.mulAdd(s1, r, s2) + } + + EC.prototype.getKeyRecoveryParam = function(e, signature, Q, enc) { + signature = new Signature(signature, enc) + if (signature.recoveryParam !== null) return signature.recoveryParam + + for (var i = 0; i < 4; i++) { + var Qprime + try { + Qprime = this.recoverPubKey(e, signature, i) + } catch (e) { + continue + } + + if (Qprime.eq(Q)) return i + } + throw new Error("Unable to find valid recovery factor") + } + }, + { + "../../elliptic": 44, + "./key": 52, + "./signature": 53, + "bn.js": 34, + "hmac-drbg": 73 + } + ], + 52: [ + function(require, module, exports) { + "use strict" + + var BN = require("bn.js") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + + function KeyPair(ec, options) { + this.ec = ec + this.priv = null + this.pub = null + + // KeyPair(ec, { priv: ..., pub: ... }) + if (options.priv) this._importPrivate(options.priv, options.privEnc) + if (options.pub) this._importPublic(options.pub, options.pubEnc) + } + module.exports = KeyPair + + KeyPair.fromPublic = function fromPublic(ec, pub, enc) { + if (pub instanceof KeyPair) return pub + + return new KeyPair(ec, { + pub: pub, + pubEnc: enc + }) + } + + KeyPair.fromPrivate = function fromPrivate(ec, priv, enc) { + if (priv instanceof KeyPair) return priv + + return new KeyPair(ec, { + priv: priv, + privEnc: enc + }) + } + + KeyPair.prototype.validate = function validate() { + var pub = this.getPublic() + + if (pub.isInfinity()) + return { result: false, reason: "Invalid public key" } + if (!pub.validate()) + return { result: false, reason: "Public key is not a point" } + if (!pub.mul(this.ec.curve.n).isInfinity()) + return { result: false, reason: "Public key * N != O" } + + return { result: true, reason: null } + } + + KeyPair.prototype.getPublic = function getPublic(compact, enc) { + // compact is optional argument + if (typeof compact === "string") { + enc = compact + compact = null + } + + if (!this.pub) this.pub = this.ec.g.mul(this.priv) + + if (!enc) return this.pub + + return this.pub.encode(enc, compact) + } + + KeyPair.prototype.getPrivate = function getPrivate(enc) { + if (enc === "hex") return this.priv.toString(16, 2) + else return this.priv + } + + KeyPair.prototype._importPrivate = function _importPrivate(key, enc) { + this.priv = new BN(key, enc || 16) + + // Ensure that the priv won't be bigger than n, otherwise we may fail + // in fixed multiplication method + this.priv = this.priv.umod(this.ec.curve.n) + } + + KeyPair.prototype._importPublic = function _importPublic(key, enc) { + if (key.x || key.y) { + // Montgomery points only have an `x` coordinate. + // Weierstrass/Edwards points on the other hand have both `x` and + // `y` coordinates. + if (this.ec.curve.type === "mont") { + assert(key.x, "Need x coordinate") + } else if ( + this.ec.curve.type === "short" || + this.ec.curve.type === "edwards" + ) { + assert(key.x && key.y, "Need both x and y coordinate") + } + this.pub = this.ec.curve.point(key.x, key.y) + return + } + this.pub = this.ec.curve.decodePoint(key, enc) + } + + // ECDH + KeyPair.prototype.derive = function derive(pub) { + return pub.mul(this.priv).getX() + } + + // ECDSA + KeyPair.prototype.sign = function sign(msg, enc, options) { + return this.ec.sign(msg, this, enc, options) + } + + KeyPair.prototype.verify = function verify(msg, signature) { + return this.ec.verify(msg, signature, this) + } + + KeyPair.prototype.inspect = function inspect() { + return ( + "" + ) + } + }, + { "../../elliptic": 44, "bn.js": 34 } + ], + 53: [ + function(require, module, exports) { + "use strict" + + var BN = require("bn.js") + + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + + function Signature(options, enc) { + if (options instanceof Signature) return options + + if (this._importDER(options, enc)) return + + assert(options.r && options.s, "Signature without r or s") + this.r = new BN(options.r, 16) + this.s = new BN(options.s, 16) + if (options.recoveryParam === undefined) this.recoveryParam = null + else this.recoveryParam = options.recoveryParam + } + module.exports = Signature + + function Position() { + this.place = 0 + } + + function getLength(buf, p) { + var initial = buf[p.place++] + if (!(initial & 0x80)) { + return initial + } + var octetLen = initial & 0xf + var val = 0 + for (var i = 0, off = p.place; i < octetLen; i++, off++) { + val <<= 8 + val |= buf[off] + } + p.place = off + return val + } + + function rmPadding(buf) { + var i = 0 + var len = buf.length - 1 + while (!buf[i] && !(buf[i + 1] & 0x80) && i < len) { + i++ + } + if (i === 0) { + return buf + } + return buf.slice(i) + } + + Signature.prototype._importDER = function _importDER(data, enc) { + data = utils.toArray(data, enc) + var p = new Position() + if (data[p.place++] !== 0x30) { + return false + } + var len = getLength(data, p) + if (len + p.place !== data.length) { + return false + } + if (data[p.place++] !== 0x02) { + return false + } + var rlen = getLength(data, p) + var r = data.slice(p.place, rlen + p.place) + p.place += rlen + if (data[p.place++] !== 0x02) { + return false + } + var slen = getLength(data, p) + if (data.length !== slen + p.place) { + return false + } + var s = data.slice(p.place, slen + p.place) + if (r[0] === 0 && r[1] & 0x80) { + r = r.slice(1) + } + if (s[0] === 0 && s[1] & 0x80) { + s = s.slice(1) + } + + this.r = new BN(r) + this.s = new BN(s) + this.recoveryParam = null + + return true + } + + function constructLength(arr, len) { + if (len < 0x80) { + arr.push(len) + return + } + var octets = 1 + ((Math.log(len) / Math.LN2) >>> 3) + arr.push(octets | 0x80) + while (--octets) { + arr.push((len >>> (octets << 3)) & 0xff) + } + arr.push(len) + } + + Signature.prototype.toDER = function toDER(enc) { + var r = this.r.toArray() + var s = this.s.toArray() + + // Pad values + if (r[0] & 0x80) r = [0].concat(r) + // Pad values + if (s[0] & 0x80) s = [0].concat(s) + + r = rmPadding(r) + s = rmPadding(s) + + while (!s[0] && !(s[1] & 0x80)) { + s = s.slice(1) + } + var arr = [0x02] + constructLength(arr, r.length) + arr = arr.concat(r) + arr.push(0x02) + constructLength(arr, s.length) + var backHalf = arr.concat(s) + var res = [0x30] + constructLength(res, backHalf.length) + res = res.concat(backHalf) + return utils.encode(res, enc) + } + }, + { "../../elliptic": 44, "bn.js": 34 } + ], + 54: [ + function(require, module, exports) { + "use strict" + + var hash = require("hash.js") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + var parseBytes = utils.parseBytes + var KeyPair = require("./key") + var Signature = require("./signature") + + function EDDSA(curve) { + assert(curve === "ed25519", "only tested with ed25519 so far") + + if (!(this instanceof EDDSA)) return new EDDSA(curve) + + var curve = elliptic.curves[curve].curve + this.curve = curve + this.g = curve.g + this.g.precompute(curve.n.bitLength() + 1) + + this.pointClass = curve.point().constructor + this.encodingLength = Math.ceil(curve.n.bitLength() / 8) + this.hash = hash.sha512 + } + + module.exports = EDDSA + + /** + * @param {Array|String} message - message bytes + * @param {Array|String|KeyPair} secret - secret bytes or a keypair + * @returns {Signature} - signature + */ + EDDSA.prototype.sign = function sign(message, secret) { + message = parseBytes(message) + var key = this.keyFromSecret(secret) + var r = this.hashInt(key.messagePrefix(), message) + var R = this.g.mul(r) + var Rencoded = this.encodePoint(R) + var s_ = this.hashInt(Rencoded, key.pubBytes(), message).mul( + key.priv() + ) + var S = r.add(s_).umod(this.curve.n) + return this.makeSignature({ R: R, S: S, Rencoded: Rencoded }) + } + + /** + * @param {Array} message - message bytes + * @param {Array|String|Signature} sig - sig bytes + * @param {Array|String|Point|KeyPair} pub - public key + * @returns {Boolean} - true if public key matches sig of message + */ + EDDSA.prototype.verify = function verify(message, sig, pub) { + message = parseBytes(message) + sig = this.makeSignature(sig) + var key = this.keyFromPublic(pub) + var h = this.hashInt(sig.Rencoded(), key.pubBytes(), message) + var SG = this.g.mul(sig.S()) + var RplusAh = sig.R().add(key.pub().mul(h)) + return RplusAh.eq(SG) + } + + EDDSA.prototype.hashInt = function hashInt() { + var hash = this.hash() + for (var i = 0; i < arguments.length; i++) hash.update(arguments[i]) + return utils.intFromLE(hash.digest()).umod(this.curve.n) + } + + EDDSA.prototype.keyFromPublic = function keyFromPublic(pub) { + return KeyPair.fromPublic(this, pub) + } + + EDDSA.prototype.keyFromSecret = function keyFromSecret(secret) { + return KeyPair.fromSecret(this, secret) + } + + EDDSA.prototype.makeSignature = function makeSignature(sig) { + if (sig instanceof Signature) return sig + return new Signature(this, sig) + } + + /** + * * https://tools.ietf.org/html/draft-josefsson-eddsa-ed25519-03#section-5.2 + * + * EDDSA defines methods for encoding and decoding points and integers. These are + * helper convenience methods, that pass along to utility functions implied + * parameters. + * + */ + EDDSA.prototype.encodePoint = function encodePoint(point) { + var enc = point.getY().toArray("le", this.encodingLength) + enc[this.encodingLength - 1] |= point.getX().isOdd() ? 0x80 : 0 + return enc + } + + EDDSA.prototype.decodePoint = function decodePoint(bytes) { + bytes = utils.parseBytes(bytes) + + var lastIx = bytes.length - 1 + var normed = bytes.slice(0, lastIx).concat(bytes[lastIx] & ~0x80) + var xIsOdd = (bytes[lastIx] & 0x80) !== 0 + + var y = utils.intFromLE(normed) + return this.curve.pointFromY(y, xIsOdd) + } + + EDDSA.prototype.encodeInt = function encodeInt(num) { + return num.toArray("le", this.encodingLength) + } + + EDDSA.prototype.decodeInt = function decodeInt(bytes) { + return utils.intFromLE(bytes) + } + + EDDSA.prototype.isPoint = function isPoint(val) { + return val instanceof this.pointClass + } + }, + { "../../elliptic": 44, "./key": 55, "./signature": 56, "hash.js": 61 } + ], + 55: [ + function(require, module, exports) { + "use strict" + + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + var parseBytes = utils.parseBytes + var cachedProperty = utils.cachedProperty + + /** + * @param {EDDSA} eddsa - instance + * @param {Object} params - public/private key parameters + * + * @param {Array} [params.secret] - secret seed bytes + * @param {Point} [params.pub] - public key point (aka `A` in eddsa terms) + * @param {Array} [params.pub] - public key point encoded as bytes + * + */ + function KeyPair(eddsa, params) { + this.eddsa = eddsa + this._secret = parseBytes(params.secret) + if (eddsa.isPoint(params.pub)) this._pub = params.pub + else this._pubBytes = parseBytes(params.pub) + } + + KeyPair.fromPublic = function fromPublic(eddsa, pub) { + if (pub instanceof KeyPair) return pub + return new KeyPair(eddsa, { pub: pub }) + } + + KeyPair.fromSecret = function fromSecret(eddsa, secret) { + if (secret instanceof KeyPair) return secret + return new KeyPair(eddsa, { secret: secret }) + } + + KeyPair.prototype.secret = function secret() { + return this._secret + } + + cachedProperty(KeyPair, "pubBytes", function pubBytes() { + return this.eddsa.encodePoint(this.pub()) + }) + + cachedProperty(KeyPair, "pub", function pub() { + if (this._pubBytes) return this.eddsa.decodePoint(this._pubBytes) + return this.eddsa.g.mul(this.priv()) + }) + + cachedProperty(KeyPair, "privBytes", function privBytes() { + var eddsa = this.eddsa + var hash = this.hash() + var lastIx = eddsa.encodingLength - 1 + + var a = hash.slice(0, eddsa.encodingLength) + a[0] &= 248 + a[lastIx] &= 127 + a[lastIx] |= 64 + + return a + }) + + cachedProperty(KeyPair, "priv", function priv() { + return this.eddsa.decodeInt(this.privBytes()) + }) + + cachedProperty(KeyPair, "hash", function hash() { + return this.eddsa + .hash() + .update(this.secret()) + .digest() + }) + + cachedProperty(KeyPair, "messagePrefix", function messagePrefix() { + return this.hash().slice(this.eddsa.encodingLength) + }) + + KeyPair.prototype.sign = function sign(message) { + assert(this._secret, "KeyPair can only verify") + return this.eddsa.sign(message, this) + } + + KeyPair.prototype.verify = function verify(message, sig) { + return this.eddsa.verify(message, sig, this) + } + + KeyPair.prototype.getSecret = function getSecret(enc) { + assert(this._secret, "KeyPair is public only") + return utils.encode(this.secret(), enc) + } + + KeyPair.prototype.getPublic = function getPublic(enc) { + return utils.encode(this.pubBytes(), enc) + } + + module.exports = KeyPair + }, + { "../../elliptic": 44 } + ], + 56: [ + function(require, module, exports) { + "use strict" + + var BN = require("bn.js") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + var cachedProperty = utils.cachedProperty + var parseBytes = utils.parseBytes + + /** + * @param {EDDSA} eddsa - eddsa instance + * @param {Array|Object} sig - + * @param {Array|Point} [sig.R] - R point as Point or bytes + * @param {Array|bn} [sig.S] - S scalar as bn or bytes + * @param {Array} [sig.Rencoded] - R point encoded + * @param {Array} [sig.Sencoded] - S scalar encoded + */ + function Signature(eddsa, sig) { + this.eddsa = eddsa + + if (typeof sig !== "object") sig = parseBytes(sig) + + if (Array.isArray(sig)) { + sig = { + R: sig.slice(0, eddsa.encodingLength), + S: sig.slice(eddsa.encodingLength) + } + } + + assert(sig.R && sig.S, "Signature without R or S") + + if (eddsa.isPoint(sig.R)) this._R = sig.R + if (sig.S instanceof BN) this._S = sig.S + + this._Rencoded = Array.isArray(sig.R) ? sig.R : sig.Rencoded + this._Sencoded = Array.isArray(sig.S) ? sig.S : sig.Sencoded + } + + cachedProperty(Signature, "S", function S() { + return this.eddsa.decodeInt(this.Sencoded()) + }) + + cachedProperty(Signature, "R", function R() { + return this.eddsa.decodePoint(this.Rencoded()) + }) + + cachedProperty(Signature, "Rencoded", function Rencoded() { + return this.eddsa.encodePoint(this.R()) + }) + + cachedProperty(Signature, "Sencoded", function Sencoded() { + return this.eddsa.encodeInt(this.S()) + }) + + Signature.prototype.toBytes = function toBytes() { + return this.Rencoded().concat(this.Sencoded()) + } + + Signature.prototype.toHex = function toHex() { + return utils.encode(this.toBytes(), "hex").toUpperCase() + } + + module.exports = Signature + }, + { "../../elliptic": 44, "bn.js": 34 } + ], + 57: [ + function(require, module, exports) { + module.exports = { + doubles: { + step: 4, + points: [ + [ + "e60fce93b59e9ec53011aabc21c23e97b2a31369b87a5ae9c44ee89e2a6dec0a", + "f7e3507399e595929db99f34f57937101296891e44d23f0be1f32cce69616821" + ], + [ + "8282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508", + "11f8a8098557dfe45e8256e830b60ace62d613ac2f7b17bed31b6eaff6e26caf" + ], + [ + "175e159f728b865a72f99cc6c6fc846de0b93833fd2222ed73fce5b551e5b739", + "d3506e0d9e3c79eba4ef97a51ff71f5eacb5955add24345c6efa6ffee9fed695" + ], + [ + "363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640", + "4e273adfc732221953b445397f3363145b9a89008199ecb62003c7f3bee9de9" + ], + [ + "8b4b5f165df3c2be8c6244b5b745638843e4a781a15bcd1b69f79a55dffdf80c", + "4aad0a6f68d308b4b3fbd7813ab0da04f9e336546162ee56b3eff0c65fd4fd36" + ], + [ + "723cbaa6e5db996d6bf771c00bd548c7b700dbffa6c0e77bcb6115925232fcda", + "96e867b5595cc498a921137488824d6e2660a0653779494801dc069d9eb39f5f" + ], + [ + "eebfa4d493bebf98ba5feec812c2d3b50947961237a919839a533eca0e7dd7fa", + "5d9a8ca3970ef0f269ee7edaf178089d9ae4cdc3a711f712ddfd4fdae1de8999" + ], + [ + "100f44da696e71672791d0a09b7bde459f1215a29b3c03bfefd7835b39a48db0", + "cdd9e13192a00b772ec8f3300c090666b7ff4a18ff5195ac0fbd5cd62bc65a09" + ], + [ + "e1031be262c7ed1b1dc9227a4a04c017a77f8d4464f3b3852c8acde6e534fd2d", + "9d7061928940405e6bb6a4176597535af292dd419e1ced79a44f18f29456a00d" + ], + [ + "feea6cae46d55b530ac2839f143bd7ec5cf8b266a41d6af52d5e688d9094696d", + "e57c6b6c97dce1bab06e4e12bf3ecd5c981c8957cc41442d3155debf18090088" + ], + [ + "da67a91d91049cdcb367be4be6ffca3cfeed657d808583de33fa978bc1ec6cb1", + "9bacaa35481642bc41f463f7ec9780e5dec7adc508f740a17e9ea8e27a68be1d" + ], + [ + "53904faa0b334cdda6e000935ef22151ec08d0f7bb11069f57545ccc1a37b7c0", + "5bc087d0bc80106d88c9eccac20d3c1c13999981e14434699dcb096b022771c8" + ], + [ + "8e7bcd0bd35983a7719cca7764ca906779b53a043a9b8bcaeff959f43ad86047", + "10b7770b2a3da4b3940310420ca9514579e88e2e47fd68b3ea10047e8460372a" + ], + [ + "385eed34c1cdff21e6d0818689b81bde71a7f4f18397e6690a841e1599c43862", + "283bebc3e8ea23f56701de19e9ebf4576b304eec2086dc8cc0458fe5542e5453" + ], + [ + "6f9d9b803ecf191637c73a4413dfa180fddf84a5947fbc9c606ed86c3fac3a7", + "7c80c68e603059ba69b8e2a30e45c4d47ea4dd2f5c281002d86890603a842160" + ], + [ + "3322d401243c4e2582a2147c104d6ecbf774d163db0f5e5313b7e0e742d0e6bd", + "56e70797e9664ef5bfb019bc4ddaf9b72805f63ea2873af624f3a2e96c28b2a0" + ], + [ + "85672c7d2de0b7da2bd1770d89665868741b3f9af7643397721d74d28134ab83", + "7c481b9b5b43b2eb6374049bfa62c2e5e77f17fcc5298f44c8e3094f790313a6" + ], + [ + "948bf809b1988a46b06c9f1919413b10f9226c60f668832ffd959af60c82a0a", + "53a562856dcb6646dc6b74c5d1c3418c6d4dff08c97cd2bed4cb7f88d8c8e589" + ], + [ + "6260ce7f461801c34f067ce0f02873a8f1b0e44dfc69752accecd819f38fd8e8", + "bc2da82b6fa5b571a7f09049776a1ef7ecd292238051c198c1a84e95b2b4ae17" + ], + [ + "e5037de0afc1d8d43d8348414bbf4103043ec8f575bfdc432953cc8d2037fa2d", + "4571534baa94d3b5f9f98d09fb990bddbd5f5b03ec481f10e0e5dc841d755bda" + ], + [ + "e06372b0f4a207adf5ea905e8f1771b4e7e8dbd1c6a6c5b725866a0ae4fce725", + "7a908974bce18cfe12a27bb2ad5a488cd7484a7787104870b27034f94eee31dd" + ], + [ + "213c7a715cd5d45358d0bbf9dc0ce02204b10bdde2a3f58540ad6908d0559754", + "4b6dad0b5ae462507013ad06245ba190bb4850f5f36a7eeddff2c27534b458f2" + ], + [ + "4e7c272a7af4b34e8dbb9352a5419a87e2838c70adc62cddf0cc3a3b08fbd53c", + "17749c766c9d0b18e16fd09f6def681b530b9614bff7dd33e0b3941817dcaae6" + ], + [ + "fea74e3dbe778b1b10f238ad61686aa5c76e3db2be43057632427e2840fb27b6", + "6e0568db9b0b13297cf674deccb6af93126b596b973f7b77701d3db7f23cb96f" + ], + [ + "76e64113f677cf0e10a2570d599968d31544e179b760432952c02a4417bdde39", + "c90ddf8dee4e95cf577066d70681f0d35e2a33d2b56d2032b4b1752d1901ac01" + ], + [ + "c738c56b03b2abe1e8281baa743f8f9a8f7cc643df26cbee3ab150242bcbb891", + "893fb578951ad2537f718f2eacbfbbbb82314eef7880cfe917e735d9699a84c3" + ], + [ + "d895626548b65b81e264c7637c972877d1d72e5f3a925014372e9f6588f6c14b", + "febfaa38f2bc7eae728ec60818c340eb03428d632bb067e179363ed75d7d991f" + ], + [ + "b8da94032a957518eb0f6433571e8761ceffc73693e84edd49150a564f676e03", + "2804dfa44805a1e4d7c99cc9762808b092cc584d95ff3b511488e4e74efdf6e7" + ], + [ + "e80fea14441fb33a7d8adab9475d7fab2019effb5156a792f1a11778e3c0df5d", + "eed1de7f638e00771e89768ca3ca94472d155e80af322ea9fcb4291b6ac9ec78" + ], + [ + "a301697bdfcd704313ba48e51d567543f2a182031efd6915ddc07bbcc4e16070", + "7370f91cfb67e4f5081809fa25d40f9b1735dbf7c0a11a130c0d1a041e177ea1" + ], + [ + "90ad85b389d6b936463f9d0512678de208cc330b11307fffab7ac63e3fb04ed4", + "e507a3620a38261affdcbd9427222b839aefabe1582894d991d4d48cb6ef150" + ], + [ + "8f68b9d2f63b5f339239c1ad981f162ee88c5678723ea3351b7b444c9ec4c0da", + "662a9f2dba063986de1d90c2b6be215dbbea2cfe95510bfdf23cbf79501fff82" + ], + [ + "e4f3fb0176af85d65ff99ff9198c36091f48e86503681e3e6686fd5053231e11", + "1e63633ad0ef4f1c1661a6d0ea02b7286cc7e74ec951d1c9822c38576feb73bc" + ], + [ + "8c00fa9b18ebf331eb961537a45a4266c7034f2f0d4e1d0716fb6eae20eae29e", + "efa47267fea521a1a9dc343a3736c974c2fadafa81e36c54e7d2a4c66702414b" + ], + [ + "e7a26ce69dd4829f3e10cec0a9e98ed3143d084f308b92c0997fddfc60cb3e41", + "2a758e300fa7984b471b006a1aafbb18d0a6b2c0420e83e20e8a9421cf2cfd51" + ], + [ + "b6459e0ee3662ec8d23540c223bcbdc571cbcb967d79424f3cf29eb3de6b80ef", + "67c876d06f3e06de1dadf16e5661db3c4b3ae6d48e35b2ff30bf0b61a71ba45" + ], + [ + "d68a80c8280bb840793234aa118f06231d6f1fc67e73c5a5deda0f5b496943e8", + "db8ba9fff4b586d00c4b1f9177b0e28b5b0e7b8f7845295a294c84266b133120" + ], + [ + "324aed7df65c804252dc0270907a30b09612aeb973449cea4095980fc28d3d5d", + "648a365774b61f2ff130c0c35aec1f4f19213b0c7e332843967224af96ab7c84" + ], + [ + "4df9c14919cde61f6d51dfdbe5fee5dceec4143ba8d1ca888e8bd373fd054c96", + "35ec51092d8728050974c23a1d85d4b5d506cdc288490192ebac06cad10d5d" + ], + [ + "9c3919a84a474870faed8a9c1cc66021523489054d7f0308cbfc99c8ac1f98cd", + "ddb84f0f4a4ddd57584f044bf260e641905326f76c64c8e6be7e5e03d4fc599d" + ], + [ + "6057170b1dd12fdf8de05f281d8e06bb91e1493a8b91d4cc5a21382120a959e5", + "9a1af0b26a6a4807add9a2daf71df262465152bc3ee24c65e899be932385a2a8" + ], + [ + "a576df8e23a08411421439a4518da31880cef0fba7d4df12b1a6973eecb94266", + "40a6bf20e76640b2c92b97afe58cd82c432e10a7f514d9f3ee8be11ae1b28ec8" + ], + [ + "7778a78c28dec3e30a05fe9629de8c38bb30d1f5cf9a3a208f763889be58ad71", + "34626d9ab5a5b22ff7098e12f2ff580087b38411ff24ac563b513fc1fd9f43ac" + ], + [ + "928955ee637a84463729fd30e7afd2ed5f96274e5ad7e5cb09eda9c06d903ac", + "c25621003d3f42a827b78a13093a95eeac3d26efa8a8d83fc5180e935bcd091f" + ], + [ + "85d0fef3ec6db109399064f3a0e3b2855645b4a907ad354527aae75163d82751", + "1f03648413a38c0be29d496e582cf5663e8751e96877331582c237a24eb1f962" + ], + [ + "ff2b0dce97eece97c1c9b6041798b85dfdfb6d8882da20308f5404824526087e", + "493d13fef524ba188af4c4dc54d07936c7b7ed6fb90e2ceb2c951e01f0c29907" + ], + [ + "827fbbe4b1e880ea9ed2b2e6301b212b57f1ee148cd6dd28780e5e2cf856e241", + "c60f9c923c727b0b71bef2c67d1d12687ff7a63186903166d605b68baec293ec" + ], + [ + "eaa649f21f51bdbae7be4ae34ce6e5217a58fdce7f47f9aa7f3b58fa2120e2b3", + "be3279ed5bbbb03ac69a80f89879aa5a01a6b965f13f7e59d47a5305ba5ad93d" + ], + [ + "e4a42d43c5cf169d9391df6decf42ee541b6d8f0c9a137401e23632dda34d24f", + "4d9f92e716d1c73526fc99ccfb8ad34ce886eedfa8d8e4f13a7f7131deba9414" + ], + [ + "1ec80fef360cbdd954160fadab352b6b92b53576a88fea4947173b9d4300bf19", + "aeefe93756b5340d2f3a4958a7abbf5e0146e77f6295a07b671cdc1cc107cefd" + ], + [ + "146a778c04670c2f91b00af4680dfa8bce3490717d58ba889ddb5928366642be", + "b318e0ec3354028add669827f9d4b2870aaa971d2f7e5ed1d0b297483d83efd0" + ], + [ + "fa50c0f61d22e5f07e3acebb1aa07b128d0012209a28b9776d76a8793180eef9", + "6b84c6922397eba9b72cd2872281a68a5e683293a57a213b38cd8d7d3f4f2811" + ], + [ + "da1d61d0ca721a11b1a5bf6b7d88e8421a288ab5d5bba5220e53d32b5f067ec2", + "8157f55a7c99306c79c0766161c91e2966a73899d279b48a655fba0f1ad836f1" + ], + [ + "a8e282ff0c9706907215ff98e8fd416615311de0446f1e062a73b0610d064e13", + "7f97355b8db81c09abfb7f3c5b2515888b679a3e50dd6bd6cef7c73111f4cc0c" + ], + [ + "174a53b9c9a285872d39e56e6913cab15d59b1fa512508c022f382de8319497c", + "ccc9dc37abfc9c1657b4155f2c47f9e6646b3a1d8cb9854383da13ac079afa73" + ], + [ + "959396981943785c3d3e57edf5018cdbe039e730e4918b3d884fdff09475b7ba", + "2e7e552888c331dd8ba0386a4b9cd6849c653f64c8709385e9b8abf87524f2fd" + ], + [ + "d2a63a50ae401e56d645a1153b109a8fcca0a43d561fba2dbb51340c9d82b151", + "e82d86fb6443fcb7565aee58b2948220a70f750af484ca52d4142174dcf89405" + ], + [ + "64587e2335471eb890ee7896d7cfdc866bacbdbd3839317b3436f9b45617e073", + "d99fcdd5bf6902e2ae96dd6447c299a185b90a39133aeab358299e5e9faf6589" + ], + [ + "8481bde0e4e4d885b3a546d3e549de042f0aa6cea250e7fd358d6c86dd45e458", + "38ee7b8cba5404dd84a25bf39cecb2ca900a79c42b262e556d64b1b59779057e" + ], + [ + "13464a57a78102aa62b6979ae817f4637ffcfed3c4b1ce30bcd6303f6caf666b", + "69be159004614580ef7e433453ccb0ca48f300a81d0942e13f495a907f6ecc27" + ], + [ + "bc4a9df5b713fe2e9aef430bcc1dc97a0cd9ccede2f28588cada3a0d2d83f366", + "d3a81ca6e785c06383937adf4b798caa6e8a9fbfa547b16d758d666581f33c1" + ], + [ + "8c28a97bf8298bc0d23d8c749452a32e694b65e30a9472a3954ab30fe5324caa", + "40a30463a3305193378fedf31f7cc0eb7ae784f0451cb9459e71dc73cbef9482" + ], + [ + "8ea9666139527a8c1dd94ce4f071fd23c8b350c5a4bb33748c4ba111faccae0", + "620efabbc8ee2782e24e7c0cfb95c5d735b783be9cf0f8e955af34a30e62b945" + ], + [ + "dd3625faef5ba06074669716bbd3788d89bdde815959968092f76cc4eb9a9787", + "7a188fa3520e30d461da2501045731ca941461982883395937f68d00c644a573" + ], + [ + "f710d79d9eb962297e4f6232b40e8f7feb2bc63814614d692c12de752408221e", + "ea98e67232d3b3295d3b535532115ccac8612c721851617526ae47a9c77bfc82" + ] + ] + }, + naf: { + wnd: 7, + points: [ + [ + "f9308a019258c31049344f85f89d5229b531c845836f99b08601f113bce036f9", + "388f7b0f632de8140fe337e62a37f3566500a99934c2231b6cb9fd7584b8e672" + ], + [ + "2f8bde4d1a07209355b4a7250a5c5128e88b84bddc619ab7cba8d569b240efe4", + "d8ac222636e5e3d6d4dba9dda6c9c426f788271bab0d6840dca87d3aa6ac62d6" + ], + [ + "5cbdf0646e5db4eaa398f365f2ea7a0e3d419b7e0330e39ce92bddedcac4f9bc", + "6aebca40ba255960a3178d6d861a54dba813d0b813fde7b5a5082628087264da" + ], + [ + "acd484e2f0c7f65309ad178a9f559abde09796974c57e714c35f110dfc27ccbe", + "cc338921b0a7d9fd64380971763b61e9add888a4375f8e0f05cc262ac64f9c37" + ], + [ + "774ae7f858a9411e5ef4246b70c65aac5649980be5c17891bbec17895da008cb", + "d984a032eb6b5e190243dd56d7b7b365372db1e2dff9d6a8301d74c9c953c61b" + ], + [ + "f28773c2d975288bc7d1d205c3748651b075fbc6610e58cddeeddf8f19405aa8", + "ab0902e8d880a89758212eb65cdaf473a1a06da521fa91f29b5cb52db03ed81" + ], + [ + "d7924d4f7d43ea965a465ae3095ff41131e5946f3c85f79e44adbcf8e27e080e", + "581e2872a86c72a683842ec228cc6defea40af2bd896d3a5c504dc9ff6a26b58" + ], + [ + "defdea4cdb677750a420fee807eacf21eb9898ae79b9768766e4faa04a2d4a34", + "4211ab0694635168e997b0ead2a93daeced1f4a04a95c0f6cfb199f69e56eb77" + ], + [ + "2b4ea0a797a443d293ef5cff444f4979f06acfebd7e86d277475656138385b6c", + "85e89bc037945d93b343083b5a1c86131a01f60c50269763b570c854e5c09b7a" + ], + [ + "352bbf4a4cdd12564f93fa332ce333301d9ad40271f8107181340aef25be59d5", + "321eb4075348f534d59c18259dda3e1f4a1b3b2e71b1039c67bd3d8bcf81998c" + ], + [ + "2fa2104d6b38d11b0230010559879124e42ab8dfeff5ff29dc9cdadd4ecacc3f", + "2de1068295dd865b64569335bd5dd80181d70ecfc882648423ba76b532b7d67" + ], + [ + "9248279b09b4d68dab21a9b066edda83263c3d84e09572e269ca0cd7f5453714", + "73016f7bf234aade5d1aa71bdea2b1ff3fc0de2a887912ffe54a32ce97cb3402" + ], + [ + "daed4f2be3a8bf278e70132fb0beb7522f570e144bf615c07e996d443dee8729", + "a69dce4a7d6c98e8d4a1aca87ef8d7003f83c230f3afa726ab40e52290be1c55" + ], + [ + "c44d12c7065d812e8acf28d7cbb19f9011ecd9e9fdf281b0e6a3b5e87d22e7db", + "2119a460ce326cdc76c45926c982fdac0e106e861edf61c5a039063f0e0e6482" + ], + [ + "6a245bf6dc698504c89a20cfded60853152b695336c28063b61c65cbd269e6b4", + "e022cf42c2bd4a708b3f5126f16a24ad8b33ba48d0423b6efd5e6348100d8a82" + ], + [ + "1697ffa6fd9de627c077e3d2fe541084ce13300b0bec1146f95ae57f0d0bd6a5", + "b9c398f186806f5d27561506e4557433a2cf15009e498ae7adee9d63d01b2396" + ], + [ + "605bdb019981718b986d0f07e834cb0d9deb8360ffb7f61df982345ef27a7479", + "2972d2de4f8d20681a78d93ec96fe23c26bfae84fb14db43b01e1e9056b8c49" + ], + [ + "62d14dab4150bf497402fdc45a215e10dcb01c354959b10cfe31c7e9d87ff33d", + "80fc06bd8cc5b01098088a1950eed0db01aa132967ab472235f5642483b25eaf" + ], + [ + "80c60ad0040f27dade5b4b06c408e56b2c50e9f56b9b8b425e555c2f86308b6f", + "1c38303f1cc5c30f26e66bad7fe72f70a65eed4cbe7024eb1aa01f56430bd57a" + ], + [ + "7a9375ad6167ad54aa74c6348cc54d344cc5dc9487d847049d5eabb0fa03c8fb", + "d0e3fa9eca8726909559e0d79269046bdc59ea10c70ce2b02d499ec224dc7f7" + ], + [ + "d528ecd9b696b54c907a9ed045447a79bb408ec39b68df504bb51f459bc3ffc9", + "eecf41253136e5f99966f21881fd656ebc4345405c520dbc063465b521409933" + ], + [ + "49370a4b5f43412ea25f514e8ecdad05266115e4a7ecb1387231808f8b45963", + "758f3f41afd6ed428b3081b0512fd62a54c3f3afbb5b6764b653052a12949c9a" + ], + [ + "77f230936ee88cbbd73df930d64702ef881d811e0e1498e2f1c13eb1fc345d74", + "958ef42a7886b6400a08266e9ba1b37896c95330d97077cbbe8eb3c7671c60d6" + ], + [ + "f2dac991cc4ce4b9ea44887e5c7c0bce58c80074ab9d4dbaeb28531b7739f530", + "e0dedc9b3b2f8dad4da1f32dec2531df9eb5fbeb0598e4fd1a117dba703a3c37" + ], + [ + "463b3d9f662621fb1b4be8fbbe2520125a216cdfc9dae3debcba4850c690d45b", + "5ed430d78c296c3543114306dd8622d7c622e27c970a1de31cb377b01af7307e" + ], + [ + "f16f804244e46e2a09232d4aff3b59976b98fac14328a2d1a32496b49998f247", + "cedabd9b82203f7e13d206fcdf4e33d92a6c53c26e5cce26d6579962c4e31df6" + ], + [ + "caf754272dc84563b0352b7a14311af55d245315ace27c65369e15f7151d41d1", + "cb474660ef35f5f2a41b643fa5e460575f4fa9b7962232a5c32f908318a04476" + ], + [ + "2600ca4b282cb986f85d0f1709979d8b44a09c07cb86d7c124497bc86f082120", + "4119b88753c15bd6a693b03fcddbb45d5ac6be74ab5f0ef44b0be9475a7e4b40" + ], + [ + "7635ca72d7e8432c338ec53cd12220bc01c48685e24f7dc8c602a7746998e435", + "91b649609489d613d1d5e590f78e6d74ecfc061d57048bad9e76f302c5b9c61" + ], + [ + "754e3239f325570cdbbf4a87deee8a66b7f2b33479d468fbc1a50743bf56cc18", + "673fb86e5bda30fb3cd0ed304ea49a023ee33d0197a695d0c5d98093c536683" + ], + [ + "e3e6bd1071a1e96aff57859c82d570f0330800661d1c952f9fe2694691d9b9e8", + "59c9e0bba394e76f40c0aa58379a3cb6a5a2283993e90c4167002af4920e37f5" + ], + [ + "186b483d056a033826ae73d88f732985c4ccb1f32ba35f4b4cc47fdcf04aa6eb", + "3b952d32c67cf77e2e17446e204180ab21fb8090895138b4a4a797f86e80888b" + ], + [ + "df9d70a6b9876ce544c98561f4be4f725442e6d2b737d9c91a8321724ce0963f", + "55eb2dafd84d6ccd5f862b785dc39d4ab157222720ef9da217b8c45cf2ba2417" + ], + [ + "5edd5cc23c51e87a497ca815d5dce0f8ab52554f849ed8995de64c5f34ce7143", + "efae9c8dbc14130661e8cec030c89ad0c13c66c0d17a2905cdc706ab7399a868" + ], + [ + "290798c2b6476830da12fe02287e9e777aa3fba1c355b17a722d362f84614fba", + "e38da76dcd440621988d00bcf79af25d5b29c094db2a23146d003afd41943e7a" + ], + [ + "af3c423a95d9f5b3054754efa150ac39cd29552fe360257362dfdecef4053b45", + "f98a3fd831eb2b749a93b0e6f35cfb40c8cd5aa667a15581bc2feded498fd9c6" + ], + [ + "766dbb24d134e745cccaa28c99bf274906bb66b26dcf98df8d2fed50d884249a", + "744b1152eacbe5e38dcc887980da38b897584a65fa06cedd2c924f97cbac5996" + ], + [ + "59dbf46f8c94759ba21277c33784f41645f7b44f6c596a58ce92e666191abe3e", + "c534ad44175fbc300f4ea6ce648309a042ce739a7919798cd85e216c4a307f6e" + ], + [ + "f13ada95103c4537305e691e74e9a4a8dd647e711a95e73cb62dc6018cfd87b8", + "e13817b44ee14de663bf4bc808341f326949e21a6a75c2570778419bdaf5733d" + ], + [ + "7754b4fa0e8aced06d4167a2c59cca4cda1869c06ebadfb6488550015a88522c", + "30e93e864e669d82224b967c3020b8fa8d1e4e350b6cbcc537a48b57841163a2" + ], + [ + "948dcadf5990e048aa3874d46abef9d701858f95de8041d2a6828c99e2262519", + "e491a42537f6e597d5d28a3224b1bc25df9154efbd2ef1d2cbba2cae5347d57e" + ], + [ + "7962414450c76c1689c7b48f8202ec37fb224cf5ac0bfa1570328a8a3d7c77ab", + "100b610ec4ffb4760d5c1fc133ef6f6b12507a051f04ac5760afa5b29db83437" + ], + [ + "3514087834964b54b15b160644d915485a16977225b8847bb0dd085137ec47ca", + "ef0afbb2056205448e1652c48e8127fc6039e77c15c2378b7e7d15a0de293311" + ], + [ + "d3cc30ad6b483e4bc79ce2c9dd8bc54993e947eb8df787b442943d3f7b527eaf", + "8b378a22d827278d89c5e9be8f9508ae3c2ad46290358630afb34db04eede0a4" + ], + [ + "1624d84780732860ce1c78fcbfefe08b2b29823db913f6493975ba0ff4847610", + "68651cf9b6da903e0914448c6cd9d4ca896878f5282be4c8cc06e2a404078575" + ], + [ + "733ce80da955a8a26902c95633e62a985192474b5af207da6df7b4fd5fc61cd4", + "f5435a2bd2badf7d485a4d8b8db9fcce3e1ef8e0201e4578c54673bc1dc5ea1d" + ], + [ + "15d9441254945064cf1a1c33bbd3b49f8966c5092171e699ef258dfab81c045c", + "d56eb30b69463e7234f5137b73b84177434800bacebfc685fc37bbe9efe4070d" + ], + [ + "a1d0fcf2ec9de675b612136e5ce70d271c21417c9d2b8aaaac138599d0717940", + "edd77f50bcb5a3cab2e90737309667f2641462a54070f3d519212d39c197a629" + ], + [ + "e22fbe15c0af8ccc5780c0735f84dbe9a790badee8245c06c7ca37331cb36980", + "a855babad5cd60c88b430a69f53a1a7a38289154964799be43d06d77d31da06" + ], + [ + "311091dd9860e8e20ee13473c1155f5f69635e394704eaa74009452246cfa9b3", + "66db656f87d1f04fffd1f04788c06830871ec5a64feee685bd80f0b1286d8374" + ], + [ + "34c1fd04d301be89b31c0442d3e6ac24883928b45a9340781867d4232ec2dbdf", + "9414685e97b1b5954bd46f730174136d57f1ceeb487443dc5321857ba73abee" + ], + [ + "f219ea5d6b54701c1c14de5b557eb42a8d13f3abbcd08affcc2a5e6b049b8d63", + "4cb95957e83d40b0f73af4544cccf6b1f4b08d3c07b27fb8d8c2962a400766d1" + ], + [ + "d7b8740f74a8fbaab1f683db8f45de26543a5490bca627087236912469a0b448", + "fa77968128d9c92ee1010f337ad4717eff15db5ed3c049b3411e0315eaa4593b" + ], + [ + "32d31c222f8f6f0ef86f7c98d3a3335ead5bcd32abdd94289fe4d3091aa824bf", + "5f3032f5892156e39ccd3d7915b9e1da2e6dac9e6f26e961118d14b8462e1661" + ], + [ + "7461f371914ab32671045a155d9831ea8793d77cd59592c4340f86cbc18347b5", + "8ec0ba238b96bec0cbdddcae0aa442542eee1ff50c986ea6b39847b3cc092ff6" + ], + [ + "ee079adb1df1860074356a25aa38206a6d716b2c3e67453d287698bad7b2b2d6", + "8dc2412aafe3be5c4c5f37e0ecc5f9f6a446989af04c4e25ebaac479ec1c8c1e" + ], + [ + "16ec93e447ec83f0467b18302ee620f7e65de331874c9dc72bfd8616ba9da6b5", + "5e4631150e62fb40d0e8c2a7ca5804a39d58186a50e497139626778e25b0674d" + ], + [ + "eaa5f980c245f6f038978290afa70b6bd8855897f98b6aa485b96065d537bd99", + "f65f5d3e292c2e0819a528391c994624d784869d7e6ea67fb18041024edc07dc" + ], + [ + "78c9407544ac132692ee1910a02439958ae04877151342ea96c4b6b35a49f51", + "f3e0319169eb9b85d5404795539a5e68fa1fbd583c064d2462b675f194a3ddb4" + ], + [ + "494f4be219a1a77016dcd838431aea0001cdc8ae7a6fc688726578d9702857a5", + "42242a969283a5f339ba7f075e36ba2af925ce30d767ed6e55f4b031880d562c" + ], + [ + "a598a8030da6d86c6bc7f2f5144ea549d28211ea58faa70ebf4c1e665c1fe9b5", + "204b5d6f84822c307e4b4a7140737aec23fc63b65b35f86a10026dbd2d864e6b" + ], + [ + "c41916365abb2b5d09192f5f2dbeafec208f020f12570a184dbadc3e58595997", + "4f14351d0087efa49d245b328984989d5caf9450f34bfc0ed16e96b58fa9913" + ], + [ + "841d6063a586fa475a724604da03bc5b92a2e0d2e0a36acfe4c73a5514742881", + "73867f59c0659e81904f9a1c7543698e62562d6744c169ce7a36de01a8d6154" + ], + [ + "5e95bb399a6971d376026947f89bde2f282b33810928be4ded112ac4d70e20d5", + "39f23f366809085beebfc71181313775a99c9aed7d8ba38b161384c746012865" + ], + [ + "36e4641a53948fd476c39f8a99fd974e5ec07564b5315d8bf99471bca0ef2f66", + "d2424b1b1abe4eb8164227b085c9aa9456ea13493fd563e06fd51cf5694c78fc" + ], + [ + "336581ea7bfbbb290c191a2f507a41cf5643842170e914faeab27c2c579f726", + "ead12168595fe1be99252129b6e56b3391f7ab1410cd1e0ef3dcdcabd2fda224" + ], + [ + "8ab89816dadfd6b6a1f2634fcf00ec8403781025ed6890c4849742706bd43ede", + "6fdcef09f2f6d0a044e654aef624136f503d459c3e89845858a47a9129cdd24e" + ], + [ + "1e33f1a746c9c5778133344d9299fcaa20b0938e8acff2544bb40284b8c5fb94", + "60660257dd11b3aa9c8ed618d24edff2306d320f1d03010e33a7d2057f3b3b6" + ], + [ + "85b7c1dcb3cec1b7ee7f30ded79dd20a0ed1f4cc18cbcfcfa410361fd8f08f31", + "3d98a9cdd026dd43f39048f25a8847f4fcafad1895d7a633c6fed3c35e999511" + ], + [ + "29df9fbd8d9e46509275f4b125d6d45d7fbe9a3b878a7af872a2800661ac5f51", + "b4c4fe99c775a606e2d8862179139ffda61dc861c019e55cd2876eb2a27d84b" + ], + [ + "a0b1cae06b0a847a3fea6e671aaf8adfdfe58ca2f768105c8082b2e449fce252", + "ae434102edde0958ec4b19d917a6a28e6b72da1834aff0e650f049503a296cf2" + ], + [ + "4e8ceafb9b3e9a136dc7ff67e840295b499dfb3b2133e4ba113f2e4c0e121e5", + "cf2174118c8b6d7a4b48f6d534ce5c79422c086a63460502b827ce62a326683c" + ], + [ + "d24a44e047e19b6f5afb81c7ca2f69080a5076689a010919f42725c2b789a33b", + "6fb8d5591b466f8fc63db50f1c0f1c69013f996887b8244d2cdec417afea8fa3" + ], + [ + "ea01606a7a6c9cdd249fdfcfacb99584001edd28abbab77b5104e98e8e3b35d4", + "322af4908c7312b0cfbfe369f7a7b3cdb7d4494bc2823700cfd652188a3ea98d" + ], + [ + "af8addbf2b661c8a6c6328655eb96651252007d8c5ea31be4ad196de8ce2131f", + "6749e67c029b85f52a034eafd096836b2520818680e26ac8f3dfbcdb71749700" + ], + [ + "e3ae1974566ca06cc516d47e0fb165a674a3dabcfca15e722f0e3450f45889", + "2aeabe7e4531510116217f07bf4d07300de97e4874f81f533420a72eeb0bd6a4" + ], + [ + "591ee355313d99721cf6993ffed1e3e301993ff3ed258802075ea8ced397e246", + "b0ea558a113c30bea60fc4775460c7901ff0b053d25ca2bdeee98f1a4be5d196" + ], + [ + "11396d55fda54c49f19aa97318d8da61fa8584e47b084945077cf03255b52984", + "998c74a8cd45ac01289d5833a7beb4744ff536b01b257be4c5767bea93ea57a4" + ], + [ + "3c5d2a1ba39c5a1790000738c9e0c40b8dcdfd5468754b6405540157e017aa7a", + "b2284279995a34e2f9d4de7396fc18b80f9b8b9fdd270f6661f79ca4c81bd257" + ], + [ + "cc8704b8a60a0defa3a99a7299f2e9c3fbc395afb04ac078425ef8a1793cc030", + "bdd46039feed17881d1e0862db347f8cf395b74fc4bcdc4e940b74e3ac1f1b13" + ], + [ + "c533e4f7ea8555aacd9777ac5cad29b97dd4defccc53ee7ea204119b2889b197", + "6f0a256bc5efdf429a2fb6242f1a43a2d9b925bb4a4b3a26bb8e0f45eb596096" + ], + [ + "c14f8f2ccb27d6f109f6d08d03cc96a69ba8c34eec07bbcf566d48e33da6593", + "c359d6923bb398f7fd4473e16fe1c28475b740dd098075e6c0e8649113dc3a38" + ], + [ + "a6cbc3046bc6a450bac24789fa17115a4c9739ed75f8f21ce441f72e0b90e6ef", + "21ae7f4680e889bb130619e2c0f95a360ceb573c70603139862afd617fa9b9f" + ], + [ + "347d6d9a02c48927ebfb86c1359b1caf130a3c0267d11ce6344b39f99d43cc38", + "60ea7f61a353524d1c987f6ecec92f086d565ab687870cb12689ff1e31c74448" + ], + [ + "da6545d2181db8d983f7dcb375ef5866d47c67b1bf31c8cf855ef7437b72656a", + "49b96715ab6878a79e78f07ce5680c5d6673051b4935bd897fea824b77dc208a" + ], + [ + "c40747cc9d012cb1a13b8148309c6de7ec25d6945d657146b9d5994b8feb1111", + "5ca560753be2a12fc6de6caf2cb489565db936156b9514e1bb5e83037e0fa2d4" + ], + [ + "4e42c8ec82c99798ccf3a610be870e78338c7f713348bd34c8203ef4037f3502", + "7571d74ee5e0fb92a7a8b33a07783341a5492144cc54bcc40a94473693606437" + ], + [ + "3775ab7089bc6af823aba2e1af70b236d251cadb0c86743287522a1b3b0dedea", + "be52d107bcfa09d8bcb9736a828cfa7fac8db17bf7a76a2c42ad961409018cf7" + ], + [ + "cee31cbf7e34ec379d94fb814d3d775ad954595d1314ba8846959e3e82f74e26", + "8fd64a14c06b589c26b947ae2bcf6bfa0149ef0be14ed4d80f448a01c43b1c6d" + ], + [ + "b4f9eaea09b6917619f6ea6a4eb5464efddb58fd45b1ebefcdc1a01d08b47986", + "39e5c9925b5a54b07433a4f18c61726f8bb131c012ca542eb24a8ac07200682a" + ], + [ + "d4263dfc3d2df923a0179a48966d30ce84e2515afc3dccc1b77907792ebcc60e", + "62dfaf07a0f78feb30e30d6295853ce189e127760ad6cf7fae164e122a208d54" + ], + [ + "48457524820fa65a4f8d35eb6930857c0032acc0a4a2de422233eeda897612c4", + "25a748ab367979d98733c38a1fa1c2e7dc6cc07db2d60a9ae7a76aaa49bd0f77" + ], + [ + "dfeeef1881101f2cb11644f3a2afdfc2045e19919152923f367a1767c11cceda", + "ecfb7056cf1de042f9420bab396793c0c390bde74b4bbdff16a83ae09a9a7517" + ], + [ + "6d7ef6b17543f8373c573f44e1f389835d89bcbc6062ced36c82df83b8fae859", + "cd450ec335438986dfefa10c57fea9bcc521a0959b2d80bbf74b190dca712d10" + ], + [ + "e75605d59102a5a2684500d3b991f2e3f3c88b93225547035af25af66e04541f", + "f5c54754a8f71ee540b9b48728473e314f729ac5308b06938360990e2bfad125" + ], + [ + "eb98660f4c4dfaa06a2be453d5020bc99a0c2e60abe388457dd43fefb1ed620c", + "6cb9a8876d9cb8520609af3add26cd20a0a7cd8a9411131ce85f44100099223e" + ], + [ + "13e87b027d8514d35939f2e6892b19922154596941888336dc3563e3b8dba942", + "fef5a3c68059a6dec5d624114bf1e91aac2b9da568d6abeb2570d55646b8adf1" + ], + [ + "ee163026e9fd6fe017c38f06a5be6fc125424b371ce2708e7bf4491691e5764a", + "1acb250f255dd61c43d94ccc670d0f58f49ae3fa15b96623e5430da0ad6c62b2" + ], + [ + "b268f5ef9ad51e4d78de3a750c2dc89b1e626d43505867999932e5db33af3d80", + "5f310d4b3c99b9ebb19f77d41c1dee018cf0d34fd4191614003e945a1216e423" + ], + [ + "ff07f3118a9df035e9fad85eb6c7bfe42b02f01ca99ceea3bf7ffdba93c4750d", + "438136d603e858a3a5c440c38eccbaddc1d2942114e2eddd4740d098ced1f0d8" + ], + [ + "8d8b9855c7c052a34146fd20ffb658bea4b9f69e0d825ebec16e8c3ce2b526a1", + "cdb559eedc2d79f926baf44fb84ea4d44bcf50fee51d7ceb30e2e7f463036758" + ], + [ + "52db0b5384dfbf05bfa9d472d7ae26dfe4b851ceca91b1eba54263180da32b63", + "c3b997d050ee5d423ebaf66a6db9f57b3180c902875679de924b69d84a7b375" + ], + [ + "e62f9490d3d51da6395efd24e80919cc7d0f29c3f3fa48c6fff543becbd43352", + "6d89ad7ba4876b0b22c2ca280c682862f342c8591f1daf5170e07bfd9ccafa7d" + ], + [ + "7f30ea2476b399b4957509c88f77d0191afa2ff5cb7b14fd6d8e7d65aaab1193", + "ca5ef7d4b231c94c3b15389a5f6311e9daff7bb67b103e9880ef4bff637acaec" + ], + [ + "5098ff1e1d9f14fb46a210fada6c903fef0fb7b4a1dd1d9ac60a0361800b7a00", + "9731141d81fc8f8084d37c6e7542006b3ee1b40d60dfe5362a5b132fd17ddc0" + ], + [ + "32b78c7de9ee512a72895be6b9cbefa6e2f3c4ccce445c96b9f2c81e2778ad58", + "ee1849f513df71e32efc3896ee28260c73bb80547ae2275ba497237794c8753c" + ], + [ + "e2cb74fddc8e9fbcd076eef2a7c72b0ce37d50f08269dfc074b581550547a4f7", + "d3aa2ed71c9dd2247a62df062736eb0baddea9e36122d2be8641abcb005cc4a4" + ], + [ + "8438447566d4d7bedadc299496ab357426009a35f235cb141be0d99cd10ae3a8", + "c4e1020916980a4da5d01ac5e6ad330734ef0d7906631c4f2390426b2edd791f" + ], + [ + "4162d488b89402039b584c6fc6c308870587d9c46f660b878ab65c82c711d67e", + "67163e903236289f776f22c25fb8a3afc1732f2b84b4e95dbda47ae5a0852649" + ], + [ + "3fad3fa84caf0f34f0f89bfd2dcf54fc175d767aec3e50684f3ba4a4bf5f683d", + "cd1bc7cb6cc407bb2f0ca647c718a730cf71872e7d0d2a53fa20efcdfe61826" + ], + [ + "674f2600a3007a00568c1a7ce05d0816c1fb84bf1370798f1c69532faeb1a86b", + "299d21f9413f33b3edf43b257004580b70db57da0b182259e09eecc69e0d38a5" + ], + [ + "d32f4da54ade74abb81b815ad1fb3b263d82d6c692714bcff87d29bd5ee9f08f", + "f9429e738b8e53b968e99016c059707782e14f4535359d582fc416910b3eea87" + ], + [ + "30e4e670435385556e593657135845d36fbb6931f72b08cb1ed954f1e3ce3ff6", + "462f9bce619898638499350113bbc9b10a878d35da70740dc695a559eb88db7b" + ], + [ + "be2062003c51cc3004682904330e4dee7f3dcd10b01e580bf1971b04d4cad297", + "62188bc49d61e5428573d48a74e1c655b1c61090905682a0d5558ed72dccb9bc" + ], + [ + "93144423ace3451ed29e0fb9ac2af211cb6e84a601df5993c419859fff5df04a", + "7c10dfb164c3425f5c71a3f9d7992038f1065224f72bb9d1d902a6d13037b47c" + ], + [ + "b015f8044f5fcbdcf21ca26d6c34fb8197829205c7b7d2a7cb66418c157b112c", + "ab8c1e086d04e813744a655b2df8d5f83b3cdc6faa3088c1d3aea1454e3a1d5f" + ], + [ + "d5e9e1da649d97d89e4868117a465a3a4f8a18de57a140d36b3f2af341a21b52", + "4cb04437f391ed73111a13cc1d4dd0db1693465c2240480d8955e8592f27447a" + ], + [ + "d3ae41047dd7ca065dbf8ed77b992439983005cd72e16d6f996a5316d36966bb", + "bd1aeb21ad22ebb22a10f0303417c6d964f8cdd7df0aca614b10dc14d125ac46" + ], + [ + "463e2763d885f958fc66cdd22800f0a487197d0a82e377b49f80af87c897b065", + "bfefacdb0e5d0fd7df3a311a94de062b26b80c61fbc97508b79992671ef7ca7f" + ], + [ + "7985fdfd127c0567c6f53ec1bb63ec3158e597c40bfe747c83cddfc910641917", + "603c12daf3d9862ef2b25fe1de289aed24ed291e0ec6708703a5bd567f32ed03" + ], + [ + "74a1ad6b5f76e39db2dd249410eac7f99e74c59cb83d2d0ed5ff1543da7703e9", + "cc6157ef18c9c63cd6193d83631bbea0093e0968942e8c33d5737fd790e0db08" + ], + [ + "30682a50703375f602d416664ba19b7fc9bab42c72747463a71d0896b22f6da3", + "553e04f6b018b4fa6c8f39e7f311d3176290d0e0f19ca73f17714d9977a22ff8" + ], + [ + "9e2158f0d7c0d5f26c3791efefa79597654e7a2b2464f52b1ee6c1347769ef57", + "712fcdd1b9053f09003a3481fa7762e9ffd7c8ef35a38509e2fbf2629008373" + ], + [ + "176e26989a43c9cfeba4029c202538c28172e566e3c4fce7322857f3be327d66", + "ed8cc9d04b29eb877d270b4878dc43c19aefd31f4eee09ee7b47834c1fa4b1c3" + ], + [ + "75d46efea3771e6e68abb89a13ad747ecf1892393dfc4f1b7004788c50374da8", + "9852390a99507679fd0b86fd2b39a868d7efc22151346e1a3ca4726586a6bed8" + ], + [ + "809a20c67d64900ffb698c4c825f6d5f2310fb0451c869345b7319f645605721", + "9e994980d9917e22b76b061927fa04143d096ccc54963e6a5ebfa5f3f8e286c1" + ], + [ + "1b38903a43f7f114ed4500b4eac7083fdefece1cf29c63528d563446f972c180", + "4036edc931a60ae889353f77fd53de4a2708b26b6f5da72ad3394119daf408f9" + ] + ] + } + } + }, + {} + ], + 58: [ + function(require, module, exports) { + "use strict" + + var utils = exports + var BN = require("bn.js") + var minAssert = require("minimalistic-assert") + var minUtils = require("minimalistic-crypto-utils") + + utils.assert = minAssert + utils.toArray = minUtils.toArray + utils.zero2 = minUtils.zero2 + utils.toHex = minUtils.toHex + utils.encode = minUtils.encode + + // Represent num in a w-NAF form + function getNAF(num, w) { + var naf = [] + var ws = 1 << (w + 1) + var k = num.clone() + while (k.cmpn(1) >= 0) { + var z + if (k.isOdd()) { + var mod = k.andln(ws - 1) + if (mod > (ws >> 1) - 1) z = (ws >> 1) - mod + else z = mod + k.isubn(z) + } else { + z = 0 + } + naf.push(z) + + // Optimization, shift by word if possible + var shift = k.cmpn(0) !== 0 && k.andln(ws - 1) === 0 ? w + 1 : 1 + for (var i = 1; i < shift; i++) naf.push(0) + k.iushrn(shift) + } + + return naf + } + utils.getNAF = getNAF + + // Represent k1, k2 in a Joint Sparse Form + function getJSF(k1, k2) { + var jsf = [[], []] + + k1 = k1.clone() + k2 = k2.clone() + var d1 = 0 + var d2 = 0 + while (k1.cmpn(-d1) > 0 || k2.cmpn(-d2) > 0) { + // First phase + var m14 = (k1.andln(3) + d1) & 3 + var m24 = (k2.andln(3) + d2) & 3 + if (m14 === 3) m14 = -1 + if (m24 === 3) m24 = -1 + var u1 + if ((m14 & 1) === 0) { + u1 = 0 + } else { + var m8 = (k1.andln(7) + d1) & 7 + if ((m8 === 3 || m8 === 5) && m24 === 2) u1 = -m14 + else u1 = m14 + } + jsf[0].push(u1) + + var u2 + if ((m24 & 1) === 0) { + u2 = 0 + } else { + var m8 = (k2.andln(7) + d2) & 7 + if ((m8 === 3 || m8 === 5) && m14 === 2) u2 = -m24 + else u2 = m24 + } + jsf[1].push(u2) + + // Second phase + if (2 * d1 === u1 + 1) d1 = 1 - d1 + if (2 * d2 === u2 + 1) d2 = 1 - d2 + k1.iushrn(1) + k2.iushrn(1) + } + + return jsf + } + utils.getJSF = getJSF + + function cachedProperty(obj, name, computer) { + var key = "_" + name + obj.prototype[name] = function cachedProperty() { + return this[key] !== undefined + ? this[key] + : (this[key] = computer.call(this)) + } + } + utils.cachedProperty = cachedProperty + + function parseBytes(bytes) { + return typeof bytes === "string" + ? utils.toArray(bytes, "hex") + : bytes + } + utils.parseBytes = parseBytes + + function intFromLE(bytes) { + return new BN(bytes, "hex", "le") + } + utils.intFromLE = intFromLE + }, + { + "bn.js": 34, + "minimalistic-assert": 76, + "minimalistic-crypto-utils": 77 + } + ], + 59: [ + function(require, module, exports) { + module.exports = { + name: "elliptic", + version: "6.4.1", + description: "EC cryptography", + main: "lib/elliptic.js", + files: ["lib"], + scripts: { + jscs: + "jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js", + jshint: + "jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js", + lint: "npm run jscs && npm run jshint", + unit: "istanbul test _mocha --reporter=spec test/index.js", + test: "npm run lint && npm run unit", + version: "grunt dist && git add dist/" + }, + repository: { + type: "git", + url: "git@github.com:indutny/elliptic" + }, + keywords: ["EC", "Elliptic", "curve", "Cryptography"], + author: "Fedor Indutny ", + license: "MIT", + bugs: { + url: "https://github.com/indutny/elliptic/issues" + }, + homepage: "https://github.com/indutny/elliptic", + devDependencies: { + brfs: "^1.4.3", + coveralls: "^2.11.3", + grunt: "^0.4.5", + "grunt-browserify": "^5.0.0", + "grunt-cli": "^1.2.0", + "grunt-contrib-connect": "^1.0.0", + "grunt-contrib-copy": "^1.0.0", + "grunt-contrib-uglify": "^1.0.1", + "grunt-mocha-istanbul": "^3.0.1", + "grunt-saucelabs": "^8.6.2", + istanbul: "^0.4.2", + jscs: "^2.9.0", + jshint: "^2.6.0", + mocha: "^2.1.0" + }, + dependencies: { + "bn.js": "^4.4.0", + brorand: "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + inherits: "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + } + } + }, + {} + ], + 60: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var Transform = require("stream").Transform + var inherits = require("inherits") + + function throwIfNotStringOrBuffer(val, prefix) { + if (!Buffer.isBuffer(val) && typeof val !== "string") { + throw new TypeError(prefix + " must be a string or a buffer") + } + } + + function HashBase(blockSize) { + Transform.call(this) + + this._block = Buffer.allocUnsafe(blockSize) + this._blockSize = blockSize + this._blockOffset = 0 + this._length = [0, 0, 0, 0] + + this._finalized = false + } + + inherits(HashBase, Transform) + + HashBase.prototype._transform = function(chunk, encoding, callback) { + var error = null + try { + this.update(chunk, encoding) + } catch (err) { + error = err + } + + callback(error) + } + + HashBase.prototype._flush = function(callback) { + var error = null + try { + this.push(this.digest()) + } catch (err) { + error = err + } + + callback(error) + } + + HashBase.prototype.update = function(data, encoding) { + throwIfNotStringOrBuffer(data, "Data") + if (this._finalized) throw new Error("Digest already called") + if (!Buffer.isBuffer(data)) data = Buffer.from(data, encoding) + + // consume data + var block = this._block + var offset = 0 + while ( + this._blockOffset + data.length - offset >= + this._blockSize + ) { + for (var i = this._blockOffset; i < this._blockSize; ) + block[i++] = data[offset++] + this._update() + this._blockOffset = 0 + } + while (offset < data.length) + block[this._blockOffset++] = data[offset++] + + // update length + for (var j = 0, carry = data.length * 8; carry > 0; ++j) { + this._length[j] += carry + carry = (this._length[j] / 0x0100000000) | 0 + if (carry > 0) this._length[j] -= 0x0100000000 * carry + } + + return this + } + + HashBase.prototype._update = function() { + throw new Error("_update is not implemented") + } + + HashBase.prototype.digest = function(encoding) { + if (this._finalized) throw new Error("Digest already called") + this._finalized = true + + var digest = this._digest() + if (encoding !== undefined) digest = digest.toString(encoding) + + // reset state + this._block.fill(0) + this._blockOffset = 0 + for (var i = 0; i < 4; ++i) this._length[i] = 0 + + return digest + } + + HashBase.prototype._digest = function() { + throw new Error("_digest is not implemented") + } + + module.exports = HashBase + }, + { inherits: 74, "safe-buffer": 79, stream: 27 } + ], + 61: [ + function(require, module, exports) { + var hash = exports + + hash.utils = require("./hash/utils") + hash.common = require("./hash/common") + hash.sha = require("./hash/sha") + hash.ripemd = require("./hash/ripemd") + hash.hmac = require("./hash/hmac") + + // Proxy hash functions to the main object + hash.sha1 = hash.sha.sha1 + hash.sha256 = hash.sha.sha256 + hash.sha224 = hash.sha.sha224 + hash.sha384 = hash.sha.sha384 + hash.sha512 = hash.sha.sha512 + hash.ripemd160 = hash.ripemd.ripemd160 + }, + { + "./hash/common": 62, + "./hash/hmac": 63, + "./hash/ripemd": 64, + "./hash/sha": 65, + "./hash/utils": 72 + } + ], + 62: [ + function(require, module, exports) { + "use strict" + + var utils = require("./utils") + var assert = require("minimalistic-assert") + + function BlockHash() { + this.pending = null + this.pendingTotal = 0 + this.blockSize = this.constructor.blockSize + this.outSize = this.constructor.outSize + this.hmacStrength = this.constructor.hmacStrength + this.padLength = this.constructor.padLength / 8 + this.endian = "big" + + this._delta8 = this.blockSize / 8 + this._delta32 = this.blockSize / 32 + } + exports.BlockHash = BlockHash + + BlockHash.prototype.update = function update(msg, enc) { + // Convert message to array, pad it, and join into 32bit blocks + msg = utils.toArray(msg, enc) + if (!this.pending) this.pending = msg + else this.pending = this.pending.concat(msg) + this.pendingTotal += msg.length + + // Enough data, try updating + if (this.pending.length >= this._delta8) { + msg = this.pending + + // Process pending data in blocks + var r = msg.length % this._delta8 + this.pending = msg.slice(msg.length - r, msg.length) + if (this.pending.length === 0) this.pending = null + + msg = utils.join32(msg, 0, msg.length - r, this.endian) + for (var i = 0; i < msg.length; i += this._delta32) + this._update(msg, i, i + this._delta32) + } + + return this + } + + BlockHash.prototype.digest = function digest(enc) { + this.update(this._pad()) + assert(this.pending === null) + + return this._digest(enc) + } + + BlockHash.prototype._pad = function pad() { + var len = this.pendingTotal + var bytes = this._delta8 + var k = bytes - ((len + this.padLength) % bytes) + var res = new Array(k + this.padLength) + res[0] = 0x80 + for (var i = 1; i < k; i++) res[i] = 0 + + // Append length + len <<= 3 + if (this.endian === "big") { + for (var t = 8; t < this.padLength; t++) res[i++] = 0 + + res[i++] = 0 + res[i++] = 0 + res[i++] = 0 + res[i++] = 0 + res[i++] = (len >>> 24) & 0xff + res[i++] = (len >>> 16) & 0xff + res[i++] = (len >>> 8) & 0xff + res[i++] = len & 0xff + } else { + res[i++] = len & 0xff + res[i++] = (len >>> 8) & 0xff + res[i++] = (len >>> 16) & 0xff + res[i++] = (len >>> 24) & 0xff + res[i++] = 0 + res[i++] = 0 + res[i++] = 0 + res[i++] = 0 + + for (t = 8; t < this.padLength; t++) res[i++] = 0 + } + + return res + } + }, + { "./utils": 72, "minimalistic-assert": 76 } + ], + 63: [ + function(require, module, exports) { + "use strict" + + var utils = require("./utils") + var assert = require("minimalistic-assert") + + function Hmac(hash, key, enc) { + if (!(this instanceof Hmac)) return new Hmac(hash, key, enc) + this.Hash = hash + this.blockSize = hash.blockSize / 8 + this.outSize = hash.outSize / 8 + this.inner = null + this.outer = null + + this._init(utils.toArray(key, enc)) + } + module.exports = Hmac + + Hmac.prototype._init = function init(key) { + // Shorten key, if needed + if (key.length > this.blockSize) + key = new this.Hash().update(key).digest() + assert(key.length <= this.blockSize) + + // Add padding to key + for (var i = key.length; i < this.blockSize; i++) key.push(0) + + for (i = 0; i < key.length; i++) key[i] ^= 0x36 + this.inner = new this.Hash().update(key) + + // 0x36 ^ 0x5c = 0x6a + for (i = 0; i < key.length; i++) key[i] ^= 0x6a + this.outer = new this.Hash().update(key) + } + + Hmac.prototype.update = function update(msg, enc) { + this.inner.update(msg, enc) + return this + } + + Hmac.prototype.digest = function digest(enc) { + this.outer.update(this.inner.digest()) + return this.outer.digest(enc) + } + }, + { "./utils": 72, "minimalistic-assert": 76 } + ], + 64: [ + function(require, module, exports) { + "use strict" + + var utils = require("./utils") + var common = require("./common") + + var rotl32 = utils.rotl32 + var sum32 = utils.sum32 + var sum32_3 = utils.sum32_3 + var sum32_4 = utils.sum32_4 + var BlockHash = common.BlockHash + + function RIPEMD160() { + if (!(this instanceof RIPEMD160)) return new RIPEMD160() + + BlockHash.call(this) + + this.h = [ + 0x67452301, + 0xefcdab89, + 0x98badcfe, + 0x10325476, + 0xc3d2e1f0 + ] + this.endian = "little" + } + utils.inherits(RIPEMD160, BlockHash) + exports.ripemd160 = RIPEMD160 + + RIPEMD160.blockSize = 512 + RIPEMD160.outSize = 160 + RIPEMD160.hmacStrength = 192 + RIPEMD160.padLength = 64 + + RIPEMD160.prototype._update = function update(msg, start) { + var A = this.h[0] + var B = this.h[1] + var C = this.h[2] + var D = this.h[3] + var E = this.h[4] + var Ah = A + var Bh = B + var Ch = C + var Dh = D + var Eh = E + for (var j = 0; j < 80; j++) { + var T = sum32( + rotl32( + sum32_4(A, f(j, B, C, D), msg[r[j] + start], K(j)), + s[j] + ), + E + ) + A = E + E = D + D = rotl32(C, 10) + C = B + B = T + T = sum32( + rotl32( + sum32_4(Ah, f(79 - j, Bh, Ch, Dh), msg[rh[j] + start], Kh(j)), + sh[j] + ), + Eh + ) + Ah = Eh + Eh = Dh + Dh = rotl32(Ch, 10) + Ch = Bh + Bh = T + } + T = sum32_3(this.h[1], C, Dh) + this.h[1] = sum32_3(this.h[2], D, Eh) + this.h[2] = sum32_3(this.h[3], E, Ah) + this.h[3] = sum32_3(this.h[4], A, Bh) + this.h[4] = sum32_3(this.h[0], B, Ch) + this.h[0] = T + } + + RIPEMD160.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h, "little") + else return utils.split32(this.h, "little") + } + + function f(j, x, y, z) { + if (j <= 15) return x ^ y ^ z + else if (j <= 31) return (x & y) | (~x & z) + else if (j <= 47) return (x | ~y) ^ z + else if (j <= 63) return (x & z) | (y & ~z) + else return x ^ (y | ~z) + } + + function K(j) { + if (j <= 15) return 0x00000000 + else if (j <= 31) return 0x5a827999 + else if (j <= 47) return 0x6ed9eba1 + else if (j <= 63) return 0x8f1bbcdc + else return 0xa953fd4e + } + + function Kh(j) { + if (j <= 15) return 0x50a28be6 + else if (j <= 31) return 0x5c4dd124 + else if (j <= 47) return 0x6d703ef3 + else if (j <= 63) return 0x7a6d76e9 + else return 0x00000000 + } + + var r = [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 7, + 4, + 13, + 1, + 10, + 6, + 15, + 3, + 12, + 0, + 9, + 5, + 2, + 14, + 11, + 8, + 3, + 10, + 14, + 4, + 9, + 15, + 8, + 1, + 2, + 7, + 0, + 6, + 13, + 11, + 5, + 12, + 1, + 9, + 11, + 10, + 0, + 8, + 12, + 4, + 13, + 3, + 7, + 15, + 14, + 5, + 6, + 2, + 4, + 0, + 5, + 9, + 7, + 12, + 2, + 10, + 14, + 1, + 3, + 8, + 11, + 6, + 15, + 13 + ] + + var rh = [ + 5, + 14, + 7, + 0, + 9, + 2, + 11, + 4, + 13, + 6, + 15, + 8, + 1, + 10, + 3, + 12, + 6, + 11, + 3, + 7, + 0, + 13, + 5, + 10, + 14, + 15, + 8, + 12, + 4, + 9, + 1, + 2, + 15, + 5, + 1, + 3, + 7, + 14, + 6, + 9, + 11, + 8, + 12, + 2, + 10, + 0, + 4, + 13, + 8, + 6, + 4, + 1, + 3, + 11, + 15, + 0, + 5, + 12, + 2, + 13, + 9, + 7, + 10, + 14, + 12, + 15, + 10, + 4, + 1, + 5, + 8, + 7, + 6, + 2, + 13, + 14, + 0, + 3, + 9, + 11 + ] + + var s = [ + 11, + 14, + 15, + 12, + 5, + 8, + 7, + 9, + 11, + 13, + 14, + 15, + 6, + 7, + 9, + 8, + 7, + 6, + 8, + 13, + 11, + 9, + 7, + 15, + 7, + 12, + 15, + 9, + 11, + 7, + 13, + 12, + 11, + 13, + 6, + 7, + 14, + 9, + 13, + 15, + 14, + 8, + 13, + 6, + 5, + 12, + 7, + 5, + 11, + 12, + 14, + 15, + 14, + 15, + 9, + 8, + 9, + 14, + 5, + 6, + 8, + 6, + 5, + 12, + 9, + 15, + 5, + 11, + 6, + 8, + 13, + 12, + 5, + 12, + 13, + 14, + 11, + 8, + 5, + 6 + ] + + var sh = [ + 8, + 9, + 9, + 11, + 13, + 15, + 15, + 5, + 7, + 7, + 8, + 11, + 14, + 14, + 12, + 6, + 9, + 13, + 15, + 7, + 12, + 8, + 9, + 11, + 7, + 7, + 12, + 7, + 6, + 15, + 13, + 11, + 9, + 7, + 15, + 11, + 8, + 6, + 6, + 14, + 12, + 13, + 5, + 14, + 13, + 13, + 7, + 5, + 15, + 5, + 8, + 11, + 14, + 14, + 6, + 14, + 6, + 9, + 12, + 9, + 12, + 5, + 15, + 8, + 8, + 5, + 12, + 9, + 12, + 5, + 14, + 6, + 8, + 13, + 6, + 5, + 15, + 13, + 11, + 11 + ] + }, + { "./common": 62, "./utils": 72 } + ], + 65: [ + function(require, module, exports) { + "use strict" + + exports.sha1 = require("./sha/1") + exports.sha224 = require("./sha/224") + exports.sha256 = require("./sha/256") + exports.sha384 = require("./sha/384") + exports.sha512 = require("./sha/512") + }, + { + "./sha/1": 66, + "./sha/224": 67, + "./sha/256": 68, + "./sha/384": 69, + "./sha/512": 70 + } + ], + 66: [ + function(require, module, exports) { + "use strict" + + var utils = require("../utils") + var common = require("../common") + var shaCommon = require("./common") + + var rotl32 = utils.rotl32 + var sum32 = utils.sum32 + var sum32_5 = utils.sum32_5 + var ft_1 = shaCommon.ft_1 + var BlockHash = common.BlockHash + + var sha1_K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6] + + function SHA1() { + if (!(this instanceof SHA1)) return new SHA1() + + BlockHash.call(this) + this.h = [ + 0x67452301, + 0xefcdab89, + 0x98badcfe, + 0x10325476, + 0xc3d2e1f0 + ] + this.W = new Array(80) + } + + utils.inherits(SHA1, BlockHash) + module.exports = SHA1 + + SHA1.blockSize = 512 + SHA1.outSize = 160 + SHA1.hmacStrength = 80 + SHA1.padLength = 64 + + SHA1.prototype._update = function _update(msg, start) { + var W = this.W + + for (var i = 0; i < 16; i++) W[i] = msg[start + i] + + for (; i < W.length; i++) + W[i] = rotl32(W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16], 1) + + var a = this.h[0] + var b = this.h[1] + var c = this.h[2] + var d = this.h[3] + var e = this.h[4] + + for (i = 0; i < W.length; i++) { + var s = ~~(i / 20) + var t = sum32_5( + rotl32(a, 5), + ft_1(s, b, c, d), + e, + W[i], + sha1_K[s] + ) + e = d + d = c + c = rotl32(b, 30) + b = a + a = t + } + + this.h[0] = sum32(this.h[0], a) + this.h[1] = sum32(this.h[1], b) + this.h[2] = sum32(this.h[2], c) + this.h[3] = sum32(this.h[3], d) + this.h[4] = sum32(this.h[4], e) + } + + SHA1.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h, "big") + else return utils.split32(this.h, "big") + } + }, + { "../common": 62, "../utils": 72, "./common": 71 } + ], + 67: [ + function(require, module, exports) { + "use strict" + + var utils = require("../utils") + var SHA256 = require("./256") + + function SHA224() { + if (!(this instanceof SHA224)) return new SHA224() + + SHA256.call(this) + this.h = [ + 0xc1059ed8, + 0x367cd507, + 0x3070dd17, + 0xf70e5939, + 0xffc00b31, + 0x68581511, + 0x64f98fa7, + 0xbefa4fa4 + ] + } + utils.inherits(SHA224, SHA256) + module.exports = SHA224 + + SHA224.blockSize = 512 + SHA224.outSize = 224 + SHA224.hmacStrength = 192 + SHA224.padLength = 64 + + SHA224.prototype._digest = function digest(enc) { + // Just truncate output + if (enc === "hex") return utils.toHex32(this.h.slice(0, 7), "big") + else return utils.split32(this.h.slice(0, 7), "big") + } + }, + { "../utils": 72, "./256": 68 } + ], + 68: [ + function(require, module, exports) { + "use strict" + + var utils = require("../utils") + var common = require("../common") + var shaCommon = require("./common") + var assert = require("minimalistic-assert") + + var sum32 = utils.sum32 + var sum32_4 = utils.sum32_4 + var sum32_5 = utils.sum32_5 + var ch32 = shaCommon.ch32 + var maj32 = shaCommon.maj32 + var s0_256 = shaCommon.s0_256 + var s1_256 = shaCommon.s1_256 + var g0_256 = shaCommon.g0_256 + var g1_256 = shaCommon.g1_256 + + var BlockHash = common.BlockHash + + var sha256_K = [ + 0x428a2f98, + 0x71374491, + 0xb5c0fbcf, + 0xe9b5dba5, + 0x3956c25b, + 0x59f111f1, + 0x923f82a4, + 0xab1c5ed5, + 0xd807aa98, + 0x12835b01, + 0x243185be, + 0x550c7dc3, + 0x72be5d74, + 0x80deb1fe, + 0x9bdc06a7, + 0xc19bf174, + 0xe49b69c1, + 0xefbe4786, + 0x0fc19dc6, + 0x240ca1cc, + 0x2de92c6f, + 0x4a7484aa, + 0x5cb0a9dc, + 0x76f988da, + 0x983e5152, + 0xa831c66d, + 0xb00327c8, + 0xbf597fc7, + 0xc6e00bf3, + 0xd5a79147, + 0x06ca6351, + 0x14292967, + 0x27b70a85, + 0x2e1b2138, + 0x4d2c6dfc, + 0x53380d13, + 0x650a7354, + 0x766a0abb, + 0x81c2c92e, + 0x92722c85, + 0xa2bfe8a1, + 0xa81a664b, + 0xc24b8b70, + 0xc76c51a3, + 0xd192e819, + 0xd6990624, + 0xf40e3585, + 0x106aa070, + 0x19a4c116, + 0x1e376c08, + 0x2748774c, + 0x34b0bcb5, + 0x391c0cb3, + 0x4ed8aa4a, + 0x5b9cca4f, + 0x682e6ff3, + 0x748f82ee, + 0x78a5636f, + 0x84c87814, + 0x8cc70208, + 0x90befffa, + 0xa4506ceb, + 0xbef9a3f7, + 0xc67178f2 + ] + + function SHA256() { + if (!(this instanceof SHA256)) return new SHA256() + + BlockHash.call(this) + this.h = [ + 0x6a09e667, + 0xbb67ae85, + 0x3c6ef372, + 0xa54ff53a, + 0x510e527f, + 0x9b05688c, + 0x1f83d9ab, + 0x5be0cd19 + ] + this.k = sha256_K + this.W = new Array(64) + } + utils.inherits(SHA256, BlockHash) + module.exports = SHA256 + + SHA256.blockSize = 512 + SHA256.outSize = 256 + SHA256.hmacStrength = 192 + SHA256.padLength = 64 + + SHA256.prototype._update = function _update(msg, start) { + var W = this.W + + for (var i = 0; i < 16; i++) W[i] = msg[start + i] + for (; i < W.length; i++) + W[i] = sum32_4( + g1_256(W[i - 2]), + W[i - 7], + g0_256(W[i - 15]), + W[i - 16] + ) + + var a = this.h[0] + var b = this.h[1] + var c = this.h[2] + var d = this.h[3] + var e = this.h[4] + var f = this.h[5] + var g = this.h[6] + var h = this.h[7] + + assert(this.k.length === W.length) + for (i = 0; i < W.length; i++) { + var T1 = sum32_5(h, s1_256(e), ch32(e, f, g), this.k[i], W[i]) + var T2 = sum32(s0_256(a), maj32(a, b, c)) + h = g + g = f + f = e + e = sum32(d, T1) + d = c + c = b + b = a + a = sum32(T1, T2) + } + + this.h[0] = sum32(this.h[0], a) + this.h[1] = sum32(this.h[1], b) + this.h[2] = sum32(this.h[2], c) + this.h[3] = sum32(this.h[3], d) + this.h[4] = sum32(this.h[4], e) + this.h[5] = sum32(this.h[5], f) + this.h[6] = sum32(this.h[6], g) + this.h[7] = sum32(this.h[7], h) + } + + SHA256.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h, "big") + else return utils.split32(this.h, "big") + } + }, + { + "../common": 62, + "../utils": 72, + "./common": 71, + "minimalistic-assert": 76 + } + ], + 69: [ + function(require, module, exports) { + "use strict" + + var utils = require("../utils") + + var SHA512 = require("./512") + + function SHA384() { + if (!(this instanceof SHA384)) return new SHA384() + + SHA512.call(this) + this.h = [ + 0xcbbb9d5d, + 0xc1059ed8, + 0x629a292a, + 0x367cd507, + 0x9159015a, + 0x3070dd17, + 0x152fecd8, + 0xf70e5939, + 0x67332667, + 0xffc00b31, + 0x8eb44a87, + 0x68581511, + 0xdb0c2e0d, + 0x64f98fa7, + 0x47b5481d, + 0xbefa4fa4 + ] + } + utils.inherits(SHA384, SHA512) + module.exports = SHA384 + + SHA384.blockSize = 1024 + SHA384.outSize = 384 + SHA384.hmacStrength = 192 + SHA384.padLength = 128 + + SHA384.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h.slice(0, 12), "big") + else return utils.split32(this.h.slice(0, 12), "big") + } + }, + { "../utils": 72, "./512": 70 } + ], + 70: [ + function(require, module, exports) { + "use strict" + + var utils = require("../utils") + var common = require("../common") + var assert = require("minimalistic-assert") + + var rotr64_hi = utils.rotr64_hi + var rotr64_lo = utils.rotr64_lo + var shr64_hi = utils.shr64_hi + var shr64_lo = utils.shr64_lo + var sum64 = utils.sum64 + var sum64_hi = utils.sum64_hi + var sum64_lo = utils.sum64_lo + var sum64_4_hi = utils.sum64_4_hi + var sum64_4_lo = utils.sum64_4_lo + var sum64_5_hi = utils.sum64_5_hi + var sum64_5_lo = utils.sum64_5_lo + + var BlockHash = common.BlockHash + + var sha512_K = [ + 0x428a2f98, + 0xd728ae22, + 0x71374491, + 0x23ef65cd, + 0xb5c0fbcf, + 0xec4d3b2f, + 0xe9b5dba5, + 0x8189dbbc, + 0x3956c25b, + 0xf348b538, + 0x59f111f1, + 0xb605d019, + 0x923f82a4, + 0xaf194f9b, + 0xab1c5ed5, + 0xda6d8118, + 0xd807aa98, + 0xa3030242, + 0x12835b01, + 0x45706fbe, + 0x243185be, + 0x4ee4b28c, + 0x550c7dc3, + 0xd5ffb4e2, + 0x72be5d74, + 0xf27b896f, + 0x80deb1fe, + 0x3b1696b1, + 0x9bdc06a7, + 0x25c71235, + 0xc19bf174, + 0xcf692694, + 0xe49b69c1, + 0x9ef14ad2, + 0xefbe4786, + 0x384f25e3, + 0x0fc19dc6, + 0x8b8cd5b5, + 0x240ca1cc, + 0x77ac9c65, + 0x2de92c6f, + 0x592b0275, + 0x4a7484aa, + 0x6ea6e483, + 0x5cb0a9dc, + 0xbd41fbd4, + 0x76f988da, + 0x831153b5, + 0x983e5152, + 0xee66dfab, + 0xa831c66d, + 0x2db43210, + 0xb00327c8, + 0x98fb213f, + 0xbf597fc7, + 0xbeef0ee4, + 0xc6e00bf3, + 0x3da88fc2, + 0xd5a79147, + 0x930aa725, + 0x06ca6351, + 0xe003826f, + 0x14292967, + 0x0a0e6e70, + 0x27b70a85, + 0x46d22ffc, + 0x2e1b2138, + 0x5c26c926, + 0x4d2c6dfc, + 0x5ac42aed, + 0x53380d13, + 0x9d95b3df, + 0x650a7354, + 0x8baf63de, + 0x766a0abb, + 0x3c77b2a8, + 0x81c2c92e, + 0x47edaee6, + 0x92722c85, + 0x1482353b, + 0xa2bfe8a1, + 0x4cf10364, + 0xa81a664b, + 0xbc423001, + 0xc24b8b70, + 0xd0f89791, + 0xc76c51a3, + 0x0654be30, + 0xd192e819, + 0xd6ef5218, + 0xd6990624, + 0x5565a910, + 0xf40e3585, + 0x5771202a, + 0x106aa070, + 0x32bbd1b8, + 0x19a4c116, + 0xb8d2d0c8, + 0x1e376c08, + 0x5141ab53, + 0x2748774c, + 0xdf8eeb99, + 0x34b0bcb5, + 0xe19b48a8, + 0x391c0cb3, + 0xc5c95a63, + 0x4ed8aa4a, + 0xe3418acb, + 0x5b9cca4f, + 0x7763e373, + 0x682e6ff3, + 0xd6b2b8a3, + 0x748f82ee, + 0x5defb2fc, + 0x78a5636f, + 0x43172f60, + 0x84c87814, + 0xa1f0ab72, + 0x8cc70208, + 0x1a6439ec, + 0x90befffa, + 0x23631e28, + 0xa4506ceb, + 0xde82bde9, + 0xbef9a3f7, + 0xb2c67915, + 0xc67178f2, + 0xe372532b, + 0xca273ece, + 0xea26619c, + 0xd186b8c7, + 0x21c0c207, + 0xeada7dd6, + 0xcde0eb1e, + 0xf57d4f7f, + 0xee6ed178, + 0x06f067aa, + 0x72176fba, + 0x0a637dc5, + 0xa2c898a6, + 0x113f9804, + 0xbef90dae, + 0x1b710b35, + 0x131c471b, + 0x28db77f5, + 0x23047d84, + 0x32caab7b, + 0x40c72493, + 0x3c9ebe0a, + 0x15c9bebc, + 0x431d67c4, + 0x9c100d4c, + 0x4cc5d4be, + 0xcb3e42b6, + 0x597f299c, + 0xfc657e2a, + 0x5fcb6fab, + 0x3ad6faec, + 0x6c44198c, + 0x4a475817 + ] + + function SHA512() { + if (!(this instanceof SHA512)) return new SHA512() + + BlockHash.call(this) + this.h = [ + 0x6a09e667, + 0xf3bcc908, + 0xbb67ae85, + 0x84caa73b, + 0x3c6ef372, + 0xfe94f82b, + 0xa54ff53a, + 0x5f1d36f1, + 0x510e527f, + 0xade682d1, + 0x9b05688c, + 0x2b3e6c1f, + 0x1f83d9ab, + 0xfb41bd6b, + 0x5be0cd19, + 0x137e2179 + ] + this.k = sha512_K + this.W = new Array(160) + } + utils.inherits(SHA512, BlockHash) + module.exports = SHA512 + + SHA512.blockSize = 1024 + SHA512.outSize = 512 + SHA512.hmacStrength = 192 + SHA512.padLength = 128 + + SHA512.prototype._prepareBlock = function _prepareBlock(msg, start) { + var W = this.W + + // 32 x 32bit words + for (var i = 0; i < 32; i++) W[i] = msg[start + i] + for (; i < W.length; i += 2) { + var c0_hi = g1_512_hi(W[i - 4], W[i - 3]) // i - 2 + var c0_lo = g1_512_lo(W[i - 4], W[i - 3]) + var c1_hi = W[i - 14] // i - 7 + var c1_lo = W[i - 13] + var c2_hi = g0_512_hi(W[i - 30], W[i - 29]) // i - 15 + var c2_lo = g0_512_lo(W[i - 30], W[i - 29]) + var c3_hi = W[i - 32] // i - 16 + var c3_lo = W[i - 31] + + W[i] = sum64_4_hi( + c0_hi, + c0_lo, + c1_hi, + c1_lo, + c2_hi, + c2_lo, + c3_hi, + c3_lo + ) + W[i + 1] = sum64_4_lo( + c0_hi, + c0_lo, + c1_hi, + c1_lo, + c2_hi, + c2_lo, + c3_hi, + c3_lo + ) + } + } + + SHA512.prototype._update = function _update(msg, start) { + this._prepareBlock(msg, start) + + var W = this.W + + var ah = this.h[0] + var al = this.h[1] + var bh = this.h[2] + var bl = this.h[3] + var ch = this.h[4] + var cl = this.h[5] + var dh = this.h[6] + var dl = this.h[7] + var eh = this.h[8] + var el = this.h[9] + var fh = this.h[10] + var fl = this.h[11] + var gh = this.h[12] + var gl = this.h[13] + var hh = this.h[14] + var hl = this.h[15] + + assert(this.k.length === W.length) + for (var i = 0; i < W.length; i += 2) { + var c0_hi = hh + var c0_lo = hl + var c1_hi = s1_512_hi(eh, el) + var c1_lo = s1_512_lo(eh, el) + var c2_hi = ch64_hi(eh, el, fh, fl, gh, gl) + var c2_lo = ch64_lo(eh, el, fh, fl, gh, gl) + var c3_hi = this.k[i] + var c3_lo = this.k[i + 1] + var c4_hi = W[i] + var c4_lo = W[i + 1] + + var T1_hi = sum64_5_hi( + c0_hi, + c0_lo, + c1_hi, + c1_lo, + c2_hi, + c2_lo, + c3_hi, + c3_lo, + c4_hi, + c4_lo + ) + var T1_lo = sum64_5_lo( + c0_hi, + c0_lo, + c1_hi, + c1_lo, + c2_hi, + c2_lo, + c3_hi, + c3_lo, + c4_hi, + c4_lo + ) + + c0_hi = s0_512_hi(ah, al) + c0_lo = s0_512_lo(ah, al) + c1_hi = maj64_hi(ah, al, bh, bl, ch, cl) + c1_lo = maj64_lo(ah, al, bh, bl, ch, cl) + + var T2_hi = sum64_hi(c0_hi, c0_lo, c1_hi, c1_lo) + var T2_lo = sum64_lo(c0_hi, c0_lo, c1_hi, c1_lo) + + hh = gh + hl = gl + + gh = fh + gl = fl + + fh = eh + fl = el + + eh = sum64_hi(dh, dl, T1_hi, T1_lo) + el = sum64_lo(dl, dl, T1_hi, T1_lo) + + dh = ch + dl = cl + + ch = bh + cl = bl + + bh = ah + bl = al + + ah = sum64_hi(T1_hi, T1_lo, T2_hi, T2_lo) + al = sum64_lo(T1_hi, T1_lo, T2_hi, T2_lo) + } + + sum64(this.h, 0, ah, al) + sum64(this.h, 2, bh, bl) + sum64(this.h, 4, ch, cl) + sum64(this.h, 6, dh, dl) + sum64(this.h, 8, eh, el) + sum64(this.h, 10, fh, fl) + sum64(this.h, 12, gh, gl) + sum64(this.h, 14, hh, hl) + } + + SHA512.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h, "big") + else return utils.split32(this.h, "big") + } + + function ch64_hi(xh, xl, yh, yl, zh) { + var r = (xh & yh) ^ (~xh & zh) + if (r < 0) r += 0x100000000 + return r + } + + function ch64_lo(xh, xl, yh, yl, zh, zl) { + var r = (xl & yl) ^ (~xl & zl) + if (r < 0) r += 0x100000000 + return r + } + + function maj64_hi(xh, xl, yh, yl, zh) { + var r = (xh & yh) ^ (xh & zh) ^ (yh & zh) + if (r < 0) r += 0x100000000 + return r + } + + function maj64_lo(xh, xl, yh, yl, zh, zl) { + var r = (xl & yl) ^ (xl & zl) ^ (yl & zl) + if (r < 0) r += 0x100000000 + return r + } + + function s0_512_hi(xh, xl) { + var c0_hi = rotr64_hi(xh, xl, 28) + var c1_hi = rotr64_hi(xl, xh, 2) // 34 + var c2_hi = rotr64_hi(xl, xh, 7) // 39 + + var r = c0_hi ^ c1_hi ^ c2_hi + if (r < 0) r += 0x100000000 + return r + } + + function s0_512_lo(xh, xl) { + var c0_lo = rotr64_lo(xh, xl, 28) + var c1_lo = rotr64_lo(xl, xh, 2) // 34 + var c2_lo = rotr64_lo(xl, xh, 7) // 39 + + var r = c0_lo ^ c1_lo ^ c2_lo + if (r < 0) r += 0x100000000 + return r + } + + function s1_512_hi(xh, xl) { + var c0_hi = rotr64_hi(xh, xl, 14) + var c1_hi = rotr64_hi(xh, xl, 18) + var c2_hi = rotr64_hi(xl, xh, 9) // 41 + + var r = c0_hi ^ c1_hi ^ c2_hi + if (r < 0) r += 0x100000000 + return r + } + + function s1_512_lo(xh, xl) { + var c0_lo = rotr64_lo(xh, xl, 14) + var c1_lo = rotr64_lo(xh, xl, 18) + var c2_lo = rotr64_lo(xl, xh, 9) // 41 + + var r = c0_lo ^ c1_lo ^ c2_lo + if (r < 0) r += 0x100000000 + return r + } + + function g0_512_hi(xh, xl) { + var c0_hi = rotr64_hi(xh, xl, 1) + var c1_hi = rotr64_hi(xh, xl, 8) + var c2_hi = shr64_hi(xh, xl, 7) + + var r = c0_hi ^ c1_hi ^ c2_hi + if (r < 0) r += 0x100000000 + return r + } + + function g0_512_lo(xh, xl) { + var c0_lo = rotr64_lo(xh, xl, 1) + var c1_lo = rotr64_lo(xh, xl, 8) + var c2_lo = shr64_lo(xh, xl, 7) + + var r = c0_lo ^ c1_lo ^ c2_lo + if (r < 0) r += 0x100000000 + return r + } + + function g1_512_hi(xh, xl) { + var c0_hi = rotr64_hi(xh, xl, 19) + var c1_hi = rotr64_hi(xl, xh, 29) // 61 + var c2_hi = shr64_hi(xh, xl, 6) + + var r = c0_hi ^ c1_hi ^ c2_hi + if (r < 0) r += 0x100000000 + return r + } + + function g1_512_lo(xh, xl) { + var c0_lo = rotr64_lo(xh, xl, 19) + var c1_lo = rotr64_lo(xl, xh, 29) // 61 + var c2_lo = shr64_lo(xh, xl, 6) + + var r = c0_lo ^ c1_lo ^ c2_lo + if (r < 0) r += 0x100000000 + return r + } + }, + { "../common": 62, "../utils": 72, "minimalistic-assert": 76 } + ], + 71: [ + function(require, module, exports) { + "use strict" + + var utils = require("../utils") + var rotr32 = utils.rotr32 + + function ft_1(s, x, y, z) { + if (s === 0) return ch32(x, y, z) + if (s === 1 || s === 3) return p32(x, y, z) + if (s === 2) return maj32(x, y, z) + } + exports.ft_1 = ft_1 + + function ch32(x, y, z) { + return (x & y) ^ (~x & z) + } + exports.ch32 = ch32 + + function maj32(x, y, z) { + return (x & y) ^ (x & z) ^ (y & z) + } + exports.maj32 = maj32 + + function p32(x, y, z) { + return x ^ y ^ z + } + exports.p32 = p32 + + function s0_256(x) { + return rotr32(x, 2) ^ rotr32(x, 13) ^ rotr32(x, 22) + } + exports.s0_256 = s0_256 + + function s1_256(x) { + return rotr32(x, 6) ^ rotr32(x, 11) ^ rotr32(x, 25) + } + exports.s1_256 = s1_256 + + function g0_256(x) { + return rotr32(x, 7) ^ rotr32(x, 18) ^ (x >>> 3) + } + exports.g0_256 = g0_256 + + function g1_256(x) { + return rotr32(x, 17) ^ rotr32(x, 19) ^ (x >>> 10) + } + exports.g1_256 = g1_256 + }, + { "../utils": 72 } + ], + 72: [ + function(require, module, exports) { + "use strict" + + var assert = require("minimalistic-assert") + var inherits = require("inherits") + + exports.inherits = inherits + + function toArray(msg, enc) { + if (Array.isArray(msg)) return msg.slice() + if (!msg) return [] + var res = [] + if (typeof msg === "string") { + if (!enc) { + for (var i = 0; i < msg.length; i++) { + var c = msg.charCodeAt(i) + var hi = c >> 8 + var lo = c & 0xff + if (hi) res.push(hi, lo) + else res.push(lo) + } + } else if (enc === "hex") { + msg = msg.replace(/[^a-z0-9]+/gi, "") + if (msg.length % 2 !== 0) msg = "0" + msg + for (i = 0; i < msg.length; i += 2) + res.push(parseInt(msg[i] + msg[i + 1], 16)) + } + } else { + for (i = 0; i < msg.length; i++) res[i] = msg[i] | 0 + } + return res + } + exports.toArray = toArray + + function toHex(msg) { + var res = "" + for (var i = 0; i < msg.length; i++) + res += zero2(msg[i].toString(16)) + return res + } + exports.toHex = toHex + + function htonl(w) { + var res = + (w >>> 24) | + ((w >>> 8) & 0xff00) | + ((w << 8) & 0xff0000) | + ((w & 0xff) << 24) + return res >>> 0 + } + exports.htonl = htonl + + function toHex32(msg, endian) { + var res = "" + for (var i = 0; i < msg.length; i++) { + var w = msg[i] + if (endian === "little") w = htonl(w) + res += zero8(w.toString(16)) + } + return res + } + exports.toHex32 = toHex32 + + function zero2(word) { + if (word.length === 1) return "0" + word + else return word + } + exports.zero2 = zero2 + + function zero8(word) { + if (word.length === 7) return "0" + word + else if (word.length === 6) return "00" + word + else if (word.length === 5) return "000" + word + else if (word.length === 4) return "0000" + word + else if (word.length === 3) return "00000" + word + else if (word.length === 2) return "000000" + word + else if (word.length === 1) return "0000000" + word + else return word + } + exports.zero8 = zero8 + + function join32(msg, start, end, endian) { + var len = end - start + assert(len % 4 === 0) + var res = new Array(len / 4) + for (var i = 0, k = start; i < res.length; i++, k += 4) { + var w + if (endian === "big") + w = + (msg[k] << 24) | + (msg[k + 1] << 16) | + (msg[k + 2] << 8) | + msg[k + 3] + else + w = + (msg[k + 3] << 24) | + (msg[k + 2] << 16) | + (msg[k + 1] << 8) | + msg[k] + res[i] = w >>> 0 + } + return res + } + exports.join32 = join32 + + function split32(msg, endian) { + var res = new Array(msg.length * 4) + for (var i = 0, k = 0; i < msg.length; i++, k += 4) { + var m = msg[i] + if (endian === "big") { + res[k] = m >>> 24 + res[k + 1] = (m >>> 16) & 0xff + res[k + 2] = (m >>> 8) & 0xff + res[k + 3] = m & 0xff + } else { + res[k + 3] = m >>> 24 + res[k + 2] = (m >>> 16) & 0xff + res[k + 1] = (m >>> 8) & 0xff + res[k] = m & 0xff + } + } + return res + } + exports.split32 = split32 + + function rotr32(w, b) { + return (w >>> b) | (w << (32 - b)) + } + exports.rotr32 = rotr32 + + function rotl32(w, b) { + return (w << b) | (w >>> (32 - b)) + } + exports.rotl32 = rotl32 + + function sum32(a, b) { + return (a + b) >>> 0 + } + exports.sum32 = sum32 + + function sum32_3(a, b, c) { + return (a + b + c) >>> 0 + } + exports.sum32_3 = sum32_3 + + function sum32_4(a, b, c, d) { + return (a + b + c + d) >>> 0 + } + exports.sum32_4 = sum32_4 + + function sum32_5(a, b, c, d, e) { + return (a + b + c + d + e) >>> 0 + } + exports.sum32_5 = sum32_5 + + function sum64(buf, pos, ah, al) { + var bh = buf[pos] + var bl = buf[pos + 1] + + var lo = (al + bl) >>> 0 + var hi = (lo < al ? 1 : 0) + ah + bh + buf[pos] = hi >>> 0 + buf[pos + 1] = lo + } + exports.sum64 = sum64 + + function sum64_hi(ah, al, bh, bl) { + var lo = (al + bl) >>> 0 + var hi = (lo < al ? 1 : 0) + ah + bh + return hi >>> 0 + } + exports.sum64_hi = sum64_hi + + function sum64_lo(ah, al, bh, bl) { + var lo = al + bl + return lo >>> 0 + } + exports.sum64_lo = sum64_lo + + function sum64_4_hi(ah, al, bh, bl, ch, cl, dh, dl) { + var carry = 0 + var lo = al + lo = (lo + bl) >>> 0 + carry += lo < al ? 1 : 0 + lo = (lo + cl) >>> 0 + carry += lo < cl ? 1 : 0 + lo = (lo + dl) >>> 0 + carry += lo < dl ? 1 : 0 + + var hi = ah + bh + ch + dh + carry + return hi >>> 0 + } + exports.sum64_4_hi = sum64_4_hi + + function sum64_4_lo(ah, al, bh, bl, ch, cl, dh, dl) { + var lo = al + bl + cl + dl + return lo >>> 0 + } + exports.sum64_4_lo = sum64_4_lo + + function sum64_5_hi(ah, al, bh, bl, ch, cl, dh, dl, eh, el) { + var carry = 0 + var lo = al + lo = (lo + bl) >>> 0 + carry += lo < al ? 1 : 0 + lo = (lo + cl) >>> 0 + carry += lo < cl ? 1 : 0 + lo = (lo + dl) >>> 0 + carry += lo < dl ? 1 : 0 + lo = (lo + el) >>> 0 + carry += lo < el ? 1 : 0 + + var hi = ah + bh + ch + dh + eh + carry + return hi >>> 0 + } + exports.sum64_5_hi = sum64_5_hi + + function sum64_5_lo(ah, al, bh, bl, ch, cl, dh, dl, eh, el) { + var lo = al + bl + cl + dl + el + + return lo >>> 0 + } + exports.sum64_5_lo = sum64_5_lo + + function rotr64_hi(ah, al, num) { + var r = (al << (32 - num)) | (ah >>> num) + return r >>> 0 + } + exports.rotr64_hi = rotr64_hi + + function rotr64_lo(ah, al, num) { + var r = (ah << (32 - num)) | (al >>> num) + return r >>> 0 + } + exports.rotr64_lo = rotr64_lo + + function shr64_hi(ah, al, num) { + return ah >>> num + } + exports.shr64_hi = shr64_hi + + function shr64_lo(ah, al, num) { + var r = (ah << (32 - num)) | (al >>> num) + return r >>> 0 + } + exports.shr64_lo = shr64_lo + }, + { inherits: 74, "minimalistic-assert": 76 } + ], + 73: [ + function(require, module, exports) { + "use strict" + + var hash = require("hash.js") + var utils = require("minimalistic-crypto-utils") + var assert = require("minimalistic-assert") + + function HmacDRBG(options) { + if (!(this instanceof HmacDRBG)) return new HmacDRBG(options) + this.hash = options.hash + this.predResist = !!options.predResist + + this.outLen = this.hash.outSize + this.minEntropy = options.minEntropy || this.hash.hmacStrength + + this._reseed = null + this.reseedInterval = null + this.K = null + this.V = null + + var entropy = utils.toArray( + options.entropy, + options.entropyEnc || "hex" + ) + var nonce = utils.toArray(options.nonce, options.nonceEnc || "hex") + var pers = utils.toArray(options.pers, options.persEnc || "hex") + assert( + entropy.length >= this.minEntropy / 8, + "Not enough entropy. Minimum is: " + this.minEntropy + " bits" + ) + this._init(entropy, nonce, pers) + } + module.exports = HmacDRBG + + HmacDRBG.prototype._init = function init(entropy, nonce, pers) { + var seed = entropy.concat(nonce).concat(pers) + + this.K = new Array(this.outLen / 8) + this.V = new Array(this.outLen / 8) + for (var i = 0; i < this.V.length; i++) { + this.K[i] = 0x00 + this.V[i] = 0x01 + } + + this._update(seed) + this._reseed = 1 + this.reseedInterval = 0x1000000000000 // 2^48 + } + + HmacDRBG.prototype._hmac = function hmac() { + return new hash.hmac(this.hash, this.K) + } + + HmacDRBG.prototype._update = function update(seed) { + var kmac = this._hmac() + .update(this.V) + .update([0x00]) + if (seed) kmac = kmac.update(seed) + this.K = kmac.digest() + this.V = this._hmac() + .update(this.V) + .digest() + if (!seed) return + + this.K = this._hmac() + .update(this.V) + .update([0x01]) + .update(seed) + .digest() + this.V = this._hmac() + .update(this.V) + .digest() + } + + HmacDRBG.prototype.reseed = function reseed( + entropy, + entropyEnc, + add, + addEnc + ) { + // Optional entropy enc + if (typeof entropyEnc !== "string") { + addEnc = add + add = entropyEnc + entropyEnc = null + } + + entropy = utils.toArray(entropy, entropyEnc) + add = utils.toArray(add, addEnc) + + assert( + entropy.length >= this.minEntropy / 8, + "Not enough entropy. Minimum is: " + this.minEntropy + " bits" + ) + + this._update(entropy.concat(add || [])) + this._reseed = 1 + } + + HmacDRBG.prototype.generate = function generate( + len, + enc, + add, + addEnc + ) { + if (this._reseed > this.reseedInterval) + throw new Error("Reseed is required") + + // Optional encoding + if (typeof enc !== "string") { + addEnc = add + add = enc + enc = null + } + + // Optional additional data + if (add) { + add = utils.toArray(add, addEnc || "hex") + this._update(add) + } + + var temp = [] + while (temp.length < len) { + this.V = this._hmac() + .update(this.V) + .digest() + temp = temp.concat(this.V) + } + + var res = temp.slice(0, len) + this._update(add) + this._reseed++ + return utils.encode(res, enc) + } + }, + { + "hash.js": 61, + "minimalistic-assert": 76, + "minimalistic-crypto-utils": 77 + } + ], + 74: [ + function(require, module, exports) { + arguments[4][7][0].apply(exports, arguments) + }, + { dup: 7 } + ], + 75: [ + function(require, module, exports) { + "use strict" + var inherits = require("inherits") + var HashBase = require("hash-base") + var Buffer = require("safe-buffer").Buffer + + var ARRAY16 = new Array(16) + + function MD5() { + HashBase.call(this, 64) + + // state + this._a = 0x67452301 + this._b = 0xefcdab89 + this._c = 0x98badcfe + this._d = 0x10325476 + } + + inherits(MD5, HashBase) + + MD5.prototype._update = function() { + var M = ARRAY16 + for (var i = 0; i < 16; ++i) M[i] = this._block.readInt32LE(i * 4) + + var a = this._a + var b = this._b + var c = this._c + var d = this._d + + a = fnF(a, b, c, d, M[0], 0xd76aa478, 7) + d = fnF(d, a, b, c, M[1], 0xe8c7b756, 12) + c = fnF(c, d, a, b, M[2], 0x242070db, 17) + b = fnF(b, c, d, a, M[3], 0xc1bdceee, 22) + a = fnF(a, b, c, d, M[4], 0xf57c0faf, 7) + d = fnF(d, a, b, c, M[5], 0x4787c62a, 12) + c = fnF(c, d, a, b, M[6], 0xa8304613, 17) + b = fnF(b, c, d, a, M[7], 0xfd469501, 22) + a = fnF(a, b, c, d, M[8], 0x698098d8, 7) + d = fnF(d, a, b, c, M[9], 0x8b44f7af, 12) + c = fnF(c, d, a, b, M[10], 0xffff5bb1, 17) + b = fnF(b, c, d, a, M[11], 0x895cd7be, 22) + a = fnF(a, b, c, d, M[12], 0x6b901122, 7) + d = fnF(d, a, b, c, M[13], 0xfd987193, 12) + c = fnF(c, d, a, b, M[14], 0xa679438e, 17) + b = fnF(b, c, d, a, M[15], 0x49b40821, 22) + + a = fnG(a, b, c, d, M[1], 0xf61e2562, 5) + d = fnG(d, a, b, c, M[6], 0xc040b340, 9) + c = fnG(c, d, a, b, M[11], 0x265e5a51, 14) + b = fnG(b, c, d, a, M[0], 0xe9b6c7aa, 20) + a = fnG(a, b, c, d, M[5], 0xd62f105d, 5) + d = fnG(d, a, b, c, M[10], 0x02441453, 9) + c = fnG(c, d, a, b, M[15], 0xd8a1e681, 14) + b = fnG(b, c, d, a, M[4], 0xe7d3fbc8, 20) + a = fnG(a, b, c, d, M[9], 0x21e1cde6, 5) + d = fnG(d, a, b, c, M[14], 0xc33707d6, 9) + c = fnG(c, d, a, b, M[3], 0xf4d50d87, 14) + b = fnG(b, c, d, a, M[8], 0x455a14ed, 20) + a = fnG(a, b, c, d, M[13], 0xa9e3e905, 5) + d = fnG(d, a, b, c, M[2], 0xfcefa3f8, 9) + c = fnG(c, d, a, b, M[7], 0x676f02d9, 14) + b = fnG(b, c, d, a, M[12], 0x8d2a4c8a, 20) + + a = fnH(a, b, c, d, M[5], 0xfffa3942, 4) + d = fnH(d, a, b, c, M[8], 0x8771f681, 11) + c = fnH(c, d, a, b, M[11], 0x6d9d6122, 16) + b = fnH(b, c, d, a, M[14], 0xfde5380c, 23) + a = fnH(a, b, c, d, M[1], 0xa4beea44, 4) + d = fnH(d, a, b, c, M[4], 0x4bdecfa9, 11) + c = fnH(c, d, a, b, M[7], 0xf6bb4b60, 16) + b = fnH(b, c, d, a, M[10], 0xbebfbc70, 23) + a = fnH(a, b, c, d, M[13], 0x289b7ec6, 4) + d = fnH(d, a, b, c, M[0], 0xeaa127fa, 11) + c = fnH(c, d, a, b, M[3], 0xd4ef3085, 16) + b = fnH(b, c, d, a, M[6], 0x04881d05, 23) + a = fnH(a, b, c, d, M[9], 0xd9d4d039, 4) + d = fnH(d, a, b, c, M[12], 0xe6db99e5, 11) + c = fnH(c, d, a, b, M[15], 0x1fa27cf8, 16) + b = fnH(b, c, d, a, M[2], 0xc4ac5665, 23) + + a = fnI(a, b, c, d, M[0], 0xf4292244, 6) + d = fnI(d, a, b, c, M[7], 0x432aff97, 10) + c = fnI(c, d, a, b, M[14], 0xab9423a7, 15) + b = fnI(b, c, d, a, M[5], 0xfc93a039, 21) + a = fnI(a, b, c, d, M[12], 0x655b59c3, 6) + d = fnI(d, a, b, c, M[3], 0x8f0ccc92, 10) + c = fnI(c, d, a, b, M[10], 0xffeff47d, 15) + b = fnI(b, c, d, a, M[1], 0x85845dd1, 21) + a = fnI(a, b, c, d, M[8], 0x6fa87e4f, 6) + d = fnI(d, a, b, c, M[15], 0xfe2ce6e0, 10) + c = fnI(c, d, a, b, M[6], 0xa3014314, 15) + b = fnI(b, c, d, a, M[13], 0x4e0811a1, 21) + a = fnI(a, b, c, d, M[4], 0xf7537e82, 6) + d = fnI(d, a, b, c, M[11], 0xbd3af235, 10) + c = fnI(c, d, a, b, M[2], 0x2ad7d2bb, 15) + b = fnI(b, c, d, a, M[9], 0xeb86d391, 21) + + this._a = (this._a + a) | 0 + this._b = (this._b + b) | 0 + this._c = (this._c + c) | 0 + this._d = (this._d + d) | 0 + } + + MD5.prototype._digest = function() { + // create padding and handle blocks + this._block[this._blockOffset++] = 0x80 + if (this._blockOffset > 56) { + this._block.fill(0, this._blockOffset, 64) + this._update() + this._blockOffset = 0 + } + + this._block.fill(0, this._blockOffset, 56) + this._block.writeUInt32LE(this._length[0], 56) + this._block.writeUInt32LE(this._length[1], 60) + this._update() + + // produce result + var buffer = Buffer.allocUnsafe(16) + buffer.writeInt32LE(this._a, 0) + buffer.writeInt32LE(this._b, 4) + buffer.writeInt32LE(this._c, 8) + buffer.writeInt32LE(this._d, 12) + return buffer + } + + function rotl(x, n) { + return (x << n) | (x >>> (32 - n)) + } + + function fnF(a, b, c, d, m, k, s) { + return (rotl((a + ((b & c) | (~b & d)) + m + k) | 0, s) + b) | 0 + } + + function fnG(a, b, c, d, m, k, s) { + return (rotl((a + ((b & d) | (c & ~d)) + m + k) | 0, s) + b) | 0 + } + + function fnH(a, b, c, d, m, k, s) { + return (rotl((a + (b ^ c ^ d) + m + k) | 0, s) + b) | 0 + } + + function fnI(a, b, c, d, m, k, s) { + return (rotl((a + (c ^ (b | ~d)) + m + k) | 0, s) + b) | 0 + } + + module.exports = MD5 + }, + { "hash-base": 60, inherits: 74, "safe-buffer": 79 } + ], + 76: [ + function(require, module, exports) { + module.exports = assert + + function assert(val, msg) { + if (!val) throw new Error(msg || "Assertion failed") + } + + assert.equal = function assertEqual(l, r, msg) { + if (l != r) + throw new Error(msg || "Assertion failed: " + l + " != " + r) + } + }, + {} + ], + 77: [ + function(require, module, exports) { + "use strict" + + var utils = exports + + function toArray(msg, enc) { + if (Array.isArray(msg)) return msg.slice() + if (!msg) return [] + var res = [] + if (typeof msg !== "string") { + for (var i = 0; i < msg.length; i++) res[i] = msg[i] | 0 + return res + } + if (enc === "hex") { + msg = msg.replace(/[^a-z0-9]+/gi, "") + if (msg.length % 2 !== 0) msg = "0" + msg + for (var i = 0; i < msg.length; i += 2) + res.push(parseInt(msg[i] + msg[i + 1], 16)) + } else { + for (var i = 0; i < msg.length; i++) { + var c = msg.charCodeAt(i) + var hi = c >> 8 + var lo = c & 0xff + if (hi) res.push(hi, lo) + else res.push(lo) + } + } + return res + } + utils.toArray = toArray + + function zero2(word) { + if (word.length === 1) return "0" + word + else return word + } + utils.zero2 = zero2 + + function toHex(msg) { + var res = "" + for (var i = 0; i < msg.length; i++) + res += zero2(msg[i].toString(16)) + return res + } + utils.toHex = toHex + + utils.encode = function encode(arr, enc) { + if (enc === "hex") return toHex(arr) + else return arr + } + }, + {} + ], + 78: [ + function(require, module, exports) { + "use strict" + var Buffer = require("buffer").Buffer + var inherits = require("inherits") + var HashBase = require("hash-base") + + var ARRAY16 = new Array(16) + + var zl = [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 7, + 4, + 13, + 1, + 10, + 6, + 15, + 3, + 12, + 0, + 9, + 5, + 2, + 14, + 11, + 8, + 3, + 10, + 14, + 4, + 9, + 15, + 8, + 1, + 2, + 7, + 0, + 6, + 13, + 11, + 5, + 12, + 1, + 9, + 11, + 10, + 0, + 8, + 12, + 4, + 13, + 3, + 7, + 15, + 14, + 5, + 6, + 2, + 4, + 0, + 5, + 9, + 7, + 12, + 2, + 10, + 14, + 1, + 3, + 8, + 11, + 6, + 15, + 13 + ] + + var zr = [ + 5, + 14, + 7, + 0, + 9, + 2, + 11, + 4, + 13, + 6, + 15, + 8, + 1, + 10, + 3, + 12, + 6, + 11, + 3, + 7, + 0, + 13, + 5, + 10, + 14, + 15, + 8, + 12, + 4, + 9, + 1, + 2, + 15, + 5, + 1, + 3, + 7, + 14, + 6, + 9, + 11, + 8, + 12, + 2, + 10, + 0, + 4, + 13, + 8, + 6, + 4, + 1, + 3, + 11, + 15, + 0, + 5, + 12, + 2, + 13, + 9, + 7, + 10, + 14, + 12, + 15, + 10, + 4, + 1, + 5, + 8, + 7, + 6, + 2, + 13, + 14, + 0, + 3, + 9, + 11 + ] + + var sl = [ + 11, + 14, + 15, + 12, + 5, + 8, + 7, + 9, + 11, + 13, + 14, + 15, + 6, + 7, + 9, + 8, + 7, + 6, + 8, + 13, + 11, + 9, + 7, + 15, + 7, + 12, + 15, + 9, + 11, + 7, + 13, + 12, + 11, + 13, + 6, + 7, + 14, + 9, + 13, + 15, + 14, + 8, + 13, + 6, + 5, + 12, + 7, + 5, + 11, + 12, + 14, + 15, + 14, + 15, + 9, + 8, + 9, + 14, + 5, + 6, + 8, + 6, + 5, + 12, + 9, + 15, + 5, + 11, + 6, + 8, + 13, + 12, + 5, + 12, + 13, + 14, + 11, + 8, + 5, + 6 + ] + + var sr = [ + 8, + 9, + 9, + 11, + 13, + 15, + 15, + 5, + 7, + 7, + 8, + 11, + 14, + 14, + 12, + 6, + 9, + 13, + 15, + 7, + 12, + 8, + 9, + 11, + 7, + 7, + 12, + 7, + 6, + 15, + 13, + 11, + 9, + 7, + 15, + 11, + 8, + 6, + 6, + 14, + 12, + 13, + 5, + 14, + 13, + 13, + 7, + 5, + 15, + 5, + 8, + 11, + 14, + 14, + 6, + 14, + 6, + 9, + 12, + 9, + 12, + 5, + 15, + 8, + 8, + 5, + 12, + 9, + 12, + 5, + 14, + 6, + 8, + 13, + 6, + 5, + 15, + 13, + 11, + 11 + ] + + var hl = [0x00000000, 0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xa953fd4e] + var hr = [0x50a28be6, 0x5c4dd124, 0x6d703ef3, 0x7a6d76e9, 0x00000000] + + function RIPEMD160() { + HashBase.call(this, 64) + + // state + this._a = 0x67452301 + this._b = 0xefcdab89 + this._c = 0x98badcfe + this._d = 0x10325476 + this._e = 0xc3d2e1f0 + } + + inherits(RIPEMD160, HashBase) + + RIPEMD160.prototype._update = function() { + var words = ARRAY16 + for (var j = 0; j < 16; ++j) + words[j] = this._block.readInt32LE(j * 4) + + var al = this._a | 0 + var bl = this._b | 0 + var cl = this._c | 0 + var dl = this._d | 0 + var el = this._e | 0 + + var ar = this._a | 0 + var br = this._b | 0 + var cr = this._c | 0 + var dr = this._d | 0 + var er = this._e | 0 + + // computation + for (var i = 0; i < 80; i += 1) { + var tl + var tr + if (i < 16) { + tl = fn1(al, bl, cl, dl, el, words[zl[i]], hl[0], sl[i]) + tr = fn5(ar, br, cr, dr, er, words[zr[i]], hr[0], sr[i]) + } else if (i < 32) { + tl = fn2(al, bl, cl, dl, el, words[zl[i]], hl[1], sl[i]) + tr = fn4(ar, br, cr, dr, er, words[zr[i]], hr[1], sr[i]) + } else if (i < 48) { + tl = fn3(al, bl, cl, dl, el, words[zl[i]], hl[2], sl[i]) + tr = fn3(ar, br, cr, dr, er, words[zr[i]], hr[2], sr[i]) + } else if (i < 64) { + tl = fn4(al, bl, cl, dl, el, words[zl[i]], hl[3], sl[i]) + tr = fn2(ar, br, cr, dr, er, words[zr[i]], hr[3], sr[i]) + } else { + // if (i<80) { + tl = fn5(al, bl, cl, dl, el, words[zl[i]], hl[4], sl[i]) + tr = fn1(ar, br, cr, dr, er, words[zr[i]], hr[4], sr[i]) + } + + al = el + el = dl + dl = rotl(cl, 10) + cl = bl + bl = tl + + ar = er + er = dr + dr = rotl(cr, 10) + cr = br + br = tr + } + + // update state + var t = (this._b + cl + dr) | 0 + this._b = (this._c + dl + er) | 0 + this._c = (this._d + el + ar) | 0 + this._d = (this._e + al + br) | 0 + this._e = (this._a + bl + cr) | 0 + this._a = t + } + + RIPEMD160.prototype._digest = function() { + // create padding and handle blocks + this._block[this._blockOffset++] = 0x80 + if (this._blockOffset > 56) { + this._block.fill(0, this._blockOffset, 64) + this._update() + this._blockOffset = 0 + } + + this._block.fill(0, this._blockOffset, 56) + this._block.writeUInt32LE(this._length[0], 56) + this._block.writeUInt32LE(this._length[1], 60) + this._update() + + // produce result + var buffer = Buffer.alloc ? Buffer.alloc(20) : new Buffer(20) + buffer.writeInt32LE(this._a, 0) + buffer.writeInt32LE(this._b, 4) + buffer.writeInt32LE(this._c, 8) + buffer.writeInt32LE(this._d, 12) + buffer.writeInt32LE(this._e, 16) + return buffer + } + + function rotl(x, n) { + return (x << n) | (x >>> (32 - n)) + } + + function fn1(a, b, c, d, e, m, k, s) { + return (rotl((a + (b ^ c ^ d) + m + k) | 0, s) + e) | 0 + } + + function fn2(a, b, c, d, e, m, k, s) { + return (rotl((a + ((b & c) | (~b & d)) + m + k) | 0, s) + e) | 0 + } + + function fn3(a, b, c, d, e, m, k, s) { + return (rotl((a + ((b | ~c) ^ d) + m + k) | 0, s) + e) | 0 + } + + function fn4(a, b, c, d, e, m, k, s) { + return (rotl((a + ((b & d) | (c & ~d)) + m + k) | 0, s) + e) | 0 + } + + function fn5(a, b, c, d, e, m, k, s) { + return (rotl((a + (b ^ (c | ~d)) + m + k) | 0, s) + e) | 0 + } + + module.exports = RIPEMD160 + }, + { buffer: 3, "hash-base": 60, inherits: 74 } + ], + 79: [ + function(require, module, exports) { + arguments[4][26][0].apply(exports, arguments) + }, + { buffer: 3, dup: 26 } + ], + 80: [ + function(require, module, exports) { + var Buffer = require("safe-buffer").Buffer + + // prototype class for hash functions + function Hash(blockSize, finalSize) { + this._block = Buffer.alloc(blockSize) + this._finalSize = finalSize + this._blockSize = blockSize + this._len = 0 + } + + Hash.prototype.update = function(data, enc) { + if (typeof data === "string") { + enc = enc || "utf8" + data = Buffer.from(data, enc) + } + + var block = this._block + var blockSize = this._blockSize + var length = data.length + var accum = this._len + + for (var offset = 0; offset < length; ) { + var assigned = accum % blockSize + var remainder = Math.min(length - offset, blockSize - assigned) + + for (var i = 0; i < remainder; i++) { + block[assigned + i] = data[offset + i] + } + + accum += remainder + offset += remainder + + if (accum % blockSize === 0) { + this._update(block) + } + } + + this._len += length + return this + } + + Hash.prototype.digest = function(enc) { + var rem = this._len % this._blockSize + + this._block[rem] = 0x80 + + // zero (rem + 1) trailing bits, where (rem + 1) is the smallest + // non-negative solution to the equation (length + 1 + (rem + 1)) === finalSize mod blockSize + this._block.fill(0, rem + 1) + + if (rem >= this._finalSize) { + this._update(this._block) + this._block.fill(0) + } + + var bits = this._len * 8 + + // uint32 + if (bits <= 0xffffffff) { + this._block.writeUInt32BE(bits, this._blockSize - 4) + + // uint64 + } else { + var lowBits = (bits & 0xffffffff) >>> 0 + var highBits = (bits - lowBits) / 0x100000000 + + this._block.writeUInt32BE(highBits, this._blockSize - 8) + this._block.writeUInt32BE(lowBits, this._blockSize - 4) + } + + this._update(this._block) + var hash = this._hash() + + return enc ? hash.toString(enc) : hash + } + + Hash.prototype._update = function() { + throw new Error("_update must be implemented by subclass") + } + + module.exports = Hash + }, + { "safe-buffer": 79 } + ], + 81: [ + function(require, module, exports) { + var exports = (module.exports = function SHA(algorithm) { + algorithm = algorithm.toLowerCase() + + var Algorithm = exports[algorithm] + if (!Algorithm) + throw new Error( + algorithm + " is not supported (we accept pull requests)" + ) + + return new Algorithm() + }) + + exports.sha = require("./sha") + exports.sha1 = require("./sha1") + exports.sha224 = require("./sha224") + exports.sha256 = require("./sha256") + exports.sha384 = require("./sha384") + exports.sha512 = require("./sha512") + }, + { + "./sha": 82, + "./sha1": 83, + "./sha224": 84, + "./sha256": 85, + "./sha384": 86, + "./sha512": 87 + } + ], + 82: [ + function(require, module, exports) { + /* + * A JavaScript implementation of the Secure Hash Algorithm, SHA-0, as defined + * in FIPS PUB 180-1 + * This source code is derived from sha1.js of the same repository. + * The difference between SHA-0 and SHA-1 is just a bitwise rotate left + * operation was added. + */ + + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + + var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc | 0, 0xca62c1d6 | 0] + + var W = new Array(80) + + function Sha() { + this.init() + this._w = W + + Hash.call(this, 64, 56) + } + + inherits(Sha, Hash) + + Sha.prototype.init = function() { + this._a = 0x67452301 + this._b = 0xefcdab89 + this._c = 0x98badcfe + this._d = 0x10325476 + this._e = 0xc3d2e1f0 + + return this + } + + function rotl5(num) { + return (num << 5) | (num >>> 27) + } + + function rotl30(num) { + return (num << 30) | (num >>> 2) + } + + function ft(s, b, c, d) { + if (s === 0) return (b & c) | (~b & d) + if (s === 2) return (b & c) | (b & d) | (c & d) + return b ^ c ^ d + } + + Sha.prototype._update = function(M) { + var W = this._w + + var a = this._a | 0 + var b = this._b | 0 + var c = this._c | 0 + var d = this._d | 0 + var e = this._e | 0 + + for (var i = 0; i < 16; ++i) W[i] = M.readInt32BE(i * 4) + for (; i < 80; ++i) + W[i] = W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16] + + for (var j = 0; j < 80; ++j) { + var s = ~~(j / 20) + var t = (rotl5(a) + ft(s, b, c, d) + e + W[j] + K[s]) | 0 + + e = d + d = c + c = rotl30(b) + b = a + a = t + } + + this._a = (a + this._a) | 0 + this._b = (b + this._b) | 0 + this._c = (c + this._c) | 0 + this._d = (d + this._d) | 0 + this._e = (e + this._e) | 0 + } + + Sha.prototype._hash = function() { + var H = Buffer.allocUnsafe(20) + + H.writeInt32BE(this._a | 0, 0) + H.writeInt32BE(this._b | 0, 4) + H.writeInt32BE(this._c | 0, 8) + H.writeInt32BE(this._d | 0, 12) + H.writeInt32BE(this._e | 0, 16) + + return H + } + + module.exports = Sha + }, + { "./hash": 80, inherits: 74, "safe-buffer": 79 } + ], + 83: [ + function(require, module, exports) { + /* + * A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined + * in FIPS PUB 180-1 + * Version 2.1a Copyright Paul Johnston 2000 - 2002. + * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet + * Distributed under the BSD License + * See http://pajhome.org.uk/crypt/md5 for details. + */ + + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + + var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc | 0, 0xca62c1d6 | 0] + + var W = new Array(80) + + function Sha1() { + this.init() + this._w = W + + Hash.call(this, 64, 56) + } + + inherits(Sha1, Hash) + + Sha1.prototype.init = function() { + this._a = 0x67452301 + this._b = 0xefcdab89 + this._c = 0x98badcfe + this._d = 0x10325476 + this._e = 0xc3d2e1f0 + + return this + } + + function rotl1(num) { + return (num << 1) | (num >>> 31) + } + + function rotl5(num) { + return (num << 5) | (num >>> 27) + } + + function rotl30(num) { + return (num << 30) | (num >>> 2) + } + + function ft(s, b, c, d) { + if (s === 0) return (b & c) | (~b & d) + if (s === 2) return (b & c) | (b & d) | (c & d) + return b ^ c ^ d + } + + Sha1.prototype._update = function(M) { + var W = this._w + + var a = this._a | 0 + var b = this._b | 0 + var c = this._c | 0 + var d = this._d | 0 + var e = this._e | 0 + + for (var i = 0; i < 16; ++i) W[i] = M.readInt32BE(i * 4) + for (; i < 80; ++i) + W[i] = rotl1(W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16]) + + for (var j = 0; j < 80; ++j) { + var s = ~~(j / 20) + var t = (rotl5(a) + ft(s, b, c, d) + e + W[j] + K[s]) | 0 + + e = d + d = c + c = rotl30(b) + b = a + a = t + } + + this._a = (a + this._a) | 0 + this._b = (b + this._b) | 0 + this._c = (c + this._c) | 0 + this._d = (d + this._d) | 0 + this._e = (e + this._e) | 0 + } + + Sha1.prototype._hash = function() { + var H = Buffer.allocUnsafe(20) + + H.writeInt32BE(this._a | 0, 0) + H.writeInt32BE(this._b | 0, 4) + H.writeInt32BE(this._c | 0, 8) + H.writeInt32BE(this._d | 0, 12) + H.writeInt32BE(this._e | 0, 16) + + return H + } + + module.exports = Sha1 + }, + { "./hash": 80, inherits: 74, "safe-buffer": 79 } + ], + 84: [ + function(require, module, exports) { + /** + * A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined + * in FIPS 180-2 + * Version 2.2-beta Copyright Angel Marin, Paul Johnston 2000 - 2009. + * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet + * + */ + + var inherits = require("inherits") + var Sha256 = require("./sha256") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + + var W = new Array(64) + + function Sha224() { + this.init() + + this._w = W // new Array(64) + + Hash.call(this, 64, 56) + } + + inherits(Sha224, Sha256) + + Sha224.prototype.init = function() { + this._a = 0xc1059ed8 + this._b = 0x367cd507 + this._c = 0x3070dd17 + this._d = 0xf70e5939 + this._e = 0xffc00b31 + this._f = 0x68581511 + this._g = 0x64f98fa7 + this._h = 0xbefa4fa4 + + return this + } + + Sha224.prototype._hash = function() { + var H = Buffer.allocUnsafe(28) + + H.writeInt32BE(this._a, 0) + H.writeInt32BE(this._b, 4) + H.writeInt32BE(this._c, 8) + H.writeInt32BE(this._d, 12) + H.writeInt32BE(this._e, 16) + H.writeInt32BE(this._f, 20) + H.writeInt32BE(this._g, 24) + + return H + } + + module.exports = Sha224 + }, + { "./hash": 80, "./sha256": 85, inherits: 74, "safe-buffer": 79 } + ], + 85: [ + function(require, module, exports) { + /** + * A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined + * in FIPS 180-2 + * Version 2.2-beta Copyright Angel Marin, Paul Johnston 2000 - 2009. + * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet + * + */ + + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + + var K = [ + 0x428a2f98, + 0x71374491, + 0xb5c0fbcf, + 0xe9b5dba5, + 0x3956c25b, + 0x59f111f1, + 0x923f82a4, + 0xab1c5ed5, + 0xd807aa98, + 0x12835b01, + 0x243185be, + 0x550c7dc3, + 0x72be5d74, + 0x80deb1fe, + 0x9bdc06a7, + 0xc19bf174, + 0xe49b69c1, + 0xefbe4786, + 0x0fc19dc6, + 0x240ca1cc, + 0x2de92c6f, + 0x4a7484aa, + 0x5cb0a9dc, + 0x76f988da, + 0x983e5152, + 0xa831c66d, + 0xb00327c8, + 0xbf597fc7, + 0xc6e00bf3, + 0xd5a79147, + 0x06ca6351, + 0x14292967, + 0x27b70a85, + 0x2e1b2138, + 0x4d2c6dfc, + 0x53380d13, + 0x650a7354, + 0x766a0abb, + 0x81c2c92e, + 0x92722c85, + 0xa2bfe8a1, + 0xa81a664b, + 0xc24b8b70, + 0xc76c51a3, + 0xd192e819, + 0xd6990624, + 0xf40e3585, + 0x106aa070, + 0x19a4c116, + 0x1e376c08, + 0x2748774c, + 0x34b0bcb5, + 0x391c0cb3, + 0x4ed8aa4a, + 0x5b9cca4f, + 0x682e6ff3, + 0x748f82ee, + 0x78a5636f, + 0x84c87814, + 0x8cc70208, + 0x90befffa, + 0xa4506ceb, + 0xbef9a3f7, + 0xc67178f2 + ] + + var W = new Array(64) + + function Sha256() { + this.init() + + this._w = W // new Array(64) + + Hash.call(this, 64, 56) + } + + inherits(Sha256, Hash) + + Sha256.prototype.init = function() { + this._a = 0x6a09e667 + this._b = 0xbb67ae85 + this._c = 0x3c6ef372 + this._d = 0xa54ff53a + this._e = 0x510e527f + this._f = 0x9b05688c + this._g = 0x1f83d9ab + this._h = 0x5be0cd19 + + return this + } + + function ch(x, y, z) { + return z ^ (x & (y ^ z)) + } + + function maj(x, y, z) { + return (x & y) | (z & (x | y)) + } + + function sigma0(x) { + return ( + ((x >>> 2) | (x << 30)) ^ + ((x >>> 13) | (x << 19)) ^ + ((x >>> 22) | (x << 10)) + ) + } + + function sigma1(x) { + return ( + ((x >>> 6) | (x << 26)) ^ + ((x >>> 11) | (x << 21)) ^ + ((x >>> 25) | (x << 7)) + ) + } + + function gamma0(x) { + return ( + ((x >>> 7) | (x << 25)) ^ ((x >>> 18) | (x << 14)) ^ (x >>> 3) + ) + } + + function gamma1(x) { + return ( + ((x >>> 17) | (x << 15)) ^ ((x >>> 19) | (x << 13)) ^ (x >>> 10) + ) + } + + Sha256.prototype._update = function(M) { + var W = this._w + + var a = this._a | 0 + var b = this._b | 0 + var c = this._c | 0 + var d = this._d | 0 + var e = this._e | 0 + var f = this._f | 0 + var g = this._g | 0 + var h = this._h | 0 + + for (var i = 0; i < 16; ++i) W[i] = M.readInt32BE(i * 4) + for (; i < 64; ++i) + W[i] = + (gamma1(W[i - 2]) + W[i - 7] + gamma0(W[i - 15]) + W[i - 16]) | + 0 + + for (var j = 0; j < 64; ++j) { + var T1 = (h + sigma1(e) + ch(e, f, g) + K[j] + W[j]) | 0 + var T2 = (sigma0(a) + maj(a, b, c)) | 0 + + h = g + g = f + f = e + e = (d + T1) | 0 + d = c + c = b + b = a + a = (T1 + T2) | 0 + } + + this._a = (a + this._a) | 0 + this._b = (b + this._b) | 0 + this._c = (c + this._c) | 0 + this._d = (d + this._d) | 0 + this._e = (e + this._e) | 0 + this._f = (f + this._f) | 0 + this._g = (g + this._g) | 0 + this._h = (h + this._h) | 0 + } + + Sha256.prototype._hash = function() { + var H = Buffer.allocUnsafe(32) + + H.writeInt32BE(this._a, 0) + H.writeInt32BE(this._b, 4) + H.writeInt32BE(this._c, 8) + H.writeInt32BE(this._d, 12) + H.writeInt32BE(this._e, 16) + H.writeInt32BE(this._f, 20) + H.writeInt32BE(this._g, 24) + H.writeInt32BE(this._h, 28) + + return H + } + + module.exports = Sha256 + }, + { "./hash": 80, inherits: 74, "safe-buffer": 79 } + ], + 86: [ + function(require, module, exports) { + var inherits = require("inherits") + var SHA512 = require("./sha512") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + + var W = new Array(160) + + function Sha384() { + this.init() + this._w = W + + Hash.call(this, 128, 112) + } + + inherits(Sha384, SHA512) + + Sha384.prototype.init = function() { + this._ah = 0xcbbb9d5d + this._bh = 0x629a292a + this._ch = 0x9159015a + this._dh = 0x152fecd8 + this._eh = 0x67332667 + this._fh = 0x8eb44a87 + this._gh = 0xdb0c2e0d + this._hh = 0x47b5481d + + this._al = 0xc1059ed8 + this._bl = 0x367cd507 + this._cl = 0x3070dd17 + this._dl = 0xf70e5939 + this._el = 0xffc00b31 + this._fl = 0x68581511 + this._gl = 0x64f98fa7 + this._hl = 0xbefa4fa4 + + return this + } + + Sha384.prototype._hash = function() { + var H = Buffer.allocUnsafe(48) + + function writeInt64BE(h, l, offset) { + H.writeInt32BE(h, offset) + H.writeInt32BE(l, offset + 4) + } + + writeInt64BE(this._ah, this._al, 0) + writeInt64BE(this._bh, this._bl, 8) + writeInt64BE(this._ch, this._cl, 16) + writeInt64BE(this._dh, this._dl, 24) + writeInt64BE(this._eh, this._el, 32) + writeInt64BE(this._fh, this._fl, 40) + + return H + } + + module.exports = Sha384 + }, + { "./hash": 80, "./sha512": 87, inherits: 74, "safe-buffer": 79 } + ], + 87: [ + function(require, module, exports) { + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + + var K = [ + 0x428a2f98, + 0xd728ae22, + 0x71374491, + 0x23ef65cd, + 0xb5c0fbcf, + 0xec4d3b2f, + 0xe9b5dba5, + 0x8189dbbc, + 0x3956c25b, + 0xf348b538, + 0x59f111f1, + 0xb605d019, + 0x923f82a4, + 0xaf194f9b, + 0xab1c5ed5, + 0xda6d8118, + 0xd807aa98, + 0xa3030242, + 0x12835b01, + 0x45706fbe, + 0x243185be, + 0x4ee4b28c, + 0x550c7dc3, + 0xd5ffb4e2, + 0x72be5d74, + 0xf27b896f, + 0x80deb1fe, + 0x3b1696b1, + 0x9bdc06a7, + 0x25c71235, + 0xc19bf174, + 0xcf692694, + 0xe49b69c1, + 0x9ef14ad2, + 0xefbe4786, + 0x384f25e3, + 0x0fc19dc6, + 0x8b8cd5b5, + 0x240ca1cc, + 0x77ac9c65, + 0x2de92c6f, + 0x592b0275, + 0x4a7484aa, + 0x6ea6e483, + 0x5cb0a9dc, + 0xbd41fbd4, + 0x76f988da, + 0x831153b5, + 0x983e5152, + 0xee66dfab, + 0xa831c66d, + 0x2db43210, + 0xb00327c8, + 0x98fb213f, + 0xbf597fc7, + 0xbeef0ee4, + 0xc6e00bf3, + 0x3da88fc2, + 0xd5a79147, + 0x930aa725, + 0x06ca6351, + 0xe003826f, + 0x14292967, + 0x0a0e6e70, + 0x27b70a85, + 0x46d22ffc, + 0x2e1b2138, + 0x5c26c926, + 0x4d2c6dfc, + 0x5ac42aed, + 0x53380d13, + 0x9d95b3df, + 0x650a7354, + 0x8baf63de, + 0x766a0abb, + 0x3c77b2a8, + 0x81c2c92e, + 0x47edaee6, + 0x92722c85, + 0x1482353b, + 0xa2bfe8a1, + 0x4cf10364, + 0xa81a664b, + 0xbc423001, + 0xc24b8b70, + 0xd0f89791, + 0xc76c51a3, + 0x0654be30, + 0xd192e819, + 0xd6ef5218, + 0xd6990624, + 0x5565a910, + 0xf40e3585, + 0x5771202a, + 0x106aa070, + 0x32bbd1b8, + 0x19a4c116, + 0xb8d2d0c8, + 0x1e376c08, + 0x5141ab53, + 0x2748774c, + 0xdf8eeb99, + 0x34b0bcb5, + 0xe19b48a8, + 0x391c0cb3, + 0xc5c95a63, + 0x4ed8aa4a, + 0xe3418acb, + 0x5b9cca4f, + 0x7763e373, + 0x682e6ff3, + 0xd6b2b8a3, + 0x748f82ee, + 0x5defb2fc, + 0x78a5636f, + 0x43172f60, + 0x84c87814, + 0xa1f0ab72, + 0x8cc70208, + 0x1a6439ec, + 0x90befffa, + 0x23631e28, + 0xa4506ceb, + 0xde82bde9, + 0xbef9a3f7, + 0xb2c67915, + 0xc67178f2, + 0xe372532b, + 0xca273ece, + 0xea26619c, + 0xd186b8c7, + 0x21c0c207, + 0xeada7dd6, + 0xcde0eb1e, + 0xf57d4f7f, + 0xee6ed178, + 0x06f067aa, + 0x72176fba, + 0x0a637dc5, + 0xa2c898a6, + 0x113f9804, + 0xbef90dae, + 0x1b710b35, + 0x131c471b, + 0x28db77f5, + 0x23047d84, + 0x32caab7b, + 0x40c72493, + 0x3c9ebe0a, + 0x15c9bebc, + 0x431d67c4, + 0x9c100d4c, + 0x4cc5d4be, + 0xcb3e42b6, + 0x597f299c, + 0xfc657e2a, + 0x5fcb6fab, + 0x3ad6faec, + 0x6c44198c, + 0x4a475817 + ] + + var W = new Array(160) + + function Sha512() { + this.init() + this._w = W + + Hash.call(this, 128, 112) + } + + inherits(Sha512, Hash) + + Sha512.prototype.init = function() { + this._ah = 0x6a09e667 + this._bh = 0xbb67ae85 + this._ch = 0x3c6ef372 + this._dh = 0xa54ff53a + this._eh = 0x510e527f + this._fh = 0x9b05688c + this._gh = 0x1f83d9ab + this._hh = 0x5be0cd19 + + this._al = 0xf3bcc908 + this._bl = 0x84caa73b + this._cl = 0xfe94f82b + this._dl = 0x5f1d36f1 + this._el = 0xade682d1 + this._fl = 0x2b3e6c1f + this._gl = 0xfb41bd6b + this._hl = 0x137e2179 + + return this + } + + function Ch(x, y, z) { + return z ^ (x & (y ^ z)) + } + + function maj(x, y, z) { + return (x & y) | (z & (x | y)) + } + + function sigma0(x, xl) { + return ( + ((x >>> 28) | (xl << 4)) ^ + ((xl >>> 2) | (x << 30)) ^ + ((xl >>> 7) | (x << 25)) + ) + } + + function sigma1(x, xl) { + return ( + ((x >>> 14) | (xl << 18)) ^ + ((x >>> 18) | (xl << 14)) ^ + ((xl >>> 9) | (x << 23)) + ) + } + + function Gamma0(x, xl) { + return ( + ((x >>> 1) | (xl << 31)) ^ ((x >>> 8) | (xl << 24)) ^ (x >>> 7) + ) + } + + function Gamma0l(x, xl) { + return ( + ((x >>> 1) | (xl << 31)) ^ + ((x >>> 8) | (xl << 24)) ^ + ((x >>> 7) | (xl << 25)) + ) + } + + function Gamma1(x, xl) { + return ( + ((x >>> 19) | (xl << 13)) ^ ((xl >>> 29) | (x << 3)) ^ (x >>> 6) + ) + } + + function Gamma1l(x, xl) { + return ( + ((x >>> 19) | (xl << 13)) ^ + ((xl >>> 29) | (x << 3)) ^ + ((x >>> 6) | (xl << 26)) + ) + } + + function getCarry(a, b) { + return a >>> 0 < b >>> 0 ? 1 : 0 + } + + Sha512.prototype._update = function(M) { + var W = this._w + + var ah = this._ah | 0 + var bh = this._bh | 0 + var ch = this._ch | 0 + var dh = this._dh | 0 + var eh = this._eh | 0 + var fh = this._fh | 0 + var gh = this._gh | 0 + var hh = this._hh | 0 + + var al = this._al | 0 + var bl = this._bl | 0 + var cl = this._cl | 0 + var dl = this._dl | 0 + var el = this._el | 0 + var fl = this._fl | 0 + var gl = this._gl | 0 + var hl = this._hl | 0 + + for (var i = 0; i < 32; i += 2) { + W[i] = M.readInt32BE(i * 4) + W[i + 1] = M.readInt32BE(i * 4 + 4) + } + for (; i < 160; i += 2) { + var xh = W[i - 15 * 2] + var xl = W[i - 15 * 2 + 1] + var gamma0 = Gamma0(xh, xl) + var gamma0l = Gamma0l(xl, xh) + + xh = W[i - 2 * 2] + xl = W[i - 2 * 2 + 1] + var gamma1 = Gamma1(xh, xl) + var gamma1l = Gamma1l(xl, xh) + + // W[i] = gamma0 + W[i - 7] + gamma1 + W[i - 16] + var Wi7h = W[i - 7 * 2] + var Wi7l = W[i - 7 * 2 + 1] + + var Wi16h = W[i - 16 * 2] + var Wi16l = W[i - 16 * 2 + 1] + + var Wil = (gamma0l + Wi7l) | 0 + var Wih = (gamma0 + Wi7h + getCarry(Wil, gamma0l)) | 0 + Wil = (Wil + gamma1l) | 0 + Wih = (Wih + gamma1 + getCarry(Wil, gamma1l)) | 0 + Wil = (Wil + Wi16l) | 0 + Wih = (Wih + Wi16h + getCarry(Wil, Wi16l)) | 0 + + W[i] = Wih + W[i + 1] = Wil + } + + for (var j = 0; j < 160; j += 2) { + Wih = W[j] + Wil = W[j + 1] + + var majh = maj(ah, bh, ch) + var majl = maj(al, bl, cl) + + var sigma0h = sigma0(ah, al) + var sigma0l = sigma0(al, ah) + var sigma1h = sigma1(eh, el) + var sigma1l = sigma1(el, eh) + + // t1 = h + sigma1 + ch + K[j] + W[j] + var Kih = K[j] + var Kil = K[j + 1] + + var chh = Ch(eh, fh, gh) + var chl = Ch(el, fl, gl) + + var t1l = (hl + sigma1l) | 0 + var t1h = (hh + sigma1h + getCarry(t1l, hl)) | 0 + t1l = (t1l + chl) | 0 + t1h = (t1h + chh + getCarry(t1l, chl)) | 0 + t1l = (t1l + Kil) | 0 + t1h = (t1h + Kih + getCarry(t1l, Kil)) | 0 + t1l = (t1l + Wil) | 0 + t1h = (t1h + Wih + getCarry(t1l, Wil)) | 0 + + // t2 = sigma0 + maj + var t2l = (sigma0l + majl) | 0 + var t2h = (sigma0h + majh + getCarry(t2l, sigma0l)) | 0 + + hh = gh + hl = gl + gh = fh + gl = fl + fh = eh + fl = el + el = (dl + t1l) | 0 + eh = (dh + t1h + getCarry(el, dl)) | 0 + dh = ch + dl = cl + ch = bh + cl = bl + bh = ah + bl = al + al = (t1l + t2l) | 0 + ah = (t1h + t2h + getCarry(al, t1l)) | 0 + } + + this._al = (this._al + al) | 0 + this._bl = (this._bl + bl) | 0 + this._cl = (this._cl + cl) | 0 + this._dl = (this._dl + dl) | 0 + this._el = (this._el + el) | 0 + this._fl = (this._fl + fl) | 0 + this._gl = (this._gl + gl) | 0 + this._hl = (this._hl + hl) | 0 + + this._ah = (this._ah + ah + getCarry(this._al, al)) | 0 + this._bh = (this._bh + bh + getCarry(this._bl, bl)) | 0 + this._ch = (this._ch + ch + getCarry(this._cl, cl)) | 0 + this._dh = (this._dh + dh + getCarry(this._dl, dl)) | 0 + this._eh = (this._eh + eh + getCarry(this._el, el)) | 0 + this._fh = (this._fh + fh + getCarry(this._fl, fl)) | 0 + this._gh = (this._gh + gh + getCarry(this._gl, gl)) | 0 + this._hh = (this._hh + hh + getCarry(this._hl, hl)) | 0 + } + + Sha512.prototype._hash = function() { + var H = Buffer.allocUnsafe(64) + + function writeInt64BE(h, l, offset) { + H.writeInt32BE(h, offset) + H.writeInt32BE(l, offset + 4) + } + + writeInt64BE(this._ah, this._al, 0) + writeInt64BE(this._bh, this._bl, 8) + writeInt64BE(this._ch, this._cl, 16) + writeInt64BE(this._dh, this._dl, 24) + writeInt64BE(this._eh, this._el, 32) + writeInt64BE(this._fh, this._fl, 40) + writeInt64BE(this._gh, this._gl, 48) + writeInt64BE(this._hh, this._hl, 56) + + return H + } + + module.exports = Sha512 + }, + { "./hash": 80, inherits: 74, "safe-buffer": 79 } + ], + 88: [ + function(require, module, exports) { + ;(function(Buffer) { + const BN = require("bn.js") + const EC = require("elliptic").ec + const secp256k1 = new EC("secp256k1") + const deterministicGenerateK = require("./rfc6979") + + const ZERO32 = Buffer.alloc(32, 0) + const EC_GROUP_ORDER = Buffer.from( + "fffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141", + "hex" + ) + const EC_P = Buffer.from( + "fffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f", + "hex" + ) + + const n = secp256k1.curve.n + const nDiv2 = n.shrn(1) + const G = secp256k1.curve.g + + const THROW_BAD_PRIVATE = "Expected Private" + const THROW_BAD_POINT = "Expected Point" + const THROW_BAD_TWEAK = "Expected Tweak" + const THROW_BAD_HASH = "Expected Hash" + const THROW_BAD_SIGNATURE = "Expected Signature" + + function isScalar(x) { + return Buffer.isBuffer(x) && x.length === 32 + } + + function isOrderScalar(x) { + if (!isScalar(x)) return false + return x.compare(EC_GROUP_ORDER) < 0 // < G + } + + function isPoint(p) { + if (!Buffer.isBuffer(p)) return false + if (p.length < 33) return false + + const t = p[0] + const x = p.slice(1, 33) + if (x.compare(ZERO32) === 0) return false + if (x.compare(EC_P) >= 0) return false + if ((t === 0x02 || t === 0x03) && p.length === 33) return true + + const y = p.slice(33) + if (y.compare(ZERO32) === 0) return false + if (y.compare(EC_P) >= 0) return false + if (t === 0x04 && p.length === 65) return true + return false + } + + function __isPointCompressed(p) { + return p[0] !== 0x04 + } + + function isPointCompressed(p) { + if (!isPoint(p)) return false + return __isPointCompressed(p) + } + + function isPrivate(x) { + if (!isScalar(x)) return false + return ( + x.compare(ZERO32) > 0 && x.compare(EC_GROUP_ORDER) < 0 // > 0 + ) // < G + } + + function isSignature(value) { + const r = value.slice(0, 32) + const s = value.slice(32, 64) + return ( + Buffer.isBuffer(value) && + value.length === 64 && + r.compare(EC_GROUP_ORDER) < 0 && + s.compare(EC_GROUP_ORDER) < 0 + ) + } + + function assumeCompression(value, pubkey) { + if (value === undefined && pubkey !== undefined) + return __isPointCompressed(pubkey) + if (value === undefined) return true + return value + } + + function fromBuffer(d) { + return new BN(d) + } + function toBuffer(d) { + return d.toArrayLike(Buffer, "be", 32) + } + function decodeFrom(P) { + return secp256k1.curve.decodePoint(P) + } + function getEncoded(P, compressed) { + return Buffer.from(P._encode(compressed)) + } + + function pointAdd(pA, pB, __compressed) { + if (!isPoint(pA)) throw new TypeError(THROW_BAD_POINT) + if (!isPoint(pB)) throw new TypeError(THROW_BAD_POINT) + + const a = decodeFrom(pA) + const b = decodeFrom(pB) + const pp = a.add(b) + if (pp.isInfinity()) return null + + const compressed = assumeCompression(__compressed, pA) + return getEncoded(pp, compressed) + } + + function pointAddScalar(p, tweak, __compressed) { + if (!isPoint(p)) throw new TypeError(THROW_BAD_POINT) + if (!isOrderScalar(tweak)) throw new TypeError(THROW_BAD_TWEAK) + + const compressed = assumeCompression(__compressed, p) + const pp = decodeFrom(p) + if (tweak.compare(ZERO32) === 0) return getEncoded(pp, compressed) + + const tt = fromBuffer(tweak) + const qq = G.mul(tt) + const uu = pp.add(qq) + if (uu.isInfinity()) return null + + return getEncoded(uu, compressed) + } + + function pointCompress(p, compressed) { + if (!isPoint(p)) throw new TypeError(THROW_BAD_POINT) + + const pp = decodeFrom(p) + if (pp.isInfinity()) throw new TypeError(THROW_BAD_POINT) + + return getEncoded(pp, compressed) + } + + function pointFromScalar(d, __compressed) { + if (!isPrivate(d)) throw new TypeError(THROW_BAD_PRIVATE) + + const dd = fromBuffer(d) + const pp = G.mul(dd) + if (pp.isInfinity()) return null + + const compressed = assumeCompression(__compressed) + return getEncoded(pp, compressed) + } + + function pointMultiply(p, tweak, __compressed) { + if (!isPoint(p)) throw new TypeError(THROW_BAD_POINT) + if (!isOrderScalar(tweak)) throw new TypeError(THROW_BAD_TWEAK) + + const compressed = assumeCompression(__compressed, p) + const pp = decodeFrom(p) + const tt = fromBuffer(tweak) + const qq = pp.mul(tt) + if (qq.isInfinity()) return null + + return getEncoded(qq, compressed) + } + + function privateAdd(d, tweak) { + if (!isPrivate(d)) throw new TypeError(THROW_BAD_PRIVATE) + if (!isOrderScalar(tweak)) throw new TypeError(THROW_BAD_TWEAK) + + const dd = fromBuffer(d) + const tt = fromBuffer(tweak) + const dt = toBuffer(dd.add(tt).umod(n)) + if (!isPrivate(dt)) return null + + return dt + } + + function privateSub(d, tweak) { + if (!isPrivate(d)) throw new TypeError(THROW_BAD_PRIVATE) + if (!isOrderScalar(tweak)) throw new TypeError(THROW_BAD_TWEAK) + + const dd = fromBuffer(d) + const tt = fromBuffer(tweak) + const dt = toBuffer(dd.sub(tt).umod(n)) + if (!isPrivate(dt)) return null + + return dt + } + + function sign(hash, x) { + if (!isScalar(hash)) throw new TypeError(THROW_BAD_HASH) + if (!isPrivate(x)) throw new TypeError(THROW_BAD_PRIVATE) + + const d = fromBuffer(x) + const e = fromBuffer(hash) + + let r, s + deterministicGenerateK( + hash, + x, + function(k) { + const kI = fromBuffer(k) + const Q = G.mul(kI) + + if (Q.isInfinity()) return false + + r = Q.x.umod(n) + if (r.isZero() === 0) return false + + s = kI + .invm(n) + .mul(e.add(d.mul(r))) + .umod(n) + if (s.isZero() === 0) return false + + return true + }, + isPrivate + ) + + // enforce low S values, see bip62: 'low s values in signatures' + if (s.cmp(nDiv2) > 0) { + s = n.sub(s) + } + + const buffer = Buffer.allocUnsafe(64) + toBuffer(r).copy(buffer, 0) + toBuffer(s).copy(buffer, 32) + return buffer + } + + function verify(hash, q, signature) { + if (!isScalar(hash)) throw new TypeError(THROW_BAD_HASH) + if (!isPoint(q)) throw new TypeError(THROW_BAD_POINT) + + // 1.4.1 Enforce r and s are both integers in the interval [1, n − 1] (1, isSignature enforces '< n - 1') + if (!isSignature(signature)) + throw new TypeError(THROW_BAD_SIGNATURE) + + const Q = decodeFrom(q) + const r = fromBuffer(signature.slice(0, 32)) + const s = fromBuffer(signature.slice(32, 64)) + + // 1.4.1 Enforce r and s are both integers in the interval [1, n − 1] (2, enforces '> 0') + if (r.gtn(0) <= 0 /* || r.compareTo(n) >= 0 */) return false + if (s.gtn(0) <= 0 /* || s.compareTo(n) >= 0 */) return false + + // 1.4.2 H = Hash(M), already done by the user + // 1.4.3 e = H + const e = fromBuffer(hash) + + // Compute s^-1 + const sInv = s.invm(n) + + // 1.4.4 Compute u1 = es^−1 mod n + // u2 = rs^−1 mod n + const u1 = e.mul(sInv).umod(n) + const u2 = r.mul(sInv).umod(n) + + // 1.4.5 Compute R = (xR, yR) + // R = u1G + u2Q + const R = G.mulAdd(u1, Q, u2) + + // 1.4.5 (cont.) Enforce R is not at infinity + if (R.isInfinity()) return false + + // 1.4.6 Convert the field element R.x to an integer + const xR = R.x + + // 1.4.7 Set v = xR mod n + const v = xR.umod(n) + + // 1.4.8 If v = r, output "valid", and if v != r, output "invalid" + return v.eq(r) + } + + module.exports = { + isPoint, + isPointCompressed, + isPrivate, + pointAdd, + pointAddScalar, + pointCompress, + pointFromScalar, + pointMultiply, + privateAdd, + privateSub, + sign, + verify + } + }.call(this, require("buffer").Buffer)) + }, + { "./rfc6979": 89, "bn.js": 34, buffer: 3, elliptic: 44 } + ], + 89: [ + function(require, module, exports) { + ;(function(Buffer) { + const createHmac = require("create-hmac") + + const ONE1 = Buffer.alloc(1, 1) + const ZERO1 = Buffer.alloc(1, 0) + + // https://tools.ietf.org/html/rfc6979#section-3.2 + function deterministicGenerateK(hash, x, checkSig, isPrivate) { + // Step A, ignored as hash already provided + // Step B + // Step C + let k = Buffer.alloc(32, 0) + let v = Buffer.alloc(32, 1) + + // Step D + k = createHmac("sha256", k) + .update(v) + .update(ZERO1) + .update(x) + .update(hash) + .digest() + + // Step E + v = createHmac("sha256", k) + .update(v) + .digest() + + // Step F + k = createHmac("sha256", k) + .update(v) + .update(ONE1) + .update(x) + .update(hash) + .digest() + + // Step G + v = createHmac("sha256", k) + .update(v) + .digest() + + // Step H1/H2a, ignored as tlen === qlen (256 bit) + // Step H2b + v = createHmac("sha256", k) + .update(v) + .digest() + + let T = v + + // Step H3, repeat until T is within the interval [1, n - 1] and is suitable for ECDSA + while (!isPrivate(T) || !checkSig(T)) { + k = createHmac("sha256", k) + .update(v) + .update(ZERO1) + .digest() + + v = createHmac("sha256", k) + .update(v) + .digest() + + // Step H1/H2a, again, ignored as tlen === qlen (256 bit) + // Step H2b again + v = createHmac("sha256", k) + .update(v) + .digest() + T = v + } + + return T + } + + module.exports = deterministicGenerateK + }.call(this, require("buffer").Buffer)) + }, + { buffer: 3, "create-hmac": 42 } + ], + 90: [ + function(require, module, exports) { + var native = require("./native") + + function getTypeName(fn) { + return fn.name || fn.toString().match(/function (.*?)\s*\(/)[1] + } + + function getValueTypeName(value) { + return native.Nil(value) ? "" : getTypeName(value.constructor) + } + + function getValue(value) { + if (native.Function(value)) return "" + if (native.String(value)) return JSON.stringify(value) + if (value && native.Object(value)) return "" + return value + } + + function tfJSON(type) { + if (native.Function(type)) + return type.toJSON ? type.toJSON() : getTypeName(type) + if (native.Array(type)) return "Array" + if (type && native.Object(type)) return "Object" + + return type !== undefined ? type : "" + } + + function tfErrorString(type, value, valueTypeName) { + var valueJson = getValue(value) + + return ( + "Expected " + + tfJSON(type) + + ", got" + + (valueTypeName !== "" ? " " + valueTypeName : "") + + (valueJson !== "" ? " " + valueJson : "") + ) + } + + function TfTypeError(type, value, valueTypeName) { + valueTypeName = valueTypeName || getValueTypeName(value) + this.message = tfErrorString(type, value, valueTypeName) + + Error.captureStackTrace(this, TfTypeError) + this.__type = type + this.__value = value + this.__valueTypeName = valueTypeName + } + + TfTypeError.prototype = Object.create(Error.prototype) + TfTypeError.prototype.constructor = TfTypeError + + function tfPropertyErrorString( + type, + label, + name, + value, + valueTypeName + ) { + var description = '" of type ' + if (label === "key") description = '" with key type ' + + return tfErrorString( + 'property "' + tfJSON(name) + description + tfJSON(type), + value, + valueTypeName + ) + } + + function TfPropertyTypeError( + type, + property, + label, + value, + valueTypeName + ) { + if (type) { + valueTypeName = valueTypeName || getValueTypeName(value) + this.message = tfPropertyErrorString( + type, + label, + property, + value, + valueTypeName + ) + } else { + this.message = 'Unexpected property "' + property + '"' + } + + Error.captureStackTrace(this, TfTypeError) + this.__label = label + this.__property = property + this.__type = type + this.__value = value + this.__valueTypeName = valueTypeName + } + + TfPropertyTypeError.prototype = Object.create(Error.prototype) + TfPropertyTypeError.prototype.constructor = TfTypeError + + function tfCustomError(expected, actual) { + return new TfTypeError(expected, {}, actual) + } + + function tfSubError(e, property, label) { + // sub child? + if (e instanceof TfPropertyTypeError) { + property = property + "." + e.__property + + e = new TfPropertyTypeError( + e.__type, + property, + e.__label, + e.__value, + e.__valueTypeName + ) + + // child? + } else if (e instanceof TfTypeError) { + e = new TfPropertyTypeError( + e.__type, + property, + label, + e.__value, + e.__valueTypeName + ) + } + + Error.captureStackTrace(e) + return e + } + + module.exports = { + TfTypeError: TfTypeError, + TfPropertyTypeError: TfPropertyTypeError, + tfCustomError: tfCustomError, + tfSubError: tfSubError, + tfJSON: tfJSON, + getValueTypeName: getValueTypeName + } + }, + { "./native": 93 } + ], + 91: [ + function(require, module, exports) { + ;(function(Buffer) { + var NATIVE = require("./native") + var ERRORS = require("./errors") + + function _Buffer(value) { + return Buffer.isBuffer(value) + } + + function Hex(value) { + return ( + typeof value === "string" && /^([0-9a-f]{2})+$/i.test(value) + ) + } + + function _LengthN(type, length) { + var name = type.toJSON() + + function Length(value) { + if (!type(value)) return false + if (value.length === length) return true + + throw ERRORS.tfCustomError( + name + "(Length: " + length + ")", + name + "(Length: " + value.length + ")" + ) + } + Length.toJSON = function() { + return name + } + + return Length + } + + var _ArrayN = _LengthN.bind(null, NATIVE.Array) + var _BufferN = _LengthN.bind(null, _Buffer) + var _HexN = _LengthN.bind(null, Hex) + var _StringN = _LengthN.bind(null, NATIVE.String) + + function Range(a, b, f) { + f = f || NATIVE.Number + function _range(value, strict) { + return f(value, strict) && value > a && value < b + } + _range.toJSON = function() { + return `${f.toJSON()} between [${a}, ${b}]` + } + return _range + } + + var INT53_MAX = Math.pow(2, 53) - 1 + + function Finite(value) { + return typeof value === "number" && isFinite(value) + } + function Int8(value) { + return (value << 24) >> 24 === value + } + function Int16(value) { + return (value << 16) >> 16 === value + } + function Int32(value) { + return (value | 0) === value + } + function Int53(value) { + return ( + typeof value === "number" && + value >= -INT53_MAX && + value <= INT53_MAX && + Math.floor(value) === value + ) + } + function UInt8(value) { + return (value & 0xff) === value + } + function UInt16(value) { + return (value & 0xffff) === value + } + function UInt32(value) { + return value >>> 0 === value + } + function UInt53(value) { + return ( + typeof value === "number" && + value >= 0 && + value <= INT53_MAX && + Math.floor(value) === value + ) + } + + var types = { + ArrayN: _ArrayN, + Buffer: _Buffer, + BufferN: _BufferN, + Finite: Finite, + Hex: Hex, + HexN: _HexN, + Int8: Int8, + Int16: Int16, + Int32: Int32, + Int53: Int53, + Range: Range, + StringN: _StringN, + UInt8: UInt8, + UInt16: UInt16, + UInt32: UInt32, + UInt53: UInt53 + } + + for (var typeName in types) { + types[typeName].toJSON = function(t) { + return t + }.bind(null, typeName) + } + + module.exports = types + }.call(this, { + isBuffer: require("../../../../.nvm/versions/node/v9.11.2/lib/node_modules/browserify/node_modules/is-buffer/index.js") + })) + }, + { + "../../../../.nvm/versions/node/v9.11.2/lib/node_modules/browserify/node_modules/is-buffer/index.js": 8, + "./errors": 90, + "./native": 93 + } + ], + 92: [ + function(require, module, exports) { + var ERRORS = require("./errors") + var NATIVE = require("./native") + + // short-hand + var tfJSON = ERRORS.tfJSON + var TfTypeError = ERRORS.TfTypeError + var TfPropertyTypeError = ERRORS.TfPropertyTypeError + var tfSubError = ERRORS.tfSubError + var getValueTypeName = ERRORS.getValueTypeName + + var TYPES = { + arrayOf: function arrayOf(type, options) { + type = compile(type) + options = options || {} + + function _arrayOf(array, strict) { + if (!NATIVE.Array(array)) return false + if (NATIVE.Nil(array)) return false + if ( + options.minLength !== undefined && + array.length < options.minLength + ) + return false + if ( + options.maxLength !== undefined && + array.length > options.maxLength + ) + return false + if ( + options.length !== undefined && + array.length !== options.length + ) + return false + + return array.every(function(value, i) { + try { + return typeforce(type, value, strict) + } catch (e) { + throw tfSubError(e, i) + } + }) + } + _arrayOf.toJSON = function() { + var str = "[" + tfJSON(type) + "]" + if (options.length !== undefined) { + str += "{" + options.length + "}" + } else if ( + options.minLength !== undefined || + options.maxLength !== undefined + ) { + str += + "{" + + (options.minLength === undefined ? 0 : options.minLength) + + "," + + (options.maxLength === undefined + ? Infinity + : options.maxLength) + + "}" + } + return str + } + + return _arrayOf + }, + + maybe: function maybe(type) { + type = compile(type) + + function _maybe(value, strict) { + return NATIVE.Nil(value) || type(value, strict, maybe) + } + _maybe.toJSON = function() { + return "?" + tfJSON(type) + } + + return _maybe + }, + + map: function map(propertyType, propertyKeyType) { + propertyType = compile(propertyType) + if (propertyKeyType) propertyKeyType = compile(propertyKeyType) + + function _map(value, strict) { + if (!NATIVE.Object(value)) return false + if (NATIVE.Nil(value)) return false + + for (var propertyName in value) { + try { + if (propertyKeyType) { + typeforce(propertyKeyType, propertyName, strict) + } + } catch (e) { + throw tfSubError(e, propertyName, "key") + } + + try { + var propertyValue = value[propertyName] + typeforce(propertyType, propertyValue, strict) + } catch (e) { + throw tfSubError(e, propertyName) + } + } + + return true + } + + if (propertyKeyType) { + _map.toJSON = function() { + return ( + "{" + + tfJSON(propertyKeyType) + + ": " + + tfJSON(propertyType) + + "}" + ) + } + } else { + _map.toJSON = function() { + return "{" + tfJSON(propertyType) + "}" + } + } + + return _map + }, + + object: function object(uncompiled) { + var type = {} + + for (var typePropertyName in uncompiled) { + type[typePropertyName] = compile(uncompiled[typePropertyName]) + } + + function _object(value, strict) { + if (!NATIVE.Object(value)) return false + if (NATIVE.Nil(value)) return false + + var propertyName + + try { + for (propertyName in type) { + var propertyType = type[propertyName] + var propertyValue = value[propertyName] + + typeforce(propertyType, propertyValue, strict) + } + } catch (e) { + throw tfSubError(e, propertyName) + } + + if (strict) { + for (propertyName in value) { + if (type[propertyName]) continue + + throw new TfPropertyTypeError(undefined, propertyName) + } + } + + return true + } + _object.toJSON = function() { + return tfJSON(type) + } + + return _object + }, + + oneOf: function oneOf() { + var types = [].slice.call(arguments).map(compile) + + function _oneOf(value, strict) { + return types.some(function(type) { + try { + return typeforce(type, value, strict) + } catch (e) { + return false + } + }) + } + _oneOf.toJSON = function() { + return types.map(tfJSON).join("|") + } + + return _oneOf + }, + + quacksLike: function quacksLike(type) { + function _quacksLike(value) { + return type === getValueTypeName(value) + } + _quacksLike.toJSON = function() { + return type + } + + return _quacksLike + }, + + tuple: function tuple() { + var types = [].slice.call(arguments).map(compile) + + function _tuple(values, strict) { + if (NATIVE.Nil(values)) return false + if (NATIVE.Nil(values.length)) return false + if (strict && values.length !== types.length) return false + + return types.every(function(type, i) { + try { + return typeforce(type, values[i], strict) + } catch (e) { + throw tfSubError(e, i) + } + }) + } + _tuple.toJSON = function() { + return "(" + types.map(tfJSON).join(", ") + ")" + } + + return _tuple + }, + + value: function value(expected) { + function _value(actual) { + return actual === expected + } + _value.toJSON = function() { + return expected + } + + return _value + } + } + + function compile(type) { + if (NATIVE.String(type)) { + if (type[0] === "?") return TYPES.maybe(type.slice(1)) + + return NATIVE[type] || TYPES.quacksLike(type) + } else if (type && NATIVE.Object(type)) { + if (NATIVE.Array(type)) return TYPES.arrayOf(type[0]) + + return TYPES.object(type) + } else if (NATIVE.Function(type)) { + return type + } + + return TYPES.value(type) + } + + function typeforce(type, value, strict, surrogate) { + if (NATIVE.Function(type)) { + if (type(value, strict)) return true + + throw new TfTypeError(surrogate || type, value) + } + + // JIT + return typeforce(compile(type), value, strict) + } + + // assign types to typeforce function + for (var typeName in NATIVE) { + typeforce[typeName] = NATIVE[typeName] + } + + for (typeName in TYPES) { + typeforce[typeName] = TYPES[typeName] + } + + var EXTRA = require("./extra") + for (typeName in EXTRA) { + typeforce[typeName] = EXTRA[typeName] + } + + typeforce.compile = compile + typeforce.TfTypeError = TfTypeError + typeforce.TfPropertyTypeError = TfPropertyTypeError + + module.exports = typeforce + }, + { "./errors": 90, "./extra": 91, "./native": 93 } + ], + 93: [ + function(require, module, exports) { + var types = { + Array: function(value) { + return ( + value !== null && + value !== undefined && + value.constructor === Array + ) + }, + Boolean: function(value) { + return typeof value === "boolean" + }, + Function: function(value) { + return typeof value === "function" + }, + Nil: function(value) { + return value === undefined || value === null + }, + Number: function(value) { + return typeof value === "number" + }, + Object: function(value) { + return typeof value === "object" + }, + String: function(value) { + return typeof value === "string" + }, + "": function() { + return true + } + } + + // TODO: deprecate + types.Null = types.Nil + + for (var typeName in types) { + types[typeName].toJSON = function(t) { + return t + }.bind(null, typeName) + } + + module.exports = types + }, + {} + ], + 94: [ + function(require, module, exports) { + ;(function(Buffer) { + var bs58check = require("bs58check") + + function decodeRaw(buffer, version) { + // check version only if defined + if (version !== undefined && buffer[0] !== version) + throw new Error("Invalid network version") + + // uncompressed + if (buffer.length === 33) { + return { + version: buffer[0], + privateKey: buffer.slice(1, 33), + compressed: false + } + } + + // invalid length + if (buffer.length !== 34) throw new Error("Invalid WIF length") + + // invalid compression flag + if (buffer[33] !== 0x01) + throw new Error("Invalid compression flag") + + return { + version: buffer[0], + privateKey: buffer.slice(1, 33), + compressed: true + } + } + + function encodeRaw(version, privateKey, compressed) { + var result = new Buffer(compressed ? 34 : 33) + + result.writeUInt8(version, 0) + privateKey.copy(result, 1) + + if (compressed) { + result[33] = 0x01 + } + + return result + } + + function decode(string, version) { + return decodeRaw(bs58check.decode(string), version) + } + + function encode(version, privateKey, compressed) { + if (typeof version === "number") + return bs58check.encode( + encodeRaw(version, privateKey, compressed) + ) + + return bs58check.encode( + encodeRaw( + version.version, + version.privateKey, + version.compressed + ) + ) + } + + module.exports = { + decode: decode, + decodeRaw: decodeRaw, + encode: encode, + encodeRaw: encodeRaw + } + }.call(this, require("buffer").Buffer)) + }, + { bs58check: 38, buffer: 3 } + ] + }, + {}, + [33] + )(33) +}) diff --git a/app/src/helpers/bip39.min.js b/app/src/helpers/bip39.min.js new file mode 100644 index 0000000000..27d5d4e01c --- /dev/null +++ b/app/src/helpers/bip39.min.js @@ -0,0 +1,31484 @@ +;(function(f) { + if (typeof exports === "object" && typeof module !== "undefined") { + module.exports = f() + } else if (typeof define === "function" && define.amd) { + define([], f) + } else { + var g + if (typeof window !== "undefined") { + g = window + } else if (typeof global !== "undefined") { + g = global + } else if (typeof self !== "undefined") { + g = self + } else { + g = this + } + g.bip39 = f() + } +})(function() { + var define, module, exports + return (function() { + function r(e, n, t) { + function o(i, f) { + if (!n[i]) { + if (!e[i]) { + var c = "function" == typeof require && require + if (!f && c) return c(i, !0) + if (u) return u(i, !0) + var a = new Error("Cannot find module '" + i + "'") + throw ((a.code = "MODULE_NOT_FOUND"), a) + } + var p = (n[i] = { exports: {} }) + e[i][0].call( + p.exports, + function(r) { + var n = e[i][1][r] + return o(n || r) + }, + p, + p.exports, + r, + e, + n, + t + ) + } + return n[i].exports + } + for ( + var u = "function" == typeof require && require, i = 0; + i < t.length; + i++ + ) + o(t[i]) + return o + } + return r + })()( + { + 1: [ + function(require, module, exports) { + "use strict" + exports.byteLength = byteLength + exports.toByteArray = toByteArray + exports.fromByteArray = fromByteArray + var lookup = [] + var revLookup = [] + var Arr = typeof Uint8Array !== "undefined" ? Uint8Array : Array + var code = + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" + for (var i = 0, len = code.length; i < len; ++i) { + lookup[i] = code[i] + revLookup[code.charCodeAt(i)] = i + } + revLookup["-".charCodeAt(0)] = 62 + revLookup["_".charCodeAt(0)] = 63 + function getLens(b64) { + var len = b64.length + if (len % 4 > 0) { + throw new Error("Invalid string. Length must be a multiple of 4") + } + var validLen = b64.indexOf("=") + if (validLen === -1) validLen = len + var placeHoldersLen = validLen === len ? 0 : 4 - (validLen % 4) + return [validLen, placeHoldersLen] + } + function byteLength(b64) { + var lens = getLens(b64) + var validLen = lens[0] + var placeHoldersLen = lens[1] + return ((validLen + placeHoldersLen) * 3) / 4 - placeHoldersLen + } + function _byteLength(b64, validLen, placeHoldersLen) { + return ((validLen + placeHoldersLen) * 3) / 4 - placeHoldersLen + } + function toByteArray(b64) { + var tmp + var lens = getLens(b64) + var validLen = lens[0] + var placeHoldersLen = lens[1] + var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen)) + var curByte = 0 + var len = placeHoldersLen > 0 ? validLen - 4 : validLen + for (var i = 0; i < len; i += 4) { + tmp = + (revLookup[b64.charCodeAt(i)] << 18) | + (revLookup[b64.charCodeAt(i + 1)] << 12) | + (revLookup[b64.charCodeAt(i + 2)] << 6) | + revLookup[b64.charCodeAt(i + 3)] + arr[curByte++] = (tmp >> 16) & 255 + arr[curByte++] = (tmp >> 8) & 255 + arr[curByte++] = tmp & 255 + } + if (placeHoldersLen === 2) { + tmp = + (revLookup[b64.charCodeAt(i)] << 2) | + (revLookup[b64.charCodeAt(i + 1)] >> 4) + arr[curByte++] = tmp & 255 + } + if (placeHoldersLen === 1) { + tmp = + (revLookup[b64.charCodeAt(i)] << 10) | + (revLookup[b64.charCodeAt(i + 1)] << 4) | + (revLookup[b64.charCodeAt(i + 2)] >> 2) + arr[curByte++] = (tmp >> 8) & 255 + arr[curByte++] = tmp & 255 + } + return arr + } + function tripletToBase64(num) { + return ( + lookup[(num >> 18) & 63] + + lookup[(num >> 12) & 63] + + lookup[(num >> 6) & 63] + + lookup[num & 63] + ) + } + function encodeChunk(uint8, start, end) { + var tmp + var output = [] + for (var i = start; i < end; i += 3) { + tmp = + ((uint8[i] << 16) & 16711680) + + ((uint8[i + 1] << 8) & 65280) + + (uint8[i + 2] & 255) + output.push(tripletToBase64(tmp)) + } + return output.join("") + } + function fromByteArray(uint8) { + var tmp + var len = uint8.length + var extraBytes = len % 3 + var parts = [] + var maxChunkLength = 16383 + for ( + var i = 0, len2 = len - extraBytes; + i < len2; + i += maxChunkLength + ) { + parts.push( + encodeChunk( + uint8, + i, + i + maxChunkLength > len2 ? len2 : i + maxChunkLength + ) + ) + } + if (extraBytes === 1) { + tmp = uint8[len - 1] + parts.push(lookup[tmp >> 2] + lookup[(tmp << 4) & 63] + "==") + } else if (extraBytes === 2) { + tmp = (uint8[len - 2] << 8) + uint8[len - 1] + parts.push( + lookup[tmp >> 10] + + lookup[(tmp >> 4) & 63] + + lookup[(tmp << 2) & 63] + + "=" + ) + } + return parts.join("") + } + }, + {} + ], + 2: [function(require, module, exports) {}, {}], + 3: [ + function(require, module, exports) { + "use strict" + var base64 = require("base64-js") + var ieee754 = require("ieee754") + exports.Buffer = Buffer + exports.SlowBuffer = SlowBuffer + exports.INSPECT_MAX_BYTES = 50 + var K_MAX_LENGTH = 2147483647 + exports.kMaxLength = K_MAX_LENGTH + Buffer.TYPED_ARRAY_SUPPORT = typedArraySupport() + if ( + !Buffer.TYPED_ARRAY_SUPPORT && + typeof console !== "undefined" && + typeof console.error === "function" + ) { + console.error( + "This browser lacks typed array (Uint8Array) support which is required by " + + "`buffer` v5.x. Use `buffer` v4.x if you require old browser support." + ) + } + function typedArraySupport() { + try { + var arr = new Uint8Array(1) + arr.__proto__ = { + __proto__: Uint8Array.prototype, + foo: function() { + return 42 + } + } + return arr.foo() === 42 + } catch (e) { + return false + } + } + Object.defineProperty(Buffer.prototype, "parent", { + enumerable: true, + get: function() { + if (!Buffer.isBuffer(this)) return undefined + return this.buffer + } + }) + Object.defineProperty(Buffer.prototype, "offset", { + enumerable: true, + get: function() { + if (!Buffer.isBuffer(this)) return undefined + return this.byteOffset + } + }) + function createBuffer(length) { + if (length > K_MAX_LENGTH) { + throw new RangeError( + 'The value "' + length + '" is invalid for option "size"' + ) + } + var buf = new Uint8Array(length) + buf.__proto__ = Buffer.prototype + return buf + } + function Buffer(arg, encodingOrOffset, length) { + if (typeof arg === "number") { + if (typeof encodingOrOffset === "string") { + throw new TypeError( + 'The "string" argument must be of type string. Received type number' + ) + } + return allocUnsafe(arg) + } + return from(arg, encodingOrOffset, length) + } + if ( + typeof Symbol !== "undefined" && + Symbol.species != null && + Buffer[Symbol.species] === Buffer + ) { + Object.defineProperty(Buffer, Symbol.species, { + value: null, + configurable: true, + enumerable: false, + writable: false + }) + } + Buffer.poolSize = 8192 + function from(value, encodingOrOffset, length) { + if (typeof value === "string") { + return fromString(value, encodingOrOffset) + } + if (ArrayBuffer.isView(value)) { + return fromArrayLike(value) + } + if (value == null) { + throw TypeError( + "The first argument must be one of type string, Buffer, ArrayBuffer, Array, " + + "or Array-like Object. Received type " + + typeof value + ) + } + if ( + isInstance(value, ArrayBuffer) || + (value && isInstance(value.buffer, ArrayBuffer)) + ) { + return fromArrayBuffer(value, encodingOrOffset, length) + } + if (typeof value === "number") { + throw new TypeError( + 'The "value" argument must not be of type number. Received type number' + ) + } + var valueOf = value.valueOf && value.valueOf() + if (valueOf != null && valueOf !== value) { + return Buffer.from(valueOf, encodingOrOffset, length) + } + var b = fromObject(value) + if (b) return b + if ( + typeof Symbol !== "undefined" && + Symbol.toPrimitive != null && + typeof value[Symbol.toPrimitive] === "function" + ) { + return Buffer.from( + value[Symbol.toPrimitive]("string"), + encodingOrOffset, + length + ) + } + throw new TypeError( + "The first argument must be one of type string, Buffer, ArrayBuffer, Array, " + + "or Array-like Object. Received type " + + typeof value + ) + } + Buffer.from = function(value, encodingOrOffset, length) { + return from(value, encodingOrOffset, length) + } + Buffer.prototype.__proto__ = Uint8Array.prototype + Buffer.__proto__ = Uint8Array + function assertSize(size) { + if (typeof size !== "number") { + throw new TypeError('"size" argument must be of type number') + } else if (size < 0) { + throw new RangeError( + 'The value "' + size + '" is invalid for option "size"' + ) + } + } + function alloc(size, fill, encoding) { + assertSize(size) + if (size <= 0) { + return createBuffer(size) + } + if (fill !== undefined) { + return typeof encoding === "string" + ? createBuffer(size).fill(fill, encoding) + : createBuffer(size).fill(fill) + } + return createBuffer(size) + } + Buffer.alloc = function(size, fill, encoding) { + return alloc(size, fill, encoding) + } + function allocUnsafe(size) { + assertSize(size) + return createBuffer(size < 0 ? 0 : checked(size) | 0) + } + Buffer.allocUnsafe = function(size) { + return allocUnsafe(size) + } + Buffer.allocUnsafeSlow = function(size) { + return allocUnsafe(size) + } + function fromString(string, encoding) { + if (typeof encoding !== "string" || encoding === "") { + encoding = "utf8" + } + if (!Buffer.isEncoding(encoding)) { + throw new TypeError("Unknown encoding: " + encoding) + } + var length = byteLength(string, encoding) | 0 + var buf = createBuffer(length) + var actual = buf.write(string, encoding) + if (actual !== length) { + buf = buf.slice(0, actual) + } + return buf + } + function fromArrayLike(array) { + var length = array.length < 0 ? 0 : checked(array.length) | 0 + var buf = createBuffer(length) + for (var i = 0; i < length; i += 1) { + buf[i] = array[i] & 255 + } + return buf + } + function fromArrayBuffer(array, byteOffset, length) { + if (byteOffset < 0 || array.byteLength < byteOffset) { + throw new RangeError('"offset" is outside of buffer bounds') + } + if (array.byteLength < byteOffset + (length || 0)) { + throw new RangeError('"length" is outside of buffer bounds') + } + var buf + if (byteOffset === undefined && length === undefined) { + buf = new Uint8Array(array) + } else if (length === undefined) { + buf = new Uint8Array(array, byteOffset) + } else { + buf = new Uint8Array(array, byteOffset, length) + } + buf.__proto__ = Buffer.prototype + return buf + } + function fromObject(obj) { + if (Buffer.isBuffer(obj)) { + var len = checked(obj.length) | 0 + var buf = createBuffer(len) + if (buf.length === 0) { + return buf + } + obj.copy(buf, 0, 0, len) + return buf + } + if (obj.length !== undefined) { + if (typeof obj.length !== "number" || numberIsNaN(obj.length)) { + return createBuffer(0) + } + return fromArrayLike(obj) + } + if (obj.type === "Buffer" && Array.isArray(obj.data)) { + return fromArrayLike(obj.data) + } + } + function checked(length) { + if (length >= K_MAX_LENGTH) { + throw new RangeError( + "Attempt to allocate Buffer larger than maximum " + + "size: 0x" + + K_MAX_LENGTH.toString(16) + + " bytes" + ) + } + return length | 0 + } + function SlowBuffer(length) { + if (+length != length) { + length = 0 + } + return Buffer.alloc(+length) + } + Buffer.isBuffer = function isBuffer(b) { + return b != null && b._isBuffer === true && b !== Buffer.prototype + } + Buffer.compare = function compare(a, b) { + if (isInstance(a, Uint8Array)) + a = Buffer.from(a, a.offset, a.byteLength) + if (isInstance(b, Uint8Array)) + b = Buffer.from(b, b.offset, b.byteLength) + if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) { + throw new TypeError( + 'The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array' + ) + } + if (a === b) return 0 + var x = a.length + var y = b.length + for (var i = 0, len = Math.min(x, y); i < len; ++i) { + if (a[i] !== b[i]) { + x = a[i] + y = b[i] + break + } + } + if (x < y) return -1 + if (y < x) return 1 + return 0 + } + Buffer.isEncoding = function isEncoding(encoding) { + switch (String(encoding).toLowerCase()) { + case "hex": + case "utf8": + case "utf-8": + case "ascii": + case "latin1": + case "binary": + case "base64": + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return true + default: + return false + } + } + Buffer.concat = function concat(list, length) { + if (!Array.isArray(list)) { + throw new TypeError('"list" argument must be an Array of Buffers') + } + if (list.length === 0) { + return Buffer.alloc(0) + } + var i + if (length === undefined) { + length = 0 + for (i = 0; i < list.length; ++i) { + length += list[i].length + } + } + var buffer = Buffer.allocUnsafe(length) + var pos = 0 + for (i = 0; i < list.length; ++i) { + var buf = list[i] + if (isInstance(buf, Uint8Array)) { + buf = Buffer.from(buf) + } + if (!Buffer.isBuffer(buf)) { + throw new TypeError( + '"list" argument must be an Array of Buffers' + ) + } + buf.copy(buffer, pos) + pos += buf.length + } + return buffer + } + function byteLength(string, encoding) { + if (Buffer.isBuffer(string)) { + return string.length + } + if (ArrayBuffer.isView(string) || isInstance(string, ArrayBuffer)) { + return string.byteLength + } + if (typeof string !== "string") { + throw new TypeError( + 'The "string" argument must be one of type string, Buffer, or ArrayBuffer. ' + + "Received type " + + typeof string + ) + } + var len = string.length + var mustMatch = arguments.length > 2 && arguments[2] === true + if (!mustMatch && len === 0) return 0 + var loweredCase = false + for (;;) { + switch (encoding) { + case "ascii": + case "latin1": + case "binary": + return len + case "utf8": + case "utf-8": + return utf8ToBytes(string).length + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return len * 2 + case "hex": + return len >>> 1 + case "base64": + return base64ToBytes(string).length + default: + if (loweredCase) { + return mustMatch ? -1 : utf8ToBytes(string).length + } + encoding = ("" + encoding).toLowerCase() + loweredCase = true + } + } + } + Buffer.byteLength = byteLength + function slowToString(encoding, start, end) { + var loweredCase = false + if (start === undefined || start < 0) { + start = 0 + } + if (start > this.length) { + return "" + } + if (end === undefined || end > this.length) { + end = this.length + } + if (end <= 0) { + return "" + } + end >>>= 0 + start >>>= 0 + if (end <= start) { + return "" + } + if (!encoding) encoding = "utf8" + while (true) { + switch (encoding) { + case "hex": + return hexSlice(this, start, end) + case "utf8": + case "utf-8": + return utf8Slice(this, start, end) + case "ascii": + return asciiSlice(this, start, end) + case "latin1": + case "binary": + return latin1Slice(this, start, end) + case "base64": + return base64Slice(this, start, end) + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return utf16leSlice(this, start, end) + default: + if (loweredCase) + throw new TypeError("Unknown encoding: " + encoding) + encoding = (encoding + "").toLowerCase() + loweredCase = true + } + } + } + Buffer.prototype._isBuffer = true + function swap(b, n, m) { + var i = b[n] + b[n] = b[m] + b[m] = i + } + Buffer.prototype.swap16 = function swap16() { + var len = this.length + if (len % 2 !== 0) { + throw new RangeError("Buffer size must be a multiple of 16-bits") + } + for (var i = 0; i < len; i += 2) { + swap(this, i, i + 1) + } + return this + } + Buffer.prototype.swap32 = function swap32() { + var len = this.length + if (len % 4 !== 0) { + throw new RangeError("Buffer size must be a multiple of 32-bits") + } + for (var i = 0; i < len; i += 4) { + swap(this, i, i + 3) + swap(this, i + 1, i + 2) + } + return this + } + Buffer.prototype.swap64 = function swap64() { + var len = this.length + if (len % 8 !== 0) { + throw new RangeError("Buffer size must be a multiple of 64-bits") + } + for (var i = 0; i < len; i += 8) { + swap(this, i, i + 7) + swap(this, i + 1, i + 6) + swap(this, i + 2, i + 5) + swap(this, i + 3, i + 4) + } + return this + } + Buffer.prototype.toString = function toString() { + var length = this.length + if (length === 0) return "" + if (arguments.length === 0) return utf8Slice(this, 0, length) + return slowToString.apply(this, arguments) + } + Buffer.prototype.toLocaleString = Buffer.prototype.toString + Buffer.prototype.equals = function equals(b) { + if (!Buffer.isBuffer(b)) + throw new TypeError("Argument must be a Buffer") + if (this === b) return true + return Buffer.compare(this, b) === 0 + } + Buffer.prototype.inspect = function inspect() { + var str = "" + var max = exports.INSPECT_MAX_BYTES + str = this.toString("hex", 0, max) + .replace(/(.{2})/g, "$1 ") + .trim() + if (this.length > max) str += " ... " + return "" + } + Buffer.prototype.compare = function compare( + target, + start, + end, + thisStart, + thisEnd + ) { + if (isInstance(target, Uint8Array)) { + target = Buffer.from(target, target.offset, target.byteLength) + } + if (!Buffer.isBuffer(target)) { + throw new TypeError( + 'The "target" argument must be one of type Buffer or Uint8Array. ' + + "Received type " + + typeof target + ) + } + if (start === undefined) { + start = 0 + } + if (end === undefined) { + end = target ? target.length : 0 + } + if (thisStart === undefined) { + thisStart = 0 + } + if (thisEnd === undefined) { + thisEnd = this.length + } + if ( + start < 0 || + end > target.length || + thisStart < 0 || + thisEnd > this.length + ) { + throw new RangeError("out of range index") + } + if (thisStart >= thisEnd && start >= end) { + return 0 + } + if (thisStart >= thisEnd) { + return -1 + } + if (start >= end) { + return 1 + } + start >>>= 0 + end >>>= 0 + thisStart >>>= 0 + thisEnd >>>= 0 + if (this === target) return 0 + var x = thisEnd - thisStart + var y = end - start + var len = Math.min(x, y) + var thisCopy = this.slice(thisStart, thisEnd) + var targetCopy = target.slice(start, end) + for (var i = 0; i < len; ++i) { + if (thisCopy[i] !== targetCopy[i]) { + x = thisCopy[i] + y = targetCopy[i] + break + } + } + if (x < y) return -1 + if (y < x) return 1 + return 0 + } + function bidirectionalIndexOf( + buffer, + val, + byteOffset, + encoding, + dir + ) { + if (buffer.length === 0) return -1 + if (typeof byteOffset === "string") { + encoding = byteOffset + byteOffset = 0 + } else if (byteOffset > 2147483647) { + byteOffset = 2147483647 + } else if (byteOffset < -2147483648) { + byteOffset = -2147483648 + } + byteOffset = +byteOffset + if (numberIsNaN(byteOffset)) { + byteOffset = dir ? 0 : buffer.length - 1 + } + if (byteOffset < 0) byteOffset = buffer.length + byteOffset + if (byteOffset >= buffer.length) { + if (dir) return -1 + else byteOffset = buffer.length - 1 + } else if (byteOffset < 0) { + if (dir) byteOffset = 0 + else return -1 + } + if (typeof val === "string") { + val = Buffer.from(val, encoding) + } + if (Buffer.isBuffer(val)) { + if (val.length === 0) { + return -1 + } + return arrayIndexOf(buffer, val, byteOffset, encoding, dir) + } else if (typeof val === "number") { + val = val & 255 + if (typeof Uint8Array.prototype.indexOf === "function") { + if (dir) { + return Uint8Array.prototype.indexOf.call( + buffer, + val, + byteOffset + ) + } else { + return Uint8Array.prototype.lastIndexOf.call( + buffer, + val, + byteOffset + ) + } + } + return arrayIndexOf(buffer, [val], byteOffset, encoding, dir) + } + throw new TypeError("val must be string, number or Buffer") + } + function arrayIndexOf(arr, val, byteOffset, encoding, dir) { + var indexSize = 1 + var arrLength = arr.length + var valLength = val.length + if (encoding !== undefined) { + encoding = String(encoding).toLowerCase() + if ( + encoding === "ucs2" || + encoding === "ucs-2" || + encoding === "utf16le" || + encoding === "utf-16le" + ) { + if (arr.length < 2 || val.length < 2) { + return -1 + } + indexSize = 2 + arrLength /= 2 + valLength /= 2 + byteOffset /= 2 + } + } + function read(buf, i) { + if (indexSize === 1) { + return buf[i] + } else { + return buf.readUInt16BE(i * indexSize) + } + } + var i + if (dir) { + var foundIndex = -1 + for (i = byteOffset; i < arrLength; i++) { + if ( + read(arr, i) === + read(val, foundIndex === -1 ? 0 : i - foundIndex) + ) { + if (foundIndex === -1) foundIndex = i + if (i - foundIndex + 1 === valLength) + return foundIndex * indexSize + } else { + if (foundIndex !== -1) i -= i - foundIndex + foundIndex = -1 + } + } + } else { + if (byteOffset + valLength > arrLength) + byteOffset = arrLength - valLength + for (i = byteOffset; i >= 0; i--) { + var found = true + for (var j = 0; j < valLength; j++) { + if (read(arr, i + j) !== read(val, j)) { + found = false + break + } + } + if (found) return i + } + } + return -1 + } + Buffer.prototype.includes = function includes( + val, + byteOffset, + encoding + ) { + return this.indexOf(val, byteOffset, encoding) !== -1 + } + Buffer.prototype.indexOf = function indexOf( + val, + byteOffset, + encoding + ) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, true) + } + Buffer.prototype.lastIndexOf = function lastIndexOf( + val, + byteOffset, + encoding + ) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, false) + } + function hexWrite(buf, string, offset, length) { + offset = Number(offset) || 0 + var remaining = buf.length - offset + if (!length) { + length = remaining + } else { + length = Number(length) + if (length > remaining) { + length = remaining + } + } + var strLen = string.length + if (length > strLen / 2) { + length = strLen / 2 + } + for (var i = 0; i < length; ++i) { + var parsed = parseInt(string.substr(i * 2, 2), 16) + if (numberIsNaN(parsed)) return i + buf[offset + i] = parsed + } + return i + } + function utf8Write(buf, string, offset, length) { + return blitBuffer( + utf8ToBytes(string, buf.length - offset), + buf, + offset, + length + ) + } + function asciiWrite(buf, string, offset, length) { + return blitBuffer(asciiToBytes(string), buf, offset, length) + } + function latin1Write(buf, string, offset, length) { + return asciiWrite(buf, string, offset, length) + } + function base64Write(buf, string, offset, length) { + return blitBuffer(base64ToBytes(string), buf, offset, length) + } + function ucs2Write(buf, string, offset, length) { + return blitBuffer( + utf16leToBytes(string, buf.length - offset), + buf, + offset, + length + ) + } + Buffer.prototype.write = function write( + string, + offset, + length, + encoding + ) { + if (offset === undefined) { + encoding = "utf8" + length = this.length + offset = 0 + } else if (length === undefined && typeof offset === "string") { + encoding = offset + length = this.length + offset = 0 + } else if (isFinite(offset)) { + offset = offset >>> 0 + if (isFinite(length)) { + length = length >>> 0 + if (encoding === undefined) encoding = "utf8" + } else { + encoding = length + length = undefined + } + } else { + throw new Error( + "Buffer.write(string, encoding, offset[, length]) is no longer supported" + ) + } + var remaining = this.length - offset + if (length === undefined || length > remaining) length = remaining + if ( + (string.length > 0 && (length < 0 || offset < 0)) || + offset > this.length + ) { + throw new RangeError("Attempt to write outside buffer bounds") + } + if (!encoding) encoding = "utf8" + var loweredCase = false + for (;;) { + switch (encoding) { + case "hex": + return hexWrite(this, string, offset, length) + case "utf8": + case "utf-8": + return utf8Write(this, string, offset, length) + case "ascii": + return asciiWrite(this, string, offset, length) + case "latin1": + case "binary": + return latin1Write(this, string, offset, length) + case "base64": + return base64Write(this, string, offset, length) + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return ucs2Write(this, string, offset, length) + default: + if (loweredCase) + throw new TypeError("Unknown encoding: " + encoding) + encoding = ("" + encoding).toLowerCase() + loweredCase = true + } + } + } + Buffer.prototype.toJSON = function toJSON() { + return { + type: "Buffer", + data: Array.prototype.slice.call(this._arr || this, 0) + } + } + function base64Slice(buf, start, end) { + if (start === 0 && end === buf.length) { + return base64.fromByteArray(buf) + } else { + return base64.fromByteArray(buf.slice(start, end)) + } + } + function utf8Slice(buf, start, end) { + end = Math.min(buf.length, end) + var res = [] + var i = start + while (i < end) { + var firstByte = buf[i] + var codePoint = null + var bytesPerSequence = + firstByte > 239 + ? 4 + : firstByte > 223 + ? 3 + : firstByte > 191 + ? 2 + : 1 + if (i + bytesPerSequence <= end) { + var secondByte, thirdByte, fourthByte, tempCodePoint + switch (bytesPerSequence) { + case 1: + if (firstByte < 128) { + codePoint = firstByte + } + break + case 2: + secondByte = buf[i + 1] + if ((secondByte & 192) === 128) { + tempCodePoint = + ((firstByte & 31) << 6) | (secondByte & 63) + if (tempCodePoint > 127) { + codePoint = tempCodePoint + } + } + break + case 3: + secondByte = buf[i + 1] + thirdByte = buf[i + 2] + if ( + (secondByte & 192) === 128 && + (thirdByte & 192) === 128 + ) { + tempCodePoint = + ((firstByte & 15) << 12) | + ((secondByte & 63) << 6) | + (thirdByte & 63) + if ( + tempCodePoint > 2047 && + (tempCodePoint < 55296 || tempCodePoint > 57343) + ) { + codePoint = tempCodePoint + } + } + break + case 4: + secondByte = buf[i + 1] + thirdByte = buf[i + 2] + fourthByte = buf[i + 3] + if ( + (secondByte & 192) === 128 && + (thirdByte & 192) === 128 && + (fourthByte & 192) === 128 + ) { + tempCodePoint = + ((firstByte & 15) << 18) | + ((secondByte & 63) << 12) | + ((thirdByte & 63) << 6) | + (fourthByte & 63) + if (tempCodePoint > 65535 && tempCodePoint < 1114112) { + codePoint = tempCodePoint + } + } + } + } + if (codePoint === null) { + codePoint = 65533 + bytesPerSequence = 1 + } else if (codePoint > 65535) { + codePoint -= 65536 + res.push(((codePoint >>> 10) & 1023) | 55296) + codePoint = 56320 | (codePoint & 1023) + } + res.push(codePoint) + i += bytesPerSequence + } + return decodeCodePointsArray(res) + } + var MAX_ARGUMENTS_LENGTH = 4096 + function decodeCodePointsArray(codePoints) { + var len = codePoints.length + if (len <= MAX_ARGUMENTS_LENGTH) { + return String.fromCharCode.apply(String, codePoints) + } + var res = "" + var i = 0 + while (i < len) { + res += String.fromCharCode.apply( + String, + codePoints.slice(i, (i += MAX_ARGUMENTS_LENGTH)) + ) + } + return res + } + function asciiSlice(buf, start, end) { + var ret = "" + end = Math.min(buf.length, end) + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i] & 127) + } + return ret + } + function latin1Slice(buf, start, end) { + var ret = "" + end = Math.min(buf.length, end) + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i]) + } + return ret + } + function hexSlice(buf, start, end) { + var len = buf.length + if (!start || start < 0) start = 0 + if (!end || end < 0 || end > len) end = len + var out = "" + for (var i = start; i < end; ++i) { + out += toHex(buf[i]) + } + return out + } + function utf16leSlice(buf, start, end) { + var bytes = buf.slice(start, end) + var res = "" + for (var i = 0; i < bytes.length; i += 2) { + res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256) + } + return res + } + Buffer.prototype.slice = function slice(start, end) { + var len = this.length + start = ~~start + end = end === undefined ? len : ~~end + if (start < 0) { + start += len + if (start < 0) start = 0 + } else if (start > len) { + start = len + } + if (end < 0) { + end += len + if (end < 0) end = 0 + } else if (end > len) { + end = len + } + if (end < start) end = start + var newBuf = this.subarray(start, end) + newBuf.__proto__ = Buffer.prototype + return newBuf + } + function checkOffset(offset, ext, length) { + if (offset % 1 !== 0 || offset < 0) + throw new RangeError("offset is not uint") + if (offset + ext > length) + throw new RangeError("Trying to access beyond buffer length") + } + Buffer.prototype.readUIntLE = function readUIntLE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + var val = this[offset] + var mul = 1 + var i = 0 + while (++i < byteLength && (mul *= 256)) { + val += this[offset + i] * mul + } + return val + } + Buffer.prototype.readUIntBE = function readUIntBE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) { + checkOffset(offset, byteLength, this.length) + } + var val = this[offset + --byteLength] + var mul = 1 + while (byteLength > 0 && (mul *= 256)) { + val += this[offset + --byteLength] * mul + } + return val + } + Buffer.prototype.readUInt8 = function readUInt8(offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 1, this.length) + return this[offset] + } + Buffer.prototype.readUInt16LE = function readUInt16LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + return this[offset] | (this[offset + 1] << 8) + } + Buffer.prototype.readUInt16BE = function readUInt16BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + return (this[offset] << 8) | this[offset + 1] + } + Buffer.prototype.readUInt32LE = function readUInt32LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ( + (this[offset] | + (this[offset + 1] << 8) | + (this[offset + 2] << 16)) + + this[offset + 3] * 16777216 + ) + } + Buffer.prototype.readUInt32BE = function readUInt32BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ( + this[offset] * 16777216 + + ((this[offset + 1] << 16) | + (this[offset + 2] << 8) | + this[offset + 3]) + ) + } + Buffer.prototype.readIntLE = function readIntLE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + var val = this[offset] + var mul = 1 + var i = 0 + while (++i < byteLength && (mul *= 256)) { + val += this[offset + i] * mul + } + mul *= 128 + if (val >= mul) val -= Math.pow(2, 8 * byteLength) + return val + } + Buffer.prototype.readIntBE = function readIntBE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + var i = byteLength + var mul = 1 + var val = this[offset + --i] + while (i > 0 && (mul *= 256)) { + val += this[offset + --i] * mul + } + mul *= 128 + if (val >= mul) val -= Math.pow(2, 8 * byteLength) + return val + } + Buffer.prototype.readInt8 = function readInt8(offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 1, this.length) + if (!(this[offset] & 128)) return this[offset] + return (255 - this[offset] + 1) * -1 + } + Buffer.prototype.readInt16LE = function readInt16LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + var val = this[offset] | (this[offset + 1] << 8) + return val & 32768 ? val | 4294901760 : val + } + Buffer.prototype.readInt16BE = function readInt16BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + var val = this[offset + 1] | (this[offset] << 8) + return val & 32768 ? val | 4294901760 : val + } + Buffer.prototype.readInt32LE = function readInt32LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ( + this[offset] | + (this[offset + 1] << 8) | + (this[offset + 2] << 16) | + (this[offset + 3] << 24) + ) + } + Buffer.prototype.readInt32BE = function readInt32BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ( + (this[offset] << 24) | + (this[offset + 1] << 16) | + (this[offset + 2] << 8) | + this[offset + 3] + ) + } + Buffer.prototype.readFloatLE = function readFloatLE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ieee754.read(this, offset, true, 23, 4) + } + Buffer.prototype.readFloatBE = function readFloatBE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ieee754.read(this, offset, false, 23, 4) + } + Buffer.prototype.readDoubleLE = function readDoubleLE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 8, this.length) + return ieee754.read(this, offset, true, 52, 8) + } + Buffer.prototype.readDoubleBE = function readDoubleBE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 8, this.length) + return ieee754.read(this, offset, false, 52, 8) + } + function checkInt(buf, value, offset, ext, max, min) { + if (!Buffer.isBuffer(buf)) + throw new TypeError('"buffer" argument must be a Buffer instance') + if (value > max || value < min) + throw new RangeError('"value" argument is out of bounds') + if (offset + ext > buf.length) + throw new RangeError("Index out of range") + } + Buffer.prototype.writeUIntLE = function writeUIntLE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1 + checkInt(this, value, offset, byteLength, maxBytes, 0) + } + var mul = 1 + var i = 0 + this[offset] = value & 255 + while (++i < byteLength && (mul *= 256)) { + this[offset + i] = (value / mul) & 255 + } + return offset + byteLength + } + Buffer.prototype.writeUIntBE = function writeUIntBE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1 + checkInt(this, value, offset, byteLength, maxBytes, 0) + } + var i = byteLength - 1 + var mul = 1 + this[offset + i] = value & 255 + while (--i >= 0 && (mul *= 256)) { + this[offset + i] = (value / mul) & 255 + } + return offset + byteLength + } + Buffer.prototype.writeUInt8 = function writeUInt8( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 1, 255, 0) + this[offset] = value & 255 + return offset + 1 + } + Buffer.prototype.writeUInt16LE = function writeUInt16LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 65535, 0) + this[offset] = value & 255 + this[offset + 1] = value >>> 8 + return offset + 2 + } + Buffer.prototype.writeUInt16BE = function writeUInt16BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 65535, 0) + this[offset] = value >>> 8 + this[offset + 1] = value & 255 + return offset + 2 + } + Buffer.prototype.writeUInt32LE = function writeUInt32LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 4, 4294967295, 0) + this[offset + 3] = value >>> 24 + this[offset + 2] = value >>> 16 + this[offset + 1] = value >>> 8 + this[offset] = value & 255 + return offset + 4 + } + Buffer.prototype.writeUInt32BE = function writeUInt32BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 4, 4294967295, 0) + this[offset] = value >>> 24 + this[offset + 1] = value >>> 16 + this[offset + 2] = value >>> 8 + this[offset + 3] = value & 255 + return offset + 4 + } + Buffer.prototype.writeIntLE = function writeIntLE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1) + checkInt(this, value, offset, byteLength, limit - 1, -limit) + } + var i = 0 + var mul = 1 + var sub = 0 + this[offset] = value & 255 + while (++i < byteLength && (mul *= 256)) { + if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) { + sub = 1 + } + this[offset + i] = (((value / mul) >> 0) - sub) & 255 + } + return offset + byteLength + } + Buffer.prototype.writeIntBE = function writeIntBE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1) + checkInt(this, value, offset, byteLength, limit - 1, -limit) + } + var i = byteLength - 1 + var mul = 1 + var sub = 0 + this[offset + i] = value & 255 + while (--i >= 0 && (mul *= 256)) { + if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) { + sub = 1 + } + this[offset + i] = (((value / mul) >> 0) - sub) & 255 + } + return offset + byteLength + } + Buffer.prototype.writeInt8 = function writeInt8( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 1, 127, -128) + if (value < 0) value = 255 + value + 1 + this[offset] = value & 255 + return offset + 1 + } + Buffer.prototype.writeInt16LE = function writeInt16LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 32767, -32768) + this[offset] = value & 255 + this[offset + 1] = value >>> 8 + return offset + 2 + } + Buffer.prototype.writeInt16BE = function writeInt16BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 32767, -32768) + this[offset] = value >>> 8 + this[offset + 1] = value & 255 + return offset + 2 + } + Buffer.prototype.writeInt32LE = function writeInt32LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) + checkInt(this, value, offset, 4, 2147483647, -2147483648) + this[offset] = value & 255 + this[offset + 1] = value >>> 8 + this[offset + 2] = value >>> 16 + this[offset + 3] = value >>> 24 + return offset + 4 + } + Buffer.prototype.writeInt32BE = function writeInt32BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) + checkInt(this, value, offset, 4, 2147483647, -2147483648) + if (value < 0) value = 4294967295 + value + 1 + this[offset] = value >>> 24 + this[offset + 1] = value >>> 16 + this[offset + 2] = value >>> 8 + this[offset + 3] = value & 255 + return offset + 4 + } + function checkIEEE754(buf, value, offset, ext, max, min) { + if (offset + ext > buf.length) + throw new RangeError("Index out of range") + if (offset < 0) throw new RangeError("Index out of range") + } + function writeFloat(buf, value, offset, littleEndian, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + checkIEEE754( + buf, + value, + offset, + 4, + 3.4028234663852886e38, + -3.4028234663852886e38 + ) + } + ieee754.write(buf, value, offset, littleEndian, 23, 4) + return offset + 4 + } + Buffer.prototype.writeFloatLE = function writeFloatLE( + value, + offset, + noAssert + ) { + return writeFloat(this, value, offset, true, noAssert) + } + Buffer.prototype.writeFloatBE = function writeFloatBE( + value, + offset, + noAssert + ) { + return writeFloat(this, value, offset, false, noAssert) + } + function writeDouble(buf, value, offset, littleEndian, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + checkIEEE754( + buf, + value, + offset, + 8, + 1.7976931348623157e308, + -1.7976931348623157e308 + ) + } + ieee754.write(buf, value, offset, littleEndian, 52, 8) + return offset + 8 + } + Buffer.prototype.writeDoubleLE = function writeDoubleLE( + value, + offset, + noAssert + ) { + return writeDouble(this, value, offset, true, noAssert) + } + Buffer.prototype.writeDoubleBE = function writeDoubleBE( + value, + offset, + noAssert + ) { + return writeDouble(this, value, offset, false, noAssert) + } + Buffer.prototype.copy = function copy( + target, + targetStart, + start, + end + ) { + if (!Buffer.isBuffer(target)) + throw new TypeError("argument should be a Buffer") + if (!start) start = 0 + if (!end && end !== 0) end = this.length + if (targetStart >= target.length) targetStart = target.length + if (!targetStart) targetStart = 0 + if (end > 0 && end < start) end = start + if (end === start) return 0 + if (target.length === 0 || this.length === 0) return 0 + if (targetStart < 0) { + throw new RangeError("targetStart out of bounds") + } + if (start < 0 || start >= this.length) + throw new RangeError("Index out of range") + if (end < 0) throw new RangeError("sourceEnd out of bounds") + if (end > this.length) end = this.length + if (target.length - targetStart < end - start) { + end = target.length - targetStart + start + } + var len = end - start + if ( + this === target && + typeof Uint8Array.prototype.copyWithin === "function" + ) { + this.copyWithin(targetStart, start, end) + } else if ( + this === target && + start < targetStart && + targetStart < end + ) { + for (var i = len - 1; i >= 0; --i) { + target[i + targetStart] = this[i + start] + } + } else { + Uint8Array.prototype.set.call( + target, + this.subarray(start, end), + targetStart + ) + } + return len + } + Buffer.prototype.fill = function fill(val, start, end, encoding) { + if (typeof val === "string") { + if (typeof start === "string") { + encoding = start + start = 0 + end = this.length + } else if (typeof end === "string") { + encoding = end + end = this.length + } + if (encoding !== undefined && typeof encoding !== "string") { + throw new TypeError("encoding must be a string") + } + if ( + typeof encoding === "string" && + !Buffer.isEncoding(encoding) + ) { + throw new TypeError("Unknown encoding: " + encoding) + } + if (val.length === 1) { + var code = val.charCodeAt(0) + if ( + (encoding === "utf8" && code < 128) || + encoding === "latin1" + ) { + val = code + } + } + } else if (typeof val === "number") { + val = val & 255 + } + if (start < 0 || this.length < start || this.length < end) { + throw new RangeError("Out of range index") + } + if (end <= start) { + return this + } + start = start >>> 0 + end = end === undefined ? this.length : end >>> 0 + if (!val) val = 0 + var i + if (typeof val === "number") { + for (i = start; i < end; ++i) { + this[i] = val + } + } else { + var bytes = Buffer.isBuffer(val) + ? val + : Buffer.from(val, encoding) + var len = bytes.length + if (len === 0) { + throw new TypeError( + 'The value "' + val + '" is invalid for argument "value"' + ) + } + for (i = 0; i < end - start; ++i) { + this[i + start] = bytes[i % len] + } + } + return this + } + var INVALID_BASE64_RE = /[^+\/0-9A-Za-z-_]/g + function base64clean(str) { + str = str.split("=")[0] + str = str.trim().replace(INVALID_BASE64_RE, "") + if (str.length < 2) return "" + while (str.length % 4 !== 0) { + str = str + "=" + } + return str + } + function toHex(n) { + if (n < 16) return "0" + n.toString(16) + return n.toString(16) + } + function utf8ToBytes(string, units) { + units = units || Infinity + var codePoint + var length = string.length + var leadSurrogate = null + var bytes = [] + for (var i = 0; i < length; ++i) { + codePoint = string.charCodeAt(i) + if (codePoint > 55295 && codePoint < 57344) { + if (!leadSurrogate) { + if (codePoint > 56319) { + if ((units -= 3) > -1) bytes.push(239, 191, 189) + continue + } else if (i + 1 === length) { + if ((units -= 3) > -1) bytes.push(239, 191, 189) + continue + } + leadSurrogate = codePoint + continue + } + if (codePoint < 56320) { + if ((units -= 3) > -1) bytes.push(239, 191, 189) + leadSurrogate = codePoint + continue + } + codePoint = + (((leadSurrogate - 55296) << 10) | (codePoint - 56320)) + + 65536 + } else if (leadSurrogate) { + if ((units -= 3) > -1) bytes.push(239, 191, 189) + } + leadSurrogate = null + if (codePoint < 128) { + if ((units -= 1) < 0) break + bytes.push(codePoint) + } else if (codePoint < 2048) { + if ((units -= 2) < 0) break + bytes.push((codePoint >> 6) | 192, (codePoint & 63) | 128) + } else if (codePoint < 65536) { + if ((units -= 3) < 0) break + bytes.push( + (codePoint >> 12) | 224, + ((codePoint >> 6) & 63) | 128, + (codePoint & 63) | 128 + ) + } else if (codePoint < 1114112) { + if ((units -= 4) < 0) break + bytes.push( + (codePoint >> 18) | 240, + ((codePoint >> 12) & 63) | 128, + ((codePoint >> 6) & 63) | 128, + (codePoint & 63) | 128 + ) + } else { + throw new Error("Invalid code point") + } + } + return bytes + } + function asciiToBytes(str) { + var byteArray = [] + for (var i = 0; i < str.length; ++i) { + byteArray.push(str.charCodeAt(i) & 255) + } + return byteArray + } + function utf16leToBytes(str, units) { + var c, hi, lo + var byteArray = [] + for (var i = 0; i < str.length; ++i) { + if ((units -= 2) < 0) break + c = str.charCodeAt(i) + hi = c >> 8 + lo = c % 256 + byteArray.push(lo) + byteArray.push(hi) + } + return byteArray + } + function base64ToBytes(str) { + return base64.toByteArray(base64clean(str)) + } + function blitBuffer(src, dst, offset, length) { + for (var i = 0; i < length; ++i) { + if (i + offset >= dst.length || i >= src.length) break + dst[i + offset] = src[i] + } + return i + } + function isInstance(obj, type) { + return ( + obj instanceof type || + (obj != null && + obj.constructor != null && + obj.constructor.name != null && + obj.constructor.name === type.name) + ) + } + function numberIsNaN(obj) { + return obj !== obj + } + }, + { "base64-js": 1, ieee754: 6 } + ], + 4: [ + function(require, module, exports) { + ;(function(Buffer) { + function isArray(arg) { + if (Array.isArray) { + return Array.isArray(arg) + } + return objectToString(arg) === "[object Array]" + } + exports.isArray = isArray + function isBoolean(arg) { + return typeof arg === "boolean" + } + exports.isBoolean = isBoolean + function isNull(arg) { + return arg === null + } + exports.isNull = isNull + function isNullOrUndefined(arg) { + return arg == null + } + exports.isNullOrUndefined = isNullOrUndefined + function isNumber(arg) { + return typeof arg === "number" + } + exports.isNumber = isNumber + function isString(arg) { + return typeof arg === "string" + } + exports.isString = isString + function isSymbol(arg) { + return typeof arg === "symbol" + } + exports.isSymbol = isSymbol + function isUndefined(arg) { + return arg === void 0 + } + exports.isUndefined = isUndefined + function isRegExp(re) { + return objectToString(re) === "[object RegExp]" + } + exports.isRegExp = isRegExp + function isObject(arg) { + return typeof arg === "object" && arg !== null + } + exports.isObject = isObject + function isDate(d) { + return objectToString(d) === "[object Date]" + } + exports.isDate = isDate + function isError(e) { + return ( + objectToString(e) === "[object Error]" || e instanceof Error + ) + } + exports.isError = isError + function isFunction(arg) { + return typeof arg === "function" + } + exports.isFunction = isFunction + function isPrimitive(arg) { + return ( + arg === null || + typeof arg === "boolean" || + typeof arg === "number" || + typeof arg === "string" || + typeof arg === "symbol" || + typeof arg === "undefined" + ) + } + exports.isPrimitive = isPrimitive + exports.isBuffer = Buffer.isBuffer + function objectToString(o) { + return Object.prototype.toString.call(o) + } + }.call(this, { isBuffer: require("../../is-buffer/index.js") })) + }, + { "../../is-buffer/index.js": 8 } + ], + 5: [ + function(require, module, exports) { + var objectCreate = Object.create || objectCreatePolyfill + var objectKeys = Object.keys || objectKeysPolyfill + var bind = Function.prototype.bind || functionBindPolyfill + function EventEmitter() { + if ( + !this._events || + !Object.prototype.hasOwnProperty.call(this, "_events") + ) { + this._events = objectCreate(null) + this._eventsCount = 0 + } + this._maxListeners = this._maxListeners || undefined + } + module.exports = EventEmitter + EventEmitter.EventEmitter = EventEmitter + EventEmitter.prototype._events = undefined + EventEmitter.prototype._maxListeners = undefined + var defaultMaxListeners = 10 + var hasDefineProperty + try { + var o = {} + if (Object.defineProperty) + Object.defineProperty(o, "x", { value: 0 }) + hasDefineProperty = o.x === 0 + } catch (err) { + hasDefineProperty = false + } + if (hasDefineProperty) { + Object.defineProperty(EventEmitter, "defaultMaxListeners", { + enumerable: true, + get: function() { + return defaultMaxListeners + }, + set: function(arg) { + if (typeof arg !== "number" || arg < 0 || arg !== arg) + throw new TypeError( + '"defaultMaxListeners" must be a positive number' + ) + defaultMaxListeners = arg + } + }) + } else { + EventEmitter.defaultMaxListeners = defaultMaxListeners + } + EventEmitter.prototype.setMaxListeners = function setMaxListeners(n) { + if (typeof n !== "number" || n < 0 || isNaN(n)) + throw new TypeError('"n" argument must be a positive number') + this._maxListeners = n + return this + } + function $getMaxListeners(that) { + if (that._maxListeners === undefined) + return EventEmitter.defaultMaxListeners + return that._maxListeners + } + EventEmitter.prototype.getMaxListeners = function getMaxListeners() { + return $getMaxListeners(this) + } + function emitNone(handler, isFn, self) { + if (isFn) handler.call(self) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].call(self) + } + } + function emitOne(handler, isFn, self, arg1) { + if (isFn) handler.call(self, arg1) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].call(self, arg1) + } + } + function emitTwo(handler, isFn, self, arg1, arg2) { + if (isFn) handler.call(self, arg1, arg2) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].call(self, arg1, arg2) + } + } + function emitThree(handler, isFn, self, arg1, arg2, arg3) { + if (isFn) handler.call(self, arg1, arg2, arg3) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) + listeners[i].call(self, arg1, arg2, arg3) + } + } + function emitMany(handler, isFn, self, args) { + if (isFn) handler.apply(self, args) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].apply(self, args) + } + } + EventEmitter.prototype.emit = function emit(type) { + var er, handler, len, args, i, events + var doError = type === "error" + events = this._events + if (events) doError = doError && events.error == null + else if (!doError) return false + if (doError) { + if (arguments.length > 1) er = arguments[1] + if (er instanceof Error) { + throw er + } else { + var err = new Error('Unhandled "error" event. (' + er + ")") + err.context = er + throw err + } + return false + } + handler = events[type] + if (!handler) return false + var isFn = typeof handler === "function" + len = arguments.length + switch (len) { + case 1: + emitNone(handler, isFn, this) + break + case 2: + emitOne(handler, isFn, this, arguments[1]) + break + case 3: + emitTwo(handler, isFn, this, arguments[1], arguments[2]) + break + case 4: + emitThree( + handler, + isFn, + this, + arguments[1], + arguments[2], + arguments[3] + ) + break + default: + args = new Array(len - 1) + for (i = 1; i < len; i++) args[i - 1] = arguments[i] + emitMany(handler, isFn, this, args) + } + return true + } + function _addListener(target, type, listener, prepend) { + var m + var events + var existing + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + events = target._events + if (!events) { + events = target._events = objectCreate(null) + target._eventsCount = 0 + } else { + if (events.newListener) { + target.emit( + "newListener", + type, + listener.listener ? listener.listener : listener + ) + events = target._events + } + existing = events[type] + } + if (!existing) { + existing = events[type] = listener + ++target._eventsCount + } else { + if (typeof existing === "function") { + existing = events[type] = prepend + ? [listener, existing] + : [existing, listener] + } else { + if (prepend) { + existing.unshift(listener) + } else { + existing.push(listener) + } + } + if (!existing.warned) { + m = $getMaxListeners(target) + if (m && m > 0 && existing.length > m) { + existing.warned = true + var w = new Error( + "Possible EventEmitter memory leak detected. " + + existing.length + + ' "' + + String(type) + + '" listeners ' + + "added. Use emitter.setMaxListeners() to " + + "increase limit." + ) + w.name = "MaxListenersExceededWarning" + w.emitter = target + w.type = type + w.count = existing.length + if (typeof console === "object" && console.warn) { + console.warn("%s: %s", w.name, w.message) + } + } + } + } + return target + } + EventEmitter.prototype.addListener = function addListener( + type, + listener + ) { + return _addListener(this, type, listener, false) + } + EventEmitter.prototype.on = EventEmitter.prototype.addListener + EventEmitter.prototype.prependListener = function prependListener( + type, + listener + ) { + return _addListener(this, type, listener, true) + } + function onceWrapper() { + if (!this.fired) { + this.target.removeListener(this.type, this.wrapFn) + this.fired = true + switch (arguments.length) { + case 0: + return this.listener.call(this.target) + case 1: + return this.listener.call(this.target, arguments[0]) + case 2: + return this.listener.call( + this.target, + arguments[0], + arguments[1] + ) + case 3: + return this.listener.call( + this.target, + arguments[0], + arguments[1], + arguments[2] + ) + default: + var args = new Array(arguments.length) + for (var i = 0; i < args.length; ++i) args[i] = arguments[i] + this.listener.apply(this.target, args) + } + } + } + function _onceWrap(target, type, listener) { + var state = { + fired: false, + wrapFn: undefined, + target: target, + type: type, + listener: listener + } + var wrapped = bind.call(onceWrapper, state) + wrapped.listener = listener + state.wrapFn = wrapped + return wrapped + } + EventEmitter.prototype.once = function once(type, listener) { + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + this.on(type, _onceWrap(this, type, listener)) + return this + } + EventEmitter.prototype.prependOnceListener = function prependOnceListener( + type, + listener + ) { + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + this.prependListener(type, _onceWrap(this, type, listener)) + return this + } + EventEmitter.prototype.removeListener = function removeListener( + type, + listener + ) { + var list, events, position, i, originalListener + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + events = this._events + if (!events) return this + list = events[type] + if (!list) return this + if (list === listener || list.listener === listener) { + if (--this._eventsCount === 0) this._events = objectCreate(null) + else { + delete events[type] + if (events.removeListener) + this.emit("removeListener", type, list.listener || listener) + } + } else if (typeof list !== "function") { + position = -1 + for (i = list.length - 1; i >= 0; i--) { + if (list[i] === listener || list[i].listener === listener) { + originalListener = list[i].listener + position = i + break + } + } + if (position < 0) return this + if (position === 0) list.shift() + else spliceOne(list, position) + if (list.length === 1) events[type] = list[0] + if (events.removeListener) + this.emit("removeListener", type, originalListener || listener) + } + return this + } + EventEmitter.prototype.removeAllListeners = function removeAllListeners( + type + ) { + var listeners, events, i + events = this._events + if (!events) return this + if (!events.removeListener) { + if (arguments.length === 0) { + this._events = objectCreate(null) + this._eventsCount = 0 + } else if (events[type]) { + if (--this._eventsCount === 0) this._events = objectCreate(null) + else delete events[type] + } + return this + } + if (arguments.length === 0) { + var keys = objectKeys(events) + var key + for (i = 0; i < keys.length; ++i) { + key = keys[i] + if (key === "removeListener") continue + this.removeAllListeners(key) + } + this.removeAllListeners("removeListener") + this._events = objectCreate(null) + this._eventsCount = 0 + return this + } + listeners = events[type] + if (typeof listeners === "function") { + this.removeListener(type, listeners) + } else if (listeners) { + for (i = listeners.length - 1; i >= 0; i--) { + this.removeListener(type, listeners[i]) + } + } + return this + } + function _listeners(target, type, unwrap) { + var events = target._events + if (!events) return [] + var evlistener = events[type] + if (!evlistener) return [] + if (typeof evlistener === "function") + return unwrap ? [evlistener.listener || evlistener] : [evlistener] + return unwrap + ? unwrapListeners(evlistener) + : arrayClone(evlistener, evlistener.length) + } + EventEmitter.prototype.listeners = function listeners(type) { + return _listeners(this, type, true) + } + EventEmitter.prototype.rawListeners = function rawListeners(type) { + return _listeners(this, type, false) + } + EventEmitter.listenerCount = function(emitter, type) { + if (typeof emitter.listenerCount === "function") { + return emitter.listenerCount(type) + } else { + return listenerCount.call(emitter, type) + } + } + EventEmitter.prototype.listenerCount = listenerCount + function listenerCount(type) { + var events = this._events + if (events) { + var evlistener = events[type] + if (typeof evlistener === "function") { + return 1 + } else if (evlistener) { + return evlistener.length + } + } + return 0 + } + EventEmitter.prototype.eventNames = function eventNames() { + return this._eventsCount > 0 ? Reflect.ownKeys(this._events) : [] + } + function spliceOne(list, index) { + for ( + var i = index, k = i + 1, n = list.length; + k < n; + i += 1, k += 1 + ) + list[i] = list[k] + list.pop() + } + function arrayClone(arr, n) { + var copy = new Array(n) + for (var i = 0; i < n; ++i) copy[i] = arr[i] + return copy + } + function unwrapListeners(arr) { + var ret = new Array(arr.length) + for (var i = 0; i < ret.length; ++i) { + ret[i] = arr[i].listener || arr[i] + } + return ret + } + function objectCreatePolyfill(proto) { + var F = function() {} + F.prototype = proto + return new F() + } + function objectKeysPolyfill(obj) { + var keys = [] + for (var k in obj) + if (Object.prototype.hasOwnProperty.call(obj, k)) { + keys.push(k) + } + return k + } + function functionBindPolyfill(context) { + var fn = this + return function() { + return fn.apply(context, arguments) + } + } + }, + {} + ], + 6: [ + function(require, module, exports) { + exports.read = function(buffer, offset, isLE, mLen, nBytes) { + var e, m + var eLen = nBytes * 8 - mLen - 1 + var eMax = (1 << eLen) - 1 + var eBias = eMax >> 1 + var nBits = -7 + var i = isLE ? nBytes - 1 : 0 + var d = isLE ? -1 : 1 + var s = buffer[offset + i] + i += d + e = s & ((1 << -nBits) - 1) + s >>= -nBits + nBits += eLen + for ( + ; + nBits > 0; + e = e * 256 + buffer[offset + i], i += d, nBits -= 8 + ) {} + m = e & ((1 << -nBits) - 1) + e >>= -nBits + nBits += mLen + for ( + ; + nBits > 0; + m = m * 256 + buffer[offset + i], i += d, nBits -= 8 + ) {} + if (e === 0) { + e = 1 - eBias + } else if (e === eMax) { + return m ? NaN : (s ? -1 : 1) * Infinity + } else { + m = m + Math.pow(2, mLen) + e = e - eBias + } + return (s ? -1 : 1) * m * Math.pow(2, e - mLen) + } + exports.write = function(buffer, value, offset, isLE, mLen, nBytes) { + var e, m, c + var eLen = nBytes * 8 - mLen - 1 + var eMax = (1 << eLen) - 1 + var eBias = eMax >> 1 + var rt = mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0 + var i = isLE ? 0 : nBytes - 1 + var d = isLE ? 1 : -1 + var s = value < 0 || (value === 0 && 1 / value < 0) ? 1 : 0 + value = Math.abs(value) + if (isNaN(value) || value === Infinity) { + m = isNaN(value) ? 1 : 0 + e = eMax + } else { + e = Math.floor(Math.log(value) / Math.LN2) + if (value * (c = Math.pow(2, -e)) < 1) { + e-- + c *= 2 + } + if (e + eBias >= 1) { + value += rt / c + } else { + value += rt * Math.pow(2, 1 - eBias) + } + if (value * c >= 2) { + e++ + c /= 2 + } + if (e + eBias >= eMax) { + m = 0 + e = eMax + } else if (e + eBias >= 1) { + m = (value * c - 1) * Math.pow(2, mLen) + e = e + eBias + } else { + m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen) + e = 0 + } + } + for ( + ; + mLen >= 8; + buffer[offset + i] = m & 255, i += d, m /= 256, mLen -= 8 + ) {} + e = (e << mLen) | m + eLen += mLen + for ( + ; + eLen > 0; + buffer[offset + i] = e & 255, i += d, e /= 256, eLen -= 8 + ) {} + buffer[offset + i - d] |= s * 128 + } + }, + {} + ], + 7: [ + function(require, module, exports) { + if (typeof Object.create === "function") { + module.exports = function inherits(ctor, superCtor) { + ctor.super_ = superCtor + ctor.prototype = Object.create(superCtor.prototype, { + constructor: { + value: ctor, + enumerable: false, + writable: true, + configurable: true + } + }) + } + } else { + module.exports = function inherits(ctor, superCtor) { + ctor.super_ = superCtor + var TempCtor = function() {} + TempCtor.prototype = superCtor.prototype + ctor.prototype = new TempCtor() + ctor.prototype.constructor = ctor + } + } + }, + {} + ], + 8: [ + function(require, module, exports) { + module.exports = function(obj) { + return ( + obj != null && + (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer) + ) + } + function isBuffer(obj) { + return ( + !!obj.constructor && + typeof obj.constructor.isBuffer === "function" && + obj.constructor.isBuffer(obj) + ) + } + function isSlowBuffer(obj) { + return ( + typeof obj.readFloatLE === "function" && + typeof obj.slice === "function" && + isBuffer(obj.slice(0, 0)) + ) + } + }, + {} + ], + 9: [ + function(require, module, exports) { + var toString = {}.toString + module.exports = + Array.isArray || + function(arr) { + return toString.call(arr) == "[object Array]" + } + }, + {} + ], + 10: [ + function(require, module, exports) { + ;(function(process) { + "use strict" + if ( + !process.version || + process.version.indexOf("v0.") === 0 || + (process.version.indexOf("v1.") === 0 && + process.version.indexOf("v1.8.") !== 0) + ) { + module.exports = { nextTick: nextTick } + } else { + module.exports = process + } + function nextTick(fn, arg1, arg2, arg3) { + if (typeof fn !== "function") { + throw new TypeError('"callback" argument must be a function') + } + var len = arguments.length + var args, i + switch (len) { + case 0: + case 1: + return process.nextTick(fn) + case 2: + return process.nextTick(function afterTickOne() { + fn.call(null, arg1) + }) + case 3: + return process.nextTick(function afterTickTwo() { + fn.call(null, arg1, arg2) + }) + case 4: + return process.nextTick(function afterTickThree() { + fn.call(null, arg1, arg2, arg3) + }) + default: + args = new Array(len - 1) + i = 0 + while (i < args.length) { + args[i++] = arguments[i] + } + return process.nextTick(function afterTick() { + fn.apply(null, args) + }) + } + } + }.call(this, require("_process"))) + }, + { _process: 11 } + ], + 11: [ + function(require, module, exports) { + var process = (module.exports = {}) + var cachedSetTimeout + var cachedClearTimeout + function defaultSetTimout() { + throw new Error("setTimeout has not been defined") + } + function defaultClearTimeout() { + throw new Error("clearTimeout has not been defined") + } + ;(function() { + try { + if (typeof setTimeout === "function") { + cachedSetTimeout = setTimeout + } else { + cachedSetTimeout = defaultSetTimout + } + } catch (e) { + cachedSetTimeout = defaultSetTimout + } + try { + if (typeof clearTimeout === "function") { + cachedClearTimeout = clearTimeout + } else { + cachedClearTimeout = defaultClearTimeout + } + } catch (e) { + cachedClearTimeout = defaultClearTimeout + } + })() + function runTimeout(fun) { + if (cachedSetTimeout === setTimeout) { + return setTimeout(fun, 0) + } + if ( + (cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && + setTimeout + ) { + cachedSetTimeout = setTimeout + return setTimeout(fun, 0) + } + try { + return cachedSetTimeout(fun, 0) + } catch (e) { + try { + return cachedSetTimeout.call(null, fun, 0) + } catch (e) { + return cachedSetTimeout.call(this, fun, 0) + } + } + } + function runClearTimeout(marker) { + if (cachedClearTimeout === clearTimeout) { + return clearTimeout(marker) + } + if ( + (cachedClearTimeout === defaultClearTimeout || + !cachedClearTimeout) && + clearTimeout + ) { + cachedClearTimeout = clearTimeout + return clearTimeout(marker) + } + try { + return cachedClearTimeout(marker) + } catch (e) { + try { + return cachedClearTimeout.call(null, marker) + } catch (e) { + return cachedClearTimeout.call(this, marker) + } + } + } + var queue = [] + var draining = false + var currentQueue + var queueIndex = -1 + function cleanUpNextTick() { + if (!draining || !currentQueue) { + return + } + draining = false + if (currentQueue.length) { + queue = currentQueue.concat(queue) + } else { + queueIndex = -1 + } + if (queue.length) { + drainQueue() + } + } + function drainQueue() { + if (draining) { + return + } + var timeout = runTimeout(cleanUpNextTick) + draining = true + var len = queue.length + while (len) { + currentQueue = queue + queue = [] + while (++queueIndex < len) { + if (currentQueue) { + currentQueue[queueIndex].run() + } + } + queueIndex = -1 + len = queue.length + } + currentQueue = null + draining = false + runClearTimeout(timeout) + } + process.nextTick = function(fun) { + var args = new Array(arguments.length - 1) + if (arguments.length > 1) { + for (var i = 1; i < arguments.length; i++) { + args[i - 1] = arguments[i] + } + } + queue.push(new Item(fun, args)) + if (queue.length === 1 && !draining) { + runTimeout(drainQueue) + } + } + function Item(fun, array) { + this.fun = fun + this.array = array + } + Item.prototype.run = function() { + this.fun.apply(null, this.array) + } + process.title = "browser" + process.browser = true + process.env = {} + process.argv = [] + process.version = "" + process.versions = {} + function noop() {} + process.on = noop + process.addListener = noop + process.once = noop + process.off = noop + process.removeListener = noop + process.removeAllListeners = noop + process.emit = noop + process.prependListener = noop + process.prependOnceListener = noop + process.listeners = function(name) { + return [] + } + process.binding = function(name) { + throw new Error("process.binding is not supported") + } + process.cwd = function() { + return "/" + } + process.chdir = function(dir) { + throw new Error("process.chdir is not supported") + } + process.umask = function() { + return 0 + } + }, + {} + ], + 12: [ + function(require, module, exports) { + module.exports = require("./lib/_stream_duplex.js") + }, + { "./lib/_stream_duplex.js": 13 } + ], + 13: [ + function(require, module, exports) { + "use strict" + var pna = require("process-nextick-args") + var objectKeys = + Object.keys || + function(obj) { + var keys = [] + for (var key in obj) { + keys.push(key) + } + return keys + } + module.exports = Duplex + var util = require("core-util-is") + util.inherits = require("inherits") + var Readable = require("./_stream_readable") + var Writable = require("./_stream_writable") + util.inherits(Duplex, Readable) + { + var keys = objectKeys(Writable.prototype) + for (var v = 0; v < keys.length; v++) { + var method = keys[v] + if (!Duplex.prototype[method]) + Duplex.prototype[method] = Writable.prototype[method] + } + } + function Duplex(options) { + if (!(this instanceof Duplex)) return new Duplex(options) + Readable.call(this, options) + Writable.call(this, options) + if (options && options.readable === false) this.readable = false + if (options && options.writable === false) this.writable = false + this.allowHalfOpen = true + if (options && options.allowHalfOpen === false) + this.allowHalfOpen = false + this.once("end", onend) + } + Object.defineProperty(Duplex.prototype, "writableHighWaterMark", { + enumerable: false, + get: function() { + return this._writableState.highWaterMark + } + }) + function onend() { + if (this.allowHalfOpen || this._writableState.ended) return + pna.nextTick(onEndNT, this) + } + function onEndNT(self) { + self.end() + } + Object.defineProperty(Duplex.prototype, "destroyed", { + get: function() { + if ( + this._readableState === undefined || + this._writableState === undefined + ) { + return false + } + return ( + this._readableState.destroyed && this._writableState.destroyed + ) + }, + set: function(value) { + if ( + this._readableState === undefined || + this._writableState === undefined + ) { + return + } + this._readableState.destroyed = value + this._writableState.destroyed = value + } + }) + Duplex.prototype._destroy = function(err, cb) { + this.push(null) + this.end() + pna.nextTick(cb, err) + } + }, + { + "./_stream_readable": 15, + "./_stream_writable": 17, + "core-util-is": 4, + inherits: 7, + "process-nextick-args": 10 + } + ], + 14: [ + function(require, module, exports) { + "use strict" + module.exports = PassThrough + var Transform = require("./_stream_transform") + var util = require("core-util-is") + util.inherits = require("inherits") + util.inherits(PassThrough, Transform) + function PassThrough(options) { + if (!(this instanceof PassThrough)) return new PassThrough(options) + Transform.call(this, options) + } + PassThrough.prototype._transform = function(chunk, encoding, cb) { + cb(null, chunk) + } + }, + { "./_stream_transform": 16, "core-util-is": 4, inherits: 7 } + ], + 15: [ + function(require, module, exports) { + ;(function(process, global) { + "use strict" + var pna = require("process-nextick-args") + module.exports = Readable + var isArray = require("isarray") + var Duplex + Readable.ReadableState = ReadableState + var EE = require("events").EventEmitter + var EElistenerCount = function(emitter, type) { + return emitter.listeners(type).length + } + var Stream = require("./internal/streams/stream") + var Buffer = require("safe-buffer").Buffer + var OurUint8Array = global.Uint8Array || function() {} + function _uint8ArrayToBuffer(chunk) { + return Buffer.from(chunk) + } + function _isUint8Array(obj) { + return Buffer.isBuffer(obj) || obj instanceof OurUint8Array + } + var util = require("core-util-is") + util.inherits = require("inherits") + var debugUtil = require("util") + var debug = void 0 + if (debugUtil && debugUtil.debuglog) { + debug = debugUtil.debuglog("stream") + } else { + debug = function() {} + } + var BufferList = require("./internal/streams/BufferList") + var destroyImpl = require("./internal/streams/destroy") + var StringDecoder + util.inherits(Readable, Stream) + var kProxyEvents = ["error", "close", "destroy", "pause", "resume"] + function prependListener(emitter, event, fn) { + if (typeof emitter.prependListener === "function") + return emitter.prependListener(event, fn) + if (!emitter._events || !emitter._events[event]) + emitter.on(event, fn) + else if (isArray(emitter._events[event])) + emitter._events[event].unshift(fn) + else emitter._events[event] = [fn, emitter._events[event]] + } + function ReadableState(options, stream) { + Duplex = Duplex || require("./_stream_duplex") + options = options || {} + var isDuplex = stream instanceof Duplex + this.objectMode = !!options.objectMode + if (isDuplex) + this.objectMode = + this.objectMode || !!options.readableObjectMode + var hwm = options.highWaterMark + var readableHwm = options.readableHighWaterMark + var defaultHwm = this.objectMode ? 16 : 16 * 1024 + if (hwm || hwm === 0) this.highWaterMark = hwm + else if (isDuplex && (readableHwm || readableHwm === 0)) + this.highWaterMark = readableHwm + else this.highWaterMark = defaultHwm + this.highWaterMark = Math.floor(this.highWaterMark) + this.buffer = new BufferList() + this.length = 0 + this.pipes = null + this.pipesCount = 0 + this.flowing = null + this.ended = false + this.endEmitted = false + this.reading = false + this.sync = true + this.needReadable = false + this.emittedReadable = false + this.readableListening = false + this.resumeScheduled = false + this.destroyed = false + this.defaultEncoding = options.defaultEncoding || "utf8" + this.awaitDrain = 0 + this.readingMore = false + this.decoder = null + this.encoding = null + if (options.encoding) { + if (!StringDecoder) + StringDecoder = require("string_decoder/").StringDecoder + this.decoder = new StringDecoder(options.encoding) + this.encoding = options.encoding + } + } + function Readable(options) { + Duplex = Duplex || require("./_stream_duplex") + if (!(this instanceof Readable)) return new Readable(options) + this._readableState = new ReadableState(options, this) + this.readable = true + if (options) { + if (typeof options.read === "function") + this._read = options.read + if (typeof options.destroy === "function") + this._destroy = options.destroy + } + Stream.call(this) + } + Object.defineProperty(Readable.prototype, "destroyed", { + get: function() { + if (this._readableState === undefined) { + return false + } + return this._readableState.destroyed + }, + set: function(value) { + if (!this._readableState) { + return + } + this._readableState.destroyed = value + } + }) + Readable.prototype.destroy = destroyImpl.destroy + Readable.prototype._undestroy = destroyImpl.undestroy + Readable.prototype._destroy = function(err, cb) { + this.push(null) + cb(err) + } + Readable.prototype.push = function(chunk, encoding) { + var state = this._readableState + var skipChunkCheck + if (!state.objectMode) { + if (typeof chunk === "string") { + encoding = encoding || state.defaultEncoding + if (encoding !== state.encoding) { + chunk = Buffer.from(chunk, encoding) + encoding = "" + } + skipChunkCheck = true + } + } else { + skipChunkCheck = true + } + return readableAddChunk( + this, + chunk, + encoding, + false, + skipChunkCheck + ) + } + Readable.prototype.unshift = function(chunk) { + return readableAddChunk(this, chunk, null, true, false) + } + function readableAddChunk( + stream, + chunk, + encoding, + addToFront, + skipChunkCheck + ) { + var state = stream._readableState + if (chunk === null) { + state.reading = false + onEofChunk(stream, state) + } else { + var er + if (!skipChunkCheck) er = chunkInvalid(state, chunk) + if (er) { + stream.emit("error", er) + } else if (state.objectMode || (chunk && chunk.length > 0)) { + if ( + typeof chunk !== "string" && + !state.objectMode && + Object.getPrototypeOf(chunk) !== Buffer.prototype + ) { + chunk = _uint8ArrayToBuffer(chunk) + } + if (addToFront) { + if (state.endEmitted) + stream.emit( + "error", + new Error("stream.unshift() after end event") + ) + else addChunk(stream, state, chunk, true) + } else if (state.ended) { + stream.emit("error", new Error("stream.push() after EOF")) + } else { + state.reading = false + if (state.decoder && !encoding) { + chunk = state.decoder.write(chunk) + if (state.objectMode || chunk.length !== 0) + addChunk(stream, state, chunk, false) + else maybeReadMore(stream, state) + } else { + addChunk(stream, state, chunk, false) + } + } + } else if (!addToFront) { + state.reading = false + } + } + return needMoreData(state) + } + function addChunk(stream, state, chunk, addToFront) { + if (state.flowing && state.length === 0 && !state.sync) { + stream.emit("data", chunk) + stream.read(0) + } else { + state.length += state.objectMode ? 1 : chunk.length + if (addToFront) state.buffer.unshift(chunk) + else state.buffer.push(chunk) + if (state.needReadable) emitReadable(stream) + } + maybeReadMore(stream, state) + } + function chunkInvalid(state, chunk) { + var er + if ( + !_isUint8Array(chunk) && + typeof chunk !== "string" && + chunk !== undefined && + !state.objectMode + ) { + er = new TypeError("Invalid non-string/buffer chunk") + } + return er + } + function needMoreData(state) { + return ( + !state.ended && + (state.needReadable || + state.length < state.highWaterMark || + state.length === 0) + ) + } + Readable.prototype.isPaused = function() { + return this._readableState.flowing === false + } + Readable.prototype.setEncoding = function(enc) { + if (!StringDecoder) + StringDecoder = require("string_decoder/").StringDecoder + this._readableState.decoder = new StringDecoder(enc) + this._readableState.encoding = enc + return this + } + var MAX_HWM = 8388608 + function computeNewHighWaterMark(n) { + if (n >= MAX_HWM) { + n = MAX_HWM + } else { + n-- + n |= n >>> 1 + n |= n >>> 2 + n |= n >>> 4 + n |= n >>> 8 + n |= n >>> 16 + n++ + } + return n + } + function howMuchToRead(n, state) { + if (n <= 0 || (state.length === 0 && state.ended)) return 0 + if (state.objectMode) return 1 + if (n !== n) { + if (state.flowing && state.length) + return state.buffer.head.data.length + else return state.length + } + if (n > state.highWaterMark) + state.highWaterMark = computeNewHighWaterMark(n) + if (n <= state.length) return n + if (!state.ended) { + state.needReadable = true + return 0 + } + return state.length + } + Readable.prototype.read = function(n) { + debug("read", n) + n = parseInt(n, 10) + var state = this._readableState + var nOrig = n + if (n !== 0) state.emittedReadable = false + if ( + n === 0 && + state.needReadable && + (state.length >= state.highWaterMark || state.ended) + ) { + debug("read: emitReadable", state.length, state.ended) + if (state.length === 0 && state.ended) endReadable(this) + else emitReadable(this) + return null + } + n = howMuchToRead(n, state) + if (n === 0 && state.ended) { + if (state.length === 0) endReadable(this) + return null + } + var doRead = state.needReadable + debug("need readable", doRead) + if ( + state.length === 0 || + state.length - n < state.highWaterMark + ) { + doRead = true + debug("length less than watermark", doRead) + } + if (state.ended || state.reading) { + doRead = false + debug("reading or ended", doRead) + } else if (doRead) { + debug("do read") + state.reading = true + state.sync = true + if (state.length === 0) state.needReadable = true + this._read(state.highWaterMark) + state.sync = false + if (!state.reading) n = howMuchToRead(nOrig, state) + } + var ret + if (n > 0) ret = fromList(n, state) + else ret = null + if (ret === null) { + state.needReadable = true + n = 0 + } else { + state.length -= n + } + if (state.length === 0) { + if (!state.ended) state.needReadable = true + if (nOrig !== n && state.ended) endReadable(this) + } + if (ret !== null) this.emit("data", ret) + return ret + } + function onEofChunk(stream, state) { + if (state.ended) return + if (state.decoder) { + var chunk = state.decoder.end() + if (chunk && chunk.length) { + state.buffer.push(chunk) + state.length += state.objectMode ? 1 : chunk.length + } + } + state.ended = true + emitReadable(stream) + } + function emitReadable(stream) { + var state = stream._readableState + state.needReadable = false + if (!state.emittedReadable) { + debug("emitReadable", state.flowing) + state.emittedReadable = true + if (state.sync) pna.nextTick(emitReadable_, stream) + else emitReadable_(stream) + } + } + function emitReadable_(stream) { + debug("emit readable") + stream.emit("readable") + flow(stream) + } + function maybeReadMore(stream, state) { + if (!state.readingMore) { + state.readingMore = true + pna.nextTick(maybeReadMore_, stream, state) + } + } + function maybeReadMore_(stream, state) { + var len = state.length + while ( + !state.reading && + !state.flowing && + !state.ended && + state.length < state.highWaterMark + ) { + debug("maybeReadMore read 0") + stream.read(0) + if (len === state.length) break + else len = state.length + } + state.readingMore = false + } + Readable.prototype._read = function(n) { + this.emit("error", new Error("_read() is not implemented")) + } + Readable.prototype.pipe = function(dest, pipeOpts) { + var src = this + var state = this._readableState + switch (state.pipesCount) { + case 0: + state.pipes = dest + break + case 1: + state.pipes = [state.pipes, dest] + break + default: + state.pipes.push(dest) + break + } + state.pipesCount += 1 + debug("pipe count=%d opts=%j", state.pipesCount, pipeOpts) + var doEnd = + (!pipeOpts || pipeOpts.end !== false) && + dest !== process.stdout && + dest !== process.stderr + var endFn = doEnd ? onend : unpipe + if (state.endEmitted) pna.nextTick(endFn) + else src.once("end", endFn) + dest.on("unpipe", onunpipe) + function onunpipe(readable, unpipeInfo) { + debug("onunpipe") + if (readable === src) { + if (unpipeInfo && unpipeInfo.hasUnpiped === false) { + unpipeInfo.hasUnpiped = true + cleanup() + } + } + } + function onend() { + debug("onend") + dest.end() + } + var ondrain = pipeOnDrain(src) + dest.on("drain", ondrain) + var cleanedUp = false + function cleanup() { + debug("cleanup") + dest.removeListener("close", onclose) + dest.removeListener("finish", onfinish) + dest.removeListener("drain", ondrain) + dest.removeListener("error", onerror) + dest.removeListener("unpipe", onunpipe) + src.removeListener("end", onend) + src.removeListener("end", unpipe) + src.removeListener("data", ondata) + cleanedUp = true + if ( + state.awaitDrain && + (!dest._writableState || dest._writableState.needDrain) + ) + ondrain() + } + var increasedAwaitDrain = false + src.on("data", ondata) + function ondata(chunk) { + debug("ondata") + increasedAwaitDrain = false + var ret = dest.write(chunk) + if (false === ret && !increasedAwaitDrain) { + if ( + ((state.pipesCount === 1 && state.pipes === dest) || + (state.pipesCount > 1 && + indexOf(state.pipes, dest) !== -1)) && + !cleanedUp + ) { + debug( + "false write response, pause", + src._readableState.awaitDrain + ) + src._readableState.awaitDrain++ + increasedAwaitDrain = true + } + src.pause() + } + } + function onerror(er) { + debug("onerror", er) + unpipe() + dest.removeListener("error", onerror) + if (EElistenerCount(dest, "error") === 0) dest.emit("error", er) + } + prependListener(dest, "error", onerror) + function onclose() { + dest.removeListener("finish", onfinish) + unpipe() + } + dest.once("close", onclose) + function onfinish() { + debug("onfinish") + dest.removeListener("close", onclose) + unpipe() + } + dest.once("finish", onfinish) + function unpipe() { + debug("unpipe") + src.unpipe(dest) + } + dest.emit("pipe", src) + if (!state.flowing) { + debug("pipe resume") + src.resume() + } + return dest + } + function pipeOnDrain(src) { + return function() { + var state = src._readableState + debug("pipeOnDrain", state.awaitDrain) + if (state.awaitDrain) state.awaitDrain-- + if (state.awaitDrain === 0 && EElistenerCount(src, "data")) { + state.flowing = true + flow(src) + } + } + } + Readable.prototype.unpipe = function(dest) { + var state = this._readableState + var unpipeInfo = { hasUnpiped: false } + if (state.pipesCount === 0) return this + if (state.pipesCount === 1) { + if (dest && dest !== state.pipes) return this + if (!dest) dest = state.pipes + state.pipes = null + state.pipesCount = 0 + state.flowing = false + if (dest) dest.emit("unpipe", this, unpipeInfo) + return this + } + if (!dest) { + var dests = state.pipes + var len = state.pipesCount + state.pipes = null + state.pipesCount = 0 + state.flowing = false + for (var i = 0; i < len; i++) { + dests[i].emit("unpipe", this, unpipeInfo) + } + return this + } + var index = indexOf(state.pipes, dest) + if (index === -1) return this + state.pipes.splice(index, 1) + state.pipesCount -= 1 + if (state.pipesCount === 1) state.pipes = state.pipes[0] + dest.emit("unpipe", this, unpipeInfo) + return this + } + Readable.prototype.on = function(ev, fn) { + var res = Stream.prototype.on.call(this, ev, fn) + if (ev === "data") { + if (this._readableState.flowing !== false) this.resume() + } else if (ev === "readable") { + var state = this._readableState + if (!state.endEmitted && !state.readableListening) { + state.readableListening = state.needReadable = true + state.emittedReadable = false + if (!state.reading) { + pna.nextTick(nReadingNextTick, this) + } else if (state.length) { + emitReadable(this) + } + } + } + return res + } + Readable.prototype.addListener = Readable.prototype.on + function nReadingNextTick(self) { + debug("readable nexttick read 0") + self.read(0) + } + Readable.prototype.resume = function() { + var state = this._readableState + if (!state.flowing) { + debug("resume") + state.flowing = true + resume(this, state) + } + return this + } + function resume(stream, state) { + if (!state.resumeScheduled) { + state.resumeScheduled = true + pna.nextTick(resume_, stream, state) + } + } + function resume_(stream, state) { + if (!state.reading) { + debug("resume read 0") + stream.read(0) + } + state.resumeScheduled = false + state.awaitDrain = 0 + stream.emit("resume") + flow(stream) + if (state.flowing && !state.reading) stream.read(0) + } + Readable.prototype.pause = function() { + debug("call pause flowing=%j", this._readableState.flowing) + if (false !== this._readableState.flowing) { + debug("pause") + this._readableState.flowing = false + this.emit("pause") + } + return this + } + function flow(stream) { + var state = stream._readableState + debug("flow", state.flowing) + while (state.flowing && stream.read() !== null) {} + } + Readable.prototype.wrap = function(stream) { + var _this = this + var state = this._readableState + var paused = false + stream.on("end", function() { + debug("wrapped end") + if (state.decoder && !state.ended) { + var chunk = state.decoder.end() + if (chunk && chunk.length) _this.push(chunk) + } + _this.push(null) + }) + stream.on("data", function(chunk) { + debug("wrapped data") + if (state.decoder) chunk = state.decoder.write(chunk) + if (state.objectMode && (chunk === null || chunk === undefined)) + return + else if (!state.objectMode && (!chunk || !chunk.length)) return + var ret = _this.push(chunk) + if (!ret) { + paused = true + stream.pause() + } + }) + for (var i in stream) { + if (this[i] === undefined && typeof stream[i] === "function") { + this[i] = (function(method) { + return function() { + return stream[method].apply(stream, arguments) + } + })(i) + } + } + for (var n = 0; n < kProxyEvents.length; n++) { + stream.on( + kProxyEvents[n], + this.emit.bind(this, kProxyEvents[n]) + ) + } + this._read = function(n) { + debug("wrapped _read", n) + if (paused) { + paused = false + stream.resume() + } + } + return this + } + Object.defineProperty(Readable.prototype, "readableHighWaterMark", { + enumerable: false, + get: function() { + return this._readableState.highWaterMark + } + }) + Readable._fromList = fromList + function fromList(n, state) { + if (state.length === 0) return null + var ret + if (state.objectMode) ret = state.buffer.shift() + else if (!n || n >= state.length) { + if (state.decoder) ret = state.buffer.join("") + else if (state.buffer.length === 1) ret = state.buffer.head.data + else ret = state.buffer.concat(state.length) + state.buffer.clear() + } else { + ret = fromListPartial(n, state.buffer, state.decoder) + } + return ret + } + function fromListPartial(n, list, hasStrings) { + var ret + if (n < list.head.data.length) { + ret = list.head.data.slice(0, n) + list.head.data = list.head.data.slice(n) + } else if (n === list.head.data.length) { + ret = list.shift() + } else { + ret = hasStrings + ? copyFromBufferString(n, list) + : copyFromBuffer(n, list) + } + return ret + } + function copyFromBufferString(n, list) { + var p = list.head + var c = 1 + var ret = p.data + n -= ret.length + while ((p = p.next)) { + var str = p.data + var nb = n > str.length ? str.length : n + if (nb === str.length) ret += str + else ret += str.slice(0, n) + n -= nb + if (n === 0) { + if (nb === str.length) { + ++c + if (p.next) list.head = p.next + else list.head = list.tail = null + } else { + list.head = p + p.data = str.slice(nb) + } + break + } + ++c + } + list.length -= c + return ret + } + function copyFromBuffer(n, list) { + var ret = Buffer.allocUnsafe(n) + var p = list.head + var c = 1 + p.data.copy(ret) + n -= p.data.length + while ((p = p.next)) { + var buf = p.data + var nb = n > buf.length ? buf.length : n + buf.copy(ret, ret.length - n, 0, nb) + n -= nb + if (n === 0) { + if (nb === buf.length) { + ++c + if (p.next) list.head = p.next + else list.head = list.tail = null + } else { + list.head = p + p.data = buf.slice(nb) + } + break + } + ++c + } + list.length -= c + return ret + } + function endReadable(stream) { + var state = stream._readableState + if (state.length > 0) + throw new Error('"endReadable()" called on non-empty stream') + if (!state.endEmitted) { + state.ended = true + pna.nextTick(endReadableNT, state, stream) + } + } + function endReadableNT(state, stream) { + if (!state.endEmitted && state.length === 0) { + state.endEmitted = true + stream.readable = false + stream.emit("end") + } + } + function indexOf(xs, x) { + for (var i = 0, l = xs.length; i < l; i++) { + if (xs[i] === x) return i + } + return -1 + } + }.call( + this, + require("_process"), + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + { + "./_stream_duplex": 13, + "./internal/streams/BufferList": 18, + "./internal/streams/destroy": 19, + "./internal/streams/stream": 20, + _process: 11, + "core-util-is": 4, + events: 5, + inherits: 7, + isarray: 9, + "process-nextick-args": 10, + "safe-buffer": 26, + "string_decoder/": 21, + util: 2 + } + ], + 16: [ + function(require, module, exports) { + "use strict" + module.exports = Transform + var Duplex = require("./_stream_duplex") + var util = require("core-util-is") + util.inherits = require("inherits") + util.inherits(Transform, Duplex) + function afterTransform(er, data) { + var ts = this._transformState + ts.transforming = false + var cb = ts.writecb + if (!cb) { + return this.emit( + "error", + new Error("write callback called multiple times") + ) + } + ts.writechunk = null + ts.writecb = null + if (data != null) this.push(data) + cb(er) + var rs = this._readableState + rs.reading = false + if (rs.needReadable || rs.length < rs.highWaterMark) { + this._read(rs.highWaterMark) + } + } + function Transform(options) { + if (!(this instanceof Transform)) return new Transform(options) + Duplex.call(this, options) + this._transformState = { + afterTransform: afterTransform.bind(this), + needTransform: false, + transforming: false, + writecb: null, + writechunk: null, + writeencoding: null + } + this._readableState.needReadable = true + this._readableState.sync = false + if (options) { + if (typeof options.transform === "function") + this._transform = options.transform + if (typeof options.flush === "function") + this._flush = options.flush + } + this.on("prefinish", prefinish) + } + function prefinish() { + var _this = this + if (typeof this._flush === "function") { + this._flush(function(er, data) { + done(_this, er, data) + }) + } else { + done(this, null, null) + } + } + Transform.prototype.push = function(chunk, encoding) { + this._transformState.needTransform = false + return Duplex.prototype.push.call(this, chunk, encoding) + } + Transform.prototype._transform = function(chunk, encoding, cb) { + throw new Error("_transform() is not implemented") + } + Transform.prototype._write = function(chunk, encoding, cb) { + var ts = this._transformState + ts.writecb = cb + ts.writechunk = chunk + ts.writeencoding = encoding + if (!ts.transforming) { + var rs = this._readableState + if ( + ts.needTransform || + rs.needReadable || + rs.length < rs.highWaterMark + ) + this._read(rs.highWaterMark) + } + } + Transform.prototype._read = function(n) { + var ts = this._transformState + if (ts.writechunk !== null && ts.writecb && !ts.transforming) { + ts.transforming = true + this._transform( + ts.writechunk, + ts.writeencoding, + ts.afterTransform + ) + } else { + ts.needTransform = true + } + } + Transform.prototype._destroy = function(err, cb) { + var _this2 = this + Duplex.prototype._destroy.call(this, err, function(err2) { + cb(err2) + _this2.emit("close") + }) + } + function done(stream, er, data) { + if (er) return stream.emit("error", er) + if (data != null) stream.push(data) + if (stream._writableState.length) + throw new Error("Calling transform done when ws.length != 0") + if (stream._transformState.transforming) + throw new Error("Calling transform done when still transforming") + return stream.push(null) + } + }, + { "./_stream_duplex": 13, "core-util-is": 4, inherits: 7 } + ], + 17: [ + function(require, module, exports) { + ;(function(process, global, setImmediate) { + "use strict" + var pna = require("process-nextick-args") + module.exports = Writable + function WriteReq(chunk, encoding, cb) { + this.chunk = chunk + this.encoding = encoding + this.callback = cb + this.next = null + } + function CorkedRequest(state) { + var _this = this + this.next = null + this.entry = null + this.finish = function() { + onCorkedFinish(_this, state) + } + } + var asyncWrite = + !process.browser && + ["v0.10", "v0.9."].indexOf(process.version.slice(0, 5)) > -1 + ? setImmediate + : pna.nextTick + var Duplex + Writable.WritableState = WritableState + var util = require("core-util-is") + util.inherits = require("inherits") + var internalUtil = { deprecate: require("util-deprecate") } + var Stream = require("./internal/streams/stream") + var Buffer = require("safe-buffer").Buffer + var OurUint8Array = global.Uint8Array || function() {} + function _uint8ArrayToBuffer(chunk) { + return Buffer.from(chunk) + } + function _isUint8Array(obj) { + return Buffer.isBuffer(obj) || obj instanceof OurUint8Array + } + var destroyImpl = require("./internal/streams/destroy") + util.inherits(Writable, Stream) + function nop() {} + function WritableState(options, stream) { + Duplex = Duplex || require("./_stream_duplex") + options = options || {} + var isDuplex = stream instanceof Duplex + this.objectMode = !!options.objectMode + if (isDuplex) + this.objectMode = + this.objectMode || !!options.writableObjectMode + var hwm = options.highWaterMark + var writableHwm = options.writableHighWaterMark + var defaultHwm = this.objectMode ? 16 : 16 * 1024 + if (hwm || hwm === 0) this.highWaterMark = hwm + else if (isDuplex && (writableHwm || writableHwm === 0)) + this.highWaterMark = writableHwm + else this.highWaterMark = defaultHwm + this.highWaterMark = Math.floor(this.highWaterMark) + this.finalCalled = false + this.needDrain = false + this.ending = false + this.ended = false + this.finished = false + this.destroyed = false + var noDecode = options.decodeStrings === false + this.decodeStrings = !noDecode + this.defaultEncoding = options.defaultEncoding || "utf8" + this.length = 0 + this.writing = false + this.corked = 0 + this.sync = true + this.bufferProcessing = false + this.onwrite = function(er) { + onwrite(stream, er) + } + this.writecb = null + this.writelen = 0 + this.bufferedRequest = null + this.lastBufferedRequest = null + this.pendingcb = 0 + this.prefinished = false + this.errorEmitted = false + this.bufferedRequestCount = 0 + this.corkedRequestsFree = new CorkedRequest(this) + } + WritableState.prototype.getBuffer = function getBuffer() { + var current = this.bufferedRequest + var out = [] + while (current) { + out.push(current) + current = current.next + } + return out + } + ;(function() { + try { + Object.defineProperty(WritableState.prototype, "buffer", { + get: internalUtil.deprecate( + function() { + return this.getBuffer() + }, + "_writableState.buffer is deprecated. Use _writableState.getBuffer " + + "instead.", + "DEP0003" + ) + }) + } catch (_) {} + })() + var realHasInstance + if ( + typeof Symbol === "function" && + Symbol.hasInstance && + typeof Function.prototype[Symbol.hasInstance] === "function" + ) { + realHasInstance = Function.prototype[Symbol.hasInstance] + Object.defineProperty(Writable, Symbol.hasInstance, { + value: function(object) { + if (realHasInstance.call(this, object)) return true + if (this !== Writable) return false + return ( + object && object._writableState instanceof WritableState + ) + } + }) + } else { + realHasInstance = function(object) { + return object instanceof this + } + } + function Writable(options) { + Duplex = Duplex || require("./_stream_duplex") + if ( + !realHasInstance.call(Writable, this) && + !(this instanceof Duplex) + ) { + return new Writable(options) + } + this._writableState = new WritableState(options, this) + this.writable = true + if (options) { + if (typeof options.write === "function") + this._write = options.write + if (typeof options.writev === "function") + this._writev = options.writev + if (typeof options.destroy === "function") + this._destroy = options.destroy + if (typeof options.final === "function") + this._final = options.final + } + Stream.call(this) + } + Writable.prototype.pipe = function() { + this.emit("error", new Error("Cannot pipe, not readable")) + } + function writeAfterEnd(stream, cb) { + var er = new Error("write after end") + stream.emit("error", er) + pna.nextTick(cb, er) + } + function validChunk(stream, state, chunk, cb) { + var valid = true + var er = false + if (chunk === null) { + er = new TypeError("May not write null values to stream") + } else if ( + typeof chunk !== "string" && + chunk !== undefined && + !state.objectMode + ) { + er = new TypeError("Invalid non-string/buffer chunk") + } + if (er) { + stream.emit("error", er) + pna.nextTick(cb, er) + valid = false + } + return valid + } + Writable.prototype.write = function(chunk, encoding, cb) { + var state = this._writableState + var ret = false + var isBuf = !state.objectMode && _isUint8Array(chunk) + if (isBuf && !Buffer.isBuffer(chunk)) { + chunk = _uint8ArrayToBuffer(chunk) + } + if (typeof encoding === "function") { + cb = encoding + encoding = null + } + if (isBuf) encoding = "buffer" + else if (!encoding) encoding = state.defaultEncoding + if (typeof cb !== "function") cb = nop + if (state.ended) writeAfterEnd(this, cb) + else if (isBuf || validChunk(this, state, chunk, cb)) { + state.pendingcb++ + ret = writeOrBuffer(this, state, isBuf, chunk, encoding, cb) + } + return ret + } + Writable.prototype.cork = function() { + var state = this._writableState + state.corked++ + } + Writable.prototype.uncork = function() { + var state = this._writableState + if (state.corked) { + state.corked-- + if ( + !state.writing && + !state.corked && + !state.finished && + !state.bufferProcessing && + state.bufferedRequest + ) + clearBuffer(this, state) + } + } + Writable.prototype.setDefaultEncoding = function setDefaultEncoding( + encoding + ) { + if (typeof encoding === "string") + encoding = encoding.toLowerCase() + if ( + !( + [ + "hex", + "utf8", + "utf-8", + "ascii", + "binary", + "base64", + "ucs2", + "ucs-2", + "utf16le", + "utf-16le", + "raw" + ].indexOf((encoding + "").toLowerCase()) > -1 + ) + ) + throw new TypeError("Unknown encoding: " + encoding) + this._writableState.defaultEncoding = encoding + return this + } + function decodeChunk(state, chunk, encoding) { + if ( + !state.objectMode && + state.decodeStrings !== false && + typeof chunk === "string" + ) { + chunk = Buffer.from(chunk, encoding) + } + return chunk + } + Object.defineProperty(Writable.prototype, "writableHighWaterMark", { + enumerable: false, + get: function() { + return this._writableState.highWaterMark + } + }) + function writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) { + if (!isBuf) { + var newChunk = decodeChunk(state, chunk, encoding) + if (chunk !== newChunk) { + isBuf = true + encoding = "buffer" + chunk = newChunk + } + } + var len = state.objectMode ? 1 : chunk.length + state.length += len + var ret = state.length < state.highWaterMark + if (!ret) state.needDrain = true + if (state.writing || state.corked) { + var last = state.lastBufferedRequest + state.lastBufferedRequest = { + chunk: chunk, + encoding: encoding, + isBuf: isBuf, + callback: cb, + next: null + } + if (last) { + last.next = state.lastBufferedRequest + } else { + state.bufferedRequest = state.lastBufferedRequest + } + state.bufferedRequestCount += 1 + } else { + doWrite(stream, state, false, len, chunk, encoding, cb) + } + return ret + } + function doWrite(stream, state, writev, len, chunk, encoding, cb) { + state.writelen = len + state.writecb = cb + state.writing = true + state.sync = true + if (writev) stream._writev(chunk, state.onwrite) + else stream._write(chunk, encoding, state.onwrite) + state.sync = false + } + function onwriteError(stream, state, sync, er, cb) { + --state.pendingcb + if (sync) { + pna.nextTick(cb, er) + pna.nextTick(finishMaybe, stream, state) + stream._writableState.errorEmitted = true + stream.emit("error", er) + } else { + cb(er) + stream._writableState.errorEmitted = true + stream.emit("error", er) + finishMaybe(stream, state) + } + } + function onwriteStateUpdate(state) { + state.writing = false + state.writecb = null + state.length -= state.writelen + state.writelen = 0 + } + function onwrite(stream, er) { + var state = stream._writableState + var sync = state.sync + var cb = state.writecb + onwriteStateUpdate(state) + if (er) onwriteError(stream, state, sync, er, cb) + else { + var finished = needFinish(state) + if ( + !finished && + !state.corked && + !state.bufferProcessing && + state.bufferedRequest + ) { + clearBuffer(stream, state) + } + if (sync) { + asyncWrite(afterWrite, stream, state, finished, cb) + } else { + afterWrite(stream, state, finished, cb) + } + } + } + function afterWrite(stream, state, finished, cb) { + if (!finished) onwriteDrain(stream, state) + state.pendingcb-- + cb() + finishMaybe(stream, state) + } + function onwriteDrain(stream, state) { + if (state.length === 0 && state.needDrain) { + state.needDrain = false + stream.emit("drain") + } + } + function clearBuffer(stream, state) { + state.bufferProcessing = true + var entry = state.bufferedRequest + if (stream._writev && entry && entry.next) { + var l = state.bufferedRequestCount + var buffer = new Array(l) + var holder = state.corkedRequestsFree + holder.entry = entry + var count = 0 + var allBuffers = true + while (entry) { + buffer[count] = entry + if (!entry.isBuf) allBuffers = false + entry = entry.next + count += 1 + } + buffer.allBuffers = allBuffers + doWrite( + stream, + state, + true, + state.length, + buffer, + "", + holder.finish + ) + state.pendingcb++ + state.lastBufferedRequest = null + if (holder.next) { + state.corkedRequestsFree = holder.next + holder.next = null + } else { + state.corkedRequestsFree = new CorkedRequest(state) + } + state.bufferedRequestCount = 0 + } else { + while (entry) { + var chunk = entry.chunk + var encoding = entry.encoding + var cb = entry.callback + var len = state.objectMode ? 1 : chunk.length + doWrite(stream, state, false, len, chunk, encoding, cb) + entry = entry.next + state.bufferedRequestCount-- + if (state.writing) { + break + } + } + if (entry === null) state.lastBufferedRequest = null + } + state.bufferedRequest = entry + state.bufferProcessing = false + } + Writable.prototype._write = function(chunk, encoding, cb) { + cb(new Error("_write() is not implemented")) + } + Writable.prototype._writev = null + Writable.prototype.end = function(chunk, encoding, cb) { + var state = this._writableState + if (typeof chunk === "function") { + cb = chunk + chunk = null + encoding = null + } else if (typeof encoding === "function") { + cb = encoding + encoding = null + } + if (chunk !== null && chunk !== undefined) + this.write(chunk, encoding) + if (state.corked) { + state.corked = 1 + this.uncork() + } + if (!state.ending && !state.finished) endWritable(this, state, cb) + } + function needFinish(state) { + return ( + state.ending && + state.length === 0 && + state.bufferedRequest === null && + !state.finished && + !state.writing + ) + } + function callFinal(stream, state) { + stream._final(function(err) { + state.pendingcb-- + if (err) { + stream.emit("error", err) + } + state.prefinished = true + stream.emit("prefinish") + finishMaybe(stream, state) + }) + } + function prefinish(stream, state) { + if (!state.prefinished && !state.finalCalled) { + if (typeof stream._final === "function") { + state.pendingcb++ + state.finalCalled = true + pna.nextTick(callFinal, stream, state) + } else { + state.prefinished = true + stream.emit("prefinish") + } + } + } + function finishMaybe(stream, state) { + var need = needFinish(state) + if (need) { + prefinish(stream, state) + if (state.pendingcb === 0) { + state.finished = true + stream.emit("finish") + } + } + return need + } + function endWritable(stream, state, cb) { + state.ending = true + finishMaybe(stream, state) + if (cb) { + if (state.finished) pna.nextTick(cb) + else stream.once("finish", cb) + } + state.ended = true + stream.writable = false + } + function onCorkedFinish(corkReq, state, err) { + var entry = corkReq.entry + corkReq.entry = null + while (entry) { + var cb = entry.callback + state.pendingcb-- + cb(err) + entry = entry.next + } + if (state.corkedRequestsFree) { + state.corkedRequestsFree.next = corkReq + } else { + state.corkedRequestsFree = corkReq + } + } + Object.defineProperty(Writable.prototype, "destroyed", { + get: function() { + if (this._writableState === undefined) { + return false + } + return this._writableState.destroyed + }, + set: function(value) { + if (!this._writableState) { + return + } + this._writableState.destroyed = value + } + }) + Writable.prototype.destroy = destroyImpl.destroy + Writable.prototype._undestroy = destroyImpl.undestroy + Writable.prototype._destroy = function(err, cb) { + this.end() + cb(err) + } + }.call( + this, + require("_process"), + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {}, + require("timers").setImmediate + )) + }, + { + "./_stream_duplex": 13, + "./internal/streams/destroy": 19, + "./internal/streams/stream": 20, + _process: 11, + "core-util-is": 4, + inherits: 7, + "process-nextick-args": 10, + "safe-buffer": 26, + timers: 29, + "util-deprecate": 30 + } + ], + 18: [ + function(require, module, exports) { + "use strict" + function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function") + } + } + var Buffer = require("safe-buffer").Buffer + var util = require("util") + function copyBuffer(src, target, offset) { + src.copy(target, offset) + } + module.exports = (function() { + function BufferList() { + _classCallCheck(this, BufferList) + this.head = null + this.tail = null + this.length = 0 + } + BufferList.prototype.push = function push(v) { + var entry = { data: v, next: null } + if (this.length > 0) this.tail.next = entry + else this.head = entry + this.tail = entry + ++this.length + } + BufferList.prototype.unshift = function unshift(v) { + var entry = { data: v, next: this.head } + if (this.length === 0) this.tail = entry + this.head = entry + ++this.length + } + BufferList.prototype.shift = function shift() { + if (this.length === 0) return + var ret = this.head.data + if (this.length === 1) this.head = this.tail = null + else this.head = this.head.next + --this.length + return ret + } + BufferList.prototype.clear = function clear() { + this.head = this.tail = null + this.length = 0 + } + BufferList.prototype.join = function join(s) { + if (this.length === 0) return "" + var p = this.head + var ret = "" + p.data + while ((p = p.next)) { + ret += s + p.data + } + return ret + } + BufferList.prototype.concat = function concat(n) { + if (this.length === 0) return Buffer.alloc(0) + if (this.length === 1) return this.head.data + var ret = Buffer.allocUnsafe(n >>> 0) + var p = this.head + var i = 0 + while (p) { + copyBuffer(p.data, ret, i) + i += p.data.length + p = p.next + } + return ret + } + return BufferList + })() + if (util && util.inspect && util.inspect.custom) { + module.exports.prototype[util.inspect.custom] = function() { + var obj = util.inspect({ length: this.length }) + return this.constructor.name + " " + obj + } + } + }, + { "safe-buffer": 26, util: 2 } + ], + 19: [ + function(require, module, exports) { + "use strict" + var pna = require("process-nextick-args") + function destroy(err, cb) { + var _this = this + var readableDestroyed = + this._readableState && this._readableState.destroyed + var writableDestroyed = + this._writableState && this._writableState.destroyed + if (readableDestroyed || writableDestroyed) { + if (cb) { + cb(err) + } else if ( + err && + (!this._writableState || !this._writableState.errorEmitted) + ) { + pna.nextTick(emitErrorNT, this, err) + } + return this + } + if (this._readableState) { + this._readableState.destroyed = true + } + if (this._writableState) { + this._writableState.destroyed = true + } + this._destroy(err || null, function(err) { + if (!cb && err) { + pna.nextTick(emitErrorNT, _this, err) + if (_this._writableState) { + _this._writableState.errorEmitted = true + } + } else if (cb) { + cb(err) + } + }) + return this + } + function undestroy() { + if (this._readableState) { + this._readableState.destroyed = false + this._readableState.reading = false + this._readableState.ended = false + this._readableState.endEmitted = false + } + if (this._writableState) { + this._writableState.destroyed = false + this._writableState.ended = false + this._writableState.ending = false + this._writableState.finished = false + this._writableState.errorEmitted = false + } + } + function emitErrorNT(self, err) { + self.emit("error", err) + } + module.exports = { destroy: destroy, undestroy: undestroy } + }, + { "process-nextick-args": 10 } + ], + 20: [ + function(require, module, exports) { + module.exports = require("events").EventEmitter + }, + { events: 5 } + ], + 21: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var isEncoding = + Buffer.isEncoding || + function(encoding) { + encoding = "" + encoding + switch (encoding && encoding.toLowerCase()) { + case "hex": + case "utf8": + case "utf-8": + case "ascii": + case "binary": + case "base64": + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + case "raw": + return true + default: + return false + } + } + function _normalizeEncoding(enc) { + if (!enc) return "utf8" + var retried + while (true) { + switch (enc) { + case "utf8": + case "utf-8": + return "utf8" + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return "utf16le" + case "latin1": + case "binary": + return "latin1" + case "base64": + case "ascii": + case "hex": + return enc + default: + if (retried) return + enc = ("" + enc).toLowerCase() + retried = true + } + } + } + function normalizeEncoding(enc) { + var nenc = _normalizeEncoding(enc) + if ( + typeof nenc !== "string" && + (Buffer.isEncoding === isEncoding || !isEncoding(enc)) + ) + throw new Error("Unknown encoding: " + enc) + return nenc || enc + } + exports.StringDecoder = StringDecoder + function StringDecoder(encoding) { + this.encoding = normalizeEncoding(encoding) + var nb + switch (this.encoding) { + case "utf16le": + this.text = utf16Text + this.end = utf16End + nb = 4 + break + case "utf8": + this.fillLast = utf8FillLast + nb = 4 + break + case "base64": + this.text = base64Text + this.end = base64End + nb = 3 + break + default: + this.write = simpleWrite + this.end = simpleEnd + return + } + this.lastNeed = 0 + this.lastTotal = 0 + this.lastChar = Buffer.allocUnsafe(nb) + } + StringDecoder.prototype.write = function(buf) { + if (buf.length === 0) return "" + var r + var i + if (this.lastNeed) { + r = this.fillLast(buf) + if (r === undefined) return "" + i = this.lastNeed + this.lastNeed = 0 + } else { + i = 0 + } + if (i < buf.length) + return r ? r + this.text(buf, i) : this.text(buf, i) + return r || "" + } + StringDecoder.prototype.end = utf8End + StringDecoder.prototype.text = utf8Text + StringDecoder.prototype.fillLast = function(buf) { + if (this.lastNeed <= buf.length) { + buf.copy( + this.lastChar, + this.lastTotal - this.lastNeed, + 0, + this.lastNeed + ) + return this.lastChar.toString(this.encoding, 0, this.lastTotal) + } + buf.copy( + this.lastChar, + this.lastTotal - this.lastNeed, + 0, + buf.length + ) + this.lastNeed -= buf.length + } + function utf8CheckByte(byte) { + if (byte <= 127) return 0 + else if (byte >> 5 === 6) return 2 + else if (byte >> 4 === 14) return 3 + else if (byte >> 3 === 30) return 4 + return byte >> 6 === 2 ? -1 : -2 + } + function utf8CheckIncomplete(self, buf, i) { + var j = buf.length - 1 + if (j < i) return 0 + var nb = utf8CheckByte(buf[j]) + if (nb >= 0) { + if (nb > 0) self.lastNeed = nb - 1 + return nb + } + if (--j < i || nb === -2) return 0 + nb = utf8CheckByte(buf[j]) + if (nb >= 0) { + if (nb > 0) self.lastNeed = nb - 2 + return nb + } + if (--j < i || nb === -2) return 0 + nb = utf8CheckByte(buf[j]) + if (nb >= 0) { + if (nb > 0) { + if (nb === 2) nb = 0 + else self.lastNeed = nb - 3 + } + return nb + } + return 0 + } + function utf8CheckExtraBytes(self, buf, p) { + if ((buf[0] & 192) !== 128) { + self.lastNeed = 0 + return "�" + } + if (self.lastNeed > 1 && buf.length > 1) { + if ((buf[1] & 192) !== 128) { + self.lastNeed = 1 + return "�" + } + if (self.lastNeed > 2 && buf.length > 2) { + if ((buf[2] & 192) !== 128) { + self.lastNeed = 2 + return "�" + } + } + } + } + function utf8FillLast(buf) { + var p = this.lastTotal - this.lastNeed + var r = utf8CheckExtraBytes(this, buf, p) + if (r !== undefined) return r + if (this.lastNeed <= buf.length) { + buf.copy(this.lastChar, p, 0, this.lastNeed) + return this.lastChar.toString(this.encoding, 0, this.lastTotal) + } + buf.copy(this.lastChar, p, 0, buf.length) + this.lastNeed -= buf.length + } + function utf8Text(buf, i) { + var total = utf8CheckIncomplete(this, buf, i) + if (!this.lastNeed) return buf.toString("utf8", i) + this.lastTotal = total + var end = buf.length - (total - this.lastNeed) + buf.copy(this.lastChar, 0, end) + return buf.toString("utf8", i, end) + } + function utf8End(buf) { + var r = buf && buf.length ? this.write(buf) : "" + if (this.lastNeed) return r + "�" + return r + } + function utf16Text(buf, i) { + if ((buf.length - i) % 2 === 0) { + var r = buf.toString("utf16le", i) + if (r) { + var c = r.charCodeAt(r.length - 1) + if (c >= 55296 && c <= 56319) { + this.lastNeed = 2 + this.lastTotal = 4 + this.lastChar[0] = buf[buf.length - 2] + this.lastChar[1] = buf[buf.length - 1] + return r.slice(0, -1) + } + } + return r + } + this.lastNeed = 1 + this.lastTotal = 2 + this.lastChar[0] = buf[buf.length - 1] + return buf.toString("utf16le", i, buf.length - 1) + } + function utf16End(buf) { + var r = buf && buf.length ? this.write(buf) : "" + if (this.lastNeed) { + var end = this.lastTotal - this.lastNeed + return r + this.lastChar.toString("utf16le", 0, end) + } + return r + } + function base64Text(buf, i) { + var n = (buf.length - i) % 3 + if (n === 0) return buf.toString("base64", i) + this.lastNeed = 3 - n + this.lastTotal = 3 + if (n === 1) { + this.lastChar[0] = buf[buf.length - 1] + } else { + this.lastChar[0] = buf[buf.length - 2] + this.lastChar[1] = buf[buf.length - 1] + } + return buf.toString("base64", i, buf.length - n) + } + function base64End(buf) { + var r = buf && buf.length ? this.write(buf) : "" + if (this.lastNeed) + return r + this.lastChar.toString("base64", 0, 3 - this.lastNeed) + return r + } + function simpleWrite(buf) { + return buf.toString(this.encoding) + } + function simpleEnd(buf) { + return buf && buf.length ? this.write(buf) : "" + } + }, + { "safe-buffer": 26 } + ], + 22: [ + function(require, module, exports) { + module.exports = require("./readable").PassThrough + }, + { "./readable": 23 } + ], + 23: [ + function(require, module, exports) { + exports = module.exports = require("./lib/_stream_readable.js") + exports.Stream = exports + exports.Readable = exports + exports.Writable = require("./lib/_stream_writable.js") + exports.Duplex = require("./lib/_stream_duplex.js") + exports.Transform = require("./lib/_stream_transform.js") + exports.PassThrough = require("./lib/_stream_passthrough.js") + }, + { + "./lib/_stream_duplex.js": 13, + "./lib/_stream_passthrough.js": 14, + "./lib/_stream_readable.js": 15, + "./lib/_stream_transform.js": 16, + "./lib/_stream_writable.js": 17 + } + ], + 24: [ + function(require, module, exports) { + module.exports = require("./readable").Transform + }, + { "./readable": 23 } + ], + 25: [ + function(require, module, exports) { + module.exports = require("./lib/_stream_writable.js") + }, + { "./lib/_stream_writable.js": 17 } + ], + 26: [ + function(require, module, exports) { + var buffer = require("buffer") + var Buffer = buffer.Buffer + function copyProps(src, dst) { + for (var key in src) { + dst[key] = src[key] + } + } + if ( + Buffer.from && + Buffer.alloc && + Buffer.allocUnsafe && + Buffer.allocUnsafeSlow + ) { + module.exports = buffer + } else { + copyProps(buffer, exports) + exports.Buffer = SafeBuffer + } + function SafeBuffer(arg, encodingOrOffset, length) { + return Buffer(arg, encodingOrOffset, length) + } + copyProps(Buffer, SafeBuffer) + SafeBuffer.from = function(arg, encodingOrOffset, length) { + if (typeof arg === "number") { + throw new TypeError("Argument must not be a number") + } + return Buffer(arg, encodingOrOffset, length) + } + SafeBuffer.alloc = function(size, fill, encoding) { + if (typeof size !== "number") { + throw new TypeError("Argument must be a number") + } + var buf = Buffer(size) + if (fill !== undefined) { + if (typeof encoding === "string") { + buf.fill(fill, encoding) + } else { + buf.fill(fill) + } + } else { + buf.fill(0) + } + return buf + } + SafeBuffer.allocUnsafe = function(size) { + if (typeof size !== "number") { + throw new TypeError("Argument must be a number") + } + return Buffer(size) + } + SafeBuffer.allocUnsafeSlow = function(size) { + if (typeof size !== "number") { + throw new TypeError("Argument must be a number") + } + return buffer.SlowBuffer(size) + } + }, + { buffer: 3 } + ], + 27: [ + function(require, module, exports) { + module.exports = Stream + var EE = require("events").EventEmitter + var inherits = require("inherits") + inherits(Stream, EE) + Stream.Readable = require("readable-stream/readable.js") + Stream.Writable = require("readable-stream/writable.js") + Stream.Duplex = require("readable-stream/duplex.js") + Stream.Transform = require("readable-stream/transform.js") + Stream.PassThrough = require("readable-stream/passthrough.js") + Stream.Stream = Stream + function Stream() { + EE.call(this) + } + Stream.prototype.pipe = function(dest, options) { + var source = this + function ondata(chunk) { + if (dest.writable) { + if (false === dest.write(chunk) && source.pause) { + source.pause() + } + } + } + source.on("data", ondata) + function ondrain() { + if (source.readable && source.resume) { + source.resume() + } + } + dest.on("drain", ondrain) + if (!dest._isStdio && (!options || options.end !== false)) { + source.on("end", onend) + source.on("close", onclose) + } + var didOnEnd = false + function onend() { + if (didOnEnd) return + didOnEnd = true + dest.end() + } + function onclose() { + if (didOnEnd) return + didOnEnd = true + if (typeof dest.destroy === "function") dest.destroy() + } + function onerror(er) { + cleanup() + if (EE.listenerCount(this, "error") === 0) { + throw er + } + } + source.on("error", onerror) + dest.on("error", onerror) + function cleanup() { + source.removeListener("data", ondata) + dest.removeListener("drain", ondrain) + source.removeListener("end", onend) + source.removeListener("close", onclose) + source.removeListener("error", onerror) + dest.removeListener("error", onerror) + source.removeListener("end", cleanup) + source.removeListener("close", cleanup) + dest.removeListener("close", cleanup) + } + source.on("end", cleanup) + source.on("close", cleanup) + dest.on("close", cleanup) + dest.emit("pipe", source) + return dest + } + }, + { + events: 5, + inherits: 7, + "readable-stream/duplex.js": 12, + "readable-stream/passthrough.js": 22, + "readable-stream/readable.js": 23, + "readable-stream/transform.js": 24, + "readable-stream/writable.js": 25 + } + ], + 28: [ + function(require, module, exports) { + arguments[4][21][0].apply(exports, arguments) + }, + { dup: 21, "safe-buffer": 26 } + ], + 29: [ + function(require, module, exports) { + ;(function(setImmediate, clearImmediate) { + var nextTick = require("process/browser.js").nextTick + var apply = Function.prototype.apply + var slice = Array.prototype.slice + var immediateIds = {} + var nextImmediateId = 0 + exports.setTimeout = function() { + return new Timeout( + apply.call(setTimeout, window, arguments), + clearTimeout + ) + } + exports.setInterval = function() { + return new Timeout( + apply.call(setInterval, window, arguments), + clearInterval + ) + } + exports.clearTimeout = exports.clearInterval = function(timeout) { + timeout.close() + } + function Timeout(id, clearFn) { + this._id = id + this._clearFn = clearFn + } + Timeout.prototype.unref = Timeout.prototype.ref = function() {} + Timeout.prototype.close = function() { + this._clearFn.call(window, this._id) + } + exports.enroll = function(item, msecs) { + clearTimeout(item._idleTimeoutId) + item._idleTimeout = msecs + } + exports.unenroll = function(item) { + clearTimeout(item._idleTimeoutId) + item._idleTimeout = -1 + } + exports._unrefActive = exports.active = function(item) { + clearTimeout(item._idleTimeoutId) + var msecs = item._idleTimeout + if (msecs >= 0) { + item._idleTimeoutId = setTimeout(function onTimeout() { + if (item._onTimeout) item._onTimeout() + }, msecs) + } + } + exports.setImmediate = + typeof setImmediate === "function" + ? setImmediate + : function(fn) { + var id = nextImmediateId++ + var args = + arguments.length < 2 ? false : slice.call(arguments, 1) + immediateIds[id] = true + nextTick(function onNextTick() { + if (immediateIds[id]) { + if (args) { + fn.apply(null, args) + } else { + fn.call(null) + } + exports.clearImmediate(id) + } + }) + return id + } + exports.clearImmediate = + typeof clearImmediate === "function" + ? clearImmediate + : function(id) { + delete immediateIds[id] + } + }.call( + this, + require("timers").setImmediate, + require("timers").clearImmediate + )) + }, + { "process/browser.js": 11, timers: 29 } + ], + 30: [ + function(require, module, exports) { + ;(function(global) { + module.exports = deprecate + function deprecate(fn, msg) { + if (config("noDeprecation")) { + return fn + } + var warned = false + function deprecated() { + if (!warned) { + if (config("throwDeprecation")) { + throw new Error(msg) + } else if (config("traceDeprecation")) { + console.trace(msg) + } else { + console.warn(msg) + } + warned = true + } + return fn.apply(this, arguments) + } + return deprecated + } + function config(name) { + try { + if (!global.localStorage) return false + } catch (_) { + return false + } + var val = global.localStorage[name] + if (null == val) return false + return String(val).toLowerCase() === "true" + } + }.call( + this, + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + {} + ], + 31: [ + function(require, module, exports) { + var Buffer = require("safe-buffer").Buffer + var createHash = require("create-hash") + var pbkdf2 = require("pbkdf2").pbkdf2Sync + var randomBytes = require("randombytes") + var unorm = require("unorm") + var CHINESE_SIMPLIFIED_WORDLIST = require("./wordlists/chinese_simplified.json") + var CHINESE_TRADITIONAL_WORDLIST = require("./wordlists/chinese_traditional.json") + var ENGLISH_WORDLIST = require("./wordlists/english.json") + var FRENCH_WORDLIST = require("./wordlists/french.json") + var ITALIAN_WORDLIST = require("./wordlists/italian.json") + var JAPANESE_WORDLIST = require("./wordlists/japanese.json") + var KOREAN_WORDLIST = require("./wordlists/korean.json") + var SPANISH_WORDLIST = require("./wordlists/spanish.json") + var DEFAULT_WORDLIST = ENGLISH_WORDLIST + var INVALID_MNEMONIC = "Invalid mnemonic" + var INVALID_ENTROPY = "Invalid entropy" + var INVALID_CHECKSUM = "Invalid mnemonic checksum" + function lpad(str, padString, length) { + while (str.length < length) str = padString + str + return str + } + function binaryToByte(bin) { + return parseInt(bin, 2) + } + function bytesToBinary(bytes) { + return bytes + .map(function(x) { + return lpad(x.toString(2), "0", 8) + }) + .join("") + } + function deriveChecksumBits(entropyBuffer) { + var ENT = entropyBuffer.length * 8 + var CS = ENT / 32 + var hash = createHash("sha256") + .update(entropyBuffer) + .digest() + return bytesToBinary([].slice.call(hash)).slice(0, CS) + } + function salt(password) { + return "mnemonic" + (password || "") + } + function mnemonicToSeed(mnemonic, password) { + var mnemonicBuffer = Buffer.from(unorm.nfkd(mnemonic), "utf8") + var saltBuffer = Buffer.from(salt(unorm.nfkd(password)), "utf8") + return pbkdf2(mnemonicBuffer, saltBuffer, 2048, 64, "sha512") + } + function mnemonicToSeedHex(mnemonic, password) { + return mnemonicToSeed(mnemonic, password).toString("hex") + } + function mnemonicToEntropy(mnemonic, wordlist) { + wordlist = wordlist || DEFAULT_WORDLIST + var words = unorm.nfkd(mnemonic).split(" ") + if (words.length % 3 !== 0) throw new Error(INVALID_MNEMONIC) + var bits = words + .map(function(word) { + var index = wordlist.indexOf(word) + if (index === -1) throw new Error(INVALID_MNEMONIC) + return lpad(index.toString(2), "0", 11) + }) + .join("") + var dividerIndex = Math.floor(bits.length / 33) * 32 + var entropyBits = bits.slice(0, dividerIndex) + var checksumBits = bits.slice(dividerIndex) + var entropyBytes = entropyBits.match(/(.{1,8})/g).map(binaryToByte) + if (entropyBytes.length < 16) throw new Error(INVALID_ENTROPY) + if (entropyBytes.length > 32) throw new Error(INVALID_ENTROPY) + if (entropyBytes.length % 4 !== 0) throw new Error(INVALID_ENTROPY) + var entropy = Buffer.from(entropyBytes) + var newChecksum = deriveChecksumBits(entropy) + if (newChecksum !== checksumBits) throw new Error(INVALID_CHECKSUM) + return entropy.toString("hex") + } + function entropyToMnemonic(entropy, wordlist) { + if (!Buffer.isBuffer(entropy)) entropy = Buffer.from(entropy, "hex") + wordlist = wordlist || DEFAULT_WORDLIST + if (entropy.length < 16) throw new TypeError(INVALID_ENTROPY) + if (entropy.length > 32) throw new TypeError(INVALID_ENTROPY) + if (entropy.length % 4 !== 0) throw new TypeError(INVALID_ENTROPY) + var entropyBits = bytesToBinary([].slice.call(entropy)) + var checksumBits = deriveChecksumBits(entropy) + var bits = entropyBits + checksumBits + var chunks = bits.match(/(.{1,11})/g) + var words = chunks.map(function(binary) { + var index = binaryToByte(binary) + return wordlist[index] + }) + return wordlist === JAPANESE_WORDLIST + ? words.join(" ") + : words.join(" ") + } + function generateMnemonic(strength, rng, wordlist) { + strength = strength || 128 + if (strength % 32 !== 0) throw new TypeError(INVALID_ENTROPY) + rng = rng || randomBytes + return entropyToMnemonic(rng(strength / 8), wordlist) + } + function validateMnemonic(mnemonic, wordlist) { + try { + mnemonicToEntropy(mnemonic, wordlist) + } catch (e) { + return false + } + return true + } + module.exports = { + mnemonicToSeed: mnemonicToSeed, + mnemonicToSeedHex: mnemonicToSeedHex, + mnemonicToEntropy: mnemonicToEntropy, + entropyToMnemonic: entropyToMnemonic, + generateMnemonic: generateMnemonic, + validateMnemonic: validateMnemonic, + wordlists: { + EN: ENGLISH_WORDLIST, + JA: JAPANESE_WORDLIST, + chinese_simplified: CHINESE_SIMPLIFIED_WORDLIST, + chinese_traditional: CHINESE_TRADITIONAL_WORDLIST, + english: ENGLISH_WORDLIST, + french: FRENCH_WORDLIST, + italian: ITALIAN_WORDLIST, + japanese: JAPANESE_WORDLIST, + korean: KOREAN_WORDLIST, + spanish: SPANISH_WORDLIST + } + } + }, + { + "./wordlists/chinese_simplified.json": 32, + "./wordlists/chinese_traditional.json": 33, + "./wordlists/english.json": 34, + "./wordlists/french.json": 35, + "./wordlists/italian.json": 36, + "./wordlists/japanese.json": 37, + "./wordlists/korean.json": 38, + "./wordlists/spanish.json": 39, + "create-hash": 41, + pbkdf2: 46, + randombytes: 51, + "safe-buffer": 53, + unorm: 62 + } + ], + 32: [ + function(require, module, exports) { + module.exports = [ + "的", + "一", + "是", + "在", + "不", + "了", + "有", + "和", + "人", + "这", + "中", + "大", + "为", + "上", + "个", + "国", + "我", + "以", + "要", + "他", + "时", + "来", + "用", + "们", + "生", + "到", + "作", + "地", + "于", + "出", + "就", + "分", + "对", + "成", + "会", + "可", + "主", + "发", + "年", + "动", + "同", + "工", + "也", + "能", + "下", + "过", + "子", + "说", + "产", + "种", + "面", + "而", + "方", + "后", + "多", + "定", + "行", + "学", + "法", + "所", + "民", + "得", + "经", + "十", + "三", + "之", + "进", + "着", + "等", + "部", + "度", + "家", + "电", + "力", + "里", + "如", + "水", + "化", + "高", + "自", + "二", + "理", + "起", + "小", + "物", + "现", + "实", + "加", + "量", + "都", + "两", + "体", + "制", + "机", + "当", + "使", + "点", + "从", + "业", + "本", + "去", + "把", + "性", + "好", + "应", + "开", + "它", + "合", + "还", + "因", + "由", + "其", + "些", + "然", + "前", + "外", + "天", + "政", + "四", + "日", + "那", + "社", + "义", + "事", + "平", + "形", + "相", + "全", + "表", + "间", + "样", + "与", + "关", + "各", + "重", + "新", + "线", + "内", + "数", + "正", + "心", + "反", + "你", + "明", + "看", + "原", + "又", + "么", + "利", + "比", + "或", + "但", + "质", + "气", + "第", + "向", + "道", + "命", + "此", + "变", + "条", + "只", + "没", + "结", + "解", + "问", + "意", + "建", + "月", + "公", + "无", + "系", + "军", + "很", + "情", + "者", + "最", + "立", + "代", + "想", + "已", + "通", + "并", + "提", + "直", + "题", + "党", + "程", + "展", + "五", + "果", + "料", + "象", + "员", + "革", + "位", + "入", + "常", + "文", + "总", + "次", + "品", + "式", + "活", + "设", + "及", + "管", + "特", + "件", + "长", + "求", + "老", + "头", + "基", + "资", + "边", + "流", + "路", + "级", + "少", + "图", + "山", + "统", + "接", + "知", + "较", + "将", + "组", + "见", + "计", + "别", + "她", + "手", + "角", + "期", + "根", + "论", + "运", + "农", + "指", + "几", + "九", + "区", + "强", + "放", + "决", + "西", + "被", + "干", + "做", + "必", + "战", + "先", + "回", + "则", + "任", + "取", + "据", + "处", + "队", + "南", + "给", + "色", + "光", + "门", + "即", + "保", + "治", + "北", + "造", + "百", + "规", + "热", + "领", + "七", + "海", + "口", + "东", + "导", + "器", + "压", + "志", + "世", + "金", + "增", + "争", + "济", + "阶", + "油", + "思", + "术", + "极", + "交", + "受", + "联", + "什", + "认", + "六", + "共", + "权", + "收", + "证", + "改", + "清", + "美", + "再", + "采", + "转", + "更", + "单", + "风", + "切", + "打", + "白", + "教", + "速", + "花", + "带", + "安", + "场", + "身", + "车", + "例", + "真", + "务", + "具", + "万", + "每", + "目", + "至", + "达", + "走", + "积", + "示", + "议", + "声", + "报", + "斗", + "完", + "类", + "八", + "离", + "华", + "名", + "确", + "才", + "科", + "张", + "信", + "马", + "节", + "话", + "米", + "整", + "空", + "元", + "况", + "今", + "集", + "温", + "传", + "土", + "许", + "步", + "群", + "广", + "石", + "记", + "需", + "段", + "研", + "界", + "拉", + "林", + "律", + "叫", + "且", + "究", + "观", + "越", + "织", + "装", + "影", + "算", + "低", + "持", + "音", + "众", + "书", + "布", + "复", + "容", + "儿", + "须", + "际", + "商", + "非", + "验", + "连", + "断", + "深", + "难", + "近", + "矿", + "千", + "周", + "委", + "素", + "技", + "备", + "半", + "办", + "青", + "省", + "列", + "习", + "响", + "约", + "支", + "般", + "史", + "感", + "劳", + "便", + "团", + "往", + "酸", + "历", + "市", + "克", + "何", + "除", + "消", + "构", + "府", + "称", + "太", + "准", + "精", + "值", + "号", + "率", + "族", + "维", + "划", + "选", + "标", + "写", + "存", + "候", + "毛", + "亲", + "快", + "效", + "斯", + "院", + "查", + "江", + "型", + "眼", + "王", + "按", + "格", + "养", + "易", + "置", + "派", + "层", + "片", + "始", + "却", + "专", + "状", + "育", + "厂", + "京", + "识", + "适", + "属", + "圆", + "包", + "火", + "住", + "调", + "满", + "县", + "局", + "照", + "参", + "红", + "细", + "引", + "听", + "该", + "铁", + "价", + "严", + "首", + "底", + "液", + "官", + "德", + "随", + "病", + "苏", + "失", + "尔", + "死", + "讲", + "配", + "女", + "黄", + "推", + "显", + "谈", + "罪", + "神", + "艺", + "呢", + "席", + "含", + "企", + "望", + "密", + "批", + "营", + "项", + "防", + "举", + "球", + "英", + "氧", + "势", + "告", + "李", + "台", + "落", + "木", + "帮", + "轮", + "破", + "亚", + "师", + "围", + "注", + "远", + "字", + "材", + "排", + "供", + "河", + "态", + "封", + "另", + "施", + "减", + "树", + "溶", + "怎", + "止", + "案", + "言", + "士", + "均", + "武", + "固", + "叶", + "鱼", + "波", + "视", + "仅", + "费", + "紧", + "爱", + "左", + "章", + "早", + "朝", + "害", + "续", + "轻", + "服", + "试", + "食", + "充", + "兵", + "源", + "判", + "护", + "司", + "足", + "某", + "练", + "差", + "致", + "板", + "田", + "降", + "黑", + "犯", + "负", + "击", + "范", + "继", + "兴", + "似", + "余", + "坚", + "曲", + "输", + "修", + "故", + "城", + "夫", + "够", + "送", + "笔", + "船", + "占", + "右", + "财", + "吃", + "富", + "春", + "职", + "觉", + "汉", + "画", + "功", + "巴", + "跟", + "虽", + "杂", + "飞", + "检", + "吸", + "助", + "升", + "阳", + "互", + "初", + "创", + "抗", + "考", + "投", + "坏", + "策", + "古", + "径", + "换", + "未", + "跑", + "留", + "钢", + "曾", + "端", + "责", + "站", + "简", + "述", + "钱", + "副", + "尽", + "帝", + "射", + "草", + "冲", + "承", + "独", + "令", + "限", + "阿", + "宣", + "环", + "双", + "请", + "超", + "微", + "让", + "控", + "州", + "良", + "轴", + "找", + "否", + "纪", + "益", + "依", + "优", + "顶", + "础", + "载", + "倒", + "房", + "突", + "坐", + "粉", + "敌", + "略", + "客", + "袁", + "冷", + "胜", + "绝", + "析", + "块", + "剂", + "测", + "丝", + "协", + "诉", + "念", + "陈", + "仍", + "罗", + "盐", + "友", + "洋", + "错", + "苦", + "夜", + "刑", + "移", + "频", + "逐", + "靠", + "混", + "母", + "短", + "皮", + "终", + "聚", + "汽", + "村", + "云", + "哪", + "既", + "距", + "卫", + "停", + "烈", + "央", + "察", + "烧", + "迅", + "境", + "若", + "印", + "洲", + "刻", + "括", + "激", + "孔", + "搞", + "甚", + "室", + "待", + "核", + "校", + "散", + "侵", + "吧", + "甲", + "游", + "久", + "菜", + "味", + "旧", + "模", + "湖", + "货", + "损", + "预", + "阻", + "毫", + "普", + "稳", + "乙", + "妈", + "植", + "息", + "扩", + "银", + "语", + "挥", + "酒", + "守", + "拿", + "序", + "纸", + "医", + "缺", + "雨", + "吗", + "针", + "刘", + "啊", + "急", + "唱", + "误", + "训", + "愿", + "审", + "附", + "获", + "茶", + "鲜", + "粮", + "斤", + "孩", + "脱", + "硫", + "肥", + "善", + "龙", + "演", + "父", + "渐", + "血", + "欢", + "械", + "掌", + "歌", + "沙", + "刚", + "攻", + "谓", + "盾", + "讨", + "晚", + "粒", + "乱", + "燃", + "矛", + "乎", + "杀", + "药", + "宁", + "鲁", + "贵", + "钟", + "煤", + "读", + "班", + "伯", + "香", + "介", + "迫", + "句", + "丰", + "培", + "握", + "兰", + "担", + "弦", + "蛋", + "沉", + "假", + "穿", + "执", + "答", + "乐", + "谁", + "顺", + "烟", + "缩", + "征", + "脸", + "喜", + "松", + "脚", + "困", + "异", + "免", + "背", + "星", + "福", + "买", + "染", + "井", + "概", + "慢", + "怕", + "磁", + "倍", + "祖", + "皇", + "促", + "静", + "补", + "评", + "翻", + "肉", + "践", + "尼", + "衣", + "宽", + "扬", + "棉", + "希", + "伤", + "操", + "垂", + "秋", + "宜", + "氢", + "套", + "督", + "振", + "架", + "亮", + "末", + "宪", + "庆", + "编", + "牛", + "触", + "映", + "雷", + "销", + "诗", + "座", + "居", + "抓", + "裂", + "胞", + "呼", + "娘", + "景", + "威", + "绿", + "晶", + "厚", + "盟", + "衡", + "鸡", + "孙", + "延", + "危", + "胶", + "屋", + "乡", + "临", + "陆", + "顾", + "掉", + "呀", + "灯", + "岁", + "措", + "束", + "耐", + "剧", + "玉", + "赵", + "跳", + "哥", + "季", + "课", + "凯", + "胡", + "额", + "款", + "绍", + "卷", + "齐", + "伟", + "蒸", + "殖", + "永", + "宗", + "苗", + "川", + "炉", + "岩", + "弱", + "零", + "杨", + "奏", + "沿", + "露", + "杆", + "探", + "滑", + "镇", + "饭", + "浓", + "航", + "怀", + "赶", + "库", + "夺", + "伊", + "灵", + "税", + "途", + "灭", + "赛", + "归", + "召", + "鼓", + "播", + "盘", + "裁", + "险", + "康", + "唯", + "录", + "菌", + "纯", + "借", + "糖", + "盖", + "横", + "符", + "私", + "努", + "堂", + "域", + "枪", + "润", + "幅", + "哈", + "竟", + "熟", + "虫", + "泽", + "脑", + "壤", + "碳", + "欧", + "遍", + "侧", + "寨", + "敢", + "彻", + "虑", + "斜", + "薄", + "庭", + "纳", + "弹", + "饲", + "伸", + "折", + "麦", + "湿", + "暗", + "荷", + "瓦", + "塞", + "床", + "筑", + "恶", + "户", + "访", + "塔", + "奇", + "透", + "梁", + "刀", + "旋", + "迹", + "卡", + "氯", + "遇", + "份", + "毒", + "泥", + "退", + "洗", + "摆", + "灰", + "彩", + "卖", + "耗", + "夏", + "择", + "忙", + "铜", + "献", + "硬", + "予", + "繁", + "圈", + "雪", + "函", + "亦", + "抽", + "篇", + "阵", + "阴", + "丁", + "尺", + "追", + "堆", + "雄", + "迎", + "泛", + "爸", + "楼", + "避", + "谋", + "吨", + "野", + "猪", + "旗", + "累", + "偏", + "典", + "馆", + "索", + "秦", + "脂", + "潮", + "爷", + "豆", + "忽", + "托", + "惊", + "塑", + "遗", + "愈", + "朱", + "替", + "纤", + "粗", + "倾", + "尚", + "痛", + "楚", + "谢", + "奋", + "购", + "磨", + "君", + "池", + "旁", + "碎", + "骨", + "监", + "捕", + "弟", + "暴", + "割", + "贯", + "殊", + "释", + "词", + "亡", + "壁", + "顿", + "宝", + "午", + "尘", + "闻", + "揭", + "炮", + "残", + "冬", + "桥", + "妇", + "警", + "综", + "招", + "吴", + "付", + "浮", + "遭", + "徐", + "您", + "摇", + "谷", + "赞", + "箱", + "隔", + "订", + "男", + "吹", + "园", + "纷", + "唐", + "败", + "宋", + "玻", + "巨", + "耕", + "坦", + "荣", + "闭", + "湾", + "键", + "凡", + "驻", + "锅", + "救", + "恩", + "剥", + "凝", + "碱", + "齿", + "截", + "炼", + "麻", + "纺", + "禁", + "废", + "盛", + "版", + "缓", + "净", + "睛", + "昌", + "婚", + "涉", + "筒", + "嘴", + "插", + "岸", + "朗", + "庄", + "街", + "藏", + "姑", + "贸", + "腐", + "奴", + "啦", + "惯", + "乘", + "伙", + "恢", + "匀", + "纱", + "扎", + "辩", + "耳", + "彪", + "臣", + "亿", + "璃", + "抵", + "脉", + "秀", + "萨", + "俄", + "网", + "舞", + "店", + "喷", + "纵", + "寸", + "汗", + "挂", + "洪", + "贺", + "闪", + "柬", + "爆", + "烯", + "津", + "稻", + "墙", + "软", + "勇", + "像", + "滚", + "厘", + "蒙", + "芳", + "肯", + "坡", + "柱", + "荡", + "腿", + "仪", + "旅", + "尾", + "轧", + "冰", + "贡", + "登", + "黎", + "削", + "钻", + "勒", + "逃", + "障", + "氨", + "郭", + "峰", + "币", + "港", + "伏", + "轨", + "亩", + "毕", + "擦", + "莫", + "刺", + "浪", + "秘", + "援", + "株", + "健", + "售", + "股", + "岛", + "甘", + "泡", + "睡", + "童", + "铸", + "汤", + "阀", + "休", + "汇", + "舍", + "牧", + "绕", + "炸", + "哲", + "磷", + "绩", + "朋", + "淡", + "尖", + "启", + "陷", + "柴", + "呈", + "徒", + "颜", + "泪", + "稍", + "忘", + "泵", + "蓝", + "拖", + "洞", + "授", + "镜", + "辛", + "壮", + "锋", + "贫", + "虚", + "弯", + "摩", + "泰", + "幼", + "廷", + "尊", + "窗", + "纲", + "弄", + "隶", + "疑", + "氏", + "宫", + "姐", + "震", + "瑞", + "怪", + "尤", + "琴", + "循", + "描", + "膜", + "违", + "夹", + "腰", + "缘", + "珠", + "穷", + "森", + "枝", + "竹", + "沟", + "催", + "绳", + "忆", + "邦", + "剩", + "幸", + "浆", + "栏", + "拥", + "牙", + "贮", + "礼", + "滤", + "钠", + "纹", + "罢", + "拍", + "咱", + "喊", + "袖", + "埃", + "勤", + "罚", + "焦", + "潜", + "伍", + "墨", + "欲", + "缝", + "姓", + "刊", + "饱", + "仿", + "奖", + "铝", + "鬼", + "丽", + "跨", + "默", + "挖", + "链", + "扫", + "喝", + "袋", + "炭", + "污", + "幕", + "诸", + "弧", + "励", + "梅", + "奶", + "洁", + "灾", + "舟", + "鉴", + "苯", + "讼", + "抱", + "毁", + "懂", + "寒", + "智", + "埔", + "寄", + "届", + "跃", + "渡", + "挑", + "丹", + "艰", + "贝", + "碰", + "拔", + "爹", + "戴", + "码", + "梦", + "芽", + "熔", + "赤", + "渔", + "哭", + "敬", + "颗", + "奔", + "铅", + "仲", + "虎", + "稀", + "妹", + "乏", + "珍", + "申", + "桌", + "遵", + "允", + "隆", + "螺", + "仓", + "魏", + "锐", + "晓", + "氮", + "兼", + "隐", + "碍", + "赫", + "拨", + "忠", + "肃", + "缸", + "牵", + "抢", + "博", + "巧", + "壳", + "兄", + "杜", + "讯", + "诚", + "碧", + "祥", + "柯", + "页", + "巡", + "矩", + "悲", + "灌", + "龄", + "伦", + "票", + "寻", + "桂", + "铺", + "圣", + "恐", + "恰", + "郑", + "趣", + "抬", + "荒", + "腾", + "贴", + "柔", + "滴", + "猛", + "阔", + "辆", + "妻", + "填", + "撤", + "储", + "签", + "闹", + "扰", + "紫", + "砂", + "递", + "戏", + "吊", + "陶", + "伐", + "喂", + "疗", + "瓶", + "婆", + "抚", + "臂", + "摸", + "忍", + "虾", + "蜡", + "邻", + "胸", + "巩", + "挤", + "偶", + "弃", + "槽", + "劲", + "乳", + "邓", + "吉", + "仁", + "烂", + "砖", + "租", + "乌", + "舰", + "伴", + "瓜", + "浅", + "丙", + "暂", + "燥", + "橡", + "柳", + "迷", + "暖", + "牌", + "秧", + "胆", + "详", + "簧", + "踏", + "瓷", + "谱", + "呆", + "宾", + "糊", + "洛", + "辉", + "愤", + "竞", + "隙", + "怒", + "粘", + "乃", + "绪", + "肩", + "籍", + "敏", + "涂", + "熙", + "皆", + "侦", + "悬", + "掘", + "享", + "纠", + "醒", + "狂", + "锁", + "淀", + "恨", + "牲", + "霸", + "爬", + "赏", + "逆", + "玩", + "陵", + "祝", + "秒", + "浙", + "貌", + "役", + "彼", + "悉", + "鸭", + "趋", + "凤", + "晨", + "畜", + "辈", + "秩", + "卵", + "署", + "梯", + "炎", + "滩", + "棋", + "驱", + "筛", + "峡", + "冒", + "啥", + "寿", + "译", + "浸", + "泉", + "帽", + "迟", + "硅", + "疆", + "贷", + "漏", + "稿", + "冠", + "嫩", + "胁", + "芯", + "牢", + "叛", + "蚀", + "奥", + "鸣", + "岭", + "羊", + "凭", + "串", + "塘", + "绘", + "酵", + "融", + "盆", + "锡", + "庙", + "筹", + "冻", + "辅", + "摄", + "袭", + "筋", + "拒", + "僚", + "旱", + "钾", + "鸟", + "漆", + "沈", + "眉", + "疏", + "添", + "棒", + "穗", + "硝", + "韩", + "逼", + "扭", + "侨", + "凉", + "挺", + "碗", + "栽", + "炒", + "杯", + "患", + "馏", + "劝", + "豪", + "辽", + "勃", + "鸿", + "旦", + "吏", + "拜", + "狗", + "埋", + "辊", + "掩", + "饮", + "搬", + "骂", + "辞", + "勾", + "扣", + "估", + "蒋", + "绒", + "雾", + "丈", + "朵", + "姆", + "拟", + "宇", + "辑", + "陕", + "雕", + "偿", + "蓄", + "崇", + "剪", + "倡", + "厅", + "咬", + "驶", + "薯", + "刷", + "斥", + "番", + "赋", + "奉", + "佛", + "浇", + "漫", + "曼", + "扇", + "钙", + "桃", + "扶", + "仔", + "返", + "俗", + "亏", + "腔", + "鞋", + "棱", + "覆", + "框", + "悄", + "叔", + "撞", + "骗", + "勘", + "旺", + "沸", + "孤", + "吐", + "孟", + "渠", + "屈", + "疾", + "妙", + "惜", + "仰", + "狠", + "胀", + "谐", + "抛", + "霉", + "桑", + "岗", + "嘛", + "衰", + "盗", + "渗", + "脏", + "赖", + "涌", + "甜", + "曹", + "阅", + "肌", + "哩", + "厉", + "烃", + "纬", + "毅", + "昨", + "伪", + "症", + "煮", + "叹", + "钉", + "搭", + "茎", + "笼", + "酷", + "偷", + "弓", + "锥", + "恒", + "杰", + "坑", + "鼻", + "翼", + "纶", + "叙", + "狱", + "逮", + "罐", + "络", + "棚", + "抑", + "膨", + "蔬", + "寺", + "骤", + "穆", + "冶", + "枯", + "册", + "尸", + "凸", + "绅", + "坯", + "牺", + "焰", + "轰", + "欣", + "晋", + "瘦", + "御", + "锭", + "锦", + "丧", + "旬", + "锻", + "垄", + "搜", + "扑", + "邀", + "亭", + "酯", + "迈", + "舒", + "脆", + "酶", + "闲", + "忧", + "酚", + "顽", + "羽", + "涨", + "卸", + "仗", + "陪", + "辟", + "惩", + "杭", + "姚", + "肚", + "捉", + "飘", + "漂", + "昆", + "欺", + "吾", + "郎", + "烷", + "汁", + "呵", + "饰", + "萧", + "雅", + "邮", + "迁", + "燕", + "撒", + "姻", + "赴", + "宴", + "烦", + "债", + "帐", + "斑", + "铃", + "旨", + "醇", + "董", + "饼", + "雏", + "姿", + "拌", + "傅", + "腹", + "妥", + "揉", + "贤", + "拆", + "歪", + "葡", + "胺", + "丢", + "浩", + "徽", + "昂", + "垫", + "挡", + "览", + "贪", + "慰", + "缴", + "汪", + "慌", + "冯", + "诺", + "姜", + "谊", + "凶", + "劣", + "诬", + "耀", + "昏", + "躺", + "盈", + "骑", + "乔", + "溪", + "丛", + "卢", + "抹", + "闷", + "咨", + "刮", + "驾", + "缆", + "悟", + "摘", + "铒", + "掷", + "颇", + "幻", + "柄", + "惠", + "惨", + "佳", + "仇", + "腊", + "窝", + "涤", + "剑", + "瞧", + "堡", + "泼", + "葱", + "罩", + "霍", + "捞", + "胎", + "苍", + "滨", + "俩", + "捅", + "湘", + "砍", + "霞", + "邵", + "萄", + "疯", + "淮", + "遂", + "熊", + "粪", + "烘", + "宿", + "档", + "戈", + "驳", + "嫂", + "裕", + "徙", + "箭", + "捐", + "肠", + "撑", + "晒", + "辨", + "殿", + "莲", + "摊", + "搅", + "酱", + "屏", + "疫", + "哀", + "蔡", + "堵", + "沫", + "皱", + "畅", + "叠", + "阁", + "莱", + "敲", + "辖", + "钩", + "痕", + "坝", + "巷", + "饿", + "祸", + "丘", + "玄", + "溜", + "曰", + "逻", + "彭", + "尝", + "卿", + "妨", + "艇", + "吞", + "韦", + "怨", + "矮", + "歇" + ] + }, + {} + ], + 33: [ + function(require, module, exports) { + module.exports = [ + "的", + "一", + "是", + "在", + "不", + "了", + "有", + "和", + "人", + "這", + "中", + "大", + "為", + "上", + "個", + "國", + "我", + "以", + "要", + "他", + "時", + "來", + "用", + "們", + "生", + "到", + "作", + "地", + "於", + "出", + "就", + "分", + "對", + "成", + "會", + "可", + "主", + "發", + "年", + "動", + "同", + "工", + "也", + "能", + "下", + "過", + "子", + "說", + "產", + "種", + "面", + "而", + "方", + "後", + "多", + "定", + "行", + "學", + "法", + "所", + "民", + "得", + "經", + "十", + "三", + "之", + "進", + "著", + "等", + "部", + "度", + "家", + "電", + "力", + "裡", + "如", + "水", + "化", + "高", + "自", + "二", + "理", + "起", + "小", + "物", + "現", + "實", + "加", + "量", + "都", + "兩", + "體", + "制", + "機", + "當", + "使", + "點", + "從", + "業", + "本", + "去", + "把", + "性", + "好", + "應", + "開", + "它", + "合", + "還", + "因", + "由", + "其", + "些", + "然", + "前", + "外", + "天", + "政", + "四", + "日", + "那", + "社", + "義", + "事", + "平", + "形", + "相", + "全", + "表", + "間", + "樣", + "與", + "關", + "各", + "重", + "新", + "線", + "內", + "數", + "正", + "心", + "反", + "你", + "明", + "看", + "原", + "又", + "麼", + "利", + "比", + "或", + "但", + "質", + "氣", + "第", + "向", + "道", + "命", + "此", + "變", + "條", + "只", + "沒", + "結", + "解", + "問", + "意", + "建", + "月", + "公", + "無", + "系", + "軍", + "很", + "情", + "者", + "最", + "立", + "代", + "想", + "已", + "通", + "並", + "提", + "直", + "題", + "黨", + "程", + "展", + "五", + "果", + "料", + "象", + "員", + "革", + "位", + "入", + "常", + "文", + "總", + "次", + "品", + "式", + "活", + "設", + "及", + "管", + "特", + "件", + "長", + "求", + "老", + "頭", + "基", + "資", + "邊", + "流", + "路", + "級", + "少", + "圖", + "山", + "統", + "接", + "知", + "較", + "將", + "組", + "見", + "計", + "別", + "她", + "手", + "角", + "期", + "根", + "論", + "運", + "農", + "指", + "幾", + "九", + "區", + "強", + "放", + "決", + "西", + "被", + "幹", + "做", + "必", + "戰", + "先", + "回", + "則", + "任", + "取", + "據", + "處", + "隊", + "南", + "給", + "色", + "光", + "門", + "即", + "保", + "治", + "北", + "造", + "百", + "規", + "熱", + "領", + "七", + "海", + "口", + "東", + "導", + "器", + "壓", + "志", + "世", + "金", + "增", + "爭", + "濟", + "階", + "油", + "思", + "術", + "極", + "交", + "受", + "聯", + "什", + "認", + "六", + "共", + "權", + "收", + "證", + "改", + "清", + "美", + "再", + "採", + "轉", + "更", + "單", + "風", + "切", + "打", + "白", + "教", + "速", + "花", + "帶", + "安", + "場", + "身", + "車", + "例", + "真", + "務", + "具", + "萬", + "每", + "目", + "至", + "達", + "走", + "積", + "示", + "議", + "聲", + "報", + "鬥", + "完", + "類", + "八", + "離", + "華", + "名", + "確", + "才", + "科", + "張", + "信", + "馬", + "節", + "話", + "米", + "整", + "空", + "元", + "況", + "今", + "集", + "溫", + "傳", + "土", + "許", + "步", + "群", + "廣", + "石", + "記", + "需", + "段", + "研", + "界", + "拉", + "林", + "律", + "叫", + "且", + "究", + "觀", + "越", + "織", + "裝", + "影", + "算", + "低", + "持", + "音", + "眾", + "書", + "布", + "复", + "容", + "兒", + "須", + "際", + "商", + "非", + "驗", + "連", + "斷", + "深", + "難", + "近", + "礦", + "千", + "週", + "委", + "素", + "技", + "備", + "半", + "辦", + "青", + "省", + "列", + "習", + "響", + "約", + "支", + "般", + "史", + "感", + "勞", + "便", + "團", + "往", + "酸", + "歷", + "市", + "克", + "何", + "除", + "消", + "構", + "府", + "稱", + "太", + "準", + "精", + "值", + "號", + "率", + "族", + "維", + "劃", + "選", + "標", + "寫", + "存", + "候", + "毛", + "親", + "快", + "效", + "斯", + "院", + "查", + "江", + "型", + "眼", + "王", + "按", + "格", + "養", + "易", + "置", + "派", + "層", + "片", + "始", + "卻", + "專", + "狀", + "育", + "廠", + "京", + "識", + "適", + "屬", + "圓", + "包", + "火", + "住", + "調", + "滿", + "縣", + "局", + "照", + "參", + "紅", + "細", + "引", + "聽", + "該", + "鐵", + "價", + "嚴", + "首", + "底", + "液", + "官", + "德", + "隨", + "病", + "蘇", + "失", + "爾", + "死", + "講", + "配", + "女", + "黃", + "推", + "顯", + "談", + "罪", + "神", + "藝", + "呢", + "席", + "含", + "企", + "望", + "密", + "批", + "營", + "項", + "防", + "舉", + "球", + "英", + "氧", + "勢", + "告", + "李", + "台", + "落", + "木", + "幫", + "輪", + "破", + "亞", + "師", + "圍", + "注", + "遠", + "字", + "材", + "排", + "供", + "河", + "態", + "封", + "另", + "施", + "減", + "樹", + "溶", + "怎", + "止", + "案", + "言", + "士", + "均", + "武", + "固", + "葉", + "魚", + "波", + "視", + "僅", + "費", + "緊", + "愛", + "左", + "章", + "早", + "朝", + "害", + "續", + "輕", + "服", + "試", + "食", + "充", + "兵", + "源", + "判", + "護", + "司", + "足", + "某", + "練", + "差", + "致", + "板", + "田", + "降", + "黑", + "犯", + "負", + "擊", + "范", + "繼", + "興", + "似", + "餘", + "堅", + "曲", + "輸", + "修", + "故", + "城", + "夫", + "夠", + "送", + "筆", + "船", + "佔", + "右", + "財", + "吃", + "富", + "春", + "職", + "覺", + "漢", + "畫", + "功", + "巴", + "跟", + "雖", + "雜", + "飛", + "檢", + "吸", + "助", + "昇", + "陽", + "互", + "初", + "創", + "抗", + "考", + "投", + "壞", + "策", + "古", + "徑", + "換", + "未", + "跑", + "留", + "鋼", + "曾", + "端", + "責", + "站", + "簡", + "述", + "錢", + "副", + "盡", + "帝", + "射", + "草", + "衝", + "承", + "獨", + "令", + "限", + "阿", + "宣", + "環", + "雙", + "請", + "超", + "微", + "讓", + "控", + "州", + "良", + "軸", + "找", + "否", + "紀", + "益", + "依", + "優", + "頂", + "礎", + "載", + "倒", + "房", + "突", + "坐", + "粉", + "敵", + "略", + "客", + "袁", + "冷", + "勝", + "絕", + "析", + "塊", + "劑", + "測", + "絲", + "協", + "訴", + "念", + "陳", + "仍", + "羅", + "鹽", + "友", + "洋", + "錯", + "苦", + "夜", + "刑", + "移", + "頻", + "逐", + "靠", + "混", + "母", + "短", + "皮", + "終", + "聚", + "汽", + "村", + "雲", + "哪", + "既", + "距", + "衛", + "停", + "烈", + "央", + "察", + "燒", + "迅", + "境", + "若", + "印", + "洲", + "刻", + "括", + "激", + "孔", + "搞", + "甚", + "室", + "待", + "核", + "校", + "散", + "侵", + "吧", + "甲", + "遊", + "久", + "菜", + "味", + "舊", + "模", + "湖", + "貨", + "損", + "預", + "阻", + "毫", + "普", + "穩", + "乙", + "媽", + "植", + "息", + "擴", + "銀", + "語", + "揮", + "酒", + "守", + "拿", + "序", + "紙", + "醫", + "缺", + "雨", + "嗎", + "針", + "劉", + "啊", + "急", + "唱", + "誤", + "訓", + "願", + "審", + "附", + "獲", + "茶", + "鮮", + "糧", + "斤", + "孩", + "脫", + "硫", + "肥", + "善", + "龍", + "演", + "父", + "漸", + "血", + "歡", + "械", + "掌", + "歌", + "沙", + "剛", + "攻", + "謂", + "盾", + "討", + "晚", + "粒", + "亂", + "燃", + "矛", + "乎", + "殺", + "藥", + "寧", + "魯", + "貴", + "鐘", + "煤", + "讀", + "班", + "伯", + "香", + "介", + "迫", + "句", + "豐", + "培", + "握", + "蘭", + "擔", + "弦", + "蛋", + "沉", + "假", + "穿", + "執", + "答", + "樂", + "誰", + "順", + "煙", + "縮", + "徵", + "臉", + "喜", + "松", + "腳", + "困", + "異", + "免", + "背", + "星", + "福", + "買", + "染", + "井", + "概", + "慢", + "怕", + "磁", + "倍", + "祖", + "皇", + "促", + "靜", + "補", + "評", + "翻", + "肉", + "踐", + "尼", + "衣", + "寬", + "揚", + "棉", + "希", + "傷", + "操", + "垂", + "秋", + "宜", + "氫", + "套", + "督", + "振", + "架", + "亮", + "末", + "憲", + "慶", + "編", + "牛", + "觸", + "映", + "雷", + "銷", + "詩", + "座", + "居", + "抓", + "裂", + "胞", + "呼", + "娘", + "景", + "威", + "綠", + "晶", + "厚", + "盟", + "衡", + "雞", + "孫", + "延", + "危", + "膠", + "屋", + "鄉", + "臨", + "陸", + "顧", + "掉", + "呀", + "燈", + "歲", + "措", + "束", + "耐", + "劇", + "玉", + "趙", + "跳", + "哥", + "季", + "課", + "凱", + "胡", + "額", + "款", + "紹", + "卷", + "齊", + "偉", + "蒸", + "殖", + "永", + "宗", + "苗", + "川", + "爐", + "岩", + "弱", + "零", + "楊", + "奏", + "沿", + "露", + "桿", + "探", + "滑", + "鎮", + "飯", + "濃", + "航", + "懷", + "趕", + "庫", + "奪", + "伊", + "靈", + "稅", + "途", + "滅", + "賽", + "歸", + "召", + "鼓", + "播", + "盤", + "裁", + "險", + "康", + "唯", + "錄", + "菌", + "純", + "借", + "糖", + "蓋", + "橫", + "符", + "私", + "努", + "堂", + "域", + "槍", + "潤", + "幅", + "哈", + "竟", + "熟", + "蟲", + "澤", + "腦", + "壤", + "碳", + "歐", + "遍", + "側", + "寨", + "敢", + "徹", + "慮", + "斜", + "薄", + "庭", + "納", + "彈", + "飼", + "伸", + "折", + "麥", + "濕", + "暗", + "荷", + "瓦", + "塞", + "床", + "築", + "惡", + "戶", + "訪", + "塔", + "奇", + "透", + "梁", + "刀", + "旋", + "跡", + "卡", + "氯", + "遇", + "份", + "毒", + "泥", + "退", + "洗", + "擺", + "灰", + "彩", + "賣", + "耗", + "夏", + "擇", + "忙", + "銅", + "獻", + "硬", + "予", + "繁", + "圈", + "雪", + "函", + "亦", + "抽", + "篇", + "陣", + "陰", + "丁", + "尺", + "追", + "堆", + "雄", + "迎", + "泛", + "爸", + "樓", + "避", + "謀", + "噸", + "野", + "豬", + "旗", + "累", + "偏", + "典", + "館", + "索", + "秦", + "脂", + "潮", + "爺", + "豆", + "忽", + "托", + "驚", + "塑", + "遺", + "愈", + "朱", + "替", + "纖", + "粗", + "傾", + "尚", + "痛", + "楚", + "謝", + "奮", + "購", + "磨", + "君", + "池", + "旁", + "碎", + "骨", + "監", + "捕", + "弟", + "暴", + "割", + "貫", + "殊", + "釋", + "詞", + "亡", + "壁", + "頓", + "寶", + "午", + "塵", + "聞", + "揭", + "炮", + "殘", + "冬", + "橋", + "婦", + "警", + "綜", + "招", + "吳", + "付", + "浮", + "遭", + "徐", + "您", + "搖", + "谷", + "贊", + "箱", + "隔", + "訂", + "男", + "吹", + "園", + "紛", + "唐", + "敗", + "宋", + "玻", + "巨", + "耕", + "坦", + "榮", + "閉", + "灣", + "鍵", + "凡", + "駐", + "鍋", + "救", + "恩", + "剝", + "凝", + "鹼", + "齒", + "截", + "煉", + "麻", + "紡", + "禁", + "廢", + "盛", + "版", + "緩", + "淨", + "睛", + "昌", + "婚", + "涉", + "筒", + "嘴", + "插", + "岸", + "朗", + "莊", + "街", + "藏", + "姑", + "貿", + "腐", + "奴", + "啦", + "慣", + "乘", + "夥", + "恢", + "勻", + "紗", + "扎", + "辯", + "耳", + "彪", + "臣", + "億", + "璃", + "抵", + "脈", + "秀", + "薩", + "俄", + "網", + "舞", + "店", + "噴", + "縱", + "寸", + "汗", + "掛", + "洪", + "賀", + "閃", + "柬", + "爆", + "烯", + "津", + "稻", + "牆", + "軟", + "勇", + "像", + "滾", + "厘", + "蒙", + "芳", + "肯", + "坡", + "柱", + "盪", + "腿", + "儀", + "旅", + "尾", + "軋", + "冰", + "貢", + "登", + "黎", + "削", + "鑽", + "勒", + "逃", + "障", + "氨", + "郭", + "峰", + "幣", + "港", + "伏", + "軌", + "畝", + "畢", + "擦", + "莫", + "刺", + "浪", + "秘", + "援", + "株", + "健", + "售", + "股", + "島", + "甘", + "泡", + "睡", + "童", + "鑄", + "湯", + "閥", + "休", + "匯", + "舍", + "牧", + "繞", + "炸", + "哲", + "磷", + "績", + "朋", + "淡", + "尖", + "啟", + "陷", + "柴", + "呈", + "徒", + "顏", + "淚", + "稍", + "忘", + "泵", + "藍", + "拖", + "洞", + "授", + "鏡", + "辛", + "壯", + "鋒", + "貧", + "虛", + "彎", + "摩", + "泰", + "幼", + "廷", + "尊", + "窗", + "綱", + "弄", + "隸", + "疑", + "氏", + "宮", + "姐", + "震", + "瑞", + "怪", + "尤", + "琴", + "循", + "描", + "膜", + "違", + "夾", + "腰", + "緣", + "珠", + "窮", + "森", + "枝", + "竹", + "溝", + "催", + "繩", + "憶", + "邦", + "剩", + "幸", + "漿", + "欄", + "擁", + "牙", + "貯", + "禮", + "濾", + "鈉", + "紋", + "罷", + "拍", + "咱", + "喊", + "袖", + "埃", + "勤", + "罰", + "焦", + "潛", + "伍", + "墨", + "欲", + "縫", + "姓", + "刊", + "飽", + "仿", + "獎", + "鋁", + "鬼", + "麗", + "跨", + "默", + "挖", + "鏈", + "掃", + "喝", + "袋", + "炭", + "污", + "幕", + "諸", + "弧", + "勵", + "梅", + "奶", + "潔", + "災", + "舟", + "鑑", + "苯", + "訟", + "抱", + "毀", + "懂", + "寒", + "智", + "埔", + "寄", + "屆", + "躍", + "渡", + "挑", + "丹", + "艱", + "貝", + "碰", + "拔", + "爹", + "戴", + "碼", + "夢", + "芽", + "熔", + "赤", + "漁", + "哭", + "敬", + "顆", + "奔", + "鉛", + "仲", + "虎", + "稀", + "妹", + "乏", + "珍", + "申", + "桌", + "遵", + "允", + "隆", + "螺", + "倉", + "魏", + "銳", + "曉", + "氮", + "兼", + "隱", + "礙", + "赫", + "撥", + "忠", + "肅", + "缸", + "牽", + "搶", + "博", + "巧", + "殼", + "兄", + "杜", + "訊", + "誠", + "碧", + "祥", + "柯", + "頁", + "巡", + "矩", + "悲", + "灌", + "齡", + "倫", + "票", + "尋", + "桂", + "鋪", + "聖", + "恐", + "恰", + "鄭", + "趣", + "抬", + "荒", + "騰", + "貼", + "柔", + "滴", + "猛", + "闊", + "輛", + "妻", + "填", + "撤", + "儲", + "簽", + "鬧", + "擾", + "紫", + "砂", + "遞", + "戲", + "吊", + "陶", + "伐", + "餵", + "療", + "瓶", + "婆", + "撫", + "臂", + "摸", + "忍", + "蝦", + "蠟", + "鄰", + "胸", + "鞏", + "擠", + "偶", + "棄", + "槽", + "勁", + "乳", + "鄧", + "吉", + "仁", + "爛", + "磚", + "租", + "烏", + "艦", + "伴", + "瓜", + "淺", + "丙", + "暫", + "燥", + "橡", + "柳", + "迷", + "暖", + "牌", + "秧", + "膽", + "詳", + "簧", + "踏", + "瓷", + "譜", + "呆", + "賓", + "糊", + "洛", + "輝", + "憤", + "競", + "隙", + "怒", + "粘", + "乃", + "緒", + "肩", + "籍", + "敏", + "塗", + "熙", + "皆", + "偵", + "懸", + "掘", + "享", + "糾", + "醒", + "狂", + "鎖", + "淀", + "恨", + "牲", + "霸", + "爬", + "賞", + "逆", + "玩", + "陵", + "祝", + "秒", + "浙", + "貌", + "役", + "彼", + "悉", + "鴨", + "趨", + "鳳", + "晨", + "畜", + "輩", + "秩", + "卵", + "署", + "梯", + "炎", + "灘", + "棋", + "驅", + "篩", + "峽", + "冒", + "啥", + "壽", + "譯", + "浸", + "泉", + "帽", + "遲", + "矽", + "疆", + "貸", + "漏", + "稿", + "冠", + "嫩", + "脅", + "芯", + "牢", + "叛", + "蝕", + "奧", + "鳴", + "嶺", + "羊", + "憑", + "串", + "塘", + "繪", + "酵", + "融", + "盆", + "錫", + "廟", + "籌", + "凍", + "輔", + "攝", + "襲", + "筋", + "拒", + "僚", + "旱", + "鉀", + "鳥", + "漆", + "沈", + "眉", + "疏", + "添", + "棒", + "穗", + "硝", + "韓", + "逼", + "扭", + "僑", + "涼", + "挺", + "碗", + "栽", + "炒", + "杯", + "患", + "餾", + "勸", + "豪", + "遼", + "勃", + "鴻", + "旦", + "吏", + "拜", + "狗", + "埋", + "輥", + "掩", + "飲", + "搬", + "罵", + "辭", + "勾", + "扣", + "估", + "蔣", + "絨", + "霧", + "丈", + "朵", + "姆", + "擬", + "宇", + "輯", + "陝", + "雕", + "償", + "蓄", + "崇", + "剪", + "倡", + "廳", + "咬", + "駛", + "薯", + "刷", + "斥", + "番", + "賦", + "奉", + "佛", + "澆", + "漫", + "曼", + "扇", + "鈣", + "桃", + "扶", + "仔", + "返", + "俗", + "虧", + "腔", + "鞋", + "棱", + "覆", + "框", + "悄", + "叔", + "撞", + "騙", + "勘", + "旺", + "沸", + "孤", + "吐", + "孟", + "渠", + "屈", + "疾", + "妙", + "惜", + "仰", + "狠", + "脹", + "諧", + "拋", + "黴", + "桑", + "崗", + "嘛", + "衰", + "盜", + "滲", + "臟", + "賴", + "湧", + "甜", + "曹", + "閱", + "肌", + "哩", + "厲", + "烴", + "緯", + "毅", + "昨", + "偽", + "症", + "煮", + "嘆", + "釘", + "搭", + "莖", + "籠", + "酷", + "偷", + "弓", + "錐", + "恆", + "傑", + "坑", + "鼻", + "翼", + "綸", + "敘", + "獄", + "逮", + "罐", + "絡", + "棚", + "抑", + "膨", + "蔬", + "寺", + "驟", + "穆", + "冶", + "枯", + "冊", + "屍", + "凸", + "紳", + "坯", + "犧", + "焰", + "轟", + "欣", + "晉", + "瘦", + "禦", + "錠", + "錦", + "喪", + "旬", + "鍛", + "壟", + "搜", + "撲", + "邀", + "亭", + "酯", + "邁", + "舒", + "脆", + "酶", + "閒", + "憂", + "酚", + "頑", + "羽", + "漲", + "卸", + "仗", + "陪", + "闢", + "懲", + "杭", + "姚", + "肚", + "捉", + "飄", + "漂", + "昆", + "欺", + "吾", + "郎", + "烷", + "汁", + "呵", + "飾", + "蕭", + "雅", + "郵", + "遷", + "燕", + "撒", + "姻", + "赴", + "宴", + "煩", + "債", + "帳", + "斑", + "鈴", + "旨", + "醇", + "董", + "餅", + "雛", + "姿", + "拌", + "傅", + "腹", + "妥", + "揉", + "賢", + "拆", + "歪", + "葡", + "胺", + "丟", + "浩", + "徽", + "昂", + "墊", + "擋", + "覽", + "貪", + "慰", + "繳", + "汪", + "慌", + "馮", + "諾", + "姜", + "誼", + "兇", + "劣", + "誣", + "耀", + "昏", + "躺", + "盈", + "騎", + "喬", + "溪", + "叢", + "盧", + "抹", + "悶", + "諮", + "刮", + "駕", + "纜", + "悟", + "摘", + "鉺", + "擲", + "頗", + "幻", + "柄", + "惠", + "慘", + "佳", + "仇", + "臘", + "窩", + "滌", + "劍", + "瞧", + "堡", + "潑", + "蔥", + "罩", + "霍", + "撈", + "胎", + "蒼", + "濱", + "倆", + "捅", + "湘", + "砍", + "霞", + "邵", + "萄", + "瘋", + "淮", + "遂", + "熊", + "糞", + "烘", + "宿", + "檔", + "戈", + "駁", + "嫂", + "裕", + "徙", + "箭", + "捐", + "腸", + "撐", + "曬", + "辨", + "殿", + "蓮", + "攤", + "攪", + "醬", + "屏", + "疫", + "哀", + "蔡", + "堵", + "沫", + "皺", + "暢", + "疊", + "閣", + "萊", + "敲", + "轄", + "鉤", + "痕", + "壩", + "巷", + "餓", + "禍", + "丘", + "玄", + "溜", + "曰", + "邏", + "彭", + "嘗", + "卿", + "妨", + "艇", + "吞", + "韋", + "怨", + "矮", + "歇" + ] + }, + {} + ], + 34: [ + function(require, module, exports) { + module.exports = [ + "abandon", + "ability", + "able", + "about", + "above", + "absent", + "absorb", + "abstract", + "absurd", + "abuse", + "access", + "accident", + "account", + "accuse", + "achieve", + "acid", + "acoustic", + "acquire", + "across", + "act", + "action", + "actor", + "actress", + "actual", + "adapt", + "add", + "addict", + "address", + "adjust", + "admit", + "adult", + "advance", + "advice", + "aerobic", + "affair", + "afford", + "afraid", + "again", + "age", + "agent", + "agree", + "ahead", + "aim", + "air", + "airport", + "aisle", + "alarm", + "album", + "alcohol", + "alert", + "alien", + "all", + "alley", + "allow", + "almost", + "alone", + "alpha", + "already", + "also", + "alter", + "always", + "amateur", + "amazing", + "among", + "amount", + "amused", + "analyst", + "anchor", + "ancient", + "anger", + "angle", + "angry", + "animal", + "ankle", + "announce", + "annual", + "another", + "answer", + "antenna", + "antique", + "anxiety", + "any", + "apart", + "apology", + "appear", + "apple", + "approve", + "april", + "arch", + "arctic", + "area", + "arena", + "argue", + "arm", + "armed", + "armor", + "army", + "around", + "arrange", + "arrest", + "arrive", + "arrow", + "art", + "artefact", + "artist", + "artwork", + "ask", + "aspect", + "assault", + "asset", + "assist", + "assume", + "asthma", + "athlete", + "atom", + "attack", + "attend", + "attitude", + "attract", + "auction", + "audit", + "august", + "aunt", + "author", + "auto", + "autumn", + "average", + "avocado", + "avoid", + "awake", + "aware", + "away", + "awesome", + "awful", + "awkward", + "axis", + "baby", + "bachelor", + "bacon", + "badge", + "bag", + "balance", + "balcony", + "ball", + "bamboo", + "banana", + "banner", + "bar", + "barely", + "bargain", + "barrel", + "base", + "basic", + "basket", + "battle", + "beach", + "bean", + "beauty", + "because", + "become", + "beef", + "before", + "begin", + "behave", + "behind", + "believe", + "below", + "belt", + "bench", + "benefit", + "best", + "betray", + "better", + "between", + "beyond", + "bicycle", + "bid", + "bike", + "bind", + "biology", + "bird", + "birth", + "bitter", + "black", + "blade", + "blame", + "blanket", + "blast", + "bleak", + "bless", + "blind", + "blood", + "blossom", + "blouse", + "blue", + "blur", + "blush", + "board", + "boat", + "body", + "boil", + "bomb", + "bone", + "bonus", + "book", + "boost", + "border", + "boring", + "borrow", + "boss", + "bottom", + "bounce", + "box", + "boy", + "bracket", + "brain", + "brand", + "brass", + "brave", + "bread", + "breeze", + "brick", + "bridge", + "brief", + "bright", + "bring", + "brisk", + "broccoli", + "broken", + "bronze", + "broom", + "brother", + "brown", + "brush", + "bubble", + "buddy", + "budget", + "buffalo", + "build", + "bulb", + "bulk", + "bullet", + "bundle", + "bunker", + "burden", + "burger", + "burst", + "bus", + "business", + "busy", + "butter", + "buyer", + "buzz", + "cabbage", + "cabin", + "cable", + "cactus", + "cage", + "cake", + "call", + "calm", + "camera", + "camp", + "can", + "canal", + "cancel", + "candy", + "cannon", + "canoe", + "canvas", + "canyon", + "capable", + "capital", + "captain", + "car", + "carbon", + "card", + "cargo", + "carpet", + "carry", + "cart", + "case", + "cash", + "casino", + "castle", + "casual", + "cat", + "catalog", + "catch", + "category", + "cattle", + "caught", + "cause", + "caution", + "cave", + "ceiling", + "celery", + "cement", + "census", + "century", + "cereal", + "certain", + "chair", + "chalk", + "champion", + "change", + "chaos", + "chapter", + "charge", + "chase", + "chat", + "cheap", + "check", + "cheese", + "chef", + "cherry", + "chest", + "chicken", + "chief", + "child", + "chimney", + "choice", + "choose", + "chronic", + "chuckle", + "chunk", + "churn", + "cigar", + "cinnamon", + "circle", + "citizen", + "city", + "civil", + "claim", + "clap", + "clarify", + "claw", + "clay", + "clean", + "clerk", + "clever", + "click", + "client", + "cliff", + "climb", + "clinic", + "clip", + "clock", + "clog", + "close", + "cloth", + "cloud", + "clown", + "club", + "clump", + "cluster", + "clutch", + "coach", + "coast", + "coconut", + "code", + "coffee", + "coil", + "coin", + "collect", + "color", + "column", + "combine", + "come", + "comfort", + "comic", + "common", + "company", + "concert", + "conduct", + "confirm", + "congress", + "connect", + "consider", + "control", + "convince", + "cook", + "cool", + "copper", + "copy", + "coral", + "core", + "corn", + "correct", + "cost", + "cotton", + "couch", + "country", + "couple", + "course", + "cousin", + "cover", + "coyote", + "crack", + "cradle", + "craft", + "cram", + "crane", + "crash", + "crater", + "crawl", + "crazy", + "cream", + "credit", + "creek", + "crew", + "cricket", + "crime", + "crisp", + "critic", + "crop", + "cross", + "crouch", + "crowd", + "crucial", + "cruel", + "cruise", + "crumble", + "crunch", + "crush", + "cry", + "crystal", + "cube", + "culture", + "cup", + "cupboard", + "curious", + "current", + "curtain", + "curve", + "cushion", + "custom", + "cute", + "cycle", + "dad", + "damage", + "damp", + "dance", + "danger", + "daring", + "dash", + "daughter", + "dawn", + "day", + "deal", + "debate", + "debris", + "decade", + "december", + "decide", + "decline", + "decorate", + "decrease", + "deer", + "defense", + "define", + "defy", + "degree", + "delay", + "deliver", + "demand", + "demise", + "denial", + "dentist", + "deny", + "depart", + "depend", + "deposit", + "depth", + "deputy", + "derive", + "describe", + "desert", + "design", + "desk", + "despair", + "destroy", + "detail", + "detect", + "develop", + "device", + "devote", + "diagram", + "dial", + "diamond", + "diary", + "dice", + "diesel", + "diet", + "differ", + "digital", + "dignity", + "dilemma", + "dinner", + "dinosaur", + "direct", + "dirt", + "disagree", + "discover", + "disease", + "dish", + "dismiss", + "disorder", + "display", + "distance", + "divert", + "divide", + "divorce", + "dizzy", + "doctor", + "document", + "dog", + "doll", + "dolphin", + "domain", + "donate", + "donkey", + "donor", + "door", + "dose", + "double", + "dove", + "draft", + "dragon", + "drama", + "drastic", + "draw", + "dream", + "dress", + "drift", + "drill", + "drink", + "drip", + "drive", + "drop", + "drum", + "dry", + "duck", + "dumb", + "dune", + "during", + "dust", + "dutch", + "duty", + "dwarf", + "dynamic", + "eager", + "eagle", + "early", + "earn", + "earth", + "easily", + "east", + "easy", + "echo", + "ecology", + "economy", + "edge", + "edit", + "educate", + "effort", + "egg", + "eight", + "either", + "elbow", + "elder", + "electric", + "elegant", + "element", + "elephant", + "elevator", + "elite", + "else", + "embark", + "embody", + "embrace", + "emerge", + "emotion", + "employ", + "empower", + "empty", + "enable", + "enact", + "end", + "endless", + "endorse", + "enemy", + "energy", + "enforce", + "engage", + "engine", + "enhance", + "enjoy", + "enlist", + "enough", + "enrich", + "enroll", + "ensure", + "enter", + "entire", + "entry", + "envelope", + "episode", + "equal", + "equip", + "era", + "erase", + "erode", + "erosion", + "error", + "erupt", + "escape", + "essay", + "essence", + "estate", + "eternal", + "ethics", + "evidence", + "evil", + "evoke", + "evolve", + "exact", + "example", + "excess", + "exchange", + "excite", + "exclude", + "excuse", + "execute", + "exercise", + "exhaust", + "exhibit", + "exile", + "exist", + "exit", + "exotic", + "expand", + "expect", + "expire", + "explain", + "expose", + "express", + "extend", + "extra", + "eye", + "eyebrow", + "fabric", + "face", + "faculty", + "fade", + "faint", + "faith", + "fall", + "false", + "fame", + "family", + "famous", + "fan", + "fancy", + "fantasy", + "farm", + "fashion", + "fat", + "fatal", + "father", + "fatigue", + "fault", + "favorite", + "feature", + "february", + "federal", + "fee", + "feed", + "feel", + "female", + "fence", + "festival", + "fetch", + "fever", + "few", + "fiber", + "fiction", + "field", + "figure", + "file", + "film", + "filter", + "final", + "find", + "fine", + "finger", + "finish", + "fire", + "firm", + "first", + "fiscal", + "fish", + "fit", + "fitness", + "fix", + "flag", + "flame", + "flash", + "flat", + "flavor", + "flee", + "flight", + "flip", + "float", + "flock", + "floor", + "flower", + "fluid", + "flush", + "fly", + "foam", + "focus", + "fog", + "foil", + "fold", + "follow", + "food", + "foot", + "force", + "forest", + "forget", + "fork", + "fortune", + "forum", + "forward", + "fossil", + "foster", + "found", + "fox", + "fragile", + "frame", + "frequent", + "fresh", + "friend", + "fringe", + "frog", + "front", + "frost", + "frown", + "frozen", + "fruit", + "fuel", + "fun", + "funny", + "furnace", + "fury", + "future", + "gadget", + "gain", + "galaxy", + "gallery", + "game", + "gap", + "garage", + "garbage", + "garden", + "garlic", + "garment", + "gas", + "gasp", + "gate", + "gather", + "gauge", + "gaze", + "general", + "genius", + "genre", + "gentle", + "genuine", + "gesture", + "ghost", + "giant", + "gift", + "giggle", + "ginger", + "giraffe", + "girl", + "give", + "glad", + "glance", + "glare", + "glass", + "glide", + "glimpse", + "globe", + "gloom", + "glory", + "glove", + "glow", + "glue", + "goat", + "goddess", + "gold", + "good", + "goose", + "gorilla", + "gospel", + "gossip", + "govern", + "gown", + "grab", + "grace", + "grain", + "grant", + "grape", + "grass", + "gravity", + "great", + "green", + "grid", + "grief", + "grit", + "grocery", + "group", + "grow", + "grunt", + "guard", + "guess", + "guide", + "guilt", + "guitar", + "gun", + "gym", + "habit", + "hair", + "half", + "hammer", + "hamster", + "hand", + "happy", + "harbor", + "hard", + "harsh", + "harvest", + "hat", + "have", + "hawk", + "hazard", + "head", + "health", + "heart", + "heavy", + "hedgehog", + "height", + "hello", + "helmet", + "help", + "hen", + "hero", + "hidden", + "high", + "hill", + "hint", + "hip", + "hire", + "history", + "hobby", + "hockey", + "hold", + "hole", + "holiday", + "hollow", + "home", + "honey", + "hood", + "hope", + "horn", + "horror", + "horse", + "hospital", + "host", + "hotel", + "hour", + "hover", + "hub", + "huge", + "human", + "humble", + "humor", + "hundred", + "hungry", + "hunt", + "hurdle", + "hurry", + "hurt", + "husband", + "hybrid", + "ice", + "icon", + "idea", + "identify", + "idle", + "ignore", + "ill", + "illegal", + "illness", + "image", + "imitate", + "immense", + "immune", + "impact", + "impose", + "improve", + "impulse", + "inch", + "include", + "income", + "increase", + "index", + "indicate", + "indoor", + "industry", + "infant", + "inflict", + "inform", + "inhale", + "inherit", + "initial", + "inject", + "injury", + "inmate", + "inner", + "innocent", + "input", + "inquiry", + "insane", + "insect", + "inside", + "inspire", + "install", + "intact", + "interest", + "into", + "invest", + "invite", + "involve", + "iron", + "island", + "isolate", + "issue", + "item", + "ivory", + "jacket", + "jaguar", + "jar", + "jazz", + "jealous", + "jeans", + "jelly", + "jewel", + "job", + "join", + "joke", + "journey", + "joy", + "judge", + "juice", + "jump", + "jungle", + "junior", + "junk", + "just", + "kangaroo", + "keen", + "keep", + "ketchup", + "key", + "kick", + "kid", + "kidney", + "kind", + "kingdom", + "kiss", + "kit", + "kitchen", + "kite", + "kitten", + "kiwi", + "knee", + "knife", + "knock", + "know", + "lab", + "label", + "labor", + "ladder", + "lady", + "lake", + "lamp", + "language", + "laptop", + "large", + "later", + "latin", + "laugh", + "laundry", + "lava", + "law", + "lawn", + "lawsuit", + "layer", + "lazy", + "leader", + "leaf", + "learn", + "leave", + "lecture", + "left", + "leg", + "legal", + "legend", + "leisure", + "lemon", + "lend", + "length", + "lens", + "leopard", + "lesson", + "letter", + "level", + "liar", + "liberty", + "library", + "license", + "life", + "lift", + "light", + "like", + "limb", + "limit", + "link", + "lion", + "liquid", + "list", + "little", + "live", + "lizard", + "load", + "loan", + "lobster", + "local", + "lock", + "logic", + "lonely", + "long", + "loop", + "lottery", + "loud", + "lounge", + "love", + "loyal", + "lucky", + "luggage", + "lumber", + "lunar", + "lunch", + "luxury", + "lyrics", + "machine", + "mad", + "magic", + "magnet", + "maid", + "mail", + "main", + "major", + "make", + "mammal", + "man", + "manage", + "mandate", + "mango", + "mansion", + "manual", + "maple", + "marble", + "march", + "margin", + "marine", + "market", + "marriage", + "mask", + "mass", + "master", + "match", + "material", + "math", + "matrix", + "matter", + "maximum", + "maze", + "meadow", + "mean", + "measure", + "meat", + "mechanic", + "medal", + "media", + "melody", + "melt", + "member", + "memory", + "mention", + "menu", + "mercy", + "merge", + "merit", + "merry", + "mesh", + "message", + "metal", + "method", + "middle", + "midnight", + "milk", + "million", + "mimic", + "mind", + "minimum", + "minor", + "minute", + "miracle", + "mirror", + "misery", + "miss", + "mistake", + "mix", + "mixed", + "mixture", + "mobile", + "model", + "modify", + "mom", + "moment", + "monitor", + "monkey", + "monster", + "month", + "moon", + "moral", + "more", + "morning", + "mosquito", + "mother", + "motion", + "motor", + "mountain", + "mouse", + "move", + "movie", + "much", + "muffin", + "mule", + "multiply", + "muscle", + "museum", + "mushroom", + "music", + "must", + "mutual", + "myself", + "mystery", + "myth", + "naive", + "name", + "napkin", + "narrow", + "nasty", + "nation", + "nature", + "near", + "neck", + "need", + "negative", + "neglect", + "neither", + "nephew", + "nerve", + "nest", + "net", + "network", + "neutral", + "never", + "news", + "next", + "nice", + "night", + "noble", + "noise", + "nominee", + "noodle", + "normal", + "north", + "nose", + "notable", + "note", + "nothing", + "notice", + "novel", + "now", + "nuclear", + "number", + "nurse", + "nut", + "oak", + "obey", + "object", + "oblige", + "obscure", + "observe", + "obtain", + "obvious", + "occur", + "ocean", + "october", + "odor", + "off", + "offer", + "office", + "often", + "oil", + "okay", + "old", + "olive", + "olympic", + "omit", + "once", + "one", + "onion", + "online", + "only", + "open", + "opera", + "opinion", + "oppose", + "option", + "orange", + "orbit", + "orchard", + "order", + "ordinary", + "organ", + "orient", + "original", + "orphan", + "ostrich", + "other", + "outdoor", + "outer", + "output", + "outside", + "oval", + "oven", + "over", + "own", + "owner", + "oxygen", + "oyster", + "ozone", + "pact", + "paddle", + "page", + "pair", + "palace", + "palm", + "panda", + "panel", + "panic", + "panther", + "paper", + "parade", + "parent", + "park", + "parrot", + "party", + "pass", + "patch", + "path", + "patient", + "patrol", + "pattern", + "pause", + "pave", + "payment", + "peace", + "peanut", + "pear", + "peasant", + "pelican", + "pen", + "penalty", + "pencil", + "people", + "pepper", + "perfect", + "permit", + "person", + "pet", + "phone", + "photo", + "phrase", + "physical", + "piano", + "picnic", + "picture", + "piece", + "pig", + "pigeon", + "pill", + "pilot", + "pink", + "pioneer", + "pipe", + "pistol", + "pitch", + "pizza", + "place", + "planet", + "plastic", + "plate", + "play", + "please", + "pledge", + "pluck", + "plug", + "plunge", + "poem", + "poet", + "point", + "polar", + "pole", + "police", + "pond", + "pony", + "pool", + "popular", + "portion", + "position", + "possible", + "post", + "potato", + "pottery", + "poverty", + "powder", + "power", + "practice", + "praise", + "predict", + "prefer", + "prepare", + "present", + "pretty", + "prevent", + "price", + "pride", + "primary", + "print", + "priority", + "prison", + "private", + "prize", + "problem", + "process", + "produce", + "profit", + "program", + "project", + "promote", + "proof", + "property", + "prosper", + "protect", + "proud", + "provide", + "public", + "pudding", + "pull", + "pulp", + "pulse", + "pumpkin", + "punch", + "pupil", + "puppy", + "purchase", + "purity", + "purpose", + "purse", + "push", + "put", + "puzzle", + "pyramid", + "quality", + "quantum", + "quarter", + "question", + "quick", + "quit", + "quiz", + "quote", + "rabbit", + "raccoon", + "race", + "rack", + "radar", + "radio", + "rail", + "rain", + "raise", + "rally", + "ramp", + "ranch", + "random", + "range", + "rapid", + "rare", + "rate", + "rather", + "raven", + "raw", + "razor", + "ready", + "real", + "reason", + "rebel", + "rebuild", + "recall", + "receive", + "recipe", + "record", + "recycle", + "reduce", + "reflect", + "reform", + "refuse", + "region", + "regret", + "regular", + "reject", + "relax", + "release", + "relief", + "rely", + "remain", + "remember", + "remind", + "remove", + "render", + "renew", + "rent", + "reopen", + "repair", + "repeat", + "replace", + "report", + "require", + "rescue", + "resemble", + "resist", + "resource", + "response", + "result", + "retire", + "retreat", + "return", + "reunion", + "reveal", + "review", + "reward", + "rhythm", + "rib", + "ribbon", + "rice", + "rich", + "ride", + "ridge", + "rifle", + "right", + "rigid", + "ring", + "riot", + "ripple", + "risk", + "ritual", + "rival", + "river", + "road", + "roast", + "robot", + "robust", + "rocket", + "romance", + "roof", + "rookie", + "room", + "rose", + "rotate", + "rough", + "round", + "route", + "royal", + "rubber", + "rude", + "rug", + "rule", + "run", + "runway", + "rural", + "sad", + "saddle", + "sadness", + "safe", + "sail", + "salad", + "salmon", + "salon", + "salt", + "salute", + "same", + "sample", + "sand", + "satisfy", + "satoshi", + "sauce", + "sausage", + "save", + "say", + "scale", + "scan", + "scare", + "scatter", + "scene", + "scheme", + "school", + "science", + "scissors", + "scorpion", + "scout", + "scrap", + "screen", + "script", + "scrub", + "sea", + "search", + "season", + "seat", + "second", + "secret", + "section", + "security", + "seed", + "seek", + "segment", + "select", + "sell", + "seminar", + "senior", + "sense", + "sentence", + "series", + "service", + "session", + "settle", + "setup", + "seven", + "shadow", + "shaft", + "shallow", + "share", + "shed", + "shell", + "sheriff", + "shield", + "shift", + "shine", + "ship", + "shiver", + "shock", + "shoe", + "shoot", + "shop", + "short", + "shoulder", + "shove", + "shrimp", + "shrug", + "shuffle", + "shy", + "sibling", + "sick", + "side", + "siege", + "sight", + "sign", + "silent", + "silk", + "silly", + "silver", + "similar", + "simple", + "since", + "sing", + "siren", + "sister", + "situate", + "six", + "size", + "skate", + "sketch", + "ski", + "skill", + "skin", + "skirt", + "skull", + "slab", + "slam", + "sleep", + "slender", + "slice", + "slide", + "slight", + "slim", + "slogan", + "slot", + "slow", + "slush", + "small", + "smart", + "smile", + "smoke", + "smooth", + "snack", + "snake", + "snap", + "sniff", + "snow", + "soap", + "soccer", + "social", + "sock", + "soda", + "soft", + "solar", + "soldier", + "solid", + "solution", + "solve", + "someone", + "song", + "soon", + "sorry", + "sort", + "soul", + "sound", + "soup", + "source", + "south", + "space", + "spare", + "spatial", + "spawn", + "speak", + "special", + "speed", + "spell", + "spend", + "sphere", + "spice", + "spider", + "spike", + "spin", + "spirit", + "split", + "spoil", + "sponsor", + "spoon", + "sport", + "spot", + "spray", + "spread", + "spring", + "spy", + "square", + "squeeze", + "squirrel", + "stable", + "stadium", + "staff", + "stage", + "stairs", + "stamp", + "stand", + "start", + "state", + "stay", + "steak", + "steel", + "stem", + "step", + "stereo", + "stick", + "still", + "sting", + "stock", + "stomach", + "stone", + "stool", + "story", + "stove", + "strategy", + "street", + "strike", + "strong", + "struggle", + "student", + "stuff", + "stumble", + "style", + "subject", + "submit", + "subway", + "success", + "such", + "sudden", + "suffer", + "sugar", + "suggest", + "suit", + "summer", + "sun", + "sunny", + "sunset", + "super", + "supply", + "supreme", + "sure", + "surface", + "surge", + "surprise", + "surround", + "survey", + "suspect", + "sustain", + "swallow", + "swamp", + "swap", + "swarm", + "swear", + "sweet", + "swift", + "swim", + "swing", + "switch", + "sword", + "symbol", + "symptom", + "syrup", + "system", + "table", + "tackle", + "tag", + "tail", + "talent", + "talk", + "tank", + "tape", + "target", + "task", + "taste", + "tattoo", + "taxi", + "teach", + "team", + "tell", + "ten", + "tenant", + "tennis", + "tent", + "term", + "test", + "text", + "thank", + "that", + "theme", + "then", + "theory", + "there", + "they", + "thing", + "this", + "thought", + "three", + "thrive", + "throw", + "thumb", + "thunder", + "ticket", + "tide", + "tiger", + "tilt", + "timber", + "time", + "tiny", + "tip", + "tired", + "tissue", + "title", + "toast", + "tobacco", + "today", + "toddler", + "toe", + "together", + "toilet", + "token", + "tomato", + "tomorrow", + "tone", + "tongue", + "tonight", + "tool", + "tooth", + "top", + "topic", + "topple", + "torch", + "tornado", + "tortoise", + "toss", + "total", + "tourist", + "toward", + "tower", + "town", + "toy", + "track", + "trade", + "traffic", + "tragic", + "train", + "transfer", + "trap", + "trash", + "travel", + "tray", + "treat", + "tree", + "trend", + "trial", + "tribe", + "trick", + "trigger", + "trim", + "trip", + "trophy", + "trouble", + "truck", + "true", + "truly", + "trumpet", + "trust", + "truth", + "try", + "tube", + "tuition", + "tumble", + "tuna", + "tunnel", + "turkey", + "turn", + "turtle", + "twelve", + "twenty", + "twice", + "twin", + "twist", + "two", + "type", + "typical", + "ugly", + "umbrella", + "unable", + "unaware", + "uncle", + "uncover", + "under", + "undo", + "unfair", + "unfold", + "unhappy", + "uniform", + "unique", + "unit", + "universe", + "unknown", + "unlock", + "until", + "unusual", + "unveil", + "update", + "upgrade", + "uphold", + "upon", + "upper", + "upset", + "urban", + "urge", + "usage", + "use", + "used", + "useful", + "useless", + "usual", + "utility", + "vacant", + "vacuum", + "vague", + "valid", + "valley", + "valve", + "van", + "vanish", + "vapor", + "various", + "vast", + "vault", + "vehicle", + "velvet", + "vendor", + "venture", + "venue", + "verb", + "verify", + "version", + "very", + "vessel", + "veteran", + "viable", + "vibrant", + "vicious", + "victory", + "video", + "view", + "village", + "vintage", + "violin", + "virtual", + "virus", + "visa", + "visit", + "visual", + "vital", + "vivid", + "vocal", + "voice", + "void", + "volcano", + "volume", + "vote", + "voyage", + "wage", + "wagon", + "wait", + "walk", + "wall", + "walnut", + "want", + "warfare", + "warm", + "warrior", + "wash", + "wasp", + "waste", + "water", + "wave", + "way", + "wealth", + "weapon", + "wear", + "weasel", + "weather", + "web", + "wedding", + "weekend", + "weird", + "welcome", + "west", + "wet", + "whale", + "what", + "wheat", + "wheel", + "when", + "where", + "whip", + "whisper", + "wide", + "width", + "wife", + "wild", + "will", + "win", + "window", + "wine", + "wing", + "wink", + "winner", + "winter", + "wire", + "wisdom", + "wise", + "wish", + "witness", + "wolf", + "woman", + "wonder", + "wood", + "wool", + "word", + "work", + "world", + "worry", + "worth", + "wrap", + "wreck", + "wrestle", + "wrist", + "write", + "wrong", + "yard", + "year", + "yellow", + "you", + "young", + "youth", + "zebra", + "zero", + "zone", + "zoo" + ] + }, + {} + ], + 35: [ + function(require, module, exports) { + module.exports = [ + "abaisser", + "abandon", + "abdiquer", + "abeille", + "abolir", + "aborder", + "aboutir", + "aboyer", + "abrasif", + "abreuver", + "abriter", + "abroger", + "abrupt", + "absence", + "absolu", + "absurde", + "abusif", + "abyssal", + "académie", + "acajou", + "acarien", + "accabler", + "accepter", + "acclamer", + "accolade", + "accroche", + "accuser", + "acerbe", + "achat", + "acheter", + "aciduler", + "acier", + "acompte", + "acquérir", + "acronyme", + "acteur", + "actif", + "actuel", + "adepte", + "adéquat", + "adhésif", + "adjectif", + "adjuger", + "admettre", + "admirer", + "adopter", + "adorer", + "adoucir", + "adresse", + "adroit", + "adulte", + "adverbe", + "aérer", + "aéronef", + "affaire", + "affecter", + "affiche", + "affreux", + "affubler", + "agacer", + "agencer", + "agile", + "agiter", + "agrafer", + "agréable", + "agrume", + "aider", + "aiguille", + "ailier", + "aimable", + "aisance", + "ajouter", + "ajuster", + "alarmer", + "alchimie", + "alerte", + "algèbre", + "algue", + "aliéner", + "aliment", + "alléger", + "alliage", + "allouer", + "allumer", + "alourdir", + "alpaga", + "altesse", + "alvéole", + "amateur", + "ambigu", + "ambre", + "aménager", + "amertume", + "amidon", + "amiral", + "amorcer", + "amour", + "amovible", + "amphibie", + "ampleur", + "amusant", + "analyse", + "anaphore", + "anarchie", + "anatomie", + "ancien", + "anéantir", + "angle", + "angoisse", + "anguleux", + "animal", + "annexer", + "annonce", + "annuel", + "anodin", + "anomalie", + "anonyme", + "anormal", + "antenne", + "antidote", + "anxieux", + "apaiser", + "apéritif", + "aplanir", + "apologie", + "appareil", + "appeler", + "apporter", + "appuyer", + "aquarium", + "aqueduc", + "arbitre", + "arbuste", + "ardeur", + "ardoise", + "argent", + "arlequin", + "armature", + "armement", + "armoire", + "armure", + "arpenter", + "arracher", + "arriver", + "arroser", + "arsenic", + "artériel", + "article", + "aspect", + "asphalte", + "aspirer", + "assaut", + "asservir", + "assiette", + "associer", + "assurer", + "asticot", + "astre", + "astuce", + "atelier", + "atome", + "atrium", + "atroce", + "attaque", + "attentif", + "attirer", + "attraper", + "aubaine", + "auberge", + "audace", + "audible", + "augurer", + "aurore", + "automne", + "autruche", + "avaler", + "avancer", + "avarice", + "avenir", + "averse", + "aveugle", + "aviateur", + "avide", + "avion", + "aviser", + "avoine", + "avouer", + "avril", + "axial", + "axiome", + "badge", + "bafouer", + "bagage", + "baguette", + "baignade", + "balancer", + "balcon", + "baleine", + "balisage", + "bambin", + "bancaire", + "bandage", + "banlieue", + "bannière", + "banquier", + "barbier", + "baril", + "baron", + "barque", + "barrage", + "bassin", + "bastion", + "bataille", + "bateau", + "batterie", + "baudrier", + "bavarder", + "belette", + "bélier", + "belote", + "bénéfice", + "berceau", + "berger", + "berline", + "bermuda", + "besace", + "besogne", + "bétail", + "beurre", + "biberon", + "bicycle", + "bidule", + "bijou", + "bilan", + "bilingue", + "billard", + "binaire", + "biologie", + "biopsie", + "biotype", + "biscuit", + "bison", + "bistouri", + "bitume", + "bizarre", + "blafard", + "blague", + "blanchir", + "blessant", + "blinder", + "blond", + "bloquer", + "blouson", + "bobard", + "bobine", + "boire", + "boiser", + "bolide", + "bonbon", + "bondir", + "bonheur", + "bonifier", + "bonus", + "bordure", + "borne", + "botte", + "boucle", + "boueux", + "bougie", + "boulon", + "bouquin", + "bourse", + "boussole", + "boutique", + "boxeur", + "branche", + "brasier", + "brave", + "brebis", + "brèche", + "breuvage", + "bricoler", + "brigade", + "brillant", + "brioche", + "brique", + "brochure", + "broder", + "bronzer", + "brousse", + "broyeur", + "brume", + "brusque", + "brutal", + "bruyant", + "buffle", + "buisson", + "bulletin", + "bureau", + "burin", + "bustier", + "butiner", + "butoir", + "buvable", + "buvette", + "cabanon", + "cabine", + "cachette", + "cadeau", + "cadre", + "caféine", + "caillou", + "caisson", + "calculer", + "calepin", + "calibre", + "calmer", + "calomnie", + "calvaire", + "camarade", + "caméra", + "camion", + "campagne", + "canal", + "caneton", + "canon", + "cantine", + "canular", + "capable", + "caporal", + "caprice", + "capsule", + "capter", + "capuche", + "carabine", + "carbone", + "caresser", + "caribou", + "carnage", + "carotte", + "carreau", + "carton", + "cascade", + "casier", + "casque", + "cassure", + "causer", + "caution", + "cavalier", + "caverne", + "caviar", + "cédille", + "ceinture", + "céleste", + "cellule", + "cendrier", + "censurer", + "central", + "cercle", + "cérébral", + "cerise", + "cerner", + "cerveau", + "cesser", + "chagrin", + "chaise", + "chaleur", + "chambre", + "chance", + "chapitre", + "charbon", + "chasseur", + "chaton", + "chausson", + "chavirer", + "chemise", + "chenille", + "chéquier", + "chercher", + "cheval", + "chien", + "chiffre", + "chignon", + "chimère", + "chiot", + "chlorure", + "chocolat", + "choisir", + "chose", + "chouette", + "chrome", + "chute", + "cigare", + "cigogne", + "cimenter", + "cinéma", + "cintrer", + "circuler", + "cirer", + "cirque", + "citerne", + "citoyen", + "citron", + "civil", + "clairon", + "clameur", + "claquer", + "classe", + "clavier", + "client", + "cligner", + "climat", + "clivage", + "cloche", + "clonage", + "cloporte", + "cobalt", + "cobra", + "cocasse", + "cocotier", + "coder", + "codifier", + "coffre", + "cogner", + "cohésion", + "coiffer", + "coincer", + "colère", + "colibri", + "colline", + "colmater", + "colonel", + "combat", + "comédie", + "commande", + "compact", + "concert", + "conduire", + "confier", + "congeler", + "connoter", + "consonne", + "contact", + "convexe", + "copain", + "copie", + "corail", + "corbeau", + "cordage", + "corniche", + "corpus", + "correct", + "cortège", + "cosmique", + "costume", + "coton", + "coude", + "coupure", + "courage", + "couteau", + "couvrir", + "coyote", + "crabe", + "crainte", + "cravate", + "crayon", + "créature", + "créditer", + "crémeux", + "creuser", + "crevette", + "cribler", + "crier", + "cristal", + "critère", + "croire", + "croquer", + "crotale", + "crucial", + "cruel", + "crypter", + "cubique", + "cueillir", + "cuillère", + "cuisine", + "cuivre", + "culminer", + "cultiver", + "cumuler", + "cupide", + "curatif", + "curseur", + "cyanure", + "cycle", + "cylindre", + "cynique", + "daigner", + "damier", + "danger", + "danseur", + "dauphin", + "débattre", + "débiter", + "déborder", + "débrider", + "débutant", + "décaler", + "décembre", + "déchirer", + "décider", + "déclarer", + "décorer", + "décrire", + "décupler", + "dédale", + "déductif", + "déesse", + "défensif", + "défiler", + "défrayer", + "dégager", + "dégivrer", + "déglutir", + "dégrafer", + "déjeuner", + "délice", + "déloger", + "demander", + "demeurer", + "démolir", + "dénicher", + "dénouer", + "dentelle", + "dénuder", + "départ", + "dépenser", + "déphaser", + "déplacer", + "déposer", + "déranger", + "dérober", + "désastre", + "descente", + "désert", + "désigner", + "désobéir", + "dessiner", + "destrier", + "détacher", + "détester", + "détourer", + "détresse", + "devancer", + "devenir", + "deviner", + "devoir", + "diable", + "dialogue", + "diamant", + "dicter", + "différer", + "digérer", + "digital", + "digne", + "diluer", + "dimanche", + "diminuer", + "dioxyde", + "directif", + "diriger", + "discuter", + "disposer", + "dissiper", + "distance", + "divertir", + "diviser", + "docile", + "docteur", + "dogme", + "doigt", + "domaine", + "domicile", + "dompter", + "donateur", + "donjon", + "donner", + "dopamine", + "dortoir", + "dorure", + "dosage", + "doseur", + "dossier", + "dotation", + "douanier", + "double", + "douceur", + "douter", + "doyen", + "dragon", + "draper", + "dresser", + "dribbler", + "droiture", + "duperie", + "duplexe", + "durable", + "durcir", + "dynastie", + "éblouir", + "écarter", + "écharpe", + "échelle", + "éclairer", + "éclipse", + "éclore", + "écluse", + "école", + "économie", + "écorce", + "écouter", + "écraser", + "écrémer", + "écrivain", + "écrou", + "écume", + "écureuil", + "édifier", + "éduquer", + "effacer", + "effectif", + "effigie", + "effort", + "effrayer", + "effusion", + "égaliser", + "égarer", + "éjecter", + "élaborer", + "élargir", + "électron", + "élégant", + "éléphant", + "élève", + "éligible", + "élitisme", + "éloge", + "élucider", + "éluder", + "emballer", + "embellir", + "embryon", + "émeraude", + "émission", + "emmener", + "émotion", + "émouvoir", + "empereur", + "employer", + "emporter", + "emprise", + "émulsion", + "encadrer", + "enchère", + "enclave", + "encoche", + "endiguer", + "endosser", + "endroit", + "enduire", + "énergie", + "enfance", + "enfermer", + "enfouir", + "engager", + "engin", + "englober", + "énigme", + "enjamber", + "enjeu", + "enlever", + "ennemi", + "ennuyeux", + "enrichir", + "enrobage", + "enseigne", + "entasser", + "entendre", + "entier", + "entourer", + "entraver", + "énumérer", + "envahir", + "enviable", + "envoyer", + "enzyme", + "éolien", + "épaissir", + "épargne", + "épatant", + "épaule", + "épicerie", + "épidémie", + "épier", + "épilogue", + "épine", + "épisode", + "épitaphe", + "époque", + "épreuve", + "éprouver", + "épuisant", + "équerre", + "équipe", + "ériger", + "érosion", + "erreur", + "éruption", + "escalier", + "espadon", + "espèce", + "espiègle", + "espoir", + "esprit", + "esquiver", + "essayer", + "essence", + "essieu", + "essorer", + "estime", + "estomac", + "estrade", + "étagère", + "étaler", + "étanche", + "étatique", + "éteindre", + "étendoir", + "éternel", + "éthanol", + "éthique", + "ethnie", + "étirer", + "étoffer", + "étoile", + "étonnant", + "étourdir", + "étrange", + "étroit", + "étude", + "euphorie", + "évaluer", + "évasion", + "éventail", + "évidence", + "éviter", + "évolutif", + "évoquer", + "exact", + "exagérer", + "exaucer", + "exceller", + "excitant", + "exclusif", + "excuse", + "exécuter", + "exemple", + "exercer", + "exhaler", + "exhorter", + "exigence", + "exiler", + "exister", + "exotique", + "expédier", + "explorer", + "exposer", + "exprimer", + "exquis", + "extensif", + "extraire", + "exulter", + "fable", + "fabuleux", + "facette", + "facile", + "facture", + "faiblir", + "falaise", + "fameux", + "famille", + "farceur", + "farfelu", + "farine", + "farouche", + "fasciner", + "fatal", + "fatigue", + "faucon", + "fautif", + "faveur", + "favori", + "fébrile", + "féconder", + "fédérer", + "félin", + "femme", + "fémur", + "fendoir", + "féodal", + "fermer", + "féroce", + "ferveur", + "festival", + "feuille", + "feutre", + "février", + "fiasco", + "ficeler", + "fictif", + "fidèle", + "figure", + "filature", + "filetage", + "filière", + "filleul", + "filmer", + "filou", + "filtrer", + "financer", + "finir", + "fiole", + "firme", + "fissure", + "fixer", + "flairer", + "flamme", + "flasque", + "flatteur", + "fléau", + "flèche", + "fleur", + "flexion", + "flocon", + "flore", + "fluctuer", + "fluide", + "fluvial", + "folie", + "fonderie", + "fongible", + "fontaine", + "forcer", + "forgeron", + "formuler", + "fortune", + "fossile", + "foudre", + "fougère", + "fouiller", + "foulure", + "fourmi", + "fragile", + "fraise", + "franchir", + "frapper", + "frayeur", + "frégate", + "freiner", + "frelon", + "frémir", + "frénésie", + "frère", + "friable", + "friction", + "frisson", + "frivole", + "froid", + "fromage", + "frontal", + "frotter", + "fruit", + "fugitif", + "fuite", + "fureur", + "furieux", + "furtif", + "fusion", + "futur", + "gagner", + "galaxie", + "galerie", + "gambader", + "garantir", + "gardien", + "garnir", + "garrigue", + "gazelle", + "gazon", + "géant", + "gélatine", + "gélule", + "gendarme", + "général", + "génie", + "genou", + "gentil", + "géologie", + "géomètre", + "géranium", + "germe", + "gestuel", + "geyser", + "gibier", + "gicler", + "girafe", + "givre", + "glace", + "glaive", + "glisser", + "globe", + "gloire", + "glorieux", + "golfeur", + "gomme", + "gonfler", + "gorge", + "gorille", + "goudron", + "gouffre", + "goulot", + "goupille", + "gourmand", + "goutte", + "graduel", + "graffiti", + "graine", + "grand", + "grappin", + "gratuit", + "gravir", + "grenat", + "griffure", + "griller", + "grimper", + "grogner", + "gronder", + "grotte", + "groupe", + "gruger", + "grutier", + "gruyère", + "guépard", + "guerrier", + "guide", + "guimauve", + "guitare", + "gustatif", + "gymnaste", + "gyrostat", + "habitude", + "hachoir", + "halte", + "hameau", + "hangar", + "hanneton", + "haricot", + "harmonie", + "harpon", + "hasard", + "hélium", + "hématome", + "herbe", + "hérisson", + "hermine", + "héron", + "hésiter", + "heureux", + "hiberner", + "hibou", + "hilarant", + "histoire", + "hiver", + "homard", + "hommage", + "homogène", + "honneur", + "honorer", + "honteux", + "horde", + "horizon", + "horloge", + "hormone", + "horrible", + "houleux", + "housse", + "hublot", + "huileux", + "humain", + "humble", + "humide", + "humour", + "hurler", + "hydromel", + "hygiène", + "hymne", + "hypnose", + "idylle", + "ignorer", + "iguane", + "illicite", + "illusion", + "image", + "imbiber", + "imiter", + "immense", + "immobile", + "immuable", + "impact", + "impérial", + "implorer", + "imposer", + "imprimer", + "imputer", + "incarner", + "incendie", + "incident", + "incliner", + "incolore", + "indexer", + "indice", + "inductif", + "inédit", + "ineptie", + "inexact", + "infini", + "infliger", + "informer", + "infusion", + "ingérer", + "inhaler", + "inhiber", + "injecter", + "injure", + "innocent", + "inoculer", + "inonder", + "inscrire", + "insecte", + "insigne", + "insolite", + "inspirer", + "instinct", + "insulter", + "intact", + "intense", + "intime", + "intrigue", + "intuitif", + "inutile", + "invasion", + "inventer", + "inviter", + "invoquer", + "ironique", + "irradier", + "irréel", + "irriter", + "isoler", + "ivoire", + "ivresse", + "jaguar", + "jaillir", + "jambe", + "janvier", + "jardin", + "jauger", + "jaune", + "javelot", + "jetable", + "jeton", + "jeudi", + "jeunesse", + "joindre", + "joncher", + "jongler", + "joueur", + "jouissif", + "journal", + "jovial", + "joyau", + "joyeux", + "jubiler", + "jugement", + "junior", + "jupon", + "juriste", + "justice", + "juteux", + "juvénile", + "kayak", + "kimono", + "kiosque", + "label", + "labial", + "labourer", + "lacérer", + "lactose", + "lagune", + "laine", + "laisser", + "laitier", + "lambeau", + "lamelle", + "lampe", + "lanceur", + "langage", + "lanterne", + "lapin", + "largeur", + "larme", + "laurier", + "lavabo", + "lavoir", + "lecture", + "légal", + "léger", + "légume", + "lessive", + "lettre", + "levier", + "lexique", + "lézard", + "liasse", + "libérer", + "libre", + "licence", + "licorne", + "liège", + "lièvre", + "ligature", + "ligoter", + "ligue", + "limer", + "limite", + "limonade", + "limpide", + "linéaire", + "lingot", + "lionceau", + "liquide", + "lisière", + "lister", + "lithium", + "litige", + "littoral", + "livreur", + "logique", + "lointain", + "loisir", + "lombric", + "loterie", + "louer", + "lourd", + "loutre", + "louve", + "loyal", + "lubie", + "lucide", + "lucratif", + "lueur", + "lugubre", + "luisant", + "lumière", + "lunaire", + "lundi", + "luron", + "lutter", + "luxueux", + "machine", + "magasin", + "magenta", + "magique", + "maigre", + "maillon", + "maintien", + "mairie", + "maison", + "majorer", + "malaxer", + "maléfice", + "malheur", + "malice", + "mallette", + "mammouth", + "mandater", + "maniable", + "manquant", + "manteau", + "manuel", + "marathon", + "marbre", + "marchand", + "mardi", + "maritime", + "marqueur", + "marron", + "marteler", + "mascotte", + "massif", + "matériel", + "matière", + "matraque", + "maudire", + "maussade", + "mauve", + "maximal", + "méchant", + "méconnu", + "médaille", + "médecin", + "méditer", + "méduse", + "meilleur", + "mélange", + "mélodie", + "membre", + "mémoire", + "menacer", + "mener", + "menhir", + "mensonge", + "mentor", + "mercredi", + "mérite", + "merle", + "messager", + "mesure", + "métal", + "météore", + "méthode", + "métier", + "meuble", + "miauler", + "microbe", + "miette", + "mignon", + "migrer", + "milieu", + "million", + "mimique", + "mince", + "minéral", + "minimal", + "minorer", + "minute", + "miracle", + "miroiter", + "missile", + "mixte", + "mobile", + "moderne", + "moelleux", + "mondial", + "moniteur", + "monnaie", + "monotone", + "monstre", + "montagne", + "monument", + "moqueur", + "morceau", + "morsure", + "mortier", + "moteur", + "motif", + "mouche", + "moufle", + "moulin", + "mousson", + "mouton", + "mouvant", + "multiple", + "munition", + "muraille", + "murène", + "murmure", + "muscle", + "muséum", + "musicien", + "mutation", + "muter", + "mutuel", + "myriade", + "myrtille", + "mystère", + "mythique", + "nageur", + "nappe", + "narquois", + "narrer", + "natation", + "nation", + "nature", + "naufrage", + "nautique", + "navire", + "nébuleux", + "nectar", + "néfaste", + "négation", + "négliger", + "négocier", + "neige", + "nerveux", + "nettoyer", + "neurone", + "neutron", + "neveu", + "niche", + "nickel", + "nitrate", + "niveau", + "noble", + "nocif", + "nocturne", + "noirceur", + "noisette", + "nomade", + "nombreux", + "nommer", + "normatif", + "notable", + "notifier", + "notoire", + "nourrir", + "nouveau", + "novateur", + "novembre", + "novice", + "nuage", + "nuancer", + "nuire", + "nuisible", + "numéro", + "nuptial", + "nuque", + "nutritif", + "obéir", + "objectif", + "obliger", + "obscur", + "observer", + "obstacle", + "obtenir", + "obturer", + "occasion", + "occuper", + "océan", + "octobre", + "octroyer", + "octupler", + "oculaire", + "odeur", + "odorant", + "offenser", + "officier", + "offrir", + "ogive", + "oiseau", + "oisillon", + "olfactif", + "olivier", + "ombrage", + "omettre", + "onctueux", + "onduler", + "onéreux", + "onirique", + "opale", + "opaque", + "opérer", + "opinion", + "opportun", + "opprimer", + "opter", + "optique", + "orageux", + "orange", + "orbite", + "ordonner", + "oreille", + "organe", + "orgueil", + "orifice", + "ornement", + "orque", + "ortie", + "osciller", + "osmose", + "ossature", + "otarie", + "ouragan", + "ourson", + "outil", + "outrager", + "ouvrage", + "ovation", + "oxyde", + "oxygène", + "ozone", + "paisible", + "palace", + "palmarès", + "palourde", + "palper", + "panache", + "panda", + "pangolin", + "paniquer", + "panneau", + "panorama", + "pantalon", + "papaye", + "papier", + "papoter", + "papyrus", + "paradoxe", + "parcelle", + "paresse", + "parfumer", + "parler", + "parole", + "parrain", + "parsemer", + "partager", + "parure", + "parvenir", + "passion", + "pastèque", + "paternel", + "patience", + "patron", + "pavillon", + "pavoiser", + "payer", + "paysage", + "peigne", + "peintre", + "pelage", + "pélican", + "pelle", + "pelouse", + "peluche", + "pendule", + "pénétrer", + "pénible", + "pensif", + "pénurie", + "pépite", + "péplum", + "perdrix", + "perforer", + "période", + "permuter", + "perplexe", + "persil", + "perte", + "peser", + "pétale", + "petit", + "pétrir", + "peuple", + "pharaon", + "phobie", + "phoque", + "photon", + "phrase", + "physique", + "piano", + "pictural", + "pièce", + "pierre", + "pieuvre", + "pilote", + "pinceau", + "pipette", + "piquer", + "pirogue", + "piscine", + "piston", + "pivoter", + "pixel", + "pizza", + "placard", + "plafond", + "plaisir", + "planer", + "plaque", + "plastron", + "plateau", + "pleurer", + "plexus", + "pliage", + "plomb", + "plonger", + "pluie", + "plumage", + "pochette", + "poésie", + "poète", + "pointe", + "poirier", + "poisson", + "poivre", + "polaire", + "policier", + "pollen", + "polygone", + "pommade", + "pompier", + "ponctuel", + "pondérer", + "poney", + "portique", + "position", + "posséder", + "posture", + "potager", + "poteau", + "potion", + "pouce", + "poulain", + "poumon", + "pourpre", + "poussin", + "pouvoir", + "prairie", + "pratique", + "précieux", + "prédire", + "préfixe", + "prélude", + "prénom", + "présence", + "prétexte", + "prévoir", + "primitif", + "prince", + "prison", + "priver", + "problème", + "procéder", + "prodige", + "profond", + "progrès", + "proie", + "projeter", + "prologue", + "promener", + "propre", + "prospère", + "protéger", + "prouesse", + "proverbe", + "prudence", + "pruneau", + "psychose", + "public", + "puceron", + "puiser", + "pulpe", + "pulsar", + "punaise", + "punitif", + "pupitre", + "purifier", + "puzzle", + "pyramide", + "quasar", + "querelle", + "question", + "quiétude", + "quitter", + "quotient", + "racine", + "raconter", + "radieux", + "ragondin", + "raideur", + "raisin", + "ralentir", + "rallonge", + "ramasser", + "rapide", + "rasage", + "ratisser", + "ravager", + "ravin", + "rayonner", + "réactif", + "réagir", + "réaliser", + "réanimer", + "recevoir", + "réciter", + "réclamer", + "récolter", + "recruter", + "reculer", + "recycler", + "rédiger", + "redouter", + "refaire", + "réflexe", + "réformer", + "refrain", + "refuge", + "régalien", + "région", + "réglage", + "régulier", + "réitérer", + "rejeter", + "rejouer", + "relatif", + "relever", + "relief", + "remarque", + "remède", + "remise", + "remonter", + "remplir", + "remuer", + "renard", + "renfort", + "renifler", + "renoncer", + "rentrer", + "renvoi", + "replier", + "reporter", + "reprise", + "reptile", + "requin", + "réserve", + "résineux", + "résoudre", + "respect", + "rester", + "résultat", + "rétablir", + "retenir", + "réticule", + "retomber", + "retracer", + "réunion", + "réussir", + "revanche", + "revivre", + "révolte", + "révulsif", + "richesse", + "rideau", + "rieur", + "rigide", + "rigoler", + "rincer", + "riposter", + "risible", + "risque", + "rituel", + "rival", + "rivière", + "rocheux", + "romance", + "rompre", + "ronce", + "rondin", + "roseau", + "rosier", + "rotatif", + "rotor", + "rotule", + "rouge", + "rouille", + "rouleau", + "routine", + "royaume", + "ruban", + "rubis", + "ruche", + "ruelle", + "rugueux", + "ruiner", + "ruisseau", + "ruser", + "rustique", + "rythme", + "sabler", + "saboter", + "sabre", + "sacoche", + "safari", + "sagesse", + "saisir", + "salade", + "salive", + "salon", + "saluer", + "samedi", + "sanction", + "sanglier", + "sarcasme", + "sardine", + "saturer", + "saugrenu", + "saumon", + "sauter", + "sauvage", + "savant", + "savonner", + "scalpel", + "scandale", + "scélérat", + "scénario", + "sceptre", + "schéma", + "science", + "scinder", + "score", + "scrutin", + "sculpter", + "séance", + "sécable", + "sécher", + "secouer", + "sécréter", + "sédatif", + "séduire", + "seigneur", + "séjour", + "sélectif", + "semaine", + "sembler", + "semence", + "séminal", + "sénateur", + "sensible", + "sentence", + "séparer", + "séquence", + "serein", + "sergent", + "sérieux", + "serrure", + "sérum", + "service", + "sésame", + "sévir", + "sevrage", + "sextuple", + "sidéral", + "siècle", + "siéger", + "siffler", + "sigle", + "signal", + "silence", + "silicium", + "simple", + "sincère", + "sinistre", + "siphon", + "sirop", + "sismique", + "situer", + "skier", + "social", + "socle", + "sodium", + "soigneux", + "soldat", + "soleil", + "solitude", + "soluble", + "sombre", + "sommeil", + "somnoler", + "sonde", + "songeur", + "sonnette", + "sonore", + "sorcier", + "sortir", + "sosie", + "sottise", + "soucieux", + "soudure", + "souffle", + "soulever", + "soupape", + "source", + "soutirer", + "souvenir", + "spacieux", + "spatial", + "spécial", + "sphère", + "spiral", + "stable", + "station", + "sternum", + "stimulus", + "stipuler", + "strict", + "studieux", + "stupeur", + "styliste", + "sublime", + "substrat", + "subtil", + "subvenir", + "succès", + "sucre", + "suffixe", + "suggérer", + "suiveur", + "sulfate", + "superbe", + "supplier", + "surface", + "suricate", + "surmener", + "surprise", + "sursaut", + "survie", + "suspect", + "syllabe", + "symbole", + "symétrie", + "synapse", + "syntaxe", + "système", + "tabac", + "tablier", + "tactile", + "tailler", + "talent", + "talisman", + "talonner", + "tambour", + "tamiser", + "tangible", + "tapis", + "taquiner", + "tarder", + "tarif", + "tartine", + "tasse", + "tatami", + "tatouage", + "taupe", + "taureau", + "taxer", + "témoin", + "temporel", + "tenaille", + "tendre", + "teneur", + "tenir", + "tension", + "terminer", + "terne", + "terrible", + "tétine", + "texte", + "thème", + "théorie", + "thérapie", + "thorax", + "tibia", + "tiède", + "timide", + "tirelire", + "tiroir", + "tissu", + "titane", + "titre", + "tituber", + "toboggan", + "tolérant", + "tomate", + "tonique", + "tonneau", + "toponyme", + "torche", + "tordre", + "tornade", + "torpille", + "torrent", + "torse", + "tortue", + "totem", + "toucher", + "tournage", + "tousser", + "toxine", + "traction", + "trafic", + "tragique", + "trahir", + "train", + "trancher", + "travail", + "trèfle", + "tremper", + "trésor", + "treuil", + "triage", + "tribunal", + "tricoter", + "trilogie", + "triomphe", + "tripler", + "triturer", + "trivial", + "trombone", + "tronc", + "tropical", + "troupeau", + "tuile", + "tulipe", + "tumulte", + "tunnel", + "turbine", + "tuteur", + "tutoyer", + "tuyau", + "tympan", + "typhon", + "typique", + "tyran", + "ubuesque", + "ultime", + "ultrason", + "unanime", + "unifier", + "union", + "unique", + "unitaire", + "univers", + "uranium", + "urbain", + "urticant", + "usage", + "usine", + "usuel", + "usure", + "utile", + "utopie", + "vacarme", + "vaccin", + "vagabond", + "vague", + "vaillant", + "vaincre", + "vaisseau", + "valable", + "valise", + "vallon", + "valve", + "vampire", + "vanille", + "vapeur", + "varier", + "vaseux", + "vassal", + "vaste", + "vecteur", + "vedette", + "végétal", + "véhicule", + "veinard", + "véloce", + "vendredi", + "vénérer", + "venger", + "venimeux", + "ventouse", + "verdure", + "vérin", + "vernir", + "verrou", + "verser", + "vertu", + "veston", + "vétéran", + "vétuste", + "vexant", + "vexer", + "viaduc", + "viande", + "victoire", + "vidange", + "vidéo", + "vignette", + "vigueur", + "vilain", + "village", + "vinaigre", + "violon", + "vipère", + "virement", + "virtuose", + "virus", + "visage", + "viseur", + "vision", + "visqueux", + "visuel", + "vital", + "vitesse", + "viticole", + "vitrine", + "vivace", + "vivipare", + "vocation", + "voguer", + "voile", + "voisin", + "voiture", + "volaille", + "volcan", + "voltiger", + "volume", + "vorace", + "vortex", + "voter", + "vouloir", + "voyage", + "voyelle", + "wagon", + "xénon", + "yacht", + "zèbre", + "zénith", + "zeste", + "zoologie" + ] + }, + {} + ], + 36: [ + function(require, module, exports) { + module.exports = [ + "abaco", + "abbaglio", + "abbinato", + "abete", + "abisso", + "abolire", + "abrasivo", + "abrogato", + "accadere", + "accenno", + "accusato", + "acetone", + "achille", + "acido", + "acqua", + "acre", + "acrilico", + "acrobata", + "acuto", + "adagio", + "addebito", + "addome", + "adeguato", + "aderire", + "adipe", + "adottare", + "adulare", + "affabile", + "affetto", + "affisso", + "affranto", + "aforisma", + "afoso", + "africano", + "agave", + "agente", + "agevole", + "aggancio", + "agire", + "agitare", + "agonismo", + "agricolo", + "agrumeto", + "aguzzo", + "alabarda", + "alato", + "albatro", + "alberato", + "albo", + "albume", + "alce", + "alcolico", + "alettone", + "alfa", + "algebra", + "aliante", + "alibi", + "alimento", + "allagato", + "allegro", + "allievo", + "allodola", + "allusivo", + "almeno", + "alogeno", + "alpaca", + "alpestre", + "altalena", + "alterno", + "alticcio", + "altrove", + "alunno", + "alveolo", + "alzare", + "amalgama", + "amanita", + "amarena", + "ambito", + "ambrato", + "ameba", + "america", + "ametista", + "amico", + "ammasso", + "ammenda", + "ammirare", + "ammonito", + "amore", + "ampio", + "ampliare", + "amuleto", + "anacardo", + "anagrafe", + "analista", + "anarchia", + "anatra", + "anca", + "ancella", + "ancora", + "andare", + "andrea", + "anello", + "angelo", + "angolare", + "angusto", + "anima", + "annegare", + "annidato", + "anno", + "annuncio", + "anonimo", + "anticipo", + "anzi", + "apatico", + "apertura", + "apode", + "apparire", + "appetito", + "appoggio", + "approdo", + "appunto", + "aprile", + "arabica", + "arachide", + "aragosta", + "araldica", + "arancio", + "aratura", + "arazzo", + "arbitro", + "archivio", + "ardito", + "arenile", + "argento", + "argine", + "arguto", + "aria", + "armonia", + "arnese", + "arredato", + "arringa", + "arrosto", + "arsenico", + "arso", + "artefice", + "arzillo", + "asciutto", + "ascolto", + "asepsi", + "asettico", + "asfalto", + "asino", + "asola", + "aspirato", + "aspro", + "assaggio", + "asse", + "assoluto", + "assurdo", + "asta", + "astenuto", + "astice", + "astratto", + "atavico", + "ateismo", + "atomico", + "atono", + "attesa", + "attivare", + "attorno", + "attrito", + "attuale", + "ausilio", + "austria", + "autista", + "autonomo", + "autunno", + "avanzato", + "avere", + "avvenire", + "avviso", + "avvolgere", + "azione", + "azoto", + "azzimo", + "azzurro", + "babele", + "baccano", + "bacino", + "baco", + "badessa", + "badilata", + "bagnato", + "baita", + "balcone", + "baldo", + "balena", + "ballata", + "balzano", + "bambino", + "bandire", + "baraonda", + "barbaro", + "barca", + "baritono", + "barlume", + "barocco", + "basilico", + "basso", + "batosta", + "battuto", + "baule", + "bava", + "bavosa", + "becco", + "beffa", + "belgio", + "belva", + "benda", + "benevole", + "benigno", + "benzina", + "bere", + "berlina", + "beta", + "bibita", + "bici", + "bidone", + "bifido", + "biga", + "bilancia", + "bimbo", + "binocolo", + "biologo", + "bipede", + "bipolare", + "birbante", + "birra", + "biscotto", + "bisesto", + "bisnonno", + "bisonte", + "bisturi", + "bizzarro", + "blando", + "blatta", + "bollito", + "bonifico", + "bordo", + "bosco", + "botanico", + "bottino", + "bozzolo", + "braccio", + "bradipo", + "brama", + "branca", + "bravura", + "bretella", + "brevetto", + "brezza", + "briglia", + "brillante", + "brindare", + "broccolo", + "brodo", + "bronzina", + "brullo", + "bruno", + "bubbone", + "buca", + "budino", + "buffone", + "buio", + "bulbo", + "buono", + "burlone", + "burrasca", + "bussola", + "busta", + "cadetto", + "caduco", + "calamaro", + "calcolo", + "calesse", + "calibro", + "calmo", + "caloria", + "cambusa", + "camerata", + "camicia", + "cammino", + "camola", + "campale", + "canapa", + "candela", + "cane", + "canino", + "canotto", + "cantina", + "capace", + "capello", + "capitolo", + "capogiro", + "cappero", + "capra", + "capsula", + "carapace", + "carcassa", + "cardo", + "carisma", + "carovana", + "carretto", + "cartolina", + "casaccio", + "cascata", + "caserma", + "caso", + "cassone", + "castello", + "casuale", + "catasta", + "catena", + "catrame", + "cauto", + "cavillo", + "cedibile", + "cedrata", + "cefalo", + "celebre", + "cellulare", + "cena", + "cenone", + "centesimo", + "ceramica", + "cercare", + "certo", + "cerume", + "cervello", + "cesoia", + "cespo", + "ceto", + "chela", + "chiaro", + "chicca", + "chiedere", + "chimera", + "china", + "chirurgo", + "chitarra", + "ciao", + "ciclismo", + "cifrare", + "cigno", + "cilindro", + "ciottolo", + "circa", + "cirrosi", + "citrico", + "cittadino", + "ciuffo", + "civetta", + "civile", + "classico", + "clinica", + "cloro", + "cocco", + "codardo", + "codice", + "coerente", + "cognome", + "collare", + "colmato", + "colore", + "colposo", + "coltivato", + "colza", + "coma", + "cometa", + "commando", + "comodo", + "computer", + "comune", + "conciso", + "condurre", + "conferma", + "congelare", + "coniuge", + "connesso", + "conoscere", + "consumo", + "continuo", + "convegno", + "coperto", + "copione", + "coppia", + "copricapo", + "corazza", + "cordata", + "coricato", + "cornice", + "corolla", + "corpo", + "corredo", + "corsia", + "cortese", + "cosmico", + "costante", + "cottura", + "covato", + "cratere", + "cravatta", + "creato", + "credere", + "cremoso", + "crescita", + "creta", + "criceto", + "crinale", + "crisi", + "critico", + "croce", + "cronaca", + "crostata", + "cruciale", + "crusca", + "cucire", + "cuculo", + "cugino", + "cullato", + "cupola", + "curatore", + "cursore", + "curvo", + "cuscino", + "custode", + "dado", + "daino", + "dalmata", + "damerino", + "daniela", + "dannoso", + "danzare", + "datato", + "davanti", + "davvero", + "debutto", + "decennio", + "deciso", + "declino", + "decollo", + "decreto", + "dedicato", + "definito", + "deforme", + "degno", + "delegare", + "delfino", + "delirio", + "delta", + "demenza", + "denotato", + "dentro", + "deposito", + "derapata", + "derivare", + "deroga", + "descritto", + "deserto", + "desiderio", + "desumere", + "detersivo", + "devoto", + "diametro", + "dicembre", + "diedro", + "difeso", + "diffuso", + "digerire", + "digitale", + "diluvio", + "dinamico", + "dinnanzi", + "dipinto", + "diploma", + "dipolo", + "diradare", + "dire", + "dirotto", + "dirupo", + "disagio", + "discreto", + "disfare", + "disgelo", + "disposto", + "distanza", + "disumano", + "dito", + "divano", + "divelto", + "dividere", + "divorato", + "doblone", + "docente", + "doganale", + "dogma", + "dolce", + "domato", + "domenica", + "dominare", + "dondolo", + "dono", + "dormire", + "dote", + "dottore", + "dovuto", + "dozzina", + "drago", + "druido", + "dubbio", + "dubitare", + "ducale", + "duna", + "duomo", + "duplice", + "duraturo", + "ebano", + "eccesso", + "ecco", + "eclissi", + "economia", + "edera", + "edicola", + "edile", + "editoria", + "educare", + "egemonia", + "egli", + "egoismo", + "egregio", + "elaborato", + "elargire", + "elegante", + "elencato", + "eletto", + "elevare", + "elfico", + "elica", + "elmo", + "elsa", + "eluso", + "emanato", + "emblema", + "emesso", + "emiro", + "emotivo", + "emozione", + "empirico", + "emulo", + "endemico", + "enduro", + "energia", + "enfasi", + "enoteca", + "entrare", + "enzima", + "epatite", + "epilogo", + "episodio", + "epocale", + "eppure", + "equatore", + "erario", + "erba", + "erboso", + "erede", + "eremita", + "erigere", + "ermetico", + "eroe", + "erosivo", + "errante", + "esagono", + "esame", + "esanime", + "esaudire", + "esca", + "esempio", + "esercito", + "esibito", + "esigente", + "esistere", + "esito", + "esofago", + "esortato", + "esoso", + "espanso", + "espresso", + "essenza", + "esso", + "esteso", + "estimare", + "estonia", + "estroso", + "esultare", + "etilico", + "etnico", + "etrusco", + "etto", + "euclideo", + "europa", + "evaso", + "evidenza", + "evitato", + "evoluto", + "evviva", + "fabbrica", + "faccenda", + "fachiro", + "falco", + "famiglia", + "fanale", + "fanfara", + "fango", + "fantasma", + "fare", + "farfalla", + "farinoso", + "farmaco", + "fascia", + "fastoso", + "fasullo", + "faticare", + "fato", + "favoloso", + "febbre", + "fecola", + "fede", + "fegato", + "felpa", + "feltro", + "femmina", + "fendere", + "fenomeno", + "fermento", + "ferro", + "fertile", + "fessura", + "festivo", + "fetta", + "feudo", + "fiaba", + "fiducia", + "fifa", + "figurato", + "filo", + "finanza", + "finestra", + "finire", + "fiore", + "fiscale", + "fisico", + "fiume", + "flacone", + "flamenco", + "flebo", + "flemma", + "florido", + "fluente", + "fluoro", + "fobico", + "focaccia", + "focoso", + "foderato", + "foglio", + "folata", + "folclore", + "folgore", + "fondente", + "fonetico", + "fonia", + "fontana", + "forbito", + "forchetta", + "foresta", + "formica", + "fornaio", + "foro", + "fortezza", + "forzare", + "fosfato", + "fosso", + "fracasso", + "frana", + "frassino", + "fratello", + "freccetta", + "frenata", + "fresco", + "frigo", + "frollino", + "fronde", + "frugale", + "frutta", + "fucilata", + "fucsia", + "fuggente", + "fulmine", + "fulvo", + "fumante", + "fumetto", + "fumoso", + "fune", + "funzione", + "fuoco", + "furbo", + "furgone", + "furore", + "fuso", + "futile", + "gabbiano", + "gaffe", + "galateo", + "gallina", + "galoppo", + "gambero", + "gamma", + "garanzia", + "garbo", + "garofano", + "garzone", + "gasdotto", + "gasolio", + "gastrico", + "gatto", + "gaudio", + "gazebo", + "gazzella", + "geco", + "gelatina", + "gelso", + "gemello", + "gemmato", + "gene", + "genitore", + "gennaio", + "genotipo", + "gergo", + "ghepardo", + "ghiaccio", + "ghisa", + "giallo", + "gilda", + "ginepro", + "giocare", + "gioiello", + "giorno", + "giove", + "girato", + "girone", + "gittata", + "giudizio", + "giurato", + "giusto", + "globulo", + "glutine", + "gnomo", + "gobba", + "golf", + "gomito", + "gommone", + "gonfio", + "gonna", + "governo", + "gracile", + "grado", + "grafico", + "grammo", + "grande", + "grattare", + "gravoso", + "grazia", + "greca", + "gregge", + "grifone", + "grigio", + "grinza", + "grotta", + "gruppo", + "guadagno", + "guaio", + "guanto", + "guardare", + "gufo", + "guidare", + "ibernato", + "icona", + "identico", + "idillio", + "idolo", + "idra", + "idrico", + "idrogeno", + "igiene", + "ignaro", + "ignorato", + "ilare", + "illeso", + "illogico", + "illudere", + "imballo", + "imbevuto", + "imbocco", + "imbuto", + "immane", + "immerso", + "immolato", + "impacco", + "impeto", + "impiego", + "importo", + "impronta", + "inalare", + "inarcare", + "inattivo", + "incanto", + "incendio", + "inchino", + "incisivo", + "incluso", + "incontro", + "incrocio", + "incubo", + "indagine", + "india", + "indole", + "inedito", + "infatti", + "infilare", + "inflitto", + "ingaggio", + "ingegno", + "inglese", + "ingordo", + "ingrosso", + "innesco", + "inodore", + "inoltrare", + "inondato", + "insano", + "insetto", + "insieme", + "insonnia", + "insulina", + "intasato", + "intero", + "intonaco", + "intuito", + "inumidire", + "invalido", + "invece", + "invito", + "iperbole", + "ipnotico", + "ipotesi", + "ippica", + "iride", + "irlanda", + "ironico", + "irrigato", + "irrorare", + "isolato", + "isotopo", + "isterico", + "istituto", + "istrice", + "italia", + "iterare", + "labbro", + "labirinto", + "lacca", + "lacerato", + "lacrima", + "lacuna", + "laddove", + "lago", + "lampo", + "lancetta", + "lanterna", + "lardoso", + "larga", + "laringe", + "lastra", + "latenza", + "latino", + "lattuga", + "lavagna", + "lavoro", + "legale", + "leggero", + "lembo", + "lentezza", + "lenza", + "leone", + "lepre", + "lesivo", + "lessato", + "lesto", + "letterale", + "leva", + "levigato", + "libero", + "lido", + "lievito", + "lilla", + "limatura", + "limitare", + "limpido", + "lineare", + "lingua", + "liquido", + "lira", + "lirica", + "lisca", + "lite", + "litigio", + "livrea", + "locanda", + "lode", + "logica", + "lombare", + "londra", + "longevo", + "loquace", + "lorenzo", + "loto", + "lotteria", + "luce", + "lucidato", + "lumaca", + "luminoso", + "lungo", + "lupo", + "luppolo", + "lusinga", + "lusso", + "lutto", + "macabro", + "macchina", + "macero", + "macinato", + "madama", + "magico", + "maglia", + "magnete", + "magro", + "maiolica", + "malafede", + "malgrado", + "malinteso", + "malsano", + "malto", + "malumore", + "mana", + "mancia", + "mandorla", + "mangiare", + "manifesto", + "mannaro", + "manovra", + "mansarda", + "mantide", + "manubrio", + "mappa", + "maratona", + "marcire", + "maretta", + "marmo", + "marsupio", + "maschera", + "massaia", + "mastino", + "materasso", + "matricola", + "mattone", + "maturo", + "mazurca", + "meandro", + "meccanico", + "mecenate", + "medesimo", + "meditare", + "mega", + "melassa", + "melis", + "melodia", + "meninge", + "meno", + "mensola", + "mercurio", + "merenda", + "merlo", + "meschino", + "mese", + "messere", + "mestolo", + "metallo", + "metodo", + "mettere", + "miagolare", + "mica", + "micelio", + "michele", + "microbo", + "midollo", + "miele", + "migliore", + "milano", + "milite", + "mimosa", + "minerale", + "mini", + "minore", + "mirino", + "mirtillo", + "miscela", + "missiva", + "misto", + "misurare", + "mitezza", + "mitigare", + "mitra", + "mittente", + "mnemonico", + "modello", + "modifica", + "modulo", + "mogano", + "mogio", + "mole", + "molosso", + "monastero", + "monco", + "mondina", + "monetario", + "monile", + "monotono", + "monsone", + "montato", + "monviso", + "mora", + "mordere", + "morsicato", + "mostro", + "motivato", + "motosega", + "motto", + "movenza", + "movimento", + "mozzo", + "mucca", + "mucosa", + "muffa", + "mughetto", + "mugnaio", + "mulatto", + "mulinello", + "multiplo", + "mummia", + "munto", + "muovere", + "murale", + "musa", + "muscolo", + "musica", + "mutevole", + "muto", + "nababbo", + "nafta", + "nanometro", + "narciso", + "narice", + "narrato", + "nascere", + "nastrare", + "naturale", + "nautica", + "naviglio", + "nebulosa", + "necrosi", + "negativo", + "negozio", + "nemmeno", + "neofita", + "neretto", + "nervo", + "nessuno", + "nettuno", + "neutrale", + "neve", + "nevrotico", + "nicchia", + "ninfa", + "nitido", + "nobile", + "nocivo", + "nodo", + "nome", + "nomina", + "nordico", + "normale", + "norvegese", + "nostrano", + "notare", + "notizia", + "notturno", + "novella", + "nucleo", + "nulla", + "numero", + "nuovo", + "nutrire", + "nuvola", + "nuziale", + "oasi", + "obbedire", + "obbligo", + "obelisco", + "oblio", + "obolo", + "obsoleto", + "occasione", + "occhio", + "occidente", + "occorrere", + "occultare", + "ocra", + "oculato", + "odierno", + "odorare", + "offerta", + "offrire", + "offuscato", + "oggetto", + "oggi", + "ognuno", + "olandese", + "olfatto", + "oliato", + "oliva", + "ologramma", + "oltre", + "omaggio", + "ombelico", + "ombra", + "omega", + "omissione", + "ondoso", + "onere", + "onice", + "onnivoro", + "onorevole", + "onta", + "operato", + "opinione", + "opposto", + "oracolo", + "orafo", + "ordine", + "orecchino", + "orefice", + "orfano", + "organico", + "origine", + "orizzonte", + "orma", + "ormeggio", + "ornativo", + "orologio", + "orrendo", + "orribile", + "ortensia", + "ortica", + "orzata", + "orzo", + "osare", + "oscurare", + "osmosi", + "ospedale", + "ospite", + "ossa", + "ossidare", + "ostacolo", + "oste", + "otite", + "otre", + "ottagono", + "ottimo", + "ottobre", + "ovale", + "ovest", + "ovino", + "oviparo", + "ovocito", + "ovunque", + "ovviare", + "ozio", + "pacchetto", + "pace", + "pacifico", + "padella", + "padrone", + "paese", + "paga", + "pagina", + "palazzina", + "palesare", + "pallido", + "palo", + "palude", + "pandoro", + "pannello", + "paolo", + "paonazzo", + "paprica", + "parabola", + "parcella", + "parere", + "pargolo", + "pari", + "parlato", + "parola", + "partire", + "parvenza", + "parziale", + "passivo", + "pasticca", + "patacca", + "patologia", + "pattume", + "pavone", + "peccato", + "pedalare", + "pedonale", + "peggio", + "peloso", + "penare", + "pendice", + "penisola", + "pennuto", + "penombra", + "pensare", + "pentola", + "pepe", + "pepita", + "perbene", + "percorso", + "perdonato", + "perforare", + "pergamena", + "periodo", + "permesso", + "perno", + "perplesso", + "persuaso", + "pertugio", + "pervaso", + "pesatore", + "pesista", + "peso", + "pestifero", + "petalo", + "pettine", + "petulante", + "pezzo", + "piacere", + "pianta", + "piattino", + "piccino", + "picozza", + "piega", + "pietra", + "piffero", + "pigiama", + "pigolio", + "pigro", + "pila", + "pilifero", + "pillola", + "pilota", + "pimpante", + "pineta", + "pinna", + "pinolo", + "pioggia", + "piombo", + "piramide", + "piretico", + "pirite", + "pirolisi", + "pitone", + "pizzico", + "placebo", + "planare", + "plasma", + "platano", + "plenario", + "pochezza", + "poderoso", + "podismo", + "poesia", + "poggiare", + "polenta", + "poligono", + "pollice", + "polmonite", + "polpetta", + "polso", + "poltrona", + "polvere", + "pomice", + "pomodoro", + "ponte", + "popoloso", + "porfido", + "poroso", + "porpora", + "porre", + "portata", + "posa", + "positivo", + "possesso", + "postulato", + "potassio", + "potere", + "pranzo", + "prassi", + "pratica", + "precluso", + "predica", + "prefisso", + "pregiato", + "prelievo", + "premere", + "prenotare", + "preparato", + "presenza", + "pretesto", + "prevalso", + "prima", + "principe", + "privato", + "problema", + "procura", + "produrre", + "profumo", + "progetto", + "prolunga", + "promessa", + "pronome", + "proposta", + "proroga", + "proteso", + "prova", + "prudente", + "prugna", + "prurito", + "psiche", + "pubblico", + "pudica", + "pugilato", + "pugno", + "pulce", + "pulito", + "pulsante", + "puntare", + "pupazzo", + "pupilla", + "puro", + "quadro", + "qualcosa", + "quasi", + "querela", + "quota", + "raccolto", + "raddoppio", + "radicale", + "radunato", + "raffica", + "ragazzo", + "ragione", + "ragno", + "ramarro", + "ramingo", + "ramo", + "randagio", + "rantolare", + "rapato", + "rapina", + "rappreso", + "rasatura", + "raschiato", + "rasente", + "rassegna", + "rastrello", + "rata", + "ravveduto", + "reale", + "recepire", + "recinto", + "recluta", + "recondito", + "recupero", + "reddito", + "redimere", + "regalato", + "registro", + "regola", + "regresso", + "relazione", + "remare", + "remoto", + "renna", + "replica", + "reprimere", + "reputare", + "resa", + "residente", + "responso", + "restauro", + "rete", + "retina", + "retorica", + "rettifica", + "revocato", + "riassunto", + "ribadire", + "ribelle", + "ribrezzo", + "ricarica", + "ricco", + "ricevere", + "riciclato", + "ricordo", + "ricreduto", + "ridicolo", + "ridurre", + "rifasare", + "riflesso", + "riforma", + "rifugio", + "rigare", + "rigettato", + "righello", + "rilassato", + "rilevato", + "rimanere", + "rimbalzo", + "rimedio", + "rimorchio", + "rinascita", + "rincaro", + "rinforzo", + "rinnovo", + "rinomato", + "rinsavito", + "rintocco", + "rinuncia", + "rinvenire", + "riparato", + "ripetuto", + "ripieno", + "riportare", + "ripresa", + "ripulire", + "risata", + "rischio", + "riserva", + "risibile", + "riso", + "rispetto", + "ristoro", + "risultato", + "risvolto", + "ritardo", + "ritegno", + "ritmico", + "ritrovo", + "riunione", + "riva", + "riverso", + "rivincita", + "rivolto", + "rizoma", + "roba", + "robotico", + "robusto", + "roccia", + "roco", + "rodaggio", + "rodere", + "roditore", + "rogito", + "rollio", + "romantico", + "rompere", + "ronzio", + "rosolare", + "rospo", + "rotante", + "rotondo", + "rotula", + "rovescio", + "rubizzo", + "rubrica", + "ruga", + "rullino", + "rumine", + "rumoroso", + "ruolo", + "rupe", + "russare", + "rustico", + "sabato", + "sabbiare", + "sabotato", + "sagoma", + "salasso", + "saldatura", + "salgemma", + "salivare", + "salmone", + "salone", + "saltare", + "saluto", + "salvo", + "sapere", + "sapido", + "saporito", + "saraceno", + "sarcasmo", + "sarto", + "sassoso", + "satellite", + "satira", + "satollo", + "saturno", + "savana", + "savio", + "saziato", + "sbadiglio", + "sbalzo", + "sbancato", + "sbarra", + "sbattere", + "sbavare", + "sbendare", + "sbirciare", + "sbloccato", + "sbocciato", + "sbrinare", + "sbruffone", + "sbuffare", + "scabroso", + "scadenza", + "scala", + "scambiare", + "scandalo", + "scapola", + "scarso", + "scatenare", + "scavato", + "scelto", + "scenico", + "scettro", + "scheda", + "schiena", + "sciarpa", + "scienza", + "scindere", + "scippo", + "sciroppo", + "scivolo", + "sclerare", + "scodella", + "scolpito", + "scomparto", + "sconforto", + "scoprire", + "scorta", + "scossone", + "scozzese", + "scriba", + "scrollare", + "scrutinio", + "scuderia", + "scultore", + "scuola", + "scuro", + "scusare", + "sdebitare", + "sdoganare", + "seccatura", + "secondo", + "sedano", + "seggiola", + "segnalato", + "segregato", + "seguito", + "selciato", + "selettivo", + "sella", + "selvaggio", + "semaforo", + "sembrare", + "seme", + "seminato", + "sempre", + "senso", + "sentire", + "sepolto", + "sequenza", + "serata", + "serbato", + "sereno", + "serio", + "serpente", + "serraglio", + "servire", + "sestina", + "setola", + "settimana", + "sfacelo", + "sfaldare", + "sfamato", + "sfarzoso", + "sfaticato", + "sfera", + "sfida", + "sfilato", + "sfinge", + "sfocato", + "sfoderare", + "sfogo", + "sfoltire", + "sforzato", + "sfratto", + "sfruttato", + "sfuggito", + "sfumare", + "sfuso", + "sgabello", + "sgarbato", + "sgonfiare", + "sgorbio", + "sgrassato", + "sguardo", + "sibilo", + "siccome", + "sierra", + "sigla", + "signore", + "silenzio", + "sillaba", + "simbolo", + "simpatico", + "simulato", + "sinfonia", + "singolo", + "sinistro", + "sino", + "sintesi", + "sinusoide", + "sipario", + "sisma", + "sistole", + "situato", + "slitta", + "slogatura", + "sloveno", + "smarrito", + "smemorato", + "smentito", + "smeraldo", + "smilzo", + "smontare", + "smottato", + "smussato", + "snellire", + "snervato", + "snodo", + "sobbalzo", + "sobrio", + "soccorso", + "sociale", + "sodale", + "soffitto", + "sogno", + "soldato", + "solenne", + "solido", + "sollazzo", + "solo", + "solubile", + "solvente", + "somatico", + "somma", + "sonda", + "sonetto", + "sonnifero", + "sopire", + "soppeso", + "sopra", + "sorgere", + "sorpasso", + "sorriso", + "sorso", + "sorteggio", + "sorvolato", + "sospiro", + "sosta", + "sottile", + "spada", + "spalla", + "spargere", + "spatola", + "spavento", + "spazzola", + "specie", + "spedire", + "spegnere", + "spelatura", + "speranza", + "spessore", + "spettrale", + "spezzato", + "spia", + "spigoloso", + "spillato", + "spinoso", + "spirale", + "splendido", + "sportivo", + "sposo", + "spranga", + "sprecare", + "spronato", + "spruzzo", + "spuntino", + "squillo", + "sradicare", + "srotolato", + "stabile", + "stacco", + "staffa", + "stagnare", + "stampato", + "stantio", + "starnuto", + "stasera", + "statuto", + "stelo", + "steppa", + "sterzo", + "stiletto", + "stima", + "stirpe", + "stivale", + "stizzoso", + "stonato", + "storico", + "strappo", + "stregato", + "stridulo", + "strozzare", + "strutto", + "stuccare", + "stufo", + "stupendo", + "subentro", + "succoso", + "sudore", + "suggerito", + "sugo", + "sultano", + "suonare", + "superbo", + "supporto", + "surgelato", + "surrogato", + "sussurro", + "sutura", + "svagare", + "svedese", + "sveglio", + "svelare", + "svenuto", + "svezia", + "sviluppo", + "svista", + "svizzera", + "svolta", + "svuotare", + "tabacco", + "tabulato", + "tacciare", + "taciturno", + "tale", + "talismano", + "tampone", + "tannino", + "tara", + "tardivo", + "targato", + "tariffa", + "tarpare", + "tartaruga", + "tasto", + "tattico", + "taverna", + "tavolata", + "tazza", + "teca", + "tecnico", + "telefono", + "temerario", + "tempo", + "temuto", + "tendone", + "tenero", + "tensione", + "tentacolo", + "teorema", + "terme", + "terrazzo", + "terzetto", + "tesi", + "tesserato", + "testato", + "tetro", + "tettoia", + "tifare", + "tigella", + "timbro", + "tinto", + "tipico", + "tipografo", + "tiraggio", + "tiro", + "titanio", + "titolo", + "titubante", + "tizio", + "tizzone", + "toccare", + "tollerare", + "tolto", + "tombola", + "tomo", + "tonfo", + "tonsilla", + "topazio", + "topologia", + "toppa", + "torba", + "tornare", + "torrone", + "tortora", + "toscano", + "tossire", + "tostatura", + "totano", + "trabocco", + "trachea", + "trafila", + "tragedia", + "tralcio", + "tramonto", + "transito", + "trapano", + "trarre", + "trasloco", + "trattato", + "trave", + "treccia", + "tremolio", + "trespolo", + "tributo", + "tricheco", + "trifoglio", + "trillo", + "trincea", + "trio", + "tristezza", + "triturato", + "trivella", + "tromba", + "trono", + "troppo", + "trottola", + "trovare", + "truccato", + "tubatura", + "tuffato", + "tulipano", + "tumulto", + "tunisia", + "turbare", + "turchino", + "tuta", + "tutela", + "ubicato", + "uccello", + "uccisore", + "udire", + "uditivo", + "uffa", + "ufficio", + "uguale", + "ulisse", + "ultimato", + "umano", + "umile", + "umorismo", + "uncinetto", + "ungere", + "ungherese", + "unicorno", + "unificato", + "unisono", + "unitario", + "unte", + "uovo", + "upupa", + "uragano", + "urgenza", + "urlo", + "usanza", + "usato", + "uscito", + "usignolo", + "usuraio", + "utensile", + "utilizzo", + "utopia", + "vacante", + "vaccinato", + "vagabondo", + "vagliato", + "valanga", + "valgo", + "valico", + "valletta", + "valoroso", + "valutare", + "valvola", + "vampata", + "vangare", + "vanitoso", + "vano", + "vantaggio", + "vanvera", + "vapore", + "varano", + "varcato", + "variante", + "vasca", + "vedetta", + "vedova", + "veduto", + "vegetale", + "veicolo", + "velcro", + "velina", + "velluto", + "veloce", + "venato", + "vendemmia", + "vento", + "verace", + "verbale", + "vergogna", + "verifica", + "vero", + "verruca", + "verticale", + "vescica", + "vessillo", + "vestale", + "veterano", + "vetrina", + "vetusto", + "viandante", + "vibrante", + "vicenda", + "vichingo", + "vicinanza", + "vidimare", + "vigilia", + "vigneto", + "vigore", + "vile", + "villano", + "vimini", + "vincitore", + "viola", + "vipera", + "virgola", + "virologo", + "virulento", + "viscoso", + "visione", + "vispo", + "vissuto", + "visura", + "vita", + "vitello", + "vittima", + "vivanda", + "vivido", + "viziare", + "voce", + "voga", + "volatile", + "volere", + "volpe", + "voragine", + "vulcano", + "zampogna", + "zanna", + "zappato", + "zattera", + "zavorra", + "zefiro", + "zelante", + "zelo", + "zenzero", + "zerbino", + "zibetto", + "zinco", + "zircone", + "zitto", + "zolla", + "zotico", + "zucchero", + "zufolo", + "zulu", + "zuppa" + ] + }, + {} + ], + 37: [ + function(require, module, exports) { + module.exports = [ + "あいこくしん", + "あいさつ", + "あいだ", + "あおぞら", + "あかちゃん", + "あきる", + "あけがた", + "あける", + "あこがれる", + "あさい", + "あさひ", + "あしあと", + "あじわう", + "あずかる", + "あずき", + "あそぶ", + "あたえる", + "あたためる", + "あたりまえ", + "あたる", + "あつい", + "あつかう", + "あっしゅく", + "あつまり", + "あつめる", + "あてな", + "あてはまる", + "あひる", + "あぶら", + "あぶる", + "あふれる", + "あまい", + "あまど", + "あまやかす", + "あまり", + "あみもの", + "あめりか", + "あやまる", + "あゆむ", + "あらいぐま", + "あらし", + "あらすじ", + "あらためる", + "あらゆる", + "あらわす", + "ありがとう", + "あわせる", + "あわてる", + "あんい", + "あんがい", + "あんこ", + "あんぜん", + "あんてい", + "あんない", + "あんまり", + "いいだす", + "いおん", + "いがい", + "いがく", + "いきおい", + "いきなり", + "いきもの", + "いきる", + "いくじ", + "いくぶん", + "いけばな", + "いけん", + "いこう", + "いこく", + "いこつ", + "いさましい", + "いさん", + "いしき", + "いじゅう", + "いじょう", + "いじわる", + "いずみ", + "いずれ", + "いせい", + "いせえび", + "いせかい", + "いせき", + "いぜん", + "いそうろう", + "いそがしい", + "いだい", + "いだく", + "いたずら", + "いたみ", + "いたりあ", + "いちおう", + "いちじ", + "いちど", + "いちば", + "いちぶ", + "いちりゅう", + "いつか", + "いっしゅん", + "いっせい", + "いっそう", + "いったん", + "いっち", + "いってい", + "いっぽう", + "いてざ", + "いてん", + "いどう", + "いとこ", + "いない", + "いなか", + "いねむり", + "いのち", + "いのる", + "いはつ", + "いばる", + "いはん", + "いびき", + "いひん", + "いふく", + "いへん", + "いほう", + "いみん", + "いもうと", + "いもたれ", + "いもり", + "いやがる", + "いやす", + "いよかん", + "いよく", + "いらい", + "いらすと", + "いりぐち", + "いりょう", + "いれい", + "いれもの", + "いれる", + "いろえんぴつ", + "いわい", + "いわう", + "いわかん", + "いわば", + "いわゆる", + "いんげんまめ", + "いんさつ", + "いんしょう", + "いんよう", + "うえき", + "うえる", + "うおざ", + "うがい", + "うかぶ", + "うかべる", + "うきわ", + "うくらいな", + "うくれれ", + "うけたまわる", + "うけつけ", + "うけとる", + "うけもつ", + "うける", + "うごかす", + "うごく", + "うこん", + "うさぎ", + "うしなう", + "うしろがみ", + "うすい", + "うすぎ", + "うすぐらい", + "うすめる", + "うせつ", + "うちあわせ", + "うちがわ", + "うちき", + "うちゅう", + "うっかり", + "うつくしい", + "うったえる", + "うつる", + "うどん", + "うなぎ", + "うなじ", + "うなずく", + "うなる", + "うねる", + "うのう", + "うぶげ", + "うぶごえ", + "うまれる", + "うめる", + "うもう", + "うやまう", + "うよく", + "うらがえす", + "うらぐち", + "うらない", + "うりあげ", + "うりきれ", + "うるさい", + "うれしい", + "うれゆき", + "うれる", + "うろこ", + "うわき", + "うわさ", + "うんこう", + "うんちん", + "うんてん", + "うんどう", + "えいえん", + "えいが", + "えいきょう", + "えいご", + "えいせい", + "えいぶん", + "えいよう", + "えいわ", + "えおり", + "えがお", + "えがく", + "えきたい", + "えくせる", + "えしゃく", + "えすて", + "えつらん", + "えのぐ", + "えほうまき", + "えほん", + "えまき", + "えもじ", + "えもの", + "えらい", + "えらぶ", + "えりあ", + "えんえん", + "えんかい", + "えんぎ", + "えんげき", + "えんしゅう", + "えんぜつ", + "えんそく", + "えんちょう", + "えんとつ", + "おいかける", + "おいこす", + "おいしい", + "おいつく", + "おうえん", + "おうさま", + "おうじ", + "おうせつ", + "おうたい", + "おうふく", + "おうべい", + "おうよう", + "おえる", + "おおい", + "おおう", + "おおどおり", + "おおや", + "おおよそ", + "おかえり", + "おかず", + "おがむ", + "おかわり", + "おぎなう", + "おきる", + "おくさま", + "おくじょう", + "おくりがな", + "おくる", + "おくれる", + "おこす", + "おこなう", + "おこる", + "おさえる", + "おさない", + "おさめる", + "おしいれ", + "おしえる", + "おじぎ", + "おじさん", + "おしゃれ", + "おそらく", + "おそわる", + "おたがい", + "おたく", + "おだやか", + "おちつく", + "おっと", + "おつり", + "おでかけ", + "おとしもの", + "おとなしい", + "おどり", + "おどろかす", + "おばさん", + "おまいり", + "おめでとう", + "おもいで", + "おもう", + "おもたい", + "おもちゃ", + "おやつ", + "おやゆび", + "およぼす", + "おらんだ", + "おろす", + "おんがく", + "おんけい", + "おんしゃ", + "おんせん", + "おんだん", + "おんちゅう", + "おんどけい", + "かあつ", + "かいが", + "がいき", + "がいけん", + "がいこう", + "かいさつ", + "かいしゃ", + "かいすいよく", + "かいぜん", + "かいぞうど", + "かいつう", + "かいてん", + "かいとう", + "かいふく", + "がいへき", + "かいほう", + "かいよう", + "がいらい", + "かいわ", + "かえる", + "かおり", + "かかえる", + "かがく", + "かがし", + "かがみ", + "かくご", + "かくとく", + "かざる", + "がぞう", + "かたい", + "かたち", + "がちょう", + "がっきゅう", + "がっこう", + "がっさん", + "がっしょう", + "かなざわし", + "かのう", + "がはく", + "かぶか", + "かほう", + "かほご", + "かまう", + "かまぼこ", + "かめれおん", + "かゆい", + "かようび", + "からい", + "かるい", + "かろう", + "かわく", + "かわら", + "がんか", + "かんけい", + "かんこう", + "かんしゃ", + "かんそう", + "かんたん", + "かんち", + "がんばる", + "きあい", + "きあつ", + "きいろ", + "ぎいん", + "きうい", + "きうん", + "きえる", + "きおう", + "きおく", + "きおち", + "きおん", + "きかい", + "きかく", + "きかんしゃ", + "ききて", + "きくばり", + "きくらげ", + "きけんせい", + "きこう", + "きこえる", + "きこく", + "きさい", + "きさく", + "きさま", + "きさらぎ", + "ぎじかがく", + "ぎしき", + "ぎじたいけん", + "ぎじにってい", + "ぎじゅつしゃ", + "きすう", + "きせい", + "きせき", + "きせつ", + "きそう", + "きぞく", + "きぞん", + "きたえる", + "きちょう", + "きつえん", + "ぎっちり", + "きつつき", + "きつね", + "きてい", + "きどう", + "きどく", + "きない", + "きなが", + "きなこ", + "きぬごし", + "きねん", + "きのう", + "きのした", + "きはく", + "きびしい", + "きひん", + "きふく", + "きぶん", + "きぼう", + "きほん", + "きまる", + "きみつ", + "きむずかしい", + "きめる", + "きもだめし", + "きもち", + "きもの", + "きゃく", + "きやく", + "ぎゅうにく", + "きよう", + "きょうりゅう", + "きらい", + "きらく", + "きりん", + "きれい", + "きれつ", + "きろく", + "ぎろん", + "きわめる", + "ぎんいろ", + "きんかくじ", + "きんじょ", + "きんようび", + "ぐあい", + "くいず", + "くうかん", + "くうき", + "くうぐん", + "くうこう", + "ぐうせい", + "くうそう", + "ぐうたら", + "くうふく", + "くうぼ", + "くかん", + "くきょう", + "くげん", + "ぐこう", + "くさい", + "くさき", + "くさばな", + "くさる", + "くしゃみ", + "くしょう", + "くすのき", + "くすりゆび", + "くせげ", + "くせん", + "ぐたいてき", + "くださる", + "くたびれる", + "くちこみ", + "くちさき", + "くつした", + "ぐっすり", + "くつろぐ", + "くとうてん", + "くどく", + "くなん", + "くねくね", + "くのう", + "くふう", + "くみあわせ", + "くみたてる", + "くめる", + "くやくしょ", + "くらす", + "くらべる", + "くるま", + "くれる", + "くろう", + "くわしい", + "ぐんかん", + "ぐんしょく", + "ぐんたい", + "ぐんて", + "けあな", + "けいかく", + "けいけん", + "けいこ", + "けいさつ", + "げいじゅつ", + "けいたい", + "げいのうじん", + "けいれき", + "けいろ", + "けおとす", + "けおりもの", + "げきか", + "げきげん", + "げきだん", + "げきちん", + "げきとつ", + "げきは", + "げきやく", + "げこう", + "げこくじょう", + "げざい", + "けさき", + "げざん", + "けしき", + "けしごむ", + "けしょう", + "げすと", + "けたば", + "けちゃっぷ", + "けちらす", + "けつあつ", + "けつい", + "けつえき", + "けっこん", + "けつじょ", + "けっせき", + "けってい", + "けつまつ", + "げつようび", + "げつれい", + "けつろん", + "げどく", + "けとばす", + "けとる", + "けなげ", + "けなす", + "けなみ", + "けぬき", + "げねつ", + "けねん", + "けはい", + "げひん", + "けぶかい", + "げぼく", + "けまり", + "けみかる", + "けむし", + "けむり", + "けもの", + "けらい", + "けろけろ", + "けわしい", + "けんい", + "けんえつ", + "けんお", + "けんか", + "げんき", + "けんげん", + "けんこう", + "けんさく", + "けんしゅう", + "けんすう", + "げんそう", + "けんちく", + "けんてい", + "けんとう", + "けんない", + "けんにん", + "げんぶつ", + "けんま", + "けんみん", + "けんめい", + "けんらん", + "けんり", + "こあくま", + "こいぬ", + "こいびと", + "ごうい", + "こうえん", + "こうおん", + "こうかん", + "ごうきゅう", + "ごうけい", + "こうこう", + "こうさい", + "こうじ", + "こうすい", + "ごうせい", + "こうそく", + "こうたい", + "こうちゃ", + "こうつう", + "こうてい", + "こうどう", + "こうない", + "こうはい", + "ごうほう", + "ごうまん", + "こうもく", + "こうりつ", + "こえる", + "こおり", + "ごかい", + "ごがつ", + "ごかん", + "こくご", + "こくさい", + "こくとう", + "こくない", + "こくはく", + "こぐま", + "こけい", + "こける", + "ここのか", + "こころ", + "こさめ", + "こしつ", + "こすう", + "こせい", + "こせき", + "こぜん", + "こそだて", + "こたい", + "こたえる", + "こたつ", + "こちょう", + "こっか", + "こつこつ", + "こつばん", + "こつぶ", + "こてい", + "こてん", + "ことがら", + "ことし", + "ことば", + "ことり", + "こなごな", + "こねこね", + "このまま", + "このみ", + "このよ", + "ごはん", + "こひつじ", + "こふう", + "こふん", + "こぼれる", + "ごまあぶら", + "こまかい", + "ごますり", + "こまつな", + "こまる", + "こむぎこ", + "こもじ", + "こもち", + "こもの", + "こもん", + "こやく", + "こやま", + "こゆう", + "こゆび", + "こよい", + "こよう", + "こりる", + "これくしょん", + "ころっけ", + "こわもて", + "こわれる", + "こんいん", + "こんかい", + "こんき", + "こんしゅう", + "こんすい", + "こんだて", + "こんとん", + "こんなん", + "こんびに", + "こんぽん", + "こんまけ", + "こんや", + "こんれい", + "こんわく", + "ざいえき", + "さいかい", + "さいきん", + "ざいげん", + "ざいこ", + "さいしょ", + "さいせい", + "ざいたく", + "ざいちゅう", + "さいてき", + "ざいりょう", + "さうな", + "さかいし", + "さがす", + "さかな", + "さかみち", + "さがる", + "さぎょう", + "さくし", + "さくひん", + "さくら", + "さこく", + "さこつ", + "さずかる", + "ざせき", + "さたん", + "さつえい", + "ざつおん", + "ざっか", + "ざつがく", + "さっきょく", + "ざっし", + "さつじん", + "ざっそう", + "さつたば", + "さつまいも", + "さてい", + "さといも", + "さとう", + "さとおや", + "さとし", + "さとる", + "さのう", + "さばく", + "さびしい", + "さべつ", + "さほう", + "さほど", + "さます", + "さみしい", + "さみだれ", + "さむけ", + "さめる", + "さやえんどう", + "さゆう", + "さよう", + "さよく", + "さらだ", + "ざるそば", + "さわやか", + "さわる", + "さんいん", + "さんか", + "さんきゃく", + "さんこう", + "さんさい", + "ざんしょ", + "さんすう", + "さんせい", + "さんそ", + "さんち", + "さんま", + "さんみ", + "さんらん", + "しあい", + "しあげ", + "しあさって", + "しあわせ", + "しいく", + "しいん", + "しうち", + "しえい", + "しおけ", + "しかい", + "しかく", + "じかん", + "しごと", + "しすう", + "じだい", + "したうけ", + "したぎ", + "したて", + "したみ", + "しちょう", + "しちりん", + "しっかり", + "しつじ", + "しつもん", + "してい", + "してき", + "してつ", + "じてん", + "じどう", + "しなぎれ", + "しなもの", + "しなん", + "しねま", + "しねん", + "しのぐ", + "しのぶ", + "しはい", + "しばかり", + "しはつ", + "しはらい", + "しはん", + "しひょう", + "しふく", + "じぶん", + "しへい", + "しほう", + "しほん", + "しまう", + "しまる", + "しみん", + "しむける", + "じむしょ", + "しめい", + "しめる", + "しもん", + "しゃいん", + "しゃうん", + "しゃおん", + "じゃがいも", + "しやくしょ", + "しゃくほう", + "しゃけん", + "しゃこ", + "しゃざい", + "しゃしん", + "しゃせん", + "しゃそう", + "しゃたい", + "しゃちょう", + "しゃっきん", + "じゃま", + "しゃりん", + "しゃれい", + "じゆう", + "じゅうしょ", + "しゅくはく", + "じゅしん", + "しゅっせき", + "しゅみ", + "しゅらば", + "じゅんばん", + "しょうかい", + "しょくたく", + "しょっけん", + "しょどう", + "しょもつ", + "しらせる", + "しらべる", + "しんか", + "しんこう", + "じんじゃ", + "しんせいじ", + "しんちく", + "しんりん", + "すあげ", + "すあし", + "すあな", + "ずあん", + "すいえい", + "すいか", + "すいとう", + "ずいぶん", + "すいようび", + "すうがく", + "すうじつ", + "すうせん", + "すおどり", + "すきま", + "すくう", + "すくない", + "すける", + "すごい", + "すこし", + "ずさん", + "すずしい", + "すすむ", + "すすめる", + "すっかり", + "ずっしり", + "ずっと", + "すてき", + "すてる", + "すねる", + "すのこ", + "すはだ", + "すばらしい", + "ずひょう", + "ずぶぬれ", + "すぶり", + "すふれ", + "すべて", + "すべる", + "ずほう", + "すぼん", + "すまい", + "すめし", + "すもう", + "すやき", + "すらすら", + "するめ", + "すれちがう", + "すろっと", + "すわる", + "すんぜん", + "すんぽう", + "せあぶら", + "せいかつ", + "せいげん", + "せいじ", + "せいよう", + "せおう", + "せかいかん", + "せきにん", + "せきむ", + "せきゆ", + "せきらんうん", + "せけん", + "せこう", + "せすじ", + "せたい", + "せたけ", + "せっかく", + "せっきゃく", + "ぜっく", + "せっけん", + "せっこつ", + "せっさたくま", + "せつぞく", + "せつだん", + "せつでん", + "せっぱん", + "せつび", + "せつぶん", + "せつめい", + "せつりつ", + "せなか", + "せのび", + "せはば", + "せびろ", + "せぼね", + "せまい", + "せまる", + "せめる", + "せもたれ", + "せりふ", + "ぜんあく", + "せんい", + "せんえい", + "せんか", + "せんきょ", + "せんく", + "せんげん", + "ぜんご", + "せんさい", + "せんしゅ", + "せんすい", + "せんせい", + "せんぞ", + "せんたく", + "せんちょう", + "せんてい", + "せんとう", + "せんぬき", + "せんねん", + "せんぱい", + "ぜんぶ", + "ぜんぽう", + "せんむ", + "せんめんじょ", + "せんもん", + "せんやく", + "せんゆう", + "せんよう", + "ぜんら", + "ぜんりゃく", + "せんれい", + "せんろ", + "そあく", + "そいとげる", + "そいね", + "そうがんきょう", + "そうき", + "そうご", + "そうしん", + "そうだん", + "そうなん", + "そうび", + "そうめん", + "そうり", + "そえもの", + "そえん", + "そがい", + "そげき", + "そこう", + "そこそこ", + "そざい", + "そしな", + "そせい", + "そせん", + "そそぐ", + "そだてる", + "そつう", + "そつえん", + "そっかん", + "そつぎょう", + "そっけつ", + "そっこう", + "そっせん", + "そっと", + "そとがわ", + "そとづら", + "そなえる", + "そなた", + "そふぼ", + "そぼく", + "そぼろ", + "そまつ", + "そまる", + "そむく", + "そむりえ", + "そめる", + "そもそも", + "そよかぜ", + "そらまめ", + "そろう", + "そんかい", + "そんけい", + "そんざい", + "そんしつ", + "そんぞく", + "そんちょう", + "ぞんび", + "ぞんぶん", + "そんみん", + "たあい", + "たいいん", + "たいうん", + "たいえき", + "たいおう", + "だいがく", + "たいき", + "たいぐう", + "たいけん", + "たいこ", + "たいざい", + "だいじょうぶ", + "だいすき", + "たいせつ", + "たいそう", + "だいたい", + "たいちょう", + "たいてい", + "だいどころ", + "たいない", + "たいねつ", + "たいのう", + "たいはん", + "だいひょう", + "たいふう", + "たいへん", + "たいほ", + "たいまつばな", + "たいみんぐ", + "たいむ", + "たいめん", + "たいやき", + "たいよう", + "たいら", + "たいりょく", + "たいる", + "たいわん", + "たうえ", + "たえる", + "たおす", + "たおる", + "たおれる", + "たかい", + "たかね", + "たきび", + "たくさん", + "たこく", + "たこやき", + "たさい", + "たしざん", + "だじゃれ", + "たすける", + "たずさわる", + "たそがれ", + "たたかう", + "たたく", + "ただしい", + "たたみ", + "たちばな", + "だっかい", + "だっきゃく", + "だっこ", + "だっしゅつ", + "だったい", + "たてる", + "たとえる", + "たなばた", + "たにん", + "たぬき", + "たのしみ", + "たはつ", + "たぶん", + "たべる", + "たぼう", + "たまご", + "たまる", + "だむる", + "ためいき", + "ためす", + "ためる", + "たもつ", + "たやすい", + "たよる", + "たらす", + "たりきほんがん", + "たりょう", + "たりる", + "たると", + "たれる", + "たれんと", + "たろっと", + "たわむれる", + "だんあつ", + "たんい", + "たんおん", + "たんか", + "たんき", + "たんけん", + "たんご", + "たんさん", + "たんじょうび", + "だんせい", + "たんそく", + "たんたい", + "だんち", + "たんてい", + "たんとう", + "だんな", + "たんにん", + "だんねつ", + "たんのう", + "たんぴん", + "だんぼう", + "たんまつ", + "たんめい", + "だんれつ", + "だんろ", + "だんわ", + "ちあい", + "ちあん", + "ちいき", + "ちいさい", + "ちえん", + "ちかい", + "ちから", + "ちきゅう", + "ちきん", + "ちけいず", + "ちけん", + "ちこく", + "ちさい", + "ちしき", + "ちしりょう", + "ちせい", + "ちそう", + "ちたい", + "ちたん", + "ちちおや", + "ちつじょ", + "ちてき", + "ちてん", + "ちぬき", + "ちぬり", + "ちのう", + "ちひょう", + "ちへいせん", + "ちほう", + "ちまた", + "ちみつ", + "ちみどろ", + "ちめいど", + "ちゃんこなべ", + "ちゅうい", + "ちゆりょく", + "ちょうし", + "ちょさくけん", + "ちらし", + "ちらみ", + "ちりがみ", + "ちりょう", + "ちるど", + "ちわわ", + "ちんたい", + "ちんもく", + "ついか", + "ついたち", + "つうか", + "つうじょう", + "つうはん", + "つうわ", + "つかう", + "つかれる", + "つくね", + "つくる", + "つけね", + "つける", + "つごう", + "つたえる", + "つづく", + "つつじ", + "つつむ", + "つとめる", + "つながる", + "つなみ", + "つねづね", + "つのる", + "つぶす", + "つまらない", + "つまる", + "つみき", + "つめたい", + "つもり", + "つもる", + "つよい", + "つるぼ", + "つるみく", + "つわもの", + "つわり", + "てあし", + "てあて", + "てあみ", + "ていおん", + "ていか", + "ていき", + "ていけい", + "ていこく", + "ていさつ", + "ていし", + "ていせい", + "ていたい", + "ていど", + "ていねい", + "ていひょう", + "ていへん", + "ていぼう", + "てうち", + "ておくれ", + "てきとう", + "てくび", + "でこぼこ", + "てさぎょう", + "てさげ", + "てすり", + "てそう", + "てちがい", + "てちょう", + "てつがく", + "てつづき", + "でっぱ", + "てつぼう", + "てつや", + "でぬかえ", + "てぬき", + "てぬぐい", + "てのひら", + "てはい", + "てぶくろ", + "てふだ", + "てほどき", + "てほん", + "てまえ", + "てまきずし", + "てみじか", + "てみやげ", + "てらす", + "てれび", + "てわけ", + "てわたし", + "でんあつ", + "てんいん", + "てんかい", + "てんき", + "てんぐ", + "てんけん", + "てんごく", + "てんさい", + "てんし", + "てんすう", + "でんち", + "てんてき", + "てんとう", + "てんない", + "てんぷら", + "てんぼうだい", + "てんめつ", + "てんらんかい", + "でんりょく", + "でんわ", + "どあい", + "といれ", + "どうかん", + "とうきゅう", + "どうぐ", + "とうし", + "とうむぎ", + "とおい", + "とおか", + "とおく", + "とおす", + "とおる", + "とかい", + "とかす", + "ときおり", + "ときどき", + "とくい", + "とくしゅう", + "とくてん", + "とくに", + "とくべつ", + "とけい", + "とける", + "とこや", + "とさか", + "としょかん", + "とそう", + "とたん", + "とちゅう", + "とっきゅう", + "とっくん", + "とつぜん", + "とつにゅう", + "とどける", + "ととのえる", + "とない", + "となえる", + "となり", + "とのさま", + "とばす", + "どぶがわ", + "とほう", + "とまる", + "とめる", + "ともだち", + "ともる", + "どようび", + "とらえる", + "とんかつ", + "どんぶり", + "ないかく", + "ないこう", + "ないしょ", + "ないす", + "ないせん", + "ないそう", + "なおす", + "ながい", + "なくす", + "なげる", + "なこうど", + "なさけ", + "なたでここ", + "なっとう", + "なつやすみ", + "ななおし", + "なにごと", + "なにもの", + "なにわ", + "なのか", + "なふだ", + "なまいき", + "なまえ", + "なまみ", + "なみだ", + "なめらか", + "なめる", + "なやむ", + "ならう", + "ならび", + "ならぶ", + "なれる", + "なわとび", + "なわばり", + "にあう", + "にいがた", + "にうけ", + "におい", + "にかい", + "にがて", + "にきび", + "にくしみ", + "にくまん", + "にげる", + "にさんかたんそ", + "にしき", + "にせもの", + "にちじょう", + "にちようび", + "にっか", + "にっき", + "にっけい", + "にっこう", + "にっさん", + "にっしょく", + "にっすう", + "にっせき", + "にってい", + "になう", + "にほん", + "にまめ", + "にもつ", + "にやり", + "にゅういん", + "にりんしゃ", + "にわとり", + "にんい", + "にんか", + "にんき", + "にんげん", + "にんしき", + "にんずう", + "にんそう", + "にんたい", + "にんち", + "にんてい", + "にんにく", + "にんぷ", + "にんまり", + "にんむ", + "にんめい", + "にんよう", + "ぬいくぎ", + "ぬかす", + "ぬぐいとる", + "ぬぐう", + "ぬくもり", + "ぬすむ", + "ぬまえび", + "ぬめり", + "ぬらす", + "ぬんちゃく", + "ねあげ", + "ねいき", + "ねいる", + "ねいろ", + "ねぐせ", + "ねくたい", + "ねくら", + "ねこぜ", + "ねこむ", + "ねさげ", + "ねすごす", + "ねそべる", + "ねだん", + "ねつい", + "ねっしん", + "ねつぞう", + "ねったいぎょ", + "ねぶそく", + "ねふだ", + "ねぼう", + "ねほりはほり", + "ねまき", + "ねまわし", + "ねみみ", + "ねむい", + "ねむたい", + "ねもと", + "ねらう", + "ねわざ", + "ねんいり", + "ねんおし", + "ねんかん", + "ねんきん", + "ねんぐ", + "ねんざ", + "ねんし", + "ねんちゃく", + "ねんど", + "ねんぴ", + "ねんぶつ", + "ねんまつ", + "ねんりょう", + "ねんれい", + "のいず", + "のおづま", + "のがす", + "のきなみ", + "のこぎり", + "のこす", + "のこる", + "のせる", + "のぞく", + "のぞむ", + "のたまう", + "のちほど", + "のっく", + "のばす", + "のはら", + "のべる", + "のぼる", + "のみもの", + "のやま", + "のらいぬ", + "のらねこ", + "のりもの", + "のりゆき", + "のれん", + "のんき", + "ばあい", + "はあく", + "ばあさん", + "ばいか", + "ばいく", + "はいけん", + "はいご", + "はいしん", + "はいすい", + "はいせん", + "はいそう", + "はいち", + "ばいばい", + "はいれつ", + "はえる", + "はおる", + "はかい", + "ばかり", + "はかる", + "はくしゅ", + "はけん", + "はこぶ", + "はさみ", + "はさん", + "はしご", + "ばしょ", + "はしる", + "はせる", + "ぱそこん", + "はそん", + "はたん", + "はちみつ", + "はつおん", + "はっかく", + "はづき", + "はっきり", + "はっくつ", + "はっけん", + "はっこう", + "はっさん", + "はっしん", + "はったつ", + "はっちゅう", + "はってん", + "はっぴょう", + "はっぽう", + "はなす", + "はなび", + "はにかむ", + "はぶらし", + "はみがき", + "はむかう", + "はめつ", + "はやい", + "はやし", + "はらう", + "はろうぃん", + "はわい", + "はんい", + "はんえい", + "はんおん", + "はんかく", + "はんきょう", + "ばんぐみ", + "はんこ", + "はんしゃ", + "はんすう", + "はんだん", + "ぱんち", + "ぱんつ", + "はんてい", + "はんとし", + "はんのう", + "はんぱ", + "はんぶん", + "はんぺん", + "はんぼうき", + "はんめい", + "はんらん", + "はんろん", + "ひいき", + "ひうん", + "ひえる", + "ひかく", + "ひかり", + "ひかる", + "ひかん", + "ひくい", + "ひけつ", + "ひこうき", + "ひこく", + "ひさい", + "ひさしぶり", + "ひさん", + "びじゅつかん", + "ひしょ", + "ひそか", + "ひそむ", + "ひたむき", + "ひだり", + "ひたる", + "ひつぎ", + "ひっこし", + "ひっし", + "ひつじゅひん", + "ひっす", + "ひつぜん", + "ぴったり", + "ぴっちり", + "ひつよう", + "ひてい", + "ひとごみ", + "ひなまつり", + "ひなん", + "ひねる", + "ひはん", + "ひびく", + "ひひょう", + "ひほう", + "ひまわり", + "ひまん", + "ひみつ", + "ひめい", + "ひめじし", + "ひやけ", + "ひやす", + "ひよう", + "びょうき", + "ひらがな", + "ひらく", + "ひりつ", + "ひりょう", + "ひるま", + "ひるやすみ", + "ひれい", + "ひろい", + "ひろう", + "ひろき", + "ひろゆき", + "ひんかく", + "ひんけつ", + "ひんこん", + "ひんしゅ", + "ひんそう", + "ぴんち", + "ひんぱん", + "びんぼう", + "ふあん", + "ふいうち", + "ふうけい", + "ふうせん", + "ぷうたろう", + "ふうとう", + "ふうふ", + "ふえる", + "ふおん", + "ふかい", + "ふきん", + "ふくざつ", + "ふくぶくろ", + "ふこう", + "ふさい", + "ふしぎ", + "ふじみ", + "ふすま", + "ふせい", + "ふせぐ", + "ふそく", + "ぶたにく", + "ふたん", + "ふちょう", + "ふつう", + "ふつか", + "ふっかつ", + "ふっき", + "ふっこく", + "ぶどう", + "ふとる", + "ふとん", + "ふのう", + "ふはい", + "ふひょう", + "ふへん", + "ふまん", + "ふみん", + "ふめつ", + "ふめん", + "ふよう", + "ふりこ", + "ふりる", + "ふるい", + "ふんいき", + "ぶんがく", + "ぶんぐ", + "ふんしつ", + "ぶんせき", + "ふんそう", + "ぶんぽう", + "へいあん", + "へいおん", + "へいがい", + "へいき", + "へいげん", + "へいこう", + "へいさ", + "へいしゃ", + "へいせつ", + "へいそ", + "へいたく", + "へいてん", + "へいねつ", + "へいわ", + "へきが", + "へこむ", + "べにいろ", + "べにしょうが", + "へらす", + "へんかん", + "べんきょう", + "べんごし", + "へんさい", + "へんたい", + "べんり", + "ほあん", + "ほいく", + "ぼうぎょ", + "ほうこく", + "ほうそう", + "ほうほう", + "ほうもん", + "ほうりつ", + "ほえる", + "ほおん", + "ほかん", + "ほきょう", + "ぼきん", + "ほくろ", + "ほけつ", + "ほけん", + "ほこう", + "ほこる", + "ほしい", + "ほしつ", + "ほしゅ", + "ほしょう", + "ほせい", + "ほそい", + "ほそく", + "ほたて", + "ほたる", + "ぽちぶくろ", + "ほっきょく", + "ほっさ", + "ほったん", + "ほとんど", + "ほめる", + "ほんい", + "ほんき", + "ほんけ", + "ほんしつ", + "ほんやく", + "まいにち", + "まかい", + "まかせる", + "まがる", + "まける", + "まこと", + "まさつ", + "まじめ", + "ますく", + "まぜる", + "まつり", + "まとめ", + "まなぶ", + "まぬけ", + "まねく", + "まほう", + "まもる", + "まゆげ", + "まよう", + "まろやか", + "まわす", + "まわり", + "まわる", + "まんが", + "まんきつ", + "まんぞく", + "まんなか", + "みいら", + "みうち", + "みえる", + "みがく", + "みかた", + "みかん", + "みけん", + "みこん", + "みじかい", + "みすい", + "みすえる", + "みせる", + "みっか", + "みつかる", + "みつける", + "みてい", + "みとめる", + "みなと", + "みなみかさい", + "みねらる", + "みのう", + "みのがす", + "みほん", + "みもと", + "みやげ", + "みらい", + "みりょく", + "みわく", + "みんか", + "みんぞく", + "むいか", + "むえき", + "むえん", + "むかい", + "むかう", + "むかえ", + "むかし", + "むぎちゃ", + "むける", + "むげん", + "むさぼる", + "むしあつい", + "むしば", + "むじゅん", + "むしろ", + "むすう", + "むすこ", + "むすぶ", + "むすめ", + "むせる", + "むせん", + "むちゅう", + "むなしい", + "むのう", + "むやみ", + "むよう", + "むらさき", + "むりょう", + "むろん", + "めいあん", + "めいうん", + "めいえん", + "めいかく", + "めいきょく", + "めいさい", + "めいし", + "めいそう", + "めいぶつ", + "めいれい", + "めいわく", + "めぐまれる", + "めざす", + "めした", + "めずらしい", + "めだつ", + "めまい", + "めやす", + "めんきょ", + "めんせき", + "めんどう", + "もうしあげる", + "もうどうけん", + "もえる", + "もくし", + "もくてき", + "もくようび", + "もちろん", + "もどる", + "もらう", + "もんく", + "もんだい", + "やおや", + "やける", + "やさい", + "やさしい", + "やすい", + "やすたろう", + "やすみ", + "やせる", + "やそう", + "やたい", + "やちん", + "やっと", + "やっぱり", + "やぶる", + "やめる", + "ややこしい", + "やよい", + "やわらかい", + "ゆうき", + "ゆうびんきょく", + "ゆうべ", + "ゆうめい", + "ゆけつ", + "ゆしゅつ", + "ゆせん", + "ゆそう", + "ゆたか", + "ゆちゃく", + "ゆでる", + "ゆにゅう", + "ゆびわ", + "ゆらい", + "ゆれる", + "ようい", + "ようか", + "ようきゅう", + "ようじ", + "ようす", + "ようちえん", + "よかぜ", + "よかん", + "よきん", + "よくせい", + "よくぼう", + "よけい", + "よごれる", + "よさん", + "よしゅう", + "よそう", + "よそく", + "よっか", + "よてい", + "よどがわく", + "よねつ", + "よやく", + "よゆう", + "よろこぶ", + "よろしい", + "らいう", + "らくがき", + "らくご", + "らくさつ", + "らくだ", + "らしんばん", + "らせん", + "らぞく", + "らたい", + "らっか", + "られつ", + "りえき", + "りかい", + "りきさく", + "りきせつ", + "りくぐん", + "りくつ", + "りけん", + "りこう", + "りせい", + "りそう", + "りそく", + "りてん", + "りねん", + "りゆう", + "りゅうがく", + "りよう", + "りょうり", + "りょかん", + "りょくちゃ", + "りょこう", + "りりく", + "りれき", + "りろん", + "りんご", + "るいけい", + "るいさい", + "るいじ", + "るいせき", + "るすばん", + "るりがわら", + "れいかん", + "れいぎ", + "れいせい", + "れいぞうこ", + "れいとう", + "れいぼう", + "れきし", + "れきだい", + "れんあい", + "れんけい", + "れんこん", + "れんさい", + "れんしゅう", + "れんぞく", + "れんらく", + "ろうか", + "ろうご", + "ろうじん", + "ろうそく", + "ろくが", + "ろこつ", + "ろじうら", + "ろしゅつ", + "ろせん", + "ろてん", + "ろめん", + "ろれつ", + "ろんぎ", + "ろんぱ", + "ろんぶん", + "ろんり", + "わかす", + "わかめ", + "わかやま", + "わかれる", + "わしつ", + "わじまし", + "わすれもの", + "わらう", + "われる" + ] + }, + {} + ], + 38: [ + function(require, module, exports) { + module.exports = [ + "가격", + "가끔", + "가난", + "가능", + "가득", + "가르침", + "가뭄", + "가방", + "가상", + "가슴", + "가운데", + "가을", + "가이드", + "가입", + "가장", + "가정", + "가족", + "가죽", + "각오", + "각자", + "간격", + "간부", + "간섭", + "간장", + "간접", + "간판", + "갈등", + "갈비", + "갈색", + "갈증", + "감각", + "감기", + "감소", + "감수성", + "감자", + "감정", + "갑자기", + "강남", + "강당", + "강도", + "강력히", + "강변", + "강북", + "강사", + "강수량", + "강아지", + "강원도", + "강의", + "강제", + "강조", + "같이", + "개구리", + "개나리", + "개방", + "개별", + "개선", + "개성", + "개인", + "객관적", + "거실", + "거액", + "거울", + "거짓", + "거품", + "걱정", + "건강", + "건물", + "건설", + "건조", + "건축", + "걸음", + "검사", + "검토", + "게시판", + "게임", + "겨울", + "견해", + "결과", + "결국", + "결론", + "결석", + "결승", + "결심", + "결정", + "결혼", + "경계", + "경고", + "경기", + "경력", + "경복궁", + "경비", + "경상도", + "경영", + "경우", + "경쟁", + "경제", + "경주", + "경찰", + "경치", + "경향", + "경험", + "계곡", + "계단", + "계란", + "계산", + "계속", + "계약", + "계절", + "계층", + "계획", + "고객", + "고구려", + "고궁", + "고급", + "고등학생", + "고무신", + "고민", + "고양이", + "고장", + "고전", + "고집", + "고춧가루", + "고통", + "고향", + "곡식", + "골목", + "골짜기", + "골프", + "공간", + "공개", + "공격", + "공군", + "공급", + "공기", + "공동", + "공무원", + "공부", + "공사", + "공식", + "공업", + "공연", + "공원", + "공장", + "공짜", + "공책", + "공통", + "공포", + "공항", + "공휴일", + "과목", + "과일", + "과장", + "과정", + "과학", + "관객", + "관계", + "관광", + "관념", + "관람", + "관련", + "관리", + "관습", + "관심", + "관점", + "관찰", + "광경", + "광고", + "광장", + "광주", + "괴로움", + "굉장히", + "교과서", + "교문", + "교복", + "교실", + "교양", + "교육", + "교장", + "교직", + "교통", + "교환", + "교훈", + "구경", + "구름", + "구멍", + "구별", + "구분", + "구석", + "구성", + "구속", + "구역", + "구입", + "구청", + "구체적", + "국가", + "국기", + "국내", + "국립", + "국물", + "국민", + "국수", + "국어", + "국왕", + "국적", + "국제", + "국회", + "군대", + "군사", + "군인", + "궁극적", + "권리", + "권위", + "권투", + "귀국", + "귀신", + "규정", + "규칙", + "균형", + "그날", + "그냥", + "그늘", + "그러나", + "그룹", + "그릇", + "그림", + "그제서야", + "그토록", + "극복", + "극히", + "근거", + "근교", + "근래", + "근로", + "근무", + "근본", + "근원", + "근육", + "근처", + "글씨", + "글자", + "금강산", + "금고", + "금년", + "금메달", + "금액", + "금연", + "금요일", + "금지", + "긍정적", + "기간", + "기관", + "기념", + "기능", + "기독교", + "기둥", + "기록", + "기름", + "기법", + "기본", + "기분", + "기쁨", + "기숙사", + "기술", + "기억", + "기업", + "기온", + "기운", + "기원", + "기적", + "기준", + "기침", + "기혼", + "기획", + "긴급", + "긴장", + "길이", + "김밥", + "김치", + "김포공항", + "깍두기", + "깜빡", + "깨달음", + "깨소금", + "껍질", + "꼭대기", + "꽃잎", + "나들이", + "나란히", + "나머지", + "나물", + "나침반", + "나흘", + "낙엽", + "난방", + "날개", + "날씨", + "날짜", + "남녀", + "남대문", + "남매", + "남산", + "남자", + "남편", + "남학생", + "낭비", + "낱말", + "내년", + "내용", + "내일", + "냄비", + "냄새", + "냇물", + "냉동", + "냉면", + "냉방", + "냉장고", + "넥타이", + "넷째", + "노동", + "노란색", + "노력", + "노인", + "녹음", + "녹차", + "녹화", + "논리", + "논문", + "논쟁", + "놀이", + "농구", + "농담", + "농민", + "농부", + "농업", + "농장", + "농촌", + "높이", + "눈동자", + "눈물", + "눈썹", + "뉴욕", + "느낌", + "늑대", + "능동적", + "능력", + "다방", + "다양성", + "다음", + "다이어트", + "다행", + "단계", + "단골", + "단독", + "단맛", + "단순", + "단어", + "단위", + "단점", + "단체", + "단추", + "단편", + "단풍", + "달걀", + "달러", + "달력", + "달리", + "닭고기", + "담당", + "담배", + "담요", + "담임", + "답변", + "답장", + "당근", + "당분간", + "당연히", + "당장", + "대규모", + "대낮", + "대단히", + "대답", + "대도시", + "대략", + "대량", + "대륙", + "대문", + "대부분", + "대신", + "대응", + "대장", + "대전", + "대접", + "대중", + "대책", + "대출", + "대충", + "대통령", + "대학", + "대한민국", + "대합실", + "대형", + "덩어리", + "데이트", + "도대체", + "도덕", + "도둑", + "도망", + "도서관", + "도심", + "도움", + "도입", + "도자기", + "도저히", + "도전", + "도중", + "도착", + "독감", + "독립", + "독서", + "독일", + "독창적", + "동화책", + "뒷모습", + "뒷산", + "딸아이", + "마누라", + "마늘", + "마당", + "마라톤", + "마련", + "마무리", + "마사지", + "마약", + "마요네즈", + "마을", + "마음", + "마이크", + "마중", + "마지막", + "마찬가지", + "마찰", + "마흔", + "막걸리", + "막내", + "막상", + "만남", + "만두", + "만세", + "만약", + "만일", + "만점", + "만족", + "만화", + "많이", + "말기", + "말씀", + "말투", + "맘대로", + "망원경", + "매년", + "매달", + "매력", + "매번", + "매스컴", + "매일", + "매장", + "맥주", + "먹이", + "먼저", + "먼지", + "멀리", + "메일", + "며느리", + "며칠", + "면담", + "멸치", + "명단", + "명령", + "명예", + "명의", + "명절", + "명칭", + "명함", + "모금", + "모니터", + "모델", + "모든", + "모범", + "모습", + "모양", + "모임", + "모조리", + "모집", + "모퉁이", + "목걸이", + "목록", + "목사", + "목소리", + "목숨", + "목적", + "목표", + "몰래", + "몸매", + "몸무게", + "몸살", + "몸속", + "몸짓", + "몸통", + "몹시", + "무관심", + "무궁화", + "무더위", + "무덤", + "무릎", + "무슨", + "무엇", + "무역", + "무용", + "무조건", + "무지개", + "무척", + "문구", + "문득", + "문법", + "문서", + "문제", + "문학", + "문화", + "물가", + "물건", + "물결", + "물고기", + "물론", + "물리학", + "물음", + "물질", + "물체", + "미국", + "미디어", + "미사일", + "미술", + "미역", + "미용실", + "미움", + "미인", + "미팅", + "미혼", + "민간", + "민족", + "민주", + "믿음", + "밀가루", + "밀리미터", + "밑바닥", + "바가지", + "바구니", + "바나나", + "바늘", + "바닥", + "바닷가", + "바람", + "바이러스", + "바탕", + "박물관", + "박사", + "박수", + "반대", + "반드시", + "반말", + "반발", + "반성", + "반응", + "반장", + "반죽", + "반지", + "반찬", + "받침", + "발가락", + "발걸음", + "발견", + "발달", + "발레", + "발목", + "발바닥", + "발생", + "발음", + "발자국", + "발전", + "발톱", + "발표", + "밤하늘", + "밥그릇", + "밥맛", + "밥상", + "밥솥", + "방금", + "방면", + "방문", + "방바닥", + "방법", + "방송", + "방식", + "방안", + "방울", + "방지", + "방학", + "방해", + "방향", + "배경", + "배꼽", + "배달", + "배드민턴", + "백두산", + "백색", + "백성", + "백인", + "백제", + "백화점", + "버릇", + "버섯", + "버튼", + "번개", + "번역", + "번지", + "번호", + "벌금", + "벌레", + "벌써", + "범위", + "범인", + "범죄", + "법률", + "법원", + "법적", + "법칙", + "베이징", + "벨트", + "변경", + "변동", + "변명", + "변신", + "변호사", + "변화", + "별도", + "별명", + "별일", + "병실", + "병아리", + "병원", + "보관", + "보너스", + "보라색", + "보람", + "보름", + "보상", + "보안", + "보자기", + "보장", + "보전", + "보존", + "보통", + "보편적", + "보험", + "복도", + "복사", + "복숭아", + "복습", + "볶음", + "본격적", + "본래", + "본부", + "본사", + "본성", + "본인", + "본질", + "볼펜", + "봉사", + "봉지", + "봉투", + "부근", + "부끄러움", + "부담", + "부동산", + "부문", + "부분", + "부산", + "부상", + "부엌", + "부인", + "부작용", + "부장", + "부정", + "부족", + "부지런히", + "부친", + "부탁", + "부품", + "부회장", + "북부", + "북한", + "분노", + "분량", + "분리", + "분명", + "분석", + "분야", + "분위기", + "분필", + "분홍색", + "불고기", + "불과", + "불교", + "불꽃", + "불만", + "불법", + "불빛", + "불안", + "불이익", + "불행", + "브랜드", + "비극", + "비난", + "비닐", + "비둘기", + "비디오", + "비로소", + "비만", + "비명", + "비밀", + "비바람", + "비빔밥", + "비상", + "비용", + "비율", + "비중", + "비타민", + "비판", + "빌딩", + "빗물", + "빗방울", + "빗줄기", + "빛깔", + "빨간색", + "빨래", + "빨리", + "사건", + "사계절", + "사나이", + "사냥", + "사람", + "사랑", + "사립", + "사모님", + "사물", + "사방", + "사상", + "사생활", + "사설", + "사슴", + "사실", + "사업", + "사용", + "사월", + "사장", + "사전", + "사진", + "사촌", + "사춘기", + "사탕", + "사투리", + "사흘", + "산길", + "산부인과", + "산업", + "산책", + "살림", + "살인", + "살짝", + "삼계탕", + "삼국", + "삼십", + "삼월", + "삼촌", + "상관", + "상금", + "상대", + "상류", + "상반기", + "상상", + "상식", + "상업", + "상인", + "상자", + "상점", + "상처", + "상추", + "상태", + "상표", + "상품", + "상황", + "새벽", + "색깔", + "색연필", + "생각", + "생명", + "생물", + "생방송", + "생산", + "생선", + "생신", + "생일", + "생활", + "서랍", + "서른", + "서명", + "서민", + "서비스", + "서양", + "서울", + "서적", + "서점", + "서쪽", + "서클", + "석사", + "석유", + "선거", + "선물", + "선배", + "선생", + "선수", + "선원", + "선장", + "선전", + "선택", + "선풍기", + "설거지", + "설날", + "설렁탕", + "설명", + "설문", + "설사", + "설악산", + "설치", + "설탕", + "섭씨", + "성공", + "성당", + "성명", + "성별", + "성인", + "성장", + "성적", + "성질", + "성함", + "세금", + "세미나", + "세상", + "세월", + "세종대왕", + "세탁", + "센터", + "센티미터", + "셋째", + "소규모", + "소극적", + "소금", + "소나기", + "소년", + "소득", + "소망", + "소문", + "소설", + "소속", + "소아과", + "소용", + "소원", + "소음", + "소중히", + "소지품", + "소질", + "소풍", + "소형", + "속담", + "속도", + "속옷", + "손가락", + "손길", + "손녀", + "손님", + "손등", + "손목", + "손뼉", + "손실", + "손질", + "손톱", + "손해", + "솔직히", + "솜씨", + "송아지", + "송이", + "송편", + "쇠고기", + "쇼핑", + "수건", + "수년", + "수단", + "수돗물", + "수동적", + "수면", + "수명", + "수박", + "수상", + "수석", + "수술", + "수시로", + "수업", + "수염", + "수영", + "수입", + "수준", + "수집", + "수출", + "수컷", + "수필", + "수학", + "수험생", + "수화기", + "숙녀", + "숙소", + "숙제", + "순간", + "순서", + "순수", + "순식간", + "순위", + "숟가락", + "술병", + "술집", + "숫자", + "스님", + "스물", + "스스로", + "스승", + "스웨터", + "스위치", + "스케이트", + "스튜디오", + "스트레스", + "스포츠", + "슬쩍", + "슬픔", + "습관", + "습기", + "승객", + "승리", + "승부", + "승용차", + "승진", + "시각", + "시간", + "시골", + "시금치", + "시나리오", + "시댁", + "시리즈", + "시멘트", + "시민", + "시부모", + "시선", + "시설", + "시스템", + "시아버지", + "시어머니", + "시월", + "시인", + "시일", + "시작", + "시장", + "시절", + "시점", + "시중", + "시즌", + "시집", + "시청", + "시합", + "시험", + "식구", + "식기", + "식당", + "식량", + "식료품", + "식물", + "식빵", + "식사", + "식생활", + "식초", + "식탁", + "식품", + "신고", + "신규", + "신념", + "신문", + "신발", + "신비", + "신사", + "신세", + "신용", + "신제품", + "신청", + "신체", + "신화", + "실감", + "실내", + "실력", + "실례", + "실망", + "실수", + "실습", + "실시", + "실장", + "실정", + "실질적", + "실천", + "실체", + "실컷", + "실태", + "실패", + "실험", + "실현", + "심리", + "심부름", + "심사", + "심장", + "심정", + "심판", + "쌍둥이", + "씨름", + "씨앗", + "아가씨", + "아나운서", + "아드님", + "아들", + "아쉬움", + "아스팔트", + "아시아", + "아울러", + "아저씨", + "아줌마", + "아직", + "아침", + "아파트", + "아프리카", + "아픔", + "아홉", + "아흔", + "악기", + "악몽", + "악수", + "안개", + "안경", + "안과", + "안내", + "안녕", + "안동", + "안방", + "안부", + "안주", + "알루미늄", + "알코올", + "암시", + "암컷", + "압력", + "앞날", + "앞문", + "애인", + "애정", + "액수", + "앨범", + "야간", + "야단", + "야옹", + "약간", + "약국", + "약속", + "약수", + "약점", + "약품", + "약혼녀", + "양념", + "양력", + "양말", + "양배추", + "양주", + "양파", + "어둠", + "어려움", + "어른", + "어젯밤", + "어쨌든", + "어쩌다가", + "어쩐지", + "언니", + "언덕", + "언론", + "언어", + "얼굴", + "얼른", + "얼음", + "얼핏", + "엄마", + "업무", + "업종", + "업체", + "엉덩이", + "엉망", + "엉터리", + "엊그제", + "에너지", + "에어컨", + "엔진", + "여건", + "여고생", + "여관", + "여군", + "여권", + "여대생", + "여덟", + "여동생", + "여든", + "여론", + "여름", + "여섯", + "여성", + "여왕", + "여인", + "여전히", + "여직원", + "여학생", + "여행", + "역사", + "역시", + "역할", + "연결", + "연구", + "연극", + "연기", + "연락", + "연설", + "연세", + "연속", + "연습", + "연애", + "연예인", + "연인", + "연장", + "연주", + "연출", + "연필", + "연합", + "연휴", + "열기", + "열매", + "열쇠", + "열심히", + "열정", + "열차", + "열흘", + "염려", + "엽서", + "영국", + "영남", + "영상", + "영양", + "영역", + "영웅", + "영원히", + "영하", + "영향", + "영혼", + "영화", + "옆구리", + "옆방", + "옆집", + "예감", + "예금", + "예방", + "예산", + "예상", + "예선", + "예술", + "예습", + "예식장", + "예약", + "예전", + "예절", + "예정", + "예컨대", + "옛날", + "오늘", + "오락", + "오랫동안", + "오렌지", + "오로지", + "오른발", + "오븐", + "오십", + "오염", + "오월", + "오전", + "오직", + "오징어", + "오페라", + "오피스텔", + "오히려", + "옥상", + "옥수수", + "온갖", + "온라인", + "온몸", + "온종일", + "온통", + "올가을", + "올림픽", + "올해", + "옷차림", + "와이셔츠", + "와인", + "완성", + "완전", + "왕비", + "왕자", + "왜냐하면", + "왠지", + "외갓집", + "외국", + "외로움", + "외삼촌", + "외출", + "외침", + "외할머니", + "왼발", + "왼손", + "왼쪽", + "요금", + "요일", + "요즘", + "요청", + "용기", + "용서", + "용어", + "우산", + "우선", + "우승", + "우연히", + "우정", + "우체국", + "우편", + "운동", + "운명", + "운반", + "운전", + "운행", + "울산", + "울음", + "움직임", + "웃어른", + "웃음", + "워낙", + "원고", + "원래", + "원서", + "원숭이", + "원인", + "원장", + "원피스", + "월급", + "월드컵", + "월세", + "월요일", + "웨이터", + "위반", + "위법", + "위성", + "위원", + "위험", + "위협", + "윗사람", + "유난히", + "유럽", + "유명", + "유물", + "유산", + "유적", + "유치원", + "유학", + "유행", + "유형", + "육군", + "육상", + "육십", + "육체", + "은행", + "음력", + "음료", + "음반", + "음성", + "음식", + "음악", + "음주", + "의견", + "의논", + "의문", + "의복", + "의식", + "의심", + "의외로", + "의욕", + "의원", + "의학", + "이것", + "이곳", + "이념", + "이놈", + "이달", + "이대로", + "이동", + "이렇게", + "이력서", + "이론적", + "이름", + "이민", + "이발소", + "이별", + "이불", + "이빨", + "이상", + "이성", + "이슬", + "이야기", + "이용", + "이웃", + "이월", + "이윽고", + "이익", + "이전", + "이중", + "이튿날", + "이틀", + "이혼", + "인간", + "인격", + "인공", + "인구", + "인근", + "인기", + "인도", + "인류", + "인물", + "인생", + "인쇄", + "인연", + "인원", + "인재", + "인종", + "인천", + "인체", + "인터넷", + "인하", + "인형", + "일곱", + "일기", + "일단", + "일대", + "일등", + "일반", + "일본", + "일부", + "일상", + "일생", + "일손", + "일요일", + "일월", + "일정", + "일종", + "일주일", + "일찍", + "일체", + "일치", + "일행", + "일회용", + "임금", + "임무", + "입대", + "입력", + "입맛", + "입사", + "입술", + "입시", + "입원", + "입장", + "입학", + "자가용", + "자격", + "자극", + "자동", + "자랑", + "자부심", + "자식", + "자신", + "자연", + "자원", + "자율", + "자전거", + "자정", + "자존심", + "자판", + "작가", + "작년", + "작성", + "작업", + "작용", + "작은딸", + "작품", + "잔디", + "잔뜩", + "잔치", + "잘못", + "잠깐", + "잠수함", + "잠시", + "잠옷", + "잠자리", + "잡지", + "장관", + "장군", + "장기간", + "장래", + "장례", + "장르", + "장마", + "장면", + "장모", + "장미", + "장비", + "장사", + "장소", + "장식", + "장애인", + "장인", + "장점", + "장차", + "장학금", + "재능", + "재빨리", + "재산", + "재생", + "재작년", + "재정", + "재채기", + "재판", + "재학", + "재활용", + "저것", + "저고리", + "저곳", + "저녁", + "저런", + "저렇게", + "저번", + "저울", + "저절로", + "저축", + "적극", + "적당히", + "적성", + "적용", + "적응", + "전개", + "전공", + "전기", + "전달", + "전라도", + "전망", + "전문", + "전반", + "전부", + "전세", + "전시", + "전용", + "전자", + "전쟁", + "전주", + "전철", + "전체", + "전통", + "전혀", + "전후", + "절대", + "절망", + "절반", + "절약", + "절차", + "점검", + "점수", + "점심", + "점원", + "점점", + "점차", + "접근", + "접시", + "접촉", + "젓가락", + "정거장", + "정도", + "정류장", + "정리", + "정말", + "정면", + "정문", + "정반대", + "정보", + "정부", + "정비", + "정상", + "정성", + "정오", + "정원", + "정장", + "정지", + "정치", + "정확히", + "제공", + "제과점", + "제대로", + "제목", + "제발", + "제법", + "제삿날", + "제안", + "제일", + "제작", + "제주도", + "제출", + "제품", + "제한", + "조각", + "조건", + "조금", + "조깅", + "조명", + "조미료", + "조상", + "조선", + "조용히", + "조절", + "조정", + "조직", + "존댓말", + "존재", + "졸업", + "졸음", + "종교", + "종로", + "종류", + "종소리", + "종업원", + "종종", + "종합", + "좌석", + "죄인", + "주관적", + "주름", + "주말", + "주머니", + "주먹", + "주문", + "주민", + "주방", + "주변", + "주식", + "주인", + "주일", + "주장", + "주전자", + "주택", + "준비", + "줄거리", + "줄기", + "줄무늬", + "중간", + "중계방송", + "중국", + "중년", + "중단", + "중독", + "중반", + "중부", + "중세", + "중소기업", + "중순", + "중앙", + "중요", + "중학교", + "즉석", + "즉시", + "즐거움", + "증가", + "증거", + "증권", + "증상", + "증세", + "지각", + "지갑", + "지경", + "지극히", + "지금", + "지급", + "지능", + "지름길", + "지리산", + "지방", + "지붕", + "지식", + "지역", + "지우개", + "지원", + "지적", + "지점", + "지진", + "지출", + "직선", + "직업", + "직원", + "직장", + "진급", + "진동", + "진로", + "진료", + "진리", + "진짜", + "진찰", + "진출", + "진통", + "진행", + "질문", + "질병", + "질서", + "짐작", + "집단", + "집안", + "집중", + "짜증", + "찌꺼기", + "차남", + "차라리", + "차량", + "차림", + "차별", + "차선", + "차츰", + "착각", + "찬물", + "찬성", + "참가", + "참기름", + "참새", + "참석", + "참여", + "참외", + "참조", + "찻잔", + "창가", + "창고", + "창구", + "창문", + "창밖", + "창작", + "창조", + "채널", + "채점", + "책가방", + "책방", + "책상", + "책임", + "챔피언", + "처벌", + "처음", + "천국", + "천둥", + "천장", + "천재", + "천천히", + "철도", + "철저히", + "철학", + "첫날", + "첫째", + "청년", + "청바지", + "청소", + "청춘", + "체계", + "체력", + "체온", + "체육", + "체중", + "체험", + "초등학생", + "초반", + "초밥", + "초상화", + "초순", + "초여름", + "초원", + "초저녁", + "초점", + "초청", + "초콜릿", + "촛불", + "총각", + "총리", + "총장", + "촬영", + "최근", + "최상", + "최선", + "최신", + "최악", + "최종", + "추석", + "추억", + "추진", + "추천", + "추측", + "축구", + "축소", + "축제", + "축하", + "출근", + "출발", + "출산", + "출신", + "출연", + "출입", + "출장", + "출판", + "충격", + "충고", + "충돌", + "충분히", + "충청도", + "취업", + "취직", + "취향", + "치약", + "친구", + "친척", + "칠십", + "칠월", + "칠판", + "침대", + "침묵", + "침실", + "칫솔", + "칭찬", + "카메라", + "카운터", + "칼국수", + "캐릭터", + "캠퍼스", + "캠페인", + "커튼", + "컨디션", + "컬러", + "컴퓨터", + "코끼리", + "코미디", + "콘서트", + "콜라", + "콤플렉스", + "콩나물", + "쾌감", + "쿠데타", + "크림", + "큰길", + "큰딸", + "큰소리", + "큰아들", + "큰어머니", + "큰일", + "큰절", + "클래식", + "클럽", + "킬로", + "타입", + "타자기", + "탁구", + "탁자", + "탄생", + "태권도", + "태양", + "태풍", + "택시", + "탤런트", + "터널", + "터미널", + "테니스", + "테스트", + "테이블", + "텔레비전", + "토론", + "토마토", + "토요일", + "통계", + "통과", + "통로", + "통신", + "통역", + "통일", + "통장", + "통제", + "통증", + "통합", + "통화", + "퇴근", + "퇴원", + "퇴직금", + "튀김", + "트럭", + "특급", + "특별", + "특성", + "특수", + "특징", + "특히", + "튼튼히", + "티셔츠", + "파란색", + "파일", + "파출소", + "판결", + "판단", + "판매", + "판사", + "팔십", + "팔월", + "팝송", + "패션", + "팩스", + "팩시밀리", + "팬티", + "퍼센트", + "페인트", + "편견", + "편의", + "편지", + "편히", + "평가", + "평균", + "평생", + "평소", + "평양", + "평일", + "평화", + "포스터", + "포인트", + "포장", + "포함", + "표면", + "표정", + "표준", + "표현", + "품목", + "품질", + "풍경", + "풍속", + "풍습", + "프랑스", + "프린터", + "플라스틱", + "피곤", + "피망", + "피아노", + "필름", + "필수", + "필요", + "필자", + "필통", + "핑계", + "하느님", + "하늘", + "하드웨어", + "하룻밤", + "하반기", + "하숙집", + "하순", + "하여튼", + "하지만", + "하천", + "하품", + "하필", + "학과", + "학교", + "학급", + "학기", + "학년", + "학력", + "학번", + "학부모", + "학비", + "학생", + "학술", + "학습", + "학용품", + "학원", + "학위", + "학자", + "학점", + "한계", + "한글", + "한꺼번에", + "한낮", + "한눈", + "한동안", + "한때", + "한라산", + "한마디", + "한문", + "한번", + "한복", + "한식", + "한여름", + "한쪽", + "할머니", + "할아버지", + "할인", + "함께", + "함부로", + "합격", + "합리적", + "항공", + "항구", + "항상", + "항의", + "해결", + "해군", + "해답", + "해당", + "해물", + "해석", + "해설", + "해수욕장", + "해안", + "핵심", + "핸드백", + "햄버거", + "햇볕", + "햇살", + "행동", + "행복", + "행사", + "행운", + "행위", + "향기", + "향상", + "향수", + "허락", + "허용", + "헬기", + "현관", + "현금", + "현대", + "현상", + "현실", + "현장", + "현재", + "현지", + "혈액", + "협력", + "형부", + "형사", + "형수", + "형식", + "형제", + "형태", + "형편", + "혜택", + "호기심", + "호남", + "호랑이", + "호박", + "호텔", + "호흡", + "혹시", + "홀로", + "홈페이지", + "홍보", + "홍수", + "홍차", + "화면", + "화분", + "화살", + "화요일", + "화장", + "화학", + "확보", + "확인", + "확장", + "확정", + "환갑", + "환경", + "환영", + "환율", + "환자", + "활기", + "활동", + "활발히", + "활용", + "활짝", + "회견", + "회관", + "회복", + "회색", + "회원", + "회장", + "회전", + "횟수", + "횡단보도", + "효율적", + "후반", + "후춧가루", + "훈련", + "훨씬", + "휴식", + "휴일", + "흉내", + "흐름", + "흑백", + "흑인", + "흔적", + "흔히", + "흥미", + "흥분", + "희곡", + "희망", + "희생", + "흰색", + "힘껏" + ] + }, + {} + ], + 39: [ + function(require, module, exports) { + module.exports = [ + "ábaco", + "abdomen", + "abeja", + "abierto", + "abogado", + "abono", + "aborto", + "abrazo", + "abrir", + "abuelo", + "abuso", + "acabar", + "academia", + "acceso", + "acción", + "aceite", + "acelga", + "acento", + "aceptar", + "ácido", + "aclarar", + "acné", + "acoger", + "acoso", + "activo", + "acto", + "actriz", + "actuar", + "acudir", + "acuerdo", + "acusar", + "adicto", + "admitir", + "adoptar", + "adorno", + "aduana", + "adulto", + "aéreo", + "afectar", + "afición", + "afinar", + "afirmar", + "ágil", + "agitar", + "agonía", + "agosto", + "agotar", + "agregar", + "agrio", + "agua", + "agudo", + "águila", + "aguja", + "ahogo", + "ahorro", + "aire", + "aislar", + "ajedrez", + "ajeno", + "ajuste", + "alacrán", + "alambre", + "alarma", + "alba", + "álbum", + "alcalde", + "aldea", + "alegre", + "alejar", + "alerta", + "aleta", + "alfiler", + "alga", + "algodón", + "aliado", + "aliento", + "alivio", + "alma", + "almeja", + "almíbar", + "altar", + "alteza", + "altivo", + "alto", + "altura", + "alumno", + "alzar", + "amable", + "amante", + "amapola", + "amargo", + "amasar", + "ámbar", + "ámbito", + "ameno", + "amigo", + "amistad", + "amor", + "amparo", + "amplio", + "ancho", + "anciano", + "ancla", + "andar", + "andén", + "anemia", + "ángulo", + "anillo", + "ánimo", + "anís", + "anotar", + "antena", + "antiguo", + "antojo", + "anual", + "anular", + "anuncio", + "añadir", + "añejo", + "año", + "apagar", + "aparato", + "apetito", + "apio", + "aplicar", + "apodo", + "aporte", + "apoyo", + "aprender", + "aprobar", + "apuesta", + "apuro", + "arado", + "araña", + "arar", + "árbitro", + "árbol", + "arbusto", + "archivo", + "arco", + "arder", + "ardilla", + "arduo", + "área", + "árido", + "aries", + "armonía", + "arnés", + "aroma", + "arpa", + "arpón", + "arreglo", + "arroz", + "arruga", + "arte", + "artista", + "asa", + "asado", + "asalto", + "ascenso", + "asegurar", + "aseo", + "asesor", + "asiento", + "asilo", + "asistir", + "asno", + "asombro", + "áspero", + "astilla", + "astro", + "astuto", + "asumir", + "asunto", + "atajo", + "ataque", + "atar", + "atento", + "ateo", + "ático", + "atleta", + "átomo", + "atraer", + "atroz", + "atún", + "audaz", + "audio", + "auge", + "aula", + "aumento", + "ausente", + "autor", + "aval", + "avance", + "avaro", + "ave", + "avellana", + "avena", + "avestruz", + "avión", + "aviso", + "ayer", + "ayuda", + "ayuno", + "azafrán", + "azar", + "azote", + "azúcar", + "azufre", + "azul", + "baba", + "babor", + "bache", + "bahía", + "baile", + "bajar", + "balanza", + "balcón", + "balde", + "bambú", + "banco", + "banda", + "baño", + "barba", + "barco", + "barniz", + "barro", + "báscula", + "bastón", + "basura", + "batalla", + "batería", + "batir", + "batuta", + "baúl", + "bazar", + "bebé", + "bebida", + "bello", + "besar", + "beso", + "bestia", + "bicho", + "bien", + "bingo", + "blanco", + "bloque", + "blusa", + "boa", + "bobina", + "bobo", + "boca", + "bocina", + "boda", + "bodega", + "boina", + "bola", + "bolero", + "bolsa", + "bomba", + "bondad", + "bonito", + "bono", + "bonsái", + "borde", + "borrar", + "bosque", + "bote", + "botín", + "bóveda", + "bozal", + "bravo", + "brazo", + "brecha", + "breve", + "brillo", + "brinco", + "brisa", + "broca", + "broma", + "bronce", + "brote", + "bruja", + "brusco", + "bruto", + "buceo", + "bucle", + "bueno", + "buey", + "bufanda", + "bufón", + "búho", + "buitre", + "bulto", + "burbuja", + "burla", + "burro", + "buscar", + "butaca", + "buzón", + "caballo", + "cabeza", + "cabina", + "cabra", + "cacao", + "cadáver", + "cadena", + "caer", + "café", + "caída", + "caimán", + "caja", + "cajón", + "cal", + "calamar", + "calcio", + "caldo", + "calidad", + "calle", + "calma", + "calor", + "calvo", + "cama", + "cambio", + "camello", + "camino", + "campo", + "cáncer", + "candil", + "canela", + "canguro", + "canica", + "canto", + "caña", + "cañón", + "caoba", + "caos", + "capaz", + "capitán", + "capote", + "captar", + "capucha", + "cara", + "carbón", + "cárcel", + "careta", + "carga", + "cariño", + "carne", + "carpeta", + "carro", + "carta", + "casa", + "casco", + "casero", + "caspa", + "castor", + "catorce", + "catre", + "caudal", + "causa", + "cazo", + "cebolla", + "ceder", + "cedro", + "celda", + "célebre", + "celoso", + "célula", + "cemento", + "ceniza", + "centro", + "cerca", + "cerdo", + "cereza", + "cero", + "cerrar", + "certeza", + "césped", + "cetro", + "chacal", + "chaleco", + "champú", + "chancla", + "chapa", + "charla", + "chico", + "chiste", + "chivo", + "choque", + "choza", + "chuleta", + "chupar", + "ciclón", + "ciego", + "cielo", + "cien", + "cierto", + "cifra", + "cigarro", + "cima", + "cinco", + "cine", + "cinta", + "ciprés", + "circo", + "ciruela", + "cisne", + "cita", + "ciudad", + "clamor", + "clan", + "claro", + "clase", + "clave", + "cliente", + "clima", + "clínica", + "cobre", + "cocción", + "cochino", + "cocina", + "coco", + "código", + "codo", + "cofre", + "coger", + "cohete", + "cojín", + "cojo", + "cola", + "colcha", + "colegio", + "colgar", + "colina", + "collar", + "colmo", + "columna", + "combate", + "comer", + "comida", + "cómodo", + "compra", + "conde", + "conejo", + "conga", + "conocer", + "consejo", + "contar", + "copa", + "copia", + "corazón", + "corbata", + "corcho", + "cordón", + "corona", + "correr", + "coser", + "cosmos", + "costa", + "cráneo", + "cráter", + "crear", + "crecer", + "creído", + "crema", + "cría", + "crimen", + "cripta", + "crisis", + "cromo", + "crónica", + "croqueta", + "crudo", + "cruz", + "cuadro", + "cuarto", + "cuatro", + "cubo", + "cubrir", + "cuchara", + "cuello", + "cuento", + "cuerda", + "cuesta", + "cueva", + "cuidar", + "culebra", + "culpa", + "culto", + "cumbre", + "cumplir", + "cuna", + "cuneta", + "cuota", + "cupón", + "cúpula", + "curar", + "curioso", + "curso", + "curva", + "cutis", + "dama", + "danza", + "dar", + "dardo", + "dátil", + "deber", + "débil", + "década", + "decir", + "dedo", + "defensa", + "definir", + "dejar", + "delfín", + "delgado", + "delito", + "demora", + "denso", + "dental", + "deporte", + "derecho", + "derrota", + "desayuno", + "deseo", + "desfile", + "desnudo", + "destino", + "desvío", + "detalle", + "detener", + "deuda", + "día", + "diablo", + "diadema", + "diamante", + "diana", + "diario", + "dibujo", + "dictar", + "diente", + "dieta", + "diez", + "difícil", + "digno", + "dilema", + "diluir", + "dinero", + "directo", + "dirigir", + "disco", + "diseño", + "disfraz", + "diva", + "divino", + "doble", + "doce", + "dolor", + "domingo", + "don", + "donar", + "dorado", + "dormir", + "dorso", + "dos", + "dosis", + "dragón", + "droga", + "ducha", + "duda", + "duelo", + "dueño", + "dulce", + "dúo", + "duque", + "durar", + "dureza", + "duro", + "ébano", + "ebrio", + "echar", + "eco", + "ecuador", + "edad", + "edición", + "edificio", + "editor", + "educar", + "efecto", + "eficaz", + "eje", + "ejemplo", + "elefante", + "elegir", + "elemento", + "elevar", + "elipse", + "élite", + "elixir", + "elogio", + "eludir", + "embudo", + "emitir", + "emoción", + "empate", + "empeño", + "empleo", + "empresa", + "enano", + "encargo", + "enchufe", + "encía", + "enemigo", + "enero", + "enfado", + "enfermo", + "engaño", + "enigma", + "enlace", + "enorme", + "enredo", + "ensayo", + "enseñar", + "entero", + "entrar", + "envase", + "envío", + "época", + "equipo", + "erizo", + "escala", + "escena", + "escolar", + "escribir", + "escudo", + "esencia", + "esfera", + "esfuerzo", + "espada", + "espejo", + "espía", + "esposa", + "espuma", + "esquí", + "estar", + "este", + "estilo", + "estufa", + "etapa", + "eterno", + "ética", + "etnia", + "evadir", + "evaluar", + "evento", + "evitar", + "exacto", + "examen", + "exceso", + "excusa", + "exento", + "exigir", + "exilio", + "existir", + "éxito", + "experto", + "explicar", + "exponer", + "extremo", + "fábrica", + "fábula", + "fachada", + "fácil", + "factor", + "faena", + "faja", + "falda", + "fallo", + "falso", + "faltar", + "fama", + "familia", + "famoso", + "faraón", + "farmacia", + "farol", + "farsa", + "fase", + "fatiga", + "fauna", + "favor", + "fax", + "febrero", + "fecha", + "feliz", + "feo", + "feria", + "feroz", + "fértil", + "fervor", + "festín", + "fiable", + "fianza", + "fiar", + "fibra", + "ficción", + "ficha", + "fideo", + "fiebre", + "fiel", + "fiera", + "fiesta", + "figura", + "fijar", + "fijo", + "fila", + "filete", + "filial", + "filtro", + "fin", + "finca", + "fingir", + "finito", + "firma", + "flaco", + "flauta", + "flecha", + "flor", + "flota", + "fluir", + "flujo", + "flúor", + "fobia", + "foca", + "fogata", + "fogón", + "folio", + "folleto", + "fondo", + "forma", + "forro", + "fortuna", + "forzar", + "fosa", + "foto", + "fracaso", + "frágil", + "franja", + "frase", + "fraude", + "freír", + "freno", + "fresa", + "frío", + "frito", + "fruta", + "fuego", + "fuente", + "fuerza", + "fuga", + "fumar", + "función", + "funda", + "furgón", + "furia", + "fusil", + "fútbol", + "futuro", + "gacela", + "gafas", + "gaita", + "gajo", + "gala", + "galería", + "gallo", + "gamba", + "ganar", + "gancho", + "ganga", + "ganso", + "garaje", + "garza", + "gasolina", + "gastar", + "gato", + "gavilán", + "gemelo", + "gemir", + "gen", + "género", + "genio", + "gente", + "geranio", + "gerente", + "germen", + "gesto", + "gigante", + "gimnasio", + "girar", + "giro", + "glaciar", + "globo", + "gloria", + "gol", + "golfo", + "goloso", + "golpe", + "goma", + "gordo", + "gorila", + "gorra", + "gota", + "goteo", + "gozar", + "grada", + "gráfico", + "grano", + "grasa", + "gratis", + "grave", + "grieta", + "grillo", + "gripe", + "gris", + "grito", + "grosor", + "grúa", + "grueso", + "grumo", + "grupo", + "guante", + "guapo", + "guardia", + "guerra", + "guía", + "guiño", + "guion", + "guiso", + "guitarra", + "gusano", + "gustar", + "haber", + "hábil", + "hablar", + "hacer", + "hacha", + "hada", + "hallar", + "hamaca", + "harina", + "haz", + "hazaña", + "hebilla", + "hebra", + "hecho", + "helado", + "helio", + "hembra", + "herir", + "hermano", + "héroe", + "hervir", + "hielo", + "hierro", + "hígado", + "higiene", + "hijo", + "himno", + "historia", + "hocico", + "hogar", + "hoguera", + "hoja", + "hombre", + "hongo", + "honor", + "honra", + "hora", + "hormiga", + "horno", + "hostil", + "hoyo", + "hueco", + "huelga", + "huerta", + "hueso", + "huevo", + "huida", + "huir", + "humano", + "húmedo", + "humilde", + "humo", + "hundir", + "huracán", + "hurto", + "icono", + "ideal", + "idioma", + "ídolo", + "iglesia", + "iglú", + "igual", + "ilegal", + "ilusión", + "imagen", + "imán", + "imitar", + "impar", + "imperio", + "imponer", + "impulso", + "incapaz", + "índice", + "inerte", + "infiel", + "informe", + "ingenio", + "inicio", + "inmenso", + "inmune", + "innato", + "insecto", + "instante", + "interés", + "íntimo", + "intuir", + "inútil", + "invierno", + "ira", + "iris", + "ironía", + "isla", + "islote", + "jabalí", + "jabón", + "jamón", + "jarabe", + "jardín", + "jarra", + "jaula", + "jazmín", + "jefe", + "jeringa", + "jinete", + "jornada", + "joroba", + "joven", + "joya", + "juerga", + "jueves", + "juez", + "jugador", + "jugo", + "juguete", + "juicio", + "junco", + "jungla", + "junio", + "juntar", + "júpiter", + "jurar", + "justo", + "juvenil", + "juzgar", + "kilo", + "koala", + "labio", + "lacio", + "lacra", + "lado", + "ladrón", + "lagarto", + "lágrima", + "laguna", + "laico", + "lamer", + "lámina", + "lámpara", + "lana", + "lancha", + "langosta", + "lanza", + "lápiz", + "largo", + "larva", + "lástima", + "lata", + "látex", + "latir", + "laurel", + "lavar", + "lazo", + "leal", + "lección", + "leche", + "lector", + "leer", + "legión", + "legumbre", + "lejano", + "lengua", + "lento", + "leña", + "león", + "leopardo", + "lesión", + "letal", + "letra", + "leve", + "leyenda", + "libertad", + "libro", + "licor", + "líder", + "lidiar", + "lienzo", + "liga", + "ligero", + "lima", + "límite", + "limón", + "limpio", + "lince", + "lindo", + "línea", + "lingote", + "lino", + "linterna", + "líquido", + "liso", + "lista", + "litera", + "litio", + "litro", + "llaga", + "llama", + "llanto", + "llave", + "llegar", + "llenar", + "llevar", + "llorar", + "llover", + "lluvia", + "lobo", + "loción", + "loco", + "locura", + "lógica", + "logro", + "lombriz", + "lomo", + "lonja", + "lote", + "lucha", + "lucir", + "lugar", + "lujo", + "luna", + "lunes", + "lupa", + "lustro", + "luto", + "luz", + "maceta", + "macho", + "madera", + "madre", + "maduro", + "maestro", + "mafia", + "magia", + "mago", + "maíz", + "maldad", + "maleta", + "malla", + "malo", + "mamá", + "mambo", + "mamut", + "manco", + "mando", + "manejar", + "manga", + "maniquí", + "manjar", + "mano", + "manso", + "manta", + "mañana", + "mapa", + "máquina", + "mar", + "marco", + "marea", + "marfil", + "margen", + "marido", + "mármol", + "marrón", + "martes", + "marzo", + "masa", + "máscara", + "masivo", + "matar", + "materia", + "matiz", + "matriz", + "máximo", + "mayor", + "mazorca", + "mecha", + "medalla", + "medio", + "médula", + "mejilla", + "mejor", + "melena", + "melón", + "memoria", + "menor", + "mensaje", + "mente", + "menú", + "mercado", + "merengue", + "mérito", + "mes", + "mesón", + "meta", + "meter", + "método", + "metro", + "mezcla", + "miedo", + "miel", + "miembro", + "miga", + "mil", + "milagro", + "militar", + "millón", + "mimo", + "mina", + "minero", + "mínimo", + "minuto", + "miope", + "mirar", + "misa", + "miseria", + "misil", + "mismo", + "mitad", + "mito", + "mochila", + "moción", + "moda", + "modelo", + "moho", + "mojar", + "molde", + "moler", + "molino", + "momento", + "momia", + "monarca", + "moneda", + "monja", + "monto", + "moño", + "morada", + "morder", + "moreno", + "morir", + "morro", + "morsa", + "mortal", + "mosca", + "mostrar", + "motivo", + "mover", + "móvil", + "mozo", + "mucho", + "mudar", + "mueble", + "muela", + "muerte", + "muestra", + "mugre", + "mujer", + "mula", + "muleta", + "multa", + "mundo", + "muñeca", + "mural", + "muro", + "músculo", + "museo", + "musgo", + "música", + "muslo", + "nácar", + "nación", + "nadar", + "naipe", + "naranja", + "nariz", + "narrar", + "nasal", + "natal", + "nativo", + "natural", + "náusea", + "naval", + "nave", + "navidad", + "necio", + "néctar", + "negar", + "negocio", + "negro", + "neón", + "nervio", + "neto", + "neutro", + "nevar", + "nevera", + "nicho", + "nido", + "niebla", + "nieto", + "niñez", + "niño", + "nítido", + "nivel", + "nobleza", + "noche", + "nómina", + "noria", + "norma", + "norte", + "nota", + "noticia", + "novato", + "novela", + "novio", + "nube", + "nuca", + "núcleo", + "nudillo", + "nudo", + "nuera", + "nueve", + "nuez", + "nulo", + "número", + "nutria", + "oasis", + "obeso", + "obispo", + "objeto", + "obra", + "obrero", + "observar", + "obtener", + "obvio", + "oca", + "ocaso", + "océano", + "ochenta", + "ocho", + "ocio", + "ocre", + "octavo", + "octubre", + "oculto", + "ocupar", + "ocurrir", + "odiar", + "odio", + "odisea", + "oeste", + "ofensa", + "oferta", + "oficio", + "ofrecer", + "ogro", + "oído", + "oír", + "ojo", + "ola", + "oleada", + "olfato", + "olivo", + "olla", + "olmo", + "olor", + "olvido", + "ombligo", + "onda", + "onza", + "opaco", + "opción", + "ópera", + "opinar", + "oponer", + "optar", + "óptica", + "opuesto", + "oración", + "orador", + "oral", + "órbita", + "orca", + "orden", + "oreja", + "órgano", + "orgía", + "orgullo", + "oriente", + "origen", + "orilla", + "oro", + "orquesta", + "oruga", + "osadía", + "oscuro", + "osezno", + "oso", + "ostra", + "otoño", + "otro", + "oveja", + "óvulo", + "óxido", + "oxígeno", + "oyente", + "ozono", + "pacto", + "padre", + "paella", + "página", + "pago", + "país", + "pájaro", + "palabra", + "palco", + "paleta", + "pálido", + "palma", + "paloma", + "palpar", + "pan", + "panal", + "pánico", + "pantera", + "pañuelo", + "papá", + "papel", + "papilla", + "paquete", + "parar", + "parcela", + "pared", + "parir", + "paro", + "párpado", + "parque", + "párrafo", + "parte", + "pasar", + "paseo", + "pasión", + "paso", + "pasta", + "pata", + "patio", + "patria", + "pausa", + "pauta", + "pavo", + "payaso", + "peatón", + "pecado", + "pecera", + "pecho", + "pedal", + "pedir", + "pegar", + "peine", + "pelar", + "peldaño", + "pelea", + "peligro", + "pellejo", + "pelo", + "peluca", + "pena", + "pensar", + "peñón", + "peón", + "peor", + "pepino", + "pequeño", + "pera", + "percha", + "perder", + "pereza", + "perfil", + "perico", + "perla", + "permiso", + "perro", + "persona", + "pesa", + "pesca", + "pésimo", + "pestaña", + "pétalo", + "petróleo", + "pez", + "pezuña", + "picar", + "pichón", + "pie", + "piedra", + "pierna", + "pieza", + "pijama", + "pilar", + "piloto", + "pimienta", + "pino", + "pintor", + "pinza", + "piña", + "piojo", + "pipa", + "pirata", + "pisar", + "piscina", + "piso", + "pista", + "pitón", + "pizca", + "placa", + "plan", + "plata", + "playa", + "plaza", + "pleito", + "pleno", + "plomo", + "pluma", + "plural", + "pobre", + "poco", + "poder", + "podio", + "poema", + "poesía", + "poeta", + "polen", + "policía", + "pollo", + "polvo", + "pomada", + "pomelo", + "pomo", + "pompa", + "poner", + "porción", + "portal", + "posada", + "poseer", + "posible", + "poste", + "potencia", + "potro", + "pozo", + "prado", + "precoz", + "pregunta", + "premio", + "prensa", + "preso", + "previo", + "primo", + "príncipe", + "prisión", + "privar", + "proa", + "probar", + "proceso", + "producto", + "proeza", + "profesor", + "programa", + "prole", + "promesa", + "pronto", + "propio", + "próximo", + "prueba", + "público", + "puchero", + "pudor", + "pueblo", + "puerta", + "puesto", + "pulga", + "pulir", + "pulmón", + "pulpo", + "pulso", + "puma", + "punto", + "puñal", + "puño", + "pupa", + "pupila", + "puré", + "quedar", + "queja", + "quemar", + "querer", + "queso", + "quieto", + "química", + "quince", + "quitar", + "rábano", + "rabia", + "rabo", + "ración", + "radical", + "raíz", + "rama", + "rampa", + "rancho", + "rango", + "rapaz", + "rápido", + "rapto", + "rasgo", + "raspa", + "rato", + "rayo", + "raza", + "razón", + "reacción", + "realidad", + "rebaño", + "rebote", + "recaer", + "receta", + "rechazo", + "recoger", + "recreo", + "recto", + "recurso", + "red", + "redondo", + "reducir", + "reflejo", + "reforma", + "refrán", + "refugio", + "regalo", + "regir", + "regla", + "regreso", + "rehén", + "reino", + "reír", + "reja", + "relato", + "relevo", + "relieve", + "relleno", + "reloj", + "remar", + "remedio", + "remo", + "rencor", + "rendir", + "renta", + "reparto", + "repetir", + "reposo", + "reptil", + "res", + "rescate", + "resina", + "respeto", + "resto", + "resumen", + "retiro", + "retorno", + "retrato", + "reunir", + "revés", + "revista", + "rey", + "rezar", + "rico", + "riego", + "rienda", + "riesgo", + "rifa", + "rígido", + "rigor", + "rincón", + "riñón", + "río", + "riqueza", + "risa", + "ritmo", + "rito", + "rizo", + "roble", + "roce", + "rociar", + "rodar", + "rodeo", + "rodilla", + "roer", + "rojizo", + "rojo", + "romero", + "romper", + "ron", + "ronco", + "ronda", + "ropa", + "ropero", + "rosa", + "rosca", + "rostro", + "rotar", + "rubí", + "rubor", + "rudo", + "rueda", + "rugir", + "ruido", + "ruina", + "ruleta", + "rulo", + "rumbo", + "rumor", + "ruptura", + "ruta", + "rutina", + "sábado", + "saber", + "sabio", + "sable", + "sacar", + "sagaz", + "sagrado", + "sala", + "saldo", + "salero", + "salir", + "salmón", + "salón", + "salsa", + "salto", + "salud", + "salvar", + "samba", + "sanción", + "sandía", + "sanear", + "sangre", + "sanidad", + "sano", + "santo", + "sapo", + "saque", + "sardina", + "sartén", + "sastre", + "satán", + "sauna", + "saxofón", + "sección", + "seco", + "secreto", + "secta", + "sed", + "seguir", + "seis", + "sello", + "selva", + "semana", + "semilla", + "senda", + "sensor", + "señal", + "señor", + "separar", + "sepia", + "sequía", + "ser", + "serie", + "sermón", + "servir", + "sesenta", + "sesión", + "seta", + "setenta", + "severo", + "sexo", + "sexto", + "sidra", + "siesta", + "siete", + "siglo", + "signo", + "sílaba", + "silbar", + "silencio", + "silla", + "símbolo", + "simio", + "sirena", + "sistema", + "sitio", + "situar", + "sobre", + "socio", + "sodio", + "sol", + "solapa", + "soldado", + "soledad", + "sólido", + "soltar", + "solución", + "sombra", + "sondeo", + "sonido", + "sonoro", + "sonrisa", + "sopa", + "soplar", + "soporte", + "sordo", + "sorpresa", + "sorteo", + "sostén", + "sótano", + "suave", + "subir", + "suceso", + "sudor", + "suegra", + "suelo", + "sueño", + "suerte", + "sufrir", + "sujeto", + "sultán", + "sumar", + "superar", + "suplir", + "suponer", + "supremo", + "sur", + "surco", + "sureño", + "surgir", + "susto", + "sutil", + "tabaco", + "tabique", + "tabla", + "tabú", + "taco", + "tacto", + "tajo", + "talar", + "talco", + "talento", + "talla", + "talón", + "tamaño", + "tambor", + "tango", + "tanque", + "tapa", + "tapete", + "tapia", + "tapón", + "taquilla", + "tarde", + "tarea", + "tarifa", + "tarjeta", + "tarot", + "tarro", + "tarta", + "tatuaje", + "tauro", + "taza", + "tazón", + "teatro", + "techo", + "tecla", + "técnica", + "tejado", + "tejer", + "tejido", + "tela", + "teléfono", + "tema", + "temor", + "templo", + "tenaz", + "tender", + "tener", + "tenis", + "tenso", + "teoría", + "terapia", + "terco", + "término", + "ternura", + "terror", + "tesis", + "tesoro", + "testigo", + "tetera", + "texto", + "tez", + "tibio", + "tiburón", + "tiempo", + "tienda", + "tierra", + "tieso", + "tigre", + "tijera", + "tilde", + "timbre", + "tímido", + "timo", + "tinta", + "tío", + "típico", + "tipo", + "tira", + "tirón", + "titán", + "títere", + "título", + "tiza", + "toalla", + "tobillo", + "tocar", + "tocino", + "todo", + "toga", + "toldo", + "tomar", + "tono", + "tonto", + "topar", + "tope", + "toque", + "tórax", + "torero", + "tormenta", + "torneo", + "toro", + "torpedo", + "torre", + "torso", + "tortuga", + "tos", + "tosco", + "toser", + "tóxico", + "trabajo", + "tractor", + "traer", + "tráfico", + "trago", + "traje", + "tramo", + "trance", + "trato", + "trauma", + "trazar", + "trébol", + "tregua", + "treinta", + "tren", + "trepar", + "tres", + "tribu", + "trigo", + "tripa", + "triste", + "triunfo", + "trofeo", + "trompa", + "tronco", + "tropa", + "trote", + "trozo", + "truco", + "trueno", + "trufa", + "tubería", + "tubo", + "tuerto", + "tumba", + "tumor", + "túnel", + "túnica", + "turbina", + "turismo", + "turno", + "tutor", + "ubicar", + "úlcera", + "umbral", + "unidad", + "unir", + "universo", + "uno", + "untar", + "uña", + "urbano", + "urbe", + "urgente", + "urna", + "usar", + "usuario", + "útil", + "utopía", + "uva", + "vaca", + "vacío", + "vacuna", + "vagar", + "vago", + "vaina", + "vajilla", + "vale", + "válido", + "valle", + "valor", + "válvula", + "vampiro", + "vara", + "variar", + "varón", + "vaso", + "vecino", + "vector", + "vehículo", + "veinte", + "vejez", + "vela", + "velero", + "veloz", + "vena", + "vencer", + "venda", + "veneno", + "vengar", + "venir", + "venta", + "venus", + "ver", + "verano", + "verbo", + "verde", + "vereda", + "verja", + "verso", + "verter", + "vía", + "viaje", + "vibrar", + "vicio", + "víctima", + "vida", + "vídeo", + "vidrio", + "viejo", + "viernes", + "vigor", + "vil", + "villa", + "vinagre", + "vino", + "viñedo", + "violín", + "viral", + "virgo", + "virtud", + "visor", + "víspera", + "vista", + "vitamina", + "viudo", + "vivaz", + "vivero", + "vivir", + "vivo", + "volcán", + "volumen", + "volver", + "voraz", + "votar", + "voto", + "voz", + "vuelo", + "vulgar", + "yacer", + "yate", + "yegua", + "yema", + "yerno", + "yeso", + "yodo", + "yoga", + "yogur", + "zafiro", + "zanja", + "zapato", + "zarza", + "zona", + "zorro", + "zumo", + "zurdo" + ] + }, + {} + ], + 40: [ + function(require, module, exports) { + var Buffer = require("safe-buffer").Buffer + var Transform = require("stream").Transform + var StringDecoder = require("string_decoder").StringDecoder + var inherits = require("inherits") + function CipherBase(hashMode) { + Transform.call(this) + this.hashMode = typeof hashMode === "string" + if (this.hashMode) { + this[hashMode] = this._finalOrDigest + } else { + this.final = this._finalOrDigest + } + if (this._final) { + this.__final = this._final + this._final = null + } + this._decoder = null + this._encoding = null + } + inherits(CipherBase, Transform) + CipherBase.prototype.update = function(data, inputEnc, outputEnc) { + if (typeof data === "string") { + data = Buffer.from(data, inputEnc) + } + var outData = this._update(data) + if (this.hashMode) return this + if (outputEnc) { + outData = this._toString(outData, outputEnc) + } + return outData + } + CipherBase.prototype.setAutoPadding = function() {} + CipherBase.prototype.getAuthTag = function() { + throw new Error("trying to get auth tag in unsupported state") + } + CipherBase.prototype.setAuthTag = function() { + throw new Error("trying to set auth tag in unsupported state") + } + CipherBase.prototype.setAAD = function() { + throw new Error("trying to set aad in unsupported state") + } + CipherBase.prototype._transform = function(data, _, next) { + var err + try { + if (this.hashMode) { + this._update(data) + } else { + this.push(this._update(data)) + } + } catch (e) { + err = e + } finally { + next(err) + } + } + CipherBase.prototype._flush = function(done) { + var err + try { + this.push(this.__final()) + } catch (e) { + err = e + } + done(err) + } + CipherBase.prototype._finalOrDigest = function(outputEnc) { + var outData = this.__final() || Buffer.alloc(0) + if (outputEnc) { + outData = this._toString(outData, outputEnc, true) + } + return outData + } + CipherBase.prototype._toString = function(value, enc, fin) { + if (!this._decoder) { + this._decoder = new StringDecoder(enc) + this._encoding = enc + } + if (this._encoding !== enc) + throw new Error("can't switch encodings") + var out = this._decoder.write(value) + if (fin) { + out += this._decoder.end() + } + return out + } + module.exports = CipherBase + }, + { inherits: 44, "safe-buffer": 53, stream: 27, string_decoder: 28 } + ], + 41: [ + function(require, module, exports) { + "use strict" + var inherits = require("inherits") + var MD5 = require("md5.js") + var RIPEMD160 = require("ripemd160") + var sha = require("sha.js") + var Base = require("cipher-base") + function Hash(hash) { + Base.call(this, "digest") + this._hash = hash + } + inherits(Hash, Base) + Hash.prototype._update = function(data) { + this._hash.update(data) + } + Hash.prototype._final = function() { + return this._hash.digest() + } + module.exports = function createHash(alg) { + alg = alg.toLowerCase() + if (alg === "md5") return new MD5() + if (alg === "rmd160" || alg === "ripemd160") return new RIPEMD160() + return new Hash(sha(alg)) + } + }, + { + "cipher-base": 40, + inherits: 44, + "md5.js": 45, + ripemd160: 52, + "sha.js": 55 + } + ], + 42: [ + function(require, module, exports) { + var MD5 = require("md5.js") + module.exports = function(buffer) { + return new MD5().update(buffer).digest() + } + }, + { "md5.js": 45 } + ], + 43: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var Transform = require("stream").Transform + var inherits = require("inherits") + function throwIfNotStringOrBuffer(val, prefix) { + if (!Buffer.isBuffer(val) && typeof val !== "string") { + throw new TypeError(prefix + " must be a string or a buffer") + } + } + function HashBase(blockSize) { + Transform.call(this) + this._block = Buffer.allocUnsafe(blockSize) + this._blockSize = blockSize + this._blockOffset = 0 + this._length = [0, 0, 0, 0] + this._finalized = false + } + inherits(HashBase, Transform) + HashBase.prototype._transform = function(chunk, encoding, callback) { + var error = null + try { + this.update(chunk, encoding) + } catch (err) { + error = err + } + callback(error) + } + HashBase.prototype._flush = function(callback) { + var error = null + try { + this.push(this.digest()) + } catch (err) { + error = err + } + callback(error) + } + HashBase.prototype.update = function(data, encoding) { + throwIfNotStringOrBuffer(data, "Data") + if (this._finalized) throw new Error("Digest already called") + if (!Buffer.isBuffer(data)) data = Buffer.from(data, encoding) + var block = this._block + var offset = 0 + while ( + this._blockOffset + data.length - offset >= + this._blockSize + ) { + for (var i = this._blockOffset; i < this._blockSize; ) + block[i++] = data[offset++] + this._update() + this._blockOffset = 0 + } + while (offset < data.length) + block[this._blockOffset++] = data[offset++] + for (var j = 0, carry = data.length * 8; carry > 0; ++j) { + this._length[j] += carry + carry = (this._length[j] / 4294967296) | 0 + if (carry > 0) this._length[j] -= 4294967296 * carry + } + return this + } + HashBase.prototype._update = function() { + throw new Error("_update is not implemented") + } + HashBase.prototype.digest = function(encoding) { + if (this._finalized) throw new Error("Digest already called") + this._finalized = true + var digest = this._digest() + if (encoding !== undefined) digest = digest.toString(encoding) + this._block.fill(0) + this._blockOffset = 0 + for (var i = 0; i < 4; ++i) this._length[i] = 0 + return digest + } + HashBase.prototype._digest = function() { + throw new Error("_digest is not implemented") + } + module.exports = HashBase + }, + { inherits: 44, "safe-buffer": 53, stream: 27 } + ], + 44: [ + function(require, module, exports) { + arguments[4][7][0].apply(exports, arguments) + }, + { dup: 7 } + ], + 45: [ + function(require, module, exports) { + "use strict" + var inherits = require("inherits") + var HashBase = require("hash-base") + var Buffer = require("safe-buffer").Buffer + var ARRAY16 = new Array(16) + function MD5() { + HashBase.call(this, 64) + this._a = 1732584193 + this._b = 4023233417 + this._c = 2562383102 + this._d = 271733878 + } + inherits(MD5, HashBase) + MD5.prototype._update = function() { + var M = ARRAY16 + for (var i = 0; i < 16; ++i) M[i] = this._block.readInt32LE(i * 4) + var a = this._a + var b = this._b + var c = this._c + var d = this._d + a = fnF(a, b, c, d, M[0], 3614090360, 7) + d = fnF(d, a, b, c, M[1], 3905402710, 12) + c = fnF(c, d, a, b, M[2], 606105819, 17) + b = fnF(b, c, d, a, M[3], 3250441966, 22) + a = fnF(a, b, c, d, M[4], 4118548399, 7) + d = fnF(d, a, b, c, M[5], 1200080426, 12) + c = fnF(c, d, a, b, M[6], 2821735955, 17) + b = fnF(b, c, d, a, M[7], 4249261313, 22) + a = fnF(a, b, c, d, M[8], 1770035416, 7) + d = fnF(d, a, b, c, M[9], 2336552879, 12) + c = fnF(c, d, a, b, M[10], 4294925233, 17) + b = fnF(b, c, d, a, M[11], 2304563134, 22) + a = fnF(a, b, c, d, M[12], 1804603682, 7) + d = fnF(d, a, b, c, M[13], 4254626195, 12) + c = fnF(c, d, a, b, M[14], 2792965006, 17) + b = fnF(b, c, d, a, M[15], 1236535329, 22) + a = fnG(a, b, c, d, M[1], 4129170786, 5) + d = fnG(d, a, b, c, M[6], 3225465664, 9) + c = fnG(c, d, a, b, M[11], 643717713, 14) + b = fnG(b, c, d, a, M[0], 3921069994, 20) + a = fnG(a, b, c, d, M[5], 3593408605, 5) + d = fnG(d, a, b, c, M[10], 38016083, 9) + c = fnG(c, d, a, b, M[15], 3634488961, 14) + b = fnG(b, c, d, a, M[4], 3889429448, 20) + a = fnG(a, b, c, d, M[9], 568446438, 5) + d = fnG(d, a, b, c, M[14], 3275163606, 9) + c = fnG(c, d, a, b, M[3], 4107603335, 14) + b = fnG(b, c, d, a, M[8], 1163531501, 20) + a = fnG(a, b, c, d, M[13], 2850285829, 5) + d = fnG(d, a, b, c, M[2], 4243563512, 9) + c = fnG(c, d, a, b, M[7], 1735328473, 14) + b = fnG(b, c, d, a, M[12], 2368359562, 20) + a = fnH(a, b, c, d, M[5], 4294588738, 4) + d = fnH(d, a, b, c, M[8], 2272392833, 11) + c = fnH(c, d, a, b, M[11], 1839030562, 16) + b = fnH(b, c, d, a, M[14], 4259657740, 23) + a = fnH(a, b, c, d, M[1], 2763975236, 4) + d = fnH(d, a, b, c, M[4], 1272893353, 11) + c = fnH(c, d, a, b, M[7], 4139469664, 16) + b = fnH(b, c, d, a, M[10], 3200236656, 23) + a = fnH(a, b, c, d, M[13], 681279174, 4) + d = fnH(d, a, b, c, M[0], 3936430074, 11) + c = fnH(c, d, a, b, M[3], 3572445317, 16) + b = fnH(b, c, d, a, M[6], 76029189, 23) + a = fnH(a, b, c, d, M[9], 3654602809, 4) + d = fnH(d, a, b, c, M[12], 3873151461, 11) + c = fnH(c, d, a, b, M[15], 530742520, 16) + b = fnH(b, c, d, a, M[2], 3299628645, 23) + a = fnI(a, b, c, d, M[0], 4096336452, 6) + d = fnI(d, a, b, c, M[7], 1126891415, 10) + c = fnI(c, d, a, b, M[14], 2878612391, 15) + b = fnI(b, c, d, a, M[5], 4237533241, 21) + a = fnI(a, b, c, d, M[12], 1700485571, 6) + d = fnI(d, a, b, c, M[3], 2399980690, 10) + c = fnI(c, d, a, b, M[10], 4293915773, 15) + b = fnI(b, c, d, a, M[1], 2240044497, 21) + a = fnI(a, b, c, d, M[8], 1873313359, 6) + d = fnI(d, a, b, c, M[15], 4264355552, 10) + c = fnI(c, d, a, b, M[6], 2734768916, 15) + b = fnI(b, c, d, a, M[13], 1309151649, 21) + a = fnI(a, b, c, d, M[4], 4149444226, 6) + d = fnI(d, a, b, c, M[11], 3174756917, 10) + c = fnI(c, d, a, b, M[2], 718787259, 15) + b = fnI(b, c, d, a, M[9], 3951481745, 21) + this._a = (this._a + a) | 0 + this._b = (this._b + b) | 0 + this._c = (this._c + c) | 0 + this._d = (this._d + d) | 0 + } + MD5.prototype._digest = function() { + this._block[this._blockOffset++] = 128 + if (this._blockOffset > 56) { + this._block.fill(0, this._blockOffset, 64) + this._update() + this._blockOffset = 0 + } + this._block.fill(0, this._blockOffset, 56) + this._block.writeUInt32LE(this._length[0], 56) + this._block.writeUInt32LE(this._length[1], 60) + this._update() + var buffer = Buffer.allocUnsafe(16) + buffer.writeInt32LE(this._a, 0) + buffer.writeInt32LE(this._b, 4) + buffer.writeInt32LE(this._c, 8) + buffer.writeInt32LE(this._d, 12) + return buffer + } + function rotl(x, n) { + return (x << n) | (x >>> (32 - n)) + } + function fnF(a, b, c, d, m, k, s) { + return (rotl((a + ((b & c) | (~b & d)) + m + k) | 0, s) + b) | 0 + } + function fnG(a, b, c, d, m, k, s) { + return (rotl((a + ((b & d) | (c & ~d)) + m + k) | 0, s) + b) | 0 + } + function fnH(a, b, c, d, m, k, s) { + return (rotl((a + (b ^ c ^ d) + m + k) | 0, s) + b) | 0 + } + function fnI(a, b, c, d, m, k, s) { + return (rotl((a + (c ^ (b | ~d)) + m + k) | 0, s) + b) | 0 + } + module.exports = MD5 + }, + { "hash-base": 43, inherits: 44, "safe-buffer": 53 } + ], + 46: [ + function(require, module, exports) { + exports.pbkdf2 = require("./lib/async") + exports.pbkdf2Sync = require("./lib/sync") + }, + { "./lib/async": 47, "./lib/sync": 50 } + ], + 47: [ + function(require, module, exports) { + ;(function(process, global) { + var checkParameters = require("./precondition") + var defaultEncoding = require("./default-encoding") + var sync = require("./sync") + var Buffer = require("safe-buffer").Buffer + var ZERO_BUF + var subtle = global.crypto && global.crypto.subtle + var toBrowser = { + sha: "SHA-1", + "sha-1": "SHA-1", + sha1: "SHA-1", + sha256: "SHA-256", + "sha-256": "SHA-256", + sha384: "SHA-384", + "sha-384": "SHA-384", + "sha-512": "SHA-512", + sha512: "SHA-512" + } + var checks = [] + function checkNative(algo) { + if (global.process && !global.process.browser) { + return Promise.resolve(false) + } + if (!subtle || !subtle.importKey || !subtle.deriveBits) { + return Promise.resolve(false) + } + if (checks[algo] !== undefined) { + return checks[algo] + } + ZERO_BUF = ZERO_BUF || Buffer.alloc(8) + var prom = browserPbkdf2(ZERO_BUF, ZERO_BUF, 10, 128, algo) + .then(function() { + return true + }) + .catch(function() { + return false + }) + checks[algo] = prom + return prom + } + function browserPbkdf2(password, salt, iterations, length, algo) { + return subtle + .importKey("raw", password, { name: "PBKDF2" }, false, [ + "deriveBits" + ]) + .then(function(key) { + return subtle.deriveBits( + { + name: "PBKDF2", + salt: salt, + iterations: iterations, + hash: { name: algo } + }, + key, + length << 3 + ) + }) + .then(function(res) { + return Buffer.from(res) + }) + } + function resolvePromise(promise, callback) { + promise.then( + function(out) { + process.nextTick(function() { + callback(null, out) + }) + }, + function(e) { + process.nextTick(function() { + callback(e) + }) + } + ) + } + module.exports = function( + password, + salt, + iterations, + keylen, + digest, + callback + ) { + if (typeof digest === "function") { + callback = digest + digest = undefined + } + digest = digest || "sha1" + var algo = toBrowser[digest.toLowerCase()] + if (!algo || typeof global.Promise !== "function") { + return process.nextTick(function() { + var out + try { + out = sync(password, salt, iterations, keylen, digest) + } catch (e) { + return callback(e) + } + callback(null, out) + }) + } + checkParameters(password, salt, iterations, keylen) + if (typeof callback !== "function") + throw new Error("No callback provided to pbkdf2") + if (!Buffer.isBuffer(password)) + password = Buffer.from(password, defaultEncoding) + if (!Buffer.isBuffer(salt)) + salt = Buffer.from(salt, defaultEncoding) + resolvePromise( + checkNative(algo).then(function(resp) { + if (resp) + return browserPbkdf2( + password, + salt, + iterations, + keylen, + algo + ) + return sync(password, salt, iterations, keylen, digest) + }), + callback + ) + } + }.call( + this, + require("_process"), + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + { + "./default-encoding": 48, + "./precondition": 49, + "./sync": 50, + _process: 11, + "safe-buffer": 53 + } + ], + 48: [ + function(require, module, exports) { + ;(function(process) { + var defaultEncoding + if (process.browser) { + defaultEncoding = "utf-8" + } else { + var pVersionMajor = parseInt( + process.version.split(".")[0].slice(1), + 10 + ) + defaultEncoding = pVersionMajor >= 6 ? "utf-8" : "binary" + } + module.exports = defaultEncoding + }.call(this, require("_process"))) + }, + { _process: 11 } + ], + 49: [ + function(require, module, exports) { + ;(function(Buffer) { + var MAX_ALLOC = Math.pow(2, 30) - 1 + function checkBuffer(buf, name) { + if (typeof buf !== "string" && !Buffer.isBuffer(buf)) { + throw new TypeError(name + " must be a buffer or string") + } + } + module.exports = function(password, salt, iterations, keylen) { + checkBuffer(password, "Password") + checkBuffer(salt, "Salt") + if (typeof iterations !== "number") { + throw new TypeError("Iterations not a number") + } + if (iterations < 0) { + throw new TypeError("Bad iterations") + } + if (typeof keylen !== "number") { + throw new TypeError("Key length not a number") + } + if (keylen < 0 || keylen > MAX_ALLOC || keylen !== keylen) { + throw new TypeError("Bad key length") + } + } + }.call(this, { + isBuffer: require("../../../../../.nvm/versions/node/v9.11.2/lib/node_modules/browserify/node_modules/is-buffer/index.js") + })) + }, + { + "../../../../../.nvm/versions/node/v9.11.2/lib/node_modules/browserify/node_modules/is-buffer/index.js": 8 + } + ], + 50: [ + function(require, module, exports) { + var md5 = require("create-hash/md5") + var RIPEMD160 = require("ripemd160") + var sha = require("sha.js") + var checkParameters = require("./precondition") + var defaultEncoding = require("./default-encoding") + var Buffer = require("safe-buffer").Buffer + var ZEROS = Buffer.alloc(128) + var sizes = { + md5: 16, + sha1: 20, + sha224: 28, + sha256: 32, + sha384: 48, + sha512: 64, + rmd160: 20, + ripemd160: 20 + } + function Hmac(alg, key, saltLen) { + var hash = getDigest(alg) + var blocksize = alg === "sha512" || alg === "sha384" ? 128 : 64 + if (key.length > blocksize) { + key = hash(key) + } else if (key.length < blocksize) { + key = Buffer.concat([key, ZEROS], blocksize) + } + var ipad = Buffer.allocUnsafe(blocksize + sizes[alg]) + var opad = Buffer.allocUnsafe(blocksize + sizes[alg]) + for (var i = 0; i < blocksize; i++) { + ipad[i] = key[i] ^ 54 + opad[i] = key[i] ^ 92 + } + var ipad1 = Buffer.allocUnsafe(blocksize + saltLen + 4) + ipad.copy(ipad1, 0, 0, blocksize) + this.ipad1 = ipad1 + this.ipad2 = ipad + this.opad = opad + this.alg = alg + this.blocksize = blocksize + this.hash = hash + this.size = sizes[alg] + } + Hmac.prototype.run = function(data, ipad) { + data.copy(ipad, this.blocksize) + var h = this.hash(ipad) + h.copy(this.opad, this.blocksize) + return this.hash(this.opad) + } + function getDigest(alg) { + function shaFunc(data) { + return sha(alg) + .update(data) + .digest() + } + function rmd160Func(data) { + return new RIPEMD160().update(data).digest() + } + if (alg === "rmd160" || alg === "ripemd160") return rmd160Func + if (alg === "md5") return md5 + return shaFunc + } + function pbkdf2(password, salt, iterations, keylen, digest) { + checkParameters(password, salt, iterations, keylen) + if (!Buffer.isBuffer(password)) + password = Buffer.from(password, defaultEncoding) + if (!Buffer.isBuffer(salt)) + salt = Buffer.from(salt, defaultEncoding) + digest = digest || "sha1" + var hmac = new Hmac(digest, password, salt.length) + var DK = Buffer.allocUnsafe(keylen) + var block1 = Buffer.allocUnsafe(salt.length + 4) + salt.copy(block1, 0, 0, salt.length) + var destPos = 0 + var hLen = sizes[digest] + var l = Math.ceil(keylen / hLen) + for (var i = 1; i <= l; i++) { + block1.writeUInt32BE(i, salt.length) + var T = hmac.run(block1, hmac.ipad1) + var U = T + for (var j = 1; j < iterations; j++) { + U = hmac.run(U, hmac.ipad2) + for (var k = 0; k < hLen; k++) T[k] ^= U[k] + } + T.copy(DK, destPos) + destPos += hLen + } + return DK + } + module.exports = pbkdf2 + }, + { + "./default-encoding": 48, + "./precondition": 49, + "create-hash/md5": 42, + ripemd160: 52, + "safe-buffer": 53, + "sha.js": 55 + } + ], + 51: [ + function(require, module, exports) { + ;(function(process, global) { + "use strict" + function oldBrowser() { + throw new Error( + "Secure random number generation is not supported by this browser.\nUse Chrome, Firefox or Internet Explorer 11" + ) + } + var Buffer = require("safe-buffer").Buffer + var crypto = global.crypto || global.msCrypto + if (crypto && crypto.getRandomValues) { + module.exports = randomBytes + } else { + module.exports = oldBrowser + } + function randomBytes(size, cb) { + if (size > 65536) + throw new Error("requested too many random bytes") + var rawBytes = new global.Uint8Array(size) + if (size > 0) { + crypto.getRandomValues(rawBytes) + } + var bytes = Buffer.from(rawBytes.buffer) + if (typeof cb === "function") { + return process.nextTick(function() { + cb(null, bytes) + }) + } + return bytes + } + }.call( + this, + require("_process"), + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + { _process: 11, "safe-buffer": 53 } + ], + 52: [ + function(require, module, exports) { + "use strict" + var Buffer = require("buffer").Buffer + var inherits = require("inherits") + var HashBase = require("hash-base") + var ARRAY16 = new Array(16) + var zl = [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 7, + 4, + 13, + 1, + 10, + 6, + 15, + 3, + 12, + 0, + 9, + 5, + 2, + 14, + 11, + 8, + 3, + 10, + 14, + 4, + 9, + 15, + 8, + 1, + 2, + 7, + 0, + 6, + 13, + 11, + 5, + 12, + 1, + 9, + 11, + 10, + 0, + 8, + 12, + 4, + 13, + 3, + 7, + 15, + 14, + 5, + 6, + 2, + 4, + 0, + 5, + 9, + 7, + 12, + 2, + 10, + 14, + 1, + 3, + 8, + 11, + 6, + 15, + 13 + ] + var zr = [ + 5, + 14, + 7, + 0, + 9, + 2, + 11, + 4, + 13, + 6, + 15, + 8, + 1, + 10, + 3, + 12, + 6, + 11, + 3, + 7, + 0, + 13, + 5, + 10, + 14, + 15, + 8, + 12, + 4, + 9, + 1, + 2, + 15, + 5, + 1, + 3, + 7, + 14, + 6, + 9, + 11, + 8, + 12, + 2, + 10, + 0, + 4, + 13, + 8, + 6, + 4, + 1, + 3, + 11, + 15, + 0, + 5, + 12, + 2, + 13, + 9, + 7, + 10, + 14, + 12, + 15, + 10, + 4, + 1, + 5, + 8, + 7, + 6, + 2, + 13, + 14, + 0, + 3, + 9, + 11 + ] + var sl = [ + 11, + 14, + 15, + 12, + 5, + 8, + 7, + 9, + 11, + 13, + 14, + 15, + 6, + 7, + 9, + 8, + 7, + 6, + 8, + 13, + 11, + 9, + 7, + 15, + 7, + 12, + 15, + 9, + 11, + 7, + 13, + 12, + 11, + 13, + 6, + 7, + 14, + 9, + 13, + 15, + 14, + 8, + 13, + 6, + 5, + 12, + 7, + 5, + 11, + 12, + 14, + 15, + 14, + 15, + 9, + 8, + 9, + 14, + 5, + 6, + 8, + 6, + 5, + 12, + 9, + 15, + 5, + 11, + 6, + 8, + 13, + 12, + 5, + 12, + 13, + 14, + 11, + 8, + 5, + 6 + ] + var sr = [ + 8, + 9, + 9, + 11, + 13, + 15, + 15, + 5, + 7, + 7, + 8, + 11, + 14, + 14, + 12, + 6, + 9, + 13, + 15, + 7, + 12, + 8, + 9, + 11, + 7, + 7, + 12, + 7, + 6, + 15, + 13, + 11, + 9, + 7, + 15, + 11, + 8, + 6, + 6, + 14, + 12, + 13, + 5, + 14, + 13, + 13, + 7, + 5, + 15, + 5, + 8, + 11, + 14, + 14, + 6, + 14, + 6, + 9, + 12, + 9, + 12, + 5, + 15, + 8, + 8, + 5, + 12, + 9, + 12, + 5, + 14, + 6, + 8, + 13, + 6, + 5, + 15, + 13, + 11, + 11 + ] + var hl = [0, 1518500249, 1859775393, 2400959708, 2840853838] + var hr = [1352829926, 1548603684, 1836072691, 2053994217, 0] + function RIPEMD160() { + HashBase.call(this, 64) + this._a = 1732584193 + this._b = 4023233417 + this._c = 2562383102 + this._d = 271733878 + this._e = 3285377520 + } + inherits(RIPEMD160, HashBase) + RIPEMD160.prototype._update = function() { + var words = ARRAY16 + for (var j = 0; j < 16; ++j) + words[j] = this._block.readInt32LE(j * 4) + var al = this._a | 0 + var bl = this._b | 0 + var cl = this._c | 0 + var dl = this._d | 0 + var el = this._e | 0 + var ar = this._a | 0 + var br = this._b | 0 + var cr = this._c | 0 + var dr = this._d | 0 + var er = this._e | 0 + for (var i = 0; i < 80; i += 1) { + var tl + var tr + if (i < 16) { + tl = fn1(al, bl, cl, dl, el, words[zl[i]], hl[0], sl[i]) + tr = fn5(ar, br, cr, dr, er, words[zr[i]], hr[0], sr[i]) + } else if (i < 32) { + tl = fn2(al, bl, cl, dl, el, words[zl[i]], hl[1], sl[i]) + tr = fn4(ar, br, cr, dr, er, words[zr[i]], hr[1], sr[i]) + } else if (i < 48) { + tl = fn3(al, bl, cl, dl, el, words[zl[i]], hl[2], sl[i]) + tr = fn3(ar, br, cr, dr, er, words[zr[i]], hr[2], sr[i]) + } else if (i < 64) { + tl = fn4(al, bl, cl, dl, el, words[zl[i]], hl[3], sl[i]) + tr = fn2(ar, br, cr, dr, er, words[zr[i]], hr[3], sr[i]) + } else { + tl = fn5(al, bl, cl, dl, el, words[zl[i]], hl[4], sl[i]) + tr = fn1(ar, br, cr, dr, er, words[zr[i]], hr[4], sr[i]) + } + al = el + el = dl + dl = rotl(cl, 10) + cl = bl + bl = tl + ar = er + er = dr + dr = rotl(cr, 10) + cr = br + br = tr + } + var t = (this._b + cl + dr) | 0 + this._b = (this._c + dl + er) | 0 + this._c = (this._d + el + ar) | 0 + this._d = (this._e + al + br) | 0 + this._e = (this._a + bl + cr) | 0 + this._a = t + } + RIPEMD160.prototype._digest = function() { + this._block[this._blockOffset++] = 128 + if (this._blockOffset > 56) { + this._block.fill(0, this._blockOffset, 64) + this._update() + this._blockOffset = 0 + } + this._block.fill(0, this._blockOffset, 56) + this._block.writeUInt32LE(this._length[0], 56) + this._block.writeUInt32LE(this._length[1], 60) + this._update() + var buffer = Buffer.alloc ? Buffer.alloc(20) : new Buffer(20) + buffer.writeInt32LE(this._a, 0) + buffer.writeInt32LE(this._b, 4) + buffer.writeInt32LE(this._c, 8) + buffer.writeInt32LE(this._d, 12) + buffer.writeInt32LE(this._e, 16) + return buffer + } + function rotl(x, n) { + return (x << n) | (x >>> (32 - n)) + } + function fn1(a, b, c, d, e, m, k, s) { + return (rotl((a + (b ^ c ^ d) + m + k) | 0, s) + e) | 0 + } + function fn2(a, b, c, d, e, m, k, s) { + return (rotl((a + ((b & c) | (~b & d)) + m + k) | 0, s) + e) | 0 + } + function fn3(a, b, c, d, e, m, k, s) { + return (rotl((a + ((b | ~c) ^ d) + m + k) | 0, s) + e) | 0 + } + function fn4(a, b, c, d, e, m, k, s) { + return (rotl((a + ((b & d) | (c & ~d)) + m + k) | 0, s) + e) | 0 + } + function fn5(a, b, c, d, e, m, k, s) { + return (rotl((a + (b ^ (c | ~d)) + m + k) | 0, s) + e) | 0 + } + module.exports = RIPEMD160 + }, + { buffer: 3, "hash-base": 43, inherits: 44 } + ], + 53: [ + function(require, module, exports) { + arguments[4][26][0].apply(exports, arguments) + }, + { buffer: 3, dup: 26 } + ], + 54: [ + function(require, module, exports) { + var Buffer = require("safe-buffer").Buffer + function Hash(blockSize, finalSize) { + this._block = Buffer.alloc(blockSize) + this._finalSize = finalSize + this._blockSize = blockSize + this._len = 0 + } + Hash.prototype.update = function(data, enc) { + if (typeof data === "string") { + enc = enc || "utf8" + data = Buffer.from(data, enc) + } + var block = this._block + var blockSize = this._blockSize + var length = data.length + var accum = this._len + for (var offset = 0; offset < length; ) { + var assigned = accum % blockSize + var remainder = Math.min(length - offset, blockSize - assigned) + for (var i = 0; i < remainder; i++) { + block[assigned + i] = data[offset + i] + } + accum += remainder + offset += remainder + if (accum % blockSize === 0) { + this._update(block) + } + } + this._len += length + return this + } + Hash.prototype.digest = function(enc) { + var rem = this._len % this._blockSize + this._block[rem] = 128 + this._block.fill(0, rem + 1) + if (rem >= this._finalSize) { + this._update(this._block) + this._block.fill(0) + } + var bits = this._len * 8 + if (bits <= 4294967295) { + this._block.writeUInt32BE(bits, this._blockSize - 4) + } else { + var lowBits = (bits & 4294967295) >>> 0 + var highBits = (bits - lowBits) / 4294967296 + this._block.writeUInt32BE(highBits, this._blockSize - 8) + this._block.writeUInt32BE(lowBits, this._blockSize - 4) + } + this._update(this._block) + var hash = this._hash() + return enc ? hash.toString(enc) : hash + } + Hash.prototype._update = function() { + throw new Error("_update must be implemented by subclass") + } + module.exports = Hash + }, + { "safe-buffer": 53 } + ], + 55: [ + function(require, module, exports) { + var exports = (module.exports = function SHA(algorithm) { + algorithm = algorithm.toLowerCase() + var Algorithm = exports[algorithm] + if (!Algorithm) + throw new Error( + algorithm + " is not supported (we accept pull requests)" + ) + return new Algorithm() + }) + exports.sha = require("./sha") + exports.sha1 = require("./sha1") + exports.sha224 = require("./sha224") + exports.sha256 = require("./sha256") + exports.sha384 = require("./sha384") + exports.sha512 = require("./sha512") + }, + { + "./sha": 56, + "./sha1": 57, + "./sha224": 58, + "./sha256": 59, + "./sha384": 60, + "./sha512": 61 + } + ], + 56: [ + function(require, module, exports) { + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + var K = [1518500249, 1859775393, 2400959708 | 0, 3395469782 | 0] + var W = new Array(80) + function Sha() { + this.init() + this._w = W + Hash.call(this, 64, 56) + } + inherits(Sha, Hash) + Sha.prototype.init = function() { + this._a = 1732584193 + this._b = 4023233417 + this._c = 2562383102 + this._d = 271733878 + this._e = 3285377520 + return this + } + function rotl5(num) { + return (num << 5) | (num >>> 27) + } + function rotl30(num) { + return (num << 30) | (num >>> 2) + } + function ft(s, b, c, d) { + if (s === 0) return (b & c) | (~b & d) + if (s === 2) return (b & c) | (b & d) | (c & d) + return b ^ c ^ d + } + Sha.prototype._update = function(M) { + var W = this._w + var a = this._a | 0 + var b = this._b | 0 + var c = this._c | 0 + var d = this._d | 0 + var e = this._e | 0 + for (var i = 0; i < 16; ++i) W[i] = M.readInt32BE(i * 4) + for (; i < 80; ++i) + W[i] = W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16] + for (var j = 0; j < 80; ++j) { + var s = ~~(j / 20) + var t = (rotl5(a) + ft(s, b, c, d) + e + W[j] + K[s]) | 0 + e = d + d = c + c = rotl30(b) + b = a + a = t + } + this._a = (a + this._a) | 0 + this._b = (b + this._b) | 0 + this._c = (c + this._c) | 0 + this._d = (d + this._d) | 0 + this._e = (e + this._e) | 0 + } + Sha.prototype._hash = function() { + var H = Buffer.allocUnsafe(20) + H.writeInt32BE(this._a | 0, 0) + H.writeInt32BE(this._b | 0, 4) + H.writeInt32BE(this._c | 0, 8) + H.writeInt32BE(this._d | 0, 12) + H.writeInt32BE(this._e | 0, 16) + return H + } + module.exports = Sha + }, + { "./hash": 54, inherits: 44, "safe-buffer": 53 } + ], + 57: [ + function(require, module, exports) { + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + var K = [1518500249, 1859775393, 2400959708 | 0, 3395469782 | 0] + var W = new Array(80) + function Sha1() { + this.init() + this._w = W + Hash.call(this, 64, 56) + } + inherits(Sha1, Hash) + Sha1.prototype.init = function() { + this._a = 1732584193 + this._b = 4023233417 + this._c = 2562383102 + this._d = 271733878 + this._e = 3285377520 + return this + } + function rotl1(num) { + return (num << 1) | (num >>> 31) + } + function rotl5(num) { + return (num << 5) | (num >>> 27) + } + function rotl30(num) { + return (num << 30) | (num >>> 2) + } + function ft(s, b, c, d) { + if (s === 0) return (b & c) | (~b & d) + if (s === 2) return (b & c) | (b & d) | (c & d) + return b ^ c ^ d + } + Sha1.prototype._update = function(M) { + var W = this._w + var a = this._a | 0 + var b = this._b | 0 + var c = this._c | 0 + var d = this._d | 0 + var e = this._e | 0 + for (var i = 0; i < 16; ++i) W[i] = M.readInt32BE(i * 4) + for (; i < 80; ++i) + W[i] = rotl1(W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16]) + for (var j = 0; j < 80; ++j) { + var s = ~~(j / 20) + var t = (rotl5(a) + ft(s, b, c, d) + e + W[j] + K[s]) | 0 + e = d + d = c + c = rotl30(b) + b = a + a = t + } + this._a = (a + this._a) | 0 + this._b = (b + this._b) | 0 + this._c = (c + this._c) | 0 + this._d = (d + this._d) | 0 + this._e = (e + this._e) | 0 + } + Sha1.prototype._hash = function() { + var H = Buffer.allocUnsafe(20) + H.writeInt32BE(this._a | 0, 0) + H.writeInt32BE(this._b | 0, 4) + H.writeInt32BE(this._c | 0, 8) + H.writeInt32BE(this._d | 0, 12) + H.writeInt32BE(this._e | 0, 16) + return H + } + module.exports = Sha1 + }, + { "./hash": 54, inherits: 44, "safe-buffer": 53 } + ], + 58: [ + function(require, module, exports) { + var inherits = require("inherits") + var Sha256 = require("./sha256") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + var W = new Array(64) + function Sha224() { + this.init() + this._w = W + Hash.call(this, 64, 56) + } + inherits(Sha224, Sha256) + Sha224.prototype.init = function() { + this._a = 3238371032 + this._b = 914150663 + this._c = 812702999 + this._d = 4144912697 + this._e = 4290775857 + this._f = 1750603025 + this._g = 1694076839 + this._h = 3204075428 + return this + } + Sha224.prototype._hash = function() { + var H = Buffer.allocUnsafe(28) + H.writeInt32BE(this._a, 0) + H.writeInt32BE(this._b, 4) + H.writeInt32BE(this._c, 8) + H.writeInt32BE(this._d, 12) + H.writeInt32BE(this._e, 16) + H.writeInt32BE(this._f, 20) + H.writeInt32BE(this._g, 24) + return H + } + module.exports = Sha224 + }, + { "./hash": 54, "./sha256": 59, inherits: 44, "safe-buffer": 53 } + ], + 59: [ + function(require, module, exports) { + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + var K = [ + 1116352408, + 1899447441, + 3049323471, + 3921009573, + 961987163, + 1508970993, + 2453635748, + 2870763221, + 3624381080, + 310598401, + 607225278, + 1426881987, + 1925078388, + 2162078206, + 2614888103, + 3248222580, + 3835390401, + 4022224774, + 264347078, + 604807628, + 770255983, + 1249150122, + 1555081692, + 1996064986, + 2554220882, + 2821834349, + 2952996808, + 3210313671, + 3336571891, + 3584528711, + 113926993, + 338241895, + 666307205, + 773529912, + 1294757372, + 1396182291, + 1695183700, + 1986661051, + 2177026350, + 2456956037, + 2730485921, + 2820302411, + 3259730800, + 3345764771, + 3516065817, + 3600352804, + 4094571909, + 275423344, + 430227734, + 506948616, + 659060556, + 883997877, + 958139571, + 1322822218, + 1537002063, + 1747873779, + 1955562222, + 2024104815, + 2227730452, + 2361852424, + 2428436474, + 2756734187, + 3204031479, + 3329325298 + ] + var W = new Array(64) + function Sha256() { + this.init() + this._w = W + Hash.call(this, 64, 56) + } + inherits(Sha256, Hash) + Sha256.prototype.init = function() { + this._a = 1779033703 + this._b = 3144134277 + this._c = 1013904242 + this._d = 2773480762 + this._e = 1359893119 + this._f = 2600822924 + this._g = 528734635 + this._h = 1541459225 + return this + } + function ch(x, y, z) { + return z ^ (x & (y ^ z)) + } + function maj(x, y, z) { + return (x & y) | (z & (x | y)) + } + function sigma0(x) { + return ( + ((x >>> 2) | (x << 30)) ^ + ((x >>> 13) | (x << 19)) ^ + ((x >>> 22) | (x << 10)) + ) + } + function sigma1(x) { + return ( + ((x >>> 6) | (x << 26)) ^ + ((x >>> 11) | (x << 21)) ^ + ((x >>> 25) | (x << 7)) + ) + } + function gamma0(x) { + return ( + ((x >>> 7) | (x << 25)) ^ ((x >>> 18) | (x << 14)) ^ (x >>> 3) + ) + } + function gamma1(x) { + return ( + ((x >>> 17) | (x << 15)) ^ ((x >>> 19) | (x << 13)) ^ (x >>> 10) + ) + } + Sha256.prototype._update = function(M) { + var W = this._w + var a = this._a | 0 + var b = this._b | 0 + var c = this._c | 0 + var d = this._d | 0 + var e = this._e | 0 + var f = this._f | 0 + var g = this._g | 0 + var h = this._h | 0 + for (var i = 0; i < 16; ++i) W[i] = M.readInt32BE(i * 4) + for (; i < 64; ++i) + W[i] = + (gamma1(W[i - 2]) + W[i - 7] + gamma0(W[i - 15]) + W[i - 16]) | + 0 + for (var j = 0; j < 64; ++j) { + var T1 = (h + sigma1(e) + ch(e, f, g) + K[j] + W[j]) | 0 + var T2 = (sigma0(a) + maj(a, b, c)) | 0 + h = g + g = f + f = e + e = (d + T1) | 0 + d = c + c = b + b = a + a = (T1 + T2) | 0 + } + this._a = (a + this._a) | 0 + this._b = (b + this._b) | 0 + this._c = (c + this._c) | 0 + this._d = (d + this._d) | 0 + this._e = (e + this._e) | 0 + this._f = (f + this._f) | 0 + this._g = (g + this._g) | 0 + this._h = (h + this._h) | 0 + } + Sha256.prototype._hash = function() { + var H = Buffer.allocUnsafe(32) + H.writeInt32BE(this._a, 0) + H.writeInt32BE(this._b, 4) + H.writeInt32BE(this._c, 8) + H.writeInt32BE(this._d, 12) + H.writeInt32BE(this._e, 16) + H.writeInt32BE(this._f, 20) + H.writeInt32BE(this._g, 24) + H.writeInt32BE(this._h, 28) + return H + } + module.exports = Sha256 + }, + { "./hash": 54, inherits: 44, "safe-buffer": 53 } + ], + 60: [ + function(require, module, exports) { + var inherits = require("inherits") + var SHA512 = require("./sha512") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + var W = new Array(160) + function Sha384() { + this.init() + this._w = W + Hash.call(this, 128, 112) + } + inherits(Sha384, SHA512) + Sha384.prototype.init = function() { + this._ah = 3418070365 + this._bh = 1654270250 + this._ch = 2438529370 + this._dh = 355462360 + this._eh = 1731405415 + this._fh = 2394180231 + this._gh = 3675008525 + this._hh = 1203062813 + this._al = 3238371032 + this._bl = 914150663 + this._cl = 812702999 + this._dl = 4144912697 + this._el = 4290775857 + this._fl = 1750603025 + this._gl = 1694076839 + this._hl = 3204075428 + return this + } + Sha384.prototype._hash = function() { + var H = Buffer.allocUnsafe(48) + function writeInt64BE(h, l, offset) { + H.writeInt32BE(h, offset) + H.writeInt32BE(l, offset + 4) + } + writeInt64BE(this._ah, this._al, 0) + writeInt64BE(this._bh, this._bl, 8) + writeInt64BE(this._ch, this._cl, 16) + writeInt64BE(this._dh, this._dl, 24) + writeInt64BE(this._eh, this._el, 32) + writeInt64BE(this._fh, this._fl, 40) + return H + } + module.exports = Sha384 + }, + { "./hash": 54, "./sha512": 61, inherits: 44, "safe-buffer": 53 } + ], + 61: [ + function(require, module, exports) { + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + var K = [ + 1116352408, + 3609767458, + 1899447441, + 602891725, + 3049323471, + 3964484399, + 3921009573, + 2173295548, + 961987163, + 4081628472, + 1508970993, + 3053834265, + 2453635748, + 2937671579, + 2870763221, + 3664609560, + 3624381080, + 2734883394, + 310598401, + 1164996542, + 607225278, + 1323610764, + 1426881987, + 3590304994, + 1925078388, + 4068182383, + 2162078206, + 991336113, + 2614888103, + 633803317, + 3248222580, + 3479774868, + 3835390401, + 2666613458, + 4022224774, + 944711139, + 264347078, + 2341262773, + 604807628, + 2007800933, + 770255983, + 1495990901, + 1249150122, + 1856431235, + 1555081692, + 3175218132, + 1996064986, + 2198950837, + 2554220882, + 3999719339, + 2821834349, + 766784016, + 2952996808, + 2566594879, + 3210313671, + 3203337956, + 3336571891, + 1034457026, + 3584528711, + 2466948901, + 113926993, + 3758326383, + 338241895, + 168717936, + 666307205, + 1188179964, + 773529912, + 1546045734, + 1294757372, + 1522805485, + 1396182291, + 2643833823, + 1695183700, + 2343527390, + 1986661051, + 1014477480, + 2177026350, + 1206759142, + 2456956037, + 344077627, + 2730485921, + 1290863460, + 2820302411, + 3158454273, + 3259730800, + 3505952657, + 3345764771, + 106217008, + 3516065817, + 3606008344, + 3600352804, + 1432725776, + 4094571909, + 1467031594, + 275423344, + 851169720, + 430227734, + 3100823752, + 506948616, + 1363258195, + 659060556, + 3750685593, + 883997877, + 3785050280, + 958139571, + 3318307427, + 1322822218, + 3812723403, + 1537002063, + 2003034995, + 1747873779, + 3602036899, + 1955562222, + 1575990012, + 2024104815, + 1125592928, + 2227730452, + 2716904306, + 2361852424, + 442776044, + 2428436474, + 593698344, + 2756734187, + 3733110249, + 3204031479, + 2999351573, + 3329325298, + 3815920427, + 3391569614, + 3928383900, + 3515267271, + 566280711, + 3940187606, + 3454069534, + 4118630271, + 4000239992, + 116418474, + 1914138554, + 174292421, + 2731055270, + 289380356, + 3203993006, + 460393269, + 320620315, + 685471733, + 587496836, + 852142971, + 1086792851, + 1017036298, + 365543100, + 1126000580, + 2618297676, + 1288033470, + 3409855158, + 1501505948, + 4234509866, + 1607167915, + 987167468, + 1816402316, + 1246189591 + ] + var W = new Array(160) + function Sha512() { + this.init() + this._w = W + Hash.call(this, 128, 112) + } + inherits(Sha512, Hash) + Sha512.prototype.init = function() { + this._ah = 1779033703 + this._bh = 3144134277 + this._ch = 1013904242 + this._dh = 2773480762 + this._eh = 1359893119 + this._fh = 2600822924 + this._gh = 528734635 + this._hh = 1541459225 + this._al = 4089235720 + this._bl = 2227873595 + this._cl = 4271175723 + this._dl = 1595750129 + this._el = 2917565137 + this._fl = 725511199 + this._gl = 4215389547 + this._hl = 327033209 + return this + } + function Ch(x, y, z) { + return z ^ (x & (y ^ z)) + } + function maj(x, y, z) { + return (x & y) | (z & (x | y)) + } + function sigma0(x, xl) { + return ( + ((x >>> 28) | (xl << 4)) ^ + ((xl >>> 2) | (x << 30)) ^ + ((xl >>> 7) | (x << 25)) + ) + } + function sigma1(x, xl) { + return ( + ((x >>> 14) | (xl << 18)) ^ + ((x >>> 18) | (xl << 14)) ^ + ((xl >>> 9) | (x << 23)) + ) + } + function Gamma0(x, xl) { + return ( + ((x >>> 1) | (xl << 31)) ^ ((x >>> 8) | (xl << 24)) ^ (x >>> 7) + ) + } + function Gamma0l(x, xl) { + return ( + ((x >>> 1) | (xl << 31)) ^ + ((x >>> 8) | (xl << 24)) ^ + ((x >>> 7) | (xl << 25)) + ) + } + function Gamma1(x, xl) { + return ( + ((x >>> 19) | (xl << 13)) ^ ((xl >>> 29) | (x << 3)) ^ (x >>> 6) + ) + } + function Gamma1l(x, xl) { + return ( + ((x >>> 19) | (xl << 13)) ^ + ((xl >>> 29) | (x << 3)) ^ + ((x >>> 6) | (xl << 26)) + ) + } + function getCarry(a, b) { + return a >>> 0 < b >>> 0 ? 1 : 0 + } + Sha512.prototype._update = function(M) { + var W = this._w + var ah = this._ah | 0 + var bh = this._bh | 0 + var ch = this._ch | 0 + var dh = this._dh | 0 + var eh = this._eh | 0 + var fh = this._fh | 0 + var gh = this._gh | 0 + var hh = this._hh | 0 + var al = this._al | 0 + var bl = this._bl | 0 + var cl = this._cl | 0 + var dl = this._dl | 0 + var el = this._el | 0 + var fl = this._fl | 0 + var gl = this._gl | 0 + var hl = this._hl | 0 + for (var i = 0; i < 32; i += 2) { + W[i] = M.readInt32BE(i * 4) + W[i + 1] = M.readInt32BE(i * 4 + 4) + } + for (; i < 160; i += 2) { + var xh = W[i - 15 * 2] + var xl = W[i - 15 * 2 + 1] + var gamma0 = Gamma0(xh, xl) + var gamma0l = Gamma0l(xl, xh) + xh = W[i - 2 * 2] + xl = W[i - 2 * 2 + 1] + var gamma1 = Gamma1(xh, xl) + var gamma1l = Gamma1l(xl, xh) + var Wi7h = W[i - 7 * 2] + var Wi7l = W[i - 7 * 2 + 1] + var Wi16h = W[i - 16 * 2] + var Wi16l = W[i - 16 * 2 + 1] + var Wil = (gamma0l + Wi7l) | 0 + var Wih = (gamma0 + Wi7h + getCarry(Wil, gamma0l)) | 0 + Wil = (Wil + gamma1l) | 0 + Wih = (Wih + gamma1 + getCarry(Wil, gamma1l)) | 0 + Wil = (Wil + Wi16l) | 0 + Wih = (Wih + Wi16h + getCarry(Wil, Wi16l)) | 0 + W[i] = Wih + W[i + 1] = Wil + } + for (var j = 0; j < 160; j += 2) { + Wih = W[j] + Wil = W[j + 1] + var majh = maj(ah, bh, ch) + var majl = maj(al, bl, cl) + var sigma0h = sigma0(ah, al) + var sigma0l = sigma0(al, ah) + var sigma1h = sigma1(eh, el) + var sigma1l = sigma1(el, eh) + var Kih = K[j] + var Kil = K[j + 1] + var chh = Ch(eh, fh, gh) + var chl = Ch(el, fl, gl) + var t1l = (hl + sigma1l) | 0 + var t1h = (hh + sigma1h + getCarry(t1l, hl)) | 0 + t1l = (t1l + chl) | 0 + t1h = (t1h + chh + getCarry(t1l, chl)) | 0 + t1l = (t1l + Kil) | 0 + t1h = (t1h + Kih + getCarry(t1l, Kil)) | 0 + t1l = (t1l + Wil) | 0 + t1h = (t1h + Wih + getCarry(t1l, Wil)) | 0 + var t2l = (sigma0l + majl) | 0 + var t2h = (sigma0h + majh + getCarry(t2l, sigma0l)) | 0 + hh = gh + hl = gl + gh = fh + gl = fl + fh = eh + fl = el + el = (dl + t1l) | 0 + eh = (dh + t1h + getCarry(el, dl)) | 0 + dh = ch + dl = cl + ch = bh + cl = bl + bh = ah + bl = al + al = (t1l + t2l) | 0 + ah = (t1h + t2h + getCarry(al, t1l)) | 0 + } + this._al = (this._al + al) | 0 + this._bl = (this._bl + bl) | 0 + this._cl = (this._cl + cl) | 0 + this._dl = (this._dl + dl) | 0 + this._el = (this._el + el) | 0 + this._fl = (this._fl + fl) | 0 + this._gl = (this._gl + gl) | 0 + this._hl = (this._hl + hl) | 0 + this._ah = (this._ah + ah + getCarry(this._al, al)) | 0 + this._bh = (this._bh + bh + getCarry(this._bl, bl)) | 0 + this._ch = (this._ch + ch + getCarry(this._cl, cl)) | 0 + this._dh = (this._dh + dh + getCarry(this._dl, dl)) | 0 + this._eh = (this._eh + eh + getCarry(this._el, el)) | 0 + this._fh = (this._fh + fh + getCarry(this._fl, fl)) | 0 + this._gh = (this._gh + gh + getCarry(this._gl, gl)) | 0 + this._hh = (this._hh + hh + getCarry(this._hl, hl)) | 0 + } + Sha512.prototype._hash = function() { + var H = Buffer.allocUnsafe(64) + function writeInt64BE(h, l, offset) { + H.writeInt32BE(h, offset) + H.writeInt32BE(l, offset + 4) + } + writeInt64BE(this._ah, this._al, 0) + writeInt64BE(this._bh, this._bl, 8) + writeInt64BE(this._ch, this._cl, 16) + writeInt64BE(this._dh, this._dl, 24) + writeInt64BE(this._eh, this._el, 32) + writeInt64BE(this._fh, this._fl, 40) + writeInt64BE(this._gh, this._gl, 48) + writeInt64BE(this._hh, this._hl, 56) + return H + } + module.exports = Sha512 + }, + { "./hash": 54, inherits: 44, "safe-buffer": 53 } + ], + 62: [ + function(require, module, exports) { + ;(function(root) { + "use strict" + var DEFAULT_FEATURE = [null, 0, {}] + var CACHE_THRESHOLD = 10 + var SBase = 44032, + LBase = 4352, + VBase = 4449, + TBase = 4519, + LCount = 19, + VCount = 21, + TCount = 28 + var NCount = VCount * TCount + var SCount = LCount * NCount + var UChar = function(cp, feature) { + this.codepoint = cp + this.feature = feature + } + var cache = {} + var cacheCounter = [] + for (var i = 0; i <= 255; ++i) { + cacheCounter[i] = 0 + } + function fromCache(next, cp, needFeature) { + var ret = cache[cp] + if (!ret) { + ret = next(cp, needFeature) + if ( + !!ret.feature && + ++cacheCounter[(cp >> 8) & 255] > CACHE_THRESHOLD + ) { + cache[cp] = ret + } + } + return ret + } + function fromData(next, cp, needFeature) { + var hash = cp & 65280 + var dunit = UChar.udata[hash] || {} + var f = dunit[cp] + return f ? new UChar(cp, f) : new UChar(cp, DEFAULT_FEATURE) + } + function fromCpOnly(next, cp, needFeature) { + return !!needFeature ? next(cp, needFeature) : new UChar(cp, null) + } + function fromRuleBasedJamo(next, cp, needFeature) { + var j + if ( + cp < LBase || + (LBase + LCount <= cp && cp < SBase) || + SBase + SCount < cp + ) { + return next(cp, needFeature) + } + if (LBase <= cp && cp < LBase + LCount) { + var c = {} + var base = (cp - LBase) * VCount + for (j = 0; j < VCount; ++j) { + c[VBase + j] = SBase + TCount * (j + base) + } + return new UChar(cp, [, , c]) + } + var SIndex = cp - SBase + var TIndex = SIndex % TCount + var feature = [] + if (TIndex !== 0) { + feature[0] = [SBase + SIndex - TIndex, TBase + TIndex] + } else { + feature[0] = [ + LBase + Math.floor(SIndex / NCount), + VBase + Math.floor((SIndex % NCount) / TCount) + ] + feature[2] = {} + for (j = 1; j < TCount; ++j) { + feature[2][TBase + j] = cp + j + } + } + return new UChar(cp, feature) + } + function fromCpFilter(next, cp, needFeature) { + return cp < 60 || (13311 < cp && cp < 42607) + ? new UChar(cp, DEFAULT_FEATURE) + : next(cp, needFeature) + } + var strategies = [ + fromCpFilter, + fromCache, + fromCpOnly, + fromRuleBasedJamo, + fromData + ] + UChar.fromCharCode = strategies.reduceRight(function( + next, + strategy + ) { + return function(cp, needFeature) { + return strategy(next, cp, needFeature) + } + }, + null) + UChar.isHighSurrogate = function(cp) { + return cp >= 55296 && cp <= 56319 + } + UChar.isLowSurrogate = function(cp) { + return cp >= 56320 && cp <= 57343 + } + UChar.prototype.prepFeature = function() { + if (!this.feature) { + this.feature = UChar.fromCharCode(this.codepoint, true).feature + } + } + UChar.prototype.toString = function() { + if (this.codepoint < 65536) { + return String.fromCharCode(this.codepoint) + } else { + var x = this.codepoint - 65536 + return String.fromCharCode( + Math.floor(x / 1024) + 55296, + (x % 1024) + 56320 + ) + } + } + UChar.prototype.getDecomp = function() { + this.prepFeature() + return this.feature[0] || null + } + UChar.prototype.isCompatibility = function() { + this.prepFeature() + return !!this.feature[1] && this.feature[1] & (1 << 8) + } + UChar.prototype.isExclude = function() { + this.prepFeature() + return !!this.feature[1] && this.feature[1] & (1 << 9) + } + UChar.prototype.getCanonicalClass = function() { + this.prepFeature() + return !!this.feature[1] ? this.feature[1] & 255 : 0 + } + UChar.prototype.getComposite = function(following) { + this.prepFeature() + if (!this.feature[2]) { + return null + } + var cp = this.feature[2][following.codepoint] + return cp ? UChar.fromCharCode(cp) : null + } + var UCharIterator = function(str) { + this.str = str + this.cursor = 0 + } + UCharIterator.prototype.next = function() { + if (!!this.str && this.cursor < this.str.length) { + var cp = this.str.charCodeAt(this.cursor++) + var d + if ( + UChar.isHighSurrogate(cp) && + this.cursor < this.str.length && + UChar.isLowSurrogate((d = this.str.charCodeAt(this.cursor))) + ) { + cp = (cp - 55296) * 1024 + (d - 56320) + 65536 + ++this.cursor + } + return UChar.fromCharCode(cp) + } else { + this.str = null + return null + } + } + var RecursDecompIterator = function(it, cano) { + this.it = it + this.canonical = cano + this.resBuf = [] + } + RecursDecompIterator.prototype.next = function() { + function recursiveDecomp(cano, uchar) { + var decomp = uchar.getDecomp() + if (!!decomp && !(cano && uchar.isCompatibility())) { + var ret = [] + for (var i = 0; i < decomp.length; ++i) { + var a = recursiveDecomp(cano, UChar.fromCharCode(decomp[i])) + ret = ret.concat(a) + } + return ret + } else { + return [uchar] + } + } + if (this.resBuf.length === 0) { + var uchar = this.it.next() + if (!uchar) { + return null + } + this.resBuf = recursiveDecomp(this.canonical, uchar) + } + return this.resBuf.shift() + } + var DecompIterator = function(it) { + this.it = it + this.resBuf = [] + } + DecompIterator.prototype.next = function() { + var cc + if (this.resBuf.length === 0) { + do { + var uchar = this.it.next() + if (!uchar) { + break + } + cc = uchar.getCanonicalClass() + var inspt = this.resBuf.length + if (cc !== 0) { + for (; inspt > 0; --inspt) { + var uchar2 = this.resBuf[inspt - 1] + var cc2 = uchar2.getCanonicalClass() + if (cc2 <= cc) { + break + } + } + } + this.resBuf.splice(inspt, 0, uchar) + } while (cc !== 0) + } + return this.resBuf.shift() + } + var CompIterator = function(it) { + this.it = it + this.procBuf = [] + this.resBuf = [] + this.lastClass = null + } + CompIterator.prototype.next = function() { + while (this.resBuf.length === 0) { + var uchar = this.it.next() + if (!uchar) { + this.resBuf = this.procBuf + this.procBuf = [] + break + } + if (this.procBuf.length === 0) { + this.lastClass = uchar.getCanonicalClass() + this.procBuf.push(uchar) + } else { + var starter = this.procBuf[0] + var composite = starter.getComposite(uchar) + var cc = uchar.getCanonicalClass() + if ( + !!composite && + (this.lastClass < cc || this.lastClass === 0) + ) { + this.procBuf[0] = composite + } else { + if (cc === 0) { + this.resBuf = this.procBuf + this.procBuf = [] + } + this.lastClass = cc + this.procBuf.push(uchar) + } + } + } + return this.resBuf.shift() + } + var createIterator = function(mode, str) { + switch (mode) { + case "NFD": + return new DecompIterator( + new RecursDecompIterator(new UCharIterator(str), true) + ) + case "NFKD": + return new DecompIterator( + new RecursDecompIterator(new UCharIterator(str), false) + ) + case "NFC": + return new CompIterator( + new DecompIterator( + new RecursDecompIterator(new UCharIterator(str), true) + ) + ) + case "NFKC": + return new CompIterator( + new DecompIterator( + new RecursDecompIterator(new UCharIterator(str), false) + ) + ) + } + throw mode + " is invalid" + } + var normalize = function(mode, str) { + var it = createIterator(mode, str) + var ret = "" + var uchar + while (!!(uchar = it.next())) { + ret += uchar.toString() + } + return ret + } + function nfd(str) { + return normalize("NFD", str) + } + function nfkd(str) { + return normalize("NFKD", str) + } + function nfc(str) { + return normalize("NFC", str) + } + function nfkc(str) { + return normalize("NFKC", str) + } + UChar.udata = { + 0: { + 60: [, , { 824: 8814 }], + 61: [, , { 824: 8800 }], + 62: [, , { 824: 8815 }], + 65: [ + , + , + { + 768: 192, + 769: 193, + 770: 194, + 771: 195, + 772: 256, + 774: 258, + 775: 550, + 776: 196, + 777: 7842, + 778: 197, + 780: 461, + 783: 512, + 785: 514, + 803: 7840, + 805: 7680, + 808: 260 + } + ], + 66: [, , { 775: 7682, 803: 7684, 817: 7686 }], + 67: [, , { 769: 262, 770: 264, 775: 266, 780: 268, 807: 199 }], + 68: [ + , + , + { + 775: 7690, + 780: 270, + 803: 7692, + 807: 7696, + 813: 7698, + 817: 7694 + } + ], + 69: [ + , + , + { + 768: 200, + 769: 201, + 770: 202, + 771: 7868, + 772: 274, + 774: 276, + 775: 278, + 776: 203, + 777: 7866, + 780: 282, + 783: 516, + 785: 518, + 803: 7864, + 807: 552, + 808: 280, + 813: 7704, + 816: 7706 + } + ], + 70: [, , { 775: 7710 }], + 71: [ + , + , + { + 769: 500, + 770: 284, + 772: 7712, + 774: 286, + 775: 288, + 780: 486, + 807: 290 + } + ], + 72: [ + , + , + { + 770: 292, + 775: 7714, + 776: 7718, + 780: 542, + 803: 7716, + 807: 7720, + 814: 7722 + } + ], + 73: [ + , + , + { + 768: 204, + 769: 205, + 770: 206, + 771: 296, + 772: 298, + 774: 300, + 775: 304, + 776: 207, + 777: 7880, + 780: 463, + 783: 520, + 785: 522, + 803: 7882, + 808: 302, + 816: 7724 + } + ], + 74: [, , { 770: 308 }], + 75: [ + , + , + { 769: 7728, 780: 488, 803: 7730, 807: 310, 817: 7732 } + ], + 76: [ + , + , + { + 769: 313, + 780: 317, + 803: 7734, + 807: 315, + 813: 7740, + 817: 7738 + } + ], + 77: [, , { 769: 7742, 775: 7744, 803: 7746 }], + 78: [ + , + , + { + 768: 504, + 769: 323, + 771: 209, + 775: 7748, + 780: 327, + 803: 7750, + 807: 325, + 813: 7754, + 817: 7752 + } + ], + 79: [ + , + , + { + 768: 210, + 769: 211, + 770: 212, + 771: 213, + 772: 332, + 774: 334, + 775: 558, + 776: 214, + 777: 7886, + 779: 336, + 780: 465, + 783: 524, + 785: 526, + 795: 416, + 803: 7884, + 808: 490 + } + ], + 80: [, , { 769: 7764, 775: 7766 }], + 82: [ + , + , + { + 769: 340, + 775: 7768, + 780: 344, + 783: 528, + 785: 530, + 803: 7770, + 807: 342, + 817: 7774 + } + ], + 83: [ + , + , + { + 769: 346, + 770: 348, + 775: 7776, + 780: 352, + 803: 7778, + 806: 536, + 807: 350 + } + ], + 84: [ + , + , + { + 775: 7786, + 780: 356, + 803: 7788, + 806: 538, + 807: 354, + 813: 7792, + 817: 7790 + } + ], + 85: [ + , + , + { + 768: 217, + 769: 218, + 770: 219, + 771: 360, + 772: 362, + 774: 364, + 776: 220, + 777: 7910, + 778: 366, + 779: 368, + 780: 467, + 783: 532, + 785: 534, + 795: 431, + 803: 7908, + 804: 7794, + 808: 370, + 813: 7798, + 816: 7796 + } + ], + 86: [, , { 771: 7804, 803: 7806 }], + 87: [ + , + , + { + 768: 7808, + 769: 7810, + 770: 372, + 775: 7814, + 776: 7812, + 803: 7816 + } + ], + 88: [, , { 775: 7818, 776: 7820 }], + 89: [ + , + , + { + 768: 7922, + 769: 221, + 770: 374, + 771: 7928, + 772: 562, + 775: 7822, + 776: 376, + 777: 7926, + 803: 7924 + } + ], + 90: [ + , + , + { + 769: 377, + 770: 7824, + 775: 379, + 780: 381, + 803: 7826, + 817: 7828 + } + ], + 97: [ + , + , + { + 768: 224, + 769: 225, + 770: 226, + 771: 227, + 772: 257, + 774: 259, + 775: 551, + 776: 228, + 777: 7843, + 778: 229, + 780: 462, + 783: 513, + 785: 515, + 803: 7841, + 805: 7681, + 808: 261 + } + ], + 98: [, , { 775: 7683, 803: 7685, 817: 7687 }], + 99: [, , { 769: 263, 770: 265, 775: 267, 780: 269, 807: 231 }], + 100: [ + , + , + { + 775: 7691, + 780: 271, + 803: 7693, + 807: 7697, + 813: 7699, + 817: 7695 + } + ], + 101: [ + , + , + { + 768: 232, + 769: 233, + 770: 234, + 771: 7869, + 772: 275, + 774: 277, + 775: 279, + 776: 235, + 777: 7867, + 780: 283, + 783: 517, + 785: 519, + 803: 7865, + 807: 553, + 808: 281, + 813: 7705, + 816: 7707 + } + ], + 102: [, , { 775: 7711 }], + 103: [ + , + , + { + 769: 501, + 770: 285, + 772: 7713, + 774: 287, + 775: 289, + 780: 487, + 807: 291 + } + ], + 104: [ + , + , + { + 770: 293, + 775: 7715, + 776: 7719, + 780: 543, + 803: 7717, + 807: 7721, + 814: 7723, + 817: 7830 + } + ], + 105: [ + , + , + { + 768: 236, + 769: 237, + 770: 238, + 771: 297, + 772: 299, + 774: 301, + 776: 239, + 777: 7881, + 780: 464, + 783: 521, + 785: 523, + 803: 7883, + 808: 303, + 816: 7725 + } + ], + 106: [, , { 770: 309, 780: 496 }], + 107: [ + , + , + { 769: 7729, 780: 489, 803: 7731, 807: 311, 817: 7733 } + ], + 108: [ + , + , + { + 769: 314, + 780: 318, + 803: 7735, + 807: 316, + 813: 7741, + 817: 7739 + } + ], + 109: [, , { 769: 7743, 775: 7745, 803: 7747 }], + 110: [ + , + , + { + 768: 505, + 769: 324, + 771: 241, + 775: 7749, + 780: 328, + 803: 7751, + 807: 326, + 813: 7755, + 817: 7753 + } + ], + 111: [ + , + , + { + 768: 242, + 769: 243, + 770: 244, + 771: 245, + 772: 333, + 774: 335, + 775: 559, + 776: 246, + 777: 7887, + 779: 337, + 780: 466, + 783: 525, + 785: 527, + 795: 417, + 803: 7885, + 808: 491 + } + ], + 112: [, , { 769: 7765, 775: 7767 }], + 114: [ + , + , + { + 769: 341, + 775: 7769, + 780: 345, + 783: 529, + 785: 531, + 803: 7771, + 807: 343, + 817: 7775 + } + ], + 115: [ + , + , + { + 769: 347, + 770: 349, + 775: 7777, + 780: 353, + 803: 7779, + 806: 537, + 807: 351 + } + ], + 116: [ + , + , + { + 775: 7787, + 776: 7831, + 780: 357, + 803: 7789, + 806: 539, + 807: 355, + 813: 7793, + 817: 7791 + } + ], + 117: [ + , + , + { + 768: 249, + 769: 250, + 770: 251, + 771: 361, + 772: 363, + 774: 365, + 776: 252, + 777: 7911, + 778: 367, + 779: 369, + 780: 468, + 783: 533, + 785: 535, + 795: 432, + 803: 7909, + 804: 7795, + 808: 371, + 813: 7799, + 816: 7797 + } + ], + 118: [, , { 771: 7805, 803: 7807 }], + 119: [ + , + , + { + 768: 7809, + 769: 7811, + 770: 373, + 775: 7815, + 776: 7813, + 778: 7832, + 803: 7817 + } + ], + 120: [, , { 775: 7819, 776: 7821 }], + 121: [ + , + , + { + 768: 7923, + 769: 253, + 770: 375, + 771: 7929, + 772: 563, + 775: 7823, + 776: 255, + 777: 7927, + 778: 7833, + 803: 7925 + } + ], + 122: [ + , + , + { + 769: 378, + 770: 7825, + 775: 380, + 780: 382, + 803: 7827, + 817: 7829 + } + ], + 160: [[32], 256], + 168: [[32, 776], 256, { 768: 8173, 769: 901, 834: 8129 }], + 170: [[97], 256], + 175: [[32, 772], 256], + 178: [[50], 256], + 179: [[51], 256], + 180: [[32, 769], 256], + 181: [[956], 256], + 184: [[32, 807], 256], + 185: [[49], 256], + 186: [[111], 256], + 188: [[49, 8260, 52], 256], + 189: [[49, 8260, 50], 256], + 190: [[51, 8260, 52], 256], + 192: [[65, 768]], + 193: [[65, 769]], + 194: [ + [65, 770], + , + { 768: 7846, 769: 7844, 771: 7850, 777: 7848 } + ], + 195: [[65, 771]], + 196: [[65, 776], , { 772: 478 }], + 197: [[65, 778], , { 769: 506 }], + 198: [, , { 769: 508, 772: 482 }], + 199: [[67, 807], , { 769: 7688 }], + 200: [[69, 768]], + 201: [[69, 769]], + 202: [ + [69, 770], + , + { 768: 7872, 769: 7870, 771: 7876, 777: 7874 } + ], + 203: [[69, 776]], + 204: [[73, 768]], + 205: [[73, 769]], + 206: [[73, 770]], + 207: [[73, 776], , { 769: 7726 }], + 209: [[78, 771]], + 210: [[79, 768]], + 211: [[79, 769]], + 212: [ + [79, 770], + , + { 768: 7890, 769: 7888, 771: 7894, 777: 7892 } + ], + 213: [[79, 771], , { 769: 7756, 772: 556, 776: 7758 }], + 214: [[79, 776], , { 772: 554 }], + 216: [, , { 769: 510 }], + 217: [[85, 768]], + 218: [[85, 769]], + 219: [[85, 770]], + 220: [[85, 776], , { 768: 475, 769: 471, 772: 469, 780: 473 }], + 221: [[89, 769]], + 224: [[97, 768]], + 225: [[97, 769]], + 226: [ + [97, 770], + , + { 768: 7847, 769: 7845, 771: 7851, 777: 7849 } + ], + 227: [[97, 771]], + 228: [[97, 776], , { 772: 479 }], + 229: [[97, 778], , { 769: 507 }], + 230: [, , { 769: 509, 772: 483 }], + 231: [[99, 807], , { 769: 7689 }], + 232: [[101, 768]], + 233: [[101, 769]], + 234: [ + [101, 770], + , + { 768: 7873, 769: 7871, 771: 7877, 777: 7875 } + ], + 235: [[101, 776]], + 236: [[105, 768]], + 237: [[105, 769]], + 238: [[105, 770]], + 239: [[105, 776], , { 769: 7727 }], + 241: [[110, 771]], + 242: [[111, 768]], + 243: [[111, 769]], + 244: [ + [111, 770], + , + { 768: 7891, 769: 7889, 771: 7895, 777: 7893 } + ], + 245: [[111, 771], , { 769: 7757, 772: 557, 776: 7759 }], + 246: [[111, 776], , { 772: 555 }], + 248: [, , { 769: 511 }], + 249: [[117, 768]], + 250: [[117, 769]], + 251: [[117, 770]], + 252: [[117, 776], , { 768: 476, 769: 472, 772: 470, 780: 474 }], + 253: [[121, 769]], + 255: [[121, 776]] + }, + 256: { + 256: [[65, 772]], + 257: [[97, 772]], + 258: [ + [65, 774], + , + { 768: 7856, 769: 7854, 771: 7860, 777: 7858 } + ], + 259: [ + [97, 774], + , + { 768: 7857, 769: 7855, 771: 7861, 777: 7859 } + ], + 260: [[65, 808]], + 261: [[97, 808]], + 262: [[67, 769]], + 263: [[99, 769]], + 264: [[67, 770]], + 265: [[99, 770]], + 266: [[67, 775]], + 267: [[99, 775]], + 268: [[67, 780]], + 269: [[99, 780]], + 270: [[68, 780]], + 271: [[100, 780]], + 274: [[69, 772], , { 768: 7700, 769: 7702 }], + 275: [[101, 772], , { 768: 7701, 769: 7703 }], + 276: [[69, 774]], + 277: [[101, 774]], + 278: [[69, 775]], + 279: [[101, 775]], + 280: [[69, 808]], + 281: [[101, 808]], + 282: [[69, 780]], + 283: [[101, 780]], + 284: [[71, 770]], + 285: [[103, 770]], + 286: [[71, 774]], + 287: [[103, 774]], + 288: [[71, 775]], + 289: [[103, 775]], + 290: [[71, 807]], + 291: [[103, 807]], + 292: [[72, 770]], + 293: [[104, 770]], + 296: [[73, 771]], + 297: [[105, 771]], + 298: [[73, 772]], + 299: [[105, 772]], + 300: [[73, 774]], + 301: [[105, 774]], + 302: [[73, 808]], + 303: [[105, 808]], + 304: [[73, 775]], + 306: [[73, 74], 256], + 307: [[105, 106], 256], + 308: [[74, 770]], + 309: [[106, 770]], + 310: [[75, 807]], + 311: [[107, 807]], + 313: [[76, 769]], + 314: [[108, 769]], + 315: [[76, 807]], + 316: [[108, 807]], + 317: [[76, 780]], + 318: [[108, 780]], + 319: [[76, 183], 256], + 320: [[108, 183], 256], + 323: [[78, 769]], + 324: [[110, 769]], + 325: [[78, 807]], + 326: [[110, 807]], + 327: [[78, 780]], + 328: [[110, 780]], + 329: [[700, 110], 256], + 332: [[79, 772], , { 768: 7760, 769: 7762 }], + 333: [[111, 772], , { 768: 7761, 769: 7763 }], + 334: [[79, 774]], + 335: [[111, 774]], + 336: [[79, 779]], + 337: [[111, 779]], + 340: [[82, 769]], + 341: [[114, 769]], + 342: [[82, 807]], + 343: [[114, 807]], + 344: [[82, 780]], + 345: [[114, 780]], + 346: [[83, 769], , { 775: 7780 }], + 347: [[115, 769], , { 775: 7781 }], + 348: [[83, 770]], + 349: [[115, 770]], + 350: [[83, 807]], + 351: [[115, 807]], + 352: [[83, 780], , { 775: 7782 }], + 353: [[115, 780], , { 775: 7783 }], + 354: [[84, 807]], + 355: [[116, 807]], + 356: [[84, 780]], + 357: [[116, 780]], + 360: [[85, 771], , { 769: 7800 }], + 361: [[117, 771], , { 769: 7801 }], + 362: [[85, 772], , { 776: 7802 }], + 363: [[117, 772], , { 776: 7803 }], + 364: [[85, 774]], + 365: [[117, 774]], + 366: [[85, 778]], + 367: [[117, 778]], + 368: [[85, 779]], + 369: [[117, 779]], + 370: [[85, 808]], + 371: [[117, 808]], + 372: [[87, 770]], + 373: [[119, 770]], + 374: [[89, 770]], + 375: [[121, 770]], + 376: [[89, 776]], + 377: [[90, 769]], + 378: [[122, 769]], + 379: [[90, 775]], + 380: [[122, 775]], + 381: [[90, 780]], + 382: [[122, 780]], + 383: [[115], 256, { 775: 7835 }], + 416: [ + [79, 795], + , + { 768: 7900, 769: 7898, 771: 7904, 777: 7902, 803: 7906 } + ], + 417: [ + [111, 795], + , + { 768: 7901, 769: 7899, 771: 7905, 777: 7903, 803: 7907 } + ], + 431: [ + [85, 795], + , + { 768: 7914, 769: 7912, 771: 7918, 777: 7916, 803: 7920 } + ], + 432: [ + [117, 795], + , + { 768: 7915, 769: 7913, 771: 7919, 777: 7917, 803: 7921 } + ], + 439: [, , { 780: 494 }], + 452: [[68, 381], 256], + 453: [[68, 382], 256], + 454: [[100, 382], 256], + 455: [[76, 74], 256], + 456: [[76, 106], 256], + 457: [[108, 106], 256], + 458: [[78, 74], 256], + 459: [[78, 106], 256], + 460: [[110, 106], 256], + 461: [[65, 780]], + 462: [[97, 780]], + 463: [[73, 780]], + 464: [[105, 780]], + 465: [[79, 780]], + 466: [[111, 780]], + 467: [[85, 780]], + 468: [[117, 780]], + 469: [[220, 772]], + 470: [[252, 772]], + 471: [[220, 769]], + 472: [[252, 769]], + 473: [[220, 780]], + 474: [[252, 780]], + 475: [[220, 768]], + 476: [[252, 768]], + 478: [[196, 772]], + 479: [[228, 772]], + 480: [[550, 772]], + 481: [[551, 772]], + 482: [[198, 772]], + 483: [[230, 772]], + 486: [[71, 780]], + 487: [[103, 780]], + 488: [[75, 780]], + 489: [[107, 780]], + 490: [[79, 808], , { 772: 492 }], + 491: [[111, 808], , { 772: 493 }], + 492: [[490, 772]], + 493: [[491, 772]], + 494: [[439, 780]], + 495: [[658, 780]], + 496: [[106, 780]], + 497: [[68, 90], 256], + 498: [[68, 122], 256], + 499: [[100, 122], 256], + 500: [[71, 769]], + 501: [[103, 769]], + 504: [[78, 768]], + 505: [[110, 768]], + 506: [[197, 769]], + 507: [[229, 769]], + 508: [[198, 769]], + 509: [[230, 769]], + 510: [[216, 769]], + 511: [[248, 769]], + 66045: [, 220] + }, + 512: { + 512: [[65, 783]], + 513: [[97, 783]], + 514: [[65, 785]], + 515: [[97, 785]], + 516: [[69, 783]], + 517: [[101, 783]], + 518: [[69, 785]], + 519: [[101, 785]], + 520: [[73, 783]], + 521: [[105, 783]], + 522: [[73, 785]], + 523: [[105, 785]], + 524: [[79, 783]], + 525: [[111, 783]], + 526: [[79, 785]], + 527: [[111, 785]], + 528: [[82, 783]], + 529: [[114, 783]], + 530: [[82, 785]], + 531: [[114, 785]], + 532: [[85, 783]], + 533: [[117, 783]], + 534: [[85, 785]], + 535: [[117, 785]], + 536: [[83, 806]], + 537: [[115, 806]], + 538: [[84, 806]], + 539: [[116, 806]], + 542: [[72, 780]], + 543: [[104, 780]], + 550: [[65, 775], , { 772: 480 }], + 551: [[97, 775], , { 772: 481 }], + 552: [[69, 807], , { 774: 7708 }], + 553: [[101, 807], , { 774: 7709 }], + 554: [[214, 772]], + 555: [[246, 772]], + 556: [[213, 772]], + 557: [[245, 772]], + 558: [[79, 775], , { 772: 560 }], + 559: [[111, 775], , { 772: 561 }], + 560: [[558, 772]], + 561: [[559, 772]], + 562: [[89, 772]], + 563: [[121, 772]], + 658: [, , { 780: 495 }], + 688: [[104], 256], + 689: [[614], 256], + 690: [[106], 256], + 691: [[114], 256], + 692: [[633], 256], + 693: [[635], 256], + 694: [[641], 256], + 695: [[119], 256], + 696: [[121], 256], + 728: [[32, 774], 256], + 729: [[32, 775], 256], + 730: [[32, 778], 256], + 731: [[32, 808], 256], + 732: [[32, 771], 256], + 733: [[32, 779], 256], + 736: [[611], 256], + 737: [[108], 256], + 738: [[115], 256], + 739: [[120], 256], + 740: [[661], 256], + 66272: [, 220] + }, + 768: { + 768: [, 230], + 769: [, 230], + 770: [, 230], + 771: [, 230], + 772: [, 230], + 773: [, 230], + 774: [, 230], + 775: [, 230], + 776: [, 230, { 769: 836 }], + 777: [, 230], + 778: [, 230], + 779: [, 230], + 780: [, 230], + 781: [, 230], + 782: [, 230], + 783: [, 230], + 784: [, 230], + 785: [, 230], + 786: [, 230], + 787: [, 230], + 788: [, 230], + 789: [, 232], + 790: [, 220], + 791: [, 220], + 792: [, 220], + 793: [, 220], + 794: [, 232], + 795: [, 216], + 796: [, 220], + 797: [, 220], + 798: [, 220], + 799: [, 220], + 800: [, 220], + 801: [, 202], + 802: [, 202], + 803: [, 220], + 804: [, 220], + 805: [, 220], + 806: [, 220], + 807: [, 202], + 808: [, 202], + 809: [, 220], + 810: [, 220], + 811: [, 220], + 812: [, 220], + 813: [, 220], + 814: [, 220], + 815: [, 220], + 816: [, 220], + 817: [, 220], + 818: [, 220], + 819: [, 220], + 820: [, 1], + 821: [, 1], + 822: [, 1], + 823: [, 1], + 824: [, 1], + 825: [, 220], + 826: [, 220], + 827: [, 220], + 828: [, 220], + 829: [, 230], + 830: [, 230], + 831: [, 230], + 832: [[768], 230], + 833: [[769], 230], + 834: [, 230], + 835: [[787], 230], + 836: [[776, 769], 230], + 837: [, 240], + 838: [, 230], + 839: [, 220], + 840: [, 220], + 841: [, 220], + 842: [, 230], + 843: [, 230], + 844: [, 230], + 845: [, 220], + 846: [, 220], + 848: [, 230], + 849: [, 230], + 850: [, 230], + 851: [, 220], + 852: [, 220], + 853: [, 220], + 854: [, 220], + 855: [, 230], + 856: [, 232], + 857: [, 220], + 858: [, 220], + 859: [, 230], + 860: [, 233], + 861: [, 234], + 862: [, 234], + 863: [, 233], + 864: [, 234], + 865: [, 234], + 866: [, 233], + 867: [, 230], + 868: [, 230], + 869: [, 230], + 870: [, 230], + 871: [, 230], + 872: [, 230], + 873: [, 230], + 874: [, 230], + 875: [, 230], + 876: [, 230], + 877: [, 230], + 878: [, 230], + 879: [, 230], + 884: [[697]], + 890: [[32, 837], 256], + 894: [[59]], + 900: [[32, 769], 256], + 901: [[168, 769]], + 902: [[913, 769]], + 903: [[183]], + 904: [[917, 769]], + 905: [[919, 769]], + 906: [[921, 769]], + 908: [[927, 769]], + 910: [[933, 769]], + 911: [[937, 769]], + 912: [[970, 769]], + 913: [ + , + , + { + 768: 8122, + 769: 902, + 772: 8121, + 774: 8120, + 787: 7944, + 788: 7945, + 837: 8124 + } + ], + 917: [, , { 768: 8136, 769: 904, 787: 7960, 788: 7961 }], + 919: [ + , + , + { 768: 8138, 769: 905, 787: 7976, 788: 7977, 837: 8140 } + ], + 921: [ + , + , + { + 768: 8154, + 769: 906, + 772: 8153, + 774: 8152, + 776: 938, + 787: 7992, + 788: 7993 + } + ], + 927: [, , { 768: 8184, 769: 908, 787: 8008, 788: 8009 }], + 929: [, , { 788: 8172 }], + 933: [ + , + , + { + 768: 8170, + 769: 910, + 772: 8169, + 774: 8168, + 776: 939, + 788: 8025 + } + ], + 937: [ + , + , + { 768: 8186, 769: 911, 787: 8040, 788: 8041, 837: 8188 } + ], + 938: [[921, 776]], + 939: [[933, 776]], + 940: [[945, 769], , { 837: 8116 }], + 941: [[949, 769]], + 942: [[951, 769], , { 837: 8132 }], + 943: [[953, 769]], + 944: [[971, 769]], + 945: [ + , + , + { + 768: 8048, + 769: 940, + 772: 8113, + 774: 8112, + 787: 7936, + 788: 7937, + 834: 8118, + 837: 8115 + } + ], + 949: [, , { 768: 8050, 769: 941, 787: 7952, 788: 7953 }], + 951: [ + , + , + { + 768: 8052, + 769: 942, + 787: 7968, + 788: 7969, + 834: 8134, + 837: 8131 + } + ], + 953: [ + , + , + { + 768: 8054, + 769: 943, + 772: 8145, + 774: 8144, + 776: 970, + 787: 7984, + 788: 7985, + 834: 8150 + } + ], + 959: [, , { 768: 8056, 769: 972, 787: 8e3, 788: 8001 }], + 961: [, , { 787: 8164, 788: 8165 }], + 965: [ + , + , + { + 768: 8058, + 769: 973, + 772: 8161, + 774: 8160, + 776: 971, + 787: 8016, + 788: 8017, + 834: 8166 + } + ], + 969: [ + , + , + { + 768: 8060, + 769: 974, + 787: 8032, + 788: 8033, + 834: 8182, + 837: 8179 + } + ], + 970: [[953, 776], , { 768: 8146, 769: 912, 834: 8151 }], + 971: [[965, 776], , { 768: 8162, 769: 944, 834: 8167 }], + 972: [[959, 769]], + 973: [[965, 769]], + 974: [[969, 769], , { 837: 8180 }], + 976: [[946], 256], + 977: [[952], 256], + 978: [[933], 256, { 769: 979, 776: 980 }], + 979: [[978, 769]], + 980: [[978, 776]], + 981: [[966], 256], + 982: [[960], 256], + 1008: [[954], 256], + 1009: [[961], 256], + 1010: [[962], 256], + 1012: [[920], 256], + 1013: [[949], 256], + 1017: [[931], 256], + 66422: [, 230], + 66423: [, 230], + 66424: [, 230], + 66425: [, 230], + 66426: [, 230] + }, + 1024: { + 1024: [[1045, 768]], + 1025: [[1045, 776]], + 1027: [[1043, 769]], + 1030: [, , { 776: 1031 }], + 1031: [[1030, 776]], + 1036: [[1050, 769]], + 1037: [[1048, 768]], + 1038: [[1059, 774]], + 1040: [, , { 774: 1232, 776: 1234 }], + 1043: [, , { 769: 1027 }], + 1045: [, , { 768: 1024, 774: 1238, 776: 1025 }], + 1046: [, , { 774: 1217, 776: 1244 }], + 1047: [, , { 776: 1246 }], + 1048: [, , { 768: 1037, 772: 1250, 774: 1049, 776: 1252 }], + 1049: [[1048, 774]], + 1050: [, , { 769: 1036 }], + 1054: [, , { 776: 1254 }], + 1059: [, , { 772: 1262, 774: 1038, 776: 1264, 779: 1266 }], + 1063: [, , { 776: 1268 }], + 1067: [, , { 776: 1272 }], + 1069: [, , { 776: 1260 }], + 1072: [, , { 774: 1233, 776: 1235 }], + 1075: [, , { 769: 1107 }], + 1077: [, , { 768: 1104, 774: 1239, 776: 1105 }], + 1078: [, , { 774: 1218, 776: 1245 }], + 1079: [, , { 776: 1247 }], + 1080: [, , { 768: 1117, 772: 1251, 774: 1081, 776: 1253 }], + 1081: [[1080, 774]], + 1082: [, , { 769: 1116 }], + 1086: [, , { 776: 1255 }], + 1091: [, , { 772: 1263, 774: 1118, 776: 1265, 779: 1267 }], + 1095: [, , { 776: 1269 }], + 1099: [, , { 776: 1273 }], + 1101: [, , { 776: 1261 }], + 1104: [[1077, 768]], + 1105: [[1077, 776]], + 1107: [[1075, 769]], + 1110: [, , { 776: 1111 }], + 1111: [[1110, 776]], + 1116: [[1082, 769]], + 1117: [[1080, 768]], + 1118: [[1091, 774]], + 1140: [, , { 783: 1142 }], + 1141: [, , { 783: 1143 }], + 1142: [[1140, 783]], + 1143: [[1141, 783]], + 1155: [, 230], + 1156: [, 230], + 1157: [, 230], + 1158: [, 230], + 1159: [, 230], + 1217: [[1046, 774]], + 1218: [[1078, 774]], + 1232: [[1040, 774]], + 1233: [[1072, 774]], + 1234: [[1040, 776]], + 1235: [[1072, 776]], + 1238: [[1045, 774]], + 1239: [[1077, 774]], + 1240: [, , { 776: 1242 }], + 1241: [, , { 776: 1243 }], + 1242: [[1240, 776]], + 1243: [[1241, 776]], + 1244: [[1046, 776]], + 1245: [[1078, 776]], + 1246: [[1047, 776]], + 1247: [[1079, 776]], + 1250: [[1048, 772]], + 1251: [[1080, 772]], + 1252: [[1048, 776]], + 1253: [[1080, 776]], + 1254: [[1054, 776]], + 1255: [[1086, 776]], + 1256: [, , { 776: 1258 }], + 1257: [, , { 776: 1259 }], + 1258: [[1256, 776]], + 1259: [[1257, 776]], + 1260: [[1069, 776]], + 1261: [[1101, 776]], + 1262: [[1059, 772]], + 1263: [[1091, 772]], + 1264: [[1059, 776]], + 1265: [[1091, 776]], + 1266: [[1059, 779]], + 1267: [[1091, 779]], + 1268: [[1063, 776]], + 1269: [[1095, 776]], + 1272: [[1067, 776]], + 1273: [[1099, 776]] + }, + 1280: { + 1415: [[1381, 1410], 256], + 1425: [, 220], + 1426: [, 230], + 1427: [, 230], + 1428: [, 230], + 1429: [, 230], + 1430: [, 220], + 1431: [, 230], + 1432: [, 230], + 1433: [, 230], + 1434: [, 222], + 1435: [, 220], + 1436: [, 230], + 1437: [, 230], + 1438: [, 230], + 1439: [, 230], + 1440: [, 230], + 1441: [, 230], + 1442: [, 220], + 1443: [, 220], + 1444: [, 220], + 1445: [, 220], + 1446: [, 220], + 1447: [, 220], + 1448: [, 230], + 1449: [, 230], + 1450: [, 220], + 1451: [, 230], + 1452: [, 230], + 1453: [, 222], + 1454: [, 228], + 1455: [, 230], + 1456: [, 10], + 1457: [, 11], + 1458: [, 12], + 1459: [, 13], + 1460: [, 14], + 1461: [, 15], + 1462: [, 16], + 1463: [, 17], + 1464: [, 18], + 1465: [, 19], + 1466: [, 19], + 1467: [, 20], + 1468: [, 21], + 1469: [, 22], + 1471: [, 23], + 1473: [, 24], + 1474: [, 25], + 1476: [, 230], + 1477: [, 220], + 1479: [, 18] + }, + 1536: { + 1552: [, 230], + 1553: [, 230], + 1554: [, 230], + 1555: [, 230], + 1556: [, 230], + 1557: [, 230], + 1558: [, 230], + 1559: [, 230], + 1560: [, 30], + 1561: [, 31], + 1562: [, 32], + 1570: [[1575, 1619]], + 1571: [[1575, 1620]], + 1572: [[1608, 1620]], + 1573: [[1575, 1621]], + 1574: [[1610, 1620]], + 1575: [, , { 1619: 1570, 1620: 1571, 1621: 1573 }], + 1608: [, , { 1620: 1572 }], + 1610: [, , { 1620: 1574 }], + 1611: [, 27], + 1612: [, 28], + 1613: [, 29], + 1614: [, 30], + 1615: [, 31], + 1616: [, 32], + 1617: [, 33], + 1618: [, 34], + 1619: [, 230], + 1620: [, 230], + 1621: [, 220], + 1622: [, 220], + 1623: [, 230], + 1624: [, 230], + 1625: [, 230], + 1626: [, 230], + 1627: [, 230], + 1628: [, 220], + 1629: [, 230], + 1630: [, 230], + 1631: [, 220], + 1648: [, 35], + 1653: [[1575, 1652], 256], + 1654: [[1608, 1652], 256], + 1655: [[1735, 1652], 256], + 1656: [[1610, 1652], 256], + 1728: [[1749, 1620]], + 1729: [, , { 1620: 1730 }], + 1730: [[1729, 1620]], + 1746: [, , { 1620: 1747 }], + 1747: [[1746, 1620]], + 1749: [, , { 1620: 1728 }], + 1750: [, 230], + 1751: [, 230], + 1752: [, 230], + 1753: [, 230], + 1754: [, 230], + 1755: [, 230], + 1756: [, 230], + 1759: [, 230], + 1760: [, 230], + 1761: [, 230], + 1762: [, 230], + 1763: [, 220], + 1764: [, 230], + 1767: [, 230], + 1768: [, 230], + 1770: [, 220], + 1771: [, 230], + 1772: [, 230], + 1773: [, 220] + }, + 1792: { + 1809: [, 36], + 1840: [, 230], + 1841: [, 220], + 1842: [, 230], + 1843: [, 230], + 1844: [, 220], + 1845: [, 230], + 1846: [, 230], + 1847: [, 220], + 1848: [, 220], + 1849: [, 220], + 1850: [, 230], + 1851: [, 220], + 1852: [, 220], + 1853: [, 230], + 1854: [, 220], + 1855: [, 230], + 1856: [, 230], + 1857: [, 230], + 1858: [, 220], + 1859: [, 230], + 1860: [, 220], + 1861: [, 230], + 1862: [, 220], + 1863: [, 230], + 1864: [, 220], + 1865: [, 230], + 1866: [, 230], + 2027: [, 230], + 2028: [, 230], + 2029: [, 230], + 2030: [, 230], + 2031: [, 230], + 2032: [, 230], + 2033: [, 230], + 2034: [, 220], + 2035: [, 230] + }, + 2048: { + 2070: [, 230], + 2071: [, 230], + 2072: [, 230], + 2073: [, 230], + 2075: [, 230], + 2076: [, 230], + 2077: [, 230], + 2078: [, 230], + 2079: [, 230], + 2080: [, 230], + 2081: [, 230], + 2082: [, 230], + 2083: [, 230], + 2085: [, 230], + 2086: [, 230], + 2087: [, 230], + 2089: [, 230], + 2090: [, 230], + 2091: [, 230], + 2092: [, 230], + 2093: [, 230], + 2137: [, 220], + 2138: [, 220], + 2139: [, 220], + 2276: [, 230], + 2277: [, 230], + 2278: [, 220], + 2279: [, 230], + 2280: [, 230], + 2281: [, 220], + 2282: [, 230], + 2283: [, 230], + 2284: [, 230], + 2285: [, 220], + 2286: [, 220], + 2287: [, 220], + 2288: [, 27], + 2289: [, 28], + 2290: [, 29], + 2291: [, 230], + 2292: [, 230], + 2293: [, 230], + 2294: [, 220], + 2295: [, 230], + 2296: [, 230], + 2297: [, 220], + 2298: [, 220], + 2299: [, 230], + 2300: [, 230], + 2301: [, 230], + 2302: [, 230], + 2303: [, 230] + }, + 2304: { + 2344: [, , { 2364: 2345 }], + 2345: [[2344, 2364]], + 2352: [, , { 2364: 2353 }], + 2353: [[2352, 2364]], + 2355: [, , { 2364: 2356 }], + 2356: [[2355, 2364]], + 2364: [, 7], + 2381: [, 9], + 2385: [, 230], + 2386: [, 220], + 2387: [, 230], + 2388: [, 230], + 2392: [[2325, 2364], 512], + 2393: [[2326, 2364], 512], + 2394: [[2327, 2364], 512], + 2395: [[2332, 2364], 512], + 2396: [[2337, 2364], 512], + 2397: [[2338, 2364], 512], + 2398: [[2347, 2364], 512], + 2399: [[2351, 2364], 512], + 2492: [, 7], + 2503: [, , { 2494: 2507, 2519: 2508 }], + 2507: [[2503, 2494]], + 2508: [[2503, 2519]], + 2509: [, 9], + 2524: [[2465, 2492], 512], + 2525: [[2466, 2492], 512], + 2527: [[2479, 2492], 512] + }, + 2560: { + 2611: [[2610, 2620], 512], + 2614: [[2616, 2620], 512], + 2620: [, 7], + 2637: [, 9], + 2649: [[2582, 2620], 512], + 2650: [[2583, 2620], 512], + 2651: [[2588, 2620], 512], + 2654: [[2603, 2620], 512], + 2748: [, 7], + 2765: [, 9], + 68109: [, 220], + 68111: [, 230], + 68152: [, 230], + 68153: [, 1], + 68154: [, 220], + 68159: [, 9], + 68325: [, 230], + 68326: [, 220] + }, + 2816: { + 2876: [, 7], + 2887: [, , { 2878: 2891, 2902: 2888, 2903: 2892 }], + 2888: [[2887, 2902]], + 2891: [[2887, 2878]], + 2892: [[2887, 2903]], + 2893: [, 9], + 2908: [[2849, 2876], 512], + 2909: [[2850, 2876], 512], + 2962: [, , { 3031: 2964 }], + 2964: [[2962, 3031]], + 3014: [, , { 3006: 3018, 3031: 3020 }], + 3015: [, , { 3006: 3019 }], + 3018: [[3014, 3006]], + 3019: [[3015, 3006]], + 3020: [[3014, 3031]], + 3021: [, 9] + }, + 3072: { + 3142: [, , { 3158: 3144 }], + 3144: [[3142, 3158]], + 3149: [, 9], + 3157: [, 84], + 3158: [, 91], + 3260: [, 7], + 3263: [, , { 3285: 3264 }], + 3264: [[3263, 3285]], + 3270: [, , { 3266: 3274, 3285: 3271, 3286: 3272 }], + 3271: [[3270, 3285]], + 3272: [[3270, 3286]], + 3274: [[3270, 3266], , { 3285: 3275 }], + 3275: [[3274, 3285]], + 3277: [, 9] + }, + 3328: { + 3398: [, , { 3390: 3402, 3415: 3404 }], + 3399: [, , { 3390: 3403 }], + 3402: [[3398, 3390]], + 3403: [[3399, 3390]], + 3404: [[3398, 3415]], + 3405: [, 9], + 3530: [, 9], + 3545: [, , { 3530: 3546, 3535: 3548, 3551: 3550 }], + 3546: [[3545, 3530]], + 3548: [[3545, 3535], , { 3530: 3549 }], + 3549: [[3548, 3530]], + 3550: [[3545, 3551]] + }, + 3584: { + 3635: [[3661, 3634], 256], + 3640: [, 103], + 3641: [, 103], + 3642: [, 9], + 3656: [, 107], + 3657: [, 107], + 3658: [, 107], + 3659: [, 107], + 3763: [[3789, 3762], 256], + 3768: [, 118], + 3769: [, 118], + 3784: [, 122], + 3785: [, 122], + 3786: [, 122], + 3787: [, 122], + 3804: [[3755, 3737], 256], + 3805: [[3755, 3745], 256] + }, + 3840: { + 3852: [[3851], 256], + 3864: [, 220], + 3865: [, 220], + 3893: [, 220], + 3895: [, 220], + 3897: [, 216], + 3907: [[3906, 4023], 512], + 3917: [[3916, 4023], 512], + 3922: [[3921, 4023], 512], + 3927: [[3926, 4023], 512], + 3932: [[3931, 4023], 512], + 3945: [[3904, 4021], 512], + 3953: [, 129], + 3954: [, 130], + 3955: [[3953, 3954], 512], + 3956: [, 132], + 3957: [[3953, 3956], 512], + 3958: [[4018, 3968], 512], + 3959: [[4018, 3969], 256], + 3960: [[4019, 3968], 512], + 3961: [[4019, 3969], 256], + 3962: [, 130], + 3963: [, 130], + 3964: [, 130], + 3965: [, 130], + 3968: [, 130], + 3969: [[3953, 3968], 512], + 3970: [, 230], + 3971: [, 230], + 3972: [, 9], + 3974: [, 230], + 3975: [, 230], + 3987: [[3986, 4023], 512], + 3997: [[3996, 4023], 512], + 4002: [[4001, 4023], 512], + 4007: [[4006, 4023], 512], + 4012: [[4011, 4023], 512], + 4025: [[3984, 4021], 512], + 4038: [, 220] + }, + 4096: { + 4133: [, , { 4142: 4134 }], + 4134: [[4133, 4142]], + 4151: [, 7], + 4153: [, 9], + 4154: [, 9], + 4237: [, 220], + 4348: [[4316], 256], + 69702: [, 9], + 69759: [, 9], + 69785: [, , { 69818: 69786 }], + 69786: [[69785, 69818]], + 69787: [, , { 69818: 69788 }], + 69788: [[69787, 69818]], + 69797: [, , { 69818: 69803 }], + 69803: [[69797, 69818]], + 69817: [, 9], + 69818: [, 7] + }, + 4352: { + 69888: [, 230], + 69889: [, 230], + 69890: [, 230], + 69934: [[69937, 69927]], + 69935: [[69938, 69927]], + 69937: [, , { 69927: 69934 }], + 69938: [, , { 69927: 69935 }], + 69939: [, 9], + 69940: [, 9], + 70003: [, 7], + 70080: [, 9] + }, + 4608: { 70197: [, 9], 70198: [, 7], 70377: [, 7], 70378: [, 9] }, + 4864: { + 4957: [, 230], + 4958: [, 230], + 4959: [, 230], + 70460: [, 7], + 70471: [, , { 70462: 70475, 70487: 70476 }], + 70475: [[70471, 70462]], + 70476: [[70471, 70487]], + 70477: [, 9], + 70502: [, 230], + 70503: [, 230], + 70504: [, 230], + 70505: [, 230], + 70506: [, 230], + 70507: [, 230], + 70508: [, 230], + 70512: [, 230], + 70513: [, 230], + 70514: [, 230], + 70515: [, 230], + 70516: [, 230] + }, + 5120: { + 70841: [, , { 70832: 70844, 70842: 70843, 70845: 70846 }], + 70843: [[70841, 70842]], + 70844: [[70841, 70832]], + 70846: [[70841, 70845]], + 70850: [, 9], + 70851: [, 7] + }, + 5376: { + 71096: [, , { 71087: 71098 }], + 71097: [, , { 71087: 71099 }], + 71098: [[71096, 71087]], + 71099: [[71097, 71087]], + 71103: [, 9], + 71104: [, 7] + }, + 5632: { 71231: [, 9], 71350: [, 9], 71351: [, 7] }, + 5888: { 5908: [, 9], 5940: [, 9], 6098: [, 9], 6109: [, 230] }, + 6144: { 6313: [, 228] }, + 6400: { 6457: [, 222], 6458: [, 230], 6459: [, 220] }, + 6656: { + 6679: [, 230], + 6680: [, 220], + 6752: [, 9], + 6773: [, 230], + 6774: [, 230], + 6775: [, 230], + 6776: [, 230], + 6777: [, 230], + 6778: [, 230], + 6779: [, 230], + 6780: [, 230], + 6783: [, 220], + 6832: [, 230], + 6833: [, 230], + 6834: [, 230], + 6835: [, 230], + 6836: [, 230], + 6837: [, 220], + 6838: [, 220], + 6839: [, 220], + 6840: [, 220], + 6841: [, 220], + 6842: [, 220], + 6843: [, 230], + 6844: [, 230], + 6845: [, 220] + }, + 6912: { + 6917: [, , { 6965: 6918 }], + 6918: [[6917, 6965]], + 6919: [, , { 6965: 6920 }], + 6920: [[6919, 6965]], + 6921: [, , { 6965: 6922 }], + 6922: [[6921, 6965]], + 6923: [, , { 6965: 6924 }], + 6924: [[6923, 6965]], + 6925: [, , { 6965: 6926 }], + 6926: [[6925, 6965]], + 6929: [, , { 6965: 6930 }], + 6930: [[6929, 6965]], + 6964: [, 7], + 6970: [, , { 6965: 6971 }], + 6971: [[6970, 6965]], + 6972: [, , { 6965: 6973 }], + 6973: [[6972, 6965]], + 6974: [, , { 6965: 6976 }], + 6975: [, , { 6965: 6977 }], + 6976: [[6974, 6965]], + 6977: [[6975, 6965]], + 6978: [, , { 6965: 6979 }], + 6979: [[6978, 6965]], + 6980: [, 9], + 7019: [, 230], + 7020: [, 220], + 7021: [, 230], + 7022: [, 230], + 7023: [, 230], + 7024: [, 230], + 7025: [, 230], + 7026: [, 230], + 7027: [, 230], + 7082: [, 9], + 7083: [, 9], + 7142: [, 7], + 7154: [, 9], + 7155: [, 9] + }, + 7168: { + 7223: [, 7], + 7376: [, 230], + 7377: [, 230], + 7378: [, 230], + 7380: [, 1], + 7381: [, 220], + 7382: [, 220], + 7383: [, 220], + 7384: [, 220], + 7385: [, 220], + 7386: [, 230], + 7387: [, 230], + 7388: [, 220], + 7389: [, 220], + 7390: [, 220], + 7391: [, 220], + 7392: [, 230], + 7394: [, 1], + 7395: [, 1], + 7396: [, 1], + 7397: [, 1], + 7398: [, 1], + 7399: [, 1], + 7400: [, 1], + 7405: [, 220], + 7412: [, 230], + 7416: [, 230], + 7417: [, 230] + }, + 7424: { + 7468: [[65], 256], + 7469: [[198], 256], + 7470: [[66], 256], + 7472: [[68], 256], + 7473: [[69], 256], + 7474: [[398], 256], + 7475: [[71], 256], + 7476: [[72], 256], + 7477: [[73], 256], + 7478: [[74], 256], + 7479: [[75], 256], + 7480: [[76], 256], + 7481: [[77], 256], + 7482: [[78], 256], + 7484: [[79], 256], + 7485: [[546], 256], + 7486: [[80], 256], + 7487: [[82], 256], + 7488: [[84], 256], + 7489: [[85], 256], + 7490: [[87], 256], + 7491: [[97], 256], + 7492: [[592], 256], + 7493: [[593], 256], + 7494: [[7426], 256], + 7495: [[98], 256], + 7496: [[100], 256], + 7497: [[101], 256], + 7498: [[601], 256], + 7499: [[603], 256], + 7500: [[604], 256], + 7501: [[103], 256], + 7503: [[107], 256], + 7504: [[109], 256], + 7505: [[331], 256], + 7506: [[111], 256], + 7507: [[596], 256], + 7508: [[7446], 256], + 7509: [[7447], 256], + 7510: [[112], 256], + 7511: [[116], 256], + 7512: [[117], 256], + 7513: [[7453], 256], + 7514: [[623], 256], + 7515: [[118], 256], + 7516: [[7461], 256], + 7517: [[946], 256], + 7518: [[947], 256], + 7519: [[948], 256], + 7520: [[966], 256], + 7521: [[967], 256], + 7522: [[105], 256], + 7523: [[114], 256], + 7524: [[117], 256], + 7525: [[118], 256], + 7526: [[946], 256], + 7527: [[947], 256], + 7528: [[961], 256], + 7529: [[966], 256], + 7530: [[967], 256], + 7544: [[1085], 256], + 7579: [[594], 256], + 7580: [[99], 256], + 7581: [[597], 256], + 7582: [[240], 256], + 7583: [[604], 256], + 7584: [[102], 256], + 7585: [[607], 256], + 7586: [[609], 256], + 7587: [[613], 256], + 7588: [[616], 256], + 7589: [[617], 256], + 7590: [[618], 256], + 7591: [[7547], 256], + 7592: [[669], 256], + 7593: [[621], 256], + 7594: [[7557], 256], + 7595: [[671], 256], + 7596: [[625], 256], + 7597: [[624], 256], + 7598: [[626], 256], + 7599: [[627], 256], + 7600: [[628], 256], + 7601: [[629], 256], + 7602: [[632], 256], + 7603: [[642], 256], + 7604: [[643], 256], + 7605: [[427], 256], + 7606: [[649], 256], + 7607: [[650], 256], + 7608: [[7452], 256], + 7609: [[651], 256], + 7610: [[652], 256], + 7611: [[122], 256], + 7612: [[656], 256], + 7613: [[657], 256], + 7614: [[658], 256], + 7615: [[952], 256], + 7616: [, 230], + 7617: [, 230], + 7618: [, 220], + 7619: [, 230], + 7620: [, 230], + 7621: [, 230], + 7622: [, 230], + 7623: [, 230], + 7624: [, 230], + 7625: [, 230], + 7626: [, 220], + 7627: [, 230], + 7628: [, 230], + 7629: [, 234], + 7630: [, 214], + 7631: [, 220], + 7632: [, 202], + 7633: [, 230], + 7634: [, 230], + 7635: [, 230], + 7636: [, 230], + 7637: [, 230], + 7638: [, 230], + 7639: [, 230], + 7640: [, 230], + 7641: [, 230], + 7642: [, 230], + 7643: [, 230], + 7644: [, 230], + 7645: [, 230], + 7646: [, 230], + 7647: [, 230], + 7648: [, 230], + 7649: [, 230], + 7650: [, 230], + 7651: [, 230], + 7652: [, 230], + 7653: [, 230], + 7654: [, 230], + 7655: [, 230], + 7656: [, 230], + 7657: [, 230], + 7658: [, 230], + 7659: [, 230], + 7660: [, 230], + 7661: [, 230], + 7662: [, 230], + 7663: [, 230], + 7664: [, 230], + 7665: [, 230], + 7666: [, 230], + 7667: [, 230], + 7668: [, 230], + 7669: [, 230], + 7676: [, 233], + 7677: [, 220], + 7678: [, 230], + 7679: [, 220] + }, + 7680: { + 7680: [[65, 805]], + 7681: [[97, 805]], + 7682: [[66, 775]], + 7683: [[98, 775]], + 7684: [[66, 803]], + 7685: [[98, 803]], + 7686: [[66, 817]], + 7687: [[98, 817]], + 7688: [[199, 769]], + 7689: [[231, 769]], + 7690: [[68, 775]], + 7691: [[100, 775]], + 7692: [[68, 803]], + 7693: [[100, 803]], + 7694: [[68, 817]], + 7695: [[100, 817]], + 7696: [[68, 807]], + 7697: [[100, 807]], + 7698: [[68, 813]], + 7699: [[100, 813]], + 7700: [[274, 768]], + 7701: [[275, 768]], + 7702: [[274, 769]], + 7703: [[275, 769]], + 7704: [[69, 813]], + 7705: [[101, 813]], + 7706: [[69, 816]], + 7707: [[101, 816]], + 7708: [[552, 774]], + 7709: [[553, 774]], + 7710: [[70, 775]], + 7711: [[102, 775]], + 7712: [[71, 772]], + 7713: [[103, 772]], + 7714: [[72, 775]], + 7715: [[104, 775]], + 7716: [[72, 803]], + 7717: [[104, 803]], + 7718: [[72, 776]], + 7719: [[104, 776]], + 7720: [[72, 807]], + 7721: [[104, 807]], + 7722: [[72, 814]], + 7723: [[104, 814]], + 7724: [[73, 816]], + 7725: [[105, 816]], + 7726: [[207, 769]], + 7727: [[239, 769]], + 7728: [[75, 769]], + 7729: [[107, 769]], + 7730: [[75, 803]], + 7731: [[107, 803]], + 7732: [[75, 817]], + 7733: [[107, 817]], + 7734: [[76, 803], , { 772: 7736 }], + 7735: [[108, 803], , { 772: 7737 }], + 7736: [[7734, 772]], + 7737: [[7735, 772]], + 7738: [[76, 817]], + 7739: [[108, 817]], + 7740: [[76, 813]], + 7741: [[108, 813]], + 7742: [[77, 769]], + 7743: [[109, 769]], + 7744: [[77, 775]], + 7745: [[109, 775]], + 7746: [[77, 803]], + 7747: [[109, 803]], + 7748: [[78, 775]], + 7749: [[110, 775]], + 7750: [[78, 803]], + 7751: [[110, 803]], + 7752: [[78, 817]], + 7753: [[110, 817]], + 7754: [[78, 813]], + 7755: [[110, 813]], + 7756: [[213, 769]], + 7757: [[245, 769]], + 7758: [[213, 776]], + 7759: [[245, 776]], + 7760: [[332, 768]], + 7761: [[333, 768]], + 7762: [[332, 769]], + 7763: [[333, 769]], + 7764: [[80, 769]], + 7765: [[112, 769]], + 7766: [[80, 775]], + 7767: [[112, 775]], + 7768: [[82, 775]], + 7769: [[114, 775]], + 7770: [[82, 803], , { 772: 7772 }], + 7771: [[114, 803], , { 772: 7773 }], + 7772: [[7770, 772]], + 7773: [[7771, 772]], + 7774: [[82, 817]], + 7775: [[114, 817]], + 7776: [[83, 775]], + 7777: [[115, 775]], + 7778: [[83, 803], , { 775: 7784 }], + 7779: [[115, 803], , { 775: 7785 }], + 7780: [[346, 775]], + 7781: [[347, 775]], + 7782: [[352, 775]], + 7783: [[353, 775]], + 7784: [[7778, 775]], + 7785: [[7779, 775]], + 7786: [[84, 775]], + 7787: [[116, 775]], + 7788: [[84, 803]], + 7789: [[116, 803]], + 7790: [[84, 817]], + 7791: [[116, 817]], + 7792: [[84, 813]], + 7793: [[116, 813]], + 7794: [[85, 804]], + 7795: [[117, 804]], + 7796: [[85, 816]], + 7797: [[117, 816]], + 7798: [[85, 813]], + 7799: [[117, 813]], + 7800: [[360, 769]], + 7801: [[361, 769]], + 7802: [[362, 776]], + 7803: [[363, 776]], + 7804: [[86, 771]], + 7805: [[118, 771]], + 7806: [[86, 803]], + 7807: [[118, 803]], + 7808: [[87, 768]], + 7809: [[119, 768]], + 7810: [[87, 769]], + 7811: [[119, 769]], + 7812: [[87, 776]], + 7813: [[119, 776]], + 7814: [[87, 775]], + 7815: [[119, 775]], + 7816: [[87, 803]], + 7817: [[119, 803]], + 7818: [[88, 775]], + 7819: [[120, 775]], + 7820: [[88, 776]], + 7821: [[120, 776]], + 7822: [[89, 775]], + 7823: [[121, 775]], + 7824: [[90, 770]], + 7825: [[122, 770]], + 7826: [[90, 803]], + 7827: [[122, 803]], + 7828: [[90, 817]], + 7829: [[122, 817]], + 7830: [[104, 817]], + 7831: [[116, 776]], + 7832: [[119, 778]], + 7833: [[121, 778]], + 7834: [[97, 702], 256], + 7835: [[383, 775]], + 7840: [[65, 803], , { 770: 7852, 774: 7862 }], + 7841: [[97, 803], , { 770: 7853, 774: 7863 }], + 7842: [[65, 777]], + 7843: [[97, 777]], + 7844: [[194, 769]], + 7845: [[226, 769]], + 7846: [[194, 768]], + 7847: [[226, 768]], + 7848: [[194, 777]], + 7849: [[226, 777]], + 7850: [[194, 771]], + 7851: [[226, 771]], + 7852: [[7840, 770]], + 7853: [[7841, 770]], + 7854: [[258, 769]], + 7855: [[259, 769]], + 7856: [[258, 768]], + 7857: [[259, 768]], + 7858: [[258, 777]], + 7859: [[259, 777]], + 7860: [[258, 771]], + 7861: [[259, 771]], + 7862: [[7840, 774]], + 7863: [[7841, 774]], + 7864: [[69, 803], , { 770: 7878 }], + 7865: [[101, 803], , { 770: 7879 }], + 7866: [[69, 777]], + 7867: [[101, 777]], + 7868: [[69, 771]], + 7869: [[101, 771]], + 7870: [[202, 769]], + 7871: [[234, 769]], + 7872: [[202, 768]], + 7873: [[234, 768]], + 7874: [[202, 777]], + 7875: [[234, 777]], + 7876: [[202, 771]], + 7877: [[234, 771]], + 7878: [[7864, 770]], + 7879: [[7865, 770]], + 7880: [[73, 777]], + 7881: [[105, 777]], + 7882: [[73, 803]], + 7883: [[105, 803]], + 7884: [[79, 803], , { 770: 7896 }], + 7885: [[111, 803], , { 770: 7897 }], + 7886: [[79, 777]], + 7887: [[111, 777]], + 7888: [[212, 769]], + 7889: [[244, 769]], + 7890: [[212, 768]], + 7891: [[244, 768]], + 7892: [[212, 777]], + 7893: [[244, 777]], + 7894: [[212, 771]], + 7895: [[244, 771]], + 7896: [[7884, 770]], + 7897: [[7885, 770]], + 7898: [[416, 769]], + 7899: [[417, 769]], + 7900: [[416, 768]], + 7901: [[417, 768]], + 7902: [[416, 777]], + 7903: [[417, 777]], + 7904: [[416, 771]], + 7905: [[417, 771]], + 7906: [[416, 803]], + 7907: [[417, 803]], + 7908: [[85, 803]], + 7909: [[117, 803]], + 7910: [[85, 777]], + 7911: [[117, 777]], + 7912: [[431, 769]], + 7913: [[432, 769]], + 7914: [[431, 768]], + 7915: [[432, 768]], + 7916: [[431, 777]], + 7917: [[432, 777]], + 7918: [[431, 771]], + 7919: [[432, 771]], + 7920: [[431, 803]], + 7921: [[432, 803]], + 7922: [[89, 768]], + 7923: [[121, 768]], + 7924: [[89, 803]], + 7925: [[121, 803]], + 7926: [[89, 777]], + 7927: [[121, 777]], + 7928: [[89, 771]], + 7929: [[121, 771]] + }, + 7936: { + 7936: [ + [945, 787], + , + { 768: 7938, 769: 7940, 834: 7942, 837: 8064 } + ], + 7937: [ + [945, 788], + , + { 768: 7939, 769: 7941, 834: 7943, 837: 8065 } + ], + 7938: [[7936, 768], , { 837: 8066 }], + 7939: [[7937, 768], , { 837: 8067 }], + 7940: [[7936, 769], , { 837: 8068 }], + 7941: [[7937, 769], , { 837: 8069 }], + 7942: [[7936, 834], , { 837: 8070 }], + 7943: [[7937, 834], , { 837: 8071 }], + 7944: [ + [913, 787], + , + { 768: 7946, 769: 7948, 834: 7950, 837: 8072 } + ], + 7945: [ + [913, 788], + , + { 768: 7947, 769: 7949, 834: 7951, 837: 8073 } + ], + 7946: [[7944, 768], , { 837: 8074 }], + 7947: [[7945, 768], , { 837: 8075 }], + 7948: [[7944, 769], , { 837: 8076 }], + 7949: [[7945, 769], , { 837: 8077 }], + 7950: [[7944, 834], , { 837: 8078 }], + 7951: [[7945, 834], , { 837: 8079 }], + 7952: [[949, 787], , { 768: 7954, 769: 7956 }], + 7953: [[949, 788], , { 768: 7955, 769: 7957 }], + 7954: [[7952, 768]], + 7955: [[7953, 768]], + 7956: [[7952, 769]], + 7957: [[7953, 769]], + 7960: [[917, 787], , { 768: 7962, 769: 7964 }], + 7961: [[917, 788], , { 768: 7963, 769: 7965 }], + 7962: [[7960, 768]], + 7963: [[7961, 768]], + 7964: [[7960, 769]], + 7965: [[7961, 769]], + 7968: [ + [951, 787], + , + { 768: 7970, 769: 7972, 834: 7974, 837: 8080 } + ], + 7969: [ + [951, 788], + , + { 768: 7971, 769: 7973, 834: 7975, 837: 8081 } + ], + 7970: [[7968, 768], , { 837: 8082 }], + 7971: [[7969, 768], , { 837: 8083 }], + 7972: [[7968, 769], , { 837: 8084 }], + 7973: [[7969, 769], , { 837: 8085 }], + 7974: [[7968, 834], , { 837: 8086 }], + 7975: [[7969, 834], , { 837: 8087 }], + 7976: [ + [919, 787], + , + { 768: 7978, 769: 7980, 834: 7982, 837: 8088 } + ], + 7977: [ + [919, 788], + , + { 768: 7979, 769: 7981, 834: 7983, 837: 8089 } + ], + 7978: [[7976, 768], , { 837: 8090 }], + 7979: [[7977, 768], , { 837: 8091 }], + 7980: [[7976, 769], , { 837: 8092 }], + 7981: [[7977, 769], , { 837: 8093 }], + 7982: [[7976, 834], , { 837: 8094 }], + 7983: [[7977, 834], , { 837: 8095 }], + 7984: [[953, 787], , { 768: 7986, 769: 7988, 834: 7990 }], + 7985: [[953, 788], , { 768: 7987, 769: 7989, 834: 7991 }], + 7986: [[7984, 768]], + 7987: [[7985, 768]], + 7988: [[7984, 769]], + 7989: [[7985, 769]], + 7990: [[7984, 834]], + 7991: [[7985, 834]], + 7992: [[921, 787], , { 768: 7994, 769: 7996, 834: 7998 }], + 7993: [[921, 788], , { 768: 7995, 769: 7997, 834: 7999 }], + 7994: [[7992, 768]], + 7995: [[7993, 768]], + 7996: [[7992, 769]], + 7997: [[7993, 769]], + 7998: [[7992, 834]], + 7999: [[7993, 834]], + 8e3: [[959, 787], , { 768: 8002, 769: 8004 }], + 8001: [[959, 788], , { 768: 8003, 769: 8005 }], + 8002: [[8e3, 768]], + 8003: [[8001, 768]], + 8004: [[8e3, 769]], + 8005: [[8001, 769]], + 8008: [[927, 787], , { 768: 8010, 769: 8012 }], + 8009: [[927, 788], , { 768: 8011, 769: 8013 }], + 8010: [[8008, 768]], + 8011: [[8009, 768]], + 8012: [[8008, 769]], + 8013: [[8009, 769]], + 8016: [[965, 787], , { 768: 8018, 769: 8020, 834: 8022 }], + 8017: [[965, 788], , { 768: 8019, 769: 8021, 834: 8023 }], + 8018: [[8016, 768]], + 8019: [[8017, 768]], + 8020: [[8016, 769]], + 8021: [[8017, 769]], + 8022: [[8016, 834]], + 8023: [[8017, 834]], + 8025: [[933, 788], , { 768: 8027, 769: 8029, 834: 8031 }], + 8027: [[8025, 768]], + 8029: [[8025, 769]], + 8031: [[8025, 834]], + 8032: [ + [969, 787], + , + { 768: 8034, 769: 8036, 834: 8038, 837: 8096 } + ], + 8033: [ + [969, 788], + , + { 768: 8035, 769: 8037, 834: 8039, 837: 8097 } + ], + 8034: [[8032, 768], , { 837: 8098 }], + 8035: [[8033, 768], , { 837: 8099 }], + 8036: [[8032, 769], , { 837: 8100 }], + 8037: [[8033, 769], , { 837: 8101 }], + 8038: [[8032, 834], , { 837: 8102 }], + 8039: [[8033, 834], , { 837: 8103 }], + 8040: [ + [937, 787], + , + { 768: 8042, 769: 8044, 834: 8046, 837: 8104 } + ], + 8041: [ + [937, 788], + , + { 768: 8043, 769: 8045, 834: 8047, 837: 8105 } + ], + 8042: [[8040, 768], , { 837: 8106 }], + 8043: [[8041, 768], , { 837: 8107 }], + 8044: [[8040, 769], , { 837: 8108 }], + 8045: [[8041, 769], , { 837: 8109 }], + 8046: [[8040, 834], , { 837: 8110 }], + 8047: [[8041, 834], , { 837: 8111 }], + 8048: [[945, 768], , { 837: 8114 }], + 8049: [[940]], + 8050: [[949, 768]], + 8051: [[941]], + 8052: [[951, 768], , { 837: 8130 }], + 8053: [[942]], + 8054: [[953, 768]], + 8055: [[943]], + 8056: [[959, 768]], + 8057: [[972]], + 8058: [[965, 768]], + 8059: [[973]], + 8060: [[969, 768], , { 837: 8178 }], + 8061: [[974]], + 8064: [[7936, 837]], + 8065: [[7937, 837]], + 8066: [[7938, 837]], + 8067: [[7939, 837]], + 8068: [[7940, 837]], + 8069: [[7941, 837]], + 8070: [[7942, 837]], + 8071: [[7943, 837]], + 8072: [[7944, 837]], + 8073: [[7945, 837]], + 8074: [[7946, 837]], + 8075: [[7947, 837]], + 8076: [[7948, 837]], + 8077: [[7949, 837]], + 8078: [[7950, 837]], + 8079: [[7951, 837]], + 8080: [[7968, 837]], + 8081: [[7969, 837]], + 8082: [[7970, 837]], + 8083: [[7971, 837]], + 8084: [[7972, 837]], + 8085: [[7973, 837]], + 8086: [[7974, 837]], + 8087: [[7975, 837]], + 8088: [[7976, 837]], + 8089: [[7977, 837]], + 8090: [[7978, 837]], + 8091: [[7979, 837]], + 8092: [[7980, 837]], + 8093: [[7981, 837]], + 8094: [[7982, 837]], + 8095: [[7983, 837]], + 8096: [[8032, 837]], + 8097: [[8033, 837]], + 8098: [[8034, 837]], + 8099: [[8035, 837]], + 8100: [[8036, 837]], + 8101: [[8037, 837]], + 8102: [[8038, 837]], + 8103: [[8039, 837]], + 8104: [[8040, 837]], + 8105: [[8041, 837]], + 8106: [[8042, 837]], + 8107: [[8043, 837]], + 8108: [[8044, 837]], + 8109: [[8045, 837]], + 8110: [[8046, 837]], + 8111: [[8047, 837]], + 8112: [[945, 774]], + 8113: [[945, 772]], + 8114: [[8048, 837]], + 8115: [[945, 837]], + 8116: [[940, 837]], + 8118: [[945, 834], , { 837: 8119 }], + 8119: [[8118, 837]], + 8120: [[913, 774]], + 8121: [[913, 772]], + 8122: [[913, 768]], + 8123: [[902]], + 8124: [[913, 837]], + 8125: [[32, 787], 256], + 8126: [[953]], + 8127: [[32, 787], 256, { 768: 8141, 769: 8142, 834: 8143 }], + 8128: [[32, 834], 256], + 8129: [[168, 834]], + 8130: [[8052, 837]], + 8131: [[951, 837]], + 8132: [[942, 837]], + 8134: [[951, 834], , { 837: 8135 }], + 8135: [[8134, 837]], + 8136: [[917, 768]], + 8137: [[904]], + 8138: [[919, 768]], + 8139: [[905]], + 8140: [[919, 837]], + 8141: [[8127, 768]], + 8142: [[8127, 769]], + 8143: [[8127, 834]], + 8144: [[953, 774]], + 8145: [[953, 772]], + 8146: [[970, 768]], + 8147: [[912]], + 8150: [[953, 834]], + 8151: [[970, 834]], + 8152: [[921, 774]], + 8153: [[921, 772]], + 8154: [[921, 768]], + 8155: [[906]], + 8157: [[8190, 768]], + 8158: [[8190, 769]], + 8159: [[8190, 834]], + 8160: [[965, 774]], + 8161: [[965, 772]], + 8162: [[971, 768]], + 8163: [[944]], + 8164: [[961, 787]], + 8165: [[961, 788]], + 8166: [[965, 834]], + 8167: [[971, 834]], + 8168: [[933, 774]], + 8169: [[933, 772]], + 8170: [[933, 768]], + 8171: [[910]], + 8172: [[929, 788]], + 8173: [[168, 768]], + 8174: [[901]], + 8175: [[96]], + 8178: [[8060, 837]], + 8179: [[969, 837]], + 8180: [[974, 837]], + 8182: [[969, 834], , { 837: 8183 }], + 8183: [[8182, 837]], + 8184: [[927, 768]], + 8185: [[908]], + 8186: [[937, 768]], + 8187: [[911]], + 8188: [[937, 837]], + 8189: [[180]], + 8190: [[32, 788], 256, { 768: 8157, 769: 8158, 834: 8159 }] + }, + 8192: { + 8192: [[8194]], + 8193: [[8195]], + 8194: [[32], 256], + 8195: [[32], 256], + 8196: [[32], 256], + 8197: [[32], 256], + 8198: [[32], 256], + 8199: [[32], 256], + 8200: [[32], 256], + 8201: [[32], 256], + 8202: [[32], 256], + 8209: [[8208], 256], + 8215: [[32, 819], 256], + 8228: [[46], 256], + 8229: [[46, 46], 256], + 8230: [[46, 46, 46], 256], + 8239: [[32], 256], + 8243: [[8242, 8242], 256], + 8244: [[8242, 8242, 8242], 256], + 8246: [[8245, 8245], 256], + 8247: [[8245, 8245, 8245], 256], + 8252: [[33, 33], 256], + 8254: [[32, 773], 256], + 8263: [[63, 63], 256], + 8264: [[63, 33], 256], + 8265: [[33, 63], 256], + 8279: [[8242, 8242, 8242, 8242], 256], + 8287: [[32], 256], + 8304: [[48], 256], + 8305: [[105], 256], + 8308: [[52], 256], + 8309: [[53], 256], + 8310: [[54], 256], + 8311: [[55], 256], + 8312: [[56], 256], + 8313: [[57], 256], + 8314: [[43], 256], + 8315: [[8722], 256], + 8316: [[61], 256], + 8317: [[40], 256], + 8318: [[41], 256], + 8319: [[110], 256], + 8320: [[48], 256], + 8321: [[49], 256], + 8322: [[50], 256], + 8323: [[51], 256], + 8324: [[52], 256], + 8325: [[53], 256], + 8326: [[54], 256], + 8327: [[55], 256], + 8328: [[56], 256], + 8329: [[57], 256], + 8330: [[43], 256], + 8331: [[8722], 256], + 8332: [[61], 256], + 8333: [[40], 256], + 8334: [[41], 256], + 8336: [[97], 256], + 8337: [[101], 256], + 8338: [[111], 256], + 8339: [[120], 256], + 8340: [[601], 256], + 8341: [[104], 256], + 8342: [[107], 256], + 8343: [[108], 256], + 8344: [[109], 256], + 8345: [[110], 256], + 8346: [[112], 256], + 8347: [[115], 256], + 8348: [[116], 256], + 8360: [[82, 115], 256], + 8400: [, 230], + 8401: [, 230], + 8402: [, 1], + 8403: [, 1], + 8404: [, 230], + 8405: [, 230], + 8406: [, 230], + 8407: [, 230], + 8408: [, 1], + 8409: [, 1], + 8410: [, 1], + 8411: [, 230], + 8412: [, 230], + 8417: [, 230], + 8421: [, 1], + 8422: [, 1], + 8423: [, 230], + 8424: [, 220], + 8425: [, 230], + 8426: [, 1], + 8427: [, 1], + 8428: [, 220], + 8429: [, 220], + 8430: [, 220], + 8431: [, 220], + 8432: [, 230] + }, + 8448: { + 8448: [[97, 47, 99], 256], + 8449: [[97, 47, 115], 256], + 8450: [[67], 256], + 8451: [[176, 67], 256], + 8453: [[99, 47, 111], 256], + 8454: [[99, 47, 117], 256], + 8455: [[400], 256], + 8457: [[176, 70], 256], + 8458: [[103], 256], + 8459: [[72], 256], + 8460: [[72], 256], + 8461: [[72], 256], + 8462: [[104], 256], + 8463: [[295], 256], + 8464: [[73], 256], + 8465: [[73], 256], + 8466: [[76], 256], + 8467: [[108], 256], + 8469: [[78], 256], + 8470: [[78, 111], 256], + 8473: [[80], 256], + 8474: [[81], 256], + 8475: [[82], 256], + 8476: [[82], 256], + 8477: [[82], 256], + 8480: [[83, 77], 256], + 8481: [[84, 69, 76], 256], + 8482: [[84, 77], 256], + 8484: [[90], 256], + 8486: [[937]], + 8488: [[90], 256], + 8490: [[75]], + 8491: [[197]], + 8492: [[66], 256], + 8493: [[67], 256], + 8495: [[101], 256], + 8496: [[69], 256], + 8497: [[70], 256], + 8499: [[77], 256], + 8500: [[111], 256], + 8501: [[1488], 256], + 8502: [[1489], 256], + 8503: [[1490], 256], + 8504: [[1491], 256], + 8505: [[105], 256], + 8507: [[70, 65, 88], 256], + 8508: [[960], 256], + 8509: [[947], 256], + 8510: [[915], 256], + 8511: [[928], 256], + 8512: [[8721], 256], + 8517: [[68], 256], + 8518: [[100], 256], + 8519: [[101], 256], + 8520: [[105], 256], + 8521: [[106], 256], + 8528: [[49, 8260, 55], 256], + 8529: [[49, 8260, 57], 256], + 8530: [[49, 8260, 49, 48], 256], + 8531: [[49, 8260, 51], 256], + 8532: [[50, 8260, 51], 256], + 8533: [[49, 8260, 53], 256], + 8534: [[50, 8260, 53], 256], + 8535: [[51, 8260, 53], 256], + 8536: [[52, 8260, 53], 256], + 8537: [[49, 8260, 54], 256], + 8538: [[53, 8260, 54], 256], + 8539: [[49, 8260, 56], 256], + 8540: [[51, 8260, 56], 256], + 8541: [[53, 8260, 56], 256], + 8542: [[55, 8260, 56], 256], + 8543: [[49, 8260], 256], + 8544: [[73], 256], + 8545: [[73, 73], 256], + 8546: [[73, 73, 73], 256], + 8547: [[73, 86], 256], + 8548: [[86], 256], + 8549: [[86, 73], 256], + 8550: [[86, 73, 73], 256], + 8551: [[86, 73, 73, 73], 256], + 8552: [[73, 88], 256], + 8553: [[88], 256], + 8554: [[88, 73], 256], + 8555: [[88, 73, 73], 256], + 8556: [[76], 256], + 8557: [[67], 256], + 8558: [[68], 256], + 8559: [[77], 256], + 8560: [[105], 256], + 8561: [[105, 105], 256], + 8562: [[105, 105, 105], 256], + 8563: [[105, 118], 256], + 8564: [[118], 256], + 8565: [[118, 105], 256], + 8566: [[118, 105, 105], 256], + 8567: [[118, 105, 105, 105], 256], + 8568: [[105, 120], 256], + 8569: [[120], 256], + 8570: [[120, 105], 256], + 8571: [[120, 105, 105], 256], + 8572: [[108], 256], + 8573: [[99], 256], + 8574: [[100], 256], + 8575: [[109], 256], + 8585: [[48, 8260, 51], 256], + 8592: [, , { 824: 8602 }], + 8594: [, , { 824: 8603 }], + 8596: [, , { 824: 8622 }], + 8602: [[8592, 824]], + 8603: [[8594, 824]], + 8622: [[8596, 824]], + 8653: [[8656, 824]], + 8654: [[8660, 824]], + 8655: [[8658, 824]], + 8656: [, , { 824: 8653 }], + 8658: [, , { 824: 8655 }], + 8660: [, , { 824: 8654 }] + }, + 8704: { + 8707: [, , { 824: 8708 }], + 8708: [[8707, 824]], + 8712: [, , { 824: 8713 }], + 8713: [[8712, 824]], + 8715: [, , { 824: 8716 }], + 8716: [[8715, 824]], + 8739: [, , { 824: 8740 }], + 8740: [[8739, 824]], + 8741: [, , { 824: 8742 }], + 8742: [[8741, 824]], + 8748: [[8747, 8747], 256], + 8749: [[8747, 8747, 8747], 256], + 8751: [[8750, 8750], 256], + 8752: [[8750, 8750, 8750], 256], + 8764: [, , { 824: 8769 }], + 8769: [[8764, 824]], + 8771: [, , { 824: 8772 }], + 8772: [[8771, 824]], + 8773: [, , { 824: 8775 }], + 8775: [[8773, 824]], + 8776: [, , { 824: 8777 }], + 8777: [[8776, 824]], + 8781: [, , { 824: 8813 }], + 8800: [[61, 824]], + 8801: [, , { 824: 8802 }], + 8802: [[8801, 824]], + 8804: [, , { 824: 8816 }], + 8805: [, , { 824: 8817 }], + 8813: [[8781, 824]], + 8814: [[60, 824]], + 8815: [[62, 824]], + 8816: [[8804, 824]], + 8817: [[8805, 824]], + 8818: [, , { 824: 8820 }], + 8819: [, , { 824: 8821 }], + 8820: [[8818, 824]], + 8821: [[8819, 824]], + 8822: [, , { 824: 8824 }], + 8823: [, , { 824: 8825 }], + 8824: [[8822, 824]], + 8825: [[8823, 824]], + 8826: [, , { 824: 8832 }], + 8827: [, , { 824: 8833 }], + 8828: [, , { 824: 8928 }], + 8829: [, , { 824: 8929 }], + 8832: [[8826, 824]], + 8833: [[8827, 824]], + 8834: [, , { 824: 8836 }], + 8835: [, , { 824: 8837 }], + 8836: [[8834, 824]], + 8837: [[8835, 824]], + 8838: [, , { 824: 8840 }], + 8839: [, , { 824: 8841 }], + 8840: [[8838, 824]], + 8841: [[8839, 824]], + 8849: [, , { 824: 8930 }], + 8850: [, , { 824: 8931 }], + 8866: [, , { 824: 8876 }], + 8872: [, , { 824: 8877 }], + 8873: [, , { 824: 8878 }], + 8875: [, , { 824: 8879 }], + 8876: [[8866, 824]], + 8877: [[8872, 824]], + 8878: [[8873, 824]], + 8879: [[8875, 824]], + 8882: [, , { 824: 8938 }], + 8883: [, , { 824: 8939 }], + 8884: [, , { 824: 8940 }], + 8885: [, , { 824: 8941 }], + 8928: [[8828, 824]], + 8929: [[8829, 824]], + 8930: [[8849, 824]], + 8931: [[8850, 824]], + 8938: [[8882, 824]], + 8939: [[8883, 824]], + 8940: [[8884, 824]], + 8941: [[8885, 824]] + }, + 8960: { 9001: [[12296]], 9002: [[12297]] }, + 9216: { + 9312: [[49], 256], + 9313: [[50], 256], + 9314: [[51], 256], + 9315: [[52], 256], + 9316: [[53], 256], + 9317: [[54], 256], + 9318: [[55], 256], + 9319: [[56], 256], + 9320: [[57], 256], + 9321: [[49, 48], 256], + 9322: [[49, 49], 256], + 9323: [[49, 50], 256], + 9324: [[49, 51], 256], + 9325: [[49, 52], 256], + 9326: [[49, 53], 256], + 9327: [[49, 54], 256], + 9328: [[49, 55], 256], + 9329: [[49, 56], 256], + 9330: [[49, 57], 256], + 9331: [[50, 48], 256], + 9332: [[40, 49, 41], 256], + 9333: [[40, 50, 41], 256], + 9334: [[40, 51, 41], 256], + 9335: [[40, 52, 41], 256], + 9336: [[40, 53, 41], 256], + 9337: [[40, 54, 41], 256], + 9338: [[40, 55, 41], 256], + 9339: [[40, 56, 41], 256], + 9340: [[40, 57, 41], 256], + 9341: [[40, 49, 48, 41], 256], + 9342: [[40, 49, 49, 41], 256], + 9343: [[40, 49, 50, 41], 256], + 9344: [[40, 49, 51, 41], 256], + 9345: [[40, 49, 52, 41], 256], + 9346: [[40, 49, 53, 41], 256], + 9347: [[40, 49, 54, 41], 256], + 9348: [[40, 49, 55, 41], 256], + 9349: [[40, 49, 56, 41], 256], + 9350: [[40, 49, 57, 41], 256], + 9351: [[40, 50, 48, 41], 256], + 9352: [[49, 46], 256], + 9353: [[50, 46], 256], + 9354: [[51, 46], 256], + 9355: [[52, 46], 256], + 9356: [[53, 46], 256], + 9357: [[54, 46], 256], + 9358: [[55, 46], 256], + 9359: [[56, 46], 256], + 9360: [[57, 46], 256], + 9361: [[49, 48, 46], 256], + 9362: [[49, 49, 46], 256], + 9363: [[49, 50, 46], 256], + 9364: [[49, 51, 46], 256], + 9365: [[49, 52, 46], 256], + 9366: [[49, 53, 46], 256], + 9367: [[49, 54, 46], 256], + 9368: [[49, 55, 46], 256], + 9369: [[49, 56, 46], 256], + 9370: [[49, 57, 46], 256], + 9371: [[50, 48, 46], 256], + 9372: [[40, 97, 41], 256], + 9373: [[40, 98, 41], 256], + 9374: [[40, 99, 41], 256], + 9375: [[40, 100, 41], 256], + 9376: [[40, 101, 41], 256], + 9377: [[40, 102, 41], 256], + 9378: [[40, 103, 41], 256], + 9379: [[40, 104, 41], 256], + 9380: [[40, 105, 41], 256], + 9381: [[40, 106, 41], 256], + 9382: [[40, 107, 41], 256], + 9383: [[40, 108, 41], 256], + 9384: [[40, 109, 41], 256], + 9385: [[40, 110, 41], 256], + 9386: [[40, 111, 41], 256], + 9387: [[40, 112, 41], 256], + 9388: [[40, 113, 41], 256], + 9389: [[40, 114, 41], 256], + 9390: [[40, 115, 41], 256], + 9391: [[40, 116, 41], 256], + 9392: [[40, 117, 41], 256], + 9393: [[40, 118, 41], 256], + 9394: [[40, 119, 41], 256], + 9395: [[40, 120, 41], 256], + 9396: [[40, 121, 41], 256], + 9397: [[40, 122, 41], 256], + 9398: [[65], 256], + 9399: [[66], 256], + 9400: [[67], 256], + 9401: [[68], 256], + 9402: [[69], 256], + 9403: [[70], 256], + 9404: [[71], 256], + 9405: [[72], 256], + 9406: [[73], 256], + 9407: [[74], 256], + 9408: [[75], 256], + 9409: [[76], 256], + 9410: [[77], 256], + 9411: [[78], 256], + 9412: [[79], 256], + 9413: [[80], 256], + 9414: [[81], 256], + 9415: [[82], 256], + 9416: [[83], 256], + 9417: [[84], 256], + 9418: [[85], 256], + 9419: [[86], 256], + 9420: [[87], 256], + 9421: [[88], 256], + 9422: [[89], 256], + 9423: [[90], 256], + 9424: [[97], 256], + 9425: [[98], 256], + 9426: [[99], 256], + 9427: [[100], 256], + 9428: [[101], 256], + 9429: [[102], 256], + 9430: [[103], 256], + 9431: [[104], 256], + 9432: [[105], 256], + 9433: [[106], 256], + 9434: [[107], 256], + 9435: [[108], 256], + 9436: [[109], 256], + 9437: [[110], 256], + 9438: [[111], 256], + 9439: [[112], 256], + 9440: [[113], 256], + 9441: [[114], 256], + 9442: [[115], 256], + 9443: [[116], 256], + 9444: [[117], 256], + 9445: [[118], 256], + 9446: [[119], 256], + 9447: [[120], 256], + 9448: [[121], 256], + 9449: [[122], 256], + 9450: [[48], 256] + }, + 10752: { + 10764: [[8747, 8747, 8747, 8747], 256], + 10868: [[58, 58, 61], 256], + 10869: [[61, 61], 256], + 10870: [[61, 61, 61], 256], + 10972: [[10973, 824], 512] + }, + 11264: { + 11388: [[106], 256], + 11389: [[86], 256], + 11503: [, 230], + 11504: [, 230], + 11505: [, 230] + }, + 11520: { + 11631: [[11617], 256], + 11647: [, 9], + 11744: [, 230], + 11745: [, 230], + 11746: [, 230], + 11747: [, 230], + 11748: [, 230], + 11749: [, 230], + 11750: [, 230], + 11751: [, 230], + 11752: [, 230], + 11753: [, 230], + 11754: [, 230], + 11755: [, 230], + 11756: [, 230], + 11757: [, 230], + 11758: [, 230], + 11759: [, 230], + 11760: [, 230], + 11761: [, 230], + 11762: [, 230], + 11763: [, 230], + 11764: [, 230], + 11765: [, 230], + 11766: [, 230], + 11767: [, 230], + 11768: [, 230], + 11769: [, 230], + 11770: [, 230], + 11771: [, 230], + 11772: [, 230], + 11773: [, 230], + 11774: [, 230], + 11775: [, 230] + }, + 11776: { 11935: [[27597], 256], 12019: [[40863], 256] }, + 12032: { + 12032: [[19968], 256], + 12033: [[20008], 256], + 12034: [[20022], 256], + 12035: [[20031], 256], + 12036: [[20057], 256], + 12037: [[20101], 256], + 12038: [[20108], 256], + 12039: [[20128], 256], + 12040: [[20154], 256], + 12041: [[20799], 256], + 12042: [[20837], 256], + 12043: [[20843], 256], + 12044: [[20866], 256], + 12045: [[20886], 256], + 12046: [[20907], 256], + 12047: [[20960], 256], + 12048: [[20981], 256], + 12049: [[20992], 256], + 12050: [[21147], 256], + 12051: [[21241], 256], + 12052: [[21269], 256], + 12053: [[21274], 256], + 12054: [[21304], 256], + 12055: [[21313], 256], + 12056: [[21340], 256], + 12057: [[21353], 256], + 12058: [[21378], 256], + 12059: [[21430], 256], + 12060: [[21448], 256], + 12061: [[21475], 256], + 12062: [[22231], 256], + 12063: [[22303], 256], + 12064: [[22763], 256], + 12065: [[22786], 256], + 12066: [[22794], 256], + 12067: [[22805], 256], + 12068: [[22823], 256], + 12069: [[22899], 256], + 12070: [[23376], 256], + 12071: [[23424], 256], + 12072: [[23544], 256], + 12073: [[23567], 256], + 12074: [[23586], 256], + 12075: [[23608], 256], + 12076: [[23662], 256], + 12077: [[23665], 256], + 12078: [[24027], 256], + 12079: [[24037], 256], + 12080: [[24049], 256], + 12081: [[24062], 256], + 12082: [[24178], 256], + 12083: [[24186], 256], + 12084: [[24191], 256], + 12085: [[24308], 256], + 12086: [[24318], 256], + 12087: [[24331], 256], + 12088: [[24339], 256], + 12089: [[24400], 256], + 12090: [[24417], 256], + 12091: [[24435], 256], + 12092: [[24515], 256], + 12093: [[25096], 256], + 12094: [[25142], 256], + 12095: [[25163], 256], + 12096: [[25903], 256], + 12097: [[25908], 256], + 12098: [[25991], 256], + 12099: [[26007], 256], + 12100: [[26020], 256], + 12101: [[26041], 256], + 12102: [[26080], 256], + 12103: [[26085], 256], + 12104: [[26352], 256], + 12105: [[26376], 256], + 12106: [[26408], 256], + 12107: [[27424], 256], + 12108: [[27490], 256], + 12109: [[27513], 256], + 12110: [[27571], 256], + 12111: [[27595], 256], + 12112: [[27604], 256], + 12113: [[27611], 256], + 12114: [[27663], 256], + 12115: [[27668], 256], + 12116: [[27700], 256], + 12117: [[28779], 256], + 12118: [[29226], 256], + 12119: [[29238], 256], + 12120: [[29243], 256], + 12121: [[29247], 256], + 12122: [[29255], 256], + 12123: [[29273], 256], + 12124: [[29275], 256], + 12125: [[29356], 256], + 12126: [[29572], 256], + 12127: [[29577], 256], + 12128: [[29916], 256], + 12129: [[29926], 256], + 12130: [[29976], 256], + 12131: [[29983], 256], + 12132: [[29992], 256], + 12133: [[3e4], 256], + 12134: [[30091], 256], + 12135: [[30098], 256], + 12136: [[30326], 256], + 12137: [[30333], 256], + 12138: [[30382], 256], + 12139: [[30399], 256], + 12140: [[30446], 256], + 12141: [[30683], 256], + 12142: [[30690], 256], + 12143: [[30707], 256], + 12144: [[31034], 256], + 12145: [[31160], 256], + 12146: [[31166], 256], + 12147: [[31348], 256], + 12148: [[31435], 256], + 12149: [[31481], 256], + 12150: [[31859], 256], + 12151: [[31992], 256], + 12152: [[32566], 256], + 12153: [[32593], 256], + 12154: [[32650], 256], + 12155: [[32701], 256], + 12156: [[32769], 256], + 12157: [[32780], 256], + 12158: [[32786], 256], + 12159: [[32819], 256], + 12160: [[32895], 256], + 12161: [[32905], 256], + 12162: [[33251], 256], + 12163: [[33258], 256], + 12164: [[33267], 256], + 12165: [[33276], 256], + 12166: [[33292], 256], + 12167: [[33307], 256], + 12168: [[33311], 256], + 12169: [[33390], 256], + 12170: [[33394], 256], + 12171: [[33400], 256], + 12172: [[34381], 256], + 12173: [[34411], 256], + 12174: [[34880], 256], + 12175: [[34892], 256], + 12176: [[34915], 256], + 12177: [[35198], 256], + 12178: [[35211], 256], + 12179: [[35282], 256], + 12180: [[35328], 256], + 12181: [[35895], 256], + 12182: [[35910], 256], + 12183: [[35925], 256], + 12184: [[35960], 256], + 12185: [[35997], 256], + 12186: [[36196], 256], + 12187: [[36208], 256], + 12188: [[36275], 256], + 12189: [[36523], 256], + 12190: [[36554], 256], + 12191: [[36763], 256], + 12192: [[36784], 256], + 12193: [[36789], 256], + 12194: [[37009], 256], + 12195: [[37193], 256], + 12196: [[37318], 256], + 12197: [[37324], 256], + 12198: [[37329], 256], + 12199: [[38263], 256], + 12200: [[38272], 256], + 12201: [[38428], 256], + 12202: [[38582], 256], + 12203: [[38585], 256], + 12204: [[38632], 256], + 12205: [[38737], 256], + 12206: [[38750], 256], + 12207: [[38754], 256], + 12208: [[38761], 256], + 12209: [[38859], 256], + 12210: [[38893], 256], + 12211: [[38899], 256], + 12212: [[38913], 256], + 12213: [[39080], 256], + 12214: [[39131], 256], + 12215: [[39135], 256], + 12216: [[39318], 256], + 12217: [[39321], 256], + 12218: [[39340], 256], + 12219: [[39592], 256], + 12220: [[39640], 256], + 12221: [[39647], 256], + 12222: [[39717], 256], + 12223: [[39727], 256], + 12224: [[39730], 256], + 12225: [[39740], 256], + 12226: [[39770], 256], + 12227: [[40165], 256], + 12228: [[40565], 256], + 12229: [[40575], 256], + 12230: [[40613], 256], + 12231: [[40635], 256], + 12232: [[40643], 256], + 12233: [[40653], 256], + 12234: [[40657], 256], + 12235: [[40697], 256], + 12236: [[40701], 256], + 12237: [[40718], 256], + 12238: [[40723], 256], + 12239: [[40736], 256], + 12240: [[40763], 256], + 12241: [[40778], 256], + 12242: [[40786], 256], + 12243: [[40845], 256], + 12244: [[40860], 256], + 12245: [[40864], 256] + }, + 12288: { + 12288: [[32], 256], + 12330: [, 218], + 12331: [, 228], + 12332: [, 232], + 12333: [, 222], + 12334: [, 224], + 12335: [, 224], + 12342: [[12306], 256], + 12344: [[21313], 256], + 12345: [[21316], 256], + 12346: [[21317], 256], + 12358: [, , { 12441: 12436 }], + 12363: [, , { 12441: 12364 }], + 12364: [[12363, 12441]], + 12365: [, , { 12441: 12366 }], + 12366: [[12365, 12441]], + 12367: [, , { 12441: 12368 }], + 12368: [[12367, 12441]], + 12369: [, , { 12441: 12370 }], + 12370: [[12369, 12441]], + 12371: [, , { 12441: 12372 }], + 12372: [[12371, 12441]], + 12373: [, , { 12441: 12374 }], + 12374: [[12373, 12441]], + 12375: [, , { 12441: 12376 }], + 12376: [[12375, 12441]], + 12377: [, , { 12441: 12378 }], + 12378: [[12377, 12441]], + 12379: [, , { 12441: 12380 }], + 12380: [[12379, 12441]], + 12381: [, , { 12441: 12382 }], + 12382: [[12381, 12441]], + 12383: [, , { 12441: 12384 }], + 12384: [[12383, 12441]], + 12385: [, , { 12441: 12386 }], + 12386: [[12385, 12441]], + 12388: [, , { 12441: 12389 }], + 12389: [[12388, 12441]], + 12390: [, , { 12441: 12391 }], + 12391: [[12390, 12441]], + 12392: [, , { 12441: 12393 }], + 12393: [[12392, 12441]], + 12399: [, , { 12441: 12400, 12442: 12401 }], + 12400: [[12399, 12441]], + 12401: [[12399, 12442]], + 12402: [, , { 12441: 12403, 12442: 12404 }], + 12403: [[12402, 12441]], + 12404: [[12402, 12442]], + 12405: [, , { 12441: 12406, 12442: 12407 }], + 12406: [[12405, 12441]], + 12407: [[12405, 12442]], + 12408: [, , { 12441: 12409, 12442: 12410 }], + 12409: [[12408, 12441]], + 12410: [[12408, 12442]], + 12411: [, , { 12441: 12412, 12442: 12413 }], + 12412: [[12411, 12441]], + 12413: [[12411, 12442]], + 12436: [[12358, 12441]], + 12441: [, 8], + 12442: [, 8], + 12443: [[32, 12441], 256], + 12444: [[32, 12442], 256], + 12445: [, , { 12441: 12446 }], + 12446: [[12445, 12441]], + 12447: [[12424, 12426], 256], + 12454: [, , { 12441: 12532 }], + 12459: [, , { 12441: 12460 }], + 12460: [[12459, 12441]], + 12461: [, , { 12441: 12462 }], + 12462: [[12461, 12441]], + 12463: [, , { 12441: 12464 }], + 12464: [[12463, 12441]], + 12465: [, , { 12441: 12466 }], + 12466: [[12465, 12441]], + 12467: [, , { 12441: 12468 }], + 12468: [[12467, 12441]], + 12469: [, , { 12441: 12470 }], + 12470: [[12469, 12441]], + 12471: [, , { 12441: 12472 }], + 12472: [[12471, 12441]], + 12473: [, , { 12441: 12474 }], + 12474: [[12473, 12441]], + 12475: [, , { 12441: 12476 }], + 12476: [[12475, 12441]], + 12477: [, , { 12441: 12478 }], + 12478: [[12477, 12441]], + 12479: [, , { 12441: 12480 }], + 12480: [[12479, 12441]], + 12481: [, , { 12441: 12482 }], + 12482: [[12481, 12441]], + 12484: [, , { 12441: 12485 }], + 12485: [[12484, 12441]], + 12486: [, , { 12441: 12487 }], + 12487: [[12486, 12441]], + 12488: [, , { 12441: 12489 }], + 12489: [[12488, 12441]], + 12495: [, , { 12441: 12496, 12442: 12497 }], + 12496: [[12495, 12441]], + 12497: [[12495, 12442]], + 12498: [, , { 12441: 12499, 12442: 12500 }], + 12499: [[12498, 12441]], + 12500: [[12498, 12442]], + 12501: [, , { 12441: 12502, 12442: 12503 }], + 12502: [[12501, 12441]], + 12503: [[12501, 12442]], + 12504: [, , { 12441: 12505, 12442: 12506 }], + 12505: [[12504, 12441]], + 12506: [[12504, 12442]], + 12507: [, , { 12441: 12508, 12442: 12509 }], + 12508: [[12507, 12441]], + 12509: [[12507, 12442]], + 12527: [, , { 12441: 12535 }], + 12528: [, , { 12441: 12536 }], + 12529: [, , { 12441: 12537 }], + 12530: [, , { 12441: 12538 }], + 12532: [[12454, 12441]], + 12535: [[12527, 12441]], + 12536: [[12528, 12441]], + 12537: [[12529, 12441]], + 12538: [[12530, 12441]], + 12541: [, , { 12441: 12542 }], + 12542: [[12541, 12441]], + 12543: [[12467, 12488], 256] + }, + 12544: { + 12593: [[4352], 256], + 12594: [[4353], 256], + 12595: [[4522], 256], + 12596: [[4354], 256], + 12597: [[4524], 256], + 12598: [[4525], 256], + 12599: [[4355], 256], + 12600: [[4356], 256], + 12601: [[4357], 256], + 12602: [[4528], 256], + 12603: [[4529], 256], + 12604: [[4530], 256], + 12605: [[4531], 256], + 12606: [[4532], 256], + 12607: [[4533], 256], + 12608: [[4378], 256], + 12609: [[4358], 256], + 12610: [[4359], 256], + 12611: [[4360], 256], + 12612: [[4385], 256], + 12613: [[4361], 256], + 12614: [[4362], 256], + 12615: [[4363], 256], + 12616: [[4364], 256], + 12617: [[4365], 256], + 12618: [[4366], 256], + 12619: [[4367], 256], + 12620: [[4368], 256], + 12621: [[4369], 256], + 12622: [[4370], 256], + 12623: [[4449], 256], + 12624: [[4450], 256], + 12625: [[4451], 256], + 12626: [[4452], 256], + 12627: [[4453], 256], + 12628: [[4454], 256], + 12629: [[4455], 256], + 12630: [[4456], 256], + 12631: [[4457], 256], + 12632: [[4458], 256], + 12633: [[4459], 256], + 12634: [[4460], 256], + 12635: [[4461], 256], + 12636: [[4462], 256], + 12637: [[4463], 256], + 12638: [[4464], 256], + 12639: [[4465], 256], + 12640: [[4466], 256], + 12641: [[4467], 256], + 12642: [[4468], 256], + 12643: [[4469], 256], + 12644: [[4448], 256], + 12645: [[4372], 256], + 12646: [[4373], 256], + 12647: [[4551], 256], + 12648: [[4552], 256], + 12649: [[4556], 256], + 12650: [[4558], 256], + 12651: [[4563], 256], + 12652: [[4567], 256], + 12653: [[4569], 256], + 12654: [[4380], 256], + 12655: [[4573], 256], + 12656: [[4575], 256], + 12657: [[4381], 256], + 12658: [[4382], 256], + 12659: [[4384], 256], + 12660: [[4386], 256], + 12661: [[4387], 256], + 12662: [[4391], 256], + 12663: [[4393], 256], + 12664: [[4395], 256], + 12665: [[4396], 256], + 12666: [[4397], 256], + 12667: [[4398], 256], + 12668: [[4399], 256], + 12669: [[4402], 256], + 12670: [[4406], 256], + 12671: [[4416], 256], + 12672: [[4423], 256], + 12673: [[4428], 256], + 12674: [[4593], 256], + 12675: [[4594], 256], + 12676: [[4439], 256], + 12677: [[4440], 256], + 12678: [[4441], 256], + 12679: [[4484], 256], + 12680: [[4485], 256], + 12681: [[4488], 256], + 12682: [[4497], 256], + 12683: [[4498], 256], + 12684: [[4500], 256], + 12685: [[4510], 256], + 12686: [[4513], 256], + 12690: [[19968], 256], + 12691: [[20108], 256], + 12692: [[19977], 256], + 12693: [[22235], 256], + 12694: [[19978], 256], + 12695: [[20013], 256], + 12696: [[19979], 256], + 12697: [[30002], 256], + 12698: [[20057], 256], + 12699: [[19993], 256], + 12700: [[19969], 256], + 12701: [[22825], 256], + 12702: [[22320], 256], + 12703: [[20154], 256] + }, + 12800: { + 12800: [[40, 4352, 41], 256], + 12801: [[40, 4354, 41], 256], + 12802: [[40, 4355, 41], 256], + 12803: [[40, 4357, 41], 256], + 12804: [[40, 4358, 41], 256], + 12805: [[40, 4359, 41], 256], + 12806: [[40, 4361, 41], 256], + 12807: [[40, 4363, 41], 256], + 12808: [[40, 4364, 41], 256], + 12809: [[40, 4366, 41], 256], + 12810: [[40, 4367, 41], 256], + 12811: [[40, 4368, 41], 256], + 12812: [[40, 4369, 41], 256], + 12813: [[40, 4370, 41], 256], + 12814: [[40, 4352, 4449, 41], 256], + 12815: [[40, 4354, 4449, 41], 256], + 12816: [[40, 4355, 4449, 41], 256], + 12817: [[40, 4357, 4449, 41], 256], + 12818: [[40, 4358, 4449, 41], 256], + 12819: [[40, 4359, 4449, 41], 256], + 12820: [[40, 4361, 4449, 41], 256], + 12821: [[40, 4363, 4449, 41], 256], + 12822: [[40, 4364, 4449, 41], 256], + 12823: [[40, 4366, 4449, 41], 256], + 12824: [[40, 4367, 4449, 41], 256], + 12825: [[40, 4368, 4449, 41], 256], + 12826: [[40, 4369, 4449, 41], 256], + 12827: [[40, 4370, 4449, 41], 256], + 12828: [[40, 4364, 4462, 41], 256], + 12829: [[40, 4363, 4457, 4364, 4453, 4523, 41], 256], + 12830: [[40, 4363, 4457, 4370, 4462, 41], 256], + 12832: [[40, 19968, 41], 256], + 12833: [[40, 20108, 41], 256], + 12834: [[40, 19977, 41], 256], + 12835: [[40, 22235, 41], 256], + 12836: [[40, 20116, 41], 256], + 12837: [[40, 20845, 41], 256], + 12838: [[40, 19971, 41], 256], + 12839: [[40, 20843, 41], 256], + 12840: [[40, 20061, 41], 256], + 12841: [[40, 21313, 41], 256], + 12842: [[40, 26376, 41], 256], + 12843: [[40, 28779, 41], 256], + 12844: [[40, 27700, 41], 256], + 12845: [[40, 26408, 41], 256], + 12846: [[40, 37329, 41], 256], + 12847: [[40, 22303, 41], 256], + 12848: [[40, 26085, 41], 256], + 12849: [[40, 26666, 41], 256], + 12850: [[40, 26377, 41], 256], + 12851: [[40, 31038, 41], 256], + 12852: [[40, 21517, 41], 256], + 12853: [[40, 29305, 41], 256], + 12854: [[40, 36001, 41], 256], + 12855: [[40, 31069, 41], 256], + 12856: [[40, 21172, 41], 256], + 12857: [[40, 20195, 41], 256], + 12858: [[40, 21628, 41], 256], + 12859: [[40, 23398, 41], 256], + 12860: [[40, 30435, 41], 256], + 12861: [[40, 20225, 41], 256], + 12862: [[40, 36039, 41], 256], + 12863: [[40, 21332, 41], 256], + 12864: [[40, 31085, 41], 256], + 12865: [[40, 20241, 41], 256], + 12866: [[40, 33258, 41], 256], + 12867: [[40, 33267, 41], 256], + 12868: [[21839], 256], + 12869: [[24188], 256], + 12870: [[25991], 256], + 12871: [[31631], 256], + 12880: [[80, 84, 69], 256], + 12881: [[50, 49], 256], + 12882: [[50, 50], 256], + 12883: [[50, 51], 256], + 12884: [[50, 52], 256], + 12885: [[50, 53], 256], + 12886: [[50, 54], 256], + 12887: [[50, 55], 256], + 12888: [[50, 56], 256], + 12889: [[50, 57], 256], + 12890: [[51, 48], 256], + 12891: [[51, 49], 256], + 12892: [[51, 50], 256], + 12893: [[51, 51], 256], + 12894: [[51, 52], 256], + 12895: [[51, 53], 256], + 12896: [[4352], 256], + 12897: [[4354], 256], + 12898: [[4355], 256], + 12899: [[4357], 256], + 12900: [[4358], 256], + 12901: [[4359], 256], + 12902: [[4361], 256], + 12903: [[4363], 256], + 12904: [[4364], 256], + 12905: [[4366], 256], + 12906: [[4367], 256], + 12907: [[4368], 256], + 12908: [[4369], 256], + 12909: [[4370], 256], + 12910: [[4352, 4449], 256], + 12911: [[4354, 4449], 256], + 12912: [[4355, 4449], 256], + 12913: [[4357, 4449], 256], + 12914: [[4358, 4449], 256], + 12915: [[4359, 4449], 256], + 12916: [[4361, 4449], 256], + 12917: [[4363, 4449], 256], + 12918: [[4364, 4449], 256], + 12919: [[4366, 4449], 256], + 12920: [[4367, 4449], 256], + 12921: [[4368, 4449], 256], + 12922: [[4369, 4449], 256], + 12923: [[4370, 4449], 256], + 12924: [[4366, 4449, 4535, 4352, 4457], 256], + 12925: [[4364, 4462, 4363, 4468], 256], + 12926: [[4363, 4462], 256], + 12928: [[19968], 256], + 12929: [[20108], 256], + 12930: [[19977], 256], + 12931: [[22235], 256], + 12932: [[20116], 256], + 12933: [[20845], 256], + 12934: [[19971], 256], + 12935: [[20843], 256], + 12936: [[20061], 256], + 12937: [[21313], 256], + 12938: [[26376], 256], + 12939: [[28779], 256], + 12940: [[27700], 256], + 12941: [[26408], 256], + 12942: [[37329], 256], + 12943: [[22303], 256], + 12944: [[26085], 256], + 12945: [[26666], 256], + 12946: [[26377], 256], + 12947: [[31038], 256], + 12948: [[21517], 256], + 12949: [[29305], 256], + 12950: [[36001], 256], + 12951: [[31069], 256], + 12952: [[21172], 256], + 12953: [[31192], 256], + 12954: [[30007], 256], + 12955: [[22899], 256], + 12956: [[36969], 256], + 12957: [[20778], 256], + 12958: [[21360], 256], + 12959: [[27880], 256], + 12960: [[38917], 256], + 12961: [[20241], 256], + 12962: [[20889], 256], + 12963: [[27491], 256], + 12964: [[19978], 256], + 12965: [[20013], 256], + 12966: [[19979], 256], + 12967: [[24038], 256], + 12968: [[21491], 256], + 12969: [[21307], 256], + 12970: [[23447], 256], + 12971: [[23398], 256], + 12972: [[30435], 256], + 12973: [[20225], 256], + 12974: [[36039], 256], + 12975: [[21332], 256], + 12976: [[22812], 256], + 12977: [[51, 54], 256], + 12978: [[51, 55], 256], + 12979: [[51, 56], 256], + 12980: [[51, 57], 256], + 12981: [[52, 48], 256], + 12982: [[52, 49], 256], + 12983: [[52, 50], 256], + 12984: [[52, 51], 256], + 12985: [[52, 52], 256], + 12986: [[52, 53], 256], + 12987: [[52, 54], 256], + 12988: [[52, 55], 256], + 12989: [[52, 56], 256], + 12990: [[52, 57], 256], + 12991: [[53, 48], 256], + 12992: [[49, 26376], 256], + 12993: [[50, 26376], 256], + 12994: [[51, 26376], 256], + 12995: [[52, 26376], 256], + 12996: [[53, 26376], 256], + 12997: [[54, 26376], 256], + 12998: [[55, 26376], 256], + 12999: [[56, 26376], 256], + 13e3: [[57, 26376], 256], + 13001: [[49, 48, 26376], 256], + 13002: [[49, 49, 26376], 256], + 13003: [[49, 50, 26376], 256], + 13004: [[72, 103], 256], + 13005: [[101, 114, 103], 256], + 13006: [[101, 86], 256], + 13007: [[76, 84, 68], 256], + 13008: [[12450], 256], + 13009: [[12452], 256], + 13010: [[12454], 256], + 13011: [[12456], 256], + 13012: [[12458], 256], + 13013: [[12459], 256], + 13014: [[12461], 256], + 13015: [[12463], 256], + 13016: [[12465], 256], + 13017: [[12467], 256], + 13018: [[12469], 256], + 13019: [[12471], 256], + 13020: [[12473], 256], + 13021: [[12475], 256], + 13022: [[12477], 256], + 13023: [[12479], 256], + 13024: [[12481], 256], + 13025: [[12484], 256], + 13026: [[12486], 256], + 13027: [[12488], 256], + 13028: [[12490], 256], + 13029: [[12491], 256], + 13030: [[12492], 256], + 13031: [[12493], 256], + 13032: [[12494], 256], + 13033: [[12495], 256], + 13034: [[12498], 256], + 13035: [[12501], 256], + 13036: [[12504], 256], + 13037: [[12507], 256], + 13038: [[12510], 256], + 13039: [[12511], 256], + 13040: [[12512], 256], + 13041: [[12513], 256], + 13042: [[12514], 256], + 13043: [[12516], 256], + 13044: [[12518], 256], + 13045: [[12520], 256], + 13046: [[12521], 256], + 13047: [[12522], 256], + 13048: [[12523], 256], + 13049: [[12524], 256], + 13050: [[12525], 256], + 13051: [[12527], 256], + 13052: [[12528], 256], + 13053: [[12529], 256], + 13054: [[12530], 256] + }, + 13056: { + 13056: [[12450, 12497, 12540, 12488], 256], + 13057: [[12450, 12523, 12501, 12449], 256], + 13058: [[12450, 12531, 12506, 12450], 256], + 13059: [[12450, 12540, 12523], 256], + 13060: [[12452, 12491, 12531, 12464], 256], + 13061: [[12452, 12531, 12481], 256], + 13062: [[12454, 12457, 12531], 256], + 13063: [[12456, 12473, 12463, 12540, 12489], 256], + 13064: [[12456, 12540, 12459, 12540], 256], + 13065: [[12458, 12531, 12473], 256], + 13066: [[12458, 12540, 12512], 256], + 13067: [[12459, 12452, 12522], 256], + 13068: [[12459, 12521, 12483, 12488], 256], + 13069: [[12459, 12525, 12522, 12540], 256], + 13070: [[12460, 12525, 12531], 256], + 13071: [[12460, 12531, 12510], 256], + 13072: [[12462, 12460], 256], + 13073: [[12462, 12491, 12540], 256], + 13074: [[12461, 12517, 12522, 12540], 256], + 13075: [[12462, 12523, 12480, 12540], 256], + 13076: [[12461, 12525], 256], + 13077: [[12461, 12525, 12464, 12521, 12512], 256], + 13078: [[12461, 12525, 12513, 12540, 12488, 12523], 256], + 13079: [[12461, 12525, 12527, 12483, 12488], 256], + 13080: [[12464, 12521, 12512], 256], + 13081: [[12464, 12521, 12512, 12488, 12531], 256], + 13082: [[12463, 12523, 12476, 12452, 12525], 256], + 13083: [[12463, 12525, 12540, 12493], 256], + 13084: [[12465, 12540, 12473], 256], + 13085: [[12467, 12523, 12490], 256], + 13086: [[12467, 12540, 12509], 256], + 13087: [[12469, 12452, 12463, 12523], 256], + 13088: [[12469, 12531, 12481, 12540, 12512], 256], + 13089: [[12471, 12522, 12531, 12464], 256], + 13090: [[12475, 12531, 12481], 256], + 13091: [[12475, 12531, 12488], 256], + 13092: [[12480, 12540, 12473], 256], + 13093: [[12487, 12471], 256], + 13094: [[12489, 12523], 256], + 13095: [[12488, 12531], 256], + 13096: [[12490, 12494], 256], + 13097: [[12494, 12483, 12488], 256], + 13098: [[12495, 12452, 12484], 256], + 13099: [[12497, 12540, 12475, 12531, 12488], 256], + 13100: [[12497, 12540, 12484], 256], + 13101: [[12496, 12540, 12524, 12523], 256], + 13102: [[12500, 12450, 12473, 12488, 12523], 256], + 13103: [[12500, 12463, 12523], 256], + 13104: [[12500, 12467], 256], + 13105: [[12499, 12523], 256], + 13106: [[12501, 12449, 12521, 12483, 12489], 256], + 13107: [[12501, 12451, 12540, 12488], 256], + 13108: [[12502, 12483, 12471, 12455, 12523], 256], + 13109: [[12501, 12521, 12531], 256], + 13110: [[12504, 12463, 12479, 12540, 12523], 256], + 13111: [[12506, 12477], 256], + 13112: [[12506, 12491, 12498], 256], + 13113: [[12504, 12523, 12484], 256], + 13114: [[12506, 12531, 12473], 256], + 13115: [[12506, 12540, 12472], 256], + 13116: [[12505, 12540, 12479], 256], + 13117: [[12509, 12452, 12531, 12488], 256], + 13118: [[12508, 12523, 12488], 256], + 13119: [[12507, 12531], 256], + 13120: [[12509, 12531, 12489], 256], + 13121: [[12507, 12540, 12523], 256], + 13122: [[12507, 12540, 12531], 256], + 13123: [[12510, 12452, 12463, 12525], 256], + 13124: [[12510, 12452, 12523], 256], + 13125: [[12510, 12483, 12495], 256], + 13126: [[12510, 12523, 12463], 256], + 13127: [[12510, 12531, 12471, 12519, 12531], 256], + 13128: [[12511, 12463, 12525, 12531], 256], + 13129: [[12511, 12522], 256], + 13130: [[12511, 12522, 12496, 12540, 12523], 256], + 13131: [[12513, 12460], 256], + 13132: [[12513, 12460, 12488, 12531], 256], + 13133: [[12513, 12540, 12488, 12523], 256], + 13134: [[12516, 12540, 12489], 256], + 13135: [[12516, 12540, 12523], 256], + 13136: [[12518, 12450, 12531], 256], + 13137: [[12522, 12483, 12488, 12523], 256], + 13138: [[12522, 12521], 256], + 13139: [[12523, 12500, 12540], 256], + 13140: [[12523, 12540, 12502, 12523], 256], + 13141: [[12524, 12512], 256], + 13142: [[12524, 12531, 12488, 12466, 12531], 256], + 13143: [[12527, 12483, 12488], 256], + 13144: [[48, 28857], 256], + 13145: [[49, 28857], 256], + 13146: [[50, 28857], 256], + 13147: [[51, 28857], 256], + 13148: [[52, 28857], 256], + 13149: [[53, 28857], 256], + 13150: [[54, 28857], 256], + 13151: [[55, 28857], 256], + 13152: [[56, 28857], 256], + 13153: [[57, 28857], 256], + 13154: [[49, 48, 28857], 256], + 13155: [[49, 49, 28857], 256], + 13156: [[49, 50, 28857], 256], + 13157: [[49, 51, 28857], 256], + 13158: [[49, 52, 28857], 256], + 13159: [[49, 53, 28857], 256], + 13160: [[49, 54, 28857], 256], + 13161: [[49, 55, 28857], 256], + 13162: [[49, 56, 28857], 256], + 13163: [[49, 57, 28857], 256], + 13164: [[50, 48, 28857], 256], + 13165: [[50, 49, 28857], 256], + 13166: [[50, 50, 28857], 256], + 13167: [[50, 51, 28857], 256], + 13168: [[50, 52, 28857], 256], + 13169: [[104, 80, 97], 256], + 13170: [[100, 97], 256], + 13171: [[65, 85], 256], + 13172: [[98, 97, 114], 256], + 13173: [[111, 86], 256], + 13174: [[112, 99], 256], + 13175: [[100, 109], 256], + 13176: [[100, 109, 178], 256], + 13177: [[100, 109, 179], 256], + 13178: [[73, 85], 256], + 13179: [[24179, 25104], 256], + 13180: [[26157, 21644], 256], + 13181: [[22823, 27491], 256], + 13182: [[26126, 27835], 256], + 13183: [[26666, 24335, 20250, 31038], 256], + 13184: [[112, 65], 256], + 13185: [[110, 65], 256], + 13186: [[956, 65], 256], + 13187: [[109, 65], 256], + 13188: [[107, 65], 256], + 13189: [[75, 66], 256], + 13190: [[77, 66], 256], + 13191: [[71, 66], 256], + 13192: [[99, 97, 108], 256], + 13193: [[107, 99, 97, 108], 256], + 13194: [[112, 70], 256], + 13195: [[110, 70], 256], + 13196: [[956, 70], 256], + 13197: [[956, 103], 256], + 13198: [[109, 103], 256], + 13199: [[107, 103], 256], + 13200: [[72, 122], 256], + 13201: [[107, 72, 122], 256], + 13202: [[77, 72, 122], 256], + 13203: [[71, 72, 122], 256], + 13204: [[84, 72, 122], 256], + 13205: [[956, 8467], 256], + 13206: [[109, 8467], 256], + 13207: [[100, 8467], 256], + 13208: [[107, 8467], 256], + 13209: [[102, 109], 256], + 13210: [[110, 109], 256], + 13211: [[956, 109], 256], + 13212: [[109, 109], 256], + 13213: [[99, 109], 256], + 13214: [[107, 109], 256], + 13215: [[109, 109, 178], 256], + 13216: [[99, 109, 178], 256], + 13217: [[109, 178], 256], + 13218: [[107, 109, 178], 256], + 13219: [[109, 109, 179], 256], + 13220: [[99, 109, 179], 256], + 13221: [[109, 179], 256], + 13222: [[107, 109, 179], 256], + 13223: [[109, 8725, 115], 256], + 13224: [[109, 8725, 115, 178], 256], + 13225: [[80, 97], 256], + 13226: [[107, 80, 97], 256], + 13227: [[77, 80, 97], 256], + 13228: [[71, 80, 97], 256], + 13229: [[114, 97, 100], 256], + 13230: [[114, 97, 100, 8725, 115], 256], + 13231: [[114, 97, 100, 8725, 115, 178], 256], + 13232: [[112, 115], 256], + 13233: [[110, 115], 256], + 13234: [[956, 115], 256], + 13235: [[109, 115], 256], + 13236: [[112, 86], 256], + 13237: [[110, 86], 256], + 13238: [[956, 86], 256], + 13239: [[109, 86], 256], + 13240: [[107, 86], 256], + 13241: [[77, 86], 256], + 13242: [[112, 87], 256], + 13243: [[110, 87], 256], + 13244: [[956, 87], 256], + 13245: [[109, 87], 256], + 13246: [[107, 87], 256], + 13247: [[77, 87], 256], + 13248: [[107, 937], 256], + 13249: [[77, 937], 256], + 13250: [[97, 46, 109, 46], 256], + 13251: [[66, 113], 256], + 13252: [[99, 99], 256], + 13253: [[99, 100], 256], + 13254: [[67, 8725, 107, 103], 256], + 13255: [[67, 111, 46], 256], + 13256: [[100, 66], 256], + 13257: [[71, 121], 256], + 13258: [[104, 97], 256], + 13259: [[72, 80], 256], + 13260: [[105, 110], 256], + 13261: [[75, 75], 256], + 13262: [[75, 77], 256], + 13263: [[107, 116], 256], + 13264: [[108, 109], 256], + 13265: [[108, 110], 256], + 13266: [[108, 111, 103], 256], + 13267: [[108, 120], 256], + 13268: [[109, 98], 256], + 13269: [[109, 105, 108], 256], + 13270: [[109, 111, 108], 256], + 13271: [[80, 72], 256], + 13272: [[112, 46, 109, 46], 256], + 13273: [[80, 80, 77], 256], + 13274: [[80, 82], 256], + 13275: [[115, 114], 256], + 13276: [[83, 118], 256], + 13277: [[87, 98], 256], + 13278: [[86, 8725, 109], 256], + 13279: [[65, 8725, 109], 256], + 13280: [[49, 26085], 256], + 13281: [[50, 26085], 256], + 13282: [[51, 26085], 256], + 13283: [[52, 26085], 256], + 13284: [[53, 26085], 256], + 13285: [[54, 26085], 256], + 13286: [[55, 26085], 256], + 13287: [[56, 26085], 256], + 13288: [[57, 26085], 256], + 13289: [[49, 48, 26085], 256], + 13290: [[49, 49, 26085], 256], + 13291: [[49, 50, 26085], 256], + 13292: [[49, 51, 26085], 256], + 13293: [[49, 52, 26085], 256], + 13294: [[49, 53, 26085], 256], + 13295: [[49, 54, 26085], 256], + 13296: [[49, 55, 26085], 256], + 13297: [[49, 56, 26085], 256], + 13298: [[49, 57, 26085], 256], + 13299: [[50, 48, 26085], 256], + 13300: [[50, 49, 26085], 256], + 13301: [[50, 50, 26085], 256], + 13302: [[50, 51, 26085], 256], + 13303: [[50, 52, 26085], 256], + 13304: [[50, 53, 26085], 256], + 13305: [[50, 54, 26085], 256], + 13306: [[50, 55, 26085], 256], + 13307: [[50, 56, 26085], 256], + 13308: [[50, 57, 26085], 256], + 13309: [[51, 48, 26085], 256], + 13310: [[51, 49, 26085], 256], + 13311: [[103, 97, 108], 256] + }, + 27136: { + 92912: [, 1], + 92913: [, 1], + 92914: [, 1], + 92915: [, 1], + 92916: [, 1] + }, + 27392: { + 92976: [, 230], + 92977: [, 230], + 92978: [, 230], + 92979: [, 230], + 92980: [, 230], + 92981: [, 230], + 92982: [, 230] + }, + 42496: { + 42607: [, 230], + 42612: [, 230], + 42613: [, 230], + 42614: [, 230], + 42615: [, 230], + 42616: [, 230], + 42617: [, 230], + 42618: [, 230], + 42619: [, 230], + 42620: [, 230], + 42621: [, 230], + 42652: [[1098], 256], + 42653: [[1100], 256], + 42655: [, 230], + 42736: [, 230], + 42737: [, 230] + }, + 42752: { + 42864: [[42863], 256], + 43e3: [[294], 256], + 43001: [[339], 256] + }, + 43008: { + 43014: [, 9], + 43204: [, 9], + 43232: [, 230], + 43233: [, 230], + 43234: [, 230], + 43235: [, 230], + 43236: [, 230], + 43237: [, 230], + 43238: [, 230], + 43239: [, 230], + 43240: [, 230], + 43241: [, 230], + 43242: [, 230], + 43243: [, 230], + 43244: [, 230], + 43245: [, 230], + 43246: [, 230], + 43247: [, 230], + 43248: [, 230], + 43249: [, 230] + }, + 43264: { + 43307: [, 220], + 43308: [, 220], + 43309: [, 220], + 43347: [, 9], + 43443: [, 7], + 43456: [, 9] + }, + 43520: { + 43696: [, 230], + 43698: [, 230], + 43699: [, 230], + 43700: [, 220], + 43703: [, 230], + 43704: [, 230], + 43710: [, 230], + 43711: [, 230], + 43713: [, 230], + 43766: [, 9] + }, + 43776: { + 43868: [[42791], 256], + 43869: [[43831], 256], + 43870: [[619], 256], + 43871: [[43858], 256], + 44013: [, 9] + }, + 48128: { 113822: [, 1] }, + 53504: { + 119134: [[119127, 119141], 512], + 119135: [[119128, 119141], 512], + 119136: [[119135, 119150], 512], + 119137: [[119135, 119151], 512], + 119138: [[119135, 119152], 512], + 119139: [[119135, 119153], 512], + 119140: [[119135, 119154], 512], + 119141: [, 216], + 119142: [, 216], + 119143: [, 1], + 119144: [, 1], + 119145: [, 1], + 119149: [, 226], + 119150: [, 216], + 119151: [, 216], + 119152: [, 216], + 119153: [, 216], + 119154: [, 216], + 119163: [, 220], + 119164: [, 220], + 119165: [, 220], + 119166: [, 220], + 119167: [, 220], + 119168: [, 220], + 119169: [, 220], + 119170: [, 220], + 119173: [, 230], + 119174: [, 230], + 119175: [, 230], + 119176: [, 230], + 119177: [, 230], + 119178: [, 220], + 119179: [, 220], + 119210: [, 230], + 119211: [, 230], + 119212: [, 230], + 119213: [, 230], + 119227: [[119225, 119141], 512], + 119228: [[119226, 119141], 512], + 119229: [[119227, 119150], 512], + 119230: [[119228, 119150], 512], + 119231: [[119227, 119151], 512], + 119232: [[119228, 119151], 512] + }, + 53760: { 119362: [, 230], 119363: [, 230], 119364: [, 230] }, + 54272: { + 119808: [[65], 256], + 119809: [[66], 256], + 119810: [[67], 256], + 119811: [[68], 256], + 119812: [[69], 256], + 119813: [[70], 256], + 119814: [[71], 256], + 119815: [[72], 256], + 119816: [[73], 256], + 119817: [[74], 256], + 119818: [[75], 256], + 119819: [[76], 256], + 119820: [[77], 256], + 119821: [[78], 256], + 119822: [[79], 256], + 119823: [[80], 256], + 119824: [[81], 256], + 119825: [[82], 256], + 119826: [[83], 256], + 119827: [[84], 256], + 119828: [[85], 256], + 119829: [[86], 256], + 119830: [[87], 256], + 119831: [[88], 256], + 119832: [[89], 256], + 119833: [[90], 256], + 119834: [[97], 256], + 119835: [[98], 256], + 119836: [[99], 256], + 119837: [[100], 256], + 119838: [[101], 256], + 119839: [[102], 256], + 119840: [[103], 256], + 119841: [[104], 256], + 119842: [[105], 256], + 119843: [[106], 256], + 119844: [[107], 256], + 119845: [[108], 256], + 119846: [[109], 256], + 119847: [[110], 256], + 119848: [[111], 256], + 119849: [[112], 256], + 119850: [[113], 256], + 119851: [[114], 256], + 119852: [[115], 256], + 119853: [[116], 256], + 119854: [[117], 256], + 119855: [[118], 256], + 119856: [[119], 256], + 119857: [[120], 256], + 119858: [[121], 256], + 119859: [[122], 256], + 119860: [[65], 256], + 119861: [[66], 256], + 119862: [[67], 256], + 119863: [[68], 256], + 119864: [[69], 256], + 119865: [[70], 256], + 119866: [[71], 256], + 119867: [[72], 256], + 119868: [[73], 256], + 119869: [[74], 256], + 119870: [[75], 256], + 119871: [[76], 256], + 119872: [[77], 256], + 119873: [[78], 256], + 119874: [[79], 256], + 119875: [[80], 256], + 119876: [[81], 256], + 119877: [[82], 256], + 119878: [[83], 256], + 119879: [[84], 256], + 119880: [[85], 256], + 119881: [[86], 256], + 119882: [[87], 256], + 119883: [[88], 256], + 119884: [[89], 256], + 119885: [[90], 256], + 119886: [[97], 256], + 119887: [[98], 256], + 119888: [[99], 256], + 119889: [[100], 256], + 119890: [[101], 256], + 119891: [[102], 256], + 119892: [[103], 256], + 119894: [[105], 256], + 119895: [[106], 256], + 119896: [[107], 256], + 119897: [[108], 256], + 119898: [[109], 256], + 119899: [[110], 256], + 119900: [[111], 256], + 119901: [[112], 256], + 119902: [[113], 256], + 119903: [[114], 256], + 119904: [[115], 256], + 119905: [[116], 256], + 119906: [[117], 256], + 119907: [[118], 256], + 119908: [[119], 256], + 119909: [[120], 256], + 119910: [[121], 256], + 119911: [[122], 256], + 119912: [[65], 256], + 119913: [[66], 256], + 119914: [[67], 256], + 119915: [[68], 256], + 119916: [[69], 256], + 119917: [[70], 256], + 119918: [[71], 256], + 119919: [[72], 256], + 119920: [[73], 256], + 119921: [[74], 256], + 119922: [[75], 256], + 119923: [[76], 256], + 119924: [[77], 256], + 119925: [[78], 256], + 119926: [[79], 256], + 119927: [[80], 256], + 119928: [[81], 256], + 119929: [[82], 256], + 119930: [[83], 256], + 119931: [[84], 256], + 119932: [[85], 256], + 119933: [[86], 256], + 119934: [[87], 256], + 119935: [[88], 256], + 119936: [[89], 256], + 119937: [[90], 256], + 119938: [[97], 256], + 119939: [[98], 256], + 119940: [[99], 256], + 119941: [[100], 256], + 119942: [[101], 256], + 119943: [[102], 256], + 119944: [[103], 256], + 119945: [[104], 256], + 119946: [[105], 256], + 119947: [[106], 256], + 119948: [[107], 256], + 119949: [[108], 256], + 119950: [[109], 256], + 119951: [[110], 256], + 119952: [[111], 256], + 119953: [[112], 256], + 119954: [[113], 256], + 119955: [[114], 256], + 119956: [[115], 256], + 119957: [[116], 256], + 119958: [[117], 256], + 119959: [[118], 256], + 119960: [[119], 256], + 119961: [[120], 256], + 119962: [[121], 256], + 119963: [[122], 256], + 119964: [[65], 256], + 119966: [[67], 256], + 119967: [[68], 256], + 119970: [[71], 256], + 119973: [[74], 256], + 119974: [[75], 256], + 119977: [[78], 256], + 119978: [[79], 256], + 119979: [[80], 256], + 119980: [[81], 256], + 119982: [[83], 256], + 119983: [[84], 256], + 119984: [[85], 256], + 119985: [[86], 256], + 119986: [[87], 256], + 119987: [[88], 256], + 119988: [[89], 256], + 119989: [[90], 256], + 119990: [[97], 256], + 119991: [[98], 256], + 119992: [[99], 256], + 119993: [[100], 256], + 119995: [[102], 256], + 119997: [[104], 256], + 119998: [[105], 256], + 119999: [[106], 256], + 12e4: [[107], 256], + 120001: [[108], 256], + 120002: [[109], 256], + 120003: [[110], 256], + 120005: [[112], 256], + 120006: [[113], 256], + 120007: [[114], 256], + 120008: [[115], 256], + 120009: [[116], 256], + 120010: [[117], 256], + 120011: [[118], 256], + 120012: [[119], 256], + 120013: [[120], 256], + 120014: [[121], 256], + 120015: [[122], 256], + 120016: [[65], 256], + 120017: [[66], 256], + 120018: [[67], 256], + 120019: [[68], 256], + 120020: [[69], 256], + 120021: [[70], 256], + 120022: [[71], 256], + 120023: [[72], 256], + 120024: [[73], 256], + 120025: [[74], 256], + 120026: [[75], 256], + 120027: [[76], 256], + 120028: [[77], 256], + 120029: [[78], 256], + 120030: [[79], 256], + 120031: [[80], 256], + 120032: [[81], 256], + 120033: [[82], 256], + 120034: [[83], 256], + 120035: [[84], 256], + 120036: [[85], 256], + 120037: [[86], 256], + 120038: [[87], 256], + 120039: [[88], 256], + 120040: [[89], 256], + 120041: [[90], 256], + 120042: [[97], 256], + 120043: [[98], 256], + 120044: [[99], 256], + 120045: [[100], 256], + 120046: [[101], 256], + 120047: [[102], 256], + 120048: [[103], 256], + 120049: [[104], 256], + 120050: [[105], 256], + 120051: [[106], 256], + 120052: [[107], 256], + 120053: [[108], 256], + 120054: [[109], 256], + 120055: [[110], 256], + 120056: [[111], 256], + 120057: [[112], 256], + 120058: [[113], 256], + 120059: [[114], 256], + 120060: [[115], 256], + 120061: [[116], 256], + 120062: [[117], 256], + 120063: [[118], 256] + }, + 54528: { + 120064: [[119], 256], + 120065: [[120], 256], + 120066: [[121], 256], + 120067: [[122], 256], + 120068: [[65], 256], + 120069: [[66], 256], + 120071: [[68], 256], + 120072: [[69], 256], + 120073: [[70], 256], + 120074: [[71], 256], + 120077: [[74], 256], + 120078: [[75], 256], + 120079: [[76], 256], + 120080: [[77], 256], + 120081: [[78], 256], + 120082: [[79], 256], + 120083: [[80], 256], + 120084: [[81], 256], + 120086: [[83], 256], + 120087: [[84], 256], + 120088: [[85], 256], + 120089: [[86], 256], + 120090: [[87], 256], + 120091: [[88], 256], + 120092: [[89], 256], + 120094: [[97], 256], + 120095: [[98], 256], + 120096: [[99], 256], + 120097: [[100], 256], + 120098: [[101], 256], + 120099: [[102], 256], + 120100: [[103], 256], + 120101: [[104], 256], + 120102: [[105], 256], + 120103: [[106], 256], + 120104: [[107], 256], + 120105: [[108], 256], + 120106: [[109], 256], + 120107: [[110], 256], + 120108: [[111], 256], + 120109: [[112], 256], + 120110: [[113], 256], + 120111: [[114], 256], + 120112: [[115], 256], + 120113: [[116], 256], + 120114: [[117], 256], + 120115: [[118], 256], + 120116: [[119], 256], + 120117: [[120], 256], + 120118: [[121], 256], + 120119: [[122], 256], + 120120: [[65], 256], + 120121: [[66], 256], + 120123: [[68], 256], + 120124: [[69], 256], + 120125: [[70], 256], + 120126: [[71], 256], + 120128: [[73], 256], + 120129: [[74], 256], + 120130: [[75], 256], + 120131: [[76], 256], + 120132: [[77], 256], + 120134: [[79], 256], + 120138: [[83], 256], + 120139: [[84], 256], + 120140: [[85], 256], + 120141: [[86], 256], + 120142: [[87], 256], + 120143: [[88], 256], + 120144: [[89], 256], + 120146: [[97], 256], + 120147: [[98], 256], + 120148: [[99], 256], + 120149: [[100], 256], + 120150: [[101], 256], + 120151: [[102], 256], + 120152: [[103], 256], + 120153: [[104], 256], + 120154: [[105], 256], + 120155: [[106], 256], + 120156: [[107], 256], + 120157: [[108], 256], + 120158: [[109], 256], + 120159: [[110], 256], + 120160: [[111], 256], + 120161: [[112], 256], + 120162: [[113], 256], + 120163: [[114], 256], + 120164: [[115], 256], + 120165: [[116], 256], + 120166: [[117], 256], + 120167: [[118], 256], + 120168: [[119], 256], + 120169: [[120], 256], + 120170: [[121], 256], + 120171: [[122], 256], + 120172: [[65], 256], + 120173: [[66], 256], + 120174: [[67], 256], + 120175: [[68], 256], + 120176: [[69], 256], + 120177: [[70], 256], + 120178: [[71], 256], + 120179: [[72], 256], + 120180: [[73], 256], + 120181: [[74], 256], + 120182: [[75], 256], + 120183: [[76], 256], + 120184: [[77], 256], + 120185: [[78], 256], + 120186: [[79], 256], + 120187: [[80], 256], + 120188: [[81], 256], + 120189: [[82], 256], + 120190: [[83], 256], + 120191: [[84], 256], + 120192: [[85], 256], + 120193: [[86], 256], + 120194: [[87], 256], + 120195: [[88], 256], + 120196: [[89], 256], + 120197: [[90], 256], + 120198: [[97], 256], + 120199: [[98], 256], + 120200: [[99], 256], + 120201: [[100], 256], + 120202: [[101], 256], + 120203: [[102], 256], + 120204: [[103], 256], + 120205: [[104], 256], + 120206: [[105], 256], + 120207: [[106], 256], + 120208: [[107], 256], + 120209: [[108], 256], + 120210: [[109], 256], + 120211: [[110], 256], + 120212: [[111], 256], + 120213: [[112], 256], + 120214: [[113], 256], + 120215: [[114], 256], + 120216: [[115], 256], + 120217: [[116], 256], + 120218: [[117], 256], + 120219: [[118], 256], + 120220: [[119], 256], + 120221: [[120], 256], + 120222: [[121], 256], + 120223: [[122], 256], + 120224: [[65], 256], + 120225: [[66], 256], + 120226: [[67], 256], + 120227: [[68], 256], + 120228: [[69], 256], + 120229: [[70], 256], + 120230: [[71], 256], + 120231: [[72], 256], + 120232: [[73], 256], + 120233: [[74], 256], + 120234: [[75], 256], + 120235: [[76], 256], + 120236: [[77], 256], + 120237: [[78], 256], + 120238: [[79], 256], + 120239: [[80], 256], + 120240: [[81], 256], + 120241: [[82], 256], + 120242: [[83], 256], + 120243: [[84], 256], + 120244: [[85], 256], + 120245: [[86], 256], + 120246: [[87], 256], + 120247: [[88], 256], + 120248: [[89], 256], + 120249: [[90], 256], + 120250: [[97], 256], + 120251: [[98], 256], + 120252: [[99], 256], + 120253: [[100], 256], + 120254: [[101], 256], + 120255: [[102], 256], + 120256: [[103], 256], + 120257: [[104], 256], + 120258: [[105], 256], + 120259: [[106], 256], + 120260: [[107], 256], + 120261: [[108], 256], + 120262: [[109], 256], + 120263: [[110], 256], + 120264: [[111], 256], + 120265: [[112], 256], + 120266: [[113], 256], + 120267: [[114], 256], + 120268: [[115], 256], + 120269: [[116], 256], + 120270: [[117], 256], + 120271: [[118], 256], + 120272: [[119], 256], + 120273: [[120], 256], + 120274: [[121], 256], + 120275: [[122], 256], + 120276: [[65], 256], + 120277: [[66], 256], + 120278: [[67], 256], + 120279: [[68], 256], + 120280: [[69], 256], + 120281: [[70], 256], + 120282: [[71], 256], + 120283: [[72], 256], + 120284: [[73], 256], + 120285: [[74], 256], + 120286: [[75], 256], + 120287: [[76], 256], + 120288: [[77], 256], + 120289: [[78], 256], + 120290: [[79], 256], + 120291: [[80], 256], + 120292: [[81], 256], + 120293: [[82], 256], + 120294: [[83], 256], + 120295: [[84], 256], + 120296: [[85], 256], + 120297: [[86], 256], + 120298: [[87], 256], + 120299: [[88], 256], + 120300: [[89], 256], + 120301: [[90], 256], + 120302: [[97], 256], + 120303: [[98], 256], + 120304: [[99], 256], + 120305: [[100], 256], + 120306: [[101], 256], + 120307: [[102], 256], + 120308: [[103], 256], + 120309: [[104], 256], + 120310: [[105], 256], + 120311: [[106], 256], + 120312: [[107], 256], + 120313: [[108], 256], + 120314: [[109], 256], + 120315: [[110], 256], + 120316: [[111], 256], + 120317: [[112], 256], + 120318: [[113], 256], + 120319: [[114], 256] + }, + 54784: { + 120320: [[115], 256], + 120321: [[116], 256], + 120322: [[117], 256], + 120323: [[118], 256], + 120324: [[119], 256], + 120325: [[120], 256], + 120326: [[121], 256], + 120327: [[122], 256], + 120328: [[65], 256], + 120329: [[66], 256], + 120330: [[67], 256], + 120331: [[68], 256], + 120332: [[69], 256], + 120333: [[70], 256], + 120334: [[71], 256], + 120335: [[72], 256], + 120336: [[73], 256], + 120337: [[74], 256], + 120338: [[75], 256], + 120339: [[76], 256], + 120340: [[77], 256], + 120341: [[78], 256], + 120342: [[79], 256], + 120343: [[80], 256], + 120344: [[81], 256], + 120345: [[82], 256], + 120346: [[83], 256], + 120347: [[84], 256], + 120348: [[85], 256], + 120349: [[86], 256], + 120350: [[87], 256], + 120351: [[88], 256], + 120352: [[89], 256], + 120353: [[90], 256], + 120354: [[97], 256], + 120355: [[98], 256], + 120356: [[99], 256], + 120357: [[100], 256], + 120358: [[101], 256], + 120359: [[102], 256], + 120360: [[103], 256], + 120361: [[104], 256], + 120362: [[105], 256], + 120363: [[106], 256], + 120364: [[107], 256], + 120365: [[108], 256], + 120366: [[109], 256], + 120367: [[110], 256], + 120368: [[111], 256], + 120369: [[112], 256], + 120370: [[113], 256], + 120371: [[114], 256], + 120372: [[115], 256], + 120373: [[116], 256], + 120374: [[117], 256], + 120375: [[118], 256], + 120376: [[119], 256], + 120377: [[120], 256], + 120378: [[121], 256], + 120379: [[122], 256], + 120380: [[65], 256], + 120381: [[66], 256], + 120382: [[67], 256], + 120383: [[68], 256], + 120384: [[69], 256], + 120385: [[70], 256], + 120386: [[71], 256], + 120387: [[72], 256], + 120388: [[73], 256], + 120389: [[74], 256], + 120390: [[75], 256], + 120391: [[76], 256], + 120392: [[77], 256], + 120393: [[78], 256], + 120394: [[79], 256], + 120395: [[80], 256], + 120396: [[81], 256], + 120397: [[82], 256], + 120398: [[83], 256], + 120399: [[84], 256], + 120400: [[85], 256], + 120401: [[86], 256], + 120402: [[87], 256], + 120403: [[88], 256], + 120404: [[89], 256], + 120405: [[90], 256], + 120406: [[97], 256], + 120407: [[98], 256], + 120408: [[99], 256], + 120409: [[100], 256], + 120410: [[101], 256], + 120411: [[102], 256], + 120412: [[103], 256], + 120413: [[104], 256], + 120414: [[105], 256], + 120415: [[106], 256], + 120416: [[107], 256], + 120417: [[108], 256], + 120418: [[109], 256], + 120419: [[110], 256], + 120420: [[111], 256], + 120421: [[112], 256], + 120422: [[113], 256], + 120423: [[114], 256], + 120424: [[115], 256], + 120425: [[116], 256], + 120426: [[117], 256], + 120427: [[118], 256], + 120428: [[119], 256], + 120429: [[120], 256], + 120430: [[121], 256], + 120431: [[122], 256], + 120432: [[65], 256], + 120433: [[66], 256], + 120434: [[67], 256], + 120435: [[68], 256], + 120436: [[69], 256], + 120437: [[70], 256], + 120438: [[71], 256], + 120439: [[72], 256], + 120440: [[73], 256], + 120441: [[74], 256], + 120442: [[75], 256], + 120443: [[76], 256], + 120444: [[77], 256], + 120445: [[78], 256], + 120446: [[79], 256], + 120447: [[80], 256], + 120448: [[81], 256], + 120449: [[82], 256], + 120450: [[83], 256], + 120451: [[84], 256], + 120452: [[85], 256], + 120453: [[86], 256], + 120454: [[87], 256], + 120455: [[88], 256], + 120456: [[89], 256], + 120457: [[90], 256], + 120458: [[97], 256], + 120459: [[98], 256], + 120460: [[99], 256], + 120461: [[100], 256], + 120462: [[101], 256], + 120463: [[102], 256], + 120464: [[103], 256], + 120465: [[104], 256], + 120466: [[105], 256], + 120467: [[106], 256], + 120468: [[107], 256], + 120469: [[108], 256], + 120470: [[109], 256], + 120471: [[110], 256], + 120472: [[111], 256], + 120473: [[112], 256], + 120474: [[113], 256], + 120475: [[114], 256], + 120476: [[115], 256], + 120477: [[116], 256], + 120478: [[117], 256], + 120479: [[118], 256], + 120480: [[119], 256], + 120481: [[120], 256], + 120482: [[121], 256], + 120483: [[122], 256], + 120484: [[305], 256], + 120485: [[567], 256], + 120488: [[913], 256], + 120489: [[914], 256], + 120490: [[915], 256], + 120491: [[916], 256], + 120492: [[917], 256], + 120493: [[918], 256], + 120494: [[919], 256], + 120495: [[920], 256], + 120496: [[921], 256], + 120497: [[922], 256], + 120498: [[923], 256], + 120499: [[924], 256], + 120500: [[925], 256], + 120501: [[926], 256], + 120502: [[927], 256], + 120503: [[928], 256], + 120504: [[929], 256], + 120505: [[1012], 256], + 120506: [[931], 256], + 120507: [[932], 256], + 120508: [[933], 256], + 120509: [[934], 256], + 120510: [[935], 256], + 120511: [[936], 256], + 120512: [[937], 256], + 120513: [[8711], 256], + 120514: [[945], 256], + 120515: [[946], 256], + 120516: [[947], 256], + 120517: [[948], 256], + 120518: [[949], 256], + 120519: [[950], 256], + 120520: [[951], 256], + 120521: [[952], 256], + 120522: [[953], 256], + 120523: [[954], 256], + 120524: [[955], 256], + 120525: [[956], 256], + 120526: [[957], 256], + 120527: [[958], 256], + 120528: [[959], 256], + 120529: [[960], 256], + 120530: [[961], 256], + 120531: [[962], 256], + 120532: [[963], 256], + 120533: [[964], 256], + 120534: [[965], 256], + 120535: [[966], 256], + 120536: [[967], 256], + 120537: [[968], 256], + 120538: [[969], 256], + 120539: [[8706], 256], + 120540: [[1013], 256], + 120541: [[977], 256], + 120542: [[1008], 256], + 120543: [[981], 256], + 120544: [[1009], 256], + 120545: [[982], 256], + 120546: [[913], 256], + 120547: [[914], 256], + 120548: [[915], 256], + 120549: [[916], 256], + 120550: [[917], 256], + 120551: [[918], 256], + 120552: [[919], 256], + 120553: [[920], 256], + 120554: [[921], 256], + 120555: [[922], 256], + 120556: [[923], 256], + 120557: [[924], 256], + 120558: [[925], 256], + 120559: [[926], 256], + 120560: [[927], 256], + 120561: [[928], 256], + 120562: [[929], 256], + 120563: [[1012], 256], + 120564: [[931], 256], + 120565: [[932], 256], + 120566: [[933], 256], + 120567: [[934], 256], + 120568: [[935], 256], + 120569: [[936], 256], + 120570: [[937], 256], + 120571: [[8711], 256], + 120572: [[945], 256], + 120573: [[946], 256], + 120574: [[947], 256], + 120575: [[948], 256] + }, + 55040: { + 120576: [[949], 256], + 120577: [[950], 256], + 120578: [[951], 256], + 120579: [[952], 256], + 120580: [[953], 256], + 120581: [[954], 256], + 120582: [[955], 256], + 120583: [[956], 256], + 120584: [[957], 256], + 120585: [[958], 256], + 120586: [[959], 256], + 120587: [[960], 256], + 120588: [[961], 256], + 120589: [[962], 256], + 120590: [[963], 256], + 120591: [[964], 256], + 120592: [[965], 256], + 120593: [[966], 256], + 120594: [[967], 256], + 120595: [[968], 256], + 120596: [[969], 256], + 120597: [[8706], 256], + 120598: [[1013], 256], + 120599: [[977], 256], + 120600: [[1008], 256], + 120601: [[981], 256], + 120602: [[1009], 256], + 120603: [[982], 256], + 120604: [[913], 256], + 120605: [[914], 256], + 120606: [[915], 256], + 120607: [[916], 256], + 120608: [[917], 256], + 120609: [[918], 256], + 120610: [[919], 256], + 120611: [[920], 256], + 120612: [[921], 256], + 120613: [[922], 256], + 120614: [[923], 256], + 120615: [[924], 256], + 120616: [[925], 256], + 120617: [[926], 256], + 120618: [[927], 256], + 120619: [[928], 256], + 120620: [[929], 256], + 120621: [[1012], 256], + 120622: [[931], 256], + 120623: [[932], 256], + 120624: [[933], 256], + 120625: [[934], 256], + 120626: [[935], 256], + 120627: [[936], 256], + 120628: [[937], 256], + 120629: [[8711], 256], + 120630: [[945], 256], + 120631: [[946], 256], + 120632: [[947], 256], + 120633: [[948], 256], + 120634: [[949], 256], + 120635: [[950], 256], + 120636: [[951], 256], + 120637: [[952], 256], + 120638: [[953], 256], + 120639: [[954], 256], + 120640: [[955], 256], + 120641: [[956], 256], + 120642: [[957], 256], + 120643: [[958], 256], + 120644: [[959], 256], + 120645: [[960], 256], + 120646: [[961], 256], + 120647: [[962], 256], + 120648: [[963], 256], + 120649: [[964], 256], + 120650: [[965], 256], + 120651: [[966], 256], + 120652: [[967], 256], + 120653: [[968], 256], + 120654: [[969], 256], + 120655: [[8706], 256], + 120656: [[1013], 256], + 120657: [[977], 256], + 120658: [[1008], 256], + 120659: [[981], 256], + 120660: [[1009], 256], + 120661: [[982], 256], + 120662: [[913], 256], + 120663: [[914], 256], + 120664: [[915], 256], + 120665: [[916], 256], + 120666: [[917], 256], + 120667: [[918], 256], + 120668: [[919], 256], + 120669: [[920], 256], + 120670: [[921], 256], + 120671: [[922], 256], + 120672: [[923], 256], + 120673: [[924], 256], + 120674: [[925], 256], + 120675: [[926], 256], + 120676: [[927], 256], + 120677: [[928], 256], + 120678: [[929], 256], + 120679: [[1012], 256], + 120680: [[931], 256], + 120681: [[932], 256], + 120682: [[933], 256], + 120683: [[934], 256], + 120684: [[935], 256], + 120685: [[936], 256], + 120686: [[937], 256], + 120687: [[8711], 256], + 120688: [[945], 256], + 120689: [[946], 256], + 120690: [[947], 256], + 120691: [[948], 256], + 120692: [[949], 256], + 120693: [[950], 256], + 120694: [[951], 256], + 120695: [[952], 256], + 120696: [[953], 256], + 120697: [[954], 256], + 120698: [[955], 256], + 120699: [[956], 256], + 120700: [[957], 256], + 120701: [[958], 256], + 120702: [[959], 256], + 120703: [[960], 256], + 120704: [[961], 256], + 120705: [[962], 256], + 120706: [[963], 256], + 120707: [[964], 256], + 120708: [[965], 256], + 120709: [[966], 256], + 120710: [[967], 256], + 120711: [[968], 256], + 120712: [[969], 256], + 120713: [[8706], 256], + 120714: [[1013], 256], + 120715: [[977], 256], + 120716: [[1008], 256], + 120717: [[981], 256], + 120718: [[1009], 256], + 120719: [[982], 256], + 120720: [[913], 256], + 120721: [[914], 256], + 120722: [[915], 256], + 120723: [[916], 256], + 120724: [[917], 256], + 120725: [[918], 256], + 120726: [[919], 256], + 120727: [[920], 256], + 120728: [[921], 256], + 120729: [[922], 256], + 120730: [[923], 256], + 120731: [[924], 256], + 120732: [[925], 256], + 120733: [[926], 256], + 120734: [[927], 256], + 120735: [[928], 256], + 120736: [[929], 256], + 120737: [[1012], 256], + 120738: [[931], 256], + 120739: [[932], 256], + 120740: [[933], 256], + 120741: [[934], 256], + 120742: [[935], 256], + 120743: [[936], 256], + 120744: [[937], 256], + 120745: [[8711], 256], + 120746: [[945], 256], + 120747: [[946], 256], + 120748: [[947], 256], + 120749: [[948], 256], + 120750: [[949], 256], + 120751: [[950], 256], + 120752: [[951], 256], + 120753: [[952], 256], + 120754: [[953], 256], + 120755: [[954], 256], + 120756: [[955], 256], + 120757: [[956], 256], + 120758: [[957], 256], + 120759: [[958], 256], + 120760: [[959], 256], + 120761: [[960], 256], + 120762: [[961], 256], + 120763: [[962], 256], + 120764: [[963], 256], + 120765: [[964], 256], + 120766: [[965], 256], + 120767: [[966], 256], + 120768: [[967], 256], + 120769: [[968], 256], + 120770: [[969], 256], + 120771: [[8706], 256], + 120772: [[1013], 256], + 120773: [[977], 256], + 120774: [[1008], 256], + 120775: [[981], 256], + 120776: [[1009], 256], + 120777: [[982], 256], + 120778: [[988], 256], + 120779: [[989], 256], + 120782: [[48], 256], + 120783: [[49], 256], + 120784: [[50], 256], + 120785: [[51], 256], + 120786: [[52], 256], + 120787: [[53], 256], + 120788: [[54], 256], + 120789: [[55], 256], + 120790: [[56], 256], + 120791: [[57], 256], + 120792: [[48], 256], + 120793: [[49], 256], + 120794: [[50], 256], + 120795: [[51], 256], + 120796: [[52], 256], + 120797: [[53], 256], + 120798: [[54], 256], + 120799: [[55], 256], + 120800: [[56], 256], + 120801: [[57], 256], + 120802: [[48], 256], + 120803: [[49], 256], + 120804: [[50], 256], + 120805: [[51], 256], + 120806: [[52], 256], + 120807: [[53], 256], + 120808: [[54], 256], + 120809: [[55], 256], + 120810: [[56], 256], + 120811: [[57], 256], + 120812: [[48], 256], + 120813: [[49], 256], + 120814: [[50], 256], + 120815: [[51], 256], + 120816: [[52], 256], + 120817: [[53], 256], + 120818: [[54], 256], + 120819: [[55], 256], + 120820: [[56], 256], + 120821: [[57], 256], + 120822: [[48], 256], + 120823: [[49], 256], + 120824: [[50], 256], + 120825: [[51], 256], + 120826: [[52], 256], + 120827: [[53], 256], + 120828: [[54], 256], + 120829: [[55], 256], + 120830: [[56], 256], + 120831: [[57], 256] + }, + 59392: { + 125136: [, 220], + 125137: [, 220], + 125138: [, 220], + 125139: [, 220], + 125140: [, 220], + 125141: [, 220], + 125142: [, 220] + }, + 60928: { + 126464: [[1575], 256], + 126465: [[1576], 256], + 126466: [[1580], 256], + 126467: [[1583], 256], + 126469: [[1608], 256], + 126470: [[1586], 256], + 126471: [[1581], 256], + 126472: [[1591], 256], + 126473: [[1610], 256], + 126474: [[1603], 256], + 126475: [[1604], 256], + 126476: [[1605], 256], + 126477: [[1606], 256], + 126478: [[1587], 256], + 126479: [[1593], 256], + 126480: [[1601], 256], + 126481: [[1589], 256], + 126482: [[1602], 256], + 126483: [[1585], 256], + 126484: [[1588], 256], + 126485: [[1578], 256], + 126486: [[1579], 256], + 126487: [[1582], 256], + 126488: [[1584], 256], + 126489: [[1590], 256], + 126490: [[1592], 256], + 126491: [[1594], 256], + 126492: [[1646], 256], + 126493: [[1722], 256], + 126494: [[1697], 256], + 126495: [[1647], 256], + 126497: [[1576], 256], + 126498: [[1580], 256], + 126500: [[1607], 256], + 126503: [[1581], 256], + 126505: [[1610], 256], + 126506: [[1603], 256], + 126507: [[1604], 256], + 126508: [[1605], 256], + 126509: [[1606], 256], + 126510: [[1587], 256], + 126511: [[1593], 256], + 126512: [[1601], 256], + 126513: [[1589], 256], + 126514: [[1602], 256], + 126516: [[1588], 256], + 126517: [[1578], 256], + 126518: [[1579], 256], + 126519: [[1582], 256], + 126521: [[1590], 256], + 126523: [[1594], 256], + 126530: [[1580], 256], + 126535: [[1581], 256], + 126537: [[1610], 256], + 126539: [[1604], 256], + 126541: [[1606], 256], + 126542: [[1587], 256], + 126543: [[1593], 256], + 126545: [[1589], 256], + 126546: [[1602], 256], + 126548: [[1588], 256], + 126551: [[1582], 256], + 126553: [[1590], 256], + 126555: [[1594], 256], + 126557: [[1722], 256], + 126559: [[1647], 256], + 126561: [[1576], 256], + 126562: [[1580], 256], + 126564: [[1607], 256], + 126567: [[1581], 256], + 126568: [[1591], 256], + 126569: [[1610], 256], + 126570: [[1603], 256], + 126572: [[1605], 256], + 126573: [[1606], 256], + 126574: [[1587], 256], + 126575: [[1593], 256], + 126576: [[1601], 256], + 126577: [[1589], 256], + 126578: [[1602], 256], + 126580: [[1588], 256], + 126581: [[1578], 256], + 126582: [[1579], 256], + 126583: [[1582], 256], + 126585: [[1590], 256], + 126586: [[1592], 256], + 126587: [[1594], 256], + 126588: [[1646], 256], + 126590: [[1697], 256], + 126592: [[1575], 256], + 126593: [[1576], 256], + 126594: [[1580], 256], + 126595: [[1583], 256], + 126596: [[1607], 256], + 126597: [[1608], 256], + 126598: [[1586], 256], + 126599: [[1581], 256], + 126600: [[1591], 256], + 126601: [[1610], 256], + 126603: [[1604], 256], + 126604: [[1605], 256], + 126605: [[1606], 256], + 126606: [[1587], 256], + 126607: [[1593], 256], + 126608: [[1601], 256], + 126609: [[1589], 256], + 126610: [[1602], 256], + 126611: [[1585], 256], + 126612: [[1588], 256], + 126613: [[1578], 256], + 126614: [[1579], 256], + 126615: [[1582], 256], + 126616: [[1584], 256], + 126617: [[1590], 256], + 126618: [[1592], 256], + 126619: [[1594], 256], + 126625: [[1576], 256], + 126626: [[1580], 256], + 126627: [[1583], 256], + 126629: [[1608], 256], + 126630: [[1586], 256], + 126631: [[1581], 256], + 126632: [[1591], 256], + 126633: [[1610], 256], + 126635: [[1604], 256], + 126636: [[1605], 256], + 126637: [[1606], 256], + 126638: [[1587], 256], + 126639: [[1593], 256], + 126640: [[1601], 256], + 126641: [[1589], 256], + 126642: [[1602], 256], + 126643: [[1585], 256], + 126644: [[1588], 256], + 126645: [[1578], 256], + 126646: [[1579], 256], + 126647: [[1582], 256], + 126648: [[1584], 256], + 126649: [[1590], 256], + 126650: [[1592], 256], + 126651: [[1594], 256] + }, + 61696: { + 127232: [[48, 46], 256], + 127233: [[48, 44], 256], + 127234: [[49, 44], 256], + 127235: [[50, 44], 256], + 127236: [[51, 44], 256], + 127237: [[52, 44], 256], + 127238: [[53, 44], 256], + 127239: [[54, 44], 256], + 127240: [[55, 44], 256], + 127241: [[56, 44], 256], + 127242: [[57, 44], 256], + 127248: [[40, 65, 41], 256], + 127249: [[40, 66, 41], 256], + 127250: [[40, 67, 41], 256], + 127251: [[40, 68, 41], 256], + 127252: [[40, 69, 41], 256], + 127253: [[40, 70, 41], 256], + 127254: [[40, 71, 41], 256], + 127255: [[40, 72, 41], 256], + 127256: [[40, 73, 41], 256], + 127257: [[40, 74, 41], 256], + 127258: [[40, 75, 41], 256], + 127259: [[40, 76, 41], 256], + 127260: [[40, 77, 41], 256], + 127261: [[40, 78, 41], 256], + 127262: [[40, 79, 41], 256], + 127263: [[40, 80, 41], 256], + 127264: [[40, 81, 41], 256], + 127265: [[40, 82, 41], 256], + 127266: [[40, 83, 41], 256], + 127267: [[40, 84, 41], 256], + 127268: [[40, 85, 41], 256], + 127269: [[40, 86, 41], 256], + 127270: [[40, 87, 41], 256], + 127271: [[40, 88, 41], 256], + 127272: [[40, 89, 41], 256], + 127273: [[40, 90, 41], 256], + 127274: [[12308, 83, 12309], 256], + 127275: [[67], 256], + 127276: [[82], 256], + 127277: [[67, 68], 256], + 127278: [[87, 90], 256], + 127280: [[65], 256], + 127281: [[66], 256], + 127282: [[67], 256], + 127283: [[68], 256], + 127284: [[69], 256], + 127285: [[70], 256], + 127286: [[71], 256], + 127287: [[72], 256], + 127288: [[73], 256], + 127289: [[74], 256], + 127290: [[75], 256], + 127291: [[76], 256], + 127292: [[77], 256], + 127293: [[78], 256], + 127294: [[79], 256], + 127295: [[80], 256], + 127296: [[81], 256], + 127297: [[82], 256], + 127298: [[83], 256], + 127299: [[84], 256], + 127300: [[85], 256], + 127301: [[86], 256], + 127302: [[87], 256], + 127303: [[88], 256], + 127304: [[89], 256], + 127305: [[90], 256], + 127306: [[72, 86], 256], + 127307: [[77, 86], 256], + 127308: [[83, 68], 256], + 127309: [[83, 83], 256], + 127310: [[80, 80, 86], 256], + 127311: [[87, 67], 256], + 127338: [[77, 67], 256], + 127339: [[77, 68], 256], + 127376: [[68, 74], 256] + }, + 61952: { + 127488: [[12411, 12363], 256], + 127489: [[12467, 12467], 256], + 127490: [[12469], 256], + 127504: [[25163], 256], + 127505: [[23383], 256], + 127506: [[21452], 256], + 127507: [[12487], 256], + 127508: [[20108], 256], + 127509: [[22810], 256], + 127510: [[35299], 256], + 127511: [[22825], 256], + 127512: [[20132], 256], + 127513: [[26144], 256], + 127514: [[28961], 256], + 127515: [[26009], 256], + 127516: [[21069], 256], + 127517: [[24460], 256], + 127518: [[20877], 256], + 127519: [[26032], 256], + 127520: [[21021], 256], + 127521: [[32066], 256], + 127522: [[29983], 256], + 127523: [[36009], 256], + 127524: [[22768], 256], + 127525: [[21561], 256], + 127526: [[28436], 256], + 127527: [[25237], 256], + 127528: [[25429], 256], + 127529: [[19968], 256], + 127530: [[19977], 256], + 127531: [[36938], 256], + 127532: [[24038], 256], + 127533: [[20013], 256], + 127534: [[21491], 256], + 127535: [[25351], 256], + 127536: [[36208], 256], + 127537: [[25171], 256], + 127538: [[31105], 256], + 127539: [[31354], 256], + 127540: [[21512], 256], + 127541: [[28288], 256], + 127542: [[26377], 256], + 127543: [[26376], 256], + 127544: [[30003], 256], + 127545: [[21106], 256], + 127546: [[21942], 256], + 127552: [[12308, 26412, 12309], 256], + 127553: [[12308, 19977, 12309], 256], + 127554: [[12308, 20108, 12309], 256], + 127555: [[12308, 23433, 12309], 256], + 127556: [[12308, 28857, 12309], 256], + 127557: [[12308, 25171, 12309], 256], + 127558: [[12308, 30423, 12309], 256], + 127559: [[12308, 21213, 12309], 256], + 127560: [[12308, 25943, 12309], 256], + 127568: [[24471], 256], + 127569: [[21487], 256] + }, + 63488: { + 194560: [[20029]], + 194561: [[20024]], + 194562: [[20033]], + 194563: [[131362]], + 194564: [[20320]], + 194565: [[20398]], + 194566: [[20411]], + 194567: [[20482]], + 194568: [[20602]], + 194569: [[20633]], + 194570: [[20711]], + 194571: [[20687]], + 194572: [[13470]], + 194573: [[132666]], + 194574: [[20813]], + 194575: [[20820]], + 194576: [[20836]], + 194577: [[20855]], + 194578: [[132380]], + 194579: [[13497]], + 194580: [[20839]], + 194581: [[20877]], + 194582: [[132427]], + 194583: [[20887]], + 194584: [[20900]], + 194585: [[20172]], + 194586: [[20908]], + 194587: [[20917]], + 194588: [[168415]], + 194589: [[20981]], + 194590: [[20995]], + 194591: [[13535]], + 194592: [[21051]], + 194593: [[21062]], + 194594: [[21106]], + 194595: [[21111]], + 194596: [[13589]], + 194597: [[21191]], + 194598: [[21193]], + 194599: [[21220]], + 194600: [[21242]], + 194601: [[21253]], + 194602: [[21254]], + 194603: [[21271]], + 194604: [[21321]], + 194605: [[21329]], + 194606: [[21338]], + 194607: [[21363]], + 194608: [[21373]], + 194609: [[21375]], + 194610: [[21375]], + 194611: [[21375]], + 194612: [[133676]], + 194613: [[28784]], + 194614: [[21450]], + 194615: [[21471]], + 194616: [[133987]], + 194617: [[21483]], + 194618: [[21489]], + 194619: [[21510]], + 194620: [[21662]], + 194621: [[21560]], + 194622: [[21576]], + 194623: [[21608]], + 194624: [[21666]], + 194625: [[21750]], + 194626: [[21776]], + 194627: [[21843]], + 194628: [[21859]], + 194629: [[21892]], + 194630: [[21892]], + 194631: [[21913]], + 194632: [[21931]], + 194633: [[21939]], + 194634: [[21954]], + 194635: [[22294]], + 194636: [[22022]], + 194637: [[22295]], + 194638: [[22097]], + 194639: [[22132]], + 194640: [[20999]], + 194641: [[22766]], + 194642: [[22478]], + 194643: [[22516]], + 194644: [[22541]], + 194645: [[22411]], + 194646: [[22578]], + 194647: [[22577]], + 194648: [[22700]], + 194649: [[136420]], + 194650: [[22770]], + 194651: [[22775]], + 194652: [[22790]], + 194653: [[22810]], + 194654: [[22818]], + 194655: [[22882]], + 194656: [[136872]], + 194657: [[136938]], + 194658: [[23020]], + 194659: [[23067]], + 194660: [[23079]], + 194661: [[23e3]], + 194662: [[23142]], + 194663: [[14062]], + 194664: [[14076]], + 194665: [[23304]], + 194666: [[23358]], + 194667: [[23358]], + 194668: [[137672]], + 194669: [[23491]], + 194670: [[23512]], + 194671: [[23527]], + 194672: [[23539]], + 194673: [[138008]], + 194674: [[23551]], + 194675: [[23558]], + 194676: [[24403]], + 194677: [[23586]], + 194678: [[14209]], + 194679: [[23648]], + 194680: [[23662]], + 194681: [[23744]], + 194682: [[23693]], + 194683: [[138724]], + 194684: [[23875]], + 194685: [[138726]], + 194686: [[23918]], + 194687: [[23915]], + 194688: [[23932]], + 194689: [[24033]], + 194690: [[24034]], + 194691: [[14383]], + 194692: [[24061]], + 194693: [[24104]], + 194694: [[24125]], + 194695: [[24169]], + 194696: [[14434]], + 194697: [[139651]], + 194698: [[14460]], + 194699: [[24240]], + 194700: [[24243]], + 194701: [[24246]], + 194702: [[24266]], + 194703: [[172946]], + 194704: [[24318]], + 194705: [[140081]], + 194706: [[140081]], + 194707: [[33281]], + 194708: [[24354]], + 194709: [[24354]], + 194710: [[14535]], + 194711: [[144056]], + 194712: [[156122]], + 194713: [[24418]], + 194714: [[24427]], + 194715: [[14563]], + 194716: [[24474]], + 194717: [[24525]], + 194718: [[24535]], + 194719: [[24569]], + 194720: [[24705]], + 194721: [[14650]], + 194722: [[14620]], + 194723: [[24724]], + 194724: [[141012]], + 194725: [[24775]], + 194726: [[24904]], + 194727: [[24908]], + 194728: [[24910]], + 194729: [[24908]], + 194730: [[24954]], + 194731: [[24974]], + 194732: [[25010]], + 194733: [[24996]], + 194734: [[25007]], + 194735: [[25054]], + 194736: [[25074]], + 194737: [[25078]], + 194738: [[25104]], + 194739: [[25115]], + 194740: [[25181]], + 194741: [[25265]], + 194742: [[25300]], + 194743: [[25424]], + 194744: [[142092]], + 194745: [[25405]], + 194746: [[25340]], + 194747: [[25448]], + 194748: [[25475]], + 194749: [[25572]], + 194750: [[142321]], + 194751: [[25634]], + 194752: [[25541]], + 194753: [[25513]], + 194754: [[14894]], + 194755: [[25705]], + 194756: [[25726]], + 194757: [[25757]], + 194758: [[25719]], + 194759: [[14956]], + 194760: [[25935]], + 194761: [[25964]], + 194762: [[143370]], + 194763: [[26083]], + 194764: [[26360]], + 194765: [[26185]], + 194766: [[15129]], + 194767: [[26257]], + 194768: [[15112]], + 194769: [[15076]], + 194770: [[20882]], + 194771: [[20885]], + 194772: [[26368]], + 194773: [[26268]], + 194774: [[32941]], + 194775: [[17369]], + 194776: [[26391]], + 194777: [[26395]], + 194778: [[26401]], + 194779: [[26462]], + 194780: [[26451]], + 194781: [[144323]], + 194782: [[15177]], + 194783: [[26618]], + 194784: [[26501]], + 194785: [[26706]], + 194786: [[26757]], + 194787: [[144493]], + 194788: [[26766]], + 194789: [[26655]], + 194790: [[26900]], + 194791: [[15261]], + 194792: [[26946]], + 194793: [[27043]], + 194794: [[27114]], + 194795: [[27304]], + 194796: [[145059]], + 194797: [[27355]], + 194798: [[15384]], + 194799: [[27425]], + 194800: [[145575]], + 194801: [[27476]], + 194802: [[15438]], + 194803: [[27506]], + 194804: [[27551]], + 194805: [[27578]], + 194806: [[27579]], + 194807: [[146061]], + 194808: [[138507]], + 194809: [[146170]], + 194810: [[27726]], + 194811: [[146620]], + 194812: [[27839]], + 194813: [[27853]], + 194814: [[27751]], + 194815: [[27926]] + }, + 63744: { + 63744: [[35912]], + 63745: [[26356]], + 63746: [[36554]], + 63747: [[36040]], + 63748: [[28369]], + 63749: [[20018]], + 63750: [[21477]], + 63751: [[40860]], + 63752: [[40860]], + 63753: [[22865]], + 63754: [[37329]], + 63755: [[21895]], + 63756: [[22856]], + 63757: [[25078]], + 63758: [[30313]], + 63759: [[32645]], + 63760: [[34367]], + 63761: [[34746]], + 63762: [[35064]], + 63763: [[37007]], + 63764: [[27138]], + 63765: [[27931]], + 63766: [[28889]], + 63767: [[29662]], + 63768: [[33853]], + 63769: [[37226]], + 63770: [[39409]], + 63771: [[20098]], + 63772: [[21365]], + 63773: [[27396]], + 63774: [[29211]], + 63775: [[34349]], + 63776: [[40478]], + 63777: [[23888]], + 63778: [[28651]], + 63779: [[34253]], + 63780: [[35172]], + 63781: [[25289]], + 63782: [[33240]], + 63783: [[34847]], + 63784: [[24266]], + 63785: [[26391]], + 63786: [[28010]], + 63787: [[29436]], + 63788: [[37070]], + 63789: [[20358]], + 63790: [[20919]], + 63791: [[21214]], + 63792: [[25796]], + 63793: [[27347]], + 63794: [[29200]], + 63795: [[30439]], + 63796: [[32769]], + 63797: [[34310]], + 63798: [[34396]], + 63799: [[36335]], + 63800: [[38706]], + 63801: [[39791]], + 63802: [[40442]], + 63803: [[30860]], + 63804: [[31103]], + 63805: [[32160]], + 63806: [[33737]], + 63807: [[37636]], + 63808: [[40575]], + 63809: [[35542]], + 63810: [[22751]], + 63811: [[24324]], + 63812: [[31840]], + 63813: [[32894]], + 63814: [[29282]], + 63815: [[30922]], + 63816: [[36034]], + 63817: [[38647]], + 63818: [[22744]], + 63819: [[23650]], + 63820: [[27155]], + 63821: [[28122]], + 63822: [[28431]], + 63823: [[32047]], + 63824: [[32311]], + 63825: [[38475]], + 63826: [[21202]], + 63827: [[32907]], + 63828: [[20956]], + 63829: [[20940]], + 63830: [[31260]], + 63831: [[32190]], + 63832: [[33777]], + 63833: [[38517]], + 63834: [[35712]], + 63835: [[25295]], + 63836: [[27138]], + 63837: [[35582]], + 63838: [[20025]], + 63839: [[23527]], + 63840: [[24594]], + 63841: [[29575]], + 63842: [[30064]], + 63843: [[21271]], + 63844: [[30971]], + 63845: [[20415]], + 63846: [[24489]], + 63847: [[19981]], + 63848: [[27852]], + 63849: [[25976]], + 63850: [[32034]], + 63851: [[21443]], + 63852: [[22622]], + 63853: [[30465]], + 63854: [[33865]], + 63855: [[35498]], + 63856: [[27578]], + 63857: [[36784]], + 63858: [[27784]], + 63859: [[25342]], + 63860: [[33509]], + 63861: [[25504]], + 63862: [[30053]], + 63863: [[20142]], + 63864: [[20841]], + 63865: [[20937]], + 63866: [[26753]], + 63867: [[31975]], + 63868: [[33391]], + 63869: [[35538]], + 63870: [[37327]], + 63871: [[21237]], + 63872: [[21570]], + 63873: [[22899]], + 63874: [[24300]], + 63875: [[26053]], + 63876: [[28670]], + 63877: [[31018]], + 63878: [[38317]], + 63879: [[39530]], + 63880: [[40599]], + 63881: [[40654]], + 63882: [[21147]], + 63883: [[26310]], + 63884: [[27511]], + 63885: [[36706]], + 63886: [[24180]], + 63887: [[24976]], + 63888: [[25088]], + 63889: [[25754]], + 63890: [[28451]], + 63891: [[29001]], + 63892: [[29833]], + 63893: [[31178]], + 63894: [[32244]], + 63895: [[32879]], + 63896: [[36646]], + 63897: [[34030]], + 63898: [[36899]], + 63899: [[37706]], + 63900: [[21015]], + 63901: [[21155]], + 63902: [[21693]], + 63903: [[28872]], + 63904: [[35010]], + 63905: [[35498]], + 63906: [[24265]], + 63907: [[24565]], + 63908: [[25467]], + 63909: [[27566]], + 63910: [[31806]], + 63911: [[29557]], + 63912: [[20196]], + 63913: [[22265]], + 63914: [[23527]], + 63915: [[23994]], + 63916: [[24604]], + 63917: [[29618]], + 63918: [[29801]], + 63919: [[32666]], + 63920: [[32838]], + 63921: [[37428]], + 63922: [[38646]], + 63923: [[38728]], + 63924: [[38936]], + 63925: [[20363]], + 63926: [[31150]], + 63927: [[37300]], + 63928: [[38584]], + 63929: [[24801]], + 63930: [[20102]], + 63931: [[20698]], + 63932: [[23534]], + 63933: [[23615]], + 63934: [[26009]], + 63935: [[27138]], + 63936: [[29134]], + 63937: [[30274]], + 63938: [[34044]], + 63939: [[36988]], + 63940: [[40845]], + 63941: [[26248]], + 63942: [[38446]], + 63943: [[21129]], + 63944: [[26491]], + 63945: [[26611]], + 63946: [[27969]], + 63947: [[28316]], + 63948: [[29705]], + 63949: [[30041]], + 63950: [[30827]], + 63951: [[32016]], + 63952: [[39006]], + 63953: [[20845]], + 63954: [[25134]], + 63955: [[38520]], + 63956: [[20523]], + 63957: [[23833]], + 63958: [[28138]], + 63959: [[36650]], + 63960: [[24459]], + 63961: [[24900]], + 63962: [[26647]], + 63963: [[29575]], + 63964: [[38534]], + 63965: [[21033]], + 63966: [[21519]], + 63967: [[23653]], + 63968: [[26131]], + 63969: [[26446]], + 63970: [[26792]], + 63971: [[27877]], + 63972: [[29702]], + 63973: [[30178]], + 63974: [[32633]], + 63975: [[35023]], + 63976: [[35041]], + 63977: [[37324]], + 63978: [[38626]], + 63979: [[21311]], + 63980: [[28346]], + 63981: [[21533]], + 63982: [[29136]], + 63983: [[29848]], + 63984: [[34298]], + 63985: [[38563]], + 63986: [[40023]], + 63987: [[40607]], + 63988: [[26519]], + 63989: [[28107]], + 63990: [[33256]], + 63991: [[31435]], + 63992: [[31520]], + 63993: [[31890]], + 63994: [[29376]], + 63995: [[28825]], + 63996: [[35672]], + 63997: [[20160]], + 63998: [[33590]], + 63999: [[21050]], + 194816: [[27966]], + 194817: [[28023]], + 194818: [[27969]], + 194819: [[28009]], + 194820: [[28024]], + 194821: [[28037]], + 194822: [[146718]], + 194823: [[27956]], + 194824: [[28207]], + 194825: [[28270]], + 194826: [[15667]], + 194827: [[28363]], + 194828: [[28359]], + 194829: [[147153]], + 194830: [[28153]], + 194831: [[28526]], + 194832: [[147294]], + 194833: [[147342]], + 194834: [[28614]], + 194835: [[28729]], + 194836: [[28702]], + 194837: [[28699]], + 194838: [[15766]], + 194839: [[28746]], + 194840: [[28797]], + 194841: [[28791]], + 194842: [[28845]], + 194843: [[132389]], + 194844: [[28997]], + 194845: [[148067]], + 194846: [[29084]], + 194847: [[148395]], + 194848: [[29224]], + 194849: [[29237]], + 194850: [[29264]], + 194851: [[149e3]], + 194852: [[29312]], + 194853: [[29333]], + 194854: [[149301]], + 194855: [[149524]], + 194856: [[29562]], + 194857: [[29579]], + 194858: [[16044]], + 194859: [[29605]], + 194860: [[16056]], + 194861: [[16056]], + 194862: [[29767]], + 194863: [[29788]], + 194864: [[29809]], + 194865: [[29829]], + 194866: [[29898]], + 194867: [[16155]], + 194868: [[29988]], + 194869: [[150582]], + 194870: [[30014]], + 194871: [[150674]], + 194872: [[30064]], + 194873: [[139679]], + 194874: [[30224]], + 194875: [[151457]], + 194876: [[151480]], + 194877: [[151620]], + 194878: [[16380]], + 194879: [[16392]], + 194880: [[30452]], + 194881: [[151795]], + 194882: [[151794]], + 194883: [[151833]], + 194884: [[151859]], + 194885: [[30494]], + 194886: [[30495]], + 194887: [[30495]], + 194888: [[30538]], + 194889: [[16441]], + 194890: [[30603]], + 194891: [[16454]], + 194892: [[16534]], + 194893: [[152605]], + 194894: [[30798]], + 194895: [[30860]], + 194896: [[30924]], + 194897: [[16611]], + 194898: [[153126]], + 194899: [[31062]], + 194900: [[153242]], + 194901: [[153285]], + 194902: [[31119]], + 194903: [[31211]], + 194904: [[16687]], + 194905: [[31296]], + 194906: [[31306]], + 194907: [[31311]], + 194908: [[153980]], + 194909: [[154279]], + 194910: [[154279]], + 194911: [[31470]], + 194912: [[16898]], + 194913: [[154539]], + 194914: [[31686]], + 194915: [[31689]], + 194916: [[16935]], + 194917: [[154752]], + 194918: [[31954]], + 194919: [[17056]], + 194920: [[31976]], + 194921: [[31971]], + 194922: [[32e3]], + 194923: [[155526]], + 194924: [[32099]], + 194925: [[17153]], + 194926: [[32199]], + 194927: [[32258]], + 194928: [[32325]], + 194929: [[17204]], + 194930: [[156200]], + 194931: [[156231]], + 194932: [[17241]], + 194933: [[156377]], + 194934: [[32634]], + 194935: [[156478]], + 194936: [[32661]], + 194937: [[32762]], + 194938: [[32773]], + 194939: [[156890]], + 194940: [[156963]], + 194941: [[32864]], + 194942: [[157096]], + 194943: [[32880]], + 194944: [[144223]], + 194945: [[17365]], + 194946: [[32946]], + 194947: [[33027]], + 194948: [[17419]], + 194949: [[33086]], + 194950: [[23221]], + 194951: [[157607]], + 194952: [[157621]], + 194953: [[144275]], + 194954: [[144284]], + 194955: [[33281]], + 194956: [[33284]], + 194957: [[36766]], + 194958: [[17515]], + 194959: [[33425]], + 194960: [[33419]], + 194961: [[33437]], + 194962: [[21171]], + 194963: [[33457]], + 194964: [[33459]], + 194965: [[33469]], + 194966: [[33510]], + 194967: [[158524]], + 194968: [[33509]], + 194969: [[33565]], + 194970: [[33635]], + 194971: [[33709]], + 194972: [[33571]], + 194973: [[33725]], + 194974: [[33767]], + 194975: [[33879]], + 194976: [[33619]], + 194977: [[33738]], + 194978: [[33740]], + 194979: [[33756]], + 194980: [[158774]], + 194981: [[159083]], + 194982: [[158933]], + 194983: [[17707]], + 194984: [[34033]], + 194985: [[34035]], + 194986: [[34070]], + 194987: [[160714]], + 194988: [[34148]], + 194989: [[159532]], + 194990: [[17757]], + 194991: [[17761]], + 194992: [[159665]], + 194993: [[159954]], + 194994: [[17771]], + 194995: [[34384]], + 194996: [[34396]], + 194997: [[34407]], + 194998: [[34409]], + 194999: [[34473]], + 195e3: [[34440]], + 195001: [[34574]], + 195002: [[34530]], + 195003: [[34681]], + 195004: [[34600]], + 195005: [[34667]], + 195006: [[34694]], + 195007: [[17879]], + 195008: [[34785]], + 195009: [[34817]], + 195010: [[17913]], + 195011: [[34912]], + 195012: [[34915]], + 195013: [[161383]], + 195014: [[35031]], + 195015: [[35038]], + 195016: [[17973]], + 195017: [[35066]], + 195018: [[13499]], + 195019: [[161966]], + 195020: [[162150]], + 195021: [[18110]], + 195022: [[18119]], + 195023: [[35488]], + 195024: [[35565]], + 195025: [[35722]], + 195026: [[35925]], + 195027: [[162984]], + 195028: [[36011]], + 195029: [[36033]], + 195030: [[36123]], + 195031: [[36215]], + 195032: [[163631]], + 195033: [[133124]], + 195034: [[36299]], + 195035: [[36284]], + 195036: [[36336]], + 195037: [[133342]], + 195038: [[36564]], + 195039: [[36664]], + 195040: [[165330]], + 195041: [[165357]], + 195042: [[37012]], + 195043: [[37105]], + 195044: [[37137]], + 195045: [[165678]], + 195046: [[37147]], + 195047: [[37432]], + 195048: [[37591]], + 195049: [[37592]], + 195050: [[37500]], + 195051: [[37881]], + 195052: [[37909]], + 195053: [[166906]], + 195054: [[38283]], + 195055: [[18837]], + 195056: [[38327]], + 195057: [[167287]], + 195058: [[18918]], + 195059: [[38595]], + 195060: [[23986]], + 195061: [[38691]], + 195062: [[168261]], + 195063: [[168474]], + 195064: [[19054]], + 195065: [[19062]], + 195066: [[38880]], + 195067: [[168970]], + 195068: [[19122]], + 195069: [[169110]], + 195070: [[38923]], + 195071: [[38923]] + }, + 64e3: { + 64e3: [[20999]], + 64001: [[24230]], + 64002: [[25299]], + 64003: [[31958]], + 64004: [[23429]], + 64005: [[27934]], + 64006: [[26292]], + 64007: [[36667]], + 64008: [[34892]], + 64009: [[38477]], + 64010: [[35211]], + 64011: [[24275]], + 64012: [[20800]], + 64013: [[21952]], + 64016: [[22618]], + 64018: [[26228]], + 64021: [[20958]], + 64022: [[29482]], + 64023: [[30410]], + 64024: [[31036]], + 64025: [[31070]], + 64026: [[31077]], + 64027: [[31119]], + 64028: [[38742]], + 64029: [[31934]], + 64030: [[32701]], + 64032: [[34322]], + 64034: [[35576]], + 64037: [[36920]], + 64038: [[37117]], + 64042: [[39151]], + 64043: [[39164]], + 64044: [[39208]], + 64045: [[40372]], + 64046: [[37086]], + 64047: [[38583]], + 64048: [[20398]], + 64049: [[20711]], + 64050: [[20813]], + 64051: [[21193]], + 64052: [[21220]], + 64053: [[21329]], + 64054: [[21917]], + 64055: [[22022]], + 64056: [[22120]], + 64057: [[22592]], + 64058: [[22696]], + 64059: [[23652]], + 64060: [[23662]], + 64061: [[24724]], + 64062: [[24936]], + 64063: [[24974]], + 64064: [[25074]], + 64065: [[25935]], + 64066: [[26082]], + 64067: [[26257]], + 64068: [[26757]], + 64069: [[28023]], + 64070: [[28186]], + 64071: [[28450]], + 64072: [[29038]], + 64073: [[29227]], + 64074: [[29730]], + 64075: [[30865]], + 64076: [[31038]], + 64077: [[31049]], + 64078: [[31048]], + 64079: [[31056]], + 64080: [[31062]], + 64081: [[31069]], + 64082: [[31117]], + 64083: [[31118]], + 64084: [[31296]], + 64085: [[31361]], + 64086: [[31680]], + 64087: [[32244]], + 64088: [[32265]], + 64089: [[32321]], + 64090: [[32626]], + 64091: [[32773]], + 64092: [[33261]], + 64093: [[33401]], + 64094: [[33401]], + 64095: [[33879]], + 64096: [[35088]], + 64097: [[35222]], + 64098: [[35585]], + 64099: [[35641]], + 64100: [[36051]], + 64101: [[36104]], + 64102: [[36790]], + 64103: [[36920]], + 64104: [[38627]], + 64105: [[38911]], + 64106: [[38971]], + 64107: [[24693]], + 64108: [[148206]], + 64109: [[33304]], + 64112: [[20006]], + 64113: [[20917]], + 64114: [[20840]], + 64115: [[20352]], + 64116: [[20805]], + 64117: [[20864]], + 64118: [[21191]], + 64119: [[21242]], + 64120: [[21917]], + 64121: [[21845]], + 64122: [[21913]], + 64123: [[21986]], + 64124: [[22618]], + 64125: [[22707]], + 64126: [[22852]], + 64127: [[22868]], + 64128: [[23138]], + 64129: [[23336]], + 64130: [[24274]], + 64131: [[24281]], + 64132: [[24425]], + 64133: [[24493]], + 64134: [[24792]], + 64135: [[24910]], + 64136: [[24840]], + 64137: [[24974]], + 64138: [[24928]], + 64139: [[25074]], + 64140: [[25140]], + 64141: [[25540]], + 64142: [[25628]], + 64143: [[25682]], + 64144: [[25942]], + 64145: [[26228]], + 64146: [[26391]], + 64147: [[26395]], + 64148: [[26454]], + 64149: [[27513]], + 64150: [[27578]], + 64151: [[27969]], + 64152: [[28379]], + 64153: [[28363]], + 64154: [[28450]], + 64155: [[28702]], + 64156: [[29038]], + 64157: [[30631]], + 64158: [[29237]], + 64159: [[29359]], + 64160: [[29482]], + 64161: [[29809]], + 64162: [[29958]], + 64163: [[30011]], + 64164: [[30237]], + 64165: [[30239]], + 64166: [[30410]], + 64167: [[30427]], + 64168: [[30452]], + 64169: [[30538]], + 64170: [[30528]], + 64171: [[30924]], + 64172: [[31409]], + 64173: [[31680]], + 64174: [[31867]], + 64175: [[32091]], + 64176: [[32244]], + 64177: [[32574]], + 64178: [[32773]], + 64179: [[33618]], + 64180: [[33775]], + 64181: [[34681]], + 64182: [[35137]], + 64183: [[35206]], + 64184: [[35222]], + 64185: [[35519]], + 64186: [[35576]], + 64187: [[35531]], + 64188: [[35585]], + 64189: [[35582]], + 64190: [[35565]], + 64191: [[35641]], + 64192: [[35722]], + 64193: [[36104]], + 64194: [[36664]], + 64195: [[36978]], + 64196: [[37273]], + 64197: [[37494]], + 64198: [[38524]], + 64199: [[38627]], + 64200: [[38742]], + 64201: [[38875]], + 64202: [[38911]], + 64203: [[38923]], + 64204: [[38971]], + 64205: [[39698]], + 64206: [[40860]], + 64207: [[141386]], + 64208: [[141380]], + 64209: [[144341]], + 64210: [[15261]], + 64211: [[16408]], + 64212: [[16441]], + 64213: [[152137]], + 64214: [[154832]], + 64215: [[163539]], + 64216: [[40771]], + 64217: [[40846]], + 195072: [[38953]], + 195073: [[169398]], + 195074: [[39138]], + 195075: [[19251]], + 195076: [[39209]], + 195077: [[39335]], + 195078: [[39362]], + 195079: [[39422]], + 195080: [[19406]], + 195081: [[170800]], + 195082: [[39698]], + 195083: [[4e4]], + 195084: [[40189]], + 195085: [[19662]], + 195086: [[19693]], + 195087: [[40295]], + 195088: [[172238]], + 195089: [[19704]], + 195090: [[172293]], + 195091: [[172558]], + 195092: [[172689]], + 195093: [[40635]], + 195094: [[19798]], + 195095: [[40697]], + 195096: [[40702]], + 195097: [[40709]], + 195098: [[40719]], + 195099: [[40726]], + 195100: [[40763]], + 195101: [[173568]] + }, + 64256: { + 64256: [[102, 102], 256], + 64257: [[102, 105], 256], + 64258: [[102, 108], 256], + 64259: [[102, 102, 105], 256], + 64260: [[102, 102, 108], 256], + 64261: [[383, 116], 256], + 64262: [[115, 116], 256], + 64275: [[1396, 1398], 256], + 64276: [[1396, 1381], 256], + 64277: [[1396, 1387], 256], + 64278: [[1406, 1398], 256], + 64279: [[1396, 1389], 256], + 64285: [[1497, 1460], 512], + 64286: [, 26], + 64287: [[1522, 1463], 512], + 64288: [[1506], 256], + 64289: [[1488], 256], + 64290: [[1491], 256], + 64291: [[1492], 256], + 64292: [[1499], 256], + 64293: [[1500], 256], + 64294: [[1501], 256], + 64295: [[1512], 256], + 64296: [[1514], 256], + 64297: [[43], 256], + 64298: [[1513, 1473], 512], + 64299: [[1513, 1474], 512], + 64300: [[64329, 1473], 512], + 64301: [[64329, 1474], 512], + 64302: [[1488, 1463], 512], + 64303: [[1488, 1464], 512], + 64304: [[1488, 1468], 512], + 64305: [[1489, 1468], 512], + 64306: [[1490, 1468], 512], + 64307: [[1491, 1468], 512], + 64308: [[1492, 1468], 512], + 64309: [[1493, 1468], 512], + 64310: [[1494, 1468], 512], + 64312: [[1496, 1468], 512], + 64313: [[1497, 1468], 512], + 64314: [[1498, 1468], 512], + 64315: [[1499, 1468], 512], + 64316: [[1500, 1468], 512], + 64318: [[1502, 1468], 512], + 64320: [[1504, 1468], 512], + 64321: [[1505, 1468], 512], + 64323: [[1507, 1468], 512], + 64324: [[1508, 1468], 512], + 64326: [[1510, 1468], 512], + 64327: [[1511, 1468], 512], + 64328: [[1512, 1468], 512], + 64329: [[1513, 1468], 512], + 64330: [[1514, 1468], 512], + 64331: [[1493, 1465], 512], + 64332: [[1489, 1471], 512], + 64333: [[1499, 1471], 512], + 64334: [[1508, 1471], 512], + 64335: [[1488, 1500], 256], + 64336: [[1649], 256], + 64337: [[1649], 256], + 64338: [[1659], 256], + 64339: [[1659], 256], + 64340: [[1659], 256], + 64341: [[1659], 256], + 64342: [[1662], 256], + 64343: [[1662], 256], + 64344: [[1662], 256], + 64345: [[1662], 256], + 64346: [[1664], 256], + 64347: [[1664], 256], + 64348: [[1664], 256], + 64349: [[1664], 256], + 64350: [[1658], 256], + 64351: [[1658], 256], + 64352: [[1658], 256], + 64353: [[1658], 256], + 64354: [[1663], 256], + 64355: [[1663], 256], + 64356: [[1663], 256], + 64357: [[1663], 256], + 64358: [[1657], 256], + 64359: [[1657], 256], + 64360: [[1657], 256], + 64361: [[1657], 256], + 64362: [[1700], 256], + 64363: [[1700], 256], + 64364: [[1700], 256], + 64365: [[1700], 256], + 64366: [[1702], 256], + 64367: [[1702], 256], + 64368: [[1702], 256], + 64369: [[1702], 256], + 64370: [[1668], 256], + 64371: [[1668], 256], + 64372: [[1668], 256], + 64373: [[1668], 256], + 64374: [[1667], 256], + 64375: [[1667], 256], + 64376: [[1667], 256], + 64377: [[1667], 256], + 64378: [[1670], 256], + 64379: [[1670], 256], + 64380: [[1670], 256], + 64381: [[1670], 256], + 64382: [[1671], 256], + 64383: [[1671], 256], + 64384: [[1671], 256], + 64385: [[1671], 256], + 64386: [[1677], 256], + 64387: [[1677], 256], + 64388: [[1676], 256], + 64389: [[1676], 256], + 64390: [[1678], 256], + 64391: [[1678], 256], + 64392: [[1672], 256], + 64393: [[1672], 256], + 64394: [[1688], 256], + 64395: [[1688], 256], + 64396: [[1681], 256], + 64397: [[1681], 256], + 64398: [[1705], 256], + 64399: [[1705], 256], + 64400: [[1705], 256], + 64401: [[1705], 256], + 64402: [[1711], 256], + 64403: [[1711], 256], + 64404: [[1711], 256], + 64405: [[1711], 256], + 64406: [[1715], 256], + 64407: [[1715], 256], + 64408: [[1715], 256], + 64409: [[1715], 256], + 64410: [[1713], 256], + 64411: [[1713], 256], + 64412: [[1713], 256], + 64413: [[1713], 256], + 64414: [[1722], 256], + 64415: [[1722], 256], + 64416: [[1723], 256], + 64417: [[1723], 256], + 64418: [[1723], 256], + 64419: [[1723], 256], + 64420: [[1728], 256], + 64421: [[1728], 256], + 64422: [[1729], 256], + 64423: [[1729], 256], + 64424: [[1729], 256], + 64425: [[1729], 256], + 64426: [[1726], 256], + 64427: [[1726], 256], + 64428: [[1726], 256], + 64429: [[1726], 256], + 64430: [[1746], 256], + 64431: [[1746], 256], + 64432: [[1747], 256], + 64433: [[1747], 256], + 64467: [[1709], 256], + 64468: [[1709], 256], + 64469: [[1709], 256], + 64470: [[1709], 256], + 64471: [[1735], 256], + 64472: [[1735], 256], + 64473: [[1734], 256], + 64474: [[1734], 256], + 64475: [[1736], 256], + 64476: [[1736], 256], + 64477: [[1655], 256], + 64478: [[1739], 256], + 64479: [[1739], 256], + 64480: [[1733], 256], + 64481: [[1733], 256], + 64482: [[1737], 256], + 64483: [[1737], 256], + 64484: [[1744], 256], + 64485: [[1744], 256], + 64486: [[1744], 256], + 64487: [[1744], 256], + 64488: [[1609], 256], + 64489: [[1609], 256], + 64490: [[1574, 1575], 256], + 64491: [[1574, 1575], 256], + 64492: [[1574, 1749], 256], + 64493: [[1574, 1749], 256], + 64494: [[1574, 1608], 256], + 64495: [[1574, 1608], 256], + 64496: [[1574, 1735], 256], + 64497: [[1574, 1735], 256], + 64498: [[1574, 1734], 256], + 64499: [[1574, 1734], 256], + 64500: [[1574, 1736], 256], + 64501: [[1574, 1736], 256], + 64502: [[1574, 1744], 256], + 64503: [[1574, 1744], 256], + 64504: [[1574, 1744], 256], + 64505: [[1574, 1609], 256], + 64506: [[1574, 1609], 256], + 64507: [[1574, 1609], 256], + 64508: [[1740], 256], + 64509: [[1740], 256], + 64510: [[1740], 256], + 64511: [[1740], 256] + }, + 64512: { + 64512: [[1574, 1580], 256], + 64513: [[1574, 1581], 256], + 64514: [[1574, 1605], 256], + 64515: [[1574, 1609], 256], + 64516: [[1574, 1610], 256], + 64517: [[1576, 1580], 256], + 64518: [[1576, 1581], 256], + 64519: [[1576, 1582], 256], + 64520: [[1576, 1605], 256], + 64521: [[1576, 1609], 256], + 64522: [[1576, 1610], 256], + 64523: [[1578, 1580], 256], + 64524: [[1578, 1581], 256], + 64525: [[1578, 1582], 256], + 64526: [[1578, 1605], 256], + 64527: [[1578, 1609], 256], + 64528: [[1578, 1610], 256], + 64529: [[1579, 1580], 256], + 64530: [[1579, 1605], 256], + 64531: [[1579, 1609], 256], + 64532: [[1579, 1610], 256], + 64533: [[1580, 1581], 256], + 64534: [[1580, 1605], 256], + 64535: [[1581, 1580], 256], + 64536: [[1581, 1605], 256], + 64537: [[1582, 1580], 256], + 64538: [[1582, 1581], 256], + 64539: [[1582, 1605], 256], + 64540: [[1587, 1580], 256], + 64541: [[1587, 1581], 256], + 64542: [[1587, 1582], 256], + 64543: [[1587, 1605], 256], + 64544: [[1589, 1581], 256], + 64545: [[1589, 1605], 256], + 64546: [[1590, 1580], 256], + 64547: [[1590, 1581], 256], + 64548: [[1590, 1582], 256], + 64549: [[1590, 1605], 256], + 64550: [[1591, 1581], 256], + 64551: [[1591, 1605], 256], + 64552: [[1592, 1605], 256], + 64553: [[1593, 1580], 256], + 64554: [[1593, 1605], 256], + 64555: [[1594, 1580], 256], + 64556: [[1594, 1605], 256], + 64557: [[1601, 1580], 256], + 64558: [[1601, 1581], 256], + 64559: [[1601, 1582], 256], + 64560: [[1601, 1605], 256], + 64561: [[1601, 1609], 256], + 64562: [[1601, 1610], 256], + 64563: [[1602, 1581], 256], + 64564: [[1602, 1605], 256], + 64565: [[1602, 1609], 256], + 64566: [[1602, 1610], 256], + 64567: [[1603, 1575], 256], + 64568: [[1603, 1580], 256], + 64569: [[1603, 1581], 256], + 64570: [[1603, 1582], 256], + 64571: [[1603, 1604], 256], + 64572: [[1603, 1605], 256], + 64573: [[1603, 1609], 256], + 64574: [[1603, 1610], 256], + 64575: [[1604, 1580], 256], + 64576: [[1604, 1581], 256], + 64577: [[1604, 1582], 256], + 64578: [[1604, 1605], 256], + 64579: [[1604, 1609], 256], + 64580: [[1604, 1610], 256], + 64581: [[1605, 1580], 256], + 64582: [[1605, 1581], 256], + 64583: [[1605, 1582], 256], + 64584: [[1605, 1605], 256], + 64585: [[1605, 1609], 256], + 64586: [[1605, 1610], 256], + 64587: [[1606, 1580], 256], + 64588: [[1606, 1581], 256], + 64589: [[1606, 1582], 256], + 64590: [[1606, 1605], 256], + 64591: [[1606, 1609], 256], + 64592: [[1606, 1610], 256], + 64593: [[1607, 1580], 256], + 64594: [[1607, 1605], 256], + 64595: [[1607, 1609], 256], + 64596: [[1607, 1610], 256], + 64597: [[1610, 1580], 256], + 64598: [[1610, 1581], 256], + 64599: [[1610, 1582], 256], + 64600: [[1610, 1605], 256], + 64601: [[1610, 1609], 256], + 64602: [[1610, 1610], 256], + 64603: [[1584, 1648], 256], + 64604: [[1585, 1648], 256], + 64605: [[1609, 1648], 256], + 64606: [[32, 1612, 1617], 256], + 64607: [[32, 1613, 1617], 256], + 64608: [[32, 1614, 1617], 256], + 64609: [[32, 1615, 1617], 256], + 64610: [[32, 1616, 1617], 256], + 64611: [[32, 1617, 1648], 256], + 64612: [[1574, 1585], 256], + 64613: [[1574, 1586], 256], + 64614: [[1574, 1605], 256], + 64615: [[1574, 1606], 256], + 64616: [[1574, 1609], 256], + 64617: [[1574, 1610], 256], + 64618: [[1576, 1585], 256], + 64619: [[1576, 1586], 256], + 64620: [[1576, 1605], 256], + 64621: [[1576, 1606], 256], + 64622: [[1576, 1609], 256], + 64623: [[1576, 1610], 256], + 64624: [[1578, 1585], 256], + 64625: [[1578, 1586], 256], + 64626: [[1578, 1605], 256], + 64627: [[1578, 1606], 256], + 64628: [[1578, 1609], 256], + 64629: [[1578, 1610], 256], + 64630: [[1579, 1585], 256], + 64631: [[1579, 1586], 256], + 64632: [[1579, 1605], 256], + 64633: [[1579, 1606], 256], + 64634: [[1579, 1609], 256], + 64635: [[1579, 1610], 256], + 64636: [[1601, 1609], 256], + 64637: [[1601, 1610], 256], + 64638: [[1602, 1609], 256], + 64639: [[1602, 1610], 256], + 64640: [[1603, 1575], 256], + 64641: [[1603, 1604], 256], + 64642: [[1603, 1605], 256], + 64643: [[1603, 1609], 256], + 64644: [[1603, 1610], 256], + 64645: [[1604, 1605], 256], + 64646: [[1604, 1609], 256], + 64647: [[1604, 1610], 256], + 64648: [[1605, 1575], 256], + 64649: [[1605, 1605], 256], + 64650: [[1606, 1585], 256], + 64651: [[1606, 1586], 256], + 64652: [[1606, 1605], 256], + 64653: [[1606, 1606], 256], + 64654: [[1606, 1609], 256], + 64655: [[1606, 1610], 256], + 64656: [[1609, 1648], 256], + 64657: [[1610, 1585], 256], + 64658: [[1610, 1586], 256], + 64659: [[1610, 1605], 256], + 64660: [[1610, 1606], 256], + 64661: [[1610, 1609], 256], + 64662: [[1610, 1610], 256], + 64663: [[1574, 1580], 256], + 64664: [[1574, 1581], 256], + 64665: [[1574, 1582], 256], + 64666: [[1574, 1605], 256], + 64667: [[1574, 1607], 256], + 64668: [[1576, 1580], 256], + 64669: [[1576, 1581], 256], + 64670: [[1576, 1582], 256], + 64671: [[1576, 1605], 256], + 64672: [[1576, 1607], 256], + 64673: [[1578, 1580], 256], + 64674: [[1578, 1581], 256], + 64675: [[1578, 1582], 256], + 64676: [[1578, 1605], 256], + 64677: [[1578, 1607], 256], + 64678: [[1579, 1605], 256], + 64679: [[1580, 1581], 256], + 64680: [[1580, 1605], 256], + 64681: [[1581, 1580], 256], + 64682: [[1581, 1605], 256], + 64683: [[1582, 1580], 256], + 64684: [[1582, 1605], 256], + 64685: [[1587, 1580], 256], + 64686: [[1587, 1581], 256], + 64687: [[1587, 1582], 256], + 64688: [[1587, 1605], 256], + 64689: [[1589, 1581], 256], + 64690: [[1589, 1582], 256], + 64691: [[1589, 1605], 256], + 64692: [[1590, 1580], 256], + 64693: [[1590, 1581], 256], + 64694: [[1590, 1582], 256], + 64695: [[1590, 1605], 256], + 64696: [[1591, 1581], 256], + 64697: [[1592, 1605], 256], + 64698: [[1593, 1580], 256], + 64699: [[1593, 1605], 256], + 64700: [[1594, 1580], 256], + 64701: [[1594, 1605], 256], + 64702: [[1601, 1580], 256], + 64703: [[1601, 1581], 256], + 64704: [[1601, 1582], 256], + 64705: [[1601, 1605], 256], + 64706: [[1602, 1581], 256], + 64707: [[1602, 1605], 256], + 64708: [[1603, 1580], 256], + 64709: [[1603, 1581], 256], + 64710: [[1603, 1582], 256], + 64711: [[1603, 1604], 256], + 64712: [[1603, 1605], 256], + 64713: [[1604, 1580], 256], + 64714: [[1604, 1581], 256], + 64715: [[1604, 1582], 256], + 64716: [[1604, 1605], 256], + 64717: [[1604, 1607], 256], + 64718: [[1605, 1580], 256], + 64719: [[1605, 1581], 256], + 64720: [[1605, 1582], 256], + 64721: [[1605, 1605], 256], + 64722: [[1606, 1580], 256], + 64723: [[1606, 1581], 256], + 64724: [[1606, 1582], 256], + 64725: [[1606, 1605], 256], + 64726: [[1606, 1607], 256], + 64727: [[1607, 1580], 256], + 64728: [[1607, 1605], 256], + 64729: [[1607, 1648], 256], + 64730: [[1610, 1580], 256], + 64731: [[1610, 1581], 256], + 64732: [[1610, 1582], 256], + 64733: [[1610, 1605], 256], + 64734: [[1610, 1607], 256], + 64735: [[1574, 1605], 256], + 64736: [[1574, 1607], 256], + 64737: [[1576, 1605], 256], + 64738: [[1576, 1607], 256], + 64739: [[1578, 1605], 256], + 64740: [[1578, 1607], 256], + 64741: [[1579, 1605], 256], + 64742: [[1579, 1607], 256], + 64743: [[1587, 1605], 256], + 64744: [[1587, 1607], 256], + 64745: [[1588, 1605], 256], + 64746: [[1588, 1607], 256], + 64747: [[1603, 1604], 256], + 64748: [[1603, 1605], 256], + 64749: [[1604, 1605], 256], + 64750: [[1606, 1605], 256], + 64751: [[1606, 1607], 256], + 64752: [[1610, 1605], 256], + 64753: [[1610, 1607], 256], + 64754: [[1600, 1614, 1617], 256], + 64755: [[1600, 1615, 1617], 256], + 64756: [[1600, 1616, 1617], 256], + 64757: [[1591, 1609], 256], + 64758: [[1591, 1610], 256], + 64759: [[1593, 1609], 256], + 64760: [[1593, 1610], 256], + 64761: [[1594, 1609], 256], + 64762: [[1594, 1610], 256], + 64763: [[1587, 1609], 256], + 64764: [[1587, 1610], 256], + 64765: [[1588, 1609], 256], + 64766: [[1588, 1610], 256], + 64767: [[1581, 1609], 256] + }, + 64768: { + 64768: [[1581, 1610], 256], + 64769: [[1580, 1609], 256], + 64770: [[1580, 1610], 256], + 64771: [[1582, 1609], 256], + 64772: [[1582, 1610], 256], + 64773: [[1589, 1609], 256], + 64774: [[1589, 1610], 256], + 64775: [[1590, 1609], 256], + 64776: [[1590, 1610], 256], + 64777: [[1588, 1580], 256], + 64778: [[1588, 1581], 256], + 64779: [[1588, 1582], 256], + 64780: [[1588, 1605], 256], + 64781: [[1588, 1585], 256], + 64782: [[1587, 1585], 256], + 64783: [[1589, 1585], 256], + 64784: [[1590, 1585], 256], + 64785: [[1591, 1609], 256], + 64786: [[1591, 1610], 256], + 64787: [[1593, 1609], 256], + 64788: [[1593, 1610], 256], + 64789: [[1594, 1609], 256], + 64790: [[1594, 1610], 256], + 64791: [[1587, 1609], 256], + 64792: [[1587, 1610], 256], + 64793: [[1588, 1609], 256], + 64794: [[1588, 1610], 256], + 64795: [[1581, 1609], 256], + 64796: [[1581, 1610], 256], + 64797: [[1580, 1609], 256], + 64798: [[1580, 1610], 256], + 64799: [[1582, 1609], 256], + 64800: [[1582, 1610], 256], + 64801: [[1589, 1609], 256], + 64802: [[1589, 1610], 256], + 64803: [[1590, 1609], 256], + 64804: [[1590, 1610], 256], + 64805: [[1588, 1580], 256], + 64806: [[1588, 1581], 256], + 64807: [[1588, 1582], 256], + 64808: [[1588, 1605], 256], + 64809: [[1588, 1585], 256], + 64810: [[1587, 1585], 256], + 64811: [[1589, 1585], 256], + 64812: [[1590, 1585], 256], + 64813: [[1588, 1580], 256], + 64814: [[1588, 1581], 256], + 64815: [[1588, 1582], 256], + 64816: [[1588, 1605], 256], + 64817: [[1587, 1607], 256], + 64818: [[1588, 1607], 256], + 64819: [[1591, 1605], 256], + 64820: [[1587, 1580], 256], + 64821: [[1587, 1581], 256], + 64822: [[1587, 1582], 256], + 64823: [[1588, 1580], 256], + 64824: [[1588, 1581], 256], + 64825: [[1588, 1582], 256], + 64826: [[1591, 1605], 256], + 64827: [[1592, 1605], 256], + 64828: [[1575, 1611], 256], + 64829: [[1575, 1611], 256], + 64848: [[1578, 1580, 1605], 256], + 64849: [[1578, 1581, 1580], 256], + 64850: [[1578, 1581, 1580], 256], + 64851: [[1578, 1581, 1605], 256], + 64852: [[1578, 1582, 1605], 256], + 64853: [[1578, 1605, 1580], 256], + 64854: [[1578, 1605, 1581], 256], + 64855: [[1578, 1605, 1582], 256], + 64856: [[1580, 1605, 1581], 256], + 64857: [[1580, 1605, 1581], 256], + 64858: [[1581, 1605, 1610], 256], + 64859: [[1581, 1605, 1609], 256], + 64860: [[1587, 1581, 1580], 256], + 64861: [[1587, 1580, 1581], 256], + 64862: [[1587, 1580, 1609], 256], + 64863: [[1587, 1605, 1581], 256], + 64864: [[1587, 1605, 1581], 256], + 64865: [[1587, 1605, 1580], 256], + 64866: [[1587, 1605, 1605], 256], + 64867: [[1587, 1605, 1605], 256], + 64868: [[1589, 1581, 1581], 256], + 64869: [[1589, 1581, 1581], 256], + 64870: [[1589, 1605, 1605], 256], + 64871: [[1588, 1581, 1605], 256], + 64872: [[1588, 1581, 1605], 256], + 64873: [[1588, 1580, 1610], 256], + 64874: [[1588, 1605, 1582], 256], + 64875: [[1588, 1605, 1582], 256], + 64876: [[1588, 1605, 1605], 256], + 64877: [[1588, 1605, 1605], 256], + 64878: [[1590, 1581, 1609], 256], + 64879: [[1590, 1582, 1605], 256], + 64880: [[1590, 1582, 1605], 256], + 64881: [[1591, 1605, 1581], 256], + 64882: [[1591, 1605, 1581], 256], + 64883: [[1591, 1605, 1605], 256], + 64884: [[1591, 1605, 1610], 256], + 64885: [[1593, 1580, 1605], 256], + 64886: [[1593, 1605, 1605], 256], + 64887: [[1593, 1605, 1605], 256], + 64888: [[1593, 1605, 1609], 256], + 64889: [[1594, 1605, 1605], 256], + 64890: [[1594, 1605, 1610], 256], + 64891: [[1594, 1605, 1609], 256], + 64892: [[1601, 1582, 1605], 256], + 64893: [[1601, 1582, 1605], 256], + 64894: [[1602, 1605, 1581], 256], + 64895: [[1602, 1605, 1605], 256], + 64896: [[1604, 1581, 1605], 256], + 64897: [[1604, 1581, 1610], 256], + 64898: [[1604, 1581, 1609], 256], + 64899: [[1604, 1580, 1580], 256], + 64900: [[1604, 1580, 1580], 256], + 64901: [[1604, 1582, 1605], 256], + 64902: [[1604, 1582, 1605], 256], + 64903: [[1604, 1605, 1581], 256], + 64904: [[1604, 1605, 1581], 256], + 64905: [[1605, 1581, 1580], 256], + 64906: [[1605, 1581, 1605], 256], + 64907: [[1605, 1581, 1610], 256], + 64908: [[1605, 1580, 1581], 256], + 64909: [[1605, 1580, 1605], 256], + 64910: [[1605, 1582, 1580], 256], + 64911: [[1605, 1582, 1605], 256], + 64914: [[1605, 1580, 1582], 256], + 64915: [[1607, 1605, 1580], 256], + 64916: [[1607, 1605, 1605], 256], + 64917: [[1606, 1581, 1605], 256], + 64918: [[1606, 1581, 1609], 256], + 64919: [[1606, 1580, 1605], 256], + 64920: [[1606, 1580, 1605], 256], + 64921: [[1606, 1580, 1609], 256], + 64922: [[1606, 1605, 1610], 256], + 64923: [[1606, 1605, 1609], 256], + 64924: [[1610, 1605, 1605], 256], + 64925: [[1610, 1605, 1605], 256], + 64926: [[1576, 1582, 1610], 256], + 64927: [[1578, 1580, 1610], 256], + 64928: [[1578, 1580, 1609], 256], + 64929: [[1578, 1582, 1610], 256], + 64930: [[1578, 1582, 1609], 256], + 64931: [[1578, 1605, 1610], 256], + 64932: [[1578, 1605, 1609], 256], + 64933: [[1580, 1605, 1610], 256], + 64934: [[1580, 1581, 1609], 256], + 64935: [[1580, 1605, 1609], 256], + 64936: [[1587, 1582, 1609], 256], + 64937: [[1589, 1581, 1610], 256], + 64938: [[1588, 1581, 1610], 256], + 64939: [[1590, 1581, 1610], 256], + 64940: [[1604, 1580, 1610], 256], + 64941: [[1604, 1605, 1610], 256], + 64942: [[1610, 1581, 1610], 256], + 64943: [[1610, 1580, 1610], 256], + 64944: [[1610, 1605, 1610], 256], + 64945: [[1605, 1605, 1610], 256], + 64946: [[1602, 1605, 1610], 256], + 64947: [[1606, 1581, 1610], 256], + 64948: [[1602, 1605, 1581], 256], + 64949: [[1604, 1581, 1605], 256], + 64950: [[1593, 1605, 1610], 256], + 64951: [[1603, 1605, 1610], 256], + 64952: [[1606, 1580, 1581], 256], + 64953: [[1605, 1582, 1610], 256], + 64954: [[1604, 1580, 1605], 256], + 64955: [[1603, 1605, 1605], 256], + 64956: [[1604, 1580, 1605], 256], + 64957: [[1606, 1580, 1581], 256], + 64958: [[1580, 1581, 1610], 256], + 64959: [[1581, 1580, 1610], 256], + 64960: [[1605, 1580, 1610], 256], + 64961: [[1601, 1605, 1610], 256], + 64962: [[1576, 1581, 1610], 256], + 64963: [[1603, 1605, 1605], 256], + 64964: [[1593, 1580, 1605], 256], + 64965: [[1589, 1605, 1605], 256], + 64966: [[1587, 1582, 1610], 256], + 64967: [[1606, 1580, 1610], 256], + 65008: [[1589, 1604, 1746], 256], + 65009: [[1602, 1604, 1746], 256], + 65010: [[1575, 1604, 1604, 1607], 256], + 65011: [[1575, 1603, 1576, 1585], 256], + 65012: [[1605, 1581, 1605, 1583], 256], + 65013: [[1589, 1604, 1593, 1605], 256], + 65014: [[1585, 1587, 1608, 1604], 256], + 65015: [[1593, 1604, 1610, 1607], 256], + 65016: [[1608, 1587, 1604, 1605], 256], + 65017: [[1589, 1604, 1609], 256], + 65018: [ + [ + 1589, + 1604, + 1609, + 32, + 1575, + 1604, + 1604, + 1607, + 32, + 1593, + 1604, + 1610, + 1607, + 32, + 1608, + 1587, + 1604, + 1605 + ], + 256 + ], + 65019: [[1580, 1604, 32, 1580, 1604, 1575, 1604, 1607], 256], + 65020: [[1585, 1740, 1575, 1604], 256] + }, + 65024: { + 65040: [[44], 256], + 65041: [[12289], 256], + 65042: [[12290], 256], + 65043: [[58], 256], + 65044: [[59], 256], + 65045: [[33], 256], + 65046: [[63], 256], + 65047: [[12310], 256], + 65048: [[12311], 256], + 65049: [[8230], 256], + 65056: [, 230], + 65057: [, 230], + 65058: [, 230], + 65059: [, 230], + 65060: [, 230], + 65061: [, 230], + 65062: [, 230], + 65063: [, 220], + 65064: [, 220], + 65065: [, 220], + 65066: [, 220], + 65067: [, 220], + 65068: [, 220], + 65069: [, 220], + 65072: [[8229], 256], + 65073: [[8212], 256], + 65074: [[8211], 256], + 65075: [[95], 256], + 65076: [[95], 256], + 65077: [[40], 256], + 65078: [[41], 256], + 65079: [[123], 256], + 65080: [[125], 256], + 65081: [[12308], 256], + 65082: [[12309], 256], + 65083: [[12304], 256], + 65084: [[12305], 256], + 65085: [[12298], 256], + 65086: [[12299], 256], + 65087: [[12296], 256], + 65088: [[12297], 256], + 65089: [[12300], 256], + 65090: [[12301], 256], + 65091: [[12302], 256], + 65092: [[12303], 256], + 65095: [[91], 256], + 65096: [[93], 256], + 65097: [[8254], 256], + 65098: [[8254], 256], + 65099: [[8254], 256], + 65100: [[8254], 256], + 65101: [[95], 256], + 65102: [[95], 256], + 65103: [[95], 256], + 65104: [[44], 256], + 65105: [[12289], 256], + 65106: [[46], 256], + 65108: [[59], 256], + 65109: [[58], 256], + 65110: [[63], 256], + 65111: [[33], 256], + 65112: [[8212], 256], + 65113: [[40], 256], + 65114: [[41], 256], + 65115: [[123], 256], + 65116: [[125], 256], + 65117: [[12308], 256], + 65118: [[12309], 256], + 65119: [[35], 256], + 65120: [[38], 256], + 65121: [[42], 256], + 65122: [[43], 256], + 65123: [[45], 256], + 65124: [[60], 256], + 65125: [[62], 256], + 65126: [[61], 256], + 65128: [[92], 256], + 65129: [[36], 256], + 65130: [[37], 256], + 65131: [[64], 256], + 65136: [[32, 1611], 256], + 65137: [[1600, 1611], 256], + 65138: [[32, 1612], 256], + 65140: [[32, 1613], 256], + 65142: [[32, 1614], 256], + 65143: [[1600, 1614], 256], + 65144: [[32, 1615], 256], + 65145: [[1600, 1615], 256], + 65146: [[32, 1616], 256], + 65147: [[1600, 1616], 256], + 65148: [[32, 1617], 256], + 65149: [[1600, 1617], 256], + 65150: [[32, 1618], 256], + 65151: [[1600, 1618], 256], + 65152: [[1569], 256], + 65153: [[1570], 256], + 65154: [[1570], 256], + 65155: [[1571], 256], + 65156: [[1571], 256], + 65157: [[1572], 256], + 65158: [[1572], 256], + 65159: [[1573], 256], + 65160: [[1573], 256], + 65161: [[1574], 256], + 65162: [[1574], 256], + 65163: [[1574], 256], + 65164: [[1574], 256], + 65165: [[1575], 256], + 65166: [[1575], 256], + 65167: [[1576], 256], + 65168: [[1576], 256], + 65169: [[1576], 256], + 65170: [[1576], 256], + 65171: [[1577], 256], + 65172: [[1577], 256], + 65173: [[1578], 256], + 65174: [[1578], 256], + 65175: [[1578], 256], + 65176: [[1578], 256], + 65177: [[1579], 256], + 65178: [[1579], 256], + 65179: [[1579], 256], + 65180: [[1579], 256], + 65181: [[1580], 256], + 65182: [[1580], 256], + 65183: [[1580], 256], + 65184: [[1580], 256], + 65185: [[1581], 256], + 65186: [[1581], 256], + 65187: [[1581], 256], + 65188: [[1581], 256], + 65189: [[1582], 256], + 65190: [[1582], 256], + 65191: [[1582], 256], + 65192: [[1582], 256], + 65193: [[1583], 256], + 65194: [[1583], 256], + 65195: [[1584], 256], + 65196: [[1584], 256], + 65197: [[1585], 256], + 65198: [[1585], 256], + 65199: [[1586], 256], + 65200: [[1586], 256], + 65201: [[1587], 256], + 65202: [[1587], 256], + 65203: [[1587], 256], + 65204: [[1587], 256], + 65205: [[1588], 256], + 65206: [[1588], 256], + 65207: [[1588], 256], + 65208: [[1588], 256], + 65209: [[1589], 256], + 65210: [[1589], 256], + 65211: [[1589], 256], + 65212: [[1589], 256], + 65213: [[1590], 256], + 65214: [[1590], 256], + 65215: [[1590], 256], + 65216: [[1590], 256], + 65217: [[1591], 256], + 65218: [[1591], 256], + 65219: [[1591], 256], + 65220: [[1591], 256], + 65221: [[1592], 256], + 65222: [[1592], 256], + 65223: [[1592], 256], + 65224: [[1592], 256], + 65225: [[1593], 256], + 65226: [[1593], 256], + 65227: [[1593], 256], + 65228: [[1593], 256], + 65229: [[1594], 256], + 65230: [[1594], 256], + 65231: [[1594], 256], + 65232: [[1594], 256], + 65233: [[1601], 256], + 65234: [[1601], 256], + 65235: [[1601], 256], + 65236: [[1601], 256], + 65237: [[1602], 256], + 65238: [[1602], 256], + 65239: [[1602], 256], + 65240: [[1602], 256], + 65241: [[1603], 256], + 65242: [[1603], 256], + 65243: [[1603], 256], + 65244: [[1603], 256], + 65245: [[1604], 256], + 65246: [[1604], 256], + 65247: [[1604], 256], + 65248: [[1604], 256], + 65249: [[1605], 256], + 65250: [[1605], 256], + 65251: [[1605], 256], + 65252: [[1605], 256], + 65253: [[1606], 256], + 65254: [[1606], 256], + 65255: [[1606], 256], + 65256: [[1606], 256], + 65257: [[1607], 256], + 65258: [[1607], 256], + 65259: [[1607], 256], + 65260: [[1607], 256], + 65261: [[1608], 256], + 65262: [[1608], 256], + 65263: [[1609], 256], + 65264: [[1609], 256], + 65265: [[1610], 256], + 65266: [[1610], 256], + 65267: [[1610], 256], + 65268: [[1610], 256], + 65269: [[1604, 1570], 256], + 65270: [[1604, 1570], 256], + 65271: [[1604, 1571], 256], + 65272: [[1604, 1571], 256], + 65273: [[1604, 1573], 256], + 65274: [[1604, 1573], 256], + 65275: [[1604, 1575], 256], + 65276: [[1604, 1575], 256] + }, + 65280: { + 65281: [[33], 256], + 65282: [[34], 256], + 65283: [[35], 256], + 65284: [[36], 256], + 65285: [[37], 256], + 65286: [[38], 256], + 65287: [[39], 256], + 65288: [[40], 256], + 65289: [[41], 256], + 65290: [[42], 256], + 65291: [[43], 256], + 65292: [[44], 256], + 65293: [[45], 256], + 65294: [[46], 256], + 65295: [[47], 256], + 65296: [[48], 256], + 65297: [[49], 256], + 65298: [[50], 256], + 65299: [[51], 256], + 65300: [[52], 256], + 65301: [[53], 256], + 65302: [[54], 256], + 65303: [[55], 256], + 65304: [[56], 256], + 65305: [[57], 256], + 65306: [[58], 256], + 65307: [[59], 256], + 65308: [[60], 256], + 65309: [[61], 256], + 65310: [[62], 256], + 65311: [[63], 256], + 65312: [[64], 256], + 65313: [[65], 256], + 65314: [[66], 256], + 65315: [[67], 256], + 65316: [[68], 256], + 65317: [[69], 256], + 65318: [[70], 256], + 65319: [[71], 256], + 65320: [[72], 256], + 65321: [[73], 256], + 65322: [[74], 256], + 65323: [[75], 256], + 65324: [[76], 256], + 65325: [[77], 256], + 65326: [[78], 256], + 65327: [[79], 256], + 65328: [[80], 256], + 65329: [[81], 256], + 65330: [[82], 256], + 65331: [[83], 256], + 65332: [[84], 256], + 65333: [[85], 256], + 65334: [[86], 256], + 65335: [[87], 256], + 65336: [[88], 256], + 65337: [[89], 256], + 65338: [[90], 256], + 65339: [[91], 256], + 65340: [[92], 256], + 65341: [[93], 256], + 65342: [[94], 256], + 65343: [[95], 256], + 65344: [[96], 256], + 65345: [[97], 256], + 65346: [[98], 256], + 65347: [[99], 256], + 65348: [[100], 256], + 65349: [[101], 256], + 65350: [[102], 256], + 65351: [[103], 256], + 65352: [[104], 256], + 65353: [[105], 256], + 65354: [[106], 256], + 65355: [[107], 256], + 65356: [[108], 256], + 65357: [[109], 256], + 65358: [[110], 256], + 65359: [[111], 256], + 65360: [[112], 256], + 65361: [[113], 256], + 65362: [[114], 256], + 65363: [[115], 256], + 65364: [[116], 256], + 65365: [[117], 256], + 65366: [[118], 256], + 65367: [[119], 256], + 65368: [[120], 256], + 65369: [[121], 256], + 65370: [[122], 256], + 65371: [[123], 256], + 65372: [[124], 256], + 65373: [[125], 256], + 65374: [[126], 256], + 65375: [[10629], 256], + 65376: [[10630], 256], + 65377: [[12290], 256], + 65378: [[12300], 256], + 65379: [[12301], 256], + 65380: [[12289], 256], + 65381: [[12539], 256], + 65382: [[12530], 256], + 65383: [[12449], 256], + 65384: [[12451], 256], + 65385: [[12453], 256], + 65386: [[12455], 256], + 65387: [[12457], 256], + 65388: [[12515], 256], + 65389: [[12517], 256], + 65390: [[12519], 256], + 65391: [[12483], 256], + 65392: [[12540], 256], + 65393: [[12450], 256], + 65394: [[12452], 256], + 65395: [[12454], 256], + 65396: [[12456], 256], + 65397: [[12458], 256], + 65398: [[12459], 256], + 65399: [[12461], 256], + 65400: [[12463], 256], + 65401: [[12465], 256], + 65402: [[12467], 256], + 65403: [[12469], 256], + 65404: [[12471], 256], + 65405: [[12473], 256], + 65406: [[12475], 256], + 65407: [[12477], 256], + 65408: [[12479], 256], + 65409: [[12481], 256], + 65410: [[12484], 256], + 65411: [[12486], 256], + 65412: [[12488], 256], + 65413: [[12490], 256], + 65414: [[12491], 256], + 65415: [[12492], 256], + 65416: [[12493], 256], + 65417: [[12494], 256], + 65418: [[12495], 256], + 65419: [[12498], 256], + 65420: [[12501], 256], + 65421: [[12504], 256], + 65422: [[12507], 256], + 65423: [[12510], 256], + 65424: [[12511], 256], + 65425: [[12512], 256], + 65426: [[12513], 256], + 65427: [[12514], 256], + 65428: [[12516], 256], + 65429: [[12518], 256], + 65430: [[12520], 256], + 65431: [[12521], 256], + 65432: [[12522], 256], + 65433: [[12523], 256], + 65434: [[12524], 256], + 65435: [[12525], 256], + 65436: [[12527], 256], + 65437: [[12531], 256], + 65438: [[12441], 256], + 65439: [[12442], 256], + 65440: [[12644], 256], + 65441: [[12593], 256], + 65442: [[12594], 256], + 65443: [[12595], 256], + 65444: [[12596], 256], + 65445: [[12597], 256], + 65446: [[12598], 256], + 65447: [[12599], 256], + 65448: [[12600], 256], + 65449: [[12601], 256], + 65450: [[12602], 256], + 65451: [[12603], 256], + 65452: [[12604], 256], + 65453: [[12605], 256], + 65454: [[12606], 256], + 65455: [[12607], 256], + 65456: [[12608], 256], + 65457: [[12609], 256], + 65458: [[12610], 256], + 65459: [[12611], 256], + 65460: [[12612], 256], + 65461: [[12613], 256], + 65462: [[12614], 256], + 65463: [[12615], 256], + 65464: [[12616], 256], + 65465: [[12617], 256], + 65466: [[12618], 256], + 65467: [[12619], 256], + 65468: [[12620], 256], + 65469: [[12621], 256], + 65470: [[12622], 256], + 65474: [[12623], 256], + 65475: [[12624], 256], + 65476: [[12625], 256], + 65477: [[12626], 256], + 65478: [[12627], 256], + 65479: [[12628], 256], + 65482: [[12629], 256], + 65483: [[12630], 256], + 65484: [[12631], 256], + 65485: [[12632], 256], + 65486: [[12633], 256], + 65487: [[12634], 256], + 65490: [[12635], 256], + 65491: [[12636], 256], + 65492: [[12637], 256], + 65493: [[12638], 256], + 65494: [[12639], 256], + 65495: [[12640], 256], + 65498: [[12641], 256], + 65499: [[12642], 256], + 65500: [[12643], 256], + 65504: [[162], 256], + 65505: [[163], 256], + 65506: [[172], 256], + 65507: [[175], 256], + 65508: [[166], 256], + 65509: [[165], 256], + 65510: [[8361], 256], + 65512: [[9474], 256], + 65513: [[8592], 256], + 65514: [[8593], 256], + 65515: [[8594], 256], + 65516: [[8595], 256], + 65517: [[9632], 256], + 65518: [[9675], 256] + } + } + var unorm = { nfc: nfc, nfd: nfd, nfkc: nfkc, nfkd: nfkd } + if (typeof module === "object") { + module.exports = unorm + } else if (typeof define === "function" && define.amd) { + define("unorm", function() { + return unorm + }) + } else { + root.unorm = unorm + } + unorm.shimApplied = false + if (!String.prototype.normalize) { + String.prototype.normalize = function(form) { + var str = "" + this + form = form === undefined ? "NFC" : form + if (form === "NFC") { + return unorm.nfc(str) + } else if (form === "NFD") { + return unorm.nfd(str) + } else if (form === "NFKC") { + return unorm.nfkc(str) + } else if (form === "NFKD") { + return unorm.nfkd(str) + } else { + throw new RangeError("Invalid normalization form: " + form) + } + } + unorm.shimApplied = true + } + })(this) + }, + {} + ] + }, + {}, + [31] + )(31) +}) diff --git a/app/src/helpers/keystore.js b/app/src/helpers/keystore.js index f1ca7ff746..df1593eeeb 100644 --- a/app/src/helpers/keystore.js +++ b/app/src/helpers/keystore.js @@ -9,22 +9,27 @@ import { generateWallet, generateWalletFromSeed } from "./wallet.js" export async function storeKeyNames(keys) { // async - await localStorage.set({ - key: `keys`, - value: JSON.stringify(keys) - }) + await localStorage.setItem(`keys`, JSON.stringify(keys)) } export async function loadKeyNames() { - return await localStorage.get({ - key: `keys` - }) + return JSON.parse((await localStorage.getItem(`keys`)) || `[]`) } + async function storeKey(wallet, name, password) { let ciphertext = AES.encrypt(JSON.stringify(wallet), password).toString() - await localStorage.set({ - key: `key_` + name, - value: ciphertext - }) + await localStorage.setItem(`key_` + name, ciphertext) +} + +export async function testPassword(name, password) { + const key = localStorage.getItem(`key_` + name) + try { + const bytes = AES.decrypt(key, password) + return true + } catch (err) { + return false + } + // const originalText = bytes.toString(CryptoJS.enc.Utf8); + // return JSON.parse(originalText); } export async function addKey(name, password, wallet) { let keysString = (await loadKeyNames()) || `[]` diff --git a/app/src/helpers/secp256k1.min.js b/app/src/helpers/secp256k1.min.js new file mode 100644 index 0000000000..927bc31bbb --- /dev/null +++ b/app/src/helpers/secp256k1.min.js @@ -0,0 +1,15988 @@ +;(function(f) { + if (typeof exports === "object" && typeof module !== "undefined") { + module.exports = f() + } else if (typeof define === "function" && define.amd) { + define([], f) + } else { + var g + if (typeof window !== "undefined") { + g = window + } else if (typeof global !== "undefined") { + g = global + } else if (typeof self !== "undefined") { + g = self + } else { + g = this + } + g.bip32 = f() + } +})(function() { + var define, module, exports + return (function() { + function r(e, n, t) { + function o(i, f) { + if (!n[i]) { + if (!e[i]) { + var c = "function" == typeof require && require + if (!f && c) return c(i, !0) + if (u) return u(i, !0) + var a = new Error("Cannot find module '" + i + "'") + throw ((a.code = "MODULE_NOT_FOUND"), a) + } + var p = (n[i] = { exports: {} }) + e[i][0].call( + p.exports, + function(r) { + var n = e[i][1][r] + return o(n || r) + }, + p, + p.exports, + r, + e, + n, + t + ) + } + return n[i].exports + } + for ( + var u = "function" == typeof require && require, i = 0; + i < t.length; + i++ + ) + o(t[i]) + return o + } + return r + })()( + { + 1: [ + function(require, module, exports) { + "use strict" + exports.byteLength = byteLength + exports.toByteArray = toByteArray + exports.fromByteArray = fromByteArray + var lookup = [] + var revLookup = [] + var Arr = typeof Uint8Array !== "undefined" ? Uint8Array : Array + var code = + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" + for (var i = 0, len = code.length; i < len; ++i) { + lookup[i] = code[i] + revLookup[code.charCodeAt(i)] = i + } + revLookup["-".charCodeAt(0)] = 62 + revLookup["_".charCodeAt(0)] = 63 + function getLens(b64) { + var len = b64.length + if (len % 4 > 0) { + throw new Error("Invalid string. Length must be a multiple of 4") + } + var validLen = b64.indexOf("=") + if (validLen === -1) validLen = len + var placeHoldersLen = validLen === len ? 0 : 4 - (validLen % 4) + return [validLen, placeHoldersLen] + } + function byteLength(b64) { + var lens = getLens(b64) + var validLen = lens[0] + var placeHoldersLen = lens[1] + return ((validLen + placeHoldersLen) * 3) / 4 - placeHoldersLen + } + function _byteLength(b64, validLen, placeHoldersLen) { + return ((validLen + placeHoldersLen) * 3) / 4 - placeHoldersLen + } + function toByteArray(b64) { + var tmp + var lens = getLens(b64) + var validLen = lens[0] + var placeHoldersLen = lens[1] + var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen)) + var curByte = 0 + var len = placeHoldersLen > 0 ? validLen - 4 : validLen + for (var i = 0; i < len; i += 4) { + tmp = + (revLookup[b64.charCodeAt(i)] << 18) | + (revLookup[b64.charCodeAt(i + 1)] << 12) | + (revLookup[b64.charCodeAt(i + 2)] << 6) | + revLookup[b64.charCodeAt(i + 3)] + arr[curByte++] = (tmp >> 16) & 255 + arr[curByte++] = (tmp >> 8) & 255 + arr[curByte++] = tmp & 255 + } + if (placeHoldersLen === 2) { + tmp = + (revLookup[b64.charCodeAt(i)] << 2) | + (revLookup[b64.charCodeAt(i + 1)] >> 4) + arr[curByte++] = tmp & 255 + } + if (placeHoldersLen === 1) { + tmp = + (revLookup[b64.charCodeAt(i)] << 10) | + (revLookup[b64.charCodeAt(i + 1)] << 4) | + (revLookup[b64.charCodeAt(i + 2)] >> 2) + arr[curByte++] = (tmp >> 8) & 255 + arr[curByte++] = tmp & 255 + } + return arr + } + function tripletToBase64(num) { + return ( + lookup[(num >> 18) & 63] + + lookup[(num >> 12) & 63] + + lookup[(num >> 6) & 63] + + lookup[num & 63] + ) + } + function encodeChunk(uint8, start, end) { + var tmp + var output = [] + for (var i = start; i < end; i += 3) { + tmp = + ((uint8[i] << 16) & 16711680) + + ((uint8[i + 1] << 8) & 65280) + + (uint8[i + 2] & 255) + output.push(tripletToBase64(tmp)) + } + return output.join("") + } + function fromByteArray(uint8) { + var tmp + var len = uint8.length + var extraBytes = len % 3 + var parts = [] + var maxChunkLength = 16383 + for ( + var i = 0, len2 = len - extraBytes; + i < len2; + i += maxChunkLength + ) { + parts.push( + encodeChunk( + uint8, + i, + i + maxChunkLength > len2 ? len2 : i + maxChunkLength + ) + ) + } + if (extraBytes === 1) { + tmp = uint8[len - 1] + parts.push(lookup[tmp >> 2] + lookup[(tmp << 4) & 63] + "==") + } else if (extraBytes === 2) { + tmp = (uint8[len - 2] << 8) + uint8[len - 1] + parts.push( + lookup[tmp >> 10] + + lookup[(tmp >> 4) & 63] + + lookup[(tmp << 2) & 63] + + "=" + ) + } + return parts.join("") + } + }, + {} + ], + 2: [function(require, module, exports) {}, {}], + 3: [ + function(require, module, exports) { + "use strict" + var base64 = require("base64-js") + var ieee754 = require("ieee754") + exports.Buffer = Buffer + exports.SlowBuffer = SlowBuffer + exports.INSPECT_MAX_BYTES = 50 + var K_MAX_LENGTH = 2147483647 + exports.kMaxLength = K_MAX_LENGTH + Buffer.TYPED_ARRAY_SUPPORT = typedArraySupport() + if ( + !Buffer.TYPED_ARRAY_SUPPORT && + typeof console !== "undefined" && + typeof console.error === "function" + ) { + console.error( + "This browser lacks typed array (Uint8Array) support which is required by " + + "`buffer` v5.x. Use `buffer` v4.x if you require old browser support." + ) + } + function typedArraySupport() { + try { + var arr = new Uint8Array(1) + arr.__proto__ = { + __proto__: Uint8Array.prototype, + foo: function() { + return 42 + } + } + return arr.foo() === 42 + } catch (e) { + return false + } + } + Object.defineProperty(Buffer.prototype, "parent", { + enumerable: true, + get: function() { + if (!Buffer.isBuffer(this)) return undefined + return this.buffer + } + }) + Object.defineProperty(Buffer.prototype, "offset", { + enumerable: true, + get: function() { + if (!Buffer.isBuffer(this)) return undefined + return this.byteOffset + } + }) + function createBuffer(length) { + if (length > K_MAX_LENGTH) { + throw new RangeError( + 'The value "' + length + '" is invalid for option "size"' + ) + } + var buf = new Uint8Array(length) + buf.__proto__ = Buffer.prototype + return buf + } + function Buffer(arg, encodingOrOffset, length) { + if (typeof arg === "number") { + if (typeof encodingOrOffset === "string") { + throw new TypeError( + 'The "string" argument must be of type string. Received type number' + ) + } + return allocUnsafe(arg) + } + return from(arg, encodingOrOffset, length) + } + if ( + typeof Symbol !== "undefined" && + Symbol.species != null && + Buffer[Symbol.species] === Buffer + ) { + Object.defineProperty(Buffer, Symbol.species, { + value: null, + configurable: true, + enumerable: false, + writable: false + }) + } + Buffer.poolSize = 8192 + function from(value, encodingOrOffset, length) { + if (typeof value === "string") { + return fromString(value, encodingOrOffset) + } + if (ArrayBuffer.isView(value)) { + return fromArrayLike(value) + } + if (value == null) { + throw TypeError( + "The first argument must be one of type string, Buffer, ArrayBuffer, Array, " + + "or Array-like Object. Received type " + + typeof value + ) + } + if ( + isInstance(value, ArrayBuffer) || + (value && isInstance(value.buffer, ArrayBuffer)) + ) { + return fromArrayBuffer(value, encodingOrOffset, length) + } + if (typeof value === "number") { + throw new TypeError( + 'The "value" argument must not be of type number. Received type number' + ) + } + var valueOf = value.valueOf && value.valueOf() + if (valueOf != null && valueOf !== value) { + return Buffer.from(valueOf, encodingOrOffset, length) + } + var b = fromObject(value) + if (b) return b + if ( + typeof Symbol !== "undefined" && + Symbol.toPrimitive != null && + typeof value[Symbol.toPrimitive] === "function" + ) { + return Buffer.from( + value[Symbol.toPrimitive]("string"), + encodingOrOffset, + length + ) + } + throw new TypeError( + "The first argument must be one of type string, Buffer, ArrayBuffer, Array, " + + "or Array-like Object. Received type " + + typeof value + ) + } + Buffer.from = function(value, encodingOrOffset, length) { + return from(value, encodingOrOffset, length) + } + Buffer.prototype.__proto__ = Uint8Array.prototype + Buffer.__proto__ = Uint8Array + function assertSize(size) { + if (typeof size !== "number") { + throw new TypeError('"size" argument must be of type number') + } else if (size < 0) { + throw new RangeError( + 'The value "' + size + '" is invalid for option "size"' + ) + } + } + function alloc(size, fill, encoding) { + assertSize(size) + if (size <= 0) { + return createBuffer(size) + } + if (fill !== undefined) { + return typeof encoding === "string" + ? createBuffer(size).fill(fill, encoding) + : createBuffer(size).fill(fill) + } + return createBuffer(size) + } + Buffer.alloc = function(size, fill, encoding) { + return alloc(size, fill, encoding) + } + function allocUnsafe(size) { + assertSize(size) + return createBuffer(size < 0 ? 0 : checked(size) | 0) + } + Buffer.allocUnsafe = function(size) { + return allocUnsafe(size) + } + Buffer.allocUnsafeSlow = function(size) { + return allocUnsafe(size) + } + function fromString(string, encoding) { + if (typeof encoding !== "string" || encoding === "") { + encoding = "utf8" + } + if (!Buffer.isEncoding(encoding)) { + throw new TypeError("Unknown encoding: " + encoding) + } + var length = byteLength(string, encoding) | 0 + var buf = createBuffer(length) + var actual = buf.write(string, encoding) + if (actual !== length) { + buf = buf.slice(0, actual) + } + return buf + } + function fromArrayLike(array) { + var length = array.length < 0 ? 0 : checked(array.length) | 0 + var buf = createBuffer(length) + for (var i = 0; i < length; i += 1) { + buf[i] = array[i] & 255 + } + return buf + } + function fromArrayBuffer(array, byteOffset, length) { + if (byteOffset < 0 || array.byteLength < byteOffset) { + throw new RangeError('"offset" is outside of buffer bounds') + } + if (array.byteLength < byteOffset + (length || 0)) { + throw new RangeError('"length" is outside of buffer bounds') + } + var buf + if (byteOffset === undefined && length === undefined) { + buf = new Uint8Array(array) + } else if (length === undefined) { + buf = new Uint8Array(array, byteOffset) + } else { + buf = new Uint8Array(array, byteOffset, length) + } + buf.__proto__ = Buffer.prototype + return buf + } + function fromObject(obj) { + if (Buffer.isBuffer(obj)) { + var len = checked(obj.length) | 0 + var buf = createBuffer(len) + if (buf.length === 0) { + return buf + } + obj.copy(buf, 0, 0, len) + return buf + } + if (obj.length !== undefined) { + if (typeof obj.length !== "number" || numberIsNaN(obj.length)) { + return createBuffer(0) + } + return fromArrayLike(obj) + } + if (obj.type === "Buffer" && Array.isArray(obj.data)) { + return fromArrayLike(obj.data) + } + } + function checked(length) { + if (length >= K_MAX_LENGTH) { + throw new RangeError( + "Attempt to allocate Buffer larger than maximum " + + "size: 0x" + + K_MAX_LENGTH.toString(16) + + " bytes" + ) + } + return length | 0 + } + function SlowBuffer(length) { + if (+length != length) { + length = 0 + } + return Buffer.alloc(+length) + } + Buffer.isBuffer = function isBuffer(b) { + return b != null && b._isBuffer === true && b !== Buffer.prototype + } + Buffer.compare = function compare(a, b) { + if (isInstance(a, Uint8Array)) + a = Buffer.from(a, a.offset, a.byteLength) + if (isInstance(b, Uint8Array)) + b = Buffer.from(b, b.offset, b.byteLength) + if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) { + throw new TypeError( + 'The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array' + ) + } + if (a === b) return 0 + var x = a.length + var y = b.length + for (var i = 0, len = Math.min(x, y); i < len; ++i) { + if (a[i] !== b[i]) { + x = a[i] + y = b[i] + break + } + } + if (x < y) return -1 + if (y < x) return 1 + return 0 + } + Buffer.isEncoding = function isEncoding(encoding) { + switch (String(encoding).toLowerCase()) { + case "hex": + case "utf8": + case "utf-8": + case "ascii": + case "latin1": + case "binary": + case "base64": + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return true + default: + return false + } + } + Buffer.concat = function concat(list, length) { + if (!Array.isArray(list)) { + throw new TypeError('"list" argument must be an Array of Buffers') + } + if (list.length === 0) { + return Buffer.alloc(0) + } + var i + if (length === undefined) { + length = 0 + for (i = 0; i < list.length; ++i) { + length += list[i].length + } + } + var buffer = Buffer.allocUnsafe(length) + var pos = 0 + for (i = 0; i < list.length; ++i) { + var buf = list[i] + if (isInstance(buf, Uint8Array)) { + buf = Buffer.from(buf) + } + if (!Buffer.isBuffer(buf)) { + throw new TypeError( + '"list" argument must be an Array of Buffers' + ) + } + buf.copy(buffer, pos) + pos += buf.length + } + return buffer + } + function byteLength(string, encoding) { + if (Buffer.isBuffer(string)) { + return string.length + } + if (ArrayBuffer.isView(string) || isInstance(string, ArrayBuffer)) { + return string.byteLength + } + if (typeof string !== "string") { + throw new TypeError( + 'The "string" argument must be one of type string, Buffer, or ArrayBuffer. ' + + "Received type " + + typeof string + ) + } + var len = string.length + var mustMatch = arguments.length > 2 && arguments[2] === true + if (!mustMatch && len === 0) return 0 + var loweredCase = false + for (;;) { + switch (encoding) { + case "ascii": + case "latin1": + case "binary": + return len + case "utf8": + case "utf-8": + return utf8ToBytes(string).length + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return len * 2 + case "hex": + return len >>> 1 + case "base64": + return base64ToBytes(string).length + default: + if (loweredCase) { + return mustMatch ? -1 : utf8ToBytes(string).length + } + encoding = ("" + encoding).toLowerCase() + loweredCase = true + } + } + } + Buffer.byteLength = byteLength + function slowToString(encoding, start, end) { + var loweredCase = false + if (start === undefined || start < 0) { + start = 0 + } + if (start > this.length) { + return "" + } + if (end === undefined || end > this.length) { + end = this.length + } + if (end <= 0) { + return "" + } + end >>>= 0 + start >>>= 0 + if (end <= start) { + return "" + } + if (!encoding) encoding = "utf8" + while (true) { + switch (encoding) { + case "hex": + return hexSlice(this, start, end) + case "utf8": + case "utf-8": + return utf8Slice(this, start, end) + case "ascii": + return asciiSlice(this, start, end) + case "latin1": + case "binary": + return latin1Slice(this, start, end) + case "base64": + return base64Slice(this, start, end) + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return utf16leSlice(this, start, end) + default: + if (loweredCase) + throw new TypeError("Unknown encoding: " + encoding) + encoding = (encoding + "").toLowerCase() + loweredCase = true + } + } + } + Buffer.prototype._isBuffer = true + function swap(b, n, m) { + var i = b[n] + b[n] = b[m] + b[m] = i + } + Buffer.prototype.swap16 = function swap16() { + var len = this.length + if (len % 2 !== 0) { + throw new RangeError("Buffer size must be a multiple of 16-bits") + } + for (var i = 0; i < len; i += 2) { + swap(this, i, i + 1) + } + return this + } + Buffer.prototype.swap32 = function swap32() { + var len = this.length + if (len % 4 !== 0) { + throw new RangeError("Buffer size must be a multiple of 32-bits") + } + for (var i = 0; i < len; i += 4) { + swap(this, i, i + 3) + swap(this, i + 1, i + 2) + } + return this + } + Buffer.prototype.swap64 = function swap64() { + var len = this.length + if (len % 8 !== 0) { + throw new RangeError("Buffer size must be a multiple of 64-bits") + } + for (var i = 0; i < len; i += 8) { + swap(this, i, i + 7) + swap(this, i + 1, i + 6) + swap(this, i + 2, i + 5) + swap(this, i + 3, i + 4) + } + return this + } + Buffer.prototype.toString = function toString() { + var length = this.length + if (length === 0) return "" + if (arguments.length === 0) return utf8Slice(this, 0, length) + return slowToString.apply(this, arguments) + } + Buffer.prototype.toLocaleString = Buffer.prototype.toString + Buffer.prototype.equals = function equals(b) { + if (!Buffer.isBuffer(b)) + throw new TypeError("Argument must be a Buffer") + if (this === b) return true + return Buffer.compare(this, b) === 0 + } + Buffer.prototype.inspect = function inspect() { + var str = "" + var max = exports.INSPECT_MAX_BYTES + str = this.toString("hex", 0, max) + .replace(/(.{2})/g, "$1 ") + .trim() + if (this.length > max) str += " ... " + return "" + } + Buffer.prototype.compare = function compare( + target, + start, + end, + thisStart, + thisEnd + ) { + if (isInstance(target, Uint8Array)) { + target = Buffer.from(target, target.offset, target.byteLength) + } + if (!Buffer.isBuffer(target)) { + throw new TypeError( + 'The "target" argument must be one of type Buffer or Uint8Array. ' + + "Received type " + + typeof target + ) + } + if (start === undefined) { + start = 0 + } + if (end === undefined) { + end = target ? target.length : 0 + } + if (thisStart === undefined) { + thisStart = 0 + } + if (thisEnd === undefined) { + thisEnd = this.length + } + if ( + start < 0 || + end > target.length || + thisStart < 0 || + thisEnd > this.length + ) { + throw new RangeError("out of range index") + } + if (thisStart >= thisEnd && start >= end) { + return 0 + } + if (thisStart >= thisEnd) { + return -1 + } + if (start >= end) { + return 1 + } + start >>>= 0 + end >>>= 0 + thisStart >>>= 0 + thisEnd >>>= 0 + if (this === target) return 0 + var x = thisEnd - thisStart + var y = end - start + var len = Math.min(x, y) + var thisCopy = this.slice(thisStart, thisEnd) + var targetCopy = target.slice(start, end) + for (var i = 0; i < len; ++i) { + if (thisCopy[i] !== targetCopy[i]) { + x = thisCopy[i] + y = targetCopy[i] + break + } + } + if (x < y) return -1 + if (y < x) return 1 + return 0 + } + function bidirectionalIndexOf( + buffer, + val, + byteOffset, + encoding, + dir + ) { + if (buffer.length === 0) return -1 + if (typeof byteOffset === "string") { + encoding = byteOffset + byteOffset = 0 + } else if (byteOffset > 2147483647) { + byteOffset = 2147483647 + } else if (byteOffset < -2147483648) { + byteOffset = -2147483648 + } + byteOffset = +byteOffset + if (numberIsNaN(byteOffset)) { + byteOffset = dir ? 0 : buffer.length - 1 + } + if (byteOffset < 0) byteOffset = buffer.length + byteOffset + if (byteOffset >= buffer.length) { + if (dir) return -1 + else byteOffset = buffer.length - 1 + } else if (byteOffset < 0) { + if (dir) byteOffset = 0 + else return -1 + } + if (typeof val === "string") { + val = Buffer.from(val, encoding) + } + if (Buffer.isBuffer(val)) { + if (val.length === 0) { + return -1 + } + return arrayIndexOf(buffer, val, byteOffset, encoding, dir) + } else if (typeof val === "number") { + val = val & 255 + if (typeof Uint8Array.prototype.indexOf === "function") { + if (dir) { + return Uint8Array.prototype.indexOf.call( + buffer, + val, + byteOffset + ) + } else { + return Uint8Array.prototype.lastIndexOf.call( + buffer, + val, + byteOffset + ) + } + } + return arrayIndexOf(buffer, [val], byteOffset, encoding, dir) + } + throw new TypeError("val must be string, number or Buffer") + } + function arrayIndexOf(arr, val, byteOffset, encoding, dir) { + var indexSize = 1 + var arrLength = arr.length + var valLength = val.length + if (encoding !== undefined) { + encoding = String(encoding).toLowerCase() + if ( + encoding === "ucs2" || + encoding === "ucs-2" || + encoding === "utf16le" || + encoding === "utf-16le" + ) { + if (arr.length < 2 || val.length < 2) { + return -1 + } + indexSize = 2 + arrLength /= 2 + valLength /= 2 + byteOffset /= 2 + } + } + function read(buf, i) { + if (indexSize === 1) { + return buf[i] + } else { + return buf.readUInt16BE(i * indexSize) + } + } + var i + if (dir) { + var foundIndex = -1 + for (i = byteOffset; i < arrLength; i++) { + if ( + read(arr, i) === + read(val, foundIndex === -1 ? 0 : i - foundIndex) + ) { + if (foundIndex === -1) foundIndex = i + if (i - foundIndex + 1 === valLength) + return foundIndex * indexSize + } else { + if (foundIndex !== -1) i -= i - foundIndex + foundIndex = -1 + } + } + } else { + if (byteOffset + valLength > arrLength) + byteOffset = arrLength - valLength + for (i = byteOffset; i >= 0; i--) { + var found = true + for (var j = 0; j < valLength; j++) { + if (read(arr, i + j) !== read(val, j)) { + found = false + break + } + } + if (found) return i + } + } + return -1 + } + Buffer.prototype.includes = function includes( + val, + byteOffset, + encoding + ) { + return this.indexOf(val, byteOffset, encoding) !== -1 + } + Buffer.prototype.indexOf = function indexOf( + val, + byteOffset, + encoding + ) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, true) + } + Buffer.prototype.lastIndexOf = function lastIndexOf( + val, + byteOffset, + encoding + ) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, false) + } + function hexWrite(buf, string, offset, length) { + offset = Number(offset) || 0 + var remaining = buf.length - offset + if (!length) { + length = remaining + } else { + length = Number(length) + if (length > remaining) { + length = remaining + } + } + var strLen = string.length + if (length > strLen / 2) { + length = strLen / 2 + } + for (var i = 0; i < length; ++i) { + var parsed = parseInt(string.substr(i * 2, 2), 16) + if (numberIsNaN(parsed)) return i + buf[offset + i] = parsed + } + return i + } + function utf8Write(buf, string, offset, length) { + return blitBuffer( + utf8ToBytes(string, buf.length - offset), + buf, + offset, + length + ) + } + function asciiWrite(buf, string, offset, length) { + return blitBuffer(asciiToBytes(string), buf, offset, length) + } + function latin1Write(buf, string, offset, length) { + return asciiWrite(buf, string, offset, length) + } + function base64Write(buf, string, offset, length) { + return blitBuffer(base64ToBytes(string), buf, offset, length) + } + function ucs2Write(buf, string, offset, length) { + return blitBuffer( + utf16leToBytes(string, buf.length - offset), + buf, + offset, + length + ) + } + Buffer.prototype.write = function write( + string, + offset, + length, + encoding + ) { + if (offset === undefined) { + encoding = "utf8" + length = this.length + offset = 0 + } else if (length === undefined && typeof offset === "string") { + encoding = offset + length = this.length + offset = 0 + } else if (isFinite(offset)) { + offset = offset >>> 0 + if (isFinite(length)) { + length = length >>> 0 + if (encoding === undefined) encoding = "utf8" + } else { + encoding = length + length = undefined + } + } else { + throw new Error( + "Buffer.write(string, encoding, offset[, length]) is no longer supported" + ) + } + var remaining = this.length - offset + if (length === undefined || length > remaining) length = remaining + if ( + (string.length > 0 && (length < 0 || offset < 0)) || + offset > this.length + ) { + throw new RangeError("Attempt to write outside buffer bounds") + } + if (!encoding) encoding = "utf8" + var loweredCase = false + for (;;) { + switch (encoding) { + case "hex": + return hexWrite(this, string, offset, length) + case "utf8": + case "utf-8": + return utf8Write(this, string, offset, length) + case "ascii": + return asciiWrite(this, string, offset, length) + case "latin1": + case "binary": + return latin1Write(this, string, offset, length) + case "base64": + return base64Write(this, string, offset, length) + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return ucs2Write(this, string, offset, length) + default: + if (loweredCase) + throw new TypeError("Unknown encoding: " + encoding) + encoding = ("" + encoding).toLowerCase() + loweredCase = true + } + } + } + Buffer.prototype.toJSON = function toJSON() { + return { + type: "Buffer", + data: Array.prototype.slice.call(this._arr || this, 0) + } + } + function base64Slice(buf, start, end) { + if (start === 0 && end === buf.length) { + return base64.fromByteArray(buf) + } else { + return base64.fromByteArray(buf.slice(start, end)) + } + } + function utf8Slice(buf, start, end) { + end = Math.min(buf.length, end) + var res = [] + var i = start + while (i < end) { + var firstByte = buf[i] + var codePoint = null + var bytesPerSequence = + firstByte > 239 + ? 4 + : firstByte > 223 + ? 3 + : firstByte > 191 + ? 2 + : 1 + if (i + bytesPerSequence <= end) { + var secondByte, thirdByte, fourthByte, tempCodePoint + switch (bytesPerSequence) { + case 1: + if (firstByte < 128) { + codePoint = firstByte + } + break + case 2: + secondByte = buf[i + 1] + if ((secondByte & 192) === 128) { + tempCodePoint = + ((firstByte & 31) << 6) | (secondByte & 63) + if (tempCodePoint > 127) { + codePoint = tempCodePoint + } + } + break + case 3: + secondByte = buf[i + 1] + thirdByte = buf[i + 2] + if ( + (secondByte & 192) === 128 && + (thirdByte & 192) === 128 + ) { + tempCodePoint = + ((firstByte & 15) << 12) | + ((secondByte & 63) << 6) | + (thirdByte & 63) + if ( + tempCodePoint > 2047 && + (tempCodePoint < 55296 || tempCodePoint > 57343) + ) { + codePoint = tempCodePoint + } + } + break + case 4: + secondByte = buf[i + 1] + thirdByte = buf[i + 2] + fourthByte = buf[i + 3] + if ( + (secondByte & 192) === 128 && + (thirdByte & 192) === 128 && + (fourthByte & 192) === 128 + ) { + tempCodePoint = + ((firstByte & 15) << 18) | + ((secondByte & 63) << 12) | + ((thirdByte & 63) << 6) | + (fourthByte & 63) + if (tempCodePoint > 65535 && tempCodePoint < 1114112) { + codePoint = tempCodePoint + } + } + } + } + if (codePoint === null) { + codePoint = 65533 + bytesPerSequence = 1 + } else if (codePoint > 65535) { + codePoint -= 65536 + res.push(((codePoint >>> 10) & 1023) | 55296) + codePoint = 56320 | (codePoint & 1023) + } + res.push(codePoint) + i += bytesPerSequence + } + return decodeCodePointsArray(res) + } + var MAX_ARGUMENTS_LENGTH = 4096 + function decodeCodePointsArray(codePoints) { + var len = codePoints.length + if (len <= MAX_ARGUMENTS_LENGTH) { + return String.fromCharCode.apply(String, codePoints) + } + var res = "" + var i = 0 + while (i < len) { + res += String.fromCharCode.apply( + String, + codePoints.slice(i, (i += MAX_ARGUMENTS_LENGTH)) + ) + } + return res + } + function asciiSlice(buf, start, end) { + var ret = "" + end = Math.min(buf.length, end) + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i] & 127) + } + return ret + } + function latin1Slice(buf, start, end) { + var ret = "" + end = Math.min(buf.length, end) + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i]) + } + return ret + } + function hexSlice(buf, start, end) { + var len = buf.length + if (!start || start < 0) start = 0 + if (!end || end < 0 || end > len) end = len + var out = "" + for (var i = start; i < end; ++i) { + out += toHex(buf[i]) + } + return out + } + function utf16leSlice(buf, start, end) { + var bytes = buf.slice(start, end) + var res = "" + for (var i = 0; i < bytes.length; i += 2) { + res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256) + } + return res + } + Buffer.prototype.slice = function slice(start, end) { + var len = this.length + start = ~~start + end = end === undefined ? len : ~~end + if (start < 0) { + start += len + if (start < 0) start = 0 + } else if (start > len) { + start = len + } + if (end < 0) { + end += len + if (end < 0) end = 0 + } else if (end > len) { + end = len + } + if (end < start) end = start + var newBuf = this.subarray(start, end) + newBuf.__proto__ = Buffer.prototype + return newBuf + } + function checkOffset(offset, ext, length) { + if (offset % 1 !== 0 || offset < 0) + throw new RangeError("offset is not uint") + if (offset + ext > length) + throw new RangeError("Trying to access beyond buffer length") + } + Buffer.prototype.readUIntLE = function readUIntLE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + var val = this[offset] + var mul = 1 + var i = 0 + while (++i < byteLength && (mul *= 256)) { + val += this[offset + i] * mul + } + return val + } + Buffer.prototype.readUIntBE = function readUIntBE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) { + checkOffset(offset, byteLength, this.length) + } + var val = this[offset + --byteLength] + var mul = 1 + while (byteLength > 0 && (mul *= 256)) { + val += this[offset + --byteLength] * mul + } + return val + } + Buffer.prototype.readUInt8 = function readUInt8(offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 1, this.length) + return this[offset] + } + Buffer.prototype.readUInt16LE = function readUInt16LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + return this[offset] | (this[offset + 1] << 8) + } + Buffer.prototype.readUInt16BE = function readUInt16BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + return (this[offset] << 8) | this[offset + 1] + } + Buffer.prototype.readUInt32LE = function readUInt32LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ( + (this[offset] | + (this[offset + 1] << 8) | + (this[offset + 2] << 16)) + + this[offset + 3] * 16777216 + ) + } + Buffer.prototype.readUInt32BE = function readUInt32BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ( + this[offset] * 16777216 + + ((this[offset + 1] << 16) | + (this[offset + 2] << 8) | + this[offset + 3]) + ) + } + Buffer.prototype.readIntLE = function readIntLE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + var val = this[offset] + var mul = 1 + var i = 0 + while (++i < byteLength && (mul *= 256)) { + val += this[offset + i] * mul + } + mul *= 128 + if (val >= mul) val -= Math.pow(2, 8 * byteLength) + return val + } + Buffer.prototype.readIntBE = function readIntBE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + var i = byteLength + var mul = 1 + var val = this[offset + --i] + while (i > 0 && (mul *= 256)) { + val += this[offset + --i] * mul + } + mul *= 128 + if (val >= mul) val -= Math.pow(2, 8 * byteLength) + return val + } + Buffer.prototype.readInt8 = function readInt8(offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 1, this.length) + if (!(this[offset] & 128)) return this[offset] + return (255 - this[offset] + 1) * -1 + } + Buffer.prototype.readInt16LE = function readInt16LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + var val = this[offset] | (this[offset + 1] << 8) + return val & 32768 ? val | 4294901760 : val + } + Buffer.prototype.readInt16BE = function readInt16BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + var val = this[offset + 1] | (this[offset] << 8) + return val & 32768 ? val | 4294901760 : val + } + Buffer.prototype.readInt32LE = function readInt32LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ( + this[offset] | + (this[offset + 1] << 8) | + (this[offset + 2] << 16) | + (this[offset + 3] << 24) + ) + } + Buffer.prototype.readInt32BE = function readInt32BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ( + (this[offset] << 24) | + (this[offset + 1] << 16) | + (this[offset + 2] << 8) | + this[offset + 3] + ) + } + Buffer.prototype.readFloatLE = function readFloatLE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ieee754.read(this, offset, true, 23, 4) + } + Buffer.prototype.readFloatBE = function readFloatBE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ieee754.read(this, offset, false, 23, 4) + } + Buffer.prototype.readDoubleLE = function readDoubleLE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 8, this.length) + return ieee754.read(this, offset, true, 52, 8) + } + Buffer.prototype.readDoubleBE = function readDoubleBE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 8, this.length) + return ieee754.read(this, offset, false, 52, 8) + } + function checkInt(buf, value, offset, ext, max, min) { + if (!Buffer.isBuffer(buf)) + throw new TypeError('"buffer" argument must be a Buffer instance') + if (value > max || value < min) + throw new RangeError('"value" argument is out of bounds') + if (offset + ext > buf.length) + throw new RangeError("Index out of range") + } + Buffer.prototype.writeUIntLE = function writeUIntLE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1 + checkInt(this, value, offset, byteLength, maxBytes, 0) + } + var mul = 1 + var i = 0 + this[offset] = value & 255 + while (++i < byteLength && (mul *= 256)) { + this[offset + i] = (value / mul) & 255 + } + return offset + byteLength + } + Buffer.prototype.writeUIntBE = function writeUIntBE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1 + checkInt(this, value, offset, byteLength, maxBytes, 0) + } + var i = byteLength - 1 + var mul = 1 + this[offset + i] = value & 255 + while (--i >= 0 && (mul *= 256)) { + this[offset + i] = (value / mul) & 255 + } + return offset + byteLength + } + Buffer.prototype.writeUInt8 = function writeUInt8( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 1, 255, 0) + this[offset] = value & 255 + return offset + 1 + } + Buffer.prototype.writeUInt16LE = function writeUInt16LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 65535, 0) + this[offset] = value & 255 + this[offset + 1] = value >>> 8 + return offset + 2 + } + Buffer.prototype.writeUInt16BE = function writeUInt16BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 65535, 0) + this[offset] = value >>> 8 + this[offset + 1] = value & 255 + return offset + 2 + } + Buffer.prototype.writeUInt32LE = function writeUInt32LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 4, 4294967295, 0) + this[offset + 3] = value >>> 24 + this[offset + 2] = value >>> 16 + this[offset + 1] = value >>> 8 + this[offset] = value & 255 + return offset + 4 + } + Buffer.prototype.writeUInt32BE = function writeUInt32BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 4, 4294967295, 0) + this[offset] = value >>> 24 + this[offset + 1] = value >>> 16 + this[offset + 2] = value >>> 8 + this[offset + 3] = value & 255 + return offset + 4 + } + Buffer.prototype.writeIntLE = function writeIntLE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1) + checkInt(this, value, offset, byteLength, limit - 1, -limit) + } + var i = 0 + var mul = 1 + var sub = 0 + this[offset] = value & 255 + while (++i < byteLength && (mul *= 256)) { + if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) { + sub = 1 + } + this[offset + i] = (((value / mul) >> 0) - sub) & 255 + } + return offset + byteLength + } + Buffer.prototype.writeIntBE = function writeIntBE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1) + checkInt(this, value, offset, byteLength, limit - 1, -limit) + } + var i = byteLength - 1 + var mul = 1 + var sub = 0 + this[offset + i] = value & 255 + while (--i >= 0 && (mul *= 256)) { + if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) { + sub = 1 + } + this[offset + i] = (((value / mul) >> 0) - sub) & 255 + } + return offset + byteLength + } + Buffer.prototype.writeInt8 = function writeInt8( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 1, 127, -128) + if (value < 0) value = 255 + value + 1 + this[offset] = value & 255 + return offset + 1 + } + Buffer.prototype.writeInt16LE = function writeInt16LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 32767, -32768) + this[offset] = value & 255 + this[offset + 1] = value >>> 8 + return offset + 2 + } + Buffer.prototype.writeInt16BE = function writeInt16BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 32767, -32768) + this[offset] = value >>> 8 + this[offset + 1] = value & 255 + return offset + 2 + } + Buffer.prototype.writeInt32LE = function writeInt32LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) + checkInt(this, value, offset, 4, 2147483647, -2147483648) + this[offset] = value & 255 + this[offset + 1] = value >>> 8 + this[offset + 2] = value >>> 16 + this[offset + 3] = value >>> 24 + return offset + 4 + } + Buffer.prototype.writeInt32BE = function writeInt32BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) + checkInt(this, value, offset, 4, 2147483647, -2147483648) + if (value < 0) value = 4294967295 + value + 1 + this[offset] = value >>> 24 + this[offset + 1] = value >>> 16 + this[offset + 2] = value >>> 8 + this[offset + 3] = value & 255 + return offset + 4 + } + function checkIEEE754(buf, value, offset, ext, max, min) { + if (offset + ext > buf.length) + throw new RangeError("Index out of range") + if (offset < 0) throw new RangeError("Index out of range") + } + function writeFloat(buf, value, offset, littleEndian, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + checkIEEE754( + buf, + value, + offset, + 4, + 3.4028234663852886e38, + -3.4028234663852886e38 + ) + } + ieee754.write(buf, value, offset, littleEndian, 23, 4) + return offset + 4 + } + Buffer.prototype.writeFloatLE = function writeFloatLE( + value, + offset, + noAssert + ) { + return writeFloat(this, value, offset, true, noAssert) + } + Buffer.prototype.writeFloatBE = function writeFloatBE( + value, + offset, + noAssert + ) { + return writeFloat(this, value, offset, false, noAssert) + } + function writeDouble(buf, value, offset, littleEndian, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + checkIEEE754( + buf, + value, + offset, + 8, + 1.7976931348623157e308, + -1.7976931348623157e308 + ) + } + ieee754.write(buf, value, offset, littleEndian, 52, 8) + return offset + 8 + } + Buffer.prototype.writeDoubleLE = function writeDoubleLE( + value, + offset, + noAssert + ) { + return writeDouble(this, value, offset, true, noAssert) + } + Buffer.prototype.writeDoubleBE = function writeDoubleBE( + value, + offset, + noAssert + ) { + return writeDouble(this, value, offset, false, noAssert) + } + Buffer.prototype.copy = function copy( + target, + targetStart, + start, + end + ) { + if (!Buffer.isBuffer(target)) + throw new TypeError("argument should be a Buffer") + if (!start) start = 0 + if (!end && end !== 0) end = this.length + if (targetStart >= target.length) targetStart = target.length + if (!targetStart) targetStart = 0 + if (end > 0 && end < start) end = start + if (end === start) return 0 + if (target.length === 0 || this.length === 0) return 0 + if (targetStart < 0) { + throw new RangeError("targetStart out of bounds") + } + if (start < 0 || start >= this.length) + throw new RangeError("Index out of range") + if (end < 0) throw new RangeError("sourceEnd out of bounds") + if (end > this.length) end = this.length + if (target.length - targetStart < end - start) { + end = target.length - targetStart + start + } + var len = end - start + if ( + this === target && + typeof Uint8Array.prototype.copyWithin === "function" + ) { + this.copyWithin(targetStart, start, end) + } else if ( + this === target && + start < targetStart && + targetStart < end + ) { + for (var i = len - 1; i >= 0; --i) { + target[i + targetStart] = this[i + start] + } + } else { + Uint8Array.prototype.set.call( + target, + this.subarray(start, end), + targetStart + ) + } + return len + } + Buffer.prototype.fill = function fill(val, start, end, encoding) { + if (typeof val === "string") { + if (typeof start === "string") { + encoding = start + start = 0 + end = this.length + } else if (typeof end === "string") { + encoding = end + end = this.length + } + if (encoding !== undefined && typeof encoding !== "string") { + throw new TypeError("encoding must be a string") + } + if ( + typeof encoding === "string" && + !Buffer.isEncoding(encoding) + ) { + throw new TypeError("Unknown encoding: " + encoding) + } + if (val.length === 1) { + var code = val.charCodeAt(0) + if ( + (encoding === "utf8" && code < 128) || + encoding === "latin1" + ) { + val = code + } + } + } else if (typeof val === "number") { + val = val & 255 + } + if (start < 0 || this.length < start || this.length < end) { + throw new RangeError("Out of range index") + } + if (end <= start) { + return this + } + start = start >>> 0 + end = end === undefined ? this.length : end >>> 0 + if (!val) val = 0 + var i + if (typeof val === "number") { + for (i = start; i < end; ++i) { + this[i] = val + } + } else { + var bytes = Buffer.isBuffer(val) + ? val + : Buffer.from(val, encoding) + var len = bytes.length + if (len === 0) { + throw new TypeError( + 'The value "' + val + '" is invalid for argument "value"' + ) + } + for (i = 0; i < end - start; ++i) { + this[i + start] = bytes[i % len] + } + } + return this + } + var INVALID_BASE64_RE = /[^+\/0-9A-Za-z-_]/g + function base64clean(str) { + str = str.split("=")[0] + str = str.trim().replace(INVALID_BASE64_RE, "") + if (str.length < 2) return "" + while (str.length % 4 !== 0) { + str = str + "=" + } + return str + } + function toHex(n) { + if (n < 16) return "0" + n.toString(16) + return n.toString(16) + } + function utf8ToBytes(string, units) { + units = units || Infinity + var codePoint + var length = string.length + var leadSurrogate = null + var bytes = [] + for (var i = 0; i < length; ++i) { + codePoint = string.charCodeAt(i) + if (codePoint > 55295 && codePoint < 57344) { + if (!leadSurrogate) { + if (codePoint > 56319) { + if ((units -= 3) > -1) bytes.push(239, 191, 189) + continue + } else if (i + 1 === length) { + if ((units -= 3) > -1) bytes.push(239, 191, 189) + continue + } + leadSurrogate = codePoint + continue + } + if (codePoint < 56320) { + if ((units -= 3) > -1) bytes.push(239, 191, 189) + leadSurrogate = codePoint + continue + } + codePoint = + (((leadSurrogate - 55296) << 10) | (codePoint - 56320)) + + 65536 + } else if (leadSurrogate) { + if ((units -= 3) > -1) bytes.push(239, 191, 189) + } + leadSurrogate = null + if (codePoint < 128) { + if ((units -= 1) < 0) break + bytes.push(codePoint) + } else if (codePoint < 2048) { + if ((units -= 2) < 0) break + bytes.push((codePoint >> 6) | 192, (codePoint & 63) | 128) + } else if (codePoint < 65536) { + if ((units -= 3) < 0) break + bytes.push( + (codePoint >> 12) | 224, + ((codePoint >> 6) & 63) | 128, + (codePoint & 63) | 128 + ) + } else if (codePoint < 1114112) { + if ((units -= 4) < 0) break + bytes.push( + (codePoint >> 18) | 240, + ((codePoint >> 12) & 63) | 128, + ((codePoint >> 6) & 63) | 128, + (codePoint & 63) | 128 + ) + } else { + throw new Error("Invalid code point") + } + } + return bytes + } + function asciiToBytes(str) { + var byteArray = [] + for (var i = 0; i < str.length; ++i) { + byteArray.push(str.charCodeAt(i) & 255) + } + return byteArray + } + function utf16leToBytes(str, units) { + var c, hi, lo + var byteArray = [] + for (var i = 0; i < str.length; ++i) { + if ((units -= 2) < 0) break + c = str.charCodeAt(i) + hi = c >> 8 + lo = c % 256 + byteArray.push(lo) + byteArray.push(hi) + } + return byteArray + } + function base64ToBytes(str) { + return base64.toByteArray(base64clean(str)) + } + function blitBuffer(src, dst, offset, length) { + for (var i = 0; i < length; ++i) { + if (i + offset >= dst.length || i >= src.length) break + dst[i + offset] = src[i] + } + return i + } + function isInstance(obj, type) { + return ( + obj instanceof type || + (obj != null && + obj.constructor != null && + obj.constructor.name != null && + obj.constructor.name === type.name) + ) + } + function numberIsNaN(obj) { + return obj !== obj + } + }, + { "base64-js": 1, ieee754: 6 } + ], + 4: [ + function(require, module, exports) { + ;(function(Buffer) { + function isArray(arg) { + if (Array.isArray) { + return Array.isArray(arg) + } + return objectToString(arg) === "[object Array]" + } + exports.isArray = isArray + function isBoolean(arg) { + return typeof arg === "boolean" + } + exports.isBoolean = isBoolean + function isNull(arg) { + return arg === null + } + exports.isNull = isNull + function isNullOrUndefined(arg) { + return arg == null + } + exports.isNullOrUndefined = isNullOrUndefined + function isNumber(arg) { + return typeof arg === "number" + } + exports.isNumber = isNumber + function isString(arg) { + return typeof arg === "string" + } + exports.isString = isString + function isSymbol(arg) { + return typeof arg === "symbol" + } + exports.isSymbol = isSymbol + function isUndefined(arg) { + return arg === void 0 + } + exports.isUndefined = isUndefined + function isRegExp(re) { + return objectToString(re) === "[object RegExp]" + } + exports.isRegExp = isRegExp + function isObject(arg) { + return typeof arg === "object" && arg !== null + } + exports.isObject = isObject + function isDate(d) { + return objectToString(d) === "[object Date]" + } + exports.isDate = isDate + function isError(e) { + return ( + objectToString(e) === "[object Error]" || e instanceof Error + ) + } + exports.isError = isError + function isFunction(arg) { + return typeof arg === "function" + } + exports.isFunction = isFunction + function isPrimitive(arg) { + return ( + arg === null || + typeof arg === "boolean" || + typeof arg === "number" || + typeof arg === "string" || + typeof arg === "symbol" || + typeof arg === "undefined" + ) + } + exports.isPrimitive = isPrimitive + exports.isBuffer = Buffer.isBuffer + function objectToString(o) { + return Object.prototype.toString.call(o) + } + }.call(this, { isBuffer: require("../../is-buffer/index.js") })) + }, + { "../../is-buffer/index.js": 8 } + ], + 5: [ + function(require, module, exports) { + var objectCreate = Object.create || objectCreatePolyfill + var objectKeys = Object.keys || objectKeysPolyfill + var bind = Function.prototype.bind || functionBindPolyfill + function EventEmitter() { + if ( + !this._events || + !Object.prototype.hasOwnProperty.call(this, "_events") + ) { + this._events = objectCreate(null) + this._eventsCount = 0 + } + this._maxListeners = this._maxListeners || undefined + } + module.exports = EventEmitter + EventEmitter.EventEmitter = EventEmitter + EventEmitter.prototype._events = undefined + EventEmitter.prototype._maxListeners = undefined + var defaultMaxListeners = 10 + var hasDefineProperty + try { + var o = {} + if (Object.defineProperty) + Object.defineProperty(o, "x", { value: 0 }) + hasDefineProperty = o.x === 0 + } catch (err) { + hasDefineProperty = false + } + if (hasDefineProperty) { + Object.defineProperty(EventEmitter, "defaultMaxListeners", { + enumerable: true, + get: function() { + return defaultMaxListeners + }, + set: function(arg) { + if (typeof arg !== "number" || arg < 0 || arg !== arg) + throw new TypeError( + '"defaultMaxListeners" must be a positive number' + ) + defaultMaxListeners = arg + } + }) + } else { + EventEmitter.defaultMaxListeners = defaultMaxListeners + } + EventEmitter.prototype.setMaxListeners = function setMaxListeners(n) { + if (typeof n !== "number" || n < 0 || isNaN(n)) + throw new TypeError('"n" argument must be a positive number') + this._maxListeners = n + return this + } + function $getMaxListeners(that) { + if (that._maxListeners === undefined) + return EventEmitter.defaultMaxListeners + return that._maxListeners + } + EventEmitter.prototype.getMaxListeners = function getMaxListeners() { + return $getMaxListeners(this) + } + function emitNone(handler, isFn, self) { + if (isFn) handler.call(self) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].call(self) + } + } + function emitOne(handler, isFn, self, arg1) { + if (isFn) handler.call(self, arg1) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].call(self, arg1) + } + } + function emitTwo(handler, isFn, self, arg1, arg2) { + if (isFn) handler.call(self, arg1, arg2) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].call(self, arg1, arg2) + } + } + function emitThree(handler, isFn, self, arg1, arg2, arg3) { + if (isFn) handler.call(self, arg1, arg2, arg3) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) + listeners[i].call(self, arg1, arg2, arg3) + } + } + function emitMany(handler, isFn, self, args) { + if (isFn) handler.apply(self, args) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].apply(self, args) + } + } + EventEmitter.prototype.emit = function emit(type) { + var er, handler, len, args, i, events + var doError = type === "error" + events = this._events + if (events) doError = doError && events.error == null + else if (!doError) return false + if (doError) { + if (arguments.length > 1) er = arguments[1] + if (er instanceof Error) { + throw er + } else { + var err = new Error('Unhandled "error" event. (' + er + ")") + err.context = er + throw err + } + return false + } + handler = events[type] + if (!handler) return false + var isFn = typeof handler === "function" + len = arguments.length + switch (len) { + case 1: + emitNone(handler, isFn, this) + break + case 2: + emitOne(handler, isFn, this, arguments[1]) + break + case 3: + emitTwo(handler, isFn, this, arguments[1], arguments[2]) + break + case 4: + emitThree( + handler, + isFn, + this, + arguments[1], + arguments[2], + arguments[3] + ) + break + default: + args = new Array(len - 1) + for (i = 1; i < len; i++) args[i - 1] = arguments[i] + emitMany(handler, isFn, this, args) + } + return true + } + function _addListener(target, type, listener, prepend) { + var m + var events + var existing + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + events = target._events + if (!events) { + events = target._events = objectCreate(null) + target._eventsCount = 0 + } else { + if (events.newListener) { + target.emit( + "newListener", + type, + listener.listener ? listener.listener : listener + ) + events = target._events + } + existing = events[type] + } + if (!existing) { + existing = events[type] = listener + ++target._eventsCount + } else { + if (typeof existing === "function") { + existing = events[type] = prepend + ? [listener, existing] + : [existing, listener] + } else { + if (prepend) { + existing.unshift(listener) + } else { + existing.push(listener) + } + } + if (!existing.warned) { + m = $getMaxListeners(target) + if (m && m > 0 && existing.length > m) { + existing.warned = true + var w = new Error( + "Possible EventEmitter memory leak detected. " + + existing.length + + ' "' + + String(type) + + '" listeners ' + + "added. Use emitter.setMaxListeners() to " + + "increase limit." + ) + w.name = "MaxListenersExceededWarning" + w.emitter = target + w.type = type + w.count = existing.length + if (typeof console === "object" && console.warn) { + console.warn("%s: %s", w.name, w.message) + } + } + } + } + return target + } + EventEmitter.prototype.addListener = function addListener( + type, + listener + ) { + return _addListener(this, type, listener, false) + } + EventEmitter.prototype.on = EventEmitter.prototype.addListener + EventEmitter.prototype.prependListener = function prependListener( + type, + listener + ) { + return _addListener(this, type, listener, true) + } + function onceWrapper() { + if (!this.fired) { + this.target.removeListener(this.type, this.wrapFn) + this.fired = true + switch (arguments.length) { + case 0: + return this.listener.call(this.target) + case 1: + return this.listener.call(this.target, arguments[0]) + case 2: + return this.listener.call( + this.target, + arguments[0], + arguments[1] + ) + case 3: + return this.listener.call( + this.target, + arguments[0], + arguments[1], + arguments[2] + ) + default: + var args = new Array(arguments.length) + for (var i = 0; i < args.length; ++i) args[i] = arguments[i] + this.listener.apply(this.target, args) + } + } + } + function _onceWrap(target, type, listener) { + var state = { + fired: false, + wrapFn: undefined, + target: target, + type: type, + listener: listener + } + var wrapped = bind.call(onceWrapper, state) + wrapped.listener = listener + state.wrapFn = wrapped + return wrapped + } + EventEmitter.prototype.once = function once(type, listener) { + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + this.on(type, _onceWrap(this, type, listener)) + return this + } + EventEmitter.prototype.prependOnceListener = function prependOnceListener( + type, + listener + ) { + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + this.prependListener(type, _onceWrap(this, type, listener)) + return this + } + EventEmitter.prototype.removeListener = function removeListener( + type, + listener + ) { + var list, events, position, i, originalListener + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + events = this._events + if (!events) return this + list = events[type] + if (!list) return this + if (list === listener || list.listener === listener) { + if (--this._eventsCount === 0) this._events = objectCreate(null) + else { + delete events[type] + if (events.removeListener) + this.emit("removeListener", type, list.listener || listener) + } + } else if (typeof list !== "function") { + position = -1 + for (i = list.length - 1; i >= 0; i--) { + if (list[i] === listener || list[i].listener === listener) { + originalListener = list[i].listener + position = i + break + } + } + if (position < 0) return this + if (position === 0) list.shift() + else spliceOne(list, position) + if (list.length === 1) events[type] = list[0] + if (events.removeListener) + this.emit("removeListener", type, originalListener || listener) + } + return this + } + EventEmitter.prototype.removeAllListeners = function removeAllListeners( + type + ) { + var listeners, events, i + events = this._events + if (!events) return this + if (!events.removeListener) { + if (arguments.length === 0) { + this._events = objectCreate(null) + this._eventsCount = 0 + } else if (events[type]) { + if (--this._eventsCount === 0) this._events = objectCreate(null) + else delete events[type] + } + return this + } + if (arguments.length === 0) { + var keys = objectKeys(events) + var key + for (i = 0; i < keys.length; ++i) { + key = keys[i] + if (key === "removeListener") continue + this.removeAllListeners(key) + } + this.removeAllListeners("removeListener") + this._events = objectCreate(null) + this._eventsCount = 0 + return this + } + listeners = events[type] + if (typeof listeners === "function") { + this.removeListener(type, listeners) + } else if (listeners) { + for (i = listeners.length - 1; i >= 0; i--) { + this.removeListener(type, listeners[i]) + } + } + return this + } + function _listeners(target, type, unwrap) { + var events = target._events + if (!events) return [] + var evlistener = events[type] + if (!evlistener) return [] + if (typeof evlistener === "function") + return unwrap ? [evlistener.listener || evlistener] : [evlistener] + return unwrap + ? unwrapListeners(evlistener) + : arrayClone(evlistener, evlistener.length) + } + EventEmitter.prototype.listeners = function listeners(type) { + return _listeners(this, type, true) + } + EventEmitter.prototype.rawListeners = function rawListeners(type) { + return _listeners(this, type, false) + } + EventEmitter.listenerCount = function(emitter, type) { + if (typeof emitter.listenerCount === "function") { + return emitter.listenerCount(type) + } else { + return listenerCount.call(emitter, type) + } + } + EventEmitter.prototype.listenerCount = listenerCount + function listenerCount(type) { + var events = this._events + if (events) { + var evlistener = events[type] + if (typeof evlistener === "function") { + return 1 + } else if (evlistener) { + return evlistener.length + } + } + return 0 + } + EventEmitter.prototype.eventNames = function eventNames() { + return this._eventsCount > 0 ? Reflect.ownKeys(this._events) : [] + } + function spliceOne(list, index) { + for ( + var i = index, k = i + 1, n = list.length; + k < n; + i += 1, k += 1 + ) + list[i] = list[k] + list.pop() + } + function arrayClone(arr, n) { + var copy = new Array(n) + for (var i = 0; i < n; ++i) copy[i] = arr[i] + return copy + } + function unwrapListeners(arr) { + var ret = new Array(arr.length) + for (var i = 0; i < ret.length; ++i) { + ret[i] = arr[i].listener || arr[i] + } + return ret + } + function objectCreatePolyfill(proto) { + var F = function() {} + F.prototype = proto + return new F() + } + function objectKeysPolyfill(obj) { + var keys = [] + for (var k in obj) + if (Object.prototype.hasOwnProperty.call(obj, k)) { + keys.push(k) + } + return k + } + function functionBindPolyfill(context) { + var fn = this + return function() { + return fn.apply(context, arguments) + } + } + }, + {} + ], + 6: [ + function(require, module, exports) { + exports.read = function(buffer, offset, isLE, mLen, nBytes) { + var e, m + var eLen = nBytes * 8 - mLen - 1 + var eMax = (1 << eLen) - 1 + var eBias = eMax >> 1 + var nBits = -7 + var i = isLE ? nBytes - 1 : 0 + var d = isLE ? -1 : 1 + var s = buffer[offset + i] + i += d + e = s & ((1 << -nBits) - 1) + s >>= -nBits + nBits += eLen + for ( + ; + nBits > 0; + e = e * 256 + buffer[offset + i], i += d, nBits -= 8 + ) {} + m = e & ((1 << -nBits) - 1) + e >>= -nBits + nBits += mLen + for ( + ; + nBits > 0; + m = m * 256 + buffer[offset + i], i += d, nBits -= 8 + ) {} + if (e === 0) { + e = 1 - eBias + } else if (e === eMax) { + return m ? NaN : (s ? -1 : 1) * Infinity + } else { + m = m + Math.pow(2, mLen) + e = e - eBias + } + return (s ? -1 : 1) * m * Math.pow(2, e - mLen) + } + exports.write = function(buffer, value, offset, isLE, mLen, nBytes) { + var e, m, c + var eLen = nBytes * 8 - mLen - 1 + var eMax = (1 << eLen) - 1 + var eBias = eMax >> 1 + var rt = mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0 + var i = isLE ? 0 : nBytes - 1 + var d = isLE ? 1 : -1 + var s = value < 0 || (value === 0 && 1 / value < 0) ? 1 : 0 + value = Math.abs(value) + if (isNaN(value) || value === Infinity) { + m = isNaN(value) ? 1 : 0 + e = eMax + } else { + e = Math.floor(Math.log(value) / Math.LN2) + if (value * (c = Math.pow(2, -e)) < 1) { + e-- + c *= 2 + } + if (e + eBias >= 1) { + value += rt / c + } else { + value += rt * Math.pow(2, 1 - eBias) + } + if (value * c >= 2) { + e++ + c /= 2 + } + if (e + eBias >= eMax) { + m = 0 + e = eMax + } else if (e + eBias >= 1) { + m = (value * c - 1) * Math.pow(2, mLen) + e = e + eBias + } else { + m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen) + e = 0 + } + } + for ( + ; + mLen >= 8; + buffer[offset + i] = m & 255, i += d, m /= 256, mLen -= 8 + ) {} + e = (e << mLen) | m + eLen += mLen + for ( + ; + eLen > 0; + buffer[offset + i] = e & 255, i += d, e /= 256, eLen -= 8 + ) {} + buffer[offset + i - d] |= s * 128 + } + }, + {} + ], + 7: [ + function(require, module, exports) { + if (typeof Object.create === "function") { + module.exports = function inherits(ctor, superCtor) { + ctor.super_ = superCtor + ctor.prototype = Object.create(superCtor.prototype, { + constructor: { + value: ctor, + enumerable: false, + writable: true, + configurable: true + } + }) + } + } else { + module.exports = function inherits(ctor, superCtor) { + ctor.super_ = superCtor + var TempCtor = function() {} + TempCtor.prototype = superCtor.prototype + ctor.prototype = new TempCtor() + ctor.prototype.constructor = ctor + } + } + }, + {} + ], + 8: [ + function(require, module, exports) { + module.exports = function(obj) { + return ( + obj != null && + (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer) + ) + } + function isBuffer(obj) { + return ( + !!obj.constructor && + typeof obj.constructor.isBuffer === "function" && + obj.constructor.isBuffer(obj) + ) + } + function isSlowBuffer(obj) { + return ( + typeof obj.readFloatLE === "function" && + typeof obj.slice === "function" && + isBuffer(obj.slice(0, 0)) + ) + } + }, + {} + ], + 9: [ + function(require, module, exports) { + var toString = {}.toString + module.exports = + Array.isArray || + function(arr) { + return toString.call(arr) == "[object Array]" + } + }, + {} + ], + 10: [ + function(require, module, exports) { + ;(function(process) { + "use strict" + if ( + !process.version || + process.version.indexOf("v0.") === 0 || + (process.version.indexOf("v1.") === 0 && + process.version.indexOf("v1.8.") !== 0) + ) { + module.exports = { nextTick: nextTick } + } else { + module.exports = process + } + function nextTick(fn, arg1, arg2, arg3) { + if (typeof fn !== "function") { + throw new TypeError('"callback" argument must be a function') + } + var len = arguments.length + var args, i + switch (len) { + case 0: + case 1: + return process.nextTick(fn) + case 2: + return process.nextTick(function afterTickOne() { + fn.call(null, arg1) + }) + case 3: + return process.nextTick(function afterTickTwo() { + fn.call(null, arg1, arg2) + }) + case 4: + return process.nextTick(function afterTickThree() { + fn.call(null, arg1, arg2, arg3) + }) + default: + args = new Array(len - 1) + i = 0 + while (i < args.length) { + args[i++] = arguments[i] + } + return process.nextTick(function afterTick() { + fn.apply(null, args) + }) + } + } + }.call(this, require("_process"))) + }, + { _process: 11 } + ], + 11: [ + function(require, module, exports) { + var process = (module.exports = {}) + var cachedSetTimeout + var cachedClearTimeout + function defaultSetTimout() { + throw new Error("setTimeout has not been defined") + } + function defaultClearTimeout() { + throw new Error("clearTimeout has not been defined") + } + ;(function() { + try { + if (typeof setTimeout === "function") { + cachedSetTimeout = setTimeout + } else { + cachedSetTimeout = defaultSetTimout + } + } catch (e) { + cachedSetTimeout = defaultSetTimout + } + try { + if (typeof clearTimeout === "function") { + cachedClearTimeout = clearTimeout + } else { + cachedClearTimeout = defaultClearTimeout + } + } catch (e) { + cachedClearTimeout = defaultClearTimeout + } + })() + function runTimeout(fun) { + if (cachedSetTimeout === setTimeout) { + return setTimeout(fun, 0) + } + if ( + (cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && + setTimeout + ) { + cachedSetTimeout = setTimeout + return setTimeout(fun, 0) + } + try { + return cachedSetTimeout(fun, 0) + } catch (e) { + try { + return cachedSetTimeout.call(null, fun, 0) + } catch (e) { + return cachedSetTimeout.call(this, fun, 0) + } + } + } + function runClearTimeout(marker) { + if (cachedClearTimeout === clearTimeout) { + return clearTimeout(marker) + } + if ( + (cachedClearTimeout === defaultClearTimeout || + !cachedClearTimeout) && + clearTimeout + ) { + cachedClearTimeout = clearTimeout + return clearTimeout(marker) + } + try { + return cachedClearTimeout(marker) + } catch (e) { + try { + return cachedClearTimeout.call(null, marker) + } catch (e) { + return cachedClearTimeout.call(this, marker) + } + } + } + var queue = [] + var draining = false + var currentQueue + var queueIndex = -1 + function cleanUpNextTick() { + if (!draining || !currentQueue) { + return + } + draining = false + if (currentQueue.length) { + queue = currentQueue.concat(queue) + } else { + queueIndex = -1 + } + if (queue.length) { + drainQueue() + } + } + function drainQueue() { + if (draining) { + return + } + var timeout = runTimeout(cleanUpNextTick) + draining = true + var len = queue.length + while (len) { + currentQueue = queue + queue = [] + while (++queueIndex < len) { + if (currentQueue) { + currentQueue[queueIndex].run() + } + } + queueIndex = -1 + len = queue.length + } + currentQueue = null + draining = false + runClearTimeout(timeout) + } + process.nextTick = function(fun) { + var args = new Array(arguments.length - 1) + if (arguments.length > 1) { + for (var i = 1; i < arguments.length; i++) { + args[i - 1] = arguments[i] + } + } + queue.push(new Item(fun, args)) + if (queue.length === 1 && !draining) { + runTimeout(drainQueue) + } + } + function Item(fun, array) { + this.fun = fun + this.array = array + } + Item.prototype.run = function() { + this.fun.apply(null, this.array) + } + process.title = "browser" + process.browser = true + process.env = {} + process.argv = [] + process.version = "" + process.versions = {} + function noop() {} + process.on = noop + process.addListener = noop + process.once = noop + process.off = noop + process.removeListener = noop + process.removeAllListeners = noop + process.emit = noop + process.prependListener = noop + process.prependOnceListener = noop + process.listeners = function(name) { + return [] + } + process.binding = function(name) { + throw new Error("process.binding is not supported") + } + process.cwd = function() { + return "/" + } + process.chdir = function(dir) { + throw new Error("process.chdir is not supported") + } + process.umask = function() { + return 0 + } + }, + {} + ], + 12: [ + function(require, module, exports) { + module.exports = require("./lib/_stream_duplex.js") + }, + { "./lib/_stream_duplex.js": 13 } + ], + 13: [ + function(require, module, exports) { + "use strict" + var pna = require("process-nextick-args") + var objectKeys = + Object.keys || + function(obj) { + var keys = [] + for (var key in obj) { + keys.push(key) + } + return keys + } + module.exports = Duplex + var util = require("core-util-is") + util.inherits = require("inherits") + var Readable = require("./_stream_readable") + var Writable = require("./_stream_writable") + util.inherits(Duplex, Readable) + { + var keys = objectKeys(Writable.prototype) + for (var v = 0; v < keys.length; v++) { + var method = keys[v] + if (!Duplex.prototype[method]) + Duplex.prototype[method] = Writable.prototype[method] + } + } + function Duplex(options) { + if (!(this instanceof Duplex)) return new Duplex(options) + Readable.call(this, options) + Writable.call(this, options) + if (options && options.readable === false) this.readable = false + if (options && options.writable === false) this.writable = false + this.allowHalfOpen = true + if (options && options.allowHalfOpen === false) + this.allowHalfOpen = false + this.once("end", onend) + } + Object.defineProperty(Duplex.prototype, "writableHighWaterMark", { + enumerable: false, + get: function() { + return this._writableState.highWaterMark + } + }) + function onend() { + if (this.allowHalfOpen || this._writableState.ended) return + pna.nextTick(onEndNT, this) + } + function onEndNT(self) { + self.end() + } + Object.defineProperty(Duplex.prototype, "destroyed", { + get: function() { + if ( + this._readableState === undefined || + this._writableState === undefined + ) { + return false + } + return ( + this._readableState.destroyed && this._writableState.destroyed + ) + }, + set: function(value) { + if ( + this._readableState === undefined || + this._writableState === undefined + ) { + return + } + this._readableState.destroyed = value + this._writableState.destroyed = value + } + }) + Duplex.prototype._destroy = function(err, cb) { + this.push(null) + this.end() + pna.nextTick(cb, err) + } + }, + { + "./_stream_readable": 15, + "./_stream_writable": 17, + "core-util-is": 4, + inherits: 7, + "process-nextick-args": 10 + } + ], + 14: [ + function(require, module, exports) { + "use strict" + module.exports = PassThrough + var Transform = require("./_stream_transform") + var util = require("core-util-is") + util.inherits = require("inherits") + util.inherits(PassThrough, Transform) + function PassThrough(options) { + if (!(this instanceof PassThrough)) return new PassThrough(options) + Transform.call(this, options) + } + PassThrough.prototype._transform = function(chunk, encoding, cb) { + cb(null, chunk) + } + }, + { "./_stream_transform": 16, "core-util-is": 4, inherits: 7 } + ], + 15: [ + function(require, module, exports) { + ;(function(process, global) { + "use strict" + var pna = require("process-nextick-args") + module.exports = Readable + var isArray = require("isarray") + var Duplex + Readable.ReadableState = ReadableState + var EE = require("events").EventEmitter + var EElistenerCount = function(emitter, type) { + return emitter.listeners(type).length + } + var Stream = require("./internal/streams/stream") + var Buffer = require("safe-buffer").Buffer + var OurUint8Array = global.Uint8Array || function() {} + function _uint8ArrayToBuffer(chunk) { + return Buffer.from(chunk) + } + function _isUint8Array(obj) { + return Buffer.isBuffer(obj) || obj instanceof OurUint8Array + } + var util = require("core-util-is") + util.inherits = require("inherits") + var debugUtil = require("util") + var debug = void 0 + if (debugUtil && debugUtil.debuglog) { + debug = debugUtil.debuglog("stream") + } else { + debug = function() {} + } + var BufferList = require("./internal/streams/BufferList") + var destroyImpl = require("./internal/streams/destroy") + var StringDecoder + util.inherits(Readable, Stream) + var kProxyEvents = ["error", "close", "destroy", "pause", "resume"] + function prependListener(emitter, event, fn) { + if (typeof emitter.prependListener === "function") + return emitter.prependListener(event, fn) + if (!emitter._events || !emitter._events[event]) + emitter.on(event, fn) + else if (isArray(emitter._events[event])) + emitter._events[event].unshift(fn) + else emitter._events[event] = [fn, emitter._events[event]] + } + function ReadableState(options, stream) { + Duplex = Duplex || require("./_stream_duplex") + options = options || {} + var isDuplex = stream instanceof Duplex + this.objectMode = !!options.objectMode + if (isDuplex) + this.objectMode = + this.objectMode || !!options.readableObjectMode + var hwm = options.highWaterMark + var readableHwm = options.readableHighWaterMark + var defaultHwm = this.objectMode ? 16 : 16 * 1024 + if (hwm || hwm === 0) this.highWaterMark = hwm + else if (isDuplex && (readableHwm || readableHwm === 0)) + this.highWaterMark = readableHwm + else this.highWaterMark = defaultHwm + this.highWaterMark = Math.floor(this.highWaterMark) + this.buffer = new BufferList() + this.length = 0 + this.pipes = null + this.pipesCount = 0 + this.flowing = null + this.ended = false + this.endEmitted = false + this.reading = false + this.sync = true + this.needReadable = false + this.emittedReadable = false + this.readableListening = false + this.resumeScheduled = false + this.destroyed = false + this.defaultEncoding = options.defaultEncoding || "utf8" + this.awaitDrain = 0 + this.readingMore = false + this.decoder = null + this.encoding = null + if (options.encoding) { + if (!StringDecoder) + StringDecoder = require("string_decoder/").StringDecoder + this.decoder = new StringDecoder(options.encoding) + this.encoding = options.encoding + } + } + function Readable(options) { + Duplex = Duplex || require("./_stream_duplex") + if (!(this instanceof Readable)) return new Readable(options) + this._readableState = new ReadableState(options, this) + this.readable = true + if (options) { + if (typeof options.read === "function") + this._read = options.read + if (typeof options.destroy === "function") + this._destroy = options.destroy + } + Stream.call(this) + } + Object.defineProperty(Readable.prototype, "destroyed", { + get: function() { + if (this._readableState === undefined) { + return false + } + return this._readableState.destroyed + }, + set: function(value) { + if (!this._readableState) { + return + } + this._readableState.destroyed = value + } + }) + Readable.prototype.destroy = destroyImpl.destroy + Readable.prototype._undestroy = destroyImpl.undestroy + Readable.prototype._destroy = function(err, cb) { + this.push(null) + cb(err) + } + Readable.prototype.push = function(chunk, encoding) { + var state = this._readableState + var skipChunkCheck + if (!state.objectMode) { + if (typeof chunk === "string") { + encoding = encoding || state.defaultEncoding + if (encoding !== state.encoding) { + chunk = Buffer.from(chunk, encoding) + encoding = "" + } + skipChunkCheck = true + } + } else { + skipChunkCheck = true + } + return readableAddChunk( + this, + chunk, + encoding, + false, + skipChunkCheck + ) + } + Readable.prototype.unshift = function(chunk) { + return readableAddChunk(this, chunk, null, true, false) + } + function readableAddChunk( + stream, + chunk, + encoding, + addToFront, + skipChunkCheck + ) { + var state = stream._readableState + if (chunk === null) { + state.reading = false + onEofChunk(stream, state) + } else { + var er + if (!skipChunkCheck) er = chunkInvalid(state, chunk) + if (er) { + stream.emit("error", er) + } else if (state.objectMode || (chunk && chunk.length > 0)) { + if ( + typeof chunk !== "string" && + !state.objectMode && + Object.getPrototypeOf(chunk) !== Buffer.prototype + ) { + chunk = _uint8ArrayToBuffer(chunk) + } + if (addToFront) { + if (state.endEmitted) + stream.emit( + "error", + new Error("stream.unshift() after end event") + ) + else addChunk(stream, state, chunk, true) + } else if (state.ended) { + stream.emit("error", new Error("stream.push() after EOF")) + } else { + state.reading = false + if (state.decoder && !encoding) { + chunk = state.decoder.write(chunk) + if (state.objectMode || chunk.length !== 0) + addChunk(stream, state, chunk, false) + else maybeReadMore(stream, state) + } else { + addChunk(stream, state, chunk, false) + } + } + } else if (!addToFront) { + state.reading = false + } + } + return needMoreData(state) + } + function addChunk(stream, state, chunk, addToFront) { + if (state.flowing && state.length === 0 && !state.sync) { + stream.emit("data", chunk) + stream.read(0) + } else { + state.length += state.objectMode ? 1 : chunk.length + if (addToFront) state.buffer.unshift(chunk) + else state.buffer.push(chunk) + if (state.needReadable) emitReadable(stream) + } + maybeReadMore(stream, state) + } + function chunkInvalid(state, chunk) { + var er + if ( + !_isUint8Array(chunk) && + typeof chunk !== "string" && + chunk !== undefined && + !state.objectMode + ) { + er = new TypeError("Invalid non-string/buffer chunk") + } + return er + } + function needMoreData(state) { + return ( + !state.ended && + (state.needReadable || + state.length < state.highWaterMark || + state.length === 0) + ) + } + Readable.prototype.isPaused = function() { + return this._readableState.flowing === false + } + Readable.prototype.setEncoding = function(enc) { + if (!StringDecoder) + StringDecoder = require("string_decoder/").StringDecoder + this._readableState.decoder = new StringDecoder(enc) + this._readableState.encoding = enc + return this + } + var MAX_HWM = 8388608 + function computeNewHighWaterMark(n) { + if (n >= MAX_HWM) { + n = MAX_HWM + } else { + n-- + n |= n >>> 1 + n |= n >>> 2 + n |= n >>> 4 + n |= n >>> 8 + n |= n >>> 16 + n++ + } + return n + } + function howMuchToRead(n, state) { + if (n <= 0 || (state.length === 0 && state.ended)) return 0 + if (state.objectMode) return 1 + if (n !== n) { + if (state.flowing && state.length) + return state.buffer.head.data.length + else return state.length + } + if (n > state.highWaterMark) + state.highWaterMark = computeNewHighWaterMark(n) + if (n <= state.length) return n + if (!state.ended) { + state.needReadable = true + return 0 + } + return state.length + } + Readable.prototype.read = function(n) { + debug("read", n) + n = parseInt(n, 10) + var state = this._readableState + var nOrig = n + if (n !== 0) state.emittedReadable = false + if ( + n === 0 && + state.needReadable && + (state.length >= state.highWaterMark || state.ended) + ) { + debug("read: emitReadable", state.length, state.ended) + if (state.length === 0 && state.ended) endReadable(this) + else emitReadable(this) + return null + } + n = howMuchToRead(n, state) + if (n === 0 && state.ended) { + if (state.length === 0) endReadable(this) + return null + } + var doRead = state.needReadable + debug("need readable", doRead) + if ( + state.length === 0 || + state.length - n < state.highWaterMark + ) { + doRead = true + debug("length less than watermark", doRead) + } + if (state.ended || state.reading) { + doRead = false + debug("reading or ended", doRead) + } else if (doRead) { + debug("do read") + state.reading = true + state.sync = true + if (state.length === 0) state.needReadable = true + this._read(state.highWaterMark) + state.sync = false + if (!state.reading) n = howMuchToRead(nOrig, state) + } + var ret + if (n > 0) ret = fromList(n, state) + else ret = null + if (ret === null) { + state.needReadable = true + n = 0 + } else { + state.length -= n + } + if (state.length === 0) { + if (!state.ended) state.needReadable = true + if (nOrig !== n && state.ended) endReadable(this) + } + if (ret !== null) this.emit("data", ret) + return ret + } + function onEofChunk(stream, state) { + if (state.ended) return + if (state.decoder) { + var chunk = state.decoder.end() + if (chunk && chunk.length) { + state.buffer.push(chunk) + state.length += state.objectMode ? 1 : chunk.length + } + } + state.ended = true + emitReadable(stream) + } + function emitReadable(stream) { + var state = stream._readableState + state.needReadable = false + if (!state.emittedReadable) { + debug("emitReadable", state.flowing) + state.emittedReadable = true + if (state.sync) pna.nextTick(emitReadable_, stream) + else emitReadable_(stream) + } + } + function emitReadable_(stream) { + debug("emit readable") + stream.emit("readable") + flow(stream) + } + function maybeReadMore(stream, state) { + if (!state.readingMore) { + state.readingMore = true + pna.nextTick(maybeReadMore_, stream, state) + } + } + function maybeReadMore_(stream, state) { + var len = state.length + while ( + !state.reading && + !state.flowing && + !state.ended && + state.length < state.highWaterMark + ) { + debug("maybeReadMore read 0") + stream.read(0) + if (len === state.length) break + else len = state.length + } + state.readingMore = false + } + Readable.prototype._read = function(n) { + this.emit("error", new Error("_read() is not implemented")) + } + Readable.prototype.pipe = function(dest, pipeOpts) { + var src = this + var state = this._readableState + switch (state.pipesCount) { + case 0: + state.pipes = dest + break + case 1: + state.pipes = [state.pipes, dest] + break + default: + state.pipes.push(dest) + break + } + state.pipesCount += 1 + debug("pipe count=%d opts=%j", state.pipesCount, pipeOpts) + var doEnd = + (!pipeOpts || pipeOpts.end !== false) && + dest !== process.stdout && + dest !== process.stderr + var endFn = doEnd ? onend : unpipe + if (state.endEmitted) pna.nextTick(endFn) + else src.once("end", endFn) + dest.on("unpipe", onunpipe) + function onunpipe(readable, unpipeInfo) { + debug("onunpipe") + if (readable === src) { + if (unpipeInfo && unpipeInfo.hasUnpiped === false) { + unpipeInfo.hasUnpiped = true + cleanup() + } + } + } + function onend() { + debug("onend") + dest.end() + } + var ondrain = pipeOnDrain(src) + dest.on("drain", ondrain) + var cleanedUp = false + function cleanup() { + debug("cleanup") + dest.removeListener("close", onclose) + dest.removeListener("finish", onfinish) + dest.removeListener("drain", ondrain) + dest.removeListener("error", onerror) + dest.removeListener("unpipe", onunpipe) + src.removeListener("end", onend) + src.removeListener("end", unpipe) + src.removeListener("data", ondata) + cleanedUp = true + if ( + state.awaitDrain && + (!dest._writableState || dest._writableState.needDrain) + ) + ondrain() + } + var increasedAwaitDrain = false + src.on("data", ondata) + function ondata(chunk) { + debug("ondata") + increasedAwaitDrain = false + var ret = dest.write(chunk) + if (false === ret && !increasedAwaitDrain) { + if ( + ((state.pipesCount === 1 && state.pipes === dest) || + (state.pipesCount > 1 && + indexOf(state.pipes, dest) !== -1)) && + !cleanedUp + ) { + debug( + "false write response, pause", + src._readableState.awaitDrain + ) + src._readableState.awaitDrain++ + increasedAwaitDrain = true + } + src.pause() + } + } + function onerror(er) { + debug("onerror", er) + unpipe() + dest.removeListener("error", onerror) + if (EElistenerCount(dest, "error") === 0) dest.emit("error", er) + } + prependListener(dest, "error", onerror) + function onclose() { + dest.removeListener("finish", onfinish) + unpipe() + } + dest.once("close", onclose) + function onfinish() { + debug("onfinish") + dest.removeListener("close", onclose) + unpipe() + } + dest.once("finish", onfinish) + function unpipe() { + debug("unpipe") + src.unpipe(dest) + } + dest.emit("pipe", src) + if (!state.flowing) { + debug("pipe resume") + src.resume() + } + return dest + } + function pipeOnDrain(src) { + return function() { + var state = src._readableState + debug("pipeOnDrain", state.awaitDrain) + if (state.awaitDrain) state.awaitDrain-- + if (state.awaitDrain === 0 && EElistenerCount(src, "data")) { + state.flowing = true + flow(src) + } + } + } + Readable.prototype.unpipe = function(dest) { + var state = this._readableState + var unpipeInfo = { hasUnpiped: false } + if (state.pipesCount === 0) return this + if (state.pipesCount === 1) { + if (dest && dest !== state.pipes) return this + if (!dest) dest = state.pipes + state.pipes = null + state.pipesCount = 0 + state.flowing = false + if (dest) dest.emit("unpipe", this, unpipeInfo) + return this + } + if (!dest) { + var dests = state.pipes + var len = state.pipesCount + state.pipes = null + state.pipesCount = 0 + state.flowing = false + for (var i = 0; i < len; i++) { + dests[i].emit("unpipe", this, unpipeInfo) + } + return this + } + var index = indexOf(state.pipes, dest) + if (index === -1) return this + state.pipes.splice(index, 1) + state.pipesCount -= 1 + if (state.pipesCount === 1) state.pipes = state.pipes[0] + dest.emit("unpipe", this, unpipeInfo) + return this + } + Readable.prototype.on = function(ev, fn) { + var res = Stream.prototype.on.call(this, ev, fn) + if (ev === "data") { + if (this._readableState.flowing !== false) this.resume() + } else if (ev === "readable") { + var state = this._readableState + if (!state.endEmitted && !state.readableListening) { + state.readableListening = state.needReadable = true + state.emittedReadable = false + if (!state.reading) { + pna.nextTick(nReadingNextTick, this) + } else if (state.length) { + emitReadable(this) + } + } + } + return res + } + Readable.prototype.addListener = Readable.prototype.on + function nReadingNextTick(self) { + debug("readable nexttick read 0") + self.read(0) + } + Readable.prototype.resume = function() { + var state = this._readableState + if (!state.flowing) { + debug("resume") + state.flowing = true + resume(this, state) + } + return this + } + function resume(stream, state) { + if (!state.resumeScheduled) { + state.resumeScheduled = true + pna.nextTick(resume_, stream, state) + } + } + function resume_(stream, state) { + if (!state.reading) { + debug("resume read 0") + stream.read(0) + } + state.resumeScheduled = false + state.awaitDrain = 0 + stream.emit("resume") + flow(stream) + if (state.flowing && !state.reading) stream.read(0) + } + Readable.prototype.pause = function() { + debug("call pause flowing=%j", this._readableState.flowing) + if (false !== this._readableState.flowing) { + debug("pause") + this._readableState.flowing = false + this.emit("pause") + } + return this + } + function flow(stream) { + var state = stream._readableState + debug("flow", state.flowing) + while (state.flowing && stream.read() !== null) {} + } + Readable.prototype.wrap = function(stream) { + var _this = this + var state = this._readableState + var paused = false + stream.on("end", function() { + debug("wrapped end") + if (state.decoder && !state.ended) { + var chunk = state.decoder.end() + if (chunk && chunk.length) _this.push(chunk) + } + _this.push(null) + }) + stream.on("data", function(chunk) { + debug("wrapped data") + if (state.decoder) chunk = state.decoder.write(chunk) + if (state.objectMode && (chunk === null || chunk === undefined)) + return + else if (!state.objectMode && (!chunk || !chunk.length)) return + var ret = _this.push(chunk) + if (!ret) { + paused = true + stream.pause() + } + }) + for (var i in stream) { + if (this[i] === undefined && typeof stream[i] === "function") { + this[i] = (function(method) { + return function() { + return stream[method].apply(stream, arguments) + } + })(i) + } + } + for (var n = 0; n < kProxyEvents.length; n++) { + stream.on( + kProxyEvents[n], + this.emit.bind(this, kProxyEvents[n]) + ) + } + this._read = function(n) { + debug("wrapped _read", n) + if (paused) { + paused = false + stream.resume() + } + } + return this + } + Object.defineProperty(Readable.prototype, "readableHighWaterMark", { + enumerable: false, + get: function() { + return this._readableState.highWaterMark + } + }) + Readable._fromList = fromList + function fromList(n, state) { + if (state.length === 0) return null + var ret + if (state.objectMode) ret = state.buffer.shift() + else if (!n || n >= state.length) { + if (state.decoder) ret = state.buffer.join("") + else if (state.buffer.length === 1) ret = state.buffer.head.data + else ret = state.buffer.concat(state.length) + state.buffer.clear() + } else { + ret = fromListPartial(n, state.buffer, state.decoder) + } + return ret + } + function fromListPartial(n, list, hasStrings) { + var ret + if (n < list.head.data.length) { + ret = list.head.data.slice(0, n) + list.head.data = list.head.data.slice(n) + } else if (n === list.head.data.length) { + ret = list.shift() + } else { + ret = hasStrings + ? copyFromBufferString(n, list) + : copyFromBuffer(n, list) + } + return ret + } + function copyFromBufferString(n, list) { + var p = list.head + var c = 1 + var ret = p.data + n -= ret.length + while ((p = p.next)) { + var str = p.data + var nb = n > str.length ? str.length : n + if (nb === str.length) ret += str + else ret += str.slice(0, n) + n -= nb + if (n === 0) { + if (nb === str.length) { + ++c + if (p.next) list.head = p.next + else list.head = list.tail = null + } else { + list.head = p + p.data = str.slice(nb) + } + break + } + ++c + } + list.length -= c + return ret + } + function copyFromBuffer(n, list) { + var ret = Buffer.allocUnsafe(n) + var p = list.head + var c = 1 + p.data.copy(ret) + n -= p.data.length + while ((p = p.next)) { + var buf = p.data + var nb = n > buf.length ? buf.length : n + buf.copy(ret, ret.length - n, 0, nb) + n -= nb + if (n === 0) { + if (nb === buf.length) { + ++c + if (p.next) list.head = p.next + else list.head = list.tail = null + } else { + list.head = p + p.data = buf.slice(nb) + } + break + } + ++c + } + list.length -= c + return ret + } + function endReadable(stream) { + var state = stream._readableState + if (state.length > 0) + throw new Error('"endReadable()" called on non-empty stream') + if (!state.endEmitted) { + state.ended = true + pna.nextTick(endReadableNT, state, stream) + } + } + function endReadableNT(state, stream) { + if (!state.endEmitted && state.length === 0) { + state.endEmitted = true + stream.readable = false + stream.emit("end") + } + } + function indexOf(xs, x) { + for (var i = 0, l = xs.length; i < l; i++) { + if (xs[i] === x) return i + } + return -1 + } + }.call( + this, + require("_process"), + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + { + "./_stream_duplex": 13, + "./internal/streams/BufferList": 18, + "./internal/streams/destroy": 19, + "./internal/streams/stream": 20, + _process: 11, + "core-util-is": 4, + events: 5, + inherits: 7, + isarray: 9, + "process-nextick-args": 10, + "safe-buffer": 26, + "string_decoder/": 21, + util: 2 + } + ], + 16: [ + function(require, module, exports) { + "use strict" + module.exports = Transform + var Duplex = require("./_stream_duplex") + var util = require("core-util-is") + util.inherits = require("inherits") + util.inherits(Transform, Duplex) + function afterTransform(er, data) { + var ts = this._transformState + ts.transforming = false + var cb = ts.writecb + if (!cb) { + return this.emit( + "error", + new Error("write callback called multiple times") + ) + } + ts.writechunk = null + ts.writecb = null + if (data != null) this.push(data) + cb(er) + var rs = this._readableState + rs.reading = false + if (rs.needReadable || rs.length < rs.highWaterMark) { + this._read(rs.highWaterMark) + } + } + function Transform(options) { + if (!(this instanceof Transform)) return new Transform(options) + Duplex.call(this, options) + this._transformState = { + afterTransform: afterTransform.bind(this), + needTransform: false, + transforming: false, + writecb: null, + writechunk: null, + writeencoding: null + } + this._readableState.needReadable = true + this._readableState.sync = false + if (options) { + if (typeof options.transform === "function") + this._transform = options.transform + if (typeof options.flush === "function") + this._flush = options.flush + } + this.on("prefinish", prefinish) + } + function prefinish() { + var _this = this + if (typeof this._flush === "function") { + this._flush(function(er, data) { + done(_this, er, data) + }) + } else { + done(this, null, null) + } + } + Transform.prototype.push = function(chunk, encoding) { + this._transformState.needTransform = false + return Duplex.prototype.push.call(this, chunk, encoding) + } + Transform.prototype._transform = function(chunk, encoding, cb) { + throw new Error("_transform() is not implemented") + } + Transform.prototype._write = function(chunk, encoding, cb) { + var ts = this._transformState + ts.writecb = cb + ts.writechunk = chunk + ts.writeencoding = encoding + if (!ts.transforming) { + var rs = this._readableState + if ( + ts.needTransform || + rs.needReadable || + rs.length < rs.highWaterMark + ) + this._read(rs.highWaterMark) + } + } + Transform.prototype._read = function(n) { + var ts = this._transformState + if (ts.writechunk !== null && ts.writecb && !ts.transforming) { + ts.transforming = true + this._transform( + ts.writechunk, + ts.writeencoding, + ts.afterTransform + ) + } else { + ts.needTransform = true + } + } + Transform.prototype._destroy = function(err, cb) { + var _this2 = this + Duplex.prototype._destroy.call(this, err, function(err2) { + cb(err2) + _this2.emit("close") + }) + } + function done(stream, er, data) { + if (er) return stream.emit("error", er) + if (data != null) stream.push(data) + if (stream._writableState.length) + throw new Error("Calling transform done when ws.length != 0") + if (stream._transformState.transforming) + throw new Error("Calling transform done when still transforming") + return stream.push(null) + } + }, + { "./_stream_duplex": 13, "core-util-is": 4, inherits: 7 } + ], + 17: [ + function(require, module, exports) { + ;(function(process, global, setImmediate) { + "use strict" + var pna = require("process-nextick-args") + module.exports = Writable + function WriteReq(chunk, encoding, cb) { + this.chunk = chunk + this.encoding = encoding + this.callback = cb + this.next = null + } + function CorkedRequest(state) { + var _this = this + this.next = null + this.entry = null + this.finish = function() { + onCorkedFinish(_this, state) + } + } + var asyncWrite = + !process.browser && + ["v0.10", "v0.9."].indexOf(process.version.slice(0, 5)) > -1 + ? setImmediate + : pna.nextTick + var Duplex + Writable.WritableState = WritableState + var util = require("core-util-is") + util.inherits = require("inherits") + var internalUtil = { deprecate: require("util-deprecate") } + var Stream = require("./internal/streams/stream") + var Buffer = require("safe-buffer").Buffer + var OurUint8Array = global.Uint8Array || function() {} + function _uint8ArrayToBuffer(chunk) { + return Buffer.from(chunk) + } + function _isUint8Array(obj) { + return Buffer.isBuffer(obj) || obj instanceof OurUint8Array + } + var destroyImpl = require("./internal/streams/destroy") + util.inherits(Writable, Stream) + function nop() {} + function WritableState(options, stream) { + Duplex = Duplex || require("./_stream_duplex") + options = options || {} + var isDuplex = stream instanceof Duplex + this.objectMode = !!options.objectMode + if (isDuplex) + this.objectMode = + this.objectMode || !!options.writableObjectMode + var hwm = options.highWaterMark + var writableHwm = options.writableHighWaterMark + var defaultHwm = this.objectMode ? 16 : 16 * 1024 + if (hwm || hwm === 0) this.highWaterMark = hwm + else if (isDuplex && (writableHwm || writableHwm === 0)) + this.highWaterMark = writableHwm + else this.highWaterMark = defaultHwm + this.highWaterMark = Math.floor(this.highWaterMark) + this.finalCalled = false + this.needDrain = false + this.ending = false + this.ended = false + this.finished = false + this.destroyed = false + var noDecode = options.decodeStrings === false + this.decodeStrings = !noDecode + this.defaultEncoding = options.defaultEncoding || "utf8" + this.length = 0 + this.writing = false + this.corked = 0 + this.sync = true + this.bufferProcessing = false + this.onwrite = function(er) { + onwrite(stream, er) + } + this.writecb = null + this.writelen = 0 + this.bufferedRequest = null + this.lastBufferedRequest = null + this.pendingcb = 0 + this.prefinished = false + this.errorEmitted = false + this.bufferedRequestCount = 0 + this.corkedRequestsFree = new CorkedRequest(this) + } + WritableState.prototype.getBuffer = function getBuffer() { + var current = this.bufferedRequest + var out = [] + while (current) { + out.push(current) + current = current.next + } + return out + } + ;(function() { + try { + Object.defineProperty(WritableState.prototype, "buffer", { + get: internalUtil.deprecate( + function() { + return this.getBuffer() + }, + "_writableState.buffer is deprecated. Use _writableState.getBuffer " + + "instead.", + "DEP0003" + ) + }) + } catch (_) {} + })() + var realHasInstance + if ( + typeof Symbol === "function" && + Symbol.hasInstance && + typeof Function.prototype[Symbol.hasInstance] === "function" + ) { + realHasInstance = Function.prototype[Symbol.hasInstance] + Object.defineProperty(Writable, Symbol.hasInstance, { + value: function(object) { + if (realHasInstance.call(this, object)) return true + if (this !== Writable) return false + return ( + object && object._writableState instanceof WritableState + ) + } + }) + } else { + realHasInstance = function(object) { + return object instanceof this + } + } + function Writable(options) { + Duplex = Duplex || require("./_stream_duplex") + if ( + !realHasInstance.call(Writable, this) && + !(this instanceof Duplex) + ) { + return new Writable(options) + } + this._writableState = new WritableState(options, this) + this.writable = true + if (options) { + if (typeof options.write === "function") + this._write = options.write + if (typeof options.writev === "function") + this._writev = options.writev + if (typeof options.destroy === "function") + this._destroy = options.destroy + if (typeof options.final === "function") + this._final = options.final + } + Stream.call(this) + } + Writable.prototype.pipe = function() { + this.emit("error", new Error("Cannot pipe, not readable")) + } + function writeAfterEnd(stream, cb) { + var er = new Error("write after end") + stream.emit("error", er) + pna.nextTick(cb, er) + } + function validChunk(stream, state, chunk, cb) { + var valid = true + var er = false + if (chunk === null) { + er = new TypeError("May not write null values to stream") + } else if ( + typeof chunk !== "string" && + chunk !== undefined && + !state.objectMode + ) { + er = new TypeError("Invalid non-string/buffer chunk") + } + if (er) { + stream.emit("error", er) + pna.nextTick(cb, er) + valid = false + } + return valid + } + Writable.prototype.write = function(chunk, encoding, cb) { + var state = this._writableState + var ret = false + var isBuf = !state.objectMode && _isUint8Array(chunk) + if (isBuf && !Buffer.isBuffer(chunk)) { + chunk = _uint8ArrayToBuffer(chunk) + } + if (typeof encoding === "function") { + cb = encoding + encoding = null + } + if (isBuf) encoding = "buffer" + else if (!encoding) encoding = state.defaultEncoding + if (typeof cb !== "function") cb = nop + if (state.ended) writeAfterEnd(this, cb) + else if (isBuf || validChunk(this, state, chunk, cb)) { + state.pendingcb++ + ret = writeOrBuffer(this, state, isBuf, chunk, encoding, cb) + } + return ret + } + Writable.prototype.cork = function() { + var state = this._writableState + state.corked++ + } + Writable.prototype.uncork = function() { + var state = this._writableState + if (state.corked) { + state.corked-- + if ( + !state.writing && + !state.corked && + !state.finished && + !state.bufferProcessing && + state.bufferedRequest + ) + clearBuffer(this, state) + } + } + Writable.prototype.setDefaultEncoding = function setDefaultEncoding( + encoding + ) { + if (typeof encoding === "string") + encoding = encoding.toLowerCase() + if ( + !( + [ + "hex", + "utf8", + "utf-8", + "ascii", + "binary", + "base64", + "ucs2", + "ucs-2", + "utf16le", + "utf-16le", + "raw" + ].indexOf((encoding + "").toLowerCase()) > -1 + ) + ) + throw new TypeError("Unknown encoding: " + encoding) + this._writableState.defaultEncoding = encoding + return this + } + function decodeChunk(state, chunk, encoding) { + if ( + !state.objectMode && + state.decodeStrings !== false && + typeof chunk === "string" + ) { + chunk = Buffer.from(chunk, encoding) + } + return chunk + } + Object.defineProperty(Writable.prototype, "writableHighWaterMark", { + enumerable: false, + get: function() { + return this._writableState.highWaterMark + } + }) + function writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) { + if (!isBuf) { + var newChunk = decodeChunk(state, chunk, encoding) + if (chunk !== newChunk) { + isBuf = true + encoding = "buffer" + chunk = newChunk + } + } + var len = state.objectMode ? 1 : chunk.length + state.length += len + var ret = state.length < state.highWaterMark + if (!ret) state.needDrain = true + if (state.writing || state.corked) { + var last = state.lastBufferedRequest + state.lastBufferedRequest = { + chunk: chunk, + encoding: encoding, + isBuf: isBuf, + callback: cb, + next: null + } + if (last) { + last.next = state.lastBufferedRequest + } else { + state.bufferedRequest = state.lastBufferedRequest + } + state.bufferedRequestCount += 1 + } else { + doWrite(stream, state, false, len, chunk, encoding, cb) + } + return ret + } + function doWrite(stream, state, writev, len, chunk, encoding, cb) { + state.writelen = len + state.writecb = cb + state.writing = true + state.sync = true + if (writev) stream._writev(chunk, state.onwrite) + else stream._write(chunk, encoding, state.onwrite) + state.sync = false + } + function onwriteError(stream, state, sync, er, cb) { + --state.pendingcb + if (sync) { + pna.nextTick(cb, er) + pna.nextTick(finishMaybe, stream, state) + stream._writableState.errorEmitted = true + stream.emit("error", er) + } else { + cb(er) + stream._writableState.errorEmitted = true + stream.emit("error", er) + finishMaybe(stream, state) + } + } + function onwriteStateUpdate(state) { + state.writing = false + state.writecb = null + state.length -= state.writelen + state.writelen = 0 + } + function onwrite(stream, er) { + var state = stream._writableState + var sync = state.sync + var cb = state.writecb + onwriteStateUpdate(state) + if (er) onwriteError(stream, state, sync, er, cb) + else { + var finished = needFinish(state) + if ( + !finished && + !state.corked && + !state.bufferProcessing && + state.bufferedRequest + ) { + clearBuffer(stream, state) + } + if (sync) { + asyncWrite(afterWrite, stream, state, finished, cb) + } else { + afterWrite(stream, state, finished, cb) + } + } + } + function afterWrite(stream, state, finished, cb) { + if (!finished) onwriteDrain(stream, state) + state.pendingcb-- + cb() + finishMaybe(stream, state) + } + function onwriteDrain(stream, state) { + if (state.length === 0 && state.needDrain) { + state.needDrain = false + stream.emit("drain") + } + } + function clearBuffer(stream, state) { + state.bufferProcessing = true + var entry = state.bufferedRequest + if (stream._writev && entry && entry.next) { + var l = state.bufferedRequestCount + var buffer = new Array(l) + var holder = state.corkedRequestsFree + holder.entry = entry + var count = 0 + var allBuffers = true + while (entry) { + buffer[count] = entry + if (!entry.isBuf) allBuffers = false + entry = entry.next + count += 1 + } + buffer.allBuffers = allBuffers + doWrite( + stream, + state, + true, + state.length, + buffer, + "", + holder.finish + ) + state.pendingcb++ + state.lastBufferedRequest = null + if (holder.next) { + state.corkedRequestsFree = holder.next + holder.next = null + } else { + state.corkedRequestsFree = new CorkedRequest(state) + } + state.bufferedRequestCount = 0 + } else { + while (entry) { + var chunk = entry.chunk + var encoding = entry.encoding + var cb = entry.callback + var len = state.objectMode ? 1 : chunk.length + doWrite(stream, state, false, len, chunk, encoding, cb) + entry = entry.next + state.bufferedRequestCount-- + if (state.writing) { + break + } + } + if (entry === null) state.lastBufferedRequest = null + } + state.bufferedRequest = entry + state.bufferProcessing = false + } + Writable.prototype._write = function(chunk, encoding, cb) { + cb(new Error("_write() is not implemented")) + } + Writable.prototype._writev = null + Writable.prototype.end = function(chunk, encoding, cb) { + var state = this._writableState + if (typeof chunk === "function") { + cb = chunk + chunk = null + encoding = null + } else if (typeof encoding === "function") { + cb = encoding + encoding = null + } + if (chunk !== null && chunk !== undefined) + this.write(chunk, encoding) + if (state.corked) { + state.corked = 1 + this.uncork() + } + if (!state.ending && !state.finished) endWritable(this, state, cb) + } + function needFinish(state) { + return ( + state.ending && + state.length === 0 && + state.bufferedRequest === null && + !state.finished && + !state.writing + ) + } + function callFinal(stream, state) { + stream._final(function(err) { + state.pendingcb-- + if (err) { + stream.emit("error", err) + } + state.prefinished = true + stream.emit("prefinish") + finishMaybe(stream, state) + }) + } + function prefinish(stream, state) { + if (!state.prefinished && !state.finalCalled) { + if (typeof stream._final === "function") { + state.pendingcb++ + state.finalCalled = true + pna.nextTick(callFinal, stream, state) + } else { + state.prefinished = true + stream.emit("prefinish") + } + } + } + function finishMaybe(stream, state) { + var need = needFinish(state) + if (need) { + prefinish(stream, state) + if (state.pendingcb === 0) { + state.finished = true + stream.emit("finish") + } + } + return need + } + function endWritable(stream, state, cb) { + state.ending = true + finishMaybe(stream, state) + if (cb) { + if (state.finished) pna.nextTick(cb) + else stream.once("finish", cb) + } + state.ended = true + stream.writable = false + } + function onCorkedFinish(corkReq, state, err) { + var entry = corkReq.entry + corkReq.entry = null + while (entry) { + var cb = entry.callback + state.pendingcb-- + cb(err) + entry = entry.next + } + if (state.corkedRequestsFree) { + state.corkedRequestsFree.next = corkReq + } else { + state.corkedRequestsFree = corkReq + } + } + Object.defineProperty(Writable.prototype, "destroyed", { + get: function() { + if (this._writableState === undefined) { + return false + } + return this._writableState.destroyed + }, + set: function(value) { + if (!this._writableState) { + return + } + this._writableState.destroyed = value + } + }) + Writable.prototype.destroy = destroyImpl.destroy + Writable.prototype._undestroy = destroyImpl.undestroy + Writable.prototype._destroy = function(err, cb) { + this.end() + cb(err) + } + }.call( + this, + require("_process"), + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {}, + require("timers").setImmediate + )) + }, + { + "./_stream_duplex": 13, + "./internal/streams/destroy": 19, + "./internal/streams/stream": 20, + _process: 11, + "core-util-is": 4, + inherits: 7, + "process-nextick-args": 10, + "safe-buffer": 26, + timers: 29, + "util-deprecate": 30 + } + ], + 18: [ + function(require, module, exports) { + "use strict" + function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function") + } + } + var Buffer = require("safe-buffer").Buffer + var util = require("util") + function copyBuffer(src, target, offset) { + src.copy(target, offset) + } + module.exports = (function() { + function BufferList() { + _classCallCheck(this, BufferList) + this.head = null + this.tail = null + this.length = 0 + } + BufferList.prototype.push = function push(v) { + var entry = { data: v, next: null } + if (this.length > 0) this.tail.next = entry + else this.head = entry + this.tail = entry + ++this.length + } + BufferList.prototype.unshift = function unshift(v) { + var entry = { data: v, next: this.head } + if (this.length === 0) this.tail = entry + this.head = entry + ++this.length + } + BufferList.prototype.shift = function shift() { + if (this.length === 0) return + var ret = this.head.data + if (this.length === 1) this.head = this.tail = null + else this.head = this.head.next + --this.length + return ret + } + BufferList.prototype.clear = function clear() { + this.head = this.tail = null + this.length = 0 + } + BufferList.prototype.join = function join(s) { + if (this.length === 0) return "" + var p = this.head + var ret = "" + p.data + while ((p = p.next)) { + ret += s + p.data + } + return ret + } + BufferList.prototype.concat = function concat(n) { + if (this.length === 0) return Buffer.alloc(0) + if (this.length === 1) return this.head.data + var ret = Buffer.allocUnsafe(n >>> 0) + var p = this.head + var i = 0 + while (p) { + copyBuffer(p.data, ret, i) + i += p.data.length + p = p.next + } + return ret + } + return BufferList + })() + if (util && util.inspect && util.inspect.custom) { + module.exports.prototype[util.inspect.custom] = function() { + var obj = util.inspect({ length: this.length }) + return this.constructor.name + " " + obj + } + } + }, + { "safe-buffer": 26, util: 2 } + ], + 19: [ + function(require, module, exports) { + "use strict" + var pna = require("process-nextick-args") + function destroy(err, cb) { + var _this = this + var readableDestroyed = + this._readableState && this._readableState.destroyed + var writableDestroyed = + this._writableState && this._writableState.destroyed + if (readableDestroyed || writableDestroyed) { + if (cb) { + cb(err) + } else if ( + err && + (!this._writableState || !this._writableState.errorEmitted) + ) { + pna.nextTick(emitErrorNT, this, err) + } + return this + } + if (this._readableState) { + this._readableState.destroyed = true + } + if (this._writableState) { + this._writableState.destroyed = true + } + this._destroy(err || null, function(err) { + if (!cb && err) { + pna.nextTick(emitErrorNT, _this, err) + if (_this._writableState) { + _this._writableState.errorEmitted = true + } + } else if (cb) { + cb(err) + } + }) + return this + } + function undestroy() { + if (this._readableState) { + this._readableState.destroyed = false + this._readableState.reading = false + this._readableState.ended = false + this._readableState.endEmitted = false + } + if (this._writableState) { + this._writableState.destroyed = false + this._writableState.ended = false + this._writableState.ending = false + this._writableState.finished = false + this._writableState.errorEmitted = false + } + } + function emitErrorNT(self, err) { + self.emit("error", err) + } + module.exports = { destroy: destroy, undestroy: undestroy } + }, + { "process-nextick-args": 10 } + ], + 20: [ + function(require, module, exports) { + module.exports = require("events").EventEmitter + }, + { events: 5 } + ], + 21: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var isEncoding = + Buffer.isEncoding || + function(encoding) { + encoding = "" + encoding + switch (encoding && encoding.toLowerCase()) { + case "hex": + case "utf8": + case "utf-8": + case "ascii": + case "binary": + case "base64": + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + case "raw": + return true + default: + return false + } + } + function _normalizeEncoding(enc) { + if (!enc) return "utf8" + var retried + while (true) { + switch (enc) { + case "utf8": + case "utf-8": + return "utf8" + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return "utf16le" + case "latin1": + case "binary": + return "latin1" + case "base64": + case "ascii": + case "hex": + return enc + default: + if (retried) return + enc = ("" + enc).toLowerCase() + retried = true + } + } + } + function normalizeEncoding(enc) { + var nenc = _normalizeEncoding(enc) + if ( + typeof nenc !== "string" && + (Buffer.isEncoding === isEncoding || !isEncoding(enc)) + ) + throw new Error("Unknown encoding: " + enc) + return nenc || enc + } + exports.StringDecoder = StringDecoder + function StringDecoder(encoding) { + this.encoding = normalizeEncoding(encoding) + var nb + switch (this.encoding) { + case "utf16le": + this.text = utf16Text + this.end = utf16End + nb = 4 + break + case "utf8": + this.fillLast = utf8FillLast + nb = 4 + break + case "base64": + this.text = base64Text + this.end = base64End + nb = 3 + break + default: + this.write = simpleWrite + this.end = simpleEnd + return + } + this.lastNeed = 0 + this.lastTotal = 0 + this.lastChar = Buffer.allocUnsafe(nb) + } + StringDecoder.prototype.write = function(buf) { + if (buf.length === 0) return "" + var r + var i + if (this.lastNeed) { + r = this.fillLast(buf) + if (r === undefined) return "" + i = this.lastNeed + this.lastNeed = 0 + } else { + i = 0 + } + if (i < buf.length) + return r ? r + this.text(buf, i) : this.text(buf, i) + return r || "" + } + StringDecoder.prototype.end = utf8End + StringDecoder.prototype.text = utf8Text + StringDecoder.prototype.fillLast = function(buf) { + if (this.lastNeed <= buf.length) { + buf.copy( + this.lastChar, + this.lastTotal - this.lastNeed, + 0, + this.lastNeed + ) + return this.lastChar.toString(this.encoding, 0, this.lastTotal) + } + buf.copy( + this.lastChar, + this.lastTotal - this.lastNeed, + 0, + buf.length + ) + this.lastNeed -= buf.length + } + function utf8CheckByte(byte) { + if (byte <= 127) return 0 + else if (byte >> 5 === 6) return 2 + else if (byte >> 4 === 14) return 3 + else if (byte >> 3 === 30) return 4 + return byte >> 6 === 2 ? -1 : -2 + } + function utf8CheckIncomplete(self, buf, i) { + var j = buf.length - 1 + if (j < i) return 0 + var nb = utf8CheckByte(buf[j]) + if (nb >= 0) { + if (nb > 0) self.lastNeed = nb - 1 + return nb + } + if (--j < i || nb === -2) return 0 + nb = utf8CheckByte(buf[j]) + if (nb >= 0) { + if (nb > 0) self.lastNeed = nb - 2 + return nb + } + if (--j < i || nb === -2) return 0 + nb = utf8CheckByte(buf[j]) + if (nb >= 0) { + if (nb > 0) { + if (nb === 2) nb = 0 + else self.lastNeed = nb - 3 + } + return nb + } + return 0 + } + function utf8CheckExtraBytes(self, buf, p) { + if ((buf[0] & 192) !== 128) { + self.lastNeed = 0 + return "�" + } + if (self.lastNeed > 1 && buf.length > 1) { + if ((buf[1] & 192) !== 128) { + self.lastNeed = 1 + return "�" + } + if (self.lastNeed > 2 && buf.length > 2) { + if ((buf[2] & 192) !== 128) { + self.lastNeed = 2 + return "�" + } + } + } + } + function utf8FillLast(buf) { + var p = this.lastTotal - this.lastNeed + var r = utf8CheckExtraBytes(this, buf, p) + if (r !== undefined) return r + if (this.lastNeed <= buf.length) { + buf.copy(this.lastChar, p, 0, this.lastNeed) + return this.lastChar.toString(this.encoding, 0, this.lastTotal) + } + buf.copy(this.lastChar, p, 0, buf.length) + this.lastNeed -= buf.length + } + function utf8Text(buf, i) { + var total = utf8CheckIncomplete(this, buf, i) + if (!this.lastNeed) return buf.toString("utf8", i) + this.lastTotal = total + var end = buf.length - (total - this.lastNeed) + buf.copy(this.lastChar, 0, end) + return buf.toString("utf8", i, end) + } + function utf8End(buf) { + var r = buf && buf.length ? this.write(buf) : "" + if (this.lastNeed) return r + "�" + return r + } + function utf16Text(buf, i) { + if ((buf.length - i) % 2 === 0) { + var r = buf.toString("utf16le", i) + if (r) { + var c = r.charCodeAt(r.length - 1) + if (c >= 55296 && c <= 56319) { + this.lastNeed = 2 + this.lastTotal = 4 + this.lastChar[0] = buf[buf.length - 2] + this.lastChar[1] = buf[buf.length - 1] + return r.slice(0, -1) + } + } + return r + } + this.lastNeed = 1 + this.lastTotal = 2 + this.lastChar[0] = buf[buf.length - 1] + return buf.toString("utf16le", i, buf.length - 1) + } + function utf16End(buf) { + var r = buf && buf.length ? this.write(buf) : "" + if (this.lastNeed) { + var end = this.lastTotal - this.lastNeed + return r + this.lastChar.toString("utf16le", 0, end) + } + return r + } + function base64Text(buf, i) { + var n = (buf.length - i) % 3 + if (n === 0) return buf.toString("base64", i) + this.lastNeed = 3 - n + this.lastTotal = 3 + if (n === 1) { + this.lastChar[0] = buf[buf.length - 1] + } else { + this.lastChar[0] = buf[buf.length - 2] + this.lastChar[1] = buf[buf.length - 1] + } + return buf.toString("base64", i, buf.length - n) + } + function base64End(buf) { + var r = buf && buf.length ? this.write(buf) : "" + if (this.lastNeed) + return r + this.lastChar.toString("base64", 0, 3 - this.lastNeed) + return r + } + function simpleWrite(buf) { + return buf.toString(this.encoding) + } + function simpleEnd(buf) { + return buf && buf.length ? this.write(buf) : "" + } + }, + { "safe-buffer": 26 } + ], + 22: [ + function(require, module, exports) { + module.exports = require("./readable").PassThrough + }, + { "./readable": 23 } + ], + 23: [ + function(require, module, exports) { + exports = module.exports = require("./lib/_stream_readable.js") + exports.Stream = exports + exports.Readable = exports + exports.Writable = require("./lib/_stream_writable.js") + exports.Duplex = require("./lib/_stream_duplex.js") + exports.Transform = require("./lib/_stream_transform.js") + exports.PassThrough = require("./lib/_stream_passthrough.js") + }, + { + "./lib/_stream_duplex.js": 13, + "./lib/_stream_passthrough.js": 14, + "./lib/_stream_readable.js": 15, + "./lib/_stream_transform.js": 16, + "./lib/_stream_writable.js": 17 + } + ], + 24: [ + function(require, module, exports) { + module.exports = require("./readable").Transform + }, + { "./readable": 23 } + ], + 25: [ + function(require, module, exports) { + module.exports = require("./lib/_stream_writable.js") + }, + { "./lib/_stream_writable.js": 17 } + ], + 26: [ + function(require, module, exports) { + var buffer = require("buffer") + var Buffer = buffer.Buffer + function copyProps(src, dst) { + for (var key in src) { + dst[key] = src[key] + } + } + if ( + Buffer.from && + Buffer.alloc && + Buffer.allocUnsafe && + Buffer.allocUnsafeSlow + ) { + module.exports = buffer + } else { + copyProps(buffer, exports) + exports.Buffer = SafeBuffer + } + function SafeBuffer(arg, encodingOrOffset, length) { + return Buffer(arg, encodingOrOffset, length) + } + copyProps(Buffer, SafeBuffer) + SafeBuffer.from = function(arg, encodingOrOffset, length) { + if (typeof arg === "number") { + throw new TypeError("Argument must not be a number") + } + return Buffer(arg, encodingOrOffset, length) + } + SafeBuffer.alloc = function(size, fill, encoding) { + if (typeof size !== "number") { + throw new TypeError("Argument must be a number") + } + var buf = Buffer(size) + if (fill !== undefined) { + if (typeof encoding === "string") { + buf.fill(fill, encoding) + } else { + buf.fill(fill) + } + } else { + buf.fill(0) + } + return buf + } + SafeBuffer.allocUnsafe = function(size) { + if (typeof size !== "number") { + throw new TypeError("Argument must be a number") + } + return Buffer(size) + } + SafeBuffer.allocUnsafeSlow = function(size) { + if (typeof size !== "number") { + throw new TypeError("Argument must be a number") + } + return buffer.SlowBuffer(size) + } + }, + { buffer: 3 } + ], + 27: [ + function(require, module, exports) { + module.exports = Stream + var EE = require("events").EventEmitter + var inherits = require("inherits") + inherits(Stream, EE) + Stream.Readable = require("readable-stream/readable.js") + Stream.Writable = require("readable-stream/writable.js") + Stream.Duplex = require("readable-stream/duplex.js") + Stream.Transform = require("readable-stream/transform.js") + Stream.PassThrough = require("readable-stream/passthrough.js") + Stream.Stream = Stream + function Stream() { + EE.call(this) + } + Stream.prototype.pipe = function(dest, options) { + var source = this + function ondata(chunk) { + if (dest.writable) { + if (false === dest.write(chunk) && source.pause) { + source.pause() + } + } + } + source.on("data", ondata) + function ondrain() { + if (source.readable && source.resume) { + source.resume() + } + } + dest.on("drain", ondrain) + if (!dest._isStdio && (!options || options.end !== false)) { + source.on("end", onend) + source.on("close", onclose) + } + var didOnEnd = false + function onend() { + if (didOnEnd) return + didOnEnd = true + dest.end() + } + function onclose() { + if (didOnEnd) return + didOnEnd = true + if (typeof dest.destroy === "function") dest.destroy() + } + function onerror(er) { + cleanup() + if (EE.listenerCount(this, "error") === 0) { + throw er + } + } + source.on("error", onerror) + dest.on("error", onerror) + function cleanup() { + source.removeListener("data", ondata) + dest.removeListener("drain", ondrain) + source.removeListener("end", onend) + source.removeListener("close", onclose) + source.removeListener("error", onerror) + dest.removeListener("error", onerror) + source.removeListener("end", cleanup) + source.removeListener("close", cleanup) + dest.removeListener("close", cleanup) + } + source.on("end", cleanup) + source.on("close", cleanup) + dest.on("close", cleanup) + dest.emit("pipe", source) + return dest + } + }, + { + events: 5, + inherits: 7, + "readable-stream/duplex.js": 12, + "readable-stream/passthrough.js": 22, + "readable-stream/readable.js": 23, + "readable-stream/transform.js": 24, + "readable-stream/writable.js": 25 + } + ], + 28: [ + function(require, module, exports) { + arguments[4][21][0].apply(exports, arguments) + }, + { dup: 21, "safe-buffer": 26 } + ], + 29: [ + function(require, module, exports) { + ;(function(setImmediate, clearImmediate) { + var nextTick = require("process/browser.js").nextTick + var apply = Function.prototype.apply + var slice = Array.prototype.slice + var immediateIds = {} + var nextImmediateId = 0 + exports.setTimeout = function() { + return new Timeout( + apply.call(setTimeout, window, arguments), + clearTimeout + ) + } + exports.setInterval = function() { + return new Timeout( + apply.call(setInterval, window, arguments), + clearInterval + ) + } + exports.clearTimeout = exports.clearInterval = function(timeout) { + timeout.close() + } + function Timeout(id, clearFn) { + this._id = id + this._clearFn = clearFn + } + Timeout.prototype.unref = Timeout.prototype.ref = function() {} + Timeout.prototype.close = function() { + this._clearFn.call(window, this._id) + } + exports.enroll = function(item, msecs) { + clearTimeout(item._idleTimeoutId) + item._idleTimeout = msecs + } + exports.unenroll = function(item) { + clearTimeout(item._idleTimeoutId) + item._idleTimeout = -1 + } + exports._unrefActive = exports.active = function(item) { + clearTimeout(item._idleTimeoutId) + var msecs = item._idleTimeout + if (msecs >= 0) { + item._idleTimeoutId = setTimeout(function onTimeout() { + if (item._onTimeout) item._onTimeout() + }, msecs) + } + } + exports.setImmediate = + typeof setImmediate === "function" + ? setImmediate + : function(fn) { + var id = nextImmediateId++ + var args = + arguments.length < 2 ? false : slice.call(arguments, 1) + immediateIds[id] = true + nextTick(function onNextTick() { + if (immediateIds[id]) { + if (args) { + fn.apply(null, args) + } else { + fn.call(null) + } + exports.clearImmediate(id) + } + }) + return id + } + exports.clearImmediate = + typeof clearImmediate === "function" + ? clearImmediate + : function(id) { + delete immediateIds[id] + } + }.call( + this, + require("timers").setImmediate, + require("timers").clearImmediate + )) + }, + { "process/browser.js": 11, timers: 29 } + ], + 30: [ + function(require, module, exports) { + ;(function(global) { + module.exports = deprecate + function deprecate(fn, msg) { + if (config("noDeprecation")) { + return fn + } + var warned = false + function deprecated() { + if (!warned) { + if (config("throwDeprecation")) { + throw new Error(msg) + } else if (config("traceDeprecation")) { + console.trace(msg) + } else { + console.warn(msg) + } + warned = true + } + return fn.apply(this, arguments) + } + return deprecated + } + function config(name) { + try { + if (!global.localStorage) return false + } catch (_) { + return false + } + var val = global.localStorage[name] + if (null == val) return false + return String(val).toLowerCase() === "true" + } + }.call( + this, + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + {} + ], + 31: [ + function(require, module, exports) { + var Buffer = require("safe-buffer").Buffer + function check(buffer) { + if (buffer.length < 8) return false + if (buffer.length > 72) return false + if (buffer[0] !== 48) return false + if (buffer[1] !== buffer.length - 2) return false + if (buffer[2] !== 2) return false + var lenR = buffer[3] + if (lenR === 0) return false + if (5 + lenR >= buffer.length) return false + if (buffer[4 + lenR] !== 2) return false + var lenS = buffer[5 + lenR] + if (lenS === 0) return false + if (6 + lenR + lenS !== buffer.length) return false + if (buffer[4] & 128) return false + if (lenR > 1 && buffer[4] === 0 && !(buffer[5] & 128)) return false + if (buffer[lenR + 6] & 128) return false + if (lenS > 1 && buffer[lenR + 6] === 0 && !(buffer[lenR + 7] & 128)) + return false + return true + } + function decode(buffer) { + if (buffer.length < 8) + throw new Error("DER sequence length is too short") + if (buffer.length > 72) + throw new Error("DER sequence length is too long") + if (buffer[0] !== 48) throw new Error("Expected DER sequence") + if (buffer[1] !== buffer.length - 2) + throw new Error("DER sequence length is invalid") + if (buffer[2] !== 2) throw new Error("Expected DER integer") + var lenR = buffer[3] + if (lenR === 0) throw new Error("R length is zero") + if (5 + lenR >= buffer.length) + throw new Error("R length is too long") + if (buffer[4 + lenR] !== 2) + throw new Error("Expected DER integer (2)") + var lenS = buffer[5 + lenR] + if (lenS === 0) throw new Error("S length is zero") + if (6 + lenR + lenS !== buffer.length) + throw new Error("S length is invalid") + if (buffer[4] & 128) throw new Error("R value is negative") + if (lenR > 1 && buffer[4] === 0 && !(buffer[5] & 128)) + throw new Error("R value excessively padded") + if (buffer[lenR + 6] & 128) throw new Error("S value is negative") + if (lenS > 1 && buffer[lenR + 6] === 0 && !(buffer[lenR + 7] & 128)) + throw new Error("S value excessively padded") + return { r: buffer.slice(4, 4 + lenR), s: buffer.slice(6 + lenR) } + } + function encode(r, s) { + var lenR = r.length + var lenS = s.length + if (lenR === 0) throw new Error("R length is zero") + if (lenS === 0) throw new Error("S length is zero") + if (lenR > 33) throw new Error("R length is too long") + if (lenS > 33) throw new Error("S length is too long") + if (r[0] & 128) throw new Error("R value is negative") + if (s[0] & 128) throw new Error("S value is negative") + if (lenR > 1 && r[0] === 0 && !(r[1] & 128)) + throw new Error("R value excessively padded") + if (lenS > 1 && s[0] === 0 && !(s[1] & 128)) + throw new Error("S value excessively padded") + var signature = Buffer.allocUnsafe(6 + lenR + lenS) + signature[0] = 48 + signature[1] = signature.length - 2 + signature[2] = 2 + signature[3] = r.length + r.copy(signature, 4) + signature[4 + lenR] = 2 + signature[5 + lenR] = s.length + s.copy(signature, 6 + lenR) + return signature + } + module.exports = { check: check, decode: decode, encode: encode } + }, + { "safe-buffer": 71 } + ], + 32: [ + function(require, module, exports) { + ;(function(module, exports) { + "use strict" + function assert(val, msg) { + if (!val) throw new Error(msg || "Assertion failed") + } + function inherits(ctor, superCtor) { + ctor.super_ = superCtor + var TempCtor = function() {} + TempCtor.prototype = superCtor.prototype + ctor.prototype = new TempCtor() + ctor.prototype.constructor = ctor + } + function BN(number, base, endian) { + if (BN.isBN(number)) { + return number + } + this.negative = 0 + this.words = null + this.length = 0 + this.red = null + if (number !== null) { + if (base === "le" || base === "be") { + endian = base + base = 10 + } + this._init(number || 0, base || 10, endian || "be") + } + } + if (typeof module === "object") { + module.exports = BN + } else { + exports.BN = BN + } + BN.BN = BN + BN.wordSize = 26 + var Buffer + try { + Buffer = require("buffer").Buffer + } catch (e) {} + BN.isBN = function isBN(num) { + if (num instanceof BN) { + return true + } + return ( + num !== null && + typeof num === "object" && + num.constructor.wordSize === BN.wordSize && + Array.isArray(num.words) + ) + } + BN.max = function max(left, right) { + if (left.cmp(right) > 0) return left + return right + } + BN.min = function min(left, right) { + if (left.cmp(right) < 0) return left + return right + } + BN.prototype._init = function init(number, base, endian) { + if (typeof number === "number") { + return this._initNumber(number, base, endian) + } + if (typeof number === "object") { + return this._initArray(number, base, endian) + } + if (base === "hex") { + base = 16 + } + assert(base === (base | 0) && base >= 2 && base <= 36) + number = number.toString().replace(/\s+/g, "") + var start = 0 + if (number[0] === "-") { + start++ + } + if (base === 16) { + this._parseHex(number, start) + } else { + this._parseBase(number, base, start) + } + if (number[0] === "-") { + this.negative = 1 + } + this.strip() + if (endian !== "le") return + this._initArray(this.toArray(), base, endian) + } + BN.prototype._initNumber = function _initNumber( + number, + base, + endian + ) { + if (number < 0) { + this.negative = 1 + number = -number + } + if (number < 67108864) { + this.words = [number & 67108863] + this.length = 1 + } else if (number < 4503599627370496) { + this.words = [number & 67108863, (number / 67108864) & 67108863] + this.length = 2 + } else { + assert(number < 9007199254740992) + this.words = [ + number & 67108863, + (number / 67108864) & 67108863, + 1 + ] + this.length = 3 + } + if (endian !== "le") return + this._initArray(this.toArray(), base, endian) + } + BN.prototype._initArray = function _initArray( + number, + base, + endian + ) { + assert(typeof number.length === "number") + if (number.length <= 0) { + this.words = [0] + this.length = 1 + return this + } + this.length = Math.ceil(number.length / 3) + this.words = new Array(this.length) + for (var i = 0; i < this.length; i++) { + this.words[i] = 0 + } + var j, w + var off = 0 + if (endian === "be") { + for (i = number.length - 1, j = 0; i >= 0; i -= 3) { + w = number[i] | (number[i - 1] << 8) | (number[i - 2] << 16) + this.words[j] |= (w << off) & 67108863 + this.words[j + 1] = (w >>> (26 - off)) & 67108863 + off += 24 + if (off >= 26) { + off -= 26 + j++ + } + } + } else if (endian === "le") { + for (i = 0, j = 0; i < number.length; i += 3) { + w = number[i] | (number[i + 1] << 8) | (number[i + 2] << 16) + this.words[j] |= (w << off) & 67108863 + this.words[j + 1] = (w >>> (26 - off)) & 67108863 + off += 24 + if (off >= 26) { + off -= 26 + j++ + } + } + } + return this.strip() + } + function parseHex(str, start, end) { + var r = 0 + var len = Math.min(str.length, end) + for (var i = start; i < len; i++) { + var c = str.charCodeAt(i) - 48 + r <<= 4 + if (c >= 49 && c <= 54) { + r |= c - 49 + 10 + } else if (c >= 17 && c <= 22) { + r |= c - 17 + 10 + } else { + r |= c & 15 + } + } + return r + } + BN.prototype._parseHex = function _parseHex(number, start) { + this.length = Math.ceil((number.length - start) / 6) + this.words = new Array(this.length) + for (var i = 0; i < this.length; i++) { + this.words[i] = 0 + } + var j, w + var off = 0 + for (i = number.length - 6, j = 0; i >= start; i -= 6) { + w = parseHex(number, i, i + 6) + this.words[j] |= (w << off) & 67108863 + this.words[j + 1] |= (w >>> (26 - off)) & 4194303 + off += 24 + if (off >= 26) { + off -= 26 + j++ + } + } + if (i + 6 !== start) { + w = parseHex(number, start, i + 6) + this.words[j] |= (w << off) & 67108863 + this.words[j + 1] |= (w >>> (26 - off)) & 4194303 + } + this.strip() + } + function parseBase(str, start, end, mul) { + var r = 0 + var len = Math.min(str.length, end) + for (var i = start; i < len; i++) { + var c = str.charCodeAt(i) - 48 + r *= mul + if (c >= 49) { + r += c - 49 + 10 + } else if (c >= 17) { + r += c - 17 + 10 + } else { + r += c + } + } + return r + } + BN.prototype._parseBase = function _parseBase(number, base, start) { + this.words = [0] + this.length = 1 + for ( + var limbLen = 0, limbPow = 1; + limbPow <= 67108863; + limbPow *= base + ) { + limbLen++ + } + limbLen-- + limbPow = (limbPow / base) | 0 + var total = number.length - start + var mod = total % limbLen + var end = Math.min(total, total - mod) + start + var word = 0 + for (var i = start; i < end; i += limbLen) { + word = parseBase(number, i, i + limbLen, base) + this.imuln(limbPow) + if (this.words[0] + word < 67108864) { + this.words[0] += word + } else { + this._iaddn(word) + } + } + if (mod !== 0) { + var pow = 1 + word = parseBase(number, i, number.length, base) + for (i = 0; i < mod; i++) { + pow *= base + } + this.imuln(pow) + if (this.words[0] + word < 67108864) { + this.words[0] += word + } else { + this._iaddn(word) + } + } + } + BN.prototype.copy = function copy(dest) { + dest.words = new Array(this.length) + for (var i = 0; i < this.length; i++) { + dest.words[i] = this.words[i] + } + dest.length = this.length + dest.negative = this.negative + dest.red = this.red + } + BN.prototype.clone = function clone() { + var r = new BN(null) + this.copy(r) + return r + } + BN.prototype._expand = function _expand(size) { + while (this.length < size) { + this.words[this.length++] = 0 + } + return this + } + BN.prototype.strip = function strip() { + while (this.length > 1 && this.words[this.length - 1] === 0) { + this.length-- + } + return this._normSign() + } + BN.prototype._normSign = function _normSign() { + if (this.length === 1 && this.words[0] === 0) { + this.negative = 0 + } + return this + } + BN.prototype.inspect = function inspect() { + return (this.red ? "" + } + var zeros = [ + "", + "0", + "00", + "000", + "0000", + "00000", + "000000", + "0000000", + "00000000", + "000000000", + "0000000000", + "00000000000", + "000000000000", + "0000000000000", + "00000000000000", + "000000000000000", + "0000000000000000", + "00000000000000000", + "000000000000000000", + "0000000000000000000", + "00000000000000000000", + "000000000000000000000", + "0000000000000000000000", + "00000000000000000000000", + "000000000000000000000000", + "0000000000000000000000000" + ] + var groupSizes = [ + 0, + 0, + 25, + 16, + 12, + 11, + 10, + 9, + 8, + 8, + 7, + 7, + 7, + 7, + 6, + 6, + 6, + 6, + 6, + 6, + 6, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5 + ] + var groupBases = [ + 0, + 0, + 33554432, + 43046721, + 16777216, + 48828125, + 60466176, + 40353607, + 16777216, + 43046721, + 1e7, + 19487171, + 35831808, + 62748517, + 7529536, + 11390625, + 16777216, + 24137569, + 34012224, + 47045881, + 64e6, + 4084101, + 5153632, + 6436343, + 7962624, + 9765625, + 11881376, + 14348907, + 17210368, + 20511149, + 243e5, + 28629151, + 33554432, + 39135393, + 45435424, + 52521875, + 60466176 + ] + BN.prototype.toString = function toString(base, padding) { + base = base || 10 + padding = padding | 0 || 1 + var out + if (base === 16 || base === "hex") { + out = "" + var off = 0 + var carry = 0 + for (var i = 0; i < this.length; i++) { + var w = this.words[i] + var word = (((w << off) | carry) & 16777215).toString(16) + carry = (w >>> (24 - off)) & 16777215 + if (carry !== 0 || i !== this.length - 1) { + out = zeros[6 - word.length] + word + out + } else { + out = word + out + } + off += 2 + if (off >= 26) { + off -= 26 + i-- + } + } + if (carry !== 0) { + out = carry.toString(16) + out + } + while (out.length % padding !== 0) { + out = "0" + out + } + if (this.negative !== 0) { + out = "-" + out + } + return out + } + if (base === (base | 0) && base >= 2 && base <= 36) { + var groupSize = groupSizes[base] + var groupBase = groupBases[base] + out = "" + var c = this.clone() + c.negative = 0 + while (!c.isZero()) { + var r = c.modn(groupBase).toString(base) + c = c.idivn(groupBase) + if (!c.isZero()) { + out = zeros[groupSize - r.length] + r + out + } else { + out = r + out + } + } + if (this.isZero()) { + out = "0" + out + } + while (out.length % padding !== 0) { + out = "0" + out + } + if (this.negative !== 0) { + out = "-" + out + } + return out + } + assert(false, "Base should be between 2 and 36") + } + BN.prototype.toNumber = function toNumber() { + var ret = this.words[0] + if (this.length === 2) { + ret += this.words[1] * 67108864 + } else if (this.length === 3 && this.words[2] === 1) { + ret += 4503599627370496 + this.words[1] * 67108864 + } else if (this.length > 2) { + assert(false, "Number can only safely store up to 53 bits") + } + return this.negative !== 0 ? -ret : ret + } + BN.prototype.toJSON = function toJSON() { + return this.toString(16) + } + BN.prototype.toBuffer = function toBuffer(endian, length) { + assert(typeof Buffer !== "undefined") + return this.toArrayLike(Buffer, endian, length) + } + BN.prototype.toArray = function toArray(endian, length) { + return this.toArrayLike(Array, endian, length) + } + BN.prototype.toArrayLike = function toArrayLike( + ArrayType, + endian, + length + ) { + var byteLength = this.byteLength() + var reqLength = length || Math.max(1, byteLength) + assert( + byteLength <= reqLength, + "byte array longer than desired length" + ) + assert(reqLength > 0, "Requested array length <= 0") + this.strip() + var littleEndian = endian === "le" + var res = new ArrayType(reqLength) + var b, i + var q = this.clone() + if (!littleEndian) { + for (i = 0; i < reqLength - byteLength; i++) { + res[i] = 0 + } + for (i = 0; !q.isZero(); i++) { + b = q.andln(255) + q.iushrn(8) + res[reqLength - i - 1] = b + } + } else { + for (i = 0; !q.isZero(); i++) { + b = q.andln(255) + q.iushrn(8) + res[i] = b + } + for (; i < reqLength; i++) { + res[i] = 0 + } + } + return res + } + if (Math.clz32) { + BN.prototype._countBits = function _countBits(w) { + return 32 - Math.clz32(w) + } + } else { + BN.prototype._countBits = function _countBits(w) { + var t = w + var r = 0 + if (t >= 4096) { + r += 13 + t >>>= 13 + } + if (t >= 64) { + r += 7 + t >>>= 7 + } + if (t >= 8) { + r += 4 + t >>>= 4 + } + if (t >= 2) { + r += 2 + t >>>= 2 + } + return r + t + } + } + BN.prototype._zeroBits = function _zeroBits(w) { + if (w === 0) return 26 + var t = w + var r = 0 + if ((t & 8191) === 0) { + r += 13 + t >>>= 13 + } + if ((t & 127) === 0) { + r += 7 + t >>>= 7 + } + if ((t & 15) === 0) { + r += 4 + t >>>= 4 + } + if ((t & 3) === 0) { + r += 2 + t >>>= 2 + } + if ((t & 1) === 0) { + r++ + } + return r + } + BN.prototype.bitLength = function bitLength() { + var w = this.words[this.length - 1] + var hi = this._countBits(w) + return (this.length - 1) * 26 + hi + } + function toBitArray(num) { + var w = new Array(num.bitLength()) + for (var bit = 0; bit < w.length; bit++) { + var off = (bit / 26) | 0 + var wbit = bit % 26 + w[bit] = (num.words[off] & (1 << wbit)) >>> wbit + } + return w + } + BN.prototype.zeroBits = function zeroBits() { + if (this.isZero()) return 0 + var r = 0 + for (var i = 0; i < this.length; i++) { + var b = this._zeroBits(this.words[i]) + r += b + if (b !== 26) break + } + return r + } + BN.prototype.byteLength = function byteLength() { + return Math.ceil(this.bitLength() / 8) + } + BN.prototype.toTwos = function toTwos(width) { + if (this.negative !== 0) { + return this.abs() + .inotn(width) + .iaddn(1) + } + return this.clone() + } + BN.prototype.fromTwos = function fromTwos(width) { + if (this.testn(width - 1)) { + return this.notn(width) + .iaddn(1) + .ineg() + } + return this.clone() + } + BN.prototype.isNeg = function isNeg() { + return this.negative !== 0 + } + BN.prototype.neg = function neg() { + return this.clone().ineg() + } + BN.prototype.ineg = function ineg() { + if (!this.isZero()) { + this.negative ^= 1 + } + return this + } + BN.prototype.iuor = function iuor(num) { + while (this.length < num.length) { + this.words[this.length++] = 0 + } + for (var i = 0; i < num.length; i++) { + this.words[i] = this.words[i] | num.words[i] + } + return this.strip() + } + BN.prototype.ior = function ior(num) { + assert((this.negative | num.negative) === 0) + return this.iuor(num) + } + BN.prototype.or = function or(num) { + if (this.length > num.length) return this.clone().ior(num) + return num.clone().ior(this) + } + BN.prototype.uor = function uor(num) { + if (this.length > num.length) return this.clone().iuor(num) + return num.clone().iuor(this) + } + BN.prototype.iuand = function iuand(num) { + var b + if (this.length > num.length) { + b = num + } else { + b = this + } + for (var i = 0; i < b.length; i++) { + this.words[i] = this.words[i] & num.words[i] + } + this.length = b.length + return this.strip() + } + BN.prototype.iand = function iand(num) { + assert((this.negative | num.negative) === 0) + return this.iuand(num) + } + BN.prototype.and = function and(num) { + if (this.length > num.length) return this.clone().iand(num) + return num.clone().iand(this) + } + BN.prototype.uand = function uand(num) { + if (this.length > num.length) return this.clone().iuand(num) + return num.clone().iuand(this) + } + BN.prototype.iuxor = function iuxor(num) { + var a + var b + if (this.length > num.length) { + a = this + b = num + } else { + a = num + b = this + } + for (var i = 0; i < b.length; i++) { + this.words[i] = a.words[i] ^ b.words[i] + } + if (this !== a) { + for (; i < a.length; i++) { + this.words[i] = a.words[i] + } + } + this.length = a.length + return this.strip() + } + BN.prototype.ixor = function ixor(num) { + assert((this.negative | num.negative) === 0) + return this.iuxor(num) + } + BN.prototype.xor = function xor(num) { + if (this.length > num.length) return this.clone().ixor(num) + return num.clone().ixor(this) + } + BN.prototype.uxor = function uxor(num) { + if (this.length > num.length) return this.clone().iuxor(num) + return num.clone().iuxor(this) + } + BN.prototype.inotn = function inotn(width) { + assert(typeof width === "number" && width >= 0) + var bytesNeeded = Math.ceil(width / 26) | 0 + var bitsLeft = width % 26 + this._expand(bytesNeeded) + if (bitsLeft > 0) { + bytesNeeded-- + } + for (var i = 0; i < bytesNeeded; i++) { + this.words[i] = ~this.words[i] & 67108863 + } + if (bitsLeft > 0) { + this.words[i] = ~this.words[i] & (67108863 >> (26 - bitsLeft)) + } + return this.strip() + } + BN.prototype.notn = function notn(width) { + return this.clone().inotn(width) + } + BN.prototype.setn = function setn(bit, val) { + assert(typeof bit === "number" && bit >= 0) + var off = (bit / 26) | 0 + var wbit = bit % 26 + this._expand(off + 1) + if (val) { + this.words[off] = this.words[off] | (1 << wbit) + } else { + this.words[off] = this.words[off] & ~(1 << wbit) + } + return this.strip() + } + BN.prototype.iadd = function iadd(num) { + var r + if (this.negative !== 0 && num.negative === 0) { + this.negative = 0 + r = this.isub(num) + this.negative ^= 1 + return this._normSign() + } else if (this.negative === 0 && num.negative !== 0) { + num.negative = 0 + r = this.isub(num) + num.negative = 1 + return r._normSign() + } + var a, b + if (this.length > num.length) { + a = this + b = num + } else { + a = num + b = this + } + var carry = 0 + for (var i = 0; i < b.length; i++) { + r = (a.words[i] | 0) + (b.words[i] | 0) + carry + this.words[i] = r & 67108863 + carry = r >>> 26 + } + for (; carry !== 0 && i < a.length; i++) { + r = (a.words[i] | 0) + carry + this.words[i] = r & 67108863 + carry = r >>> 26 + } + this.length = a.length + if (carry !== 0) { + this.words[this.length] = carry + this.length++ + } else if (a !== this) { + for (; i < a.length; i++) { + this.words[i] = a.words[i] + } + } + return this + } + BN.prototype.add = function add(num) { + var res + if (num.negative !== 0 && this.negative === 0) { + num.negative = 0 + res = this.sub(num) + num.negative ^= 1 + return res + } else if (num.negative === 0 && this.negative !== 0) { + this.negative = 0 + res = num.sub(this) + this.negative = 1 + return res + } + if (this.length > num.length) return this.clone().iadd(num) + return num.clone().iadd(this) + } + BN.prototype.isub = function isub(num) { + if (num.negative !== 0) { + num.negative = 0 + var r = this.iadd(num) + num.negative = 1 + return r._normSign() + } else if (this.negative !== 0) { + this.negative = 0 + this.iadd(num) + this.negative = 1 + return this._normSign() + } + var cmp = this.cmp(num) + if (cmp === 0) { + this.negative = 0 + this.length = 1 + this.words[0] = 0 + return this + } + var a, b + if (cmp > 0) { + a = this + b = num + } else { + a = num + b = this + } + var carry = 0 + for (var i = 0; i < b.length; i++) { + r = (a.words[i] | 0) - (b.words[i] | 0) + carry + carry = r >> 26 + this.words[i] = r & 67108863 + } + for (; carry !== 0 && i < a.length; i++) { + r = (a.words[i] | 0) + carry + carry = r >> 26 + this.words[i] = r & 67108863 + } + if (carry === 0 && i < a.length && a !== this) { + for (; i < a.length; i++) { + this.words[i] = a.words[i] + } + } + this.length = Math.max(this.length, i) + if (a !== this) { + this.negative = 1 + } + return this.strip() + } + BN.prototype.sub = function sub(num) { + return this.clone().isub(num) + } + function smallMulTo(self, num, out) { + out.negative = num.negative ^ self.negative + var len = (self.length + num.length) | 0 + out.length = len + len = (len - 1) | 0 + var a = self.words[0] | 0 + var b = num.words[0] | 0 + var r = a * b + var lo = r & 67108863 + var carry = (r / 67108864) | 0 + out.words[0] = lo + for (var k = 1; k < len; k++) { + var ncarry = carry >>> 26 + var rword = carry & 67108863 + var maxJ = Math.min(k, num.length - 1) + for (var j = Math.max(0, k - self.length + 1); j <= maxJ; j++) { + var i = (k - j) | 0 + a = self.words[i] | 0 + b = num.words[j] | 0 + r = a * b + rword + ncarry += (r / 67108864) | 0 + rword = r & 67108863 + } + out.words[k] = rword | 0 + carry = ncarry | 0 + } + if (carry !== 0) { + out.words[k] = carry | 0 + } else { + out.length-- + } + return out.strip() + } + var comb10MulTo = function comb10MulTo(self, num, out) { + var a = self.words + var b = num.words + var o = out.words + var c = 0 + var lo + var mid + var hi + var a0 = a[0] | 0 + var al0 = a0 & 8191 + var ah0 = a0 >>> 13 + var a1 = a[1] | 0 + var al1 = a1 & 8191 + var ah1 = a1 >>> 13 + var a2 = a[2] | 0 + var al2 = a2 & 8191 + var ah2 = a2 >>> 13 + var a3 = a[3] | 0 + var al3 = a3 & 8191 + var ah3 = a3 >>> 13 + var a4 = a[4] | 0 + var al4 = a4 & 8191 + var ah4 = a4 >>> 13 + var a5 = a[5] | 0 + var al5 = a5 & 8191 + var ah5 = a5 >>> 13 + var a6 = a[6] | 0 + var al6 = a6 & 8191 + var ah6 = a6 >>> 13 + var a7 = a[7] | 0 + var al7 = a7 & 8191 + var ah7 = a7 >>> 13 + var a8 = a[8] | 0 + var al8 = a8 & 8191 + var ah8 = a8 >>> 13 + var a9 = a[9] | 0 + var al9 = a9 & 8191 + var ah9 = a9 >>> 13 + var b0 = b[0] | 0 + var bl0 = b0 & 8191 + var bh0 = b0 >>> 13 + var b1 = b[1] | 0 + var bl1 = b1 & 8191 + var bh1 = b1 >>> 13 + var b2 = b[2] | 0 + var bl2 = b2 & 8191 + var bh2 = b2 >>> 13 + var b3 = b[3] | 0 + var bl3 = b3 & 8191 + var bh3 = b3 >>> 13 + var b4 = b[4] | 0 + var bl4 = b4 & 8191 + var bh4 = b4 >>> 13 + var b5 = b[5] | 0 + var bl5 = b5 & 8191 + var bh5 = b5 >>> 13 + var b6 = b[6] | 0 + var bl6 = b6 & 8191 + var bh6 = b6 >>> 13 + var b7 = b[7] | 0 + var bl7 = b7 & 8191 + var bh7 = b7 >>> 13 + var b8 = b[8] | 0 + var bl8 = b8 & 8191 + var bh8 = b8 >>> 13 + var b9 = b[9] | 0 + var bl9 = b9 & 8191 + var bh9 = b9 >>> 13 + out.negative = self.negative ^ num.negative + out.length = 19 + lo = Math.imul(al0, bl0) + mid = Math.imul(al0, bh0) + mid = (mid + Math.imul(ah0, bl0)) | 0 + hi = Math.imul(ah0, bh0) + var w0 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w0 >>> 26)) | 0 + w0 &= 67108863 + lo = Math.imul(al1, bl0) + mid = Math.imul(al1, bh0) + mid = (mid + Math.imul(ah1, bl0)) | 0 + hi = Math.imul(ah1, bh0) + lo = (lo + Math.imul(al0, bl1)) | 0 + mid = (mid + Math.imul(al0, bh1)) | 0 + mid = (mid + Math.imul(ah0, bl1)) | 0 + hi = (hi + Math.imul(ah0, bh1)) | 0 + var w1 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w1 >>> 26)) | 0 + w1 &= 67108863 + lo = Math.imul(al2, bl0) + mid = Math.imul(al2, bh0) + mid = (mid + Math.imul(ah2, bl0)) | 0 + hi = Math.imul(ah2, bh0) + lo = (lo + Math.imul(al1, bl1)) | 0 + mid = (mid + Math.imul(al1, bh1)) | 0 + mid = (mid + Math.imul(ah1, bl1)) | 0 + hi = (hi + Math.imul(ah1, bh1)) | 0 + lo = (lo + Math.imul(al0, bl2)) | 0 + mid = (mid + Math.imul(al0, bh2)) | 0 + mid = (mid + Math.imul(ah0, bl2)) | 0 + hi = (hi + Math.imul(ah0, bh2)) | 0 + var w2 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w2 >>> 26)) | 0 + w2 &= 67108863 + lo = Math.imul(al3, bl0) + mid = Math.imul(al3, bh0) + mid = (mid + Math.imul(ah3, bl0)) | 0 + hi = Math.imul(ah3, bh0) + lo = (lo + Math.imul(al2, bl1)) | 0 + mid = (mid + Math.imul(al2, bh1)) | 0 + mid = (mid + Math.imul(ah2, bl1)) | 0 + hi = (hi + Math.imul(ah2, bh1)) | 0 + lo = (lo + Math.imul(al1, bl2)) | 0 + mid = (mid + Math.imul(al1, bh2)) | 0 + mid = (mid + Math.imul(ah1, bl2)) | 0 + hi = (hi + Math.imul(ah1, bh2)) | 0 + lo = (lo + Math.imul(al0, bl3)) | 0 + mid = (mid + Math.imul(al0, bh3)) | 0 + mid = (mid + Math.imul(ah0, bl3)) | 0 + hi = (hi + Math.imul(ah0, bh3)) | 0 + var w3 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w3 >>> 26)) | 0 + w3 &= 67108863 + lo = Math.imul(al4, bl0) + mid = Math.imul(al4, bh0) + mid = (mid + Math.imul(ah4, bl0)) | 0 + hi = Math.imul(ah4, bh0) + lo = (lo + Math.imul(al3, bl1)) | 0 + mid = (mid + Math.imul(al3, bh1)) | 0 + mid = (mid + Math.imul(ah3, bl1)) | 0 + hi = (hi + Math.imul(ah3, bh1)) | 0 + lo = (lo + Math.imul(al2, bl2)) | 0 + mid = (mid + Math.imul(al2, bh2)) | 0 + mid = (mid + Math.imul(ah2, bl2)) | 0 + hi = (hi + Math.imul(ah2, bh2)) | 0 + lo = (lo + Math.imul(al1, bl3)) | 0 + mid = (mid + Math.imul(al1, bh3)) | 0 + mid = (mid + Math.imul(ah1, bl3)) | 0 + hi = (hi + Math.imul(ah1, bh3)) | 0 + lo = (lo + Math.imul(al0, bl4)) | 0 + mid = (mid + Math.imul(al0, bh4)) | 0 + mid = (mid + Math.imul(ah0, bl4)) | 0 + hi = (hi + Math.imul(ah0, bh4)) | 0 + var w4 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w4 >>> 26)) | 0 + w4 &= 67108863 + lo = Math.imul(al5, bl0) + mid = Math.imul(al5, bh0) + mid = (mid + Math.imul(ah5, bl0)) | 0 + hi = Math.imul(ah5, bh0) + lo = (lo + Math.imul(al4, bl1)) | 0 + mid = (mid + Math.imul(al4, bh1)) | 0 + mid = (mid + Math.imul(ah4, bl1)) | 0 + hi = (hi + Math.imul(ah4, bh1)) | 0 + lo = (lo + Math.imul(al3, bl2)) | 0 + mid = (mid + Math.imul(al3, bh2)) | 0 + mid = (mid + Math.imul(ah3, bl2)) | 0 + hi = (hi + Math.imul(ah3, bh2)) | 0 + lo = (lo + Math.imul(al2, bl3)) | 0 + mid = (mid + Math.imul(al2, bh3)) | 0 + mid = (mid + Math.imul(ah2, bl3)) | 0 + hi = (hi + Math.imul(ah2, bh3)) | 0 + lo = (lo + Math.imul(al1, bl4)) | 0 + mid = (mid + Math.imul(al1, bh4)) | 0 + mid = (mid + Math.imul(ah1, bl4)) | 0 + hi = (hi + Math.imul(ah1, bh4)) | 0 + lo = (lo + Math.imul(al0, bl5)) | 0 + mid = (mid + Math.imul(al0, bh5)) | 0 + mid = (mid + Math.imul(ah0, bl5)) | 0 + hi = (hi + Math.imul(ah0, bh5)) | 0 + var w5 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w5 >>> 26)) | 0 + w5 &= 67108863 + lo = Math.imul(al6, bl0) + mid = Math.imul(al6, bh0) + mid = (mid + Math.imul(ah6, bl0)) | 0 + hi = Math.imul(ah6, bh0) + lo = (lo + Math.imul(al5, bl1)) | 0 + mid = (mid + Math.imul(al5, bh1)) | 0 + mid = (mid + Math.imul(ah5, bl1)) | 0 + hi = (hi + Math.imul(ah5, bh1)) | 0 + lo = (lo + Math.imul(al4, bl2)) | 0 + mid = (mid + Math.imul(al4, bh2)) | 0 + mid = (mid + Math.imul(ah4, bl2)) | 0 + hi = (hi + Math.imul(ah4, bh2)) | 0 + lo = (lo + Math.imul(al3, bl3)) | 0 + mid = (mid + Math.imul(al3, bh3)) | 0 + mid = (mid + Math.imul(ah3, bl3)) | 0 + hi = (hi + Math.imul(ah3, bh3)) | 0 + lo = (lo + Math.imul(al2, bl4)) | 0 + mid = (mid + Math.imul(al2, bh4)) | 0 + mid = (mid + Math.imul(ah2, bl4)) | 0 + hi = (hi + Math.imul(ah2, bh4)) | 0 + lo = (lo + Math.imul(al1, bl5)) | 0 + mid = (mid + Math.imul(al1, bh5)) | 0 + mid = (mid + Math.imul(ah1, bl5)) | 0 + hi = (hi + Math.imul(ah1, bh5)) | 0 + lo = (lo + Math.imul(al0, bl6)) | 0 + mid = (mid + Math.imul(al0, bh6)) | 0 + mid = (mid + Math.imul(ah0, bl6)) | 0 + hi = (hi + Math.imul(ah0, bh6)) | 0 + var w6 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w6 >>> 26)) | 0 + w6 &= 67108863 + lo = Math.imul(al7, bl0) + mid = Math.imul(al7, bh0) + mid = (mid + Math.imul(ah7, bl0)) | 0 + hi = Math.imul(ah7, bh0) + lo = (lo + Math.imul(al6, bl1)) | 0 + mid = (mid + Math.imul(al6, bh1)) | 0 + mid = (mid + Math.imul(ah6, bl1)) | 0 + hi = (hi + Math.imul(ah6, bh1)) | 0 + lo = (lo + Math.imul(al5, bl2)) | 0 + mid = (mid + Math.imul(al5, bh2)) | 0 + mid = (mid + Math.imul(ah5, bl2)) | 0 + hi = (hi + Math.imul(ah5, bh2)) | 0 + lo = (lo + Math.imul(al4, bl3)) | 0 + mid = (mid + Math.imul(al4, bh3)) | 0 + mid = (mid + Math.imul(ah4, bl3)) | 0 + hi = (hi + Math.imul(ah4, bh3)) | 0 + lo = (lo + Math.imul(al3, bl4)) | 0 + mid = (mid + Math.imul(al3, bh4)) | 0 + mid = (mid + Math.imul(ah3, bl4)) | 0 + hi = (hi + Math.imul(ah3, bh4)) | 0 + lo = (lo + Math.imul(al2, bl5)) | 0 + mid = (mid + Math.imul(al2, bh5)) | 0 + mid = (mid + Math.imul(ah2, bl5)) | 0 + hi = (hi + Math.imul(ah2, bh5)) | 0 + lo = (lo + Math.imul(al1, bl6)) | 0 + mid = (mid + Math.imul(al1, bh6)) | 0 + mid = (mid + Math.imul(ah1, bl6)) | 0 + hi = (hi + Math.imul(ah1, bh6)) | 0 + lo = (lo + Math.imul(al0, bl7)) | 0 + mid = (mid + Math.imul(al0, bh7)) | 0 + mid = (mid + Math.imul(ah0, bl7)) | 0 + hi = (hi + Math.imul(ah0, bh7)) | 0 + var w7 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w7 >>> 26)) | 0 + w7 &= 67108863 + lo = Math.imul(al8, bl0) + mid = Math.imul(al8, bh0) + mid = (mid + Math.imul(ah8, bl0)) | 0 + hi = Math.imul(ah8, bh0) + lo = (lo + Math.imul(al7, bl1)) | 0 + mid = (mid + Math.imul(al7, bh1)) | 0 + mid = (mid + Math.imul(ah7, bl1)) | 0 + hi = (hi + Math.imul(ah7, bh1)) | 0 + lo = (lo + Math.imul(al6, bl2)) | 0 + mid = (mid + Math.imul(al6, bh2)) | 0 + mid = (mid + Math.imul(ah6, bl2)) | 0 + hi = (hi + Math.imul(ah6, bh2)) | 0 + lo = (lo + Math.imul(al5, bl3)) | 0 + mid = (mid + Math.imul(al5, bh3)) | 0 + mid = (mid + Math.imul(ah5, bl3)) | 0 + hi = (hi + Math.imul(ah5, bh3)) | 0 + lo = (lo + Math.imul(al4, bl4)) | 0 + mid = (mid + Math.imul(al4, bh4)) | 0 + mid = (mid + Math.imul(ah4, bl4)) | 0 + hi = (hi + Math.imul(ah4, bh4)) | 0 + lo = (lo + Math.imul(al3, bl5)) | 0 + mid = (mid + Math.imul(al3, bh5)) | 0 + mid = (mid + Math.imul(ah3, bl5)) | 0 + hi = (hi + Math.imul(ah3, bh5)) | 0 + lo = (lo + Math.imul(al2, bl6)) | 0 + mid = (mid + Math.imul(al2, bh6)) | 0 + mid = (mid + Math.imul(ah2, bl6)) | 0 + hi = (hi + Math.imul(ah2, bh6)) | 0 + lo = (lo + Math.imul(al1, bl7)) | 0 + mid = (mid + Math.imul(al1, bh7)) | 0 + mid = (mid + Math.imul(ah1, bl7)) | 0 + hi = (hi + Math.imul(ah1, bh7)) | 0 + lo = (lo + Math.imul(al0, bl8)) | 0 + mid = (mid + Math.imul(al0, bh8)) | 0 + mid = (mid + Math.imul(ah0, bl8)) | 0 + hi = (hi + Math.imul(ah0, bh8)) | 0 + var w8 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w8 >>> 26)) | 0 + w8 &= 67108863 + lo = Math.imul(al9, bl0) + mid = Math.imul(al9, bh0) + mid = (mid + Math.imul(ah9, bl0)) | 0 + hi = Math.imul(ah9, bh0) + lo = (lo + Math.imul(al8, bl1)) | 0 + mid = (mid + Math.imul(al8, bh1)) | 0 + mid = (mid + Math.imul(ah8, bl1)) | 0 + hi = (hi + Math.imul(ah8, bh1)) | 0 + lo = (lo + Math.imul(al7, bl2)) | 0 + mid = (mid + Math.imul(al7, bh2)) | 0 + mid = (mid + Math.imul(ah7, bl2)) | 0 + hi = (hi + Math.imul(ah7, bh2)) | 0 + lo = (lo + Math.imul(al6, bl3)) | 0 + mid = (mid + Math.imul(al6, bh3)) | 0 + mid = (mid + Math.imul(ah6, bl3)) | 0 + hi = (hi + Math.imul(ah6, bh3)) | 0 + lo = (lo + Math.imul(al5, bl4)) | 0 + mid = (mid + Math.imul(al5, bh4)) | 0 + mid = (mid + Math.imul(ah5, bl4)) | 0 + hi = (hi + Math.imul(ah5, bh4)) | 0 + lo = (lo + Math.imul(al4, bl5)) | 0 + mid = (mid + Math.imul(al4, bh5)) | 0 + mid = (mid + Math.imul(ah4, bl5)) | 0 + hi = (hi + Math.imul(ah4, bh5)) | 0 + lo = (lo + Math.imul(al3, bl6)) | 0 + mid = (mid + Math.imul(al3, bh6)) | 0 + mid = (mid + Math.imul(ah3, bl6)) | 0 + hi = (hi + Math.imul(ah3, bh6)) | 0 + lo = (lo + Math.imul(al2, bl7)) | 0 + mid = (mid + Math.imul(al2, bh7)) | 0 + mid = (mid + Math.imul(ah2, bl7)) | 0 + hi = (hi + Math.imul(ah2, bh7)) | 0 + lo = (lo + Math.imul(al1, bl8)) | 0 + mid = (mid + Math.imul(al1, bh8)) | 0 + mid = (mid + Math.imul(ah1, bl8)) | 0 + hi = (hi + Math.imul(ah1, bh8)) | 0 + lo = (lo + Math.imul(al0, bl9)) | 0 + mid = (mid + Math.imul(al0, bh9)) | 0 + mid = (mid + Math.imul(ah0, bl9)) | 0 + hi = (hi + Math.imul(ah0, bh9)) | 0 + var w9 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w9 >>> 26)) | 0 + w9 &= 67108863 + lo = Math.imul(al9, bl1) + mid = Math.imul(al9, bh1) + mid = (mid + Math.imul(ah9, bl1)) | 0 + hi = Math.imul(ah9, bh1) + lo = (lo + Math.imul(al8, bl2)) | 0 + mid = (mid + Math.imul(al8, bh2)) | 0 + mid = (mid + Math.imul(ah8, bl2)) | 0 + hi = (hi + Math.imul(ah8, bh2)) | 0 + lo = (lo + Math.imul(al7, bl3)) | 0 + mid = (mid + Math.imul(al7, bh3)) | 0 + mid = (mid + Math.imul(ah7, bl3)) | 0 + hi = (hi + Math.imul(ah7, bh3)) | 0 + lo = (lo + Math.imul(al6, bl4)) | 0 + mid = (mid + Math.imul(al6, bh4)) | 0 + mid = (mid + Math.imul(ah6, bl4)) | 0 + hi = (hi + Math.imul(ah6, bh4)) | 0 + lo = (lo + Math.imul(al5, bl5)) | 0 + mid = (mid + Math.imul(al5, bh5)) | 0 + mid = (mid + Math.imul(ah5, bl5)) | 0 + hi = (hi + Math.imul(ah5, bh5)) | 0 + lo = (lo + Math.imul(al4, bl6)) | 0 + mid = (mid + Math.imul(al4, bh6)) | 0 + mid = (mid + Math.imul(ah4, bl6)) | 0 + hi = (hi + Math.imul(ah4, bh6)) | 0 + lo = (lo + Math.imul(al3, bl7)) | 0 + mid = (mid + Math.imul(al3, bh7)) | 0 + mid = (mid + Math.imul(ah3, bl7)) | 0 + hi = (hi + Math.imul(ah3, bh7)) | 0 + lo = (lo + Math.imul(al2, bl8)) | 0 + mid = (mid + Math.imul(al2, bh8)) | 0 + mid = (mid + Math.imul(ah2, bl8)) | 0 + hi = (hi + Math.imul(ah2, bh8)) | 0 + lo = (lo + Math.imul(al1, bl9)) | 0 + mid = (mid + Math.imul(al1, bh9)) | 0 + mid = (mid + Math.imul(ah1, bl9)) | 0 + hi = (hi + Math.imul(ah1, bh9)) | 0 + var w10 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w10 >>> 26)) | 0 + w10 &= 67108863 + lo = Math.imul(al9, bl2) + mid = Math.imul(al9, bh2) + mid = (mid + Math.imul(ah9, bl2)) | 0 + hi = Math.imul(ah9, bh2) + lo = (lo + Math.imul(al8, bl3)) | 0 + mid = (mid + Math.imul(al8, bh3)) | 0 + mid = (mid + Math.imul(ah8, bl3)) | 0 + hi = (hi + Math.imul(ah8, bh3)) | 0 + lo = (lo + Math.imul(al7, bl4)) | 0 + mid = (mid + Math.imul(al7, bh4)) | 0 + mid = (mid + Math.imul(ah7, bl4)) | 0 + hi = (hi + Math.imul(ah7, bh4)) | 0 + lo = (lo + Math.imul(al6, bl5)) | 0 + mid = (mid + Math.imul(al6, bh5)) | 0 + mid = (mid + Math.imul(ah6, bl5)) | 0 + hi = (hi + Math.imul(ah6, bh5)) | 0 + lo = (lo + Math.imul(al5, bl6)) | 0 + mid = (mid + Math.imul(al5, bh6)) | 0 + mid = (mid + Math.imul(ah5, bl6)) | 0 + hi = (hi + Math.imul(ah5, bh6)) | 0 + lo = (lo + Math.imul(al4, bl7)) | 0 + mid = (mid + Math.imul(al4, bh7)) | 0 + mid = (mid + Math.imul(ah4, bl7)) | 0 + hi = (hi + Math.imul(ah4, bh7)) | 0 + lo = (lo + Math.imul(al3, bl8)) | 0 + mid = (mid + Math.imul(al3, bh8)) | 0 + mid = (mid + Math.imul(ah3, bl8)) | 0 + hi = (hi + Math.imul(ah3, bh8)) | 0 + lo = (lo + Math.imul(al2, bl9)) | 0 + mid = (mid + Math.imul(al2, bh9)) | 0 + mid = (mid + Math.imul(ah2, bl9)) | 0 + hi = (hi + Math.imul(ah2, bh9)) | 0 + var w11 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w11 >>> 26)) | 0 + w11 &= 67108863 + lo = Math.imul(al9, bl3) + mid = Math.imul(al9, bh3) + mid = (mid + Math.imul(ah9, bl3)) | 0 + hi = Math.imul(ah9, bh3) + lo = (lo + Math.imul(al8, bl4)) | 0 + mid = (mid + Math.imul(al8, bh4)) | 0 + mid = (mid + Math.imul(ah8, bl4)) | 0 + hi = (hi + Math.imul(ah8, bh4)) | 0 + lo = (lo + Math.imul(al7, bl5)) | 0 + mid = (mid + Math.imul(al7, bh5)) | 0 + mid = (mid + Math.imul(ah7, bl5)) | 0 + hi = (hi + Math.imul(ah7, bh5)) | 0 + lo = (lo + Math.imul(al6, bl6)) | 0 + mid = (mid + Math.imul(al6, bh6)) | 0 + mid = (mid + Math.imul(ah6, bl6)) | 0 + hi = (hi + Math.imul(ah6, bh6)) | 0 + lo = (lo + Math.imul(al5, bl7)) | 0 + mid = (mid + Math.imul(al5, bh7)) | 0 + mid = (mid + Math.imul(ah5, bl7)) | 0 + hi = (hi + Math.imul(ah5, bh7)) | 0 + lo = (lo + Math.imul(al4, bl8)) | 0 + mid = (mid + Math.imul(al4, bh8)) | 0 + mid = (mid + Math.imul(ah4, bl8)) | 0 + hi = (hi + Math.imul(ah4, bh8)) | 0 + lo = (lo + Math.imul(al3, bl9)) | 0 + mid = (mid + Math.imul(al3, bh9)) | 0 + mid = (mid + Math.imul(ah3, bl9)) | 0 + hi = (hi + Math.imul(ah3, bh9)) | 0 + var w12 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w12 >>> 26)) | 0 + w12 &= 67108863 + lo = Math.imul(al9, bl4) + mid = Math.imul(al9, bh4) + mid = (mid + Math.imul(ah9, bl4)) | 0 + hi = Math.imul(ah9, bh4) + lo = (lo + Math.imul(al8, bl5)) | 0 + mid = (mid + Math.imul(al8, bh5)) | 0 + mid = (mid + Math.imul(ah8, bl5)) | 0 + hi = (hi + Math.imul(ah8, bh5)) | 0 + lo = (lo + Math.imul(al7, bl6)) | 0 + mid = (mid + Math.imul(al7, bh6)) | 0 + mid = (mid + Math.imul(ah7, bl6)) | 0 + hi = (hi + Math.imul(ah7, bh6)) | 0 + lo = (lo + Math.imul(al6, bl7)) | 0 + mid = (mid + Math.imul(al6, bh7)) | 0 + mid = (mid + Math.imul(ah6, bl7)) | 0 + hi = (hi + Math.imul(ah6, bh7)) | 0 + lo = (lo + Math.imul(al5, bl8)) | 0 + mid = (mid + Math.imul(al5, bh8)) | 0 + mid = (mid + Math.imul(ah5, bl8)) | 0 + hi = (hi + Math.imul(ah5, bh8)) | 0 + lo = (lo + Math.imul(al4, bl9)) | 0 + mid = (mid + Math.imul(al4, bh9)) | 0 + mid = (mid + Math.imul(ah4, bl9)) | 0 + hi = (hi + Math.imul(ah4, bh9)) | 0 + var w13 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w13 >>> 26)) | 0 + w13 &= 67108863 + lo = Math.imul(al9, bl5) + mid = Math.imul(al9, bh5) + mid = (mid + Math.imul(ah9, bl5)) | 0 + hi = Math.imul(ah9, bh5) + lo = (lo + Math.imul(al8, bl6)) | 0 + mid = (mid + Math.imul(al8, bh6)) | 0 + mid = (mid + Math.imul(ah8, bl6)) | 0 + hi = (hi + Math.imul(ah8, bh6)) | 0 + lo = (lo + Math.imul(al7, bl7)) | 0 + mid = (mid + Math.imul(al7, bh7)) | 0 + mid = (mid + Math.imul(ah7, bl7)) | 0 + hi = (hi + Math.imul(ah7, bh7)) | 0 + lo = (lo + Math.imul(al6, bl8)) | 0 + mid = (mid + Math.imul(al6, bh8)) | 0 + mid = (mid + Math.imul(ah6, bl8)) | 0 + hi = (hi + Math.imul(ah6, bh8)) | 0 + lo = (lo + Math.imul(al5, bl9)) | 0 + mid = (mid + Math.imul(al5, bh9)) | 0 + mid = (mid + Math.imul(ah5, bl9)) | 0 + hi = (hi + Math.imul(ah5, bh9)) | 0 + var w14 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w14 >>> 26)) | 0 + w14 &= 67108863 + lo = Math.imul(al9, bl6) + mid = Math.imul(al9, bh6) + mid = (mid + Math.imul(ah9, bl6)) | 0 + hi = Math.imul(ah9, bh6) + lo = (lo + Math.imul(al8, bl7)) | 0 + mid = (mid + Math.imul(al8, bh7)) | 0 + mid = (mid + Math.imul(ah8, bl7)) | 0 + hi = (hi + Math.imul(ah8, bh7)) | 0 + lo = (lo + Math.imul(al7, bl8)) | 0 + mid = (mid + Math.imul(al7, bh8)) | 0 + mid = (mid + Math.imul(ah7, bl8)) | 0 + hi = (hi + Math.imul(ah7, bh8)) | 0 + lo = (lo + Math.imul(al6, bl9)) | 0 + mid = (mid + Math.imul(al6, bh9)) | 0 + mid = (mid + Math.imul(ah6, bl9)) | 0 + hi = (hi + Math.imul(ah6, bh9)) | 0 + var w15 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w15 >>> 26)) | 0 + w15 &= 67108863 + lo = Math.imul(al9, bl7) + mid = Math.imul(al9, bh7) + mid = (mid + Math.imul(ah9, bl7)) | 0 + hi = Math.imul(ah9, bh7) + lo = (lo + Math.imul(al8, bl8)) | 0 + mid = (mid + Math.imul(al8, bh8)) | 0 + mid = (mid + Math.imul(ah8, bl8)) | 0 + hi = (hi + Math.imul(ah8, bh8)) | 0 + lo = (lo + Math.imul(al7, bl9)) | 0 + mid = (mid + Math.imul(al7, bh9)) | 0 + mid = (mid + Math.imul(ah7, bl9)) | 0 + hi = (hi + Math.imul(ah7, bh9)) | 0 + var w16 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w16 >>> 26)) | 0 + w16 &= 67108863 + lo = Math.imul(al9, bl8) + mid = Math.imul(al9, bh8) + mid = (mid + Math.imul(ah9, bl8)) | 0 + hi = Math.imul(ah9, bh8) + lo = (lo + Math.imul(al8, bl9)) | 0 + mid = (mid + Math.imul(al8, bh9)) | 0 + mid = (mid + Math.imul(ah8, bl9)) | 0 + hi = (hi + Math.imul(ah8, bh9)) | 0 + var w17 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w17 >>> 26)) | 0 + w17 &= 67108863 + lo = Math.imul(al9, bl9) + mid = Math.imul(al9, bh9) + mid = (mid + Math.imul(ah9, bl9)) | 0 + hi = Math.imul(ah9, bh9) + var w18 = (((c + lo) | 0) + ((mid & 8191) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w18 >>> 26)) | 0 + w18 &= 67108863 + o[0] = w0 + o[1] = w1 + o[2] = w2 + o[3] = w3 + o[4] = w4 + o[5] = w5 + o[6] = w6 + o[7] = w7 + o[8] = w8 + o[9] = w9 + o[10] = w10 + o[11] = w11 + o[12] = w12 + o[13] = w13 + o[14] = w14 + o[15] = w15 + o[16] = w16 + o[17] = w17 + o[18] = w18 + if (c !== 0) { + o[19] = c + out.length++ + } + return out + } + if (!Math.imul) { + comb10MulTo = smallMulTo + } + function bigMulTo(self, num, out) { + out.negative = num.negative ^ self.negative + out.length = self.length + num.length + var carry = 0 + var hncarry = 0 + for (var k = 0; k < out.length - 1; k++) { + var ncarry = hncarry + hncarry = 0 + var rword = carry & 67108863 + var maxJ = Math.min(k, num.length - 1) + for (var j = Math.max(0, k - self.length + 1); j <= maxJ; j++) { + var i = k - j + var a = self.words[i] | 0 + var b = num.words[j] | 0 + var r = a * b + var lo = r & 67108863 + ncarry = (ncarry + ((r / 67108864) | 0)) | 0 + lo = (lo + rword) | 0 + rword = lo & 67108863 + ncarry = (ncarry + (lo >>> 26)) | 0 + hncarry += ncarry >>> 26 + ncarry &= 67108863 + } + out.words[k] = rword + carry = ncarry + ncarry = hncarry + } + if (carry !== 0) { + out.words[k] = carry + } else { + out.length-- + } + return out.strip() + } + function jumboMulTo(self, num, out) { + var fftm = new FFTM() + return fftm.mulp(self, num, out) + } + BN.prototype.mulTo = function mulTo(num, out) { + var res + var len = this.length + num.length + if (this.length === 10 && num.length === 10) { + res = comb10MulTo(this, num, out) + } else if (len < 63) { + res = smallMulTo(this, num, out) + } else if (len < 1024) { + res = bigMulTo(this, num, out) + } else { + res = jumboMulTo(this, num, out) + } + return res + } + function FFTM(x, y) { + this.x = x + this.y = y + } + FFTM.prototype.makeRBT = function makeRBT(N) { + var t = new Array(N) + var l = BN.prototype._countBits(N) - 1 + for (var i = 0; i < N; i++) { + t[i] = this.revBin(i, l, N) + } + return t + } + FFTM.prototype.revBin = function revBin(x, l, N) { + if (x === 0 || x === N - 1) return x + var rb = 0 + for (var i = 0; i < l; i++) { + rb |= (x & 1) << (l - i - 1) + x >>= 1 + } + return rb + } + FFTM.prototype.permute = function permute( + rbt, + rws, + iws, + rtws, + itws, + N + ) { + for (var i = 0; i < N; i++) { + rtws[i] = rws[rbt[i]] + itws[i] = iws[rbt[i]] + } + } + FFTM.prototype.transform = function transform( + rws, + iws, + rtws, + itws, + N, + rbt + ) { + this.permute(rbt, rws, iws, rtws, itws, N) + for (var s = 1; s < N; s <<= 1) { + var l = s << 1 + var rtwdf = Math.cos((2 * Math.PI) / l) + var itwdf = Math.sin((2 * Math.PI) / l) + for (var p = 0; p < N; p += l) { + var rtwdf_ = rtwdf + var itwdf_ = itwdf + for (var j = 0; j < s; j++) { + var re = rtws[p + j] + var ie = itws[p + j] + var ro = rtws[p + j + s] + var io = itws[p + j + s] + var rx = rtwdf_ * ro - itwdf_ * io + io = rtwdf_ * io + itwdf_ * ro + ro = rx + rtws[p + j] = re + ro + itws[p + j] = ie + io + rtws[p + j + s] = re - ro + itws[p + j + s] = ie - io + if (j !== l) { + rx = rtwdf * rtwdf_ - itwdf * itwdf_ + itwdf_ = rtwdf * itwdf_ + itwdf * rtwdf_ + rtwdf_ = rx + } + } + } + } + } + FFTM.prototype.guessLen13b = function guessLen13b(n, m) { + var N = Math.max(m, n) | 1 + var odd = N & 1 + var i = 0 + for (N = (N / 2) | 0; N; N = N >>> 1) { + i++ + } + return 1 << (i + 1 + odd) + } + FFTM.prototype.conjugate = function conjugate(rws, iws, N) { + if (N <= 1) return + for (var i = 0; i < N / 2; i++) { + var t = rws[i] + rws[i] = rws[N - i - 1] + rws[N - i - 1] = t + t = iws[i] + iws[i] = -iws[N - i - 1] + iws[N - i - 1] = -t + } + } + FFTM.prototype.normalize13b = function normalize13b(ws, N) { + var carry = 0 + for (var i = 0; i < N / 2; i++) { + var w = + Math.round(ws[2 * i + 1] / N) * 8192 + + Math.round(ws[2 * i] / N) + + carry + ws[i] = w & 67108863 + if (w < 67108864) { + carry = 0 + } else { + carry = (w / 67108864) | 0 + } + } + return ws + } + FFTM.prototype.convert13b = function convert13b(ws, len, rws, N) { + var carry = 0 + for (var i = 0; i < len; i++) { + carry = carry + (ws[i] | 0) + rws[2 * i] = carry & 8191 + carry = carry >>> 13 + rws[2 * i + 1] = carry & 8191 + carry = carry >>> 13 + } + for (i = 2 * len; i < N; ++i) { + rws[i] = 0 + } + assert(carry === 0) + assert((carry & ~8191) === 0) + } + FFTM.prototype.stub = function stub(N) { + var ph = new Array(N) + for (var i = 0; i < N; i++) { + ph[i] = 0 + } + return ph + } + FFTM.prototype.mulp = function mulp(x, y, out) { + var N = 2 * this.guessLen13b(x.length, y.length) + var rbt = this.makeRBT(N) + var _ = this.stub(N) + var rws = new Array(N) + var rwst = new Array(N) + var iwst = new Array(N) + var nrws = new Array(N) + var nrwst = new Array(N) + var niwst = new Array(N) + var rmws = out.words + rmws.length = N + this.convert13b(x.words, x.length, rws, N) + this.convert13b(y.words, y.length, nrws, N) + this.transform(rws, _, rwst, iwst, N, rbt) + this.transform(nrws, _, nrwst, niwst, N, rbt) + for (var i = 0; i < N; i++) { + var rx = rwst[i] * nrwst[i] - iwst[i] * niwst[i] + iwst[i] = rwst[i] * niwst[i] + iwst[i] * nrwst[i] + rwst[i] = rx + } + this.conjugate(rwst, iwst, N) + this.transform(rwst, iwst, rmws, _, N, rbt) + this.conjugate(rmws, _, N) + this.normalize13b(rmws, N) + out.negative = x.negative ^ y.negative + out.length = x.length + y.length + return out.strip() + } + BN.prototype.mul = function mul(num) { + var out = new BN(null) + out.words = new Array(this.length + num.length) + return this.mulTo(num, out) + } + BN.prototype.mulf = function mulf(num) { + var out = new BN(null) + out.words = new Array(this.length + num.length) + return jumboMulTo(this, num, out) + } + BN.prototype.imul = function imul(num) { + return this.clone().mulTo(num, this) + } + BN.prototype.imuln = function imuln(num) { + assert(typeof num === "number") + assert(num < 67108864) + var carry = 0 + for (var i = 0; i < this.length; i++) { + var w = (this.words[i] | 0) * num + var lo = (w & 67108863) + (carry & 67108863) + carry >>= 26 + carry += (w / 67108864) | 0 + carry += lo >>> 26 + this.words[i] = lo & 67108863 + } + if (carry !== 0) { + this.words[i] = carry + this.length++ + } + return this + } + BN.prototype.muln = function muln(num) { + return this.clone().imuln(num) + } + BN.prototype.sqr = function sqr() { + return this.mul(this) + } + BN.prototype.isqr = function isqr() { + return this.imul(this.clone()) + } + BN.prototype.pow = function pow(num) { + var w = toBitArray(num) + if (w.length === 0) return new BN(1) + var res = this + for (var i = 0; i < w.length; i++, res = res.sqr()) { + if (w[i] !== 0) break + } + if (++i < w.length) { + for (var q = res.sqr(); i < w.length; i++, q = q.sqr()) { + if (w[i] === 0) continue + res = res.mul(q) + } + } + return res + } + BN.prototype.iushln = function iushln(bits) { + assert(typeof bits === "number" && bits >= 0) + var r = bits % 26 + var s = (bits - r) / 26 + var carryMask = (67108863 >>> (26 - r)) << (26 - r) + var i + if (r !== 0) { + var carry = 0 + for (i = 0; i < this.length; i++) { + var newCarry = this.words[i] & carryMask + var c = ((this.words[i] | 0) - newCarry) << r + this.words[i] = c | carry + carry = newCarry >>> (26 - r) + } + if (carry) { + this.words[i] = carry + this.length++ + } + } + if (s !== 0) { + for (i = this.length - 1; i >= 0; i--) { + this.words[i + s] = this.words[i] + } + for (i = 0; i < s; i++) { + this.words[i] = 0 + } + this.length += s + } + return this.strip() + } + BN.prototype.ishln = function ishln(bits) { + assert(this.negative === 0) + return this.iushln(bits) + } + BN.prototype.iushrn = function iushrn(bits, hint, extended) { + assert(typeof bits === "number" && bits >= 0) + var h + if (hint) { + h = (hint - (hint % 26)) / 26 + } else { + h = 0 + } + var r = bits % 26 + var s = Math.min((bits - r) / 26, this.length) + var mask = 67108863 ^ ((67108863 >>> r) << r) + var maskedWords = extended + h -= s + h = Math.max(0, h) + if (maskedWords) { + for (var i = 0; i < s; i++) { + maskedWords.words[i] = this.words[i] + } + maskedWords.length = s + } + if (s === 0) { + } else if (this.length > s) { + this.length -= s + for (i = 0; i < this.length; i++) { + this.words[i] = this.words[i + s] + } + } else { + this.words[0] = 0 + this.length = 1 + } + var carry = 0 + for ( + i = this.length - 1; + i >= 0 && (carry !== 0 || i >= h); + i-- + ) { + var word = this.words[i] | 0 + this.words[i] = (carry << (26 - r)) | (word >>> r) + carry = word & mask + } + if (maskedWords && carry !== 0) { + maskedWords.words[maskedWords.length++] = carry + } + if (this.length === 0) { + this.words[0] = 0 + this.length = 1 + } + return this.strip() + } + BN.prototype.ishrn = function ishrn(bits, hint, extended) { + assert(this.negative === 0) + return this.iushrn(bits, hint, extended) + } + BN.prototype.shln = function shln(bits) { + return this.clone().ishln(bits) + } + BN.prototype.ushln = function ushln(bits) { + return this.clone().iushln(bits) + } + BN.prototype.shrn = function shrn(bits) { + return this.clone().ishrn(bits) + } + BN.prototype.ushrn = function ushrn(bits) { + return this.clone().iushrn(bits) + } + BN.prototype.testn = function testn(bit) { + assert(typeof bit === "number" && bit >= 0) + var r = bit % 26 + var s = (bit - r) / 26 + var q = 1 << r + if (this.length <= s) return false + var w = this.words[s] + return !!(w & q) + } + BN.prototype.imaskn = function imaskn(bits) { + assert(typeof bits === "number" && bits >= 0) + var r = bits % 26 + var s = (bits - r) / 26 + assert( + this.negative === 0, + "imaskn works only with positive numbers" + ) + if (this.length <= s) { + return this + } + if (r !== 0) { + s++ + } + this.length = Math.min(s, this.length) + if (r !== 0) { + var mask = 67108863 ^ ((67108863 >>> r) << r) + this.words[this.length - 1] &= mask + } + return this.strip() + } + BN.prototype.maskn = function maskn(bits) { + return this.clone().imaskn(bits) + } + BN.prototype.iaddn = function iaddn(num) { + assert(typeof num === "number") + assert(num < 67108864) + if (num < 0) return this.isubn(-num) + if (this.negative !== 0) { + if (this.length === 1 && (this.words[0] | 0) < num) { + this.words[0] = num - (this.words[0] | 0) + this.negative = 0 + return this + } + this.negative = 0 + this.isubn(num) + this.negative = 1 + return this + } + return this._iaddn(num) + } + BN.prototype._iaddn = function _iaddn(num) { + this.words[0] += num + for ( + var i = 0; + i < this.length && this.words[i] >= 67108864; + i++ + ) { + this.words[i] -= 67108864 + if (i === this.length - 1) { + this.words[i + 1] = 1 + } else { + this.words[i + 1]++ + } + } + this.length = Math.max(this.length, i + 1) + return this + } + BN.prototype.isubn = function isubn(num) { + assert(typeof num === "number") + assert(num < 67108864) + if (num < 0) return this.iaddn(-num) + if (this.negative !== 0) { + this.negative = 0 + this.iaddn(num) + this.negative = 1 + return this + } + this.words[0] -= num + if (this.length === 1 && this.words[0] < 0) { + this.words[0] = -this.words[0] + this.negative = 1 + } else { + for (var i = 0; i < this.length && this.words[i] < 0; i++) { + this.words[i] += 67108864 + this.words[i + 1] -= 1 + } + } + return this.strip() + } + BN.prototype.addn = function addn(num) { + return this.clone().iaddn(num) + } + BN.prototype.subn = function subn(num) { + return this.clone().isubn(num) + } + BN.prototype.iabs = function iabs() { + this.negative = 0 + return this + } + BN.prototype.abs = function abs() { + return this.clone().iabs() + } + BN.prototype._ishlnsubmul = function _ishlnsubmul(num, mul, shift) { + var len = num.length + shift + var i + this._expand(len) + var w + var carry = 0 + for (i = 0; i < num.length; i++) { + w = (this.words[i + shift] | 0) + carry + var right = (num.words[i] | 0) * mul + w -= right & 67108863 + carry = (w >> 26) - ((right / 67108864) | 0) + this.words[i + shift] = w & 67108863 + } + for (; i < this.length - shift; i++) { + w = (this.words[i + shift] | 0) + carry + carry = w >> 26 + this.words[i + shift] = w & 67108863 + } + if (carry === 0) return this.strip() + assert(carry === -1) + carry = 0 + for (i = 0; i < this.length; i++) { + w = -(this.words[i] | 0) + carry + carry = w >> 26 + this.words[i] = w & 67108863 + } + this.negative = 1 + return this.strip() + } + BN.prototype._wordDiv = function _wordDiv(num, mode) { + var shift = this.length - num.length + var a = this.clone() + var b = num + var bhi = b.words[b.length - 1] | 0 + var bhiBits = this._countBits(bhi) + shift = 26 - bhiBits + if (shift !== 0) { + b = b.ushln(shift) + a.iushln(shift) + bhi = b.words[b.length - 1] | 0 + } + var m = a.length - b.length + var q + if (mode !== "mod") { + q = new BN(null) + q.length = m + 1 + q.words = new Array(q.length) + for (var i = 0; i < q.length; i++) { + q.words[i] = 0 + } + } + var diff = a.clone()._ishlnsubmul(b, 1, m) + if (diff.negative === 0) { + a = diff + if (q) { + q.words[m] = 1 + } + } + for (var j = m - 1; j >= 0; j--) { + var qj = + (a.words[b.length + j] | 0) * 67108864 + + (a.words[b.length + j - 1] | 0) + qj = Math.min((qj / bhi) | 0, 67108863) + a._ishlnsubmul(b, qj, j) + while (a.negative !== 0) { + qj-- + a.negative = 0 + a._ishlnsubmul(b, 1, j) + if (!a.isZero()) { + a.negative ^= 1 + } + } + if (q) { + q.words[j] = qj + } + } + if (q) { + q.strip() + } + a.strip() + if (mode !== "div" && shift !== 0) { + a.iushrn(shift) + } + return { div: q || null, mod: a } + } + BN.prototype.divmod = function divmod(num, mode, positive) { + assert(!num.isZero()) + if (this.isZero()) { + return { div: new BN(0), mod: new BN(0) } + } + var div, mod, res + if (this.negative !== 0 && num.negative === 0) { + res = this.neg().divmod(num, mode) + if (mode !== "mod") { + div = res.div.neg() + } + if (mode !== "div") { + mod = res.mod.neg() + if (positive && mod.negative !== 0) { + mod.iadd(num) + } + } + return { div: div, mod: mod } + } + if (this.negative === 0 && num.negative !== 0) { + res = this.divmod(num.neg(), mode) + if (mode !== "mod") { + div = res.div.neg() + } + return { div: div, mod: res.mod } + } + if ((this.negative & num.negative) !== 0) { + res = this.neg().divmod(num.neg(), mode) + if (mode !== "div") { + mod = res.mod.neg() + if (positive && mod.negative !== 0) { + mod.isub(num) + } + } + return { div: res.div, mod: mod } + } + if (num.length > this.length || this.cmp(num) < 0) { + return { div: new BN(0), mod: this } + } + if (num.length === 1) { + if (mode === "div") { + return { div: this.divn(num.words[0]), mod: null } + } + if (mode === "mod") { + return { div: null, mod: new BN(this.modn(num.words[0])) } + } + return { + div: this.divn(num.words[0]), + mod: new BN(this.modn(num.words[0])) + } + } + return this._wordDiv(num, mode) + } + BN.prototype.div = function div(num) { + return this.divmod(num, "div", false).div + } + BN.prototype.mod = function mod(num) { + return this.divmod(num, "mod", false).mod + } + BN.prototype.umod = function umod(num) { + return this.divmod(num, "mod", true).mod + } + BN.prototype.divRound = function divRound(num) { + var dm = this.divmod(num) + if (dm.mod.isZero()) return dm.div + var mod = dm.div.negative !== 0 ? dm.mod.isub(num) : dm.mod + var half = num.ushrn(1) + var r2 = num.andln(1) + var cmp = mod.cmp(half) + if (cmp < 0 || (r2 === 1 && cmp === 0)) return dm.div + return dm.div.negative !== 0 ? dm.div.isubn(1) : dm.div.iaddn(1) + } + BN.prototype.modn = function modn(num) { + assert(num <= 67108863) + var p = (1 << 26) % num + var acc = 0 + for (var i = this.length - 1; i >= 0; i--) { + acc = (p * acc + (this.words[i] | 0)) % num + } + return acc + } + BN.prototype.idivn = function idivn(num) { + assert(num <= 67108863) + var carry = 0 + for (var i = this.length - 1; i >= 0; i--) { + var w = (this.words[i] | 0) + carry * 67108864 + this.words[i] = (w / num) | 0 + carry = w % num + } + return this.strip() + } + BN.prototype.divn = function divn(num) { + return this.clone().idivn(num) + } + BN.prototype.egcd = function egcd(p) { + assert(p.negative === 0) + assert(!p.isZero()) + var x = this + var y = p.clone() + if (x.negative !== 0) { + x = x.umod(p) + } else { + x = x.clone() + } + var A = new BN(1) + var B = new BN(0) + var C = new BN(0) + var D = new BN(1) + var g = 0 + while (x.isEven() && y.isEven()) { + x.iushrn(1) + y.iushrn(1) + ++g + } + var yp = y.clone() + var xp = x.clone() + while (!x.isZero()) { + for ( + var i = 0, im = 1; + (x.words[0] & im) === 0 && i < 26; + ++i, im <<= 1 + ); + if (i > 0) { + x.iushrn(i) + while (i-- > 0) { + if (A.isOdd() || B.isOdd()) { + A.iadd(yp) + B.isub(xp) + } + A.iushrn(1) + B.iushrn(1) + } + } + for ( + var j = 0, jm = 1; + (y.words[0] & jm) === 0 && j < 26; + ++j, jm <<= 1 + ); + if (j > 0) { + y.iushrn(j) + while (j-- > 0) { + if (C.isOdd() || D.isOdd()) { + C.iadd(yp) + D.isub(xp) + } + C.iushrn(1) + D.iushrn(1) + } + } + if (x.cmp(y) >= 0) { + x.isub(y) + A.isub(C) + B.isub(D) + } else { + y.isub(x) + C.isub(A) + D.isub(B) + } + } + return { a: C, b: D, gcd: y.iushln(g) } + } + BN.prototype._invmp = function _invmp(p) { + assert(p.negative === 0) + assert(!p.isZero()) + var a = this + var b = p.clone() + if (a.negative !== 0) { + a = a.umod(p) + } else { + a = a.clone() + } + var x1 = new BN(1) + var x2 = new BN(0) + var delta = b.clone() + while (a.cmpn(1) > 0 && b.cmpn(1) > 0) { + for ( + var i = 0, im = 1; + (a.words[0] & im) === 0 && i < 26; + ++i, im <<= 1 + ); + if (i > 0) { + a.iushrn(i) + while (i-- > 0) { + if (x1.isOdd()) { + x1.iadd(delta) + } + x1.iushrn(1) + } + } + for ( + var j = 0, jm = 1; + (b.words[0] & jm) === 0 && j < 26; + ++j, jm <<= 1 + ); + if (j > 0) { + b.iushrn(j) + while (j-- > 0) { + if (x2.isOdd()) { + x2.iadd(delta) + } + x2.iushrn(1) + } + } + if (a.cmp(b) >= 0) { + a.isub(b) + x1.isub(x2) + } else { + b.isub(a) + x2.isub(x1) + } + } + var res + if (a.cmpn(1) === 0) { + res = x1 + } else { + res = x2 + } + if (res.cmpn(0) < 0) { + res.iadd(p) + } + return res + } + BN.prototype.gcd = function gcd(num) { + if (this.isZero()) return num.abs() + if (num.isZero()) return this.abs() + var a = this.clone() + var b = num.clone() + a.negative = 0 + b.negative = 0 + for (var shift = 0; a.isEven() && b.isEven(); shift++) { + a.iushrn(1) + b.iushrn(1) + } + do { + while (a.isEven()) { + a.iushrn(1) + } + while (b.isEven()) { + b.iushrn(1) + } + var r = a.cmp(b) + if (r < 0) { + var t = a + a = b + b = t + } else if (r === 0 || b.cmpn(1) === 0) { + break + } + a.isub(b) + } while (true) + return b.iushln(shift) + } + BN.prototype.invm = function invm(num) { + return this.egcd(num).a.umod(num) + } + BN.prototype.isEven = function isEven() { + return (this.words[0] & 1) === 0 + } + BN.prototype.isOdd = function isOdd() { + return (this.words[0] & 1) === 1 + } + BN.prototype.andln = function andln(num) { + return this.words[0] & num + } + BN.prototype.bincn = function bincn(bit) { + assert(typeof bit === "number") + var r = bit % 26 + var s = (bit - r) / 26 + var q = 1 << r + if (this.length <= s) { + this._expand(s + 1) + this.words[s] |= q + return this + } + var carry = q + for (var i = s; carry !== 0 && i < this.length; i++) { + var w = this.words[i] | 0 + w += carry + carry = w >>> 26 + w &= 67108863 + this.words[i] = w + } + if (carry !== 0) { + this.words[i] = carry + this.length++ + } + return this + } + BN.prototype.isZero = function isZero() { + return this.length === 1 && this.words[0] === 0 + } + BN.prototype.cmpn = function cmpn(num) { + var negative = num < 0 + if (this.negative !== 0 && !negative) return -1 + if (this.negative === 0 && negative) return 1 + this.strip() + var res + if (this.length > 1) { + res = 1 + } else { + if (negative) { + num = -num + } + assert(num <= 67108863, "Number is too big") + var w = this.words[0] | 0 + res = w === num ? 0 : w < num ? -1 : 1 + } + if (this.negative !== 0) return -res | 0 + return res + } + BN.prototype.cmp = function cmp(num) { + if (this.negative !== 0 && num.negative === 0) return -1 + if (this.negative === 0 && num.negative !== 0) return 1 + var res = this.ucmp(num) + if (this.negative !== 0) return -res | 0 + return res + } + BN.prototype.ucmp = function ucmp(num) { + if (this.length > num.length) return 1 + if (this.length < num.length) return -1 + var res = 0 + for (var i = this.length - 1; i >= 0; i--) { + var a = this.words[i] | 0 + var b = num.words[i] | 0 + if (a === b) continue + if (a < b) { + res = -1 + } else if (a > b) { + res = 1 + } + break + } + return res + } + BN.prototype.gtn = function gtn(num) { + return this.cmpn(num) === 1 + } + BN.prototype.gt = function gt(num) { + return this.cmp(num) === 1 + } + BN.prototype.gten = function gten(num) { + return this.cmpn(num) >= 0 + } + BN.prototype.gte = function gte(num) { + return this.cmp(num) >= 0 + } + BN.prototype.ltn = function ltn(num) { + return this.cmpn(num) === -1 + } + BN.prototype.lt = function lt(num) { + return this.cmp(num) === -1 + } + BN.prototype.lten = function lten(num) { + return this.cmpn(num) <= 0 + } + BN.prototype.lte = function lte(num) { + return this.cmp(num) <= 0 + } + BN.prototype.eqn = function eqn(num) { + return this.cmpn(num) === 0 + } + BN.prototype.eq = function eq(num) { + return this.cmp(num) === 0 + } + BN.red = function red(num) { + return new Red(num) + } + BN.prototype.toRed = function toRed(ctx) { + assert(!this.red, "Already a number in reduction context") + assert(this.negative === 0, "red works only with positives") + return ctx.convertTo(this)._forceRed(ctx) + } + BN.prototype.fromRed = function fromRed() { + assert( + this.red, + "fromRed works only with numbers in reduction context" + ) + return this.red.convertFrom(this) + } + BN.prototype._forceRed = function _forceRed(ctx) { + this.red = ctx + return this + } + BN.prototype.forceRed = function forceRed(ctx) { + assert(!this.red, "Already a number in reduction context") + return this._forceRed(ctx) + } + BN.prototype.redAdd = function redAdd(num) { + assert(this.red, "redAdd works only with red numbers") + return this.red.add(this, num) + } + BN.prototype.redIAdd = function redIAdd(num) { + assert(this.red, "redIAdd works only with red numbers") + return this.red.iadd(this, num) + } + BN.prototype.redSub = function redSub(num) { + assert(this.red, "redSub works only with red numbers") + return this.red.sub(this, num) + } + BN.prototype.redISub = function redISub(num) { + assert(this.red, "redISub works only with red numbers") + return this.red.isub(this, num) + } + BN.prototype.redShl = function redShl(num) { + assert(this.red, "redShl works only with red numbers") + return this.red.shl(this, num) + } + BN.prototype.redMul = function redMul(num) { + assert(this.red, "redMul works only with red numbers") + this.red._verify2(this, num) + return this.red.mul(this, num) + } + BN.prototype.redIMul = function redIMul(num) { + assert(this.red, "redMul works only with red numbers") + this.red._verify2(this, num) + return this.red.imul(this, num) + } + BN.prototype.redSqr = function redSqr() { + assert(this.red, "redSqr works only with red numbers") + this.red._verify1(this) + return this.red.sqr(this) + } + BN.prototype.redISqr = function redISqr() { + assert(this.red, "redISqr works only with red numbers") + this.red._verify1(this) + return this.red.isqr(this) + } + BN.prototype.redSqrt = function redSqrt() { + assert(this.red, "redSqrt works only with red numbers") + this.red._verify1(this) + return this.red.sqrt(this) + } + BN.prototype.redInvm = function redInvm() { + assert(this.red, "redInvm works only with red numbers") + this.red._verify1(this) + return this.red.invm(this) + } + BN.prototype.redNeg = function redNeg() { + assert(this.red, "redNeg works only with red numbers") + this.red._verify1(this) + return this.red.neg(this) + } + BN.prototype.redPow = function redPow(num) { + assert(this.red && !num.red, "redPow(normalNum)") + this.red._verify1(this) + return this.red.pow(this, num) + } + var primes = { k256: null, p224: null, p192: null, p25519: null } + function MPrime(name, p) { + this.name = name + this.p = new BN(p, 16) + this.n = this.p.bitLength() + this.k = new BN(1).iushln(this.n).isub(this.p) + this.tmp = this._tmp() + } + MPrime.prototype._tmp = function _tmp() { + var tmp = new BN(null) + tmp.words = new Array(Math.ceil(this.n / 13)) + return tmp + } + MPrime.prototype.ireduce = function ireduce(num) { + var r = num + var rlen + do { + this.split(r, this.tmp) + r = this.imulK(r) + r = r.iadd(this.tmp) + rlen = r.bitLength() + } while (rlen > this.n) + var cmp = rlen < this.n ? -1 : r.ucmp(this.p) + if (cmp === 0) { + r.words[0] = 0 + r.length = 1 + } else if (cmp > 0) { + r.isub(this.p) + } else { + r.strip() + } + return r + } + MPrime.prototype.split = function split(input, out) { + input.iushrn(this.n, 0, out) + } + MPrime.prototype.imulK = function imulK(num) { + return num.imul(this.k) + } + function K256() { + MPrime.call( + this, + "k256", + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f" + ) + } + inherits(K256, MPrime) + K256.prototype.split = function split(input, output) { + var mask = 4194303 + var outLen = Math.min(input.length, 9) + for (var i = 0; i < outLen; i++) { + output.words[i] = input.words[i] + } + output.length = outLen + if (input.length <= 9) { + input.words[0] = 0 + input.length = 1 + return + } + var prev = input.words[9] + output.words[output.length++] = prev & mask + for (i = 10; i < input.length; i++) { + var next = input.words[i] | 0 + input.words[i - 10] = ((next & mask) << 4) | (prev >>> 22) + prev = next + } + prev >>>= 22 + input.words[i - 10] = prev + if (prev === 0 && input.length > 10) { + input.length -= 10 + } else { + input.length -= 9 + } + } + K256.prototype.imulK = function imulK(num) { + num.words[num.length] = 0 + num.words[num.length + 1] = 0 + num.length += 2 + var lo = 0 + for (var i = 0; i < num.length; i++) { + var w = num.words[i] | 0 + lo += w * 977 + num.words[i] = lo & 67108863 + lo = w * 64 + ((lo / 67108864) | 0) + } + if (num.words[num.length - 1] === 0) { + num.length-- + if (num.words[num.length - 1] === 0) { + num.length-- + } + } + return num + } + function P224() { + MPrime.call( + this, + "p224", + "ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001" + ) + } + inherits(P224, MPrime) + function P192() { + MPrime.call( + this, + "p192", + "ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff" + ) + } + inherits(P192, MPrime) + function P25519() { + MPrime.call( + this, + "25519", + "7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed" + ) + } + inherits(P25519, MPrime) + P25519.prototype.imulK = function imulK(num) { + var carry = 0 + for (var i = 0; i < num.length; i++) { + var hi = (num.words[i] | 0) * 19 + carry + var lo = hi & 67108863 + hi >>>= 26 + num.words[i] = lo + carry = hi + } + if (carry !== 0) { + num.words[num.length++] = carry + } + return num + } + BN._prime = function prime(name) { + if (primes[name]) return primes[name] + var prime + if (name === "k256") { + prime = new K256() + } else if (name === "p224") { + prime = new P224() + } else if (name === "p192") { + prime = new P192() + } else if (name === "p25519") { + prime = new P25519() + } else { + throw new Error("Unknown prime " + name) + } + primes[name] = prime + return prime + } + function Red(m) { + if (typeof m === "string") { + var prime = BN._prime(m) + this.m = prime.p + this.prime = prime + } else { + assert(m.gtn(1), "modulus must be greater than 1") + this.m = m + this.prime = null + } + } + Red.prototype._verify1 = function _verify1(a) { + assert(a.negative === 0, "red works only with positives") + assert(a.red, "red works only with red numbers") + } + Red.prototype._verify2 = function _verify2(a, b) { + assert( + (a.negative | b.negative) === 0, + "red works only with positives" + ) + assert( + a.red && a.red === b.red, + "red works only with red numbers" + ) + } + Red.prototype.imod = function imod(a) { + if (this.prime) return this.prime.ireduce(a)._forceRed(this) + return a.umod(this.m)._forceRed(this) + } + Red.prototype.neg = function neg(a) { + if (a.isZero()) { + return a.clone() + } + return this.m.sub(a)._forceRed(this) + } + Red.prototype.add = function add(a, b) { + this._verify2(a, b) + var res = a.add(b) + if (res.cmp(this.m) >= 0) { + res.isub(this.m) + } + return res._forceRed(this) + } + Red.prototype.iadd = function iadd(a, b) { + this._verify2(a, b) + var res = a.iadd(b) + if (res.cmp(this.m) >= 0) { + res.isub(this.m) + } + return res + } + Red.prototype.sub = function sub(a, b) { + this._verify2(a, b) + var res = a.sub(b) + if (res.cmpn(0) < 0) { + res.iadd(this.m) + } + return res._forceRed(this) + } + Red.prototype.isub = function isub(a, b) { + this._verify2(a, b) + var res = a.isub(b) + if (res.cmpn(0) < 0) { + res.iadd(this.m) + } + return res + } + Red.prototype.shl = function shl(a, num) { + this._verify1(a) + return this.imod(a.ushln(num)) + } + Red.prototype.imul = function imul(a, b) { + this._verify2(a, b) + return this.imod(a.imul(b)) + } + Red.prototype.mul = function mul(a, b) { + this._verify2(a, b) + return this.imod(a.mul(b)) + } + Red.prototype.isqr = function isqr(a) { + return this.imul(a, a.clone()) + } + Red.prototype.sqr = function sqr(a) { + return this.mul(a, a) + } + Red.prototype.sqrt = function sqrt(a) { + if (a.isZero()) return a.clone() + var mod3 = this.m.andln(3) + assert(mod3 % 2 === 1) + if (mod3 === 3) { + var pow = this.m.add(new BN(1)).iushrn(2) + return this.pow(a, pow) + } + var q = this.m.subn(1) + var s = 0 + while (!q.isZero() && q.andln(1) === 0) { + s++ + q.iushrn(1) + } + assert(!q.isZero()) + var one = new BN(1).toRed(this) + var nOne = one.redNeg() + var lpow = this.m.subn(1).iushrn(1) + var z = this.m.bitLength() + z = new BN(2 * z * z).toRed(this) + while (this.pow(z, lpow).cmp(nOne) !== 0) { + z.redIAdd(nOne) + } + var c = this.pow(z, q) + var r = this.pow(a, q.addn(1).iushrn(1)) + var t = this.pow(a, q) + var m = s + while (t.cmp(one) !== 0) { + var tmp = t + for (var i = 0; tmp.cmp(one) !== 0; i++) { + tmp = tmp.redSqr() + } + assert(i < m) + var b = this.pow(c, new BN(1).iushln(m - i - 1)) + r = r.redMul(b) + c = b.redSqr() + t = t.redMul(c) + m = i + } + return r + } + Red.prototype.invm = function invm(a) { + var inv = a._invmp(this.m) + if (inv.negative !== 0) { + inv.negative = 0 + return this.imod(inv).redNeg() + } else { + return this.imod(inv) + } + } + Red.prototype.pow = function pow(a, num) { + if (num.isZero()) return new BN(1).toRed(this) + if (num.cmpn(1) === 0) return a.clone() + var windowSize = 4 + var wnd = new Array(1 << windowSize) + wnd[0] = new BN(1).toRed(this) + wnd[1] = a + for (var i = 2; i < wnd.length; i++) { + wnd[i] = this.mul(wnd[i - 1], a) + } + var res = wnd[0] + var current = 0 + var currentLen = 0 + var start = num.bitLength() % 26 + if (start === 0) { + start = 26 + } + for (i = num.length - 1; i >= 0; i--) { + var word = num.words[i] + for (var j = start - 1; j >= 0; j--) { + var bit = (word >> j) & 1 + if (res !== wnd[0]) { + res = this.sqr(res) + } + if (bit === 0 && current === 0) { + currentLen = 0 + continue + } + current <<= 1 + current |= bit + currentLen++ + if (currentLen !== windowSize && (i !== 0 || j !== 0)) + continue + res = this.mul(res, wnd[current]) + currentLen = 0 + current = 0 + } + start = 26 + } + return res + } + Red.prototype.convertTo = function convertTo(num) { + var r = num.umod(this.m) + return r === num ? r.clone() : r + } + Red.prototype.convertFrom = function convertFrom(num) { + var res = num.clone() + res.red = null + return res + } + BN.mont = function mont(num) { + return new Mont(num) + } + function Mont(m) { + Red.call(this, m) + this.shift = this.m.bitLength() + if (this.shift % 26 !== 0) { + this.shift += 26 - (this.shift % 26) + } + this.r = new BN(1).iushln(this.shift) + this.r2 = this.imod(this.r.sqr()) + this.rinv = this.r._invmp(this.m) + this.minv = this.rinv + .mul(this.r) + .isubn(1) + .div(this.m) + this.minv = this.minv.umod(this.r) + this.minv = this.r.sub(this.minv) + } + inherits(Mont, Red) + Mont.prototype.convertTo = function convertTo(num) { + return this.imod(num.ushln(this.shift)) + } + Mont.prototype.convertFrom = function convertFrom(num) { + var r = this.imod(num.mul(this.rinv)) + r.red = null + return r + } + Mont.prototype.imul = function imul(a, b) { + if (a.isZero() || b.isZero()) { + a.words[0] = 0 + a.length = 1 + return a + } + var t = a.imul(b) + var c = t + .maskn(this.shift) + .mul(this.minv) + .imaskn(this.shift) + .mul(this.m) + var u = t.isub(c).iushrn(this.shift) + var res = u + if (u.cmp(this.m) >= 0) { + res = u.isub(this.m) + } else if (u.cmpn(0) < 0) { + res = u.iadd(this.m) + } + return res._forceRed(this) + } + Mont.prototype.mul = function mul(a, b) { + if (a.isZero() || b.isZero()) return new BN(0)._forceRed(this) + var t = a.mul(b) + var c = t + .maskn(this.shift) + .mul(this.minv) + .imaskn(this.shift) + .mul(this.m) + var u = t.isub(c).iushrn(this.shift) + var res = u + if (u.cmp(this.m) >= 0) { + res = u.isub(this.m) + } else if (u.cmpn(0) < 0) { + res = u.iadd(this.m) + } + return res._forceRed(this) + } + Mont.prototype.invm = function invm(a) { + var res = this.imod(a._invmp(this.m).mul(this.r2)) + return res._forceRed(this) + } + })(typeof module === "undefined" || module, this) + }, + { buffer: 2 } + ], + 33: [ + function(require, module, exports) { + var r + module.exports = function rand(len) { + if (!r) r = new Rand(null) + return r.generate(len) + } + function Rand(rand) { + this.rand = rand + } + module.exports.Rand = Rand + Rand.prototype.generate = function generate(len) { + return this._rand(len) + } + Rand.prototype._rand = function _rand(n) { + if (this.rand.getBytes) return this.rand.getBytes(n) + var res = new Uint8Array(n) + for (var i = 0; i < res.length; i++) res[i] = this.rand.getByte() + return res + } + if (typeof self === "object") { + if (self.crypto && self.crypto.getRandomValues) { + Rand.prototype._rand = function _rand(n) { + var arr = new Uint8Array(n) + self.crypto.getRandomValues(arr) + return arr + } + } else if (self.msCrypto && self.msCrypto.getRandomValues) { + Rand.prototype._rand = function _rand(n) { + var arr = new Uint8Array(n) + self.msCrypto.getRandomValues(arr) + return arr + } + } else if (typeof window === "object") { + Rand.prototype._rand = function() { + throw new Error("Not implemented yet") + } + } + } else { + try { + var crypto = require("crypto") + if (typeof crypto.randomBytes !== "function") + throw new Error("Not supported") + Rand.prototype._rand = function _rand(n) { + return crypto.randomBytes(n) + } + } catch (e) {} + } + }, + { crypto: 2 } + ], + 34: [ + function(require, module, exports) { + var Buffer = require("safe-buffer").Buffer + var Transform = require("stream").Transform + var StringDecoder = require("string_decoder").StringDecoder + var inherits = require("inherits") + function CipherBase(hashMode) { + Transform.call(this) + this.hashMode = typeof hashMode === "string" + if (this.hashMode) { + this[hashMode] = this._finalOrDigest + } else { + this.final = this._finalOrDigest + } + if (this._final) { + this.__final = this._final + this._final = null + } + this._decoder = null + this._encoding = null + } + inherits(CipherBase, Transform) + CipherBase.prototype.update = function(data, inputEnc, outputEnc) { + if (typeof data === "string") { + data = Buffer.from(data, inputEnc) + } + var outData = this._update(data) + if (this.hashMode) return this + if (outputEnc) { + outData = this._toString(outData, outputEnc) + } + return outData + } + CipherBase.prototype.setAutoPadding = function() {} + CipherBase.prototype.getAuthTag = function() { + throw new Error("trying to get auth tag in unsupported state") + } + CipherBase.prototype.setAuthTag = function() { + throw new Error("trying to set auth tag in unsupported state") + } + CipherBase.prototype.setAAD = function() { + throw new Error("trying to set aad in unsupported state") + } + CipherBase.prototype._transform = function(data, _, next) { + var err + try { + if (this.hashMode) { + this._update(data) + } else { + this.push(this._update(data)) + } + } catch (e) { + err = e + } finally { + next(err) + } + } + CipherBase.prototype._flush = function(done) { + var err + try { + this.push(this.__final()) + } catch (e) { + err = e + } + done(err) + } + CipherBase.prototype._finalOrDigest = function(outputEnc) { + var outData = this.__final() || Buffer.alloc(0) + if (outputEnc) { + outData = this._toString(outData, outputEnc, true) + } + return outData + } + CipherBase.prototype._toString = function(value, enc, fin) { + if (!this._decoder) { + this._decoder = new StringDecoder(enc) + this._encoding = enc + } + if (this._encoding !== enc) + throw new Error("can't switch encodings") + var out = this._decoder.write(value) + if (fin) { + out += this._decoder.end() + } + return out + } + module.exports = CipherBase + }, + { inherits: 66, "safe-buffer": 71, stream: 27, string_decoder: 28 } + ], + 35: [ + function(require, module, exports) { + "use strict" + var inherits = require("inherits") + var MD5 = require("md5.js") + var RIPEMD160 = require("ripemd160") + var sha = require("sha.js") + var Base = require("cipher-base") + function Hash(hash) { + Base.call(this, "digest") + this._hash = hash + } + inherits(Hash, Base) + Hash.prototype._update = function(data) { + this._hash.update(data) + } + Hash.prototype._final = function() { + return this._hash.digest() + } + module.exports = function createHash(alg) { + alg = alg.toLowerCase() + if (alg === "md5") return new MD5() + if (alg === "rmd160" || alg === "ripemd160") return new RIPEMD160() + return new Hash(sha(alg)) + } + }, + { + "cipher-base": 34, + inherits: 66, + "md5.js": 67, + ripemd160: 70, + "sha.js": 79 + } + ], + 36: [ + function(require, module, exports) { + "use strict" + var elliptic = exports + elliptic.version = require("../package.json").version + elliptic.utils = require("./elliptic/utils") + elliptic.rand = require("brorand") + elliptic.curve = require("./elliptic/curve") + elliptic.curves = require("./elliptic/curves") + elliptic.ec = require("./elliptic/ec") + elliptic.eddsa = require("./elliptic/eddsa") + }, + { + "../package.json": 51, + "./elliptic/curve": 39, + "./elliptic/curves": 42, + "./elliptic/ec": 43, + "./elliptic/eddsa": 46, + "./elliptic/utils": 50, + brorand: 33 + } + ], + 37: [ + function(require, module, exports) { + "use strict" + var BN = require("bn.js") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var getNAF = utils.getNAF + var getJSF = utils.getJSF + var assert = utils.assert + function BaseCurve(type, conf) { + this.type = type + this.p = new BN(conf.p, 16) + this.red = conf.prime ? BN.red(conf.prime) : BN.mont(this.p) + this.zero = new BN(0).toRed(this.red) + this.one = new BN(1).toRed(this.red) + this.two = new BN(2).toRed(this.red) + this.n = conf.n && new BN(conf.n, 16) + this.g = conf.g && this.pointFromJSON(conf.g, conf.gRed) + this._wnafT1 = new Array(4) + this._wnafT2 = new Array(4) + this._wnafT3 = new Array(4) + this._wnafT4 = new Array(4) + var adjustCount = this.n && this.p.div(this.n) + if (!adjustCount || adjustCount.cmpn(100) > 0) { + this.redN = null + } else { + this._maxwellTrick = true + this.redN = this.n.toRed(this.red) + } + } + module.exports = BaseCurve + BaseCurve.prototype.point = function point() { + throw new Error("Not implemented") + } + BaseCurve.prototype.validate = function validate() { + throw new Error("Not implemented") + } + BaseCurve.prototype._fixedNafMul = function _fixedNafMul(p, k) { + assert(p.precomputed) + var doubles = p._getDoubles() + var naf = getNAF(k, 1) + var I = (1 << (doubles.step + 1)) - (doubles.step % 2 === 0 ? 2 : 1) + I /= 3 + var repr = [] + for (var j = 0; j < naf.length; j += doubles.step) { + var nafW = 0 + for (var k = j + doubles.step - 1; k >= j; k--) + nafW = (nafW << 1) + naf[k] + repr.push(nafW) + } + var a = this.jpoint(null, null, null) + var b = this.jpoint(null, null, null) + for (var i = I; i > 0; i--) { + for (var j = 0; j < repr.length; j++) { + var nafW = repr[j] + if (nafW === i) b = b.mixedAdd(doubles.points[j]) + else if (nafW === -i) b = b.mixedAdd(doubles.points[j].neg()) + } + a = a.add(b) + } + return a.toP() + } + BaseCurve.prototype._wnafMul = function _wnafMul(p, k) { + var w = 4 + var nafPoints = p._getNAFPoints(w) + w = nafPoints.wnd + var wnd = nafPoints.points + var naf = getNAF(k, w) + var acc = this.jpoint(null, null, null) + for (var i = naf.length - 1; i >= 0; i--) { + for (var k = 0; i >= 0 && naf[i] === 0; i--) k++ + if (i >= 0) k++ + acc = acc.dblp(k) + if (i < 0) break + var z = naf[i] + assert(z !== 0) + if (p.type === "affine") { + if (z > 0) acc = acc.mixedAdd(wnd[(z - 1) >> 1]) + else acc = acc.mixedAdd(wnd[(-z - 1) >> 1].neg()) + } else { + if (z > 0) acc = acc.add(wnd[(z - 1) >> 1]) + else acc = acc.add(wnd[(-z - 1) >> 1].neg()) + } + } + return p.type === "affine" ? acc.toP() : acc + } + BaseCurve.prototype._wnafMulAdd = function _wnafMulAdd( + defW, + points, + coeffs, + len, + jacobianResult + ) { + var wndWidth = this._wnafT1 + var wnd = this._wnafT2 + var naf = this._wnafT3 + var max = 0 + for (var i = 0; i < len; i++) { + var p = points[i] + var nafPoints = p._getNAFPoints(defW) + wndWidth[i] = nafPoints.wnd + wnd[i] = nafPoints.points + } + for (var i = len - 1; i >= 1; i -= 2) { + var a = i - 1 + var b = i + if (wndWidth[a] !== 1 || wndWidth[b] !== 1) { + naf[a] = getNAF(coeffs[a], wndWidth[a]) + naf[b] = getNAF(coeffs[b], wndWidth[b]) + max = Math.max(naf[a].length, max) + max = Math.max(naf[b].length, max) + continue + } + var comb = [points[a], null, null, points[b]] + if (points[a].y.cmp(points[b].y) === 0) { + comb[1] = points[a].add(points[b]) + comb[2] = points[a].toJ().mixedAdd(points[b].neg()) + } else if (points[a].y.cmp(points[b].y.redNeg()) === 0) { + comb[1] = points[a].toJ().mixedAdd(points[b]) + comb[2] = points[a].add(points[b].neg()) + } else { + comb[1] = points[a].toJ().mixedAdd(points[b]) + comb[2] = points[a].toJ().mixedAdd(points[b].neg()) + } + var index = [-3, -1, -5, -7, 0, 7, 5, 1, 3] + var jsf = getJSF(coeffs[a], coeffs[b]) + max = Math.max(jsf[0].length, max) + naf[a] = new Array(max) + naf[b] = new Array(max) + for (var j = 0; j < max; j++) { + var ja = jsf[0][j] | 0 + var jb = jsf[1][j] | 0 + naf[a][j] = index[(ja + 1) * 3 + (jb + 1)] + naf[b][j] = 0 + wnd[a] = comb + } + } + var acc = this.jpoint(null, null, null) + var tmp = this._wnafT4 + for (var i = max; i >= 0; i--) { + var k = 0 + while (i >= 0) { + var zero = true + for (var j = 0; j < len; j++) { + tmp[j] = naf[j][i] | 0 + if (tmp[j] !== 0) zero = false + } + if (!zero) break + k++ + i-- + } + if (i >= 0) k++ + acc = acc.dblp(k) + if (i < 0) break + for (var j = 0; j < len; j++) { + var z = tmp[j] + var p + if (z === 0) continue + else if (z > 0) p = wnd[j][(z - 1) >> 1] + else if (z < 0) p = wnd[j][(-z - 1) >> 1].neg() + if (p.type === "affine") acc = acc.mixedAdd(p) + else acc = acc.add(p) + } + } + for (var i = 0; i < len; i++) wnd[i] = null + if (jacobianResult) return acc + else return acc.toP() + } + function BasePoint(curve, type) { + this.curve = curve + this.type = type + this.precomputed = null + } + BaseCurve.BasePoint = BasePoint + BasePoint.prototype.eq = function eq() { + throw new Error("Not implemented") + } + BasePoint.prototype.validate = function validate() { + return this.curve.validate(this) + } + BaseCurve.prototype.decodePoint = function decodePoint(bytes, enc) { + bytes = utils.toArray(bytes, enc) + var len = this.p.byteLength() + if ( + (bytes[0] === 4 || bytes[0] === 6 || bytes[0] === 7) && + bytes.length - 1 === 2 * len + ) { + if (bytes[0] === 6) assert(bytes[bytes.length - 1] % 2 === 0) + else if (bytes[0] === 7) assert(bytes[bytes.length - 1] % 2 === 1) + var res = this.point( + bytes.slice(1, 1 + len), + bytes.slice(1 + len, 1 + 2 * len) + ) + return res + } else if ( + (bytes[0] === 2 || bytes[0] === 3) && + bytes.length - 1 === len + ) { + return this.pointFromX(bytes.slice(1, 1 + len), bytes[0] === 3) + } + throw new Error("Unknown point format") + } + BasePoint.prototype.encodeCompressed = function encodeCompressed( + enc + ) { + return this.encode(enc, true) + } + BasePoint.prototype._encode = function _encode(compact) { + var len = this.curve.p.byteLength() + var x = this.getX().toArray("be", len) + if (compact) return [this.getY().isEven() ? 2 : 3].concat(x) + return [4].concat(x, this.getY().toArray("be", len)) + } + BasePoint.prototype.encode = function encode(enc, compact) { + return utils.encode(this._encode(compact), enc) + } + BasePoint.prototype.precompute = function precompute(power) { + if (this.precomputed) return this + var precomputed = { doubles: null, naf: null, beta: null } + precomputed.naf = this._getNAFPoints(8) + precomputed.doubles = this._getDoubles(4, power) + precomputed.beta = this._getBeta() + this.precomputed = precomputed + return this + } + BasePoint.prototype._hasDoubles = function _hasDoubles(k) { + if (!this.precomputed) return false + var doubles = this.precomputed.doubles + if (!doubles) return false + return ( + doubles.points.length >= + Math.ceil((k.bitLength() + 1) / doubles.step) + ) + } + BasePoint.prototype._getDoubles = function _getDoubles(step, power) { + if (this.precomputed && this.precomputed.doubles) + return this.precomputed.doubles + var doubles = [this] + var acc = this + for (var i = 0; i < power; i += step) { + for (var j = 0; j < step; j++) acc = acc.dbl() + doubles.push(acc) + } + return { step: step, points: doubles } + } + BasePoint.prototype._getNAFPoints = function _getNAFPoints(wnd) { + if (this.precomputed && this.precomputed.naf) + return this.precomputed.naf + var res = [this] + var max = (1 << wnd) - 1 + var dbl = max === 1 ? null : this.dbl() + for (var i = 1; i < max; i++) res[i] = res[i - 1].add(dbl) + return { wnd: wnd, points: res } + } + BasePoint.prototype._getBeta = function _getBeta() { + return null + } + BasePoint.prototype.dblp = function dblp(k) { + var r = this + for (var i = 0; i < k; i++) r = r.dbl() + return r + } + }, + { "../../elliptic": 36, "bn.js": 32 } + ], + 38: [ + function(require, module, exports) { + "use strict" + var curve = require("../curve") + var elliptic = require("../../elliptic") + var BN = require("bn.js") + var inherits = require("inherits") + var Base = curve.base + var assert = elliptic.utils.assert + function EdwardsCurve(conf) { + this.twisted = (conf.a | 0) !== 1 + this.mOneA = this.twisted && (conf.a | 0) === -1 + this.extended = this.mOneA + Base.call(this, "edwards", conf) + this.a = new BN(conf.a, 16).umod(this.red.m) + this.a = this.a.toRed(this.red) + this.c = new BN(conf.c, 16).toRed(this.red) + this.c2 = this.c.redSqr() + this.d = new BN(conf.d, 16).toRed(this.red) + this.dd = this.d.redAdd(this.d) + assert(!this.twisted || this.c.fromRed().cmpn(1) === 0) + this.oneC = (conf.c | 0) === 1 + } + inherits(EdwardsCurve, Base) + module.exports = EdwardsCurve + EdwardsCurve.prototype._mulA = function _mulA(num) { + if (this.mOneA) return num.redNeg() + else return this.a.redMul(num) + } + EdwardsCurve.prototype._mulC = function _mulC(num) { + if (this.oneC) return num + else return this.c.redMul(num) + } + EdwardsCurve.prototype.jpoint = function jpoint(x, y, z, t) { + return this.point(x, y, z, t) + } + EdwardsCurve.prototype.pointFromX = function pointFromX(x, odd) { + x = new BN(x, 16) + if (!x.red) x = x.toRed(this.red) + var x2 = x.redSqr() + var rhs = this.c2.redSub(this.a.redMul(x2)) + var lhs = this.one.redSub(this.c2.redMul(this.d).redMul(x2)) + var y2 = rhs.redMul(lhs.redInvm()) + var y = y2.redSqrt() + if ( + y + .redSqr() + .redSub(y2) + .cmp(this.zero) !== 0 + ) + throw new Error("invalid point") + var isOdd = y.fromRed().isOdd() + if ((odd && !isOdd) || (!odd && isOdd)) y = y.redNeg() + return this.point(x, y) + } + EdwardsCurve.prototype.pointFromY = function pointFromY(y, odd) { + y = new BN(y, 16) + if (!y.red) y = y.toRed(this.red) + var y2 = y.redSqr() + var lhs = y2.redSub(this.c2) + var rhs = y2 + .redMul(this.d) + .redMul(this.c2) + .redSub(this.a) + var x2 = lhs.redMul(rhs.redInvm()) + if (x2.cmp(this.zero) === 0) { + if (odd) throw new Error("invalid point") + else return this.point(this.zero, y) + } + var x = x2.redSqrt() + if ( + x + .redSqr() + .redSub(x2) + .cmp(this.zero) !== 0 + ) + throw new Error("invalid point") + if (x.fromRed().isOdd() !== odd) x = x.redNeg() + return this.point(x, y) + } + EdwardsCurve.prototype.validate = function validate(point) { + if (point.isInfinity()) return true + point.normalize() + var x2 = point.x.redSqr() + var y2 = point.y.redSqr() + var lhs = x2.redMul(this.a).redAdd(y2) + var rhs = this.c2.redMul( + this.one.redAdd(this.d.redMul(x2).redMul(y2)) + ) + return lhs.cmp(rhs) === 0 + } + function Point(curve, x, y, z, t) { + Base.BasePoint.call(this, curve, "projective") + if (x === null && y === null && z === null) { + this.x = this.curve.zero + this.y = this.curve.one + this.z = this.curve.one + this.t = this.curve.zero + this.zOne = true + } else { + this.x = new BN(x, 16) + this.y = new BN(y, 16) + this.z = z ? new BN(z, 16) : this.curve.one + this.t = t && new BN(t, 16) + if (!this.x.red) this.x = this.x.toRed(this.curve.red) + if (!this.y.red) this.y = this.y.toRed(this.curve.red) + if (!this.z.red) this.z = this.z.toRed(this.curve.red) + if (this.t && !this.t.red) this.t = this.t.toRed(this.curve.red) + this.zOne = this.z === this.curve.one + if (this.curve.extended && !this.t) { + this.t = this.x.redMul(this.y) + if (!this.zOne) this.t = this.t.redMul(this.z.redInvm()) + } + } + } + inherits(Point, Base.BasePoint) + EdwardsCurve.prototype.pointFromJSON = function pointFromJSON(obj) { + return Point.fromJSON(this, obj) + } + EdwardsCurve.prototype.point = function point(x, y, z, t) { + return new Point(this, x, y, z, t) + } + Point.fromJSON = function fromJSON(curve, obj) { + return new Point(curve, obj[0], obj[1], obj[2]) + } + Point.prototype.inspect = function inspect() { + if (this.isInfinity()) return "" + return ( + "" + ) + } + Point.prototype.isInfinity = function isInfinity() { + return ( + this.x.cmpn(0) === 0 && + (this.y.cmp(this.z) === 0 || + (this.zOne && this.y.cmp(this.curve.c) === 0)) + ) + } + Point.prototype._extDbl = function _extDbl() { + var a = this.x.redSqr() + var b = this.y.redSqr() + var c = this.z.redSqr() + c = c.redIAdd(c) + var d = this.curve._mulA(a) + var e = this.x + .redAdd(this.y) + .redSqr() + .redISub(a) + .redISub(b) + var g = d.redAdd(b) + var f = g.redSub(c) + var h = d.redSub(b) + var nx = e.redMul(f) + var ny = g.redMul(h) + var nt = e.redMul(h) + var nz = f.redMul(g) + return this.curve.point(nx, ny, nz, nt) + } + Point.prototype._projDbl = function _projDbl() { + var b = this.x.redAdd(this.y).redSqr() + var c = this.x.redSqr() + var d = this.y.redSqr() + var nx + var ny + var nz + if (this.curve.twisted) { + var e = this.curve._mulA(c) + var f = e.redAdd(d) + if (this.zOne) { + nx = b + .redSub(c) + .redSub(d) + .redMul(f.redSub(this.curve.two)) + ny = f.redMul(e.redSub(d)) + nz = f + .redSqr() + .redSub(f) + .redSub(f) + } else { + var h = this.z.redSqr() + var j = f.redSub(h).redISub(h) + nx = b + .redSub(c) + .redISub(d) + .redMul(j) + ny = f.redMul(e.redSub(d)) + nz = f.redMul(j) + } + } else { + var e = c.redAdd(d) + var h = this.curve._mulC(this.z).redSqr() + var j = e.redSub(h).redSub(h) + nx = this.curve._mulC(b.redISub(e)).redMul(j) + ny = this.curve._mulC(e).redMul(c.redISub(d)) + nz = e.redMul(j) + } + return this.curve.point(nx, ny, nz) + } + Point.prototype.dbl = function dbl() { + if (this.isInfinity()) return this + if (this.curve.extended) return this._extDbl() + else return this._projDbl() + } + Point.prototype._extAdd = function _extAdd(p) { + var a = this.y.redSub(this.x).redMul(p.y.redSub(p.x)) + var b = this.y.redAdd(this.x).redMul(p.y.redAdd(p.x)) + var c = this.t.redMul(this.curve.dd).redMul(p.t) + var d = this.z.redMul(p.z.redAdd(p.z)) + var e = b.redSub(a) + var f = d.redSub(c) + var g = d.redAdd(c) + var h = b.redAdd(a) + var nx = e.redMul(f) + var ny = g.redMul(h) + var nt = e.redMul(h) + var nz = f.redMul(g) + return this.curve.point(nx, ny, nz, nt) + } + Point.prototype._projAdd = function _projAdd(p) { + var a = this.z.redMul(p.z) + var b = a.redSqr() + var c = this.x.redMul(p.x) + var d = this.y.redMul(p.y) + var e = this.curve.d.redMul(c).redMul(d) + var f = b.redSub(e) + var g = b.redAdd(e) + var tmp = this.x + .redAdd(this.y) + .redMul(p.x.redAdd(p.y)) + .redISub(c) + .redISub(d) + var nx = a.redMul(f).redMul(tmp) + var ny + var nz + if (this.curve.twisted) { + ny = a.redMul(g).redMul(d.redSub(this.curve._mulA(c))) + nz = f.redMul(g) + } else { + ny = a.redMul(g).redMul(d.redSub(c)) + nz = this.curve._mulC(f).redMul(g) + } + return this.curve.point(nx, ny, nz) + } + Point.prototype.add = function add(p) { + if (this.isInfinity()) return p + if (p.isInfinity()) return this + if (this.curve.extended) return this._extAdd(p) + else return this._projAdd(p) + } + Point.prototype.mul = function mul(k) { + if (this._hasDoubles(k)) return this.curve._fixedNafMul(this, k) + else return this.curve._wnafMul(this, k) + } + Point.prototype.mulAdd = function mulAdd(k1, p, k2) { + return this.curve._wnafMulAdd(1, [this, p], [k1, k2], 2, false) + } + Point.prototype.jmulAdd = function jmulAdd(k1, p, k2) { + return this.curve._wnafMulAdd(1, [this, p], [k1, k2], 2, true) + } + Point.prototype.normalize = function normalize() { + if (this.zOne) return this + var zi = this.z.redInvm() + this.x = this.x.redMul(zi) + this.y = this.y.redMul(zi) + if (this.t) this.t = this.t.redMul(zi) + this.z = this.curve.one + this.zOne = true + return this + } + Point.prototype.neg = function neg() { + return this.curve.point( + this.x.redNeg(), + this.y, + this.z, + this.t && this.t.redNeg() + ) + } + Point.prototype.getX = function getX() { + this.normalize() + return this.x.fromRed() + } + Point.prototype.getY = function getY() { + this.normalize() + return this.y.fromRed() + } + Point.prototype.eq = function eq(other) { + return ( + this === other || + (this.getX().cmp(other.getX()) === 0 && + this.getY().cmp(other.getY()) === 0) + ) + } + Point.prototype.eqXToP = function eqXToP(x) { + var rx = x.toRed(this.curve.red).redMul(this.z) + if (this.x.cmp(rx) === 0) return true + var xc = x.clone() + var t = this.curve.redN.redMul(this.z) + for (;;) { + xc.iadd(this.curve.n) + if (xc.cmp(this.curve.p) >= 0) return false + rx.redIAdd(t) + if (this.x.cmp(rx) === 0) return true + } + } + Point.prototype.toP = Point.prototype.normalize + Point.prototype.mixedAdd = Point.prototype.add + }, + { "../../elliptic": 36, "../curve": 39, "bn.js": 32, inherits: 66 } + ], + 39: [ + function(require, module, exports) { + "use strict" + var curve = exports + curve.base = require("./base") + curve.short = require("./short") + curve.mont = require("./mont") + curve.edwards = require("./edwards") + }, + { "./base": 37, "./edwards": 38, "./mont": 40, "./short": 41 } + ], + 40: [ + function(require, module, exports) { + "use strict" + var curve = require("../curve") + var BN = require("bn.js") + var inherits = require("inherits") + var Base = curve.base + var elliptic = require("../../elliptic") + var utils = elliptic.utils + function MontCurve(conf) { + Base.call(this, "mont", conf) + this.a = new BN(conf.a, 16).toRed(this.red) + this.b = new BN(conf.b, 16).toRed(this.red) + this.i4 = new BN(4).toRed(this.red).redInvm() + this.two = new BN(2).toRed(this.red) + this.a24 = this.i4.redMul(this.a.redAdd(this.two)) + } + inherits(MontCurve, Base) + module.exports = MontCurve + MontCurve.prototype.validate = function validate(point) { + var x = point.normalize().x + var x2 = x.redSqr() + var rhs = x2 + .redMul(x) + .redAdd(x2.redMul(this.a)) + .redAdd(x) + var y = rhs.redSqrt() + return y.redSqr().cmp(rhs) === 0 + } + function Point(curve, x, z) { + Base.BasePoint.call(this, curve, "projective") + if (x === null && z === null) { + this.x = this.curve.one + this.z = this.curve.zero + } else { + this.x = new BN(x, 16) + this.z = new BN(z, 16) + if (!this.x.red) this.x = this.x.toRed(this.curve.red) + if (!this.z.red) this.z = this.z.toRed(this.curve.red) + } + } + inherits(Point, Base.BasePoint) + MontCurve.prototype.decodePoint = function decodePoint(bytes, enc) { + return this.point(utils.toArray(bytes, enc), 1) + } + MontCurve.prototype.point = function point(x, z) { + return new Point(this, x, z) + } + MontCurve.prototype.pointFromJSON = function pointFromJSON(obj) { + return Point.fromJSON(this, obj) + } + Point.prototype.precompute = function precompute() {} + Point.prototype._encode = function _encode() { + return this.getX().toArray("be", this.curve.p.byteLength()) + } + Point.fromJSON = function fromJSON(curve, obj) { + return new Point(curve, obj[0], obj[1] || curve.one) + } + Point.prototype.inspect = function inspect() { + if (this.isInfinity()) return "" + return ( + "" + ) + } + Point.prototype.isInfinity = function isInfinity() { + return this.z.cmpn(0) === 0 + } + Point.prototype.dbl = function dbl() { + var a = this.x.redAdd(this.z) + var aa = a.redSqr() + var b = this.x.redSub(this.z) + var bb = b.redSqr() + var c = aa.redSub(bb) + var nx = aa.redMul(bb) + var nz = c.redMul(bb.redAdd(this.curve.a24.redMul(c))) + return this.curve.point(nx, nz) + } + Point.prototype.add = function add() { + throw new Error("Not supported on Montgomery curve") + } + Point.prototype.diffAdd = function diffAdd(p, diff) { + var a = this.x.redAdd(this.z) + var b = this.x.redSub(this.z) + var c = p.x.redAdd(p.z) + var d = p.x.redSub(p.z) + var da = d.redMul(a) + var cb = c.redMul(b) + var nx = diff.z.redMul(da.redAdd(cb).redSqr()) + var nz = diff.x.redMul(da.redISub(cb).redSqr()) + return this.curve.point(nx, nz) + } + Point.prototype.mul = function mul(k) { + var t = k.clone() + var a = this + var b = this.curve.point(null, null) + var c = this + for (var bits = []; t.cmpn(0) !== 0; t.iushrn(1)) + bits.push(t.andln(1)) + for (var i = bits.length - 1; i >= 0; i--) { + if (bits[i] === 0) { + a = a.diffAdd(b, c) + b = b.dbl() + } else { + b = a.diffAdd(b, c) + a = a.dbl() + } + } + return b + } + Point.prototype.mulAdd = function mulAdd() { + throw new Error("Not supported on Montgomery curve") + } + Point.prototype.jumlAdd = function jumlAdd() { + throw new Error("Not supported on Montgomery curve") + } + Point.prototype.eq = function eq(other) { + return this.getX().cmp(other.getX()) === 0 + } + Point.prototype.normalize = function normalize() { + this.x = this.x.redMul(this.z.redInvm()) + this.z = this.curve.one + return this + } + Point.prototype.getX = function getX() { + this.normalize() + return this.x.fromRed() + } + }, + { "../../elliptic": 36, "../curve": 39, "bn.js": 32, inherits: 66 } + ], + 41: [ + function(require, module, exports) { + "use strict" + var curve = require("../curve") + var elliptic = require("../../elliptic") + var BN = require("bn.js") + var inherits = require("inherits") + var Base = curve.base + var assert = elliptic.utils.assert + function ShortCurve(conf) { + Base.call(this, "short", conf) + this.a = new BN(conf.a, 16).toRed(this.red) + this.b = new BN(conf.b, 16).toRed(this.red) + this.tinv = this.two.redInvm() + this.zeroA = this.a.fromRed().cmpn(0) === 0 + this.threeA = + this.a + .fromRed() + .sub(this.p) + .cmpn(-3) === 0 + this.endo = this._getEndomorphism(conf) + this._endoWnafT1 = new Array(4) + this._endoWnafT2 = new Array(4) + } + inherits(ShortCurve, Base) + module.exports = ShortCurve + ShortCurve.prototype._getEndomorphism = function _getEndomorphism( + conf + ) { + if (!this.zeroA || !this.g || !this.n || this.p.modn(3) !== 1) + return + var beta + var lambda + if (conf.beta) { + beta = new BN(conf.beta, 16).toRed(this.red) + } else { + var betas = this._getEndoRoots(this.p) + beta = betas[0].cmp(betas[1]) < 0 ? betas[0] : betas[1] + beta = beta.toRed(this.red) + } + if (conf.lambda) { + lambda = new BN(conf.lambda, 16) + } else { + var lambdas = this._getEndoRoots(this.n) + if (this.g.mul(lambdas[0]).x.cmp(this.g.x.redMul(beta)) === 0) { + lambda = lambdas[0] + } else { + lambda = lambdas[1] + assert(this.g.mul(lambda).x.cmp(this.g.x.redMul(beta)) === 0) + } + } + var basis + if (conf.basis) { + basis = conf.basis.map(function(vec) { + return { a: new BN(vec.a, 16), b: new BN(vec.b, 16) } + }) + } else { + basis = this._getEndoBasis(lambda) + } + return { beta: beta, lambda: lambda, basis: basis } + } + ShortCurve.prototype._getEndoRoots = function _getEndoRoots(num) { + var red = num === this.p ? this.red : BN.mont(num) + var tinv = new BN(2).toRed(red).redInvm() + var ntinv = tinv.redNeg() + var s = new BN(3) + .toRed(red) + .redNeg() + .redSqrt() + .redMul(tinv) + var l1 = ntinv.redAdd(s).fromRed() + var l2 = ntinv.redSub(s).fromRed() + return [l1, l2] + } + ShortCurve.prototype._getEndoBasis = function _getEndoBasis(lambda) { + var aprxSqrt = this.n.ushrn(Math.floor(this.n.bitLength() / 2)) + var u = lambda + var v = this.n.clone() + var x1 = new BN(1) + var y1 = new BN(0) + var x2 = new BN(0) + var y2 = new BN(1) + var a0 + var b0 + var a1 + var b1 + var a2 + var b2 + var prevR + var i = 0 + var r + var x + while (u.cmpn(0) !== 0) { + var q = v.div(u) + r = v.sub(q.mul(u)) + x = x2.sub(q.mul(x1)) + var y = y2.sub(q.mul(y1)) + if (!a1 && r.cmp(aprxSqrt) < 0) { + a0 = prevR.neg() + b0 = x1 + a1 = r.neg() + b1 = x + } else if (a1 && ++i === 2) { + break + } + prevR = r + v = u + u = r + x2 = x1 + x1 = x + y2 = y1 + y1 = y + } + a2 = r.neg() + b2 = x + var len1 = a1.sqr().add(b1.sqr()) + var len2 = a2.sqr().add(b2.sqr()) + if (len2.cmp(len1) >= 0) { + a2 = a0 + b2 = b0 + } + if (a1.negative) { + a1 = a1.neg() + b1 = b1.neg() + } + if (a2.negative) { + a2 = a2.neg() + b2 = b2.neg() + } + return [{ a: a1, b: b1 }, { a: a2, b: b2 }] + } + ShortCurve.prototype._endoSplit = function _endoSplit(k) { + var basis = this.endo.basis + var v1 = basis[0] + var v2 = basis[1] + var c1 = v2.b.mul(k).divRound(this.n) + var c2 = v1.b + .neg() + .mul(k) + .divRound(this.n) + var p1 = c1.mul(v1.a) + var p2 = c2.mul(v2.a) + var q1 = c1.mul(v1.b) + var q2 = c2.mul(v2.b) + var k1 = k.sub(p1).sub(p2) + var k2 = q1.add(q2).neg() + return { k1: k1, k2: k2 } + } + ShortCurve.prototype.pointFromX = function pointFromX(x, odd) { + x = new BN(x, 16) + if (!x.red) x = x.toRed(this.red) + var y2 = x + .redSqr() + .redMul(x) + .redIAdd(x.redMul(this.a)) + .redIAdd(this.b) + var y = y2.redSqrt() + if ( + y + .redSqr() + .redSub(y2) + .cmp(this.zero) !== 0 + ) + throw new Error("invalid point") + var isOdd = y.fromRed().isOdd() + if ((odd && !isOdd) || (!odd && isOdd)) y = y.redNeg() + return this.point(x, y) + } + ShortCurve.prototype.validate = function validate(point) { + if (point.inf) return true + var x = point.x + var y = point.y + var ax = this.a.redMul(x) + var rhs = x + .redSqr() + .redMul(x) + .redIAdd(ax) + .redIAdd(this.b) + return ( + y + .redSqr() + .redISub(rhs) + .cmpn(0) === 0 + ) + } + ShortCurve.prototype._endoWnafMulAdd = function _endoWnafMulAdd( + points, + coeffs, + jacobianResult + ) { + var npoints = this._endoWnafT1 + var ncoeffs = this._endoWnafT2 + for (var i = 0; i < points.length; i++) { + var split = this._endoSplit(coeffs[i]) + var p = points[i] + var beta = p._getBeta() + if (split.k1.negative) { + split.k1.ineg() + p = p.neg(true) + } + if (split.k2.negative) { + split.k2.ineg() + beta = beta.neg(true) + } + npoints[i * 2] = p + npoints[i * 2 + 1] = beta + ncoeffs[i * 2] = split.k1 + ncoeffs[i * 2 + 1] = split.k2 + } + var res = this._wnafMulAdd( + 1, + npoints, + ncoeffs, + i * 2, + jacobianResult + ) + for (var j = 0; j < i * 2; j++) { + npoints[j] = null + ncoeffs[j] = null + } + return res + } + function Point(curve, x, y, isRed) { + Base.BasePoint.call(this, curve, "affine") + if (x === null && y === null) { + this.x = null + this.y = null + this.inf = true + } else { + this.x = new BN(x, 16) + this.y = new BN(y, 16) + if (isRed) { + this.x.forceRed(this.curve.red) + this.y.forceRed(this.curve.red) + } + if (!this.x.red) this.x = this.x.toRed(this.curve.red) + if (!this.y.red) this.y = this.y.toRed(this.curve.red) + this.inf = false + } + } + inherits(Point, Base.BasePoint) + ShortCurve.prototype.point = function point(x, y, isRed) { + return new Point(this, x, y, isRed) + } + ShortCurve.prototype.pointFromJSON = function pointFromJSON( + obj, + red + ) { + return Point.fromJSON(this, obj, red) + } + Point.prototype._getBeta = function _getBeta() { + if (!this.curve.endo) return + var pre = this.precomputed + if (pre && pre.beta) return pre.beta + var beta = this.curve.point( + this.x.redMul(this.curve.endo.beta), + this.y + ) + if (pre) { + var curve = this.curve + var endoMul = function(p) { + return curve.point(p.x.redMul(curve.endo.beta), p.y) + } + pre.beta = beta + beta.precomputed = { + beta: null, + naf: pre.naf && { + wnd: pre.naf.wnd, + points: pre.naf.points.map(endoMul) + }, + doubles: pre.doubles && { + step: pre.doubles.step, + points: pre.doubles.points.map(endoMul) + } + } + } + return beta + } + Point.prototype.toJSON = function toJSON() { + if (!this.precomputed) return [this.x, this.y] + return [ + this.x, + this.y, + this.precomputed && { + doubles: this.precomputed.doubles && { + step: this.precomputed.doubles.step, + points: this.precomputed.doubles.points.slice(1) + }, + naf: this.precomputed.naf && { + wnd: this.precomputed.naf.wnd, + points: this.precomputed.naf.points.slice(1) + } + } + ] + } + Point.fromJSON = function fromJSON(curve, obj, red) { + if (typeof obj === "string") obj = JSON.parse(obj) + var res = curve.point(obj[0], obj[1], red) + if (!obj[2]) return res + function obj2point(obj) { + return curve.point(obj[0], obj[1], red) + } + var pre = obj[2] + res.precomputed = { + beta: null, + doubles: pre.doubles && { + step: pre.doubles.step, + points: [res].concat(pre.doubles.points.map(obj2point)) + }, + naf: pre.naf && { + wnd: pre.naf.wnd, + points: [res].concat(pre.naf.points.map(obj2point)) + } + } + return res + } + Point.prototype.inspect = function inspect() { + if (this.isInfinity()) return "" + return ( + "" + ) + } + Point.prototype.isInfinity = function isInfinity() { + return this.inf + } + Point.prototype.add = function add(p) { + if (this.inf) return p + if (p.inf) return this + if (this.eq(p)) return this.dbl() + if (this.neg().eq(p)) return this.curve.point(null, null) + if (this.x.cmp(p.x) === 0) return this.curve.point(null, null) + var c = this.y.redSub(p.y) + if (c.cmpn(0) !== 0) c = c.redMul(this.x.redSub(p.x).redInvm()) + var nx = c + .redSqr() + .redISub(this.x) + .redISub(p.x) + var ny = c.redMul(this.x.redSub(nx)).redISub(this.y) + return this.curve.point(nx, ny) + } + Point.prototype.dbl = function dbl() { + if (this.inf) return this + var ys1 = this.y.redAdd(this.y) + if (ys1.cmpn(0) === 0) return this.curve.point(null, null) + var a = this.curve.a + var x2 = this.x.redSqr() + var dyinv = ys1.redInvm() + var c = x2 + .redAdd(x2) + .redIAdd(x2) + .redIAdd(a) + .redMul(dyinv) + var nx = c.redSqr().redISub(this.x.redAdd(this.x)) + var ny = c.redMul(this.x.redSub(nx)).redISub(this.y) + return this.curve.point(nx, ny) + } + Point.prototype.getX = function getX() { + return this.x.fromRed() + } + Point.prototype.getY = function getY() { + return this.y.fromRed() + } + Point.prototype.mul = function mul(k) { + k = new BN(k, 16) + if (this._hasDoubles(k)) return this.curve._fixedNafMul(this, k) + else if (this.curve.endo) + return this.curve._endoWnafMulAdd([this], [k]) + else return this.curve._wnafMul(this, k) + } + Point.prototype.mulAdd = function mulAdd(k1, p2, k2) { + var points = [this, p2] + var coeffs = [k1, k2] + if (this.curve.endo) + return this.curve._endoWnafMulAdd(points, coeffs) + else return this.curve._wnafMulAdd(1, points, coeffs, 2) + } + Point.prototype.jmulAdd = function jmulAdd(k1, p2, k2) { + var points = [this, p2] + var coeffs = [k1, k2] + if (this.curve.endo) + return this.curve._endoWnafMulAdd(points, coeffs, true) + else return this.curve._wnafMulAdd(1, points, coeffs, 2, true) + } + Point.prototype.eq = function eq(p) { + return ( + this === p || + (this.inf === p.inf && + (this.inf || (this.x.cmp(p.x) === 0 && this.y.cmp(p.y) === 0))) + ) + } + Point.prototype.neg = function neg(_precompute) { + if (this.inf) return this + var res = this.curve.point(this.x, this.y.redNeg()) + if (_precompute && this.precomputed) { + var pre = this.precomputed + var negate = function(p) { + return p.neg() + } + res.precomputed = { + naf: pre.naf && { + wnd: pre.naf.wnd, + points: pre.naf.points.map(negate) + }, + doubles: pre.doubles && { + step: pre.doubles.step, + points: pre.doubles.points.map(negate) + } + } + } + return res + } + Point.prototype.toJ = function toJ() { + if (this.inf) return this.curve.jpoint(null, null, null) + var res = this.curve.jpoint(this.x, this.y, this.curve.one) + return res + } + function JPoint(curve, x, y, z) { + Base.BasePoint.call(this, curve, "jacobian") + if (x === null && y === null && z === null) { + this.x = this.curve.one + this.y = this.curve.one + this.z = new BN(0) + } else { + this.x = new BN(x, 16) + this.y = new BN(y, 16) + this.z = new BN(z, 16) + } + if (!this.x.red) this.x = this.x.toRed(this.curve.red) + if (!this.y.red) this.y = this.y.toRed(this.curve.red) + if (!this.z.red) this.z = this.z.toRed(this.curve.red) + this.zOne = this.z === this.curve.one + } + inherits(JPoint, Base.BasePoint) + ShortCurve.prototype.jpoint = function jpoint(x, y, z) { + return new JPoint(this, x, y, z) + } + JPoint.prototype.toP = function toP() { + if (this.isInfinity()) return this.curve.point(null, null) + var zinv = this.z.redInvm() + var zinv2 = zinv.redSqr() + var ax = this.x.redMul(zinv2) + var ay = this.y.redMul(zinv2).redMul(zinv) + return this.curve.point(ax, ay) + } + JPoint.prototype.neg = function neg() { + return this.curve.jpoint(this.x, this.y.redNeg(), this.z) + } + JPoint.prototype.add = function add(p) { + if (this.isInfinity()) return p + if (p.isInfinity()) return this + var pz2 = p.z.redSqr() + var z2 = this.z.redSqr() + var u1 = this.x.redMul(pz2) + var u2 = p.x.redMul(z2) + var s1 = this.y.redMul(pz2.redMul(p.z)) + var s2 = p.y.redMul(z2.redMul(this.z)) + var h = u1.redSub(u2) + var r = s1.redSub(s2) + if (h.cmpn(0) === 0) { + if (r.cmpn(0) !== 0) return this.curve.jpoint(null, null, null) + else return this.dbl() + } + var h2 = h.redSqr() + var h3 = h2.redMul(h) + var v = u1.redMul(h2) + var nx = r + .redSqr() + .redIAdd(h3) + .redISub(v) + .redISub(v) + var ny = r.redMul(v.redISub(nx)).redISub(s1.redMul(h3)) + var nz = this.z.redMul(p.z).redMul(h) + return this.curve.jpoint(nx, ny, nz) + } + JPoint.prototype.mixedAdd = function mixedAdd(p) { + if (this.isInfinity()) return p.toJ() + if (p.isInfinity()) return this + var z2 = this.z.redSqr() + var u1 = this.x + var u2 = p.x.redMul(z2) + var s1 = this.y + var s2 = p.y.redMul(z2).redMul(this.z) + var h = u1.redSub(u2) + var r = s1.redSub(s2) + if (h.cmpn(0) === 0) { + if (r.cmpn(0) !== 0) return this.curve.jpoint(null, null, null) + else return this.dbl() + } + var h2 = h.redSqr() + var h3 = h2.redMul(h) + var v = u1.redMul(h2) + var nx = r + .redSqr() + .redIAdd(h3) + .redISub(v) + .redISub(v) + var ny = r.redMul(v.redISub(nx)).redISub(s1.redMul(h3)) + var nz = this.z.redMul(h) + return this.curve.jpoint(nx, ny, nz) + } + JPoint.prototype.dblp = function dblp(pow) { + if (pow === 0) return this + if (this.isInfinity()) return this + if (!pow) return this.dbl() + if (this.curve.zeroA || this.curve.threeA) { + var r = this + for (var i = 0; i < pow; i++) r = r.dbl() + return r + } + var a = this.curve.a + var tinv = this.curve.tinv + var jx = this.x + var jy = this.y + var jz = this.z + var jz4 = jz.redSqr().redSqr() + var jyd = jy.redAdd(jy) + for (var i = 0; i < pow; i++) { + var jx2 = jx.redSqr() + var jyd2 = jyd.redSqr() + var jyd4 = jyd2.redSqr() + var c = jx2 + .redAdd(jx2) + .redIAdd(jx2) + .redIAdd(a.redMul(jz4)) + var t1 = jx.redMul(jyd2) + var nx = c.redSqr().redISub(t1.redAdd(t1)) + var t2 = t1.redISub(nx) + var dny = c.redMul(t2) + dny = dny.redIAdd(dny).redISub(jyd4) + var nz = jyd.redMul(jz) + if (i + 1 < pow) jz4 = jz4.redMul(jyd4) + jx = nx + jz = nz + jyd = dny + } + return this.curve.jpoint(jx, jyd.redMul(tinv), jz) + } + JPoint.prototype.dbl = function dbl() { + if (this.isInfinity()) return this + if (this.curve.zeroA) return this._zeroDbl() + else if (this.curve.threeA) return this._threeDbl() + else return this._dbl() + } + JPoint.prototype._zeroDbl = function _zeroDbl() { + var nx + var ny + var nz + if (this.zOne) { + var xx = this.x.redSqr() + var yy = this.y.redSqr() + var yyyy = yy.redSqr() + var s = this.x + .redAdd(yy) + .redSqr() + .redISub(xx) + .redISub(yyyy) + s = s.redIAdd(s) + var m = xx.redAdd(xx).redIAdd(xx) + var t = m + .redSqr() + .redISub(s) + .redISub(s) + var yyyy8 = yyyy.redIAdd(yyyy) + yyyy8 = yyyy8.redIAdd(yyyy8) + yyyy8 = yyyy8.redIAdd(yyyy8) + nx = t + ny = m.redMul(s.redISub(t)).redISub(yyyy8) + nz = this.y.redAdd(this.y) + } else { + var a = this.x.redSqr() + var b = this.y.redSqr() + var c = b.redSqr() + var d = this.x + .redAdd(b) + .redSqr() + .redISub(a) + .redISub(c) + d = d.redIAdd(d) + var e = a.redAdd(a).redIAdd(a) + var f = e.redSqr() + var c8 = c.redIAdd(c) + c8 = c8.redIAdd(c8) + c8 = c8.redIAdd(c8) + nx = f.redISub(d).redISub(d) + ny = e.redMul(d.redISub(nx)).redISub(c8) + nz = this.y.redMul(this.z) + nz = nz.redIAdd(nz) + } + return this.curve.jpoint(nx, ny, nz) + } + JPoint.prototype._threeDbl = function _threeDbl() { + var nx + var ny + var nz + if (this.zOne) { + var xx = this.x.redSqr() + var yy = this.y.redSqr() + var yyyy = yy.redSqr() + var s = this.x + .redAdd(yy) + .redSqr() + .redISub(xx) + .redISub(yyyy) + s = s.redIAdd(s) + var m = xx + .redAdd(xx) + .redIAdd(xx) + .redIAdd(this.curve.a) + var t = m + .redSqr() + .redISub(s) + .redISub(s) + nx = t + var yyyy8 = yyyy.redIAdd(yyyy) + yyyy8 = yyyy8.redIAdd(yyyy8) + yyyy8 = yyyy8.redIAdd(yyyy8) + ny = m.redMul(s.redISub(t)).redISub(yyyy8) + nz = this.y.redAdd(this.y) + } else { + var delta = this.z.redSqr() + var gamma = this.y.redSqr() + var beta = this.x.redMul(gamma) + var alpha = this.x.redSub(delta).redMul(this.x.redAdd(delta)) + alpha = alpha.redAdd(alpha).redIAdd(alpha) + var beta4 = beta.redIAdd(beta) + beta4 = beta4.redIAdd(beta4) + var beta8 = beta4.redAdd(beta4) + nx = alpha.redSqr().redISub(beta8) + nz = this.y + .redAdd(this.z) + .redSqr() + .redISub(gamma) + .redISub(delta) + var ggamma8 = gamma.redSqr() + ggamma8 = ggamma8.redIAdd(ggamma8) + ggamma8 = ggamma8.redIAdd(ggamma8) + ggamma8 = ggamma8.redIAdd(ggamma8) + ny = alpha.redMul(beta4.redISub(nx)).redISub(ggamma8) + } + return this.curve.jpoint(nx, ny, nz) + } + JPoint.prototype._dbl = function _dbl() { + var a = this.curve.a + var jx = this.x + var jy = this.y + var jz = this.z + var jz4 = jz.redSqr().redSqr() + var jx2 = jx.redSqr() + var jy2 = jy.redSqr() + var c = jx2 + .redAdd(jx2) + .redIAdd(jx2) + .redIAdd(a.redMul(jz4)) + var jxd4 = jx.redAdd(jx) + jxd4 = jxd4.redIAdd(jxd4) + var t1 = jxd4.redMul(jy2) + var nx = c.redSqr().redISub(t1.redAdd(t1)) + var t2 = t1.redISub(nx) + var jyd8 = jy2.redSqr() + jyd8 = jyd8.redIAdd(jyd8) + jyd8 = jyd8.redIAdd(jyd8) + jyd8 = jyd8.redIAdd(jyd8) + var ny = c.redMul(t2).redISub(jyd8) + var nz = jy.redAdd(jy).redMul(jz) + return this.curve.jpoint(nx, ny, nz) + } + JPoint.prototype.trpl = function trpl() { + if (!this.curve.zeroA) return this.dbl().add(this) + var xx = this.x.redSqr() + var yy = this.y.redSqr() + var zz = this.z.redSqr() + var yyyy = yy.redSqr() + var m = xx.redAdd(xx).redIAdd(xx) + var mm = m.redSqr() + var e = this.x + .redAdd(yy) + .redSqr() + .redISub(xx) + .redISub(yyyy) + e = e.redIAdd(e) + e = e.redAdd(e).redIAdd(e) + e = e.redISub(mm) + var ee = e.redSqr() + var t = yyyy.redIAdd(yyyy) + t = t.redIAdd(t) + t = t.redIAdd(t) + t = t.redIAdd(t) + var u = m + .redIAdd(e) + .redSqr() + .redISub(mm) + .redISub(ee) + .redISub(t) + var yyu4 = yy.redMul(u) + yyu4 = yyu4.redIAdd(yyu4) + yyu4 = yyu4.redIAdd(yyu4) + var nx = this.x.redMul(ee).redISub(yyu4) + nx = nx.redIAdd(nx) + nx = nx.redIAdd(nx) + var ny = this.y.redMul(u.redMul(t.redISub(u)).redISub(e.redMul(ee))) + ny = ny.redIAdd(ny) + ny = ny.redIAdd(ny) + ny = ny.redIAdd(ny) + var nz = this.z + .redAdd(e) + .redSqr() + .redISub(zz) + .redISub(ee) + return this.curve.jpoint(nx, ny, nz) + } + JPoint.prototype.mul = function mul(k, kbase) { + k = new BN(k, kbase) + return this.curve._wnafMul(this, k) + } + JPoint.prototype.eq = function eq(p) { + if (p.type === "affine") return this.eq(p.toJ()) + if (this === p) return true + var z2 = this.z.redSqr() + var pz2 = p.z.redSqr() + if ( + this.x + .redMul(pz2) + .redISub(p.x.redMul(z2)) + .cmpn(0) !== 0 + ) + return false + var z3 = z2.redMul(this.z) + var pz3 = pz2.redMul(p.z) + return ( + this.y + .redMul(pz3) + .redISub(p.y.redMul(z3)) + .cmpn(0) === 0 + ) + } + JPoint.prototype.eqXToP = function eqXToP(x) { + var zs = this.z.redSqr() + var rx = x.toRed(this.curve.red).redMul(zs) + if (this.x.cmp(rx) === 0) return true + var xc = x.clone() + var t = this.curve.redN.redMul(zs) + for (;;) { + xc.iadd(this.curve.n) + if (xc.cmp(this.curve.p) >= 0) return false + rx.redIAdd(t) + if (this.x.cmp(rx) === 0) return true + } + } + JPoint.prototype.inspect = function inspect() { + if (this.isInfinity()) return "" + return ( + "" + ) + } + JPoint.prototype.isInfinity = function isInfinity() { + return this.z.cmpn(0) === 0 + } + }, + { "../../elliptic": 36, "../curve": 39, "bn.js": 32, inherits: 66 } + ], + 42: [ + function(require, module, exports) { + "use strict" + var curves = exports + var hash = require("hash.js") + var elliptic = require("../elliptic") + var assert = elliptic.utils.assert + function PresetCurve(options) { + if (options.type === "short") + this.curve = new elliptic.curve.short(options) + else if (options.type === "edwards") + this.curve = new elliptic.curve.edwards(options) + else this.curve = new elliptic.curve.mont(options) + this.g = this.curve.g + this.n = this.curve.n + this.hash = options.hash + assert(this.g.validate(), "Invalid curve") + assert(this.g.mul(this.n).isInfinity(), "Invalid curve, G*N != O") + } + curves.PresetCurve = PresetCurve + function defineCurve(name, options) { + Object.defineProperty(curves, name, { + configurable: true, + enumerable: true, + get: function() { + var curve = new PresetCurve(options) + Object.defineProperty(curves, name, { + configurable: true, + enumerable: true, + value: curve + }) + return curve + } + }) + } + defineCurve("p192", { + type: "short", + prime: "p192", + p: "ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff", + a: "ffffffff ffffffff ffffffff fffffffe ffffffff fffffffc", + b: "64210519 e59c80e7 0fa7e9ab 72243049 feb8deec c146b9b1", + n: "ffffffff ffffffff ffffffff 99def836 146bc9b1 b4d22831", + hash: hash.sha256, + gRed: false, + g: [ + "188da80e b03090f6 7cbf20eb 43a18800 f4ff0afd 82ff1012", + "07192b95 ffc8da78 631011ed 6b24cdd5 73f977a1 1e794811" + ] + }) + defineCurve("p224", { + type: "short", + prime: "p224", + p: "ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001", + a: "ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff fffffffe", + b: "b4050a85 0c04b3ab f5413256 5044b0b7 d7bfd8ba 270b3943 2355ffb4", + n: "ffffffff ffffffff ffffffff ffff16a2 e0b8f03e 13dd2945 5c5c2a3d", + hash: hash.sha256, + gRed: false, + g: [ + "b70e0cbd 6bb4bf7f 321390b9 4a03c1d3 56c21122 343280d6 115c1d21", + "bd376388 b5f723fb 4c22dfe6 cd4375a0 5a074764 44d58199 85007e34" + ] + }) + defineCurve("p256", { + type: "short", + prime: null, + p: + "ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff ffffffff", + a: + "ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff fffffffc", + b: + "5ac635d8 aa3a93e7 b3ebbd55 769886bc 651d06b0 cc53b0f6 3bce3c3e 27d2604b", + n: + "ffffffff 00000000 ffffffff ffffffff bce6faad a7179e84 f3b9cac2 fc632551", + hash: hash.sha256, + gRed: false, + g: [ + "6b17d1f2 e12c4247 f8bce6e5 63a440f2 77037d81 2deb33a0 f4a13945 d898c296", + "4fe342e2 fe1a7f9b 8ee7eb4a 7c0f9e16 2bce3357 6b315ece cbb64068 37bf51f5" + ] + }) + defineCurve("p384", { + type: "short", + prime: null, + p: + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "fffffffe ffffffff 00000000 00000000 ffffffff", + a: + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "fffffffe ffffffff 00000000 00000000 fffffffc", + b: + "b3312fa7 e23ee7e4 988e056b e3f82d19 181d9c6e fe814112 0314088f " + + "5013875a c656398d 8a2ed19d 2a85c8ed d3ec2aef", + n: + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff c7634d81 " + + "f4372ddf 581a0db2 48b0a77a ecec196a ccc52973", + hash: hash.sha384, + gRed: false, + g: [ + "aa87ca22 be8b0537 8eb1c71e f320ad74 6e1d3b62 8ba79b98 59f741e0 82542a38 " + + "5502f25d bf55296c 3a545e38 72760ab7", + "3617de4a 96262c6f 5d9e98bf 9292dc29 f8f41dbd 289a147c e9da3113 b5f0b8c0 " + + "0a60b1ce 1d7e819d 7a431d7c 90ea0e5f" + ] + }) + defineCurve("p521", { + type: "short", + prime: null, + p: + "000001ff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "ffffffff ffffffff ffffffff ffffffff ffffffff", + a: + "000001ff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "ffffffff ffffffff ffffffff ffffffff fffffffc", + b: + "00000051 953eb961 8e1c9a1f 929a21a0 b68540ee a2da725b " + + "99b315f3 b8b48991 8ef109e1 56193951 ec7e937b 1652c0bd " + + "3bb1bf07 3573df88 3d2c34f1 ef451fd4 6b503f00", + n: + "000001ff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "ffffffff ffffffff fffffffa 51868783 bf2f966b 7fcc0148 " + + "f709a5d0 3bb5c9b8 899c47ae bb6fb71e 91386409", + hash: hash.sha512, + gRed: false, + g: [ + "000000c6 858e06b7 0404e9cd 9e3ecb66 2395b442 9c648139 " + + "053fb521 f828af60 6b4d3dba a14b5e77 efe75928 fe1dc127 " + + "a2ffa8de 3348b3c1 856a429b f97e7e31 c2e5bd66", + "00000118 39296a78 9a3bc004 5c8a5fb4 2c7d1bd9 98f54449 " + + "579b4468 17afbd17 273e662c 97ee7299 5ef42640 c550b901 " + + "3fad0761 353c7086 a272c240 88be9476 9fd16650" + ] + }) + defineCurve("curve25519", { + type: "mont", + prime: "p25519", + p: + "7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed", + a: "76d06", + b: "1", + n: + "1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed", + hash: hash.sha256, + gRed: false, + g: ["9"] + }) + defineCurve("ed25519", { + type: "edwards", + prime: "p25519", + p: + "7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed", + a: "-1", + c: "1", + d: + "52036cee2b6ffe73 8cc740797779e898 00700a4d4141d8ab 75eb4dca135978a3", + n: + "1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed", + hash: hash.sha256, + gRed: false, + g: [ + "216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51a", + "6666666666666666666666666666666666666666666666666666666666666658" + ] + }) + var pre + try { + pre = require("./precomputed/secp256k1") + } catch (e) { + pre = undefined + } + defineCurve("secp256k1", { + type: "short", + prime: "k256", + p: + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f", + a: "0", + b: "7", + n: + "ffffffff ffffffff ffffffff fffffffe baaedce6 af48a03b bfd25e8c d0364141", + h: "1", + hash: hash.sha256, + beta: + "7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee", + lambda: + "5363ad4cc05c30e0a5261c028812645a122e22ea20816678df02967c1b23bd72", + basis: [ + { + a: "3086d221a7d46bcde86c90e49284eb15", + b: "-e4437ed6010e88286f547fa90abfe4c3" + }, + { + a: "114ca50f7a8e2f3f657c1108d9d44cfd8", + b: "3086d221a7d46bcde86c90e49284eb15" + } + ], + gRed: false, + g: [ + "79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798", + "483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8", + pre + ] + }) + }, + { "../elliptic": 36, "./precomputed/secp256k1": 49, "hash.js": 53 } + ], + 43: [ + function(require, module, exports) { + "use strict" + var BN = require("bn.js") + var HmacDRBG = require("hmac-drbg") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + var KeyPair = require("./key") + var Signature = require("./signature") + function EC(options) { + if (!(this instanceof EC)) return new EC(options) + if (typeof options === "string") { + assert( + elliptic.curves.hasOwnProperty(options), + "Unknown curve " + options + ) + options = elliptic.curves[options] + } + if (options instanceof elliptic.curves.PresetCurve) + options = { curve: options } + this.curve = options.curve.curve + this.n = this.curve.n + this.nh = this.n.ushrn(1) + this.g = this.curve.g + this.g = options.curve.g + this.g.precompute(options.curve.n.bitLength() + 1) + this.hash = options.hash || options.curve.hash + } + module.exports = EC + EC.prototype.keyPair = function keyPair(options) { + return new KeyPair(this, options) + } + EC.prototype.keyFromPrivate = function keyFromPrivate(priv, enc) { + return KeyPair.fromPrivate(this, priv, enc) + } + EC.prototype.keyFromPublic = function keyFromPublic(pub, enc) { + return KeyPair.fromPublic(this, pub, enc) + } + EC.prototype.genKeyPair = function genKeyPair(options) { + if (!options) options = {} + var drbg = new HmacDRBG({ + hash: this.hash, + pers: options.pers, + persEnc: options.persEnc || "utf8", + entropy: options.entropy || elliptic.rand(this.hash.hmacStrength), + entropyEnc: (options.entropy && options.entropyEnc) || "utf8", + nonce: this.n.toArray() + }) + var bytes = this.n.byteLength() + var ns2 = this.n.sub(new BN(2)) + do { + var priv = new BN(drbg.generate(bytes)) + if (priv.cmp(ns2) > 0) continue + priv.iaddn(1) + return this.keyFromPrivate(priv) + } while (true) + } + EC.prototype._truncateToN = function truncateToN(msg, truncOnly) { + var delta = msg.byteLength() * 8 - this.n.bitLength() + if (delta > 0) msg = msg.ushrn(delta) + if (!truncOnly && msg.cmp(this.n) >= 0) return msg.sub(this.n) + else return msg + } + EC.prototype.sign = function sign(msg, key, enc, options) { + if (typeof enc === "object") { + options = enc + enc = null + } + if (!options) options = {} + key = this.keyFromPrivate(key, enc) + msg = this._truncateToN(new BN(msg, 16)) + var bytes = this.n.byteLength() + var bkey = key.getPrivate().toArray("be", bytes) + var nonce = msg.toArray("be", bytes) + var drbg = new HmacDRBG({ + hash: this.hash, + entropy: bkey, + nonce: nonce, + pers: options.pers, + persEnc: options.persEnc || "utf8" + }) + var ns1 = this.n.sub(new BN(1)) + for (var iter = 0; true; iter++) { + var k = options.k + ? options.k(iter) + : new BN(drbg.generate(this.n.byteLength())) + k = this._truncateToN(k, true) + if (k.cmpn(1) <= 0 || k.cmp(ns1) >= 0) continue + var kp = this.g.mul(k) + if (kp.isInfinity()) continue + var kpX = kp.getX() + var r = kpX.umod(this.n) + if (r.cmpn(0) === 0) continue + var s = k.invm(this.n).mul(r.mul(key.getPrivate()).iadd(msg)) + s = s.umod(this.n) + if (s.cmpn(0) === 0) continue + var recoveryParam = + (kp.getY().isOdd() ? 1 : 0) | (kpX.cmp(r) !== 0 ? 2 : 0) + if (options.canonical && s.cmp(this.nh) > 0) { + s = this.n.sub(s) + recoveryParam ^= 1 + } + return new Signature({ r: r, s: s, recoveryParam: recoveryParam }) + } + } + EC.prototype.verify = function verify(msg, signature, key, enc) { + msg = this._truncateToN(new BN(msg, 16)) + key = this.keyFromPublic(key, enc) + signature = new Signature(signature, "hex") + var r = signature.r + var s = signature.s + if (r.cmpn(1) < 0 || r.cmp(this.n) >= 0) return false + if (s.cmpn(1) < 0 || s.cmp(this.n) >= 0) return false + var sinv = s.invm(this.n) + var u1 = sinv.mul(msg).umod(this.n) + var u2 = sinv.mul(r).umod(this.n) + if (!this.curve._maxwellTrick) { + var p = this.g.mulAdd(u1, key.getPublic(), u2) + if (p.isInfinity()) return false + return ( + p + .getX() + .umod(this.n) + .cmp(r) === 0 + ) + } + var p = this.g.jmulAdd(u1, key.getPublic(), u2) + if (p.isInfinity()) return false + return p.eqXToP(r) + } + EC.prototype.recoverPubKey = function(msg, signature, j, enc) { + assert((3 & j) === j, "The recovery param is more than two bits") + signature = new Signature(signature, enc) + var n = this.n + var e = new BN(msg) + var r = signature.r + var s = signature.s + var isYOdd = j & 1 + var isSecondKey = j >> 1 + if (r.cmp(this.curve.p.umod(this.curve.n)) >= 0 && isSecondKey) + throw new Error("Unable to find sencond key candinate") + if (isSecondKey) + r = this.curve.pointFromX(r.add(this.curve.n), isYOdd) + else r = this.curve.pointFromX(r, isYOdd) + var rInv = signature.r.invm(n) + var s1 = n + .sub(e) + .mul(rInv) + .umod(n) + var s2 = s.mul(rInv).umod(n) + return this.g.mulAdd(s1, r, s2) + } + EC.prototype.getKeyRecoveryParam = function(e, signature, Q, enc) { + signature = new Signature(signature, enc) + if (signature.recoveryParam !== null) return signature.recoveryParam + for (var i = 0; i < 4; i++) { + var Qprime + try { + Qprime = this.recoverPubKey(e, signature, i) + } catch (e) { + continue + } + if (Qprime.eq(Q)) return i + } + throw new Error("Unable to find valid recovery factor") + } + }, + { + "../../elliptic": 36, + "./key": 44, + "./signature": 45, + "bn.js": 32, + "hmac-drbg": 65 + } + ], + 44: [ + function(require, module, exports) { + "use strict" + var BN = require("bn.js") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + function KeyPair(ec, options) { + this.ec = ec + this.priv = null + this.pub = null + if (options.priv) this._importPrivate(options.priv, options.privEnc) + if (options.pub) this._importPublic(options.pub, options.pubEnc) + } + module.exports = KeyPair + KeyPair.fromPublic = function fromPublic(ec, pub, enc) { + if (pub instanceof KeyPair) return pub + return new KeyPair(ec, { pub: pub, pubEnc: enc }) + } + KeyPair.fromPrivate = function fromPrivate(ec, priv, enc) { + if (priv instanceof KeyPair) return priv + return new KeyPair(ec, { priv: priv, privEnc: enc }) + } + KeyPair.prototype.validate = function validate() { + var pub = this.getPublic() + if (pub.isInfinity()) + return { result: false, reason: "Invalid public key" } + if (!pub.validate()) + return { result: false, reason: "Public key is not a point" } + if (!pub.mul(this.ec.curve.n).isInfinity()) + return { result: false, reason: "Public key * N != O" } + return { result: true, reason: null } + } + KeyPair.prototype.getPublic = function getPublic(compact, enc) { + if (typeof compact === "string") { + enc = compact + compact = null + } + if (!this.pub) this.pub = this.ec.g.mul(this.priv) + if (!enc) return this.pub + return this.pub.encode(enc, compact) + } + KeyPair.prototype.getPrivate = function getPrivate(enc) { + if (enc === "hex") return this.priv.toString(16, 2) + else return this.priv + } + KeyPair.prototype._importPrivate = function _importPrivate(key, enc) { + this.priv = new BN(key, enc || 16) + this.priv = this.priv.umod(this.ec.curve.n) + } + KeyPair.prototype._importPublic = function _importPublic(key, enc) { + if (key.x || key.y) { + if (this.ec.curve.type === "mont") { + assert(key.x, "Need x coordinate") + } else if ( + this.ec.curve.type === "short" || + this.ec.curve.type === "edwards" + ) { + assert(key.x && key.y, "Need both x and y coordinate") + } + this.pub = this.ec.curve.point(key.x, key.y) + return + } + this.pub = this.ec.curve.decodePoint(key, enc) + } + KeyPair.prototype.derive = function derive(pub) { + return pub.mul(this.priv).getX() + } + KeyPair.prototype.sign = function sign(msg, enc, options) { + return this.ec.sign(msg, this, enc, options) + } + KeyPair.prototype.verify = function verify(msg, signature) { + return this.ec.verify(msg, signature, this) + } + KeyPair.prototype.inspect = function inspect() { + return ( + "" + ) + } + }, + { "../../elliptic": 36, "bn.js": 32 } + ], + 45: [ + function(require, module, exports) { + "use strict" + var BN = require("bn.js") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + function Signature(options, enc) { + if (options instanceof Signature) return options + if (this._importDER(options, enc)) return + assert(options.r && options.s, "Signature without r or s") + this.r = new BN(options.r, 16) + this.s = new BN(options.s, 16) + if (options.recoveryParam === undefined) this.recoveryParam = null + else this.recoveryParam = options.recoveryParam + } + module.exports = Signature + function Position() { + this.place = 0 + } + function getLength(buf, p) { + var initial = buf[p.place++] + if (!(initial & 128)) { + return initial + } + var octetLen = initial & 15 + var val = 0 + for (var i = 0, off = p.place; i < octetLen; i++, off++) { + val <<= 8 + val |= buf[off] + } + p.place = off + return val + } + function rmPadding(buf) { + var i = 0 + var len = buf.length - 1 + while (!buf[i] && !(buf[i + 1] & 128) && i < len) { + i++ + } + if (i === 0) { + return buf + } + return buf.slice(i) + } + Signature.prototype._importDER = function _importDER(data, enc) { + data = utils.toArray(data, enc) + var p = new Position() + if (data[p.place++] !== 48) { + return false + } + var len = getLength(data, p) + if (len + p.place !== data.length) { + return false + } + if (data[p.place++] !== 2) { + return false + } + var rlen = getLength(data, p) + var r = data.slice(p.place, rlen + p.place) + p.place += rlen + if (data[p.place++] !== 2) { + return false + } + var slen = getLength(data, p) + if (data.length !== slen + p.place) { + return false + } + var s = data.slice(p.place, slen + p.place) + if (r[0] === 0 && r[1] & 128) { + r = r.slice(1) + } + if (s[0] === 0 && s[1] & 128) { + s = s.slice(1) + } + this.r = new BN(r) + this.s = new BN(s) + this.recoveryParam = null + return true + } + function constructLength(arr, len) { + if (len < 128) { + arr.push(len) + return + } + var octets = 1 + ((Math.log(len) / Math.LN2) >>> 3) + arr.push(octets | 128) + while (--octets) { + arr.push((len >>> (octets << 3)) & 255) + } + arr.push(len) + } + Signature.prototype.toDER = function toDER(enc) { + var r = this.r.toArray() + var s = this.s.toArray() + if (r[0] & 128) r = [0].concat(r) + if (s[0] & 128) s = [0].concat(s) + r = rmPadding(r) + s = rmPadding(s) + while (!s[0] && !(s[1] & 128)) { + s = s.slice(1) + } + var arr = [2] + constructLength(arr, r.length) + arr = arr.concat(r) + arr.push(2) + constructLength(arr, s.length) + var backHalf = arr.concat(s) + var res = [48] + constructLength(res, backHalf.length) + res = res.concat(backHalf) + return utils.encode(res, enc) + } + }, + { "../../elliptic": 36, "bn.js": 32 } + ], + 46: [ + function(require, module, exports) { + "use strict" + var hash = require("hash.js") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + var parseBytes = utils.parseBytes + var KeyPair = require("./key") + var Signature = require("./signature") + function EDDSA(curve) { + assert(curve === "ed25519", "only tested with ed25519 so far") + if (!(this instanceof EDDSA)) return new EDDSA(curve) + var curve = elliptic.curves[curve].curve + this.curve = curve + this.g = curve.g + this.g.precompute(curve.n.bitLength() + 1) + this.pointClass = curve.point().constructor + this.encodingLength = Math.ceil(curve.n.bitLength() / 8) + this.hash = hash.sha512 + } + module.exports = EDDSA + EDDSA.prototype.sign = function sign(message, secret) { + message = parseBytes(message) + var key = this.keyFromSecret(secret) + var r = this.hashInt(key.messagePrefix(), message) + var R = this.g.mul(r) + var Rencoded = this.encodePoint(R) + var s_ = this.hashInt(Rencoded, key.pubBytes(), message).mul( + key.priv() + ) + var S = r.add(s_).umod(this.curve.n) + return this.makeSignature({ R: R, S: S, Rencoded: Rencoded }) + } + EDDSA.prototype.verify = function verify(message, sig, pub) { + message = parseBytes(message) + sig = this.makeSignature(sig) + var key = this.keyFromPublic(pub) + var h = this.hashInt(sig.Rencoded(), key.pubBytes(), message) + var SG = this.g.mul(sig.S()) + var RplusAh = sig.R().add(key.pub().mul(h)) + return RplusAh.eq(SG) + } + EDDSA.prototype.hashInt = function hashInt() { + var hash = this.hash() + for (var i = 0; i < arguments.length; i++) hash.update(arguments[i]) + return utils.intFromLE(hash.digest()).umod(this.curve.n) + } + EDDSA.prototype.keyFromPublic = function keyFromPublic(pub) { + return KeyPair.fromPublic(this, pub) + } + EDDSA.prototype.keyFromSecret = function keyFromSecret(secret) { + return KeyPair.fromSecret(this, secret) + } + EDDSA.prototype.makeSignature = function makeSignature(sig) { + if (sig instanceof Signature) return sig + return new Signature(this, sig) + } + EDDSA.prototype.encodePoint = function encodePoint(point) { + var enc = point.getY().toArray("le", this.encodingLength) + enc[this.encodingLength - 1] |= point.getX().isOdd() ? 128 : 0 + return enc + } + EDDSA.prototype.decodePoint = function decodePoint(bytes) { + bytes = utils.parseBytes(bytes) + var lastIx = bytes.length - 1 + var normed = bytes.slice(0, lastIx).concat(bytes[lastIx] & ~128) + var xIsOdd = (bytes[lastIx] & 128) !== 0 + var y = utils.intFromLE(normed) + return this.curve.pointFromY(y, xIsOdd) + } + EDDSA.prototype.encodeInt = function encodeInt(num) { + return num.toArray("le", this.encodingLength) + } + EDDSA.prototype.decodeInt = function decodeInt(bytes) { + return utils.intFromLE(bytes) + } + EDDSA.prototype.isPoint = function isPoint(val) { + return val instanceof this.pointClass + } + }, + { "../../elliptic": 36, "./key": 47, "./signature": 48, "hash.js": 53 } + ], + 47: [ + function(require, module, exports) { + "use strict" + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + var parseBytes = utils.parseBytes + var cachedProperty = utils.cachedProperty + function KeyPair(eddsa, params) { + this.eddsa = eddsa + this._secret = parseBytes(params.secret) + if (eddsa.isPoint(params.pub)) this._pub = params.pub + else this._pubBytes = parseBytes(params.pub) + } + KeyPair.fromPublic = function fromPublic(eddsa, pub) { + if (pub instanceof KeyPair) return pub + return new KeyPair(eddsa, { pub: pub }) + } + KeyPair.fromSecret = function fromSecret(eddsa, secret) { + if (secret instanceof KeyPair) return secret + return new KeyPair(eddsa, { secret: secret }) + } + KeyPair.prototype.secret = function secret() { + return this._secret + } + cachedProperty(KeyPair, "pubBytes", function pubBytes() { + return this.eddsa.encodePoint(this.pub()) + }) + cachedProperty(KeyPair, "pub", function pub() { + if (this._pubBytes) return this.eddsa.decodePoint(this._pubBytes) + return this.eddsa.g.mul(this.priv()) + }) + cachedProperty(KeyPair, "privBytes", function privBytes() { + var eddsa = this.eddsa + var hash = this.hash() + var lastIx = eddsa.encodingLength - 1 + var a = hash.slice(0, eddsa.encodingLength) + a[0] &= 248 + a[lastIx] &= 127 + a[lastIx] |= 64 + return a + }) + cachedProperty(KeyPair, "priv", function priv() { + return this.eddsa.decodeInt(this.privBytes()) + }) + cachedProperty(KeyPair, "hash", function hash() { + return this.eddsa + .hash() + .update(this.secret()) + .digest() + }) + cachedProperty(KeyPair, "messagePrefix", function messagePrefix() { + return this.hash().slice(this.eddsa.encodingLength) + }) + KeyPair.prototype.sign = function sign(message) { + assert(this._secret, "KeyPair can only verify") + return this.eddsa.sign(message, this) + } + KeyPair.prototype.verify = function verify(message, sig) { + return this.eddsa.verify(message, sig, this) + } + KeyPair.prototype.getSecret = function getSecret(enc) { + assert(this._secret, "KeyPair is public only") + return utils.encode(this.secret(), enc) + } + KeyPair.prototype.getPublic = function getPublic(enc) { + return utils.encode(this.pubBytes(), enc) + } + module.exports = KeyPair + }, + { "../../elliptic": 36 } + ], + 48: [ + function(require, module, exports) { + "use strict" + var BN = require("bn.js") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + var cachedProperty = utils.cachedProperty + var parseBytes = utils.parseBytes + function Signature(eddsa, sig) { + this.eddsa = eddsa + if (typeof sig !== "object") sig = parseBytes(sig) + if (Array.isArray(sig)) { + sig = { + R: sig.slice(0, eddsa.encodingLength), + S: sig.slice(eddsa.encodingLength) + } + } + assert(sig.R && sig.S, "Signature without R or S") + if (eddsa.isPoint(sig.R)) this._R = sig.R + if (sig.S instanceof BN) this._S = sig.S + this._Rencoded = Array.isArray(sig.R) ? sig.R : sig.Rencoded + this._Sencoded = Array.isArray(sig.S) ? sig.S : sig.Sencoded + } + cachedProperty(Signature, "S", function S() { + return this.eddsa.decodeInt(this.Sencoded()) + }) + cachedProperty(Signature, "R", function R() { + return this.eddsa.decodePoint(this.Rencoded()) + }) + cachedProperty(Signature, "Rencoded", function Rencoded() { + return this.eddsa.encodePoint(this.R()) + }) + cachedProperty(Signature, "Sencoded", function Sencoded() { + return this.eddsa.encodeInt(this.S()) + }) + Signature.prototype.toBytes = function toBytes() { + return this.Rencoded().concat(this.Sencoded()) + } + Signature.prototype.toHex = function toHex() { + return utils.encode(this.toBytes(), "hex").toUpperCase() + } + module.exports = Signature + }, + { "../../elliptic": 36, "bn.js": 32 } + ], + 49: [ + function(require, module, exports) { + module.exports = { + doubles: { + step: 4, + points: [ + [ + "e60fce93b59e9ec53011aabc21c23e97b2a31369b87a5ae9c44ee89e2a6dec0a", + "f7e3507399e595929db99f34f57937101296891e44d23f0be1f32cce69616821" + ], + [ + "8282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508", + "11f8a8098557dfe45e8256e830b60ace62d613ac2f7b17bed31b6eaff6e26caf" + ], + [ + "175e159f728b865a72f99cc6c6fc846de0b93833fd2222ed73fce5b551e5b739", + "d3506e0d9e3c79eba4ef97a51ff71f5eacb5955add24345c6efa6ffee9fed695" + ], + [ + "363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640", + "4e273adfc732221953b445397f3363145b9a89008199ecb62003c7f3bee9de9" + ], + [ + "8b4b5f165df3c2be8c6244b5b745638843e4a781a15bcd1b69f79a55dffdf80c", + "4aad0a6f68d308b4b3fbd7813ab0da04f9e336546162ee56b3eff0c65fd4fd36" + ], + [ + "723cbaa6e5db996d6bf771c00bd548c7b700dbffa6c0e77bcb6115925232fcda", + "96e867b5595cc498a921137488824d6e2660a0653779494801dc069d9eb39f5f" + ], + [ + "eebfa4d493bebf98ba5feec812c2d3b50947961237a919839a533eca0e7dd7fa", + "5d9a8ca3970ef0f269ee7edaf178089d9ae4cdc3a711f712ddfd4fdae1de8999" + ], + [ + "100f44da696e71672791d0a09b7bde459f1215a29b3c03bfefd7835b39a48db0", + "cdd9e13192a00b772ec8f3300c090666b7ff4a18ff5195ac0fbd5cd62bc65a09" + ], + [ + "e1031be262c7ed1b1dc9227a4a04c017a77f8d4464f3b3852c8acde6e534fd2d", + "9d7061928940405e6bb6a4176597535af292dd419e1ced79a44f18f29456a00d" + ], + [ + "feea6cae46d55b530ac2839f143bd7ec5cf8b266a41d6af52d5e688d9094696d", + "e57c6b6c97dce1bab06e4e12bf3ecd5c981c8957cc41442d3155debf18090088" + ], + [ + "da67a91d91049cdcb367be4be6ffca3cfeed657d808583de33fa978bc1ec6cb1", + "9bacaa35481642bc41f463f7ec9780e5dec7adc508f740a17e9ea8e27a68be1d" + ], + [ + "53904faa0b334cdda6e000935ef22151ec08d0f7bb11069f57545ccc1a37b7c0", + "5bc087d0bc80106d88c9eccac20d3c1c13999981e14434699dcb096b022771c8" + ], + [ + "8e7bcd0bd35983a7719cca7764ca906779b53a043a9b8bcaeff959f43ad86047", + "10b7770b2a3da4b3940310420ca9514579e88e2e47fd68b3ea10047e8460372a" + ], + [ + "385eed34c1cdff21e6d0818689b81bde71a7f4f18397e6690a841e1599c43862", + "283bebc3e8ea23f56701de19e9ebf4576b304eec2086dc8cc0458fe5542e5453" + ], + [ + "6f9d9b803ecf191637c73a4413dfa180fddf84a5947fbc9c606ed86c3fac3a7", + "7c80c68e603059ba69b8e2a30e45c4d47ea4dd2f5c281002d86890603a842160" + ], + [ + "3322d401243c4e2582a2147c104d6ecbf774d163db0f5e5313b7e0e742d0e6bd", + "56e70797e9664ef5bfb019bc4ddaf9b72805f63ea2873af624f3a2e96c28b2a0" + ], + [ + "85672c7d2de0b7da2bd1770d89665868741b3f9af7643397721d74d28134ab83", + "7c481b9b5b43b2eb6374049bfa62c2e5e77f17fcc5298f44c8e3094f790313a6" + ], + [ + "948bf809b1988a46b06c9f1919413b10f9226c60f668832ffd959af60c82a0a", + "53a562856dcb6646dc6b74c5d1c3418c6d4dff08c97cd2bed4cb7f88d8c8e589" + ], + [ + "6260ce7f461801c34f067ce0f02873a8f1b0e44dfc69752accecd819f38fd8e8", + "bc2da82b6fa5b571a7f09049776a1ef7ecd292238051c198c1a84e95b2b4ae17" + ], + [ + "e5037de0afc1d8d43d8348414bbf4103043ec8f575bfdc432953cc8d2037fa2d", + "4571534baa94d3b5f9f98d09fb990bddbd5f5b03ec481f10e0e5dc841d755bda" + ], + [ + "e06372b0f4a207adf5ea905e8f1771b4e7e8dbd1c6a6c5b725866a0ae4fce725", + "7a908974bce18cfe12a27bb2ad5a488cd7484a7787104870b27034f94eee31dd" + ], + [ + "213c7a715cd5d45358d0bbf9dc0ce02204b10bdde2a3f58540ad6908d0559754", + "4b6dad0b5ae462507013ad06245ba190bb4850f5f36a7eeddff2c27534b458f2" + ], + [ + "4e7c272a7af4b34e8dbb9352a5419a87e2838c70adc62cddf0cc3a3b08fbd53c", + "17749c766c9d0b18e16fd09f6def681b530b9614bff7dd33e0b3941817dcaae6" + ], + [ + "fea74e3dbe778b1b10f238ad61686aa5c76e3db2be43057632427e2840fb27b6", + "6e0568db9b0b13297cf674deccb6af93126b596b973f7b77701d3db7f23cb96f" + ], + [ + "76e64113f677cf0e10a2570d599968d31544e179b760432952c02a4417bdde39", + "c90ddf8dee4e95cf577066d70681f0d35e2a33d2b56d2032b4b1752d1901ac01" + ], + [ + "c738c56b03b2abe1e8281baa743f8f9a8f7cc643df26cbee3ab150242bcbb891", + "893fb578951ad2537f718f2eacbfbbbb82314eef7880cfe917e735d9699a84c3" + ], + [ + "d895626548b65b81e264c7637c972877d1d72e5f3a925014372e9f6588f6c14b", + "febfaa38f2bc7eae728ec60818c340eb03428d632bb067e179363ed75d7d991f" + ], + [ + "b8da94032a957518eb0f6433571e8761ceffc73693e84edd49150a564f676e03", + "2804dfa44805a1e4d7c99cc9762808b092cc584d95ff3b511488e4e74efdf6e7" + ], + [ + "e80fea14441fb33a7d8adab9475d7fab2019effb5156a792f1a11778e3c0df5d", + "eed1de7f638e00771e89768ca3ca94472d155e80af322ea9fcb4291b6ac9ec78" + ], + [ + "a301697bdfcd704313ba48e51d567543f2a182031efd6915ddc07bbcc4e16070", + "7370f91cfb67e4f5081809fa25d40f9b1735dbf7c0a11a130c0d1a041e177ea1" + ], + [ + "90ad85b389d6b936463f9d0512678de208cc330b11307fffab7ac63e3fb04ed4", + "e507a3620a38261affdcbd9427222b839aefabe1582894d991d4d48cb6ef150" + ], + [ + "8f68b9d2f63b5f339239c1ad981f162ee88c5678723ea3351b7b444c9ec4c0da", + "662a9f2dba063986de1d90c2b6be215dbbea2cfe95510bfdf23cbf79501fff82" + ], + [ + "e4f3fb0176af85d65ff99ff9198c36091f48e86503681e3e6686fd5053231e11", + "1e63633ad0ef4f1c1661a6d0ea02b7286cc7e74ec951d1c9822c38576feb73bc" + ], + [ + "8c00fa9b18ebf331eb961537a45a4266c7034f2f0d4e1d0716fb6eae20eae29e", + "efa47267fea521a1a9dc343a3736c974c2fadafa81e36c54e7d2a4c66702414b" + ], + [ + "e7a26ce69dd4829f3e10cec0a9e98ed3143d084f308b92c0997fddfc60cb3e41", + "2a758e300fa7984b471b006a1aafbb18d0a6b2c0420e83e20e8a9421cf2cfd51" + ], + [ + "b6459e0ee3662ec8d23540c223bcbdc571cbcb967d79424f3cf29eb3de6b80ef", + "67c876d06f3e06de1dadf16e5661db3c4b3ae6d48e35b2ff30bf0b61a71ba45" + ], + [ + "d68a80c8280bb840793234aa118f06231d6f1fc67e73c5a5deda0f5b496943e8", + "db8ba9fff4b586d00c4b1f9177b0e28b5b0e7b8f7845295a294c84266b133120" + ], + [ + "324aed7df65c804252dc0270907a30b09612aeb973449cea4095980fc28d3d5d", + "648a365774b61f2ff130c0c35aec1f4f19213b0c7e332843967224af96ab7c84" + ], + [ + "4df9c14919cde61f6d51dfdbe5fee5dceec4143ba8d1ca888e8bd373fd054c96", + "35ec51092d8728050974c23a1d85d4b5d506cdc288490192ebac06cad10d5d" + ], + [ + "9c3919a84a474870faed8a9c1cc66021523489054d7f0308cbfc99c8ac1f98cd", + "ddb84f0f4a4ddd57584f044bf260e641905326f76c64c8e6be7e5e03d4fc599d" + ], + [ + "6057170b1dd12fdf8de05f281d8e06bb91e1493a8b91d4cc5a21382120a959e5", + "9a1af0b26a6a4807add9a2daf71df262465152bc3ee24c65e899be932385a2a8" + ], + [ + "a576df8e23a08411421439a4518da31880cef0fba7d4df12b1a6973eecb94266", + "40a6bf20e76640b2c92b97afe58cd82c432e10a7f514d9f3ee8be11ae1b28ec8" + ], + [ + "7778a78c28dec3e30a05fe9629de8c38bb30d1f5cf9a3a208f763889be58ad71", + "34626d9ab5a5b22ff7098e12f2ff580087b38411ff24ac563b513fc1fd9f43ac" + ], + [ + "928955ee637a84463729fd30e7afd2ed5f96274e5ad7e5cb09eda9c06d903ac", + "c25621003d3f42a827b78a13093a95eeac3d26efa8a8d83fc5180e935bcd091f" + ], + [ + "85d0fef3ec6db109399064f3a0e3b2855645b4a907ad354527aae75163d82751", + "1f03648413a38c0be29d496e582cf5663e8751e96877331582c237a24eb1f962" + ], + [ + "ff2b0dce97eece97c1c9b6041798b85dfdfb6d8882da20308f5404824526087e", + "493d13fef524ba188af4c4dc54d07936c7b7ed6fb90e2ceb2c951e01f0c29907" + ], + [ + "827fbbe4b1e880ea9ed2b2e6301b212b57f1ee148cd6dd28780e5e2cf856e241", + "c60f9c923c727b0b71bef2c67d1d12687ff7a63186903166d605b68baec293ec" + ], + [ + "eaa649f21f51bdbae7be4ae34ce6e5217a58fdce7f47f9aa7f3b58fa2120e2b3", + "be3279ed5bbbb03ac69a80f89879aa5a01a6b965f13f7e59d47a5305ba5ad93d" + ], + [ + "e4a42d43c5cf169d9391df6decf42ee541b6d8f0c9a137401e23632dda34d24f", + "4d9f92e716d1c73526fc99ccfb8ad34ce886eedfa8d8e4f13a7f7131deba9414" + ], + [ + "1ec80fef360cbdd954160fadab352b6b92b53576a88fea4947173b9d4300bf19", + "aeefe93756b5340d2f3a4958a7abbf5e0146e77f6295a07b671cdc1cc107cefd" + ], + [ + "146a778c04670c2f91b00af4680dfa8bce3490717d58ba889ddb5928366642be", + "b318e0ec3354028add669827f9d4b2870aaa971d2f7e5ed1d0b297483d83efd0" + ], + [ + "fa50c0f61d22e5f07e3acebb1aa07b128d0012209a28b9776d76a8793180eef9", + "6b84c6922397eba9b72cd2872281a68a5e683293a57a213b38cd8d7d3f4f2811" + ], + [ + "da1d61d0ca721a11b1a5bf6b7d88e8421a288ab5d5bba5220e53d32b5f067ec2", + "8157f55a7c99306c79c0766161c91e2966a73899d279b48a655fba0f1ad836f1" + ], + [ + "a8e282ff0c9706907215ff98e8fd416615311de0446f1e062a73b0610d064e13", + "7f97355b8db81c09abfb7f3c5b2515888b679a3e50dd6bd6cef7c73111f4cc0c" + ], + [ + "174a53b9c9a285872d39e56e6913cab15d59b1fa512508c022f382de8319497c", + "ccc9dc37abfc9c1657b4155f2c47f9e6646b3a1d8cb9854383da13ac079afa73" + ], + [ + "959396981943785c3d3e57edf5018cdbe039e730e4918b3d884fdff09475b7ba", + "2e7e552888c331dd8ba0386a4b9cd6849c653f64c8709385e9b8abf87524f2fd" + ], + [ + "d2a63a50ae401e56d645a1153b109a8fcca0a43d561fba2dbb51340c9d82b151", + "e82d86fb6443fcb7565aee58b2948220a70f750af484ca52d4142174dcf89405" + ], + [ + "64587e2335471eb890ee7896d7cfdc866bacbdbd3839317b3436f9b45617e073", + "d99fcdd5bf6902e2ae96dd6447c299a185b90a39133aeab358299e5e9faf6589" + ], + [ + "8481bde0e4e4d885b3a546d3e549de042f0aa6cea250e7fd358d6c86dd45e458", + "38ee7b8cba5404dd84a25bf39cecb2ca900a79c42b262e556d64b1b59779057e" + ], + [ + "13464a57a78102aa62b6979ae817f4637ffcfed3c4b1ce30bcd6303f6caf666b", + "69be159004614580ef7e433453ccb0ca48f300a81d0942e13f495a907f6ecc27" + ], + [ + "bc4a9df5b713fe2e9aef430bcc1dc97a0cd9ccede2f28588cada3a0d2d83f366", + "d3a81ca6e785c06383937adf4b798caa6e8a9fbfa547b16d758d666581f33c1" + ], + [ + "8c28a97bf8298bc0d23d8c749452a32e694b65e30a9472a3954ab30fe5324caa", + "40a30463a3305193378fedf31f7cc0eb7ae784f0451cb9459e71dc73cbef9482" + ], + [ + "8ea9666139527a8c1dd94ce4f071fd23c8b350c5a4bb33748c4ba111faccae0", + "620efabbc8ee2782e24e7c0cfb95c5d735b783be9cf0f8e955af34a30e62b945" + ], + [ + "dd3625faef5ba06074669716bbd3788d89bdde815959968092f76cc4eb9a9787", + "7a188fa3520e30d461da2501045731ca941461982883395937f68d00c644a573" + ], + [ + "f710d79d9eb962297e4f6232b40e8f7feb2bc63814614d692c12de752408221e", + "ea98e67232d3b3295d3b535532115ccac8612c721851617526ae47a9c77bfc82" + ] + ] + }, + naf: { + wnd: 7, + points: [ + [ + "f9308a019258c31049344f85f89d5229b531c845836f99b08601f113bce036f9", + "388f7b0f632de8140fe337e62a37f3566500a99934c2231b6cb9fd7584b8e672" + ], + [ + "2f8bde4d1a07209355b4a7250a5c5128e88b84bddc619ab7cba8d569b240efe4", + "d8ac222636e5e3d6d4dba9dda6c9c426f788271bab0d6840dca87d3aa6ac62d6" + ], + [ + "5cbdf0646e5db4eaa398f365f2ea7a0e3d419b7e0330e39ce92bddedcac4f9bc", + "6aebca40ba255960a3178d6d861a54dba813d0b813fde7b5a5082628087264da" + ], + [ + "acd484e2f0c7f65309ad178a9f559abde09796974c57e714c35f110dfc27ccbe", + "cc338921b0a7d9fd64380971763b61e9add888a4375f8e0f05cc262ac64f9c37" + ], + [ + "774ae7f858a9411e5ef4246b70c65aac5649980be5c17891bbec17895da008cb", + "d984a032eb6b5e190243dd56d7b7b365372db1e2dff9d6a8301d74c9c953c61b" + ], + [ + "f28773c2d975288bc7d1d205c3748651b075fbc6610e58cddeeddf8f19405aa8", + "ab0902e8d880a89758212eb65cdaf473a1a06da521fa91f29b5cb52db03ed81" + ], + [ + "d7924d4f7d43ea965a465ae3095ff41131e5946f3c85f79e44adbcf8e27e080e", + "581e2872a86c72a683842ec228cc6defea40af2bd896d3a5c504dc9ff6a26b58" + ], + [ + "defdea4cdb677750a420fee807eacf21eb9898ae79b9768766e4faa04a2d4a34", + "4211ab0694635168e997b0ead2a93daeced1f4a04a95c0f6cfb199f69e56eb77" + ], + [ + "2b4ea0a797a443d293ef5cff444f4979f06acfebd7e86d277475656138385b6c", + "85e89bc037945d93b343083b5a1c86131a01f60c50269763b570c854e5c09b7a" + ], + [ + "352bbf4a4cdd12564f93fa332ce333301d9ad40271f8107181340aef25be59d5", + "321eb4075348f534d59c18259dda3e1f4a1b3b2e71b1039c67bd3d8bcf81998c" + ], + [ + "2fa2104d6b38d11b0230010559879124e42ab8dfeff5ff29dc9cdadd4ecacc3f", + "2de1068295dd865b64569335bd5dd80181d70ecfc882648423ba76b532b7d67" + ], + [ + "9248279b09b4d68dab21a9b066edda83263c3d84e09572e269ca0cd7f5453714", + "73016f7bf234aade5d1aa71bdea2b1ff3fc0de2a887912ffe54a32ce97cb3402" + ], + [ + "daed4f2be3a8bf278e70132fb0beb7522f570e144bf615c07e996d443dee8729", + "a69dce4a7d6c98e8d4a1aca87ef8d7003f83c230f3afa726ab40e52290be1c55" + ], + [ + "c44d12c7065d812e8acf28d7cbb19f9011ecd9e9fdf281b0e6a3b5e87d22e7db", + "2119a460ce326cdc76c45926c982fdac0e106e861edf61c5a039063f0e0e6482" + ], + [ + "6a245bf6dc698504c89a20cfded60853152b695336c28063b61c65cbd269e6b4", + "e022cf42c2bd4a708b3f5126f16a24ad8b33ba48d0423b6efd5e6348100d8a82" + ], + [ + "1697ffa6fd9de627c077e3d2fe541084ce13300b0bec1146f95ae57f0d0bd6a5", + "b9c398f186806f5d27561506e4557433a2cf15009e498ae7adee9d63d01b2396" + ], + [ + "605bdb019981718b986d0f07e834cb0d9deb8360ffb7f61df982345ef27a7479", + "2972d2de4f8d20681a78d93ec96fe23c26bfae84fb14db43b01e1e9056b8c49" + ], + [ + "62d14dab4150bf497402fdc45a215e10dcb01c354959b10cfe31c7e9d87ff33d", + "80fc06bd8cc5b01098088a1950eed0db01aa132967ab472235f5642483b25eaf" + ], + [ + "80c60ad0040f27dade5b4b06c408e56b2c50e9f56b9b8b425e555c2f86308b6f", + "1c38303f1cc5c30f26e66bad7fe72f70a65eed4cbe7024eb1aa01f56430bd57a" + ], + [ + "7a9375ad6167ad54aa74c6348cc54d344cc5dc9487d847049d5eabb0fa03c8fb", + "d0e3fa9eca8726909559e0d79269046bdc59ea10c70ce2b02d499ec224dc7f7" + ], + [ + "d528ecd9b696b54c907a9ed045447a79bb408ec39b68df504bb51f459bc3ffc9", + "eecf41253136e5f99966f21881fd656ebc4345405c520dbc063465b521409933" + ], + [ + "49370a4b5f43412ea25f514e8ecdad05266115e4a7ecb1387231808f8b45963", + "758f3f41afd6ed428b3081b0512fd62a54c3f3afbb5b6764b653052a12949c9a" + ], + [ + "77f230936ee88cbbd73df930d64702ef881d811e0e1498e2f1c13eb1fc345d74", + "958ef42a7886b6400a08266e9ba1b37896c95330d97077cbbe8eb3c7671c60d6" + ], + [ + "f2dac991cc4ce4b9ea44887e5c7c0bce58c80074ab9d4dbaeb28531b7739f530", + "e0dedc9b3b2f8dad4da1f32dec2531df9eb5fbeb0598e4fd1a117dba703a3c37" + ], + [ + "463b3d9f662621fb1b4be8fbbe2520125a216cdfc9dae3debcba4850c690d45b", + "5ed430d78c296c3543114306dd8622d7c622e27c970a1de31cb377b01af7307e" + ], + [ + "f16f804244e46e2a09232d4aff3b59976b98fac14328a2d1a32496b49998f247", + "cedabd9b82203f7e13d206fcdf4e33d92a6c53c26e5cce26d6579962c4e31df6" + ], + [ + "caf754272dc84563b0352b7a14311af55d245315ace27c65369e15f7151d41d1", + "cb474660ef35f5f2a41b643fa5e460575f4fa9b7962232a5c32f908318a04476" + ], + [ + "2600ca4b282cb986f85d0f1709979d8b44a09c07cb86d7c124497bc86f082120", + "4119b88753c15bd6a693b03fcddbb45d5ac6be74ab5f0ef44b0be9475a7e4b40" + ], + [ + "7635ca72d7e8432c338ec53cd12220bc01c48685e24f7dc8c602a7746998e435", + "91b649609489d613d1d5e590f78e6d74ecfc061d57048bad9e76f302c5b9c61" + ], + [ + "754e3239f325570cdbbf4a87deee8a66b7f2b33479d468fbc1a50743bf56cc18", + "673fb86e5bda30fb3cd0ed304ea49a023ee33d0197a695d0c5d98093c536683" + ], + [ + "e3e6bd1071a1e96aff57859c82d570f0330800661d1c952f9fe2694691d9b9e8", + "59c9e0bba394e76f40c0aa58379a3cb6a5a2283993e90c4167002af4920e37f5" + ], + [ + "186b483d056a033826ae73d88f732985c4ccb1f32ba35f4b4cc47fdcf04aa6eb", + "3b952d32c67cf77e2e17446e204180ab21fb8090895138b4a4a797f86e80888b" + ], + [ + "df9d70a6b9876ce544c98561f4be4f725442e6d2b737d9c91a8321724ce0963f", + "55eb2dafd84d6ccd5f862b785dc39d4ab157222720ef9da217b8c45cf2ba2417" + ], + [ + "5edd5cc23c51e87a497ca815d5dce0f8ab52554f849ed8995de64c5f34ce7143", + "efae9c8dbc14130661e8cec030c89ad0c13c66c0d17a2905cdc706ab7399a868" + ], + [ + "290798c2b6476830da12fe02287e9e777aa3fba1c355b17a722d362f84614fba", + "e38da76dcd440621988d00bcf79af25d5b29c094db2a23146d003afd41943e7a" + ], + [ + "af3c423a95d9f5b3054754efa150ac39cd29552fe360257362dfdecef4053b45", + "f98a3fd831eb2b749a93b0e6f35cfb40c8cd5aa667a15581bc2feded498fd9c6" + ], + [ + "766dbb24d134e745cccaa28c99bf274906bb66b26dcf98df8d2fed50d884249a", + "744b1152eacbe5e38dcc887980da38b897584a65fa06cedd2c924f97cbac5996" + ], + [ + "59dbf46f8c94759ba21277c33784f41645f7b44f6c596a58ce92e666191abe3e", + "c534ad44175fbc300f4ea6ce648309a042ce739a7919798cd85e216c4a307f6e" + ], + [ + "f13ada95103c4537305e691e74e9a4a8dd647e711a95e73cb62dc6018cfd87b8", + "e13817b44ee14de663bf4bc808341f326949e21a6a75c2570778419bdaf5733d" + ], + [ + "7754b4fa0e8aced06d4167a2c59cca4cda1869c06ebadfb6488550015a88522c", + "30e93e864e669d82224b967c3020b8fa8d1e4e350b6cbcc537a48b57841163a2" + ], + [ + "948dcadf5990e048aa3874d46abef9d701858f95de8041d2a6828c99e2262519", + "e491a42537f6e597d5d28a3224b1bc25df9154efbd2ef1d2cbba2cae5347d57e" + ], + [ + "7962414450c76c1689c7b48f8202ec37fb224cf5ac0bfa1570328a8a3d7c77ab", + "100b610ec4ffb4760d5c1fc133ef6f6b12507a051f04ac5760afa5b29db83437" + ], + [ + "3514087834964b54b15b160644d915485a16977225b8847bb0dd085137ec47ca", + "ef0afbb2056205448e1652c48e8127fc6039e77c15c2378b7e7d15a0de293311" + ], + [ + "d3cc30ad6b483e4bc79ce2c9dd8bc54993e947eb8df787b442943d3f7b527eaf", + "8b378a22d827278d89c5e9be8f9508ae3c2ad46290358630afb34db04eede0a4" + ], + [ + "1624d84780732860ce1c78fcbfefe08b2b29823db913f6493975ba0ff4847610", + "68651cf9b6da903e0914448c6cd9d4ca896878f5282be4c8cc06e2a404078575" + ], + [ + "733ce80da955a8a26902c95633e62a985192474b5af207da6df7b4fd5fc61cd4", + "f5435a2bd2badf7d485a4d8b8db9fcce3e1ef8e0201e4578c54673bc1dc5ea1d" + ], + [ + "15d9441254945064cf1a1c33bbd3b49f8966c5092171e699ef258dfab81c045c", + "d56eb30b69463e7234f5137b73b84177434800bacebfc685fc37bbe9efe4070d" + ], + [ + "a1d0fcf2ec9de675b612136e5ce70d271c21417c9d2b8aaaac138599d0717940", + "edd77f50bcb5a3cab2e90737309667f2641462a54070f3d519212d39c197a629" + ], + [ + "e22fbe15c0af8ccc5780c0735f84dbe9a790badee8245c06c7ca37331cb36980", + "a855babad5cd60c88b430a69f53a1a7a38289154964799be43d06d77d31da06" + ], + [ + "311091dd9860e8e20ee13473c1155f5f69635e394704eaa74009452246cfa9b3", + "66db656f87d1f04fffd1f04788c06830871ec5a64feee685bd80f0b1286d8374" + ], + [ + "34c1fd04d301be89b31c0442d3e6ac24883928b45a9340781867d4232ec2dbdf", + "9414685e97b1b5954bd46f730174136d57f1ceeb487443dc5321857ba73abee" + ], + [ + "f219ea5d6b54701c1c14de5b557eb42a8d13f3abbcd08affcc2a5e6b049b8d63", + "4cb95957e83d40b0f73af4544cccf6b1f4b08d3c07b27fb8d8c2962a400766d1" + ], + [ + "d7b8740f74a8fbaab1f683db8f45de26543a5490bca627087236912469a0b448", + "fa77968128d9c92ee1010f337ad4717eff15db5ed3c049b3411e0315eaa4593b" + ], + [ + "32d31c222f8f6f0ef86f7c98d3a3335ead5bcd32abdd94289fe4d3091aa824bf", + "5f3032f5892156e39ccd3d7915b9e1da2e6dac9e6f26e961118d14b8462e1661" + ], + [ + "7461f371914ab32671045a155d9831ea8793d77cd59592c4340f86cbc18347b5", + "8ec0ba238b96bec0cbdddcae0aa442542eee1ff50c986ea6b39847b3cc092ff6" + ], + [ + "ee079adb1df1860074356a25aa38206a6d716b2c3e67453d287698bad7b2b2d6", + "8dc2412aafe3be5c4c5f37e0ecc5f9f6a446989af04c4e25ebaac479ec1c8c1e" + ], + [ + "16ec93e447ec83f0467b18302ee620f7e65de331874c9dc72bfd8616ba9da6b5", + "5e4631150e62fb40d0e8c2a7ca5804a39d58186a50e497139626778e25b0674d" + ], + [ + "eaa5f980c245f6f038978290afa70b6bd8855897f98b6aa485b96065d537bd99", + "f65f5d3e292c2e0819a528391c994624d784869d7e6ea67fb18041024edc07dc" + ], + [ + "78c9407544ac132692ee1910a02439958ae04877151342ea96c4b6b35a49f51", + "f3e0319169eb9b85d5404795539a5e68fa1fbd583c064d2462b675f194a3ddb4" + ], + [ + "494f4be219a1a77016dcd838431aea0001cdc8ae7a6fc688726578d9702857a5", + "42242a969283a5f339ba7f075e36ba2af925ce30d767ed6e55f4b031880d562c" + ], + [ + "a598a8030da6d86c6bc7f2f5144ea549d28211ea58faa70ebf4c1e665c1fe9b5", + "204b5d6f84822c307e4b4a7140737aec23fc63b65b35f86a10026dbd2d864e6b" + ], + [ + "c41916365abb2b5d09192f5f2dbeafec208f020f12570a184dbadc3e58595997", + "4f14351d0087efa49d245b328984989d5caf9450f34bfc0ed16e96b58fa9913" + ], + [ + "841d6063a586fa475a724604da03bc5b92a2e0d2e0a36acfe4c73a5514742881", + "73867f59c0659e81904f9a1c7543698e62562d6744c169ce7a36de01a8d6154" + ], + [ + "5e95bb399a6971d376026947f89bde2f282b33810928be4ded112ac4d70e20d5", + "39f23f366809085beebfc71181313775a99c9aed7d8ba38b161384c746012865" + ], + [ + "36e4641a53948fd476c39f8a99fd974e5ec07564b5315d8bf99471bca0ef2f66", + "d2424b1b1abe4eb8164227b085c9aa9456ea13493fd563e06fd51cf5694c78fc" + ], + [ + "336581ea7bfbbb290c191a2f507a41cf5643842170e914faeab27c2c579f726", + "ead12168595fe1be99252129b6e56b3391f7ab1410cd1e0ef3dcdcabd2fda224" + ], + [ + "8ab89816dadfd6b6a1f2634fcf00ec8403781025ed6890c4849742706bd43ede", + "6fdcef09f2f6d0a044e654aef624136f503d459c3e89845858a47a9129cdd24e" + ], + [ + "1e33f1a746c9c5778133344d9299fcaa20b0938e8acff2544bb40284b8c5fb94", + "60660257dd11b3aa9c8ed618d24edff2306d320f1d03010e33a7d2057f3b3b6" + ], + [ + "85b7c1dcb3cec1b7ee7f30ded79dd20a0ed1f4cc18cbcfcfa410361fd8f08f31", + "3d98a9cdd026dd43f39048f25a8847f4fcafad1895d7a633c6fed3c35e999511" + ], + [ + "29df9fbd8d9e46509275f4b125d6d45d7fbe9a3b878a7af872a2800661ac5f51", + "b4c4fe99c775a606e2d8862179139ffda61dc861c019e55cd2876eb2a27d84b" + ], + [ + "a0b1cae06b0a847a3fea6e671aaf8adfdfe58ca2f768105c8082b2e449fce252", + "ae434102edde0958ec4b19d917a6a28e6b72da1834aff0e650f049503a296cf2" + ], + [ + "4e8ceafb9b3e9a136dc7ff67e840295b499dfb3b2133e4ba113f2e4c0e121e5", + "cf2174118c8b6d7a4b48f6d534ce5c79422c086a63460502b827ce62a326683c" + ], + [ + "d24a44e047e19b6f5afb81c7ca2f69080a5076689a010919f42725c2b789a33b", + "6fb8d5591b466f8fc63db50f1c0f1c69013f996887b8244d2cdec417afea8fa3" + ], + [ + "ea01606a7a6c9cdd249fdfcfacb99584001edd28abbab77b5104e98e8e3b35d4", + "322af4908c7312b0cfbfe369f7a7b3cdb7d4494bc2823700cfd652188a3ea98d" + ], + [ + "af8addbf2b661c8a6c6328655eb96651252007d8c5ea31be4ad196de8ce2131f", + "6749e67c029b85f52a034eafd096836b2520818680e26ac8f3dfbcdb71749700" + ], + [ + "e3ae1974566ca06cc516d47e0fb165a674a3dabcfca15e722f0e3450f45889", + "2aeabe7e4531510116217f07bf4d07300de97e4874f81f533420a72eeb0bd6a4" + ], + [ + "591ee355313d99721cf6993ffed1e3e301993ff3ed258802075ea8ced397e246", + "b0ea558a113c30bea60fc4775460c7901ff0b053d25ca2bdeee98f1a4be5d196" + ], + [ + "11396d55fda54c49f19aa97318d8da61fa8584e47b084945077cf03255b52984", + "998c74a8cd45ac01289d5833a7beb4744ff536b01b257be4c5767bea93ea57a4" + ], + [ + "3c5d2a1ba39c5a1790000738c9e0c40b8dcdfd5468754b6405540157e017aa7a", + "b2284279995a34e2f9d4de7396fc18b80f9b8b9fdd270f6661f79ca4c81bd257" + ], + [ + "cc8704b8a60a0defa3a99a7299f2e9c3fbc395afb04ac078425ef8a1793cc030", + "bdd46039feed17881d1e0862db347f8cf395b74fc4bcdc4e940b74e3ac1f1b13" + ], + [ + "c533e4f7ea8555aacd9777ac5cad29b97dd4defccc53ee7ea204119b2889b197", + "6f0a256bc5efdf429a2fb6242f1a43a2d9b925bb4a4b3a26bb8e0f45eb596096" + ], + [ + "c14f8f2ccb27d6f109f6d08d03cc96a69ba8c34eec07bbcf566d48e33da6593", + "c359d6923bb398f7fd4473e16fe1c28475b740dd098075e6c0e8649113dc3a38" + ], + [ + "a6cbc3046bc6a450bac24789fa17115a4c9739ed75f8f21ce441f72e0b90e6ef", + "21ae7f4680e889bb130619e2c0f95a360ceb573c70603139862afd617fa9b9f" + ], + [ + "347d6d9a02c48927ebfb86c1359b1caf130a3c0267d11ce6344b39f99d43cc38", + "60ea7f61a353524d1c987f6ecec92f086d565ab687870cb12689ff1e31c74448" + ], + [ + "da6545d2181db8d983f7dcb375ef5866d47c67b1bf31c8cf855ef7437b72656a", + "49b96715ab6878a79e78f07ce5680c5d6673051b4935bd897fea824b77dc208a" + ], + [ + "c40747cc9d012cb1a13b8148309c6de7ec25d6945d657146b9d5994b8feb1111", + "5ca560753be2a12fc6de6caf2cb489565db936156b9514e1bb5e83037e0fa2d4" + ], + [ + "4e42c8ec82c99798ccf3a610be870e78338c7f713348bd34c8203ef4037f3502", + "7571d74ee5e0fb92a7a8b33a07783341a5492144cc54bcc40a94473693606437" + ], + [ + "3775ab7089bc6af823aba2e1af70b236d251cadb0c86743287522a1b3b0dedea", + "be52d107bcfa09d8bcb9736a828cfa7fac8db17bf7a76a2c42ad961409018cf7" + ], + [ + "cee31cbf7e34ec379d94fb814d3d775ad954595d1314ba8846959e3e82f74e26", + "8fd64a14c06b589c26b947ae2bcf6bfa0149ef0be14ed4d80f448a01c43b1c6d" + ], + [ + "b4f9eaea09b6917619f6ea6a4eb5464efddb58fd45b1ebefcdc1a01d08b47986", + "39e5c9925b5a54b07433a4f18c61726f8bb131c012ca542eb24a8ac07200682a" + ], + [ + "d4263dfc3d2df923a0179a48966d30ce84e2515afc3dccc1b77907792ebcc60e", + "62dfaf07a0f78feb30e30d6295853ce189e127760ad6cf7fae164e122a208d54" + ], + [ + "48457524820fa65a4f8d35eb6930857c0032acc0a4a2de422233eeda897612c4", + "25a748ab367979d98733c38a1fa1c2e7dc6cc07db2d60a9ae7a76aaa49bd0f77" + ], + [ + "dfeeef1881101f2cb11644f3a2afdfc2045e19919152923f367a1767c11cceda", + "ecfb7056cf1de042f9420bab396793c0c390bde74b4bbdff16a83ae09a9a7517" + ], + [ + "6d7ef6b17543f8373c573f44e1f389835d89bcbc6062ced36c82df83b8fae859", + "cd450ec335438986dfefa10c57fea9bcc521a0959b2d80bbf74b190dca712d10" + ], + [ + "e75605d59102a5a2684500d3b991f2e3f3c88b93225547035af25af66e04541f", + "f5c54754a8f71ee540b9b48728473e314f729ac5308b06938360990e2bfad125" + ], + [ + "eb98660f4c4dfaa06a2be453d5020bc99a0c2e60abe388457dd43fefb1ed620c", + "6cb9a8876d9cb8520609af3add26cd20a0a7cd8a9411131ce85f44100099223e" + ], + [ + "13e87b027d8514d35939f2e6892b19922154596941888336dc3563e3b8dba942", + "fef5a3c68059a6dec5d624114bf1e91aac2b9da568d6abeb2570d55646b8adf1" + ], + [ + "ee163026e9fd6fe017c38f06a5be6fc125424b371ce2708e7bf4491691e5764a", + "1acb250f255dd61c43d94ccc670d0f58f49ae3fa15b96623e5430da0ad6c62b2" + ], + [ + "b268f5ef9ad51e4d78de3a750c2dc89b1e626d43505867999932e5db33af3d80", + "5f310d4b3c99b9ebb19f77d41c1dee018cf0d34fd4191614003e945a1216e423" + ], + [ + "ff07f3118a9df035e9fad85eb6c7bfe42b02f01ca99ceea3bf7ffdba93c4750d", + "438136d603e858a3a5c440c38eccbaddc1d2942114e2eddd4740d098ced1f0d8" + ], + [ + "8d8b9855c7c052a34146fd20ffb658bea4b9f69e0d825ebec16e8c3ce2b526a1", + "cdb559eedc2d79f926baf44fb84ea4d44bcf50fee51d7ceb30e2e7f463036758" + ], + [ + "52db0b5384dfbf05bfa9d472d7ae26dfe4b851ceca91b1eba54263180da32b63", + "c3b997d050ee5d423ebaf66a6db9f57b3180c902875679de924b69d84a7b375" + ], + [ + "e62f9490d3d51da6395efd24e80919cc7d0f29c3f3fa48c6fff543becbd43352", + "6d89ad7ba4876b0b22c2ca280c682862f342c8591f1daf5170e07bfd9ccafa7d" + ], + [ + "7f30ea2476b399b4957509c88f77d0191afa2ff5cb7b14fd6d8e7d65aaab1193", + "ca5ef7d4b231c94c3b15389a5f6311e9daff7bb67b103e9880ef4bff637acaec" + ], + [ + "5098ff1e1d9f14fb46a210fada6c903fef0fb7b4a1dd1d9ac60a0361800b7a00", + "9731141d81fc8f8084d37c6e7542006b3ee1b40d60dfe5362a5b132fd17ddc0" + ], + [ + "32b78c7de9ee512a72895be6b9cbefa6e2f3c4ccce445c96b9f2c81e2778ad58", + "ee1849f513df71e32efc3896ee28260c73bb80547ae2275ba497237794c8753c" + ], + [ + "e2cb74fddc8e9fbcd076eef2a7c72b0ce37d50f08269dfc074b581550547a4f7", + "d3aa2ed71c9dd2247a62df062736eb0baddea9e36122d2be8641abcb005cc4a4" + ], + [ + "8438447566d4d7bedadc299496ab357426009a35f235cb141be0d99cd10ae3a8", + "c4e1020916980a4da5d01ac5e6ad330734ef0d7906631c4f2390426b2edd791f" + ], + [ + "4162d488b89402039b584c6fc6c308870587d9c46f660b878ab65c82c711d67e", + "67163e903236289f776f22c25fb8a3afc1732f2b84b4e95dbda47ae5a0852649" + ], + [ + "3fad3fa84caf0f34f0f89bfd2dcf54fc175d767aec3e50684f3ba4a4bf5f683d", + "cd1bc7cb6cc407bb2f0ca647c718a730cf71872e7d0d2a53fa20efcdfe61826" + ], + [ + "674f2600a3007a00568c1a7ce05d0816c1fb84bf1370798f1c69532faeb1a86b", + "299d21f9413f33b3edf43b257004580b70db57da0b182259e09eecc69e0d38a5" + ], + [ + "d32f4da54ade74abb81b815ad1fb3b263d82d6c692714bcff87d29bd5ee9f08f", + "f9429e738b8e53b968e99016c059707782e14f4535359d582fc416910b3eea87" + ], + [ + "30e4e670435385556e593657135845d36fbb6931f72b08cb1ed954f1e3ce3ff6", + "462f9bce619898638499350113bbc9b10a878d35da70740dc695a559eb88db7b" + ], + [ + "be2062003c51cc3004682904330e4dee7f3dcd10b01e580bf1971b04d4cad297", + "62188bc49d61e5428573d48a74e1c655b1c61090905682a0d5558ed72dccb9bc" + ], + [ + "93144423ace3451ed29e0fb9ac2af211cb6e84a601df5993c419859fff5df04a", + "7c10dfb164c3425f5c71a3f9d7992038f1065224f72bb9d1d902a6d13037b47c" + ], + [ + "b015f8044f5fcbdcf21ca26d6c34fb8197829205c7b7d2a7cb66418c157b112c", + "ab8c1e086d04e813744a655b2df8d5f83b3cdc6faa3088c1d3aea1454e3a1d5f" + ], + [ + "d5e9e1da649d97d89e4868117a465a3a4f8a18de57a140d36b3f2af341a21b52", + "4cb04437f391ed73111a13cc1d4dd0db1693465c2240480d8955e8592f27447a" + ], + [ + "d3ae41047dd7ca065dbf8ed77b992439983005cd72e16d6f996a5316d36966bb", + "bd1aeb21ad22ebb22a10f0303417c6d964f8cdd7df0aca614b10dc14d125ac46" + ], + [ + "463e2763d885f958fc66cdd22800f0a487197d0a82e377b49f80af87c897b065", + "bfefacdb0e5d0fd7df3a311a94de062b26b80c61fbc97508b79992671ef7ca7f" + ], + [ + "7985fdfd127c0567c6f53ec1bb63ec3158e597c40bfe747c83cddfc910641917", + "603c12daf3d9862ef2b25fe1de289aed24ed291e0ec6708703a5bd567f32ed03" + ], + [ + "74a1ad6b5f76e39db2dd249410eac7f99e74c59cb83d2d0ed5ff1543da7703e9", + "cc6157ef18c9c63cd6193d83631bbea0093e0968942e8c33d5737fd790e0db08" + ], + [ + "30682a50703375f602d416664ba19b7fc9bab42c72747463a71d0896b22f6da3", + "553e04f6b018b4fa6c8f39e7f311d3176290d0e0f19ca73f17714d9977a22ff8" + ], + [ + "9e2158f0d7c0d5f26c3791efefa79597654e7a2b2464f52b1ee6c1347769ef57", + "712fcdd1b9053f09003a3481fa7762e9ffd7c8ef35a38509e2fbf2629008373" + ], + [ + "176e26989a43c9cfeba4029c202538c28172e566e3c4fce7322857f3be327d66", + "ed8cc9d04b29eb877d270b4878dc43c19aefd31f4eee09ee7b47834c1fa4b1c3" + ], + [ + "75d46efea3771e6e68abb89a13ad747ecf1892393dfc4f1b7004788c50374da8", + "9852390a99507679fd0b86fd2b39a868d7efc22151346e1a3ca4726586a6bed8" + ], + [ + "809a20c67d64900ffb698c4c825f6d5f2310fb0451c869345b7319f645605721", + "9e994980d9917e22b76b061927fa04143d096ccc54963e6a5ebfa5f3f8e286c1" + ], + [ + "1b38903a43f7f114ed4500b4eac7083fdefece1cf29c63528d563446f972c180", + "4036edc931a60ae889353f77fd53de4a2708b26b6f5da72ad3394119daf408f9" + ] + ] + } + } + }, + {} + ], + 50: [ + function(require, module, exports) { + "use strict" + var utils = exports + var BN = require("bn.js") + var minAssert = require("minimalistic-assert") + var minUtils = require("minimalistic-crypto-utils") + utils.assert = minAssert + utils.toArray = minUtils.toArray + utils.zero2 = minUtils.zero2 + utils.toHex = minUtils.toHex + utils.encode = minUtils.encode + function getNAF(num, w) { + var naf = [] + var ws = 1 << (w + 1) + var k = num.clone() + while (k.cmpn(1) >= 0) { + var z + if (k.isOdd()) { + var mod = k.andln(ws - 1) + if (mod > (ws >> 1) - 1) z = (ws >> 1) - mod + else z = mod + k.isubn(z) + } else { + z = 0 + } + naf.push(z) + var shift = k.cmpn(0) !== 0 && k.andln(ws - 1) === 0 ? w + 1 : 1 + for (var i = 1; i < shift; i++) naf.push(0) + k.iushrn(shift) + } + return naf + } + utils.getNAF = getNAF + function getJSF(k1, k2) { + var jsf = [[], []] + k1 = k1.clone() + k2 = k2.clone() + var d1 = 0 + var d2 = 0 + while (k1.cmpn(-d1) > 0 || k2.cmpn(-d2) > 0) { + var m14 = (k1.andln(3) + d1) & 3 + var m24 = (k2.andln(3) + d2) & 3 + if (m14 === 3) m14 = -1 + if (m24 === 3) m24 = -1 + var u1 + if ((m14 & 1) === 0) { + u1 = 0 + } else { + var m8 = (k1.andln(7) + d1) & 7 + if ((m8 === 3 || m8 === 5) && m24 === 2) u1 = -m14 + else u1 = m14 + } + jsf[0].push(u1) + var u2 + if ((m24 & 1) === 0) { + u2 = 0 + } else { + var m8 = (k2.andln(7) + d2) & 7 + if ((m8 === 3 || m8 === 5) && m14 === 2) u2 = -m24 + else u2 = m24 + } + jsf[1].push(u2) + if (2 * d1 === u1 + 1) d1 = 1 - d1 + if (2 * d2 === u2 + 1) d2 = 1 - d2 + k1.iushrn(1) + k2.iushrn(1) + } + return jsf + } + utils.getJSF = getJSF + function cachedProperty(obj, name, computer) { + var key = "_" + name + obj.prototype[name] = function cachedProperty() { + return this[key] !== undefined + ? this[key] + : (this[key] = computer.call(this)) + } + } + utils.cachedProperty = cachedProperty + function parseBytes(bytes) { + return typeof bytes === "string" + ? utils.toArray(bytes, "hex") + : bytes + } + utils.parseBytes = parseBytes + function intFromLE(bytes) { + return new BN(bytes, "hex", "le") + } + utils.intFromLE = intFromLE + }, + { + "bn.js": 32, + "minimalistic-assert": 68, + "minimalistic-crypto-utils": 69 + } + ], + 51: [ + function(require, module, exports) { + module.exports = { + name: "elliptic", + version: "6.4.1", + description: "EC cryptography", + main: "lib/elliptic.js", + files: ["lib"], + scripts: { + jscs: + "jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js", + jshint: + "jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js", + lint: "npm run jscs && npm run jshint", + unit: "istanbul test _mocha --reporter=spec test/index.js", + test: "npm run lint && npm run unit", + version: "grunt dist && git add dist/" + }, + repository: { type: "git", url: "git@github.com:indutny/elliptic" }, + keywords: ["EC", "Elliptic", "curve", "Cryptography"], + author: "Fedor Indutny ", + license: "MIT", + bugs: { url: "https://github.com/indutny/elliptic/issues" }, + homepage: "https://github.com/indutny/elliptic", + devDependencies: { + brfs: "^1.4.3", + coveralls: "^2.11.3", + grunt: "^0.4.5", + "grunt-browserify": "^5.0.0", + "grunt-cli": "^1.2.0", + "grunt-contrib-connect": "^1.0.0", + "grunt-contrib-copy": "^1.0.0", + "grunt-contrib-uglify": "^1.0.1", + "grunt-mocha-istanbul": "^3.0.1", + "grunt-saucelabs": "^8.6.2", + istanbul: "^0.4.2", + jscs: "^2.9.0", + jshint: "^2.6.0", + mocha: "^2.1.0" + }, + dependencies: { + "bn.js": "^4.4.0", + brorand: "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + inherits: "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + } + } + }, + {} + ], + 52: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var Transform = require("stream").Transform + var inherits = require("inherits") + function throwIfNotStringOrBuffer(val, prefix) { + if (!Buffer.isBuffer(val) && typeof val !== "string") { + throw new TypeError(prefix + " must be a string or a buffer") + } + } + function HashBase(blockSize) { + Transform.call(this) + this._block = Buffer.allocUnsafe(blockSize) + this._blockSize = blockSize + this._blockOffset = 0 + this._length = [0, 0, 0, 0] + this._finalized = false + } + inherits(HashBase, Transform) + HashBase.prototype._transform = function(chunk, encoding, callback) { + var error = null + try { + this.update(chunk, encoding) + } catch (err) { + error = err + } + callback(error) + } + HashBase.prototype._flush = function(callback) { + var error = null + try { + this.push(this.digest()) + } catch (err) { + error = err + } + callback(error) + } + HashBase.prototype.update = function(data, encoding) { + throwIfNotStringOrBuffer(data, "Data") + if (this._finalized) throw new Error("Digest already called") + if (!Buffer.isBuffer(data)) data = Buffer.from(data, encoding) + var block = this._block + var offset = 0 + while ( + this._blockOffset + data.length - offset >= + this._blockSize + ) { + for (var i = this._blockOffset; i < this._blockSize; ) + block[i++] = data[offset++] + this._update() + this._blockOffset = 0 + } + while (offset < data.length) + block[this._blockOffset++] = data[offset++] + for (var j = 0, carry = data.length * 8; carry > 0; ++j) { + this._length[j] += carry + carry = (this._length[j] / 4294967296) | 0 + if (carry > 0) this._length[j] -= 4294967296 * carry + } + return this + } + HashBase.prototype._update = function() { + throw new Error("_update is not implemented") + } + HashBase.prototype.digest = function(encoding) { + if (this._finalized) throw new Error("Digest already called") + this._finalized = true + var digest = this._digest() + if (encoding !== undefined) digest = digest.toString(encoding) + this._block.fill(0) + this._blockOffset = 0 + for (var i = 0; i < 4; ++i) this._length[i] = 0 + return digest + } + HashBase.prototype._digest = function() { + throw new Error("_digest is not implemented") + } + module.exports = HashBase + }, + { inherits: 66, "safe-buffer": 71, stream: 27 } + ], + 53: [ + function(require, module, exports) { + var hash = exports + hash.utils = require("./hash/utils") + hash.common = require("./hash/common") + hash.sha = require("./hash/sha") + hash.ripemd = require("./hash/ripemd") + hash.hmac = require("./hash/hmac") + hash.sha1 = hash.sha.sha1 + hash.sha256 = hash.sha.sha256 + hash.sha224 = hash.sha.sha224 + hash.sha384 = hash.sha.sha384 + hash.sha512 = hash.sha.sha512 + hash.ripemd160 = hash.ripemd.ripemd160 + }, + { + "./hash/common": 54, + "./hash/hmac": 55, + "./hash/ripemd": 56, + "./hash/sha": 57, + "./hash/utils": 64 + } + ], + 54: [ + function(require, module, exports) { + "use strict" + var utils = require("./utils") + var assert = require("minimalistic-assert") + function BlockHash() { + this.pending = null + this.pendingTotal = 0 + this.blockSize = this.constructor.blockSize + this.outSize = this.constructor.outSize + this.hmacStrength = this.constructor.hmacStrength + this.padLength = this.constructor.padLength / 8 + this.endian = "big" + this._delta8 = this.blockSize / 8 + this._delta32 = this.blockSize / 32 + } + exports.BlockHash = BlockHash + BlockHash.prototype.update = function update(msg, enc) { + msg = utils.toArray(msg, enc) + if (!this.pending) this.pending = msg + else this.pending = this.pending.concat(msg) + this.pendingTotal += msg.length + if (this.pending.length >= this._delta8) { + msg = this.pending + var r = msg.length % this._delta8 + this.pending = msg.slice(msg.length - r, msg.length) + if (this.pending.length === 0) this.pending = null + msg = utils.join32(msg, 0, msg.length - r, this.endian) + for (var i = 0; i < msg.length; i += this._delta32) + this._update(msg, i, i + this._delta32) + } + return this + } + BlockHash.prototype.digest = function digest(enc) { + this.update(this._pad()) + assert(this.pending === null) + return this._digest(enc) + } + BlockHash.prototype._pad = function pad() { + var len = this.pendingTotal + var bytes = this._delta8 + var k = bytes - ((len + this.padLength) % bytes) + var res = new Array(k + this.padLength) + res[0] = 128 + for (var i = 1; i < k; i++) res[i] = 0 + len <<= 3 + if (this.endian === "big") { + for (var t = 8; t < this.padLength; t++) res[i++] = 0 + res[i++] = 0 + res[i++] = 0 + res[i++] = 0 + res[i++] = 0 + res[i++] = (len >>> 24) & 255 + res[i++] = (len >>> 16) & 255 + res[i++] = (len >>> 8) & 255 + res[i++] = len & 255 + } else { + res[i++] = len & 255 + res[i++] = (len >>> 8) & 255 + res[i++] = (len >>> 16) & 255 + res[i++] = (len >>> 24) & 255 + res[i++] = 0 + res[i++] = 0 + res[i++] = 0 + res[i++] = 0 + for (t = 8; t < this.padLength; t++) res[i++] = 0 + } + return res + } + }, + { "./utils": 64, "minimalistic-assert": 68 } + ], + 55: [ + function(require, module, exports) { + "use strict" + var utils = require("./utils") + var assert = require("minimalistic-assert") + function Hmac(hash, key, enc) { + if (!(this instanceof Hmac)) return new Hmac(hash, key, enc) + this.Hash = hash + this.blockSize = hash.blockSize / 8 + this.outSize = hash.outSize / 8 + this.inner = null + this.outer = null + this._init(utils.toArray(key, enc)) + } + module.exports = Hmac + Hmac.prototype._init = function init(key) { + if (key.length > this.blockSize) + key = new this.Hash().update(key).digest() + assert(key.length <= this.blockSize) + for (var i = key.length; i < this.blockSize; i++) key.push(0) + for (i = 0; i < key.length; i++) key[i] ^= 54 + this.inner = new this.Hash().update(key) + for (i = 0; i < key.length; i++) key[i] ^= 106 + this.outer = new this.Hash().update(key) + } + Hmac.prototype.update = function update(msg, enc) { + this.inner.update(msg, enc) + return this + } + Hmac.prototype.digest = function digest(enc) { + this.outer.update(this.inner.digest()) + return this.outer.digest(enc) + } + }, + { "./utils": 64, "minimalistic-assert": 68 } + ], + 56: [ + function(require, module, exports) { + "use strict" + var utils = require("./utils") + var common = require("./common") + var rotl32 = utils.rotl32 + var sum32 = utils.sum32 + var sum32_3 = utils.sum32_3 + var sum32_4 = utils.sum32_4 + var BlockHash = common.BlockHash + function RIPEMD160() { + if (!(this instanceof RIPEMD160)) return new RIPEMD160() + BlockHash.call(this) + this.h = [1732584193, 4023233417, 2562383102, 271733878, 3285377520] + this.endian = "little" + } + utils.inherits(RIPEMD160, BlockHash) + exports.ripemd160 = RIPEMD160 + RIPEMD160.blockSize = 512 + RIPEMD160.outSize = 160 + RIPEMD160.hmacStrength = 192 + RIPEMD160.padLength = 64 + RIPEMD160.prototype._update = function update(msg, start) { + var A = this.h[0] + var B = this.h[1] + var C = this.h[2] + var D = this.h[3] + var E = this.h[4] + var Ah = A + var Bh = B + var Ch = C + var Dh = D + var Eh = E + for (var j = 0; j < 80; j++) { + var T = sum32( + rotl32( + sum32_4(A, f(j, B, C, D), msg[r[j] + start], K(j)), + s[j] + ), + E + ) + A = E + E = D + D = rotl32(C, 10) + C = B + B = T + T = sum32( + rotl32( + sum32_4(Ah, f(79 - j, Bh, Ch, Dh), msg[rh[j] + start], Kh(j)), + sh[j] + ), + Eh + ) + Ah = Eh + Eh = Dh + Dh = rotl32(Ch, 10) + Ch = Bh + Bh = T + } + T = sum32_3(this.h[1], C, Dh) + this.h[1] = sum32_3(this.h[2], D, Eh) + this.h[2] = sum32_3(this.h[3], E, Ah) + this.h[3] = sum32_3(this.h[4], A, Bh) + this.h[4] = sum32_3(this.h[0], B, Ch) + this.h[0] = T + } + RIPEMD160.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h, "little") + else return utils.split32(this.h, "little") + } + function f(j, x, y, z) { + if (j <= 15) return x ^ y ^ z + else if (j <= 31) return (x & y) | (~x & z) + else if (j <= 47) return (x | ~y) ^ z + else if (j <= 63) return (x & z) | (y & ~z) + else return x ^ (y | ~z) + } + function K(j) { + if (j <= 15) return 0 + else if (j <= 31) return 1518500249 + else if (j <= 47) return 1859775393 + else if (j <= 63) return 2400959708 + else return 2840853838 + } + function Kh(j) { + if (j <= 15) return 1352829926 + else if (j <= 31) return 1548603684 + else if (j <= 47) return 1836072691 + else if (j <= 63) return 2053994217 + else return 0 + } + var r = [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 7, + 4, + 13, + 1, + 10, + 6, + 15, + 3, + 12, + 0, + 9, + 5, + 2, + 14, + 11, + 8, + 3, + 10, + 14, + 4, + 9, + 15, + 8, + 1, + 2, + 7, + 0, + 6, + 13, + 11, + 5, + 12, + 1, + 9, + 11, + 10, + 0, + 8, + 12, + 4, + 13, + 3, + 7, + 15, + 14, + 5, + 6, + 2, + 4, + 0, + 5, + 9, + 7, + 12, + 2, + 10, + 14, + 1, + 3, + 8, + 11, + 6, + 15, + 13 + ] + var rh = [ + 5, + 14, + 7, + 0, + 9, + 2, + 11, + 4, + 13, + 6, + 15, + 8, + 1, + 10, + 3, + 12, + 6, + 11, + 3, + 7, + 0, + 13, + 5, + 10, + 14, + 15, + 8, + 12, + 4, + 9, + 1, + 2, + 15, + 5, + 1, + 3, + 7, + 14, + 6, + 9, + 11, + 8, + 12, + 2, + 10, + 0, + 4, + 13, + 8, + 6, + 4, + 1, + 3, + 11, + 15, + 0, + 5, + 12, + 2, + 13, + 9, + 7, + 10, + 14, + 12, + 15, + 10, + 4, + 1, + 5, + 8, + 7, + 6, + 2, + 13, + 14, + 0, + 3, + 9, + 11 + ] + var s = [ + 11, + 14, + 15, + 12, + 5, + 8, + 7, + 9, + 11, + 13, + 14, + 15, + 6, + 7, + 9, + 8, + 7, + 6, + 8, + 13, + 11, + 9, + 7, + 15, + 7, + 12, + 15, + 9, + 11, + 7, + 13, + 12, + 11, + 13, + 6, + 7, + 14, + 9, + 13, + 15, + 14, + 8, + 13, + 6, + 5, + 12, + 7, + 5, + 11, + 12, + 14, + 15, + 14, + 15, + 9, + 8, + 9, + 14, + 5, + 6, + 8, + 6, + 5, + 12, + 9, + 15, + 5, + 11, + 6, + 8, + 13, + 12, + 5, + 12, + 13, + 14, + 11, + 8, + 5, + 6 + ] + var sh = [ + 8, + 9, + 9, + 11, + 13, + 15, + 15, + 5, + 7, + 7, + 8, + 11, + 14, + 14, + 12, + 6, + 9, + 13, + 15, + 7, + 12, + 8, + 9, + 11, + 7, + 7, + 12, + 7, + 6, + 15, + 13, + 11, + 9, + 7, + 15, + 11, + 8, + 6, + 6, + 14, + 12, + 13, + 5, + 14, + 13, + 13, + 7, + 5, + 15, + 5, + 8, + 11, + 14, + 14, + 6, + 14, + 6, + 9, + 12, + 9, + 12, + 5, + 15, + 8, + 8, + 5, + 12, + 9, + 12, + 5, + 14, + 6, + 8, + 13, + 6, + 5, + 15, + 13, + 11, + 11 + ] + }, + { "./common": 54, "./utils": 64 } + ], + 57: [ + function(require, module, exports) { + "use strict" + exports.sha1 = require("./sha/1") + exports.sha224 = require("./sha/224") + exports.sha256 = require("./sha/256") + exports.sha384 = require("./sha/384") + exports.sha512 = require("./sha/512") + }, + { + "./sha/1": 58, + "./sha/224": 59, + "./sha/256": 60, + "./sha/384": 61, + "./sha/512": 62 + } + ], + 58: [ + function(require, module, exports) { + "use strict" + var utils = require("../utils") + var common = require("../common") + var shaCommon = require("./common") + var rotl32 = utils.rotl32 + var sum32 = utils.sum32 + var sum32_5 = utils.sum32_5 + var ft_1 = shaCommon.ft_1 + var BlockHash = common.BlockHash + var sha1_K = [1518500249, 1859775393, 2400959708, 3395469782] + function SHA1() { + if (!(this instanceof SHA1)) return new SHA1() + BlockHash.call(this) + this.h = [1732584193, 4023233417, 2562383102, 271733878, 3285377520] + this.W = new Array(80) + } + utils.inherits(SHA1, BlockHash) + module.exports = SHA1 + SHA1.blockSize = 512 + SHA1.outSize = 160 + SHA1.hmacStrength = 80 + SHA1.padLength = 64 + SHA1.prototype._update = function _update(msg, start) { + var W = this.W + for (var i = 0; i < 16; i++) W[i] = msg[start + i] + for (; i < W.length; i++) + W[i] = rotl32(W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16], 1) + var a = this.h[0] + var b = this.h[1] + var c = this.h[2] + var d = this.h[3] + var e = this.h[4] + for (i = 0; i < W.length; i++) { + var s = ~~(i / 20) + var t = sum32_5( + rotl32(a, 5), + ft_1(s, b, c, d), + e, + W[i], + sha1_K[s] + ) + e = d + d = c + c = rotl32(b, 30) + b = a + a = t + } + this.h[0] = sum32(this.h[0], a) + this.h[1] = sum32(this.h[1], b) + this.h[2] = sum32(this.h[2], c) + this.h[3] = sum32(this.h[3], d) + this.h[4] = sum32(this.h[4], e) + } + SHA1.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h, "big") + else return utils.split32(this.h, "big") + } + }, + { "../common": 54, "../utils": 64, "./common": 63 } + ], + 59: [ + function(require, module, exports) { + "use strict" + var utils = require("../utils") + var SHA256 = require("./256") + function SHA224() { + if (!(this instanceof SHA224)) return new SHA224() + SHA256.call(this) + this.h = [ + 3238371032, + 914150663, + 812702999, + 4144912697, + 4290775857, + 1750603025, + 1694076839, + 3204075428 + ] + } + utils.inherits(SHA224, SHA256) + module.exports = SHA224 + SHA224.blockSize = 512 + SHA224.outSize = 224 + SHA224.hmacStrength = 192 + SHA224.padLength = 64 + SHA224.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h.slice(0, 7), "big") + else return utils.split32(this.h.slice(0, 7), "big") + } + }, + { "../utils": 64, "./256": 60 } + ], + 60: [ + function(require, module, exports) { + "use strict" + var utils = require("../utils") + var common = require("../common") + var shaCommon = require("./common") + var assert = require("minimalistic-assert") + var sum32 = utils.sum32 + var sum32_4 = utils.sum32_4 + var sum32_5 = utils.sum32_5 + var ch32 = shaCommon.ch32 + var maj32 = shaCommon.maj32 + var s0_256 = shaCommon.s0_256 + var s1_256 = shaCommon.s1_256 + var g0_256 = shaCommon.g0_256 + var g1_256 = shaCommon.g1_256 + var BlockHash = common.BlockHash + var sha256_K = [ + 1116352408, + 1899447441, + 3049323471, + 3921009573, + 961987163, + 1508970993, + 2453635748, + 2870763221, + 3624381080, + 310598401, + 607225278, + 1426881987, + 1925078388, + 2162078206, + 2614888103, + 3248222580, + 3835390401, + 4022224774, + 264347078, + 604807628, + 770255983, + 1249150122, + 1555081692, + 1996064986, + 2554220882, + 2821834349, + 2952996808, + 3210313671, + 3336571891, + 3584528711, + 113926993, + 338241895, + 666307205, + 773529912, + 1294757372, + 1396182291, + 1695183700, + 1986661051, + 2177026350, + 2456956037, + 2730485921, + 2820302411, + 3259730800, + 3345764771, + 3516065817, + 3600352804, + 4094571909, + 275423344, + 430227734, + 506948616, + 659060556, + 883997877, + 958139571, + 1322822218, + 1537002063, + 1747873779, + 1955562222, + 2024104815, + 2227730452, + 2361852424, + 2428436474, + 2756734187, + 3204031479, + 3329325298 + ] + function SHA256() { + if (!(this instanceof SHA256)) return new SHA256() + BlockHash.call(this) + this.h = [ + 1779033703, + 3144134277, + 1013904242, + 2773480762, + 1359893119, + 2600822924, + 528734635, + 1541459225 + ] + this.k = sha256_K + this.W = new Array(64) + } + utils.inherits(SHA256, BlockHash) + module.exports = SHA256 + SHA256.blockSize = 512 + SHA256.outSize = 256 + SHA256.hmacStrength = 192 + SHA256.padLength = 64 + SHA256.prototype._update = function _update(msg, start) { + var W = this.W + for (var i = 0; i < 16; i++) W[i] = msg[start + i] + for (; i < W.length; i++) + W[i] = sum32_4( + g1_256(W[i - 2]), + W[i - 7], + g0_256(W[i - 15]), + W[i - 16] + ) + var a = this.h[0] + var b = this.h[1] + var c = this.h[2] + var d = this.h[3] + var e = this.h[4] + var f = this.h[5] + var g = this.h[6] + var h = this.h[7] + assert(this.k.length === W.length) + for (i = 0; i < W.length; i++) { + var T1 = sum32_5(h, s1_256(e), ch32(e, f, g), this.k[i], W[i]) + var T2 = sum32(s0_256(a), maj32(a, b, c)) + h = g + g = f + f = e + e = sum32(d, T1) + d = c + c = b + b = a + a = sum32(T1, T2) + } + this.h[0] = sum32(this.h[0], a) + this.h[1] = sum32(this.h[1], b) + this.h[2] = sum32(this.h[2], c) + this.h[3] = sum32(this.h[3], d) + this.h[4] = sum32(this.h[4], e) + this.h[5] = sum32(this.h[5], f) + this.h[6] = sum32(this.h[6], g) + this.h[7] = sum32(this.h[7], h) + } + SHA256.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h, "big") + else return utils.split32(this.h, "big") + } + }, + { + "../common": 54, + "../utils": 64, + "./common": 63, + "minimalistic-assert": 68 + } + ], + 61: [ + function(require, module, exports) { + "use strict" + var utils = require("../utils") + var SHA512 = require("./512") + function SHA384() { + if (!(this instanceof SHA384)) return new SHA384() + SHA512.call(this) + this.h = [ + 3418070365, + 3238371032, + 1654270250, + 914150663, + 2438529370, + 812702999, + 355462360, + 4144912697, + 1731405415, + 4290775857, + 2394180231, + 1750603025, + 3675008525, + 1694076839, + 1203062813, + 3204075428 + ] + } + utils.inherits(SHA384, SHA512) + module.exports = SHA384 + SHA384.blockSize = 1024 + SHA384.outSize = 384 + SHA384.hmacStrength = 192 + SHA384.padLength = 128 + SHA384.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h.slice(0, 12), "big") + else return utils.split32(this.h.slice(0, 12), "big") + } + }, + { "../utils": 64, "./512": 62 } + ], + 62: [ + function(require, module, exports) { + "use strict" + var utils = require("../utils") + var common = require("../common") + var assert = require("minimalistic-assert") + var rotr64_hi = utils.rotr64_hi + var rotr64_lo = utils.rotr64_lo + var shr64_hi = utils.shr64_hi + var shr64_lo = utils.shr64_lo + var sum64 = utils.sum64 + var sum64_hi = utils.sum64_hi + var sum64_lo = utils.sum64_lo + var sum64_4_hi = utils.sum64_4_hi + var sum64_4_lo = utils.sum64_4_lo + var sum64_5_hi = utils.sum64_5_hi + var sum64_5_lo = utils.sum64_5_lo + var BlockHash = common.BlockHash + var sha512_K = [ + 1116352408, + 3609767458, + 1899447441, + 602891725, + 3049323471, + 3964484399, + 3921009573, + 2173295548, + 961987163, + 4081628472, + 1508970993, + 3053834265, + 2453635748, + 2937671579, + 2870763221, + 3664609560, + 3624381080, + 2734883394, + 310598401, + 1164996542, + 607225278, + 1323610764, + 1426881987, + 3590304994, + 1925078388, + 4068182383, + 2162078206, + 991336113, + 2614888103, + 633803317, + 3248222580, + 3479774868, + 3835390401, + 2666613458, + 4022224774, + 944711139, + 264347078, + 2341262773, + 604807628, + 2007800933, + 770255983, + 1495990901, + 1249150122, + 1856431235, + 1555081692, + 3175218132, + 1996064986, + 2198950837, + 2554220882, + 3999719339, + 2821834349, + 766784016, + 2952996808, + 2566594879, + 3210313671, + 3203337956, + 3336571891, + 1034457026, + 3584528711, + 2466948901, + 113926993, + 3758326383, + 338241895, + 168717936, + 666307205, + 1188179964, + 773529912, + 1546045734, + 1294757372, + 1522805485, + 1396182291, + 2643833823, + 1695183700, + 2343527390, + 1986661051, + 1014477480, + 2177026350, + 1206759142, + 2456956037, + 344077627, + 2730485921, + 1290863460, + 2820302411, + 3158454273, + 3259730800, + 3505952657, + 3345764771, + 106217008, + 3516065817, + 3606008344, + 3600352804, + 1432725776, + 4094571909, + 1467031594, + 275423344, + 851169720, + 430227734, + 3100823752, + 506948616, + 1363258195, + 659060556, + 3750685593, + 883997877, + 3785050280, + 958139571, + 3318307427, + 1322822218, + 3812723403, + 1537002063, + 2003034995, + 1747873779, + 3602036899, + 1955562222, + 1575990012, + 2024104815, + 1125592928, + 2227730452, + 2716904306, + 2361852424, + 442776044, + 2428436474, + 593698344, + 2756734187, + 3733110249, + 3204031479, + 2999351573, + 3329325298, + 3815920427, + 3391569614, + 3928383900, + 3515267271, + 566280711, + 3940187606, + 3454069534, + 4118630271, + 4000239992, + 116418474, + 1914138554, + 174292421, + 2731055270, + 289380356, + 3203993006, + 460393269, + 320620315, + 685471733, + 587496836, + 852142971, + 1086792851, + 1017036298, + 365543100, + 1126000580, + 2618297676, + 1288033470, + 3409855158, + 1501505948, + 4234509866, + 1607167915, + 987167468, + 1816402316, + 1246189591 + ] + function SHA512() { + if (!(this instanceof SHA512)) return new SHA512() + BlockHash.call(this) + this.h = [ + 1779033703, + 4089235720, + 3144134277, + 2227873595, + 1013904242, + 4271175723, + 2773480762, + 1595750129, + 1359893119, + 2917565137, + 2600822924, + 725511199, + 528734635, + 4215389547, + 1541459225, + 327033209 + ] + this.k = sha512_K + this.W = new Array(160) + } + utils.inherits(SHA512, BlockHash) + module.exports = SHA512 + SHA512.blockSize = 1024 + SHA512.outSize = 512 + SHA512.hmacStrength = 192 + SHA512.padLength = 128 + SHA512.prototype._prepareBlock = function _prepareBlock(msg, start) { + var W = this.W + for (var i = 0; i < 32; i++) W[i] = msg[start + i] + for (; i < W.length; i += 2) { + var c0_hi = g1_512_hi(W[i - 4], W[i - 3]) + var c0_lo = g1_512_lo(W[i - 4], W[i - 3]) + var c1_hi = W[i - 14] + var c1_lo = W[i - 13] + var c2_hi = g0_512_hi(W[i - 30], W[i - 29]) + var c2_lo = g0_512_lo(W[i - 30], W[i - 29]) + var c3_hi = W[i - 32] + var c3_lo = W[i - 31] + W[i] = sum64_4_hi( + c0_hi, + c0_lo, + c1_hi, + c1_lo, + c2_hi, + c2_lo, + c3_hi, + c3_lo + ) + W[i + 1] = sum64_4_lo( + c0_hi, + c0_lo, + c1_hi, + c1_lo, + c2_hi, + c2_lo, + c3_hi, + c3_lo + ) + } + } + SHA512.prototype._update = function _update(msg, start) { + this._prepareBlock(msg, start) + var W = this.W + var ah = this.h[0] + var al = this.h[1] + var bh = this.h[2] + var bl = this.h[3] + var ch = this.h[4] + var cl = this.h[5] + var dh = this.h[6] + var dl = this.h[7] + var eh = this.h[8] + var el = this.h[9] + var fh = this.h[10] + var fl = this.h[11] + var gh = this.h[12] + var gl = this.h[13] + var hh = this.h[14] + var hl = this.h[15] + assert(this.k.length === W.length) + for (var i = 0; i < W.length; i += 2) { + var c0_hi = hh + var c0_lo = hl + var c1_hi = s1_512_hi(eh, el) + var c1_lo = s1_512_lo(eh, el) + var c2_hi = ch64_hi(eh, el, fh, fl, gh, gl) + var c2_lo = ch64_lo(eh, el, fh, fl, gh, gl) + var c3_hi = this.k[i] + var c3_lo = this.k[i + 1] + var c4_hi = W[i] + var c4_lo = W[i + 1] + var T1_hi = sum64_5_hi( + c0_hi, + c0_lo, + c1_hi, + c1_lo, + c2_hi, + c2_lo, + c3_hi, + c3_lo, + c4_hi, + c4_lo + ) + var T1_lo = sum64_5_lo( + c0_hi, + c0_lo, + c1_hi, + c1_lo, + c2_hi, + c2_lo, + c3_hi, + c3_lo, + c4_hi, + c4_lo + ) + c0_hi = s0_512_hi(ah, al) + c0_lo = s0_512_lo(ah, al) + c1_hi = maj64_hi(ah, al, bh, bl, ch, cl) + c1_lo = maj64_lo(ah, al, bh, bl, ch, cl) + var T2_hi = sum64_hi(c0_hi, c0_lo, c1_hi, c1_lo) + var T2_lo = sum64_lo(c0_hi, c0_lo, c1_hi, c1_lo) + hh = gh + hl = gl + gh = fh + gl = fl + fh = eh + fl = el + eh = sum64_hi(dh, dl, T1_hi, T1_lo) + el = sum64_lo(dl, dl, T1_hi, T1_lo) + dh = ch + dl = cl + ch = bh + cl = bl + bh = ah + bl = al + ah = sum64_hi(T1_hi, T1_lo, T2_hi, T2_lo) + al = sum64_lo(T1_hi, T1_lo, T2_hi, T2_lo) + } + sum64(this.h, 0, ah, al) + sum64(this.h, 2, bh, bl) + sum64(this.h, 4, ch, cl) + sum64(this.h, 6, dh, dl) + sum64(this.h, 8, eh, el) + sum64(this.h, 10, fh, fl) + sum64(this.h, 12, gh, gl) + sum64(this.h, 14, hh, hl) + } + SHA512.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h, "big") + else return utils.split32(this.h, "big") + } + function ch64_hi(xh, xl, yh, yl, zh) { + var r = (xh & yh) ^ (~xh & zh) + if (r < 0) r += 4294967296 + return r + } + function ch64_lo(xh, xl, yh, yl, zh, zl) { + var r = (xl & yl) ^ (~xl & zl) + if (r < 0) r += 4294967296 + return r + } + function maj64_hi(xh, xl, yh, yl, zh) { + var r = (xh & yh) ^ (xh & zh) ^ (yh & zh) + if (r < 0) r += 4294967296 + return r + } + function maj64_lo(xh, xl, yh, yl, zh, zl) { + var r = (xl & yl) ^ (xl & zl) ^ (yl & zl) + if (r < 0) r += 4294967296 + return r + } + function s0_512_hi(xh, xl) { + var c0_hi = rotr64_hi(xh, xl, 28) + var c1_hi = rotr64_hi(xl, xh, 2) + var c2_hi = rotr64_hi(xl, xh, 7) + var r = c0_hi ^ c1_hi ^ c2_hi + if (r < 0) r += 4294967296 + return r + } + function s0_512_lo(xh, xl) { + var c0_lo = rotr64_lo(xh, xl, 28) + var c1_lo = rotr64_lo(xl, xh, 2) + var c2_lo = rotr64_lo(xl, xh, 7) + var r = c0_lo ^ c1_lo ^ c2_lo + if (r < 0) r += 4294967296 + return r + } + function s1_512_hi(xh, xl) { + var c0_hi = rotr64_hi(xh, xl, 14) + var c1_hi = rotr64_hi(xh, xl, 18) + var c2_hi = rotr64_hi(xl, xh, 9) + var r = c0_hi ^ c1_hi ^ c2_hi + if (r < 0) r += 4294967296 + return r + } + function s1_512_lo(xh, xl) { + var c0_lo = rotr64_lo(xh, xl, 14) + var c1_lo = rotr64_lo(xh, xl, 18) + var c2_lo = rotr64_lo(xl, xh, 9) + var r = c0_lo ^ c1_lo ^ c2_lo + if (r < 0) r += 4294967296 + return r + } + function g0_512_hi(xh, xl) { + var c0_hi = rotr64_hi(xh, xl, 1) + var c1_hi = rotr64_hi(xh, xl, 8) + var c2_hi = shr64_hi(xh, xl, 7) + var r = c0_hi ^ c1_hi ^ c2_hi + if (r < 0) r += 4294967296 + return r + } + function g0_512_lo(xh, xl) { + var c0_lo = rotr64_lo(xh, xl, 1) + var c1_lo = rotr64_lo(xh, xl, 8) + var c2_lo = shr64_lo(xh, xl, 7) + var r = c0_lo ^ c1_lo ^ c2_lo + if (r < 0) r += 4294967296 + return r + } + function g1_512_hi(xh, xl) { + var c0_hi = rotr64_hi(xh, xl, 19) + var c1_hi = rotr64_hi(xl, xh, 29) + var c2_hi = shr64_hi(xh, xl, 6) + var r = c0_hi ^ c1_hi ^ c2_hi + if (r < 0) r += 4294967296 + return r + } + function g1_512_lo(xh, xl) { + var c0_lo = rotr64_lo(xh, xl, 19) + var c1_lo = rotr64_lo(xl, xh, 29) + var c2_lo = shr64_lo(xh, xl, 6) + var r = c0_lo ^ c1_lo ^ c2_lo + if (r < 0) r += 4294967296 + return r + } + }, + { "../common": 54, "../utils": 64, "minimalistic-assert": 68 } + ], + 63: [ + function(require, module, exports) { + "use strict" + var utils = require("../utils") + var rotr32 = utils.rotr32 + function ft_1(s, x, y, z) { + if (s === 0) return ch32(x, y, z) + if (s === 1 || s === 3) return p32(x, y, z) + if (s === 2) return maj32(x, y, z) + } + exports.ft_1 = ft_1 + function ch32(x, y, z) { + return (x & y) ^ (~x & z) + } + exports.ch32 = ch32 + function maj32(x, y, z) { + return (x & y) ^ (x & z) ^ (y & z) + } + exports.maj32 = maj32 + function p32(x, y, z) { + return x ^ y ^ z + } + exports.p32 = p32 + function s0_256(x) { + return rotr32(x, 2) ^ rotr32(x, 13) ^ rotr32(x, 22) + } + exports.s0_256 = s0_256 + function s1_256(x) { + return rotr32(x, 6) ^ rotr32(x, 11) ^ rotr32(x, 25) + } + exports.s1_256 = s1_256 + function g0_256(x) { + return rotr32(x, 7) ^ rotr32(x, 18) ^ (x >>> 3) + } + exports.g0_256 = g0_256 + function g1_256(x) { + return rotr32(x, 17) ^ rotr32(x, 19) ^ (x >>> 10) + } + exports.g1_256 = g1_256 + }, + { "../utils": 64 } + ], + 64: [ + function(require, module, exports) { + "use strict" + var assert = require("minimalistic-assert") + var inherits = require("inherits") + exports.inherits = inherits + function toArray(msg, enc) { + if (Array.isArray(msg)) return msg.slice() + if (!msg) return [] + var res = [] + if (typeof msg === "string") { + if (!enc) { + for (var i = 0; i < msg.length; i++) { + var c = msg.charCodeAt(i) + var hi = c >> 8 + var lo = c & 255 + if (hi) res.push(hi, lo) + else res.push(lo) + } + } else if (enc === "hex") { + msg = msg.replace(/[^a-z0-9]+/gi, "") + if (msg.length % 2 !== 0) msg = "0" + msg + for (i = 0; i < msg.length; i += 2) + res.push(parseInt(msg[i] + msg[i + 1], 16)) + } + } else { + for (i = 0; i < msg.length; i++) res[i] = msg[i] | 0 + } + return res + } + exports.toArray = toArray + function toHex(msg) { + var res = "" + for (var i = 0; i < msg.length; i++) + res += zero2(msg[i].toString(16)) + return res + } + exports.toHex = toHex + function htonl(w) { + var res = + (w >>> 24) | + ((w >>> 8) & 65280) | + ((w << 8) & 16711680) | + ((w & 255) << 24) + return res >>> 0 + } + exports.htonl = htonl + function toHex32(msg, endian) { + var res = "" + for (var i = 0; i < msg.length; i++) { + var w = msg[i] + if (endian === "little") w = htonl(w) + res += zero8(w.toString(16)) + } + return res + } + exports.toHex32 = toHex32 + function zero2(word) { + if (word.length === 1) return "0" + word + else return word + } + exports.zero2 = zero2 + function zero8(word) { + if (word.length === 7) return "0" + word + else if (word.length === 6) return "00" + word + else if (word.length === 5) return "000" + word + else if (word.length === 4) return "0000" + word + else if (word.length === 3) return "00000" + word + else if (word.length === 2) return "000000" + word + else if (word.length === 1) return "0000000" + word + else return word + } + exports.zero8 = zero8 + function join32(msg, start, end, endian) { + var len = end - start + assert(len % 4 === 0) + var res = new Array(len / 4) + for (var i = 0, k = start; i < res.length; i++, k += 4) { + var w + if (endian === "big") + w = + (msg[k] << 24) | + (msg[k + 1] << 16) | + (msg[k + 2] << 8) | + msg[k + 3] + else + w = + (msg[k + 3] << 24) | + (msg[k + 2] << 16) | + (msg[k + 1] << 8) | + msg[k] + res[i] = w >>> 0 + } + return res + } + exports.join32 = join32 + function split32(msg, endian) { + var res = new Array(msg.length * 4) + for (var i = 0, k = 0; i < msg.length; i++, k += 4) { + var m = msg[i] + if (endian === "big") { + res[k] = m >>> 24 + res[k + 1] = (m >>> 16) & 255 + res[k + 2] = (m >>> 8) & 255 + res[k + 3] = m & 255 + } else { + res[k + 3] = m >>> 24 + res[k + 2] = (m >>> 16) & 255 + res[k + 1] = (m >>> 8) & 255 + res[k] = m & 255 + } + } + return res + } + exports.split32 = split32 + function rotr32(w, b) { + return (w >>> b) | (w << (32 - b)) + } + exports.rotr32 = rotr32 + function rotl32(w, b) { + return (w << b) | (w >>> (32 - b)) + } + exports.rotl32 = rotl32 + function sum32(a, b) { + return (a + b) >>> 0 + } + exports.sum32 = sum32 + function sum32_3(a, b, c) { + return (a + b + c) >>> 0 + } + exports.sum32_3 = sum32_3 + function sum32_4(a, b, c, d) { + return (a + b + c + d) >>> 0 + } + exports.sum32_4 = sum32_4 + function sum32_5(a, b, c, d, e) { + return (a + b + c + d + e) >>> 0 + } + exports.sum32_5 = sum32_5 + function sum64(buf, pos, ah, al) { + var bh = buf[pos] + var bl = buf[pos + 1] + var lo = (al + bl) >>> 0 + var hi = (lo < al ? 1 : 0) + ah + bh + buf[pos] = hi >>> 0 + buf[pos + 1] = lo + } + exports.sum64 = sum64 + function sum64_hi(ah, al, bh, bl) { + var lo = (al + bl) >>> 0 + var hi = (lo < al ? 1 : 0) + ah + bh + return hi >>> 0 + } + exports.sum64_hi = sum64_hi + function sum64_lo(ah, al, bh, bl) { + var lo = al + bl + return lo >>> 0 + } + exports.sum64_lo = sum64_lo + function sum64_4_hi(ah, al, bh, bl, ch, cl, dh, dl) { + var carry = 0 + var lo = al + lo = (lo + bl) >>> 0 + carry += lo < al ? 1 : 0 + lo = (lo + cl) >>> 0 + carry += lo < cl ? 1 : 0 + lo = (lo + dl) >>> 0 + carry += lo < dl ? 1 : 0 + var hi = ah + bh + ch + dh + carry + return hi >>> 0 + } + exports.sum64_4_hi = sum64_4_hi + function sum64_4_lo(ah, al, bh, bl, ch, cl, dh, dl) { + var lo = al + bl + cl + dl + return lo >>> 0 + } + exports.sum64_4_lo = sum64_4_lo + function sum64_5_hi(ah, al, bh, bl, ch, cl, dh, dl, eh, el) { + var carry = 0 + var lo = al + lo = (lo + bl) >>> 0 + carry += lo < al ? 1 : 0 + lo = (lo + cl) >>> 0 + carry += lo < cl ? 1 : 0 + lo = (lo + dl) >>> 0 + carry += lo < dl ? 1 : 0 + lo = (lo + el) >>> 0 + carry += lo < el ? 1 : 0 + var hi = ah + bh + ch + dh + eh + carry + return hi >>> 0 + } + exports.sum64_5_hi = sum64_5_hi + function sum64_5_lo(ah, al, bh, bl, ch, cl, dh, dl, eh, el) { + var lo = al + bl + cl + dl + el + return lo >>> 0 + } + exports.sum64_5_lo = sum64_5_lo + function rotr64_hi(ah, al, num) { + var r = (al << (32 - num)) | (ah >>> num) + return r >>> 0 + } + exports.rotr64_hi = rotr64_hi + function rotr64_lo(ah, al, num) { + var r = (ah << (32 - num)) | (al >>> num) + return r >>> 0 + } + exports.rotr64_lo = rotr64_lo + function shr64_hi(ah, al, num) { + return ah >>> num + } + exports.shr64_hi = shr64_hi + function shr64_lo(ah, al, num) { + var r = (ah << (32 - num)) | (al >>> num) + return r >>> 0 + } + exports.shr64_lo = shr64_lo + }, + { inherits: 66, "minimalistic-assert": 68 } + ], + 65: [ + function(require, module, exports) { + "use strict" + var hash = require("hash.js") + var utils = require("minimalistic-crypto-utils") + var assert = require("minimalistic-assert") + function HmacDRBG(options) { + if (!(this instanceof HmacDRBG)) return new HmacDRBG(options) + this.hash = options.hash + this.predResist = !!options.predResist + this.outLen = this.hash.outSize + this.minEntropy = options.minEntropy || this.hash.hmacStrength + this._reseed = null + this.reseedInterval = null + this.K = null + this.V = null + var entropy = utils.toArray( + options.entropy, + options.entropyEnc || "hex" + ) + var nonce = utils.toArray(options.nonce, options.nonceEnc || "hex") + var pers = utils.toArray(options.pers, options.persEnc || "hex") + assert( + entropy.length >= this.minEntropy / 8, + "Not enough entropy. Minimum is: " + this.minEntropy + " bits" + ) + this._init(entropy, nonce, pers) + } + module.exports = HmacDRBG + HmacDRBG.prototype._init = function init(entropy, nonce, pers) { + var seed = entropy.concat(nonce).concat(pers) + this.K = new Array(this.outLen / 8) + this.V = new Array(this.outLen / 8) + for (var i = 0; i < this.V.length; i++) { + this.K[i] = 0 + this.V[i] = 1 + } + this._update(seed) + this._reseed = 1 + this.reseedInterval = 281474976710656 + } + HmacDRBG.prototype._hmac = function hmac() { + return new hash.hmac(this.hash, this.K) + } + HmacDRBG.prototype._update = function update(seed) { + var kmac = this._hmac() + .update(this.V) + .update([0]) + if (seed) kmac = kmac.update(seed) + this.K = kmac.digest() + this.V = this._hmac() + .update(this.V) + .digest() + if (!seed) return + this.K = this._hmac() + .update(this.V) + .update([1]) + .update(seed) + .digest() + this.V = this._hmac() + .update(this.V) + .digest() + } + HmacDRBG.prototype.reseed = function reseed( + entropy, + entropyEnc, + add, + addEnc + ) { + if (typeof entropyEnc !== "string") { + addEnc = add + add = entropyEnc + entropyEnc = null + } + entropy = utils.toArray(entropy, entropyEnc) + add = utils.toArray(add, addEnc) + assert( + entropy.length >= this.minEntropy / 8, + "Not enough entropy. Minimum is: " + this.minEntropy + " bits" + ) + this._update(entropy.concat(add || [])) + this._reseed = 1 + } + HmacDRBG.prototype.generate = function generate( + len, + enc, + add, + addEnc + ) { + if (this._reseed > this.reseedInterval) + throw new Error("Reseed is required") + if (typeof enc !== "string") { + addEnc = add + add = enc + enc = null + } + if (add) { + add = utils.toArray(add, addEnc || "hex") + this._update(add) + } + var temp = [] + while (temp.length < len) { + this.V = this._hmac() + .update(this.V) + .digest() + temp = temp.concat(this.V) + } + var res = temp.slice(0, len) + this._update(add) + this._reseed++ + return utils.encode(res, enc) + } + }, + { + "hash.js": 53, + "minimalistic-assert": 68, + "minimalistic-crypto-utils": 69 + } + ], + 66: [ + function(require, module, exports) { + arguments[4][7][0].apply(exports, arguments) + }, + { dup: 7 } + ], + 67: [ + function(require, module, exports) { + "use strict" + var inherits = require("inherits") + var HashBase = require("hash-base") + var Buffer = require("safe-buffer").Buffer + var ARRAY16 = new Array(16) + function MD5() { + HashBase.call(this, 64) + this._a = 1732584193 + this._b = 4023233417 + this._c = 2562383102 + this._d = 271733878 + } + inherits(MD5, HashBase) + MD5.prototype._update = function() { + var M = ARRAY16 + for (var i = 0; i < 16; ++i) M[i] = this._block.readInt32LE(i * 4) + var a = this._a + var b = this._b + var c = this._c + var d = this._d + a = fnF(a, b, c, d, M[0], 3614090360, 7) + d = fnF(d, a, b, c, M[1], 3905402710, 12) + c = fnF(c, d, a, b, M[2], 606105819, 17) + b = fnF(b, c, d, a, M[3], 3250441966, 22) + a = fnF(a, b, c, d, M[4], 4118548399, 7) + d = fnF(d, a, b, c, M[5], 1200080426, 12) + c = fnF(c, d, a, b, M[6], 2821735955, 17) + b = fnF(b, c, d, a, M[7], 4249261313, 22) + a = fnF(a, b, c, d, M[8], 1770035416, 7) + d = fnF(d, a, b, c, M[9], 2336552879, 12) + c = fnF(c, d, a, b, M[10], 4294925233, 17) + b = fnF(b, c, d, a, M[11], 2304563134, 22) + a = fnF(a, b, c, d, M[12], 1804603682, 7) + d = fnF(d, a, b, c, M[13], 4254626195, 12) + c = fnF(c, d, a, b, M[14], 2792965006, 17) + b = fnF(b, c, d, a, M[15], 1236535329, 22) + a = fnG(a, b, c, d, M[1], 4129170786, 5) + d = fnG(d, a, b, c, M[6], 3225465664, 9) + c = fnG(c, d, a, b, M[11], 643717713, 14) + b = fnG(b, c, d, a, M[0], 3921069994, 20) + a = fnG(a, b, c, d, M[5], 3593408605, 5) + d = fnG(d, a, b, c, M[10], 38016083, 9) + c = fnG(c, d, a, b, M[15], 3634488961, 14) + b = fnG(b, c, d, a, M[4], 3889429448, 20) + a = fnG(a, b, c, d, M[9], 568446438, 5) + d = fnG(d, a, b, c, M[14], 3275163606, 9) + c = fnG(c, d, a, b, M[3], 4107603335, 14) + b = fnG(b, c, d, a, M[8], 1163531501, 20) + a = fnG(a, b, c, d, M[13], 2850285829, 5) + d = fnG(d, a, b, c, M[2], 4243563512, 9) + c = fnG(c, d, a, b, M[7], 1735328473, 14) + b = fnG(b, c, d, a, M[12], 2368359562, 20) + a = fnH(a, b, c, d, M[5], 4294588738, 4) + d = fnH(d, a, b, c, M[8], 2272392833, 11) + c = fnH(c, d, a, b, M[11], 1839030562, 16) + b = fnH(b, c, d, a, M[14], 4259657740, 23) + a = fnH(a, b, c, d, M[1], 2763975236, 4) + d = fnH(d, a, b, c, M[4], 1272893353, 11) + c = fnH(c, d, a, b, M[7], 4139469664, 16) + b = fnH(b, c, d, a, M[10], 3200236656, 23) + a = fnH(a, b, c, d, M[13], 681279174, 4) + d = fnH(d, a, b, c, M[0], 3936430074, 11) + c = fnH(c, d, a, b, M[3], 3572445317, 16) + b = fnH(b, c, d, a, M[6], 76029189, 23) + a = fnH(a, b, c, d, M[9], 3654602809, 4) + d = fnH(d, a, b, c, M[12], 3873151461, 11) + c = fnH(c, d, a, b, M[15], 530742520, 16) + b = fnH(b, c, d, a, M[2], 3299628645, 23) + a = fnI(a, b, c, d, M[0], 4096336452, 6) + d = fnI(d, a, b, c, M[7], 1126891415, 10) + c = fnI(c, d, a, b, M[14], 2878612391, 15) + b = fnI(b, c, d, a, M[5], 4237533241, 21) + a = fnI(a, b, c, d, M[12], 1700485571, 6) + d = fnI(d, a, b, c, M[3], 2399980690, 10) + c = fnI(c, d, a, b, M[10], 4293915773, 15) + b = fnI(b, c, d, a, M[1], 2240044497, 21) + a = fnI(a, b, c, d, M[8], 1873313359, 6) + d = fnI(d, a, b, c, M[15], 4264355552, 10) + c = fnI(c, d, a, b, M[6], 2734768916, 15) + b = fnI(b, c, d, a, M[13], 1309151649, 21) + a = fnI(a, b, c, d, M[4], 4149444226, 6) + d = fnI(d, a, b, c, M[11], 3174756917, 10) + c = fnI(c, d, a, b, M[2], 718787259, 15) + b = fnI(b, c, d, a, M[9], 3951481745, 21) + this._a = (this._a + a) | 0 + this._b = (this._b + b) | 0 + this._c = (this._c + c) | 0 + this._d = (this._d + d) | 0 + } + MD5.prototype._digest = function() { + this._block[this._blockOffset++] = 128 + if (this._blockOffset > 56) { + this._block.fill(0, this._blockOffset, 64) + this._update() + this._blockOffset = 0 + } + this._block.fill(0, this._blockOffset, 56) + this._block.writeUInt32LE(this._length[0], 56) + this._block.writeUInt32LE(this._length[1], 60) + this._update() + var buffer = Buffer.allocUnsafe(16) + buffer.writeInt32LE(this._a, 0) + buffer.writeInt32LE(this._b, 4) + buffer.writeInt32LE(this._c, 8) + buffer.writeInt32LE(this._d, 12) + return buffer + } + function rotl(x, n) { + return (x << n) | (x >>> (32 - n)) + } + function fnF(a, b, c, d, m, k, s) { + return (rotl((a + ((b & c) | (~b & d)) + m + k) | 0, s) + b) | 0 + } + function fnG(a, b, c, d, m, k, s) { + return (rotl((a + ((b & d) | (c & ~d)) + m + k) | 0, s) + b) | 0 + } + function fnH(a, b, c, d, m, k, s) { + return (rotl((a + (b ^ c ^ d) + m + k) | 0, s) + b) | 0 + } + function fnI(a, b, c, d, m, k, s) { + return (rotl((a + (c ^ (b | ~d)) + m + k) | 0, s) + b) | 0 + } + module.exports = MD5 + }, + { "hash-base": 52, inherits: 66, "safe-buffer": 71 } + ], + 68: [ + function(require, module, exports) { + module.exports = assert + function assert(val, msg) { + if (!val) throw new Error(msg || "Assertion failed") + } + assert.equal = function assertEqual(l, r, msg) { + if (l != r) + throw new Error(msg || "Assertion failed: " + l + " != " + r) + } + }, + {} + ], + 69: [ + function(require, module, exports) { + "use strict" + var utils = exports + function toArray(msg, enc) { + if (Array.isArray(msg)) return msg.slice() + if (!msg) return [] + var res = [] + if (typeof msg !== "string") { + for (var i = 0; i < msg.length; i++) res[i] = msg[i] | 0 + return res + } + if (enc === "hex") { + msg = msg.replace(/[^a-z0-9]+/gi, "") + if (msg.length % 2 !== 0) msg = "0" + msg + for (var i = 0; i < msg.length; i += 2) + res.push(parseInt(msg[i] + msg[i + 1], 16)) + } else { + for (var i = 0; i < msg.length; i++) { + var c = msg.charCodeAt(i) + var hi = c >> 8 + var lo = c & 255 + if (hi) res.push(hi, lo) + else res.push(lo) + } + } + return res + } + utils.toArray = toArray + function zero2(word) { + if (word.length === 1) return "0" + word + else return word + } + utils.zero2 = zero2 + function toHex(msg) { + var res = "" + for (var i = 0; i < msg.length; i++) + res += zero2(msg[i].toString(16)) + return res + } + utils.toHex = toHex + utils.encode = function encode(arr, enc) { + if (enc === "hex") return toHex(arr) + else return arr + } + }, + {} + ], + 70: [ + function(require, module, exports) { + "use strict" + var Buffer = require("buffer").Buffer + var inherits = require("inherits") + var HashBase = require("hash-base") + var ARRAY16 = new Array(16) + var zl = [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 7, + 4, + 13, + 1, + 10, + 6, + 15, + 3, + 12, + 0, + 9, + 5, + 2, + 14, + 11, + 8, + 3, + 10, + 14, + 4, + 9, + 15, + 8, + 1, + 2, + 7, + 0, + 6, + 13, + 11, + 5, + 12, + 1, + 9, + 11, + 10, + 0, + 8, + 12, + 4, + 13, + 3, + 7, + 15, + 14, + 5, + 6, + 2, + 4, + 0, + 5, + 9, + 7, + 12, + 2, + 10, + 14, + 1, + 3, + 8, + 11, + 6, + 15, + 13 + ] + var zr = [ + 5, + 14, + 7, + 0, + 9, + 2, + 11, + 4, + 13, + 6, + 15, + 8, + 1, + 10, + 3, + 12, + 6, + 11, + 3, + 7, + 0, + 13, + 5, + 10, + 14, + 15, + 8, + 12, + 4, + 9, + 1, + 2, + 15, + 5, + 1, + 3, + 7, + 14, + 6, + 9, + 11, + 8, + 12, + 2, + 10, + 0, + 4, + 13, + 8, + 6, + 4, + 1, + 3, + 11, + 15, + 0, + 5, + 12, + 2, + 13, + 9, + 7, + 10, + 14, + 12, + 15, + 10, + 4, + 1, + 5, + 8, + 7, + 6, + 2, + 13, + 14, + 0, + 3, + 9, + 11 + ] + var sl = [ + 11, + 14, + 15, + 12, + 5, + 8, + 7, + 9, + 11, + 13, + 14, + 15, + 6, + 7, + 9, + 8, + 7, + 6, + 8, + 13, + 11, + 9, + 7, + 15, + 7, + 12, + 15, + 9, + 11, + 7, + 13, + 12, + 11, + 13, + 6, + 7, + 14, + 9, + 13, + 15, + 14, + 8, + 13, + 6, + 5, + 12, + 7, + 5, + 11, + 12, + 14, + 15, + 14, + 15, + 9, + 8, + 9, + 14, + 5, + 6, + 8, + 6, + 5, + 12, + 9, + 15, + 5, + 11, + 6, + 8, + 13, + 12, + 5, + 12, + 13, + 14, + 11, + 8, + 5, + 6 + ] + var sr = [ + 8, + 9, + 9, + 11, + 13, + 15, + 15, + 5, + 7, + 7, + 8, + 11, + 14, + 14, + 12, + 6, + 9, + 13, + 15, + 7, + 12, + 8, + 9, + 11, + 7, + 7, + 12, + 7, + 6, + 15, + 13, + 11, + 9, + 7, + 15, + 11, + 8, + 6, + 6, + 14, + 12, + 13, + 5, + 14, + 13, + 13, + 7, + 5, + 15, + 5, + 8, + 11, + 14, + 14, + 6, + 14, + 6, + 9, + 12, + 9, + 12, + 5, + 15, + 8, + 8, + 5, + 12, + 9, + 12, + 5, + 14, + 6, + 8, + 13, + 6, + 5, + 15, + 13, + 11, + 11 + ] + var hl = [0, 1518500249, 1859775393, 2400959708, 2840853838] + var hr = [1352829926, 1548603684, 1836072691, 2053994217, 0] + function RIPEMD160() { + HashBase.call(this, 64) + this._a = 1732584193 + this._b = 4023233417 + this._c = 2562383102 + this._d = 271733878 + this._e = 3285377520 + } + inherits(RIPEMD160, HashBase) + RIPEMD160.prototype._update = function() { + var words = ARRAY16 + for (var j = 0; j < 16; ++j) + words[j] = this._block.readInt32LE(j * 4) + var al = this._a | 0 + var bl = this._b | 0 + var cl = this._c | 0 + var dl = this._d | 0 + var el = this._e | 0 + var ar = this._a | 0 + var br = this._b | 0 + var cr = this._c | 0 + var dr = this._d | 0 + var er = this._e | 0 + for (var i = 0; i < 80; i += 1) { + var tl + var tr + if (i < 16) { + tl = fn1(al, bl, cl, dl, el, words[zl[i]], hl[0], sl[i]) + tr = fn5(ar, br, cr, dr, er, words[zr[i]], hr[0], sr[i]) + } else if (i < 32) { + tl = fn2(al, bl, cl, dl, el, words[zl[i]], hl[1], sl[i]) + tr = fn4(ar, br, cr, dr, er, words[zr[i]], hr[1], sr[i]) + } else if (i < 48) { + tl = fn3(al, bl, cl, dl, el, words[zl[i]], hl[2], sl[i]) + tr = fn3(ar, br, cr, dr, er, words[zr[i]], hr[2], sr[i]) + } else if (i < 64) { + tl = fn4(al, bl, cl, dl, el, words[zl[i]], hl[3], sl[i]) + tr = fn2(ar, br, cr, dr, er, words[zr[i]], hr[3], sr[i]) + } else { + tl = fn5(al, bl, cl, dl, el, words[zl[i]], hl[4], sl[i]) + tr = fn1(ar, br, cr, dr, er, words[zr[i]], hr[4], sr[i]) + } + al = el + el = dl + dl = rotl(cl, 10) + cl = bl + bl = tl + ar = er + er = dr + dr = rotl(cr, 10) + cr = br + br = tr + } + var t = (this._b + cl + dr) | 0 + this._b = (this._c + dl + er) | 0 + this._c = (this._d + el + ar) | 0 + this._d = (this._e + al + br) | 0 + this._e = (this._a + bl + cr) | 0 + this._a = t + } + RIPEMD160.prototype._digest = function() { + this._block[this._blockOffset++] = 128 + if (this._blockOffset > 56) { + this._block.fill(0, this._blockOffset, 64) + this._update() + this._blockOffset = 0 + } + this._block.fill(0, this._blockOffset, 56) + this._block.writeUInt32LE(this._length[0], 56) + this._block.writeUInt32LE(this._length[1], 60) + this._update() + var buffer = Buffer.alloc ? Buffer.alloc(20) : new Buffer(20) + buffer.writeInt32LE(this._a, 0) + buffer.writeInt32LE(this._b, 4) + buffer.writeInt32LE(this._c, 8) + buffer.writeInt32LE(this._d, 12) + buffer.writeInt32LE(this._e, 16) + return buffer + } + function rotl(x, n) { + return (x << n) | (x >>> (32 - n)) + } + function fn1(a, b, c, d, e, m, k, s) { + return (rotl((a + (b ^ c ^ d) + m + k) | 0, s) + e) | 0 + } + function fn2(a, b, c, d, e, m, k, s) { + return (rotl((a + ((b & c) | (~b & d)) + m + k) | 0, s) + e) | 0 + } + function fn3(a, b, c, d, e, m, k, s) { + return (rotl((a + ((b | ~c) ^ d) + m + k) | 0, s) + e) | 0 + } + function fn4(a, b, c, d, e, m, k, s) { + return (rotl((a + ((b & d) | (c & ~d)) + m + k) | 0, s) + e) | 0 + } + function fn5(a, b, c, d, e, m, k, s) { + return (rotl((a + (b ^ (c | ~d)) + m + k) | 0, s) + e) | 0 + } + module.exports = RIPEMD160 + }, + { buffer: 3, "hash-base": 52, inherits: 66 } + ], + 71: [ + function(require, module, exports) { + arguments[4][26][0].apply(exports, arguments) + }, + { buffer: 3, dup: 26 } + ], + 72: [ + function(require, module, exports) { + "use strict" + module.exports = require("./lib")(require("./lib/elliptic")) + }, + { "./lib": 76, "./lib/elliptic": 75 } + ], + 73: [ + function(require, module, exports) { + ;(function(Buffer) { + "use strict" + var toString = Object.prototype.toString + exports.isArray = function(value, message) { + if (!Array.isArray(value)) throw TypeError(message) + } + exports.isBoolean = function(value, message) { + if (toString.call(value) !== "[object Boolean]") + throw TypeError(message) + } + exports.isBuffer = function(value, message) { + if (!Buffer.isBuffer(value)) throw TypeError(message) + } + exports.isFunction = function(value, message) { + if (toString.call(value) !== "[object Function]") + throw TypeError(message) + } + exports.isNumber = function(value, message) { + if (toString.call(value) !== "[object Number]") + throw TypeError(message) + } + exports.isObject = function(value, message) { + if (toString.call(value) !== "[object Object]") + throw TypeError(message) + } + exports.isBufferLength = function(buffer, length, message) { + if (buffer.length !== length) throw RangeError(message) + } + exports.isBufferLength2 = function( + buffer, + length1, + length2, + message + ) { + if (buffer.length !== length1 && buffer.length !== length2) + throw RangeError(message) + } + exports.isLengthGTZero = function(value, message) { + if (value.length === 0) throw RangeError(message) + } + exports.isNumberInInterval = function(number, x, y, message) { + if (number <= x || number >= y) throw RangeError(message) + } + }.call(this, { + isBuffer: require("../../../../../.nvm/versions/node/v10.13.0/lib/node_modules/browserify/node_modules/is-buffer/index.js") + })) + }, + { + "../../../../../.nvm/versions/node/v10.13.0/lib/node_modules/browserify/node_modules/is-buffer/index.js": 8 + } + ], + 74: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var bip66 = require("bip66") + var EC_PRIVKEY_EXPORT_DER_COMPRESSED = Buffer.from([ + 48, + 129, + 211, + 2, + 1, + 1, + 4, + 32, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 160, + 129, + 133, + 48, + 129, + 130, + 2, + 1, + 1, + 48, + 44, + 6, + 7, + 42, + 134, + 72, + 206, + 61, + 1, + 1, + 2, + 33, + 0, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 254, + 255, + 255, + 252, + 47, + 48, + 6, + 4, + 1, + 0, + 4, + 1, + 7, + 4, + 33, + 2, + 121, + 190, + 102, + 126, + 249, + 220, + 187, + 172, + 85, + 160, + 98, + 149, + 206, + 135, + 11, + 7, + 2, + 155, + 252, + 219, + 45, + 206, + 40, + 217, + 89, + 242, + 129, + 91, + 22, + 248, + 23, + 152, + 2, + 33, + 0, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 254, + 186, + 174, + 220, + 230, + 175, + 72, + 160, + 59, + 191, + 210, + 94, + 140, + 208, + 54, + 65, + 65, + 2, + 1, + 1, + 161, + 36, + 3, + 34, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ]) + var EC_PRIVKEY_EXPORT_DER_UNCOMPRESSED = Buffer.from([ + 48, + 130, + 1, + 19, + 2, + 1, + 1, + 4, + 32, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 160, + 129, + 165, + 48, + 129, + 162, + 2, + 1, + 1, + 48, + 44, + 6, + 7, + 42, + 134, + 72, + 206, + 61, + 1, + 1, + 2, + 33, + 0, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 254, + 255, + 255, + 252, + 47, + 48, + 6, + 4, + 1, + 0, + 4, + 1, + 7, + 4, + 65, + 4, + 121, + 190, + 102, + 126, + 249, + 220, + 187, + 172, + 85, + 160, + 98, + 149, + 206, + 135, + 11, + 7, + 2, + 155, + 252, + 219, + 45, + 206, + 40, + 217, + 89, + 242, + 129, + 91, + 22, + 248, + 23, + 152, + 72, + 58, + 218, + 119, + 38, + 163, + 196, + 101, + 93, + 164, + 251, + 252, + 14, + 17, + 8, + 168, + 253, + 23, + 180, + 72, + 166, + 133, + 84, + 25, + 156, + 71, + 208, + 143, + 251, + 16, + 212, + 184, + 2, + 33, + 0, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 255, + 254, + 186, + 174, + 220, + 230, + 175, + 72, + 160, + 59, + 191, + 210, + 94, + 140, + 208, + 54, + 65, + 65, + 2, + 1, + 1, + 161, + 68, + 3, + 66, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ]) + exports.privateKeyExport = function( + privateKey, + publicKey, + compressed + ) { + var result = Buffer.from( + compressed + ? EC_PRIVKEY_EXPORT_DER_COMPRESSED + : EC_PRIVKEY_EXPORT_DER_UNCOMPRESSED + ) + privateKey.copy(result, compressed ? 8 : 9) + publicKey.copy(result, compressed ? 181 : 214) + return result + } + exports.privateKeyImport = function(privateKey) { + var length = privateKey.length + var index = 0 + if (length < index + 1 || privateKey[index] !== 48) return + index += 1 + if (length < index + 1 || !(privateKey[index] & 128)) return + var lenb = privateKey[index] & 127 + index += 1 + if (lenb < 1 || lenb > 2) return + if (length < index + lenb) return + var len = + privateKey[index + lenb - 1] | + (lenb > 1 ? privateKey[index + lenb - 2] << 8 : 0) + index += lenb + if (length < index + len) return + if ( + length < index + 3 || + privateKey[index] !== 2 || + privateKey[index + 1] !== 1 || + privateKey[index + 2] !== 1 + ) { + return + } + index += 3 + if ( + length < index + 2 || + privateKey[index] !== 4 || + privateKey[index + 1] > 32 || + length < index + 2 + privateKey[index + 1] + ) { + return + } + return privateKey.slice( + index + 2, + index + 2 + privateKey[index + 1] + ) + } + exports.signatureExport = function(sigObj) { + var r = Buffer.concat([Buffer.from([0]), sigObj.r]) + for ( + var lenR = 33, posR = 0; + lenR > 1 && r[posR] === 0 && !(r[posR + 1] & 128); + --lenR, ++posR + ); + var s = Buffer.concat([Buffer.from([0]), sigObj.s]) + for ( + var lenS = 33, posS = 0; + lenS > 1 && s[posS] === 0 && !(s[posS + 1] & 128); + --lenS, ++posS + ); + return bip66.encode(r.slice(posR), s.slice(posS)) + } + exports.signatureImport = function(sig) { + var r = Buffer.alloc(32, 0) + var s = Buffer.alloc(32, 0) + try { + var sigObj = bip66.decode(sig) + if (sigObj.r.length === 33 && sigObj.r[0] === 0) + sigObj.r = sigObj.r.slice(1) + if (sigObj.r.length > 32) throw new Error("R length is too long") + if (sigObj.s.length === 33 && sigObj.s[0] === 0) + sigObj.s = sigObj.s.slice(1) + if (sigObj.s.length > 32) throw new Error("S length is too long") + } catch (err) { + return + } + sigObj.r.copy(r, 32 - sigObj.r.length) + sigObj.s.copy(s, 32 - sigObj.s.length) + return { r: r, s: s } + } + exports.signatureImportLax = function(sig) { + var r = Buffer.alloc(32, 0) + var s = Buffer.alloc(32, 0) + var length = sig.length + var index = 0 + if (sig[index++] !== 48) return + var lenbyte = sig[index++] + if (lenbyte & 128) { + index += lenbyte - 128 + if (index > length) return + } + if (sig[index++] !== 2) return + var rlen = sig[index++] + if (rlen & 128) { + lenbyte = rlen - 128 + if (index + lenbyte > length) return + for (; lenbyte > 0 && sig[index] === 0; index += 1, lenbyte -= 1); + for (rlen = 0; lenbyte > 0; index += 1, lenbyte -= 1) + rlen = (rlen << 8) + sig[index] + } + if (rlen > length - index) return + var rindex = index + index += rlen + if (sig[index++] !== 2) return + var slen = sig[index++] + if (slen & 128) { + lenbyte = slen - 128 + if (index + lenbyte > length) return + for (; lenbyte > 0 && sig[index] === 0; index += 1, lenbyte -= 1); + for (slen = 0; lenbyte > 0; index += 1, lenbyte -= 1) + slen = (slen << 8) + sig[index] + } + if (slen > length - index) return + var sindex = index + index += slen + for (; rlen > 0 && sig[rindex] === 0; rlen -= 1, rindex += 1); + if (rlen > 32) return + var rvalue = sig.slice(rindex, rindex + rlen) + rvalue.copy(r, 32 - rvalue.length) + for (; slen > 0 && sig[sindex] === 0; slen -= 1, sindex += 1); + if (slen > 32) return + var svalue = sig.slice(sindex, sindex + slen) + svalue.copy(s, 32 - svalue.length) + return { r: r, s: s } + } + }, + { bip66: 31, "safe-buffer": 71 } + ], + 75: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var createHash = require("create-hash") + var BN = require("bn.js") + var EC = require("elliptic").ec + var messages = require("../messages.json") + var ec = new EC("secp256k1") + var ecparams = ec.curve + function loadCompressedPublicKey(first, xBuffer) { + var x = new BN(xBuffer) + if (x.cmp(ecparams.p) >= 0) return null + x = x.toRed(ecparams.red) + var y = x + .redSqr() + .redIMul(x) + .redIAdd(ecparams.b) + .redSqrt() + if ((first === 3) !== y.isOdd()) y = y.redNeg() + return ec.keyPair({ pub: { x: x, y: y } }) + } + function loadUncompressedPublicKey(first, xBuffer, yBuffer) { + var x = new BN(xBuffer) + var y = new BN(yBuffer) + if (x.cmp(ecparams.p) >= 0 || y.cmp(ecparams.p) >= 0) return null + x = x.toRed(ecparams.red) + y = y.toRed(ecparams.red) + if ((first === 6 || first === 7) && y.isOdd() !== (first === 7)) + return null + var x3 = x.redSqr().redIMul(x) + if ( + !y + .redSqr() + .redISub(x3.redIAdd(ecparams.b)) + .isZero() + ) + return null + return ec.keyPair({ pub: { x: x, y: y } }) + } + function loadPublicKey(publicKey) { + var first = publicKey[0] + switch (first) { + case 2: + case 3: + if (publicKey.length !== 33) return null + return loadCompressedPublicKey(first, publicKey.slice(1, 33)) + case 4: + case 6: + case 7: + if (publicKey.length !== 65) return null + return loadUncompressedPublicKey( + first, + publicKey.slice(1, 33), + publicKey.slice(33, 65) + ) + default: + return null + } + } + exports.privateKeyVerify = function(privateKey) { + var bn = new BN(privateKey) + return bn.cmp(ecparams.n) < 0 && !bn.isZero() + } + exports.privateKeyExport = function(privateKey, compressed) { + var d = new BN(privateKey) + if (d.cmp(ecparams.n) >= 0 || d.isZero()) + throw new Error(messages.EC_PRIVATE_KEY_EXPORT_DER_FAIL) + return Buffer.from( + ec.keyFromPrivate(privateKey).getPublic(compressed, true) + ) + } + exports.privateKeyNegate = function(privateKey) { + var bn = new BN(privateKey) + return bn.isZero() + ? Buffer.alloc(32) + : ecparams.n + .sub(bn) + .umod(ecparams.n) + .toArrayLike(Buffer, "be", 32) + } + exports.privateKeyModInverse = function(privateKey) { + var bn = new BN(privateKey) + if (bn.cmp(ecparams.n) >= 0 || bn.isZero()) + throw new Error(messages.EC_PRIVATE_KEY_RANGE_INVALID) + return bn.invm(ecparams.n).toArrayLike(Buffer, "be", 32) + } + exports.privateKeyTweakAdd = function(privateKey, tweak) { + var bn = new BN(tweak) + if (bn.cmp(ecparams.n) >= 0) + throw new Error(messages.EC_PRIVATE_KEY_TWEAK_ADD_FAIL) + bn.iadd(new BN(privateKey)) + if (bn.cmp(ecparams.n) >= 0) bn.isub(ecparams.n) + if (bn.isZero()) + throw new Error(messages.EC_PRIVATE_KEY_TWEAK_ADD_FAIL) + return bn.toArrayLike(Buffer, "be", 32) + } + exports.privateKeyTweakMul = function(privateKey, tweak) { + var bn = new BN(tweak) + if (bn.cmp(ecparams.n) >= 0 || bn.isZero()) + throw new Error(messages.EC_PRIVATE_KEY_TWEAK_MUL_FAIL) + bn.imul(new BN(privateKey)) + if (bn.cmp(ecparams.n)) bn = bn.umod(ecparams.n) + return bn.toArrayLike(Buffer, "be", 32) + } + exports.publicKeyCreate = function(privateKey, compressed) { + var d = new BN(privateKey) + if (d.cmp(ecparams.n) >= 0 || d.isZero()) + throw new Error(messages.EC_PUBLIC_KEY_CREATE_FAIL) + return Buffer.from( + ec.keyFromPrivate(privateKey).getPublic(compressed, true) + ) + } + exports.publicKeyConvert = function(publicKey, compressed) { + var pair = loadPublicKey(publicKey) + if (pair === null) + throw new Error(messages.EC_PUBLIC_KEY_PARSE_FAIL) + return Buffer.from(pair.getPublic(compressed, true)) + } + exports.publicKeyVerify = function(publicKey) { + return loadPublicKey(publicKey) !== null + } + exports.publicKeyTweakAdd = function(publicKey, tweak, compressed) { + var pair = loadPublicKey(publicKey) + if (pair === null) + throw new Error(messages.EC_PUBLIC_KEY_PARSE_FAIL) + tweak = new BN(tweak) + if (tweak.cmp(ecparams.n) >= 0) + throw new Error(messages.EC_PUBLIC_KEY_TWEAK_ADD_FAIL) + return Buffer.from( + ecparams.g + .mul(tweak) + .add(pair.pub) + .encode(true, compressed) + ) + } + exports.publicKeyTweakMul = function(publicKey, tweak, compressed) { + var pair = loadPublicKey(publicKey) + if (pair === null) + throw new Error(messages.EC_PUBLIC_KEY_PARSE_FAIL) + tweak = new BN(tweak) + if (tweak.cmp(ecparams.n) >= 0 || tweak.isZero()) + throw new Error(messages.EC_PUBLIC_KEY_TWEAK_MUL_FAIL) + return Buffer.from(pair.pub.mul(tweak).encode(true, compressed)) + } + exports.publicKeyCombine = function(publicKeys, compressed) { + var pairs = new Array(publicKeys.length) + for (var i = 0; i < publicKeys.length; ++i) { + pairs[i] = loadPublicKey(publicKeys[i]) + if (pairs[i] === null) + throw new Error(messages.EC_PUBLIC_KEY_PARSE_FAIL) + } + var point = pairs[0].pub + for (var j = 1; j < pairs.length; ++j) + point = point.add(pairs[j].pub) + if (point.isInfinity()) + throw new Error(messages.EC_PUBLIC_KEY_COMBINE_FAIL) + return Buffer.from(point.encode(true, compressed)) + } + exports.signatureNormalize = function(signature) { + var r = new BN(signature.slice(0, 32)) + var s = new BN(signature.slice(32, 64)) + if (r.cmp(ecparams.n) >= 0 || s.cmp(ecparams.n) >= 0) + throw new Error(messages.ECDSA_SIGNATURE_PARSE_FAIL) + var result = Buffer.from(signature) + if (s.cmp(ec.nh) === 1) + ecparams.n + .sub(s) + .toArrayLike(Buffer, "be", 32) + .copy(result, 32) + return result + } + exports.signatureExport = function(signature) { + var r = signature.slice(0, 32) + var s = signature.slice(32, 64) + if ( + new BN(r).cmp(ecparams.n) >= 0 || + new BN(s).cmp(ecparams.n) >= 0 + ) + throw new Error(messages.ECDSA_SIGNATURE_PARSE_FAIL) + return { r: r, s: s } + } + exports.signatureImport = function(sigObj) { + var r = new BN(sigObj.r) + if (r.cmp(ecparams.n) >= 0) r = new BN(0) + var s = new BN(sigObj.s) + if (s.cmp(ecparams.n) >= 0) s = new BN(0) + return Buffer.concat([ + r.toArrayLike(Buffer, "be", 32), + s.toArrayLike(Buffer, "be", 32) + ]) + } + exports.sign = function(message, privateKey, noncefn, data) { + if (typeof noncefn === "function") { + var getNonce = noncefn + noncefn = function(counter) { + var nonce = getNonce(message, privateKey, null, data, counter) + if (!Buffer.isBuffer(nonce) || nonce.length !== 32) + throw new Error(messages.ECDSA_SIGN_FAIL) + return new BN(nonce) + } + } + var d = new BN(privateKey) + if (d.cmp(ecparams.n) >= 0 || d.isZero()) + throw new Error(messages.ECDSA_SIGN_FAIL) + var result = ec.sign(message, privateKey, { + canonical: true, + k: noncefn, + pers: data + }) + return { + signature: Buffer.concat([ + result.r.toArrayLike(Buffer, "be", 32), + result.s.toArrayLike(Buffer, "be", 32) + ]), + recovery: result.recoveryParam + } + } + exports.verify = function(message, signature, publicKey) { + var sigObj = { + r: signature.slice(0, 32), + s: signature.slice(32, 64) + } + var sigr = new BN(sigObj.r) + var sigs = new BN(sigObj.s) + if (sigr.cmp(ecparams.n) >= 0 || sigs.cmp(ecparams.n) >= 0) + throw new Error(messages.ECDSA_SIGNATURE_PARSE_FAIL) + if (sigs.cmp(ec.nh) === 1 || sigr.isZero() || sigs.isZero()) + return false + var pair = loadPublicKey(publicKey) + if (pair === null) + throw new Error(messages.EC_PUBLIC_KEY_PARSE_FAIL) + return ec.verify(message, sigObj, { x: pair.pub.x, y: pair.pub.y }) + } + exports.recover = function(message, signature, recovery, compressed) { + var sigObj = { + r: signature.slice(0, 32), + s: signature.slice(32, 64) + } + var sigr = new BN(sigObj.r) + var sigs = new BN(sigObj.s) + if (sigr.cmp(ecparams.n) >= 0 || sigs.cmp(ecparams.n) >= 0) + throw new Error(messages.ECDSA_SIGNATURE_PARSE_FAIL) + try { + if (sigr.isZero() || sigs.isZero()) throw new Error() + var point = ec.recoverPubKey(message, sigObj, recovery) + return Buffer.from(point.encode(true, compressed)) + } catch (err) { + throw new Error(messages.ECDSA_RECOVER_FAIL) + } + } + exports.ecdh = function(publicKey, privateKey) { + var shared = exports.ecdhUnsafe(publicKey, privateKey, true) + return createHash("sha256") + .update(shared) + .digest() + } + exports.ecdhUnsafe = function(publicKey, privateKey, compressed) { + var pair = loadPublicKey(publicKey) + if (pair === null) + throw new Error(messages.EC_PUBLIC_KEY_PARSE_FAIL) + var scalar = new BN(privateKey) + if (scalar.cmp(ecparams.n) >= 0 || scalar.isZero()) + throw new Error(messages.ECDH_FAIL) + return Buffer.from(pair.pub.mul(scalar).encode(true, compressed)) + } + }, + { + "../messages.json": 77, + "bn.js": 32, + "create-hash": 35, + elliptic: 36, + "safe-buffer": 71 + } + ], + 76: [ + function(require, module, exports) { + "use strict" + var assert = require("./assert") + var der = require("./der") + var messages = require("./messages.json") + function initCompressedValue(value, defaultValue) { + if (value === undefined) return defaultValue + assert.isBoolean(value, messages.COMPRESSED_TYPE_INVALID) + return value + } + module.exports = function(secp256k1) { + return { + privateKeyVerify: function(privateKey) { + assert.isBuffer( + privateKey, + messages.EC_PRIVATE_KEY_TYPE_INVALID + ) + return ( + privateKey.length === 32 && + secp256k1.privateKeyVerify(privateKey) + ) + }, + privateKeyExport: function(privateKey, compressed) { + assert.isBuffer( + privateKey, + messages.EC_PRIVATE_KEY_TYPE_INVALID + ) + assert.isBufferLength( + privateKey, + 32, + messages.EC_PRIVATE_KEY_LENGTH_INVALID + ) + compressed = initCompressedValue(compressed, true) + var publicKey = secp256k1.privateKeyExport( + privateKey, + compressed + ) + return der.privateKeyExport(privateKey, publicKey, compressed) + }, + privateKeyImport: function(privateKey) { + assert.isBuffer( + privateKey, + messages.EC_PRIVATE_KEY_TYPE_INVALID + ) + privateKey = der.privateKeyImport(privateKey) + if ( + privateKey && + privateKey.length === 32 && + secp256k1.privateKeyVerify(privateKey) + ) + return privateKey + throw new Error(messages.EC_PRIVATE_KEY_IMPORT_DER_FAIL) + }, + privateKeyNegate: function(privateKey) { + assert.isBuffer( + privateKey, + messages.EC_PRIVATE_KEY_TYPE_INVALID + ) + assert.isBufferLength( + privateKey, + 32, + messages.EC_PRIVATE_KEY_LENGTH_INVALID + ) + return secp256k1.privateKeyNegate(privateKey) + }, + privateKeyModInverse: function(privateKey) { + assert.isBuffer( + privateKey, + messages.EC_PRIVATE_KEY_TYPE_INVALID + ) + assert.isBufferLength( + privateKey, + 32, + messages.EC_PRIVATE_KEY_LENGTH_INVALID + ) + return secp256k1.privateKeyModInverse(privateKey) + }, + privateKeyTweakAdd: function(privateKey, tweak) { + assert.isBuffer( + privateKey, + messages.EC_PRIVATE_KEY_TYPE_INVALID + ) + assert.isBufferLength( + privateKey, + 32, + messages.EC_PRIVATE_KEY_LENGTH_INVALID + ) + assert.isBuffer(tweak, messages.TWEAK_TYPE_INVALID) + assert.isBufferLength(tweak, 32, messages.TWEAK_LENGTH_INVALID) + return secp256k1.privateKeyTweakAdd(privateKey, tweak) + }, + privateKeyTweakMul: function(privateKey, tweak) { + assert.isBuffer( + privateKey, + messages.EC_PRIVATE_KEY_TYPE_INVALID + ) + assert.isBufferLength( + privateKey, + 32, + messages.EC_PRIVATE_KEY_LENGTH_INVALID + ) + assert.isBuffer(tweak, messages.TWEAK_TYPE_INVALID) + assert.isBufferLength(tweak, 32, messages.TWEAK_LENGTH_INVALID) + return secp256k1.privateKeyTweakMul(privateKey, tweak) + }, + publicKeyCreate: function(privateKey, compressed) { + assert.isBuffer( + privateKey, + messages.EC_PRIVATE_KEY_TYPE_INVALID + ) + assert.isBufferLength( + privateKey, + 32, + messages.EC_PRIVATE_KEY_LENGTH_INVALID + ) + compressed = initCompressedValue(compressed, true) + return secp256k1.publicKeyCreate(privateKey, compressed) + }, + publicKeyConvert: function(publicKey, compressed) { + assert.isBuffer(publicKey, messages.EC_PUBLIC_KEY_TYPE_INVALID) + assert.isBufferLength2( + publicKey, + 33, + 65, + messages.EC_PUBLIC_KEY_LENGTH_INVALID + ) + compressed = initCompressedValue(compressed, true) + return secp256k1.publicKeyConvert(publicKey, compressed) + }, + publicKeyVerify: function(publicKey) { + assert.isBuffer(publicKey, messages.EC_PUBLIC_KEY_TYPE_INVALID) + return secp256k1.publicKeyVerify(publicKey) + }, + publicKeyTweakAdd: function(publicKey, tweak, compressed) { + assert.isBuffer(publicKey, messages.EC_PUBLIC_KEY_TYPE_INVALID) + assert.isBufferLength2( + publicKey, + 33, + 65, + messages.EC_PUBLIC_KEY_LENGTH_INVALID + ) + assert.isBuffer(tweak, messages.TWEAK_TYPE_INVALID) + assert.isBufferLength(tweak, 32, messages.TWEAK_LENGTH_INVALID) + compressed = initCompressedValue(compressed, true) + return secp256k1.publicKeyTweakAdd(publicKey, tweak, compressed) + }, + publicKeyTweakMul: function(publicKey, tweak, compressed) { + assert.isBuffer(publicKey, messages.EC_PUBLIC_KEY_TYPE_INVALID) + assert.isBufferLength2( + publicKey, + 33, + 65, + messages.EC_PUBLIC_KEY_LENGTH_INVALID + ) + assert.isBuffer(tweak, messages.TWEAK_TYPE_INVALID) + assert.isBufferLength(tweak, 32, messages.TWEAK_LENGTH_INVALID) + compressed = initCompressedValue(compressed, true) + return secp256k1.publicKeyTweakMul(publicKey, tweak, compressed) + }, + publicKeyCombine: function(publicKeys, compressed) { + assert.isArray(publicKeys, messages.EC_PUBLIC_KEYS_TYPE_INVALID) + assert.isLengthGTZero( + publicKeys, + messages.EC_PUBLIC_KEYS_LENGTH_INVALID + ) + for (var i = 0; i < publicKeys.length; ++i) { + assert.isBuffer( + publicKeys[i], + messages.EC_PUBLIC_KEY_TYPE_INVALID + ) + assert.isBufferLength2( + publicKeys[i], + 33, + 65, + messages.EC_PUBLIC_KEY_LENGTH_INVALID + ) + } + compressed = initCompressedValue(compressed, true) + return secp256k1.publicKeyCombine(publicKeys, compressed) + }, + signatureNormalize: function(signature) { + assert.isBuffer( + signature, + messages.ECDSA_SIGNATURE_TYPE_INVALID + ) + assert.isBufferLength( + signature, + 64, + messages.ECDSA_SIGNATURE_LENGTH_INVALID + ) + return secp256k1.signatureNormalize(signature) + }, + signatureExport: function(signature) { + assert.isBuffer( + signature, + messages.ECDSA_SIGNATURE_TYPE_INVALID + ) + assert.isBufferLength( + signature, + 64, + messages.ECDSA_SIGNATURE_LENGTH_INVALID + ) + var sigObj = secp256k1.signatureExport(signature) + return der.signatureExport(sigObj) + }, + signatureImport: function(sig) { + assert.isBuffer(sig, messages.ECDSA_SIGNATURE_TYPE_INVALID) + assert.isLengthGTZero( + sig, + messages.ECDSA_SIGNATURE_LENGTH_INVALID + ) + var sigObj = der.signatureImport(sig) + if (sigObj) return secp256k1.signatureImport(sigObj) + throw new Error(messages.ECDSA_SIGNATURE_PARSE_DER_FAIL) + }, + signatureImportLax: function(sig) { + assert.isBuffer(sig, messages.ECDSA_SIGNATURE_TYPE_INVALID) + assert.isLengthGTZero( + sig, + messages.ECDSA_SIGNATURE_LENGTH_INVALID + ) + var sigObj = der.signatureImportLax(sig) + if (sigObj) return secp256k1.signatureImport(sigObj) + throw new Error(messages.ECDSA_SIGNATURE_PARSE_DER_FAIL) + }, + sign: function(message, privateKey, options) { + assert.isBuffer(message, messages.MSG32_TYPE_INVALID) + assert.isBufferLength( + message, + 32, + messages.MSG32_LENGTH_INVALID + ) + assert.isBuffer( + privateKey, + messages.EC_PRIVATE_KEY_TYPE_INVALID + ) + assert.isBufferLength( + privateKey, + 32, + messages.EC_PRIVATE_KEY_LENGTH_INVALID + ) + var data = null + var noncefn = null + if (options !== undefined) { + assert.isObject(options, messages.OPTIONS_TYPE_INVALID) + if (options.data !== undefined) { + assert.isBuffer( + options.data, + messages.OPTIONS_DATA_TYPE_INVALID + ) + assert.isBufferLength( + options.data, + 32, + messages.OPTIONS_DATA_LENGTH_INVALID + ) + data = options.data + } + if (options.noncefn !== undefined) { + assert.isFunction( + options.noncefn, + messages.OPTIONS_NONCEFN_TYPE_INVALID + ) + noncefn = options.noncefn + } + } + return secp256k1.sign(message, privateKey, noncefn, data) + }, + verify: function(message, signature, publicKey) { + assert.isBuffer(message, messages.MSG32_TYPE_INVALID) + assert.isBufferLength( + message, + 32, + messages.MSG32_LENGTH_INVALID + ) + assert.isBuffer( + signature, + messages.ECDSA_SIGNATURE_TYPE_INVALID + ) + assert.isBufferLength( + signature, + 64, + messages.ECDSA_SIGNATURE_LENGTH_INVALID + ) + assert.isBuffer(publicKey, messages.EC_PUBLIC_KEY_TYPE_INVALID) + assert.isBufferLength2( + publicKey, + 33, + 65, + messages.EC_PUBLIC_KEY_LENGTH_INVALID + ) + return secp256k1.verify(message, signature, publicKey) + }, + recover: function(message, signature, recovery, compressed) { + assert.isBuffer(message, messages.MSG32_TYPE_INVALID) + assert.isBufferLength( + message, + 32, + messages.MSG32_LENGTH_INVALID + ) + assert.isBuffer( + signature, + messages.ECDSA_SIGNATURE_TYPE_INVALID + ) + assert.isBufferLength( + signature, + 64, + messages.ECDSA_SIGNATURE_LENGTH_INVALID + ) + assert.isNumber(recovery, messages.RECOVERY_ID_TYPE_INVALID) + assert.isNumberInInterval( + recovery, + -1, + 4, + messages.RECOVERY_ID_VALUE_INVALID + ) + compressed = initCompressedValue(compressed, true) + return secp256k1.recover( + message, + signature, + recovery, + compressed + ) + }, + ecdh: function(publicKey, privateKey) { + assert.isBuffer(publicKey, messages.EC_PUBLIC_KEY_TYPE_INVALID) + assert.isBufferLength2( + publicKey, + 33, + 65, + messages.EC_PUBLIC_KEY_LENGTH_INVALID + ) + assert.isBuffer( + privateKey, + messages.EC_PRIVATE_KEY_TYPE_INVALID + ) + assert.isBufferLength( + privateKey, + 32, + messages.EC_PRIVATE_KEY_LENGTH_INVALID + ) + return secp256k1.ecdh(publicKey, privateKey) + }, + ecdhUnsafe: function(publicKey, privateKey, compressed) { + assert.isBuffer(publicKey, messages.EC_PUBLIC_KEY_TYPE_INVALID) + assert.isBufferLength2( + publicKey, + 33, + 65, + messages.EC_PUBLIC_KEY_LENGTH_INVALID + ) + assert.isBuffer( + privateKey, + messages.EC_PRIVATE_KEY_TYPE_INVALID + ) + assert.isBufferLength( + privateKey, + 32, + messages.EC_PRIVATE_KEY_LENGTH_INVALID + ) + compressed = initCompressedValue(compressed, true) + return secp256k1.ecdhUnsafe(publicKey, privateKey, compressed) + } + } + } + }, + { "./assert": 73, "./der": 74, "./messages.json": 77 } + ], + 77: [ + function(require, module, exports) { + module.exports = { + COMPRESSED_TYPE_INVALID: "compressed should be a boolean", + EC_PRIVATE_KEY_TYPE_INVALID: "private key should be a Buffer", + EC_PRIVATE_KEY_LENGTH_INVALID: "private key length is invalid", + EC_PRIVATE_KEY_RANGE_INVALID: "private key range is invalid", + EC_PRIVATE_KEY_TWEAK_ADD_FAIL: + "tweak out of range or resulting private key is invalid", + EC_PRIVATE_KEY_TWEAK_MUL_FAIL: "tweak out of range", + EC_PRIVATE_KEY_EXPORT_DER_FAIL: "couldn't export to DER format", + EC_PRIVATE_KEY_IMPORT_DER_FAIL: "couldn't import from DER format", + EC_PUBLIC_KEYS_TYPE_INVALID: "public keys should be an Array", + EC_PUBLIC_KEYS_LENGTH_INVALID: + "public keys Array should have at least 1 element", + EC_PUBLIC_KEY_TYPE_INVALID: "public key should be a Buffer", + EC_PUBLIC_KEY_LENGTH_INVALID: "public key length is invalid", + EC_PUBLIC_KEY_PARSE_FAIL: + "the public key could not be parsed or is invalid", + EC_PUBLIC_KEY_CREATE_FAIL: "private was invalid, try again", + EC_PUBLIC_KEY_TWEAK_ADD_FAIL: + "tweak out of range or resulting public key is invalid", + EC_PUBLIC_KEY_TWEAK_MUL_FAIL: "tweak out of range", + EC_PUBLIC_KEY_COMBINE_FAIL: + "the sum of the public keys is not valid", + ECDH_FAIL: "scalar was invalid (zero or overflow)", + ECDSA_SIGNATURE_TYPE_INVALID: "signature should be a Buffer", + ECDSA_SIGNATURE_LENGTH_INVALID: "signature length is invalid", + ECDSA_SIGNATURE_PARSE_FAIL: "couldn't parse signature", + ECDSA_SIGNATURE_PARSE_DER_FAIL: "couldn't parse DER signature", + ECDSA_SIGNATURE_SERIALIZE_DER_FAIL: + "couldn't serialize signature to DER format", + ECDSA_SIGN_FAIL: + "nonce generation function failed or private key is invalid", + ECDSA_RECOVER_FAIL: "couldn't recover public key from signature", + MSG32_TYPE_INVALID: "message should be a Buffer", + MSG32_LENGTH_INVALID: "message length is invalid", + OPTIONS_TYPE_INVALID: "options should be an Object", + OPTIONS_DATA_TYPE_INVALID: "options.data should be a Buffer", + OPTIONS_DATA_LENGTH_INVALID: "options.data length is invalid", + OPTIONS_NONCEFN_TYPE_INVALID: + "options.noncefn should be a Function", + RECOVERY_ID_TYPE_INVALID: "recovery should be a Number", + RECOVERY_ID_VALUE_INVALID: + "recovery should have value between -1 and 4", + TWEAK_TYPE_INVALID: "tweak should be a Buffer", + TWEAK_LENGTH_INVALID: "tweak length is invalid" + } + }, + {} + ], + 78: [ + function(require, module, exports) { + var Buffer = require("safe-buffer").Buffer + function Hash(blockSize, finalSize) { + this._block = Buffer.alloc(blockSize) + this._finalSize = finalSize + this._blockSize = blockSize + this._len = 0 + } + Hash.prototype.update = function(data, enc) { + if (typeof data === "string") { + enc = enc || "utf8" + data = Buffer.from(data, enc) + } + var block = this._block + var blockSize = this._blockSize + var length = data.length + var accum = this._len + for (var offset = 0; offset < length; ) { + var assigned = accum % blockSize + var remainder = Math.min(length - offset, blockSize - assigned) + for (var i = 0; i < remainder; i++) { + block[assigned + i] = data[offset + i] + } + accum += remainder + offset += remainder + if (accum % blockSize === 0) { + this._update(block) + } + } + this._len += length + return this + } + Hash.prototype.digest = function(enc) { + var rem = this._len % this._blockSize + this._block[rem] = 128 + this._block.fill(0, rem + 1) + if (rem >= this._finalSize) { + this._update(this._block) + this._block.fill(0) + } + var bits = this._len * 8 + if (bits <= 4294967295) { + this._block.writeUInt32BE(bits, this._blockSize - 4) + } else { + var lowBits = (bits & 4294967295) >>> 0 + var highBits = (bits - lowBits) / 4294967296 + this._block.writeUInt32BE(highBits, this._blockSize - 8) + this._block.writeUInt32BE(lowBits, this._blockSize - 4) + } + this._update(this._block) + var hash = this._hash() + return enc ? hash.toString(enc) : hash + } + Hash.prototype._update = function() { + throw new Error("_update must be implemented by subclass") + } + module.exports = Hash + }, + { "safe-buffer": 71 } + ], + 79: [ + function(require, module, exports) { + var exports = (module.exports = function SHA(algorithm) { + algorithm = algorithm.toLowerCase() + var Algorithm = exports[algorithm] + if (!Algorithm) + throw new Error( + algorithm + " is not supported (we accept pull requests)" + ) + return new Algorithm() + }) + exports.sha = require("./sha") + exports.sha1 = require("./sha1") + exports.sha224 = require("./sha224") + exports.sha256 = require("./sha256") + exports.sha384 = require("./sha384") + exports.sha512 = require("./sha512") + }, + { + "./sha": 80, + "./sha1": 81, + "./sha224": 82, + "./sha256": 83, + "./sha384": 84, + "./sha512": 85 + } + ], + 80: [ + function(require, module, exports) { + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + var K = [1518500249, 1859775393, 2400959708 | 0, 3395469782 | 0] + var W = new Array(80) + function Sha() { + this.init() + this._w = W + Hash.call(this, 64, 56) + } + inherits(Sha, Hash) + Sha.prototype.init = function() { + this._a = 1732584193 + this._b = 4023233417 + this._c = 2562383102 + this._d = 271733878 + this._e = 3285377520 + return this + } + function rotl5(num) { + return (num << 5) | (num >>> 27) + } + function rotl30(num) { + return (num << 30) | (num >>> 2) + } + function ft(s, b, c, d) { + if (s === 0) return (b & c) | (~b & d) + if (s === 2) return (b & c) | (b & d) | (c & d) + return b ^ c ^ d + } + Sha.prototype._update = function(M) { + var W = this._w + var a = this._a | 0 + var b = this._b | 0 + var c = this._c | 0 + var d = this._d | 0 + var e = this._e | 0 + for (var i = 0; i < 16; ++i) W[i] = M.readInt32BE(i * 4) + for (; i < 80; ++i) + W[i] = W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16] + for (var j = 0; j < 80; ++j) { + var s = ~~(j / 20) + var t = (rotl5(a) + ft(s, b, c, d) + e + W[j] + K[s]) | 0 + e = d + d = c + c = rotl30(b) + b = a + a = t + } + this._a = (a + this._a) | 0 + this._b = (b + this._b) | 0 + this._c = (c + this._c) | 0 + this._d = (d + this._d) | 0 + this._e = (e + this._e) | 0 + } + Sha.prototype._hash = function() { + var H = Buffer.allocUnsafe(20) + H.writeInt32BE(this._a | 0, 0) + H.writeInt32BE(this._b | 0, 4) + H.writeInt32BE(this._c | 0, 8) + H.writeInt32BE(this._d | 0, 12) + H.writeInt32BE(this._e | 0, 16) + return H + } + module.exports = Sha + }, + { "./hash": 78, inherits: 66, "safe-buffer": 71 } + ], + 81: [ + function(require, module, exports) { + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + var K = [1518500249, 1859775393, 2400959708 | 0, 3395469782 | 0] + var W = new Array(80) + function Sha1() { + this.init() + this._w = W + Hash.call(this, 64, 56) + } + inherits(Sha1, Hash) + Sha1.prototype.init = function() { + this._a = 1732584193 + this._b = 4023233417 + this._c = 2562383102 + this._d = 271733878 + this._e = 3285377520 + return this + } + function rotl1(num) { + return (num << 1) | (num >>> 31) + } + function rotl5(num) { + return (num << 5) | (num >>> 27) + } + function rotl30(num) { + return (num << 30) | (num >>> 2) + } + function ft(s, b, c, d) { + if (s === 0) return (b & c) | (~b & d) + if (s === 2) return (b & c) | (b & d) | (c & d) + return b ^ c ^ d + } + Sha1.prototype._update = function(M) { + var W = this._w + var a = this._a | 0 + var b = this._b | 0 + var c = this._c | 0 + var d = this._d | 0 + var e = this._e | 0 + for (var i = 0; i < 16; ++i) W[i] = M.readInt32BE(i * 4) + for (; i < 80; ++i) + W[i] = rotl1(W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16]) + for (var j = 0; j < 80; ++j) { + var s = ~~(j / 20) + var t = (rotl5(a) + ft(s, b, c, d) + e + W[j] + K[s]) | 0 + e = d + d = c + c = rotl30(b) + b = a + a = t + } + this._a = (a + this._a) | 0 + this._b = (b + this._b) | 0 + this._c = (c + this._c) | 0 + this._d = (d + this._d) | 0 + this._e = (e + this._e) | 0 + } + Sha1.prototype._hash = function() { + var H = Buffer.allocUnsafe(20) + H.writeInt32BE(this._a | 0, 0) + H.writeInt32BE(this._b | 0, 4) + H.writeInt32BE(this._c | 0, 8) + H.writeInt32BE(this._d | 0, 12) + H.writeInt32BE(this._e | 0, 16) + return H + } + module.exports = Sha1 + }, + { "./hash": 78, inherits: 66, "safe-buffer": 71 } + ], + 82: [ + function(require, module, exports) { + var inherits = require("inherits") + var Sha256 = require("./sha256") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + var W = new Array(64) + function Sha224() { + this.init() + this._w = W + Hash.call(this, 64, 56) + } + inherits(Sha224, Sha256) + Sha224.prototype.init = function() { + this._a = 3238371032 + this._b = 914150663 + this._c = 812702999 + this._d = 4144912697 + this._e = 4290775857 + this._f = 1750603025 + this._g = 1694076839 + this._h = 3204075428 + return this + } + Sha224.prototype._hash = function() { + var H = Buffer.allocUnsafe(28) + H.writeInt32BE(this._a, 0) + H.writeInt32BE(this._b, 4) + H.writeInt32BE(this._c, 8) + H.writeInt32BE(this._d, 12) + H.writeInt32BE(this._e, 16) + H.writeInt32BE(this._f, 20) + H.writeInt32BE(this._g, 24) + return H + } + module.exports = Sha224 + }, + { "./hash": 78, "./sha256": 83, inherits: 66, "safe-buffer": 71 } + ], + 83: [ + function(require, module, exports) { + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + var K = [ + 1116352408, + 1899447441, + 3049323471, + 3921009573, + 961987163, + 1508970993, + 2453635748, + 2870763221, + 3624381080, + 310598401, + 607225278, + 1426881987, + 1925078388, + 2162078206, + 2614888103, + 3248222580, + 3835390401, + 4022224774, + 264347078, + 604807628, + 770255983, + 1249150122, + 1555081692, + 1996064986, + 2554220882, + 2821834349, + 2952996808, + 3210313671, + 3336571891, + 3584528711, + 113926993, + 338241895, + 666307205, + 773529912, + 1294757372, + 1396182291, + 1695183700, + 1986661051, + 2177026350, + 2456956037, + 2730485921, + 2820302411, + 3259730800, + 3345764771, + 3516065817, + 3600352804, + 4094571909, + 275423344, + 430227734, + 506948616, + 659060556, + 883997877, + 958139571, + 1322822218, + 1537002063, + 1747873779, + 1955562222, + 2024104815, + 2227730452, + 2361852424, + 2428436474, + 2756734187, + 3204031479, + 3329325298 + ] + var W = new Array(64) + function Sha256() { + this.init() + this._w = W + Hash.call(this, 64, 56) + } + inherits(Sha256, Hash) + Sha256.prototype.init = function() { + this._a = 1779033703 + this._b = 3144134277 + this._c = 1013904242 + this._d = 2773480762 + this._e = 1359893119 + this._f = 2600822924 + this._g = 528734635 + this._h = 1541459225 + return this + } + function ch(x, y, z) { + return z ^ (x & (y ^ z)) + } + function maj(x, y, z) { + return (x & y) | (z & (x | y)) + } + function sigma0(x) { + return ( + ((x >>> 2) | (x << 30)) ^ + ((x >>> 13) | (x << 19)) ^ + ((x >>> 22) | (x << 10)) + ) + } + function sigma1(x) { + return ( + ((x >>> 6) | (x << 26)) ^ + ((x >>> 11) | (x << 21)) ^ + ((x >>> 25) | (x << 7)) + ) + } + function gamma0(x) { + return ( + ((x >>> 7) | (x << 25)) ^ ((x >>> 18) | (x << 14)) ^ (x >>> 3) + ) + } + function gamma1(x) { + return ( + ((x >>> 17) | (x << 15)) ^ ((x >>> 19) | (x << 13)) ^ (x >>> 10) + ) + } + Sha256.prototype._update = function(M) { + var W = this._w + var a = this._a | 0 + var b = this._b | 0 + var c = this._c | 0 + var d = this._d | 0 + var e = this._e | 0 + var f = this._f | 0 + var g = this._g | 0 + var h = this._h | 0 + for (var i = 0; i < 16; ++i) W[i] = M.readInt32BE(i * 4) + for (; i < 64; ++i) + W[i] = + (gamma1(W[i - 2]) + W[i - 7] + gamma0(W[i - 15]) + W[i - 16]) | + 0 + for (var j = 0; j < 64; ++j) { + var T1 = (h + sigma1(e) + ch(e, f, g) + K[j] + W[j]) | 0 + var T2 = (sigma0(a) + maj(a, b, c)) | 0 + h = g + g = f + f = e + e = (d + T1) | 0 + d = c + c = b + b = a + a = (T1 + T2) | 0 + } + this._a = (a + this._a) | 0 + this._b = (b + this._b) | 0 + this._c = (c + this._c) | 0 + this._d = (d + this._d) | 0 + this._e = (e + this._e) | 0 + this._f = (f + this._f) | 0 + this._g = (g + this._g) | 0 + this._h = (h + this._h) | 0 + } + Sha256.prototype._hash = function() { + var H = Buffer.allocUnsafe(32) + H.writeInt32BE(this._a, 0) + H.writeInt32BE(this._b, 4) + H.writeInt32BE(this._c, 8) + H.writeInt32BE(this._d, 12) + H.writeInt32BE(this._e, 16) + H.writeInt32BE(this._f, 20) + H.writeInt32BE(this._g, 24) + H.writeInt32BE(this._h, 28) + return H + } + module.exports = Sha256 + }, + { "./hash": 78, inherits: 66, "safe-buffer": 71 } + ], + 84: [ + function(require, module, exports) { + var inherits = require("inherits") + var SHA512 = require("./sha512") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + var W = new Array(160) + function Sha384() { + this.init() + this._w = W + Hash.call(this, 128, 112) + } + inherits(Sha384, SHA512) + Sha384.prototype.init = function() { + this._ah = 3418070365 + this._bh = 1654270250 + this._ch = 2438529370 + this._dh = 355462360 + this._eh = 1731405415 + this._fh = 2394180231 + this._gh = 3675008525 + this._hh = 1203062813 + this._al = 3238371032 + this._bl = 914150663 + this._cl = 812702999 + this._dl = 4144912697 + this._el = 4290775857 + this._fl = 1750603025 + this._gl = 1694076839 + this._hl = 3204075428 + return this + } + Sha384.prototype._hash = function() { + var H = Buffer.allocUnsafe(48) + function writeInt64BE(h, l, offset) { + H.writeInt32BE(h, offset) + H.writeInt32BE(l, offset + 4) + } + writeInt64BE(this._ah, this._al, 0) + writeInt64BE(this._bh, this._bl, 8) + writeInt64BE(this._ch, this._cl, 16) + writeInt64BE(this._dh, this._dl, 24) + writeInt64BE(this._eh, this._el, 32) + writeInt64BE(this._fh, this._fl, 40) + return H + } + module.exports = Sha384 + }, + { "./hash": 78, "./sha512": 85, inherits: 66, "safe-buffer": 71 } + ], + 85: [ + function(require, module, exports) { + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + var K = [ + 1116352408, + 3609767458, + 1899447441, + 602891725, + 3049323471, + 3964484399, + 3921009573, + 2173295548, + 961987163, + 4081628472, + 1508970993, + 3053834265, + 2453635748, + 2937671579, + 2870763221, + 3664609560, + 3624381080, + 2734883394, + 310598401, + 1164996542, + 607225278, + 1323610764, + 1426881987, + 3590304994, + 1925078388, + 4068182383, + 2162078206, + 991336113, + 2614888103, + 633803317, + 3248222580, + 3479774868, + 3835390401, + 2666613458, + 4022224774, + 944711139, + 264347078, + 2341262773, + 604807628, + 2007800933, + 770255983, + 1495990901, + 1249150122, + 1856431235, + 1555081692, + 3175218132, + 1996064986, + 2198950837, + 2554220882, + 3999719339, + 2821834349, + 766784016, + 2952996808, + 2566594879, + 3210313671, + 3203337956, + 3336571891, + 1034457026, + 3584528711, + 2466948901, + 113926993, + 3758326383, + 338241895, + 168717936, + 666307205, + 1188179964, + 773529912, + 1546045734, + 1294757372, + 1522805485, + 1396182291, + 2643833823, + 1695183700, + 2343527390, + 1986661051, + 1014477480, + 2177026350, + 1206759142, + 2456956037, + 344077627, + 2730485921, + 1290863460, + 2820302411, + 3158454273, + 3259730800, + 3505952657, + 3345764771, + 106217008, + 3516065817, + 3606008344, + 3600352804, + 1432725776, + 4094571909, + 1467031594, + 275423344, + 851169720, + 430227734, + 3100823752, + 506948616, + 1363258195, + 659060556, + 3750685593, + 883997877, + 3785050280, + 958139571, + 3318307427, + 1322822218, + 3812723403, + 1537002063, + 2003034995, + 1747873779, + 3602036899, + 1955562222, + 1575990012, + 2024104815, + 1125592928, + 2227730452, + 2716904306, + 2361852424, + 442776044, + 2428436474, + 593698344, + 2756734187, + 3733110249, + 3204031479, + 2999351573, + 3329325298, + 3815920427, + 3391569614, + 3928383900, + 3515267271, + 566280711, + 3940187606, + 3454069534, + 4118630271, + 4000239992, + 116418474, + 1914138554, + 174292421, + 2731055270, + 289380356, + 3203993006, + 460393269, + 320620315, + 685471733, + 587496836, + 852142971, + 1086792851, + 1017036298, + 365543100, + 1126000580, + 2618297676, + 1288033470, + 3409855158, + 1501505948, + 4234509866, + 1607167915, + 987167468, + 1816402316, + 1246189591 + ] + var W = new Array(160) + function Sha512() { + this.init() + this._w = W + Hash.call(this, 128, 112) + } + inherits(Sha512, Hash) + Sha512.prototype.init = function() { + this._ah = 1779033703 + this._bh = 3144134277 + this._ch = 1013904242 + this._dh = 2773480762 + this._eh = 1359893119 + this._fh = 2600822924 + this._gh = 528734635 + this._hh = 1541459225 + this._al = 4089235720 + this._bl = 2227873595 + this._cl = 4271175723 + this._dl = 1595750129 + this._el = 2917565137 + this._fl = 725511199 + this._gl = 4215389547 + this._hl = 327033209 + return this + } + function Ch(x, y, z) { + return z ^ (x & (y ^ z)) + } + function maj(x, y, z) { + return (x & y) | (z & (x | y)) + } + function sigma0(x, xl) { + return ( + ((x >>> 28) | (xl << 4)) ^ + ((xl >>> 2) | (x << 30)) ^ + ((xl >>> 7) | (x << 25)) + ) + } + function sigma1(x, xl) { + return ( + ((x >>> 14) | (xl << 18)) ^ + ((x >>> 18) | (xl << 14)) ^ + ((xl >>> 9) | (x << 23)) + ) + } + function Gamma0(x, xl) { + return ( + ((x >>> 1) | (xl << 31)) ^ ((x >>> 8) | (xl << 24)) ^ (x >>> 7) + ) + } + function Gamma0l(x, xl) { + return ( + ((x >>> 1) | (xl << 31)) ^ + ((x >>> 8) | (xl << 24)) ^ + ((x >>> 7) | (xl << 25)) + ) + } + function Gamma1(x, xl) { + return ( + ((x >>> 19) | (xl << 13)) ^ ((xl >>> 29) | (x << 3)) ^ (x >>> 6) + ) + } + function Gamma1l(x, xl) { + return ( + ((x >>> 19) | (xl << 13)) ^ + ((xl >>> 29) | (x << 3)) ^ + ((x >>> 6) | (xl << 26)) + ) + } + function getCarry(a, b) { + return a >>> 0 < b >>> 0 ? 1 : 0 + } + Sha512.prototype._update = function(M) { + var W = this._w + var ah = this._ah | 0 + var bh = this._bh | 0 + var ch = this._ch | 0 + var dh = this._dh | 0 + var eh = this._eh | 0 + var fh = this._fh | 0 + var gh = this._gh | 0 + var hh = this._hh | 0 + var al = this._al | 0 + var bl = this._bl | 0 + var cl = this._cl | 0 + var dl = this._dl | 0 + var el = this._el | 0 + var fl = this._fl | 0 + var gl = this._gl | 0 + var hl = this._hl | 0 + for (var i = 0; i < 32; i += 2) { + W[i] = M.readInt32BE(i * 4) + W[i + 1] = M.readInt32BE(i * 4 + 4) + } + for (; i < 160; i += 2) { + var xh = W[i - 15 * 2] + var xl = W[i - 15 * 2 + 1] + var gamma0 = Gamma0(xh, xl) + var gamma0l = Gamma0l(xl, xh) + xh = W[i - 2 * 2] + xl = W[i - 2 * 2 + 1] + var gamma1 = Gamma1(xh, xl) + var gamma1l = Gamma1l(xl, xh) + var Wi7h = W[i - 7 * 2] + var Wi7l = W[i - 7 * 2 + 1] + var Wi16h = W[i - 16 * 2] + var Wi16l = W[i - 16 * 2 + 1] + var Wil = (gamma0l + Wi7l) | 0 + var Wih = (gamma0 + Wi7h + getCarry(Wil, gamma0l)) | 0 + Wil = (Wil + gamma1l) | 0 + Wih = (Wih + gamma1 + getCarry(Wil, gamma1l)) | 0 + Wil = (Wil + Wi16l) | 0 + Wih = (Wih + Wi16h + getCarry(Wil, Wi16l)) | 0 + W[i] = Wih + W[i + 1] = Wil + } + for (var j = 0; j < 160; j += 2) { + Wih = W[j] + Wil = W[j + 1] + var majh = maj(ah, bh, ch) + var majl = maj(al, bl, cl) + var sigma0h = sigma0(ah, al) + var sigma0l = sigma0(al, ah) + var sigma1h = sigma1(eh, el) + var sigma1l = sigma1(el, eh) + var Kih = K[j] + var Kil = K[j + 1] + var chh = Ch(eh, fh, gh) + var chl = Ch(el, fl, gl) + var t1l = (hl + sigma1l) | 0 + var t1h = (hh + sigma1h + getCarry(t1l, hl)) | 0 + t1l = (t1l + chl) | 0 + t1h = (t1h + chh + getCarry(t1l, chl)) | 0 + t1l = (t1l + Kil) | 0 + t1h = (t1h + Kih + getCarry(t1l, Kil)) | 0 + t1l = (t1l + Wil) | 0 + t1h = (t1h + Wih + getCarry(t1l, Wil)) | 0 + var t2l = (sigma0l + majl) | 0 + var t2h = (sigma0h + majh + getCarry(t2l, sigma0l)) | 0 + hh = gh + hl = gl + gh = fh + gl = fl + fh = eh + fl = el + el = (dl + t1l) | 0 + eh = (dh + t1h + getCarry(el, dl)) | 0 + dh = ch + dl = cl + ch = bh + cl = bl + bh = ah + bl = al + al = (t1l + t2l) | 0 + ah = (t1h + t2h + getCarry(al, t1l)) | 0 + } + this._al = (this._al + al) | 0 + this._bl = (this._bl + bl) | 0 + this._cl = (this._cl + cl) | 0 + this._dl = (this._dl + dl) | 0 + this._el = (this._el + el) | 0 + this._fl = (this._fl + fl) | 0 + this._gl = (this._gl + gl) | 0 + this._hl = (this._hl + hl) | 0 + this._ah = (this._ah + ah + getCarry(this._al, al)) | 0 + this._bh = (this._bh + bh + getCarry(this._bl, bl)) | 0 + this._ch = (this._ch + ch + getCarry(this._cl, cl)) | 0 + this._dh = (this._dh + dh + getCarry(this._dl, dl)) | 0 + this._eh = (this._eh + eh + getCarry(this._el, el)) | 0 + this._fh = (this._fh + fh + getCarry(this._fl, fl)) | 0 + this._gh = (this._gh + gh + getCarry(this._gl, gl)) | 0 + this._hh = (this._hh + hh + getCarry(this._hl, hl)) | 0 + } + Sha512.prototype._hash = function() { + var H = Buffer.allocUnsafe(64) + function writeInt64BE(h, l, offset) { + H.writeInt32BE(h, offset) + H.writeInt32BE(l, offset + 4) + } + writeInt64BE(this._ah, this._al, 0) + writeInt64BE(this._bh, this._bl, 8) + writeInt64BE(this._ch, this._cl, 16) + writeInt64BE(this._dh, this._dl, 24) + writeInt64BE(this._eh, this._el, 32) + writeInt64BE(this._fh, this._fl, 40) + writeInt64BE(this._gh, this._gl, 48) + writeInt64BE(this._hh, this._hl, 56) + return H + } + module.exports = Sha512 + }, + { "./hash": 78, inherits: 66, "safe-buffer": 71 } + ] + }, + {}, + [72] + )(72) +}) diff --git a/app/src/helpers/wallet.js b/app/src/helpers/wallet.js index 267571ed54..bb46bdb5a0 100644 --- a/app/src/helpers/wallet.js +++ b/app/src/helpers/wallet.js @@ -25,18 +25,21 @@ export function generateWalletFromSeed(mnemonic) { } } -export function generateWallet(randomByteFunc) { - console.log(randomByteFunc) - const randomBytes = Buffer.from(randomByteFunc(32), `base64`) +export function generateSeed(randomBytesFunc) { + const randomBytes = Buffer.from(randomBytesFunc(32), `hex`) if (randomBytes.length !== 32) throw Error(`Entropy has incorrect length`) const mnemonic = bip39.entropyToMnemonic(randomBytes.toString(`hex`)) if (mnemonic.split(` `).length !== 24) throw Error(`Mnemonic needs to have a length of 24 words.`) - return generateWalletFromSeed(mnemonic) + return mnemonic } +export function generateWallet(randomBytesFunc) { + const mnemonic = generateSeed(randomBytesFunc) + return generateWalletFromSeed(mnemonic) +} /* vectors pub 52FDFC072182654F163F5F0F9A621D729566C74D10037C4D7BBB0407D1E2C64981 acc cosmos1v3z3242hq7xrms35gu722v4nt8uux8nvug5gye diff --git a/app/src/renderer/components/common/TmSessionSignIn.vue b/app/src/renderer/components/common/TmSessionSignIn.vue index 4db465c48b..515879e8a4 100644 --- a/app/src/renderer/components/common/TmSessionSignIn.vue +++ b/app/src/renderer/components/common/TmSessionSignIn.vue @@ -51,20 +51,7 @@ @@ -94,7 +81,7 @@ export default { } }), computed: { - ...mapGetters([`user`, `mockedConnector`, `lastHeader`, `connected`]), + ...mapGetters([`user`, `mockedConnector`, `lastHeader`]), accounts() { let accounts = this.user.accounts accounts = accounts.filter(({ name }) => name !== `trunk`) @@ -117,11 +104,12 @@ export default { async onSubmit() { this.$v.$touch() if (this.$v.$error) return - try { - await this.$store.dispatch(`testLogin`, { - password: this.fields.signInPassword, - account: this.fields.signInName - }) + // try { + let passwrodCorrect = await this.$store.dispatch(`testLogin`, { + password: this.fields.signInPassword, + account: this.fields.signInName + }) + if (passwrodCorrect) { this.$store.dispatch(`signIn`, { password: this.fields.signInPassword, account: this.fields.signInName @@ -129,12 +117,14 @@ export default { localStorage.setItem(`prevAccountKey`, this.fields.signInName) this.$router.push(`/`) this.$store.commit(`setModalSession`, false) - } catch (error) { + } else { this.$store.commit(`notifyError`, { title: `Signing In Failed`, body: error.message }) } + // } catch (error) { + // } }, setDefaultAccount() { let prevAccountKey = localStorage.getItem(`prevAccountKey`) diff --git a/app/src/renderer/components/common/TmSessionSignUp.vue b/app/src/renderer/components/common/TmSessionSignUp.vue index bae2f5a88c..5e50a7b951 100644 --- a/app/src/renderer/components/common/TmSessionSignUp.vue +++ b/app/src/renderer/components/common/TmSessionSignUp.vue @@ -128,21 +128,7 @@ @@ -178,9 +164,6 @@ export default { signUpWarning: false } }), - computed: { - ...mapGetters([`connected`]) - }, mounted() { this.$el.querySelector(`#sign-up-name`).focus() this.$store.dispatch(`createSeed`).then(seedPhrase => { @@ -200,26 +183,24 @@ export default { $v.$touch() if ($v.$error) return try { - let key = await $store.dispatch(`createKey`, { + await $store.dispatch(`createKey`, { seedPhrase: fields.signUpSeed, password: fields.signUpPassword, name: fields.signUpName }) - if (key) { - $store.dispatch(`setErrorCollection`, { - account: fields.signUpName, - optin: fields.errorCollection - }) - $store.commit(`setModalSession`, false) - $store.commit(`notify`, { - title: `Signed Up`, - body: `Your account has been created.` - }) - $store.dispatch(`signIn`, { - password: fields.signUpPassword, - account: fields.signUpName - }) - } + $store.dispatch(`setErrorCollection`, { + account: fields.signUpName, + optin: fields.errorCollection + }) + $store.commit(`setModalSession`, false) + $store.commit(`notify`, { + title: `Signed Up`, + body: `Your account has been created.` + }) + $store.dispatch(`signIn`, { + password: fields.signUpPassword, + account: fields.signUpName + }) } catch (error) { $store.commit(`notifyError`, { title: `Couldn't create account`, diff --git a/app/src/renderer/main.js b/app/src/renderer/main.js index 760a560267..89e0896f3d 100644 --- a/app/src/renderer/main.js +++ b/app/src/renderer/main.js @@ -39,27 +39,27 @@ window.addEventListener(`error`, function(event) { Sentry.captureException(event.reason) }) -Vue.config.errorHandler = (error, vm, info) => { - console.error(`An error has occurred: ${error} +// Vue.config.errorHandler = (error, vm, info) => { +// console.error(`An error has occurred: ${error} -Guru Meditation #${info}`) +// Guru Meditation #${info}`) - Sentry.captureException(error) +// Sentry.captureException(error) - if (store.state.devMode) { - throw error - } -} +// if (store.state.devMode) { +// throw error +// } +// } -Vue.config.warnHandler = (msg, vm, trace) => { - console.warn(`A warning has occurred: ${msg} +// Vue.config.warnHandler = (msg, vm, trace) => { +// console.warn(`A warning has occurred: ${msg} -Guru Meditation #${trace}`) +// Guru Meditation #${trace}`) - if (store.state.devMode) { - throw new Error(msg) - } -} +// if (store.state.devMode) { +// throw new Error(msg) +// } +// } // Vue.use(Electron) Vue.use(Router) @@ -133,13 +133,13 @@ async function main() { // ipcRenderer.send(`booted`) - while (true) { - try { - await axios(`https://localhost:9070/keys`) - break - } catch (err) {} - await sleep(1000) - } + // while (true) { + // try { + // await axios(`https://localhost:9070/keys`) + // break + // } catch (err) {} + // await sleep(1000) + // } store.dispatch(`showInitialScreen`) return new Vue({ diff --git a/app/src/renderer/vuex/modules/user.js b/app/src/renderer/vuex/modules/user.js index f17fa1207d..efb4fc3f17 100644 --- a/app/src/renderer/vuex/modules/user.js +++ b/app/src/renderer/vuex/modules/user.js @@ -3,6 +3,13 @@ import * as Sentry from "@sentry/browser" import enableGoogleAnalytics from "../../google-analytics.js" // const config = remote.getGlobal(`config`) const config = require(`../../../config.json`) +import { + loadKeyNames, + importKey, + testPassword +} from "../../../helpers/keystore.js" +import { generateSeed } from "../../../helpers/wallet.js" +import CryptoJS from "crypto-js" export default ({ node }) => { const ERROR_COLLECTION_KEY = `voyager_error_collection` @@ -63,7 +70,7 @@ export default ({ node }) => { async loadAccounts({ commit, state }) { state.loading = true try { - let keys = await node.keys.values() + let keys = (await loadKeyNames()) || [] commit(`setAccounts`, keys) } catch (error) { Sentry.captureException(error) @@ -77,26 +84,13 @@ export default ({ node }) => { } }, async testLogin(state, { password, account }) { - try { - return await node.keys.set(account, { - name: account, - new_password: password, - old_password: password - }) - } catch (error) { - throw Error(`Incorrect passphrase`) - } + return await testPassword(account, password) }, createSeed() { - // generate seed phrase - return node.keys.seed() + return generateSeed(x => CryptoJS.lib.WordArray.random(x).toString()) }, async createKey({ dispatch }, { seedPhrase, password, name }) { - let { address } = await node.keys.add({ - name, - password, - seed: seedPhrase - }) + let { address } = await importKey(name, password, seedPhrase) dispatch(`initializeWallet`, address) return address }, @@ -164,8 +158,6 @@ export default ({ node }) => { Sentry.init({}) window.analytics = null } - - ipcRenderer.send(`error-collection`, state.errorCollection) } } diff --git a/app/src/renderer/vuex/modules/wallet.js b/app/src/renderer/vuex/modules/wallet.js index c652fce391..3a5cd13d8b 100644 --- a/app/src/renderer/vuex/modules/wallet.js +++ b/app/src/renderer/vuex/modules/wallet.js @@ -1,8 +1,8 @@ import * as Sentry from "@sentry/browser" -import fs from "fs-extra" -import { join } from "path" +// import fs from "fs-extra" +// import { join } from "path" // import { remote } from "electron" -import { sleep } from "scripts/common.js" +// import { sleep } from "scripts/common.js" // const root = remote.getGlobal(`root`) export default ({ node }) => { diff --git a/tasks/runner.js b/tasks/runner.js index 00a96956d4..04c5335156 100644 --- a/tasks/runner.js +++ b/tasks/runner.js @@ -33,13 +33,13 @@ function run(command, color, name, env) { return child } -function startRendererServer() { +module.exports = function startRendererServer() { return new Promise(resolve => { console.log(`${YELLOW}Starting webpack-dev-server...\n${END}`) let child = run( `webpack-dev-server --hot --colors --config webpack.renderer.config.js --port ${ config.wds_port - } --content-base app/dist`, + } --content-base app/dist --https`, YELLOW, `webpack` ) @@ -52,49 +52,49 @@ function startRendererServer() { }) } -module.exports = async function(networkPath, extendedEnv = {}) { - if (!fs.existsSync(networkPath)) { - console.error( - `The network configuration for the network you want to connect to doesn't exist. Have you run \`yarn build:testnets\` to download the latest configurations?` - ) - process.exit() - } +// module.exports = async function(networkPath, extendedEnv = {}) { +// if (!fs.existsSync(networkPath)) { +// console.error( +// `The network configuration for the network you want to connect to doesn't exist. Have you run \`yarn build:testnets\` to download the latest configurations?` +// ) +// process.exit() +// } - let renderProcess = await startRendererServer() +// let renderProcess = await startRendererServer() - console.log( - `${BLUE}Starting electron...\n (network path: ${networkPath})\n${END}` - ) - const packageJSON = require(`../package.json`) - const voyagerVersion = packageJSON.version - const gaiaVersion = fs - .readFileSync(path.join(networkPath, `gaiaversion.txt`)) - .toString() - .split(`-`)[0] - let env = Object.assign( - {}, - { - NODE_ENV: `development`, - COSMOS_NETWORK: networkPath, - GAIA_VERSION: gaiaVersion, - VOYAGER_VERSION: voyagerVersion - }, - extendedEnv, - process.env - ) - let mainProcess = run( - `electron app/src/main/index.dev.js`, - BLUE, - `electron`, - env - ) +// console.log( +// `${BLUE}Starting electron...\n (network path: ${networkPath})\n${END}` +// ) +// const packageJSON = require(`../package.json`) +// const voyagerVersion = packageJSON.version +// const gaiaVersion = fs +// .readFileSync(path.join(networkPath, `gaiaversion.txt`)) +// .toString() +// .split(`-`)[0] +// let env = Object.assign( +// {}, +// { +// NODE_ENV: `development`, +// COSMOS_NETWORK: networkPath, +// GAIA_VERSION: gaiaVersion, +// VOYAGER_VERSION: voyagerVersion +// }, +// extendedEnv, +// process.env +// ) +// let mainProcess = run( +// `electron app/src/main/index.dev.js`, +// BLUE, +// `electron`, +// env +// ) - // terminate running processes on exit of main process - mainProcess.on(`exit`, async () => { - await cleanExitChild(renderProcess) - // webpack-dev-server spins up an own process we have no access to. so we kill all processes on our port - process.exit(0) - }) +// // terminate running processes on exit of main process +// mainProcess.on(`exit`, async () => { +// await cleanExitChild(renderProcess) +// // webpack-dev-server spins up an own process we have no access to. so we kill all processes on our port +// process.exit(0) +// }) - return [renderProcess, mainProcess] -} +// return [renderProcess, mainProcess] +// } diff --git a/tasks/testnet.js b/tasks/testnet.js index 59269026b0..c39bbc1712 100644 --- a/tasks/testnet.js +++ b/tasks/testnet.js @@ -47,13 +47,13 @@ async function main() { } // run Voyager in a development environment - let children = await runner(networkPath, extendedEnv) + let child = await runner(networkPath, extendedEnv) // kill all development processes if master process fails process.on(`exit`, () => { - children.forEach(child => child.kill(`SIGKILL`)) + child.kill(`SIGKILL`) }) - children.forEach(child => child.on(`exit`, () => process.exit())) + child.on(`exit`, () => process.exit()) } main().catch(function(error) { diff --git a/webpack.renderer.config.js b/webpack.renderer.config.js index d69c222431..135f2c088b 100644 --- a/webpack.renderer.config.js +++ b/webpack.renderer.config.js @@ -105,7 +105,7 @@ let rendererConfig = { ], output: { filename: `[name].js`, - libraryTarget: `commonjs2`, + // libraryTarget: `commonjs2`, path: path.join(__dirname, `app/dist`) }, resolve: { @@ -125,8 +125,8 @@ let rendererConfig = { path.join(__dirname, `app/node_modules`), path.join(__dirname, `node_modules`) ] - }, - target: `electron-renderer` + } + // target: `electron-renderer` } /** From 54b7fb5ba458cb87d21a2c76640cbf6cda86d5ed Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Thu, 3 Jan 2019 14:40:02 +0100 Subject: [PATCH 003/125] added scripts for backend --- package.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index fc3484648c..ff187e8bb3 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,12 @@ "precommit": "pretty-quick --staged", "prepush": "bash ./tasks/changelog-changed-check.sh && yarn lint", "postcheckout": "yarn", - "watch": "tasks/watch.sh" + "watch": "tasks/watch.sh", + "fullnode": "/Users/fabo/Development/voyager/builds/Gaia/darwin_amd64/gaiad start --home './builds/testnets/local-testnet/node_home_1'", + "stargate": "/Users/fabo/Development/voyager/builds/Gaia/darwin_amd64/gaiacli rest-server --laddr 'tcp://localhost:9070' --home './builds/testnets/local-testnet/cli_home' --node 'http://localhost:26657' --chain-id 'local-testnet' --trust-node true", + "frontend": "webpack-dev-server --hot --colors --config webpack.renderer.config.js --port 9080 --content-base app/dist --https", + "backend": "yarn fullnode & yarn stargate", + "backend:fixed-https": "yarn fullnode & yarn stargate --ssl-certfile 'ssl/server_dev.crt' --ssl-keyfile 'ssl/server_dev.key'" }, "devDependencies": { "@nodeguy/cli": "0.2.2", From 1b255c171a9fdbfe6c32ce00c05c26bde5e3c754 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Fri, 4 Jan 2019 18:14:23 +0100 Subject: [PATCH 004/125] fixed sign in --- app/src/helpers/keystore.js | 5 ++--- app/src/renderer/vuex/modules/user.js | 7 +++++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/app/src/helpers/keystore.js b/app/src/helpers/keystore.js index df1593eeeb..7cc23077bb 100644 --- a/app/src/helpers/keystore.js +++ b/app/src/helpers/keystore.js @@ -23,7 +23,7 @@ async function storeKey(wallet, name, password) { export async function testPassword(name, password) { const key = localStorage.getItem(`key_` + name) try { - const bytes = AES.decrypt(key, password) + AES.decrypt(key, password) return true } catch (err) { return false @@ -32,8 +32,7 @@ export async function testPassword(name, password) { // return JSON.parse(originalText); } export async function addKey(name, password, wallet) { - let keysString = (await loadKeyNames()) || `[]` - let keys = JSON.parse(keysString) + let keys = await loadKeyNames() keys.push({ name, diff --git a/app/src/renderer/vuex/modules/user.js b/app/src/renderer/vuex/modules/user.js index efb4fc3f17..7093b11e9a 100644 --- a/app/src/renderer/vuex/modules/user.js +++ b/app/src/renderer/vuex/modules/user.js @@ -70,7 +70,7 @@ export default ({ node }) => { async loadAccounts({ commit, state }) { state.loading = true try { - let keys = (await loadKeyNames()) || [] + let keys = await loadKeyNames() commit(`setAccounts`, keys) } catch (error) { Sentry.captureException(error) @@ -102,7 +102,10 @@ export default ({ node }) => { state.account = account state.signedIn = true - let { address } = await node.keys.get(account) + let keys = await loadKeyNames() + debugger + let { address } = keys.find(({ name }) => name === account) + state.address = address dispatch(`loadPersistedState`) From 24c306329b5fbb6c91723e0c058e29a68afff786 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sat, 5 Jan 2019 17:09:02 +0100 Subject: [PATCH 005/125] fied missing tmdataloading on tabparameters --- app/src/renderer/components/staking/TabParameters.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/renderer/components/staking/TabParameters.vue b/app/src/renderer/components/staking/TabParameters.vue index 33ca1a64e8..3734328b0c 100644 --- a/app/src/renderer/components/staking/TabParameters.vue +++ b/app/src/renderer/components/staking/TabParameters.vue @@ -129,6 +129,7 @@ import TmPage from "common/TmPage" import TmPart from "common/TmPart" import ToolBar from "common/ToolBar" import TmDataConnecting from "common/TmDataConnecting" +import TmDataLoading from "common/TmDataLoading" export default { name: `tab-staking-parameters`, components: { @@ -137,7 +138,8 @@ export default { TmPage, TmPart, ToolBar, - TmDataConnecting + TmDataConnecting, + TmDataLoading }, data: () => ({ paramsTooltips: { From 605ab524b7d4d046ded894c818053027c34bef27 Mon Sep 17 00:00:00 2001 From: Fabian Date: Sat, 5 Jan 2019 17:11:18 +0100 Subject: [PATCH 006/125] update to latest tendermint lib --- app/src/helpers/tendermint.min.js | 99524 ++++++++++++++++++ app/src/renderer/connectors/rpcWrapper.js | 6 +- app/src/renderer/vuex/modules/blockchain.js | 23 +- app/src/renderer/vuex/modules/connection.js | 36 +- app/src/renderer/vuex/modules/wallet.js | 13 +- package.json | 2 +- yarn.lock | 104 +- 7 files changed, 99622 insertions(+), 86 deletions(-) create mode 100644 app/src/helpers/tendermint.min.js diff --git a/app/src/helpers/tendermint.min.js b/app/src/helpers/tendermint.min.js new file mode 100644 index 0000000000..bf19705fcd --- /dev/null +++ b/app/src/helpers/tendermint.min.js @@ -0,0 +1,99524 @@ +;(function(f) { + if (typeof exports === "object" && typeof module !== "undefined") { + module.exports = f() + } else if (typeof define === "function" && define.amd) { + define([], f) + } else { + var g + if (typeof window !== "undefined") { + g = window + } else if (typeof global !== "undefined") { + g = global + } else if (typeof self !== "undefined") { + g = self + } else { + g = this + } + g.tendermint = f() + } +})(function() { + var define, module, exports + return (function() { + function r(e, n, t) { + function o(i, f) { + if (!n[i]) { + if (!e[i]) { + var c = "function" == typeof require && require + if (!f && c) return c(i, !0) + if (u) return u(i, !0) + var a = new Error("Cannot find module '" + i + "'") + throw ((a.code = "MODULE_NOT_FOUND"), a) + } + var p = (n[i] = { exports: {} }) + e[i][0].call( + p.exports, + function(r) { + var n = e[i][1][r] + return o(n || r) + }, + p, + p.exports, + r, + e, + n, + t + ) + } + return n[i].exports + } + for ( + var u = "function" == typeof require && require, i = 0; + i < t.length; + i++ + ) + o(t[i]) + return o + } + return r + })()( + { + 1: [function(require, module, exports) {}, {}], + 2: [ + function(require, module, exports) { + var asn1 = exports + + asn1.bignum = require("bn.js") + + asn1.define = require("./asn1/api").define + asn1.base = require("./asn1/base") + asn1.constants = require("./asn1/constants") + asn1.decoders = require("./asn1/decoders") + asn1.encoders = require("./asn1/encoders") + }, + { + "./asn1/api": 3, + "./asn1/base": 5, + "./asn1/constants": 9, + "./asn1/decoders": 11, + "./asn1/encoders": 14, + "bn.js": 17 + } + ], + 3: [ + function(require, module, exports) { + var asn1 = require("../asn1") + var inherits = require("inherits") + + var api = exports + + api.define = function define(name, body) { + return new Entity(name, body) + } + + function Entity(name, body) { + this.name = name + this.body = body + + this.decoders = {} + this.encoders = {} + } + + Entity.prototype._createNamed = function createNamed(base) { + var named + try { + named = require("vm").runInThisContext( + "(function " + + this.name + + "(entity) {\n" + + " this._initNamed(entity);\n" + + "})" + ) + } catch (e) { + named = function(entity) { + this._initNamed(entity) + } + } + inherits(named, base) + named.prototype._initNamed = function initnamed(entity) { + base.call(this, entity) + } + + return new named(this) + } + + Entity.prototype._getDecoder = function _getDecoder(enc) { + enc = enc || "der" + // Lazily create decoder + if (!this.decoders.hasOwnProperty(enc)) + this.decoders[enc] = this._createNamed(asn1.decoders[enc]) + return this.decoders[enc] + } + + Entity.prototype.decode = function decode(data, enc, options) { + return this._getDecoder(enc).decode(data, options) + } + + Entity.prototype._getEncoder = function _getEncoder(enc) { + enc = enc || "der" + // Lazily create encoder + if (!this.encoders.hasOwnProperty(enc)) + this.encoders[enc] = this._createNamed(asn1.encoders[enc]) + return this.encoders[enc] + } + + Entity.prototype.encode = function encode( + data, + enc, + /* internal */ reporter + ) { + return this._getEncoder(enc).encode(data, reporter) + } + }, + { "../asn1": 2, inherits: 100, vm: 165 } + ], + 4: [ + function(require, module, exports) { + var inherits = require("inherits") + var Reporter = require("../base").Reporter + var Buffer = require("buffer").Buffer + + function DecoderBuffer(base, options) { + Reporter.call(this, options) + if (!Buffer.isBuffer(base)) { + this.error("Input not Buffer") + return + } + + this.base = base + this.offset = 0 + this.length = base.length + } + inherits(DecoderBuffer, Reporter) + exports.DecoderBuffer = DecoderBuffer + + DecoderBuffer.prototype.save = function save() { + return { + offset: this.offset, + reporter: Reporter.prototype.save.call(this) + } + } + + DecoderBuffer.prototype.restore = function restore(save) { + // Return skipped data + var res = new DecoderBuffer(this.base) + res.offset = save.offset + res.length = this.offset + + this.offset = save.offset + Reporter.prototype.restore.call(this, save.reporter) + + return res + } + + DecoderBuffer.prototype.isEmpty = function isEmpty() { + return this.offset === this.length + } + + DecoderBuffer.prototype.readUInt8 = function readUInt8(fail) { + if (this.offset + 1 <= this.length) + return this.base.readUInt8(this.offset++, true) + else return this.error(fail || "DecoderBuffer overrun") + } + + DecoderBuffer.prototype.skip = function skip(bytes, fail) { + if (!(this.offset + bytes <= this.length)) + return this.error(fail || "DecoderBuffer overrun") + + var res = new DecoderBuffer(this.base) + + // Share reporter state + res._reporterState = this._reporterState + + res.offset = this.offset + res.length = this.offset + bytes + this.offset += bytes + return res + } + + DecoderBuffer.prototype.raw = function raw(save) { + return this.base.slice( + save ? save.offset : this.offset, + this.length + ) + } + + function EncoderBuffer(value, reporter) { + if (Array.isArray(value)) { + this.length = 0 + this.value = value.map(function(item) { + if (!(item instanceof EncoderBuffer)) + item = new EncoderBuffer(item, reporter) + this.length += item.length + return item + }, this) + } else if (typeof value === "number") { + if (!(0 <= value && value <= 0xff)) + return reporter.error("non-byte EncoderBuffer value") + this.value = value + this.length = 1 + } else if (typeof value === "string") { + this.value = value + this.length = Buffer.byteLength(value) + } else if (Buffer.isBuffer(value)) { + this.value = value + this.length = value.length + } else { + return reporter.error("Unsupported type: " + typeof value) + } + } + exports.EncoderBuffer = EncoderBuffer + + EncoderBuffer.prototype.join = function join(out, offset) { + if (!out) out = new Buffer(this.length) + if (!offset) offset = 0 + + if (this.length === 0) return out + + if (Array.isArray(this.value)) { + this.value.forEach(function(item) { + item.join(out, offset) + offset += item.length + }) + } else { + if (typeof this.value === "number") out[offset] = this.value + else if (typeof this.value === "string") + out.write(this.value, offset) + else if (Buffer.isBuffer(this.value)) this.value.copy(out, offset) + offset += this.length + } + + return out + } + }, + { "../base": 5, buffer: 48, inherits: 100 } + ], + 5: [ + function(require, module, exports) { + var base = exports + + base.Reporter = require("./reporter").Reporter + base.DecoderBuffer = require("./buffer").DecoderBuffer + base.EncoderBuffer = require("./buffer").EncoderBuffer + base.Node = require("./node") + }, + { "./buffer": 4, "./node": 6, "./reporter": 7 } + ], + 6: [ + function(require, module, exports) { + var Reporter = require("../base").Reporter + var EncoderBuffer = require("../base").EncoderBuffer + var DecoderBuffer = require("../base").DecoderBuffer + var assert = require("minimalistic-assert") + + // Supported tags + var tags = [ + "seq", + "seqof", + "set", + "setof", + "objid", + "bool", + "gentime", + "utctime", + "null_", + "enum", + "int", + "objDesc", + "bitstr", + "bmpstr", + "charstr", + "genstr", + "graphstr", + "ia5str", + "iso646str", + "numstr", + "octstr", + "printstr", + "t61str", + "unistr", + "utf8str", + "videostr" + ] + + // Public methods list + var methods = [ + "key", + "obj", + "use", + "optional", + "explicit", + "implicit", + "def", + "choice", + "any", + "contains" + ].concat(tags) + + // Overrided methods list + var overrided = [ + "_peekTag", + "_decodeTag", + "_use", + "_decodeStr", + "_decodeObjid", + "_decodeTime", + "_decodeNull", + "_decodeInt", + "_decodeBool", + "_decodeList", + + "_encodeComposite", + "_encodeStr", + "_encodeObjid", + "_encodeTime", + "_encodeNull", + "_encodeInt", + "_encodeBool" + ] + + function Node(enc, parent) { + var state = {} + this._baseState = state + + state.enc = enc + + state.parent = parent || null + state.children = null + + // State + state.tag = null + state.args = null + state.reverseArgs = null + state.choice = null + state.optional = false + state.any = false + state.obj = false + state.use = null + state.useDecoder = null + state.key = null + state["default"] = null + state.explicit = null + state.implicit = null + state.contains = null + + // Should create new instance on each method + if (!state.parent) { + state.children = [] + this._wrap() + } + } + module.exports = Node + + var stateProps = [ + "enc", + "parent", + "children", + "tag", + "args", + "reverseArgs", + "choice", + "optional", + "any", + "obj", + "use", + "alteredUse", + "key", + "default", + "explicit", + "implicit", + "contains" + ] + + Node.prototype.clone = function clone() { + var state = this._baseState + var cstate = {} + stateProps.forEach(function(prop) { + cstate[prop] = state[prop] + }) + var res = new this.constructor(cstate.parent) + res._baseState = cstate + return res + } + + Node.prototype._wrap = function wrap() { + var state = this._baseState + methods.forEach(function(method) { + this[method] = function _wrappedMethod() { + var clone = new this.constructor(this) + state.children.push(clone) + return clone[method].apply(clone, arguments) + } + }, this) + } + + Node.prototype._init = function init(body) { + var state = this._baseState + + assert(state.parent === null) + body.call(this) + + // Filter children + state.children = state.children.filter(function(child) { + return child._baseState.parent === this + }, this) + assert.equal( + state.children.length, + 1, + "Root node can have only one child" + ) + } + + Node.prototype._useArgs = function useArgs(args) { + var state = this._baseState + + // Filter children and args + var children = args.filter(function(arg) { + return arg instanceof this.constructor + }, this) + args = args.filter(function(arg) { + return !(arg instanceof this.constructor) + }, this) + + if (children.length !== 0) { + assert(state.children === null) + state.children = children + + // Replace parent to maintain backward link + children.forEach(function(child) { + child._baseState.parent = this + }, this) + } + if (args.length !== 0) { + assert(state.args === null) + state.args = args + state.reverseArgs = args.map(function(arg) { + if (typeof arg !== "object" || arg.constructor !== Object) + return arg + + var res = {} + Object.keys(arg).forEach(function(key) { + if (key == (key | 0)) key |= 0 + var value = arg[key] + res[value] = key + }) + return res + }) + } + } + + // + // Overrided methods + // + + overrided.forEach(function(method) { + Node.prototype[method] = function _overrided() { + var state = this._baseState + throw new Error( + method + " not implemented for encoding: " + state.enc + ) + } + }) + + // + // Public methods + // + + tags.forEach(function(tag) { + Node.prototype[tag] = function _tagMethod() { + var state = this._baseState + var args = Array.prototype.slice.call(arguments) + + assert(state.tag === null) + state.tag = tag + + this._useArgs(args) + + return this + } + }) + + Node.prototype.use = function use(item) { + assert(item) + var state = this._baseState + + assert(state.use === null) + state.use = item + + return this + } + + Node.prototype.optional = function optional() { + var state = this._baseState + + state.optional = true + + return this + } + + Node.prototype.def = function def(val) { + var state = this._baseState + + assert(state["default"] === null) + state["default"] = val + state.optional = true + + return this + } + + Node.prototype.explicit = function explicit(num) { + var state = this._baseState + + assert(state.explicit === null && state.implicit === null) + state.explicit = num + + return this + } + + Node.prototype.implicit = function implicit(num) { + var state = this._baseState + + assert(state.explicit === null && state.implicit === null) + state.implicit = num + + return this + } + + Node.prototype.obj = function obj() { + var state = this._baseState + var args = Array.prototype.slice.call(arguments) + + state.obj = true + + if (args.length !== 0) this._useArgs(args) + + return this + } + + Node.prototype.key = function key(newKey) { + var state = this._baseState + + assert(state.key === null) + state.key = newKey + + return this + } + + Node.prototype.any = function any() { + var state = this._baseState + + state.any = true + + return this + } + + Node.prototype.choice = function choice(obj) { + var state = this._baseState + + assert(state.choice === null) + state.choice = obj + this._useArgs( + Object.keys(obj).map(function(key) { + return obj[key] + }) + ) + + return this + } + + Node.prototype.contains = function contains(item) { + var state = this._baseState + + assert(state.use === null) + state.contains = item + + return this + } + + // + // Decoding + // + + Node.prototype._decode = function decode(input, options) { + var state = this._baseState + + // Decode root node + if (state.parent === null) + return input.wrapResult(state.children[0]._decode(input, options)) + + var result = state["default"] + var present = true + + var prevKey = null + if (state.key !== null) prevKey = input.enterKey(state.key) + + // Check if tag is there + if (state.optional) { + var tag = null + if (state.explicit !== null) tag = state.explicit + else if (state.implicit !== null) tag = state.implicit + else if (state.tag !== null) tag = state.tag + + if (tag === null && !state.any) { + // Trial and Error + var save = input.save() + try { + if (state.choice === null) + this._decodeGeneric(state.tag, input, options) + else this._decodeChoice(input, options) + present = true + } catch (e) { + present = false + } + input.restore(save) + } else { + present = this._peekTag(input, tag, state.any) + + if (input.isError(present)) return present + } + } + + // Push object on stack + var prevObj + if (state.obj && present) prevObj = input.enterObject() + + if (present) { + // Unwrap explicit values + if (state.explicit !== null) { + var explicit = this._decodeTag(input, state.explicit) + if (input.isError(explicit)) return explicit + input = explicit + } + + var start = input.offset + + // Unwrap implicit and normal values + if (state.use === null && state.choice === null) { + if (state.any) var save = input.save() + var body = this._decodeTag( + input, + state.implicit !== null ? state.implicit : state.tag, + state.any + ) + if (input.isError(body)) return body + + if (state.any) result = input.raw(save) + else input = body + } + + if (options && options.track && state.tag !== null) + options.track(input.path(), start, input.length, "tagged") + + if (options && options.track && state.tag !== null) + options.track( + input.path(), + input.offset, + input.length, + "content" + ) + + // Select proper method for tag + if (state.any) result = result + else if (state.choice === null) + result = this._decodeGeneric(state.tag, input, options) + else result = this._decodeChoice(input, options) + + if (input.isError(result)) return result + + // Decode children + if ( + !state.any && + state.choice === null && + state.children !== null + ) { + state.children.forEach(function decodeChildren(child) { + // NOTE: We are ignoring errors here, to let parser continue with other + // parts of encoded data + child._decode(input, options) + }) + } + + // Decode contained/encoded by schema, only in bit or octet strings + if ( + state.contains && + (state.tag === "octstr" || state.tag === "bitstr") + ) { + var data = new DecoderBuffer(result) + result = this._getUse( + state.contains, + input._reporterState.obj + )._decode(data, options) + } + } + + // Pop object + if (state.obj && present) result = input.leaveObject(prevObj) + + // Set key + if (state.key !== null && (result !== null || present === true)) + input.leaveKey(prevKey, state.key, result) + else if (prevKey !== null) input.exitKey(prevKey) + + return result + } + + Node.prototype._decodeGeneric = function decodeGeneric( + tag, + input, + options + ) { + var state = this._baseState + + if (tag === "seq" || tag === "set") return null + if (tag === "seqof" || tag === "setof") + return this._decodeList(input, tag, state.args[0], options) + else if (/str$/.test(tag)) + return this._decodeStr(input, tag, options) + else if (tag === "objid" && state.args) + return this._decodeObjid( + input, + state.args[0], + state.args[1], + options + ) + else if (tag === "objid") + return this._decodeObjid(input, null, null, options) + else if (tag === "gentime" || tag === "utctime") + return this._decodeTime(input, tag, options) + else if (tag === "null_") return this._decodeNull(input, options) + else if (tag === "bool") return this._decodeBool(input, options) + else if (tag === "objDesc") + return this._decodeStr(input, tag, options) + else if (tag === "int" || tag === "enum") + return this._decodeInt( + input, + state.args && state.args[0], + options + ) + + if (state.use !== null) { + return this._getUse(state.use, input._reporterState.obj)._decode( + input, + options + ) + } else { + return input.error("unknown tag: " + tag) + } + } + + Node.prototype._getUse = function _getUse(entity, obj) { + var state = this._baseState + // Create altered use decoder if implicit is set + state.useDecoder = this._use(entity, obj) + assert(state.useDecoder._baseState.parent === null) + state.useDecoder = state.useDecoder._baseState.children[0] + if (state.implicit !== state.useDecoder._baseState.implicit) { + state.useDecoder = state.useDecoder.clone() + state.useDecoder._baseState.implicit = state.implicit + } + return state.useDecoder + } + + Node.prototype._decodeChoice = function decodeChoice(input, options) { + var state = this._baseState + var result = null + var match = false + + Object.keys(state.choice).some(function(key) { + var save = input.save() + var node = state.choice[key] + try { + var value = node._decode(input, options) + if (input.isError(value)) return false + + result = { type: key, value: value } + match = true + } catch (e) { + input.restore(save) + return false + } + return true + }, this) + + if (!match) return input.error("Choice not matched") + + return result + } + + // + // Encoding + // + + Node.prototype._createEncoderBuffer = function createEncoderBuffer( + data + ) { + return new EncoderBuffer(data, this.reporter) + } + + Node.prototype._encode = function encode(data, reporter, parent) { + var state = this._baseState + if (state["default"] !== null && state["default"] === data) return + + var result = this._encodeValue(data, reporter, parent) + if (result === undefined) return + + if (this._skipDefault(result, reporter, parent)) return + + return result + } + + Node.prototype._encodeValue = function encode( + data, + reporter, + parent + ) { + var state = this._baseState + + // Decode root node + if (state.parent === null) + return state.children[0]._encode(data, reporter || new Reporter()) + + var result = null + + // Set reporter to share it with a child class + this.reporter = reporter + + // Check if data is there + if (state.optional && data === undefined) { + if (state["default"] !== null) data = state["default"] + else return + } + + // Encode children first + var content = null + var primitive = false + if (state.any) { + // Anything that was given is translated to buffer + result = this._createEncoderBuffer(data) + } else if (state.choice) { + result = this._encodeChoice(data, reporter) + } else if (state.contains) { + content = this._getUse(state.contains, parent)._encode( + data, + reporter + ) + primitive = true + } else if (state.children) { + content = state.children + .map(function(child) { + if (child._baseState.tag === "null_") + return child._encode(null, reporter, data) + + if (child._baseState.key === null) + return reporter.error("Child should have a key") + var prevKey = reporter.enterKey(child._baseState.key) + + if (typeof data !== "object") + return reporter.error( + "Child expected, but input is not object" + ) + + var res = child._encode( + data[child._baseState.key], + reporter, + data + ) + reporter.leaveKey(prevKey) + + return res + }, this) + .filter(function(child) { + return child + }) + content = this._createEncoderBuffer(content) + } else { + if (state.tag === "seqof" || state.tag === "setof") { + // TODO(indutny): this should be thrown on DSL level + if (!(state.args && state.args.length === 1)) + return reporter.error("Too many args for : " + state.tag) + + if (!Array.isArray(data)) + return reporter.error("seqof/setof, but data is not Array") + + var child = this.clone() + child._baseState.implicit = null + content = this._createEncoderBuffer( + data.map(function(item) { + var state = this._baseState + + return this._getUse(state.args[0], data)._encode( + item, + reporter + ) + }, child) + ) + } else if (state.use !== null) { + result = this._getUse(state.use, parent)._encode(data, reporter) + } else { + content = this._encodePrimitive(state.tag, data) + primitive = true + } + } + + // Encode data itself + var result + if (!state.any && state.choice === null) { + var tag = state.implicit !== null ? state.implicit : state.tag + var cls = state.implicit === null ? "universal" : "context" + + if (tag === null) { + if (state.use === null) + reporter.error("Tag could be omitted only for .use()") + } else { + if (state.use === null) + result = this._encodeComposite(tag, primitive, cls, content) + } + } + + // Wrap in explicit + if (state.explicit !== null) + result = this._encodeComposite( + state.explicit, + false, + "context", + result + ) + + return result + } + + Node.prototype._encodeChoice = function encodeChoice(data, reporter) { + var state = this._baseState + + var node = state.choice[data.type] + if (!node) { + assert( + false, + data.type + + " not found in " + + JSON.stringify(Object.keys(state.choice)) + ) + } + return node._encode(data.value, reporter) + } + + Node.prototype._encodePrimitive = function encodePrimitive( + tag, + data + ) { + var state = this._baseState + + if (/str$/.test(tag)) return this._encodeStr(data, tag) + else if (tag === "objid" && state.args) + return this._encodeObjid( + data, + state.reverseArgs[0], + state.args[1] + ) + else if (tag === "objid") return this._encodeObjid(data, null, null) + else if (tag === "gentime" || tag === "utctime") + return this._encodeTime(data, tag) + else if (tag === "null_") return this._encodeNull() + else if (tag === "int" || tag === "enum") + return this._encodeInt(data, state.args && state.reverseArgs[0]) + else if (tag === "bool") return this._encodeBool(data) + else if (tag === "objDesc") return this._encodeStr(data, tag) + else throw new Error("Unsupported tag: " + tag) + } + + Node.prototype._isNumstr = function isNumstr(str) { + return /^[0-9 ]*$/.test(str) + } + + Node.prototype._isPrintstr = function isPrintstr(str) { + return /^[A-Za-z0-9 '\(\)\+,\-\.\/:=\?]*$/.test(str) + } + }, + { "../base": 5, "minimalistic-assert": 105 } + ], + 7: [ + function(require, module, exports) { + var inherits = require("inherits") + + function Reporter(options) { + this._reporterState = { + obj: null, + path: [], + options: options || {}, + errors: [] + } + } + exports.Reporter = Reporter + + Reporter.prototype.isError = function isError(obj) { + return obj instanceof ReporterError + } + + Reporter.prototype.save = function save() { + var state = this._reporterState + + return { obj: state.obj, pathLen: state.path.length } + } + + Reporter.prototype.restore = function restore(data) { + var state = this._reporterState + + state.obj = data.obj + state.path = state.path.slice(0, data.pathLen) + } + + Reporter.prototype.enterKey = function enterKey(key) { + return this._reporterState.path.push(key) + } + + Reporter.prototype.exitKey = function exitKey(index) { + var state = this._reporterState + + state.path = state.path.slice(0, index - 1) + } + + Reporter.prototype.leaveKey = function leaveKey(index, key, value) { + var state = this._reporterState + + this.exitKey(index) + if (state.obj !== null) state.obj[key] = value + } + + Reporter.prototype.path = function path() { + return this._reporterState.path.join("/") + } + + Reporter.prototype.enterObject = function enterObject() { + var state = this._reporterState + + var prev = state.obj + state.obj = {} + return prev + } + + Reporter.prototype.leaveObject = function leaveObject(prev) { + var state = this._reporterState + + var now = state.obj + state.obj = prev + return now + } + + Reporter.prototype.error = function error(msg) { + var err + var state = this._reporterState + + var inherited = msg instanceof ReporterError + if (inherited) { + err = msg + } else { + err = new ReporterError( + state.path + .map(function(elem) { + return "[" + JSON.stringify(elem) + "]" + }) + .join(""), + msg.message || msg, + msg.stack + ) + } + + if (!state.options.partial) throw err + + if (!inherited) state.errors.push(err) + + return err + } + + Reporter.prototype.wrapResult = function wrapResult(result) { + var state = this._reporterState + if (!state.options.partial) return result + + return { + result: this.isError(result) ? null : result, + errors: state.errors + } + } + + function ReporterError(path, msg) { + this.path = path + this.rethrow(msg) + } + inherits(ReporterError, Error) + + ReporterError.prototype.rethrow = function rethrow(msg) { + this.message = msg + " at: " + (this.path || "(shallow)") + if (Error.captureStackTrace) + Error.captureStackTrace(this, ReporterError) + + if (!this.stack) { + try { + // IE only adds stack when thrown + throw new Error(this.message) + } catch (e) { + this.stack = e.stack + } + } + return this + } + }, + { inherits: 100 } + ], + 8: [ + function(require, module, exports) { + var constants = require("../constants") + + exports.tagClass = { + 0: "universal", + 1: "application", + 2: "context", + 3: "private" + } + exports.tagClassByName = constants._reverse(exports.tagClass) + + exports.tag = { + 0x00: "end", + 0x01: "bool", + 0x02: "int", + 0x03: "bitstr", + 0x04: "octstr", + 0x05: "null_", + 0x06: "objid", + 0x07: "objDesc", + 0x08: "external", + 0x09: "real", + 0x0a: "enum", + 0x0b: "embed", + 0x0c: "utf8str", + 0x0d: "relativeOid", + 0x10: "seq", + 0x11: "set", + 0x12: "numstr", + 0x13: "printstr", + 0x14: "t61str", + 0x15: "videostr", + 0x16: "ia5str", + 0x17: "utctime", + 0x18: "gentime", + 0x19: "graphstr", + 0x1a: "iso646str", + 0x1b: "genstr", + 0x1c: "unistr", + 0x1d: "charstr", + 0x1e: "bmpstr" + } + exports.tagByName = constants._reverse(exports.tag) + }, + { "../constants": 9 } + ], + 9: [ + function(require, module, exports) { + var constants = exports + + // Helper + constants._reverse = function reverse(map) { + var res = {} + + Object.keys(map).forEach(function(key) { + // Convert key to integer if it is stringified + if ((key | 0) == key) key = key | 0 + + var value = map[key] + res[value] = key + }) + + return res + } + + constants.der = require("./der") + }, + { "./der": 8 } + ], + 10: [ + function(require, module, exports) { + var inherits = require("inherits") + + var asn1 = require("../../asn1") + var base = asn1.base + var bignum = asn1.bignum + + // Import DER constants + var der = asn1.constants.der + + function DERDecoder(entity) { + this.enc = "der" + this.name = entity.name + this.entity = entity + + // Construct base tree + this.tree = new DERNode() + this.tree._init(entity.body) + } + module.exports = DERDecoder + + DERDecoder.prototype.decode = function decode(data, options) { + if (!(data instanceof base.DecoderBuffer)) + data = new base.DecoderBuffer(data, options) + + return this.tree._decode(data, options) + } + + // Tree methods + + function DERNode(parent) { + base.Node.call(this, "der", parent) + } + inherits(DERNode, base.Node) + + DERNode.prototype._peekTag = function peekTag(buffer, tag, any) { + if (buffer.isEmpty()) return false + + var state = buffer.save() + var decodedTag = derDecodeTag( + buffer, + 'Failed to peek tag: "' + tag + '"' + ) + if (buffer.isError(decodedTag)) return decodedTag + + buffer.restore(state) + + return ( + decodedTag.tag === tag || + decodedTag.tagStr === tag || + decodedTag.tagStr + "of" === tag || + any + ) + } + + DERNode.prototype._decodeTag = function decodeTag(buffer, tag, any) { + var decodedTag = derDecodeTag( + buffer, + 'Failed to decode tag of "' + tag + '"' + ) + if (buffer.isError(decodedTag)) return decodedTag + + var len = derDecodeLen( + buffer, + decodedTag.primitive, + 'Failed to get length of "' + tag + '"' + ) + + // Failure + if (buffer.isError(len)) return len + + if ( + !any && + decodedTag.tag !== tag && + decodedTag.tagStr !== tag && + decodedTag.tagStr + "of" !== tag + ) { + return buffer.error('Failed to match tag: "' + tag + '"') + } + + if (decodedTag.primitive || len !== null) + return buffer.skip(len, 'Failed to match body of: "' + tag + '"') + + // Indefinite length... find END tag + var state = buffer.save() + var res = this._skipUntilEnd( + buffer, + 'Failed to skip indefinite length body: "' + this.tag + '"' + ) + if (buffer.isError(res)) return res + + len = buffer.offset - state.offset + buffer.restore(state) + return buffer.skip(len, 'Failed to match body of: "' + tag + '"') + } + + DERNode.prototype._skipUntilEnd = function skipUntilEnd( + buffer, + fail + ) { + while (true) { + var tag = derDecodeTag(buffer, fail) + if (buffer.isError(tag)) return tag + var len = derDecodeLen(buffer, tag.primitive, fail) + if (buffer.isError(len)) return len + + var res + if (tag.primitive || len !== null) res = buffer.skip(len) + else res = this._skipUntilEnd(buffer, fail) + + // Failure + if (buffer.isError(res)) return res + + if (tag.tagStr === "end") break + } + } + + DERNode.prototype._decodeList = function decodeList( + buffer, + tag, + decoder, + options + ) { + var result = [] + while (!buffer.isEmpty()) { + var possibleEnd = this._peekTag(buffer, "end") + if (buffer.isError(possibleEnd)) return possibleEnd + + var res = decoder.decode(buffer, "der", options) + if (buffer.isError(res) && possibleEnd) break + result.push(res) + } + return result + } + + DERNode.prototype._decodeStr = function decodeStr(buffer, tag) { + if (tag === "bitstr") { + var unused = buffer.readUInt8() + if (buffer.isError(unused)) return unused + return { unused: unused, data: buffer.raw() } + } else if (tag === "bmpstr") { + var raw = buffer.raw() + if (raw.length % 2 === 1) + return buffer.error( + "Decoding of string type: bmpstr length mismatch" + ) + + var str = "" + for (var i = 0; i < raw.length / 2; i++) { + str += String.fromCharCode(raw.readUInt16BE(i * 2)) + } + return str + } else if (tag === "numstr") { + var numstr = buffer.raw().toString("ascii") + if (!this._isNumstr(numstr)) { + return buffer.error( + "Decoding of string type: " + "numstr unsupported characters" + ) + } + return numstr + } else if (tag === "octstr") { + return buffer.raw() + } else if (tag === "objDesc") { + return buffer.raw() + } else if (tag === "printstr") { + var printstr = buffer.raw().toString("ascii") + if (!this._isPrintstr(printstr)) { + return buffer.error( + "Decoding of string type: " + + "printstr unsupported characters" + ) + } + return printstr + } else if (/str$/.test(tag)) { + return buffer.raw().toString() + } else { + return buffer.error( + "Decoding of string type: " + tag + " unsupported" + ) + } + } + + DERNode.prototype._decodeObjid = function decodeObjid( + buffer, + values, + relative + ) { + var result + var identifiers = [] + var ident = 0 + while (!buffer.isEmpty()) { + var subident = buffer.readUInt8() + ident <<= 7 + ident |= subident & 0x7f + if ((subident & 0x80) === 0) { + identifiers.push(ident) + ident = 0 + } + } + if (subident & 0x80) identifiers.push(ident) + + var first = (identifiers[0] / 40) | 0 + var second = identifiers[0] % 40 + + if (relative) result = identifiers + else result = [first, second].concat(identifiers.slice(1)) + + if (values) { + var tmp = values[result.join(" ")] + if (tmp === undefined) tmp = values[result.join(".")] + if (tmp !== undefined) result = tmp + } + + return result + } + + DERNode.prototype._decodeTime = function decodeTime(buffer, tag) { + var str = buffer.raw().toString() + if (tag === "gentime") { + var year = str.slice(0, 4) | 0 + var mon = str.slice(4, 6) | 0 + var day = str.slice(6, 8) | 0 + var hour = str.slice(8, 10) | 0 + var min = str.slice(10, 12) | 0 + var sec = str.slice(12, 14) | 0 + } else if (tag === "utctime") { + var year = str.slice(0, 2) | 0 + var mon = str.slice(2, 4) | 0 + var day = str.slice(4, 6) | 0 + var hour = str.slice(6, 8) | 0 + var min = str.slice(8, 10) | 0 + var sec = str.slice(10, 12) | 0 + if (year < 70) year = 2000 + year + else year = 1900 + year + } else { + return buffer.error( + "Decoding " + tag + " time is not supported yet" + ) + } + + return Date.UTC(year, mon - 1, day, hour, min, sec, 0) + } + + DERNode.prototype._decodeNull = function decodeNull(buffer) { + return null + } + + DERNode.prototype._decodeBool = function decodeBool(buffer) { + var res = buffer.readUInt8() + if (buffer.isError(res)) return res + else return res !== 0 + } + + DERNode.prototype._decodeInt = function decodeInt(buffer, values) { + // Bigint, return as it is (assume big endian) + var raw = buffer.raw() + var res = new bignum(raw) + + if (values) res = values[res.toString(10)] || res + + return res + } + + DERNode.prototype._use = function use(entity, obj) { + if (typeof entity === "function") entity = entity(obj) + return entity._getDecoder("der").tree + } + + // Utility methods + + function derDecodeTag(buf, fail) { + var tag = buf.readUInt8(fail) + if (buf.isError(tag)) return tag + + var cls = der.tagClass[tag >> 6] + var primitive = (tag & 0x20) === 0 + + // Multi-octet tag - load + if ((tag & 0x1f) === 0x1f) { + var oct = tag + tag = 0 + while ((oct & 0x80) === 0x80) { + oct = buf.readUInt8(fail) + if (buf.isError(oct)) return oct + + tag <<= 7 + tag |= oct & 0x7f + } + } else { + tag &= 0x1f + } + var tagStr = der.tag[tag] + + return { + cls: cls, + primitive: primitive, + tag: tag, + tagStr: tagStr + } + } + + function derDecodeLen(buf, primitive, fail) { + var len = buf.readUInt8(fail) + if (buf.isError(len)) return len + + // Indefinite form + if (!primitive && len === 0x80) return null + + // Definite form + if ((len & 0x80) === 0) { + // Short form + return len + } + + // Long form + var num = len & 0x7f + if (num > 4) return buf.error("length octect is too long") + + len = 0 + for (var i = 0; i < num; i++) { + len <<= 8 + var j = buf.readUInt8(fail) + if (buf.isError(j)) return j + len |= j + } + + return len + } + }, + { "../../asn1": 2, inherits: 100 } + ], + 11: [ + function(require, module, exports) { + var decoders = exports + + decoders.der = require("./der") + decoders.pem = require("./pem") + }, + { "./der": 10, "./pem": 12 } + ], + 12: [ + function(require, module, exports) { + var inherits = require("inherits") + var Buffer = require("buffer").Buffer + + var DERDecoder = require("./der") + + function PEMDecoder(entity) { + DERDecoder.call(this, entity) + this.enc = "pem" + } + inherits(PEMDecoder, DERDecoder) + module.exports = PEMDecoder + + PEMDecoder.prototype.decode = function decode(data, options) { + var lines = data.toString().split(/[\r\n]+/g) + + var label = options.label.toUpperCase() + + var re = /^-----(BEGIN|END) ([^-]+)-----$/ + var start = -1 + var end = -1 + for (var i = 0; i < lines.length; i++) { + var match = lines[i].match(re) + if (match === null) continue + + if (match[2] !== label) continue + + if (start === -1) { + if (match[1] !== "BEGIN") break + start = i + } else { + if (match[1] !== "END") break + end = i + break + } + } + if (start === -1 || end === -1) + throw new Error("PEM section not found for: " + label) + + var base64 = lines.slice(start + 1, end).join("") + // Remove excessive symbols + base64.replace(/[^a-z0-9\+\/=]+/gi, "") + + var input = new Buffer(base64, "base64") + return DERDecoder.prototype.decode.call(this, input, options) + } + }, + { "./der": 10, buffer: 48, inherits: 100 } + ], + 13: [ + function(require, module, exports) { + var inherits = require("inherits") + var Buffer = require("buffer").Buffer + + var asn1 = require("../../asn1") + var base = asn1.base + + // Import DER constants + var der = asn1.constants.der + + function DEREncoder(entity) { + this.enc = "der" + this.name = entity.name + this.entity = entity + + // Construct base tree + this.tree = new DERNode() + this.tree._init(entity.body) + } + module.exports = DEREncoder + + DEREncoder.prototype.encode = function encode(data, reporter) { + return this.tree._encode(data, reporter).join() + } + + // Tree methods + + function DERNode(parent) { + base.Node.call(this, "der", parent) + } + inherits(DERNode, base.Node) + + DERNode.prototype._encodeComposite = function encodeComposite( + tag, + primitive, + cls, + content + ) { + var encodedTag = encodeTag(tag, primitive, cls, this.reporter) + + // Short form + if (content.length < 0x80) { + var header = new Buffer(2) + header[0] = encodedTag + header[1] = content.length + return this._createEncoderBuffer([header, content]) + } + + // Long form + // Count octets required to store length + var lenOctets = 1 + for (var i = content.length; i >= 0x100; i >>= 8) lenOctets++ + + var header = new Buffer(1 + 1 + lenOctets) + header[0] = encodedTag + header[1] = 0x80 | lenOctets + + for (var i = 1 + lenOctets, j = content.length; j > 0; i--, j >>= 8) + header[i] = j & 0xff + + return this._createEncoderBuffer([header, content]) + } + + DERNode.prototype._encodeStr = function encodeStr(str, tag) { + if (tag === "bitstr") { + return this._createEncoderBuffer([str.unused | 0, str.data]) + } else if (tag === "bmpstr") { + var buf = new Buffer(str.length * 2) + for (var i = 0; i < str.length; i++) { + buf.writeUInt16BE(str.charCodeAt(i), i * 2) + } + return this._createEncoderBuffer(buf) + } else if (tag === "numstr") { + if (!this._isNumstr(str)) { + return this.reporter.error( + "Encoding of string type: numstr supports " + + "only digits and space" + ) + } + return this._createEncoderBuffer(str) + } else if (tag === "printstr") { + if (!this._isPrintstr(str)) { + return this.reporter.error( + "Encoding of string type: printstr supports " + + "only latin upper and lower case letters, " + + "digits, space, apostrophe, left and rigth " + + "parenthesis, plus sign, comma, hyphen, " + + "dot, slash, colon, equal sign, " + + "question mark" + ) + } + return this._createEncoderBuffer(str) + } else if (/str$/.test(tag)) { + return this._createEncoderBuffer(str) + } else if (tag === "objDesc") { + return this._createEncoderBuffer(str) + } else { + return this.reporter.error( + "Encoding of string type: " + tag + " unsupported" + ) + } + } + + DERNode.prototype._encodeObjid = function encodeObjid( + id, + values, + relative + ) { + if (typeof id === "string") { + if (!values) + return this.reporter.error( + "string objid given, but no values map found" + ) + if (!values.hasOwnProperty(id)) + return this.reporter.error("objid not found in values map") + id = values[id].split(/[\s\.]+/g) + for (var i = 0; i < id.length; i++) id[i] |= 0 + } else if (Array.isArray(id)) { + id = id.slice() + for (var i = 0; i < id.length; i++) id[i] |= 0 + } + + if (!Array.isArray(id)) { + return this.reporter.error( + "objid() should be either array or string, " + + "got: " + + JSON.stringify(id) + ) + } + + if (!relative) { + if (id[1] >= 40) + return this.reporter.error("Second objid identifier OOB") + id.splice(0, 2, id[0] * 40 + id[1]) + } + + // Count number of octets + var size = 0 + for (var i = 0; i < id.length; i++) { + var ident = id[i] + for (size++; ident >= 0x80; ident >>= 7) size++ + } + + var objid = new Buffer(size) + var offset = objid.length - 1 + for (var i = id.length - 1; i >= 0; i--) { + var ident = id[i] + objid[offset--] = ident & 0x7f + while ((ident >>= 7) > 0) objid[offset--] = 0x80 | (ident & 0x7f) + } + + return this._createEncoderBuffer(objid) + } + + function two(num) { + if (num < 10) return "0" + num + else return num + } + + DERNode.prototype._encodeTime = function encodeTime(time, tag) { + var str + var date = new Date(time) + + if (tag === "gentime") { + str = [ + two(date.getFullYear()), + two(date.getUTCMonth() + 1), + two(date.getUTCDate()), + two(date.getUTCHours()), + two(date.getUTCMinutes()), + two(date.getUTCSeconds()), + "Z" + ].join("") + } else if (tag === "utctime") { + str = [ + two(date.getFullYear() % 100), + two(date.getUTCMonth() + 1), + two(date.getUTCDate()), + two(date.getUTCHours()), + two(date.getUTCMinutes()), + two(date.getUTCSeconds()), + "Z" + ].join("") + } else { + this.reporter.error( + "Encoding " + tag + " time is not supported yet" + ) + } + + return this._encodeStr(str, "octstr") + } + + DERNode.prototype._encodeNull = function encodeNull() { + return this._createEncoderBuffer("") + } + + DERNode.prototype._encodeInt = function encodeInt(num, values) { + if (typeof num === "string") { + if (!values) + return this.reporter.error( + "String int or enum given, but no values map" + ) + if (!values.hasOwnProperty(num)) { + return this.reporter.error( + "Values map doesn't contain: " + JSON.stringify(num) + ) + } + num = values[num] + } + + // Bignum, assume big endian + if (typeof num !== "number" && !Buffer.isBuffer(num)) { + var numArray = num.toArray() + if (!num.sign && numArray[0] & 0x80) { + numArray.unshift(0) + } + num = new Buffer(numArray) + } + + if (Buffer.isBuffer(num)) { + var size = num.length + if (num.length === 0) size++ + + var out = new Buffer(size) + num.copy(out) + if (num.length === 0) out[0] = 0 + return this._createEncoderBuffer(out) + } + + if (num < 0x80) return this._createEncoderBuffer(num) + + if (num < 0x100) return this._createEncoderBuffer([0, num]) + + var size = 1 + for (var i = num; i >= 0x100; i >>= 8) size++ + + var out = new Array(size) + for (var i = out.length - 1; i >= 0; i--) { + out[i] = num & 0xff + num >>= 8 + } + if (out[0] & 0x80) { + out.unshift(0) + } + + return this._createEncoderBuffer(new Buffer(out)) + } + + DERNode.prototype._encodeBool = function encodeBool(value) { + return this._createEncoderBuffer(value ? 0xff : 0) + } + + DERNode.prototype._use = function use(entity, obj) { + if (typeof entity === "function") entity = entity(obj) + return entity._getEncoder("der").tree + } + + DERNode.prototype._skipDefault = function skipDefault( + dataBuffer, + reporter, + parent + ) { + var state = this._baseState + var i + if (state["default"] === null) return false + + var data = dataBuffer.join() + if (state.defaultBuffer === undefined) + state.defaultBuffer = this._encodeValue( + state["default"], + reporter, + parent + ).join() + + if (data.length !== state.defaultBuffer.length) return false + + for (i = 0; i < data.length; i++) + if (data[i] !== state.defaultBuffer[i]) return false + + return true + } + + // Utility methods + + function encodeTag(tag, primitive, cls, reporter) { + var res + + if (tag === "seqof") tag = "seq" + else if (tag === "setof") tag = "set" + + if (der.tagByName.hasOwnProperty(tag)) res = der.tagByName[tag] + else if (typeof tag === "number" && (tag | 0) === tag) res = tag + else return reporter.error("Unknown tag: " + tag) + + if (res >= 0x1f) + return reporter.error("Multi-octet tag encoding unsupported") + + if (!primitive) res |= 0x20 + + res |= der.tagClassByName[cls || "universal"] << 6 + + return res + } + }, + { "../../asn1": 2, buffer: 48, inherits: 100 } + ], + 14: [ + function(require, module, exports) { + var encoders = exports + + encoders.der = require("./der") + encoders.pem = require("./pem") + }, + { "./der": 13, "./pem": 15 } + ], + 15: [ + function(require, module, exports) { + var inherits = require("inherits") + + var DEREncoder = require("./der") + + function PEMEncoder(entity) { + DEREncoder.call(this, entity) + this.enc = "pem" + } + inherits(PEMEncoder, DEREncoder) + module.exports = PEMEncoder + + PEMEncoder.prototype.encode = function encode(data, options) { + var buf = DEREncoder.prototype.encode.call(this, data) + + var p = buf.toString("base64") + var out = ["-----BEGIN " + options.label + "-----"] + for (var i = 0; i < p.length; i += 64) out.push(p.slice(i, i + 64)) + out.push("-----END " + options.label + "-----") + return out.join("\n") + } + }, + { "./der": 13, inherits: 100 } + ], + 16: [ + function(require, module, exports) { + "use strict" + + exports.byteLength = byteLength + exports.toByteArray = toByteArray + exports.fromByteArray = fromByteArray + + var lookup = [] + var revLookup = [] + var Arr = typeof Uint8Array !== "undefined" ? Uint8Array : Array + + var code = + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" + for (var i = 0, len = code.length; i < len; ++i) { + lookup[i] = code[i] + revLookup[code.charCodeAt(i)] = i + } + + // Support decoding URL-safe base64 strings, as Node.js does. + // See: https://en.wikipedia.org/wiki/Base64#URL_applications + revLookup["-".charCodeAt(0)] = 62 + revLookup["_".charCodeAt(0)] = 63 + + function getLens(b64) { + var len = b64.length + + if (len % 4 > 0) { + throw new Error("Invalid string. Length must be a multiple of 4") + } + + // Trim off extra bytes after placeholder bytes are found + // See: https://github.com/beatgammit/base64-js/issues/42 + var validLen = b64.indexOf("=") + if (validLen === -1) validLen = len + + var placeHoldersLen = validLen === len ? 0 : 4 - (validLen % 4) + + return [validLen, placeHoldersLen] + } + + // base64 is 4/3 + up to two characters of the original data + function byteLength(b64) { + var lens = getLens(b64) + var validLen = lens[0] + var placeHoldersLen = lens[1] + return ((validLen + placeHoldersLen) * 3) / 4 - placeHoldersLen + } + + function _byteLength(b64, validLen, placeHoldersLen) { + return ((validLen + placeHoldersLen) * 3) / 4 - placeHoldersLen + } + + function toByteArray(b64) { + var tmp + var lens = getLens(b64) + var validLen = lens[0] + var placeHoldersLen = lens[1] + + var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen)) + + var curByte = 0 + + // if there are placeholders, only get up to the last complete 4 chars + var len = placeHoldersLen > 0 ? validLen - 4 : validLen + + for (var i = 0; i < len; i += 4) { + tmp = + (revLookup[b64.charCodeAt(i)] << 18) | + (revLookup[b64.charCodeAt(i + 1)] << 12) | + (revLookup[b64.charCodeAt(i + 2)] << 6) | + revLookup[b64.charCodeAt(i + 3)] + arr[curByte++] = (tmp >> 16) & 0xff + arr[curByte++] = (tmp >> 8) & 0xff + arr[curByte++] = tmp & 0xff + } + + if (placeHoldersLen === 2) { + tmp = + (revLookup[b64.charCodeAt(i)] << 2) | + (revLookup[b64.charCodeAt(i + 1)] >> 4) + arr[curByte++] = tmp & 0xff + } + + if (placeHoldersLen === 1) { + tmp = + (revLookup[b64.charCodeAt(i)] << 10) | + (revLookup[b64.charCodeAt(i + 1)] << 4) | + (revLookup[b64.charCodeAt(i + 2)] >> 2) + arr[curByte++] = (tmp >> 8) & 0xff + arr[curByte++] = tmp & 0xff + } + + return arr + } + + function tripletToBase64(num) { + return ( + lookup[(num >> 18) & 0x3f] + + lookup[(num >> 12) & 0x3f] + + lookup[(num >> 6) & 0x3f] + + lookup[num & 0x3f] + ) + } + + function encodeChunk(uint8, start, end) { + var tmp + var output = [] + for (var i = start; i < end; i += 3) { + tmp = + ((uint8[i] << 16) & 0xff0000) + + ((uint8[i + 1] << 8) & 0xff00) + + (uint8[i + 2] & 0xff) + output.push(tripletToBase64(tmp)) + } + return output.join("") + } + + function fromByteArray(uint8) { + var tmp + var len = uint8.length + var extraBytes = len % 3 // if we have 1 byte left, pad 2 bytes + var parts = [] + var maxChunkLength = 16383 // must be multiple of 3 + + // go through the array every three bytes, we'll deal with trailing stuff later + for ( + var i = 0, len2 = len - extraBytes; + i < len2; + i += maxChunkLength + ) { + parts.push( + encodeChunk( + uint8, + i, + i + maxChunkLength > len2 ? len2 : i + maxChunkLength + ) + ) + } + + // pad the end with zeros, but make sure to not forget the extra bytes + if (extraBytes === 1) { + tmp = uint8[len - 1] + parts.push(lookup[tmp >> 2] + lookup[(tmp << 4) & 0x3f] + "==") + } else if (extraBytes === 2) { + tmp = (uint8[len - 2] << 8) + uint8[len - 1] + parts.push( + lookup[tmp >> 10] + + lookup[(tmp >> 4) & 0x3f] + + lookup[(tmp << 2) & 0x3f] + + "=" + ) + } + + return parts.join("") + } + }, + {} + ], + 17: [ + function(require, module, exports) { + ;(function(module, exports) { + "use strict" + + // Utils + function assert(val, msg) { + if (!val) throw new Error(msg || "Assertion failed") + } + + // Could use `inherits` module, but don't want to move from single file + // architecture yet. + function inherits(ctor, superCtor) { + ctor.super_ = superCtor + var TempCtor = function() {} + TempCtor.prototype = superCtor.prototype + ctor.prototype = new TempCtor() + ctor.prototype.constructor = ctor + } + + // BN + + function BN(number, base, endian) { + if (BN.isBN(number)) { + return number + } + + this.negative = 0 + this.words = null + this.length = 0 + + // Reduction context + this.red = null + + if (number !== null) { + if (base === "le" || base === "be") { + endian = base + base = 10 + } + + this._init(number || 0, base || 10, endian || "be") + } + } + if (typeof module === "object") { + module.exports = BN + } else { + exports.BN = BN + } + + BN.BN = BN + BN.wordSize = 26 + + var Buffer + try { + Buffer = require("buffer").Buffer + } catch (e) {} + + BN.isBN = function isBN(num) { + if (num instanceof BN) { + return true + } + + return ( + num !== null && + typeof num === "object" && + num.constructor.wordSize === BN.wordSize && + Array.isArray(num.words) + ) + } + + BN.max = function max(left, right) { + if (left.cmp(right) > 0) return left + return right + } + + BN.min = function min(left, right) { + if (left.cmp(right) < 0) return left + return right + } + + BN.prototype._init = function init(number, base, endian) { + if (typeof number === "number") { + return this._initNumber(number, base, endian) + } + + if (typeof number === "object") { + return this._initArray(number, base, endian) + } + + if (base === "hex") { + base = 16 + } + assert(base === (base | 0) && base >= 2 && base <= 36) + + number = number.toString().replace(/\s+/g, "") + var start = 0 + if (number[0] === "-") { + start++ + } + + if (base === 16) { + this._parseHex(number, start) + } else { + this._parseBase(number, base, start) + } + + if (number[0] === "-") { + this.negative = 1 + } + + this.strip() + + if (endian !== "le") return + + this._initArray(this.toArray(), base, endian) + } + + BN.prototype._initNumber = function _initNumber( + number, + base, + endian + ) { + if (number < 0) { + this.negative = 1 + number = -number + } + if (number < 0x4000000) { + this.words = [number & 0x3ffffff] + this.length = 1 + } else if (number < 0x10000000000000) { + this.words = [ + number & 0x3ffffff, + (number / 0x4000000) & 0x3ffffff + ] + this.length = 2 + } else { + assert(number < 0x20000000000000) // 2 ^ 53 (unsafe) + this.words = [ + number & 0x3ffffff, + (number / 0x4000000) & 0x3ffffff, + 1 + ] + this.length = 3 + } + + if (endian !== "le") return + + // Reverse the bytes + this._initArray(this.toArray(), base, endian) + } + + BN.prototype._initArray = function _initArray( + number, + base, + endian + ) { + // Perhaps a Uint8Array + assert(typeof number.length === "number") + if (number.length <= 0) { + this.words = [0] + this.length = 1 + return this + } + + this.length = Math.ceil(number.length / 3) + this.words = new Array(this.length) + for (var i = 0; i < this.length; i++) { + this.words[i] = 0 + } + + var j, w + var off = 0 + if (endian === "be") { + for (i = number.length - 1, j = 0; i >= 0; i -= 3) { + w = number[i] | (number[i - 1] << 8) | (number[i - 2] << 16) + this.words[j] |= (w << off) & 0x3ffffff + this.words[j + 1] = (w >>> (26 - off)) & 0x3ffffff + off += 24 + if (off >= 26) { + off -= 26 + j++ + } + } + } else if (endian === "le") { + for (i = 0, j = 0; i < number.length; i += 3) { + w = number[i] | (number[i + 1] << 8) | (number[i + 2] << 16) + this.words[j] |= (w << off) & 0x3ffffff + this.words[j + 1] = (w >>> (26 - off)) & 0x3ffffff + off += 24 + if (off >= 26) { + off -= 26 + j++ + } + } + } + return this.strip() + } + + function parseHex(str, start, end) { + var r = 0 + var len = Math.min(str.length, end) + for (var i = start; i < len; i++) { + var c = str.charCodeAt(i) - 48 + + r <<= 4 + + // 'a' - 'f' + if (c >= 49 && c <= 54) { + r |= c - 49 + 0xa + + // 'A' - 'F' + } else if (c >= 17 && c <= 22) { + r |= c - 17 + 0xa + + // '0' - '9' + } else { + r |= c & 0xf + } + } + return r + } + + BN.prototype._parseHex = function _parseHex(number, start) { + // Create possibly bigger array to ensure that it fits the number + this.length = Math.ceil((number.length - start) / 6) + this.words = new Array(this.length) + for (var i = 0; i < this.length; i++) { + this.words[i] = 0 + } + + var j, w + // Scan 24-bit chunks and add them to the number + var off = 0 + for (i = number.length - 6, j = 0; i >= start; i -= 6) { + w = parseHex(number, i, i + 6) + this.words[j] |= (w << off) & 0x3ffffff + // NOTE: `0x3fffff` is intentional here, 26bits max shift + 24bit hex limb + this.words[j + 1] |= (w >>> (26 - off)) & 0x3fffff + off += 24 + if (off >= 26) { + off -= 26 + j++ + } + } + if (i + 6 !== start) { + w = parseHex(number, start, i + 6) + this.words[j] |= (w << off) & 0x3ffffff + this.words[j + 1] |= (w >>> (26 - off)) & 0x3fffff + } + this.strip() + } + + function parseBase(str, start, end, mul) { + var r = 0 + var len = Math.min(str.length, end) + for (var i = start; i < len; i++) { + var c = str.charCodeAt(i) - 48 + + r *= mul + + // 'a' + if (c >= 49) { + r += c - 49 + 0xa + + // 'A' + } else if (c >= 17) { + r += c - 17 + 0xa + + // '0' - '9' + } else { + r += c + } + } + return r + } + + BN.prototype._parseBase = function _parseBase(number, base, start) { + // Initialize as zero + this.words = [0] + this.length = 1 + + // Find length of limb in base + for ( + var limbLen = 0, limbPow = 1; + limbPow <= 0x3ffffff; + limbPow *= base + ) { + limbLen++ + } + limbLen-- + limbPow = (limbPow / base) | 0 + + var total = number.length - start + var mod = total % limbLen + var end = Math.min(total, total - mod) + start + + var word = 0 + for (var i = start; i < end; i += limbLen) { + word = parseBase(number, i, i + limbLen, base) + + this.imuln(limbPow) + if (this.words[0] + word < 0x4000000) { + this.words[0] += word + } else { + this._iaddn(word) + } + } + + if (mod !== 0) { + var pow = 1 + word = parseBase(number, i, number.length, base) + + for (i = 0; i < mod; i++) { + pow *= base + } + + this.imuln(pow) + if (this.words[0] + word < 0x4000000) { + this.words[0] += word + } else { + this._iaddn(word) + } + } + } + + BN.prototype.copy = function copy(dest) { + dest.words = new Array(this.length) + for (var i = 0; i < this.length; i++) { + dest.words[i] = this.words[i] + } + dest.length = this.length + dest.negative = this.negative + dest.red = this.red + } + + BN.prototype.clone = function clone() { + var r = new BN(null) + this.copy(r) + return r + } + + BN.prototype._expand = function _expand(size) { + while (this.length < size) { + this.words[this.length++] = 0 + } + return this + } + + // Remove leading `0` from `this` + BN.prototype.strip = function strip() { + while (this.length > 1 && this.words[this.length - 1] === 0) { + this.length-- + } + return this._normSign() + } + + BN.prototype._normSign = function _normSign() { + // -0 = 0 + if (this.length === 1 && this.words[0] === 0) { + this.negative = 0 + } + return this + } + + BN.prototype.inspect = function inspect() { + return (this.red ? "" + } + + /* + + var zeros = []; + var groupSizes = []; + var groupBases = []; + + var s = ''; + var i = -1; + while (++i < BN.wordSize) { + zeros[i] = s; + s += '0'; + } + groupSizes[0] = 0; + groupSizes[1] = 0; + groupBases[0] = 0; + groupBases[1] = 0; + var base = 2 - 1; + while (++base < 36 + 1) { + var groupSize = 0; + var groupBase = 1; + while (groupBase < (1 << BN.wordSize) / base) { + groupBase *= base; + groupSize += 1; + } + groupSizes[base] = groupSize; + groupBases[base] = groupBase; + } + + */ + + var zeros = [ + "", + "0", + "00", + "000", + "0000", + "00000", + "000000", + "0000000", + "00000000", + "000000000", + "0000000000", + "00000000000", + "000000000000", + "0000000000000", + "00000000000000", + "000000000000000", + "0000000000000000", + "00000000000000000", + "000000000000000000", + "0000000000000000000", + "00000000000000000000", + "000000000000000000000", + "0000000000000000000000", + "00000000000000000000000", + "000000000000000000000000", + "0000000000000000000000000" + ] + + var groupSizes = [ + 0, + 0, + 25, + 16, + 12, + 11, + 10, + 9, + 8, + 8, + 7, + 7, + 7, + 7, + 6, + 6, + 6, + 6, + 6, + 6, + 6, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5 + ] + + var groupBases = [ + 0, + 0, + 33554432, + 43046721, + 16777216, + 48828125, + 60466176, + 40353607, + 16777216, + 43046721, + 10000000, + 19487171, + 35831808, + 62748517, + 7529536, + 11390625, + 16777216, + 24137569, + 34012224, + 47045881, + 64000000, + 4084101, + 5153632, + 6436343, + 7962624, + 9765625, + 11881376, + 14348907, + 17210368, + 20511149, + 24300000, + 28629151, + 33554432, + 39135393, + 45435424, + 52521875, + 60466176 + ] + + BN.prototype.toString = function toString(base, padding) { + base = base || 10 + padding = padding | 0 || 1 + + var out + if (base === 16 || base === "hex") { + out = "" + var off = 0 + var carry = 0 + for (var i = 0; i < this.length; i++) { + var w = this.words[i] + var word = (((w << off) | carry) & 0xffffff).toString(16) + carry = (w >>> (24 - off)) & 0xffffff + if (carry !== 0 || i !== this.length - 1) { + out = zeros[6 - word.length] + word + out + } else { + out = word + out + } + off += 2 + if (off >= 26) { + off -= 26 + i-- + } + } + if (carry !== 0) { + out = carry.toString(16) + out + } + while (out.length % padding !== 0) { + out = "0" + out + } + if (this.negative !== 0) { + out = "-" + out + } + return out + } + + if (base === (base | 0) && base >= 2 && base <= 36) { + // var groupSize = Math.floor(BN.wordSize * Math.LN2 / Math.log(base)); + var groupSize = groupSizes[base] + // var groupBase = Math.pow(base, groupSize); + var groupBase = groupBases[base] + out = "" + var c = this.clone() + c.negative = 0 + while (!c.isZero()) { + var r = c.modn(groupBase).toString(base) + c = c.idivn(groupBase) + + if (!c.isZero()) { + out = zeros[groupSize - r.length] + r + out + } else { + out = r + out + } + } + if (this.isZero()) { + out = "0" + out + } + while (out.length % padding !== 0) { + out = "0" + out + } + if (this.negative !== 0) { + out = "-" + out + } + return out + } + + assert(false, "Base should be between 2 and 36") + } + + BN.prototype.toNumber = function toNumber() { + var ret = this.words[0] + if (this.length === 2) { + ret += this.words[1] * 0x4000000 + } else if (this.length === 3 && this.words[2] === 0x01) { + // NOTE: at this stage it is known that the top bit is set + ret += 0x10000000000000 + this.words[1] * 0x4000000 + } else if (this.length > 2) { + assert(false, "Number can only safely store up to 53 bits") + } + return this.negative !== 0 ? -ret : ret + } + + BN.prototype.toJSON = function toJSON() { + return this.toString(16) + } + + BN.prototype.toBuffer = function toBuffer(endian, length) { + assert(typeof Buffer !== "undefined") + return this.toArrayLike(Buffer, endian, length) + } + + BN.prototype.toArray = function toArray(endian, length) { + return this.toArrayLike(Array, endian, length) + } + + BN.prototype.toArrayLike = function toArrayLike( + ArrayType, + endian, + length + ) { + var byteLength = this.byteLength() + var reqLength = length || Math.max(1, byteLength) + assert( + byteLength <= reqLength, + "byte array longer than desired length" + ) + assert(reqLength > 0, "Requested array length <= 0") + + this.strip() + var littleEndian = endian === "le" + var res = new ArrayType(reqLength) + + var b, i + var q = this.clone() + if (!littleEndian) { + // Assume big-endian + for (i = 0; i < reqLength - byteLength; i++) { + res[i] = 0 + } + + for (i = 0; !q.isZero(); i++) { + b = q.andln(0xff) + q.iushrn(8) + + res[reqLength - i - 1] = b + } + } else { + for (i = 0; !q.isZero(); i++) { + b = q.andln(0xff) + q.iushrn(8) + + res[i] = b + } + + for (; i < reqLength; i++) { + res[i] = 0 + } + } + + return res + } + + if (Math.clz32) { + BN.prototype._countBits = function _countBits(w) { + return 32 - Math.clz32(w) + } + } else { + BN.prototype._countBits = function _countBits(w) { + var t = w + var r = 0 + if (t >= 0x1000) { + r += 13 + t >>>= 13 + } + if (t >= 0x40) { + r += 7 + t >>>= 7 + } + if (t >= 0x8) { + r += 4 + t >>>= 4 + } + if (t >= 0x02) { + r += 2 + t >>>= 2 + } + return r + t + } + } + + BN.prototype._zeroBits = function _zeroBits(w) { + // Short-cut + if (w === 0) return 26 + + var t = w + var r = 0 + if ((t & 0x1fff) === 0) { + r += 13 + t >>>= 13 + } + if ((t & 0x7f) === 0) { + r += 7 + t >>>= 7 + } + if ((t & 0xf) === 0) { + r += 4 + t >>>= 4 + } + if ((t & 0x3) === 0) { + r += 2 + t >>>= 2 + } + if ((t & 0x1) === 0) { + r++ + } + return r + } + + // Return number of used bits in a BN + BN.prototype.bitLength = function bitLength() { + var w = this.words[this.length - 1] + var hi = this._countBits(w) + return (this.length - 1) * 26 + hi + } + + function toBitArray(num) { + var w = new Array(num.bitLength()) + + for (var bit = 0; bit < w.length; bit++) { + var off = (bit / 26) | 0 + var wbit = bit % 26 + + w[bit] = (num.words[off] & (1 << wbit)) >>> wbit + } + + return w + } + + // Number of trailing zero bits + BN.prototype.zeroBits = function zeroBits() { + if (this.isZero()) return 0 + + var r = 0 + for (var i = 0; i < this.length; i++) { + var b = this._zeroBits(this.words[i]) + r += b + if (b !== 26) break + } + return r + } + + BN.prototype.byteLength = function byteLength() { + return Math.ceil(this.bitLength() / 8) + } + + BN.prototype.toTwos = function toTwos(width) { + if (this.negative !== 0) { + return this.abs() + .inotn(width) + .iaddn(1) + } + return this.clone() + } + + BN.prototype.fromTwos = function fromTwos(width) { + if (this.testn(width - 1)) { + return this.notn(width) + .iaddn(1) + .ineg() + } + return this.clone() + } + + BN.prototype.isNeg = function isNeg() { + return this.negative !== 0 + } + + // Return negative clone of `this` + BN.prototype.neg = function neg() { + return this.clone().ineg() + } + + BN.prototype.ineg = function ineg() { + if (!this.isZero()) { + this.negative ^= 1 + } + + return this + } + + // Or `num` with `this` in-place + BN.prototype.iuor = function iuor(num) { + while (this.length < num.length) { + this.words[this.length++] = 0 + } + + for (var i = 0; i < num.length; i++) { + this.words[i] = this.words[i] | num.words[i] + } + + return this.strip() + } + + BN.prototype.ior = function ior(num) { + assert((this.negative | num.negative) === 0) + return this.iuor(num) + } + + // Or `num` with `this` + BN.prototype.or = function or(num) { + if (this.length > num.length) return this.clone().ior(num) + return num.clone().ior(this) + } + + BN.prototype.uor = function uor(num) { + if (this.length > num.length) return this.clone().iuor(num) + return num.clone().iuor(this) + } + + // And `num` with `this` in-place + BN.prototype.iuand = function iuand(num) { + // b = min-length(num, this) + var b + if (this.length > num.length) { + b = num + } else { + b = this + } + + for (var i = 0; i < b.length; i++) { + this.words[i] = this.words[i] & num.words[i] + } + + this.length = b.length + + return this.strip() + } + + BN.prototype.iand = function iand(num) { + assert((this.negative | num.negative) === 0) + return this.iuand(num) + } + + // And `num` with `this` + BN.prototype.and = function and(num) { + if (this.length > num.length) return this.clone().iand(num) + return num.clone().iand(this) + } + + BN.prototype.uand = function uand(num) { + if (this.length > num.length) return this.clone().iuand(num) + return num.clone().iuand(this) + } + + // Xor `num` with `this` in-place + BN.prototype.iuxor = function iuxor(num) { + // a.length > b.length + var a + var b + if (this.length > num.length) { + a = this + b = num + } else { + a = num + b = this + } + + for (var i = 0; i < b.length; i++) { + this.words[i] = a.words[i] ^ b.words[i] + } + + if (this !== a) { + for (; i < a.length; i++) { + this.words[i] = a.words[i] + } + } + + this.length = a.length + + return this.strip() + } + + BN.prototype.ixor = function ixor(num) { + assert((this.negative | num.negative) === 0) + return this.iuxor(num) + } + + // Xor `num` with `this` + BN.prototype.xor = function xor(num) { + if (this.length > num.length) return this.clone().ixor(num) + return num.clone().ixor(this) + } + + BN.prototype.uxor = function uxor(num) { + if (this.length > num.length) return this.clone().iuxor(num) + return num.clone().iuxor(this) + } + + // Not ``this`` with ``width`` bitwidth + BN.prototype.inotn = function inotn(width) { + assert(typeof width === "number" && width >= 0) + + var bytesNeeded = Math.ceil(width / 26) | 0 + var bitsLeft = width % 26 + + // Extend the buffer with leading zeroes + this._expand(bytesNeeded) + + if (bitsLeft > 0) { + bytesNeeded-- + } + + // Handle complete words + for (var i = 0; i < bytesNeeded; i++) { + this.words[i] = ~this.words[i] & 0x3ffffff + } + + // Handle the residue + if (bitsLeft > 0) { + this.words[i] = ~this.words[i] & (0x3ffffff >> (26 - bitsLeft)) + } + + // And remove leading zeroes + return this.strip() + } + + BN.prototype.notn = function notn(width) { + return this.clone().inotn(width) + } + + // Set `bit` of `this` + BN.prototype.setn = function setn(bit, val) { + assert(typeof bit === "number" && bit >= 0) + + var off = (bit / 26) | 0 + var wbit = bit % 26 + + this._expand(off + 1) + + if (val) { + this.words[off] = this.words[off] | (1 << wbit) + } else { + this.words[off] = this.words[off] & ~(1 << wbit) + } + + return this.strip() + } + + // Add `num` to `this` in-place + BN.prototype.iadd = function iadd(num) { + var r + + // negative + positive + if (this.negative !== 0 && num.negative === 0) { + this.negative = 0 + r = this.isub(num) + this.negative ^= 1 + return this._normSign() + + // positive + negative + } else if (this.negative === 0 && num.negative !== 0) { + num.negative = 0 + r = this.isub(num) + num.negative = 1 + return r._normSign() + } + + // a.length > b.length + var a, b + if (this.length > num.length) { + a = this + b = num + } else { + a = num + b = this + } + + var carry = 0 + for (var i = 0; i < b.length; i++) { + r = (a.words[i] | 0) + (b.words[i] | 0) + carry + this.words[i] = r & 0x3ffffff + carry = r >>> 26 + } + for (; carry !== 0 && i < a.length; i++) { + r = (a.words[i] | 0) + carry + this.words[i] = r & 0x3ffffff + carry = r >>> 26 + } + + this.length = a.length + if (carry !== 0) { + this.words[this.length] = carry + this.length++ + // Copy the rest of the words + } else if (a !== this) { + for (; i < a.length; i++) { + this.words[i] = a.words[i] + } + } + + return this + } + + // Add `num` to `this` + BN.prototype.add = function add(num) { + var res + if (num.negative !== 0 && this.negative === 0) { + num.negative = 0 + res = this.sub(num) + num.negative ^= 1 + return res + } else if (num.negative === 0 && this.negative !== 0) { + this.negative = 0 + res = num.sub(this) + this.negative = 1 + return res + } + + if (this.length > num.length) return this.clone().iadd(num) + + return num.clone().iadd(this) + } + + // Subtract `num` from `this` in-place + BN.prototype.isub = function isub(num) { + // this - (-num) = this + num + if (num.negative !== 0) { + num.negative = 0 + var r = this.iadd(num) + num.negative = 1 + return r._normSign() + + // -this - num = -(this + num) + } else if (this.negative !== 0) { + this.negative = 0 + this.iadd(num) + this.negative = 1 + return this._normSign() + } + + // At this point both numbers are positive + var cmp = this.cmp(num) + + // Optimization - zeroify + if (cmp === 0) { + this.negative = 0 + this.length = 1 + this.words[0] = 0 + return this + } + + // a > b + var a, b + if (cmp > 0) { + a = this + b = num + } else { + a = num + b = this + } + + var carry = 0 + for (var i = 0; i < b.length; i++) { + r = (a.words[i] | 0) - (b.words[i] | 0) + carry + carry = r >> 26 + this.words[i] = r & 0x3ffffff + } + for (; carry !== 0 && i < a.length; i++) { + r = (a.words[i] | 0) + carry + carry = r >> 26 + this.words[i] = r & 0x3ffffff + } + + // Copy rest of the words + if (carry === 0 && i < a.length && a !== this) { + for (; i < a.length; i++) { + this.words[i] = a.words[i] + } + } + + this.length = Math.max(this.length, i) + + if (a !== this) { + this.negative = 1 + } + + return this.strip() + } + + // Subtract `num` from `this` + BN.prototype.sub = function sub(num) { + return this.clone().isub(num) + } + + function smallMulTo(self, num, out) { + out.negative = num.negative ^ self.negative + var len = (self.length + num.length) | 0 + out.length = len + len = (len - 1) | 0 + + // Peel one iteration (compiler can't do it, because of code complexity) + var a = self.words[0] | 0 + var b = num.words[0] | 0 + var r = a * b + + var lo = r & 0x3ffffff + var carry = (r / 0x4000000) | 0 + out.words[0] = lo + + for (var k = 1; k < len; k++) { + // Sum all words with the same `i + j = k` and accumulate `ncarry`, + // note that ncarry could be >= 0x3ffffff + var ncarry = carry >>> 26 + var rword = carry & 0x3ffffff + var maxJ = Math.min(k, num.length - 1) + for (var j = Math.max(0, k - self.length + 1); j <= maxJ; j++) { + var i = (k - j) | 0 + a = self.words[i] | 0 + b = num.words[j] | 0 + r = a * b + rword + ncarry += (r / 0x4000000) | 0 + rword = r & 0x3ffffff + } + out.words[k] = rword | 0 + carry = ncarry | 0 + } + if (carry !== 0) { + out.words[k] = carry | 0 + } else { + out.length-- + } + + return out.strip() + } + + // TODO(indutny): it may be reasonable to omit it for users who don't need + // to work with 256-bit numbers, otherwise it gives 20% improvement for 256-bit + // multiplication (like elliptic secp256k1). + var comb10MulTo = function comb10MulTo(self, num, out) { + var a = self.words + var b = num.words + var o = out.words + var c = 0 + var lo + var mid + var hi + var a0 = a[0] | 0 + var al0 = a0 & 0x1fff + var ah0 = a0 >>> 13 + var a1 = a[1] | 0 + var al1 = a1 & 0x1fff + var ah1 = a1 >>> 13 + var a2 = a[2] | 0 + var al2 = a2 & 0x1fff + var ah2 = a2 >>> 13 + var a3 = a[3] | 0 + var al3 = a3 & 0x1fff + var ah3 = a3 >>> 13 + var a4 = a[4] | 0 + var al4 = a4 & 0x1fff + var ah4 = a4 >>> 13 + var a5 = a[5] | 0 + var al5 = a5 & 0x1fff + var ah5 = a5 >>> 13 + var a6 = a[6] | 0 + var al6 = a6 & 0x1fff + var ah6 = a6 >>> 13 + var a7 = a[7] | 0 + var al7 = a7 & 0x1fff + var ah7 = a7 >>> 13 + var a8 = a[8] | 0 + var al8 = a8 & 0x1fff + var ah8 = a8 >>> 13 + var a9 = a[9] | 0 + var al9 = a9 & 0x1fff + var ah9 = a9 >>> 13 + var b0 = b[0] | 0 + var bl0 = b0 & 0x1fff + var bh0 = b0 >>> 13 + var b1 = b[1] | 0 + var bl1 = b1 & 0x1fff + var bh1 = b1 >>> 13 + var b2 = b[2] | 0 + var bl2 = b2 & 0x1fff + var bh2 = b2 >>> 13 + var b3 = b[3] | 0 + var bl3 = b3 & 0x1fff + var bh3 = b3 >>> 13 + var b4 = b[4] | 0 + var bl4 = b4 & 0x1fff + var bh4 = b4 >>> 13 + var b5 = b[5] | 0 + var bl5 = b5 & 0x1fff + var bh5 = b5 >>> 13 + var b6 = b[6] | 0 + var bl6 = b6 & 0x1fff + var bh6 = b6 >>> 13 + var b7 = b[7] | 0 + var bl7 = b7 & 0x1fff + var bh7 = b7 >>> 13 + var b8 = b[8] | 0 + var bl8 = b8 & 0x1fff + var bh8 = b8 >>> 13 + var b9 = b[9] | 0 + var bl9 = b9 & 0x1fff + var bh9 = b9 >>> 13 + + out.negative = self.negative ^ num.negative + out.length = 19 + /* k = 0 */ + lo = Math.imul(al0, bl0) + mid = Math.imul(al0, bh0) + mid = (mid + Math.imul(ah0, bl0)) | 0 + hi = Math.imul(ah0, bh0) + var w0 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w0 >>> 26)) | 0 + w0 &= 0x3ffffff + /* k = 1 */ + lo = Math.imul(al1, bl0) + mid = Math.imul(al1, bh0) + mid = (mid + Math.imul(ah1, bl0)) | 0 + hi = Math.imul(ah1, bh0) + lo = (lo + Math.imul(al0, bl1)) | 0 + mid = (mid + Math.imul(al0, bh1)) | 0 + mid = (mid + Math.imul(ah0, bl1)) | 0 + hi = (hi + Math.imul(ah0, bh1)) | 0 + var w1 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w1 >>> 26)) | 0 + w1 &= 0x3ffffff + /* k = 2 */ + lo = Math.imul(al2, bl0) + mid = Math.imul(al2, bh0) + mid = (mid + Math.imul(ah2, bl0)) | 0 + hi = Math.imul(ah2, bh0) + lo = (lo + Math.imul(al1, bl1)) | 0 + mid = (mid + Math.imul(al1, bh1)) | 0 + mid = (mid + Math.imul(ah1, bl1)) | 0 + hi = (hi + Math.imul(ah1, bh1)) | 0 + lo = (lo + Math.imul(al0, bl2)) | 0 + mid = (mid + Math.imul(al0, bh2)) | 0 + mid = (mid + Math.imul(ah0, bl2)) | 0 + hi = (hi + Math.imul(ah0, bh2)) | 0 + var w2 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w2 >>> 26)) | 0 + w2 &= 0x3ffffff + /* k = 3 */ + lo = Math.imul(al3, bl0) + mid = Math.imul(al3, bh0) + mid = (mid + Math.imul(ah3, bl0)) | 0 + hi = Math.imul(ah3, bh0) + lo = (lo + Math.imul(al2, bl1)) | 0 + mid = (mid + Math.imul(al2, bh1)) | 0 + mid = (mid + Math.imul(ah2, bl1)) | 0 + hi = (hi + Math.imul(ah2, bh1)) | 0 + lo = (lo + Math.imul(al1, bl2)) | 0 + mid = (mid + Math.imul(al1, bh2)) | 0 + mid = (mid + Math.imul(ah1, bl2)) | 0 + hi = (hi + Math.imul(ah1, bh2)) | 0 + lo = (lo + Math.imul(al0, bl3)) | 0 + mid = (mid + Math.imul(al0, bh3)) | 0 + mid = (mid + Math.imul(ah0, bl3)) | 0 + hi = (hi + Math.imul(ah0, bh3)) | 0 + var w3 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w3 >>> 26)) | 0 + w3 &= 0x3ffffff + /* k = 4 */ + lo = Math.imul(al4, bl0) + mid = Math.imul(al4, bh0) + mid = (mid + Math.imul(ah4, bl0)) | 0 + hi = Math.imul(ah4, bh0) + lo = (lo + Math.imul(al3, bl1)) | 0 + mid = (mid + Math.imul(al3, bh1)) | 0 + mid = (mid + Math.imul(ah3, bl1)) | 0 + hi = (hi + Math.imul(ah3, bh1)) | 0 + lo = (lo + Math.imul(al2, bl2)) | 0 + mid = (mid + Math.imul(al2, bh2)) | 0 + mid = (mid + Math.imul(ah2, bl2)) | 0 + hi = (hi + Math.imul(ah2, bh2)) | 0 + lo = (lo + Math.imul(al1, bl3)) | 0 + mid = (mid + Math.imul(al1, bh3)) | 0 + mid = (mid + Math.imul(ah1, bl3)) | 0 + hi = (hi + Math.imul(ah1, bh3)) | 0 + lo = (lo + Math.imul(al0, bl4)) | 0 + mid = (mid + Math.imul(al0, bh4)) | 0 + mid = (mid + Math.imul(ah0, bl4)) | 0 + hi = (hi + Math.imul(ah0, bh4)) | 0 + var w4 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w4 >>> 26)) | 0 + w4 &= 0x3ffffff + /* k = 5 */ + lo = Math.imul(al5, bl0) + mid = Math.imul(al5, bh0) + mid = (mid + Math.imul(ah5, bl0)) | 0 + hi = Math.imul(ah5, bh0) + lo = (lo + Math.imul(al4, bl1)) | 0 + mid = (mid + Math.imul(al4, bh1)) | 0 + mid = (mid + Math.imul(ah4, bl1)) | 0 + hi = (hi + Math.imul(ah4, bh1)) | 0 + lo = (lo + Math.imul(al3, bl2)) | 0 + mid = (mid + Math.imul(al3, bh2)) | 0 + mid = (mid + Math.imul(ah3, bl2)) | 0 + hi = (hi + Math.imul(ah3, bh2)) | 0 + lo = (lo + Math.imul(al2, bl3)) | 0 + mid = (mid + Math.imul(al2, bh3)) | 0 + mid = (mid + Math.imul(ah2, bl3)) | 0 + hi = (hi + Math.imul(ah2, bh3)) | 0 + lo = (lo + Math.imul(al1, bl4)) | 0 + mid = (mid + Math.imul(al1, bh4)) | 0 + mid = (mid + Math.imul(ah1, bl4)) | 0 + hi = (hi + Math.imul(ah1, bh4)) | 0 + lo = (lo + Math.imul(al0, bl5)) | 0 + mid = (mid + Math.imul(al0, bh5)) | 0 + mid = (mid + Math.imul(ah0, bl5)) | 0 + hi = (hi + Math.imul(ah0, bh5)) | 0 + var w5 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w5 >>> 26)) | 0 + w5 &= 0x3ffffff + /* k = 6 */ + lo = Math.imul(al6, bl0) + mid = Math.imul(al6, bh0) + mid = (mid + Math.imul(ah6, bl0)) | 0 + hi = Math.imul(ah6, bh0) + lo = (lo + Math.imul(al5, bl1)) | 0 + mid = (mid + Math.imul(al5, bh1)) | 0 + mid = (mid + Math.imul(ah5, bl1)) | 0 + hi = (hi + Math.imul(ah5, bh1)) | 0 + lo = (lo + Math.imul(al4, bl2)) | 0 + mid = (mid + Math.imul(al4, bh2)) | 0 + mid = (mid + Math.imul(ah4, bl2)) | 0 + hi = (hi + Math.imul(ah4, bh2)) | 0 + lo = (lo + Math.imul(al3, bl3)) | 0 + mid = (mid + Math.imul(al3, bh3)) | 0 + mid = (mid + Math.imul(ah3, bl3)) | 0 + hi = (hi + Math.imul(ah3, bh3)) | 0 + lo = (lo + Math.imul(al2, bl4)) | 0 + mid = (mid + Math.imul(al2, bh4)) | 0 + mid = (mid + Math.imul(ah2, bl4)) | 0 + hi = (hi + Math.imul(ah2, bh4)) | 0 + lo = (lo + Math.imul(al1, bl5)) | 0 + mid = (mid + Math.imul(al1, bh5)) | 0 + mid = (mid + Math.imul(ah1, bl5)) | 0 + hi = (hi + Math.imul(ah1, bh5)) | 0 + lo = (lo + Math.imul(al0, bl6)) | 0 + mid = (mid + Math.imul(al0, bh6)) | 0 + mid = (mid + Math.imul(ah0, bl6)) | 0 + hi = (hi + Math.imul(ah0, bh6)) | 0 + var w6 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w6 >>> 26)) | 0 + w6 &= 0x3ffffff + /* k = 7 */ + lo = Math.imul(al7, bl0) + mid = Math.imul(al7, bh0) + mid = (mid + Math.imul(ah7, bl0)) | 0 + hi = Math.imul(ah7, bh0) + lo = (lo + Math.imul(al6, bl1)) | 0 + mid = (mid + Math.imul(al6, bh1)) | 0 + mid = (mid + Math.imul(ah6, bl1)) | 0 + hi = (hi + Math.imul(ah6, bh1)) | 0 + lo = (lo + Math.imul(al5, bl2)) | 0 + mid = (mid + Math.imul(al5, bh2)) | 0 + mid = (mid + Math.imul(ah5, bl2)) | 0 + hi = (hi + Math.imul(ah5, bh2)) | 0 + lo = (lo + Math.imul(al4, bl3)) | 0 + mid = (mid + Math.imul(al4, bh3)) | 0 + mid = (mid + Math.imul(ah4, bl3)) | 0 + hi = (hi + Math.imul(ah4, bh3)) | 0 + lo = (lo + Math.imul(al3, bl4)) | 0 + mid = (mid + Math.imul(al3, bh4)) | 0 + mid = (mid + Math.imul(ah3, bl4)) | 0 + hi = (hi + Math.imul(ah3, bh4)) | 0 + lo = (lo + Math.imul(al2, bl5)) | 0 + mid = (mid + Math.imul(al2, bh5)) | 0 + mid = (mid + Math.imul(ah2, bl5)) | 0 + hi = (hi + Math.imul(ah2, bh5)) | 0 + lo = (lo + Math.imul(al1, bl6)) | 0 + mid = (mid + Math.imul(al1, bh6)) | 0 + mid = (mid + Math.imul(ah1, bl6)) | 0 + hi = (hi + Math.imul(ah1, bh6)) | 0 + lo = (lo + Math.imul(al0, bl7)) | 0 + mid = (mid + Math.imul(al0, bh7)) | 0 + mid = (mid + Math.imul(ah0, bl7)) | 0 + hi = (hi + Math.imul(ah0, bh7)) | 0 + var w7 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w7 >>> 26)) | 0 + w7 &= 0x3ffffff + /* k = 8 */ + lo = Math.imul(al8, bl0) + mid = Math.imul(al8, bh0) + mid = (mid + Math.imul(ah8, bl0)) | 0 + hi = Math.imul(ah8, bh0) + lo = (lo + Math.imul(al7, bl1)) | 0 + mid = (mid + Math.imul(al7, bh1)) | 0 + mid = (mid + Math.imul(ah7, bl1)) | 0 + hi = (hi + Math.imul(ah7, bh1)) | 0 + lo = (lo + Math.imul(al6, bl2)) | 0 + mid = (mid + Math.imul(al6, bh2)) | 0 + mid = (mid + Math.imul(ah6, bl2)) | 0 + hi = (hi + Math.imul(ah6, bh2)) | 0 + lo = (lo + Math.imul(al5, bl3)) | 0 + mid = (mid + Math.imul(al5, bh3)) | 0 + mid = (mid + Math.imul(ah5, bl3)) | 0 + hi = (hi + Math.imul(ah5, bh3)) | 0 + lo = (lo + Math.imul(al4, bl4)) | 0 + mid = (mid + Math.imul(al4, bh4)) | 0 + mid = (mid + Math.imul(ah4, bl4)) | 0 + hi = (hi + Math.imul(ah4, bh4)) | 0 + lo = (lo + Math.imul(al3, bl5)) | 0 + mid = (mid + Math.imul(al3, bh5)) | 0 + mid = (mid + Math.imul(ah3, bl5)) | 0 + hi = (hi + Math.imul(ah3, bh5)) | 0 + lo = (lo + Math.imul(al2, bl6)) | 0 + mid = (mid + Math.imul(al2, bh6)) | 0 + mid = (mid + Math.imul(ah2, bl6)) | 0 + hi = (hi + Math.imul(ah2, bh6)) | 0 + lo = (lo + Math.imul(al1, bl7)) | 0 + mid = (mid + Math.imul(al1, bh7)) | 0 + mid = (mid + Math.imul(ah1, bl7)) | 0 + hi = (hi + Math.imul(ah1, bh7)) | 0 + lo = (lo + Math.imul(al0, bl8)) | 0 + mid = (mid + Math.imul(al0, bh8)) | 0 + mid = (mid + Math.imul(ah0, bl8)) | 0 + hi = (hi + Math.imul(ah0, bh8)) | 0 + var w8 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w8 >>> 26)) | 0 + w8 &= 0x3ffffff + /* k = 9 */ + lo = Math.imul(al9, bl0) + mid = Math.imul(al9, bh0) + mid = (mid + Math.imul(ah9, bl0)) | 0 + hi = Math.imul(ah9, bh0) + lo = (lo + Math.imul(al8, bl1)) | 0 + mid = (mid + Math.imul(al8, bh1)) | 0 + mid = (mid + Math.imul(ah8, bl1)) | 0 + hi = (hi + Math.imul(ah8, bh1)) | 0 + lo = (lo + Math.imul(al7, bl2)) | 0 + mid = (mid + Math.imul(al7, bh2)) | 0 + mid = (mid + Math.imul(ah7, bl2)) | 0 + hi = (hi + Math.imul(ah7, bh2)) | 0 + lo = (lo + Math.imul(al6, bl3)) | 0 + mid = (mid + Math.imul(al6, bh3)) | 0 + mid = (mid + Math.imul(ah6, bl3)) | 0 + hi = (hi + Math.imul(ah6, bh3)) | 0 + lo = (lo + Math.imul(al5, bl4)) | 0 + mid = (mid + Math.imul(al5, bh4)) | 0 + mid = (mid + Math.imul(ah5, bl4)) | 0 + hi = (hi + Math.imul(ah5, bh4)) | 0 + lo = (lo + Math.imul(al4, bl5)) | 0 + mid = (mid + Math.imul(al4, bh5)) | 0 + mid = (mid + Math.imul(ah4, bl5)) | 0 + hi = (hi + Math.imul(ah4, bh5)) | 0 + lo = (lo + Math.imul(al3, bl6)) | 0 + mid = (mid + Math.imul(al3, bh6)) | 0 + mid = (mid + Math.imul(ah3, bl6)) | 0 + hi = (hi + Math.imul(ah3, bh6)) | 0 + lo = (lo + Math.imul(al2, bl7)) | 0 + mid = (mid + Math.imul(al2, bh7)) | 0 + mid = (mid + Math.imul(ah2, bl7)) | 0 + hi = (hi + Math.imul(ah2, bh7)) | 0 + lo = (lo + Math.imul(al1, bl8)) | 0 + mid = (mid + Math.imul(al1, bh8)) | 0 + mid = (mid + Math.imul(ah1, bl8)) | 0 + hi = (hi + Math.imul(ah1, bh8)) | 0 + lo = (lo + Math.imul(al0, bl9)) | 0 + mid = (mid + Math.imul(al0, bh9)) | 0 + mid = (mid + Math.imul(ah0, bl9)) | 0 + hi = (hi + Math.imul(ah0, bh9)) | 0 + var w9 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w9 >>> 26)) | 0 + w9 &= 0x3ffffff + /* k = 10 */ + lo = Math.imul(al9, bl1) + mid = Math.imul(al9, bh1) + mid = (mid + Math.imul(ah9, bl1)) | 0 + hi = Math.imul(ah9, bh1) + lo = (lo + Math.imul(al8, bl2)) | 0 + mid = (mid + Math.imul(al8, bh2)) | 0 + mid = (mid + Math.imul(ah8, bl2)) | 0 + hi = (hi + Math.imul(ah8, bh2)) | 0 + lo = (lo + Math.imul(al7, bl3)) | 0 + mid = (mid + Math.imul(al7, bh3)) | 0 + mid = (mid + Math.imul(ah7, bl3)) | 0 + hi = (hi + Math.imul(ah7, bh3)) | 0 + lo = (lo + Math.imul(al6, bl4)) | 0 + mid = (mid + Math.imul(al6, bh4)) | 0 + mid = (mid + Math.imul(ah6, bl4)) | 0 + hi = (hi + Math.imul(ah6, bh4)) | 0 + lo = (lo + Math.imul(al5, bl5)) | 0 + mid = (mid + Math.imul(al5, bh5)) | 0 + mid = (mid + Math.imul(ah5, bl5)) | 0 + hi = (hi + Math.imul(ah5, bh5)) | 0 + lo = (lo + Math.imul(al4, bl6)) | 0 + mid = (mid + Math.imul(al4, bh6)) | 0 + mid = (mid + Math.imul(ah4, bl6)) | 0 + hi = (hi + Math.imul(ah4, bh6)) | 0 + lo = (lo + Math.imul(al3, bl7)) | 0 + mid = (mid + Math.imul(al3, bh7)) | 0 + mid = (mid + Math.imul(ah3, bl7)) | 0 + hi = (hi + Math.imul(ah3, bh7)) | 0 + lo = (lo + Math.imul(al2, bl8)) | 0 + mid = (mid + Math.imul(al2, bh8)) | 0 + mid = (mid + Math.imul(ah2, bl8)) | 0 + hi = (hi + Math.imul(ah2, bh8)) | 0 + lo = (lo + Math.imul(al1, bl9)) | 0 + mid = (mid + Math.imul(al1, bh9)) | 0 + mid = (mid + Math.imul(ah1, bl9)) | 0 + hi = (hi + Math.imul(ah1, bh9)) | 0 + var w10 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w10 >>> 26)) | 0 + w10 &= 0x3ffffff + /* k = 11 */ + lo = Math.imul(al9, bl2) + mid = Math.imul(al9, bh2) + mid = (mid + Math.imul(ah9, bl2)) | 0 + hi = Math.imul(ah9, bh2) + lo = (lo + Math.imul(al8, bl3)) | 0 + mid = (mid + Math.imul(al8, bh3)) | 0 + mid = (mid + Math.imul(ah8, bl3)) | 0 + hi = (hi + Math.imul(ah8, bh3)) | 0 + lo = (lo + Math.imul(al7, bl4)) | 0 + mid = (mid + Math.imul(al7, bh4)) | 0 + mid = (mid + Math.imul(ah7, bl4)) | 0 + hi = (hi + Math.imul(ah7, bh4)) | 0 + lo = (lo + Math.imul(al6, bl5)) | 0 + mid = (mid + Math.imul(al6, bh5)) | 0 + mid = (mid + Math.imul(ah6, bl5)) | 0 + hi = (hi + Math.imul(ah6, bh5)) | 0 + lo = (lo + Math.imul(al5, bl6)) | 0 + mid = (mid + Math.imul(al5, bh6)) | 0 + mid = (mid + Math.imul(ah5, bl6)) | 0 + hi = (hi + Math.imul(ah5, bh6)) | 0 + lo = (lo + Math.imul(al4, bl7)) | 0 + mid = (mid + Math.imul(al4, bh7)) | 0 + mid = (mid + Math.imul(ah4, bl7)) | 0 + hi = (hi + Math.imul(ah4, bh7)) | 0 + lo = (lo + Math.imul(al3, bl8)) | 0 + mid = (mid + Math.imul(al3, bh8)) | 0 + mid = (mid + Math.imul(ah3, bl8)) | 0 + hi = (hi + Math.imul(ah3, bh8)) | 0 + lo = (lo + Math.imul(al2, bl9)) | 0 + mid = (mid + Math.imul(al2, bh9)) | 0 + mid = (mid + Math.imul(ah2, bl9)) | 0 + hi = (hi + Math.imul(ah2, bh9)) | 0 + var w11 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w11 >>> 26)) | 0 + w11 &= 0x3ffffff + /* k = 12 */ + lo = Math.imul(al9, bl3) + mid = Math.imul(al9, bh3) + mid = (mid + Math.imul(ah9, bl3)) | 0 + hi = Math.imul(ah9, bh3) + lo = (lo + Math.imul(al8, bl4)) | 0 + mid = (mid + Math.imul(al8, bh4)) | 0 + mid = (mid + Math.imul(ah8, bl4)) | 0 + hi = (hi + Math.imul(ah8, bh4)) | 0 + lo = (lo + Math.imul(al7, bl5)) | 0 + mid = (mid + Math.imul(al7, bh5)) | 0 + mid = (mid + Math.imul(ah7, bl5)) | 0 + hi = (hi + Math.imul(ah7, bh5)) | 0 + lo = (lo + Math.imul(al6, bl6)) | 0 + mid = (mid + Math.imul(al6, bh6)) | 0 + mid = (mid + Math.imul(ah6, bl6)) | 0 + hi = (hi + Math.imul(ah6, bh6)) | 0 + lo = (lo + Math.imul(al5, bl7)) | 0 + mid = (mid + Math.imul(al5, bh7)) | 0 + mid = (mid + Math.imul(ah5, bl7)) | 0 + hi = (hi + Math.imul(ah5, bh7)) | 0 + lo = (lo + Math.imul(al4, bl8)) | 0 + mid = (mid + Math.imul(al4, bh8)) | 0 + mid = (mid + Math.imul(ah4, bl8)) | 0 + hi = (hi + Math.imul(ah4, bh8)) | 0 + lo = (lo + Math.imul(al3, bl9)) | 0 + mid = (mid + Math.imul(al3, bh9)) | 0 + mid = (mid + Math.imul(ah3, bl9)) | 0 + hi = (hi + Math.imul(ah3, bh9)) | 0 + var w12 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w12 >>> 26)) | 0 + w12 &= 0x3ffffff + /* k = 13 */ + lo = Math.imul(al9, bl4) + mid = Math.imul(al9, bh4) + mid = (mid + Math.imul(ah9, bl4)) | 0 + hi = Math.imul(ah9, bh4) + lo = (lo + Math.imul(al8, bl5)) | 0 + mid = (mid + Math.imul(al8, bh5)) | 0 + mid = (mid + Math.imul(ah8, bl5)) | 0 + hi = (hi + Math.imul(ah8, bh5)) | 0 + lo = (lo + Math.imul(al7, bl6)) | 0 + mid = (mid + Math.imul(al7, bh6)) | 0 + mid = (mid + Math.imul(ah7, bl6)) | 0 + hi = (hi + Math.imul(ah7, bh6)) | 0 + lo = (lo + Math.imul(al6, bl7)) | 0 + mid = (mid + Math.imul(al6, bh7)) | 0 + mid = (mid + Math.imul(ah6, bl7)) | 0 + hi = (hi + Math.imul(ah6, bh7)) | 0 + lo = (lo + Math.imul(al5, bl8)) | 0 + mid = (mid + Math.imul(al5, bh8)) | 0 + mid = (mid + Math.imul(ah5, bl8)) | 0 + hi = (hi + Math.imul(ah5, bh8)) | 0 + lo = (lo + Math.imul(al4, bl9)) | 0 + mid = (mid + Math.imul(al4, bh9)) | 0 + mid = (mid + Math.imul(ah4, bl9)) | 0 + hi = (hi + Math.imul(ah4, bh9)) | 0 + var w13 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w13 >>> 26)) | 0 + w13 &= 0x3ffffff + /* k = 14 */ + lo = Math.imul(al9, bl5) + mid = Math.imul(al9, bh5) + mid = (mid + Math.imul(ah9, bl5)) | 0 + hi = Math.imul(ah9, bh5) + lo = (lo + Math.imul(al8, bl6)) | 0 + mid = (mid + Math.imul(al8, bh6)) | 0 + mid = (mid + Math.imul(ah8, bl6)) | 0 + hi = (hi + Math.imul(ah8, bh6)) | 0 + lo = (lo + Math.imul(al7, bl7)) | 0 + mid = (mid + Math.imul(al7, bh7)) | 0 + mid = (mid + Math.imul(ah7, bl7)) | 0 + hi = (hi + Math.imul(ah7, bh7)) | 0 + lo = (lo + Math.imul(al6, bl8)) | 0 + mid = (mid + Math.imul(al6, bh8)) | 0 + mid = (mid + Math.imul(ah6, bl8)) | 0 + hi = (hi + Math.imul(ah6, bh8)) | 0 + lo = (lo + Math.imul(al5, bl9)) | 0 + mid = (mid + Math.imul(al5, bh9)) | 0 + mid = (mid + Math.imul(ah5, bl9)) | 0 + hi = (hi + Math.imul(ah5, bh9)) | 0 + var w14 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w14 >>> 26)) | 0 + w14 &= 0x3ffffff + /* k = 15 */ + lo = Math.imul(al9, bl6) + mid = Math.imul(al9, bh6) + mid = (mid + Math.imul(ah9, bl6)) | 0 + hi = Math.imul(ah9, bh6) + lo = (lo + Math.imul(al8, bl7)) | 0 + mid = (mid + Math.imul(al8, bh7)) | 0 + mid = (mid + Math.imul(ah8, bl7)) | 0 + hi = (hi + Math.imul(ah8, bh7)) | 0 + lo = (lo + Math.imul(al7, bl8)) | 0 + mid = (mid + Math.imul(al7, bh8)) | 0 + mid = (mid + Math.imul(ah7, bl8)) | 0 + hi = (hi + Math.imul(ah7, bh8)) | 0 + lo = (lo + Math.imul(al6, bl9)) | 0 + mid = (mid + Math.imul(al6, bh9)) | 0 + mid = (mid + Math.imul(ah6, bl9)) | 0 + hi = (hi + Math.imul(ah6, bh9)) | 0 + var w15 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w15 >>> 26)) | 0 + w15 &= 0x3ffffff + /* k = 16 */ + lo = Math.imul(al9, bl7) + mid = Math.imul(al9, bh7) + mid = (mid + Math.imul(ah9, bl7)) | 0 + hi = Math.imul(ah9, bh7) + lo = (lo + Math.imul(al8, bl8)) | 0 + mid = (mid + Math.imul(al8, bh8)) | 0 + mid = (mid + Math.imul(ah8, bl8)) | 0 + hi = (hi + Math.imul(ah8, bh8)) | 0 + lo = (lo + Math.imul(al7, bl9)) | 0 + mid = (mid + Math.imul(al7, bh9)) | 0 + mid = (mid + Math.imul(ah7, bl9)) | 0 + hi = (hi + Math.imul(ah7, bh9)) | 0 + var w16 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w16 >>> 26)) | 0 + w16 &= 0x3ffffff + /* k = 17 */ + lo = Math.imul(al9, bl8) + mid = Math.imul(al9, bh8) + mid = (mid + Math.imul(ah9, bl8)) | 0 + hi = Math.imul(ah9, bh8) + lo = (lo + Math.imul(al8, bl9)) | 0 + mid = (mid + Math.imul(al8, bh9)) | 0 + mid = (mid + Math.imul(ah8, bl9)) | 0 + hi = (hi + Math.imul(ah8, bh9)) | 0 + var w17 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w17 >>> 26)) | 0 + w17 &= 0x3ffffff + /* k = 18 */ + lo = Math.imul(al9, bl9) + mid = Math.imul(al9, bh9) + mid = (mid + Math.imul(ah9, bl9)) | 0 + hi = Math.imul(ah9, bh9) + var w18 = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0 + c = (((hi + (mid >>> 13)) | 0) + (w18 >>> 26)) | 0 + w18 &= 0x3ffffff + o[0] = w0 + o[1] = w1 + o[2] = w2 + o[3] = w3 + o[4] = w4 + o[5] = w5 + o[6] = w6 + o[7] = w7 + o[8] = w8 + o[9] = w9 + o[10] = w10 + o[11] = w11 + o[12] = w12 + o[13] = w13 + o[14] = w14 + o[15] = w15 + o[16] = w16 + o[17] = w17 + o[18] = w18 + if (c !== 0) { + o[19] = c + out.length++ + } + return out + } + + // Polyfill comb + if (!Math.imul) { + comb10MulTo = smallMulTo + } + + function bigMulTo(self, num, out) { + out.negative = num.negative ^ self.negative + out.length = self.length + num.length + + var carry = 0 + var hncarry = 0 + for (var k = 0; k < out.length - 1; k++) { + // Sum all words with the same `i + j = k` and accumulate `ncarry`, + // note that ncarry could be >= 0x3ffffff + var ncarry = hncarry + hncarry = 0 + var rword = carry & 0x3ffffff + var maxJ = Math.min(k, num.length - 1) + for (var j = Math.max(0, k - self.length + 1); j <= maxJ; j++) { + var i = k - j + var a = self.words[i] | 0 + var b = num.words[j] | 0 + var r = a * b + + var lo = r & 0x3ffffff + ncarry = (ncarry + ((r / 0x4000000) | 0)) | 0 + lo = (lo + rword) | 0 + rword = lo & 0x3ffffff + ncarry = (ncarry + (lo >>> 26)) | 0 + + hncarry += ncarry >>> 26 + ncarry &= 0x3ffffff + } + out.words[k] = rword + carry = ncarry + ncarry = hncarry + } + if (carry !== 0) { + out.words[k] = carry + } else { + out.length-- + } + + return out.strip() + } + + function jumboMulTo(self, num, out) { + var fftm = new FFTM() + return fftm.mulp(self, num, out) + } + + BN.prototype.mulTo = function mulTo(num, out) { + var res + var len = this.length + num.length + if (this.length === 10 && num.length === 10) { + res = comb10MulTo(this, num, out) + } else if (len < 63) { + res = smallMulTo(this, num, out) + } else if (len < 1024) { + res = bigMulTo(this, num, out) + } else { + res = jumboMulTo(this, num, out) + } + + return res + } + + // Cooley-Tukey algorithm for FFT + // slightly revisited to rely on looping instead of recursion + + function FFTM(x, y) { + this.x = x + this.y = y + } + + FFTM.prototype.makeRBT = function makeRBT(N) { + var t = new Array(N) + var l = BN.prototype._countBits(N) - 1 + for (var i = 0; i < N; i++) { + t[i] = this.revBin(i, l, N) + } + + return t + } + + // Returns binary-reversed representation of `x` + FFTM.prototype.revBin = function revBin(x, l, N) { + if (x === 0 || x === N - 1) return x + + var rb = 0 + for (var i = 0; i < l; i++) { + rb |= (x & 1) << (l - i - 1) + x >>= 1 + } + + return rb + } + + // Performs "tweedling" phase, therefore 'emulating' + // behaviour of the recursive algorithm + FFTM.prototype.permute = function permute( + rbt, + rws, + iws, + rtws, + itws, + N + ) { + for (var i = 0; i < N; i++) { + rtws[i] = rws[rbt[i]] + itws[i] = iws[rbt[i]] + } + } + + FFTM.prototype.transform = function transform( + rws, + iws, + rtws, + itws, + N, + rbt + ) { + this.permute(rbt, rws, iws, rtws, itws, N) + + for (var s = 1; s < N; s <<= 1) { + var l = s << 1 + + var rtwdf = Math.cos((2 * Math.PI) / l) + var itwdf = Math.sin((2 * Math.PI) / l) + + for (var p = 0; p < N; p += l) { + var rtwdf_ = rtwdf + var itwdf_ = itwdf + + for (var j = 0; j < s; j++) { + var re = rtws[p + j] + var ie = itws[p + j] + + var ro = rtws[p + j + s] + var io = itws[p + j + s] + + var rx = rtwdf_ * ro - itwdf_ * io + + io = rtwdf_ * io + itwdf_ * ro + ro = rx + + rtws[p + j] = re + ro + itws[p + j] = ie + io + + rtws[p + j + s] = re - ro + itws[p + j + s] = ie - io + + /* jshint maxdepth : false */ + if (j !== l) { + rx = rtwdf * rtwdf_ - itwdf * itwdf_ + + itwdf_ = rtwdf * itwdf_ + itwdf * rtwdf_ + rtwdf_ = rx + } + } + } + } + } + + FFTM.prototype.guessLen13b = function guessLen13b(n, m) { + var N = Math.max(m, n) | 1 + var odd = N & 1 + var i = 0 + for (N = (N / 2) | 0; N; N = N >>> 1) { + i++ + } + + return 1 << (i + 1 + odd) + } + + FFTM.prototype.conjugate = function conjugate(rws, iws, N) { + if (N <= 1) return + + for (var i = 0; i < N / 2; i++) { + var t = rws[i] + + rws[i] = rws[N - i - 1] + rws[N - i - 1] = t + + t = iws[i] + + iws[i] = -iws[N - i - 1] + iws[N - i - 1] = -t + } + } + + FFTM.prototype.normalize13b = function normalize13b(ws, N) { + var carry = 0 + for (var i = 0; i < N / 2; i++) { + var w = + Math.round(ws[2 * i + 1] / N) * 0x2000 + + Math.round(ws[2 * i] / N) + + carry + + ws[i] = w & 0x3ffffff + + if (w < 0x4000000) { + carry = 0 + } else { + carry = (w / 0x4000000) | 0 + } + } + + return ws + } + + FFTM.prototype.convert13b = function convert13b(ws, len, rws, N) { + var carry = 0 + for (var i = 0; i < len; i++) { + carry = carry + (ws[i] | 0) + + rws[2 * i] = carry & 0x1fff + carry = carry >>> 13 + rws[2 * i + 1] = carry & 0x1fff + carry = carry >>> 13 + } + + // Pad with zeroes + for (i = 2 * len; i < N; ++i) { + rws[i] = 0 + } + + assert(carry === 0) + assert((carry & ~0x1fff) === 0) + } + + FFTM.prototype.stub = function stub(N) { + var ph = new Array(N) + for (var i = 0; i < N; i++) { + ph[i] = 0 + } + + return ph + } + + FFTM.prototype.mulp = function mulp(x, y, out) { + var N = 2 * this.guessLen13b(x.length, y.length) + + var rbt = this.makeRBT(N) + + var _ = this.stub(N) + + var rws = new Array(N) + var rwst = new Array(N) + var iwst = new Array(N) + + var nrws = new Array(N) + var nrwst = new Array(N) + var niwst = new Array(N) + + var rmws = out.words + rmws.length = N + + this.convert13b(x.words, x.length, rws, N) + this.convert13b(y.words, y.length, nrws, N) + + this.transform(rws, _, rwst, iwst, N, rbt) + this.transform(nrws, _, nrwst, niwst, N, rbt) + + for (var i = 0; i < N; i++) { + var rx = rwst[i] * nrwst[i] - iwst[i] * niwst[i] + iwst[i] = rwst[i] * niwst[i] + iwst[i] * nrwst[i] + rwst[i] = rx + } + + this.conjugate(rwst, iwst, N) + this.transform(rwst, iwst, rmws, _, N, rbt) + this.conjugate(rmws, _, N) + this.normalize13b(rmws, N) + + out.negative = x.negative ^ y.negative + out.length = x.length + y.length + return out.strip() + } + + // Multiply `this` by `num` + BN.prototype.mul = function mul(num) { + var out = new BN(null) + out.words = new Array(this.length + num.length) + return this.mulTo(num, out) + } + + // Multiply employing FFT + BN.prototype.mulf = function mulf(num) { + var out = new BN(null) + out.words = new Array(this.length + num.length) + return jumboMulTo(this, num, out) + } + + // In-place Multiplication + BN.prototype.imul = function imul(num) { + return this.clone().mulTo(num, this) + } + + BN.prototype.imuln = function imuln(num) { + assert(typeof num === "number") + assert(num < 0x4000000) + + // Carry + var carry = 0 + for (var i = 0; i < this.length; i++) { + var w = (this.words[i] | 0) * num + var lo = (w & 0x3ffffff) + (carry & 0x3ffffff) + carry >>= 26 + carry += (w / 0x4000000) | 0 + // NOTE: lo is 27bit maximum + carry += lo >>> 26 + this.words[i] = lo & 0x3ffffff + } + + if (carry !== 0) { + this.words[i] = carry + this.length++ + } + + return this + } + + BN.prototype.muln = function muln(num) { + return this.clone().imuln(num) + } + + // `this` * `this` + BN.prototype.sqr = function sqr() { + return this.mul(this) + } + + // `this` * `this` in-place + BN.prototype.isqr = function isqr() { + return this.imul(this.clone()) + } + + // Math.pow(`this`, `num`) + BN.prototype.pow = function pow(num) { + var w = toBitArray(num) + if (w.length === 0) return new BN(1) + + // Skip leading zeroes + var res = this + for (var i = 0; i < w.length; i++, res = res.sqr()) { + if (w[i] !== 0) break + } + + if (++i < w.length) { + for (var q = res.sqr(); i < w.length; i++, q = q.sqr()) { + if (w[i] === 0) continue + + res = res.mul(q) + } + } + + return res + } + + // Shift-left in-place + BN.prototype.iushln = function iushln(bits) { + assert(typeof bits === "number" && bits >= 0) + var r = bits % 26 + var s = (bits - r) / 26 + var carryMask = (0x3ffffff >>> (26 - r)) << (26 - r) + var i + + if (r !== 0) { + var carry = 0 + + for (i = 0; i < this.length; i++) { + var newCarry = this.words[i] & carryMask + var c = ((this.words[i] | 0) - newCarry) << r + this.words[i] = c | carry + carry = newCarry >>> (26 - r) + } + + if (carry) { + this.words[i] = carry + this.length++ + } + } + + if (s !== 0) { + for (i = this.length - 1; i >= 0; i--) { + this.words[i + s] = this.words[i] + } + + for (i = 0; i < s; i++) { + this.words[i] = 0 + } + + this.length += s + } + + return this.strip() + } + + BN.prototype.ishln = function ishln(bits) { + // TODO(indutny): implement me + assert(this.negative === 0) + return this.iushln(bits) + } + + // Shift-right in-place + // NOTE: `hint` is a lowest bit before trailing zeroes + // NOTE: if `extended` is present - it will be filled with destroyed bits + BN.prototype.iushrn = function iushrn(bits, hint, extended) { + assert(typeof bits === "number" && bits >= 0) + var h + if (hint) { + h = (hint - (hint % 26)) / 26 + } else { + h = 0 + } + + var r = bits % 26 + var s = Math.min((bits - r) / 26, this.length) + var mask = 0x3ffffff ^ ((0x3ffffff >>> r) << r) + var maskedWords = extended + + h -= s + h = Math.max(0, h) + + // Extended mode, copy masked part + if (maskedWords) { + for (var i = 0; i < s; i++) { + maskedWords.words[i] = this.words[i] + } + maskedWords.length = s + } + + if (s === 0) { + // No-op, we should not move anything at all + } else if (this.length > s) { + this.length -= s + for (i = 0; i < this.length; i++) { + this.words[i] = this.words[i + s] + } + } else { + this.words[0] = 0 + this.length = 1 + } + + var carry = 0 + for ( + i = this.length - 1; + i >= 0 && (carry !== 0 || i >= h); + i-- + ) { + var word = this.words[i] | 0 + this.words[i] = (carry << (26 - r)) | (word >>> r) + carry = word & mask + } + + // Push carried bits as a mask + if (maskedWords && carry !== 0) { + maskedWords.words[maskedWords.length++] = carry + } + + if (this.length === 0) { + this.words[0] = 0 + this.length = 1 + } + + return this.strip() + } + + BN.prototype.ishrn = function ishrn(bits, hint, extended) { + // TODO(indutny): implement me + assert(this.negative === 0) + return this.iushrn(bits, hint, extended) + } + + // Shift-left + BN.prototype.shln = function shln(bits) { + return this.clone().ishln(bits) + } + + BN.prototype.ushln = function ushln(bits) { + return this.clone().iushln(bits) + } + + // Shift-right + BN.prototype.shrn = function shrn(bits) { + return this.clone().ishrn(bits) + } + + BN.prototype.ushrn = function ushrn(bits) { + return this.clone().iushrn(bits) + } + + // Test if n bit is set + BN.prototype.testn = function testn(bit) { + assert(typeof bit === "number" && bit >= 0) + var r = bit % 26 + var s = (bit - r) / 26 + var q = 1 << r + + // Fast case: bit is much higher than all existing words + if (this.length <= s) return false + + // Check bit and return + var w = this.words[s] + + return !!(w & q) + } + + // Return only lowers bits of number (in-place) + BN.prototype.imaskn = function imaskn(bits) { + assert(typeof bits === "number" && bits >= 0) + var r = bits % 26 + var s = (bits - r) / 26 + + assert( + this.negative === 0, + "imaskn works only with positive numbers" + ) + + if (this.length <= s) { + return this + } + + if (r !== 0) { + s++ + } + this.length = Math.min(s, this.length) + + if (r !== 0) { + var mask = 0x3ffffff ^ ((0x3ffffff >>> r) << r) + this.words[this.length - 1] &= mask + } + + return this.strip() + } + + // Return only lowers bits of number + BN.prototype.maskn = function maskn(bits) { + return this.clone().imaskn(bits) + } + + // Add plain number `num` to `this` + BN.prototype.iaddn = function iaddn(num) { + assert(typeof num === "number") + assert(num < 0x4000000) + if (num < 0) return this.isubn(-num) + + // Possible sign change + if (this.negative !== 0) { + if (this.length === 1 && (this.words[0] | 0) < num) { + this.words[0] = num - (this.words[0] | 0) + this.negative = 0 + return this + } + + this.negative = 0 + this.isubn(num) + this.negative = 1 + return this + } + + // Add without checks + return this._iaddn(num) + } + + BN.prototype._iaddn = function _iaddn(num) { + this.words[0] += num + + // Carry + for ( + var i = 0; + i < this.length && this.words[i] >= 0x4000000; + i++ + ) { + this.words[i] -= 0x4000000 + if (i === this.length - 1) { + this.words[i + 1] = 1 + } else { + this.words[i + 1]++ + } + } + this.length = Math.max(this.length, i + 1) + + return this + } + + // Subtract plain number `num` from `this` + BN.prototype.isubn = function isubn(num) { + assert(typeof num === "number") + assert(num < 0x4000000) + if (num < 0) return this.iaddn(-num) + + if (this.negative !== 0) { + this.negative = 0 + this.iaddn(num) + this.negative = 1 + return this + } + + this.words[0] -= num + + if (this.length === 1 && this.words[0] < 0) { + this.words[0] = -this.words[0] + this.negative = 1 + } else { + // Carry + for (var i = 0; i < this.length && this.words[i] < 0; i++) { + this.words[i] += 0x4000000 + this.words[i + 1] -= 1 + } + } + + return this.strip() + } + + BN.prototype.addn = function addn(num) { + return this.clone().iaddn(num) + } + + BN.prototype.subn = function subn(num) { + return this.clone().isubn(num) + } + + BN.prototype.iabs = function iabs() { + this.negative = 0 + + return this + } + + BN.prototype.abs = function abs() { + return this.clone().iabs() + } + + BN.prototype._ishlnsubmul = function _ishlnsubmul(num, mul, shift) { + var len = num.length + shift + var i + + this._expand(len) + + var w + var carry = 0 + for (i = 0; i < num.length; i++) { + w = (this.words[i + shift] | 0) + carry + var right = (num.words[i] | 0) * mul + w -= right & 0x3ffffff + carry = (w >> 26) - ((right / 0x4000000) | 0) + this.words[i + shift] = w & 0x3ffffff + } + for (; i < this.length - shift; i++) { + w = (this.words[i + shift] | 0) + carry + carry = w >> 26 + this.words[i + shift] = w & 0x3ffffff + } + + if (carry === 0) return this.strip() + + // Subtraction overflow + assert(carry === -1) + carry = 0 + for (i = 0; i < this.length; i++) { + w = -(this.words[i] | 0) + carry + carry = w >> 26 + this.words[i] = w & 0x3ffffff + } + this.negative = 1 + + return this.strip() + } + + BN.prototype._wordDiv = function _wordDiv(num, mode) { + var shift = this.length - num.length + + var a = this.clone() + var b = num + + // Normalize + var bhi = b.words[b.length - 1] | 0 + var bhiBits = this._countBits(bhi) + shift = 26 - bhiBits + if (shift !== 0) { + b = b.ushln(shift) + a.iushln(shift) + bhi = b.words[b.length - 1] | 0 + } + + // Initialize quotient + var m = a.length - b.length + var q + + if (mode !== "mod") { + q = new BN(null) + q.length = m + 1 + q.words = new Array(q.length) + for (var i = 0; i < q.length; i++) { + q.words[i] = 0 + } + } + + var diff = a.clone()._ishlnsubmul(b, 1, m) + if (diff.negative === 0) { + a = diff + if (q) { + q.words[m] = 1 + } + } + + for (var j = m - 1; j >= 0; j--) { + var qj = + (a.words[b.length + j] | 0) * 0x4000000 + + (a.words[b.length + j - 1] | 0) + + // NOTE: (qj / bhi) is (0x3ffffff * 0x4000000 + 0x3ffffff) / 0x2000000 max + // (0x7ffffff) + qj = Math.min((qj / bhi) | 0, 0x3ffffff) + + a._ishlnsubmul(b, qj, j) + while (a.negative !== 0) { + qj-- + a.negative = 0 + a._ishlnsubmul(b, 1, j) + if (!a.isZero()) { + a.negative ^= 1 + } + } + if (q) { + q.words[j] = qj + } + } + if (q) { + q.strip() + } + a.strip() + + // Denormalize + if (mode !== "div" && shift !== 0) { + a.iushrn(shift) + } + + return { + div: q || null, + mod: a + } + } + + // NOTE: 1) `mode` can be set to `mod` to request mod only, + // to `div` to request div only, or be absent to + // request both div & mod + // 2) `positive` is true if unsigned mod is requested + BN.prototype.divmod = function divmod(num, mode, positive) { + assert(!num.isZero()) + + if (this.isZero()) { + return { + div: new BN(0), + mod: new BN(0) + } + } + + var div, mod, res + if (this.negative !== 0 && num.negative === 0) { + res = this.neg().divmod(num, mode) + + if (mode !== "mod") { + div = res.div.neg() + } + + if (mode !== "div") { + mod = res.mod.neg() + if (positive && mod.negative !== 0) { + mod.iadd(num) + } + } + + return { + div: div, + mod: mod + } + } + + if (this.negative === 0 && num.negative !== 0) { + res = this.divmod(num.neg(), mode) + + if (mode !== "mod") { + div = res.div.neg() + } + + return { + div: div, + mod: res.mod + } + } + + if ((this.negative & num.negative) !== 0) { + res = this.neg().divmod(num.neg(), mode) + + if (mode !== "div") { + mod = res.mod.neg() + if (positive && mod.negative !== 0) { + mod.isub(num) + } + } + + return { + div: res.div, + mod: mod + } + } + + // Both numbers are positive at this point + + // Strip both numbers to approximate shift value + if (num.length > this.length || this.cmp(num) < 0) { + return { + div: new BN(0), + mod: this + } + } + + // Very short reduction + if (num.length === 1) { + if (mode === "div") { + return { + div: this.divn(num.words[0]), + mod: null + } + } + + if (mode === "mod") { + return { + div: null, + mod: new BN(this.modn(num.words[0])) + } + } + + return { + div: this.divn(num.words[0]), + mod: new BN(this.modn(num.words[0])) + } + } + + return this._wordDiv(num, mode) + } + + // Find `this` / `num` + BN.prototype.div = function div(num) { + return this.divmod(num, "div", false).div + } + + // Find `this` % `num` + BN.prototype.mod = function mod(num) { + return this.divmod(num, "mod", false).mod + } + + BN.prototype.umod = function umod(num) { + return this.divmod(num, "mod", true).mod + } + + // Find Round(`this` / `num`) + BN.prototype.divRound = function divRound(num) { + var dm = this.divmod(num) + + // Fast case - exact division + if (dm.mod.isZero()) return dm.div + + var mod = dm.div.negative !== 0 ? dm.mod.isub(num) : dm.mod + + var half = num.ushrn(1) + var r2 = num.andln(1) + var cmp = mod.cmp(half) + + // Round down + if (cmp < 0 || (r2 === 1 && cmp === 0)) return dm.div + + // Round up + return dm.div.negative !== 0 ? dm.div.isubn(1) : dm.div.iaddn(1) + } + + BN.prototype.modn = function modn(num) { + assert(num <= 0x3ffffff) + var p = (1 << 26) % num + + var acc = 0 + for (var i = this.length - 1; i >= 0; i--) { + acc = (p * acc + (this.words[i] | 0)) % num + } + + return acc + } + + // In-place division by number + BN.prototype.idivn = function idivn(num) { + assert(num <= 0x3ffffff) + + var carry = 0 + for (var i = this.length - 1; i >= 0; i--) { + var w = (this.words[i] | 0) + carry * 0x4000000 + this.words[i] = (w / num) | 0 + carry = w % num + } + + return this.strip() + } + + BN.prototype.divn = function divn(num) { + return this.clone().idivn(num) + } + + BN.prototype.egcd = function egcd(p) { + assert(p.negative === 0) + assert(!p.isZero()) + + var x = this + var y = p.clone() + + if (x.negative !== 0) { + x = x.umod(p) + } else { + x = x.clone() + } + + // A * x + B * y = x + var A = new BN(1) + var B = new BN(0) + + // C * x + D * y = y + var C = new BN(0) + var D = new BN(1) + + var g = 0 + + while (x.isEven() && y.isEven()) { + x.iushrn(1) + y.iushrn(1) + ++g + } + + var yp = y.clone() + var xp = x.clone() + + while (!x.isZero()) { + for ( + var i = 0, im = 1; + (x.words[0] & im) === 0 && i < 26; + ++i, im <<= 1 + ); + if (i > 0) { + x.iushrn(i) + while (i-- > 0) { + if (A.isOdd() || B.isOdd()) { + A.iadd(yp) + B.isub(xp) + } + + A.iushrn(1) + B.iushrn(1) + } + } + + for ( + var j = 0, jm = 1; + (y.words[0] & jm) === 0 && j < 26; + ++j, jm <<= 1 + ); + if (j > 0) { + y.iushrn(j) + while (j-- > 0) { + if (C.isOdd() || D.isOdd()) { + C.iadd(yp) + D.isub(xp) + } + + C.iushrn(1) + D.iushrn(1) + } + } + + if (x.cmp(y) >= 0) { + x.isub(y) + A.isub(C) + B.isub(D) + } else { + y.isub(x) + C.isub(A) + D.isub(B) + } + } + + return { + a: C, + b: D, + gcd: y.iushln(g) + } + } + + // This is reduced incarnation of the binary EEA + // above, designated to invert members of the + // _prime_ fields F(p) at a maximal speed + BN.prototype._invmp = function _invmp(p) { + assert(p.negative === 0) + assert(!p.isZero()) + + var a = this + var b = p.clone() + + if (a.negative !== 0) { + a = a.umod(p) + } else { + a = a.clone() + } + + var x1 = new BN(1) + var x2 = new BN(0) + + var delta = b.clone() + + while (a.cmpn(1) > 0 && b.cmpn(1) > 0) { + for ( + var i = 0, im = 1; + (a.words[0] & im) === 0 && i < 26; + ++i, im <<= 1 + ); + if (i > 0) { + a.iushrn(i) + while (i-- > 0) { + if (x1.isOdd()) { + x1.iadd(delta) + } + + x1.iushrn(1) + } + } + + for ( + var j = 0, jm = 1; + (b.words[0] & jm) === 0 && j < 26; + ++j, jm <<= 1 + ); + if (j > 0) { + b.iushrn(j) + while (j-- > 0) { + if (x2.isOdd()) { + x2.iadd(delta) + } + + x2.iushrn(1) + } + } + + if (a.cmp(b) >= 0) { + a.isub(b) + x1.isub(x2) + } else { + b.isub(a) + x2.isub(x1) + } + } + + var res + if (a.cmpn(1) === 0) { + res = x1 + } else { + res = x2 + } + + if (res.cmpn(0) < 0) { + res.iadd(p) + } + + return res + } + + BN.prototype.gcd = function gcd(num) { + if (this.isZero()) return num.abs() + if (num.isZero()) return this.abs() + + var a = this.clone() + var b = num.clone() + a.negative = 0 + b.negative = 0 + + // Remove common factor of two + for (var shift = 0; a.isEven() && b.isEven(); shift++) { + a.iushrn(1) + b.iushrn(1) + } + + do { + while (a.isEven()) { + a.iushrn(1) + } + while (b.isEven()) { + b.iushrn(1) + } + + var r = a.cmp(b) + if (r < 0) { + // Swap `a` and `b` to make `a` always bigger than `b` + var t = a + a = b + b = t + } else if (r === 0 || b.cmpn(1) === 0) { + break + } + + a.isub(b) + } while (true) + + return b.iushln(shift) + } + + // Invert number in the field F(num) + BN.prototype.invm = function invm(num) { + return this.egcd(num).a.umod(num) + } + + BN.prototype.isEven = function isEven() { + return (this.words[0] & 1) === 0 + } + + BN.prototype.isOdd = function isOdd() { + return (this.words[0] & 1) === 1 + } + + // And first word and num + BN.prototype.andln = function andln(num) { + return this.words[0] & num + } + + // Increment at the bit position in-line + BN.prototype.bincn = function bincn(bit) { + assert(typeof bit === "number") + var r = bit % 26 + var s = (bit - r) / 26 + var q = 1 << r + + // Fast case: bit is much higher than all existing words + if (this.length <= s) { + this._expand(s + 1) + this.words[s] |= q + return this + } + + // Add bit and propagate, if needed + var carry = q + for (var i = s; carry !== 0 && i < this.length; i++) { + var w = this.words[i] | 0 + w += carry + carry = w >>> 26 + w &= 0x3ffffff + this.words[i] = w + } + if (carry !== 0) { + this.words[i] = carry + this.length++ + } + return this + } + + BN.prototype.isZero = function isZero() { + return this.length === 1 && this.words[0] === 0 + } + + BN.prototype.cmpn = function cmpn(num) { + var negative = num < 0 + + if (this.negative !== 0 && !negative) return -1 + if (this.negative === 0 && negative) return 1 + + this.strip() + + var res + if (this.length > 1) { + res = 1 + } else { + if (negative) { + num = -num + } + + assert(num <= 0x3ffffff, "Number is too big") + + var w = this.words[0] | 0 + res = w === num ? 0 : w < num ? -1 : 1 + } + if (this.negative !== 0) return -res | 0 + return res + } + + // Compare two numbers and return: + // 1 - if `this` > `num` + // 0 - if `this` == `num` + // -1 - if `this` < `num` + BN.prototype.cmp = function cmp(num) { + if (this.negative !== 0 && num.negative === 0) return -1 + if (this.negative === 0 && num.negative !== 0) return 1 + + var res = this.ucmp(num) + if (this.negative !== 0) return -res | 0 + return res + } + + // Unsigned comparison + BN.prototype.ucmp = function ucmp(num) { + // At this point both numbers have the same sign + if (this.length > num.length) return 1 + if (this.length < num.length) return -1 + + var res = 0 + for (var i = this.length - 1; i >= 0; i--) { + var a = this.words[i] | 0 + var b = num.words[i] | 0 + + if (a === b) continue + if (a < b) { + res = -1 + } else if (a > b) { + res = 1 + } + break + } + return res + } + + BN.prototype.gtn = function gtn(num) { + return this.cmpn(num) === 1 + } + + BN.prototype.gt = function gt(num) { + return this.cmp(num) === 1 + } + + BN.prototype.gten = function gten(num) { + return this.cmpn(num) >= 0 + } + + BN.prototype.gte = function gte(num) { + return this.cmp(num) >= 0 + } + + BN.prototype.ltn = function ltn(num) { + return this.cmpn(num) === -1 + } + + BN.prototype.lt = function lt(num) { + return this.cmp(num) === -1 + } + + BN.prototype.lten = function lten(num) { + return this.cmpn(num) <= 0 + } + + BN.prototype.lte = function lte(num) { + return this.cmp(num) <= 0 + } + + BN.prototype.eqn = function eqn(num) { + return this.cmpn(num) === 0 + } + + BN.prototype.eq = function eq(num) { + return this.cmp(num) === 0 + } + + // + // A reduce context, could be using montgomery or something better, depending + // on the `m` itself. + // + BN.red = function red(num) { + return new Red(num) + } + + BN.prototype.toRed = function toRed(ctx) { + assert(!this.red, "Already a number in reduction context") + assert(this.negative === 0, "red works only with positives") + return ctx.convertTo(this)._forceRed(ctx) + } + + BN.prototype.fromRed = function fromRed() { + assert( + this.red, + "fromRed works only with numbers in reduction context" + ) + return this.red.convertFrom(this) + } + + BN.prototype._forceRed = function _forceRed(ctx) { + this.red = ctx + return this + } + + BN.prototype.forceRed = function forceRed(ctx) { + assert(!this.red, "Already a number in reduction context") + return this._forceRed(ctx) + } + + BN.prototype.redAdd = function redAdd(num) { + assert(this.red, "redAdd works only with red numbers") + return this.red.add(this, num) + } + + BN.prototype.redIAdd = function redIAdd(num) { + assert(this.red, "redIAdd works only with red numbers") + return this.red.iadd(this, num) + } + + BN.prototype.redSub = function redSub(num) { + assert(this.red, "redSub works only with red numbers") + return this.red.sub(this, num) + } + + BN.prototype.redISub = function redISub(num) { + assert(this.red, "redISub works only with red numbers") + return this.red.isub(this, num) + } + + BN.prototype.redShl = function redShl(num) { + assert(this.red, "redShl works only with red numbers") + return this.red.shl(this, num) + } + + BN.prototype.redMul = function redMul(num) { + assert(this.red, "redMul works only with red numbers") + this.red._verify2(this, num) + return this.red.mul(this, num) + } + + BN.prototype.redIMul = function redIMul(num) { + assert(this.red, "redMul works only with red numbers") + this.red._verify2(this, num) + return this.red.imul(this, num) + } + + BN.prototype.redSqr = function redSqr() { + assert(this.red, "redSqr works only with red numbers") + this.red._verify1(this) + return this.red.sqr(this) + } + + BN.prototype.redISqr = function redISqr() { + assert(this.red, "redISqr works only with red numbers") + this.red._verify1(this) + return this.red.isqr(this) + } + + // Square root over p + BN.prototype.redSqrt = function redSqrt() { + assert(this.red, "redSqrt works only with red numbers") + this.red._verify1(this) + return this.red.sqrt(this) + } + + BN.prototype.redInvm = function redInvm() { + assert(this.red, "redInvm works only with red numbers") + this.red._verify1(this) + return this.red.invm(this) + } + + // Return negative clone of `this` % `red modulo` + BN.prototype.redNeg = function redNeg() { + assert(this.red, "redNeg works only with red numbers") + this.red._verify1(this) + return this.red.neg(this) + } + + BN.prototype.redPow = function redPow(num) { + assert(this.red && !num.red, "redPow(normalNum)") + this.red._verify1(this) + return this.red.pow(this, num) + } + + // Prime numbers with efficient reduction + var primes = { + k256: null, + p224: null, + p192: null, + p25519: null + } + + // Pseudo-Mersenne prime + function MPrime(name, p) { + // P = 2 ^ N - K + this.name = name + this.p = new BN(p, 16) + this.n = this.p.bitLength() + this.k = new BN(1).iushln(this.n).isub(this.p) + + this.tmp = this._tmp() + } + + MPrime.prototype._tmp = function _tmp() { + var tmp = new BN(null) + tmp.words = new Array(Math.ceil(this.n / 13)) + return tmp + } + + MPrime.prototype.ireduce = function ireduce(num) { + // Assumes that `num` is less than `P^2` + // num = HI * (2 ^ N - K) + HI * K + LO = HI * K + LO (mod P) + var r = num + var rlen + + do { + this.split(r, this.tmp) + r = this.imulK(r) + r = r.iadd(this.tmp) + rlen = r.bitLength() + } while (rlen > this.n) + + var cmp = rlen < this.n ? -1 : r.ucmp(this.p) + if (cmp === 0) { + r.words[0] = 0 + r.length = 1 + } else if (cmp > 0) { + r.isub(this.p) + } else { + r.strip() + } + + return r + } + + MPrime.prototype.split = function split(input, out) { + input.iushrn(this.n, 0, out) + } + + MPrime.prototype.imulK = function imulK(num) { + return num.imul(this.k) + } + + function K256() { + MPrime.call( + this, + "k256", + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f" + ) + } + inherits(K256, MPrime) + + K256.prototype.split = function split(input, output) { + // 256 = 9 * 26 + 22 + var mask = 0x3fffff + + var outLen = Math.min(input.length, 9) + for (var i = 0; i < outLen; i++) { + output.words[i] = input.words[i] + } + output.length = outLen + + if (input.length <= 9) { + input.words[0] = 0 + input.length = 1 + return + } + + // Shift by 9 limbs + var prev = input.words[9] + output.words[output.length++] = prev & mask + + for (i = 10; i < input.length; i++) { + var next = input.words[i] | 0 + input.words[i - 10] = ((next & mask) << 4) | (prev >>> 22) + prev = next + } + prev >>>= 22 + input.words[i - 10] = prev + if (prev === 0 && input.length > 10) { + input.length -= 10 + } else { + input.length -= 9 + } + } + + K256.prototype.imulK = function imulK(num) { + // K = 0x1000003d1 = [ 0x40, 0x3d1 ] + num.words[num.length] = 0 + num.words[num.length + 1] = 0 + num.length += 2 + + // bounded at: 0x40 * 0x3ffffff + 0x3d0 = 0x100000390 + var lo = 0 + for (var i = 0; i < num.length; i++) { + var w = num.words[i] | 0 + lo += w * 0x3d1 + num.words[i] = lo & 0x3ffffff + lo = w * 0x40 + ((lo / 0x4000000) | 0) + } + + // Fast length reduction + if (num.words[num.length - 1] === 0) { + num.length-- + if (num.words[num.length - 1] === 0) { + num.length-- + } + } + return num + } + + function P224() { + MPrime.call( + this, + "p224", + "ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001" + ) + } + inherits(P224, MPrime) + + function P192() { + MPrime.call( + this, + "p192", + "ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff" + ) + } + inherits(P192, MPrime) + + function P25519() { + // 2 ^ 255 - 19 + MPrime.call( + this, + "25519", + "7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed" + ) + } + inherits(P25519, MPrime) + + P25519.prototype.imulK = function imulK(num) { + // K = 0x13 + var carry = 0 + for (var i = 0; i < num.length; i++) { + var hi = (num.words[i] | 0) * 0x13 + carry + var lo = hi & 0x3ffffff + hi >>>= 26 + + num.words[i] = lo + carry = hi + } + if (carry !== 0) { + num.words[num.length++] = carry + } + return num + } + + // Exported mostly for testing purposes, use plain name instead + BN._prime = function prime(name) { + // Cached version of prime + if (primes[name]) return primes[name] + + var prime + if (name === "k256") { + prime = new K256() + } else if (name === "p224") { + prime = new P224() + } else if (name === "p192") { + prime = new P192() + } else if (name === "p25519") { + prime = new P25519() + } else { + throw new Error("Unknown prime " + name) + } + primes[name] = prime + + return prime + } + + // + // Base reduction engine + // + function Red(m) { + if (typeof m === "string") { + var prime = BN._prime(m) + this.m = prime.p + this.prime = prime + } else { + assert(m.gtn(1), "modulus must be greater than 1") + this.m = m + this.prime = null + } + } + + Red.prototype._verify1 = function _verify1(a) { + assert(a.negative === 0, "red works only with positives") + assert(a.red, "red works only with red numbers") + } + + Red.prototype._verify2 = function _verify2(a, b) { + assert( + (a.negative | b.negative) === 0, + "red works only with positives" + ) + assert( + a.red && a.red === b.red, + "red works only with red numbers" + ) + } + + Red.prototype.imod = function imod(a) { + if (this.prime) return this.prime.ireduce(a)._forceRed(this) + return a.umod(this.m)._forceRed(this) + } + + Red.prototype.neg = function neg(a) { + if (a.isZero()) { + return a.clone() + } + + return this.m.sub(a)._forceRed(this) + } + + Red.prototype.add = function add(a, b) { + this._verify2(a, b) + + var res = a.add(b) + if (res.cmp(this.m) >= 0) { + res.isub(this.m) + } + return res._forceRed(this) + } + + Red.prototype.iadd = function iadd(a, b) { + this._verify2(a, b) + + var res = a.iadd(b) + if (res.cmp(this.m) >= 0) { + res.isub(this.m) + } + return res + } + + Red.prototype.sub = function sub(a, b) { + this._verify2(a, b) + + var res = a.sub(b) + if (res.cmpn(0) < 0) { + res.iadd(this.m) + } + return res._forceRed(this) + } + + Red.prototype.isub = function isub(a, b) { + this._verify2(a, b) + + var res = a.isub(b) + if (res.cmpn(0) < 0) { + res.iadd(this.m) + } + return res + } + + Red.prototype.shl = function shl(a, num) { + this._verify1(a) + return this.imod(a.ushln(num)) + } + + Red.prototype.imul = function imul(a, b) { + this._verify2(a, b) + return this.imod(a.imul(b)) + } + + Red.prototype.mul = function mul(a, b) { + this._verify2(a, b) + return this.imod(a.mul(b)) + } + + Red.prototype.isqr = function isqr(a) { + return this.imul(a, a.clone()) + } + + Red.prototype.sqr = function sqr(a) { + return this.mul(a, a) + } + + Red.prototype.sqrt = function sqrt(a) { + if (a.isZero()) return a.clone() + + var mod3 = this.m.andln(3) + assert(mod3 % 2 === 1) + + // Fast case + if (mod3 === 3) { + var pow = this.m.add(new BN(1)).iushrn(2) + return this.pow(a, pow) + } + + // Tonelli-Shanks algorithm (Totally unoptimized and slow) + // + // Find Q and S, that Q * 2 ^ S = (P - 1) + var q = this.m.subn(1) + var s = 0 + while (!q.isZero() && q.andln(1) === 0) { + s++ + q.iushrn(1) + } + assert(!q.isZero()) + + var one = new BN(1).toRed(this) + var nOne = one.redNeg() + + // Find quadratic non-residue + // NOTE: Max is such because of generalized Riemann hypothesis. + var lpow = this.m.subn(1).iushrn(1) + var z = this.m.bitLength() + z = new BN(2 * z * z).toRed(this) + + while (this.pow(z, lpow).cmp(nOne) !== 0) { + z.redIAdd(nOne) + } + + var c = this.pow(z, q) + var r = this.pow(a, q.addn(1).iushrn(1)) + var t = this.pow(a, q) + var m = s + while (t.cmp(one) !== 0) { + var tmp = t + for (var i = 0; tmp.cmp(one) !== 0; i++) { + tmp = tmp.redSqr() + } + assert(i < m) + var b = this.pow(c, new BN(1).iushln(m - i - 1)) + + r = r.redMul(b) + c = b.redSqr() + t = t.redMul(c) + m = i + } + + return r + } + + Red.prototype.invm = function invm(a) { + var inv = a._invmp(this.m) + if (inv.negative !== 0) { + inv.negative = 0 + return this.imod(inv).redNeg() + } else { + return this.imod(inv) + } + } + + Red.prototype.pow = function pow(a, num) { + if (num.isZero()) return new BN(1).toRed(this) + if (num.cmpn(1) === 0) return a.clone() + + var windowSize = 4 + var wnd = new Array(1 << windowSize) + wnd[0] = new BN(1).toRed(this) + wnd[1] = a + for (var i = 2; i < wnd.length; i++) { + wnd[i] = this.mul(wnd[i - 1], a) + } + + var res = wnd[0] + var current = 0 + var currentLen = 0 + var start = num.bitLength() % 26 + if (start === 0) { + start = 26 + } + + for (i = num.length - 1; i >= 0; i--) { + var word = num.words[i] + for (var j = start - 1; j >= 0; j--) { + var bit = (word >> j) & 1 + if (res !== wnd[0]) { + res = this.sqr(res) + } + + if (bit === 0 && current === 0) { + currentLen = 0 + continue + } + + current <<= 1 + current |= bit + currentLen++ + if (currentLen !== windowSize && (i !== 0 || j !== 0)) + continue + + res = this.mul(res, wnd[current]) + currentLen = 0 + current = 0 + } + start = 26 + } + + return res + } + + Red.prototype.convertTo = function convertTo(num) { + var r = num.umod(this.m) + + return r === num ? r.clone() : r + } + + Red.prototype.convertFrom = function convertFrom(num) { + var res = num.clone() + res.red = null + return res + } + + // + // Montgomery method engine + // + + BN.mont = function mont(num) { + return new Mont(num) + } + + function Mont(m) { + Red.call(this, m) + + this.shift = this.m.bitLength() + if (this.shift % 26 !== 0) { + this.shift += 26 - (this.shift % 26) + } + + this.r = new BN(1).iushln(this.shift) + this.r2 = this.imod(this.r.sqr()) + this.rinv = this.r._invmp(this.m) + + this.minv = this.rinv + .mul(this.r) + .isubn(1) + .div(this.m) + this.minv = this.minv.umod(this.r) + this.minv = this.r.sub(this.minv) + } + inherits(Mont, Red) + + Mont.prototype.convertTo = function convertTo(num) { + return this.imod(num.ushln(this.shift)) + } + + Mont.prototype.convertFrom = function convertFrom(num) { + var r = this.imod(num.mul(this.rinv)) + r.red = null + return r + } + + Mont.prototype.imul = function imul(a, b) { + if (a.isZero() || b.isZero()) { + a.words[0] = 0 + a.length = 1 + return a + } + + var t = a.imul(b) + var c = t + .maskn(this.shift) + .mul(this.minv) + .imaskn(this.shift) + .mul(this.m) + var u = t.isub(c).iushrn(this.shift) + var res = u + + if (u.cmp(this.m) >= 0) { + res = u.isub(this.m) + } else if (u.cmpn(0) < 0) { + res = u.iadd(this.m) + } + + return res._forceRed(this) + } + + Mont.prototype.mul = function mul(a, b) { + if (a.isZero() || b.isZero()) return new BN(0)._forceRed(this) + + var t = a.mul(b) + var c = t + .maskn(this.shift) + .mul(this.minv) + .imaskn(this.shift) + .mul(this.m) + var u = t.isub(c).iushrn(this.shift) + var res = u + if (u.cmp(this.m) >= 0) { + res = u.isub(this.m) + } else if (u.cmpn(0) < 0) { + res = u.iadd(this.m) + } + + return res._forceRed(this) + } + + Mont.prototype.invm = function invm(a) { + // (AR)^-1 * R^2 = (A^-1 * R^-1) * R^2 = A^-1 * R + var res = this.imod(a._invmp(this.m).mul(this.r2)) + return res._forceRed(this) + } + })(typeof module === "undefined" || module, this) + }, + { buffer: 19 } + ], + 18: [ + function(require, module, exports) { + var r + + module.exports = function rand(len) { + if (!r) r = new Rand(null) + + return r.generate(len) + } + + function Rand(rand) { + this.rand = rand + } + module.exports.Rand = Rand + + Rand.prototype.generate = function generate(len) { + return this._rand(len) + } + + // Emulate crypto API using randy + Rand.prototype._rand = function _rand(n) { + if (this.rand.getBytes) return this.rand.getBytes(n) + + var res = new Uint8Array(n) + for (var i = 0; i < res.length; i++) res[i] = this.rand.getByte() + return res + } + + if (typeof self === "object") { + if (self.crypto && self.crypto.getRandomValues) { + // Modern browsers + Rand.prototype._rand = function _rand(n) { + var arr = new Uint8Array(n) + self.crypto.getRandomValues(arr) + return arr + } + } else if (self.msCrypto && self.msCrypto.getRandomValues) { + // IE + Rand.prototype._rand = function _rand(n) { + var arr = new Uint8Array(n) + self.msCrypto.getRandomValues(arr) + return arr + } + + // Safari's WebWorkers do not have `crypto` + } else if (typeof window === "object") { + // Old junk + Rand.prototype._rand = function() { + throw new Error("Not implemented yet") + } + } + } else { + // Node.js or Web worker with no crypto support + try { + var crypto = require("crypto") + if (typeof crypto.randomBytes !== "function") + throw new Error("Not supported") + + Rand.prototype._rand = function _rand(n) { + return crypto.randomBytes(n) + } + } catch (e) {} + } + }, + { crypto: 19 } + ], + 19: [ + function(require, module, exports) { + arguments[4][1][0].apply(exports, arguments) + }, + { dup: 1 } + ], + 20: [ + function(require, module, exports) { + // based on the aes implimentation in triple sec + // https://github.com/keybase/triplesec + // which is in turn based on the one from crypto-js + // https://code.google.com/p/crypto-js/ + + var Buffer = require("safe-buffer").Buffer + + function asUInt32Array(buf) { + if (!Buffer.isBuffer(buf)) buf = Buffer.from(buf) + + var len = (buf.length / 4) | 0 + var out = new Array(len) + + for (var i = 0; i < len; i++) { + out[i] = buf.readUInt32BE(i * 4) + } + + return out + } + + function scrubVec(v) { + for (var i = 0; i < v.length; v++) { + v[i] = 0 + } + } + + function cryptBlock(M, keySchedule, SUB_MIX, SBOX, nRounds) { + var SUB_MIX0 = SUB_MIX[0] + var SUB_MIX1 = SUB_MIX[1] + var SUB_MIX2 = SUB_MIX[2] + var SUB_MIX3 = SUB_MIX[3] + + var s0 = M[0] ^ keySchedule[0] + var s1 = M[1] ^ keySchedule[1] + var s2 = M[2] ^ keySchedule[2] + var s3 = M[3] ^ keySchedule[3] + var t0, t1, t2, t3 + var ksRow = 4 + + for (var round = 1; round < nRounds; round++) { + t0 = + SUB_MIX0[s0 >>> 24] ^ + SUB_MIX1[(s1 >>> 16) & 0xff] ^ + SUB_MIX2[(s2 >>> 8) & 0xff] ^ + SUB_MIX3[s3 & 0xff] ^ + keySchedule[ksRow++] + t1 = + SUB_MIX0[s1 >>> 24] ^ + SUB_MIX1[(s2 >>> 16) & 0xff] ^ + SUB_MIX2[(s3 >>> 8) & 0xff] ^ + SUB_MIX3[s0 & 0xff] ^ + keySchedule[ksRow++] + t2 = + SUB_MIX0[s2 >>> 24] ^ + SUB_MIX1[(s3 >>> 16) & 0xff] ^ + SUB_MIX2[(s0 >>> 8) & 0xff] ^ + SUB_MIX3[s1 & 0xff] ^ + keySchedule[ksRow++] + t3 = + SUB_MIX0[s3 >>> 24] ^ + SUB_MIX1[(s0 >>> 16) & 0xff] ^ + SUB_MIX2[(s1 >>> 8) & 0xff] ^ + SUB_MIX3[s2 & 0xff] ^ + keySchedule[ksRow++] + s0 = t0 + s1 = t1 + s2 = t2 + s3 = t3 + } + + t0 = + ((SBOX[s0 >>> 24] << 24) | + (SBOX[(s1 >>> 16) & 0xff] << 16) | + (SBOX[(s2 >>> 8) & 0xff] << 8) | + SBOX[s3 & 0xff]) ^ + keySchedule[ksRow++] + t1 = + ((SBOX[s1 >>> 24] << 24) | + (SBOX[(s2 >>> 16) & 0xff] << 16) | + (SBOX[(s3 >>> 8) & 0xff] << 8) | + SBOX[s0 & 0xff]) ^ + keySchedule[ksRow++] + t2 = + ((SBOX[s2 >>> 24] << 24) | + (SBOX[(s3 >>> 16) & 0xff] << 16) | + (SBOX[(s0 >>> 8) & 0xff] << 8) | + SBOX[s1 & 0xff]) ^ + keySchedule[ksRow++] + t3 = + ((SBOX[s3 >>> 24] << 24) | + (SBOX[(s0 >>> 16) & 0xff] << 16) | + (SBOX[(s1 >>> 8) & 0xff] << 8) | + SBOX[s2 & 0xff]) ^ + keySchedule[ksRow++] + t0 = t0 >>> 0 + t1 = t1 >>> 0 + t2 = t2 >>> 0 + t3 = t3 >>> 0 + + return [t0, t1, t2, t3] + } + + // AES constants + var RCON = [ + 0x00, + 0x01, + 0x02, + 0x04, + 0x08, + 0x10, + 0x20, + 0x40, + 0x80, + 0x1b, + 0x36 + ] + var G = (function() { + // Compute double table + var d = new Array(256) + for (var j = 0; j < 256; j++) { + if (j < 128) { + d[j] = j << 1 + } else { + d[j] = (j << 1) ^ 0x11b + } + } + + var SBOX = [] + var INV_SBOX = [] + var SUB_MIX = [[], [], [], []] + var INV_SUB_MIX = [[], [], [], []] + + // Walk GF(2^8) + var x = 0 + var xi = 0 + for (var i = 0; i < 256; ++i) { + // Compute sbox + var sx = xi ^ (xi << 1) ^ (xi << 2) ^ (xi << 3) ^ (xi << 4) + sx = (sx >>> 8) ^ (sx & 0xff) ^ 0x63 + SBOX[x] = sx + INV_SBOX[sx] = x + + // Compute multiplication + var x2 = d[x] + var x4 = d[x2] + var x8 = d[x4] + + // Compute sub bytes, mix columns tables + var t = (d[sx] * 0x101) ^ (sx * 0x1010100) + SUB_MIX[0][x] = (t << 24) | (t >>> 8) + SUB_MIX[1][x] = (t << 16) | (t >>> 16) + SUB_MIX[2][x] = (t << 8) | (t >>> 24) + SUB_MIX[3][x] = t + + // Compute inv sub bytes, inv mix columns tables + t = + (x8 * 0x1010101) ^ + (x4 * 0x10001) ^ + (x2 * 0x101) ^ + (x * 0x1010100) + INV_SUB_MIX[0][sx] = (t << 24) | (t >>> 8) + INV_SUB_MIX[1][sx] = (t << 16) | (t >>> 16) + INV_SUB_MIX[2][sx] = (t << 8) | (t >>> 24) + INV_SUB_MIX[3][sx] = t + + if (x === 0) { + x = xi = 1 + } else { + x = x2 ^ d[d[d[x8 ^ x2]]] + xi ^= d[d[xi]] + } + } + + return { + SBOX: SBOX, + INV_SBOX: INV_SBOX, + SUB_MIX: SUB_MIX, + INV_SUB_MIX: INV_SUB_MIX + } + })() + + function AES(key) { + this._key = asUInt32Array(key) + this._reset() + } + + AES.blockSize = 4 * 4 + AES.keySize = 256 / 8 + AES.prototype.blockSize = AES.blockSize + AES.prototype.keySize = AES.keySize + AES.prototype._reset = function() { + var keyWords = this._key + var keySize = keyWords.length + var nRounds = keySize + 6 + var ksRows = (nRounds + 1) * 4 + + var keySchedule = [] + for (var k = 0; k < keySize; k++) { + keySchedule[k] = keyWords[k] + } + + for (k = keySize; k < ksRows; k++) { + var t = keySchedule[k - 1] + + if (k % keySize === 0) { + t = (t << 8) | (t >>> 24) + t = + (G.SBOX[t >>> 24] << 24) | + (G.SBOX[(t >>> 16) & 0xff] << 16) | + (G.SBOX[(t >>> 8) & 0xff] << 8) | + G.SBOX[t & 0xff] + + t ^= RCON[(k / keySize) | 0] << 24 + } else if (keySize > 6 && k % keySize === 4) { + t = + (G.SBOX[t >>> 24] << 24) | + (G.SBOX[(t >>> 16) & 0xff] << 16) | + (G.SBOX[(t >>> 8) & 0xff] << 8) | + G.SBOX[t & 0xff] + } + + keySchedule[k] = keySchedule[k - keySize] ^ t + } + + var invKeySchedule = [] + for (var ik = 0; ik < ksRows; ik++) { + var ksR = ksRows - ik + var tt = keySchedule[ksR - (ik % 4 ? 0 : 4)] + + if (ik < 4 || ksR <= 4) { + invKeySchedule[ik] = tt + } else { + invKeySchedule[ik] = + G.INV_SUB_MIX[0][G.SBOX[tt >>> 24]] ^ + G.INV_SUB_MIX[1][G.SBOX[(tt >>> 16) & 0xff]] ^ + G.INV_SUB_MIX[2][G.SBOX[(tt >>> 8) & 0xff]] ^ + G.INV_SUB_MIX[3][G.SBOX[tt & 0xff]] + } + } + + this._nRounds = nRounds + this._keySchedule = keySchedule + this._invKeySchedule = invKeySchedule + } + + AES.prototype.encryptBlockRaw = function(M) { + M = asUInt32Array(M) + return cryptBlock( + M, + this._keySchedule, + G.SUB_MIX, + G.SBOX, + this._nRounds + ) + } + + AES.prototype.encryptBlock = function(M) { + var out = this.encryptBlockRaw(M) + var buf = Buffer.allocUnsafe(16) + buf.writeUInt32BE(out[0], 0) + buf.writeUInt32BE(out[1], 4) + buf.writeUInt32BE(out[2], 8) + buf.writeUInt32BE(out[3], 12) + return buf + } + + AES.prototype.decryptBlock = function(M) { + M = asUInt32Array(M) + + // swap + var m1 = M[1] + M[1] = M[3] + M[3] = m1 + + var out = cryptBlock( + M, + this._invKeySchedule, + G.INV_SUB_MIX, + G.INV_SBOX, + this._nRounds + ) + var buf = Buffer.allocUnsafe(16) + buf.writeUInt32BE(out[0], 0) + buf.writeUInt32BE(out[3], 4) + buf.writeUInt32BE(out[2], 8) + buf.writeUInt32BE(out[1], 12) + return buf + } + + AES.prototype.scrub = function() { + scrubVec(this._keySchedule) + scrubVec(this._invKeySchedule) + scrubVec(this._key) + } + + module.exports.AES = AES + }, + { "safe-buffer": 148 } + ], + 21: [ + function(require, module, exports) { + var aes = require("./aes") + var Buffer = require("safe-buffer").Buffer + var Transform = require("cipher-base") + var inherits = require("inherits") + var GHASH = require("./ghash") + var xor = require("buffer-xor") + var incr32 = require("./incr32") + + function xorTest(a, b) { + var out = 0 + if (a.length !== b.length) out++ + + var len = Math.min(a.length, b.length) + for (var i = 0; i < len; ++i) { + out += a[i] ^ b[i] + } + + return out + } + + function calcIv(self, iv, ck) { + if (iv.length === 12) { + self._finID = Buffer.concat([iv, Buffer.from([0, 0, 0, 1])]) + return Buffer.concat([iv, Buffer.from([0, 0, 0, 2])]) + } + var ghash = new GHASH(ck) + var len = iv.length + var toPad = len % 16 + ghash.update(iv) + if (toPad) { + toPad = 16 - toPad + ghash.update(Buffer.alloc(toPad, 0)) + } + ghash.update(Buffer.alloc(8, 0)) + var ivBits = len * 8 + var tail = Buffer.alloc(8) + tail.writeUIntBE(ivBits, 0, 8) + ghash.update(tail) + self._finID = ghash.state + var out = Buffer.from(self._finID) + incr32(out) + return out + } + function StreamCipher(mode, key, iv, decrypt) { + Transform.call(this) + + var h = Buffer.alloc(4, 0) + + this._cipher = new aes.AES(key) + var ck = this._cipher.encryptBlock(h) + this._ghash = new GHASH(ck) + iv = calcIv(this, iv, ck) + + this._prev = Buffer.from(iv) + this._cache = Buffer.allocUnsafe(0) + this._secCache = Buffer.allocUnsafe(0) + this._decrypt = decrypt + this._alen = 0 + this._len = 0 + this._mode = mode + + this._authTag = null + this._called = false + } + + inherits(StreamCipher, Transform) + + StreamCipher.prototype._update = function(chunk) { + if (!this._called && this._alen) { + var rump = 16 - (this._alen % 16) + if (rump < 16) { + rump = Buffer.alloc(rump, 0) + this._ghash.update(rump) + } + } + + this._called = true + var out = this._mode.encrypt(this, chunk) + if (this._decrypt) { + this._ghash.update(chunk) + } else { + this._ghash.update(out) + } + this._len += chunk.length + return out + } + + StreamCipher.prototype._final = function() { + if (this._decrypt && !this._authTag) + throw new Error( + "Unsupported state or unable to authenticate data" + ) + + var tag = xor( + this._ghash.final(this._alen * 8, this._len * 8), + this._cipher.encryptBlock(this._finID) + ) + if (this._decrypt && xorTest(tag, this._authTag)) + throw new Error( + "Unsupported state or unable to authenticate data" + ) + + this._authTag = tag + this._cipher.scrub() + } + + StreamCipher.prototype.getAuthTag = function getAuthTag() { + if (this._decrypt || !Buffer.isBuffer(this._authTag)) + throw new Error("Attempting to get auth tag in unsupported state") + + return this._authTag + } + + StreamCipher.prototype.setAuthTag = function setAuthTag(tag) { + if (!this._decrypt) + throw new Error("Attempting to set auth tag in unsupported state") + + this._authTag = tag + } + + StreamCipher.prototype.setAAD = function setAAD(buf) { + if (this._called) + throw new Error("Attempting to set AAD in unsupported state") + + this._ghash.update(buf) + this._alen += buf.length + } + + module.exports = StreamCipher + }, + { + "./aes": 20, + "./ghash": 25, + "./incr32": 26, + "buffer-xor": 47, + "cipher-base": 49, + inherits: 100, + "safe-buffer": 148 + } + ], + 22: [ + function(require, module, exports) { + var ciphers = require("./encrypter") + var deciphers = require("./decrypter") + var modes = require("./modes/list.json") + + function getCiphers() { + return Object.keys(modes) + } + + exports.createCipher = exports.Cipher = ciphers.createCipher + exports.createCipheriv = exports.Cipheriv = ciphers.createCipheriv + exports.createDecipher = exports.Decipher = deciphers.createDecipher + exports.createDecipheriv = exports.Decipheriv = + deciphers.createDecipheriv + exports.listCiphers = exports.getCiphers = getCiphers + }, + { "./decrypter": 23, "./encrypter": 24, "./modes/list.json": 34 } + ], + 23: [ + function(require, module, exports) { + var AuthCipher = require("./authCipher") + var Buffer = require("safe-buffer").Buffer + var MODES = require("./modes") + var StreamCipher = require("./streamCipher") + var Transform = require("cipher-base") + var aes = require("./aes") + var ebtk = require("evp_bytestokey") + var inherits = require("inherits") + + function Decipher(mode, key, iv) { + Transform.call(this) + + this._cache = new Splitter() + this._last = void 0 + this._cipher = new aes.AES(key) + this._prev = Buffer.from(iv) + this._mode = mode + this._autopadding = true + } + + inherits(Decipher, Transform) + + Decipher.prototype._update = function(data) { + this._cache.add(data) + var chunk + var thing + var out = [] + while ((chunk = this._cache.get(this._autopadding))) { + thing = this._mode.decrypt(this, chunk) + out.push(thing) + } + return Buffer.concat(out) + } + + Decipher.prototype._final = function() { + var chunk = this._cache.flush() + if (this._autopadding) { + return unpad(this._mode.decrypt(this, chunk)) + } else if (chunk) { + throw new Error("data not multiple of block length") + } + } + + Decipher.prototype.setAutoPadding = function(setTo) { + this._autopadding = !!setTo + return this + } + + function Splitter() { + this.cache = Buffer.allocUnsafe(0) + } + + Splitter.prototype.add = function(data) { + this.cache = Buffer.concat([this.cache, data]) + } + + Splitter.prototype.get = function(autoPadding) { + var out + if (autoPadding) { + if (this.cache.length > 16) { + out = this.cache.slice(0, 16) + this.cache = this.cache.slice(16) + return out + } + } else { + if (this.cache.length >= 16) { + out = this.cache.slice(0, 16) + this.cache = this.cache.slice(16) + return out + } + } + + return null + } + + Splitter.prototype.flush = function() { + if (this.cache.length) return this.cache + } + + function unpad(last) { + var padded = last[15] + if (padded < 1 || padded > 16) { + throw new Error("unable to decrypt data") + } + var i = -1 + while (++i < padded) { + if (last[i + (16 - padded)] !== padded) { + throw new Error("unable to decrypt data") + } + } + if (padded === 16) return + + return last.slice(0, 16 - padded) + } + + function createDecipheriv(suite, password, iv) { + var config = MODES[suite.toLowerCase()] + if (!config) throw new TypeError("invalid suite type") + + if (typeof iv === "string") iv = Buffer.from(iv) + if (config.mode !== "GCM" && iv.length !== config.iv) + throw new TypeError("invalid iv length " + iv.length) + + if (typeof password === "string") password = Buffer.from(password) + if (password.length !== config.key / 8) + throw new TypeError("invalid key length " + password.length) + + if (config.type === "stream") { + return new StreamCipher(config.module, password, iv, true) + } else if (config.type === "auth") { + return new AuthCipher(config.module, password, iv, true) + } + + return new Decipher(config.module, password, iv) + } + + function createDecipher(suite, password) { + var config = MODES[suite.toLowerCase()] + if (!config) throw new TypeError("invalid suite type") + + var keys = ebtk(password, false, config.key, config.iv) + return createDecipheriv(suite, keys.key, keys.iv) + } + + exports.createDecipher = createDecipher + exports.createDecipheriv = createDecipheriv + }, + { + "./aes": 20, + "./authCipher": 21, + "./modes": 33, + "./streamCipher": 36, + "cipher-base": 49, + evp_bytestokey: 84, + inherits: 100, + "safe-buffer": 148 + } + ], + 24: [ + function(require, module, exports) { + var MODES = require("./modes") + var AuthCipher = require("./authCipher") + var Buffer = require("safe-buffer").Buffer + var StreamCipher = require("./streamCipher") + var Transform = require("cipher-base") + var aes = require("./aes") + var ebtk = require("evp_bytestokey") + var inherits = require("inherits") + + function Cipher(mode, key, iv) { + Transform.call(this) + + this._cache = new Splitter() + this._cipher = new aes.AES(key) + this._prev = Buffer.from(iv) + this._mode = mode + this._autopadding = true + } + + inherits(Cipher, Transform) + + Cipher.prototype._update = function(data) { + this._cache.add(data) + var chunk + var thing + var out = [] + + while ((chunk = this._cache.get())) { + thing = this._mode.encrypt(this, chunk) + out.push(thing) + } + + return Buffer.concat(out) + } + + var PADDING = Buffer.alloc(16, 0x10) + + Cipher.prototype._final = function() { + var chunk = this._cache.flush() + if (this._autopadding) { + chunk = this._mode.encrypt(this, chunk) + this._cipher.scrub() + return chunk + } + + if (!chunk.equals(PADDING)) { + this._cipher.scrub() + throw new Error("data not multiple of block length") + } + } + + Cipher.prototype.setAutoPadding = function(setTo) { + this._autopadding = !!setTo + return this + } + + function Splitter() { + this.cache = Buffer.allocUnsafe(0) + } + + Splitter.prototype.add = function(data) { + this.cache = Buffer.concat([this.cache, data]) + } + + Splitter.prototype.get = function() { + if (this.cache.length > 15) { + var out = this.cache.slice(0, 16) + this.cache = this.cache.slice(16) + return out + } + return null + } + + Splitter.prototype.flush = function() { + var len = 16 - this.cache.length + var padBuff = Buffer.allocUnsafe(len) + + var i = -1 + while (++i < len) { + padBuff.writeUInt8(len, i) + } + + return Buffer.concat([this.cache, padBuff]) + } + + function createCipheriv(suite, password, iv) { + var config = MODES[suite.toLowerCase()] + if (!config) throw new TypeError("invalid suite type") + + if (typeof password === "string") password = Buffer.from(password) + if (password.length !== config.key / 8) + throw new TypeError("invalid key length " + password.length) + + if (typeof iv === "string") iv = Buffer.from(iv) + if (config.mode !== "GCM" && iv.length !== config.iv) + throw new TypeError("invalid iv length " + iv.length) + + if (config.type === "stream") { + return new StreamCipher(config.module, password, iv) + } else if (config.type === "auth") { + return new AuthCipher(config.module, password, iv) + } + + return new Cipher(config.module, password, iv) + } + + function createCipher(suite, password) { + var config = MODES[suite.toLowerCase()] + if (!config) throw new TypeError("invalid suite type") + + var keys = ebtk(password, false, config.key, config.iv) + return createCipheriv(suite, keys.key, keys.iv) + } + + exports.createCipheriv = createCipheriv + exports.createCipher = createCipher + }, + { + "./aes": 20, + "./authCipher": 21, + "./modes": 33, + "./streamCipher": 36, + "cipher-base": 49, + evp_bytestokey: 84, + inherits: 100, + "safe-buffer": 148 + } + ], + 25: [ + function(require, module, exports) { + var Buffer = require("safe-buffer").Buffer + var ZEROES = Buffer.alloc(16, 0) + + function toArray(buf) { + return [ + buf.readUInt32BE(0), + buf.readUInt32BE(4), + buf.readUInt32BE(8), + buf.readUInt32BE(12) + ] + } + + function fromArray(out) { + var buf = Buffer.allocUnsafe(16) + buf.writeUInt32BE(out[0] >>> 0, 0) + buf.writeUInt32BE(out[1] >>> 0, 4) + buf.writeUInt32BE(out[2] >>> 0, 8) + buf.writeUInt32BE(out[3] >>> 0, 12) + return buf + } + + function GHASH(key) { + this.h = key + this.state = Buffer.alloc(16, 0) + this.cache = Buffer.allocUnsafe(0) + } + + // from http://bitwiseshiftleft.github.io/sjcl/doc/symbols/src/core_gcm.js.html + // by Juho Vähä-Herttua + GHASH.prototype.ghash = function(block) { + var i = -1 + while (++i < block.length) { + this.state[i] ^= block[i] + } + this._multiply() + } + + GHASH.prototype._multiply = function() { + var Vi = toArray(this.h) + var Zi = [0, 0, 0, 0] + var j, xi, lsbVi + var i = -1 + while (++i < 128) { + xi = (this.state[~~(i / 8)] & (1 << (7 - (i % 8)))) !== 0 + if (xi) { + // Z_i+1 = Z_i ^ V_i + Zi[0] ^= Vi[0] + Zi[1] ^= Vi[1] + Zi[2] ^= Vi[2] + Zi[3] ^= Vi[3] + } + + // Store the value of LSB(V_i) + lsbVi = (Vi[3] & 1) !== 0 + + // V_i+1 = V_i >> 1 + for (j = 3; j > 0; j--) { + Vi[j] = (Vi[j] >>> 1) | ((Vi[j - 1] & 1) << 31) + } + Vi[0] = Vi[0] >>> 1 + + // If LSB(V_i) is 1, V_i+1 = (V_i >> 1) ^ R + if (lsbVi) { + Vi[0] = Vi[0] ^ (0xe1 << 24) + } + } + this.state = fromArray(Zi) + } + + GHASH.prototype.update = function(buf) { + this.cache = Buffer.concat([this.cache, buf]) + var chunk + while (this.cache.length >= 16) { + chunk = this.cache.slice(0, 16) + this.cache = this.cache.slice(16) + this.ghash(chunk) + } + } + + GHASH.prototype.final = function(abl, bl) { + if (this.cache.length) { + this.ghash(Buffer.concat([this.cache, ZEROES], 16)) + } + + this.ghash(fromArray([0, abl, 0, bl])) + return this.state + } + + module.exports = GHASH + }, + { "safe-buffer": 148 } + ], + 26: [ + function(require, module, exports) { + function incr32(iv) { + var len = iv.length + var item + while (len--) { + item = iv.readUInt8(len) + if (item === 255) { + iv.writeUInt8(0, len) + } else { + item++ + iv.writeUInt8(item, len) + break + } + } + } + module.exports = incr32 + }, + {} + ], + 27: [ + function(require, module, exports) { + var xor = require("buffer-xor") + + exports.encrypt = function(self, block) { + var data = xor(block, self._prev) + + self._prev = self._cipher.encryptBlock(data) + return self._prev + } + + exports.decrypt = function(self, block) { + var pad = self._prev + + self._prev = block + var out = self._cipher.decryptBlock(block) + + return xor(out, pad) + } + }, + { "buffer-xor": 47 } + ], + 28: [ + function(require, module, exports) { + var Buffer = require("safe-buffer").Buffer + var xor = require("buffer-xor") + + function encryptStart(self, data, decrypt) { + var len = data.length + var out = xor(data, self._cache) + self._cache = self._cache.slice(len) + self._prev = Buffer.concat([self._prev, decrypt ? data : out]) + return out + } + + exports.encrypt = function(self, data, decrypt) { + var out = Buffer.allocUnsafe(0) + var len + + while (data.length) { + if (self._cache.length === 0) { + self._cache = self._cipher.encryptBlock(self._prev) + self._prev = Buffer.allocUnsafe(0) + } + + if (self._cache.length <= data.length) { + len = self._cache.length + out = Buffer.concat([ + out, + encryptStart(self, data.slice(0, len), decrypt) + ]) + data = data.slice(len) + } else { + out = Buffer.concat([out, encryptStart(self, data, decrypt)]) + break + } + } + + return out + } + }, + { "buffer-xor": 47, "safe-buffer": 148 } + ], + 29: [ + function(require, module, exports) { + var Buffer = require("safe-buffer").Buffer + + function encryptByte(self, byteParam, decrypt) { + var pad + var i = -1 + var len = 8 + var out = 0 + var bit, value + while (++i < len) { + pad = self._cipher.encryptBlock(self._prev) + bit = byteParam & (1 << (7 - i)) ? 0x80 : 0 + value = pad[0] ^ bit + out += (value & 0x80) >> i % 8 + self._prev = shiftIn(self._prev, decrypt ? bit : value) + } + return out + } + + function shiftIn(buffer, value) { + var len = buffer.length + var i = -1 + var out = Buffer.allocUnsafe(buffer.length) + buffer = Buffer.concat([buffer, Buffer.from([value])]) + + while (++i < len) { + out[i] = (buffer[i] << 1) | (buffer[i + 1] >> 7) + } + + return out + } + + exports.encrypt = function(self, chunk, decrypt) { + var len = chunk.length + var out = Buffer.allocUnsafe(len) + var i = -1 + + while (++i < len) { + out[i] = encryptByte(self, chunk[i], decrypt) + } + + return out + } + }, + { "safe-buffer": 148 } + ], + 30: [ + function(require, module, exports) { + var Buffer = require("safe-buffer").Buffer + + function encryptByte(self, byteParam, decrypt) { + var pad = self._cipher.encryptBlock(self._prev) + var out = pad[0] ^ byteParam + + self._prev = Buffer.concat([ + self._prev.slice(1), + Buffer.from([decrypt ? byteParam : out]) + ]) + + return out + } + + exports.encrypt = function(self, chunk, decrypt) { + var len = chunk.length + var out = Buffer.allocUnsafe(len) + var i = -1 + + while (++i < len) { + out[i] = encryptByte(self, chunk[i], decrypt) + } + + return out + } + }, + { "safe-buffer": 148 } + ], + 31: [ + function(require, module, exports) { + var xor = require("buffer-xor") + var Buffer = require("safe-buffer").Buffer + var incr32 = require("../incr32") + + function getBlock(self) { + var out = self._cipher.encryptBlockRaw(self._prev) + incr32(self._prev) + return out + } + + var blockSize = 16 + exports.encrypt = function(self, chunk) { + var chunkNum = Math.ceil(chunk.length / blockSize) + var start = self._cache.length + self._cache = Buffer.concat([ + self._cache, + Buffer.allocUnsafe(chunkNum * blockSize) + ]) + for (var i = 0; i < chunkNum; i++) { + var out = getBlock(self) + var offset = start + i * blockSize + self._cache.writeUInt32BE(out[0], offset + 0) + self._cache.writeUInt32BE(out[1], offset + 4) + self._cache.writeUInt32BE(out[2], offset + 8) + self._cache.writeUInt32BE(out[3], offset + 12) + } + var pad = self._cache.slice(0, chunk.length) + self._cache = self._cache.slice(chunk.length) + return xor(chunk, pad) + } + }, + { "../incr32": 26, "buffer-xor": 47, "safe-buffer": 148 } + ], + 32: [ + function(require, module, exports) { + exports.encrypt = function(self, block) { + return self._cipher.encryptBlock(block) + } + + exports.decrypt = function(self, block) { + return self._cipher.decryptBlock(block) + } + }, + {} + ], + 33: [ + function(require, module, exports) { + var modeModules = { + ECB: require("./ecb"), + CBC: require("./cbc"), + CFB: require("./cfb"), + CFB8: require("./cfb8"), + CFB1: require("./cfb1"), + OFB: require("./ofb"), + CTR: require("./ctr"), + GCM: require("./ctr") + } + + var modes = require("./list.json") + + for (var key in modes) { + modes[key].module = modeModules[modes[key].mode] + } + + module.exports = modes + }, + { + "./cbc": 27, + "./cfb": 28, + "./cfb1": 29, + "./cfb8": 30, + "./ctr": 31, + "./ecb": 32, + "./list.json": 34, + "./ofb": 35 + } + ], + 34: [ + function(require, module, exports) { + module.exports = { + "aes-128-ecb": { + cipher: "AES", + key: 128, + iv: 0, + mode: "ECB", + type: "block" + }, + "aes-192-ecb": { + cipher: "AES", + key: 192, + iv: 0, + mode: "ECB", + type: "block" + }, + "aes-256-ecb": { + cipher: "AES", + key: 256, + iv: 0, + mode: "ECB", + type: "block" + }, + "aes-128-cbc": { + cipher: "AES", + key: 128, + iv: 16, + mode: "CBC", + type: "block" + }, + "aes-192-cbc": { + cipher: "AES", + key: 192, + iv: 16, + mode: "CBC", + type: "block" + }, + "aes-256-cbc": { + cipher: "AES", + key: 256, + iv: 16, + mode: "CBC", + type: "block" + }, + aes128: { + cipher: "AES", + key: 128, + iv: 16, + mode: "CBC", + type: "block" + }, + aes192: { + cipher: "AES", + key: 192, + iv: 16, + mode: "CBC", + type: "block" + }, + aes256: { + cipher: "AES", + key: 256, + iv: 16, + mode: "CBC", + type: "block" + }, + "aes-128-cfb": { + cipher: "AES", + key: 128, + iv: 16, + mode: "CFB", + type: "stream" + }, + "aes-192-cfb": { + cipher: "AES", + key: 192, + iv: 16, + mode: "CFB", + type: "stream" + }, + "aes-256-cfb": { + cipher: "AES", + key: 256, + iv: 16, + mode: "CFB", + type: "stream" + }, + "aes-128-cfb8": { + cipher: "AES", + key: 128, + iv: 16, + mode: "CFB8", + type: "stream" + }, + "aes-192-cfb8": { + cipher: "AES", + key: 192, + iv: 16, + mode: "CFB8", + type: "stream" + }, + "aes-256-cfb8": { + cipher: "AES", + key: 256, + iv: 16, + mode: "CFB8", + type: "stream" + }, + "aes-128-cfb1": { + cipher: "AES", + key: 128, + iv: 16, + mode: "CFB1", + type: "stream" + }, + "aes-192-cfb1": { + cipher: "AES", + key: 192, + iv: 16, + mode: "CFB1", + type: "stream" + }, + "aes-256-cfb1": { + cipher: "AES", + key: 256, + iv: 16, + mode: "CFB1", + type: "stream" + }, + "aes-128-ofb": { + cipher: "AES", + key: 128, + iv: 16, + mode: "OFB", + type: "stream" + }, + "aes-192-ofb": { + cipher: "AES", + key: 192, + iv: 16, + mode: "OFB", + type: "stream" + }, + "aes-256-ofb": { + cipher: "AES", + key: 256, + iv: 16, + mode: "OFB", + type: "stream" + }, + "aes-128-ctr": { + cipher: "AES", + key: 128, + iv: 16, + mode: "CTR", + type: "stream" + }, + "aes-192-ctr": { + cipher: "AES", + key: 192, + iv: 16, + mode: "CTR", + type: "stream" + }, + "aes-256-ctr": { + cipher: "AES", + key: 256, + iv: 16, + mode: "CTR", + type: "stream" + }, + "aes-128-gcm": { + cipher: "AES", + key: 128, + iv: 12, + mode: "GCM", + type: "auth" + }, + "aes-192-gcm": { + cipher: "AES", + key: 192, + iv: 12, + mode: "GCM", + type: "auth" + }, + "aes-256-gcm": { + cipher: "AES", + key: 256, + iv: 12, + mode: "GCM", + type: "auth" + } + } + }, + {} + ], + 35: [ + function(require, module, exports) { + ;(function(Buffer) { + var xor = require("buffer-xor") + + function getBlock(self) { + self._prev = self._cipher.encryptBlock(self._prev) + return self._prev + } + + exports.encrypt = function(self, chunk) { + while (self._cache.length < chunk.length) { + self._cache = Buffer.concat([self._cache, getBlock(self)]) + } + + var pad = self._cache.slice(0, chunk.length) + self._cache = self._cache.slice(chunk.length) + return xor(chunk, pad) + } + }.call(this, require("buffer").Buffer)) + }, + { buffer: 48, "buffer-xor": 47 } + ], + 36: [ + function(require, module, exports) { + var aes = require("./aes") + var Buffer = require("safe-buffer").Buffer + var Transform = require("cipher-base") + var inherits = require("inherits") + + function StreamCipher(mode, key, iv, decrypt) { + Transform.call(this) + + this._cipher = new aes.AES(key) + this._prev = Buffer.from(iv) + this._cache = Buffer.allocUnsafe(0) + this._secCache = Buffer.allocUnsafe(0) + this._decrypt = decrypt + this._mode = mode + } + + inherits(StreamCipher, Transform) + + StreamCipher.prototype._update = function(chunk) { + return this._mode.encrypt(this, chunk, this._decrypt) + } + + StreamCipher.prototype._final = function() { + this._cipher.scrub() + } + + module.exports = StreamCipher + }, + { "./aes": 20, "cipher-base": 49, inherits: 100, "safe-buffer": 148 } + ], + 37: [ + function(require, module, exports) { + var DES = require("browserify-des") + var aes = require("browserify-aes/browser") + var aesModes = require("browserify-aes/modes") + var desModes = require("browserify-des/modes") + var ebtk = require("evp_bytestokey") + + function createCipher(suite, password) { + suite = suite.toLowerCase() + + var keyLen, ivLen + if (aesModes[suite]) { + keyLen = aesModes[suite].key + ivLen = aesModes[suite].iv + } else if (desModes[suite]) { + keyLen = desModes[suite].key * 8 + ivLen = desModes[suite].iv + } else { + throw new TypeError("invalid suite type") + } + + var keys = ebtk(password, false, keyLen, ivLen) + return createCipheriv(suite, keys.key, keys.iv) + } + + function createDecipher(suite, password) { + suite = suite.toLowerCase() + + var keyLen, ivLen + if (aesModes[suite]) { + keyLen = aesModes[suite].key + ivLen = aesModes[suite].iv + } else if (desModes[suite]) { + keyLen = desModes[suite].key * 8 + ivLen = desModes[suite].iv + } else { + throw new TypeError("invalid suite type") + } + + var keys = ebtk(password, false, keyLen, ivLen) + return createDecipheriv(suite, keys.key, keys.iv) + } + + function createCipheriv(suite, key, iv) { + suite = suite.toLowerCase() + if (aesModes[suite]) return aes.createCipheriv(suite, key, iv) + if (desModes[suite]) + return new DES({ key: key, iv: iv, mode: suite }) + + throw new TypeError("invalid suite type") + } + + function createDecipheriv(suite, key, iv) { + suite = suite.toLowerCase() + if (aesModes[suite]) return aes.createDecipheriv(suite, key, iv) + if (desModes[suite]) + return new DES({ key: key, iv: iv, mode: suite, decrypt: true }) + + throw new TypeError("invalid suite type") + } + + function getCiphers() { + return Object.keys(desModes).concat(aes.getCiphers()) + } + + exports.createCipher = exports.Cipher = createCipher + exports.createCipheriv = exports.Cipheriv = createCipheriv + exports.createDecipher = exports.Decipher = createDecipher + exports.createDecipheriv = exports.Decipheriv = createDecipheriv + exports.listCiphers = exports.getCiphers = getCiphers + }, + { + "browserify-aes/browser": 22, + "browserify-aes/modes": 33, + "browserify-des": 38, + "browserify-des/modes": 39, + evp_bytestokey: 84 + } + ], + 38: [ + function(require, module, exports) { + var CipherBase = require("cipher-base") + var des = require("des.js") + var inherits = require("inherits") + var Buffer = require("safe-buffer").Buffer + + var modes = { + "des-ede3-cbc": des.CBC.instantiate(des.EDE), + "des-ede3": des.EDE, + "des-ede-cbc": des.CBC.instantiate(des.EDE), + "des-ede": des.EDE, + "des-cbc": des.CBC.instantiate(des.DES), + "des-ecb": des.DES + } + modes.des = modes["des-cbc"] + modes.des3 = modes["des-ede3-cbc"] + module.exports = DES + inherits(DES, CipherBase) + function DES(opts) { + CipherBase.call(this) + var modeName = opts.mode.toLowerCase() + var mode = modes[modeName] + var type + if (opts.decrypt) { + type = "decrypt" + } else { + type = "encrypt" + } + var key = opts.key + if (!Buffer.isBuffer(key)) { + key = Buffer.from(key) + } + if (modeName === "des-ede" || modeName === "des-ede-cbc") { + key = Buffer.concat([key, key.slice(0, 8)]) + } + var iv = opts.iv + if (!Buffer.isBuffer(iv)) { + iv = Buffer.from(iv) + } + this._des = mode.create({ + key: key, + iv: iv, + type: type + }) + } + DES.prototype._update = function(data) { + return Buffer.from(this._des.update(data)) + } + DES.prototype._final = function() { + return Buffer.from(this._des.final()) + } + }, + { "cipher-base": 49, "des.js": 57, inherits: 100, "safe-buffer": 148 } + ], + 39: [ + function(require, module, exports) { + exports["des-ecb"] = { + key: 8, + iv: 0 + } + exports["des-cbc"] = exports.des = { + key: 8, + iv: 8 + } + exports["des-ede3-cbc"] = exports.des3 = { + key: 24, + iv: 8 + } + exports["des-ede3"] = { + key: 24, + iv: 0 + } + exports["des-ede-cbc"] = { + key: 16, + iv: 8 + } + exports["des-ede"] = { + key: 16, + iv: 0 + } + }, + {} + ], + 40: [ + function(require, module, exports) { + ;(function(Buffer) { + var bn = require("bn.js") + var randomBytes = require("randombytes") + module.exports = crt + function blind(priv) { + var r = getr(priv) + var blinder = r + .toRed(bn.mont(priv.modulus)) + .redPow(new bn(priv.publicExponent)) + .fromRed() + return { + blinder: blinder, + unblinder: r.invm(priv.modulus) + } + } + function crt(msg, priv) { + var blinds = blind(priv) + var len = priv.modulus.byteLength() + var mod = bn.mont(priv.modulus) + var blinded = new bn(msg).mul(blinds.blinder).umod(priv.modulus) + var c1 = blinded.toRed(bn.mont(priv.prime1)) + var c2 = blinded.toRed(bn.mont(priv.prime2)) + var qinv = priv.coefficient + var p = priv.prime1 + var q = priv.prime2 + var m1 = c1.redPow(priv.exponent1) + var m2 = c2.redPow(priv.exponent2) + m1 = m1.fromRed() + m2 = m2.fromRed() + var h = m1 + .isub(m2) + .imul(qinv) + .umod(p) + h.imul(q) + m2.iadd(h) + return new Buffer( + m2 + .imul(blinds.unblinder) + .umod(priv.modulus) + .toArray(false, len) + ) + } + crt.getr = getr + function getr(priv) { + var len = priv.modulus.byteLength() + var r = new bn(randomBytes(len)) + while ( + r.cmp(priv.modulus) >= 0 || + !r.umod(priv.prime1) || + !r.umod(priv.prime2) + ) { + r = new bn(randomBytes(len)) + } + return r + } + }.call(this, require("buffer").Buffer)) + }, + { "bn.js": 17, buffer: 48, randombytes: 131 } + ], + 41: [ + function(require, module, exports) { + module.exports = require("./browser/algorithms.json") + }, + { "./browser/algorithms.json": 42 } + ], + 42: [ + function(require, module, exports) { + module.exports = { + sha224WithRSAEncryption: { + sign: "rsa", + hash: "sha224", + id: "302d300d06096086480165030402040500041c" + }, + "RSA-SHA224": { + sign: "ecdsa/rsa", + hash: "sha224", + id: "302d300d06096086480165030402040500041c" + }, + sha256WithRSAEncryption: { + sign: "rsa", + hash: "sha256", + id: "3031300d060960864801650304020105000420" + }, + "RSA-SHA256": { + sign: "ecdsa/rsa", + hash: "sha256", + id: "3031300d060960864801650304020105000420" + }, + sha384WithRSAEncryption: { + sign: "rsa", + hash: "sha384", + id: "3041300d060960864801650304020205000430" + }, + "RSA-SHA384": { + sign: "ecdsa/rsa", + hash: "sha384", + id: "3041300d060960864801650304020205000430" + }, + sha512WithRSAEncryption: { + sign: "rsa", + hash: "sha512", + id: "3051300d060960864801650304020305000440" + }, + "RSA-SHA512": { + sign: "ecdsa/rsa", + hash: "sha512", + id: "3051300d060960864801650304020305000440" + }, + "RSA-SHA1": { + sign: "rsa", + hash: "sha1", + id: "3021300906052b0e03021a05000414" + }, + "ecdsa-with-SHA1": { + sign: "ecdsa", + hash: "sha1", + id: "" + }, + sha256: { + sign: "ecdsa", + hash: "sha256", + id: "" + }, + sha224: { + sign: "ecdsa", + hash: "sha224", + id: "" + }, + sha384: { + sign: "ecdsa", + hash: "sha384", + id: "" + }, + sha512: { + sign: "ecdsa", + hash: "sha512", + id: "" + }, + "DSA-SHA": { + sign: "dsa", + hash: "sha1", + id: "" + }, + "DSA-SHA1": { + sign: "dsa", + hash: "sha1", + id: "" + }, + DSA: { + sign: "dsa", + hash: "sha1", + id: "" + }, + "DSA-WITH-SHA224": { + sign: "dsa", + hash: "sha224", + id: "" + }, + "DSA-SHA224": { + sign: "dsa", + hash: "sha224", + id: "" + }, + "DSA-WITH-SHA256": { + sign: "dsa", + hash: "sha256", + id: "" + }, + "DSA-SHA256": { + sign: "dsa", + hash: "sha256", + id: "" + }, + "DSA-WITH-SHA384": { + sign: "dsa", + hash: "sha384", + id: "" + }, + "DSA-SHA384": { + sign: "dsa", + hash: "sha384", + id: "" + }, + "DSA-WITH-SHA512": { + sign: "dsa", + hash: "sha512", + id: "" + }, + "DSA-SHA512": { + sign: "dsa", + hash: "sha512", + id: "" + }, + "DSA-RIPEMD160": { + sign: "dsa", + hash: "rmd160", + id: "" + }, + ripemd160WithRSA: { + sign: "rsa", + hash: "rmd160", + id: "3021300906052b2403020105000414" + }, + "RSA-RIPEMD160": { + sign: "rsa", + hash: "rmd160", + id: "3021300906052b2403020105000414" + }, + md5WithRSAEncryption: { + sign: "rsa", + hash: "md5", + id: "3020300c06082a864886f70d020505000410" + }, + "RSA-MD5": { + sign: "rsa", + hash: "md5", + id: "3020300c06082a864886f70d020505000410" + } + } + }, + {} + ], + 43: [ + function(require, module, exports) { + module.exports = { + "1.3.132.0.10": "secp256k1", + "1.3.132.0.33": "p224", + "1.2.840.10045.3.1.1": "p192", + "1.2.840.10045.3.1.7": "p256", + "1.3.132.0.34": "p384", + "1.3.132.0.35": "p521" + } + }, + {} + ], + 44: [ + function(require, module, exports) { + ;(function(Buffer) { + var createHash = require("create-hash") + var stream = require("stream") + var inherits = require("inherits") + var sign = require("./sign") + var verify = require("./verify") + + var algorithms = require("./algorithms.json") + Object.keys(algorithms).forEach(function(key) { + algorithms[key].id = new Buffer(algorithms[key].id, "hex") + algorithms[key.toLowerCase()] = algorithms[key] + }) + + function Sign(algorithm) { + stream.Writable.call(this) + + var data = algorithms[algorithm] + if (!data) throw new Error("Unknown message digest") + + this._hashType = data.hash + this._hash = createHash(data.hash) + this._tag = data.id + this._signType = data.sign + } + inherits(Sign, stream.Writable) + + Sign.prototype._write = function _write(data, _, done) { + this._hash.update(data) + done() + } + + Sign.prototype.update = function update(data, enc) { + if (typeof data === "string") data = new Buffer(data, enc) + + this._hash.update(data) + return this + } + + Sign.prototype.sign = function signMethod(key, enc) { + this.end() + var hash = this._hash.digest() + var sig = sign( + hash, + key, + this._hashType, + this._signType, + this._tag + ) + + return enc ? sig.toString(enc) : sig + } + + function Verify(algorithm) { + stream.Writable.call(this) + + var data = algorithms[algorithm] + if (!data) throw new Error("Unknown message digest") + + this._hash = createHash(data.hash) + this._tag = data.id + this._signType = data.sign + } + inherits(Verify, stream.Writable) + + Verify.prototype._write = function _write(data, _, done) { + this._hash.update(data) + done() + } + + Verify.prototype.update = function update(data, enc) { + if (typeof data === "string") data = new Buffer(data, enc) + + this._hash.update(data) + return this + } + + Verify.prototype.verify = function verifyMethod(key, sig, enc) { + if (typeof sig === "string") sig = new Buffer(sig, enc) + + this.end() + var hash = this._hash.digest() + return verify(sig, hash, key, this._signType, this._tag) + } + + function createSign(algorithm) { + return new Sign(algorithm) + } + + function createVerify(algorithm) { + return new Verify(algorithm) + } + + module.exports = { + Sign: createSign, + Verify: createVerify, + createSign: createSign, + createVerify: createVerify + } + }.call(this, require("buffer").Buffer)) + }, + { + "./algorithms.json": 42, + "./sign": 45, + "./verify": 46, + buffer: 48, + "create-hash": 52, + inherits: 100, + stream: 157 + } + ], + 45: [ + function(require, module, exports) { + ;(function(Buffer) { + // much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js + var createHmac = require("create-hmac") + var crt = require("browserify-rsa") + var EC = require("elliptic").ec + var BN = require("bn.js") + var parseKeys = require("parse-asn1") + var curves = require("./curves.json") + + function sign(hash, key, hashType, signType, tag) { + var priv = parseKeys(key) + if (priv.curve) { + // rsa keys can be interpreted as ecdsa ones in openssl + if (signType !== "ecdsa" && signType !== "ecdsa/rsa") + throw new Error("wrong private key type") + return ecSign(hash, priv) + } else if (priv.type === "dsa") { + if (signType !== "dsa") + throw new Error("wrong private key type") + return dsaSign(hash, priv, hashType) + } else { + if (signType !== "rsa" && signType !== "ecdsa/rsa") + throw new Error("wrong private key type") + } + hash = Buffer.concat([tag, hash]) + var len = priv.modulus.byteLength() + var pad = [0, 1] + while (hash.length + pad.length + 1 < len) pad.push(0xff) + pad.push(0x00) + var i = -1 + while (++i < hash.length) pad.push(hash[i]) + + var out = crt(pad, priv) + return out + } + + function ecSign(hash, priv) { + var curveId = curves[priv.curve.join(".")] + if (!curveId) + throw new Error("unknown curve " + priv.curve.join(".")) + + var curve = new EC(curveId) + var key = curve.keyFromPrivate(priv.privateKey) + var out = key.sign(hash) + + return new Buffer(out.toDER()) + } + + function dsaSign(hash, priv, algo) { + var x = priv.params.priv_key + var p = priv.params.p + var q = priv.params.q + var g = priv.params.g + var r = new BN(0) + var k + var H = bits2int(hash, q).mod(q) + var s = false + var kv = getKey(x, q, hash, algo) + while (s === false) { + k = makeKey(q, kv, algo) + r = makeR(g, k, p, q) + s = k + .invm(q) + .imul(H.add(x.mul(r))) + .mod(q) + if (s.cmpn(0) === 0) { + s = false + r = new BN(0) + } + } + return toDER(r, s) + } + + function toDER(r, s) { + r = r.toArray() + s = s.toArray() + + // Pad values + if (r[0] & 0x80) r = [0].concat(r) + if (s[0] & 0x80) s = [0].concat(s) + + var total = r.length + s.length + 4 + var res = [0x30, total, 0x02, r.length] + res = res.concat(r, [0x02, s.length], s) + return new Buffer(res) + } + + function getKey(x, q, hash, algo) { + x = new Buffer(x.toArray()) + if (x.length < q.byteLength()) { + var zeros = new Buffer(q.byteLength() - x.length) + zeros.fill(0) + x = Buffer.concat([zeros, x]) + } + var hlen = hash.length + var hbits = bits2octets(hash, q) + var v = new Buffer(hlen) + v.fill(1) + var k = new Buffer(hlen) + k.fill(0) + k = createHmac(algo, k) + .update(v) + .update(new Buffer([0])) + .update(x) + .update(hbits) + .digest() + v = createHmac(algo, k) + .update(v) + .digest() + k = createHmac(algo, k) + .update(v) + .update(new Buffer([1])) + .update(x) + .update(hbits) + .digest() + v = createHmac(algo, k) + .update(v) + .digest() + return { k: k, v: v } + } + + function bits2int(obits, q) { + var bits = new BN(obits) + var shift = (obits.length << 3) - q.bitLength() + if (shift > 0) bits.ishrn(shift) + return bits + } + + function bits2octets(bits, q) { + bits = bits2int(bits, q) + bits = bits.mod(q) + var out = new Buffer(bits.toArray()) + if (out.length < q.byteLength()) { + var zeros = new Buffer(q.byteLength() - out.length) + zeros.fill(0) + out = Buffer.concat([zeros, out]) + } + return out + } + + function makeKey(q, kv, algo) { + var t + var k + + do { + t = new Buffer(0) + + while (t.length * 8 < q.bitLength()) { + kv.v = createHmac(algo, kv.k) + .update(kv.v) + .digest() + t = Buffer.concat([t, kv.v]) + } + + k = bits2int(t, q) + kv.k = createHmac(algo, kv.k) + .update(kv.v) + .update(new Buffer([0])) + .digest() + kv.v = createHmac(algo, kv.k) + .update(kv.v) + .digest() + } while (k.cmp(q) !== -1) + + return k + } + + function makeR(g, k, p, q) { + return g + .toRed(BN.mont(p)) + .redPow(k) + .fromRed() + .mod(q) + } + + module.exports = sign + module.exports.getKey = getKey + module.exports.makeKey = makeKey + }.call(this, require("buffer").Buffer)) + }, + { + "./curves.json": 43, + "bn.js": 17, + "browserify-rsa": 40, + buffer: 48, + "create-hmac": 54, + elliptic: 67, + "parse-asn1": 112 + } + ], + 46: [ + function(require, module, exports) { + ;(function(Buffer) { + // much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js + var BN = require("bn.js") + var EC = require("elliptic").ec + var parseKeys = require("parse-asn1") + var curves = require("./curves.json") + + function verify(sig, hash, key, signType, tag) { + var pub = parseKeys(key) + if (pub.type === "ec") { + // rsa keys can be interpreted as ecdsa ones in openssl + if (signType !== "ecdsa" && signType !== "ecdsa/rsa") + throw new Error("wrong public key type") + return ecVerify(sig, hash, pub) + } else if (pub.type === "dsa") { + if (signType !== "dsa") throw new Error("wrong public key type") + return dsaVerify(sig, hash, pub) + } else { + if (signType !== "rsa" && signType !== "ecdsa/rsa") + throw new Error("wrong public key type") + } + hash = Buffer.concat([tag, hash]) + var len = pub.modulus.byteLength() + var pad = [1] + var padNum = 0 + while (hash.length + pad.length + 2 < len) { + pad.push(0xff) + padNum++ + } + pad.push(0x00) + var i = -1 + while (++i < hash.length) { + pad.push(hash[i]) + } + pad = new Buffer(pad) + var red = BN.mont(pub.modulus) + sig = new BN(sig).toRed(red) + + sig = sig.redPow(new BN(pub.publicExponent)) + sig = new Buffer(sig.fromRed().toArray()) + var out = padNum < 8 ? 1 : 0 + len = Math.min(sig.length, pad.length) + if (sig.length !== pad.length) out = 1 + + i = -1 + while (++i < len) out |= sig[i] ^ pad[i] + return out === 0 + } + + function ecVerify(sig, hash, pub) { + var curveId = curves[pub.data.algorithm.curve.join(".")] + if (!curveId) + throw new Error( + "unknown curve " + pub.data.algorithm.curve.join(".") + ) + + var curve = new EC(curveId) + var pubkey = pub.data.subjectPrivateKey.data + + return curve.verify(hash, sig, pubkey) + } + + function dsaVerify(sig, hash, pub) { + var p = pub.data.p + var q = pub.data.q + var g = pub.data.g + var y = pub.data.pub_key + var unpacked = parseKeys.signature.decode(sig, "der") + var s = unpacked.s + var r = unpacked.r + checkValue(s, q) + checkValue(r, q) + var montp = BN.mont(p) + var w = s.invm(q) + var v = g + .toRed(montp) + .redPow(new BN(hash).mul(w).mod(q)) + .fromRed() + .mul( + y + .toRed(montp) + .redPow(r.mul(w).mod(q)) + .fromRed() + ) + .mod(p) + .mod(q) + return v.cmp(r) === 0 + } + + function checkValue(b, q) { + if (b.cmpn(0) <= 0) throw new Error("invalid sig") + if (b.cmp(q) >= q) throw new Error("invalid sig") + } + + module.exports = verify + }.call(this, require("buffer").Buffer)) + }, + { + "./curves.json": 43, + "bn.js": 17, + buffer: 48, + elliptic: 67, + "parse-asn1": 112 + } + ], + 47: [ + function(require, module, exports) { + ;(function(Buffer) { + module.exports = function xor(a, b) { + var length = Math.min(a.length, b.length) + var buffer = new Buffer(length) + + for (var i = 0; i < length; ++i) { + buffer[i] = a[i] ^ b[i] + } + + return buffer + } + }.call(this, require("buffer").Buffer)) + }, + { buffer: 48 } + ], + 48: [ + function(require, module, exports) { + /*! + * The buffer module from node.js, for the browser. + * + * @author Feross Aboukhadijeh + * @license MIT + */ + /* eslint-disable no-proto */ + + "use strict" + + var base64 = require("base64-js") + var ieee754 = require("ieee754") + + exports.Buffer = Buffer + exports.SlowBuffer = SlowBuffer + exports.INSPECT_MAX_BYTES = 50 + + var K_MAX_LENGTH = 0x7fffffff + exports.kMaxLength = K_MAX_LENGTH + + /** + * If `Buffer.TYPED_ARRAY_SUPPORT`: + * === true Use Uint8Array implementation (fastest) + * === false Print warning and recommend using `buffer` v4.x which has an Object + * implementation (most compatible, even IE6) + * + * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+, + * Opera 11.6+, iOS 4.2+. + * + * We report that the browser does not support typed arrays if the are not subclassable + * using __proto__. Firefox 4-29 lacks support for adding new properties to `Uint8Array` + * (See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438). IE 10 lacks support + * for __proto__ and has a buggy typed array implementation. + */ + Buffer.TYPED_ARRAY_SUPPORT = typedArraySupport() + + if ( + !Buffer.TYPED_ARRAY_SUPPORT && + typeof console !== "undefined" && + typeof console.error === "function" + ) { + console.error( + "This browser lacks typed array (Uint8Array) support which is required by " + + "`buffer` v5.x. Use `buffer` v4.x if you require old browser support." + ) + } + + function typedArraySupport() { + // Can typed array instances can be augmented? + try { + var arr = new Uint8Array(1) + arr.__proto__ = { + __proto__: Uint8Array.prototype, + foo: function() { + return 42 + } + } + return arr.foo() === 42 + } catch (e) { + return false + } + } + + Object.defineProperty(Buffer.prototype, "parent", { + enumerable: true, + get: function() { + if (!Buffer.isBuffer(this)) return undefined + return this.buffer + } + }) + + Object.defineProperty(Buffer.prototype, "offset", { + enumerable: true, + get: function() { + if (!Buffer.isBuffer(this)) return undefined + return this.byteOffset + } + }) + + function createBuffer(length) { + if (length > K_MAX_LENGTH) { + throw new RangeError( + 'The value "' + length + '" is invalid for option "size"' + ) + } + // Return an augmented `Uint8Array` instance + var buf = new Uint8Array(length) + buf.__proto__ = Buffer.prototype + return buf + } + + /** + * The Buffer constructor returns instances of `Uint8Array` that have their + * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of + * `Uint8Array`, so the returned instances will have all the node `Buffer` methods + * and the `Uint8Array` methods. Square bracket notation works as expected -- it + * returns a single octet. + * + * The `Uint8Array` prototype remains unmodified. + */ + + function Buffer(arg, encodingOrOffset, length) { + // Common case. + if (typeof arg === "number") { + if (typeof encodingOrOffset === "string") { + throw new TypeError( + 'The "string" argument must be of type string. Received type number' + ) + } + return allocUnsafe(arg) + } + return from(arg, encodingOrOffset, length) + } + + // Fix subarray() in ES2016. See: https://github.com/feross/buffer/pull/97 + if ( + typeof Symbol !== "undefined" && + Symbol.species != null && + Buffer[Symbol.species] === Buffer + ) { + Object.defineProperty(Buffer, Symbol.species, { + value: null, + configurable: true, + enumerable: false, + writable: false + }) + } + + Buffer.poolSize = 8192 // not used by this implementation + + function from(value, encodingOrOffset, length) { + if (typeof value === "string") { + return fromString(value, encodingOrOffset) + } + + if (ArrayBuffer.isView(value)) { + return fromArrayLike(value) + } + + if (value == null) { + throw TypeError( + "The first argument must be one of type string, Buffer, ArrayBuffer, Array, " + + "or Array-like Object. Received type " + + typeof value + ) + } + + if ( + isInstance(value, ArrayBuffer) || + (value && isInstance(value.buffer, ArrayBuffer)) + ) { + return fromArrayBuffer(value, encodingOrOffset, length) + } + + if (typeof value === "number") { + throw new TypeError( + 'The "value" argument must not be of type number. Received type number' + ) + } + + var valueOf = value.valueOf && value.valueOf() + if (valueOf != null && valueOf !== value) { + return Buffer.from(valueOf, encodingOrOffset, length) + } + + var b = fromObject(value) + if (b) return b + + if ( + typeof Symbol !== "undefined" && + Symbol.toPrimitive != null && + typeof value[Symbol.toPrimitive] === "function" + ) { + return Buffer.from( + value[Symbol.toPrimitive]("string"), + encodingOrOffset, + length + ) + } + + throw new TypeError( + "The first argument must be one of type string, Buffer, ArrayBuffer, Array, " + + "or Array-like Object. Received type " + + typeof value + ) + } + + /** + * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError + * if value is a number. + * Buffer.from(str[, encoding]) + * Buffer.from(array) + * Buffer.from(buffer) + * Buffer.from(arrayBuffer[, byteOffset[, length]]) + **/ + Buffer.from = function(value, encodingOrOffset, length) { + return from(value, encodingOrOffset, length) + } + + // Note: Change prototype *after* Buffer.from is defined to workaround Chrome bug: + // https://github.com/feross/buffer/pull/148 + Buffer.prototype.__proto__ = Uint8Array.prototype + Buffer.__proto__ = Uint8Array + + function assertSize(size) { + if (typeof size !== "number") { + throw new TypeError('"size" argument must be of type number') + } else if (size < 0) { + throw new RangeError( + 'The value "' + size + '" is invalid for option "size"' + ) + } + } + + function alloc(size, fill, encoding) { + assertSize(size) + if (size <= 0) { + return createBuffer(size) + } + if (fill !== undefined) { + // Only pay attention to encoding if it's a string. This + // prevents accidentally sending in a number that would + // be interpretted as a start offset. + return typeof encoding === "string" + ? createBuffer(size).fill(fill, encoding) + : createBuffer(size).fill(fill) + } + return createBuffer(size) + } + + /** + * Creates a new filled Buffer instance. + * alloc(size[, fill[, encoding]]) + **/ + Buffer.alloc = function(size, fill, encoding) { + return alloc(size, fill, encoding) + } + + function allocUnsafe(size) { + assertSize(size) + return createBuffer(size < 0 ? 0 : checked(size) | 0) + } + + /** + * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance. + * */ + Buffer.allocUnsafe = function(size) { + return allocUnsafe(size) + } + /** + * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance. + */ + Buffer.allocUnsafeSlow = function(size) { + return allocUnsafe(size) + } + + function fromString(string, encoding) { + if (typeof encoding !== "string" || encoding === "") { + encoding = "utf8" + } + + if (!Buffer.isEncoding(encoding)) { + throw new TypeError("Unknown encoding: " + encoding) + } + + var length = byteLength(string, encoding) | 0 + var buf = createBuffer(length) + + var actual = buf.write(string, encoding) + + if (actual !== length) { + // Writing a hex string, for example, that contains invalid characters will + // cause everything after the first invalid character to be ignored. (e.g. + // 'abxxcd' will be treated as 'ab') + buf = buf.slice(0, actual) + } + + return buf + } + + function fromArrayLike(array) { + var length = array.length < 0 ? 0 : checked(array.length) | 0 + var buf = createBuffer(length) + for (var i = 0; i < length; i += 1) { + buf[i] = array[i] & 255 + } + return buf + } + + function fromArrayBuffer(array, byteOffset, length) { + if (byteOffset < 0 || array.byteLength < byteOffset) { + throw new RangeError('"offset" is outside of buffer bounds') + } + + if (array.byteLength < byteOffset + (length || 0)) { + throw new RangeError('"length" is outside of buffer bounds') + } + + var buf + if (byteOffset === undefined && length === undefined) { + buf = new Uint8Array(array) + } else if (length === undefined) { + buf = new Uint8Array(array, byteOffset) + } else { + buf = new Uint8Array(array, byteOffset, length) + } + + // Return an augmented `Uint8Array` instance + buf.__proto__ = Buffer.prototype + return buf + } + + function fromObject(obj) { + if (Buffer.isBuffer(obj)) { + var len = checked(obj.length) | 0 + var buf = createBuffer(len) + + if (buf.length === 0) { + return buf + } + + obj.copy(buf, 0, 0, len) + return buf + } + + if (obj.length !== undefined) { + if (typeof obj.length !== "number" || numberIsNaN(obj.length)) { + return createBuffer(0) + } + return fromArrayLike(obj) + } + + if (obj.type === "Buffer" && Array.isArray(obj.data)) { + return fromArrayLike(obj.data) + } + } + + function checked(length) { + // Note: cannot use `length < K_MAX_LENGTH` here because that fails when + // length is NaN (which is otherwise coerced to zero.) + if (length >= K_MAX_LENGTH) { + throw new RangeError( + "Attempt to allocate Buffer larger than maximum " + + "size: 0x" + + K_MAX_LENGTH.toString(16) + + " bytes" + ) + } + return length | 0 + } + + function SlowBuffer(length) { + if (+length != length) { + // eslint-disable-line eqeqeq + length = 0 + } + return Buffer.alloc(+length) + } + + Buffer.isBuffer = function isBuffer(b) { + return b != null && b._isBuffer === true && b !== Buffer.prototype // so Buffer.isBuffer(Buffer.prototype) will be false + } + + Buffer.compare = function compare(a, b) { + if (isInstance(a, Uint8Array)) + a = Buffer.from(a, a.offset, a.byteLength) + if (isInstance(b, Uint8Array)) + b = Buffer.from(b, b.offset, b.byteLength) + if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) { + throw new TypeError( + 'The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array' + ) + } + + if (a === b) return 0 + + var x = a.length + var y = b.length + + for (var i = 0, len = Math.min(x, y); i < len; ++i) { + if (a[i] !== b[i]) { + x = a[i] + y = b[i] + break + } + } + + if (x < y) return -1 + if (y < x) return 1 + return 0 + } + + Buffer.isEncoding = function isEncoding(encoding) { + switch (String(encoding).toLowerCase()) { + case "hex": + case "utf8": + case "utf-8": + case "ascii": + case "latin1": + case "binary": + case "base64": + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return true + default: + return false + } + } + + Buffer.concat = function concat(list, length) { + if (!Array.isArray(list)) { + throw new TypeError('"list" argument must be an Array of Buffers') + } + + if (list.length === 0) { + return Buffer.alloc(0) + } + + var i + if (length === undefined) { + length = 0 + for (i = 0; i < list.length; ++i) { + length += list[i].length + } + } + + var buffer = Buffer.allocUnsafe(length) + var pos = 0 + for (i = 0; i < list.length; ++i) { + var buf = list[i] + if (isInstance(buf, Uint8Array)) { + buf = Buffer.from(buf) + } + if (!Buffer.isBuffer(buf)) { + throw new TypeError( + '"list" argument must be an Array of Buffers' + ) + } + buf.copy(buffer, pos) + pos += buf.length + } + return buffer + } + + function byteLength(string, encoding) { + if (Buffer.isBuffer(string)) { + return string.length + } + if (ArrayBuffer.isView(string) || isInstance(string, ArrayBuffer)) { + return string.byteLength + } + if (typeof string !== "string") { + throw new TypeError( + 'The "string" argument must be one of type string, Buffer, or ArrayBuffer. ' + + "Received type " + + typeof string + ) + } + + var len = string.length + var mustMatch = arguments.length > 2 && arguments[2] === true + if (!mustMatch && len === 0) return 0 + + // Use a for loop to avoid recursion + var loweredCase = false + for (;;) { + switch (encoding) { + case "ascii": + case "latin1": + case "binary": + return len + case "utf8": + case "utf-8": + return utf8ToBytes(string).length + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return len * 2 + case "hex": + return len >>> 1 + case "base64": + return base64ToBytes(string).length + default: + if (loweredCase) { + return mustMatch ? -1 : utf8ToBytes(string).length // assume utf8 + } + encoding = ("" + encoding).toLowerCase() + loweredCase = true + } + } + } + Buffer.byteLength = byteLength + + function slowToString(encoding, start, end) { + var loweredCase = false + + // No need to verify that "this.length <= MAX_UINT32" since it's a read-only + // property of a typed array. + + // This behaves neither like String nor Uint8Array in that we set start/end + // to their upper/lower bounds if the value passed is out of range. + // undefined is handled specially as per ECMA-262 6th Edition, + // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization. + if (start === undefined || start < 0) { + start = 0 + } + // Return early if start > this.length. Done here to prevent potential uint32 + // coercion fail below. + if (start > this.length) { + return "" + } + + if (end === undefined || end > this.length) { + end = this.length + } + + if (end <= 0) { + return "" + } + + // Force coersion to uint32. This will also coerce falsey/NaN values to 0. + end >>>= 0 + start >>>= 0 + + if (end <= start) { + return "" + } + + if (!encoding) encoding = "utf8" + + while (true) { + switch (encoding) { + case "hex": + return hexSlice(this, start, end) + + case "utf8": + case "utf-8": + return utf8Slice(this, start, end) + + case "ascii": + return asciiSlice(this, start, end) + + case "latin1": + case "binary": + return latin1Slice(this, start, end) + + case "base64": + return base64Slice(this, start, end) + + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return utf16leSlice(this, start, end) + + default: + if (loweredCase) + throw new TypeError("Unknown encoding: " + encoding) + encoding = (encoding + "").toLowerCase() + loweredCase = true + } + } + } + + // This property is used by `Buffer.isBuffer` (and the `is-buffer` npm package) + // to detect a Buffer instance. It's not possible to use `instanceof Buffer` + // reliably in a browserify context because there could be multiple different + // copies of the 'buffer' package in use. This method works even for Buffer + // instances that were created from another copy of the `buffer` package. + // See: https://github.com/feross/buffer/issues/154 + Buffer.prototype._isBuffer = true + + function swap(b, n, m) { + var i = b[n] + b[n] = b[m] + b[m] = i + } + + Buffer.prototype.swap16 = function swap16() { + var len = this.length + if (len % 2 !== 0) { + throw new RangeError("Buffer size must be a multiple of 16-bits") + } + for (var i = 0; i < len; i += 2) { + swap(this, i, i + 1) + } + return this + } + + Buffer.prototype.swap32 = function swap32() { + var len = this.length + if (len % 4 !== 0) { + throw new RangeError("Buffer size must be a multiple of 32-bits") + } + for (var i = 0; i < len; i += 4) { + swap(this, i, i + 3) + swap(this, i + 1, i + 2) + } + return this + } + + Buffer.prototype.swap64 = function swap64() { + var len = this.length + if (len % 8 !== 0) { + throw new RangeError("Buffer size must be a multiple of 64-bits") + } + for (var i = 0; i < len; i += 8) { + swap(this, i, i + 7) + swap(this, i + 1, i + 6) + swap(this, i + 2, i + 5) + swap(this, i + 3, i + 4) + } + return this + } + + Buffer.prototype.toString = function toString() { + var length = this.length + if (length === 0) return "" + if (arguments.length === 0) return utf8Slice(this, 0, length) + return slowToString.apply(this, arguments) + } + + Buffer.prototype.toLocaleString = Buffer.prototype.toString + + Buffer.prototype.equals = function equals(b) { + if (!Buffer.isBuffer(b)) + throw new TypeError("Argument must be a Buffer") + if (this === b) return true + return Buffer.compare(this, b) === 0 + } + + Buffer.prototype.inspect = function inspect() { + var str = "" + var max = exports.INSPECT_MAX_BYTES + str = this.toString("hex", 0, max) + .replace(/(.{2})/g, "$1 ") + .trim() + if (this.length > max) str += " ... " + return "" + } + + Buffer.prototype.compare = function compare( + target, + start, + end, + thisStart, + thisEnd + ) { + if (isInstance(target, Uint8Array)) { + target = Buffer.from(target, target.offset, target.byteLength) + } + if (!Buffer.isBuffer(target)) { + throw new TypeError( + 'The "target" argument must be one of type Buffer or Uint8Array. ' + + "Received type " + + typeof target + ) + } + + if (start === undefined) { + start = 0 + } + if (end === undefined) { + end = target ? target.length : 0 + } + if (thisStart === undefined) { + thisStart = 0 + } + if (thisEnd === undefined) { + thisEnd = this.length + } + + if ( + start < 0 || + end > target.length || + thisStart < 0 || + thisEnd > this.length + ) { + throw new RangeError("out of range index") + } + + if (thisStart >= thisEnd && start >= end) { + return 0 + } + if (thisStart >= thisEnd) { + return -1 + } + if (start >= end) { + return 1 + } + + start >>>= 0 + end >>>= 0 + thisStart >>>= 0 + thisEnd >>>= 0 + + if (this === target) return 0 + + var x = thisEnd - thisStart + var y = end - start + var len = Math.min(x, y) + + var thisCopy = this.slice(thisStart, thisEnd) + var targetCopy = target.slice(start, end) + + for (var i = 0; i < len; ++i) { + if (thisCopy[i] !== targetCopy[i]) { + x = thisCopy[i] + y = targetCopy[i] + break + } + } + + if (x < y) return -1 + if (y < x) return 1 + return 0 + } + + // Finds either the first index of `val` in `buffer` at offset >= `byteOffset`, + // OR the last index of `val` in `buffer` at offset <= `byteOffset`. + // + // Arguments: + // - buffer - a Buffer to search + // - val - a string, Buffer, or number + // - byteOffset - an index into `buffer`; will be clamped to an int32 + // - encoding - an optional encoding, relevant is val is a string + // - dir - true for indexOf, false for lastIndexOf + function bidirectionalIndexOf( + buffer, + val, + byteOffset, + encoding, + dir + ) { + // Empty buffer means no match + if (buffer.length === 0) return -1 + + // Normalize byteOffset + if (typeof byteOffset === "string") { + encoding = byteOffset + byteOffset = 0 + } else if (byteOffset > 0x7fffffff) { + byteOffset = 0x7fffffff + } else if (byteOffset < -0x80000000) { + byteOffset = -0x80000000 + } + byteOffset = +byteOffset // Coerce to Number. + if (numberIsNaN(byteOffset)) { + // byteOffset: it it's undefined, null, NaN, "foo", etc, search whole buffer + byteOffset = dir ? 0 : buffer.length - 1 + } + + // Normalize byteOffset: negative offsets start from the end of the buffer + if (byteOffset < 0) byteOffset = buffer.length + byteOffset + if (byteOffset >= buffer.length) { + if (dir) return -1 + else byteOffset = buffer.length - 1 + } else if (byteOffset < 0) { + if (dir) byteOffset = 0 + else return -1 + } + + // Normalize val + if (typeof val === "string") { + val = Buffer.from(val, encoding) + } + + // Finally, search either indexOf (if dir is true) or lastIndexOf + if (Buffer.isBuffer(val)) { + // Special case: looking for empty string/buffer always fails + if (val.length === 0) { + return -1 + } + return arrayIndexOf(buffer, val, byteOffset, encoding, dir) + } else if (typeof val === "number") { + val = val & 0xff // Search for a byte value [0-255] + if (typeof Uint8Array.prototype.indexOf === "function") { + if (dir) { + return Uint8Array.prototype.indexOf.call( + buffer, + val, + byteOffset + ) + } else { + return Uint8Array.prototype.lastIndexOf.call( + buffer, + val, + byteOffset + ) + } + } + return arrayIndexOf(buffer, [val], byteOffset, encoding, dir) + } + + throw new TypeError("val must be string, number or Buffer") + } + + function arrayIndexOf(arr, val, byteOffset, encoding, dir) { + var indexSize = 1 + var arrLength = arr.length + var valLength = val.length + + if (encoding !== undefined) { + encoding = String(encoding).toLowerCase() + if ( + encoding === "ucs2" || + encoding === "ucs-2" || + encoding === "utf16le" || + encoding === "utf-16le" + ) { + if (arr.length < 2 || val.length < 2) { + return -1 + } + indexSize = 2 + arrLength /= 2 + valLength /= 2 + byteOffset /= 2 + } + } + + function read(buf, i) { + if (indexSize === 1) { + return buf[i] + } else { + return buf.readUInt16BE(i * indexSize) + } + } + + var i + if (dir) { + var foundIndex = -1 + for (i = byteOffset; i < arrLength; i++) { + if ( + read(arr, i) === + read(val, foundIndex === -1 ? 0 : i - foundIndex) + ) { + if (foundIndex === -1) foundIndex = i + if (i - foundIndex + 1 === valLength) + return foundIndex * indexSize + } else { + if (foundIndex !== -1) i -= i - foundIndex + foundIndex = -1 + } + } + } else { + if (byteOffset + valLength > arrLength) + byteOffset = arrLength - valLength + for (i = byteOffset; i >= 0; i--) { + var found = true + for (var j = 0; j < valLength; j++) { + if (read(arr, i + j) !== read(val, j)) { + found = false + break + } + } + if (found) return i + } + } + + return -1 + } + + Buffer.prototype.includes = function includes( + val, + byteOffset, + encoding + ) { + return this.indexOf(val, byteOffset, encoding) !== -1 + } + + Buffer.prototype.indexOf = function indexOf( + val, + byteOffset, + encoding + ) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, true) + } + + Buffer.prototype.lastIndexOf = function lastIndexOf( + val, + byteOffset, + encoding + ) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, false) + } + + function hexWrite(buf, string, offset, length) { + offset = Number(offset) || 0 + var remaining = buf.length - offset + if (!length) { + length = remaining + } else { + length = Number(length) + if (length > remaining) { + length = remaining + } + } + + var strLen = string.length + + if (length > strLen / 2) { + length = strLen / 2 + } + for (var i = 0; i < length; ++i) { + var parsed = parseInt(string.substr(i * 2, 2), 16) + if (numberIsNaN(parsed)) return i + buf[offset + i] = parsed + } + return i + } + + function utf8Write(buf, string, offset, length) { + return blitBuffer( + utf8ToBytes(string, buf.length - offset), + buf, + offset, + length + ) + } + + function asciiWrite(buf, string, offset, length) { + return blitBuffer(asciiToBytes(string), buf, offset, length) + } + + function latin1Write(buf, string, offset, length) { + return asciiWrite(buf, string, offset, length) + } + + function base64Write(buf, string, offset, length) { + return blitBuffer(base64ToBytes(string), buf, offset, length) + } + + function ucs2Write(buf, string, offset, length) { + return blitBuffer( + utf16leToBytes(string, buf.length - offset), + buf, + offset, + length + ) + } + + Buffer.prototype.write = function write( + string, + offset, + length, + encoding + ) { + // Buffer#write(string) + if (offset === undefined) { + encoding = "utf8" + length = this.length + offset = 0 + // Buffer#write(string, encoding) + } else if (length === undefined && typeof offset === "string") { + encoding = offset + length = this.length + offset = 0 + // Buffer#write(string, offset[, length][, encoding]) + } else if (isFinite(offset)) { + offset = offset >>> 0 + if (isFinite(length)) { + length = length >>> 0 + if (encoding === undefined) encoding = "utf8" + } else { + encoding = length + length = undefined + } + } else { + throw new Error( + "Buffer.write(string, encoding, offset[, length]) is no longer supported" + ) + } + + var remaining = this.length - offset + if (length === undefined || length > remaining) length = remaining + + if ( + (string.length > 0 && (length < 0 || offset < 0)) || + offset > this.length + ) { + throw new RangeError("Attempt to write outside buffer bounds") + } + + if (!encoding) encoding = "utf8" + + var loweredCase = false + for (;;) { + switch (encoding) { + case "hex": + return hexWrite(this, string, offset, length) + + case "utf8": + case "utf-8": + return utf8Write(this, string, offset, length) + + case "ascii": + return asciiWrite(this, string, offset, length) + + case "latin1": + case "binary": + return latin1Write(this, string, offset, length) + + case "base64": + // Warning: maxLength not taken into account in base64Write + return base64Write(this, string, offset, length) + + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return ucs2Write(this, string, offset, length) + + default: + if (loweredCase) + throw new TypeError("Unknown encoding: " + encoding) + encoding = ("" + encoding).toLowerCase() + loweredCase = true + } + } + } + + Buffer.prototype.toJSON = function toJSON() { + return { + type: "Buffer", + data: Array.prototype.slice.call(this._arr || this, 0) + } + } + + function base64Slice(buf, start, end) { + if (start === 0 && end === buf.length) { + return base64.fromByteArray(buf) + } else { + return base64.fromByteArray(buf.slice(start, end)) + } + } + + function utf8Slice(buf, start, end) { + end = Math.min(buf.length, end) + var res = [] + + var i = start + while (i < end) { + var firstByte = buf[i] + var codePoint = null + var bytesPerSequence = + firstByte > 0xef + ? 4 + : firstByte > 0xdf + ? 3 + : firstByte > 0xbf + ? 2 + : 1 + + if (i + bytesPerSequence <= end) { + var secondByte, thirdByte, fourthByte, tempCodePoint + + switch (bytesPerSequence) { + case 1: + if (firstByte < 0x80) { + codePoint = firstByte + } + break + case 2: + secondByte = buf[i + 1] + if ((secondByte & 0xc0) === 0x80) { + tempCodePoint = + ((firstByte & 0x1f) << 0x6) | (secondByte & 0x3f) + if (tempCodePoint > 0x7f) { + codePoint = tempCodePoint + } + } + break + case 3: + secondByte = buf[i + 1] + thirdByte = buf[i + 2] + if ( + (secondByte & 0xc0) === 0x80 && + (thirdByte & 0xc0) === 0x80 + ) { + tempCodePoint = + ((firstByte & 0xf) << 0xc) | + ((secondByte & 0x3f) << 0x6) | + (thirdByte & 0x3f) + if ( + tempCodePoint > 0x7ff && + (tempCodePoint < 0xd800 || tempCodePoint > 0xdfff) + ) { + codePoint = tempCodePoint + } + } + break + case 4: + secondByte = buf[i + 1] + thirdByte = buf[i + 2] + fourthByte = buf[i + 3] + if ( + (secondByte & 0xc0) === 0x80 && + (thirdByte & 0xc0) === 0x80 && + (fourthByte & 0xc0) === 0x80 + ) { + tempCodePoint = + ((firstByte & 0xf) << 0x12) | + ((secondByte & 0x3f) << 0xc) | + ((thirdByte & 0x3f) << 0x6) | + (fourthByte & 0x3f) + if (tempCodePoint > 0xffff && tempCodePoint < 0x110000) { + codePoint = tempCodePoint + } + } + } + } + + if (codePoint === null) { + // we did not generate a valid codePoint so insert a + // replacement char (U+FFFD) and advance only 1 byte + codePoint = 0xfffd + bytesPerSequence = 1 + } else if (codePoint > 0xffff) { + // encode to utf16 (surrogate pair dance) + codePoint -= 0x10000 + res.push(((codePoint >>> 10) & 0x3ff) | 0xd800) + codePoint = 0xdc00 | (codePoint & 0x3ff) + } + + res.push(codePoint) + i += bytesPerSequence + } + + return decodeCodePointsArray(res) + } + + // Based on http://stackoverflow.com/a/22747272/680742, the browser with + // the lowest limit is Chrome, with 0x10000 args. + // We go 1 magnitude less, for safety + var MAX_ARGUMENTS_LENGTH = 0x1000 + + function decodeCodePointsArray(codePoints) { + var len = codePoints.length + if (len <= MAX_ARGUMENTS_LENGTH) { + return String.fromCharCode.apply(String, codePoints) // avoid extra slice() + } + + // Decode in chunks to avoid "call stack size exceeded". + var res = "" + var i = 0 + while (i < len) { + res += String.fromCharCode.apply( + String, + codePoints.slice(i, (i += MAX_ARGUMENTS_LENGTH)) + ) + } + return res + } + + function asciiSlice(buf, start, end) { + var ret = "" + end = Math.min(buf.length, end) + + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i] & 0x7f) + } + return ret + } + + function latin1Slice(buf, start, end) { + var ret = "" + end = Math.min(buf.length, end) + + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i]) + } + return ret + } + + function hexSlice(buf, start, end) { + var len = buf.length + + if (!start || start < 0) start = 0 + if (!end || end < 0 || end > len) end = len + + var out = "" + for (var i = start; i < end; ++i) { + out += toHex(buf[i]) + } + return out + } + + function utf16leSlice(buf, start, end) { + var bytes = buf.slice(start, end) + var res = "" + for (var i = 0; i < bytes.length; i += 2) { + res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256) + } + return res + } + + Buffer.prototype.slice = function slice(start, end) { + var len = this.length + start = ~~start + end = end === undefined ? len : ~~end + + if (start < 0) { + start += len + if (start < 0) start = 0 + } else if (start > len) { + start = len + } + + if (end < 0) { + end += len + if (end < 0) end = 0 + } else if (end > len) { + end = len + } + + if (end < start) end = start + + var newBuf = this.subarray(start, end) + // Return an augmented `Uint8Array` instance + newBuf.__proto__ = Buffer.prototype + return newBuf + } + + /* + * Need to make sure that buffer isn't trying to write out of bounds. + */ + function checkOffset(offset, ext, length) { + if (offset % 1 !== 0 || offset < 0) + throw new RangeError("offset is not uint") + if (offset + ext > length) + throw new RangeError("Trying to access beyond buffer length") + } + + Buffer.prototype.readUIntLE = function readUIntLE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + + var val = this[offset] + var mul = 1 + var i = 0 + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul + } + + return val + } + + Buffer.prototype.readUIntBE = function readUIntBE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) { + checkOffset(offset, byteLength, this.length) + } + + var val = this[offset + --byteLength] + var mul = 1 + while (byteLength > 0 && (mul *= 0x100)) { + val += this[offset + --byteLength] * mul + } + + return val + } + + Buffer.prototype.readUInt8 = function readUInt8(offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 1, this.length) + return this[offset] + } + + Buffer.prototype.readUInt16LE = function readUInt16LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + return this[offset] | (this[offset + 1] << 8) + } + + Buffer.prototype.readUInt16BE = function readUInt16BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + return (this[offset] << 8) | this[offset + 1] + } + + Buffer.prototype.readUInt32LE = function readUInt32LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + + return ( + (this[offset] | + (this[offset + 1] << 8) | + (this[offset + 2] << 16)) + + this[offset + 3] * 0x1000000 + ) + } + + Buffer.prototype.readUInt32BE = function readUInt32BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + + return ( + this[offset] * 0x1000000 + + ((this[offset + 1] << 16) | + (this[offset + 2] << 8) | + this[offset + 3]) + ) + } + + Buffer.prototype.readIntLE = function readIntLE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + + var val = this[offset] + var mul = 1 + var i = 0 + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul + } + mul *= 0x80 + + if (val >= mul) val -= Math.pow(2, 8 * byteLength) + + return val + } + + Buffer.prototype.readIntBE = function readIntBE( + offset, + byteLength, + noAssert + ) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + + var i = byteLength + var mul = 1 + var val = this[offset + --i] + while (i > 0 && (mul *= 0x100)) { + val += this[offset + --i] * mul + } + mul *= 0x80 + + if (val >= mul) val -= Math.pow(2, 8 * byteLength) + + return val + } + + Buffer.prototype.readInt8 = function readInt8(offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 1, this.length) + if (!(this[offset] & 0x80)) return this[offset] + return (0xff - this[offset] + 1) * -1 + } + + Buffer.prototype.readInt16LE = function readInt16LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + var val = this[offset] | (this[offset + 1] << 8) + return val & 0x8000 ? val | 0xffff0000 : val + } + + Buffer.prototype.readInt16BE = function readInt16BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + var val = this[offset + 1] | (this[offset] << 8) + return val & 0x8000 ? val | 0xffff0000 : val + } + + Buffer.prototype.readInt32LE = function readInt32LE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + + return ( + this[offset] | + (this[offset + 1] << 8) | + (this[offset + 2] << 16) | + (this[offset + 3] << 24) + ) + } + + Buffer.prototype.readInt32BE = function readInt32BE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + + return ( + (this[offset] << 24) | + (this[offset + 1] << 16) | + (this[offset + 2] << 8) | + this[offset + 3] + ) + } + + Buffer.prototype.readFloatLE = function readFloatLE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ieee754.read(this, offset, true, 23, 4) + } + + Buffer.prototype.readFloatBE = function readFloatBE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ieee754.read(this, offset, false, 23, 4) + } + + Buffer.prototype.readDoubleLE = function readDoubleLE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 8, this.length) + return ieee754.read(this, offset, true, 52, 8) + } + + Buffer.prototype.readDoubleBE = function readDoubleBE( + offset, + noAssert + ) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 8, this.length) + return ieee754.read(this, offset, false, 52, 8) + } + + function checkInt(buf, value, offset, ext, max, min) { + if (!Buffer.isBuffer(buf)) + throw new TypeError('"buffer" argument must be a Buffer instance') + if (value > max || value < min) + throw new RangeError('"value" argument is out of bounds') + if (offset + ext > buf.length) + throw new RangeError("Index out of range") + } + + Buffer.prototype.writeUIntLE = function writeUIntLE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1 + checkInt(this, value, offset, byteLength, maxBytes, 0) + } + + var mul = 1 + var i = 0 + this[offset] = value & 0xff + while (++i < byteLength && (mul *= 0x100)) { + this[offset + i] = (value / mul) & 0xff + } + + return offset + byteLength + } + + Buffer.prototype.writeUIntBE = function writeUIntBE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1 + checkInt(this, value, offset, byteLength, maxBytes, 0) + } + + var i = byteLength - 1 + var mul = 1 + this[offset + i] = value & 0xff + while (--i >= 0 && (mul *= 0x100)) { + this[offset + i] = (value / mul) & 0xff + } + + return offset + byteLength + } + + Buffer.prototype.writeUInt8 = function writeUInt8( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0) + this[offset] = value & 0xff + return offset + 1 + } + + Buffer.prototype.writeUInt16LE = function writeUInt16LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0) + this[offset] = value & 0xff + this[offset + 1] = value >>> 8 + return offset + 2 + } + + Buffer.prototype.writeUInt16BE = function writeUInt16BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0) + this[offset] = value >>> 8 + this[offset + 1] = value & 0xff + return offset + 2 + } + + Buffer.prototype.writeUInt32LE = function writeUInt32LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0) + this[offset + 3] = value >>> 24 + this[offset + 2] = value >>> 16 + this[offset + 1] = value >>> 8 + this[offset] = value & 0xff + return offset + 4 + } + + Buffer.prototype.writeUInt32BE = function writeUInt32BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0) + this[offset] = value >>> 24 + this[offset + 1] = value >>> 16 + this[offset + 2] = value >>> 8 + this[offset + 3] = value & 0xff + return offset + 4 + } + + Buffer.prototype.writeIntLE = function writeIntLE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1) + + checkInt(this, value, offset, byteLength, limit - 1, -limit) + } + + var i = 0 + var mul = 1 + var sub = 0 + this[offset] = value & 0xff + while (++i < byteLength && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) { + sub = 1 + } + this[offset + i] = (((value / mul) >> 0) - sub) & 0xff + } + + return offset + byteLength + } + + Buffer.prototype.writeIntBE = function writeIntBE( + value, + offset, + byteLength, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1) + + checkInt(this, value, offset, byteLength, limit - 1, -limit) + } + + var i = byteLength - 1 + var mul = 1 + var sub = 0 + this[offset + i] = value & 0xff + while (--i >= 0 && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) { + sub = 1 + } + this[offset + i] = (((value / mul) >> 0) - sub) & 0xff + } + + return offset + byteLength + } + + Buffer.prototype.writeInt8 = function writeInt8( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80) + if (value < 0) value = 0xff + value + 1 + this[offset] = value & 0xff + return offset + 1 + } + + Buffer.prototype.writeInt16LE = function writeInt16LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000) + this[offset] = value & 0xff + this[offset + 1] = value >>> 8 + return offset + 2 + } + + Buffer.prototype.writeInt16BE = function writeInt16BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000) + this[offset] = value >>> 8 + this[offset + 1] = value & 0xff + return offset + 2 + } + + Buffer.prototype.writeInt32LE = function writeInt32LE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) + checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000) + this[offset] = value & 0xff + this[offset + 1] = value >>> 8 + this[offset + 2] = value >>> 16 + this[offset + 3] = value >>> 24 + return offset + 4 + } + + Buffer.prototype.writeInt32BE = function writeInt32BE( + value, + offset, + noAssert + ) { + value = +value + offset = offset >>> 0 + if (!noAssert) + checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000) + if (value < 0) value = 0xffffffff + value + 1 + this[offset] = value >>> 24 + this[offset + 1] = value >>> 16 + this[offset + 2] = value >>> 8 + this[offset + 3] = value & 0xff + return offset + 4 + } + + function checkIEEE754(buf, value, offset, ext, max, min) { + if (offset + ext > buf.length) + throw new RangeError("Index out of range") + if (offset < 0) throw new RangeError("Index out of range") + } + + function writeFloat(buf, value, offset, littleEndian, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + checkIEEE754( + buf, + value, + offset, + 4, + 3.4028234663852886e38, + -3.4028234663852886e38 + ) + } + ieee754.write(buf, value, offset, littleEndian, 23, 4) + return offset + 4 + } + + Buffer.prototype.writeFloatLE = function writeFloatLE( + value, + offset, + noAssert + ) { + return writeFloat(this, value, offset, true, noAssert) + } + + Buffer.prototype.writeFloatBE = function writeFloatBE( + value, + offset, + noAssert + ) { + return writeFloat(this, value, offset, false, noAssert) + } + + function writeDouble(buf, value, offset, littleEndian, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + checkIEEE754( + buf, + value, + offset, + 8, + 1.7976931348623157e308, + -1.7976931348623157e308 + ) + } + ieee754.write(buf, value, offset, littleEndian, 52, 8) + return offset + 8 + } + + Buffer.prototype.writeDoubleLE = function writeDoubleLE( + value, + offset, + noAssert + ) { + return writeDouble(this, value, offset, true, noAssert) + } + + Buffer.prototype.writeDoubleBE = function writeDoubleBE( + value, + offset, + noAssert + ) { + return writeDouble(this, value, offset, false, noAssert) + } + + // copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length) + Buffer.prototype.copy = function copy( + target, + targetStart, + start, + end + ) { + if (!Buffer.isBuffer(target)) + throw new TypeError("argument should be a Buffer") + if (!start) start = 0 + if (!end && end !== 0) end = this.length + if (targetStart >= target.length) targetStart = target.length + if (!targetStart) targetStart = 0 + if (end > 0 && end < start) end = start + + // Copy 0 bytes; we're done + if (end === start) return 0 + if (target.length === 0 || this.length === 0) return 0 + + // Fatal error conditions + if (targetStart < 0) { + throw new RangeError("targetStart out of bounds") + } + if (start < 0 || start >= this.length) + throw new RangeError("Index out of range") + if (end < 0) throw new RangeError("sourceEnd out of bounds") + + // Are we oob? + if (end > this.length) end = this.length + if (target.length - targetStart < end - start) { + end = target.length - targetStart + start + } + + var len = end - start + + if ( + this === target && + typeof Uint8Array.prototype.copyWithin === "function" + ) { + // Use built-in when available, missing from IE11 + this.copyWithin(targetStart, start, end) + } else if ( + this === target && + start < targetStart && + targetStart < end + ) { + // descending copy from end + for (var i = len - 1; i >= 0; --i) { + target[i + targetStart] = this[i + start] + } + } else { + Uint8Array.prototype.set.call( + target, + this.subarray(start, end), + targetStart + ) + } + + return len + } + + // Usage: + // buffer.fill(number[, offset[, end]]) + // buffer.fill(buffer[, offset[, end]]) + // buffer.fill(string[, offset[, end]][, encoding]) + Buffer.prototype.fill = function fill(val, start, end, encoding) { + // Handle string cases: + if (typeof val === "string") { + if (typeof start === "string") { + encoding = start + start = 0 + end = this.length + } else if (typeof end === "string") { + encoding = end + end = this.length + } + if (encoding !== undefined && typeof encoding !== "string") { + throw new TypeError("encoding must be a string") + } + if ( + typeof encoding === "string" && + !Buffer.isEncoding(encoding) + ) { + throw new TypeError("Unknown encoding: " + encoding) + } + if (val.length === 1) { + var code = val.charCodeAt(0) + if ( + (encoding === "utf8" && code < 128) || + encoding === "latin1" + ) { + // Fast path: If `val` fits into a single byte, use that numeric value. + val = code + } + } + } else if (typeof val === "number") { + val = val & 255 + } + + // Invalid ranges are not set to a default, so can range check early. + if (start < 0 || this.length < start || this.length < end) { + throw new RangeError("Out of range index") + } + + if (end <= start) { + return this + } + + start = start >>> 0 + end = end === undefined ? this.length : end >>> 0 + + if (!val) val = 0 + + var i + if (typeof val === "number") { + for (i = start; i < end; ++i) { + this[i] = val + } + } else { + var bytes = Buffer.isBuffer(val) + ? val + : Buffer.from(val, encoding) + var len = bytes.length + if (len === 0) { + throw new TypeError( + 'The value "' + val + '" is invalid for argument "value"' + ) + } + for (i = 0; i < end - start; ++i) { + this[i + start] = bytes[i % len] + } + } + + return this + } + + // HELPER FUNCTIONS + // ================ + + var INVALID_BASE64_RE = /[^+/0-9A-Za-z-_]/g + + function base64clean(str) { + // Node takes equal signs as end of the Base64 encoding + str = str.split("=")[0] + // Node strips out invalid characters like \n and \t from the string, base64-js does not + str = str.trim().replace(INVALID_BASE64_RE, "") + // Node converts strings with length < 2 to '' + if (str.length < 2) return "" + // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not + while (str.length % 4 !== 0) { + str = str + "=" + } + return str + } + + function toHex(n) { + if (n < 16) return "0" + n.toString(16) + return n.toString(16) + } + + function utf8ToBytes(string, units) { + units = units || Infinity + var codePoint + var length = string.length + var leadSurrogate = null + var bytes = [] + + for (var i = 0; i < length; ++i) { + codePoint = string.charCodeAt(i) + + // is surrogate component + if (codePoint > 0xd7ff && codePoint < 0xe000) { + // last char was a lead + if (!leadSurrogate) { + // no lead yet + if (codePoint > 0xdbff) { + // unexpected trail + if ((units -= 3) > -1) bytes.push(0xef, 0xbf, 0xbd) + continue + } else if (i + 1 === length) { + // unpaired lead + if ((units -= 3) > -1) bytes.push(0xef, 0xbf, 0xbd) + continue + } + + // valid lead + leadSurrogate = codePoint + + continue + } + + // 2 leads in a row + if (codePoint < 0xdc00) { + if ((units -= 3) > -1) bytes.push(0xef, 0xbf, 0xbd) + leadSurrogate = codePoint + continue + } + + // valid surrogate pair + codePoint = + (((leadSurrogate - 0xd800) << 10) | (codePoint - 0xdc00)) + + 0x10000 + } else if (leadSurrogate) { + // valid bmp char, but last char was a lead + if ((units -= 3) > -1) bytes.push(0xef, 0xbf, 0xbd) + } + + leadSurrogate = null + + // encode utf8 + if (codePoint < 0x80) { + if ((units -= 1) < 0) break + bytes.push(codePoint) + } else if (codePoint < 0x800) { + if ((units -= 2) < 0) break + bytes.push((codePoint >> 0x6) | 0xc0, (codePoint & 0x3f) | 0x80) + } else if (codePoint < 0x10000) { + if ((units -= 3) < 0) break + bytes.push( + (codePoint >> 0xc) | 0xe0, + ((codePoint >> 0x6) & 0x3f) | 0x80, + (codePoint & 0x3f) | 0x80 + ) + } else if (codePoint < 0x110000) { + if ((units -= 4) < 0) break + bytes.push( + (codePoint >> 0x12) | 0xf0, + ((codePoint >> 0xc) & 0x3f) | 0x80, + ((codePoint >> 0x6) & 0x3f) | 0x80, + (codePoint & 0x3f) | 0x80 + ) + } else { + throw new Error("Invalid code point") + } + } + + return bytes + } + + function asciiToBytes(str) { + var byteArray = [] + for (var i = 0; i < str.length; ++i) { + // Node's code seems to be doing this and not & 0x7F.. + byteArray.push(str.charCodeAt(i) & 0xff) + } + return byteArray + } + + function utf16leToBytes(str, units) { + var c, hi, lo + var byteArray = [] + for (var i = 0; i < str.length; ++i) { + if ((units -= 2) < 0) break + + c = str.charCodeAt(i) + hi = c >> 8 + lo = c % 256 + byteArray.push(lo) + byteArray.push(hi) + } + + return byteArray + } + + function base64ToBytes(str) { + return base64.toByteArray(base64clean(str)) + } + + function blitBuffer(src, dst, offset, length) { + for (var i = 0; i < length; ++i) { + if (i + offset >= dst.length || i >= src.length) break + dst[i + offset] = src[i] + } + return i + } + + // ArrayBuffer or Uint8Array objects from other contexts (i.e. iframes) do not pass + // the `instanceof` check but they should be treated as of that type. + // See: https://github.com/feross/buffer/issues/166 + function isInstance(obj, type) { + return ( + obj instanceof type || + (obj != null && + obj.constructor != null && + obj.constructor.name != null && + obj.constructor.name === type.name) + ) + } + function numberIsNaN(obj) { + // For IE11 support + return obj !== obj // eslint-disable-line no-self-compare + } + }, + { "base64-js": 16, ieee754: 99 } + ], + 49: [ + function(require, module, exports) { + var Buffer = require("safe-buffer").Buffer + var Transform = require("stream").Transform + var StringDecoder = require("string_decoder").StringDecoder + var inherits = require("inherits") + + function CipherBase(hashMode) { + Transform.call(this) + this.hashMode = typeof hashMode === "string" + if (this.hashMode) { + this[hashMode] = this._finalOrDigest + } else { + this.final = this._finalOrDigest + } + if (this._final) { + this.__final = this._final + this._final = null + } + this._decoder = null + this._encoding = null + } + inherits(CipherBase, Transform) + + CipherBase.prototype.update = function(data, inputEnc, outputEnc) { + if (typeof data === "string") { + data = Buffer.from(data, inputEnc) + } + + var outData = this._update(data) + if (this.hashMode) return this + + if (outputEnc) { + outData = this._toString(outData, outputEnc) + } + + return outData + } + + CipherBase.prototype.setAutoPadding = function() {} + CipherBase.prototype.getAuthTag = function() { + throw new Error("trying to get auth tag in unsupported state") + } + + CipherBase.prototype.setAuthTag = function() { + throw new Error("trying to set auth tag in unsupported state") + } + + CipherBase.prototype.setAAD = function() { + throw new Error("trying to set aad in unsupported state") + } + + CipherBase.prototype._transform = function(data, _, next) { + var err + try { + if (this.hashMode) { + this._update(data) + } else { + this.push(this._update(data)) + } + } catch (e) { + err = e + } finally { + next(err) + } + } + CipherBase.prototype._flush = function(done) { + var err + try { + this.push(this.__final()) + } catch (e) { + err = e + } + + done(err) + } + CipherBase.prototype._finalOrDigest = function(outputEnc) { + var outData = this.__final() || Buffer.alloc(0) + if (outputEnc) { + outData = this._toString(outData, outputEnc, true) + } + return outData + } + + CipherBase.prototype._toString = function(value, enc, fin) { + if (!this._decoder) { + this._decoder = new StringDecoder(enc) + this._encoding = enc + } + + if (this._encoding !== enc) + throw new Error("can't switch encodings") + + var out = this._decoder.write(value) + if (fin) { + out += this._decoder.end() + } + + return out + } + + module.exports = CipherBase + }, + { inherits: 100, "safe-buffer": 148, stream: 157, string_decoder: 158 } + ], + 50: [ + function(require, module, exports) { + ;(function(Buffer) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + // NOTE: These type checking functions intentionally don't use `instanceof` + // because it is fragile and can be easily faked with `Object.create()`. + + function isArray(arg) { + if (Array.isArray) { + return Array.isArray(arg) + } + return objectToString(arg) === "[object Array]" + } + exports.isArray = isArray + + function isBoolean(arg) { + return typeof arg === "boolean" + } + exports.isBoolean = isBoolean + + function isNull(arg) { + return arg === null + } + exports.isNull = isNull + + function isNullOrUndefined(arg) { + return arg == null + } + exports.isNullOrUndefined = isNullOrUndefined + + function isNumber(arg) { + return typeof arg === "number" + } + exports.isNumber = isNumber + + function isString(arg) { + return typeof arg === "string" + } + exports.isString = isString + + function isSymbol(arg) { + return typeof arg === "symbol" + } + exports.isSymbol = isSymbol + + function isUndefined(arg) { + return arg === void 0 + } + exports.isUndefined = isUndefined + + function isRegExp(re) { + return objectToString(re) === "[object RegExp]" + } + exports.isRegExp = isRegExp + + function isObject(arg) { + return typeof arg === "object" && arg !== null + } + exports.isObject = isObject + + function isDate(d) { + return objectToString(d) === "[object Date]" + } + exports.isDate = isDate + + function isError(e) { + return ( + objectToString(e) === "[object Error]" || e instanceof Error + ) + } + exports.isError = isError + + function isFunction(arg) { + return typeof arg === "function" + } + exports.isFunction = isFunction + + function isPrimitive(arg) { + return ( + arg === null || + typeof arg === "boolean" || + typeof arg === "number" || + typeof arg === "string" || + typeof arg === "symbol" || // ES6 symbol + typeof arg === "undefined" + ) + } + exports.isPrimitive = isPrimitive + + exports.isBuffer = Buffer.isBuffer + + function objectToString(o) { + return Object.prototype.toString.call(o) + } + }.call(this, { isBuffer: require("../../is-buffer/index.js") })) + }, + { "../../is-buffer/index.js": 101 } + ], + 51: [ + function(require, module, exports) { + ;(function(Buffer) { + var elliptic = require("elliptic") + var BN = require("bn.js") + + module.exports = function createECDH(curve) { + return new ECDH(curve) + } + + var aliases = { + secp256k1: { + name: "secp256k1", + byteLength: 32 + }, + secp224r1: { + name: "p224", + byteLength: 28 + }, + prime256v1: { + name: "p256", + byteLength: 32 + }, + prime192v1: { + name: "p192", + byteLength: 24 + }, + ed25519: { + name: "ed25519", + byteLength: 32 + }, + secp384r1: { + name: "p384", + byteLength: 48 + }, + secp521r1: { + name: "p521", + byteLength: 66 + } + } + + aliases.p224 = aliases.secp224r1 + aliases.p256 = aliases.secp256r1 = aliases.prime256v1 + aliases.p192 = aliases.secp192r1 = aliases.prime192v1 + aliases.p384 = aliases.secp384r1 + aliases.p521 = aliases.secp521r1 + + function ECDH(curve) { + this.curveType = aliases[curve] + if (!this.curveType) { + this.curveType = { + name: curve + } + } + this.curve = new elliptic.ec(this.curveType.name) // eslint-disable-line new-cap + this.keys = void 0 + } + + ECDH.prototype.generateKeys = function(enc, format) { + this.keys = this.curve.genKeyPair() + return this.getPublicKey(enc, format) + } + + ECDH.prototype.computeSecret = function(other, inenc, enc) { + inenc = inenc || "utf8" + if (!Buffer.isBuffer(other)) { + other = new Buffer(other, inenc) + } + var otherPub = this.curve.keyFromPublic(other).getPublic() + var out = otherPub.mul(this.keys.getPrivate()).getX() + return formatReturnValue(out, enc, this.curveType.byteLength) + } + + ECDH.prototype.getPublicKey = function(enc, format) { + var key = this.keys.getPublic(format === "compressed", true) + if (format === "hybrid") { + if (key[key.length - 1] % 2) { + key[0] = 7 + } else { + key[0] = 6 + } + } + return formatReturnValue(key, enc) + } + + ECDH.prototype.getPrivateKey = function(enc) { + return formatReturnValue(this.keys.getPrivate(), enc) + } + + ECDH.prototype.setPublicKey = function(pub, enc) { + enc = enc || "utf8" + if (!Buffer.isBuffer(pub)) { + pub = new Buffer(pub, enc) + } + this.keys._importPublic(pub) + return this + } + + ECDH.prototype.setPrivateKey = function(priv, enc) { + enc = enc || "utf8" + if (!Buffer.isBuffer(priv)) { + priv = new Buffer(priv, enc) + } + + var _priv = new BN(priv) + _priv = _priv.toString(16) + this.keys = this.curve.genKeyPair() + this.keys._importPrivate(_priv) + return this + } + + function formatReturnValue(bn, enc, len) { + if (!Array.isArray(bn)) { + bn = bn.toArray() + } + var buf = new Buffer(bn) + if (len && buf.length < len) { + var zeros = new Buffer(len - buf.length) + zeros.fill(0) + buf = Buffer.concat([zeros, buf]) + } + if (!enc) { + return buf + } else { + return buf.toString(enc) + } + } + }.call(this, require("buffer").Buffer)) + }, + { "bn.js": 17, buffer: 48, elliptic: 67 } + ], + 52: [ + function(require, module, exports) { + "use strict" + var inherits = require("inherits") + var MD5 = require("md5.js") + var RIPEMD160 = require("ripemd160") + var sha = require("sha.js") + var Base = require("cipher-base") + + function Hash(hash) { + Base.call(this, "digest") + + this._hash = hash + } + + inherits(Hash, Base) + + Hash.prototype._update = function(data) { + this._hash.update(data) + } + + Hash.prototype._final = function() { + return this._hash.digest() + } + + module.exports = function createHash(alg) { + alg = alg.toLowerCase() + if (alg === "md5") return new MD5() + if (alg === "rmd160" || alg === "ripemd160") return new RIPEMD160() + + return new Hash(sha(alg)) + } + }, + { + "cipher-base": 49, + inherits: 100, + "md5.js": 103, + ripemd160: 147, + "sha.js": 150 + } + ], + 53: [ + function(require, module, exports) { + var MD5 = require("md5.js") + + module.exports = function(buffer) { + return new MD5().update(buffer).digest() + } + }, + { "md5.js": 103 } + ], + 54: [ + function(require, module, exports) { + "use strict" + var inherits = require("inherits") + var Legacy = require("./legacy") + var Base = require("cipher-base") + var Buffer = require("safe-buffer").Buffer + var md5 = require("create-hash/md5") + var RIPEMD160 = require("ripemd160") + + var sha = require("sha.js") + + var ZEROS = Buffer.alloc(128) + + function Hmac(alg, key) { + Base.call(this, "digest") + if (typeof key === "string") { + key = Buffer.from(key) + } + + var blocksize = alg === "sha512" || alg === "sha384" ? 128 : 64 + + this._alg = alg + this._key = key + if (key.length > blocksize) { + var hash = alg === "rmd160" ? new RIPEMD160() : sha(alg) + key = hash.update(key).digest() + } else if (key.length < blocksize) { + key = Buffer.concat([key, ZEROS], blocksize) + } + + var ipad = (this._ipad = Buffer.allocUnsafe(blocksize)) + var opad = (this._opad = Buffer.allocUnsafe(blocksize)) + + for (var i = 0; i < blocksize; i++) { + ipad[i] = key[i] ^ 0x36 + opad[i] = key[i] ^ 0x5c + } + this._hash = alg === "rmd160" ? new RIPEMD160() : sha(alg) + this._hash.update(ipad) + } + + inherits(Hmac, Base) + + Hmac.prototype._update = function(data) { + this._hash.update(data) + } + + Hmac.prototype._final = function() { + var h = this._hash.digest() + var hash = this._alg === "rmd160" ? new RIPEMD160() : sha(this._alg) + return hash + .update(this._opad) + .update(h) + .digest() + } + + module.exports = function createHmac(alg, key) { + alg = alg.toLowerCase() + if (alg === "rmd160" || alg === "ripemd160") { + return new Hmac("rmd160", key) + } + if (alg === "md5") { + return new Legacy(md5, key) + } + return new Hmac(alg, key) + } + }, + { + "./legacy": 55, + "cipher-base": 49, + "create-hash/md5": 53, + inherits: 100, + ripemd160: 147, + "safe-buffer": 148, + "sha.js": 150 + } + ], + 55: [ + function(require, module, exports) { + "use strict" + var inherits = require("inherits") + var Buffer = require("safe-buffer").Buffer + + var Base = require("cipher-base") + + var ZEROS = Buffer.alloc(128) + var blocksize = 64 + + function Hmac(alg, key) { + Base.call(this, "digest") + if (typeof key === "string") { + key = Buffer.from(key) + } + + this._alg = alg + this._key = key + + if (key.length > blocksize) { + key = alg(key) + } else if (key.length < blocksize) { + key = Buffer.concat([key, ZEROS], blocksize) + } + + var ipad = (this._ipad = Buffer.allocUnsafe(blocksize)) + var opad = (this._opad = Buffer.allocUnsafe(blocksize)) + + for (var i = 0; i < blocksize; i++) { + ipad[i] = key[i] ^ 0x36 + opad[i] = key[i] ^ 0x5c + } + + this._hash = [ipad] + } + + inherits(Hmac, Base) + + Hmac.prototype._update = function(data) { + this._hash.push(data) + } + + Hmac.prototype._final = function() { + var h = this._alg(Buffer.concat(this._hash)) + return this._alg(Buffer.concat([this._opad, h])) + } + module.exports = Hmac + }, + { "cipher-base": 49, inherits: 100, "safe-buffer": 148 } + ], + 56: [ + function(require, module, exports) { + "use strict" + + exports.randomBytes = exports.rng = exports.pseudoRandomBytes = exports.prng = require("randombytes") + exports.createHash = exports.Hash = require("create-hash") + exports.createHmac = exports.Hmac = require("create-hmac") + + var algos = require("browserify-sign/algos") + var algoKeys = Object.keys(algos) + var hashes = [ + "sha1", + "sha224", + "sha256", + "sha384", + "sha512", + "md5", + "rmd160" + ].concat(algoKeys) + exports.getHashes = function() { + return hashes + } + + var p = require("pbkdf2") + exports.pbkdf2 = p.pbkdf2 + exports.pbkdf2Sync = p.pbkdf2Sync + + var aes = require("browserify-cipher") + + exports.Cipher = aes.Cipher + exports.createCipher = aes.createCipher + exports.Cipheriv = aes.Cipheriv + exports.createCipheriv = aes.createCipheriv + exports.Decipher = aes.Decipher + exports.createDecipher = aes.createDecipher + exports.Decipheriv = aes.Decipheriv + exports.createDecipheriv = aes.createDecipheriv + exports.getCiphers = aes.getCiphers + exports.listCiphers = aes.listCiphers + + var dh = require("diffie-hellman") + + exports.DiffieHellmanGroup = dh.DiffieHellmanGroup + exports.createDiffieHellmanGroup = dh.createDiffieHellmanGroup + exports.getDiffieHellman = dh.getDiffieHellman + exports.createDiffieHellman = dh.createDiffieHellman + exports.DiffieHellman = dh.DiffieHellman + + var sign = require("browserify-sign") + + exports.createSign = sign.createSign + exports.Sign = sign.Sign + exports.createVerify = sign.createVerify + exports.Verify = sign.Verify + + exports.createECDH = require("create-ecdh") + + var publicEncrypt = require("public-encrypt") + + exports.publicEncrypt = publicEncrypt.publicEncrypt + exports.privateEncrypt = publicEncrypt.privateEncrypt + exports.publicDecrypt = publicEncrypt.publicDecrypt + exports.privateDecrypt = publicEncrypt.privateDecrypt + + // the least I can do is make error messages for the rest of the node.js/crypto api. + // ;[ + // 'createCredentials' + // ].forEach(function (name) { + // exports[name] = function () { + // throw new Error([ + // 'sorry, ' + name + ' is not implemented yet', + // 'we accept pull requests', + // 'https://github.com/crypto-browserify/crypto-browserify' + // ].join('\n')) + // } + // }) + + var rf = require("randomfill") + + exports.randomFill = rf.randomFill + exports.randomFillSync = rf.randomFillSync + + exports.createCredentials = function() { + throw new Error( + [ + "sorry, createCredentials is not implemented yet", + "we accept pull requests", + "https://github.com/crypto-browserify/crypto-browserify" + ].join("\n") + ) + } + + exports.constants = { + DH_CHECK_P_NOT_SAFE_PRIME: 2, + DH_CHECK_P_NOT_PRIME: 1, + DH_UNABLE_TO_CHECK_GENERATOR: 4, + DH_NOT_SUITABLE_GENERATOR: 8, + NPN_ENABLED: 1, + ALPN_ENABLED: 1, + RSA_PKCS1_PADDING: 1, + RSA_SSLV23_PADDING: 2, + RSA_NO_PADDING: 3, + RSA_PKCS1_OAEP_PADDING: 4, + RSA_X931_PADDING: 5, + RSA_PKCS1_PSS_PADDING: 6, + POINT_CONVERSION_COMPRESSED: 2, + POINT_CONVERSION_UNCOMPRESSED: 4, + POINT_CONVERSION_HYBRID: 6 + } + }, + { + "browserify-cipher": 37, + "browserify-sign": 44, + "browserify-sign/algos": 41, + "create-ecdh": 51, + "create-hash": 52, + "create-hmac": 54, + "diffie-hellman": 63, + pbkdf2: 114, + "public-encrypt": 121, + randombytes: 131, + randomfill: 132 + } + ], + 57: [ + function(require, module, exports) { + "use strict" + + exports.utils = require("./des/utils") + exports.Cipher = require("./des/cipher") + exports.DES = require("./des/des") + exports.CBC = require("./des/cbc") + exports.EDE = require("./des/ede") + }, + { + "./des/cbc": 58, + "./des/cipher": 59, + "./des/des": 60, + "./des/ede": 61, + "./des/utils": 62 + } + ], + 58: [ + function(require, module, exports) { + "use strict" + + var assert = require("minimalistic-assert") + var inherits = require("inherits") + + var proto = {} + + function CBCState(iv) { + assert.equal(iv.length, 8, "Invalid IV length") + + this.iv = new Array(8) + for (var i = 0; i < this.iv.length; i++) this.iv[i] = iv[i] + } + + function instantiate(Base) { + function CBC(options) { + Base.call(this, options) + this._cbcInit() + } + inherits(CBC, Base) + + var keys = Object.keys(proto) + for (var i = 0; i < keys.length; i++) { + var key = keys[i] + CBC.prototype[key] = proto[key] + } + + CBC.create = function create(options) { + return new CBC(options) + } + + return CBC + } + + exports.instantiate = instantiate + + proto._cbcInit = function _cbcInit() { + var state = new CBCState(this.options.iv) + this._cbcState = state + } + + proto._update = function _update(inp, inOff, out, outOff) { + var state = this._cbcState + var superProto = this.constructor.super_.prototype + + var iv = state.iv + if (this.type === "encrypt") { + for (var i = 0; i < this.blockSize; i++) iv[i] ^= inp[inOff + i] + + superProto._update.call(this, iv, 0, out, outOff) + + for (var i = 0; i < this.blockSize; i++) iv[i] = out[outOff + i] + } else { + superProto._update.call(this, inp, inOff, out, outOff) + + for (var i = 0; i < this.blockSize; i++) out[outOff + i] ^= iv[i] + + for (var i = 0; i < this.blockSize; i++) iv[i] = inp[inOff + i] + } + } + }, + { inherits: 100, "minimalistic-assert": 105 } + ], + 59: [ + function(require, module, exports) { + "use strict" + + var assert = require("minimalistic-assert") + + function Cipher(options) { + this.options = options + + this.type = this.options.type + this.blockSize = 8 + this._init() + + this.buffer = new Array(this.blockSize) + this.bufferOff = 0 + } + module.exports = Cipher + + Cipher.prototype._init = function _init() { + // Might be overrided + } + + Cipher.prototype.update = function update(data) { + if (data.length === 0) return [] + + if (this.type === "decrypt") return this._updateDecrypt(data) + else return this._updateEncrypt(data) + } + + Cipher.prototype._buffer = function _buffer(data, off) { + // Append data to buffer + var min = Math.min( + this.buffer.length - this.bufferOff, + data.length - off + ) + for (var i = 0; i < min; i++) + this.buffer[this.bufferOff + i] = data[off + i] + this.bufferOff += min + + // Shift next + return min + } + + Cipher.prototype._flushBuffer = function _flushBuffer(out, off) { + this._update(this.buffer, 0, out, off) + this.bufferOff = 0 + return this.blockSize + } + + Cipher.prototype._updateEncrypt = function _updateEncrypt(data) { + var inputOff = 0 + var outputOff = 0 + + var count = ((this.bufferOff + data.length) / this.blockSize) | 0 + var out = new Array(count * this.blockSize) + + if (this.bufferOff !== 0) { + inputOff += this._buffer(data, inputOff) + + if (this.bufferOff === this.buffer.length) + outputOff += this._flushBuffer(out, outputOff) + } + + // Write blocks + var max = data.length - ((data.length - inputOff) % this.blockSize) + for (; inputOff < max; inputOff += this.blockSize) { + this._update(data, inputOff, out, outputOff) + outputOff += this.blockSize + } + + // Queue rest + for (; inputOff < data.length; inputOff++, this.bufferOff++) + this.buffer[this.bufferOff] = data[inputOff] + + return out + } + + Cipher.prototype._updateDecrypt = function _updateDecrypt(data) { + var inputOff = 0 + var outputOff = 0 + + var count = + Math.ceil((this.bufferOff + data.length) / this.blockSize) - 1 + var out = new Array(count * this.blockSize) + + // TODO(indutny): optimize it, this is far from optimal + for (; count > 0; count--) { + inputOff += this._buffer(data, inputOff) + outputOff += this._flushBuffer(out, outputOff) + } + + // Buffer rest of the input + inputOff += this._buffer(data, inputOff) + + return out + } + + Cipher.prototype.final = function final(buffer) { + var first + if (buffer) first = this.update(buffer) + + var last + if (this.type === "encrypt") last = this._finalEncrypt() + else last = this._finalDecrypt() + + if (first) return first.concat(last) + else return last + } + + Cipher.prototype._pad = function _pad(buffer, off) { + if (off === 0) return false + + while (off < buffer.length) buffer[off++] = 0 + + return true + } + + Cipher.prototype._finalEncrypt = function _finalEncrypt() { + if (!this._pad(this.buffer, this.bufferOff)) return [] + + var out = new Array(this.blockSize) + this._update(this.buffer, 0, out, 0) + return out + } + + Cipher.prototype._unpad = function _unpad(buffer) { + return buffer + } + + Cipher.prototype._finalDecrypt = function _finalDecrypt() { + assert.equal( + this.bufferOff, + this.blockSize, + "Not enough data to decrypt" + ) + var out = new Array(this.blockSize) + this._flushBuffer(out, 0) + + return this._unpad(out) + } + }, + { "minimalistic-assert": 105 } + ], + 60: [ + function(require, module, exports) { + "use strict" + + var assert = require("minimalistic-assert") + var inherits = require("inherits") + + var des = require("../des") + var utils = des.utils + var Cipher = des.Cipher + + function DESState() { + this.tmp = new Array(2) + this.keys = null + } + + function DES(options) { + Cipher.call(this, options) + + var state = new DESState() + this._desState = state + + this.deriveKeys(state, options.key) + } + inherits(DES, Cipher) + module.exports = DES + + DES.create = function create(options) { + return new DES(options) + } + + var shiftTable = [1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1] + + DES.prototype.deriveKeys = function deriveKeys(state, key) { + state.keys = new Array(16 * 2) + + assert.equal(key.length, this.blockSize, "Invalid key length") + + var kL = utils.readUInt32BE(key, 0) + var kR = utils.readUInt32BE(key, 4) + + utils.pc1(kL, kR, state.tmp, 0) + kL = state.tmp[0] + kR = state.tmp[1] + for (var i = 0; i < state.keys.length; i += 2) { + var shift = shiftTable[i >>> 1] + kL = utils.r28shl(kL, shift) + kR = utils.r28shl(kR, shift) + utils.pc2(kL, kR, state.keys, i) + } + } + + DES.prototype._update = function _update(inp, inOff, out, outOff) { + var state = this._desState + + var l = utils.readUInt32BE(inp, inOff) + var r = utils.readUInt32BE(inp, inOff + 4) + + // Initial Permutation + utils.ip(l, r, state.tmp, 0) + l = state.tmp[0] + r = state.tmp[1] + + if (this.type === "encrypt") + this._encrypt(state, l, r, state.tmp, 0) + else this._decrypt(state, l, r, state.tmp, 0) + + l = state.tmp[0] + r = state.tmp[1] + + utils.writeUInt32BE(out, l, outOff) + utils.writeUInt32BE(out, r, outOff + 4) + } + + DES.prototype._pad = function _pad(buffer, off) { + var value = buffer.length - off + for (var i = off; i < buffer.length; i++) buffer[i] = value + + return true + } + + DES.prototype._unpad = function _unpad(buffer) { + var pad = buffer[buffer.length - 1] + for (var i = buffer.length - pad; i < buffer.length; i++) + assert.equal(buffer[i], pad) + + return buffer.slice(0, buffer.length - pad) + } + + DES.prototype._encrypt = function _encrypt( + state, + lStart, + rStart, + out, + off + ) { + var l = lStart + var r = rStart + + // Apply f() x16 times + for (var i = 0; i < state.keys.length; i += 2) { + var keyL = state.keys[i] + var keyR = state.keys[i + 1] + + // f(r, k) + utils.expand(r, state.tmp, 0) + + keyL ^= state.tmp[0] + keyR ^= state.tmp[1] + var s = utils.substitute(keyL, keyR) + var f = utils.permute(s) + + var t = r + r = (l ^ f) >>> 0 + l = t + } + + // Reverse Initial Permutation + utils.rip(r, l, out, off) + } + + DES.prototype._decrypt = function _decrypt( + state, + lStart, + rStart, + out, + off + ) { + var l = rStart + var r = lStart + + // Apply f() x16 times + for (var i = state.keys.length - 2; i >= 0; i -= 2) { + var keyL = state.keys[i] + var keyR = state.keys[i + 1] + + // f(r, k) + utils.expand(l, state.tmp, 0) + + keyL ^= state.tmp[0] + keyR ^= state.tmp[1] + var s = utils.substitute(keyL, keyR) + var f = utils.permute(s) + + var t = l + l = (r ^ f) >>> 0 + r = t + } + + // Reverse Initial Permutation + utils.rip(l, r, out, off) + } + }, + { "../des": 57, inherits: 100, "minimalistic-assert": 105 } + ], + 61: [ + function(require, module, exports) { + "use strict" + + var assert = require("minimalistic-assert") + var inherits = require("inherits") + + var des = require("../des") + var Cipher = des.Cipher + var DES = des.DES + + function EDEState(type, key) { + assert.equal(key.length, 24, "Invalid key length") + + var k1 = key.slice(0, 8) + var k2 = key.slice(8, 16) + var k3 = key.slice(16, 24) + + if (type === "encrypt") { + this.ciphers = [ + DES.create({ type: "encrypt", key: k1 }), + DES.create({ type: "decrypt", key: k2 }), + DES.create({ type: "encrypt", key: k3 }) + ] + } else { + this.ciphers = [ + DES.create({ type: "decrypt", key: k3 }), + DES.create({ type: "encrypt", key: k2 }), + DES.create({ type: "decrypt", key: k1 }) + ] + } + } + + function EDE(options) { + Cipher.call(this, options) + + var state = new EDEState(this.type, this.options.key) + this._edeState = state + } + inherits(EDE, Cipher) + + module.exports = EDE + + EDE.create = function create(options) { + return new EDE(options) + } + + EDE.prototype._update = function _update(inp, inOff, out, outOff) { + var state = this._edeState + + state.ciphers[0]._update(inp, inOff, out, outOff) + state.ciphers[1]._update(out, outOff, out, outOff) + state.ciphers[2]._update(out, outOff, out, outOff) + } + + EDE.prototype._pad = DES.prototype._pad + EDE.prototype._unpad = DES.prototype._unpad + }, + { "../des": 57, inherits: 100, "minimalistic-assert": 105 } + ], + 62: [ + function(require, module, exports) { + "use strict" + + exports.readUInt32BE = function readUInt32BE(bytes, off) { + var res = + (bytes[0 + off] << 24) | + (bytes[1 + off] << 16) | + (bytes[2 + off] << 8) | + bytes[3 + off] + return res >>> 0 + } + + exports.writeUInt32BE = function writeUInt32BE(bytes, value, off) { + bytes[0 + off] = value >>> 24 + bytes[1 + off] = (value >>> 16) & 0xff + bytes[2 + off] = (value >>> 8) & 0xff + bytes[3 + off] = value & 0xff + } + + exports.ip = function ip(inL, inR, out, off) { + var outL = 0 + var outR = 0 + + for (var i = 6; i >= 0; i -= 2) { + for (var j = 0; j <= 24; j += 8) { + outL <<= 1 + outL |= (inR >>> (j + i)) & 1 + } + for (var j = 0; j <= 24; j += 8) { + outL <<= 1 + outL |= (inL >>> (j + i)) & 1 + } + } + + for (var i = 6; i >= 0; i -= 2) { + for (var j = 1; j <= 25; j += 8) { + outR <<= 1 + outR |= (inR >>> (j + i)) & 1 + } + for (var j = 1; j <= 25; j += 8) { + outR <<= 1 + outR |= (inL >>> (j + i)) & 1 + } + } + + out[off + 0] = outL >>> 0 + out[off + 1] = outR >>> 0 + } + + exports.rip = function rip(inL, inR, out, off) { + var outL = 0 + var outR = 0 + + for (var i = 0; i < 4; i++) { + for (var j = 24; j >= 0; j -= 8) { + outL <<= 1 + outL |= (inR >>> (j + i)) & 1 + outL <<= 1 + outL |= (inL >>> (j + i)) & 1 + } + } + for (var i = 4; i < 8; i++) { + for (var j = 24; j >= 0; j -= 8) { + outR <<= 1 + outR |= (inR >>> (j + i)) & 1 + outR <<= 1 + outR |= (inL >>> (j + i)) & 1 + } + } + + out[off + 0] = outL >>> 0 + out[off + 1] = outR >>> 0 + } + + exports.pc1 = function pc1(inL, inR, out, off) { + var outL = 0 + var outR = 0 + + // 7, 15, 23, 31, 39, 47, 55, 63 + // 6, 14, 22, 30, 39, 47, 55, 63 + // 5, 13, 21, 29, 39, 47, 55, 63 + // 4, 12, 20, 28 + for (var i = 7; i >= 5; i--) { + for (var j = 0; j <= 24; j += 8) { + outL <<= 1 + outL |= (inR >> (j + i)) & 1 + } + for (var j = 0; j <= 24; j += 8) { + outL <<= 1 + outL |= (inL >> (j + i)) & 1 + } + } + for (var j = 0; j <= 24; j += 8) { + outL <<= 1 + outL |= (inR >> (j + i)) & 1 + } + + // 1, 9, 17, 25, 33, 41, 49, 57 + // 2, 10, 18, 26, 34, 42, 50, 58 + // 3, 11, 19, 27, 35, 43, 51, 59 + // 36, 44, 52, 60 + for (var i = 1; i <= 3; i++) { + for (var j = 0; j <= 24; j += 8) { + outR <<= 1 + outR |= (inR >> (j + i)) & 1 + } + for (var j = 0; j <= 24; j += 8) { + outR <<= 1 + outR |= (inL >> (j + i)) & 1 + } + } + for (var j = 0; j <= 24; j += 8) { + outR <<= 1 + outR |= (inL >> (j + i)) & 1 + } + + out[off + 0] = outL >>> 0 + out[off + 1] = outR >>> 0 + } + + exports.r28shl = function r28shl(num, shift) { + return ((num << shift) & 0xfffffff) | (num >>> (28 - shift)) + } + + var pc2table = [ + // inL => outL + 14, + 11, + 17, + 4, + 27, + 23, + 25, + 0, + 13, + 22, + 7, + 18, + 5, + 9, + 16, + 24, + 2, + 20, + 12, + 21, + 1, + 8, + 15, + 26, + + // inR => outR + 15, + 4, + 25, + 19, + 9, + 1, + 26, + 16, + 5, + 11, + 23, + 8, + 12, + 7, + 17, + 0, + 22, + 3, + 10, + 14, + 6, + 20, + 27, + 24 + ] + + exports.pc2 = function pc2(inL, inR, out, off) { + var outL = 0 + var outR = 0 + + var len = pc2table.length >>> 1 + for (var i = 0; i < len; i++) { + outL <<= 1 + outL |= (inL >>> pc2table[i]) & 0x1 + } + for (var i = len; i < pc2table.length; i++) { + outR <<= 1 + outR |= (inR >>> pc2table[i]) & 0x1 + } + + out[off + 0] = outL >>> 0 + out[off + 1] = outR >>> 0 + } + + exports.expand = function expand(r, out, off) { + var outL = 0 + var outR = 0 + + outL = ((r & 1) << 5) | (r >>> 27) + for (var i = 23; i >= 15; i -= 4) { + outL <<= 6 + outL |= (r >>> i) & 0x3f + } + for (var i = 11; i >= 3; i -= 4) { + outR |= (r >>> i) & 0x3f + outR <<= 6 + } + outR |= ((r & 0x1f) << 1) | (r >>> 31) + + out[off + 0] = outL >>> 0 + out[off + 1] = outR >>> 0 + } + + var sTable = [ + 14, + 0, + 4, + 15, + 13, + 7, + 1, + 4, + 2, + 14, + 15, + 2, + 11, + 13, + 8, + 1, + 3, + 10, + 10, + 6, + 6, + 12, + 12, + 11, + 5, + 9, + 9, + 5, + 0, + 3, + 7, + 8, + 4, + 15, + 1, + 12, + 14, + 8, + 8, + 2, + 13, + 4, + 6, + 9, + 2, + 1, + 11, + 7, + 15, + 5, + 12, + 11, + 9, + 3, + 7, + 14, + 3, + 10, + 10, + 0, + 5, + 6, + 0, + 13, + + 15, + 3, + 1, + 13, + 8, + 4, + 14, + 7, + 6, + 15, + 11, + 2, + 3, + 8, + 4, + 14, + 9, + 12, + 7, + 0, + 2, + 1, + 13, + 10, + 12, + 6, + 0, + 9, + 5, + 11, + 10, + 5, + 0, + 13, + 14, + 8, + 7, + 10, + 11, + 1, + 10, + 3, + 4, + 15, + 13, + 4, + 1, + 2, + 5, + 11, + 8, + 6, + 12, + 7, + 6, + 12, + 9, + 0, + 3, + 5, + 2, + 14, + 15, + 9, + + 10, + 13, + 0, + 7, + 9, + 0, + 14, + 9, + 6, + 3, + 3, + 4, + 15, + 6, + 5, + 10, + 1, + 2, + 13, + 8, + 12, + 5, + 7, + 14, + 11, + 12, + 4, + 11, + 2, + 15, + 8, + 1, + 13, + 1, + 6, + 10, + 4, + 13, + 9, + 0, + 8, + 6, + 15, + 9, + 3, + 8, + 0, + 7, + 11, + 4, + 1, + 15, + 2, + 14, + 12, + 3, + 5, + 11, + 10, + 5, + 14, + 2, + 7, + 12, + + 7, + 13, + 13, + 8, + 14, + 11, + 3, + 5, + 0, + 6, + 6, + 15, + 9, + 0, + 10, + 3, + 1, + 4, + 2, + 7, + 8, + 2, + 5, + 12, + 11, + 1, + 12, + 10, + 4, + 14, + 15, + 9, + 10, + 3, + 6, + 15, + 9, + 0, + 0, + 6, + 12, + 10, + 11, + 1, + 7, + 13, + 13, + 8, + 15, + 9, + 1, + 4, + 3, + 5, + 14, + 11, + 5, + 12, + 2, + 7, + 8, + 2, + 4, + 14, + + 2, + 14, + 12, + 11, + 4, + 2, + 1, + 12, + 7, + 4, + 10, + 7, + 11, + 13, + 6, + 1, + 8, + 5, + 5, + 0, + 3, + 15, + 15, + 10, + 13, + 3, + 0, + 9, + 14, + 8, + 9, + 6, + 4, + 11, + 2, + 8, + 1, + 12, + 11, + 7, + 10, + 1, + 13, + 14, + 7, + 2, + 8, + 13, + 15, + 6, + 9, + 15, + 12, + 0, + 5, + 9, + 6, + 10, + 3, + 4, + 0, + 5, + 14, + 3, + + 12, + 10, + 1, + 15, + 10, + 4, + 15, + 2, + 9, + 7, + 2, + 12, + 6, + 9, + 8, + 5, + 0, + 6, + 13, + 1, + 3, + 13, + 4, + 14, + 14, + 0, + 7, + 11, + 5, + 3, + 11, + 8, + 9, + 4, + 14, + 3, + 15, + 2, + 5, + 12, + 2, + 9, + 8, + 5, + 12, + 15, + 3, + 10, + 7, + 11, + 0, + 14, + 4, + 1, + 10, + 7, + 1, + 6, + 13, + 0, + 11, + 8, + 6, + 13, + + 4, + 13, + 11, + 0, + 2, + 11, + 14, + 7, + 15, + 4, + 0, + 9, + 8, + 1, + 13, + 10, + 3, + 14, + 12, + 3, + 9, + 5, + 7, + 12, + 5, + 2, + 10, + 15, + 6, + 8, + 1, + 6, + 1, + 6, + 4, + 11, + 11, + 13, + 13, + 8, + 12, + 1, + 3, + 4, + 7, + 10, + 14, + 7, + 10, + 9, + 15, + 5, + 6, + 0, + 8, + 15, + 0, + 14, + 5, + 2, + 9, + 3, + 2, + 12, + + 13, + 1, + 2, + 15, + 8, + 13, + 4, + 8, + 6, + 10, + 15, + 3, + 11, + 7, + 1, + 4, + 10, + 12, + 9, + 5, + 3, + 6, + 14, + 11, + 5, + 0, + 0, + 14, + 12, + 9, + 7, + 2, + 7, + 2, + 11, + 1, + 4, + 14, + 1, + 7, + 9, + 4, + 12, + 10, + 14, + 8, + 2, + 13, + 0, + 15, + 6, + 12, + 10, + 9, + 13, + 0, + 15, + 3, + 3, + 5, + 5, + 6, + 8, + 11 + ] + + exports.substitute = function substitute(inL, inR) { + var out = 0 + for (var i = 0; i < 4; i++) { + var b = (inL >>> (18 - i * 6)) & 0x3f + var sb = sTable[i * 0x40 + b] + + out <<= 4 + out |= sb + } + for (var i = 0; i < 4; i++) { + var b = (inR >>> (18 - i * 6)) & 0x3f + var sb = sTable[4 * 0x40 + i * 0x40 + b] + + out <<= 4 + out |= sb + } + return out >>> 0 + } + + var permuteTable = [ + 16, + 25, + 12, + 11, + 3, + 20, + 4, + 15, + 31, + 17, + 9, + 6, + 27, + 14, + 1, + 22, + 30, + 24, + 8, + 18, + 0, + 5, + 29, + 23, + 13, + 19, + 2, + 26, + 10, + 21, + 28, + 7 + ] + + exports.permute = function permute(num) { + var out = 0 + for (var i = 0; i < permuteTable.length; i++) { + out <<= 1 + out |= (num >>> permuteTable[i]) & 0x1 + } + return out >>> 0 + } + + exports.padSplit = function padSplit(num, size, group) { + var str = num.toString(2) + while (str.length < size) str = "0" + str + + var out = [] + for (var i = 0; i < size; i += group) + out.push(str.slice(i, i + group)) + return out.join(" ") + } + }, + {} + ], + 63: [ + function(require, module, exports) { + ;(function(Buffer) { + var generatePrime = require("./lib/generatePrime") + var primes = require("./lib/primes.json") + + var DH = require("./lib/dh") + + function getDiffieHellman(mod) { + var prime = new Buffer(primes[mod].prime, "hex") + var gen = new Buffer(primes[mod].gen, "hex") + + return new DH(prime, gen) + } + + var ENCODINGS = { + binary: true, + hex: true, + base64: true + } + + function createDiffieHellman(prime, enc, generator, genc) { + if (Buffer.isBuffer(enc) || ENCODINGS[enc] === undefined) { + return createDiffieHellman(prime, "binary", enc, generator) + } + + enc = enc || "binary" + genc = genc || "binary" + generator = generator || new Buffer([2]) + + if (!Buffer.isBuffer(generator)) { + generator = new Buffer(generator, genc) + } + + if (typeof prime === "number") { + return new DH(generatePrime(prime, generator), generator, true) + } + + if (!Buffer.isBuffer(prime)) { + prime = new Buffer(prime, enc) + } + + return new DH(prime, generator, true) + } + + exports.DiffieHellmanGroup = exports.createDiffieHellmanGroup = exports.getDiffieHellman = getDiffieHellman + exports.createDiffieHellman = exports.DiffieHellman = createDiffieHellman + }.call(this, require("buffer").Buffer)) + }, + { + "./lib/dh": 64, + "./lib/generatePrime": 65, + "./lib/primes.json": 66, + buffer: 48 + } + ], + 64: [ + function(require, module, exports) { + ;(function(Buffer) { + var BN = require("bn.js") + var MillerRabin = require("miller-rabin") + var millerRabin = new MillerRabin() + var TWENTYFOUR = new BN(24) + var ELEVEN = new BN(11) + var TEN = new BN(10) + var THREE = new BN(3) + var SEVEN = new BN(7) + var primes = require("./generatePrime") + var randomBytes = require("randombytes") + module.exports = DH + + function setPublicKey(pub, enc) { + enc = enc || "utf8" + if (!Buffer.isBuffer(pub)) { + pub = new Buffer(pub, enc) + } + this._pub = new BN(pub) + return this + } + + function setPrivateKey(priv, enc) { + enc = enc || "utf8" + if (!Buffer.isBuffer(priv)) { + priv = new Buffer(priv, enc) + } + this._priv = new BN(priv) + return this + } + + var primeCache = {} + function checkPrime(prime, generator) { + var gen = generator.toString("hex") + var hex = [gen, prime.toString(16)].join("_") + if (hex in primeCache) { + return primeCache[hex] + } + var error = 0 + + if ( + prime.isEven() || + !primes.simpleSieve || + !primes.fermatTest(prime) || + !millerRabin.test(prime) + ) { + //not a prime so +1 + error += 1 + + if (gen === "02" || gen === "05") { + // we'd be able to check the generator + // it would fail so +8 + error += 8 + } else { + //we wouldn't be able to test the generator + // so +4 + error += 4 + } + primeCache[hex] = error + return error + } + if (!millerRabin.test(prime.shrn(1))) { + //not a safe prime + error += 2 + } + var rem + switch (gen) { + case "02": + if (prime.mod(TWENTYFOUR).cmp(ELEVEN)) { + // unsuidable generator + error += 8 + } + break + case "05": + rem = prime.mod(TEN) + if (rem.cmp(THREE) && rem.cmp(SEVEN)) { + // prime mod 10 needs to equal 3 or 7 + error += 8 + } + break + default: + error += 4 + } + primeCache[hex] = error + return error + } + + function DH(prime, generator, malleable) { + this.setGenerator(generator) + this.__prime = new BN(prime) + this._prime = BN.mont(this.__prime) + this._primeLen = prime.length + this._pub = undefined + this._priv = undefined + this._primeCode = undefined + if (malleable) { + this.setPublicKey = setPublicKey + this.setPrivateKey = setPrivateKey + } else { + this._primeCode = 8 + } + } + Object.defineProperty(DH.prototype, "verifyError", { + enumerable: true, + get: function() { + if (typeof this._primeCode !== "number") { + this._primeCode = checkPrime(this.__prime, this.__gen) + } + return this._primeCode + } + }) + DH.prototype.generateKeys = function() { + if (!this._priv) { + this._priv = new BN(randomBytes(this._primeLen)) + } + this._pub = this._gen + .toRed(this._prime) + .redPow(this._priv) + .fromRed() + return this.getPublicKey() + } + + DH.prototype.computeSecret = function(other) { + other = new BN(other) + other = other.toRed(this._prime) + var secret = other.redPow(this._priv).fromRed() + var out = new Buffer(secret.toArray()) + var prime = this.getPrime() + if (out.length < prime.length) { + var front = new Buffer(prime.length - out.length) + front.fill(0) + out = Buffer.concat([front, out]) + } + return out + } + + DH.prototype.getPublicKey = function getPublicKey(enc) { + return formatReturnValue(this._pub, enc) + } + + DH.prototype.getPrivateKey = function getPrivateKey(enc) { + return formatReturnValue(this._priv, enc) + } + + DH.prototype.getPrime = function(enc) { + return formatReturnValue(this.__prime, enc) + } + + DH.prototype.getGenerator = function(enc) { + return formatReturnValue(this._gen, enc) + } + + DH.prototype.setGenerator = function(gen, enc) { + enc = enc || "utf8" + if (!Buffer.isBuffer(gen)) { + gen = new Buffer(gen, enc) + } + this.__gen = gen + this._gen = new BN(gen) + return this + } + + function formatReturnValue(bn, enc) { + var buf = new Buffer(bn.toArray()) + if (!enc) { + return buf + } else { + return buf.toString(enc) + } + } + }.call(this, require("buffer").Buffer)) + }, + { + "./generatePrime": 65, + "bn.js": 17, + buffer: 48, + "miller-rabin": 104, + randombytes: 131 + } + ], + 65: [ + function(require, module, exports) { + var randomBytes = require("randombytes") + module.exports = findPrime + findPrime.simpleSieve = simpleSieve + findPrime.fermatTest = fermatTest + var BN = require("bn.js") + var TWENTYFOUR = new BN(24) + var MillerRabin = require("miller-rabin") + var millerRabin = new MillerRabin() + var ONE = new BN(1) + var TWO = new BN(2) + var FIVE = new BN(5) + var SIXTEEN = new BN(16) + var EIGHT = new BN(8) + var TEN = new BN(10) + var THREE = new BN(3) + var SEVEN = new BN(7) + var ELEVEN = new BN(11) + var FOUR = new BN(4) + var TWELVE = new BN(12) + var primes = null + + function _getPrimes() { + if (primes !== null) return primes + + var limit = 0x100000 + var res = [] + res[0] = 2 + for (var i = 1, k = 3; k < limit; k += 2) { + var sqrt = Math.ceil(Math.sqrt(k)) + for (var j = 0; j < i && res[j] <= sqrt; j++) + if (k % res[j] === 0) break + + if (i !== j && res[j] <= sqrt) continue + + res[i++] = k + } + primes = res + return res + } + + function simpleSieve(p) { + var primes = _getPrimes() + + for (var i = 0; i < primes.length; i++) + if (p.modn(primes[i]) === 0) { + if (p.cmpn(primes[i]) === 0) { + return true + } else { + return false + } + } + + return true + } + + function fermatTest(p) { + var red = BN.mont(p) + return ( + TWO.toRed(red) + .redPow(p.subn(1)) + .fromRed() + .cmpn(1) === 0 + ) + } + + function findPrime(bits, gen) { + if (bits < 16) { + // this is what openssl does + if (gen === 2 || gen === 5) { + return new BN([0x8c, 0x7b]) + } else { + return new BN([0x8c, 0x27]) + } + } + gen = new BN(gen) + + var num, n2 + + while (true) { + num = new BN(randomBytes(Math.ceil(bits / 8))) + while (num.bitLength() > bits) { + num.ishrn(1) + } + if (num.isEven()) { + num.iadd(ONE) + } + if (!num.testn(1)) { + num.iadd(TWO) + } + if (!gen.cmp(TWO)) { + while (num.mod(TWENTYFOUR).cmp(ELEVEN)) { + num.iadd(FOUR) + } + } else if (!gen.cmp(FIVE)) { + while (num.mod(TEN).cmp(THREE)) { + num.iadd(FOUR) + } + } + n2 = num.shrn(1) + if ( + simpleSieve(n2) && + simpleSieve(num) && + fermatTest(n2) && + fermatTest(num) && + millerRabin.test(n2) && + millerRabin.test(num) + ) { + return num + } + } + } + }, + { "bn.js": 17, "miller-rabin": 104, randombytes: 131 } + ], + 66: [ + function(require, module, exports) { + module.exports = { + modp1: { + gen: "02", + prime: + "ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a63a3620ffffffffffffffff" + }, + modp2: { + gen: "02", + prime: + "ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece65381ffffffffffffffff" + }, + modp5: { + gen: "02", + prime: + "ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca237327ffffffffffffffff" + }, + modp14: { + gen: "02", + prime: + "ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aacaa68ffffffffffffffff" + }, + modp15: { + gen: "02", + prime: + "ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a93ad2caffffffffffffffff" + }, + modp16: { + gen: "02", + prime: + "ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c934063199ffffffffffffffff" + }, + modp17: { + gen: "02", + prime: + "ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dcc4024ffffffffffffffff" + }, + modp18: { + gen: "02", + prime: + "ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff" + } + } + }, + {} + ], + 67: [ + function(require, module, exports) { + "use strict" + + var elliptic = exports + + elliptic.version = require("../package.json").version + elliptic.utils = require("./elliptic/utils") + elliptic.rand = require("brorand") + elliptic.curve = require("./elliptic/curve") + elliptic.curves = require("./elliptic/curves") + + // Protocols + elliptic.ec = require("./elliptic/ec") + elliptic.eddsa = require("./elliptic/eddsa") + }, + { + "../package.json": 82, + "./elliptic/curve": 70, + "./elliptic/curves": 73, + "./elliptic/ec": 74, + "./elliptic/eddsa": 77, + "./elliptic/utils": 81, + brorand: 18 + } + ], + 68: [ + function(require, module, exports) { + "use strict" + + var BN = require("bn.js") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var getNAF = utils.getNAF + var getJSF = utils.getJSF + var assert = utils.assert + + function BaseCurve(type, conf) { + this.type = type + this.p = new BN(conf.p, 16) + + // Use Montgomery, when there is no fast reduction for the prime + this.red = conf.prime ? BN.red(conf.prime) : BN.mont(this.p) + + // Useful for many curves + this.zero = new BN(0).toRed(this.red) + this.one = new BN(1).toRed(this.red) + this.two = new BN(2).toRed(this.red) + + // Curve configuration, optional + this.n = conf.n && new BN(conf.n, 16) + this.g = conf.g && this.pointFromJSON(conf.g, conf.gRed) + + // Temporary arrays + this._wnafT1 = new Array(4) + this._wnafT2 = new Array(4) + this._wnafT3 = new Array(4) + this._wnafT4 = new Array(4) + + // Generalized Greg Maxwell's trick + var adjustCount = this.n && this.p.div(this.n) + if (!adjustCount || adjustCount.cmpn(100) > 0) { + this.redN = null + } else { + this._maxwellTrick = true + this.redN = this.n.toRed(this.red) + } + } + module.exports = BaseCurve + + BaseCurve.prototype.point = function point() { + throw new Error("Not implemented") + } + + BaseCurve.prototype.validate = function validate() { + throw new Error("Not implemented") + } + + BaseCurve.prototype._fixedNafMul = function _fixedNafMul(p, k) { + assert(p.precomputed) + var doubles = p._getDoubles() + + var naf = getNAF(k, 1) + var I = (1 << (doubles.step + 1)) - (doubles.step % 2 === 0 ? 2 : 1) + I /= 3 + + // Translate into more windowed form + var repr = [] + for (var j = 0; j < naf.length; j += doubles.step) { + var nafW = 0 + for (var k = j + doubles.step - 1; k >= j; k--) + nafW = (nafW << 1) + naf[k] + repr.push(nafW) + } + + var a = this.jpoint(null, null, null) + var b = this.jpoint(null, null, null) + for (var i = I; i > 0; i--) { + for (var j = 0; j < repr.length; j++) { + var nafW = repr[j] + if (nafW === i) b = b.mixedAdd(doubles.points[j]) + else if (nafW === -i) b = b.mixedAdd(doubles.points[j].neg()) + } + a = a.add(b) + } + return a.toP() + } + + BaseCurve.prototype._wnafMul = function _wnafMul(p, k) { + var w = 4 + + // Precompute window + var nafPoints = p._getNAFPoints(w) + w = nafPoints.wnd + var wnd = nafPoints.points + + // Get NAF form + var naf = getNAF(k, w) + + // Add `this`*(N+1) for every w-NAF index + var acc = this.jpoint(null, null, null) + for (var i = naf.length - 1; i >= 0; i--) { + // Count zeroes + for (var k = 0; i >= 0 && naf[i] === 0; i--) k++ + if (i >= 0) k++ + acc = acc.dblp(k) + + if (i < 0) break + var z = naf[i] + assert(z !== 0) + if (p.type === "affine") { + // J +- P + if (z > 0) acc = acc.mixedAdd(wnd[(z - 1) >> 1]) + else acc = acc.mixedAdd(wnd[(-z - 1) >> 1].neg()) + } else { + // J +- J + if (z > 0) acc = acc.add(wnd[(z - 1) >> 1]) + else acc = acc.add(wnd[(-z - 1) >> 1].neg()) + } + } + return p.type === "affine" ? acc.toP() : acc + } + + BaseCurve.prototype._wnafMulAdd = function _wnafMulAdd( + defW, + points, + coeffs, + len, + jacobianResult + ) { + var wndWidth = this._wnafT1 + var wnd = this._wnafT2 + var naf = this._wnafT3 + + // Fill all arrays + var max = 0 + for (var i = 0; i < len; i++) { + var p = points[i] + var nafPoints = p._getNAFPoints(defW) + wndWidth[i] = nafPoints.wnd + wnd[i] = nafPoints.points + } + + // Comb small window NAFs + for (var i = len - 1; i >= 1; i -= 2) { + var a = i - 1 + var b = i + if (wndWidth[a] !== 1 || wndWidth[b] !== 1) { + naf[a] = getNAF(coeffs[a], wndWidth[a]) + naf[b] = getNAF(coeffs[b], wndWidth[b]) + max = Math.max(naf[a].length, max) + max = Math.max(naf[b].length, max) + continue + } + + var comb = [ + points[a] /* 1 */, + null /* 3 */, + null /* 5 */, + points[b] /* 7 */ + ] + + // Try to avoid Projective points, if possible + if (points[a].y.cmp(points[b].y) === 0) { + comb[1] = points[a].add(points[b]) + comb[2] = points[a].toJ().mixedAdd(points[b].neg()) + } else if (points[a].y.cmp(points[b].y.redNeg()) === 0) { + comb[1] = points[a].toJ().mixedAdd(points[b]) + comb[2] = points[a].add(points[b].neg()) + } else { + comb[1] = points[a].toJ().mixedAdd(points[b]) + comb[2] = points[a].toJ().mixedAdd(points[b].neg()) + } + + var index = [ + -3 /* -1 -1 */, + -1 /* -1 0 */, + -5 /* -1 1 */, + -7 /* 0 -1 */, + 0 /* 0 0 */, + 7 /* 0 1 */, + 5 /* 1 -1 */, + 1 /* 1 0 */, + 3 /* 1 1 */ + ] + + var jsf = getJSF(coeffs[a], coeffs[b]) + max = Math.max(jsf[0].length, max) + naf[a] = new Array(max) + naf[b] = new Array(max) + for (var j = 0; j < max; j++) { + var ja = jsf[0][j] | 0 + var jb = jsf[1][j] | 0 + + naf[a][j] = index[(ja + 1) * 3 + (jb + 1)] + naf[b][j] = 0 + wnd[a] = comb + } + } + + var acc = this.jpoint(null, null, null) + var tmp = this._wnafT4 + for (var i = max; i >= 0; i--) { + var k = 0 + + while (i >= 0) { + var zero = true + for (var j = 0; j < len; j++) { + tmp[j] = naf[j][i] | 0 + if (tmp[j] !== 0) zero = false + } + if (!zero) break + k++ + i-- + } + if (i >= 0) k++ + acc = acc.dblp(k) + if (i < 0) break + + for (var j = 0; j < len; j++) { + var z = tmp[j] + var p + if (z === 0) continue + else if (z > 0) p = wnd[j][(z - 1) >> 1] + else if (z < 0) p = wnd[j][(-z - 1) >> 1].neg() + + if (p.type === "affine") acc = acc.mixedAdd(p) + else acc = acc.add(p) + } + } + // Zeroify references + for (var i = 0; i < len; i++) wnd[i] = null + + if (jacobianResult) return acc + else return acc.toP() + } + + function BasePoint(curve, type) { + this.curve = curve + this.type = type + this.precomputed = null + } + BaseCurve.BasePoint = BasePoint + + BasePoint.prototype.eq = function eq(/*other*/) { + throw new Error("Not implemented") + } + + BasePoint.prototype.validate = function validate() { + return this.curve.validate(this) + } + + BaseCurve.prototype.decodePoint = function decodePoint(bytes, enc) { + bytes = utils.toArray(bytes, enc) + + var len = this.p.byteLength() + + // uncompressed, hybrid-odd, hybrid-even + if ( + (bytes[0] === 0x04 || bytes[0] === 0x06 || bytes[0] === 0x07) && + bytes.length - 1 === 2 * len + ) { + if (bytes[0] === 0x06) assert(bytes[bytes.length - 1] % 2 === 0) + else if (bytes[0] === 0x07) + assert(bytes[bytes.length - 1] % 2 === 1) + + var res = this.point( + bytes.slice(1, 1 + len), + bytes.slice(1 + len, 1 + 2 * len) + ) + + return res + } else if ( + (bytes[0] === 0x02 || bytes[0] === 0x03) && + bytes.length - 1 === len + ) { + return this.pointFromX(bytes.slice(1, 1 + len), bytes[0] === 0x03) + } + throw new Error("Unknown point format") + } + + BasePoint.prototype.encodeCompressed = function encodeCompressed( + enc + ) { + return this.encode(enc, true) + } + + BasePoint.prototype._encode = function _encode(compact) { + var len = this.curve.p.byteLength() + var x = this.getX().toArray("be", len) + + if (compact) return [this.getY().isEven() ? 0x02 : 0x03].concat(x) + + return [0x04].concat(x, this.getY().toArray("be", len)) + } + + BasePoint.prototype.encode = function encode(enc, compact) { + return utils.encode(this._encode(compact), enc) + } + + BasePoint.prototype.precompute = function precompute(power) { + if (this.precomputed) return this + + var precomputed = { + doubles: null, + naf: null, + beta: null + } + precomputed.naf = this._getNAFPoints(8) + precomputed.doubles = this._getDoubles(4, power) + precomputed.beta = this._getBeta() + this.precomputed = precomputed + + return this + } + + BasePoint.prototype._hasDoubles = function _hasDoubles(k) { + if (!this.precomputed) return false + + var doubles = this.precomputed.doubles + if (!doubles) return false + + return ( + doubles.points.length >= + Math.ceil((k.bitLength() + 1) / doubles.step) + ) + } + + BasePoint.prototype._getDoubles = function _getDoubles(step, power) { + if (this.precomputed && this.precomputed.doubles) + return this.precomputed.doubles + + var doubles = [this] + var acc = this + for (var i = 0; i < power; i += step) { + for (var j = 0; j < step; j++) acc = acc.dbl() + doubles.push(acc) + } + return { + step: step, + points: doubles + } + } + + BasePoint.prototype._getNAFPoints = function _getNAFPoints(wnd) { + if (this.precomputed && this.precomputed.naf) + return this.precomputed.naf + + var res = [this] + var max = (1 << wnd) - 1 + var dbl = max === 1 ? null : this.dbl() + for (var i = 1; i < max; i++) res[i] = res[i - 1].add(dbl) + return { + wnd: wnd, + points: res + } + } + + BasePoint.prototype._getBeta = function _getBeta() { + return null + } + + BasePoint.prototype.dblp = function dblp(k) { + var r = this + for (var i = 0; i < k; i++) r = r.dbl() + return r + } + }, + { "../../elliptic": 67, "bn.js": 17 } + ], + 69: [ + function(require, module, exports) { + "use strict" + + var curve = require("../curve") + var elliptic = require("../../elliptic") + var BN = require("bn.js") + var inherits = require("inherits") + var Base = curve.base + + var assert = elliptic.utils.assert + + function EdwardsCurve(conf) { + // NOTE: Important as we are creating point in Base.call() + this.twisted = (conf.a | 0) !== 1 + this.mOneA = this.twisted && (conf.a | 0) === -1 + this.extended = this.mOneA + + Base.call(this, "edwards", conf) + + this.a = new BN(conf.a, 16).umod(this.red.m) + this.a = this.a.toRed(this.red) + this.c = new BN(conf.c, 16).toRed(this.red) + this.c2 = this.c.redSqr() + this.d = new BN(conf.d, 16).toRed(this.red) + this.dd = this.d.redAdd(this.d) + + assert(!this.twisted || this.c.fromRed().cmpn(1) === 0) + this.oneC = (conf.c | 0) === 1 + } + inherits(EdwardsCurve, Base) + module.exports = EdwardsCurve + + EdwardsCurve.prototype._mulA = function _mulA(num) { + if (this.mOneA) return num.redNeg() + else return this.a.redMul(num) + } + + EdwardsCurve.prototype._mulC = function _mulC(num) { + if (this.oneC) return num + else return this.c.redMul(num) + } + + // Just for compatibility with Short curve + EdwardsCurve.prototype.jpoint = function jpoint(x, y, z, t) { + return this.point(x, y, z, t) + } + + EdwardsCurve.prototype.pointFromX = function pointFromX(x, odd) { + x = new BN(x, 16) + if (!x.red) x = x.toRed(this.red) + + var x2 = x.redSqr() + var rhs = this.c2.redSub(this.a.redMul(x2)) + var lhs = this.one.redSub(this.c2.redMul(this.d).redMul(x2)) + + var y2 = rhs.redMul(lhs.redInvm()) + var y = y2.redSqrt() + if ( + y + .redSqr() + .redSub(y2) + .cmp(this.zero) !== 0 + ) + throw new Error("invalid point") + + var isOdd = y.fromRed().isOdd() + if ((odd && !isOdd) || (!odd && isOdd)) y = y.redNeg() + + return this.point(x, y) + } + + EdwardsCurve.prototype.pointFromY = function pointFromY(y, odd) { + y = new BN(y, 16) + if (!y.red) y = y.toRed(this.red) + + // x^2 = (y^2 - c^2) / (c^2 d y^2 - a) + var y2 = y.redSqr() + var lhs = y2.redSub(this.c2) + var rhs = y2 + .redMul(this.d) + .redMul(this.c2) + .redSub(this.a) + var x2 = lhs.redMul(rhs.redInvm()) + + if (x2.cmp(this.zero) === 0) { + if (odd) throw new Error("invalid point") + else return this.point(this.zero, y) + } + + var x = x2.redSqrt() + if ( + x + .redSqr() + .redSub(x2) + .cmp(this.zero) !== 0 + ) + throw new Error("invalid point") + + if (x.fromRed().isOdd() !== odd) x = x.redNeg() + + return this.point(x, y) + } + + EdwardsCurve.prototype.validate = function validate(point) { + if (point.isInfinity()) return true + + // Curve: A * X^2 + Y^2 = C^2 * (1 + D * X^2 * Y^2) + point.normalize() + + var x2 = point.x.redSqr() + var y2 = point.y.redSqr() + var lhs = x2.redMul(this.a).redAdd(y2) + var rhs = this.c2.redMul( + this.one.redAdd(this.d.redMul(x2).redMul(y2)) + ) + + return lhs.cmp(rhs) === 0 + } + + function Point(curve, x, y, z, t) { + Base.BasePoint.call(this, curve, "projective") + if (x === null && y === null && z === null) { + this.x = this.curve.zero + this.y = this.curve.one + this.z = this.curve.one + this.t = this.curve.zero + this.zOne = true + } else { + this.x = new BN(x, 16) + this.y = new BN(y, 16) + this.z = z ? new BN(z, 16) : this.curve.one + this.t = t && new BN(t, 16) + if (!this.x.red) this.x = this.x.toRed(this.curve.red) + if (!this.y.red) this.y = this.y.toRed(this.curve.red) + if (!this.z.red) this.z = this.z.toRed(this.curve.red) + if (this.t && !this.t.red) this.t = this.t.toRed(this.curve.red) + this.zOne = this.z === this.curve.one + + // Use extended coordinates + if (this.curve.extended && !this.t) { + this.t = this.x.redMul(this.y) + if (!this.zOne) this.t = this.t.redMul(this.z.redInvm()) + } + } + } + inherits(Point, Base.BasePoint) + + EdwardsCurve.prototype.pointFromJSON = function pointFromJSON(obj) { + return Point.fromJSON(this, obj) + } + + EdwardsCurve.prototype.point = function point(x, y, z, t) { + return new Point(this, x, y, z, t) + } + + Point.fromJSON = function fromJSON(curve, obj) { + return new Point(curve, obj[0], obj[1], obj[2]) + } + + Point.prototype.inspect = function inspect() { + if (this.isInfinity()) return "" + return ( + "" + ) + } + + Point.prototype.isInfinity = function isInfinity() { + // XXX This code assumes that zero is always zero in red + return ( + this.x.cmpn(0) === 0 && + (this.y.cmp(this.z) === 0 || + (this.zOne && this.y.cmp(this.curve.c) === 0)) + ) + } + + Point.prototype._extDbl = function _extDbl() { + // hyperelliptic.org/EFD/g1p/auto-twisted-extended-1.html + // #doubling-dbl-2008-hwcd + // 4M + 4S + + // A = X1^2 + var a = this.x.redSqr() + // B = Y1^2 + var b = this.y.redSqr() + // C = 2 * Z1^2 + var c = this.z.redSqr() + c = c.redIAdd(c) + // D = a * A + var d = this.curve._mulA(a) + // E = (X1 + Y1)^2 - A - B + var e = this.x + .redAdd(this.y) + .redSqr() + .redISub(a) + .redISub(b) + // G = D + B + var g = d.redAdd(b) + // F = G - C + var f = g.redSub(c) + // H = D - B + var h = d.redSub(b) + // X3 = E * F + var nx = e.redMul(f) + // Y3 = G * H + var ny = g.redMul(h) + // T3 = E * H + var nt = e.redMul(h) + // Z3 = F * G + var nz = f.redMul(g) + return this.curve.point(nx, ny, nz, nt) + } + + Point.prototype._projDbl = function _projDbl() { + // hyperelliptic.org/EFD/g1p/auto-twisted-projective.html + // #doubling-dbl-2008-bbjlp + // #doubling-dbl-2007-bl + // and others + // Generally 3M + 4S or 2M + 4S + + // B = (X1 + Y1)^2 + var b = this.x.redAdd(this.y).redSqr() + // C = X1^2 + var c = this.x.redSqr() + // D = Y1^2 + var d = this.y.redSqr() + + var nx + var ny + var nz + if (this.curve.twisted) { + // E = a * C + var e = this.curve._mulA(c) + // F = E + D + var f = e.redAdd(d) + if (this.zOne) { + // X3 = (B - C - D) * (F - 2) + nx = b + .redSub(c) + .redSub(d) + .redMul(f.redSub(this.curve.two)) + // Y3 = F * (E - D) + ny = f.redMul(e.redSub(d)) + // Z3 = F^2 - 2 * F + nz = f + .redSqr() + .redSub(f) + .redSub(f) + } else { + // H = Z1^2 + var h = this.z.redSqr() + // J = F - 2 * H + var j = f.redSub(h).redISub(h) + // X3 = (B-C-D)*J + nx = b + .redSub(c) + .redISub(d) + .redMul(j) + // Y3 = F * (E - D) + ny = f.redMul(e.redSub(d)) + // Z3 = F * J + nz = f.redMul(j) + } + } else { + // E = C + D + var e = c.redAdd(d) + // H = (c * Z1)^2 + var h = this.curve._mulC(this.z).redSqr() + // J = E - 2 * H + var j = e.redSub(h).redSub(h) + // X3 = c * (B - E) * J + nx = this.curve._mulC(b.redISub(e)).redMul(j) + // Y3 = c * E * (C - D) + ny = this.curve._mulC(e).redMul(c.redISub(d)) + // Z3 = E * J + nz = e.redMul(j) + } + return this.curve.point(nx, ny, nz) + } + + Point.prototype.dbl = function dbl() { + if (this.isInfinity()) return this + + // Double in extended coordinates + if (this.curve.extended) return this._extDbl() + else return this._projDbl() + } + + Point.prototype._extAdd = function _extAdd(p) { + // hyperelliptic.org/EFD/g1p/auto-twisted-extended-1.html + // #addition-add-2008-hwcd-3 + // 8M + + // A = (Y1 - X1) * (Y2 - X2) + var a = this.y.redSub(this.x).redMul(p.y.redSub(p.x)) + // B = (Y1 + X1) * (Y2 + X2) + var b = this.y.redAdd(this.x).redMul(p.y.redAdd(p.x)) + // C = T1 * k * T2 + var c = this.t.redMul(this.curve.dd).redMul(p.t) + // D = Z1 * 2 * Z2 + var d = this.z.redMul(p.z.redAdd(p.z)) + // E = B - A + var e = b.redSub(a) + // F = D - C + var f = d.redSub(c) + // G = D + C + var g = d.redAdd(c) + // H = B + A + var h = b.redAdd(a) + // X3 = E * F + var nx = e.redMul(f) + // Y3 = G * H + var ny = g.redMul(h) + // T3 = E * H + var nt = e.redMul(h) + // Z3 = F * G + var nz = f.redMul(g) + return this.curve.point(nx, ny, nz, nt) + } + + Point.prototype._projAdd = function _projAdd(p) { + // hyperelliptic.org/EFD/g1p/auto-twisted-projective.html + // #addition-add-2008-bbjlp + // #addition-add-2007-bl + // 10M + 1S + + // A = Z1 * Z2 + var a = this.z.redMul(p.z) + // B = A^2 + var b = a.redSqr() + // C = X1 * X2 + var c = this.x.redMul(p.x) + // D = Y1 * Y2 + var d = this.y.redMul(p.y) + // E = d * C * D + var e = this.curve.d.redMul(c).redMul(d) + // F = B - E + var f = b.redSub(e) + // G = B + E + var g = b.redAdd(e) + // X3 = A * F * ((X1 + Y1) * (X2 + Y2) - C - D) + var tmp = this.x + .redAdd(this.y) + .redMul(p.x.redAdd(p.y)) + .redISub(c) + .redISub(d) + var nx = a.redMul(f).redMul(tmp) + var ny + var nz + if (this.curve.twisted) { + // Y3 = A * G * (D - a * C) + ny = a.redMul(g).redMul(d.redSub(this.curve._mulA(c))) + // Z3 = F * G + nz = f.redMul(g) + } else { + // Y3 = A * G * (D - C) + ny = a.redMul(g).redMul(d.redSub(c)) + // Z3 = c * F * G + nz = this.curve._mulC(f).redMul(g) + } + return this.curve.point(nx, ny, nz) + } + + Point.prototype.add = function add(p) { + if (this.isInfinity()) return p + if (p.isInfinity()) return this + + if (this.curve.extended) return this._extAdd(p) + else return this._projAdd(p) + } + + Point.prototype.mul = function mul(k) { + if (this._hasDoubles(k)) return this.curve._fixedNafMul(this, k) + else return this.curve._wnafMul(this, k) + } + + Point.prototype.mulAdd = function mulAdd(k1, p, k2) { + return this.curve._wnafMulAdd(1, [this, p], [k1, k2], 2, false) + } + + Point.prototype.jmulAdd = function jmulAdd(k1, p, k2) { + return this.curve._wnafMulAdd(1, [this, p], [k1, k2], 2, true) + } + + Point.prototype.normalize = function normalize() { + if (this.zOne) return this + + // Normalize coordinates + var zi = this.z.redInvm() + this.x = this.x.redMul(zi) + this.y = this.y.redMul(zi) + if (this.t) this.t = this.t.redMul(zi) + this.z = this.curve.one + this.zOne = true + return this + } + + Point.prototype.neg = function neg() { + return this.curve.point( + this.x.redNeg(), + this.y, + this.z, + this.t && this.t.redNeg() + ) + } + + Point.prototype.getX = function getX() { + this.normalize() + return this.x.fromRed() + } + + Point.prototype.getY = function getY() { + this.normalize() + return this.y.fromRed() + } + + Point.prototype.eq = function eq(other) { + return ( + this === other || + (this.getX().cmp(other.getX()) === 0 && + this.getY().cmp(other.getY()) === 0) + ) + } + + Point.prototype.eqXToP = function eqXToP(x) { + var rx = x.toRed(this.curve.red).redMul(this.z) + if (this.x.cmp(rx) === 0) return true + + var xc = x.clone() + var t = this.curve.redN.redMul(this.z) + for (;;) { + xc.iadd(this.curve.n) + if (xc.cmp(this.curve.p) >= 0) return false + + rx.redIAdd(t) + if (this.x.cmp(rx) === 0) return true + } + } + + // Compatibility with BaseCurve + Point.prototype.toP = Point.prototype.normalize + Point.prototype.mixedAdd = Point.prototype.add + }, + { "../../elliptic": 67, "../curve": 70, "bn.js": 17, inherits: 100 } + ], + 70: [ + function(require, module, exports) { + "use strict" + + var curve = exports + + curve.base = require("./base") + curve.short = require("./short") + curve.mont = require("./mont") + curve.edwards = require("./edwards") + }, + { "./base": 68, "./edwards": 69, "./mont": 71, "./short": 72 } + ], + 71: [ + function(require, module, exports) { + "use strict" + + var curve = require("../curve") + var BN = require("bn.js") + var inherits = require("inherits") + var Base = curve.base + + var elliptic = require("../../elliptic") + var utils = elliptic.utils + + function MontCurve(conf) { + Base.call(this, "mont", conf) + + this.a = new BN(conf.a, 16).toRed(this.red) + this.b = new BN(conf.b, 16).toRed(this.red) + this.i4 = new BN(4).toRed(this.red).redInvm() + this.two = new BN(2).toRed(this.red) + this.a24 = this.i4.redMul(this.a.redAdd(this.two)) + } + inherits(MontCurve, Base) + module.exports = MontCurve + + MontCurve.prototype.validate = function validate(point) { + var x = point.normalize().x + var x2 = x.redSqr() + var rhs = x2 + .redMul(x) + .redAdd(x2.redMul(this.a)) + .redAdd(x) + var y = rhs.redSqrt() + + return y.redSqr().cmp(rhs) === 0 + } + + function Point(curve, x, z) { + Base.BasePoint.call(this, curve, "projective") + if (x === null && z === null) { + this.x = this.curve.one + this.z = this.curve.zero + } else { + this.x = new BN(x, 16) + this.z = new BN(z, 16) + if (!this.x.red) this.x = this.x.toRed(this.curve.red) + if (!this.z.red) this.z = this.z.toRed(this.curve.red) + } + } + inherits(Point, Base.BasePoint) + + MontCurve.prototype.decodePoint = function decodePoint(bytes, enc) { + return this.point(utils.toArray(bytes, enc), 1) + } + + MontCurve.prototype.point = function point(x, z) { + return new Point(this, x, z) + } + + MontCurve.prototype.pointFromJSON = function pointFromJSON(obj) { + return Point.fromJSON(this, obj) + } + + Point.prototype.precompute = function precompute() { + // No-op + } + + Point.prototype._encode = function _encode() { + return this.getX().toArray("be", this.curve.p.byteLength()) + } + + Point.fromJSON = function fromJSON(curve, obj) { + return new Point(curve, obj[0], obj[1] || curve.one) + } + + Point.prototype.inspect = function inspect() { + if (this.isInfinity()) return "" + return ( + "" + ) + } + + Point.prototype.isInfinity = function isInfinity() { + // XXX This code assumes that zero is always zero in red + return this.z.cmpn(0) === 0 + } + + Point.prototype.dbl = function dbl() { + // http://hyperelliptic.org/EFD/g1p/auto-montgom-xz.html#doubling-dbl-1987-m-3 + // 2M + 2S + 4A + + // A = X1 + Z1 + var a = this.x.redAdd(this.z) + // AA = A^2 + var aa = a.redSqr() + // B = X1 - Z1 + var b = this.x.redSub(this.z) + // BB = B^2 + var bb = b.redSqr() + // C = AA - BB + var c = aa.redSub(bb) + // X3 = AA * BB + var nx = aa.redMul(bb) + // Z3 = C * (BB + A24 * C) + var nz = c.redMul(bb.redAdd(this.curve.a24.redMul(c))) + return this.curve.point(nx, nz) + } + + Point.prototype.add = function add() { + throw new Error("Not supported on Montgomery curve") + } + + Point.prototype.diffAdd = function diffAdd(p, diff) { + // http://hyperelliptic.org/EFD/g1p/auto-montgom-xz.html#diffadd-dadd-1987-m-3 + // 4M + 2S + 6A + + // A = X2 + Z2 + var a = this.x.redAdd(this.z) + // B = X2 - Z2 + var b = this.x.redSub(this.z) + // C = X3 + Z3 + var c = p.x.redAdd(p.z) + // D = X3 - Z3 + var d = p.x.redSub(p.z) + // DA = D * A + var da = d.redMul(a) + // CB = C * B + var cb = c.redMul(b) + // X5 = Z1 * (DA + CB)^2 + var nx = diff.z.redMul(da.redAdd(cb).redSqr()) + // Z5 = X1 * (DA - CB)^2 + var nz = diff.x.redMul(da.redISub(cb).redSqr()) + return this.curve.point(nx, nz) + } + + Point.prototype.mul = function mul(k) { + var t = k.clone() + var a = this // (N / 2) * Q + Q + var b = this.curve.point(null, null) // (N / 2) * Q + var c = this // Q + + for (var bits = []; t.cmpn(0) !== 0; t.iushrn(1)) + bits.push(t.andln(1)) + + for (var i = bits.length - 1; i >= 0; i--) { + if (bits[i] === 0) { + // N * Q + Q = ((N / 2) * Q + Q)) + (N / 2) * Q + a = a.diffAdd(b, c) + // N * Q = 2 * ((N / 2) * Q + Q)) + b = b.dbl() + } else { + // N * Q = ((N / 2) * Q + Q) + ((N / 2) * Q) + b = a.diffAdd(b, c) + // N * Q + Q = 2 * ((N / 2) * Q + Q) + a = a.dbl() + } + } + return b + } + + Point.prototype.mulAdd = function mulAdd() { + throw new Error("Not supported on Montgomery curve") + } + + Point.prototype.jumlAdd = function jumlAdd() { + throw new Error("Not supported on Montgomery curve") + } + + Point.prototype.eq = function eq(other) { + return this.getX().cmp(other.getX()) === 0 + } + + Point.prototype.normalize = function normalize() { + this.x = this.x.redMul(this.z.redInvm()) + this.z = this.curve.one + return this + } + + Point.prototype.getX = function getX() { + // Normalize coordinates + this.normalize() + + return this.x.fromRed() + } + }, + { "../../elliptic": 67, "../curve": 70, "bn.js": 17, inherits: 100 } + ], + 72: [ + function(require, module, exports) { + "use strict" + + var curve = require("../curve") + var elliptic = require("../../elliptic") + var BN = require("bn.js") + var inherits = require("inherits") + var Base = curve.base + + var assert = elliptic.utils.assert + + function ShortCurve(conf) { + Base.call(this, "short", conf) + + this.a = new BN(conf.a, 16).toRed(this.red) + this.b = new BN(conf.b, 16).toRed(this.red) + this.tinv = this.two.redInvm() + + this.zeroA = this.a.fromRed().cmpn(0) === 0 + this.threeA = + this.a + .fromRed() + .sub(this.p) + .cmpn(-3) === 0 + + // If the curve is endomorphic, precalculate beta and lambda + this.endo = this._getEndomorphism(conf) + this._endoWnafT1 = new Array(4) + this._endoWnafT2 = new Array(4) + } + inherits(ShortCurve, Base) + module.exports = ShortCurve + + ShortCurve.prototype._getEndomorphism = function _getEndomorphism( + conf + ) { + // No efficient endomorphism + if (!this.zeroA || !this.g || !this.n || this.p.modn(3) !== 1) + return + + // Compute beta and lambda, that lambda * P = (beta * Px; Py) + var beta + var lambda + if (conf.beta) { + beta = new BN(conf.beta, 16).toRed(this.red) + } else { + var betas = this._getEndoRoots(this.p) + // Choose the smallest beta + beta = betas[0].cmp(betas[1]) < 0 ? betas[0] : betas[1] + beta = beta.toRed(this.red) + } + if (conf.lambda) { + lambda = new BN(conf.lambda, 16) + } else { + // Choose the lambda that is matching selected beta + var lambdas = this._getEndoRoots(this.n) + if (this.g.mul(lambdas[0]).x.cmp(this.g.x.redMul(beta)) === 0) { + lambda = lambdas[0] + } else { + lambda = lambdas[1] + assert(this.g.mul(lambda).x.cmp(this.g.x.redMul(beta)) === 0) + } + } + + // Get basis vectors, used for balanced length-two representation + var basis + if (conf.basis) { + basis = conf.basis.map(function(vec) { + return { + a: new BN(vec.a, 16), + b: new BN(vec.b, 16) + } + }) + } else { + basis = this._getEndoBasis(lambda) + } + + return { + beta: beta, + lambda: lambda, + basis: basis + } + } + + ShortCurve.prototype._getEndoRoots = function _getEndoRoots(num) { + // Find roots of for x^2 + x + 1 in F + // Root = (-1 +- Sqrt(-3)) / 2 + // + var red = num === this.p ? this.red : BN.mont(num) + var tinv = new BN(2).toRed(red).redInvm() + var ntinv = tinv.redNeg() + + var s = new BN(3) + .toRed(red) + .redNeg() + .redSqrt() + .redMul(tinv) + + var l1 = ntinv.redAdd(s).fromRed() + var l2 = ntinv.redSub(s).fromRed() + return [l1, l2] + } + + ShortCurve.prototype._getEndoBasis = function _getEndoBasis(lambda) { + // aprxSqrt >= sqrt(this.n) + var aprxSqrt = this.n.ushrn(Math.floor(this.n.bitLength() / 2)) + + // 3.74 + // Run EGCD, until r(L + 1) < aprxSqrt + var u = lambda + var v = this.n.clone() + var x1 = new BN(1) + var y1 = new BN(0) + var x2 = new BN(0) + var y2 = new BN(1) + + // NOTE: all vectors are roots of: a + b * lambda = 0 (mod n) + var a0 + var b0 + // First vector + var a1 + var b1 + // Second vector + var a2 + var b2 + + var prevR + var i = 0 + var r + var x + while (u.cmpn(0) !== 0) { + var q = v.div(u) + r = v.sub(q.mul(u)) + x = x2.sub(q.mul(x1)) + var y = y2.sub(q.mul(y1)) + + if (!a1 && r.cmp(aprxSqrt) < 0) { + a0 = prevR.neg() + b0 = x1 + a1 = r.neg() + b1 = x + } else if (a1 && ++i === 2) { + break + } + prevR = r + + v = u + u = r + x2 = x1 + x1 = x + y2 = y1 + y1 = y + } + a2 = r.neg() + b2 = x + + var len1 = a1.sqr().add(b1.sqr()) + var len2 = a2.sqr().add(b2.sqr()) + if (len2.cmp(len1) >= 0) { + a2 = a0 + b2 = b0 + } + + // Normalize signs + if (a1.negative) { + a1 = a1.neg() + b1 = b1.neg() + } + if (a2.negative) { + a2 = a2.neg() + b2 = b2.neg() + } + + return [{ a: a1, b: b1 }, { a: a2, b: b2 }] + } + + ShortCurve.prototype._endoSplit = function _endoSplit(k) { + var basis = this.endo.basis + var v1 = basis[0] + var v2 = basis[1] + + var c1 = v2.b.mul(k).divRound(this.n) + var c2 = v1.b + .neg() + .mul(k) + .divRound(this.n) + + var p1 = c1.mul(v1.a) + var p2 = c2.mul(v2.a) + var q1 = c1.mul(v1.b) + var q2 = c2.mul(v2.b) + + // Calculate answer + var k1 = k.sub(p1).sub(p2) + var k2 = q1.add(q2).neg() + return { k1: k1, k2: k2 } + } + + ShortCurve.prototype.pointFromX = function pointFromX(x, odd) { + x = new BN(x, 16) + if (!x.red) x = x.toRed(this.red) + + var y2 = x + .redSqr() + .redMul(x) + .redIAdd(x.redMul(this.a)) + .redIAdd(this.b) + var y = y2.redSqrt() + if ( + y + .redSqr() + .redSub(y2) + .cmp(this.zero) !== 0 + ) + throw new Error("invalid point") + + // XXX Is there any way to tell if the number is odd without converting it + // to non-red form? + var isOdd = y.fromRed().isOdd() + if ((odd && !isOdd) || (!odd && isOdd)) y = y.redNeg() + + return this.point(x, y) + } + + ShortCurve.prototype.validate = function validate(point) { + if (point.inf) return true + + var x = point.x + var y = point.y + + var ax = this.a.redMul(x) + var rhs = x + .redSqr() + .redMul(x) + .redIAdd(ax) + .redIAdd(this.b) + return ( + y + .redSqr() + .redISub(rhs) + .cmpn(0) === 0 + ) + } + + ShortCurve.prototype._endoWnafMulAdd = function _endoWnafMulAdd( + points, + coeffs, + jacobianResult + ) { + var npoints = this._endoWnafT1 + var ncoeffs = this._endoWnafT2 + for (var i = 0; i < points.length; i++) { + var split = this._endoSplit(coeffs[i]) + var p = points[i] + var beta = p._getBeta() + + if (split.k1.negative) { + split.k1.ineg() + p = p.neg(true) + } + if (split.k2.negative) { + split.k2.ineg() + beta = beta.neg(true) + } + + npoints[i * 2] = p + npoints[i * 2 + 1] = beta + ncoeffs[i * 2] = split.k1 + ncoeffs[i * 2 + 1] = split.k2 + } + var res = this._wnafMulAdd( + 1, + npoints, + ncoeffs, + i * 2, + jacobianResult + ) + + // Clean-up references to points and coefficients + for (var j = 0; j < i * 2; j++) { + npoints[j] = null + ncoeffs[j] = null + } + return res + } + + function Point(curve, x, y, isRed) { + Base.BasePoint.call(this, curve, "affine") + if (x === null && y === null) { + this.x = null + this.y = null + this.inf = true + } else { + this.x = new BN(x, 16) + this.y = new BN(y, 16) + // Force redgomery representation when loading from JSON + if (isRed) { + this.x.forceRed(this.curve.red) + this.y.forceRed(this.curve.red) + } + if (!this.x.red) this.x = this.x.toRed(this.curve.red) + if (!this.y.red) this.y = this.y.toRed(this.curve.red) + this.inf = false + } + } + inherits(Point, Base.BasePoint) + + ShortCurve.prototype.point = function point(x, y, isRed) { + return new Point(this, x, y, isRed) + } + + ShortCurve.prototype.pointFromJSON = function pointFromJSON( + obj, + red + ) { + return Point.fromJSON(this, obj, red) + } + + Point.prototype._getBeta = function _getBeta() { + if (!this.curve.endo) return + + var pre = this.precomputed + if (pre && pre.beta) return pre.beta + + var beta = this.curve.point( + this.x.redMul(this.curve.endo.beta), + this.y + ) + if (pre) { + var curve = this.curve + var endoMul = function(p) { + return curve.point(p.x.redMul(curve.endo.beta), p.y) + } + pre.beta = beta + beta.precomputed = { + beta: null, + naf: pre.naf && { + wnd: pre.naf.wnd, + points: pre.naf.points.map(endoMul) + }, + doubles: pre.doubles && { + step: pre.doubles.step, + points: pre.doubles.points.map(endoMul) + } + } + } + return beta + } + + Point.prototype.toJSON = function toJSON() { + if (!this.precomputed) return [this.x, this.y] + + return [ + this.x, + this.y, + this.precomputed && { + doubles: this.precomputed.doubles && { + step: this.precomputed.doubles.step, + points: this.precomputed.doubles.points.slice(1) + }, + naf: this.precomputed.naf && { + wnd: this.precomputed.naf.wnd, + points: this.precomputed.naf.points.slice(1) + } + } + ] + } + + Point.fromJSON = function fromJSON(curve, obj, red) { + if (typeof obj === "string") obj = JSON.parse(obj) + var res = curve.point(obj[0], obj[1], red) + if (!obj[2]) return res + + function obj2point(obj) { + return curve.point(obj[0], obj[1], red) + } + + var pre = obj[2] + res.precomputed = { + beta: null, + doubles: pre.doubles && { + step: pre.doubles.step, + points: [res].concat(pre.doubles.points.map(obj2point)) + }, + naf: pre.naf && { + wnd: pre.naf.wnd, + points: [res].concat(pre.naf.points.map(obj2point)) + } + } + return res + } + + Point.prototype.inspect = function inspect() { + if (this.isInfinity()) return "" + return ( + "" + ) + } + + Point.prototype.isInfinity = function isInfinity() { + return this.inf + } + + Point.prototype.add = function add(p) { + // O + P = P + if (this.inf) return p + + // P + O = P + if (p.inf) return this + + // P + P = 2P + if (this.eq(p)) return this.dbl() + + // P + (-P) = O + if (this.neg().eq(p)) return this.curve.point(null, null) + + // P + Q = O + if (this.x.cmp(p.x) === 0) return this.curve.point(null, null) + + var c = this.y.redSub(p.y) + if (c.cmpn(0) !== 0) c = c.redMul(this.x.redSub(p.x).redInvm()) + var nx = c + .redSqr() + .redISub(this.x) + .redISub(p.x) + var ny = c.redMul(this.x.redSub(nx)).redISub(this.y) + return this.curve.point(nx, ny) + } + + Point.prototype.dbl = function dbl() { + if (this.inf) return this + + // 2P = O + var ys1 = this.y.redAdd(this.y) + if (ys1.cmpn(0) === 0) return this.curve.point(null, null) + + var a = this.curve.a + + var x2 = this.x.redSqr() + var dyinv = ys1.redInvm() + var c = x2 + .redAdd(x2) + .redIAdd(x2) + .redIAdd(a) + .redMul(dyinv) + + var nx = c.redSqr().redISub(this.x.redAdd(this.x)) + var ny = c.redMul(this.x.redSub(nx)).redISub(this.y) + return this.curve.point(nx, ny) + } + + Point.prototype.getX = function getX() { + return this.x.fromRed() + } + + Point.prototype.getY = function getY() { + return this.y.fromRed() + } + + Point.prototype.mul = function mul(k) { + k = new BN(k, 16) + + if (this._hasDoubles(k)) return this.curve._fixedNafMul(this, k) + else if (this.curve.endo) + return this.curve._endoWnafMulAdd([this], [k]) + else return this.curve._wnafMul(this, k) + } + + Point.prototype.mulAdd = function mulAdd(k1, p2, k2) { + var points = [this, p2] + var coeffs = [k1, k2] + if (this.curve.endo) + return this.curve._endoWnafMulAdd(points, coeffs) + else return this.curve._wnafMulAdd(1, points, coeffs, 2) + } + + Point.prototype.jmulAdd = function jmulAdd(k1, p2, k2) { + var points = [this, p2] + var coeffs = [k1, k2] + if (this.curve.endo) + return this.curve._endoWnafMulAdd(points, coeffs, true) + else return this.curve._wnafMulAdd(1, points, coeffs, 2, true) + } + + Point.prototype.eq = function eq(p) { + return ( + this === p || + (this.inf === p.inf && + (this.inf || (this.x.cmp(p.x) === 0 && this.y.cmp(p.y) === 0))) + ) + } + + Point.prototype.neg = function neg(_precompute) { + if (this.inf) return this + + var res = this.curve.point(this.x, this.y.redNeg()) + if (_precompute && this.precomputed) { + var pre = this.precomputed + var negate = function(p) { + return p.neg() + } + res.precomputed = { + naf: pre.naf && { + wnd: pre.naf.wnd, + points: pre.naf.points.map(negate) + }, + doubles: pre.doubles && { + step: pre.doubles.step, + points: pre.doubles.points.map(negate) + } + } + } + return res + } + + Point.prototype.toJ = function toJ() { + if (this.inf) return this.curve.jpoint(null, null, null) + + var res = this.curve.jpoint(this.x, this.y, this.curve.one) + return res + } + + function JPoint(curve, x, y, z) { + Base.BasePoint.call(this, curve, "jacobian") + if (x === null && y === null && z === null) { + this.x = this.curve.one + this.y = this.curve.one + this.z = new BN(0) + } else { + this.x = new BN(x, 16) + this.y = new BN(y, 16) + this.z = new BN(z, 16) + } + if (!this.x.red) this.x = this.x.toRed(this.curve.red) + if (!this.y.red) this.y = this.y.toRed(this.curve.red) + if (!this.z.red) this.z = this.z.toRed(this.curve.red) + + this.zOne = this.z === this.curve.one + } + inherits(JPoint, Base.BasePoint) + + ShortCurve.prototype.jpoint = function jpoint(x, y, z) { + return new JPoint(this, x, y, z) + } + + JPoint.prototype.toP = function toP() { + if (this.isInfinity()) return this.curve.point(null, null) + + var zinv = this.z.redInvm() + var zinv2 = zinv.redSqr() + var ax = this.x.redMul(zinv2) + var ay = this.y.redMul(zinv2).redMul(zinv) + + return this.curve.point(ax, ay) + } + + JPoint.prototype.neg = function neg() { + return this.curve.jpoint(this.x, this.y.redNeg(), this.z) + } + + JPoint.prototype.add = function add(p) { + // O + P = P + if (this.isInfinity()) return p + + // P + O = P + if (p.isInfinity()) return this + + // 12M + 4S + 7A + var pz2 = p.z.redSqr() + var z2 = this.z.redSqr() + var u1 = this.x.redMul(pz2) + var u2 = p.x.redMul(z2) + var s1 = this.y.redMul(pz2.redMul(p.z)) + var s2 = p.y.redMul(z2.redMul(this.z)) + + var h = u1.redSub(u2) + var r = s1.redSub(s2) + if (h.cmpn(0) === 0) { + if (r.cmpn(0) !== 0) return this.curve.jpoint(null, null, null) + else return this.dbl() + } + + var h2 = h.redSqr() + var h3 = h2.redMul(h) + var v = u1.redMul(h2) + + var nx = r + .redSqr() + .redIAdd(h3) + .redISub(v) + .redISub(v) + var ny = r.redMul(v.redISub(nx)).redISub(s1.redMul(h3)) + var nz = this.z.redMul(p.z).redMul(h) + + return this.curve.jpoint(nx, ny, nz) + } + + JPoint.prototype.mixedAdd = function mixedAdd(p) { + // O + P = P + if (this.isInfinity()) return p.toJ() + + // P + O = P + if (p.isInfinity()) return this + + // 8M + 3S + 7A + var z2 = this.z.redSqr() + var u1 = this.x + var u2 = p.x.redMul(z2) + var s1 = this.y + var s2 = p.y.redMul(z2).redMul(this.z) + + var h = u1.redSub(u2) + var r = s1.redSub(s2) + if (h.cmpn(0) === 0) { + if (r.cmpn(0) !== 0) return this.curve.jpoint(null, null, null) + else return this.dbl() + } + + var h2 = h.redSqr() + var h3 = h2.redMul(h) + var v = u1.redMul(h2) + + var nx = r + .redSqr() + .redIAdd(h3) + .redISub(v) + .redISub(v) + var ny = r.redMul(v.redISub(nx)).redISub(s1.redMul(h3)) + var nz = this.z.redMul(h) + + return this.curve.jpoint(nx, ny, nz) + } + + JPoint.prototype.dblp = function dblp(pow) { + if (pow === 0) return this + if (this.isInfinity()) return this + if (!pow) return this.dbl() + + if (this.curve.zeroA || this.curve.threeA) { + var r = this + for (var i = 0; i < pow; i++) r = r.dbl() + return r + } + + // 1M + 2S + 1A + N * (4S + 5M + 8A) + // N = 1 => 6M + 6S + 9A + var a = this.curve.a + var tinv = this.curve.tinv + + var jx = this.x + var jy = this.y + var jz = this.z + var jz4 = jz.redSqr().redSqr() + + // Reuse results + var jyd = jy.redAdd(jy) + for (var i = 0; i < pow; i++) { + var jx2 = jx.redSqr() + var jyd2 = jyd.redSqr() + var jyd4 = jyd2.redSqr() + var c = jx2 + .redAdd(jx2) + .redIAdd(jx2) + .redIAdd(a.redMul(jz4)) + + var t1 = jx.redMul(jyd2) + var nx = c.redSqr().redISub(t1.redAdd(t1)) + var t2 = t1.redISub(nx) + var dny = c.redMul(t2) + dny = dny.redIAdd(dny).redISub(jyd4) + var nz = jyd.redMul(jz) + if (i + 1 < pow) jz4 = jz4.redMul(jyd4) + + jx = nx + jz = nz + jyd = dny + } + + return this.curve.jpoint(jx, jyd.redMul(tinv), jz) + } + + JPoint.prototype.dbl = function dbl() { + if (this.isInfinity()) return this + + if (this.curve.zeroA) return this._zeroDbl() + else if (this.curve.threeA) return this._threeDbl() + else return this._dbl() + } + + JPoint.prototype._zeroDbl = function _zeroDbl() { + var nx + var ny + var nz + // Z = 1 + if (this.zOne) { + // hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-0.html + // #doubling-mdbl-2007-bl + // 1M + 5S + 14A + + // XX = X1^2 + var xx = this.x.redSqr() + // YY = Y1^2 + var yy = this.y.redSqr() + // YYYY = YY^2 + var yyyy = yy.redSqr() + // S = 2 * ((X1 + YY)^2 - XX - YYYY) + var s = this.x + .redAdd(yy) + .redSqr() + .redISub(xx) + .redISub(yyyy) + s = s.redIAdd(s) + // M = 3 * XX + a; a = 0 + var m = xx.redAdd(xx).redIAdd(xx) + // T = M ^ 2 - 2*S + var t = m + .redSqr() + .redISub(s) + .redISub(s) + + // 8 * YYYY + var yyyy8 = yyyy.redIAdd(yyyy) + yyyy8 = yyyy8.redIAdd(yyyy8) + yyyy8 = yyyy8.redIAdd(yyyy8) + + // X3 = T + nx = t + // Y3 = M * (S - T) - 8 * YYYY + ny = m.redMul(s.redISub(t)).redISub(yyyy8) + // Z3 = 2*Y1 + nz = this.y.redAdd(this.y) + } else { + // hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-0.html + // #doubling-dbl-2009-l + // 2M + 5S + 13A + + // A = X1^2 + var a = this.x.redSqr() + // B = Y1^2 + var b = this.y.redSqr() + // C = B^2 + var c = b.redSqr() + // D = 2 * ((X1 + B)^2 - A - C) + var d = this.x + .redAdd(b) + .redSqr() + .redISub(a) + .redISub(c) + d = d.redIAdd(d) + // E = 3 * A + var e = a.redAdd(a).redIAdd(a) + // F = E^2 + var f = e.redSqr() + + // 8 * C + var c8 = c.redIAdd(c) + c8 = c8.redIAdd(c8) + c8 = c8.redIAdd(c8) + + // X3 = F - 2 * D + nx = f.redISub(d).redISub(d) + // Y3 = E * (D - X3) - 8 * C + ny = e.redMul(d.redISub(nx)).redISub(c8) + // Z3 = 2 * Y1 * Z1 + nz = this.y.redMul(this.z) + nz = nz.redIAdd(nz) + } + + return this.curve.jpoint(nx, ny, nz) + } + + JPoint.prototype._threeDbl = function _threeDbl() { + var nx + var ny + var nz + // Z = 1 + if (this.zOne) { + // hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html + // #doubling-mdbl-2007-bl + // 1M + 5S + 15A + + // XX = X1^2 + var xx = this.x.redSqr() + // YY = Y1^2 + var yy = this.y.redSqr() + // YYYY = YY^2 + var yyyy = yy.redSqr() + // S = 2 * ((X1 + YY)^2 - XX - YYYY) + var s = this.x + .redAdd(yy) + .redSqr() + .redISub(xx) + .redISub(yyyy) + s = s.redIAdd(s) + // M = 3 * XX + a + var m = xx + .redAdd(xx) + .redIAdd(xx) + .redIAdd(this.curve.a) + // T = M^2 - 2 * S + var t = m + .redSqr() + .redISub(s) + .redISub(s) + // X3 = T + nx = t + // Y3 = M * (S - T) - 8 * YYYY + var yyyy8 = yyyy.redIAdd(yyyy) + yyyy8 = yyyy8.redIAdd(yyyy8) + yyyy8 = yyyy8.redIAdd(yyyy8) + ny = m.redMul(s.redISub(t)).redISub(yyyy8) + // Z3 = 2 * Y1 + nz = this.y.redAdd(this.y) + } else { + // hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html#doubling-dbl-2001-b + // 3M + 5S + + // delta = Z1^2 + var delta = this.z.redSqr() + // gamma = Y1^2 + var gamma = this.y.redSqr() + // beta = X1 * gamma + var beta = this.x.redMul(gamma) + // alpha = 3 * (X1 - delta) * (X1 + delta) + var alpha = this.x.redSub(delta).redMul(this.x.redAdd(delta)) + alpha = alpha.redAdd(alpha).redIAdd(alpha) + // X3 = alpha^2 - 8 * beta + var beta4 = beta.redIAdd(beta) + beta4 = beta4.redIAdd(beta4) + var beta8 = beta4.redAdd(beta4) + nx = alpha.redSqr().redISub(beta8) + // Z3 = (Y1 + Z1)^2 - gamma - delta + nz = this.y + .redAdd(this.z) + .redSqr() + .redISub(gamma) + .redISub(delta) + // Y3 = alpha * (4 * beta - X3) - 8 * gamma^2 + var ggamma8 = gamma.redSqr() + ggamma8 = ggamma8.redIAdd(ggamma8) + ggamma8 = ggamma8.redIAdd(ggamma8) + ggamma8 = ggamma8.redIAdd(ggamma8) + ny = alpha.redMul(beta4.redISub(nx)).redISub(ggamma8) + } + + return this.curve.jpoint(nx, ny, nz) + } + + JPoint.prototype._dbl = function _dbl() { + var a = this.curve.a + + // 4M + 6S + 10A + var jx = this.x + var jy = this.y + var jz = this.z + var jz4 = jz.redSqr().redSqr() + + var jx2 = jx.redSqr() + var jy2 = jy.redSqr() + + var c = jx2 + .redAdd(jx2) + .redIAdd(jx2) + .redIAdd(a.redMul(jz4)) + + var jxd4 = jx.redAdd(jx) + jxd4 = jxd4.redIAdd(jxd4) + var t1 = jxd4.redMul(jy2) + var nx = c.redSqr().redISub(t1.redAdd(t1)) + var t2 = t1.redISub(nx) + + var jyd8 = jy2.redSqr() + jyd8 = jyd8.redIAdd(jyd8) + jyd8 = jyd8.redIAdd(jyd8) + jyd8 = jyd8.redIAdd(jyd8) + var ny = c.redMul(t2).redISub(jyd8) + var nz = jy.redAdd(jy).redMul(jz) + + return this.curve.jpoint(nx, ny, nz) + } + + JPoint.prototype.trpl = function trpl() { + if (!this.curve.zeroA) return this.dbl().add(this) + + // hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-0.html#tripling-tpl-2007-bl + // 5M + 10S + ... + + // XX = X1^2 + var xx = this.x.redSqr() + // YY = Y1^2 + var yy = this.y.redSqr() + // ZZ = Z1^2 + var zz = this.z.redSqr() + // YYYY = YY^2 + var yyyy = yy.redSqr() + // M = 3 * XX + a * ZZ2; a = 0 + var m = xx.redAdd(xx).redIAdd(xx) + // MM = M^2 + var mm = m.redSqr() + // E = 6 * ((X1 + YY)^2 - XX - YYYY) - MM + var e = this.x + .redAdd(yy) + .redSqr() + .redISub(xx) + .redISub(yyyy) + e = e.redIAdd(e) + e = e.redAdd(e).redIAdd(e) + e = e.redISub(mm) + // EE = E^2 + var ee = e.redSqr() + // T = 16*YYYY + var t = yyyy.redIAdd(yyyy) + t = t.redIAdd(t) + t = t.redIAdd(t) + t = t.redIAdd(t) + // U = (M + E)^2 - MM - EE - T + var u = m + .redIAdd(e) + .redSqr() + .redISub(mm) + .redISub(ee) + .redISub(t) + // X3 = 4 * (X1 * EE - 4 * YY * U) + var yyu4 = yy.redMul(u) + yyu4 = yyu4.redIAdd(yyu4) + yyu4 = yyu4.redIAdd(yyu4) + var nx = this.x.redMul(ee).redISub(yyu4) + nx = nx.redIAdd(nx) + nx = nx.redIAdd(nx) + // Y3 = 8 * Y1 * (U * (T - U) - E * EE) + var ny = this.y.redMul(u.redMul(t.redISub(u)).redISub(e.redMul(ee))) + ny = ny.redIAdd(ny) + ny = ny.redIAdd(ny) + ny = ny.redIAdd(ny) + // Z3 = (Z1 + E)^2 - ZZ - EE + var nz = this.z + .redAdd(e) + .redSqr() + .redISub(zz) + .redISub(ee) + + return this.curve.jpoint(nx, ny, nz) + } + + JPoint.prototype.mul = function mul(k, kbase) { + k = new BN(k, kbase) + + return this.curve._wnafMul(this, k) + } + + JPoint.prototype.eq = function eq(p) { + if (p.type === "affine") return this.eq(p.toJ()) + + if (this === p) return true + + // x1 * z2^2 == x2 * z1^2 + var z2 = this.z.redSqr() + var pz2 = p.z.redSqr() + if ( + this.x + .redMul(pz2) + .redISub(p.x.redMul(z2)) + .cmpn(0) !== 0 + ) + return false + + // y1 * z2^3 == y2 * z1^3 + var z3 = z2.redMul(this.z) + var pz3 = pz2.redMul(p.z) + return ( + this.y + .redMul(pz3) + .redISub(p.y.redMul(z3)) + .cmpn(0) === 0 + ) + } + + JPoint.prototype.eqXToP = function eqXToP(x) { + var zs = this.z.redSqr() + var rx = x.toRed(this.curve.red).redMul(zs) + if (this.x.cmp(rx) === 0) return true + + var xc = x.clone() + var t = this.curve.redN.redMul(zs) + for (;;) { + xc.iadd(this.curve.n) + if (xc.cmp(this.curve.p) >= 0) return false + + rx.redIAdd(t) + if (this.x.cmp(rx) === 0) return true + } + } + + JPoint.prototype.inspect = function inspect() { + if (this.isInfinity()) return "" + return ( + "" + ) + } + + JPoint.prototype.isInfinity = function isInfinity() { + // XXX This code assumes that zero is always zero in red + return this.z.cmpn(0) === 0 + } + }, + { "../../elliptic": 67, "../curve": 70, "bn.js": 17, inherits: 100 } + ], + 73: [ + function(require, module, exports) { + "use strict" + + var curves = exports + + var hash = require("hash.js") + var elliptic = require("../elliptic") + + var assert = elliptic.utils.assert + + function PresetCurve(options) { + if (options.type === "short") + this.curve = new elliptic.curve.short(options) + else if (options.type === "edwards") + this.curve = new elliptic.curve.edwards(options) + else this.curve = new elliptic.curve.mont(options) + this.g = this.curve.g + this.n = this.curve.n + this.hash = options.hash + + assert(this.g.validate(), "Invalid curve") + assert(this.g.mul(this.n).isInfinity(), "Invalid curve, G*N != O") + } + curves.PresetCurve = PresetCurve + + function defineCurve(name, options) { + Object.defineProperty(curves, name, { + configurable: true, + enumerable: true, + get: function() { + var curve = new PresetCurve(options) + Object.defineProperty(curves, name, { + configurable: true, + enumerable: true, + value: curve + }) + return curve + } + }) + } + + defineCurve("p192", { + type: "short", + prime: "p192", + p: "ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff", + a: "ffffffff ffffffff ffffffff fffffffe ffffffff fffffffc", + b: "64210519 e59c80e7 0fa7e9ab 72243049 feb8deec c146b9b1", + n: "ffffffff ffffffff ffffffff 99def836 146bc9b1 b4d22831", + hash: hash.sha256, + gRed: false, + g: [ + "188da80e b03090f6 7cbf20eb 43a18800 f4ff0afd 82ff1012", + "07192b95 ffc8da78 631011ed 6b24cdd5 73f977a1 1e794811" + ] + }) + + defineCurve("p224", { + type: "short", + prime: "p224", + p: "ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001", + a: "ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff fffffffe", + b: "b4050a85 0c04b3ab f5413256 5044b0b7 d7bfd8ba 270b3943 2355ffb4", + n: "ffffffff ffffffff ffffffff ffff16a2 e0b8f03e 13dd2945 5c5c2a3d", + hash: hash.sha256, + gRed: false, + g: [ + "b70e0cbd 6bb4bf7f 321390b9 4a03c1d3 56c21122 343280d6 115c1d21", + "bd376388 b5f723fb 4c22dfe6 cd4375a0 5a074764 44d58199 85007e34" + ] + }) + + defineCurve("p256", { + type: "short", + prime: null, + p: + "ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff ffffffff", + a: + "ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff fffffffc", + b: + "5ac635d8 aa3a93e7 b3ebbd55 769886bc 651d06b0 cc53b0f6 3bce3c3e 27d2604b", + n: + "ffffffff 00000000 ffffffff ffffffff bce6faad a7179e84 f3b9cac2 fc632551", + hash: hash.sha256, + gRed: false, + g: [ + "6b17d1f2 e12c4247 f8bce6e5 63a440f2 77037d81 2deb33a0 f4a13945 d898c296", + "4fe342e2 fe1a7f9b 8ee7eb4a 7c0f9e16 2bce3357 6b315ece cbb64068 37bf51f5" + ] + }) + + defineCurve("p384", { + type: "short", + prime: null, + p: + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "fffffffe ffffffff 00000000 00000000 ffffffff", + a: + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "fffffffe ffffffff 00000000 00000000 fffffffc", + b: + "b3312fa7 e23ee7e4 988e056b e3f82d19 181d9c6e fe814112 0314088f " + + "5013875a c656398d 8a2ed19d 2a85c8ed d3ec2aef", + n: + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff c7634d81 " + + "f4372ddf 581a0db2 48b0a77a ecec196a ccc52973", + hash: hash.sha384, + gRed: false, + g: [ + "aa87ca22 be8b0537 8eb1c71e f320ad74 6e1d3b62 8ba79b98 59f741e0 82542a38 " + + "5502f25d bf55296c 3a545e38 72760ab7", + "3617de4a 96262c6f 5d9e98bf 9292dc29 f8f41dbd 289a147c e9da3113 b5f0b8c0 " + + "0a60b1ce 1d7e819d 7a431d7c 90ea0e5f" + ] + }) + + defineCurve("p521", { + type: "short", + prime: null, + p: + "000001ff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "ffffffff ffffffff ffffffff ffffffff ffffffff", + a: + "000001ff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "ffffffff ffffffff ffffffff ffffffff fffffffc", + b: + "00000051 953eb961 8e1c9a1f 929a21a0 b68540ee a2da725b " + + "99b315f3 b8b48991 8ef109e1 56193951 ec7e937b 1652c0bd " + + "3bb1bf07 3573df88 3d2c34f1 ef451fd4 6b503f00", + n: + "000001ff ffffffff ffffffff ffffffff ffffffff ffffffff " + + "ffffffff ffffffff fffffffa 51868783 bf2f966b 7fcc0148 " + + "f709a5d0 3bb5c9b8 899c47ae bb6fb71e 91386409", + hash: hash.sha512, + gRed: false, + g: [ + "000000c6 858e06b7 0404e9cd 9e3ecb66 2395b442 9c648139 " + + "053fb521 f828af60 6b4d3dba a14b5e77 efe75928 fe1dc127 " + + "a2ffa8de 3348b3c1 856a429b f97e7e31 c2e5bd66", + "00000118 39296a78 9a3bc004 5c8a5fb4 2c7d1bd9 98f54449 " + + "579b4468 17afbd17 273e662c 97ee7299 5ef42640 c550b901 " + + "3fad0761 353c7086 a272c240 88be9476 9fd16650" + ] + }) + + defineCurve("curve25519", { + type: "mont", + prime: "p25519", + p: + "7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed", + a: "76d06", + b: "1", + n: + "1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed", + hash: hash.sha256, + gRed: false, + g: ["9"] + }) + + defineCurve("ed25519", { + type: "edwards", + prime: "p25519", + p: + "7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed", + a: "-1", + c: "1", + // -121665 * (121666^(-1)) (mod P) + d: + "52036cee2b6ffe73 8cc740797779e898 00700a4d4141d8ab 75eb4dca135978a3", + n: + "1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed", + hash: hash.sha256, + gRed: false, + g: [ + "216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51a", + + // 4/5 + "6666666666666666666666666666666666666666666666666666666666666658" + ] + }) + + var pre + try { + pre = require("./precomputed/secp256k1") + } catch (e) { + pre = undefined + } + + defineCurve("secp256k1", { + type: "short", + prime: "k256", + p: + "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f", + a: "0", + b: "7", + n: + "ffffffff ffffffff ffffffff fffffffe baaedce6 af48a03b bfd25e8c d0364141", + h: "1", + hash: hash.sha256, + + // Precomputed endomorphism + beta: + "7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee", + lambda: + "5363ad4cc05c30e0a5261c028812645a122e22ea20816678df02967c1b23bd72", + basis: [ + { + a: "3086d221a7d46bcde86c90e49284eb15", + b: "-e4437ed6010e88286f547fa90abfe4c3" + }, + { + a: "114ca50f7a8e2f3f657c1108d9d44cfd8", + b: "3086d221a7d46bcde86c90e49284eb15" + } + ], + + gRed: false, + g: [ + "79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798", + "483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8", + pre + ] + }) + }, + { "../elliptic": 67, "./precomputed/secp256k1": 80, "hash.js": 86 } + ], + 74: [ + function(require, module, exports) { + "use strict" + + var BN = require("bn.js") + var HmacDRBG = require("hmac-drbg") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + + var KeyPair = require("./key") + var Signature = require("./signature") + + function EC(options) { + if (!(this instanceof EC)) return new EC(options) + + // Shortcut `elliptic.ec(curve-name)` + if (typeof options === "string") { + assert( + elliptic.curves.hasOwnProperty(options), + "Unknown curve " + options + ) + + options = elliptic.curves[options] + } + + // Shortcut for `elliptic.ec(elliptic.curves.curveName)` + if (options instanceof elliptic.curves.PresetCurve) + options = { curve: options } + + this.curve = options.curve.curve + this.n = this.curve.n + this.nh = this.n.ushrn(1) + this.g = this.curve.g + + // Point on curve + this.g = options.curve.g + this.g.precompute(options.curve.n.bitLength() + 1) + + // Hash for function for DRBG + this.hash = options.hash || options.curve.hash + } + module.exports = EC + + EC.prototype.keyPair = function keyPair(options) { + return new KeyPair(this, options) + } + + EC.prototype.keyFromPrivate = function keyFromPrivate(priv, enc) { + return KeyPair.fromPrivate(this, priv, enc) + } + + EC.prototype.keyFromPublic = function keyFromPublic(pub, enc) { + return KeyPair.fromPublic(this, pub, enc) + } + + EC.prototype.genKeyPair = function genKeyPair(options) { + if (!options) options = {} + + // Instantiate Hmac_DRBG + var drbg = new HmacDRBG({ + hash: this.hash, + pers: options.pers, + persEnc: options.persEnc || "utf8", + entropy: options.entropy || elliptic.rand(this.hash.hmacStrength), + entropyEnc: (options.entropy && options.entropyEnc) || "utf8", + nonce: this.n.toArray() + }) + + var bytes = this.n.byteLength() + var ns2 = this.n.sub(new BN(2)) + do { + var priv = new BN(drbg.generate(bytes)) + if (priv.cmp(ns2) > 0) continue + + priv.iaddn(1) + return this.keyFromPrivate(priv) + } while (true) + } + + EC.prototype._truncateToN = function truncateToN(msg, truncOnly) { + var delta = msg.byteLength() * 8 - this.n.bitLength() + if (delta > 0) msg = msg.ushrn(delta) + if (!truncOnly && msg.cmp(this.n) >= 0) return msg.sub(this.n) + else return msg + } + + EC.prototype.sign = function sign(msg, key, enc, options) { + if (typeof enc === "object") { + options = enc + enc = null + } + if (!options) options = {} + + key = this.keyFromPrivate(key, enc) + msg = this._truncateToN(new BN(msg, 16)) + + // Zero-extend key to provide enough entropy + var bytes = this.n.byteLength() + var bkey = key.getPrivate().toArray("be", bytes) + + // Zero-extend nonce to have the same byte size as N + var nonce = msg.toArray("be", bytes) + + // Instantiate Hmac_DRBG + var drbg = new HmacDRBG({ + hash: this.hash, + entropy: bkey, + nonce: nonce, + pers: options.pers, + persEnc: options.persEnc || "utf8" + }) + + // Number of bytes to generate + var ns1 = this.n.sub(new BN(1)) + + for (var iter = 0; true; iter++) { + var k = options.k + ? options.k(iter) + : new BN(drbg.generate(this.n.byteLength())) + k = this._truncateToN(k, true) + if (k.cmpn(1) <= 0 || k.cmp(ns1) >= 0) continue + + var kp = this.g.mul(k) + if (kp.isInfinity()) continue + + var kpX = kp.getX() + var r = kpX.umod(this.n) + if (r.cmpn(0) === 0) continue + + var s = k.invm(this.n).mul(r.mul(key.getPrivate()).iadd(msg)) + s = s.umod(this.n) + if (s.cmpn(0) === 0) continue + + var recoveryParam = + (kp.getY().isOdd() ? 1 : 0) | (kpX.cmp(r) !== 0 ? 2 : 0) + + // Use complement of `s`, if it is > `n / 2` + if (options.canonical && s.cmp(this.nh) > 0) { + s = this.n.sub(s) + recoveryParam ^= 1 + } + + return new Signature({ r: r, s: s, recoveryParam: recoveryParam }) + } + } + + EC.prototype.verify = function verify(msg, signature, key, enc) { + msg = this._truncateToN(new BN(msg, 16)) + key = this.keyFromPublic(key, enc) + signature = new Signature(signature, "hex") + + // Perform primitive values validation + var r = signature.r + var s = signature.s + if (r.cmpn(1) < 0 || r.cmp(this.n) >= 0) return false + if (s.cmpn(1) < 0 || s.cmp(this.n) >= 0) return false + + // Validate signature + var sinv = s.invm(this.n) + var u1 = sinv.mul(msg).umod(this.n) + var u2 = sinv.mul(r).umod(this.n) + + if (!this.curve._maxwellTrick) { + var p = this.g.mulAdd(u1, key.getPublic(), u2) + if (p.isInfinity()) return false + + return ( + p + .getX() + .umod(this.n) + .cmp(r) === 0 + ) + } + + // NOTE: Greg Maxwell's trick, inspired by: + // https://git.io/vad3K + + var p = this.g.jmulAdd(u1, key.getPublic(), u2) + if (p.isInfinity()) return false + + // Compare `p.x` of Jacobian point with `r`, + // this will do `p.x == r * p.z^2` instead of multiplying `p.x` by the + // inverse of `p.z^2` + return p.eqXToP(r) + } + + EC.prototype.recoverPubKey = function(msg, signature, j, enc) { + assert((3 & j) === j, "The recovery param is more than two bits") + signature = new Signature(signature, enc) + + var n = this.n + var e = new BN(msg) + var r = signature.r + var s = signature.s + + // A set LSB signifies that the y-coordinate is odd + var isYOdd = j & 1 + var isSecondKey = j >> 1 + if (r.cmp(this.curve.p.umod(this.curve.n)) >= 0 && isSecondKey) + throw new Error("Unable to find sencond key candinate") + + // 1.1. Let x = r + jn. + if (isSecondKey) + r = this.curve.pointFromX(r.add(this.curve.n), isYOdd) + else r = this.curve.pointFromX(r, isYOdd) + + var rInv = signature.r.invm(n) + var s1 = n + .sub(e) + .mul(rInv) + .umod(n) + var s2 = s.mul(rInv).umod(n) + + // 1.6.1 Compute Q = r^-1 (sR - eG) + // Q = r^-1 (sR + -eG) + return this.g.mulAdd(s1, r, s2) + } + + EC.prototype.getKeyRecoveryParam = function(e, signature, Q, enc) { + signature = new Signature(signature, enc) + if (signature.recoveryParam !== null) return signature.recoveryParam + + for (var i = 0; i < 4; i++) { + var Qprime + try { + Qprime = this.recoverPubKey(e, signature, i) + } catch (e) { + continue + } + + if (Qprime.eq(Q)) return i + } + throw new Error("Unable to find valid recovery factor") + } + }, + { + "../../elliptic": 67, + "./key": 75, + "./signature": 76, + "bn.js": 17, + "hmac-drbg": 98 + } + ], + 75: [ + function(require, module, exports) { + "use strict" + + var BN = require("bn.js") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + + function KeyPair(ec, options) { + this.ec = ec + this.priv = null + this.pub = null + + // KeyPair(ec, { priv: ..., pub: ... }) + if (options.priv) this._importPrivate(options.priv, options.privEnc) + if (options.pub) this._importPublic(options.pub, options.pubEnc) + } + module.exports = KeyPair + + KeyPair.fromPublic = function fromPublic(ec, pub, enc) { + if (pub instanceof KeyPair) return pub + + return new KeyPair(ec, { + pub: pub, + pubEnc: enc + }) + } + + KeyPair.fromPrivate = function fromPrivate(ec, priv, enc) { + if (priv instanceof KeyPair) return priv + + return new KeyPair(ec, { + priv: priv, + privEnc: enc + }) + } + + KeyPair.prototype.validate = function validate() { + var pub = this.getPublic() + + if (pub.isInfinity()) + return { result: false, reason: "Invalid public key" } + if (!pub.validate()) + return { result: false, reason: "Public key is not a point" } + if (!pub.mul(this.ec.curve.n).isInfinity()) + return { result: false, reason: "Public key * N != O" } + + return { result: true, reason: null } + } + + KeyPair.prototype.getPublic = function getPublic(compact, enc) { + // compact is optional argument + if (typeof compact === "string") { + enc = compact + compact = null + } + + if (!this.pub) this.pub = this.ec.g.mul(this.priv) + + if (!enc) return this.pub + + return this.pub.encode(enc, compact) + } + + KeyPair.prototype.getPrivate = function getPrivate(enc) { + if (enc === "hex") return this.priv.toString(16, 2) + else return this.priv + } + + KeyPair.prototype._importPrivate = function _importPrivate(key, enc) { + this.priv = new BN(key, enc || 16) + + // Ensure that the priv won't be bigger than n, otherwise we may fail + // in fixed multiplication method + this.priv = this.priv.umod(this.ec.curve.n) + } + + KeyPair.prototype._importPublic = function _importPublic(key, enc) { + if (key.x || key.y) { + // Montgomery points only have an `x` coordinate. + // Weierstrass/Edwards points on the other hand have both `x` and + // `y` coordinates. + if (this.ec.curve.type === "mont") { + assert(key.x, "Need x coordinate") + } else if ( + this.ec.curve.type === "short" || + this.ec.curve.type === "edwards" + ) { + assert(key.x && key.y, "Need both x and y coordinate") + } + this.pub = this.ec.curve.point(key.x, key.y) + return + } + this.pub = this.ec.curve.decodePoint(key, enc) + } + + // ECDH + KeyPair.prototype.derive = function derive(pub) { + return pub.mul(this.priv).getX() + } + + // ECDSA + KeyPair.prototype.sign = function sign(msg, enc, options) { + return this.ec.sign(msg, this, enc, options) + } + + KeyPair.prototype.verify = function verify(msg, signature) { + return this.ec.verify(msg, signature, this) + } + + KeyPair.prototype.inspect = function inspect() { + return ( + "" + ) + } + }, + { "../../elliptic": 67, "bn.js": 17 } + ], + 76: [ + function(require, module, exports) { + "use strict" + + var BN = require("bn.js") + + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + + function Signature(options, enc) { + if (options instanceof Signature) return options + + if (this._importDER(options, enc)) return + + assert(options.r && options.s, "Signature without r or s") + this.r = new BN(options.r, 16) + this.s = new BN(options.s, 16) + if (options.recoveryParam === undefined) this.recoveryParam = null + else this.recoveryParam = options.recoveryParam + } + module.exports = Signature + + function Position() { + this.place = 0 + } + + function getLength(buf, p) { + var initial = buf[p.place++] + if (!(initial & 0x80)) { + return initial + } + var octetLen = initial & 0xf + var val = 0 + for (var i = 0, off = p.place; i < octetLen; i++, off++) { + val <<= 8 + val |= buf[off] + } + p.place = off + return val + } + + function rmPadding(buf) { + var i = 0 + var len = buf.length - 1 + while (!buf[i] && !(buf[i + 1] & 0x80) && i < len) { + i++ + } + if (i === 0) { + return buf + } + return buf.slice(i) + } + + Signature.prototype._importDER = function _importDER(data, enc) { + data = utils.toArray(data, enc) + var p = new Position() + if (data[p.place++] !== 0x30) { + return false + } + var len = getLength(data, p) + if (len + p.place !== data.length) { + return false + } + if (data[p.place++] !== 0x02) { + return false + } + var rlen = getLength(data, p) + var r = data.slice(p.place, rlen + p.place) + p.place += rlen + if (data[p.place++] !== 0x02) { + return false + } + var slen = getLength(data, p) + if (data.length !== slen + p.place) { + return false + } + var s = data.slice(p.place, slen + p.place) + if (r[0] === 0 && r[1] & 0x80) { + r = r.slice(1) + } + if (s[0] === 0 && s[1] & 0x80) { + s = s.slice(1) + } + + this.r = new BN(r) + this.s = new BN(s) + this.recoveryParam = null + + return true + } + + function constructLength(arr, len) { + if (len < 0x80) { + arr.push(len) + return + } + var octets = 1 + ((Math.log(len) / Math.LN2) >>> 3) + arr.push(octets | 0x80) + while (--octets) { + arr.push((len >>> (octets << 3)) & 0xff) + } + arr.push(len) + } + + Signature.prototype.toDER = function toDER(enc) { + var r = this.r.toArray() + var s = this.s.toArray() + + // Pad values + if (r[0] & 0x80) r = [0].concat(r) + // Pad values + if (s[0] & 0x80) s = [0].concat(s) + + r = rmPadding(r) + s = rmPadding(s) + + while (!s[0] && !(s[1] & 0x80)) { + s = s.slice(1) + } + var arr = [0x02] + constructLength(arr, r.length) + arr = arr.concat(r) + arr.push(0x02) + constructLength(arr, s.length) + var backHalf = arr.concat(s) + var res = [0x30] + constructLength(res, backHalf.length) + res = res.concat(backHalf) + return utils.encode(res, enc) + } + }, + { "../../elliptic": 67, "bn.js": 17 } + ], + 77: [ + function(require, module, exports) { + "use strict" + + var hash = require("hash.js") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + var parseBytes = utils.parseBytes + var KeyPair = require("./key") + var Signature = require("./signature") + + function EDDSA(curve) { + assert(curve === "ed25519", "only tested with ed25519 so far") + + if (!(this instanceof EDDSA)) return new EDDSA(curve) + + var curve = elliptic.curves[curve].curve + this.curve = curve + this.g = curve.g + this.g.precompute(curve.n.bitLength() + 1) + + this.pointClass = curve.point().constructor + this.encodingLength = Math.ceil(curve.n.bitLength() / 8) + this.hash = hash.sha512 + } + + module.exports = EDDSA + + /** + * @param {Array|String} message - message bytes + * @param {Array|String|KeyPair} secret - secret bytes or a keypair + * @returns {Signature} - signature + */ + EDDSA.prototype.sign = function sign(message, secret) { + message = parseBytes(message) + var key = this.keyFromSecret(secret) + var r = this.hashInt(key.messagePrefix(), message) + var R = this.g.mul(r) + var Rencoded = this.encodePoint(R) + var s_ = this.hashInt(Rencoded, key.pubBytes(), message).mul( + key.priv() + ) + var S = r.add(s_).umod(this.curve.n) + return this.makeSignature({ R: R, S: S, Rencoded: Rencoded }) + } + + /** + * @param {Array} message - message bytes + * @param {Array|String|Signature} sig - sig bytes + * @param {Array|String|Point|KeyPair} pub - public key + * @returns {Boolean} - true if public key matches sig of message + */ + EDDSA.prototype.verify = function verify(message, sig, pub) { + message = parseBytes(message) + sig = this.makeSignature(sig) + var key = this.keyFromPublic(pub) + var h = this.hashInt(sig.Rencoded(), key.pubBytes(), message) + var SG = this.g.mul(sig.S()) + var RplusAh = sig.R().add(key.pub().mul(h)) + return RplusAh.eq(SG) + } + + EDDSA.prototype.hashInt = function hashInt() { + var hash = this.hash() + for (var i = 0; i < arguments.length; i++) hash.update(arguments[i]) + return utils.intFromLE(hash.digest()).umod(this.curve.n) + } + + EDDSA.prototype.keyFromPublic = function keyFromPublic(pub) { + return KeyPair.fromPublic(this, pub) + } + + EDDSA.prototype.keyFromSecret = function keyFromSecret(secret) { + return KeyPair.fromSecret(this, secret) + } + + EDDSA.prototype.makeSignature = function makeSignature(sig) { + if (sig instanceof Signature) return sig + return new Signature(this, sig) + } + + /** + * * https://tools.ietf.org/html/draft-josefsson-eddsa-ed25519-03#section-5.2 + * + * EDDSA defines methods for encoding and decoding points and integers. These are + * helper convenience methods, that pass along to utility functions implied + * parameters. + * + */ + EDDSA.prototype.encodePoint = function encodePoint(point) { + var enc = point.getY().toArray("le", this.encodingLength) + enc[this.encodingLength - 1] |= point.getX().isOdd() ? 0x80 : 0 + return enc + } + + EDDSA.prototype.decodePoint = function decodePoint(bytes) { + bytes = utils.parseBytes(bytes) + + var lastIx = bytes.length - 1 + var normed = bytes.slice(0, lastIx).concat(bytes[lastIx] & ~0x80) + var xIsOdd = (bytes[lastIx] & 0x80) !== 0 + + var y = utils.intFromLE(normed) + return this.curve.pointFromY(y, xIsOdd) + } + + EDDSA.prototype.encodeInt = function encodeInt(num) { + return num.toArray("le", this.encodingLength) + } + + EDDSA.prototype.decodeInt = function decodeInt(bytes) { + return utils.intFromLE(bytes) + } + + EDDSA.prototype.isPoint = function isPoint(val) { + return val instanceof this.pointClass + } + }, + { "../../elliptic": 67, "./key": 78, "./signature": 79, "hash.js": 86 } + ], + 78: [ + function(require, module, exports) { + "use strict" + + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + var parseBytes = utils.parseBytes + var cachedProperty = utils.cachedProperty + + /** + * @param {EDDSA} eddsa - instance + * @param {Object} params - public/private key parameters + * + * @param {Array} [params.secret] - secret seed bytes + * @param {Point} [params.pub] - public key point (aka `A` in eddsa terms) + * @param {Array} [params.pub] - public key point encoded as bytes + * + */ + function KeyPair(eddsa, params) { + this.eddsa = eddsa + this._secret = parseBytes(params.secret) + if (eddsa.isPoint(params.pub)) this._pub = params.pub + else this._pubBytes = parseBytes(params.pub) + } + + KeyPair.fromPublic = function fromPublic(eddsa, pub) { + if (pub instanceof KeyPair) return pub + return new KeyPair(eddsa, { pub: pub }) + } + + KeyPair.fromSecret = function fromSecret(eddsa, secret) { + if (secret instanceof KeyPair) return secret + return new KeyPair(eddsa, { secret: secret }) + } + + KeyPair.prototype.secret = function secret() { + return this._secret + } + + cachedProperty(KeyPair, "pubBytes", function pubBytes() { + return this.eddsa.encodePoint(this.pub()) + }) + + cachedProperty(KeyPair, "pub", function pub() { + if (this._pubBytes) return this.eddsa.decodePoint(this._pubBytes) + return this.eddsa.g.mul(this.priv()) + }) + + cachedProperty(KeyPair, "privBytes", function privBytes() { + var eddsa = this.eddsa + var hash = this.hash() + var lastIx = eddsa.encodingLength - 1 + + var a = hash.slice(0, eddsa.encodingLength) + a[0] &= 248 + a[lastIx] &= 127 + a[lastIx] |= 64 + + return a + }) + + cachedProperty(KeyPair, "priv", function priv() { + return this.eddsa.decodeInt(this.privBytes()) + }) + + cachedProperty(KeyPair, "hash", function hash() { + return this.eddsa + .hash() + .update(this.secret()) + .digest() + }) + + cachedProperty(KeyPair, "messagePrefix", function messagePrefix() { + return this.hash().slice(this.eddsa.encodingLength) + }) + + KeyPair.prototype.sign = function sign(message) { + assert(this._secret, "KeyPair can only verify") + return this.eddsa.sign(message, this) + } + + KeyPair.prototype.verify = function verify(message, sig) { + return this.eddsa.verify(message, sig, this) + } + + KeyPair.prototype.getSecret = function getSecret(enc) { + assert(this._secret, "KeyPair is public only") + return utils.encode(this.secret(), enc) + } + + KeyPair.prototype.getPublic = function getPublic(enc) { + return utils.encode(this.pubBytes(), enc) + } + + module.exports = KeyPair + }, + { "../../elliptic": 67 } + ], + 79: [ + function(require, module, exports) { + "use strict" + + var BN = require("bn.js") + var elliptic = require("../../elliptic") + var utils = elliptic.utils + var assert = utils.assert + var cachedProperty = utils.cachedProperty + var parseBytes = utils.parseBytes + + /** + * @param {EDDSA} eddsa - eddsa instance + * @param {Array|Object} sig - + * @param {Array|Point} [sig.R] - R point as Point or bytes + * @param {Array|bn} [sig.S] - S scalar as bn or bytes + * @param {Array} [sig.Rencoded] - R point encoded + * @param {Array} [sig.Sencoded] - S scalar encoded + */ + function Signature(eddsa, sig) { + this.eddsa = eddsa + + if (typeof sig !== "object") sig = parseBytes(sig) + + if (Array.isArray(sig)) { + sig = { + R: sig.slice(0, eddsa.encodingLength), + S: sig.slice(eddsa.encodingLength) + } + } + + assert(sig.R && sig.S, "Signature without R or S") + + if (eddsa.isPoint(sig.R)) this._R = sig.R + if (sig.S instanceof BN) this._S = sig.S + + this._Rencoded = Array.isArray(sig.R) ? sig.R : sig.Rencoded + this._Sencoded = Array.isArray(sig.S) ? sig.S : sig.Sencoded + } + + cachedProperty(Signature, "S", function S() { + return this.eddsa.decodeInt(this.Sencoded()) + }) + + cachedProperty(Signature, "R", function R() { + return this.eddsa.decodePoint(this.Rencoded()) + }) + + cachedProperty(Signature, "Rencoded", function Rencoded() { + return this.eddsa.encodePoint(this.R()) + }) + + cachedProperty(Signature, "Sencoded", function Sencoded() { + return this.eddsa.encodeInt(this.S()) + }) + + Signature.prototype.toBytes = function toBytes() { + return this.Rencoded().concat(this.Sencoded()) + } + + Signature.prototype.toHex = function toHex() { + return utils.encode(this.toBytes(), "hex").toUpperCase() + } + + module.exports = Signature + }, + { "../../elliptic": 67, "bn.js": 17 } + ], + 80: [ + function(require, module, exports) { + module.exports = { + doubles: { + step: 4, + points: [ + [ + "e60fce93b59e9ec53011aabc21c23e97b2a31369b87a5ae9c44ee89e2a6dec0a", + "f7e3507399e595929db99f34f57937101296891e44d23f0be1f32cce69616821" + ], + [ + "8282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508", + "11f8a8098557dfe45e8256e830b60ace62d613ac2f7b17bed31b6eaff6e26caf" + ], + [ + "175e159f728b865a72f99cc6c6fc846de0b93833fd2222ed73fce5b551e5b739", + "d3506e0d9e3c79eba4ef97a51ff71f5eacb5955add24345c6efa6ffee9fed695" + ], + [ + "363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640", + "4e273adfc732221953b445397f3363145b9a89008199ecb62003c7f3bee9de9" + ], + [ + "8b4b5f165df3c2be8c6244b5b745638843e4a781a15bcd1b69f79a55dffdf80c", + "4aad0a6f68d308b4b3fbd7813ab0da04f9e336546162ee56b3eff0c65fd4fd36" + ], + [ + "723cbaa6e5db996d6bf771c00bd548c7b700dbffa6c0e77bcb6115925232fcda", + "96e867b5595cc498a921137488824d6e2660a0653779494801dc069d9eb39f5f" + ], + [ + "eebfa4d493bebf98ba5feec812c2d3b50947961237a919839a533eca0e7dd7fa", + "5d9a8ca3970ef0f269ee7edaf178089d9ae4cdc3a711f712ddfd4fdae1de8999" + ], + [ + "100f44da696e71672791d0a09b7bde459f1215a29b3c03bfefd7835b39a48db0", + "cdd9e13192a00b772ec8f3300c090666b7ff4a18ff5195ac0fbd5cd62bc65a09" + ], + [ + "e1031be262c7ed1b1dc9227a4a04c017a77f8d4464f3b3852c8acde6e534fd2d", + "9d7061928940405e6bb6a4176597535af292dd419e1ced79a44f18f29456a00d" + ], + [ + "feea6cae46d55b530ac2839f143bd7ec5cf8b266a41d6af52d5e688d9094696d", + "e57c6b6c97dce1bab06e4e12bf3ecd5c981c8957cc41442d3155debf18090088" + ], + [ + "da67a91d91049cdcb367be4be6ffca3cfeed657d808583de33fa978bc1ec6cb1", + "9bacaa35481642bc41f463f7ec9780e5dec7adc508f740a17e9ea8e27a68be1d" + ], + [ + "53904faa0b334cdda6e000935ef22151ec08d0f7bb11069f57545ccc1a37b7c0", + "5bc087d0bc80106d88c9eccac20d3c1c13999981e14434699dcb096b022771c8" + ], + [ + "8e7bcd0bd35983a7719cca7764ca906779b53a043a9b8bcaeff959f43ad86047", + "10b7770b2a3da4b3940310420ca9514579e88e2e47fd68b3ea10047e8460372a" + ], + [ + "385eed34c1cdff21e6d0818689b81bde71a7f4f18397e6690a841e1599c43862", + "283bebc3e8ea23f56701de19e9ebf4576b304eec2086dc8cc0458fe5542e5453" + ], + [ + "6f9d9b803ecf191637c73a4413dfa180fddf84a5947fbc9c606ed86c3fac3a7", + "7c80c68e603059ba69b8e2a30e45c4d47ea4dd2f5c281002d86890603a842160" + ], + [ + "3322d401243c4e2582a2147c104d6ecbf774d163db0f5e5313b7e0e742d0e6bd", + "56e70797e9664ef5bfb019bc4ddaf9b72805f63ea2873af624f3a2e96c28b2a0" + ], + [ + "85672c7d2de0b7da2bd1770d89665868741b3f9af7643397721d74d28134ab83", + "7c481b9b5b43b2eb6374049bfa62c2e5e77f17fcc5298f44c8e3094f790313a6" + ], + [ + "948bf809b1988a46b06c9f1919413b10f9226c60f668832ffd959af60c82a0a", + "53a562856dcb6646dc6b74c5d1c3418c6d4dff08c97cd2bed4cb7f88d8c8e589" + ], + [ + "6260ce7f461801c34f067ce0f02873a8f1b0e44dfc69752accecd819f38fd8e8", + "bc2da82b6fa5b571a7f09049776a1ef7ecd292238051c198c1a84e95b2b4ae17" + ], + [ + "e5037de0afc1d8d43d8348414bbf4103043ec8f575bfdc432953cc8d2037fa2d", + "4571534baa94d3b5f9f98d09fb990bddbd5f5b03ec481f10e0e5dc841d755bda" + ], + [ + "e06372b0f4a207adf5ea905e8f1771b4e7e8dbd1c6a6c5b725866a0ae4fce725", + "7a908974bce18cfe12a27bb2ad5a488cd7484a7787104870b27034f94eee31dd" + ], + [ + "213c7a715cd5d45358d0bbf9dc0ce02204b10bdde2a3f58540ad6908d0559754", + "4b6dad0b5ae462507013ad06245ba190bb4850f5f36a7eeddff2c27534b458f2" + ], + [ + "4e7c272a7af4b34e8dbb9352a5419a87e2838c70adc62cddf0cc3a3b08fbd53c", + "17749c766c9d0b18e16fd09f6def681b530b9614bff7dd33e0b3941817dcaae6" + ], + [ + "fea74e3dbe778b1b10f238ad61686aa5c76e3db2be43057632427e2840fb27b6", + "6e0568db9b0b13297cf674deccb6af93126b596b973f7b77701d3db7f23cb96f" + ], + [ + "76e64113f677cf0e10a2570d599968d31544e179b760432952c02a4417bdde39", + "c90ddf8dee4e95cf577066d70681f0d35e2a33d2b56d2032b4b1752d1901ac01" + ], + [ + "c738c56b03b2abe1e8281baa743f8f9a8f7cc643df26cbee3ab150242bcbb891", + "893fb578951ad2537f718f2eacbfbbbb82314eef7880cfe917e735d9699a84c3" + ], + [ + "d895626548b65b81e264c7637c972877d1d72e5f3a925014372e9f6588f6c14b", + "febfaa38f2bc7eae728ec60818c340eb03428d632bb067e179363ed75d7d991f" + ], + [ + "b8da94032a957518eb0f6433571e8761ceffc73693e84edd49150a564f676e03", + "2804dfa44805a1e4d7c99cc9762808b092cc584d95ff3b511488e4e74efdf6e7" + ], + [ + "e80fea14441fb33a7d8adab9475d7fab2019effb5156a792f1a11778e3c0df5d", + "eed1de7f638e00771e89768ca3ca94472d155e80af322ea9fcb4291b6ac9ec78" + ], + [ + "a301697bdfcd704313ba48e51d567543f2a182031efd6915ddc07bbcc4e16070", + "7370f91cfb67e4f5081809fa25d40f9b1735dbf7c0a11a130c0d1a041e177ea1" + ], + [ + "90ad85b389d6b936463f9d0512678de208cc330b11307fffab7ac63e3fb04ed4", + "e507a3620a38261affdcbd9427222b839aefabe1582894d991d4d48cb6ef150" + ], + [ + "8f68b9d2f63b5f339239c1ad981f162ee88c5678723ea3351b7b444c9ec4c0da", + "662a9f2dba063986de1d90c2b6be215dbbea2cfe95510bfdf23cbf79501fff82" + ], + [ + "e4f3fb0176af85d65ff99ff9198c36091f48e86503681e3e6686fd5053231e11", + "1e63633ad0ef4f1c1661a6d0ea02b7286cc7e74ec951d1c9822c38576feb73bc" + ], + [ + "8c00fa9b18ebf331eb961537a45a4266c7034f2f0d4e1d0716fb6eae20eae29e", + "efa47267fea521a1a9dc343a3736c974c2fadafa81e36c54e7d2a4c66702414b" + ], + [ + "e7a26ce69dd4829f3e10cec0a9e98ed3143d084f308b92c0997fddfc60cb3e41", + "2a758e300fa7984b471b006a1aafbb18d0a6b2c0420e83e20e8a9421cf2cfd51" + ], + [ + "b6459e0ee3662ec8d23540c223bcbdc571cbcb967d79424f3cf29eb3de6b80ef", + "67c876d06f3e06de1dadf16e5661db3c4b3ae6d48e35b2ff30bf0b61a71ba45" + ], + [ + "d68a80c8280bb840793234aa118f06231d6f1fc67e73c5a5deda0f5b496943e8", + "db8ba9fff4b586d00c4b1f9177b0e28b5b0e7b8f7845295a294c84266b133120" + ], + [ + "324aed7df65c804252dc0270907a30b09612aeb973449cea4095980fc28d3d5d", + "648a365774b61f2ff130c0c35aec1f4f19213b0c7e332843967224af96ab7c84" + ], + [ + "4df9c14919cde61f6d51dfdbe5fee5dceec4143ba8d1ca888e8bd373fd054c96", + "35ec51092d8728050974c23a1d85d4b5d506cdc288490192ebac06cad10d5d" + ], + [ + "9c3919a84a474870faed8a9c1cc66021523489054d7f0308cbfc99c8ac1f98cd", + "ddb84f0f4a4ddd57584f044bf260e641905326f76c64c8e6be7e5e03d4fc599d" + ], + [ + "6057170b1dd12fdf8de05f281d8e06bb91e1493a8b91d4cc5a21382120a959e5", + "9a1af0b26a6a4807add9a2daf71df262465152bc3ee24c65e899be932385a2a8" + ], + [ + "a576df8e23a08411421439a4518da31880cef0fba7d4df12b1a6973eecb94266", + "40a6bf20e76640b2c92b97afe58cd82c432e10a7f514d9f3ee8be11ae1b28ec8" + ], + [ + "7778a78c28dec3e30a05fe9629de8c38bb30d1f5cf9a3a208f763889be58ad71", + "34626d9ab5a5b22ff7098e12f2ff580087b38411ff24ac563b513fc1fd9f43ac" + ], + [ + "928955ee637a84463729fd30e7afd2ed5f96274e5ad7e5cb09eda9c06d903ac", + "c25621003d3f42a827b78a13093a95eeac3d26efa8a8d83fc5180e935bcd091f" + ], + [ + "85d0fef3ec6db109399064f3a0e3b2855645b4a907ad354527aae75163d82751", + "1f03648413a38c0be29d496e582cf5663e8751e96877331582c237a24eb1f962" + ], + [ + "ff2b0dce97eece97c1c9b6041798b85dfdfb6d8882da20308f5404824526087e", + "493d13fef524ba188af4c4dc54d07936c7b7ed6fb90e2ceb2c951e01f0c29907" + ], + [ + "827fbbe4b1e880ea9ed2b2e6301b212b57f1ee148cd6dd28780e5e2cf856e241", + "c60f9c923c727b0b71bef2c67d1d12687ff7a63186903166d605b68baec293ec" + ], + [ + "eaa649f21f51bdbae7be4ae34ce6e5217a58fdce7f47f9aa7f3b58fa2120e2b3", + "be3279ed5bbbb03ac69a80f89879aa5a01a6b965f13f7e59d47a5305ba5ad93d" + ], + [ + "e4a42d43c5cf169d9391df6decf42ee541b6d8f0c9a137401e23632dda34d24f", + "4d9f92e716d1c73526fc99ccfb8ad34ce886eedfa8d8e4f13a7f7131deba9414" + ], + [ + "1ec80fef360cbdd954160fadab352b6b92b53576a88fea4947173b9d4300bf19", + "aeefe93756b5340d2f3a4958a7abbf5e0146e77f6295a07b671cdc1cc107cefd" + ], + [ + "146a778c04670c2f91b00af4680dfa8bce3490717d58ba889ddb5928366642be", + "b318e0ec3354028add669827f9d4b2870aaa971d2f7e5ed1d0b297483d83efd0" + ], + [ + "fa50c0f61d22e5f07e3acebb1aa07b128d0012209a28b9776d76a8793180eef9", + "6b84c6922397eba9b72cd2872281a68a5e683293a57a213b38cd8d7d3f4f2811" + ], + [ + "da1d61d0ca721a11b1a5bf6b7d88e8421a288ab5d5bba5220e53d32b5f067ec2", + "8157f55a7c99306c79c0766161c91e2966a73899d279b48a655fba0f1ad836f1" + ], + [ + "a8e282ff0c9706907215ff98e8fd416615311de0446f1e062a73b0610d064e13", + "7f97355b8db81c09abfb7f3c5b2515888b679a3e50dd6bd6cef7c73111f4cc0c" + ], + [ + "174a53b9c9a285872d39e56e6913cab15d59b1fa512508c022f382de8319497c", + "ccc9dc37abfc9c1657b4155f2c47f9e6646b3a1d8cb9854383da13ac079afa73" + ], + [ + "959396981943785c3d3e57edf5018cdbe039e730e4918b3d884fdff09475b7ba", + "2e7e552888c331dd8ba0386a4b9cd6849c653f64c8709385e9b8abf87524f2fd" + ], + [ + "d2a63a50ae401e56d645a1153b109a8fcca0a43d561fba2dbb51340c9d82b151", + "e82d86fb6443fcb7565aee58b2948220a70f750af484ca52d4142174dcf89405" + ], + [ + "64587e2335471eb890ee7896d7cfdc866bacbdbd3839317b3436f9b45617e073", + "d99fcdd5bf6902e2ae96dd6447c299a185b90a39133aeab358299e5e9faf6589" + ], + [ + "8481bde0e4e4d885b3a546d3e549de042f0aa6cea250e7fd358d6c86dd45e458", + "38ee7b8cba5404dd84a25bf39cecb2ca900a79c42b262e556d64b1b59779057e" + ], + [ + "13464a57a78102aa62b6979ae817f4637ffcfed3c4b1ce30bcd6303f6caf666b", + "69be159004614580ef7e433453ccb0ca48f300a81d0942e13f495a907f6ecc27" + ], + [ + "bc4a9df5b713fe2e9aef430bcc1dc97a0cd9ccede2f28588cada3a0d2d83f366", + "d3a81ca6e785c06383937adf4b798caa6e8a9fbfa547b16d758d666581f33c1" + ], + [ + "8c28a97bf8298bc0d23d8c749452a32e694b65e30a9472a3954ab30fe5324caa", + "40a30463a3305193378fedf31f7cc0eb7ae784f0451cb9459e71dc73cbef9482" + ], + [ + "8ea9666139527a8c1dd94ce4f071fd23c8b350c5a4bb33748c4ba111faccae0", + "620efabbc8ee2782e24e7c0cfb95c5d735b783be9cf0f8e955af34a30e62b945" + ], + [ + "dd3625faef5ba06074669716bbd3788d89bdde815959968092f76cc4eb9a9787", + "7a188fa3520e30d461da2501045731ca941461982883395937f68d00c644a573" + ], + [ + "f710d79d9eb962297e4f6232b40e8f7feb2bc63814614d692c12de752408221e", + "ea98e67232d3b3295d3b535532115ccac8612c721851617526ae47a9c77bfc82" + ] + ] + }, + naf: { + wnd: 7, + points: [ + [ + "f9308a019258c31049344f85f89d5229b531c845836f99b08601f113bce036f9", + "388f7b0f632de8140fe337e62a37f3566500a99934c2231b6cb9fd7584b8e672" + ], + [ + "2f8bde4d1a07209355b4a7250a5c5128e88b84bddc619ab7cba8d569b240efe4", + "d8ac222636e5e3d6d4dba9dda6c9c426f788271bab0d6840dca87d3aa6ac62d6" + ], + [ + "5cbdf0646e5db4eaa398f365f2ea7a0e3d419b7e0330e39ce92bddedcac4f9bc", + "6aebca40ba255960a3178d6d861a54dba813d0b813fde7b5a5082628087264da" + ], + [ + "acd484e2f0c7f65309ad178a9f559abde09796974c57e714c35f110dfc27ccbe", + "cc338921b0a7d9fd64380971763b61e9add888a4375f8e0f05cc262ac64f9c37" + ], + [ + "774ae7f858a9411e5ef4246b70c65aac5649980be5c17891bbec17895da008cb", + "d984a032eb6b5e190243dd56d7b7b365372db1e2dff9d6a8301d74c9c953c61b" + ], + [ + "f28773c2d975288bc7d1d205c3748651b075fbc6610e58cddeeddf8f19405aa8", + "ab0902e8d880a89758212eb65cdaf473a1a06da521fa91f29b5cb52db03ed81" + ], + [ + "d7924d4f7d43ea965a465ae3095ff41131e5946f3c85f79e44adbcf8e27e080e", + "581e2872a86c72a683842ec228cc6defea40af2bd896d3a5c504dc9ff6a26b58" + ], + [ + "defdea4cdb677750a420fee807eacf21eb9898ae79b9768766e4faa04a2d4a34", + "4211ab0694635168e997b0ead2a93daeced1f4a04a95c0f6cfb199f69e56eb77" + ], + [ + "2b4ea0a797a443d293ef5cff444f4979f06acfebd7e86d277475656138385b6c", + "85e89bc037945d93b343083b5a1c86131a01f60c50269763b570c854e5c09b7a" + ], + [ + "352bbf4a4cdd12564f93fa332ce333301d9ad40271f8107181340aef25be59d5", + "321eb4075348f534d59c18259dda3e1f4a1b3b2e71b1039c67bd3d8bcf81998c" + ], + [ + "2fa2104d6b38d11b0230010559879124e42ab8dfeff5ff29dc9cdadd4ecacc3f", + "2de1068295dd865b64569335bd5dd80181d70ecfc882648423ba76b532b7d67" + ], + [ + "9248279b09b4d68dab21a9b066edda83263c3d84e09572e269ca0cd7f5453714", + "73016f7bf234aade5d1aa71bdea2b1ff3fc0de2a887912ffe54a32ce97cb3402" + ], + [ + "daed4f2be3a8bf278e70132fb0beb7522f570e144bf615c07e996d443dee8729", + "a69dce4a7d6c98e8d4a1aca87ef8d7003f83c230f3afa726ab40e52290be1c55" + ], + [ + "c44d12c7065d812e8acf28d7cbb19f9011ecd9e9fdf281b0e6a3b5e87d22e7db", + "2119a460ce326cdc76c45926c982fdac0e106e861edf61c5a039063f0e0e6482" + ], + [ + "6a245bf6dc698504c89a20cfded60853152b695336c28063b61c65cbd269e6b4", + "e022cf42c2bd4a708b3f5126f16a24ad8b33ba48d0423b6efd5e6348100d8a82" + ], + [ + "1697ffa6fd9de627c077e3d2fe541084ce13300b0bec1146f95ae57f0d0bd6a5", + "b9c398f186806f5d27561506e4557433a2cf15009e498ae7adee9d63d01b2396" + ], + [ + "605bdb019981718b986d0f07e834cb0d9deb8360ffb7f61df982345ef27a7479", + "2972d2de4f8d20681a78d93ec96fe23c26bfae84fb14db43b01e1e9056b8c49" + ], + [ + "62d14dab4150bf497402fdc45a215e10dcb01c354959b10cfe31c7e9d87ff33d", + "80fc06bd8cc5b01098088a1950eed0db01aa132967ab472235f5642483b25eaf" + ], + [ + "80c60ad0040f27dade5b4b06c408e56b2c50e9f56b9b8b425e555c2f86308b6f", + "1c38303f1cc5c30f26e66bad7fe72f70a65eed4cbe7024eb1aa01f56430bd57a" + ], + [ + "7a9375ad6167ad54aa74c6348cc54d344cc5dc9487d847049d5eabb0fa03c8fb", + "d0e3fa9eca8726909559e0d79269046bdc59ea10c70ce2b02d499ec224dc7f7" + ], + [ + "d528ecd9b696b54c907a9ed045447a79bb408ec39b68df504bb51f459bc3ffc9", + "eecf41253136e5f99966f21881fd656ebc4345405c520dbc063465b521409933" + ], + [ + "49370a4b5f43412ea25f514e8ecdad05266115e4a7ecb1387231808f8b45963", + "758f3f41afd6ed428b3081b0512fd62a54c3f3afbb5b6764b653052a12949c9a" + ], + [ + "77f230936ee88cbbd73df930d64702ef881d811e0e1498e2f1c13eb1fc345d74", + "958ef42a7886b6400a08266e9ba1b37896c95330d97077cbbe8eb3c7671c60d6" + ], + [ + "f2dac991cc4ce4b9ea44887e5c7c0bce58c80074ab9d4dbaeb28531b7739f530", + "e0dedc9b3b2f8dad4da1f32dec2531df9eb5fbeb0598e4fd1a117dba703a3c37" + ], + [ + "463b3d9f662621fb1b4be8fbbe2520125a216cdfc9dae3debcba4850c690d45b", + "5ed430d78c296c3543114306dd8622d7c622e27c970a1de31cb377b01af7307e" + ], + [ + "f16f804244e46e2a09232d4aff3b59976b98fac14328a2d1a32496b49998f247", + "cedabd9b82203f7e13d206fcdf4e33d92a6c53c26e5cce26d6579962c4e31df6" + ], + [ + "caf754272dc84563b0352b7a14311af55d245315ace27c65369e15f7151d41d1", + "cb474660ef35f5f2a41b643fa5e460575f4fa9b7962232a5c32f908318a04476" + ], + [ + "2600ca4b282cb986f85d0f1709979d8b44a09c07cb86d7c124497bc86f082120", + "4119b88753c15bd6a693b03fcddbb45d5ac6be74ab5f0ef44b0be9475a7e4b40" + ], + [ + "7635ca72d7e8432c338ec53cd12220bc01c48685e24f7dc8c602a7746998e435", + "91b649609489d613d1d5e590f78e6d74ecfc061d57048bad9e76f302c5b9c61" + ], + [ + "754e3239f325570cdbbf4a87deee8a66b7f2b33479d468fbc1a50743bf56cc18", + "673fb86e5bda30fb3cd0ed304ea49a023ee33d0197a695d0c5d98093c536683" + ], + [ + "e3e6bd1071a1e96aff57859c82d570f0330800661d1c952f9fe2694691d9b9e8", + "59c9e0bba394e76f40c0aa58379a3cb6a5a2283993e90c4167002af4920e37f5" + ], + [ + "186b483d056a033826ae73d88f732985c4ccb1f32ba35f4b4cc47fdcf04aa6eb", + "3b952d32c67cf77e2e17446e204180ab21fb8090895138b4a4a797f86e80888b" + ], + [ + "df9d70a6b9876ce544c98561f4be4f725442e6d2b737d9c91a8321724ce0963f", + "55eb2dafd84d6ccd5f862b785dc39d4ab157222720ef9da217b8c45cf2ba2417" + ], + [ + "5edd5cc23c51e87a497ca815d5dce0f8ab52554f849ed8995de64c5f34ce7143", + "efae9c8dbc14130661e8cec030c89ad0c13c66c0d17a2905cdc706ab7399a868" + ], + [ + "290798c2b6476830da12fe02287e9e777aa3fba1c355b17a722d362f84614fba", + "e38da76dcd440621988d00bcf79af25d5b29c094db2a23146d003afd41943e7a" + ], + [ + "af3c423a95d9f5b3054754efa150ac39cd29552fe360257362dfdecef4053b45", + "f98a3fd831eb2b749a93b0e6f35cfb40c8cd5aa667a15581bc2feded498fd9c6" + ], + [ + "766dbb24d134e745cccaa28c99bf274906bb66b26dcf98df8d2fed50d884249a", + "744b1152eacbe5e38dcc887980da38b897584a65fa06cedd2c924f97cbac5996" + ], + [ + "59dbf46f8c94759ba21277c33784f41645f7b44f6c596a58ce92e666191abe3e", + "c534ad44175fbc300f4ea6ce648309a042ce739a7919798cd85e216c4a307f6e" + ], + [ + "f13ada95103c4537305e691e74e9a4a8dd647e711a95e73cb62dc6018cfd87b8", + "e13817b44ee14de663bf4bc808341f326949e21a6a75c2570778419bdaf5733d" + ], + [ + "7754b4fa0e8aced06d4167a2c59cca4cda1869c06ebadfb6488550015a88522c", + "30e93e864e669d82224b967c3020b8fa8d1e4e350b6cbcc537a48b57841163a2" + ], + [ + "948dcadf5990e048aa3874d46abef9d701858f95de8041d2a6828c99e2262519", + "e491a42537f6e597d5d28a3224b1bc25df9154efbd2ef1d2cbba2cae5347d57e" + ], + [ + "7962414450c76c1689c7b48f8202ec37fb224cf5ac0bfa1570328a8a3d7c77ab", + "100b610ec4ffb4760d5c1fc133ef6f6b12507a051f04ac5760afa5b29db83437" + ], + [ + "3514087834964b54b15b160644d915485a16977225b8847bb0dd085137ec47ca", + "ef0afbb2056205448e1652c48e8127fc6039e77c15c2378b7e7d15a0de293311" + ], + [ + "d3cc30ad6b483e4bc79ce2c9dd8bc54993e947eb8df787b442943d3f7b527eaf", + "8b378a22d827278d89c5e9be8f9508ae3c2ad46290358630afb34db04eede0a4" + ], + [ + "1624d84780732860ce1c78fcbfefe08b2b29823db913f6493975ba0ff4847610", + "68651cf9b6da903e0914448c6cd9d4ca896878f5282be4c8cc06e2a404078575" + ], + [ + "733ce80da955a8a26902c95633e62a985192474b5af207da6df7b4fd5fc61cd4", + "f5435a2bd2badf7d485a4d8b8db9fcce3e1ef8e0201e4578c54673bc1dc5ea1d" + ], + [ + "15d9441254945064cf1a1c33bbd3b49f8966c5092171e699ef258dfab81c045c", + "d56eb30b69463e7234f5137b73b84177434800bacebfc685fc37bbe9efe4070d" + ], + [ + "a1d0fcf2ec9de675b612136e5ce70d271c21417c9d2b8aaaac138599d0717940", + "edd77f50bcb5a3cab2e90737309667f2641462a54070f3d519212d39c197a629" + ], + [ + "e22fbe15c0af8ccc5780c0735f84dbe9a790badee8245c06c7ca37331cb36980", + "a855babad5cd60c88b430a69f53a1a7a38289154964799be43d06d77d31da06" + ], + [ + "311091dd9860e8e20ee13473c1155f5f69635e394704eaa74009452246cfa9b3", + "66db656f87d1f04fffd1f04788c06830871ec5a64feee685bd80f0b1286d8374" + ], + [ + "34c1fd04d301be89b31c0442d3e6ac24883928b45a9340781867d4232ec2dbdf", + "9414685e97b1b5954bd46f730174136d57f1ceeb487443dc5321857ba73abee" + ], + [ + "f219ea5d6b54701c1c14de5b557eb42a8d13f3abbcd08affcc2a5e6b049b8d63", + "4cb95957e83d40b0f73af4544cccf6b1f4b08d3c07b27fb8d8c2962a400766d1" + ], + [ + "d7b8740f74a8fbaab1f683db8f45de26543a5490bca627087236912469a0b448", + "fa77968128d9c92ee1010f337ad4717eff15db5ed3c049b3411e0315eaa4593b" + ], + [ + "32d31c222f8f6f0ef86f7c98d3a3335ead5bcd32abdd94289fe4d3091aa824bf", + "5f3032f5892156e39ccd3d7915b9e1da2e6dac9e6f26e961118d14b8462e1661" + ], + [ + "7461f371914ab32671045a155d9831ea8793d77cd59592c4340f86cbc18347b5", + "8ec0ba238b96bec0cbdddcae0aa442542eee1ff50c986ea6b39847b3cc092ff6" + ], + [ + "ee079adb1df1860074356a25aa38206a6d716b2c3e67453d287698bad7b2b2d6", + "8dc2412aafe3be5c4c5f37e0ecc5f9f6a446989af04c4e25ebaac479ec1c8c1e" + ], + [ + "16ec93e447ec83f0467b18302ee620f7e65de331874c9dc72bfd8616ba9da6b5", + "5e4631150e62fb40d0e8c2a7ca5804a39d58186a50e497139626778e25b0674d" + ], + [ + "eaa5f980c245f6f038978290afa70b6bd8855897f98b6aa485b96065d537bd99", + "f65f5d3e292c2e0819a528391c994624d784869d7e6ea67fb18041024edc07dc" + ], + [ + "78c9407544ac132692ee1910a02439958ae04877151342ea96c4b6b35a49f51", + "f3e0319169eb9b85d5404795539a5e68fa1fbd583c064d2462b675f194a3ddb4" + ], + [ + "494f4be219a1a77016dcd838431aea0001cdc8ae7a6fc688726578d9702857a5", + "42242a969283a5f339ba7f075e36ba2af925ce30d767ed6e55f4b031880d562c" + ], + [ + "a598a8030da6d86c6bc7f2f5144ea549d28211ea58faa70ebf4c1e665c1fe9b5", + "204b5d6f84822c307e4b4a7140737aec23fc63b65b35f86a10026dbd2d864e6b" + ], + [ + "c41916365abb2b5d09192f5f2dbeafec208f020f12570a184dbadc3e58595997", + "4f14351d0087efa49d245b328984989d5caf9450f34bfc0ed16e96b58fa9913" + ], + [ + "841d6063a586fa475a724604da03bc5b92a2e0d2e0a36acfe4c73a5514742881", + "73867f59c0659e81904f9a1c7543698e62562d6744c169ce7a36de01a8d6154" + ], + [ + "5e95bb399a6971d376026947f89bde2f282b33810928be4ded112ac4d70e20d5", + "39f23f366809085beebfc71181313775a99c9aed7d8ba38b161384c746012865" + ], + [ + "36e4641a53948fd476c39f8a99fd974e5ec07564b5315d8bf99471bca0ef2f66", + "d2424b1b1abe4eb8164227b085c9aa9456ea13493fd563e06fd51cf5694c78fc" + ], + [ + "336581ea7bfbbb290c191a2f507a41cf5643842170e914faeab27c2c579f726", + "ead12168595fe1be99252129b6e56b3391f7ab1410cd1e0ef3dcdcabd2fda224" + ], + [ + "8ab89816dadfd6b6a1f2634fcf00ec8403781025ed6890c4849742706bd43ede", + "6fdcef09f2f6d0a044e654aef624136f503d459c3e89845858a47a9129cdd24e" + ], + [ + "1e33f1a746c9c5778133344d9299fcaa20b0938e8acff2544bb40284b8c5fb94", + "60660257dd11b3aa9c8ed618d24edff2306d320f1d03010e33a7d2057f3b3b6" + ], + [ + "85b7c1dcb3cec1b7ee7f30ded79dd20a0ed1f4cc18cbcfcfa410361fd8f08f31", + "3d98a9cdd026dd43f39048f25a8847f4fcafad1895d7a633c6fed3c35e999511" + ], + [ + "29df9fbd8d9e46509275f4b125d6d45d7fbe9a3b878a7af872a2800661ac5f51", + "b4c4fe99c775a606e2d8862179139ffda61dc861c019e55cd2876eb2a27d84b" + ], + [ + "a0b1cae06b0a847a3fea6e671aaf8adfdfe58ca2f768105c8082b2e449fce252", + "ae434102edde0958ec4b19d917a6a28e6b72da1834aff0e650f049503a296cf2" + ], + [ + "4e8ceafb9b3e9a136dc7ff67e840295b499dfb3b2133e4ba113f2e4c0e121e5", + "cf2174118c8b6d7a4b48f6d534ce5c79422c086a63460502b827ce62a326683c" + ], + [ + "d24a44e047e19b6f5afb81c7ca2f69080a5076689a010919f42725c2b789a33b", + "6fb8d5591b466f8fc63db50f1c0f1c69013f996887b8244d2cdec417afea8fa3" + ], + [ + "ea01606a7a6c9cdd249fdfcfacb99584001edd28abbab77b5104e98e8e3b35d4", + "322af4908c7312b0cfbfe369f7a7b3cdb7d4494bc2823700cfd652188a3ea98d" + ], + [ + "af8addbf2b661c8a6c6328655eb96651252007d8c5ea31be4ad196de8ce2131f", + "6749e67c029b85f52a034eafd096836b2520818680e26ac8f3dfbcdb71749700" + ], + [ + "e3ae1974566ca06cc516d47e0fb165a674a3dabcfca15e722f0e3450f45889", + "2aeabe7e4531510116217f07bf4d07300de97e4874f81f533420a72eeb0bd6a4" + ], + [ + "591ee355313d99721cf6993ffed1e3e301993ff3ed258802075ea8ced397e246", + "b0ea558a113c30bea60fc4775460c7901ff0b053d25ca2bdeee98f1a4be5d196" + ], + [ + "11396d55fda54c49f19aa97318d8da61fa8584e47b084945077cf03255b52984", + "998c74a8cd45ac01289d5833a7beb4744ff536b01b257be4c5767bea93ea57a4" + ], + [ + "3c5d2a1ba39c5a1790000738c9e0c40b8dcdfd5468754b6405540157e017aa7a", + "b2284279995a34e2f9d4de7396fc18b80f9b8b9fdd270f6661f79ca4c81bd257" + ], + [ + "cc8704b8a60a0defa3a99a7299f2e9c3fbc395afb04ac078425ef8a1793cc030", + "bdd46039feed17881d1e0862db347f8cf395b74fc4bcdc4e940b74e3ac1f1b13" + ], + [ + "c533e4f7ea8555aacd9777ac5cad29b97dd4defccc53ee7ea204119b2889b197", + "6f0a256bc5efdf429a2fb6242f1a43a2d9b925bb4a4b3a26bb8e0f45eb596096" + ], + [ + "c14f8f2ccb27d6f109f6d08d03cc96a69ba8c34eec07bbcf566d48e33da6593", + "c359d6923bb398f7fd4473e16fe1c28475b740dd098075e6c0e8649113dc3a38" + ], + [ + "a6cbc3046bc6a450bac24789fa17115a4c9739ed75f8f21ce441f72e0b90e6ef", + "21ae7f4680e889bb130619e2c0f95a360ceb573c70603139862afd617fa9b9f" + ], + [ + "347d6d9a02c48927ebfb86c1359b1caf130a3c0267d11ce6344b39f99d43cc38", + "60ea7f61a353524d1c987f6ecec92f086d565ab687870cb12689ff1e31c74448" + ], + [ + "da6545d2181db8d983f7dcb375ef5866d47c67b1bf31c8cf855ef7437b72656a", + "49b96715ab6878a79e78f07ce5680c5d6673051b4935bd897fea824b77dc208a" + ], + [ + "c40747cc9d012cb1a13b8148309c6de7ec25d6945d657146b9d5994b8feb1111", + "5ca560753be2a12fc6de6caf2cb489565db936156b9514e1bb5e83037e0fa2d4" + ], + [ + "4e42c8ec82c99798ccf3a610be870e78338c7f713348bd34c8203ef4037f3502", + "7571d74ee5e0fb92a7a8b33a07783341a5492144cc54bcc40a94473693606437" + ], + [ + "3775ab7089bc6af823aba2e1af70b236d251cadb0c86743287522a1b3b0dedea", + "be52d107bcfa09d8bcb9736a828cfa7fac8db17bf7a76a2c42ad961409018cf7" + ], + [ + "cee31cbf7e34ec379d94fb814d3d775ad954595d1314ba8846959e3e82f74e26", + "8fd64a14c06b589c26b947ae2bcf6bfa0149ef0be14ed4d80f448a01c43b1c6d" + ], + [ + "b4f9eaea09b6917619f6ea6a4eb5464efddb58fd45b1ebefcdc1a01d08b47986", + "39e5c9925b5a54b07433a4f18c61726f8bb131c012ca542eb24a8ac07200682a" + ], + [ + "d4263dfc3d2df923a0179a48966d30ce84e2515afc3dccc1b77907792ebcc60e", + "62dfaf07a0f78feb30e30d6295853ce189e127760ad6cf7fae164e122a208d54" + ], + [ + "48457524820fa65a4f8d35eb6930857c0032acc0a4a2de422233eeda897612c4", + "25a748ab367979d98733c38a1fa1c2e7dc6cc07db2d60a9ae7a76aaa49bd0f77" + ], + [ + "dfeeef1881101f2cb11644f3a2afdfc2045e19919152923f367a1767c11cceda", + "ecfb7056cf1de042f9420bab396793c0c390bde74b4bbdff16a83ae09a9a7517" + ], + [ + "6d7ef6b17543f8373c573f44e1f389835d89bcbc6062ced36c82df83b8fae859", + "cd450ec335438986dfefa10c57fea9bcc521a0959b2d80bbf74b190dca712d10" + ], + [ + "e75605d59102a5a2684500d3b991f2e3f3c88b93225547035af25af66e04541f", + "f5c54754a8f71ee540b9b48728473e314f729ac5308b06938360990e2bfad125" + ], + [ + "eb98660f4c4dfaa06a2be453d5020bc99a0c2e60abe388457dd43fefb1ed620c", + "6cb9a8876d9cb8520609af3add26cd20a0a7cd8a9411131ce85f44100099223e" + ], + [ + "13e87b027d8514d35939f2e6892b19922154596941888336dc3563e3b8dba942", + "fef5a3c68059a6dec5d624114bf1e91aac2b9da568d6abeb2570d55646b8adf1" + ], + [ + "ee163026e9fd6fe017c38f06a5be6fc125424b371ce2708e7bf4491691e5764a", + "1acb250f255dd61c43d94ccc670d0f58f49ae3fa15b96623e5430da0ad6c62b2" + ], + [ + "b268f5ef9ad51e4d78de3a750c2dc89b1e626d43505867999932e5db33af3d80", + "5f310d4b3c99b9ebb19f77d41c1dee018cf0d34fd4191614003e945a1216e423" + ], + [ + "ff07f3118a9df035e9fad85eb6c7bfe42b02f01ca99ceea3bf7ffdba93c4750d", + "438136d603e858a3a5c440c38eccbaddc1d2942114e2eddd4740d098ced1f0d8" + ], + [ + "8d8b9855c7c052a34146fd20ffb658bea4b9f69e0d825ebec16e8c3ce2b526a1", + "cdb559eedc2d79f926baf44fb84ea4d44bcf50fee51d7ceb30e2e7f463036758" + ], + [ + "52db0b5384dfbf05bfa9d472d7ae26dfe4b851ceca91b1eba54263180da32b63", + "c3b997d050ee5d423ebaf66a6db9f57b3180c902875679de924b69d84a7b375" + ], + [ + "e62f9490d3d51da6395efd24e80919cc7d0f29c3f3fa48c6fff543becbd43352", + "6d89ad7ba4876b0b22c2ca280c682862f342c8591f1daf5170e07bfd9ccafa7d" + ], + [ + "7f30ea2476b399b4957509c88f77d0191afa2ff5cb7b14fd6d8e7d65aaab1193", + "ca5ef7d4b231c94c3b15389a5f6311e9daff7bb67b103e9880ef4bff637acaec" + ], + [ + "5098ff1e1d9f14fb46a210fada6c903fef0fb7b4a1dd1d9ac60a0361800b7a00", + "9731141d81fc8f8084d37c6e7542006b3ee1b40d60dfe5362a5b132fd17ddc0" + ], + [ + "32b78c7de9ee512a72895be6b9cbefa6e2f3c4ccce445c96b9f2c81e2778ad58", + "ee1849f513df71e32efc3896ee28260c73bb80547ae2275ba497237794c8753c" + ], + [ + "e2cb74fddc8e9fbcd076eef2a7c72b0ce37d50f08269dfc074b581550547a4f7", + "d3aa2ed71c9dd2247a62df062736eb0baddea9e36122d2be8641abcb005cc4a4" + ], + [ + "8438447566d4d7bedadc299496ab357426009a35f235cb141be0d99cd10ae3a8", + "c4e1020916980a4da5d01ac5e6ad330734ef0d7906631c4f2390426b2edd791f" + ], + [ + "4162d488b89402039b584c6fc6c308870587d9c46f660b878ab65c82c711d67e", + "67163e903236289f776f22c25fb8a3afc1732f2b84b4e95dbda47ae5a0852649" + ], + [ + "3fad3fa84caf0f34f0f89bfd2dcf54fc175d767aec3e50684f3ba4a4bf5f683d", + "cd1bc7cb6cc407bb2f0ca647c718a730cf71872e7d0d2a53fa20efcdfe61826" + ], + [ + "674f2600a3007a00568c1a7ce05d0816c1fb84bf1370798f1c69532faeb1a86b", + "299d21f9413f33b3edf43b257004580b70db57da0b182259e09eecc69e0d38a5" + ], + [ + "d32f4da54ade74abb81b815ad1fb3b263d82d6c692714bcff87d29bd5ee9f08f", + "f9429e738b8e53b968e99016c059707782e14f4535359d582fc416910b3eea87" + ], + [ + "30e4e670435385556e593657135845d36fbb6931f72b08cb1ed954f1e3ce3ff6", + "462f9bce619898638499350113bbc9b10a878d35da70740dc695a559eb88db7b" + ], + [ + "be2062003c51cc3004682904330e4dee7f3dcd10b01e580bf1971b04d4cad297", + "62188bc49d61e5428573d48a74e1c655b1c61090905682a0d5558ed72dccb9bc" + ], + [ + "93144423ace3451ed29e0fb9ac2af211cb6e84a601df5993c419859fff5df04a", + "7c10dfb164c3425f5c71a3f9d7992038f1065224f72bb9d1d902a6d13037b47c" + ], + [ + "b015f8044f5fcbdcf21ca26d6c34fb8197829205c7b7d2a7cb66418c157b112c", + "ab8c1e086d04e813744a655b2df8d5f83b3cdc6faa3088c1d3aea1454e3a1d5f" + ], + [ + "d5e9e1da649d97d89e4868117a465a3a4f8a18de57a140d36b3f2af341a21b52", + "4cb04437f391ed73111a13cc1d4dd0db1693465c2240480d8955e8592f27447a" + ], + [ + "d3ae41047dd7ca065dbf8ed77b992439983005cd72e16d6f996a5316d36966bb", + "bd1aeb21ad22ebb22a10f0303417c6d964f8cdd7df0aca614b10dc14d125ac46" + ], + [ + "463e2763d885f958fc66cdd22800f0a487197d0a82e377b49f80af87c897b065", + "bfefacdb0e5d0fd7df3a311a94de062b26b80c61fbc97508b79992671ef7ca7f" + ], + [ + "7985fdfd127c0567c6f53ec1bb63ec3158e597c40bfe747c83cddfc910641917", + "603c12daf3d9862ef2b25fe1de289aed24ed291e0ec6708703a5bd567f32ed03" + ], + [ + "74a1ad6b5f76e39db2dd249410eac7f99e74c59cb83d2d0ed5ff1543da7703e9", + "cc6157ef18c9c63cd6193d83631bbea0093e0968942e8c33d5737fd790e0db08" + ], + [ + "30682a50703375f602d416664ba19b7fc9bab42c72747463a71d0896b22f6da3", + "553e04f6b018b4fa6c8f39e7f311d3176290d0e0f19ca73f17714d9977a22ff8" + ], + [ + "9e2158f0d7c0d5f26c3791efefa79597654e7a2b2464f52b1ee6c1347769ef57", + "712fcdd1b9053f09003a3481fa7762e9ffd7c8ef35a38509e2fbf2629008373" + ], + [ + "176e26989a43c9cfeba4029c202538c28172e566e3c4fce7322857f3be327d66", + "ed8cc9d04b29eb877d270b4878dc43c19aefd31f4eee09ee7b47834c1fa4b1c3" + ], + [ + "75d46efea3771e6e68abb89a13ad747ecf1892393dfc4f1b7004788c50374da8", + "9852390a99507679fd0b86fd2b39a868d7efc22151346e1a3ca4726586a6bed8" + ], + [ + "809a20c67d64900ffb698c4c825f6d5f2310fb0451c869345b7319f645605721", + "9e994980d9917e22b76b061927fa04143d096ccc54963e6a5ebfa5f3f8e286c1" + ], + [ + "1b38903a43f7f114ed4500b4eac7083fdefece1cf29c63528d563446f972c180", + "4036edc931a60ae889353f77fd53de4a2708b26b6f5da72ad3394119daf408f9" + ] + ] + } + } + }, + {} + ], + 81: [ + function(require, module, exports) { + "use strict" + + var utils = exports + var BN = require("bn.js") + var minAssert = require("minimalistic-assert") + var minUtils = require("minimalistic-crypto-utils") + + utils.assert = minAssert + utils.toArray = minUtils.toArray + utils.zero2 = minUtils.zero2 + utils.toHex = minUtils.toHex + utils.encode = minUtils.encode + + // Represent num in a w-NAF form + function getNAF(num, w) { + var naf = [] + var ws = 1 << (w + 1) + var k = num.clone() + while (k.cmpn(1) >= 0) { + var z + if (k.isOdd()) { + var mod = k.andln(ws - 1) + if (mod > (ws >> 1) - 1) z = (ws >> 1) - mod + else z = mod + k.isubn(z) + } else { + z = 0 + } + naf.push(z) + + // Optimization, shift by word if possible + var shift = k.cmpn(0) !== 0 && k.andln(ws - 1) === 0 ? w + 1 : 1 + for (var i = 1; i < shift; i++) naf.push(0) + k.iushrn(shift) + } + + return naf + } + utils.getNAF = getNAF + + // Represent k1, k2 in a Joint Sparse Form + function getJSF(k1, k2) { + var jsf = [[], []] + + k1 = k1.clone() + k2 = k2.clone() + var d1 = 0 + var d2 = 0 + while (k1.cmpn(-d1) > 0 || k2.cmpn(-d2) > 0) { + // First phase + var m14 = (k1.andln(3) + d1) & 3 + var m24 = (k2.andln(3) + d2) & 3 + if (m14 === 3) m14 = -1 + if (m24 === 3) m24 = -1 + var u1 + if ((m14 & 1) === 0) { + u1 = 0 + } else { + var m8 = (k1.andln(7) + d1) & 7 + if ((m8 === 3 || m8 === 5) && m24 === 2) u1 = -m14 + else u1 = m14 + } + jsf[0].push(u1) + + var u2 + if ((m24 & 1) === 0) { + u2 = 0 + } else { + var m8 = (k2.andln(7) + d2) & 7 + if ((m8 === 3 || m8 === 5) && m14 === 2) u2 = -m24 + else u2 = m24 + } + jsf[1].push(u2) + + // Second phase + if (2 * d1 === u1 + 1) d1 = 1 - d1 + if (2 * d2 === u2 + 1) d2 = 1 - d2 + k1.iushrn(1) + k2.iushrn(1) + } + + return jsf + } + utils.getJSF = getJSF + + function cachedProperty(obj, name, computer) { + var key = "_" + name + obj.prototype[name] = function cachedProperty() { + return this[key] !== undefined + ? this[key] + : (this[key] = computer.call(this)) + } + } + utils.cachedProperty = cachedProperty + + function parseBytes(bytes) { + return typeof bytes === "string" + ? utils.toArray(bytes, "hex") + : bytes + } + utils.parseBytes = parseBytes + + function intFromLE(bytes) { + return new BN(bytes, "hex", "le") + } + utils.intFromLE = intFromLE + }, + { + "bn.js": 17, + "minimalistic-assert": 105, + "minimalistic-crypto-utils": 106 + } + ], + 82: [ + function(require, module, exports) { + module.exports = { + _from: "elliptic@^6.0.0", + _id: "elliptic@6.4.1", + _inBundle: false, + _integrity: + "sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==", + _location: "/browserify/elliptic", + _phantomChildren: {}, + _requested: { + type: "range", + registry: true, + raw: "elliptic@^6.0.0", + name: "elliptic", + escapedName: "elliptic", + rawSpec: "^6.0.0", + saveSpec: null, + fetchSpec: "^6.0.0" + }, + _requiredBy: [ + "/browserify/browserify-sign", + "/browserify/create-ecdh" + ], + _resolved: + "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz", + _shasum: "c2d0b7776911b86722c632c3c06c60f2f819939a", + _spec: "elliptic@^6.0.0", + _where: + "/Users/fabo/.nvm/versions/node/v10.13.0/lib/node_modules/browserify/node_modules/browserify-sign", + author: { + name: "Fedor Indutny", + email: "fedor@indutny.com" + }, + bugs: { + url: "https://github.com/indutny/elliptic/issues" + }, + bundleDependencies: false, + dependencies: { + "bn.js": "^4.4.0", + brorand: "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + inherits: "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + }, + deprecated: false, + description: "EC cryptography", + devDependencies: { + brfs: "^1.4.3", + coveralls: "^2.11.3", + grunt: "^0.4.5", + "grunt-browserify": "^5.0.0", + "grunt-cli": "^1.2.0", + "grunt-contrib-connect": "^1.0.0", + "grunt-contrib-copy": "^1.0.0", + "grunt-contrib-uglify": "^1.0.1", + "grunt-mocha-istanbul": "^3.0.1", + "grunt-saucelabs": "^8.6.2", + istanbul: "^0.4.2", + jscs: "^2.9.0", + jshint: "^2.6.0", + mocha: "^2.1.0" + }, + files: ["lib"], + homepage: "https://github.com/indutny/elliptic", + keywords: ["EC", "Elliptic", "curve", "Cryptography"], + license: "MIT", + main: "lib/elliptic.js", + name: "elliptic", + repository: { + type: "git", + url: "git+ssh://git@github.com/indutny/elliptic.git" + }, + scripts: { + jscs: + "jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js", + jshint: + "jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js", + lint: "npm run jscs && npm run jshint", + test: "npm run lint && npm run unit", + unit: "istanbul test _mocha --reporter=spec test/index.js", + version: "grunt dist && git add dist/" + }, + version: "6.4.1" + } + }, + {} + ], + 83: [ + function(require, module, exports) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + var objectCreate = Object.create || objectCreatePolyfill + var objectKeys = Object.keys || objectKeysPolyfill + var bind = Function.prototype.bind || functionBindPolyfill + + function EventEmitter() { + if ( + !this._events || + !Object.prototype.hasOwnProperty.call(this, "_events") + ) { + this._events = objectCreate(null) + this._eventsCount = 0 + } + + this._maxListeners = this._maxListeners || undefined + } + module.exports = EventEmitter + + // Backwards-compat with node 0.10.x + EventEmitter.EventEmitter = EventEmitter + + EventEmitter.prototype._events = undefined + EventEmitter.prototype._maxListeners = undefined + + // By default EventEmitters will print a warning if more than 10 listeners are + // added to it. This is a useful default which helps finding memory leaks. + var defaultMaxListeners = 10 + + var hasDefineProperty + try { + var o = {} + if (Object.defineProperty) + Object.defineProperty(o, "x", { value: 0 }) + hasDefineProperty = o.x === 0 + } catch (err) { + hasDefineProperty = false + } + if (hasDefineProperty) { + Object.defineProperty(EventEmitter, "defaultMaxListeners", { + enumerable: true, + get: function() { + return defaultMaxListeners + }, + set: function(arg) { + // check whether the input is a positive number (whose value is zero or + // greater and not a NaN). + if (typeof arg !== "number" || arg < 0 || arg !== arg) + throw new TypeError( + '"defaultMaxListeners" must be a positive number' + ) + defaultMaxListeners = arg + } + }) + } else { + EventEmitter.defaultMaxListeners = defaultMaxListeners + } + + // Obviously not all Emitters should be limited to 10. This function allows + // that to be increased. Set to zero for unlimited. + EventEmitter.prototype.setMaxListeners = function setMaxListeners(n) { + if (typeof n !== "number" || n < 0 || isNaN(n)) + throw new TypeError('"n" argument must be a positive number') + this._maxListeners = n + return this + } + + function $getMaxListeners(that) { + if (that._maxListeners === undefined) + return EventEmitter.defaultMaxListeners + return that._maxListeners + } + + EventEmitter.prototype.getMaxListeners = function getMaxListeners() { + return $getMaxListeners(this) + } + + // These standalone emit* functions are used to optimize calling of event + // handlers for fast cases because emit() itself often has a variable number of + // arguments and can be deoptimized because of that. These functions always have + // the same number of arguments and thus do not get deoptimized, so the code + // inside them can execute faster. + function emitNone(handler, isFn, self) { + if (isFn) handler.call(self) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].call(self) + } + } + function emitOne(handler, isFn, self, arg1) { + if (isFn) handler.call(self, arg1) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].call(self, arg1) + } + } + function emitTwo(handler, isFn, self, arg1, arg2) { + if (isFn) handler.call(self, arg1, arg2) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].call(self, arg1, arg2) + } + } + function emitThree(handler, isFn, self, arg1, arg2, arg3) { + if (isFn) handler.call(self, arg1, arg2, arg3) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) + listeners[i].call(self, arg1, arg2, arg3) + } + } + + function emitMany(handler, isFn, self, args) { + if (isFn) handler.apply(self, args) + else { + var len = handler.length + var listeners = arrayClone(handler, len) + for (var i = 0; i < len; ++i) listeners[i].apply(self, args) + } + } + + EventEmitter.prototype.emit = function emit(type) { + var er, handler, len, args, i, events + var doError = type === "error" + + events = this._events + if (events) doError = doError && events.error == null + else if (!doError) return false + + // If there is no 'error' event listener then throw. + if (doError) { + if (arguments.length > 1) er = arguments[1] + if (er instanceof Error) { + throw er // Unhandled 'error' event + } else { + // At least give some kind of context to the user + var err = new Error('Unhandled "error" event. (' + er + ")") + err.context = er + throw err + } + return false + } + + handler = events[type] + + if (!handler) return false + + var isFn = typeof handler === "function" + len = arguments.length + switch (len) { + // fast cases + case 1: + emitNone(handler, isFn, this) + break + case 2: + emitOne(handler, isFn, this, arguments[1]) + break + case 3: + emitTwo(handler, isFn, this, arguments[1], arguments[2]) + break + case 4: + emitThree( + handler, + isFn, + this, + arguments[1], + arguments[2], + arguments[3] + ) + break + // slower + default: + args = new Array(len - 1) + for (i = 1; i < len; i++) args[i - 1] = arguments[i] + emitMany(handler, isFn, this, args) + } + + return true + } + + function _addListener(target, type, listener, prepend) { + var m + var events + var existing + + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + + events = target._events + if (!events) { + events = target._events = objectCreate(null) + target._eventsCount = 0 + } else { + // To avoid recursion in the case that type === "newListener"! Before + // adding it to the listeners, first emit "newListener". + if (events.newListener) { + target.emit( + "newListener", + type, + listener.listener ? listener.listener : listener + ) + + // Re-assign `events` because a newListener handler could have caused the + // this._events to be assigned to a new object + events = target._events + } + existing = events[type] + } + + if (!existing) { + // Optimize the case of one listener. Don't need the extra array object. + existing = events[type] = listener + ++target._eventsCount + } else { + if (typeof existing === "function") { + // Adding the second element, need to change to array. + existing = events[type] = prepend + ? [listener, existing] + : [existing, listener] + } else { + // If we've already got an array, just append. + if (prepend) { + existing.unshift(listener) + } else { + existing.push(listener) + } + } + + // Check for listener leak + if (!existing.warned) { + m = $getMaxListeners(target) + if (m && m > 0 && existing.length > m) { + existing.warned = true + var w = new Error( + "Possible EventEmitter memory leak detected. " + + existing.length + + ' "' + + String(type) + + '" listeners ' + + "added. Use emitter.setMaxListeners() to " + + "increase limit." + ) + w.name = "MaxListenersExceededWarning" + w.emitter = target + w.type = type + w.count = existing.length + if (typeof console === "object" && console.warn) { + console.warn("%s: %s", w.name, w.message) + } + } + } + } + + return target + } + + EventEmitter.prototype.addListener = function addListener( + type, + listener + ) { + return _addListener(this, type, listener, false) + } + + EventEmitter.prototype.on = EventEmitter.prototype.addListener + + EventEmitter.prototype.prependListener = function prependListener( + type, + listener + ) { + return _addListener(this, type, listener, true) + } + + function onceWrapper() { + if (!this.fired) { + this.target.removeListener(this.type, this.wrapFn) + this.fired = true + switch (arguments.length) { + case 0: + return this.listener.call(this.target) + case 1: + return this.listener.call(this.target, arguments[0]) + case 2: + return this.listener.call( + this.target, + arguments[0], + arguments[1] + ) + case 3: + return this.listener.call( + this.target, + arguments[0], + arguments[1], + arguments[2] + ) + default: + var args = new Array(arguments.length) + for (var i = 0; i < args.length; ++i) args[i] = arguments[i] + this.listener.apply(this.target, args) + } + } + } + + function _onceWrap(target, type, listener) { + var state = { + fired: false, + wrapFn: undefined, + target: target, + type: type, + listener: listener + } + var wrapped = bind.call(onceWrapper, state) + wrapped.listener = listener + state.wrapFn = wrapped + return wrapped + } + + EventEmitter.prototype.once = function once(type, listener) { + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + this.on(type, _onceWrap(this, type, listener)) + return this + } + + EventEmitter.prototype.prependOnceListener = function prependOnceListener( + type, + listener + ) { + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + this.prependListener(type, _onceWrap(this, type, listener)) + return this + } + + // Emits a 'removeListener' event if and only if the listener was removed. + EventEmitter.prototype.removeListener = function removeListener( + type, + listener + ) { + var list, events, position, i, originalListener + + if (typeof listener !== "function") + throw new TypeError('"listener" argument must be a function') + + events = this._events + if (!events) return this + + list = events[type] + if (!list) return this + + if (list === listener || list.listener === listener) { + if (--this._eventsCount === 0) this._events = objectCreate(null) + else { + delete events[type] + if (events.removeListener) + this.emit("removeListener", type, list.listener || listener) + } + } else if (typeof list !== "function") { + position = -1 + + for (i = list.length - 1; i >= 0; i--) { + if (list[i] === listener || list[i].listener === listener) { + originalListener = list[i].listener + position = i + break + } + } + + if (position < 0) return this + + if (position === 0) list.shift() + else spliceOne(list, position) + + if (list.length === 1) events[type] = list[0] + + if (events.removeListener) + this.emit("removeListener", type, originalListener || listener) + } + + return this + } + + EventEmitter.prototype.removeAllListeners = function removeAllListeners( + type + ) { + var listeners, events, i + + events = this._events + if (!events) return this + + // not listening for removeListener, no need to emit + if (!events.removeListener) { + if (arguments.length === 0) { + this._events = objectCreate(null) + this._eventsCount = 0 + } else if (events[type]) { + if (--this._eventsCount === 0) this._events = objectCreate(null) + else delete events[type] + } + return this + } + + // emit removeListener for all listeners on all events + if (arguments.length === 0) { + var keys = objectKeys(events) + var key + for (i = 0; i < keys.length; ++i) { + key = keys[i] + if (key === "removeListener") continue + this.removeAllListeners(key) + } + this.removeAllListeners("removeListener") + this._events = objectCreate(null) + this._eventsCount = 0 + return this + } + + listeners = events[type] + + if (typeof listeners === "function") { + this.removeListener(type, listeners) + } else if (listeners) { + // LIFO order + for (i = listeners.length - 1; i >= 0; i--) { + this.removeListener(type, listeners[i]) + } + } + + return this + } + + function _listeners(target, type, unwrap) { + var events = target._events + + if (!events) return [] + + var evlistener = events[type] + if (!evlistener) return [] + + if (typeof evlistener === "function") + return unwrap ? [evlistener.listener || evlistener] : [evlistener] + + return unwrap + ? unwrapListeners(evlistener) + : arrayClone(evlistener, evlistener.length) + } + + EventEmitter.prototype.listeners = function listeners(type) { + return _listeners(this, type, true) + } + + EventEmitter.prototype.rawListeners = function rawListeners(type) { + return _listeners(this, type, false) + } + + EventEmitter.listenerCount = function(emitter, type) { + if (typeof emitter.listenerCount === "function") { + return emitter.listenerCount(type) + } else { + return listenerCount.call(emitter, type) + } + } + + EventEmitter.prototype.listenerCount = listenerCount + function listenerCount(type) { + var events = this._events + + if (events) { + var evlistener = events[type] + + if (typeof evlistener === "function") { + return 1 + } else if (evlistener) { + return evlistener.length + } + } + + return 0 + } + + EventEmitter.prototype.eventNames = function eventNames() { + return this._eventsCount > 0 ? Reflect.ownKeys(this._events) : [] + } + + // About 1.5x faster than the two-arg version of Array#splice(). + function spliceOne(list, index) { + for ( + var i = index, k = i + 1, n = list.length; + k < n; + i += 1, k += 1 + ) + list[i] = list[k] + list.pop() + } + + function arrayClone(arr, n) { + var copy = new Array(n) + for (var i = 0; i < n; ++i) copy[i] = arr[i] + return copy + } + + function unwrapListeners(arr) { + var ret = new Array(arr.length) + for (var i = 0; i < ret.length; ++i) { + ret[i] = arr[i].listener || arr[i] + } + return ret + } + + function objectCreatePolyfill(proto) { + var F = function() {} + F.prototype = proto + return new F() + } + function objectKeysPolyfill(obj) { + var keys = [] + for (var k in obj) + if (Object.prototype.hasOwnProperty.call(obj, k)) { + keys.push(k) + } + return k + } + function functionBindPolyfill(context) { + var fn = this + return function() { + return fn.apply(context, arguments) + } + } + }, + {} + ], + 84: [ + function(require, module, exports) { + var Buffer = require("safe-buffer").Buffer + var MD5 = require("md5.js") + + /* eslint-disable camelcase */ + function EVP_BytesToKey(password, salt, keyBits, ivLen) { + if (!Buffer.isBuffer(password)) + password = Buffer.from(password, "binary") + if (salt) { + if (!Buffer.isBuffer(salt)) salt = Buffer.from(salt, "binary") + if (salt.length !== 8) + throw new RangeError("salt should be Buffer with 8 byte length") + } + + var keyLen = keyBits / 8 + var key = Buffer.alloc(keyLen) + var iv = Buffer.alloc(ivLen || 0) + var tmp = Buffer.alloc(0) + + while (keyLen > 0 || ivLen > 0) { + var hash = new MD5() + hash.update(tmp) + hash.update(password) + if (salt) hash.update(salt) + tmp = hash.digest() + + var used = 0 + + if (keyLen > 0) { + var keyStart = key.length - keyLen + used = Math.min(keyLen, tmp.length) + tmp.copy(key, keyStart, 0, used) + keyLen -= used + } + + if (used < tmp.length && ivLen > 0) { + var ivStart = iv.length - ivLen + var length = Math.min(ivLen, tmp.length - used) + tmp.copy(iv, ivStart, used, used + length) + ivLen -= length + } + } + + tmp.fill(0) + return { key: key, iv: iv } + } + + module.exports = EVP_BytesToKey + }, + { "md5.js": 103, "safe-buffer": 148 } + ], + 85: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var Transform = require("stream").Transform + var inherits = require("inherits") + + function throwIfNotStringOrBuffer(val, prefix) { + if (!Buffer.isBuffer(val) && typeof val !== "string") { + throw new TypeError(prefix + " must be a string or a buffer") + } + } + + function HashBase(blockSize) { + Transform.call(this) + + this._block = Buffer.allocUnsafe(blockSize) + this._blockSize = blockSize + this._blockOffset = 0 + this._length = [0, 0, 0, 0] + + this._finalized = false + } + + inherits(HashBase, Transform) + + HashBase.prototype._transform = function(chunk, encoding, callback) { + var error = null + try { + this.update(chunk, encoding) + } catch (err) { + error = err + } + + callback(error) + } + + HashBase.prototype._flush = function(callback) { + var error = null + try { + this.push(this.digest()) + } catch (err) { + error = err + } + + callback(error) + } + + HashBase.prototype.update = function(data, encoding) { + throwIfNotStringOrBuffer(data, "Data") + if (this._finalized) throw new Error("Digest already called") + if (!Buffer.isBuffer(data)) data = Buffer.from(data, encoding) + + // consume data + var block = this._block + var offset = 0 + while ( + this._blockOffset + data.length - offset >= + this._blockSize + ) { + for (var i = this._blockOffset; i < this._blockSize; ) + block[i++] = data[offset++] + this._update() + this._blockOffset = 0 + } + while (offset < data.length) + block[this._blockOffset++] = data[offset++] + + // update length + for (var j = 0, carry = data.length * 8; carry > 0; ++j) { + this._length[j] += carry + carry = (this._length[j] / 0x0100000000) | 0 + if (carry > 0) this._length[j] -= 0x0100000000 * carry + } + + return this + } + + HashBase.prototype._update = function() { + throw new Error("_update is not implemented") + } + + HashBase.prototype.digest = function(encoding) { + if (this._finalized) throw new Error("Digest already called") + this._finalized = true + + var digest = this._digest() + if (encoding !== undefined) digest = digest.toString(encoding) + + // reset state + this._block.fill(0) + this._blockOffset = 0 + for (var i = 0; i < 4; ++i) this._length[i] = 0 + + return digest + } + + HashBase.prototype._digest = function() { + throw new Error("_digest is not implemented") + } + + module.exports = HashBase + }, + { inherits: 100, "safe-buffer": 148, stream: 157 } + ], + 86: [ + function(require, module, exports) { + var hash = exports + + hash.utils = require("./hash/utils") + hash.common = require("./hash/common") + hash.sha = require("./hash/sha") + hash.ripemd = require("./hash/ripemd") + hash.hmac = require("./hash/hmac") + + // Proxy hash functions to the main object + hash.sha1 = hash.sha.sha1 + hash.sha256 = hash.sha.sha256 + hash.sha224 = hash.sha.sha224 + hash.sha384 = hash.sha.sha384 + hash.sha512 = hash.sha.sha512 + hash.ripemd160 = hash.ripemd.ripemd160 + }, + { + "./hash/common": 87, + "./hash/hmac": 88, + "./hash/ripemd": 89, + "./hash/sha": 90, + "./hash/utils": 97 + } + ], + 87: [ + function(require, module, exports) { + "use strict" + + var utils = require("./utils") + var assert = require("minimalistic-assert") + + function BlockHash() { + this.pending = null + this.pendingTotal = 0 + this.blockSize = this.constructor.blockSize + this.outSize = this.constructor.outSize + this.hmacStrength = this.constructor.hmacStrength + this.padLength = this.constructor.padLength / 8 + this.endian = "big" + + this._delta8 = this.blockSize / 8 + this._delta32 = this.blockSize / 32 + } + exports.BlockHash = BlockHash + + BlockHash.prototype.update = function update(msg, enc) { + // Convert message to array, pad it, and join into 32bit blocks + msg = utils.toArray(msg, enc) + if (!this.pending) this.pending = msg + else this.pending = this.pending.concat(msg) + this.pendingTotal += msg.length + + // Enough data, try updating + if (this.pending.length >= this._delta8) { + msg = this.pending + + // Process pending data in blocks + var r = msg.length % this._delta8 + this.pending = msg.slice(msg.length - r, msg.length) + if (this.pending.length === 0) this.pending = null + + msg = utils.join32(msg, 0, msg.length - r, this.endian) + for (var i = 0; i < msg.length; i += this._delta32) + this._update(msg, i, i + this._delta32) + } + + return this + } + + BlockHash.prototype.digest = function digest(enc) { + this.update(this._pad()) + assert(this.pending === null) + + return this._digest(enc) + } + + BlockHash.prototype._pad = function pad() { + var len = this.pendingTotal + var bytes = this._delta8 + var k = bytes - ((len + this.padLength) % bytes) + var res = new Array(k + this.padLength) + res[0] = 0x80 + for (var i = 1; i < k; i++) res[i] = 0 + + // Append length + len <<= 3 + if (this.endian === "big") { + for (var t = 8; t < this.padLength; t++) res[i++] = 0 + + res[i++] = 0 + res[i++] = 0 + res[i++] = 0 + res[i++] = 0 + res[i++] = (len >>> 24) & 0xff + res[i++] = (len >>> 16) & 0xff + res[i++] = (len >>> 8) & 0xff + res[i++] = len & 0xff + } else { + res[i++] = len & 0xff + res[i++] = (len >>> 8) & 0xff + res[i++] = (len >>> 16) & 0xff + res[i++] = (len >>> 24) & 0xff + res[i++] = 0 + res[i++] = 0 + res[i++] = 0 + res[i++] = 0 + + for (t = 8; t < this.padLength; t++) res[i++] = 0 + } + + return res + } + }, + { "./utils": 97, "minimalistic-assert": 105 } + ], + 88: [ + function(require, module, exports) { + "use strict" + + var utils = require("./utils") + var assert = require("minimalistic-assert") + + function Hmac(hash, key, enc) { + if (!(this instanceof Hmac)) return new Hmac(hash, key, enc) + this.Hash = hash + this.blockSize = hash.blockSize / 8 + this.outSize = hash.outSize / 8 + this.inner = null + this.outer = null + + this._init(utils.toArray(key, enc)) + } + module.exports = Hmac + + Hmac.prototype._init = function init(key) { + // Shorten key, if needed + if (key.length > this.blockSize) + key = new this.Hash().update(key).digest() + assert(key.length <= this.blockSize) + + // Add padding to key + for (var i = key.length; i < this.blockSize; i++) key.push(0) + + for (i = 0; i < key.length; i++) key[i] ^= 0x36 + this.inner = new this.Hash().update(key) + + // 0x36 ^ 0x5c = 0x6a + for (i = 0; i < key.length; i++) key[i] ^= 0x6a + this.outer = new this.Hash().update(key) + } + + Hmac.prototype.update = function update(msg, enc) { + this.inner.update(msg, enc) + return this + } + + Hmac.prototype.digest = function digest(enc) { + this.outer.update(this.inner.digest()) + return this.outer.digest(enc) + } + }, + { "./utils": 97, "minimalistic-assert": 105 } + ], + 89: [ + function(require, module, exports) { + "use strict" + + var utils = require("./utils") + var common = require("./common") + + var rotl32 = utils.rotl32 + var sum32 = utils.sum32 + var sum32_3 = utils.sum32_3 + var sum32_4 = utils.sum32_4 + var BlockHash = common.BlockHash + + function RIPEMD160() { + if (!(this instanceof RIPEMD160)) return new RIPEMD160() + + BlockHash.call(this) + + this.h = [ + 0x67452301, + 0xefcdab89, + 0x98badcfe, + 0x10325476, + 0xc3d2e1f0 + ] + this.endian = "little" + } + utils.inherits(RIPEMD160, BlockHash) + exports.ripemd160 = RIPEMD160 + + RIPEMD160.blockSize = 512 + RIPEMD160.outSize = 160 + RIPEMD160.hmacStrength = 192 + RIPEMD160.padLength = 64 + + RIPEMD160.prototype._update = function update(msg, start) { + var A = this.h[0] + var B = this.h[1] + var C = this.h[2] + var D = this.h[3] + var E = this.h[4] + var Ah = A + var Bh = B + var Ch = C + var Dh = D + var Eh = E + for (var j = 0; j < 80; j++) { + var T = sum32( + rotl32( + sum32_4(A, f(j, B, C, D), msg[r[j] + start], K(j)), + s[j] + ), + E + ) + A = E + E = D + D = rotl32(C, 10) + C = B + B = T + T = sum32( + rotl32( + sum32_4(Ah, f(79 - j, Bh, Ch, Dh), msg[rh[j] + start], Kh(j)), + sh[j] + ), + Eh + ) + Ah = Eh + Eh = Dh + Dh = rotl32(Ch, 10) + Ch = Bh + Bh = T + } + T = sum32_3(this.h[1], C, Dh) + this.h[1] = sum32_3(this.h[2], D, Eh) + this.h[2] = sum32_3(this.h[3], E, Ah) + this.h[3] = sum32_3(this.h[4], A, Bh) + this.h[4] = sum32_3(this.h[0], B, Ch) + this.h[0] = T + } + + RIPEMD160.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h, "little") + else return utils.split32(this.h, "little") + } + + function f(j, x, y, z) { + if (j <= 15) return x ^ y ^ z + else if (j <= 31) return (x & y) | (~x & z) + else if (j <= 47) return (x | ~y) ^ z + else if (j <= 63) return (x & z) | (y & ~z) + else return x ^ (y | ~z) + } + + function K(j) { + if (j <= 15) return 0x00000000 + else if (j <= 31) return 0x5a827999 + else if (j <= 47) return 0x6ed9eba1 + else if (j <= 63) return 0x8f1bbcdc + else return 0xa953fd4e + } + + function Kh(j) { + if (j <= 15) return 0x50a28be6 + else if (j <= 31) return 0x5c4dd124 + else if (j <= 47) return 0x6d703ef3 + else if (j <= 63) return 0x7a6d76e9 + else return 0x00000000 + } + + var r = [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 7, + 4, + 13, + 1, + 10, + 6, + 15, + 3, + 12, + 0, + 9, + 5, + 2, + 14, + 11, + 8, + 3, + 10, + 14, + 4, + 9, + 15, + 8, + 1, + 2, + 7, + 0, + 6, + 13, + 11, + 5, + 12, + 1, + 9, + 11, + 10, + 0, + 8, + 12, + 4, + 13, + 3, + 7, + 15, + 14, + 5, + 6, + 2, + 4, + 0, + 5, + 9, + 7, + 12, + 2, + 10, + 14, + 1, + 3, + 8, + 11, + 6, + 15, + 13 + ] + + var rh = [ + 5, + 14, + 7, + 0, + 9, + 2, + 11, + 4, + 13, + 6, + 15, + 8, + 1, + 10, + 3, + 12, + 6, + 11, + 3, + 7, + 0, + 13, + 5, + 10, + 14, + 15, + 8, + 12, + 4, + 9, + 1, + 2, + 15, + 5, + 1, + 3, + 7, + 14, + 6, + 9, + 11, + 8, + 12, + 2, + 10, + 0, + 4, + 13, + 8, + 6, + 4, + 1, + 3, + 11, + 15, + 0, + 5, + 12, + 2, + 13, + 9, + 7, + 10, + 14, + 12, + 15, + 10, + 4, + 1, + 5, + 8, + 7, + 6, + 2, + 13, + 14, + 0, + 3, + 9, + 11 + ] + + var s = [ + 11, + 14, + 15, + 12, + 5, + 8, + 7, + 9, + 11, + 13, + 14, + 15, + 6, + 7, + 9, + 8, + 7, + 6, + 8, + 13, + 11, + 9, + 7, + 15, + 7, + 12, + 15, + 9, + 11, + 7, + 13, + 12, + 11, + 13, + 6, + 7, + 14, + 9, + 13, + 15, + 14, + 8, + 13, + 6, + 5, + 12, + 7, + 5, + 11, + 12, + 14, + 15, + 14, + 15, + 9, + 8, + 9, + 14, + 5, + 6, + 8, + 6, + 5, + 12, + 9, + 15, + 5, + 11, + 6, + 8, + 13, + 12, + 5, + 12, + 13, + 14, + 11, + 8, + 5, + 6 + ] + + var sh = [ + 8, + 9, + 9, + 11, + 13, + 15, + 15, + 5, + 7, + 7, + 8, + 11, + 14, + 14, + 12, + 6, + 9, + 13, + 15, + 7, + 12, + 8, + 9, + 11, + 7, + 7, + 12, + 7, + 6, + 15, + 13, + 11, + 9, + 7, + 15, + 11, + 8, + 6, + 6, + 14, + 12, + 13, + 5, + 14, + 13, + 13, + 7, + 5, + 15, + 5, + 8, + 11, + 14, + 14, + 6, + 14, + 6, + 9, + 12, + 9, + 12, + 5, + 15, + 8, + 8, + 5, + 12, + 9, + 12, + 5, + 14, + 6, + 8, + 13, + 6, + 5, + 15, + 13, + 11, + 11 + ] + }, + { "./common": 87, "./utils": 97 } + ], + 90: [ + function(require, module, exports) { + "use strict" + + exports.sha1 = require("./sha/1") + exports.sha224 = require("./sha/224") + exports.sha256 = require("./sha/256") + exports.sha384 = require("./sha/384") + exports.sha512 = require("./sha/512") + }, + { + "./sha/1": 91, + "./sha/224": 92, + "./sha/256": 93, + "./sha/384": 94, + "./sha/512": 95 + } + ], + 91: [ + function(require, module, exports) { + "use strict" + + var utils = require("../utils") + var common = require("../common") + var shaCommon = require("./common") + + var rotl32 = utils.rotl32 + var sum32 = utils.sum32 + var sum32_5 = utils.sum32_5 + var ft_1 = shaCommon.ft_1 + var BlockHash = common.BlockHash + + var sha1_K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6] + + function SHA1() { + if (!(this instanceof SHA1)) return new SHA1() + + BlockHash.call(this) + this.h = [ + 0x67452301, + 0xefcdab89, + 0x98badcfe, + 0x10325476, + 0xc3d2e1f0 + ] + this.W = new Array(80) + } + + utils.inherits(SHA1, BlockHash) + module.exports = SHA1 + + SHA1.blockSize = 512 + SHA1.outSize = 160 + SHA1.hmacStrength = 80 + SHA1.padLength = 64 + + SHA1.prototype._update = function _update(msg, start) { + var W = this.W + + for (var i = 0; i < 16; i++) W[i] = msg[start + i] + + for (; i < W.length; i++) + W[i] = rotl32(W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16], 1) + + var a = this.h[0] + var b = this.h[1] + var c = this.h[2] + var d = this.h[3] + var e = this.h[4] + + for (i = 0; i < W.length; i++) { + var s = ~~(i / 20) + var t = sum32_5( + rotl32(a, 5), + ft_1(s, b, c, d), + e, + W[i], + sha1_K[s] + ) + e = d + d = c + c = rotl32(b, 30) + b = a + a = t + } + + this.h[0] = sum32(this.h[0], a) + this.h[1] = sum32(this.h[1], b) + this.h[2] = sum32(this.h[2], c) + this.h[3] = sum32(this.h[3], d) + this.h[4] = sum32(this.h[4], e) + } + + SHA1.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h, "big") + else return utils.split32(this.h, "big") + } + }, + { "../common": 87, "../utils": 97, "./common": 96 } + ], + 92: [ + function(require, module, exports) { + "use strict" + + var utils = require("../utils") + var SHA256 = require("./256") + + function SHA224() { + if (!(this instanceof SHA224)) return new SHA224() + + SHA256.call(this) + this.h = [ + 0xc1059ed8, + 0x367cd507, + 0x3070dd17, + 0xf70e5939, + 0xffc00b31, + 0x68581511, + 0x64f98fa7, + 0xbefa4fa4 + ] + } + utils.inherits(SHA224, SHA256) + module.exports = SHA224 + + SHA224.blockSize = 512 + SHA224.outSize = 224 + SHA224.hmacStrength = 192 + SHA224.padLength = 64 + + SHA224.prototype._digest = function digest(enc) { + // Just truncate output + if (enc === "hex") return utils.toHex32(this.h.slice(0, 7), "big") + else return utils.split32(this.h.slice(0, 7), "big") + } + }, + { "../utils": 97, "./256": 93 } + ], + 93: [ + function(require, module, exports) { + "use strict" + + var utils = require("../utils") + var common = require("../common") + var shaCommon = require("./common") + var assert = require("minimalistic-assert") + + var sum32 = utils.sum32 + var sum32_4 = utils.sum32_4 + var sum32_5 = utils.sum32_5 + var ch32 = shaCommon.ch32 + var maj32 = shaCommon.maj32 + var s0_256 = shaCommon.s0_256 + var s1_256 = shaCommon.s1_256 + var g0_256 = shaCommon.g0_256 + var g1_256 = shaCommon.g1_256 + + var BlockHash = common.BlockHash + + var sha256_K = [ + 0x428a2f98, + 0x71374491, + 0xb5c0fbcf, + 0xe9b5dba5, + 0x3956c25b, + 0x59f111f1, + 0x923f82a4, + 0xab1c5ed5, + 0xd807aa98, + 0x12835b01, + 0x243185be, + 0x550c7dc3, + 0x72be5d74, + 0x80deb1fe, + 0x9bdc06a7, + 0xc19bf174, + 0xe49b69c1, + 0xefbe4786, + 0x0fc19dc6, + 0x240ca1cc, + 0x2de92c6f, + 0x4a7484aa, + 0x5cb0a9dc, + 0x76f988da, + 0x983e5152, + 0xa831c66d, + 0xb00327c8, + 0xbf597fc7, + 0xc6e00bf3, + 0xd5a79147, + 0x06ca6351, + 0x14292967, + 0x27b70a85, + 0x2e1b2138, + 0x4d2c6dfc, + 0x53380d13, + 0x650a7354, + 0x766a0abb, + 0x81c2c92e, + 0x92722c85, + 0xa2bfe8a1, + 0xa81a664b, + 0xc24b8b70, + 0xc76c51a3, + 0xd192e819, + 0xd6990624, + 0xf40e3585, + 0x106aa070, + 0x19a4c116, + 0x1e376c08, + 0x2748774c, + 0x34b0bcb5, + 0x391c0cb3, + 0x4ed8aa4a, + 0x5b9cca4f, + 0x682e6ff3, + 0x748f82ee, + 0x78a5636f, + 0x84c87814, + 0x8cc70208, + 0x90befffa, + 0xa4506ceb, + 0xbef9a3f7, + 0xc67178f2 + ] + + function SHA256() { + if (!(this instanceof SHA256)) return new SHA256() + + BlockHash.call(this) + this.h = [ + 0x6a09e667, + 0xbb67ae85, + 0x3c6ef372, + 0xa54ff53a, + 0x510e527f, + 0x9b05688c, + 0x1f83d9ab, + 0x5be0cd19 + ] + this.k = sha256_K + this.W = new Array(64) + } + utils.inherits(SHA256, BlockHash) + module.exports = SHA256 + + SHA256.blockSize = 512 + SHA256.outSize = 256 + SHA256.hmacStrength = 192 + SHA256.padLength = 64 + + SHA256.prototype._update = function _update(msg, start) { + var W = this.W + + for (var i = 0; i < 16; i++) W[i] = msg[start + i] + for (; i < W.length; i++) + W[i] = sum32_4( + g1_256(W[i - 2]), + W[i - 7], + g0_256(W[i - 15]), + W[i - 16] + ) + + var a = this.h[0] + var b = this.h[1] + var c = this.h[2] + var d = this.h[3] + var e = this.h[4] + var f = this.h[5] + var g = this.h[6] + var h = this.h[7] + + assert(this.k.length === W.length) + for (i = 0; i < W.length; i++) { + var T1 = sum32_5(h, s1_256(e), ch32(e, f, g), this.k[i], W[i]) + var T2 = sum32(s0_256(a), maj32(a, b, c)) + h = g + g = f + f = e + e = sum32(d, T1) + d = c + c = b + b = a + a = sum32(T1, T2) + } + + this.h[0] = sum32(this.h[0], a) + this.h[1] = sum32(this.h[1], b) + this.h[2] = sum32(this.h[2], c) + this.h[3] = sum32(this.h[3], d) + this.h[4] = sum32(this.h[4], e) + this.h[5] = sum32(this.h[5], f) + this.h[6] = sum32(this.h[6], g) + this.h[7] = sum32(this.h[7], h) + } + + SHA256.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h, "big") + else return utils.split32(this.h, "big") + } + }, + { + "../common": 87, + "../utils": 97, + "./common": 96, + "minimalistic-assert": 105 + } + ], + 94: [ + function(require, module, exports) { + "use strict" + + var utils = require("../utils") + + var SHA512 = require("./512") + + function SHA384() { + if (!(this instanceof SHA384)) return new SHA384() + + SHA512.call(this) + this.h = [ + 0xcbbb9d5d, + 0xc1059ed8, + 0x629a292a, + 0x367cd507, + 0x9159015a, + 0x3070dd17, + 0x152fecd8, + 0xf70e5939, + 0x67332667, + 0xffc00b31, + 0x8eb44a87, + 0x68581511, + 0xdb0c2e0d, + 0x64f98fa7, + 0x47b5481d, + 0xbefa4fa4 + ] + } + utils.inherits(SHA384, SHA512) + module.exports = SHA384 + + SHA384.blockSize = 1024 + SHA384.outSize = 384 + SHA384.hmacStrength = 192 + SHA384.padLength = 128 + + SHA384.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h.slice(0, 12), "big") + else return utils.split32(this.h.slice(0, 12), "big") + } + }, + { "../utils": 97, "./512": 95 } + ], + 95: [ + function(require, module, exports) { + "use strict" + + var utils = require("../utils") + var common = require("../common") + var assert = require("minimalistic-assert") + + var rotr64_hi = utils.rotr64_hi + var rotr64_lo = utils.rotr64_lo + var shr64_hi = utils.shr64_hi + var shr64_lo = utils.shr64_lo + var sum64 = utils.sum64 + var sum64_hi = utils.sum64_hi + var sum64_lo = utils.sum64_lo + var sum64_4_hi = utils.sum64_4_hi + var sum64_4_lo = utils.sum64_4_lo + var sum64_5_hi = utils.sum64_5_hi + var sum64_5_lo = utils.sum64_5_lo + + var BlockHash = common.BlockHash + + var sha512_K = [ + 0x428a2f98, + 0xd728ae22, + 0x71374491, + 0x23ef65cd, + 0xb5c0fbcf, + 0xec4d3b2f, + 0xe9b5dba5, + 0x8189dbbc, + 0x3956c25b, + 0xf348b538, + 0x59f111f1, + 0xb605d019, + 0x923f82a4, + 0xaf194f9b, + 0xab1c5ed5, + 0xda6d8118, + 0xd807aa98, + 0xa3030242, + 0x12835b01, + 0x45706fbe, + 0x243185be, + 0x4ee4b28c, + 0x550c7dc3, + 0xd5ffb4e2, + 0x72be5d74, + 0xf27b896f, + 0x80deb1fe, + 0x3b1696b1, + 0x9bdc06a7, + 0x25c71235, + 0xc19bf174, + 0xcf692694, + 0xe49b69c1, + 0x9ef14ad2, + 0xefbe4786, + 0x384f25e3, + 0x0fc19dc6, + 0x8b8cd5b5, + 0x240ca1cc, + 0x77ac9c65, + 0x2de92c6f, + 0x592b0275, + 0x4a7484aa, + 0x6ea6e483, + 0x5cb0a9dc, + 0xbd41fbd4, + 0x76f988da, + 0x831153b5, + 0x983e5152, + 0xee66dfab, + 0xa831c66d, + 0x2db43210, + 0xb00327c8, + 0x98fb213f, + 0xbf597fc7, + 0xbeef0ee4, + 0xc6e00bf3, + 0x3da88fc2, + 0xd5a79147, + 0x930aa725, + 0x06ca6351, + 0xe003826f, + 0x14292967, + 0x0a0e6e70, + 0x27b70a85, + 0x46d22ffc, + 0x2e1b2138, + 0x5c26c926, + 0x4d2c6dfc, + 0x5ac42aed, + 0x53380d13, + 0x9d95b3df, + 0x650a7354, + 0x8baf63de, + 0x766a0abb, + 0x3c77b2a8, + 0x81c2c92e, + 0x47edaee6, + 0x92722c85, + 0x1482353b, + 0xa2bfe8a1, + 0x4cf10364, + 0xa81a664b, + 0xbc423001, + 0xc24b8b70, + 0xd0f89791, + 0xc76c51a3, + 0x0654be30, + 0xd192e819, + 0xd6ef5218, + 0xd6990624, + 0x5565a910, + 0xf40e3585, + 0x5771202a, + 0x106aa070, + 0x32bbd1b8, + 0x19a4c116, + 0xb8d2d0c8, + 0x1e376c08, + 0x5141ab53, + 0x2748774c, + 0xdf8eeb99, + 0x34b0bcb5, + 0xe19b48a8, + 0x391c0cb3, + 0xc5c95a63, + 0x4ed8aa4a, + 0xe3418acb, + 0x5b9cca4f, + 0x7763e373, + 0x682e6ff3, + 0xd6b2b8a3, + 0x748f82ee, + 0x5defb2fc, + 0x78a5636f, + 0x43172f60, + 0x84c87814, + 0xa1f0ab72, + 0x8cc70208, + 0x1a6439ec, + 0x90befffa, + 0x23631e28, + 0xa4506ceb, + 0xde82bde9, + 0xbef9a3f7, + 0xb2c67915, + 0xc67178f2, + 0xe372532b, + 0xca273ece, + 0xea26619c, + 0xd186b8c7, + 0x21c0c207, + 0xeada7dd6, + 0xcde0eb1e, + 0xf57d4f7f, + 0xee6ed178, + 0x06f067aa, + 0x72176fba, + 0x0a637dc5, + 0xa2c898a6, + 0x113f9804, + 0xbef90dae, + 0x1b710b35, + 0x131c471b, + 0x28db77f5, + 0x23047d84, + 0x32caab7b, + 0x40c72493, + 0x3c9ebe0a, + 0x15c9bebc, + 0x431d67c4, + 0x9c100d4c, + 0x4cc5d4be, + 0xcb3e42b6, + 0x597f299c, + 0xfc657e2a, + 0x5fcb6fab, + 0x3ad6faec, + 0x6c44198c, + 0x4a475817 + ] + + function SHA512() { + if (!(this instanceof SHA512)) return new SHA512() + + BlockHash.call(this) + this.h = [ + 0x6a09e667, + 0xf3bcc908, + 0xbb67ae85, + 0x84caa73b, + 0x3c6ef372, + 0xfe94f82b, + 0xa54ff53a, + 0x5f1d36f1, + 0x510e527f, + 0xade682d1, + 0x9b05688c, + 0x2b3e6c1f, + 0x1f83d9ab, + 0xfb41bd6b, + 0x5be0cd19, + 0x137e2179 + ] + this.k = sha512_K + this.W = new Array(160) + } + utils.inherits(SHA512, BlockHash) + module.exports = SHA512 + + SHA512.blockSize = 1024 + SHA512.outSize = 512 + SHA512.hmacStrength = 192 + SHA512.padLength = 128 + + SHA512.prototype._prepareBlock = function _prepareBlock(msg, start) { + var W = this.W + + // 32 x 32bit words + for (var i = 0; i < 32; i++) W[i] = msg[start + i] + for (; i < W.length; i += 2) { + var c0_hi = g1_512_hi(W[i - 4], W[i - 3]) // i - 2 + var c0_lo = g1_512_lo(W[i - 4], W[i - 3]) + var c1_hi = W[i - 14] // i - 7 + var c1_lo = W[i - 13] + var c2_hi = g0_512_hi(W[i - 30], W[i - 29]) // i - 15 + var c2_lo = g0_512_lo(W[i - 30], W[i - 29]) + var c3_hi = W[i - 32] // i - 16 + var c3_lo = W[i - 31] + + W[i] = sum64_4_hi( + c0_hi, + c0_lo, + c1_hi, + c1_lo, + c2_hi, + c2_lo, + c3_hi, + c3_lo + ) + W[i + 1] = sum64_4_lo( + c0_hi, + c0_lo, + c1_hi, + c1_lo, + c2_hi, + c2_lo, + c3_hi, + c3_lo + ) + } + } + + SHA512.prototype._update = function _update(msg, start) { + this._prepareBlock(msg, start) + + var W = this.W + + var ah = this.h[0] + var al = this.h[1] + var bh = this.h[2] + var bl = this.h[3] + var ch = this.h[4] + var cl = this.h[5] + var dh = this.h[6] + var dl = this.h[7] + var eh = this.h[8] + var el = this.h[9] + var fh = this.h[10] + var fl = this.h[11] + var gh = this.h[12] + var gl = this.h[13] + var hh = this.h[14] + var hl = this.h[15] + + assert(this.k.length === W.length) + for (var i = 0; i < W.length; i += 2) { + var c0_hi = hh + var c0_lo = hl + var c1_hi = s1_512_hi(eh, el) + var c1_lo = s1_512_lo(eh, el) + var c2_hi = ch64_hi(eh, el, fh, fl, gh, gl) + var c2_lo = ch64_lo(eh, el, fh, fl, gh, gl) + var c3_hi = this.k[i] + var c3_lo = this.k[i + 1] + var c4_hi = W[i] + var c4_lo = W[i + 1] + + var T1_hi = sum64_5_hi( + c0_hi, + c0_lo, + c1_hi, + c1_lo, + c2_hi, + c2_lo, + c3_hi, + c3_lo, + c4_hi, + c4_lo + ) + var T1_lo = sum64_5_lo( + c0_hi, + c0_lo, + c1_hi, + c1_lo, + c2_hi, + c2_lo, + c3_hi, + c3_lo, + c4_hi, + c4_lo + ) + + c0_hi = s0_512_hi(ah, al) + c0_lo = s0_512_lo(ah, al) + c1_hi = maj64_hi(ah, al, bh, bl, ch, cl) + c1_lo = maj64_lo(ah, al, bh, bl, ch, cl) + + var T2_hi = sum64_hi(c0_hi, c0_lo, c1_hi, c1_lo) + var T2_lo = sum64_lo(c0_hi, c0_lo, c1_hi, c1_lo) + + hh = gh + hl = gl + + gh = fh + gl = fl + + fh = eh + fl = el + + eh = sum64_hi(dh, dl, T1_hi, T1_lo) + el = sum64_lo(dl, dl, T1_hi, T1_lo) + + dh = ch + dl = cl + + ch = bh + cl = bl + + bh = ah + bl = al + + ah = sum64_hi(T1_hi, T1_lo, T2_hi, T2_lo) + al = sum64_lo(T1_hi, T1_lo, T2_hi, T2_lo) + } + + sum64(this.h, 0, ah, al) + sum64(this.h, 2, bh, bl) + sum64(this.h, 4, ch, cl) + sum64(this.h, 6, dh, dl) + sum64(this.h, 8, eh, el) + sum64(this.h, 10, fh, fl) + sum64(this.h, 12, gh, gl) + sum64(this.h, 14, hh, hl) + } + + SHA512.prototype._digest = function digest(enc) { + if (enc === "hex") return utils.toHex32(this.h, "big") + else return utils.split32(this.h, "big") + } + + function ch64_hi(xh, xl, yh, yl, zh) { + var r = (xh & yh) ^ (~xh & zh) + if (r < 0) r += 0x100000000 + return r + } + + function ch64_lo(xh, xl, yh, yl, zh, zl) { + var r = (xl & yl) ^ (~xl & zl) + if (r < 0) r += 0x100000000 + return r + } + + function maj64_hi(xh, xl, yh, yl, zh) { + var r = (xh & yh) ^ (xh & zh) ^ (yh & zh) + if (r < 0) r += 0x100000000 + return r + } + + function maj64_lo(xh, xl, yh, yl, zh, zl) { + var r = (xl & yl) ^ (xl & zl) ^ (yl & zl) + if (r < 0) r += 0x100000000 + return r + } + + function s0_512_hi(xh, xl) { + var c0_hi = rotr64_hi(xh, xl, 28) + var c1_hi = rotr64_hi(xl, xh, 2) // 34 + var c2_hi = rotr64_hi(xl, xh, 7) // 39 + + var r = c0_hi ^ c1_hi ^ c2_hi + if (r < 0) r += 0x100000000 + return r + } + + function s0_512_lo(xh, xl) { + var c0_lo = rotr64_lo(xh, xl, 28) + var c1_lo = rotr64_lo(xl, xh, 2) // 34 + var c2_lo = rotr64_lo(xl, xh, 7) // 39 + + var r = c0_lo ^ c1_lo ^ c2_lo + if (r < 0) r += 0x100000000 + return r + } + + function s1_512_hi(xh, xl) { + var c0_hi = rotr64_hi(xh, xl, 14) + var c1_hi = rotr64_hi(xh, xl, 18) + var c2_hi = rotr64_hi(xl, xh, 9) // 41 + + var r = c0_hi ^ c1_hi ^ c2_hi + if (r < 0) r += 0x100000000 + return r + } + + function s1_512_lo(xh, xl) { + var c0_lo = rotr64_lo(xh, xl, 14) + var c1_lo = rotr64_lo(xh, xl, 18) + var c2_lo = rotr64_lo(xl, xh, 9) // 41 + + var r = c0_lo ^ c1_lo ^ c2_lo + if (r < 0) r += 0x100000000 + return r + } + + function g0_512_hi(xh, xl) { + var c0_hi = rotr64_hi(xh, xl, 1) + var c1_hi = rotr64_hi(xh, xl, 8) + var c2_hi = shr64_hi(xh, xl, 7) + + var r = c0_hi ^ c1_hi ^ c2_hi + if (r < 0) r += 0x100000000 + return r + } + + function g0_512_lo(xh, xl) { + var c0_lo = rotr64_lo(xh, xl, 1) + var c1_lo = rotr64_lo(xh, xl, 8) + var c2_lo = shr64_lo(xh, xl, 7) + + var r = c0_lo ^ c1_lo ^ c2_lo + if (r < 0) r += 0x100000000 + return r + } + + function g1_512_hi(xh, xl) { + var c0_hi = rotr64_hi(xh, xl, 19) + var c1_hi = rotr64_hi(xl, xh, 29) // 61 + var c2_hi = shr64_hi(xh, xl, 6) + + var r = c0_hi ^ c1_hi ^ c2_hi + if (r < 0) r += 0x100000000 + return r + } + + function g1_512_lo(xh, xl) { + var c0_lo = rotr64_lo(xh, xl, 19) + var c1_lo = rotr64_lo(xl, xh, 29) // 61 + var c2_lo = shr64_lo(xh, xl, 6) + + var r = c0_lo ^ c1_lo ^ c2_lo + if (r < 0) r += 0x100000000 + return r + } + }, + { "../common": 87, "../utils": 97, "minimalistic-assert": 105 } + ], + 96: [ + function(require, module, exports) { + "use strict" + + var utils = require("../utils") + var rotr32 = utils.rotr32 + + function ft_1(s, x, y, z) { + if (s === 0) return ch32(x, y, z) + if (s === 1 || s === 3) return p32(x, y, z) + if (s === 2) return maj32(x, y, z) + } + exports.ft_1 = ft_1 + + function ch32(x, y, z) { + return (x & y) ^ (~x & z) + } + exports.ch32 = ch32 + + function maj32(x, y, z) { + return (x & y) ^ (x & z) ^ (y & z) + } + exports.maj32 = maj32 + + function p32(x, y, z) { + return x ^ y ^ z + } + exports.p32 = p32 + + function s0_256(x) { + return rotr32(x, 2) ^ rotr32(x, 13) ^ rotr32(x, 22) + } + exports.s0_256 = s0_256 + + function s1_256(x) { + return rotr32(x, 6) ^ rotr32(x, 11) ^ rotr32(x, 25) + } + exports.s1_256 = s1_256 + + function g0_256(x) { + return rotr32(x, 7) ^ rotr32(x, 18) ^ (x >>> 3) + } + exports.g0_256 = g0_256 + + function g1_256(x) { + return rotr32(x, 17) ^ rotr32(x, 19) ^ (x >>> 10) + } + exports.g1_256 = g1_256 + }, + { "../utils": 97 } + ], + 97: [ + function(require, module, exports) { + "use strict" + + var assert = require("minimalistic-assert") + var inherits = require("inherits") + + exports.inherits = inherits + + function isSurrogatePair(msg, i) { + if ((msg.charCodeAt(i) & 0xfc00) !== 0xd800) { + return false + } + if (i < 0 || i + 1 >= msg.length) { + return false + } + return (msg.charCodeAt(i + 1) & 0xfc00) === 0xdc00 + } + + function toArray(msg, enc) { + if (Array.isArray(msg)) return msg.slice() + if (!msg) return [] + var res = [] + if (typeof msg === "string") { + if (!enc) { + // Inspired by stringToUtf8ByteArray() in closure-library by Google + // https://github.com/google/closure-library/blob/8598d87242af59aac233270742c8984e2b2bdbe0/closure/goog/crypt/crypt.js#L117-L143 + // Apache License 2.0 + // https://github.com/google/closure-library/blob/master/LICENSE + var p = 0 + for (var i = 0; i < msg.length; i++) { + var c = msg.charCodeAt(i) + if (c < 128) { + res[p++] = c + } else if (c < 2048) { + res[p++] = (c >> 6) | 192 + res[p++] = (c & 63) | 128 + } else if (isSurrogatePair(msg, i)) { + c = + 0x10000 + + ((c & 0x03ff) << 10) + + (msg.charCodeAt(++i) & 0x03ff) + res[p++] = (c >> 18) | 240 + res[p++] = ((c >> 12) & 63) | 128 + res[p++] = ((c >> 6) & 63) | 128 + res[p++] = (c & 63) | 128 + } else { + res[p++] = (c >> 12) | 224 + res[p++] = ((c >> 6) & 63) | 128 + res[p++] = (c & 63) | 128 + } + } + } else if (enc === "hex") { + msg = msg.replace(/[^a-z0-9]+/gi, "") + if (msg.length % 2 !== 0) msg = "0" + msg + for (i = 0; i < msg.length; i += 2) + res.push(parseInt(msg[i] + msg[i + 1], 16)) + } + } else { + for (i = 0; i < msg.length; i++) res[i] = msg[i] | 0 + } + return res + } + exports.toArray = toArray + + function toHex(msg) { + var res = "" + for (var i = 0; i < msg.length; i++) + res += zero2(msg[i].toString(16)) + return res + } + exports.toHex = toHex + + function htonl(w) { + var res = + (w >>> 24) | + ((w >>> 8) & 0xff00) | + ((w << 8) & 0xff0000) | + ((w & 0xff) << 24) + return res >>> 0 + } + exports.htonl = htonl + + function toHex32(msg, endian) { + var res = "" + for (var i = 0; i < msg.length; i++) { + var w = msg[i] + if (endian === "little") w = htonl(w) + res += zero8(w.toString(16)) + } + return res + } + exports.toHex32 = toHex32 + + function zero2(word) { + if (word.length === 1) return "0" + word + else return word + } + exports.zero2 = zero2 + + function zero8(word) { + if (word.length === 7) return "0" + word + else if (word.length === 6) return "00" + word + else if (word.length === 5) return "000" + word + else if (word.length === 4) return "0000" + word + else if (word.length === 3) return "00000" + word + else if (word.length === 2) return "000000" + word + else if (word.length === 1) return "0000000" + word + else return word + } + exports.zero8 = zero8 + + function join32(msg, start, end, endian) { + var len = end - start + assert(len % 4 === 0) + var res = new Array(len / 4) + for (var i = 0, k = start; i < res.length; i++, k += 4) { + var w + if (endian === "big") + w = + (msg[k] << 24) | + (msg[k + 1] << 16) | + (msg[k + 2] << 8) | + msg[k + 3] + else + w = + (msg[k + 3] << 24) | + (msg[k + 2] << 16) | + (msg[k + 1] << 8) | + msg[k] + res[i] = w >>> 0 + } + return res + } + exports.join32 = join32 + + function split32(msg, endian) { + var res = new Array(msg.length * 4) + for (var i = 0, k = 0; i < msg.length; i++, k += 4) { + var m = msg[i] + if (endian === "big") { + res[k] = m >>> 24 + res[k + 1] = (m >>> 16) & 0xff + res[k + 2] = (m >>> 8) & 0xff + res[k + 3] = m & 0xff + } else { + res[k + 3] = m >>> 24 + res[k + 2] = (m >>> 16) & 0xff + res[k + 1] = (m >>> 8) & 0xff + res[k] = m & 0xff + } + } + return res + } + exports.split32 = split32 + + function rotr32(w, b) { + return (w >>> b) | (w << (32 - b)) + } + exports.rotr32 = rotr32 + + function rotl32(w, b) { + return (w << b) | (w >>> (32 - b)) + } + exports.rotl32 = rotl32 + + function sum32(a, b) { + return (a + b) >>> 0 + } + exports.sum32 = sum32 + + function sum32_3(a, b, c) { + return (a + b + c) >>> 0 + } + exports.sum32_3 = sum32_3 + + function sum32_4(a, b, c, d) { + return (a + b + c + d) >>> 0 + } + exports.sum32_4 = sum32_4 + + function sum32_5(a, b, c, d, e) { + return (a + b + c + d + e) >>> 0 + } + exports.sum32_5 = sum32_5 + + function sum64(buf, pos, ah, al) { + var bh = buf[pos] + var bl = buf[pos + 1] + + var lo = (al + bl) >>> 0 + var hi = (lo < al ? 1 : 0) + ah + bh + buf[pos] = hi >>> 0 + buf[pos + 1] = lo + } + exports.sum64 = sum64 + + function sum64_hi(ah, al, bh, bl) { + var lo = (al + bl) >>> 0 + var hi = (lo < al ? 1 : 0) + ah + bh + return hi >>> 0 + } + exports.sum64_hi = sum64_hi + + function sum64_lo(ah, al, bh, bl) { + var lo = al + bl + return lo >>> 0 + } + exports.sum64_lo = sum64_lo + + function sum64_4_hi(ah, al, bh, bl, ch, cl, dh, dl) { + var carry = 0 + var lo = al + lo = (lo + bl) >>> 0 + carry += lo < al ? 1 : 0 + lo = (lo + cl) >>> 0 + carry += lo < cl ? 1 : 0 + lo = (lo + dl) >>> 0 + carry += lo < dl ? 1 : 0 + + var hi = ah + bh + ch + dh + carry + return hi >>> 0 + } + exports.sum64_4_hi = sum64_4_hi + + function sum64_4_lo(ah, al, bh, bl, ch, cl, dh, dl) { + var lo = al + bl + cl + dl + return lo >>> 0 + } + exports.sum64_4_lo = sum64_4_lo + + function sum64_5_hi(ah, al, bh, bl, ch, cl, dh, dl, eh, el) { + var carry = 0 + var lo = al + lo = (lo + bl) >>> 0 + carry += lo < al ? 1 : 0 + lo = (lo + cl) >>> 0 + carry += lo < cl ? 1 : 0 + lo = (lo + dl) >>> 0 + carry += lo < dl ? 1 : 0 + lo = (lo + el) >>> 0 + carry += lo < el ? 1 : 0 + + var hi = ah + bh + ch + dh + eh + carry + return hi >>> 0 + } + exports.sum64_5_hi = sum64_5_hi + + function sum64_5_lo(ah, al, bh, bl, ch, cl, dh, dl, eh, el) { + var lo = al + bl + cl + dl + el + + return lo >>> 0 + } + exports.sum64_5_lo = sum64_5_lo + + function rotr64_hi(ah, al, num) { + var r = (al << (32 - num)) | (ah >>> num) + return r >>> 0 + } + exports.rotr64_hi = rotr64_hi + + function rotr64_lo(ah, al, num) { + var r = (ah << (32 - num)) | (al >>> num) + return r >>> 0 + } + exports.rotr64_lo = rotr64_lo + + function shr64_hi(ah, al, num) { + return ah >>> num + } + exports.shr64_hi = shr64_hi + + function shr64_lo(ah, al, num) { + var r = (ah << (32 - num)) | (al >>> num) + return r >>> 0 + } + exports.shr64_lo = shr64_lo + }, + { inherits: 100, "minimalistic-assert": 105 } + ], + 98: [ + function(require, module, exports) { + "use strict" + + var hash = require("hash.js") + var utils = require("minimalistic-crypto-utils") + var assert = require("minimalistic-assert") + + function HmacDRBG(options) { + if (!(this instanceof HmacDRBG)) return new HmacDRBG(options) + this.hash = options.hash + this.predResist = !!options.predResist + + this.outLen = this.hash.outSize + this.minEntropy = options.minEntropy || this.hash.hmacStrength + + this._reseed = null + this.reseedInterval = null + this.K = null + this.V = null + + var entropy = utils.toArray( + options.entropy, + options.entropyEnc || "hex" + ) + var nonce = utils.toArray(options.nonce, options.nonceEnc || "hex") + var pers = utils.toArray(options.pers, options.persEnc || "hex") + assert( + entropy.length >= this.minEntropy / 8, + "Not enough entropy. Minimum is: " + this.minEntropy + " bits" + ) + this._init(entropy, nonce, pers) + } + module.exports = HmacDRBG + + HmacDRBG.prototype._init = function init(entropy, nonce, pers) { + var seed = entropy.concat(nonce).concat(pers) + + this.K = new Array(this.outLen / 8) + this.V = new Array(this.outLen / 8) + for (var i = 0; i < this.V.length; i++) { + this.K[i] = 0x00 + this.V[i] = 0x01 + } + + this._update(seed) + this._reseed = 1 + this.reseedInterval = 0x1000000000000 // 2^48 + } + + HmacDRBG.prototype._hmac = function hmac() { + return new hash.hmac(this.hash, this.K) + } + + HmacDRBG.prototype._update = function update(seed) { + var kmac = this._hmac() + .update(this.V) + .update([0x00]) + if (seed) kmac = kmac.update(seed) + this.K = kmac.digest() + this.V = this._hmac() + .update(this.V) + .digest() + if (!seed) return + + this.K = this._hmac() + .update(this.V) + .update([0x01]) + .update(seed) + .digest() + this.V = this._hmac() + .update(this.V) + .digest() + } + + HmacDRBG.prototype.reseed = function reseed( + entropy, + entropyEnc, + add, + addEnc + ) { + // Optional entropy enc + if (typeof entropyEnc !== "string") { + addEnc = add + add = entropyEnc + entropyEnc = null + } + + entropy = utils.toArray(entropy, entropyEnc) + add = utils.toArray(add, addEnc) + + assert( + entropy.length >= this.minEntropy / 8, + "Not enough entropy. Minimum is: " + this.minEntropy + " bits" + ) + + this._update(entropy.concat(add || [])) + this._reseed = 1 + } + + HmacDRBG.prototype.generate = function generate( + len, + enc, + add, + addEnc + ) { + if (this._reseed > this.reseedInterval) + throw new Error("Reseed is required") + + // Optional encoding + if (typeof enc !== "string") { + addEnc = add + add = enc + enc = null + } + + // Optional additional data + if (add) { + add = utils.toArray(add, addEnc || "hex") + this._update(add) + } + + var temp = [] + while (temp.length < len) { + this.V = this._hmac() + .update(this.V) + .digest() + temp = temp.concat(this.V) + } + + var res = temp.slice(0, len) + this._update(add) + this._reseed++ + return utils.encode(res, enc) + } + }, + { + "hash.js": 86, + "minimalistic-assert": 105, + "minimalistic-crypto-utils": 106 + } + ], + 99: [ + function(require, module, exports) { + exports.read = function(buffer, offset, isLE, mLen, nBytes) { + var e, m + var eLen = nBytes * 8 - mLen - 1 + var eMax = (1 << eLen) - 1 + var eBias = eMax >> 1 + var nBits = -7 + var i = isLE ? nBytes - 1 : 0 + var d = isLE ? -1 : 1 + var s = buffer[offset + i] + + i += d + + e = s & ((1 << -nBits) - 1) + s >>= -nBits + nBits += eLen + for ( + ; + nBits > 0; + e = e * 256 + buffer[offset + i], i += d, nBits -= 8 + ) {} + + m = e & ((1 << -nBits) - 1) + e >>= -nBits + nBits += mLen + for ( + ; + nBits > 0; + m = m * 256 + buffer[offset + i], i += d, nBits -= 8 + ) {} + + if (e === 0) { + e = 1 - eBias + } else if (e === eMax) { + return m ? NaN : (s ? -1 : 1) * Infinity + } else { + m = m + Math.pow(2, mLen) + e = e - eBias + } + return (s ? -1 : 1) * m * Math.pow(2, e - mLen) + } + + exports.write = function(buffer, value, offset, isLE, mLen, nBytes) { + var e, m, c + var eLen = nBytes * 8 - mLen - 1 + var eMax = (1 << eLen) - 1 + var eBias = eMax >> 1 + var rt = mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0 + var i = isLE ? 0 : nBytes - 1 + var d = isLE ? 1 : -1 + var s = value < 0 || (value === 0 && 1 / value < 0) ? 1 : 0 + + value = Math.abs(value) + + if (isNaN(value) || value === Infinity) { + m = isNaN(value) ? 1 : 0 + e = eMax + } else { + e = Math.floor(Math.log(value) / Math.LN2) + if (value * (c = Math.pow(2, -e)) < 1) { + e-- + c *= 2 + } + if (e + eBias >= 1) { + value += rt / c + } else { + value += rt * Math.pow(2, 1 - eBias) + } + if (value * c >= 2) { + e++ + c /= 2 + } + + if (e + eBias >= eMax) { + m = 0 + e = eMax + } else if (e + eBias >= 1) { + m = (value * c - 1) * Math.pow(2, mLen) + e = e + eBias + } else { + m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen) + e = 0 + } + } + + for ( + ; + mLen >= 8; + buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8 + ) {} + + e = (e << mLen) | m + eLen += mLen + for ( + ; + eLen > 0; + buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8 + ) {} + + buffer[offset + i - d] |= s * 128 + } + }, + {} + ], + 100: [ + function(require, module, exports) { + if (typeof Object.create === "function") { + // implementation from standard node.js 'util' module + module.exports = function inherits(ctor, superCtor) { + ctor.super_ = superCtor + ctor.prototype = Object.create(superCtor.prototype, { + constructor: { + value: ctor, + enumerable: false, + writable: true, + configurable: true + } + }) + } + } else { + // old school shim for old browsers + module.exports = function inherits(ctor, superCtor) { + ctor.super_ = superCtor + var TempCtor = function() {} + TempCtor.prototype = superCtor.prototype + ctor.prototype = new TempCtor() + ctor.prototype.constructor = ctor + } + } + }, + {} + ], + 101: [ + function(require, module, exports) { + /*! + * Determine if an object is a Buffer + * + * @author Feross Aboukhadijeh + * @license MIT + */ + + // The _isBuffer check is for Safari 5-7 support, because it's missing + // Object.prototype.constructor. Remove this eventually + module.exports = function(obj) { + return ( + obj != null && + (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer) + ) + } + + function isBuffer(obj) { + return ( + !!obj.constructor && + typeof obj.constructor.isBuffer === "function" && + obj.constructor.isBuffer(obj) + ) + } + + // For Node v0.10 support. Remove this eventually. + function isSlowBuffer(obj) { + return ( + typeof obj.readFloatLE === "function" && + typeof obj.slice === "function" && + isBuffer(obj.slice(0, 0)) + ) + } + }, + {} + ], + 102: [ + function(require, module, exports) { + var toString = {}.toString + + module.exports = + Array.isArray || + function(arr) { + return toString.call(arr) == "[object Array]" + } + }, + {} + ], + 103: [ + function(require, module, exports) { + "use strict" + var inherits = require("inherits") + var HashBase = require("hash-base") + var Buffer = require("safe-buffer").Buffer + + var ARRAY16 = new Array(16) + + function MD5() { + HashBase.call(this, 64) + + // state + this._a = 0x67452301 + this._b = 0xefcdab89 + this._c = 0x98badcfe + this._d = 0x10325476 + } + + inherits(MD5, HashBase) + + MD5.prototype._update = function() { + var M = ARRAY16 + for (var i = 0; i < 16; ++i) M[i] = this._block.readInt32LE(i * 4) + + var a = this._a + var b = this._b + var c = this._c + var d = this._d + + a = fnF(a, b, c, d, M[0], 0xd76aa478, 7) + d = fnF(d, a, b, c, M[1], 0xe8c7b756, 12) + c = fnF(c, d, a, b, M[2], 0x242070db, 17) + b = fnF(b, c, d, a, M[3], 0xc1bdceee, 22) + a = fnF(a, b, c, d, M[4], 0xf57c0faf, 7) + d = fnF(d, a, b, c, M[5], 0x4787c62a, 12) + c = fnF(c, d, a, b, M[6], 0xa8304613, 17) + b = fnF(b, c, d, a, M[7], 0xfd469501, 22) + a = fnF(a, b, c, d, M[8], 0x698098d8, 7) + d = fnF(d, a, b, c, M[9], 0x8b44f7af, 12) + c = fnF(c, d, a, b, M[10], 0xffff5bb1, 17) + b = fnF(b, c, d, a, M[11], 0x895cd7be, 22) + a = fnF(a, b, c, d, M[12], 0x6b901122, 7) + d = fnF(d, a, b, c, M[13], 0xfd987193, 12) + c = fnF(c, d, a, b, M[14], 0xa679438e, 17) + b = fnF(b, c, d, a, M[15], 0x49b40821, 22) + + a = fnG(a, b, c, d, M[1], 0xf61e2562, 5) + d = fnG(d, a, b, c, M[6], 0xc040b340, 9) + c = fnG(c, d, a, b, M[11], 0x265e5a51, 14) + b = fnG(b, c, d, a, M[0], 0xe9b6c7aa, 20) + a = fnG(a, b, c, d, M[5], 0xd62f105d, 5) + d = fnG(d, a, b, c, M[10], 0x02441453, 9) + c = fnG(c, d, a, b, M[15], 0xd8a1e681, 14) + b = fnG(b, c, d, a, M[4], 0xe7d3fbc8, 20) + a = fnG(a, b, c, d, M[9], 0x21e1cde6, 5) + d = fnG(d, a, b, c, M[14], 0xc33707d6, 9) + c = fnG(c, d, a, b, M[3], 0xf4d50d87, 14) + b = fnG(b, c, d, a, M[8], 0x455a14ed, 20) + a = fnG(a, b, c, d, M[13], 0xa9e3e905, 5) + d = fnG(d, a, b, c, M[2], 0xfcefa3f8, 9) + c = fnG(c, d, a, b, M[7], 0x676f02d9, 14) + b = fnG(b, c, d, a, M[12], 0x8d2a4c8a, 20) + + a = fnH(a, b, c, d, M[5], 0xfffa3942, 4) + d = fnH(d, a, b, c, M[8], 0x8771f681, 11) + c = fnH(c, d, a, b, M[11], 0x6d9d6122, 16) + b = fnH(b, c, d, a, M[14], 0xfde5380c, 23) + a = fnH(a, b, c, d, M[1], 0xa4beea44, 4) + d = fnH(d, a, b, c, M[4], 0x4bdecfa9, 11) + c = fnH(c, d, a, b, M[7], 0xf6bb4b60, 16) + b = fnH(b, c, d, a, M[10], 0xbebfbc70, 23) + a = fnH(a, b, c, d, M[13], 0x289b7ec6, 4) + d = fnH(d, a, b, c, M[0], 0xeaa127fa, 11) + c = fnH(c, d, a, b, M[3], 0xd4ef3085, 16) + b = fnH(b, c, d, a, M[6], 0x04881d05, 23) + a = fnH(a, b, c, d, M[9], 0xd9d4d039, 4) + d = fnH(d, a, b, c, M[12], 0xe6db99e5, 11) + c = fnH(c, d, a, b, M[15], 0x1fa27cf8, 16) + b = fnH(b, c, d, a, M[2], 0xc4ac5665, 23) + + a = fnI(a, b, c, d, M[0], 0xf4292244, 6) + d = fnI(d, a, b, c, M[7], 0x432aff97, 10) + c = fnI(c, d, a, b, M[14], 0xab9423a7, 15) + b = fnI(b, c, d, a, M[5], 0xfc93a039, 21) + a = fnI(a, b, c, d, M[12], 0x655b59c3, 6) + d = fnI(d, a, b, c, M[3], 0x8f0ccc92, 10) + c = fnI(c, d, a, b, M[10], 0xffeff47d, 15) + b = fnI(b, c, d, a, M[1], 0x85845dd1, 21) + a = fnI(a, b, c, d, M[8], 0x6fa87e4f, 6) + d = fnI(d, a, b, c, M[15], 0xfe2ce6e0, 10) + c = fnI(c, d, a, b, M[6], 0xa3014314, 15) + b = fnI(b, c, d, a, M[13], 0x4e0811a1, 21) + a = fnI(a, b, c, d, M[4], 0xf7537e82, 6) + d = fnI(d, a, b, c, M[11], 0xbd3af235, 10) + c = fnI(c, d, a, b, M[2], 0x2ad7d2bb, 15) + b = fnI(b, c, d, a, M[9], 0xeb86d391, 21) + + this._a = (this._a + a) | 0 + this._b = (this._b + b) | 0 + this._c = (this._c + c) | 0 + this._d = (this._d + d) | 0 + } + + MD5.prototype._digest = function() { + // create padding and handle blocks + this._block[this._blockOffset++] = 0x80 + if (this._blockOffset > 56) { + this._block.fill(0, this._blockOffset, 64) + this._update() + this._blockOffset = 0 + } + + this._block.fill(0, this._blockOffset, 56) + this._block.writeUInt32LE(this._length[0], 56) + this._block.writeUInt32LE(this._length[1], 60) + this._update() + + // produce result + var buffer = Buffer.allocUnsafe(16) + buffer.writeInt32LE(this._a, 0) + buffer.writeInt32LE(this._b, 4) + buffer.writeInt32LE(this._c, 8) + buffer.writeInt32LE(this._d, 12) + return buffer + } + + function rotl(x, n) { + return (x << n) | (x >>> (32 - n)) + } + + function fnF(a, b, c, d, m, k, s) { + return (rotl((a + ((b & c) | (~b & d)) + m + k) | 0, s) + b) | 0 + } + + function fnG(a, b, c, d, m, k, s) { + return (rotl((a + ((b & d) | (c & ~d)) + m + k) | 0, s) + b) | 0 + } + + function fnH(a, b, c, d, m, k, s) { + return (rotl((a + (b ^ c ^ d) + m + k) | 0, s) + b) | 0 + } + + function fnI(a, b, c, d, m, k, s) { + return (rotl((a + (c ^ (b | ~d)) + m + k) | 0, s) + b) | 0 + } + + module.exports = MD5 + }, + { "hash-base": 85, inherits: 100, "safe-buffer": 148 } + ], + 104: [ + function(require, module, exports) { + var bn = require("bn.js") + var brorand = require("brorand") + + function MillerRabin(rand) { + this.rand = rand || new brorand.Rand() + } + module.exports = MillerRabin + + MillerRabin.create = function create(rand) { + return new MillerRabin(rand) + } + + MillerRabin.prototype._randbelow = function _randbelow(n) { + var len = n.bitLength() + var min_bytes = Math.ceil(len / 8) + + // Generage random bytes until a number less than n is found. + // This ensures that 0..n-1 have an equal probability of being selected. + do var a = new bn(this.rand.generate(min_bytes)) + while (a.cmp(n) >= 0) + + return a + } + + MillerRabin.prototype._randrange = function _randrange(start, stop) { + // Generate a random number greater than or equal to start and less than stop. + var size = stop.sub(start) + return start.add(this._randbelow(size)) + } + + MillerRabin.prototype.test = function test(n, k, cb) { + var len = n.bitLength() + var red = bn.mont(n) + var rone = new bn(1).toRed(red) + + if (!k) k = Math.max(1, (len / 48) | 0) + + // Find d and s, (n - 1) = (2 ^ s) * d; + var n1 = n.subn(1) + for (var s = 0; !n1.testn(s); s++) {} + var d = n.shrn(s) + + var rn1 = n1.toRed(red) + + var prime = true + for (; k > 0; k--) { + var a = this._randrange(new bn(2), n1) + if (cb) cb(a) + + var x = a.toRed(red).redPow(d) + if (x.cmp(rone) === 0 || x.cmp(rn1) === 0) continue + + for (var i = 1; i < s; i++) { + x = x.redSqr() + + if (x.cmp(rone) === 0) return false + if (x.cmp(rn1) === 0) break + } + + if (i === s) return false + } + + return prime + } + + MillerRabin.prototype.getDivisor = function getDivisor(n, k) { + var len = n.bitLength() + var red = bn.mont(n) + var rone = new bn(1).toRed(red) + + if (!k) k = Math.max(1, (len / 48) | 0) + + // Find d and s, (n - 1) = (2 ^ s) * d; + var n1 = n.subn(1) + for (var s = 0; !n1.testn(s); s++) {} + var d = n.shrn(s) + + var rn1 = n1.toRed(red) + + for (; k > 0; k--) { + var a = this._randrange(new bn(2), n1) + + var g = n.gcd(a) + if (g.cmpn(1) !== 0) return g + + var x = a.toRed(red).redPow(d) + if (x.cmp(rone) === 0 || x.cmp(rn1) === 0) continue + + for (var i = 1; i < s; i++) { + x = x.redSqr() + + if (x.cmp(rone) === 0) + return x + .fromRed() + .subn(1) + .gcd(n) + if (x.cmp(rn1) === 0) break + } + + if (i === s) { + x = x.redSqr() + return x + .fromRed() + .subn(1) + .gcd(n) + } + } + + return false + } + }, + { "bn.js": 17, brorand: 18 } + ], + 105: [ + function(require, module, exports) { + module.exports = assert + + function assert(val, msg) { + if (!val) throw new Error(msg || "Assertion failed") + } + + assert.equal = function assertEqual(l, r, msg) { + if (l != r) + throw new Error(msg || "Assertion failed: " + l + " != " + r) + } + }, + {} + ], + 106: [ + function(require, module, exports) { + "use strict" + + var utils = exports + + function toArray(msg, enc) { + if (Array.isArray(msg)) return msg.slice() + if (!msg) return [] + var res = [] + if (typeof msg !== "string") { + for (var i = 0; i < msg.length; i++) res[i] = msg[i] | 0 + return res + } + if (enc === "hex") { + msg = msg.replace(/[^a-z0-9]+/gi, "") + if (msg.length % 2 !== 0) msg = "0" + msg + for (var i = 0; i < msg.length; i += 2) + res.push(parseInt(msg[i] + msg[i + 1], 16)) + } else { + for (var i = 0; i < msg.length; i++) { + var c = msg.charCodeAt(i) + var hi = c >> 8 + var lo = c & 0xff + if (hi) res.push(hi, lo) + else res.push(lo) + } + } + return res + } + utils.toArray = toArray + + function zero2(word) { + if (word.length === 1) return "0" + word + else return word + } + utils.zero2 = zero2 + + function toHex(msg) { + var res = "" + for (var i = 0; i < msg.length; i++) + res += zero2(msg[i].toString(16)) + return res + } + utils.toHex = toHex + + utils.encode = function encode(arr, enc) { + if (enc === "hex") return toHex(arr) + else return arr + } + }, + {} + ], + 107: [ + function(require, module, exports) { + exports.endianness = function() { + return "LE" + } + + exports.hostname = function() { + if (typeof location !== "undefined") { + return location.hostname + } else return "" + } + + exports.loadavg = function() { + return [] + } + + exports.uptime = function() { + return 0 + } + + exports.freemem = function() { + return Number.MAX_VALUE + } + + exports.totalmem = function() { + return Number.MAX_VALUE + } + + exports.cpus = function() { + return [] + } + + exports.type = function() { + return "Browser" + } + + exports.release = function() { + if (typeof navigator !== "undefined") { + return navigator.appVersion + } + return "" + } + + exports.networkInterfaces = exports.getNetworkInterfaces = function() { + return {} + } + + exports.arch = function() { + return "javascript" + } + + exports.platform = function() { + return "browser" + } + + exports.tmpdir = exports.tmpDir = function() { + return "/tmp" + } + + exports.EOL = "\n" + + exports.homedir = function() { + return "/" + } + }, + {} + ], + 108: [ + function(require, module, exports) { + module.exports = { + "2.16.840.1.101.3.4.1.1": "aes-128-ecb", + "2.16.840.1.101.3.4.1.2": "aes-128-cbc", + "2.16.840.1.101.3.4.1.3": "aes-128-ofb", + "2.16.840.1.101.3.4.1.4": "aes-128-cfb", + "2.16.840.1.101.3.4.1.21": "aes-192-ecb", + "2.16.840.1.101.3.4.1.22": "aes-192-cbc", + "2.16.840.1.101.3.4.1.23": "aes-192-ofb", + "2.16.840.1.101.3.4.1.24": "aes-192-cfb", + "2.16.840.1.101.3.4.1.41": "aes-256-ecb", + "2.16.840.1.101.3.4.1.42": "aes-256-cbc", + "2.16.840.1.101.3.4.1.43": "aes-256-ofb", + "2.16.840.1.101.3.4.1.44": "aes-256-cfb" + } + }, + {} + ], + 109: [ + function(require, module, exports) { + // from https://github.com/indutny/self-signed/blob/gh-pages/lib/asn1.js + // Fedor, you are amazing. + "use strict" + + var asn1 = require("asn1.js") + + exports.certificate = require("./certificate") + + var RSAPrivateKey = asn1.define("RSAPrivateKey", function() { + this.seq().obj( + this.key("version").int(), + this.key("modulus").int(), + this.key("publicExponent").int(), + this.key("privateExponent").int(), + this.key("prime1").int(), + this.key("prime2").int(), + this.key("exponent1").int(), + this.key("exponent2").int(), + this.key("coefficient").int() + ) + }) + exports.RSAPrivateKey = RSAPrivateKey + + var RSAPublicKey = asn1.define("RSAPublicKey", function() { + this.seq().obj( + this.key("modulus").int(), + this.key("publicExponent").int() + ) + }) + exports.RSAPublicKey = RSAPublicKey + + var PublicKey = asn1.define("SubjectPublicKeyInfo", function() { + this.seq().obj( + this.key("algorithm").use(AlgorithmIdentifier), + this.key("subjectPublicKey").bitstr() + ) + }) + exports.PublicKey = PublicKey + + var AlgorithmIdentifier = asn1.define( + "AlgorithmIdentifier", + function() { + this.seq().obj( + this.key("algorithm").objid(), + this.key("none") + .null_() + .optional(), + this.key("curve") + .objid() + .optional(), + this.key("params") + .seq() + .obj( + this.key("p").int(), + this.key("q").int(), + this.key("g").int() + ) + .optional() + ) + } + ) + + var PrivateKeyInfo = asn1.define("PrivateKeyInfo", function() { + this.seq().obj( + this.key("version").int(), + this.key("algorithm").use(AlgorithmIdentifier), + this.key("subjectPrivateKey").octstr() + ) + }) + exports.PrivateKey = PrivateKeyInfo + var EncryptedPrivateKeyInfo = asn1.define( + "EncryptedPrivateKeyInfo", + function() { + this.seq().obj( + this.key("algorithm") + .seq() + .obj( + this.key("id").objid(), + this.key("decrypt") + .seq() + .obj( + this.key("kde") + .seq() + .obj( + this.key("id").objid(), + this.key("kdeparams") + .seq() + .obj( + this.key("salt").octstr(), + this.key("iters").int() + ) + ), + this.key("cipher") + .seq() + .obj( + this.key("algo").objid(), + this.key("iv").octstr() + ) + ) + ), + this.key("subjectPrivateKey").octstr() + ) + } + ) + + exports.EncryptedPrivateKey = EncryptedPrivateKeyInfo + + var DSAPrivateKey = asn1.define("DSAPrivateKey", function() { + this.seq().obj( + this.key("version").int(), + this.key("p").int(), + this.key("q").int(), + this.key("g").int(), + this.key("pub_key").int(), + this.key("priv_key").int() + ) + }) + exports.DSAPrivateKey = DSAPrivateKey + + exports.DSAparam = asn1.define("DSAparam", function() { + this.int() + }) + + var ECPrivateKey = asn1.define("ECPrivateKey", function() { + this.seq().obj( + this.key("version").int(), + this.key("privateKey").octstr(), + this.key("parameters") + .optional() + .explicit(0) + .use(ECParameters), + this.key("publicKey") + .optional() + .explicit(1) + .bitstr() + ) + }) + exports.ECPrivateKey = ECPrivateKey + + var ECParameters = asn1.define("ECParameters", function() { + this.choice({ + namedCurve: this.objid() + }) + }) + + exports.signature = asn1.define("signature", function() { + this.seq().obj(this.key("r").int(), this.key("s").int()) + }) + }, + { "./certificate": 110, "asn1.js": 2 } + ], + 110: [ + function(require, module, exports) { + // from https://github.com/Rantanen/node-dtls/blob/25a7dc861bda38cfeac93a723500eea4f0ac2e86/Certificate.js + // thanks to @Rantanen + + "use strict" + + var asn = require("asn1.js") + + var Time = asn.define("Time", function() { + this.choice({ + utcTime: this.utctime(), + generalTime: this.gentime() + }) + }) + + var AttributeTypeValue = asn.define("AttributeTypeValue", function() { + this.seq().obj(this.key("type").objid(), this.key("value").any()) + }) + + var AlgorithmIdentifier = asn.define( + "AlgorithmIdentifier", + function() { + this.seq().obj( + this.key("algorithm").objid(), + this.key("parameters").optional() + ) + } + ) + + var SubjectPublicKeyInfo = asn.define( + "SubjectPublicKeyInfo", + function() { + this.seq().obj( + this.key("algorithm").use(AlgorithmIdentifier), + this.key("subjectPublicKey").bitstr() + ) + } + ) + + var RelativeDistinguishedName = asn.define( + "RelativeDistinguishedName", + function() { + this.setof(AttributeTypeValue) + } + ) + + var RDNSequence = asn.define("RDNSequence", function() { + this.seqof(RelativeDistinguishedName) + }) + + var Name = asn.define("Name", function() { + this.choice({ + rdnSequence: this.use(RDNSequence) + }) + }) + + var Validity = asn.define("Validity", function() { + this.seq().obj( + this.key("notBefore").use(Time), + this.key("notAfter").use(Time) + ) + }) + + var Extension = asn.define("Extension", function() { + this.seq().obj( + this.key("extnID").objid(), + this.key("critical") + .bool() + .def(false), + this.key("extnValue").octstr() + ) + }) + + var TBSCertificate = asn.define("TBSCertificate", function() { + this.seq().obj( + this.key("version") + .explicit(0) + .int(), + this.key("serialNumber").int(), + this.key("signature").use(AlgorithmIdentifier), + this.key("issuer").use(Name), + this.key("validity").use(Validity), + this.key("subject").use(Name), + this.key("subjectPublicKeyInfo").use(SubjectPublicKeyInfo), + this.key("issuerUniqueID") + .implicit(1) + .bitstr() + .optional(), + this.key("subjectUniqueID") + .implicit(2) + .bitstr() + .optional(), + this.key("extensions") + .explicit(3) + .seqof(Extension) + .optional() + ) + }) + + var X509Certificate = asn.define("X509Certificate", function() { + this.seq().obj( + this.key("tbsCertificate").use(TBSCertificate), + this.key("signatureAlgorithm").use(AlgorithmIdentifier), + this.key("signatureValue").bitstr() + ) + }) + + module.exports = X509Certificate + }, + { "asn1.js": 2 } + ], + 111: [ + function(require, module, exports) { + ;(function(Buffer) { + // adapted from https://github.com/apatil/pemstrip + var findProc = /Proc-Type: 4,ENCRYPTED[\n\r]+DEK-Info: AES-((?:128)|(?:192)|(?:256))-CBC,([0-9A-H]+)[\n\r]+([0-9A-z\n\r\+\/\=]+)[\n\r]+/m + var startRegex = /^-----BEGIN ((?:.* KEY)|CERTIFICATE)-----/m + var fullRegex = /^-----BEGIN ((?:.* KEY)|CERTIFICATE)-----([0-9A-z\n\r\+\/\=]+)-----END \1-----$/m + var evp = require("evp_bytestokey") + var ciphers = require("browserify-aes") + module.exports = function(okey, password) { + var key = okey.toString() + var match = key.match(findProc) + var decrypted + if (!match) { + var match2 = key.match(fullRegex) + decrypted = new Buffer( + match2[2].replace(/[\r\n]/g, ""), + "base64" + ) + } else { + var suite = "aes" + match[1] + var iv = new Buffer(match[2], "hex") + var cipherText = new Buffer( + match[3].replace(/[\r\n]/g, ""), + "base64" + ) + var cipherKey = evp( + password, + iv.slice(0, 8), + parseInt(match[1], 10) + ).key + var out = [] + var cipher = ciphers.createDecipheriv(suite, cipherKey, iv) + out.push(cipher.update(cipherText)) + out.push(cipher.final()) + decrypted = Buffer.concat(out) + } + var tag = key.match(startRegex)[1] + return { + tag: tag, + data: decrypted + } + } + }.call(this, require("buffer").Buffer)) + }, + { "browserify-aes": 22, buffer: 48, evp_bytestokey: 84 } + ], + 112: [ + function(require, module, exports) { + ;(function(Buffer) { + var asn1 = require("./asn1") + var aesid = require("./aesid.json") + var fixProc = require("./fixProc") + var ciphers = require("browserify-aes") + var compat = require("pbkdf2") + module.exports = parseKeys + + function parseKeys(buffer) { + var password + if (typeof buffer === "object" && !Buffer.isBuffer(buffer)) { + password = buffer.passphrase + buffer = buffer.key + } + if (typeof buffer === "string") { + buffer = new Buffer(buffer) + } + + var stripped = fixProc(buffer, password) + + var type = stripped.tag + var data = stripped.data + var subtype, ndata + switch (type) { + case "CERTIFICATE": + ndata = asn1.certificate.decode(data, "der").tbsCertificate + .subjectPublicKeyInfo + // falls through + case "PUBLIC KEY": + if (!ndata) { + ndata = asn1.PublicKey.decode(data, "der") + } + subtype = ndata.algorithm.algorithm.join(".") + switch (subtype) { + case "1.2.840.113549.1.1.1": + return asn1.RSAPublicKey.decode( + ndata.subjectPublicKey.data, + "der" + ) + case "1.2.840.10045.2.1": + ndata.subjectPrivateKey = ndata.subjectPublicKey + return { + type: "ec", + data: ndata + } + case "1.2.840.10040.4.1": + ndata.algorithm.params.pub_key = asn1.DSAparam.decode( + ndata.subjectPublicKey.data, + "der" + ) + return { + type: "dsa", + data: ndata.algorithm.params + } + default: + throw new Error("unknown key id " + subtype) + } + throw new Error("unknown key type " + type) + case "ENCRYPTED PRIVATE KEY": + data = asn1.EncryptedPrivateKey.decode(data, "der") + data = decrypt(data, password) + // falls through + case "PRIVATE KEY": + ndata = asn1.PrivateKey.decode(data, "der") + subtype = ndata.algorithm.algorithm.join(".") + switch (subtype) { + case "1.2.840.113549.1.1.1": + return asn1.RSAPrivateKey.decode( + ndata.subjectPrivateKey, + "der" + ) + case "1.2.840.10045.2.1": + return { + curve: ndata.algorithm.curve, + privateKey: asn1.ECPrivateKey.decode( + ndata.subjectPrivateKey, + "der" + ).privateKey + } + case "1.2.840.10040.4.1": + ndata.algorithm.params.priv_key = asn1.DSAparam.decode( + ndata.subjectPrivateKey, + "der" + ) + return { + type: "dsa", + params: ndata.algorithm.params + } + default: + throw new Error("unknown key id " + subtype) + } + throw new Error("unknown key type " + type) + case "RSA PUBLIC KEY": + return asn1.RSAPublicKey.decode(data, "der") + case "RSA PRIVATE KEY": + return asn1.RSAPrivateKey.decode(data, "der") + case "DSA PRIVATE KEY": + return { + type: "dsa", + params: asn1.DSAPrivateKey.decode(data, "der") + } + case "EC PRIVATE KEY": + data = asn1.ECPrivateKey.decode(data, "der") + return { + curve: data.parameters.value, + privateKey: data.privateKey + } + default: + throw new Error("unknown key type " + type) + } + } + parseKeys.signature = asn1.signature + function decrypt(data, password) { + var salt = data.algorithm.decrypt.kde.kdeparams.salt + var iters = parseInt( + data.algorithm.decrypt.kde.kdeparams.iters.toString(), + 10 + ) + var algo = aesid[data.algorithm.decrypt.cipher.algo.join(".")] + var iv = data.algorithm.decrypt.cipher.iv + var cipherText = data.subjectPrivateKey + var keylen = parseInt(algo.split("-")[1], 10) / 8 + var key = compat.pbkdf2Sync(password, salt, iters, keylen) + var cipher = ciphers.createDecipheriv(algo, key, iv) + var out = [] + out.push(cipher.update(cipherText)) + out.push(cipher.final()) + return Buffer.concat(out) + } + }.call(this, require("buffer").Buffer)) + }, + { + "./aesid.json": 108, + "./asn1": 109, + "./fixProc": 111, + "browserify-aes": 22, + buffer: 48, + pbkdf2: 114 + } + ], + 113: [ + function(require, module, exports) { + ;(function(process) { + // .dirname, .basename, and .extname methods are extracted from Node.js v8.11.1, + // backported and transplited with Babel, with backwards-compat fixes + + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + // resolves . and .. elements in a path array with directory names there + // must be no slashes, empty elements, or device names (c:\) in the array + // (so also no leading and trailing slashes - it does not distinguish + // relative and absolute paths) + function normalizeArray(parts, allowAboveRoot) { + // if the path tries to go above the root, `up` ends up > 0 + var up = 0 + for (var i = parts.length - 1; i >= 0; i--) { + var last = parts[i] + if (last === ".") { + parts.splice(i, 1) + } else if (last === "..") { + parts.splice(i, 1) + up++ + } else if (up) { + parts.splice(i, 1) + up-- + } + } + + // if the path is allowed to go above the root, restore leading ..s + if (allowAboveRoot) { + for (; up--; up) { + parts.unshift("..") + } + } + + return parts + } + + // path.resolve([from ...], to) + // posix version + exports.resolve = function() { + var resolvedPath = "", + resolvedAbsolute = false + + for ( + var i = arguments.length - 1; + i >= -1 && !resolvedAbsolute; + i-- + ) { + var path = i >= 0 ? arguments[i] : process.cwd() + + // Skip empty and invalid entries + if (typeof path !== "string") { + throw new TypeError( + "Arguments to path.resolve must be strings" + ) + } else if (!path) { + continue + } + + resolvedPath = path + "/" + resolvedPath + resolvedAbsolute = path.charAt(0) === "/" + } + + // At this point the path should be resolved to a full absolute path, but + // handle relative paths to be safe (might happen when process.cwd() fails) + + // Normalize the path + resolvedPath = normalizeArray( + filter(resolvedPath.split("/"), function(p) { + return !!p + }), + !resolvedAbsolute + ).join("/") + + return (resolvedAbsolute ? "/" : "") + resolvedPath || "." + } + + // path.normalize(path) + // posix version + exports.normalize = function(path) { + var isAbsolute = exports.isAbsolute(path), + trailingSlash = substr(path, -1) === "/" + + // Normalize the path + path = normalizeArray( + filter(path.split("/"), function(p) { + return !!p + }), + !isAbsolute + ).join("/") + + if (!path && !isAbsolute) { + path = "." + } + if (path && trailingSlash) { + path += "/" + } + + return (isAbsolute ? "/" : "") + path + } + + // posix version + exports.isAbsolute = function(path) { + return path.charAt(0) === "/" + } + + // posix version + exports.join = function() { + var paths = Array.prototype.slice.call(arguments, 0) + return exports.normalize( + filter(paths, function(p, index) { + if (typeof p !== "string") { + throw new TypeError( + "Arguments to path.join must be strings" + ) + } + return p + }).join("/") + ) + } + + // path.relative(from, to) + // posix version + exports.relative = function(from, to) { + from = exports.resolve(from).substr(1) + to = exports.resolve(to).substr(1) + + function trim(arr) { + var start = 0 + for (; start < arr.length; start++) { + if (arr[start] !== "") break + } + + var end = arr.length - 1 + for (; end >= 0; end--) { + if (arr[end] !== "") break + } + + if (start > end) return [] + return arr.slice(start, end - start + 1) + } + + var fromParts = trim(from.split("/")) + var toParts = trim(to.split("/")) + + var length = Math.min(fromParts.length, toParts.length) + var samePartsLength = length + for (var i = 0; i < length; i++) { + if (fromParts[i] !== toParts[i]) { + samePartsLength = i + break + } + } + + var outputParts = [] + for (var i = samePartsLength; i < fromParts.length; i++) { + outputParts.push("..") + } + + outputParts = outputParts.concat(toParts.slice(samePartsLength)) + + return outputParts.join("/") + } + + exports.sep = "/" + exports.delimiter = ":" + + exports.dirname = function(path) { + if (typeof path !== "string") path = path + "" + if (path.length === 0) return "." + var code = path.charCodeAt(0) + var hasRoot = code === 47 /*/*/ + var end = -1 + var matchedSlash = true + for (var i = path.length - 1; i >= 1; --i) { + code = path.charCodeAt(i) + if (code === 47 /*/*/) { + if (!matchedSlash) { + end = i + break + } + } else { + // We saw the first non-path separator + matchedSlash = false + } + } + + if (end === -1) return hasRoot ? "/" : "." + if (hasRoot && end === 1) { + // return '//'; + // Backwards-compat fix: + return "/" + } + return path.slice(0, end) + } + + function basename(path) { + if (typeof path !== "string") path = path + "" + + var start = 0 + var end = -1 + var matchedSlash = true + var i + + for (i = path.length - 1; i >= 0; --i) { + if (path.charCodeAt(i) === 47 /*/*/) { + // If we reached a path separator that was not part of a set of path + // separators at the end of the string, stop now + if (!matchedSlash) { + start = i + 1 + break + } + } else if (end === -1) { + // We saw the first non-path separator, mark this as the end of our + // path component + matchedSlash = false + end = i + 1 + } + } + + if (end === -1) return "" + return path.slice(start, end) + } + + // Uses a mixed approach for backwards-compatibility, as ext behavior changed + // in new Node.js versions, so only basename() above is backported here + exports.basename = function(path, ext) { + var f = basename(path) + if (ext && f.substr(-1 * ext.length) === ext) { + f = f.substr(0, f.length - ext.length) + } + return f + } + + exports.extname = function(path) { + if (typeof path !== "string") path = path + "" + var startDot = -1 + var startPart = 0 + var end = -1 + var matchedSlash = true + // Track the state of characters (if any) we see before our first dot and + // after any path separator we find + var preDotState = 0 + for (var i = path.length - 1; i >= 0; --i) { + var code = path.charCodeAt(i) + if (code === 47 /*/*/) { + // If we reached a path separator that was not part of a set of path + // separators at the end of the string, stop now + if (!matchedSlash) { + startPart = i + 1 + break + } + continue + } + if (end === -1) { + // We saw the first non-path separator, mark this as the end of our + // extension + matchedSlash = false + end = i + 1 + } + if (code === 46 /*.*/) { + // If this is our first dot, mark it as the start of our extension + if (startDot === -1) startDot = i + else if (preDotState !== 1) preDotState = 1 + } else if (startDot !== -1) { + // We saw a non-dot and non-path separator before our dot, so we should + // have a good chance at having a non-empty extension + preDotState = -1 + } + } + + if ( + startDot === -1 || + end === -1 || + // We saw a non-dot character immediately before the dot + preDotState === 0 || + // The (right-most) trimmed path component is exactly '..' + (preDotState === 1 && + startDot === end - 1 && + startDot === startPart + 1) + ) { + return "" + } + return path.slice(startDot, end) + } + + function filter(xs, f) { + if (xs.filter) return xs.filter(f) + var res = [] + for (var i = 0; i < xs.length; i++) { + if (f(xs[i], i, xs)) res.push(xs[i]) + } + return res + } + + // String.prototype.substr - negative index don't work in IE8 + var substr = + "ab".substr(-1) === "b" + ? function(str, start, len) { + return str.substr(start, len) + } + : function(str, start, len) { + if (start < 0) start = str.length + start + return str.substr(start, len) + } + }.call(this, require("_process"))) + }, + { _process: 120 } + ], + 114: [ + function(require, module, exports) { + exports.pbkdf2 = require("./lib/async") + exports.pbkdf2Sync = require("./lib/sync") + }, + { "./lib/async": 115, "./lib/sync": 118 } + ], + 115: [ + function(require, module, exports) { + ;(function(process, global) { + var checkParameters = require("./precondition") + var defaultEncoding = require("./default-encoding") + var sync = require("./sync") + var Buffer = require("safe-buffer").Buffer + + var ZERO_BUF + var subtle = global.crypto && global.crypto.subtle + var toBrowser = { + sha: "SHA-1", + "sha-1": "SHA-1", + sha1: "SHA-1", + sha256: "SHA-256", + "sha-256": "SHA-256", + sha384: "SHA-384", + "sha-384": "SHA-384", + "sha-512": "SHA-512", + sha512: "SHA-512" + } + var checks = [] + function checkNative(algo) { + if (global.process && !global.process.browser) { + return Promise.resolve(false) + } + if (!subtle || !subtle.importKey || !subtle.deriveBits) { + return Promise.resolve(false) + } + if (checks[algo] !== undefined) { + return checks[algo] + } + ZERO_BUF = ZERO_BUF || Buffer.alloc(8) + var prom = browserPbkdf2(ZERO_BUF, ZERO_BUF, 10, 128, algo) + .then(function() { + return true + }) + .catch(function() { + return false + }) + checks[algo] = prom + return prom + } + + function browserPbkdf2(password, salt, iterations, length, algo) { + return subtle + .importKey("raw", password, { name: "PBKDF2" }, false, [ + "deriveBits" + ]) + .then(function(key) { + return subtle.deriveBits( + { + name: "PBKDF2", + salt: salt, + iterations: iterations, + hash: { + name: algo + } + }, + key, + length << 3 + ) + }) + .then(function(res) { + return Buffer.from(res) + }) + } + + function resolvePromise(promise, callback) { + promise.then( + function(out) { + process.nextTick(function() { + callback(null, out) + }) + }, + function(e) { + process.nextTick(function() { + callback(e) + }) + } + ) + } + module.exports = function( + password, + salt, + iterations, + keylen, + digest, + callback + ) { + if (typeof digest === "function") { + callback = digest + digest = undefined + } + + digest = digest || "sha1" + var algo = toBrowser[digest.toLowerCase()] + + if (!algo || typeof global.Promise !== "function") { + return process.nextTick(function() { + var out + try { + out = sync(password, salt, iterations, keylen, digest) + } catch (e) { + return callback(e) + } + callback(null, out) + }) + } + + checkParameters(password, salt, iterations, keylen) + if (typeof callback !== "function") + throw new Error("No callback provided to pbkdf2") + if (!Buffer.isBuffer(password)) + password = Buffer.from(password, defaultEncoding) + if (!Buffer.isBuffer(salt)) + salt = Buffer.from(salt, defaultEncoding) + + resolvePromise( + checkNative(algo).then(function(resp) { + if (resp) + return browserPbkdf2( + password, + salt, + iterations, + keylen, + algo + ) + + return sync(password, salt, iterations, keylen, digest) + }), + callback + ) + } + }.call( + this, + require("_process"), + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + { + "./default-encoding": 116, + "./precondition": 117, + "./sync": 118, + _process: 120, + "safe-buffer": 148 + } + ], + 116: [ + function(require, module, exports) { + ;(function(process) { + var defaultEncoding + /* istanbul ignore next */ + if (process.browser) { + defaultEncoding = "utf-8" + } else { + var pVersionMajor = parseInt( + process.version.split(".")[0].slice(1), + 10 + ) + + defaultEncoding = pVersionMajor >= 6 ? "utf-8" : "binary" + } + module.exports = defaultEncoding + }.call(this, require("_process"))) + }, + { _process: 120 } + ], + 117: [ + function(require, module, exports) { + ;(function(Buffer) { + var MAX_ALLOC = Math.pow(2, 30) - 1 // default in iojs + + function checkBuffer(buf, name) { + if (typeof buf !== "string" && !Buffer.isBuffer(buf)) { + throw new TypeError(name + " must be a buffer or string") + } + } + + module.exports = function(password, salt, iterations, keylen) { + checkBuffer(password, "Password") + checkBuffer(salt, "Salt") + + if (typeof iterations !== "number") { + throw new TypeError("Iterations not a number") + } + + if (iterations < 0) { + throw new TypeError("Bad iterations") + } + + if (typeof keylen !== "number") { + throw new TypeError("Key length not a number") + } + + if (keylen < 0 || keylen > MAX_ALLOC || keylen !== keylen) { + /* eslint no-self-compare: 0 */ + throw new TypeError("Bad key length") + } + } + }.call(this, { isBuffer: require("../../is-buffer/index.js") })) + }, + { "../../is-buffer/index.js": 101 } + ], + 118: [ + function(require, module, exports) { + var md5 = require("create-hash/md5") + var RIPEMD160 = require("ripemd160") + var sha = require("sha.js") + + var checkParameters = require("./precondition") + var defaultEncoding = require("./default-encoding") + var Buffer = require("safe-buffer").Buffer + var ZEROS = Buffer.alloc(128) + var sizes = { + md5: 16, + sha1: 20, + sha224: 28, + sha256: 32, + sha384: 48, + sha512: 64, + rmd160: 20, + ripemd160: 20 + } + + function Hmac(alg, key, saltLen) { + var hash = getDigest(alg) + var blocksize = alg === "sha512" || alg === "sha384" ? 128 : 64 + + if (key.length > blocksize) { + key = hash(key) + } else if (key.length < blocksize) { + key = Buffer.concat([key, ZEROS], blocksize) + } + + var ipad = Buffer.allocUnsafe(blocksize + sizes[alg]) + var opad = Buffer.allocUnsafe(blocksize + sizes[alg]) + for (var i = 0; i < blocksize; i++) { + ipad[i] = key[i] ^ 0x36 + opad[i] = key[i] ^ 0x5c + } + + var ipad1 = Buffer.allocUnsafe(blocksize + saltLen + 4) + ipad.copy(ipad1, 0, 0, blocksize) + this.ipad1 = ipad1 + this.ipad2 = ipad + this.opad = opad + this.alg = alg + this.blocksize = blocksize + this.hash = hash + this.size = sizes[alg] + } + + Hmac.prototype.run = function(data, ipad) { + data.copy(ipad, this.blocksize) + var h = this.hash(ipad) + h.copy(this.opad, this.blocksize) + return this.hash(this.opad) + } + + function getDigest(alg) { + function shaFunc(data) { + return sha(alg) + .update(data) + .digest() + } + function rmd160Func(data) { + return new RIPEMD160().update(data).digest() + } + + if (alg === "rmd160" || alg === "ripemd160") return rmd160Func + if (alg === "md5") return md5 + return shaFunc + } + + function pbkdf2(password, salt, iterations, keylen, digest) { + checkParameters(password, salt, iterations, keylen) + + if (!Buffer.isBuffer(password)) + password = Buffer.from(password, defaultEncoding) + if (!Buffer.isBuffer(salt)) + salt = Buffer.from(salt, defaultEncoding) + + digest = digest || "sha1" + + var hmac = new Hmac(digest, password, salt.length) + + var DK = Buffer.allocUnsafe(keylen) + var block1 = Buffer.allocUnsafe(salt.length + 4) + salt.copy(block1, 0, 0, salt.length) + + var destPos = 0 + var hLen = sizes[digest] + var l = Math.ceil(keylen / hLen) + + for (var i = 1; i <= l; i++) { + block1.writeUInt32BE(i, salt.length) + + var T = hmac.run(block1, hmac.ipad1) + var U = T + + for (var j = 1; j < iterations; j++) { + U = hmac.run(U, hmac.ipad2) + for (var k = 0; k < hLen; k++) T[k] ^= U[k] + } + + T.copy(DK, destPos) + destPos += hLen + } + + return DK + } + + module.exports = pbkdf2 + }, + { + "./default-encoding": 116, + "./precondition": 117, + "create-hash/md5": 53, + ripemd160: 147, + "safe-buffer": 148, + "sha.js": 150 + } + ], + 119: [ + function(require, module, exports) { + ;(function(process) { + "use strict" + + if ( + !process.version || + process.version.indexOf("v0.") === 0 || + (process.version.indexOf("v1.") === 0 && + process.version.indexOf("v1.8.") !== 0) + ) { + module.exports = { nextTick: nextTick } + } else { + module.exports = process + } + + function nextTick(fn, arg1, arg2, arg3) { + if (typeof fn !== "function") { + throw new TypeError('"callback" argument must be a function') + } + var len = arguments.length + var args, i + switch (len) { + case 0: + case 1: + return process.nextTick(fn) + case 2: + return process.nextTick(function afterTickOne() { + fn.call(null, arg1) + }) + case 3: + return process.nextTick(function afterTickTwo() { + fn.call(null, arg1, arg2) + }) + case 4: + return process.nextTick(function afterTickThree() { + fn.call(null, arg1, arg2, arg3) + }) + default: + args = new Array(len - 1) + i = 0 + while (i < args.length) { + args[i++] = arguments[i] + } + return process.nextTick(function afterTick() { + fn.apply(null, args) + }) + } + } + }.call(this, require("_process"))) + }, + { _process: 120 } + ], + 120: [ + function(require, module, exports) { + // shim for using process in browser + var process = (module.exports = {}) + + // cached from whatever global is present so that test runners that stub it + // don't break things. But we need to wrap it in a try catch in case it is + // wrapped in strict mode code which doesn't define any globals. It's inside a + // function because try/catches deoptimize in certain engines. + + var cachedSetTimeout + var cachedClearTimeout + + function defaultSetTimout() { + throw new Error("setTimeout has not been defined") + } + function defaultClearTimeout() { + throw new Error("clearTimeout has not been defined") + } + ;(function() { + try { + if (typeof setTimeout === "function") { + cachedSetTimeout = setTimeout + } else { + cachedSetTimeout = defaultSetTimout + } + } catch (e) { + cachedSetTimeout = defaultSetTimout + } + try { + if (typeof clearTimeout === "function") { + cachedClearTimeout = clearTimeout + } else { + cachedClearTimeout = defaultClearTimeout + } + } catch (e) { + cachedClearTimeout = defaultClearTimeout + } + })() + function runTimeout(fun) { + if (cachedSetTimeout === setTimeout) { + //normal enviroments in sane situations + return setTimeout(fun, 0) + } + // if setTimeout wasn't available but was latter defined + if ( + (cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && + setTimeout + ) { + cachedSetTimeout = setTimeout + return setTimeout(fun, 0) + } + try { + // when when somebody has screwed with setTimeout but no I.E. maddness + return cachedSetTimeout(fun, 0) + } catch (e) { + try { + // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally + return cachedSetTimeout.call(null, fun, 0) + } catch (e) { + // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error + return cachedSetTimeout.call(this, fun, 0) + } + } + } + function runClearTimeout(marker) { + if (cachedClearTimeout === clearTimeout) { + //normal enviroments in sane situations + return clearTimeout(marker) + } + // if clearTimeout wasn't available but was latter defined + if ( + (cachedClearTimeout === defaultClearTimeout || + !cachedClearTimeout) && + clearTimeout + ) { + cachedClearTimeout = clearTimeout + return clearTimeout(marker) + } + try { + // when when somebody has screwed with setTimeout but no I.E. maddness + return cachedClearTimeout(marker) + } catch (e) { + try { + // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally + return cachedClearTimeout.call(null, marker) + } catch (e) { + // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error. + // Some versions of I.E. have different rules for clearTimeout vs setTimeout + return cachedClearTimeout.call(this, marker) + } + } + } + var queue = [] + var draining = false + var currentQueue + var queueIndex = -1 + + function cleanUpNextTick() { + if (!draining || !currentQueue) { + return + } + draining = false + if (currentQueue.length) { + queue = currentQueue.concat(queue) + } else { + queueIndex = -1 + } + if (queue.length) { + drainQueue() + } + } + + function drainQueue() { + if (draining) { + return + } + var timeout = runTimeout(cleanUpNextTick) + draining = true + + var len = queue.length + while (len) { + currentQueue = queue + queue = [] + while (++queueIndex < len) { + if (currentQueue) { + currentQueue[queueIndex].run() + } + } + queueIndex = -1 + len = queue.length + } + currentQueue = null + draining = false + runClearTimeout(timeout) + } + + process.nextTick = function(fun) { + var args = new Array(arguments.length - 1) + if (arguments.length > 1) { + for (var i = 1; i < arguments.length; i++) { + args[i - 1] = arguments[i] + } + } + queue.push(new Item(fun, args)) + if (queue.length === 1 && !draining) { + runTimeout(drainQueue) + } + } + + // v8 likes predictible objects + function Item(fun, array) { + this.fun = fun + this.array = array + } + Item.prototype.run = function() { + this.fun.apply(null, this.array) + } + process.title = "browser" + process.browser = true + process.env = {} + process.argv = [] + process.version = "" // empty string to avoid regexp issues + process.versions = {} + + function noop() {} + + process.on = noop + process.addListener = noop + process.once = noop + process.off = noop + process.removeListener = noop + process.removeAllListeners = noop + process.emit = noop + process.prependListener = noop + process.prependOnceListener = noop + + process.listeners = function(name) { + return [] + } + + process.binding = function(name) { + throw new Error("process.binding is not supported") + } + + process.cwd = function() { + return "/" + } + process.chdir = function(dir) { + throw new Error("process.chdir is not supported") + } + process.umask = function() { + return 0 + } + }, + {} + ], + 121: [ + function(require, module, exports) { + exports.publicEncrypt = require("./publicEncrypt") + exports.privateDecrypt = require("./privateDecrypt") + + exports.privateEncrypt = function privateEncrypt(key, buf) { + return exports.publicEncrypt(key, buf, true) + } + + exports.publicDecrypt = function publicDecrypt(key, buf) { + return exports.privateDecrypt(key, buf, true) + } + }, + { "./privateDecrypt": 123, "./publicEncrypt": 124 } + ], + 122: [ + function(require, module, exports) { + var createHash = require("create-hash") + var Buffer = require("safe-buffer").Buffer + + module.exports = function(seed, len) { + var t = Buffer.alloc(0) + var i = 0 + var c + while (t.length < len) { + c = i2ops(i++) + t = Buffer.concat([ + t, + createHash("sha1") + .update(seed) + .update(c) + .digest() + ]) + } + return t.slice(0, len) + } + + function i2ops(c) { + var out = Buffer.allocUnsafe(4) + out.writeUInt32BE(c, 0) + return out + } + }, + { "create-hash": 52, "safe-buffer": 148 } + ], + 123: [ + function(require, module, exports) { + var parseKeys = require("parse-asn1") + var mgf = require("./mgf") + var xor = require("./xor") + var BN = require("bn.js") + var crt = require("browserify-rsa") + var createHash = require("create-hash") + var withPublic = require("./withPublic") + var Buffer = require("safe-buffer").Buffer + + module.exports = function privateDecrypt(privateKey, enc, reverse) { + var padding + if (privateKey.padding) { + padding = privateKey.padding + } else if (reverse) { + padding = 1 + } else { + padding = 4 + } + + var key = parseKeys(privateKey) + var k = key.modulus.byteLength() + if (enc.length > k || new BN(enc).cmp(key.modulus) >= 0) { + throw new Error("decryption error") + } + var msg + if (reverse) { + msg = withPublic(new BN(enc), key) + } else { + msg = crt(enc, key) + } + var zBuffer = Buffer.alloc(k - msg.length) + msg = Buffer.concat([zBuffer, msg], k) + if (padding === 4) { + return oaep(key, msg) + } else if (padding === 1) { + return pkcs1(key, msg, reverse) + } else if (padding === 3) { + return msg + } else { + throw new Error("unknown padding") + } + } + + function oaep(key, msg) { + var k = key.modulus.byteLength() + var iHash = createHash("sha1") + .update(Buffer.alloc(0)) + .digest() + var hLen = iHash.length + if (msg[0] !== 0) { + throw new Error("decryption error") + } + var maskedSeed = msg.slice(1, hLen + 1) + var maskedDb = msg.slice(hLen + 1) + var seed = xor(maskedSeed, mgf(maskedDb, hLen)) + var db = xor(maskedDb, mgf(seed, k - hLen - 1)) + if (compare(iHash, db.slice(0, hLen))) { + throw new Error("decryption error") + } + var i = hLen + while (db[i] === 0) { + i++ + } + if (db[i++] !== 1) { + throw new Error("decryption error") + } + return db.slice(i) + } + + function pkcs1(key, msg, reverse) { + var p1 = msg.slice(0, 2) + var i = 2 + var status = 0 + while (msg[i++] !== 0) { + if (i >= msg.length) { + status++ + break + } + } + var ps = msg.slice(2, i - 1) + + if ( + (p1.toString("hex") !== "0002" && !reverse) || + (p1.toString("hex") !== "0001" && reverse) + ) { + status++ + } + if (ps.length < 8) { + status++ + } + if (status) { + throw new Error("decryption error") + } + return msg.slice(i) + } + function compare(a, b) { + a = Buffer.from(a) + b = Buffer.from(b) + var dif = 0 + var len = a.length + if (a.length !== b.length) { + dif++ + len = Math.min(a.length, b.length) + } + var i = -1 + while (++i < len) { + dif += a[i] ^ b[i] + } + return dif + } + }, + { + "./mgf": 122, + "./withPublic": 125, + "./xor": 126, + "bn.js": 17, + "browserify-rsa": 40, + "create-hash": 52, + "parse-asn1": 112, + "safe-buffer": 148 + } + ], + 124: [ + function(require, module, exports) { + var parseKeys = require("parse-asn1") + var randomBytes = require("randombytes") + var createHash = require("create-hash") + var mgf = require("./mgf") + var xor = require("./xor") + var BN = require("bn.js") + var withPublic = require("./withPublic") + var crt = require("browserify-rsa") + var Buffer = require("safe-buffer").Buffer + + module.exports = function publicEncrypt(publicKey, msg, reverse) { + var padding + if (publicKey.padding) { + padding = publicKey.padding + } else if (reverse) { + padding = 1 + } else { + padding = 4 + } + var key = parseKeys(publicKey) + var paddedMsg + if (padding === 4) { + paddedMsg = oaep(key, msg) + } else if (padding === 1) { + paddedMsg = pkcs1(key, msg, reverse) + } else if (padding === 3) { + paddedMsg = new BN(msg) + if (paddedMsg.cmp(key.modulus) >= 0) { + throw new Error("data too long for modulus") + } + } else { + throw new Error("unknown padding") + } + if (reverse) { + return crt(paddedMsg, key) + } else { + return withPublic(paddedMsg, key) + } + } + + function oaep(key, msg) { + var k = key.modulus.byteLength() + var mLen = msg.length + var iHash = createHash("sha1") + .update(Buffer.alloc(0)) + .digest() + var hLen = iHash.length + var hLen2 = 2 * hLen + if (mLen > k - hLen2 - 2) { + throw new Error("message too long") + } + var ps = Buffer.alloc(k - mLen - hLen2 - 2) + var dblen = k - hLen - 1 + var seed = randomBytes(hLen) + var maskedDb = xor( + Buffer.concat([iHash, ps, Buffer.alloc(1, 1), msg], dblen), + mgf(seed, dblen) + ) + var maskedSeed = xor(seed, mgf(maskedDb, hLen)) + return new BN( + Buffer.concat([Buffer.alloc(1), maskedSeed, maskedDb], k) + ) + } + function pkcs1(key, msg, reverse) { + var mLen = msg.length + var k = key.modulus.byteLength() + if (mLen > k - 11) { + throw new Error("message too long") + } + var ps + if (reverse) { + ps = Buffer.alloc(k - mLen - 3, 0xff) + } else { + ps = nonZero(k - mLen - 3) + } + return new BN( + Buffer.concat( + [Buffer.from([0, reverse ? 1 : 2]), ps, Buffer.alloc(1), msg], + k + ) + ) + } + function nonZero(len) { + var out = Buffer.allocUnsafe(len) + var i = 0 + var cache = randomBytes(len * 2) + var cur = 0 + var num + while (i < len) { + if (cur === cache.length) { + cache = randomBytes(len * 2) + cur = 0 + } + num = cache[cur++] + if (num) { + out[i++] = num + } + } + return out + } + }, + { + "./mgf": 122, + "./withPublic": 125, + "./xor": 126, + "bn.js": 17, + "browserify-rsa": 40, + "create-hash": 52, + "parse-asn1": 112, + randombytes: 131, + "safe-buffer": 148 + } + ], + 125: [ + function(require, module, exports) { + var BN = require("bn.js") + var Buffer = require("safe-buffer").Buffer + + function withPublic(paddedMsg, key) { + return Buffer.from( + paddedMsg + .toRed(BN.mont(key.modulus)) + .redPow(new BN(key.publicExponent)) + .fromRed() + .toArray() + ) + } + + module.exports = withPublic + }, + { "bn.js": 17, "safe-buffer": 148 } + ], + 126: [ + function(require, module, exports) { + module.exports = function xor(a, b) { + var len = a.length + var i = -1 + while (++i < len) { + a[i] ^= b[i] + } + return a + } + }, + {} + ], + 127: [ + function(require, module, exports) { + ;(function(global) { + /*! https://mths.be/punycode v1.4.1 by @mathias */ + ;(function(root) { + /** Detect free variables */ + var freeExports = + typeof exports == "object" && + exports && + !exports.nodeType && + exports + var freeModule = + typeof module == "object" && + module && + !module.nodeType && + module + var freeGlobal = typeof global == "object" && global + if ( + freeGlobal.global === freeGlobal || + freeGlobal.window === freeGlobal || + freeGlobal.self === freeGlobal + ) { + root = freeGlobal + } + + /** + * The `punycode` object. + * @name punycode + * @type Object + */ + var punycode, + /** Highest positive signed 32-bit float value */ + maxInt = 2147483647, // aka. 0x7FFFFFFF or 2^31-1 + /** Bootstring parameters */ + base = 36, + tMin = 1, + tMax = 26, + skew = 38, + damp = 700, + initialBias = 72, + initialN = 128, // 0x80 + delimiter = "-", // '\x2D' + /** Regular expressions */ + regexPunycode = /^xn--/, + regexNonASCII = /[^\x20-\x7E]/, // unprintable ASCII chars + non-ASCII chars + regexSeparators = /[\x2E\u3002\uFF0E\uFF61]/g, // RFC 3490 separators + /** Error messages */ + errors = { + overflow: "Overflow: input needs wider integers to process", + "not-basic": "Illegal input >= 0x80 (not a basic code point)", + "invalid-input": "Invalid input" + }, + /** Convenience shortcuts */ + baseMinusTMin = base - tMin, + floor = Math.floor, + stringFromCharCode = String.fromCharCode, + /** Temporary variable */ + key + + /*--------------------------------------------------------------------------*/ + + /** + * A generic error utility function. + * @private + * @param {String} type The error type. + * @returns {Error} Throws a `RangeError` with the applicable error message. + */ + function error(type) { + throw new RangeError(errors[type]) + } + + /** + * A generic `Array#map` utility function. + * @private + * @param {Array} array The array to iterate over. + * @param {Function} callback The function that gets called for every array + * item. + * @returns {Array} A new array of values returned by the callback function. + */ + function map(array, fn) { + var length = array.length + var result = [] + while (length--) { + result[length] = fn(array[length]) + } + return result + } + + /** + * A simple `Array#map`-like wrapper to work with domain name strings or email + * addresses. + * @private + * @param {String} domain The domain name or email address. + * @param {Function} callback The function that gets called for every + * character. + * @returns {Array} A new string of characters returned by the callback + * function. + */ + function mapDomain(string, fn) { + var parts = string.split("@") + var result = "" + if (parts.length > 1) { + // In email addresses, only the domain name should be punycoded. Leave + // the local part (i.e. everything up to `@`) intact. + result = parts[0] + "@" + string = parts[1] + } + // Avoid `split(regex)` for IE8 compatibility. See #17. + string = string.replace(regexSeparators, "\x2E") + var labels = string.split(".") + var encoded = map(labels, fn).join(".") + return result + encoded + } + + /** + * Creates an array containing the numeric code points of each Unicode + * character in the string. While JavaScript uses UCS-2 internally, + * this function will convert a pair of surrogate halves (each of which + * UCS-2 exposes as separate characters) into a single code point, + * matching UTF-16. + * @see `punycode.ucs2.encode` + * @see + * @memberOf punycode.ucs2 + * @name decode + * @param {String} string The Unicode input string (UCS-2). + * @returns {Array} The new array of code points. + */ + function ucs2decode(string) { + var output = [], + counter = 0, + length = string.length, + value, + extra + while (counter < length) { + value = string.charCodeAt(counter++) + if (value >= 0xd800 && value <= 0xdbff && counter < length) { + // high surrogate, and there is a next character + extra = string.charCodeAt(counter++) + if ((extra & 0xfc00) == 0xdc00) { + // low surrogate + output.push( + ((value & 0x3ff) << 10) + (extra & 0x3ff) + 0x10000 + ) + } else { + // unmatched surrogate; only append this code unit, in case the next + // code unit is the high surrogate of a surrogate pair + output.push(value) + counter-- + } + } else { + output.push(value) + } + } + return output + } + + /** + * Creates a string based on an array of numeric code points. + * @see `punycode.ucs2.decode` + * @memberOf punycode.ucs2 + * @name encode + * @param {Array} codePoints The array of numeric code points. + * @returns {String} The new Unicode string (UCS-2). + */ + function ucs2encode(array) { + return map(array, function(value) { + var output = "" + if (value > 0xffff) { + value -= 0x10000 + output += stringFromCharCode( + ((value >>> 10) & 0x3ff) | 0xd800 + ) + value = 0xdc00 | (value & 0x3ff) + } + output += stringFromCharCode(value) + return output + }).join("") + } + + /** + * Converts a basic code point into a digit/integer. + * @see `digitToBasic()` + * @private + * @param {Number} codePoint The basic numeric code point value. + * @returns {Number} The numeric value of a basic code point (for use in + * representing integers) in the range `0` to `base - 1`, or `base` if + * the code point does not represent a value. + */ + function basicToDigit(codePoint) { + if (codePoint - 48 < 10) { + return codePoint - 22 + } + if (codePoint - 65 < 26) { + return codePoint - 65 + } + if (codePoint - 97 < 26) { + return codePoint - 97 + } + return base + } + + /** + * Converts a digit/integer into a basic code point. + * @see `basicToDigit()` + * @private + * @param {Number} digit The numeric value of a basic code point. + * @returns {Number} The basic code point whose value (when used for + * representing integers) is `digit`, which needs to be in the range + * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is + * used; else, the lowercase form is used. The behavior is undefined + * if `flag` is non-zero and `digit` has no uppercase form. + */ + function digitToBasic(digit, flag) { + // 0..25 map to ASCII a..z or A..Z + // 26..35 map to ASCII 0..9 + return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5) + } + + /** + * Bias adaptation function as per section 3.4 of RFC 3492. + * https://tools.ietf.org/html/rfc3492#section-3.4 + * @private + */ + function adapt(delta, numPoints, firstTime) { + var k = 0 + delta = firstTime ? floor(delta / damp) : delta >> 1 + delta += floor(delta / numPoints) + for ( + ; + /* no initialization */ delta > (baseMinusTMin * tMax) >> 1; + k += base + ) { + delta = floor(delta / baseMinusTMin) + } + return floor(k + ((baseMinusTMin + 1) * delta) / (delta + skew)) + } + + /** + * Converts a Punycode string of ASCII-only symbols to a string of Unicode + * symbols. + * @memberOf punycode + * @param {String} input The Punycode string of ASCII-only symbols. + * @returns {String} The resulting string of Unicode symbols. + */ + function decode(input) { + // Don't use UCS-2 + var output = [], + inputLength = input.length, + out, + i = 0, + n = initialN, + bias = initialBias, + basic, + j, + index, + oldi, + w, + k, + digit, + t, + /** Cached calculation results */ + baseMinusT + + // Handle the basic code points: let `basic` be the number of input code + // points before the last delimiter, or `0` if there is none, then copy + // the first basic code points to the output. + + basic = input.lastIndexOf(delimiter) + if (basic < 0) { + basic = 0 + } + + for (j = 0; j < basic; ++j) { + // if it's not a basic code point + if (input.charCodeAt(j) >= 0x80) { + error("not-basic") + } + output.push(input.charCodeAt(j)) + } + + // Main decoding loop: start just after the last delimiter if any basic code + // points were copied; start at the beginning otherwise. + + for ( + index = basic > 0 ? basic + 1 : 0; + index < inputLength /* no final expression */; + + ) { + // `index` is the index of the next character to be consumed. + // Decode a generalized variable-length integer into `delta`, + // which gets added to `i`. The overflow checking is easier + // if we increase `i` as we go, then subtract off its starting + // value at the end to obtain `delta`. + for ( + oldi = i, w = 1, k = base /* no condition */; + ; + k += base + ) { + if (index >= inputLength) { + error("invalid-input") + } + + digit = basicToDigit(input.charCodeAt(index++)) + + if (digit >= base || digit > floor((maxInt - i) / w)) { + error("overflow") + } + + i += digit * w + t = k <= bias ? tMin : k >= bias + tMax ? tMax : k - bias + + if (digit < t) { + break + } + + baseMinusT = base - t + if (w > floor(maxInt / baseMinusT)) { + error("overflow") + } + + w *= baseMinusT + } + + out = output.length + 1 + bias = adapt(i - oldi, out, oldi == 0) + + // `i` was supposed to wrap around from `out` to `0`, + // incrementing `n` each time, so we'll fix that now: + if (floor(i / out) > maxInt - n) { + error("overflow") + } + + n += floor(i / out) + i %= out + + // Insert `n` at position `i` of the output + output.splice(i++, 0, n) + } + + return ucs2encode(output) + } + + /** + * Converts a string of Unicode symbols (e.g. a domain name label) to a + * Punycode string of ASCII-only symbols. + * @memberOf punycode + * @param {String} input The string of Unicode symbols. + * @returns {String} The resulting Punycode string of ASCII-only symbols. + */ + function encode(input) { + var n, + delta, + handledCPCount, + basicLength, + bias, + j, + m, + q, + k, + t, + currentValue, + output = [], + /** `inputLength` will hold the number of code points in `input`. */ + inputLength, + /** Cached calculation results */ + handledCPCountPlusOne, + baseMinusT, + qMinusT + + // Convert the input in UCS-2 to Unicode + input = ucs2decode(input) + + // Cache the length + inputLength = input.length + + // Initialize the state + n = initialN + delta = 0 + bias = initialBias + + // Handle the basic code points + for (j = 0; j < inputLength; ++j) { + currentValue = input[j] + if (currentValue < 0x80) { + output.push(stringFromCharCode(currentValue)) + } + } + + handledCPCount = basicLength = output.length + + // `handledCPCount` is the number of code points that have been handled; + // `basicLength` is the number of basic code points. + + // Finish the basic string - if it is not empty - with a delimiter + if (basicLength) { + output.push(delimiter) + } + + // Main encoding loop: + while (handledCPCount < inputLength) { + // All non-basic code points < n have been handled already. Find the next + // larger one: + for (m = maxInt, j = 0; j < inputLength; ++j) { + currentValue = input[j] + if (currentValue >= n && currentValue < m) { + m = currentValue + } + } + + // Increase `delta` enough to advance the decoder's state to , + // but guard against overflow + handledCPCountPlusOne = handledCPCount + 1 + if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) { + error("overflow") + } + + delta += (m - n) * handledCPCountPlusOne + n = m + + for (j = 0; j < inputLength; ++j) { + currentValue = input[j] + + if (currentValue < n && ++delta > maxInt) { + error("overflow") + } + + if (currentValue == n) { + // Represent delta as a generalized variable-length integer + for ( + q = delta, k = base /* no condition */; + ; + k += base + ) { + t = + k <= bias ? tMin : k >= bias + tMax ? tMax : k - bias + if (q < t) { + break + } + qMinusT = q - t + baseMinusT = base - t + output.push( + stringFromCharCode( + digitToBasic(t + (qMinusT % baseMinusT), 0) + ) + ) + q = floor(qMinusT / baseMinusT) + } + + output.push(stringFromCharCode(digitToBasic(q, 0))) + bias = adapt( + delta, + handledCPCountPlusOne, + handledCPCount == basicLength + ) + delta = 0 + ++handledCPCount + } + } + + ++delta + ++n + } + return output.join("") + } + + /** + * Converts a Punycode string representing a domain name or an email address + * to Unicode. Only the Punycoded parts of the input will be converted, i.e. + * it doesn't matter if you call it on a string that has already been + * converted to Unicode. + * @memberOf punycode + * @param {String} input The Punycoded domain name or email address to + * convert to Unicode. + * @returns {String} The Unicode representation of the given Punycode + * string. + */ + function toUnicode(input) { + return mapDomain(input, function(string) { + return regexPunycode.test(string) + ? decode(string.slice(4).toLowerCase()) + : string + }) + } + + /** + * Converts a Unicode string representing a domain name or an email address to + * Punycode. Only the non-ASCII parts of the domain name will be converted, + * i.e. it doesn't matter if you call it with a domain that's already in + * ASCII. + * @memberOf punycode + * @param {String} input The domain name or email address to convert, as a + * Unicode string. + * @returns {String} The Punycode representation of the given domain name or + * email address. + */ + function toASCII(input) { + return mapDomain(input, function(string) { + return regexNonASCII.test(string) + ? "xn--" + encode(string) + : string + }) + } + + /*--------------------------------------------------------------------------*/ + + /** Define the public API */ + punycode = { + /** + * A string representing the current Punycode.js version number. + * @memberOf punycode + * @type String + */ + version: "1.4.1", + /** + * An object of methods to convert from JavaScript's internal character + * representation (UCS-2) to Unicode code points, and back. + * @see + * @memberOf punycode + * @type Object + */ + ucs2: { + decode: ucs2decode, + encode: ucs2encode + }, + decode: decode, + encode: encode, + toASCII: toASCII, + toUnicode: toUnicode + } + + /** Expose `punycode` */ + // Some AMD build optimizers, like r.js, check for specific condition patterns + // like the following: + if ( + typeof define == "function" && + typeof define.amd == "object" && + define.amd + ) { + define("punycode", function() { + return punycode + }) + } else if (freeExports && freeModule) { + if (module.exports == freeExports) { + // in Node.js, io.js, or RingoJS v0.8.0+ + freeModule.exports = punycode + } else { + // in Narwhal or RingoJS v0.7.0- + for (key in punycode) { + punycode.hasOwnProperty(key) && + (freeExports[key] = punycode[key]) + } + } + } else { + // in Rhino or a web browser + root.punycode = punycode + } + })(this) + }.call( + this, + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + {} + ], + 128: [ + function(require, module, exports) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + "use strict" + + // If obj.hasOwnProperty has been overridden, then calling + // obj.hasOwnProperty(prop) will break. + // See: https://github.com/joyent/node/issues/1707 + function hasOwnProperty(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop) + } + + module.exports = function(qs, sep, eq, options) { + sep = sep || "&" + eq = eq || "=" + var obj = {} + + if (typeof qs !== "string" || qs.length === 0) { + return obj + } + + var regexp = /\+/g + qs = qs.split(sep) + + var maxKeys = 1000 + if (options && typeof options.maxKeys === "number") { + maxKeys = options.maxKeys + } + + var len = qs.length + // maxKeys <= 0 means that we should not limit keys count + if (maxKeys > 0 && len > maxKeys) { + len = maxKeys + } + + for (var i = 0; i < len; ++i) { + var x = qs[i].replace(regexp, "%20"), + idx = x.indexOf(eq), + kstr, + vstr, + k, + v + + if (idx >= 0) { + kstr = x.substr(0, idx) + vstr = x.substr(idx + 1) + } else { + kstr = x + vstr = "" + } + + k = decodeURIComponent(kstr) + v = decodeURIComponent(vstr) + + if (!hasOwnProperty(obj, k)) { + obj[k] = v + } else if (isArray(obj[k])) { + obj[k].push(v) + } else { + obj[k] = [obj[k], v] + } + } + + return obj + } + + var isArray = + Array.isArray || + function(xs) { + return Object.prototype.toString.call(xs) === "[object Array]" + } + }, + {} + ], + 129: [ + function(require, module, exports) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + "use strict" + + var stringifyPrimitive = function(v) { + switch (typeof v) { + case "string": + return v + + case "boolean": + return v ? "true" : "false" + + case "number": + return isFinite(v) ? v : "" + + default: + return "" + } + } + + module.exports = function(obj, sep, eq, name) { + sep = sep || "&" + eq = eq || "=" + if (obj === null) { + obj = undefined + } + + if (typeof obj === "object") { + return map(objectKeys(obj), function(k) { + var ks = encodeURIComponent(stringifyPrimitive(k)) + eq + if (isArray(obj[k])) { + return map(obj[k], function(v) { + return ks + encodeURIComponent(stringifyPrimitive(v)) + }).join(sep) + } else { + return ks + encodeURIComponent(stringifyPrimitive(obj[k])) + } + }).join(sep) + } + + if (!name) return "" + return ( + encodeURIComponent(stringifyPrimitive(name)) + + eq + + encodeURIComponent(stringifyPrimitive(obj)) + ) + } + + var isArray = + Array.isArray || + function(xs) { + return Object.prototype.toString.call(xs) === "[object Array]" + } + + function map(xs, f) { + if (xs.map) return xs.map(f) + var res = [] + for (var i = 0; i < xs.length; i++) { + res.push(f(xs[i], i)) + } + return res + } + + var objectKeys = + Object.keys || + function(obj) { + var res = [] + for (var key in obj) { + if (Object.prototype.hasOwnProperty.call(obj, key)) + res.push(key) + } + return res + } + }, + {} + ], + 130: [ + function(require, module, exports) { + "use strict" + + exports.decode = exports.parse = require("./decode") + exports.encode = exports.stringify = require("./encode") + }, + { "./decode": 128, "./encode": 129 } + ], + 131: [ + function(require, module, exports) { + ;(function(process, global) { + "use strict" + + function oldBrowser() { + throw new Error( + "Secure random number generation is not supported by this browser.\nUse Chrome, Firefox or Internet Explorer 11" + ) + } + + var Buffer = require("safe-buffer").Buffer + var crypto = global.crypto || global.msCrypto + + if (crypto && crypto.getRandomValues) { + module.exports = randomBytes + } else { + module.exports = oldBrowser + } + + function randomBytes(size, cb) { + // phantomjs needs to throw + if (size > 65536) + throw new Error("requested too many random bytes") + // in case browserify isn't using the Uint8Array version + var rawBytes = new global.Uint8Array(size) + + // This will not work in older browsers. + // See https://developer.mozilla.org/en-US/docs/Web/API/window.crypto.getRandomValues + if (size > 0) { + // getRandomValues fails on IE if size == 0 + crypto.getRandomValues(rawBytes) + } + + // XXX: phantomjs doesn't like a buffer being passed here + var bytes = Buffer.from(rawBytes.buffer) + + if (typeof cb === "function") { + return process.nextTick(function() { + cb(null, bytes) + }) + } + + return bytes + } + }.call( + this, + require("_process"), + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + { _process: 120, "safe-buffer": 148 } + ], + 132: [ + function(require, module, exports) { + ;(function(process, global) { + "use strict" + + function oldBrowser() { + throw new Error( + "secure random number generation not supported by this browser\nuse chrome, FireFox or Internet Explorer 11" + ) + } + var safeBuffer = require("safe-buffer") + var randombytes = require("randombytes") + var Buffer = safeBuffer.Buffer + var kBufferMaxLength = safeBuffer.kMaxLength + var crypto = global.crypto || global.msCrypto + var kMaxUint32 = Math.pow(2, 32) - 1 + function assertOffset(offset, length) { + if (typeof offset !== "number" || offset !== offset) { + // eslint-disable-line no-self-compare + throw new TypeError("offset must be a number") + } + + if (offset > kMaxUint32 || offset < 0) { + throw new TypeError("offset must be a uint32") + } + + if (offset > kBufferMaxLength || offset > length) { + throw new RangeError("offset out of range") + } + } + + function assertSize(size, offset, length) { + if (typeof size !== "number" || size !== size) { + // eslint-disable-line no-self-compare + throw new TypeError("size must be a number") + } + + if (size > kMaxUint32 || size < 0) { + throw new TypeError("size must be a uint32") + } + + if (size + offset > length || size > kBufferMaxLength) { + throw new RangeError("buffer too small") + } + } + if ((crypto && crypto.getRandomValues) || !process.browser) { + exports.randomFill = randomFill + exports.randomFillSync = randomFillSync + } else { + exports.randomFill = oldBrowser + exports.randomFillSync = oldBrowser + } + function randomFill(buf, offset, size, cb) { + if ( + !Buffer.isBuffer(buf) && + !(buf instanceof global.Uint8Array) + ) { + throw new TypeError( + '"buf" argument must be a Buffer or Uint8Array' + ) + } + + if (typeof offset === "function") { + cb = offset + offset = 0 + size = buf.length + } else if (typeof size === "function") { + cb = size + size = buf.length - offset + } else if (typeof cb !== "function") { + throw new TypeError('"cb" argument must be a function') + } + assertOffset(offset, buf.length) + assertSize(size, offset, buf.length) + return actualFill(buf, offset, size, cb) + } + + function actualFill(buf, offset, size, cb) { + if (process.browser) { + var ourBuf = buf.buffer + var uint = new Uint8Array(ourBuf, offset, size) + crypto.getRandomValues(uint) + if (cb) { + process.nextTick(function() { + cb(null, buf) + }) + return + } + return buf + } + if (cb) { + randombytes(size, function(err, bytes) { + if (err) { + return cb(err) + } + bytes.copy(buf, offset) + cb(null, buf) + }) + return + } + var bytes = randombytes(size) + bytes.copy(buf, offset) + return buf + } + function randomFillSync(buf, offset, size) { + if (typeof offset === "undefined") { + offset = 0 + } + if ( + !Buffer.isBuffer(buf) && + !(buf instanceof global.Uint8Array) + ) { + throw new TypeError( + '"buf" argument must be a Buffer or Uint8Array' + ) + } + + assertOffset(offset, buf.length) + + if (size === undefined) size = buf.length - offset + + assertSize(size, offset, buf.length) + + return actualFill(buf, offset, size) + } + }.call( + this, + require("_process"), + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + { _process: 120, randombytes: 131, "safe-buffer": 148 } + ], + 133: [ + function(require, module, exports) { + module.exports = require("./lib/_stream_duplex.js") + }, + { "./lib/_stream_duplex.js": 134 } + ], + 134: [ + function(require, module, exports) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + // a duplex stream is just a stream that is both readable and writable. + // Since JS doesn't have multiple prototypal inheritance, this class + // prototypally inherits from Readable, and then parasitically from + // Writable. + + "use strict" + + /**/ + + var pna = require("process-nextick-args") + /**/ + + /**/ + var objectKeys = + Object.keys || + function(obj) { + var keys = [] + for (var key in obj) { + keys.push(key) + } + return keys + } + /**/ + + module.exports = Duplex + + /**/ + var util = require("core-util-is") + util.inherits = require("inherits") + /**/ + + var Readable = require("./_stream_readable") + var Writable = require("./_stream_writable") + + util.inherits(Duplex, Readable) + + { + // avoid scope creep, the keys array can then be collected + var keys = objectKeys(Writable.prototype) + for (var v = 0; v < keys.length; v++) { + var method = keys[v] + if (!Duplex.prototype[method]) + Duplex.prototype[method] = Writable.prototype[method] + } + } + + function Duplex(options) { + if (!(this instanceof Duplex)) return new Duplex(options) + + Readable.call(this, options) + Writable.call(this, options) + + if (options && options.readable === false) this.readable = false + + if (options && options.writable === false) this.writable = false + + this.allowHalfOpen = true + if (options && options.allowHalfOpen === false) + this.allowHalfOpen = false + + this.once("end", onend) + } + + Object.defineProperty(Duplex.prototype, "writableHighWaterMark", { + // making it explicit this property is not enumerable + // because otherwise some prototype manipulation in + // userland will fail + enumerable: false, + get: function() { + return this._writableState.highWaterMark + } + }) + + // the no-half-open enforcer + function onend() { + // if we allow half-open state, or if the writable side ended, + // then we're ok. + if (this.allowHalfOpen || this._writableState.ended) return + + // no more data can be written. + // But allow more writes to happen in this tick. + pna.nextTick(onEndNT, this) + } + + function onEndNT(self) { + self.end() + } + + Object.defineProperty(Duplex.prototype, "destroyed", { + get: function() { + if ( + this._readableState === undefined || + this._writableState === undefined + ) { + return false + } + return ( + this._readableState.destroyed && this._writableState.destroyed + ) + }, + set: function(value) { + // we ignore the value if the stream + // has not been initialized yet + if ( + this._readableState === undefined || + this._writableState === undefined + ) { + return + } + + // backward compatibility, the user is explicitly + // managing destroyed + this._readableState.destroyed = value + this._writableState.destroyed = value + } + }) + + Duplex.prototype._destroy = function(err, cb) { + this.push(null) + this.end() + + pna.nextTick(cb, err) + } + }, + { + "./_stream_readable": 136, + "./_stream_writable": 138, + "core-util-is": 50, + inherits: 100, + "process-nextick-args": 119 + } + ], + 135: [ + function(require, module, exports) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + // a passthrough stream. + // basically just the most minimal sort of Transform stream. + // Every written chunk gets output as-is. + + "use strict" + + module.exports = PassThrough + + var Transform = require("./_stream_transform") + + /**/ + var util = require("core-util-is") + util.inherits = require("inherits") + /**/ + + util.inherits(PassThrough, Transform) + + function PassThrough(options) { + if (!(this instanceof PassThrough)) return new PassThrough(options) + + Transform.call(this, options) + } + + PassThrough.prototype._transform = function(chunk, encoding, cb) { + cb(null, chunk) + } + }, + { "./_stream_transform": 137, "core-util-is": 50, inherits: 100 } + ], + 136: [ + function(require, module, exports) { + ;(function(process, global) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + "use strict" + + /**/ + + var pna = require("process-nextick-args") + /**/ + + module.exports = Readable + + /**/ + var isArray = require("isarray") + /**/ + + /**/ + var Duplex + /**/ + + Readable.ReadableState = ReadableState + + /**/ + var EE = require("events").EventEmitter + + var EElistenerCount = function(emitter, type) { + return emitter.listeners(type).length + } + /**/ + + /**/ + var Stream = require("./internal/streams/stream") + /**/ + + /**/ + + var Buffer = require("safe-buffer").Buffer + var OurUint8Array = global.Uint8Array || function() {} + function _uint8ArrayToBuffer(chunk) { + return Buffer.from(chunk) + } + function _isUint8Array(obj) { + return Buffer.isBuffer(obj) || obj instanceof OurUint8Array + } + + /**/ + + /**/ + var util = require("core-util-is") + util.inherits = require("inherits") + /**/ + + /**/ + var debugUtil = require("util") + var debug = void 0 + if (debugUtil && debugUtil.debuglog) { + debug = debugUtil.debuglog("stream") + } else { + debug = function() {} + } + /**/ + + var BufferList = require("./internal/streams/BufferList") + var destroyImpl = require("./internal/streams/destroy") + var StringDecoder + + util.inherits(Readable, Stream) + + var kProxyEvents = ["error", "close", "destroy", "pause", "resume"] + + function prependListener(emitter, event, fn) { + // Sadly this is not cacheable as some libraries bundle their own + // event emitter implementation with them. + if (typeof emitter.prependListener === "function") + return emitter.prependListener(event, fn) + + // This is a hack to make sure that our error handler is attached before any + // userland ones. NEVER DO THIS. This is here only because this code needs + // to continue to work with older versions of Node.js that do not include + // the prependListener() method. The goal is to eventually remove this hack. + if (!emitter._events || !emitter._events[event]) + emitter.on(event, fn) + else if (isArray(emitter._events[event])) + emitter._events[event].unshift(fn) + else emitter._events[event] = [fn, emitter._events[event]] + } + + function ReadableState(options, stream) { + Duplex = Duplex || require("./_stream_duplex") + + options = options || {} + + // Duplex streams are both readable and writable, but share + // the same options object. + // However, some cases require setting options to different + // values for the readable and the writable sides of the duplex stream. + // These options can be provided separately as readableXXX and writableXXX. + var isDuplex = stream instanceof Duplex + + // object stream flag. Used to make read(n) ignore n and to + // make all the buffer merging and length checks go away + this.objectMode = !!options.objectMode + + if (isDuplex) + this.objectMode = + this.objectMode || !!options.readableObjectMode + + // the point at which it stops calling _read() to fill the buffer + // Note: 0 is a valid value, means "don't call _read preemptively ever" + var hwm = options.highWaterMark + var readableHwm = options.readableHighWaterMark + var defaultHwm = this.objectMode ? 16 : 16 * 1024 + + if (hwm || hwm === 0) this.highWaterMark = hwm + else if (isDuplex && (readableHwm || readableHwm === 0)) + this.highWaterMark = readableHwm + else this.highWaterMark = defaultHwm + + // cast to ints. + this.highWaterMark = Math.floor(this.highWaterMark) + + // A linked list is used to store data chunks instead of an array because the + // linked list can remove elements from the beginning faster than + // array.shift() + this.buffer = new BufferList() + this.length = 0 + this.pipes = null + this.pipesCount = 0 + this.flowing = null + this.ended = false + this.endEmitted = false + this.reading = false + + // a flag to be able to tell if the event 'readable'/'data' is emitted + // immediately, or on a later tick. We set this to true at first, because + // any actions that shouldn't happen until "later" should generally also + // not happen before the first read call. + this.sync = true + + // whenever we return null, then we set a flag to say + // that we're awaiting a 'readable' event emission. + this.needReadable = false + this.emittedReadable = false + this.readableListening = false + this.resumeScheduled = false + + // has it been destroyed + this.destroyed = false + + // Crypto is kind of old and crusty. Historically, its default string + // encoding is 'binary' so we have to make this configurable. + // Everything else in the universe uses 'utf8', though. + this.defaultEncoding = options.defaultEncoding || "utf8" + + // the number of writers that are awaiting a drain event in .pipe()s + this.awaitDrain = 0 + + // if true, a maybeReadMore has been scheduled + this.readingMore = false + + this.decoder = null + this.encoding = null + if (options.encoding) { + if (!StringDecoder) + StringDecoder = require("string_decoder/").StringDecoder + this.decoder = new StringDecoder(options.encoding) + this.encoding = options.encoding + } + } + + function Readable(options) { + Duplex = Duplex || require("./_stream_duplex") + + if (!(this instanceof Readable)) return new Readable(options) + + this._readableState = new ReadableState(options, this) + + // legacy + this.readable = true + + if (options) { + if (typeof options.read === "function") + this._read = options.read + + if (typeof options.destroy === "function") + this._destroy = options.destroy + } + + Stream.call(this) + } + + Object.defineProperty(Readable.prototype, "destroyed", { + get: function() { + if (this._readableState === undefined) { + return false + } + return this._readableState.destroyed + }, + set: function(value) { + // we ignore the value if the stream + // has not been initialized yet + if (!this._readableState) { + return + } + + // backward compatibility, the user is explicitly + // managing destroyed + this._readableState.destroyed = value + } + }) + + Readable.prototype.destroy = destroyImpl.destroy + Readable.prototype._undestroy = destroyImpl.undestroy + Readable.prototype._destroy = function(err, cb) { + this.push(null) + cb(err) + } + + // Manually shove something into the read() buffer. + // This returns true if the highWaterMark has not been hit yet, + // similar to how Writable.write() returns true if you should + // write() some more. + Readable.prototype.push = function(chunk, encoding) { + var state = this._readableState + var skipChunkCheck + + if (!state.objectMode) { + if (typeof chunk === "string") { + encoding = encoding || state.defaultEncoding + if (encoding !== state.encoding) { + chunk = Buffer.from(chunk, encoding) + encoding = "" + } + skipChunkCheck = true + } + } else { + skipChunkCheck = true + } + + return readableAddChunk( + this, + chunk, + encoding, + false, + skipChunkCheck + ) + } + + // Unshift should *always* be something directly out of read() + Readable.prototype.unshift = function(chunk) { + return readableAddChunk(this, chunk, null, true, false) + } + + function readableAddChunk( + stream, + chunk, + encoding, + addToFront, + skipChunkCheck + ) { + var state = stream._readableState + if (chunk === null) { + state.reading = false + onEofChunk(stream, state) + } else { + var er + if (!skipChunkCheck) er = chunkInvalid(state, chunk) + if (er) { + stream.emit("error", er) + } else if (state.objectMode || (chunk && chunk.length > 0)) { + if ( + typeof chunk !== "string" && + !state.objectMode && + Object.getPrototypeOf(chunk) !== Buffer.prototype + ) { + chunk = _uint8ArrayToBuffer(chunk) + } + + if (addToFront) { + if (state.endEmitted) + stream.emit( + "error", + new Error("stream.unshift() after end event") + ) + else addChunk(stream, state, chunk, true) + } else if (state.ended) { + stream.emit("error", new Error("stream.push() after EOF")) + } else { + state.reading = false + if (state.decoder && !encoding) { + chunk = state.decoder.write(chunk) + if (state.objectMode || chunk.length !== 0) + addChunk(stream, state, chunk, false) + else maybeReadMore(stream, state) + } else { + addChunk(stream, state, chunk, false) + } + } + } else if (!addToFront) { + state.reading = false + } + } + + return needMoreData(state) + } + + function addChunk(stream, state, chunk, addToFront) { + if (state.flowing && state.length === 0 && !state.sync) { + stream.emit("data", chunk) + stream.read(0) + } else { + // update the buffer info. + state.length += state.objectMode ? 1 : chunk.length + if (addToFront) state.buffer.unshift(chunk) + else state.buffer.push(chunk) + + if (state.needReadable) emitReadable(stream) + } + maybeReadMore(stream, state) + } + + function chunkInvalid(state, chunk) { + var er + if ( + !_isUint8Array(chunk) && + typeof chunk !== "string" && + chunk !== undefined && + !state.objectMode + ) { + er = new TypeError("Invalid non-string/buffer chunk") + } + return er + } + + // if it's past the high water mark, we can push in some more. + // Also, if we have no data yet, we can stand some + // more bytes. This is to work around cases where hwm=0, + // such as the repl. Also, if the push() triggered a + // readable event, and the user called read(largeNumber) such that + // needReadable was set, then we ought to push more, so that another + // 'readable' event will be triggered. + function needMoreData(state) { + return ( + !state.ended && + (state.needReadable || + state.length < state.highWaterMark || + state.length === 0) + ) + } + + Readable.prototype.isPaused = function() { + return this._readableState.flowing === false + } + + // backwards compatibility. + Readable.prototype.setEncoding = function(enc) { + if (!StringDecoder) + StringDecoder = require("string_decoder/").StringDecoder + this._readableState.decoder = new StringDecoder(enc) + this._readableState.encoding = enc + return this + } + + // Don't raise the hwm > 8MB + var MAX_HWM = 0x800000 + function computeNewHighWaterMark(n) { + if (n >= MAX_HWM) { + n = MAX_HWM + } else { + // Get the next highest power of 2 to prevent increasing hwm excessively in + // tiny amounts + n-- + n |= n >>> 1 + n |= n >>> 2 + n |= n >>> 4 + n |= n >>> 8 + n |= n >>> 16 + n++ + } + return n + } + + // This function is designed to be inlinable, so please take care when making + // changes to the function body. + function howMuchToRead(n, state) { + if (n <= 0 || (state.length === 0 && state.ended)) return 0 + if (state.objectMode) return 1 + if (n !== n) { + // Only flow one buffer at a time + if (state.flowing && state.length) + return state.buffer.head.data.length + else return state.length + } + // If we're asking for more than the current hwm, then raise the hwm. + if (n > state.highWaterMark) + state.highWaterMark = computeNewHighWaterMark(n) + if (n <= state.length) return n + // Don't have enough + if (!state.ended) { + state.needReadable = true + return 0 + } + return state.length + } + + // you can override either this method, or the async _read(n) below. + Readable.prototype.read = function(n) { + debug("read", n) + n = parseInt(n, 10) + var state = this._readableState + var nOrig = n + + if (n !== 0) state.emittedReadable = false + + // if we're doing read(0) to trigger a readable event, but we + // already have a bunch of data in the buffer, then just trigger + // the 'readable' event and move on. + if ( + n === 0 && + state.needReadable && + (state.length >= state.highWaterMark || state.ended) + ) { + debug("read: emitReadable", state.length, state.ended) + if (state.length === 0 && state.ended) endReadable(this) + else emitReadable(this) + return null + } + + n = howMuchToRead(n, state) + + // if we've ended, and we're now clear, then finish it up. + if (n === 0 && state.ended) { + if (state.length === 0) endReadable(this) + return null + } + + // All the actual chunk generation logic needs to be + // *below* the call to _read. The reason is that in certain + // synthetic stream cases, such as passthrough streams, _read + // may be a completely synchronous operation which may change + // the state of the read buffer, providing enough data when + // before there was *not* enough. + // + // So, the steps are: + // 1. Figure out what the state of things will be after we do + // a read from the buffer. + // + // 2. If that resulting state will trigger a _read, then call _read. + // Note that this may be asynchronous, or synchronous. Yes, it is + // deeply ugly to write APIs this way, but that still doesn't mean + // that the Readable class should behave improperly, as streams are + // designed to be sync/async agnostic. + // Take note if the _read call is sync or async (ie, if the read call + // has returned yet), so that we know whether or not it's safe to emit + // 'readable' etc. + // + // 3. Actually pull the requested chunks out of the buffer and return. + + // if we need a readable event, then we need to do some reading. + var doRead = state.needReadable + debug("need readable", doRead) + + // if we currently have less than the highWaterMark, then also read some + if ( + state.length === 0 || + state.length - n < state.highWaterMark + ) { + doRead = true + debug("length less than watermark", doRead) + } + + // however, if we've ended, then there's no point, and if we're already + // reading, then it's unnecessary. + if (state.ended || state.reading) { + doRead = false + debug("reading or ended", doRead) + } else if (doRead) { + debug("do read") + state.reading = true + state.sync = true + // if the length is currently zero, then we *need* a readable event. + if (state.length === 0) state.needReadable = true + // call internal read method + this._read(state.highWaterMark) + state.sync = false + // If _read pushed data synchronously, then `reading` will be false, + // and we need to re-evaluate how much data we can return to the user. + if (!state.reading) n = howMuchToRead(nOrig, state) + } + + var ret + if (n > 0) ret = fromList(n, state) + else ret = null + + if (ret === null) { + state.needReadable = true + n = 0 + } else { + state.length -= n + } + + if (state.length === 0) { + // If we have nothing in the buffer, then we want to know + // as soon as we *do* get something into the buffer. + if (!state.ended) state.needReadable = true + + // If we tried to read() past the EOF, then emit end on the next tick. + if (nOrig !== n && state.ended) endReadable(this) + } + + if (ret !== null) this.emit("data", ret) + + return ret + } + + function onEofChunk(stream, state) { + if (state.ended) return + if (state.decoder) { + var chunk = state.decoder.end() + if (chunk && chunk.length) { + state.buffer.push(chunk) + state.length += state.objectMode ? 1 : chunk.length + } + } + state.ended = true + + // emit 'readable' now to make sure it gets picked up. + emitReadable(stream) + } + + // Don't emit readable right away in sync mode, because this can trigger + // another read() call => stack overflow. This way, it might trigger + // a nextTick recursion warning, but that's not so bad. + function emitReadable(stream) { + var state = stream._readableState + state.needReadable = false + if (!state.emittedReadable) { + debug("emitReadable", state.flowing) + state.emittedReadable = true + if (state.sync) pna.nextTick(emitReadable_, stream) + else emitReadable_(stream) + } + } + + function emitReadable_(stream) { + debug("emit readable") + stream.emit("readable") + flow(stream) + } + + // at this point, the user has presumably seen the 'readable' event, + // and called read() to consume some data. that may have triggered + // in turn another _read(n) call, in which case reading = true if + // it's in progress. + // However, if we're not ended, or reading, and the length < hwm, + // then go ahead and try to read some more preemptively. + function maybeReadMore(stream, state) { + if (!state.readingMore) { + state.readingMore = true + pna.nextTick(maybeReadMore_, stream, state) + } + } + + function maybeReadMore_(stream, state) { + var len = state.length + while ( + !state.reading && + !state.flowing && + !state.ended && + state.length < state.highWaterMark + ) { + debug("maybeReadMore read 0") + stream.read(0) + if (len === state.length) + // didn't get any data, stop spinning. + break + else len = state.length + } + state.readingMore = false + } + + // abstract method. to be overridden in specific implementation classes. + // call cb(er, data) where data is <= n in length. + // for virtual (non-string, non-buffer) streams, "length" is somewhat + // arbitrary, and perhaps not very meaningful. + Readable.prototype._read = function(n) { + this.emit("error", new Error("_read() is not implemented")) + } + + Readable.prototype.pipe = function(dest, pipeOpts) { + var src = this + var state = this._readableState + + switch (state.pipesCount) { + case 0: + state.pipes = dest + break + case 1: + state.pipes = [state.pipes, dest] + break + default: + state.pipes.push(dest) + break + } + state.pipesCount += 1 + debug("pipe count=%d opts=%j", state.pipesCount, pipeOpts) + + var doEnd = + (!pipeOpts || pipeOpts.end !== false) && + dest !== process.stdout && + dest !== process.stderr + + var endFn = doEnd ? onend : unpipe + if (state.endEmitted) pna.nextTick(endFn) + else src.once("end", endFn) + + dest.on("unpipe", onunpipe) + function onunpipe(readable, unpipeInfo) { + debug("onunpipe") + if (readable === src) { + if (unpipeInfo && unpipeInfo.hasUnpiped === false) { + unpipeInfo.hasUnpiped = true + cleanup() + } + } + } + + function onend() { + debug("onend") + dest.end() + } + + // when the dest drains, it reduces the awaitDrain counter + // on the source. This would be more elegant with a .once() + // handler in flow(), but adding and removing repeatedly is + // too slow. + var ondrain = pipeOnDrain(src) + dest.on("drain", ondrain) + + var cleanedUp = false + function cleanup() { + debug("cleanup") + // cleanup event handlers once the pipe is broken + dest.removeListener("close", onclose) + dest.removeListener("finish", onfinish) + dest.removeListener("drain", ondrain) + dest.removeListener("error", onerror) + dest.removeListener("unpipe", onunpipe) + src.removeListener("end", onend) + src.removeListener("end", unpipe) + src.removeListener("data", ondata) + + cleanedUp = true + + // if the reader is waiting for a drain event from this + // specific writer, then it would cause it to never start + // flowing again. + // So, if this is awaiting a drain, then we just call it now. + // If we don't know, then assume that we are waiting for one. + if ( + state.awaitDrain && + (!dest._writableState || dest._writableState.needDrain) + ) + ondrain() + } + + // If the user pushes more data while we're writing to dest then we'll end up + // in ondata again. However, we only want to increase awaitDrain once because + // dest will only emit one 'drain' event for the multiple writes. + // => Introduce a guard on increasing awaitDrain. + var increasedAwaitDrain = false + src.on("data", ondata) + function ondata(chunk) { + debug("ondata") + increasedAwaitDrain = false + var ret = dest.write(chunk) + if (false === ret && !increasedAwaitDrain) { + // If the user unpiped during `dest.write()`, it is possible + // to get stuck in a permanently paused state if that write + // also returned false. + // => Check whether `dest` is still a piping destination. + if ( + ((state.pipesCount === 1 && state.pipes === dest) || + (state.pipesCount > 1 && + indexOf(state.pipes, dest) !== -1)) && + !cleanedUp + ) { + debug( + "false write response, pause", + src._readableState.awaitDrain + ) + src._readableState.awaitDrain++ + increasedAwaitDrain = true + } + src.pause() + } + } + + // if the dest has an error, then stop piping into it. + // however, don't suppress the throwing behavior for this. + function onerror(er) { + debug("onerror", er) + unpipe() + dest.removeListener("error", onerror) + if (EElistenerCount(dest, "error") === 0) dest.emit("error", er) + } + + // Make sure our error handler is attached before userland ones. + prependListener(dest, "error", onerror) + + // Both close and finish should trigger unpipe, but only once. + function onclose() { + dest.removeListener("finish", onfinish) + unpipe() + } + dest.once("close", onclose) + function onfinish() { + debug("onfinish") + dest.removeListener("close", onclose) + unpipe() + } + dest.once("finish", onfinish) + + function unpipe() { + debug("unpipe") + src.unpipe(dest) + } + + // tell the dest that it's being piped to + dest.emit("pipe", src) + + // start the flow if it hasn't been started already. + if (!state.flowing) { + debug("pipe resume") + src.resume() + } + + return dest + } + + function pipeOnDrain(src) { + return function() { + var state = src._readableState + debug("pipeOnDrain", state.awaitDrain) + if (state.awaitDrain) state.awaitDrain-- + if (state.awaitDrain === 0 && EElistenerCount(src, "data")) { + state.flowing = true + flow(src) + } + } + } + + Readable.prototype.unpipe = function(dest) { + var state = this._readableState + var unpipeInfo = { hasUnpiped: false } + + // if we're not piping anywhere, then do nothing. + if (state.pipesCount === 0) return this + + // just one destination. most common case. + if (state.pipesCount === 1) { + // passed in one, but it's not the right one. + if (dest && dest !== state.pipes) return this + + if (!dest) dest = state.pipes + + // got a match. + state.pipes = null + state.pipesCount = 0 + state.flowing = false + if (dest) dest.emit("unpipe", this, unpipeInfo) + return this + } + + // slow case. multiple pipe destinations. + + if (!dest) { + // remove all. + var dests = state.pipes + var len = state.pipesCount + state.pipes = null + state.pipesCount = 0 + state.flowing = false + + for (var i = 0; i < len; i++) { + dests[i].emit("unpipe", this, unpipeInfo) + } + return this + } + + // try to find the right one. + var index = indexOf(state.pipes, dest) + if (index === -1) return this + + state.pipes.splice(index, 1) + state.pipesCount -= 1 + if (state.pipesCount === 1) state.pipes = state.pipes[0] + + dest.emit("unpipe", this, unpipeInfo) + + return this + } + + // set up data events if they are asked for + // Ensure readable listeners eventually get something + Readable.prototype.on = function(ev, fn) { + var res = Stream.prototype.on.call(this, ev, fn) + + if (ev === "data") { + // Start flowing on next tick if stream isn't explicitly paused + if (this._readableState.flowing !== false) this.resume() + } else if (ev === "readable") { + var state = this._readableState + if (!state.endEmitted && !state.readableListening) { + state.readableListening = state.needReadable = true + state.emittedReadable = false + if (!state.reading) { + pna.nextTick(nReadingNextTick, this) + } else if (state.length) { + emitReadable(this) + } + } + } + + return res + } + Readable.prototype.addListener = Readable.prototype.on + + function nReadingNextTick(self) { + debug("readable nexttick read 0") + self.read(0) + } + + // pause() and resume() are remnants of the legacy readable stream API + // If the user uses them, then switch into old mode. + Readable.prototype.resume = function() { + var state = this._readableState + if (!state.flowing) { + debug("resume") + state.flowing = true + resume(this, state) + } + return this + } + + function resume(stream, state) { + if (!state.resumeScheduled) { + state.resumeScheduled = true + pna.nextTick(resume_, stream, state) + } + } + + function resume_(stream, state) { + if (!state.reading) { + debug("resume read 0") + stream.read(0) + } + + state.resumeScheduled = false + state.awaitDrain = 0 + stream.emit("resume") + flow(stream) + if (state.flowing && !state.reading) stream.read(0) + } + + Readable.prototype.pause = function() { + debug("call pause flowing=%j", this._readableState.flowing) + if (false !== this._readableState.flowing) { + debug("pause") + this._readableState.flowing = false + this.emit("pause") + } + return this + } + + function flow(stream) { + var state = stream._readableState + debug("flow", state.flowing) + while (state.flowing && stream.read() !== null) {} + } + + // wrap an old-style stream as the async data source. + // This is *not* part of the readable stream interface. + // It is an ugly unfortunate mess of history. + Readable.prototype.wrap = function(stream) { + var _this = this + + var state = this._readableState + var paused = false + + stream.on("end", function() { + debug("wrapped end") + if (state.decoder && !state.ended) { + var chunk = state.decoder.end() + if (chunk && chunk.length) _this.push(chunk) + } + + _this.push(null) + }) + + stream.on("data", function(chunk) { + debug("wrapped data") + if (state.decoder) chunk = state.decoder.write(chunk) + + // don't skip over falsy values in objectMode + if (state.objectMode && (chunk === null || chunk === undefined)) + return + else if (!state.objectMode && (!chunk || !chunk.length)) return + + var ret = _this.push(chunk) + if (!ret) { + paused = true + stream.pause() + } + }) + + // proxy all the other methods. + // important when wrapping filters and duplexes. + for (var i in stream) { + if (this[i] === undefined && typeof stream[i] === "function") { + this[i] = (function(method) { + return function() { + return stream[method].apply(stream, arguments) + } + })(i) + } + } + + // proxy certain important events. + for (var n = 0; n < kProxyEvents.length; n++) { + stream.on( + kProxyEvents[n], + this.emit.bind(this, kProxyEvents[n]) + ) + } + + // when we try to consume some more bytes, simply unpause the + // underlying stream. + this._read = function(n) { + debug("wrapped _read", n) + if (paused) { + paused = false + stream.resume() + } + } + + return this + } + + Object.defineProperty(Readable.prototype, "readableHighWaterMark", { + // making it explicit this property is not enumerable + // because otherwise some prototype manipulation in + // userland will fail + enumerable: false, + get: function() { + return this._readableState.highWaterMark + } + }) + + // exposed for testing purposes only. + Readable._fromList = fromList + + // Pluck off n bytes from an array of buffers. + // Length is the combined lengths of all the buffers in the list. + // This function is designed to be inlinable, so please take care when making + // changes to the function body. + function fromList(n, state) { + // nothing buffered + if (state.length === 0) return null + + var ret + if (state.objectMode) ret = state.buffer.shift() + else if (!n || n >= state.length) { + // read it all, truncate the list + if (state.decoder) ret = state.buffer.join("") + else if (state.buffer.length === 1) ret = state.buffer.head.data + else ret = state.buffer.concat(state.length) + state.buffer.clear() + } else { + // read part of list + ret = fromListPartial(n, state.buffer, state.decoder) + } + + return ret + } + + // Extracts only enough buffered data to satisfy the amount requested. + // This function is designed to be inlinable, so please take care when making + // changes to the function body. + function fromListPartial(n, list, hasStrings) { + var ret + if (n < list.head.data.length) { + // slice is the same for buffers and strings + ret = list.head.data.slice(0, n) + list.head.data = list.head.data.slice(n) + } else if (n === list.head.data.length) { + // first chunk is a perfect match + ret = list.shift() + } else { + // result spans more than one buffer + ret = hasStrings + ? copyFromBufferString(n, list) + : copyFromBuffer(n, list) + } + return ret + } + + // Copies a specified amount of characters from the list of buffered data + // chunks. + // This function is designed to be inlinable, so please take care when making + // changes to the function body. + function copyFromBufferString(n, list) { + var p = list.head + var c = 1 + var ret = p.data + n -= ret.length + while ((p = p.next)) { + var str = p.data + var nb = n > str.length ? str.length : n + if (nb === str.length) ret += str + else ret += str.slice(0, n) + n -= nb + if (n === 0) { + if (nb === str.length) { + ++c + if (p.next) list.head = p.next + else list.head = list.tail = null + } else { + list.head = p + p.data = str.slice(nb) + } + break + } + ++c + } + list.length -= c + return ret + } + + // Copies a specified amount of bytes from the list of buffered data chunks. + // This function is designed to be inlinable, so please take care when making + // changes to the function body. + function copyFromBuffer(n, list) { + var ret = Buffer.allocUnsafe(n) + var p = list.head + var c = 1 + p.data.copy(ret) + n -= p.data.length + while ((p = p.next)) { + var buf = p.data + var nb = n > buf.length ? buf.length : n + buf.copy(ret, ret.length - n, 0, nb) + n -= nb + if (n === 0) { + if (nb === buf.length) { + ++c + if (p.next) list.head = p.next + else list.head = list.tail = null + } else { + list.head = p + p.data = buf.slice(nb) + } + break + } + ++c + } + list.length -= c + return ret + } + + function endReadable(stream) { + var state = stream._readableState + + // If we get here before consuming all the bytes, then that is a + // bug in node. Should never happen. + if (state.length > 0) + throw new Error('"endReadable()" called on non-empty stream') + + if (!state.endEmitted) { + state.ended = true + pna.nextTick(endReadableNT, state, stream) + } + } + + function endReadableNT(state, stream) { + // Check that we didn't get one last unshift. + if (!state.endEmitted && state.length === 0) { + state.endEmitted = true + stream.readable = false + stream.emit("end") + } + } + + function indexOf(xs, x) { + for (var i = 0, l = xs.length; i < l; i++) { + if (xs[i] === x) return i + } + return -1 + } + }.call( + this, + require("_process"), + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + { + "./_stream_duplex": 134, + "./internal/streams/BufferList": 139, + "./internal/streams/destroy": 140, + "./internal/streams/stream": 141, + _process: 120, + "core-util-is": 50, + events: 83, + inherits: 100, + isarray: 102, + "process-nextick-args": 119, + "safe-buffer": 148, + "string_decoder/": 142, + util: 19 + } + ], + 137: [ + function(require, module, exports) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + // a transform stream is a readable/writable stream where you do + // something with the data. Sometimes it's called a "filter", + // but that's not a great name for it, since that implies a thing where + // some bits pass through, and others are simply ignored. (That would + // be a valid example of a transform, of course.) + // + // While the output is causally related to the input, it's not a + // necessarily symmetric or synchronous transformation. For example, + // a zlib stream might take multiple plain-text writes(), and then + // emit a single compressed chunk some time in the future. + // + // Here's how this works: + // + // The Transform stream has all the aspects of the readable and writable + // stream classes. When you write(chunk), that calls _write(chunk,cb) + // internally, and returns false if there's a lot of pending writes + // buffered up. When you call read(), that calls _read(n) until + // there's enough pending readable data buffered up. + // + // In a transform stream, the written data is placed in a buffer. When + // _read(n) is called, it transforms the queued up data, calling the + // buffered _write cb's as it consumes chunks. If consuming a single + // written chunk would result in multiple output chunks, then the first + // outputted bit calls the readcb, and subsequent chunks just go into + // the read buffer, and will cause it to emit 'readable' if necessary. + // + // This way, back-pressure is actually determined by the reading side, + // since _read has to be called to start processing a new chunk. However, + // a pathological inflate type of transform can cause excessive buffering + // here. For example, imagine a stream where every byte of input is + // interpreted as an integer from 0-255, and then results in that many + // bytes of output. Writing the 4 bytes {ff,ff,ff,ff} would result in + // 1kb of data being output. In this case, you could write a very small + // amount of input, and end up with a very large amount of output. In + // such a pathological inflating mechanism, there'd be no way to tell + // the system to stop doing the transform. A single 4MB write could + // cause the system to run out of memory. + // + // However, even in such a pathological case, only a single written chunk + // would be consumed, and then the rest would wait (un-transformed) until + // the results of the previous transformed chunk were consumed. + + "use strict" + + module.exports = Transform + + var Duplex = require("./_stream_duplex") + + /**/ + var util = require("core-util-is") + util.inherits = require("inherits") + /**/ + + util.inherits(Transform, Duplex) + + function afterTransform(er, data) { + var ts = this._transformState + ts.transforming = false + + var cb = ts.writecb + + if (!cb) { + return this.emit( + "error", + new Error("write callback called multiple times") + ) + } + + ts.writechunk = null + ts.writecb = null + + if (data != null) + // single equals check for both `null` and `undefined` + this.push(data) + + cb(er) + + var rs = this._readableState + rs.reading = false + if (rs.needReadable || rs.length < rs.highWaterMark) { + this._read(rs.highWaterMark) + } + } + + function Transform(options) { + if (!(this instanceof Transform)) return new Transform(options) + + Duplex.call(this, options) + + this._transformState = { + afterTransform: afterTransform.bind(this), + needTransform: false, + transforming: false, + writecb: null, + writechunk: null, + writeencoding: null + } + + // start out asking for a readable event once data is transformed. + this._readableState.needReadable = true + + // we have implemented the _read method, and done the other things + // that Readable wants before the first _read call, so unset the + // sync guard flag. + this._readableState.sync = false + + if (options) { + if (typeof options.transform === "function") + this._transform = options.transform + + if (typeof options.flush === "function") + this._flush = options.flush + } + + // When the writable side finishes, then flush out anything remaining. + this.on("prefinish", prefinish) + } + + function prefinish() { + var _this = this + + if (typeof this._flush === "function") { + this._flush(function(er, data) { + done(_this, er, data) + }) + } else { + done(this, null, null) + } + } + + Transform.prototype.push = function(chunk, encoding) { + this._transformState.needTransform = false + return Duplex.prototype.push.call(this, chunk, encoding) + } + + // This is the part where you do stuff! + // override this function in implementation classes. + // 'chunk' is an input chunk. + // + // Call `push(newChunk)` to pass along transformed output + // to the readable side. You may call 'push' zero or more times. + // + // Call `cb(err)` when you are done with this chunk. If you pass + // an error, then that'll put the hurt on the whole operation. If you + // never call cb(), then you'll never get another chunk. + Transform.prototype._transform = function(chunk, encoding, cb) { + throw new Error("_transform() is not implemented") + } + + Transform.prototype._write = function(chunk, encoding, cb) { + var ts = this._transformState + ts.writecb = cb + ts.writechunk = chunk + ts.writeencoding = encoding + if (!ts.transforming) { + var rs = this._readableState + if ( + ts.needTransform || + rs.needReadable || + rs.length < rs.highWaterMark + ) + this._read(rs.highWaterMark) + } + } + + // Doesn't matter what the args are here. + // _transform does all the work. + // That we got here means that the readable side wants more data. + Transform.prototype._read = function(n) { + var ts = this._transformState + + if (ts.writechunk !== null && ts.writecb && !ts.transforming) { + ts.transforming = true + this._transform( + ts.writechunk, + ts.writeencoding, + ts.afterTransform + ) + } else { + // mark that we need a transform, so that any data that comes in + // will get processed, now that we've asked for it. + ts.needTransform = true + } + } + + Transform.prototype._destroy = function(err, cb) { + var _this2 = this + + Duplex.prototype._destroy.call(this, err, function(err2) { + cb(err2) + _this2.emit("close") + }) + } + + function done(stream, er, data) { + if (er) return stream.emit("error", er) + + if (data != null) + // single equals check for both `null` and `undefined` + stream.push(data) + + // if there's nothing in the write buffer, then that means + // that nothing more will ever be provided + if (stream._writableState.length) + throw new Error("Calling transform done when ws.length != 0") + + if (stream._transformState.transforming) + throw new Error("Calling transform done when still transforming") + + return stream.push(null) + } + }, + { "./_stream_duplex": 134, "core-util-is": 50, inherits: 100 } + ], + 138: [ + function(require, module, exports) { + ;(function(process, global, setImmediate) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + // A bit simpler than readable streams. + // Implement an async ._write(chunk, encoding, cb), and it'll handle all + // the drain event emission and buffering. + + "use strict" + + /**/ + + var pna = require("process-nextick-args") + /**/ + + module.exports = Writable + + /* */ + function WriteReq(chunk, encoding, cb) { + this.chunk = chunk + this.encoding = encoding + this.callback = cb + this.next = null + } + + // It seems a linked list but it is not + // there will be only 2 of these for each stream + function CorkedRequest(state) { + var _this = this + + this.next = null + this.entry = null + this.finish = function() { + onCorkedFinish(_this, state) + } + } + /* */ + + /**/ + var asyncWrite = + !process.browser && + ["v0.10", "v0.9."].indexOf(process.version.slice(0, 5)) > -1 + ? setImmediate + : pna.nextTick + /**/ + + /**/ + var Duplex + /**/ + + Writable.WritableState = WritableState + + /**/ + var util = require("core-util-is") + util.inherits = require("inherits") + /**/ + + /**/ + var internalUtil = { + deprecate: require("util-deprecate") + } + /**/ + + /**/ + var Stream = require("./internal/streams/stream") + /**/ + + /**/ + + var Buffer = require("safe-buffer").Buffer + var OurUint8Array = global.Uint8Array || function() {} + function _uint8ArrayToBuffer(chunk) { + return Buffer.from(chunk) + } + function _isUint8Array(obj) { + return Buffer.isBuffer(obj) || obj instanceof OurUint8Array + } + + /**/ + + var destroyImpl = require("./internal/streams/destroy") + + util.inherits(Writable, Stream) + + function nop() {} + + function WritableState(options, stream) { + Duplex = Duplex || require("./_stream_duplex") + + options = options || {} + + // Duplex streams are both readable and writable, but share + // the same options object. + // However, some cases require setting options to different + // values for the readable and the writable sides of the duplex stream. + // These options can be provided separately as readableXXX and writableXXX. + var isDuplex = stream instanceof Duplex + + // object stream flag to indicate whether or not this stream + // contains buffers or objects. + this.objectMode = !!options.objectMode + + if (isDuplex) + this.objectMode = + this.objectMode || !!options.writableObjectMode + + // the point at which write() starts returning false + // Note: 0 is a valid value, means that we always return false if + // the entire buffer is not flushed immediately on write() + var hwm = options.highWaterMark + var writableHwm = options.writableHighWaterMark + var defaultHwm = this.objectMode ? 16 : 16 * 1024 + + if (hwm || hwm === 0) this.highWaterMark = hwm + else if (isDuplex && (writableHwm || writableHwm === 0)) + this.highWaterMark = writableHwm + else this.highWaterMark = defaultHwm + + // cast to ints. + this.highWaterMark = Math.floor(this.highWaterMark) + + // if _final has been called + this.finalCalled = false + + // drain event flag. + this.needDrain = false + // at the start of calling end() + this.ending = false + // when end() has been called, and returned + this.ended = false + // when 'finish' is emitted + this.finished = false + + // has it been destroyed + this.destroyed = false + + // should we decode strings into buffers before passing to _write? + // this is here so that some node-core streams can optimize string + // handling at a lower level. + var noDecode = options.decodeStrings === false + this.decodeStrings = !noDecode + + // Crypto is kind of old and crusty. Historically, its default string + // encoding is 'binary' so we have to make this configurable. + // Everything else in the universe uses 'utf8', though. + this.defaultEncoding = options.defaultEncoding || "utf8" + + // not an actual buffer we keep track of, but a measurement + // of how much we're waiting to get pushed to some underlying + // socket or file. + this.length = 0 + + // a flag to see when we're in the middle of a write. + this.writing = false + + // when true all writes will be buffered until .uncork() call + this.corked = 0 + + // a flag to be able to tell if the onwrite cb is called immediately, + // or on a later tick. We set this to true at first, because any + // actions that shouldn't happen until "later" should generally also + // not happen before the first write call. + this.sync = true + + // a flag to know if we're processing previously buffered items, which + // may call the _write() callback in the same tick, so that we don't + // end up in an overlapped onwrite situation. + this.bufferProcessing = false + + // the callback that's passed to _write(chunk,cb) + this.onwrite = function(er) { + onwrite(stream, er) + } + + // the callback that the user supplies to write(chunk,encoding,cb) + this.writecb = null + + // the amount that is being written when _write is called. + this.writelen = 0 + + this.bufferedRequest = null + this.lastBufferedRequest = null + + // number of pending user-supplied write callbacks + // this must be 0 before 'finish' can be emitted + this.pendingcb = 0 + + // emit prefinish if the only thing we're waiting for is _write cbs + // This is relevant for synchronous Transform streams + this.prefinished = false + + // True if the error was already emitted and should not be thrown again + this.errorEmitted = false + + // count buffered requests + this.bufferedRequestCount = 0 + + // allocate the first CorkedRequest, there is always + // one allocated and free to use, and we maintain at most two + this.corkedRequestsFree = new CorkedRequest(this) + } + + WritableState.prototype.getBuffer = function getBuffer() { + var current = this.bufferedRequest + var out = [] + while (current) { + out.push(current) + current = current.next + } + return out + } + + ;(function() { + try { + Object.defineProperty(WritableState.prototype, "buffer", { + get: internalUtil.deprecate( + function() { + return this.getBuffer() + }, + "_writableState.buffer is deprecated. Use _writableState.getBuffer " + + "instead.", + "DEP0003" + ) + }) + } catch (_) {} + })() + + // Test _writableState for inheritance to account for Duplex streams, + // whose prototype chain only points to Readable. + var realHasInstance + if ( + typeof Symbol === "function" && + Symbol.hasInstance && + typeof Function.prototype[Symbol.hasInstance] === "function" + ) { + realHasInstance = Function.prototype[Symbol.hasInstance] + Object.defineProperty(Writable, Symbol.hasInstance, { + value: function(object) { + if (realHasInstance.call(this, object)) return true + if (this !== Writable) return false + + return ( + object && object._writableState instanceof WritableState + ) + } + }) + } else { + realHasInstance = function(object) { + return object instanceof this + } + } + + function Writable(options) { + Duplex = Duplex || require("./_stream_duplex") + + // Writable ctor is applied to Duplexes, too. + // `realHasInstance` is necessary because using plain `instanceof` + // would return false, as no `_writableState` property is attached. + + // Trying to use the custom `instanceof` for Writable here will also break the + // Node.js LazyTransform implementation, which has a non-trivial getter for + // `_writableState` that would lead to infinite recursion. + if ( + !realHasInstance.call(Writable, this) && + !(this instanceof Duplex) + ) { + return new Writable(options) + } + + this._writableState = new WritableState(options, this) + + // legacy. + this.writable = true + + if (options) { + if (typeof options.write === "function") + this._write = options.write + + if (typeof options.writev === "function") + this._writev = options.writev + + if (typeof options.destroy === "function") + this._destroy = options.destroy + + if (typeof options.final === "function") + this._final = options.final + } + + Stream.call(this) + } + + // Otherwise people can pipe Writable streams, which is just wrong. + Writable.prototype.pipe = function() { + this.emit("error", new Error("Cannot pipe, not readable")) + } + + function writeAfterEnd(stream, cb) { + var er = new Error("write after end") + // TODO: defer error events consistently everywhere, not just the cb + stream.emit("error", er) + pna.nextTick(cb, er) + } + + // Checks that a user-supplied chunk is valid, especially for the particular + // mode the stream is in. Currently this means that `null` is never accepted + // and undefined/non-string values are only allowed in object mode. + function validChunk(stream, state, chunk, cb) { + var valid = true + var er = false + + if (chunk === null) { + er = new TypeError("May not write null values to stream") + } else if ( + typeof chunk !== "string" && + chunk !== undefined && + !state.objectMode + ) { + er = new TypeError("Invalid non-string/buffer chunk") + } + if (er) { + stream.emit("error", er) + pna.nextTick(cb, er) + valid = false + } + return valid + } + + Writable.prototype.write = function(chunk, encoding, cb) { + var state = this._writableState + var ret = false + var isBuf = !state.objectMode && _isUint8Array(chunk) + + if (isBuf && !Buffer.isBuffer(chunk)) { + chunk = _uint8ArrayToBuffer(chunk) + } + + if (typeof encoding === "function") { + cb = encoding + encoding = null + } + + if (isBuf) encoding = "buffer" + else if (!encoding) encoding = state.defaultEncoding + + if (typeof cb !== "function") cb = nop + + if (state.ended) writeAfterEnd(this, cb) + else if (isBuf || validChunk(this, state, chunk, cb)) { + state.pendingcb++ + ret = writeOrBuffer(this, state, isBuf, chunk, encoding, cb) + } + + return ret + } + + Writable.prototype.cork = function() { + var state = this._writableState + + state.corked++ + } + + Writable.prototype.uncork = function() { + var state = this._writableState + + if (state.corked) { + state.corked-- + + if ( + !state.writing && + !state.corked && + !state.finished && + !state.bufferProcessing && + state.bufferedRequest + ) + clearBuffer(this, state) + } + } + + Writable.prototype.setDefaultEncoding = function setDefaultEncoding( + encoding + ) { + // node::ParseEncoding() requires lower case. + if (typeof encoding === "string") + encoding = encoding.toLowerCase() + if ( + !( + [ + "hex", + "utf8", + "utf-8", + "ascii", + "binary", + "base64", + "ucs2", + "ucs-2", + "utf16le", + "utf-16le", + "raw" + ].indexOf((encoding + "").toLowerCase()) > -1 + ) + ) + throw new TypeError("Unknown encoding: " + encoding) + this._writableState.defaultEncoding = encoding + return this + } + + function decodeChunk(state, chunk, encoding) { + if ( + !state.objectMode && + state.decodeStrings !== false && + typeof chunk === "string" + ) { + chunk = Buffer.from(chunk, encoding) + } + return chunk + } + + Object.defineProperty(Writable.prototype, "writableHighWaterMark", { + // making it explicit this property is not enumerable + // because otherwise some prototype manipulation in + // userland will fail + enumerable: false, + get: function() { + return this._writableState.highWaterMark + } + }) + + // if we're already writing something, then just put this + // in the queue, and wait our turn. Otherwise, call _write + // If we return false, then we need a drain event, so set that flag. + function writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) { + if (!isBuf) { + var newChunk = decodeChunk(state, chunk, encoding) + if (chunk !== newChunk) { + isBuf = true + encoding = "buffer" + chunk = newChunk + } + } + var len = state.objectMode ? 1 : chunk.length + + state.length += len + + var ret = state.length < state.highWaterMark + // we must ensure that previous needDrain will not be reset to false. + if (!ret) state.needDrain = true + + if (state.writing || state.corked) { + var last = state.lastBufferedRequest + state.lastBufferedRequest = { + chunk: chunk, + encoding: encoding, + isBuf: isBuf, + callback: cb, + next: null + } + if (last) { + last.next = state.lastBufferedRequest + } else { + state.bufferedRequest = state.lastBufferedRequest + } + state.bufferedRequestCount += 1 + } else { + doWrite(stream, state, false, len, chunk, encoding, cb) + } + + return ret + } + + function doWrite(stream, state, writev, len, chunk, encoding, cb) { + state.writelen = len + state.writecb = cb + state.writing = true + state.sync = true + if (writev) stream._writev(chunk, state.onwrite) + else stream._write(chunk, encoding, state.onwrite) + state.sync = false + } + + function onwriteError(stream, state, sync, er, cb) { + --state.pendingcb + + if (sync) { + // defer the callback if we are being called synchronously + // to avoid piling up things on the stack + pna.nextTick(cb, er) + // this can emit finish, and it will always happen + // after error + pna.nextTick(finishMaybe, stream, state) + stream._writableState.errorEmitted = true + stream.emit("error", er) + } else { + // the caller expect this to happen before if + // it is async + cb(er) + stream._writableState.errorEmitted = true + stream.emit("error", er) + // this can emit finish, but finish must + // always follow error + finishMaybe(stream, state) + } + } + + function onwriteStateUpdate(state) { + state.writing = false + state.writecb = null + state.length -= state.writelen + state.writelen = 0 + } + + function onwrite(stream, er) { + var state = stream._writableState + var sync = state.sync + var cb = state.writecb + + onwriteStateUpdate(state) + + if (er) onwriteError(stream, state, sync, er, cb) + else { + // Check if we're actually ready to finish, but don't emit yet + var finished = needFinish(state) + + if ( + !finished && + !state.corked && + !state.bufferProcessing && + state.bufferedRequest + ) { + clearBuffer(stream, state) + } + + if (sync) { + /**/ + asyncWrite(afterWrite, stream, state, finished, cb) + /**/ + } else { + afterWrite(stream, state, finished, cb) + } + } + } + + function afterWrite(stream, state, finished, cb) { + if (!finished) onwriteDrain(stream, state) + state.pendingcb-- + cb() + finishMaybe(stream, state) + } + + // Must force callback to be called on nextTick, so that we don't + // emit 'drain' before the write() consumer gets the 'false' return + // value, and has a chance to attach a 'drain' listener. + function onwriteDrain(stream, state) { + if (state.length === 0 && state.needDrain) { + state.needDrain = false + stream.emit("drain") + } + } + + // if there's something in the buffer waiting, then process it + function clearBuffer(stream, state) { + state.bufferProcessing = true + var entry = state.bufferedRequest + + if (stream._writev && entry && entry.next) { + // Fast case, write everything using _writev() + var l = state.bufferedRequestCount + var buffer = new Array(l) + var holder = state.corkedRequestsFree + holder.entry = entry + + var count = 0 + var allBuffers = true + while (entry) { + buffer[count] = entry + if (!entry.isBuf) allBuffers = false + entry = entry.next + count += 1 + } + buffer.allBuffers = allBuffers + + doWrite( + stream, + state, + true, + state.length, + buffer, + "", + holder.finish + ) + + // doWrite is almost always async, defer these to save a bit of time + // as the hot path ends with doWrite + state.pendingcb++ + state.lastBufferedRequest = null + if (holder.next) { + state.corkedRequestsFree = holder.next + holder.next = null + } else { + state.corkedRequestsFree = new CorkedRequest(state) + } + state.bufferedRequestCount = 0 + } else { + // Slow case, write chunks one-by-one + while (entry) { + var chunk = entry.chunk + var encoding = entry.encoding + var cb = entry.callback + var len = state.objectMode ? 1 : chunk.length + + doWrite(stream, state, false, len, chunk, encoding, cb) + entry = entry.next + state.bufferedRequestCount-- + // if we didn't call the onwrite immediately, then + // it means that we need to wait until it does. + // also, that means that the chunk and cb are currently + // being processed, so move the buffer counter past them. + if (state.writing) { + break + } + } + + if (entry === null) state.lastBufferedRequest = null + } + + state.bufferedRequest = entry + state.bufferProcessing = false + } + + Writable.prototype._write = function(chunk, encoding, cb) { + cb(new Error("_write() is not implemented")) + } + + Writable.prototype._writev = null + + Writable.prototype.end = function(chunk, encoding, cb) { + var state = this._writableState + + if (typeof chunk === "function") { + cb = chunk + chunk = null + encoding = null + } else if (typeof encoding === "function") { + cb = encoding + encoding = null + } + + if (chunk !== null && chunk !== undefined) + this.write(chunk, encoding) + + // .end() fully uncorks + if (state.corked) { + state.corked = 1 + this.uncork() + } + + // ignore unnecessary end() calls. + if (!state.ending && !state.finished) endWritable(this, state, cb) + } + + function needFinish(state) { + return ( + state.ending && + state.length === 0 && + state.bufferedRequest === null && + !state.finished && + !state.writing + ) + } + function callFinal(stream, state) { + stream._final(function(err) { + state.pendingcb-- + if (err) { + stream.emit("error", err) + } + state.prefinished = true + stream.emit("prefinish") + finishMaybe(stream, state) + }) + } + function prefinish(stream, state) { + if (!state.prefinished && !state.finalCalled) { + if (typeof stream._final === "function") { + state.pendingcb++ + state.finalCalled = true + pna.nextTick(callFinal, stream, state) + } else { + state.prefinished = true + stream.emit("prefinish") + } + } + } + + function finishMaybe(stream, state) { + var need = needFinish(state) + if (need) { + prefinish(stream, state) + if (state.pendingcb === 0) { + state.finished = true + stream.emit("finish") + } + } + return need + } + + function endWritable(stream, state, cb) { + state.ending = true + finishMaybe(stream, state) + if (cb) { + if (state.finished) pna.nextTick(cb) + else stream.once("finish", cb) + } + state.ended = true + stream.writable = false + } + + function onCorkedFinish(corkReq, state, err) { + var entry = corkReq.entry + corkReq.entry = null + while (entry) { + var cb = entry.callback + state.pendingcb-- + cb(err) + entry = entry.next + } + if (state.corkedRequestsFree) { + state.corkedRequestsFree.next = corkReq + } else { + state.corkedRequestsFree = corkReq + } + } + + Object.defineProperty(Writable.prototype, "destroyed", { + get: function() { + if (this._writableState === undefined) { + return false + } + return this._writableState.destroyed + }, + set: function(value) { + // we ignore the value if the stream + // has not been initialized yet + if (!this._writableState) { + return + } + + // backward compatibility, the user is explicitly + // managing destroyed + this._writableState.destroyed = value + } + }) + + Writable.prototype.destroy = destroyImpl.destroy + Writable.prototype._undestroy = destroyImpl.undestroy + Writable.prototype._destroy = function(err, cb) { + this.end() + cb(err) + } + }.call( + this, + require("_process"), + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {}, + require("timers").setImmediate + )) + }, + { + "./_stream_duplex": 134, + "./internal/streams/destroy": 140, + "./internal/streams/stream": 141, + _process: 120, + "core-util-is": 50, + inherits: 100, + "process-nextick-args": 119, + "safe-buffer": 148, + timers: 159, + "util-deprecate": 162 + } + ], + 139: [ + function(require, module, exports) { + "use strict" + + function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function") + } + } + + var Buffer = require("safe-buffer").Buffer + var util = require("util") + + function copyBuffer(src, target, offset) { + src.copy(target, offset) + } + + module.exports = (function() { + function BufferList() { + _classCallCheck(this, BufferList) + + this.head = null + this.tail = null + this.length = 0 + } + + BufferList.prototype.push = function push(v) { + var entry = { data: v, next: null } + if (this.length > 0) this.tail.next = entry + else this.head = entry + this.tail = entry + ++this.length + } + + BufferList.prototype.unshift = function unshift(v) { + var entry = { data: v, next: this.head } + if (this.length === 0) this.tail = entry + this.head = entry + ++this.length + } + + BufferList.prototype.shift = function shift() { + if (this.length === 0) return + var ret = this.head.data + if (this.length === 1) this.head = this.tail = null + else this.head = this.head.next + --this.length + return ret + } + + BufferList.prototype.clear = function clear() { + this.head = this.tail = null + this.length = 0 + } + + BufferList.prototype.join = function join(s) { + if (this.length === 0) return "" + var p = this.head + var ret = "" + p.data + while ((p = p.next)) { + ret += s + p.data + } + return ret + } + + BufferList.prototype.concat = function concat(n) { + if (this.length === 0) return Buffer.alloc(0) + if (this.length === 1) return this.head.data + var ret = Buffer.allocUnsafe(n >>> 0) + var p = this.head + var i = 0 + while (p) { + copyBuffer(p.data, ret, i) + i += p.data.length + p = p.next + } + return ret + } + + return BufferList + })() + + if (util && util.inspect && util.inspect.custom) { + module.exports.prototype[util.inspect.custom] = function() { + var obj = util.inspect({ length: this.length }) + return this.constructor.name + " " + obj + } + } + }, + { "safe-buffer": 148, util: 19 } + ], + 140: [ + function(require, module, exports) { + "use strict" + + /**/ + + var pna = require("process-nextick-args") + /**/ + + // undocumented cb() API, needed for core, not for public API + function destroy(err, cb) { + var _this = this + + var readableDestroyed = + this._readableState && this._readableState.destroyed + var writableDestroyed = + this._writableState && this._writableState.destroyed + + if (readableDestroyed || writableDestroyed) { + if (cb) { + cb(err) + } else if ( + err && + (!this._writableState || !this._writableState.errorEmitted) + ) { + pna.nextTick(emitErrorNT, this, err) + } + return this + } + + // we set destroyed to true before firing error callbacks in order + // to make it re-entrance safe in case destroy() is called within callbacks + + if (this._readableState) { + this._readableState.destroyed = true + } + + // if this is a duplex stream mark the writable part as destroyed as well + if (this._writableState) { + this._writableState.destroyed = true + } + + this._destroy(err || null, function(err) { + if (!cb && err) { + pna.nextTick(emitErrorNT, _this, err) + if (_this._writableState) { + _this._writableState.errorEmitted = true + } + } else if (cb) { + cb(err) + } + }) + + return this + } + + function undestroy() { + if (this._readableState) { + this._readableState.destroyed = false + this._readableState.reading = false + this._readableState.ended = false + this._readableState.endEmitted = false + } + + if (this._writableState) { + this._writableState.destroyed = false + this._writableState.ended = false + this._writableState.ending = false + this._writableState.finished = false + this._writableState.errorEmitted = false + } + } + + function emitErrorNT(self, err) { + self.emit("error", err) + } + + module.exports = { + destroy: destroy, + undestroy: undestroy + } + }, + { "process-nextick-args": 119 } + ], + 141: [ + function(require, module, exports) { + module.exports = require("events").EventEmitter + }, + { events: 83 } + ], + 142: [ + function(require, module, exports) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + "use strict" + + /**/ + + var Buffer = require("safe-buffer").Buffer + /**/ + + var isEncoding = + Buffer.isEncoding || + function(encoding) { + encoding = "" + encoding + switch (encoding && encoding.toLowerCase()) { + case "hex": + case "utf8": + case "utf-8": + case "ascii": + case "binary": + case "base64": + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + case "raw": + return true + default: + return false + } + } + + function _normalizeEncoding(enc) { + if (!enc) return "utf8" + var retried + while (true) { + switch (enc) { + case "utf8": + case "utf-8": + return "utf8" + case "ucs2": + case "ucs-2": + case "utf16le": + case "utf-16le": + return "utf16le" + case "latin1": + case "binary": + return "latin1" + case "base64": + case "ascii": + case "hex": + return enc + default: + if (retried) return // undefined + enc = ("" + enc).toLowerCase() + retried = true + } + } + } + + // Do not cache `Buffer.isEncoding` when checking encoding names as some + // modules monkey-patch it to support additional encodings + function normalizeEncoding(enc) { + var nenc = _normalizeEncoding(enc) + if ( + typeof nenc !== "string" && + (Buffer.isEncoding === isEncoding || !isEncoding(enc)) + ) + throw new Error("Unknown encoding: " + enc) + return nenc || enc + } + + // StringDecoder provides an interface for efficiently splitting a series of + // buffers into a series of JS strings without breaking apart multi-byte + // characters. + exports.StringDecoder = StringDecoder + function StringDecoder(encoding) { + this.encoding = normalizeEncoding(encoding) + var nb + switch (this.encoding) { + case "utf16le": + this.text = utf16Text + this.end = utf16End + nb = 4 + break + case "utf8": + this.fillLast = utf8FillLast + nb = 4 + break + case "base64": + this.text = base64Text + this.end = base64End + nb = 3 + break + default: + this.write = simpleWrite + this.end = simpleEnd + return + } + this.lastNeed = 0 + this.lastTotal = 0 + this.lastChar = Buffer.allocUnsafe(nb) + } + + StringDecoder.prototype.write = function(buf) { + if (buf.length === 0) return "" + var r + var i + if (this.lastNeed) { + r = this.fillLast(buf) + if (r === undefined) return "" + i = this.lastNeed + this.lastNeed = 0 + } else { + i = 0 + } + if (i < buf.length) + return r ? r + this.text(buf, i) : this.text(buf, i) + return r || "" + } + + StringDecoder.prototype.end = utf8End + + // Returns only complete characters in a Buffer + StringDecoder.prototype.text = utf8Text + + // Attempts to complete a partial non-UTF-8 character using bytes from a Buffer + StringDecoder.prototype.fillLast = function(buf) { + if (this.lastNeed <= buf.length) { + buf.copy( + this.lastChar, + this.lastTotal - this.lastNeed, + 0, + this.lastNeed + ) + return this.lastChar.toString(this.encoding, 0, this.lastTotal) + } + buf.copy( + this.lastChar, + this.lastTotal - this.lastNeed, + 0, + buf.length + ) + this.lastNeed -= buf.length + } + + // Checks the type of a UTF-8 byte, whether it's ASCII, a leading byte, or a + // continuation byte. If an invalid byte is detected, -2 is returned. + function utf8CheckByte(byte) { + if (byte <= 0x7f) return 0 + else if (byte >> 5 === 0x06) return 2 + else if (byte >> 4 === 0x0e) return 3 + else if (byte >> 3 === 0x1e) return 4 + return byte >> 6 === 0x02 ? -1 : -2 + } + + // Checks at most 3 bytes at the end of a Buffer in order to detect an + // incomplete multi-byte UTF-8 character. The total number of bytes (2, 3, or 4) + // needed to complete the UTF-8 character (if applicable) are returned. + function utf8CheckIncomplete(self, buf, i) { + var j = buf.length - 1 + if (j < i) return 0 + var nb = utf8CheckByte(buf[j]) + if (nb >= 0) { + if (nb > 0) self.lastNeed = nb - 1 + return nb + } + if (--j < i || nb === -2) return 0 + nb = utf8CheckByte(buf[j]) + if (nb >= 0) { + if (nb > 0) self.lastNeed = nb - 2 + return nb + } + if (--j < i || nb === -2) return 0 + nb = utf8CheckByte(buf[j]) + if (nb >= 0) { + if (nb > 0) { + if (nb === 2) nb = 0 + else self.lastNeed = nb - 3 + } + return nb + } + return 0 + } + + // Validates as many continuation bytes for a multi-byte UTF-8 character as + // needed or are available. If we see a non-continuation byte where we expect + // one, we "replace" the validated continuation bytes we've seen so far with + // a single UTF-8 replacement character ('\ufffd'), to match v8's UTF-8 decoding + // behavior. The continuation byte check is included three times in the case + // where all of the continuation bytes for a character exist in the same buffer. + // It is also done this way as a slight performance increase instead of using a + // loop. + function utf8CheckExtraBytes(self, buf, p) { + if ((buf[0] & 0xc0) !== 0x80) { + self.lastNeed = 0 + return "\ufffd" + } + if (self.lastNeed > 1 && buf.length > 1) { + if ((buf[1] & 0xc0) !== 0x80) { + self.lastNeed = 1 + return "\ufffd" + } + if (self.lastNeed > 2 && buf.length > 2) { + if ((buf[2] & 0xc0) !== 0x80) { + self.lastNeed = 2 + return "\ufffd" + } + } + } + } + + // Attempts to complete a multi-byte UTF-8 character using bytes from a Buffer. + function utf8FillLast(buf) { + var p = this.lastTotal - this.lastNeed + var r = utf8CheckExtraBytes(this, buf, p) + if (r !== undefined) return r + if (this.lastNeed <= buf.length) { + buf.copy(this.lastChar, p, 0, this.lastNeed) + return this.lastChar.toString(this.encoding, 0, this.lastTotal) + } + buf.copy(this.lastChar, p, 0, buf.length) + this.lastNeed -= buf.length + } + + // Returns all complete UTF-8 characters in a Buffer. If the Buffer ended on a + // partial character, the character's bytes are buffered until the required + // number of bytes are available. + function utf8Text(buf, i) { + var total = utf8CheckIncomplete(this, buf, i) + if (!this.lastNeed) return buf.toString("utf8", i) + this.lastTotal = total + var end = buf.length - (total - this.lastNeed) + buf.copy(this.lastChar, 0, end) + return buf.toString("utf8", i, end) + } + + // For UTF-8, a replacement character is added when ending on a partial + // character. + function utf8End(buf) { + var r = buf && buf.length ? this.write(buf) : "" + if (this.lastNeed) return r + "\ufffd" + return r + } + + // UTF-16LE typically needs two bytes per character, but even if we have an even + // number of bytes available, we need to check if we end on a leading/high + // surrogate. In that case, we need to wait for the next two bytes in order to + // decode the last character properly. + function utf16Text(buf, i) { + if ((buf.length - i) % 2 === 0) { + var r = buf.toString("utf16le", i) + if (r) { + var c = r.charCodeAt(r.length - 1) + if (c >= 0xd800 && c <= 0xdbff) { + this.lastNeed = 2 + this.lastTotal = 4 + this.lastChar[0] = buf[buf.length - 2] + this.lastChar[1] = buf[buf.length - 1] + return r.slice(0, -1) + } + } + return r + } + this.lastNeed = 1 + this.lastTotal = 2 + this.lastChar[0] = buf[buf.length - 1] + return buf.toString("utf16le", i, buf.length - 1) + } + + // For UTF-16LE we do not explicitly append special replacement characters if we + // end on a partial character, we simply let v8 handle that. + function utf16End(buf) { + var r = buf && buf.length ? this.write(buf) : "" + if (this.lastNeed) { + var end = this.lastTotal - this.lastNeed + return r + this.lastChar.toString("utf16le", 0, end) + } + return r + } + + function base64Text(buf, i) { + var n = (buf.length - i) % 3 + if (n === 0) return buf.toString("base64", i) + this.lastNeed = 3 - n + this.lastTotal = 3 + if (n === 1) { + this.lastChar[0] = buf[buf.length - 1] + } else { + this.lastChar[0] = buf[buf.length - 2] + this.lastChar[1] = buf[buf.length - 1] + } + return buf.toString("base64", i, buf.length - n) + } + + function base64End(buf) { + var r = buf && buf.length ? this.write(buf) : "" + if (this.lastNeed) + return r + this.lastChar.toString("base64", 0, 3 - this.lastNeed) + return r + } + + // Pass bytes on through for single-byte encodings (e.g. ascii, latin1, hex) + function simpleWrite(buf) { + return buf.toString(this.encoding) + } + + function simpleEnd(buf) { + return buf && buf.length ? this.write(buf) : "" + } + }, + { "safe-buffer": 148 } + ], + 143: [ + function(require, module, exports) { + module.exports = require("./readable").PassThrough + }, + { "./readable": 144 } + ], + 144: [ + function(require, module, exports) { + exports = module.exports = require("./lib/_stream_readable.js") + exports.Stream = exports + exports.Readable = exports + exports.Writable = require("./lib/_stream_writable.js") + exports.Duplex = require("./lib/_stream_duplex.js") + exports.Transform = require("./lib/_stream_transform.js") + exports.PassThrough = require("./lib/_stream_passthrough.js") + }, + { + "./lib/_stream_duplex.js": 134, + "./lib/_stream_passthrough.js": 135, + "./lib/_stream_readable.js": 136, + "./lib/_stream_transform.js": 137, + "./lib/_stream_writable.js": 138 + } + ], + 145: [ + function(require, module, exports) { + module.exports = require("./readable").Transform + }, + { "./readable": 144 } + ], + 146: [ + function(require, module, exports) { + module.exports = require("./lib/_stream_writable.js") + }, + { "./lib/_stream_writable.js": 138 } + ], + 147: [ + function(require, module, exports) { + "use strict" + var Buffer = require("buffer").Buffer + var inherits = require("inherits") + var HashBase = require("hash-base") + + var ARRAY16 = new Array(16) + + var zl = [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 7, + 4, + 13, + 1, + 10, + 6, + 15, + 3, + 12, + 0, + 9, + 5, + 2, + 14, + 11, + 8, + 3, + 10, + 14, + 4, + 9, + 15, + 8, + 1, + 2, + 7, + 0, + 6, + 13, + 11, + 5, + 12, + 1, + 9, + 11, + 10, + 0, + 8, + 12, + 4, + 13, + 3, + 7, + 15, + 14, + 5, + 6, + 2, + 4, + 0, + 5, + 9, + 7, + 12, + 2, + 10, + 14, + 1, + 3, + 8, + 11, + 6, + 15, + 13 + ] + + var zr = [ + 5, + 14, + 7, + 0, + 9, + 2, + 11, + 4, + 13, + 6, + 15, + 8, + 1, + 10, + 3, + 12, + 6, + 11, + 3, + 7, + 0, + 13, + 5, + 10, + 14, + 15, + 8, + 12, + 4, + 9, + 1, + 2, + 15, + 5, + 1, + 3, + 7, + 14, + 6, + 9, + 11, + 8, + 12, + 2, + 10, + 0, + 4, + 13, + 8, + 6, + 4, + 1, + 3, + 11, + 15, + 0, + 5, + 12, + 2, + 13, + 9, + 7, + 10, + 14, + 12, + 15, + 10, + 4, + 1, + 5, + 8, + 7, + 6, + 2, + 13, + 14, + 0, + 3, + 9, + 11 + ] + + var sl = [ + 11, + 14, + 15, + 12, + 5, + 8, + 7, + 9, + 11, + 13, + 14, + 15, + 6, + 7, + 9, + 8, + 7, + 6, + 8, + 13, + 11, + 9, + 7, + 15, + 7, + 12, + 15, + 9, + 11, + 7, + 13, + 12, + 11, + 13, + 6, + 7, + 14, + 9, + 13, + 15, + 14, + 8, + 13, + 6, + 5, + 12, + 7, + 5, + 11, + 12, + 14, + 15, + 14, + 15, + 9, + 8, + 9, + 14, + 5, + 6, + 8, + 6, + 5, + 12, + 9, + 15, + 5, + 11, + 6, + 8, + 13, + 12, + 5, + 12, + 13, + 14, + 11, + 8, + 5, + 6 + ] + + var sr = [ + 8, + 9, + 9, + 11, + 13, + 15, + 15, + 5, + 7, + 7, + 8, + 11, + 14, + 14, + 12, + 6, + 9, + 13, + 15, + 7, + 12, + 8, + 9, + 11, + 7, + 7, + 12, + 7, + 6, + 15, + 13, + 11, + 9, + 7, + 15, + 11, + 8, + 6, + 6, + 14, + 12, + 13, + 5, + 14, + 13, + 13, + 7, + 5, + 15, + 5, + 8, + 11, + 14, + 14, + 6, + 14, + 6, + 9, + 12, + 9, + 12, + 5, + 15, + 8, + 8, + 5, + 12, + 9, + 12, + 5, + 14, + 6, + 8, + 13, + 6, + 5, + 15, + 13, + 11, + 11 + ] + + var hl = [0x00000000, 0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xa953fd4e] + var hr = [0x50a28be6, 0x5c4dd124, 0x6d703ef3, 0x7a6d76e9, 0x00000000] + + function RIPEMD160() { + HashBase.call(this, 64) + + // state + this._a = 0x67452301 + this._b = 0xefcdab89 + this._c = 0x98badcfe + this._d = 0x10325476 + this._e = 0xc3d2e1f0 + } + + inherits(RIPEMD160, HashBase) + + RIPEMD160.prototype._update = function() { + var words = ARRAY16 + for (var j = 0; j < 16; ++j) + words[j] = this._block.readInt32LE(j * 4) + + var al = this._a | 0 + var bl = this._b | 0 + var cl = this._c | 0 + var dl = this._d | 0 + var el = this._e | 0 + + var ar = this._a | 0 + var br = this._b | 0 + var cr = this._c | 0 + var dr = this._d | 0 + var er = this._e | 0 + + // computation + for (var i = 0; i < 80; i += 1) { + var tl + var tr + if (i < 16) { + tl = fn1(al, bl, cl, dl, el, words[zl[i]], hl[0], sl[i]) + tr = fn5(ar, br, cr, dr, er, words[zr[i]], hr[0], sr[i]) + } else if (i < 32) { + tl = fn2(al, bl, cl, dl, el, words[zl[i]], hl[1], sl[i]) + tr = fn4(ar, br, cr, dr, er, words[zr[i]], hr[1], sr[i]) + } else if (i < 48) { + tl = fn3(al, bl, cl, dl, el, words[zl[i]], hl[2], sl[i]) + tr = fn3(ar, br, cr, dr, er, words[zr[i]], hr[2], sr[i]) + } else if (i < 64) { + tl = fn4(al, bl, cl, dl, el, words[zl[i]], hl[3], sl[i]) + tr = fn2(ar, br, cr, dr, er, words[zr[i]], hr[3], sr[i]) + } else { + // if (i<80) { + tl = fn5(al, bl, cl, dl, el, words[zl[i]], hl[4], sl[i]) + tr = fn1(ar, br, cr, dr, er, words[zr[i]], hr[4], sr[i]) + } + + al = el + el = dl + dl = rotl(cl, 10) + cl = bl + bl = tl + + ar = er + er = dr + dr = rotl(cr, 10) + cr = br + br = tr + } + + // update state + var t = (this._b + cl + dr) | 0 + this._b = (this._c + dl + er) | 0 + this._c = (this._d + el + ar) | 0 + this._d = (this._e + al + br) | 0 + this._e = (this._a + bl + cr) | 0 + this._a = t + } + + RIPEMD160.prototype._digest = function() { + // create padding and handle blocks + this._block[this._blockOffset++] = 0x80 + if (this._blockOffset > 56) { + this._block.fill(0, this._blockOffset, 64) + this._update() + this._blockOffset = 0 + } + + this._block.fill(0, this._blockOffset, 56) + this._block.writeUInt32LE(this._length[0], 56) + this._block.writeUInt32LE(this._length[1], 60) + this._update() + + // produce result + var buffer = Buffer.alloc ? Buffer.alloc(20) : new Buffer(20) + buffer.writeInt32LE(this._a, 0) + buffer.writeInt32LE(this._b, 4) + buffer.writeInt32LE(this._c, 8) + buffer.writeInt32LE(this._d, 12) + buffer.writeInt32LE(this._e, 16) + return buffer + } + + function rotl(x, n) { + return (x << n) | (x >>> (32 - n)) + } + + function fn1(a, b, c, d, e, m, k, s) { + return (rotl((a + (b ^ c ^ d) + m + k) | 0, s) + e) | 0 + } + + function fn2(a, b, c, d, e, m, k, s) { + return (rotl((a + ((b & c) | (~b & d)) + m + k) | 0, s) + e) | 0 + } + + function fn3(a, b, c, d, e, m, k, s) { + return (rotl((a + ((b | ~c) ^ d) + m + k) | 0, s) + e) | 0 + } + + function fn4(a, b, c, d, e, m, k, s) { + return (rotl((a + ((b & d) | (c & ~d)) + m + k) | 0, s) + e) | 0 + } + + function fn5(a, b, c, d, e, m, k, s) { + return (rotl((a + (b ^ (c | ~d)) + m + k) | 0, s) + e) | 0 + } + + module.exports = RIPEMD160 + }, + { buffer: 48, "hash-base": 85, inherits: 100 } + ], + 148: [ + function(require, module, exports) { + /* eslint-disable node/no-deprecated-api */ + var buffer = require("buffer") + var Buffer = buffer.Buffer + + // alternative to using Object.keys for old browsers + function copyProps(src, dst) { + for (var key in src) { + dst[key] = src[key] + } + } + if ( + Buffer.from && + Buffer.alloc && + Buffer.allocUnsafe && + Buffer.allocUnsafeSlow + ) { + module.exports = buffer + } else { + // Copy properties from require('buffer') + copyProps(buffer, exports) + exports.Buffer = SafeBuffer + } + + function SafeBuffer(arg, encodingOrOffset, length) { + return Buffer(arg, encodingOrOffset, length) + } + + // Copy static methods from Buffer + copyProps(Buffer, SafeBuffer) + + SafeBuffer.from = function(arg, encodingOrOffset, length) { + if (typeof arg === "number") { + throw new TypeError("Argument must not be a number") + } + return Buffer(arg, encodingOrOffset, length) + } + + SafeBuffer.alloc = function(size, fill, encoding) { + if (typeof size !== "number") { + throw new TypeError("Argument must be a number") + } + var buf = Buffer(size) + if (fill !== undefined) { + if (typeof encoding === "string") { + buf.fill(fill, encoding) + } else { + buf.fill(fill) + } + } else { + buf.fill(0) + } + return buf + } + + SafeBuffer.allocUnsafe = function(size) { + if (typeof size !== "number") { + throw new TypeError("Argument must be a number") + } + return Buffer(size) + } + + SafeBuffer.allocUnsafeSlow = function(size) { + if (typeof size !== "number") { + throw new TypeError("Argument must be a number") + } + return buffer.SlowBuffer(size) + } + }, + { buffer: 48 } + ], + 149: [ + function(require, module, exports) { + var Buffer = require("safe-buffer").Buffer + + // prototype class for hash functions + function Hash(blockSize, finalSize) { + this._block = Buffer.alloc(blockSize) + this._finalSize = finalSize + this._blockSize = blockSize + this._len = 0 + } + + Hash.prototype.update = function(data, enc) { + if (typeof data === "string") { + enc = enc || "utf8" + data = Buffer.from(data, enc) + } + + var block = this._block + var blockSize = this._blockSize + var length = data.length + var accum = this._len + + for (var offset = 0; offset < length; ) { + var assigned = accum % blockSize + var remainder = Math.min(length - offset, blockSize - assigned) + + for (var i = 0; i < remainder; i++) { + block[assigned + i] = data[offset + i] + } + + accum += remainder + offset += remainder + + if (accum % blockSize === 0) { + this._update(block) + } + } + + this._len += length + return this + } + + Hash.prototype.digest = function(enc) { + var rem = this._len % this._blockSize + + this._block[rem] = 0x80 + + // zero (rem + 1) trailing bits, where (rem + 1) is the smallest + // non-negative solution to the equation (length + 1 + (rem + 1)) === finalSize mod blockSize + this._block.fill(0, rem + 1) + + if (rem >= this._finalSize) { + this._update(this._block) + this._block.fill(0) + } + + var bits = this._len * 8 + + // uint32 + if (bits <= 0xffffffff) { + this._block.writeUInt32BE(bits, this._blockSize - 4) + + // uint64 + } else { + var lowBits = (bits & 0xffffffff) >>> 0 + var highBits = (bits - lowBits) / 0x100000000 + + this._block.writeUInt32BE(highBits, this._blockSize - 8) + this._block.writeUInt32BE(lowBits, this._blockSize - 4) + } + + this._update(this._block) + var hash = this._hash() + + return enc ? hash.toString(enc) : hash + } + + Hash.prototype._update = function() { + throw new Error("_update must be implemented by subclass") + } + + module.exports = Hash + }, + { "safe-buffer": 148 } + ], + 150: [ + function(require, module, exports) { + var exports = (module.exports = function SHA(algorithm) { + algorithm = algorithm.toLowerCase() + + var Algorithm = exports[algorithm] + if (!Algorithm) + throw new Error( + algorithm + " is not supported (we accept pull requests)" + ) + + return new Algorithm() + }) + + exports.sha = require("./sha") + exports.sha1 = require("./sha1") + exports.sha224 = require("./sha224") + exports.sha256 = require("./sha256") + exports.sha384 = require("./sha384") + exports.sha512 = require("./sha512") + }, + { + "./sha": 151, + "./sha1": 152, + "./sha224": 153, + "./sha256": 154, + "./sha384": 155, + "./sha512": 156 + } + ], + 151: [ + function(require, module, exports) { + /* + * A JavaScript implementation of the Secure Hash Algorithm, SHA-0, as defined + * in FIPS PUB 180-1 + * This source code is derived from sha1.js of the same repository. + * The difference between SHA-0 and SHA-1 is just a bitwise rotate left + * operation was added. + */ + + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + + var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc | 0, 0xca62c1d6 | 0] + + var W = new Array(80) + + function Sha() { + this.init() + this._w = W + + Hash.call(this, 64, 56) + } + + inherits(Sha, Hash) + + Sha.prototype.init = function() { + this._a = 0x67452301 + this._b = 0xefcdab89 + this._c = 0x98badcfe + this._d = 0x10325476 + this._e = 0xc3d2e1f0 + + return this + } + + function rotl5(num) { + return (num << 5) | (num >>> 27) + } + + function rotl30(num) { + return (num << 30) | (num >>> 2) + } + + function ft(s, b, c, d) { + if (s === 0) return (b & c) | (~b & d) + if (s === 2) return (b & c) | (b & d) | (c & d) + return b ^ c ^ d + } + + Sha.prototype._update = function(M) { + var W = this._w + + var a = this._a | 0 + var b = this._b | 0 + var c = this._c | 0 + var d = this._d | 0 + var e = this._e | 0 + + for (var i = 0; i < 16; ++i) W[i] = M.readInt32BE(i * 4) + for (; i < 80; ++i) + W[i] = W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16] + + for (var j = 0; j < 80; ++j) { + var s = ~~(j / 20) + var t = (rotl5(a) + ft(s, b, c, d) + e + W[j] + K[s]) | 0 + + e = d + d = c + c = rotl30(b) + b = a + a = t + } + + this._a = (a + this._a) | 0 + this._b = (b + this._b) | 0 + this._c = (c + this._c) | 0 + this._d = (d + this._d) | 0 + this._e = (e + this._e) | 0 + } + + Sha.prototype._hash = function() { + var H = Buffer.allocUnsafe(20) + + H.writeInt32BE(this._a | 0, 0) + H.writeInt32BE(this._b | 0, 4) + H.writeInt32BE(this._c | 0, 8) + H.writeInt32BE(this._d | 0, 12) + H.writeInt32BE(this._e | 0, 16) + + return H + } + + module.exports = Sha + }, + { "./hash": 149, inherits: 100, "safe-buffer": 148 } + ], + 152: [ + function(require, module, exports) { + /* + * A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined + * in FIPS PUB 180-1 + * Version 2.1a Copyright Paul Johnston 2000 - 2002. + * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet + * Distributed under the BSD License + * See http://pajhome.org.uk/crypt/md5 for details. + */ + + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + + var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc | 0, 0xca62c1d6 | 0] + + var W = new Array(80) + + function Sha1() { + this.init() + this._w = W + + Hash.call(this, 64, 56) + } + + inherits(Sha1, Hash) + + Sha1.prototype.init = function() { + this._a = 0x67452301 + this._b = 0xefcdab89 + this._c = 0x98badcfe + this._d = 0x10325476 + this._e = 0xc3d2e1f0 + + return this + } + + function rotl1(num) { + return (num << 1) | (num >>> 31) + } + + function rotl5(num) { + return (num << 5) | (num >>> 27) + } + + function rotl30(num) { + return (num << 30) | (num >>> 2) + } + + function ft(s, b, c, d) { + if (s === 0) return (b & c) | (~b & d) + if (s === 2) return (b & c) | (b & d) | (c & d) + return b ^ c ^ d + } + + Sha1.prototype._update = function(M) { + var W = this._w + + var a = this._a | 0 + var b = this._b | 0 + var c = this._c | 0 + var d = this._d | 0 + var e = this._e | 0 + + for (var i = 0; i < 16; ++i) W[i] = M.readInt32BE(i * 4) + for (; i < 80; ++i) + W[i] = rotl1(W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16]) + + for (var j = 0; j < 80; ++j) { + var s = ~~(j / 20) + var t = (rotl5(a) + ft(s, b, c, d) + e + W[j] + K[s]) | 0 + + e = d + d = c + c = rotl30(b) + b = a + a = t + } + + this._a = (a + this._a) | 0 + this._b = (b + this._b) | 0 + this._c = (c + this._c) | 0 + this._d = (d + this._d) | 0 + this._e = (e + this._e) | 0 + } + + Sha1.prototype._hash = function() { + var H = Buffer.allocUnsafe(20) + + H.writeInt32BE(this._a | 0, 0) + H.writeInt32BE(this._b | 0, 4) + H.writeInt32BE(this._c | 0, 8) + H.writeInt32BE(this._d | 0, 12) + H.writeInt32BE(this._e | 0, 16) + + return H + } + + module.exports = Sha1 + }, + { "./hash": 149, inherits: 100, "safe-buffer": 148 } + ], + 153: [ + function(require, module, exports) { + /** + * A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined + * in FIPS 180-2 + * Version 2.2-beta Copyright Angel Marin, Paul Johnston 2000 - 2009. + * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet + * + */ + + var inherits = require("inherits") + var Sha256 = require("./sha256") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + + var W = new Array(64) + + function Sha224() { + this.init() + + this._w = W // new Array(64) + + Hash.call(this, 64, 56) + } + + inherits(Sha224, Sha256) + + Sha224.prototype.init = function() { + this._a = 0xc1059ed8 + this._b = 0x367cd507 + this._c = 0x3070dd17 + this._d = 0xf70e5939 + this._e = 0xffc00b31 + this._f = 0x68581511 + this._g = 0x64f98fa7 + this._h = 0xbefa4fa4 + + return this + } + + Sha224.prototype._hash = function() { + var H = Buffer.allocUnsafe(28) + + H.writeInt32BE(this._a, 0) + H.writeInt32BE(this._b, 4) + H.writeInt32BE(this._c, 8) + H.writeInt32BE(this._d, 12) + H.writeInt32BE(this._e, 16) + H.writeInt32BE(this._f, 20) + H.writeInt32BE(this._g, 24) + + return H + } + + module.exports = Sha224 + }, + { "./hash": 149, "./sha256": 154, inherits: 100, "safe-buffer": 148 } + ], + 154: [ + function(require, module, exports) { + /** + * A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined + * in FIPS 180-2 + * Version 2.2-beta Copyright Angel Marin, Paul Johnston 2000 - 2009. + * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet + * + */ + + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + + var K = [ + 0x428a2f98, + 0x71374491, + 0xb5c0fbcf, + 0xe9b5dba5, + 0x3956c25b, + 0x59f111f1, + 0x923f82a4, + 0xab1c5ed5, + 0xd807aa98, + 0x12835b01, + 0x243185be, + 0x550c7dc3, + 0x72be5d74, + 0x80deb1fe, + 0x9bdc06a7, + 0xc19bf174, + 0xe49b69c1, + 0xefbe4786, + 0x0fc19dc6, + 0x240ca1cc, + 0x2de92c6f, + 0x4a7484aa, + 0x5cb0a9dc, + 0x76f988da, + 0x983e5152, + 0xa831c66d, + 0xb00327c8, + 0xbf597fc7, + 0xc6e00bf3, + 0xd5a79147, + 0x06ca6351, + 0x14292967, + 0x27b70a85, + 0x2e1b2138, + 0x4d2c6dfc, + 0x53380d13, + 0x650a7354, + 0x766a0abb, + 0x81c2c92e, + 0x92722c85, + 0xa2bfe8a1, + 0xa81a664b, + 0xc24b8b70, + 0xc76c51a3, + 0xd192e819, + 0xd6990624, + 0xf40e3585, + 0x106aa070, + 0x19a4c116, + 0x1e376c08, + 0x2748774c, + 0x34b0bcb5, + 0x391c0cb3, + 0x4ed8aa4a, + 0x5b9cca4f, + 0x682e6ff3, + 0x748f82ee, + 0x78a5636f, + 0x84c87814, + 0x8cc70208, + 0x90befffa, + 0xa4506ceb, + 0xbef9a3f7, + 0xc67178f2 + ] + + var W = new Array(64) + + function Sha256() { + this.init() + + this._w = W // new Array(64) + + Hash.call(this, 64, 56) + } + + inherits(Sha256, Hash) + + Sha256.prototype.init = function() { + this._a = 0x6a09e667 + this._b = 0xbb67ae85 + this._c = 0x3c6ef372 + this._d = 0xa54ff53a + this._e = 0x510e527f + this._f = 0x9b05688c + this._g = 0x1f83d9ab + this._h = 0x5be0cd19 + + return this + } + + function ch(x, y, z) { + return z ^ (x & (y ^ z)) + } + + function maj(x, y, z) { + return (x & y) | (z & (x | y)) + } + + function sigma0(x) { + return ( + ((x >>> 2) | (x << 30)) ^ + ((x >>> 13) | (x << 19)) ^ + ((x >>> 22) | (x << 10)) + ) + } + + function sigma1(x) { + return ( + ((x >>> 6) | (x << 26)) ^ + ((x >>> 11) | (x << 21)) ^ + ((x >>> 25) | (x << 7)) + ) + } + + function gamma0(x) { + return ( + ((x >>> 7) | (x << 25)) ^ ((x >>> 18) | (x << 14)) ^ (x >>> 3) + ) + } + + function gamma1(x) { + return ( + ((x >>> 17) | (x << 15)) ^ ((x >>> 19) | (x << 13)) ^ (x >>> 10) + ) + } + + Sha256.prototype._update = function(M) { + var W = this._w + + var a = this._a | 0 + var b = this._b | 0 + var c = this._c | 0 + var d = this._d | 0 + var e = this._e | 0 + var f = this._f | 0 + var g = this._g | 0 + var h = this._h | 0 + + for (var i = 0; i < 16; ++i) W[i] = M.readInt32BE(i * 4) + for (; i < 64; ++i) + W[i] = + (gamma1(W[i - 2]) + W[i - 7] + gamma0(W[i - 15]) + W[i - 16]) | + 0 + + for (var j = 0; j < 64; ++j) { + var T1 = (h + sigma1(e) + ch(e, f, g) + K[j] + W[j]) | 0 + var T2 = (sigma0(a) + maj(a, b, c)) | 0 + + h = g + g = f + f = e + e = (d + T1) | 0 + d = c + c = b + b = a + a = (T1 + T2) | 0 + } + + this._a = (a + this._a) | 0 + this._b = (b + this._b) | 0 + this._c = (c + this._c) | 0 + this._d = (d + this._d) | 0 + this._e = (e + this._e) | 0 + this._f = (f + this._f) | 0 + this._g = (g + this._g) | 0 + this._h = (h + this._h) | 0 + } + + Sha256.prototype._hash = function() { + var H = Buffer.allocUnsafe(32) + + H.writeInt32BE(this._a, 0) + H.writeInt32BE(this._b, 4) + H.writeInt32BE(this._c, 8) + H.writeInt32BE(this._d, 12) + H.writeInt32BE(this._e, 16) + H.writeInt32BE(this._f, 20) + H.writeInt32BE(this._g, 24) + H.writeInt32BE(this._h, 28) + + return H + } + + module.exports = Sha256 + }, + { "./hash": 149, inherits: 100, "safe-buffer": 148 } + ], + 155: [ + function(require, module, exports) { + var inherits = require("inherits") + var SHA512 = require("./sha512") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + + var W = new Array(160) + + function Sha384() { + this.init() + this._w = W + + Hash.call(this, 128, 112) + } + + inherits(Sha384, SHA512) + + Sha384.prototype.init = function() { + this._ah = 0xcbbb9d5d + this._bh = 0x629a292a + this._ch = 0x9159015a + this._dh = 0x152fecd8 + this._eh = 0x67332667 + this._fh = 0x8eb44a87 + this._gh = 0xdb0c2e0d + this._hh = 0x47b5481d + + this._al = 0xc1059ed8 + this._bl = 0x367cd507 + this._cl = 0x3070dd17 + this._dl = 0xf70e5939 + this._el = 0xffc00b31 + this._fl = 0x68581511 + this._gl = 0x64f98fa7 + this._hl = 0xbefa4fa4 + + return this + } + + Sha384.prototype._hash = function() { + var H = Buffer.allocUnsafe(48) + + function writeInt64BE(h, l, offset) { + H.writeInt32BE(h, offset) + H.writeInt32BE(l, offset + 4) + } + + writeInt64BE(this._ah, this._al, 0) + writeInt64BE(this._bh, this._bl, 8) + writeInt64BE(this._ch, this._cl, 16) + writeInt64BE(this._dh, this._dl, 24) + writeInt64BE(this._eh, this._el, 32) + writeInt64BE(this._fh, this._fl, 40) + + return H + } + + module.exports = Sha384 + }, + { "./hash": 149, "./sha512": 156, inherits: 100, "safe-buffer": 148 } + ], + 156: [ + function(require, module, exports) { + var inherits = require("inherits") + var Hash = require("./hash") + var Buffer = require("safe-buffer").Buffer + + var K = [ + 0x428a2f98, + 0xd728ae22, + 0x71374491, + 0x23ef65cd, + 0xb5c0fbcf, + 0xec4d3b2f, + 0xe9b5dba5, + 0x8189dbbc, + 0x3956c25b, + 0xf348b538, + 0x59f111f1, + 0xb605d019, + 0x923f82a4, + 0xaf194f9b, + 0xab1c5ed5, + 0xda6d8118, + 0xd807aa98, + 0xa3030242, + 0x12835b01, + 0x45706fbe, + 0x243185be, + 0x4ee4b28c, + 0x550c7dc3, + 0xd5ffb4e2, + 0x72be5d74, + 0xf27b896f, + 0x80deb1fe, + 0x3b1696b1, + 0x9bdc06a7, + 0x25c71235, + 0xc19bf174, + 0xcf692694, + 0xe49b69c1, + 0x9ef14ad2, + 0xefbe4786, + 0x384f25e3, + 0x0fc19dc6, + 0x8b8cd5b5, + 0x240ca1cc, + 0x77ac9c65, + 0x2de92c6f, + 0x592b0275, + 0x4a7484aa, + 0x6ea6e483, + 0x5cb0a9dc, + 0xbd41fbd4, + 0x76f988da, + 0x831153b5, + 0x983e5152, + 0xee66dfab, + 0xa831c66d, + 0x2db43210, + 0xb00327c8, + 0x98fb213f, + 0xbf597fc7, + 0xbeef0ee4, + 0xc6e00bf3, + 0x3da88fc2, + 0xd5a79147, + 0x930aa725, + 0x06ca6351, + 0xe003826f, + 0x14292967, + 0x0a0e6e70, + 0x27b70a85, + 0x46d22ffc, + 0x2e1b2138, + 0x5c26c926, + 0x4d2c6dfc, + 0x5ac42aed, + 0x53380d13, + 0x9d95b3df, + 0x650a7354, + 0x8baf63de, + 0x766a0abb, + 0x3c77b2a8, + 0x81c2c92e, + 0x47edaee6, + 0x92722c85, + 0x1482353b, + 0xa2bfe8a1, + 0x4cf10364, + 0xa81a664b, + 0xbc423001, + 0xc24b8b70, + 0xd0f89791, + 0xc76c51a3, + 0x0654be30, + 0xd192e819, + 0xd6ef5218, + 0xd6990624, + 0x5565a910, + 0xf40e3585, + 0x5771202a, + 0x106aa070, + 0x32bbd1b8, + 0x19a4c116, + 0xb8d2d0c8, + 0x1e376c08, + 0x5141ab53, + 0x2748774c, + 0xdf8eeb99, + 0x34b0bcb5, + 0xe19b48a8, + 0x391c0cb3, + 0xc5c95a63, + 0x4ed8aa4a, + 0xe3418acb, + 0x5b9cca4f, + 0x7763e373, + 0x682e6ff3, + 0xd6b2b8a3, + 0x748f82ee, + 0x5defb2fc, + 0x78a5636f, + 0x43172f60, + 0x84c87814, + 0xa1f0ab72, + 0x8cc70208, + 0x1a6439ec, + 0x90befffa, + 0x23631e28, + 0xa4506ceb, + 0xde82bde9, + 0xbef9a3f7, + 0xb2c67915, + 0xc67178f2, + 0xe372532b, + 0xca273ece, + 0xea26619c, + 0xd186b8c7, + 0x21c0c207, + 0xeada7dd6, + 0xcde0eb1e, + 0xf57d4f7f, + 0xee6ed178, + 0x06f067aa, + 0x72176fba, + 0x0a637dc5, + 0xa2c898a6, + 0x113f9804, + 0xbef90dae, + 0x1b710b35, + 0x131c471b, + 0x28db77f5, + 0x23047d84, + 0x32caab7b, + 0x40c72493, + 0x3c9ebe0a, + 0x15c9bebc, + 0x431d67c4, + 0x9c100d4c, + 0x4cc5d4be, + 0xcb3e42b6, + 0x597f299c, + 0xfc657e2a, + 0x5fcb6fab, + 0x3ad6faec, + 0x6c44198c, + 0x4a475817 + ] + + var W = new Array(160) + + function Sha512() { + this.init() + this._w = W + + Hash.call(this, 128, 112) + } + + inherits(Sha512, Hash) + + Sha512.prototype.init = function() { + this._ah = 0x6a09e667 + this._bh = 0xbb67ae85 + this._ch = 0x3c6ef372 + this._dh = 0xa54ff53a + this._eh = 0x510e527f + this._fh = 0x9b05688c + this._gh = 0x1f83d9ab + this._hh = 0x5be0cd19 + + this._al = 0xf3bcc908 + this._bl = 0x84caa73b + this._cl = 0xfe94f82b + this._dl = 0x5f1d36f1 + this._el = 0xade682d1 + this._fl = 0x2b3e6c1f + this._gl = 0xfb41bd6b + this._hl = 0x137e2179 + + return this + } + + function Ch(x, y, z) { + return z ^ (x & (y ^ z)) + } + + function maj(x, y, z) { + return (x & y) | (z & (x | y)) + } + + function sigma0(x, xl) { + return ( + ((x >>> 28) | (xl << 4)) ^ + ((xl >>> 2) | (x << 30)) ^ + ((xl >>> 7) | (x << 25)) + ) + } + + function sigma1(x, xl) { + return ( + ((x >>> 14) | (xl << 18)) ^ + ((x >>> 18) | (xl << 14)) ^ + ((xl >>> 9) | (x << 23)) + ) + } + + function Gamma0(x, xl) { + return ( + ((x >>> 1) | (xl << 31)) ^ ((x >>> 8) | (xl << 24)) ^ (x >>> 7) + ) + } + + function Gamma0l(x, xl) { + return ( + ((x >>> 1) | (xl << 31)) ^ + ((x >>> 8) | (xl << 24)) ^ + ((x >>> 7) | (xl << 25)) + ) + } + + function Gamma1(x, xl) { + return ( + ((x >>> 19) | (xl << 13)) ^ ((xl >>> 29) | (x << 3)) ^ (x >>> 6) + ) + } + + function Gamma1l(x, xl) { + return ( + ((x >>> 19) | (xl << 13)) ^ + ((xl >>> 29) | (x << 3)) ^ + ((x >>> 6) | (xl << 26)) + ) + } + + function getCarry(a, b) { + return a >>> 0 < b >>> 0 ? 1 : 0 + } + + Sha512.prototype._update = function(M) { + var W = this._w + + var ah = this._ah | 0 + var bh = this._bh | 0 + var ch = this._ch | 0 + var dh = this._dh | 0 + var eh = this._eh | 0 + var fh = this._fh | 0 + var gh = this._gh | 0 + var hh = this._hh | 0 + + var al = this._al | 0 + var bl = this._bl | 0 + var cl = this._cl | 0 + var dl = this._dl | 0 + var el = this._el | 0 + var fl = this._fl | 0 + var gl = this._gl | 0 + var hl = this._hl | 0 + + for (var i = 0; i < 32; i += 2) { + W[i] = M.readInt32BE(i * 4) + W[i + 1] = M.readInt32BE(i * 4 + 4) + } + for (; i < 160; i += 2) { + var xh = W[i - 15 * 2] + var xl = W[i - 15 * 2 + 1] + var gamma0 = Gamma0(xh, xl) + var gamma0l = Gamma0l(xl, xh) + + xh = W[i - 2 * 2] + xl = W[i - 2 * 2 + 1] + var gamma1 = Gamma1(xh, xl) + var gamma1l = Gamma1l(xl, xh) + + // W[i] = gamma0 + W[i - 7] + gamma1 + W[i - 16] + var Wi7h = W[i - 7 * 2] + var Wi7l = W[i - 7 * 2 + 1] + + var Wi16h = W[i - 16 * 2] + var Wi16l = W[i - 16 * 2 + 1] + + var Wil = (gamma0l + Wi7l) | 0 + var Wih = (gamma0 + Wi7h + getCarry(Wil, gamma0l)) | 0 + Wil = (Wil + gamma1l) | 0 + Wih = (Wih + gamma1 + getCarry(Wil, gamma1l)) | 0 + Wil = (Wil + Wi16l) | 0 + Wih = (Wih + Wi16h + getCarry(Wil, Wi16l)) | 0 + + W[i] = Wih + W[i + 1] = Wil + } + + for (var j = 0; j < 160; j += 2) { + Wih = W[j] + Wil = W[j + 1] + + var majh = maj(ah, bh, ch) + var majl = maj(al, bl, cl) + + var sigma0h = sigma0(ah, al) + var sigma0l = sigma0(al, ah) + var sigma1h = sigma1(eh, el) + var sigma1l = sigma1(el, eh) + + // t1 = h + sigma1 + ch + K[j] + W[j] + var Kih = K[j] + var Kil = K[j + 1] + + var chh = Ch(eh, fh, gh) + var chl = Ch(el, fl, gl) + + var t1l = (hl + sigma1l) | 0 + var t1h = (hh + sigma1h + getCarry(t1l, hl)) | 0 + t1l = (t1l + chl) | 0 + t1h = (t1h + chh + getCarry(t1l, chl)) | 0 + t1l = (t1l + Kil) | 0 + t1h = (t1h + Kih + getCarry(t1l, Kil)) | 0 + t1l = (t1l + Wil) | 0 + t1h = (t1h + Wih + getCarry(t1l, Wil)) | 0 + + // t2 = sigma0 + maj + var t2l = (sigma0l + majl) | 0 + var t2h = (sigma0h + majh + getCarry(t2l, sigma0l)) | 0 + + hh = gh + hl = gl + gh = fh + gl = fl + fh = eh + fl = el + el = (dl + t1l) | 0 + eh = (dh + t1h + getCarry(el, dl)) | 0 + dh = ch + dl = cl + ch = bh + cl = bl + bh = ah + bl = al + al = (t1l + t2l) | 0 + ah = (t1h + t2h + getCarry(al, t1l)) | 0 + } + + this._al = (this._al + al) | 0 + this._bl = (this._bl + bl) | 0 + this._cl = (this._cl + cl) | 0 + this._dl = (this._dl + dl) | 0 + this._el = (this._el + el) | 0 + this._fl = (this._fl + fl) | 0 + this._gl = (this._gl + gl) | 0 + this._hl = (this._hl + hl) | 0 + + this._ah = (this._ah + ah + getCarry(this._al, al)) | 0 + this._bh = (this._bh + bh + getCarry(this._bl, bl)) | 0 + this._ch = (this._ch + ch + getCarry(this._cl, cl)) | 0 + this._dh = (this._dh + dh + getCarry(this._dl, dl)) | 0 + this._eh = (this._eh + eh + getCarry(this._el, el)) | 0 + this._fh = (this._fh + fh + getCarry(this._fl, fl)) | 0 + this._gh = (this._gh + gh + getCarry(this._gl, gl)) | 0 + this._hh = (this._hh + hh + getCarry(this._hl, hl)) | 0 + } + + Sha512.prototype._hash = function() { + var H = Buffer.allocUnsafe(64) + + function writeInt64BE(h, l, offset) { + H.writeInt32BE(h, offset) + H.writeInt32BE(l, offset + 4) + } + + writeInt64BE(this._ah, this._al, 0) + writeInt64BE(this._bh, this._bl, 8) + writeInt64BE(this._ch, this._cl, 16) + writeInt64BE(this._dh, this._dl, 24) + writeInt64BE(this._eh, this._el, 32) + writeInt64BE(this._fh, this._fl, 40) + writeInt64BE(this._gh, this._gl, 48) + writeInt64BE(this._hh, this._hl, 56) + + return H + } + + module.exports = Sha512 + }, + { "./hash": 149, inherits: 100, "safe-buffer": 148 } + ], + 157: [ + function(require, module, exports) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + module.exports = Stream + + var EE = require("events").EventEmitter + var inherits = require("inherits") + + inherits(Stream, EE) + Stream.Readable = require("readable-stream/readable.js") + Stream.Writable = require("readable-stream/writable.js") + Stream.Duplex = require("readable-stream/duplex.js") + Stream.Transform = require("readable-stream/transform.js") + Stream.PassThrough = require("readable-stream/passthrough.js") + + // Backwards-compat with node 0.4.x + Stream.Stream = Stream + + // old-style streams. Note that the pipe method (the only relevant + // part of this class) is overridden in the Readable class. + + function Stream() { + EE.call(this) + } + + Stream.prototype.pipe = function(dest, options) { + var source = this + + function ondata(chunk) { + if (dest.writable) { + if (false === dest.write(chunk) && source.pause) { + source.pause() + } + } + } + + source.on("data", ondata) + + function ondrain() { + if (source.readable && source.resume) { + source.resume() + } + } + + dest.on("drain", ondrain) + + // If the 'end' option is not supplied, dest.end() will be called when + // source gets the 'end' or 'close' events. Only dest.end() once. + if (!dest._isStdio && (!options || options.end !== false)) { + source.on("end", onend) + source.on("close", onclose) + } + + var didOnEnd = false + function onend() { + if (didOnEnd) return + didOnEnd = true + + dest.end() + } + + function onclose() { + if (didOnEnd) return + didOnEnd = true + + if (typeof dest.destroy === "function") dest.destroy() + } + + // don't leave dangling pipes when there are errors. + function onerror(er) { + cleanup() + if (EE.listenerCount(this, "error") === 0) { + throw er // Unhandled stream error in pipe. + } + } + + source.on("error", onerror) + dest.on("error", onerror) + + // remove all the event listeners that were added. + function cleanup() { + source.removeListener("data", ondata) + dest.removeListener("drain", ondrain) + + source.removeListener("end", onend) + source.removeListener("close", onclose) + + source.removeListener("error", onerror) + dest.removeListener("error", onerror) + + source.removeListener("end", cleanup) + source.removeListener("close", cleanup) + + dest.removeListener("close", cleanup) + } + + source.on("end", cleanup) + source.on("close", cleanup) + + dest.on("close", cleanup) + + dest.emit("pipe", source) + + // Allow for unix-like usage: A.pipe(B).pipe(C) + return dest + } + }, + { + events: 83, + inherits: 100, + "readable-stream/duplex.js": 133, + "readable-stream/passthrough.js": 143, + "readable-stream/readable.js": 144, + "readable-stream/transform.js": 145, + "readable-stream/writable.js": 146 + } + ], + 158: [ + function(require, module, exports) { + arguments[4][142][0].apply(exports, arguments) + }, + { dup: 142, "safe-buffer": 148 } + ], + 159: [ + function(require, module, exports) { + ;(function(setImmediate, clearImmediate) { + var nextTick = require("process/browser.js").nextTick + var apply = Function.prototype.apply + var slice = Array.prototype.slice + var immediateIds = {} + var nextImmediateId = 0 + + // DOM APIs, for completeness + + exports.setTimeout = function() { + return new Timeout( + apply.call(setTimeout, window, arguments), + clearTimeout + ) + } + exports.setInterval = function() { + return new Timeout( + apply.call(setInterval, window, arguments), + clearInterval + ) + } + exports.clearTimeout = exports.clearInterval = function(timeout) { + timeout.close() + } + + function Timeout(id, clearFn) { + this._id = id + this._clearFn = clearFn + } + Timeout.prototype.unref = Timeout.prototype.ref = function() {} + Timeout.prototype.close = function() { + this._clearFn.call(window, this._id) + } + + // Does not start the time, just sets up the members needed. + exports.enroll = function(item, msecs) { + clearTimeout(item._idleTimeoutId) + item._idleTimeout = msecs + } + + exports.unenroll = function(item) { + clearTimeout(item._idleTimeoutId) + item._idleTimeout = -1 + } + + exports._unrefActive = exports.active = function(item) { + clearTimeout(item._idleTimeoutId) + + var msecs = item._idleTimeout + if (msecs >= 0) { + item._idleTimeoutId = setTimeout(function onTimeout() { + if (item._onTimeout) item._onTimeout() + }, msecs) + } + } + + // That's not how node.js implements it but the exposed api is the same. + exports.setImmediate = + typeof setImmediate === "function" + ? setImmediate + : function(fn) { + var id = nextImmediateId++ + var args = + arguments.length < 2 ? false : slice.call(arguments, 1) + + immediateIds[id] = true + + nextTick(function onNextTick() { + if (immediateIds[id]) { + // fn.call() is faster so we optimize for the common use-case + // @see http://jsperf.com/call-apply-segu + if (args) { + fn.apply(null, args) + } else { + fn.call(null) + } + // Prevent ids from leaking + exports.clearImmediate(id) + } + }) + + return id + } + + exports.clearImmediate = + typeof clearImmediate === "function" + ? clearImmediate + : function(id) { + delete immediateIds[id] + } + }.call( + this, + require("timers").setImmediate, + require("timers").clearImmediate + )) + }, + { "process/browser.js": 120, timers: 159 } + ], + 160: [ + function(require, module, exports) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + "use strict" + + var punycode = require("punycode") + var util = require("./util") + + exports.parse = urlParse + exports.resolve = urlResolve + exports.resolveObject = urlResolveObject + exports.format = urlFormat + + exports.Url = Url + + function Url() { + this.protocol = null + this.slashes = null + this.auth = null + this.host = null + this.port = null + this.hostname = null + this.hash = null + this.search = null + this.query = null + this.pathname = null + this.path = null + this.href = null + } + + // Reference: RFC 3986, RFC 1808, RFC 2396 + + // define these here so at least they only have to be + // compiled once on the first module load. + var protocolPattern = /^([a-z0-9.+-]+:)/i, + portPattern = /:[0-9]*$/, + // Special case for a simple path URL + simplePathPattern = /^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/, + // RFC 2396: characters reserved for delimiting URLs. + // We actually just auto-escape these. + delims = ["<", ">", '"', "`", " ", "\r", "\n", "\t"], + // RFC 2396: characters not allowed for various reasons. + unwise = ["{", "}", "|", "\\", "^", "`"].concat(delims), + // Allowed by RFCs, but cause of XSS attacks. Always escape these. + autoEscape = ["'"].concat(unwise), + // Characters that are never ever allowed in a hostname. + // Note that any invalid chars are also handled, but these + // are the ones that are *expected* to be seen, so we fast-path + // them. + nonHostChars = ["%", "/", "?", ";", "#"].concat(autoEscape), + hostEndingChars = ["/", "?", "#"], + hostnameMaxLen = 255, + hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/, + hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/, + // protocols that can allow "unsafe" and "unwise" chars. + unsafeProtocol = { + javascript: true, + "javascript:": true + }, + // protocols that never have a hostname. + hostlessProtocol = { + javascript: true, + "javascript:": true + }, + // protocols that always contain a // bit. + slashedProtocol = { + http: true, + https: true, + ftp: true, + gopher: true, + file: true, + "http:": true, + "https:": true, + "ftp:": true, + "gopher:": true, + "file:": true + }, + querystring = require("querystring") + + function urlParse(url, parseQueryString, slashesDenoteHost) { + if (url && util.isObject(url) && url instanceof Url) return url + + var u = new Url() + u.parse(url, parseQueryString, slashesDenoteHost) + return u + } + + Url.prototype.parse = function( + url, + parseQueryString, + slashesDenoteHost + ) { + if (!util.isString(url)) { + throw new TypeError( + "Parameter 'url' must be a string, not " + typeof url + ) + } + + // Copy chrome, IE, opera backslash-handling behavior. + // Back slashes before the query string get converted to forward slashes + // See: https://code.google.com/p/chromium/issues/detail?id=25916 + var queryIndex = url.indexOf("?"), + splitter = + queryIndex !== -1 && queryIndex < url.indexOf("#") ? "?" : "#", + uSplit = url.split(splitter), + slashRegex = /\\/g + uSplit[0] = uSplit[0].replace(slashRegex, "/") + url = uSplit.join(splitter) + + var rest = url + + // trim before proceeding. + // This is to support parse stuff like " http://foo.com \n" + rest = rest.trim() + + if (!slashesDenoteHost && url.split("#").length === 1) { + // Try fast path regexp + var simplePath = simplePathPattern.exec(rest) + if (simplePath) { + this.path = rest + this.href = rest + this.pathname = simplePath[1] + if (simplePath[2]) { + this.search = simplePath[2] + if (parseQueryString) { + this.query = querystring.parse(this.search.substr(1)) + } else { + this.query = this.search.substr(1) + } + } else if (parseQueryString) { + this.search = "" + this.query = {} + } + return this + } + } + + var proto = protocolPattern.exec(rest) + if (proto) { + proto = proto[0] + var lowerProto = proto.toLowerCase() + this.protocol = lowerProto + rest = rest.substr(proto.length) + } + + // figure out if it's got a host + // user@server is *always* interpreted as a hostname, and url + // resolution will treat //foo/bar as host=foo,path=bar because that's + // how the browser resolves relative URLs. + if ( + slashesDenoteHost || + proto || + rest.match(/^\/\/[^@\/]+@[^@\/]+/) + ) { + var slashes = rest.substr(0, 2) === "//" + if (slashes && !(proto && hostlessProtocol[proto])) { + rest = rest.substr(2) + this.slashes = true + } + } + + if ( + !hostlessProtocol[proto] && + (slashes || (proto && !slashedProtocol[proto])) + ) { + // there's a hostname. + // the first instance of /, ?, ;, or # ends the host. + // + // If there is an @ in the hostname, then non-host chars *are* allowed + // to the left of the last @ sign, unless some host-ending character + // comes *before* the @-sign. + // URLs are obnoxious. + // + // ex: + // http://a@b@c/ => user:a@b host:c + // http://a@b?@c => user:a host:c path:/?@c + + // v0.12 TODO(isaacs): This is not quite how Chrome does things. + // Review our test case against browsers more comprehensively. + + // find the first instance of any hostEndingChars + var hostEnd = -1 + for (var i = 0; i < hostEndingChars.length; i++) { + var hec = rest.indexOf(hostEndingChars[i]) + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec + } + + // at this point, either we have an explicit point where the + // auth portion cannot go past, or the last @ char is the decider. + var auth, atSign + if (hostEnd === -1) { + // atSign can be anywhere. + atSign = rest.lastIndexOf("@") + } else { + // atSign must be in auth portion. + // http://a@b/c@d => host:b auth:a path:/c@d + atSign = rest.lastIndexOf("@", hostEnd) + } + + // Now we have a portion which is definitely the auth. + // Pull that off. + if (atSign !== -1) { + auth = rest.slice(0, atSign) + rest = rest.slice(atSign + 1) + this.auth = decodeURIComponent(auth) + } + + // the host is the remaining to the left of the first non-host char + hostEnd = -1 + for (var i = 0; i < nonHostChars.length; i++) { + var hec = rest.indexOf(nonHostChars[i]) + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec + } + // if we still have not hit it, then the entire thing is a host. + if (hostEnd === -1) hostEnd = rest.length + + this.host = rest.slice(0, hostEnd) + rest = rest.slice(hostEnd) + + // pull out port. + this.parseHost() + + // we've indicated that there is a hostname, + // so even if it's empty, it has to be present. + this.hostname = this.hostname || "" + + // if hostname begins with [ and ends with ] + // assume that it's an IPv6 address. + var ipv6Hostname = + this.hostname[0] === "[" && + this.hostname[this.hostname.length - 1] === "]" + + // validate a little. + if (!ipv6Hostname) { + var hostparts = this.hostname.split(/\./) + for (var i = 0, l = hostparts.length; i < l; i++) { + var part = hostparts[i] + if (!part) continue + if (!part.match(hostnamePartPattern)) { + var newpart = "" + for (var j = 0, k = part.length; j < k; j++) { + if (part.charCodeAt(j) > 127) { + // we replace non-ASCII char with a temporary placeholder + // we need this to make sure size of hostname is not + // broken by replacing non-ASCII by nothing + newpart += "x" + } else { + newpart += part[j] + } + } + // we test again with ASCII char only + if (!newpart.match(hostnamePartPattern)) { + var validParts = hostparts.slice(0, i) + var notHost = hostparts.slice(i + 1) + var bit = part.match(hostnamePartStart) + if (bit) { + validParts.push(bit[1]) + notHost.unshift(bit[2]) + } + if (notHost.length) { + rest = "/" + notHost.join(".") + rest + } + this.hostname = validParts.join(".") + break + } + } + } + } + + if (this.hostname.length > hostnameMaxLen) { + this.hostname = "" + } else { + // hostnames are always lower case. + this.hostname = this.hostname.toLowerCase() + } + + if (!ipv6Hostname) { + // IDNA Support: Returns a punycoded representation of "domain". + // It only converts parts of the domain name that + // have non-ASCII characters, i.e. it doesn't matter if + // you call it with a domain that already is ASCII-only. + this.hostname = punycode.toASCII(this.hostname) + } + + var p = this.port ? ":" + this.port : "" + var h = this.hostname || "" + this.host = h + p + this.href += this.host + + // strip [ and ] from the hostname + // the host field still retains them, though + if (ipv6Hostname) { + this.hostname = this.hostname.substr( + 1, + this.hostname.length - 2 + ) + if (rest[0] !== "/") { + rest = "/" + rest + } + } + } + + // now rest is set to the post-host stuff. + // chop off any delim chars. + if (!unsafeProtocol[lowerProto]) { + // First, make 100% sure that any "autoEscape" chars get + // escaped, even if encodeURIComponent doesn't think they + // need to be. + for (var i = 0, l = autoEscape.length; i < l; i++) { + var ae = autoEscape[i] + if (rest.indexOf(ae) === -1) continue + var esc = encodeURIComponent(ae) + if (esc === ae) { + esc = escape(ae) + } + rest = rest.split(ae).join(esc) + } + } + + // chop off from the tail first. + var hash = rest.indexOf("#") + if (hash !== -1) { + // got a fragment string. + this.hash = rest.substr(hash) + rest = rest.slice(0, hash) + } + var qm = rest.indexOf("?") + if (qm !== -1) { + this.search = rest.substr(qm) + this.query = rest.substr(qm + 1) + if (parseQueryString) { + this.query = querystring.parse(this.query) + } + rest = rest.slice(0, qm) + } else if (parseQueryString) { + // no query string, but parseQueryString still requested + this.search = "" + this.query = {} + } + if (rest) this.pathname = rest + if ( + slashedProtocol[lowerProto] && + this.hostname && + !this.pathname + ) { + this.pathname = "/" + } + + //to support http.request + if (this.pathname || this.search) { + var p = this.pathname || "" + var s = this.search || "" + this.path = p + s + } + + // finally, reconstruct the href based on what has been validated. + this.href = this.format() + return this + } + + // format a parsed object into a url string + function urlFormat(obj) { + // ensure it's an object, and not a string url. + // If it's an obj, this is a no-op. + // this way, you can call url_format() on strings + // to clean up potentially wonky urls. + if (util.isString(obj)) obj = urlParse(obj) + if (!(obj instanceof Url)) return Url.prototype.format.call(obj) + return obj.format() + } + + Url.prototype.format = function() { + var auth = this.auth || "" + if (auth) { + auth = encodeURIComponent(auth) + auth = auth.replace(/%3A/i, ":") + auth += "@" + } + + var protocol = this.protocol || "", + pathname = this.pathname || "", + hash = this.hash || "", + host = false, + query = "" + + if (this.host) { + host = auth + this.host + } else if (this.hostname) { + host = + auth + + (this.hostname.indexOf(":") === -1 + ? this.hostname + : "[" + this.hostname + "]") + if (this.port) { + host += ":" + this.port + } + } + + if ( + this.query && + util.isObject(this.query) && + Object.keys(this.query).length + ) { + query = querystring.stringify(this.query) + } + + var search = this.search || (query && "?" + query) || "" + + if (protocol && protocol.substr(-1) !== ":") protocol += ":" + + // only the slashedProtocols get the //. Not mailto:, xmpp:, etc. + // unless they had them to begin with. + if ( + this.slashes || + ((!protocol || slashedProtocol[protocol]) && host !== false) + ) { + host = "//" + (host || "") + if (pathname && pathname.charAt(0) !== "/") + pathname = "/" + pathname + } else if (!host) { + host = "" + } + + if (hash && hash.charAt(0) !== "#") hash = "#" + hash + if (search && search.charAt(0) !== "?") search = "?" + search + + pathname = pathname.replace(/[?#]/g, function(match) { + return encodeURIComponent(match) + }) + search = search.replace("#", "%23") + + return protocol + host + pathname + search + hash + } + + function urlResolve(source, relative) { + return urlParse(source, false, true).resolve(relative) + } + + Url.prototype.resolve = function(relative) { + return this.resolveObject(urlParse(relative, false, true)).format() + } + + function urlResolveObject(source, relative) { + if (!source) return relative + return urlParse(source, false, true).resolveObject(relative) + } + + Url.prototype.resolveObject = function(relative) { + if (util.isString(relative)) { + var rel = new Url() + rel.parse(relative, false, true) + relative = rel + } + + var result = new Url() + var tkeys = Object.keys(this) + for (var tk = 0; tk < tkeys.length; tk++) { + var tkey = tkeys[tk] + result[tkey] = this[tkey] + } + + // hash is always overridden, no matter what. + // even href="" will remove it. + result.hash = relative.hash + + // if the relative url is empty, then there's nothing left to do here. + if (relative.href === "") { + result.href = result.format() + return result + } + + // hrefs like //foo/bar always cut to the protocol. + if (relative.slashes && !relative.protocol) { + // take everything except the protocol from relative + var rkeys = Object.keys(relative) + for (var rk = 0; rk < rkeys.length; rk++) { + var rkey = rkeys[rk] + if (rkey !== "protocol") result[rkey] = relative[rkey] + } + + //urlParse appends trailing / to urls like http://www.example.com + if ( + slashedProtocol[result.protocol] && + result.hostname && + !result.pathname + ) { + result.path = result.pathname = "/" + } + + result.href = result.format() + return result + } + + if (relative.protocol && relative.protocol !== result.protocol) { + // if it's a known url protocol, then changing + // the protocol does weird things + // first, if it's not file:, then we MUST have a host, + // and if there was a path + // to begin with, then we MUST have a path. + // if it is file:, then the host is dropped, + // because that's known to be hostless. + // anything else is assumed to be absolute. + if (!slashedProtocol[relative.protocol]) { + var keys = Object.keys(relative) + for (var v = 0; v < keys.length; v++) { + var k = keys[v] + result[k] = relative[k] + } + result.href = result.format() + return result + } + + result.protocol = relative.protocol + if (!relative.host && !hostlessProtocol[relative.protocol]) { + var relPath = (relative.pathname || "").split("/") + while (relPath.length && !(relative.host = relPath.shift())); + if (!relative.host) relative.host = "" + if (!relative.hostname) relative.hostname = "" + if (relPath[0] !== "") relPath.unshift("") + if (relPath.length < 2) relPath.unshift("") + result.pathname = relPath.join("/") + } else { + result.pathname = relative.pathname + } + result.search = relative.search + result.query = relative.query + result.host = relative.host || "" + result.auth = relative.auth + result.hostname = relative.hostname || relative.host + result.port = relative.port + // to support http.request + if (result.pathname || result.search) { + var p = result.pathname || "" + var s = result.search || "" + result.path = p + s + } + result.slashes = result.slashes || relative.slashes + result.href = result.format() + return result + } + + var isSourceAbs = + result.pathname && result.pathname.charAt(0) === "/", + isRelAbs = + relative.host || + (relative.pathname && relative.pathname.charAt(0) === "/"), + mustEndAbs = + isRelAbs || isSourceAbs || (result.host && relative.pathname), + removeAllDots = mustEndAbs, + srcPath = (result.pathname && result.pathname.split("/")) || [], + relPath = + (relative.pathname && relative.pathname.split("/")) || [], + psychotic = result.protocol && !slashedProtocol[result.protocol] + + // if the url is a non-slashed url, then relative + // links like ../.. should be able + // to crawl up to the hostname, as well. This is strange. + // result.protocol has already been set by now. + // Later on, put the first path part into the host field. + if (psychotic) { + result.hostname = "" + result.port = null + if (result.host) { + if (srcPath[0] === "") srcPath[0] = result.host + else srcPath.unshift(result.host) + } + result.host = "" + if (relative.protocol) { + relative.hostname = null + relative.port = null + if (relative.host) { + if (relPath[0] === "") relPath[0] = relative.host + else relPath.unshift(relative.host) + } + relative.host = null + } + mustEndAbs = + mustEndAbs && (relPath[0] === "" || srcPath[0] === "") + } + + if (isRelAbs) { + // it's absolute. + result.host = + relative.host || relative.host === "" + ? relative.host + : result.host + result.hostname = + relative.hostname || relative.hostname === "" + ? relative.hostname + : result.hostname + result.search = relative.search + result.query = relative.query + srcPath = relPath + // fall through to the dot-handling below. + } else if (relPath.length) { + // it's relative + // throw away the existing file, and take the new path instead. + if (!srcPath) srcPath = [] + srcPath.pop() + srcPath = srcPath.concat(relPath) + result.search = relative.search + result.query = relative.query + } else if (!util.isNullOrUndefined(relative.search)) { + // just pull out the search. + // like href='?foo'. + // Put this after the other two cases because it simplifies the booleans + if (psychotic) { + result.hostname = result.host = srcPath.shift() + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + var authInHost = + result.host && result.host.indexOf("@") > 0 + ? result.host.split("@") + : false + if (authInHost) { + result.auth = authInHost.shift() + result.host = result.hostname = authInHost.shift() + } + } + result.search = relative.search + result.query = relative.query + //to support http.request + if ( + !util.isNull(result.pathname) || + !util.isNull(result.search) + ) { + result.path = + (result.pathname ? result.pathname : "") + + (result.search ? result.search : "") + } + result.href = result.format() + return result + } + + if (!srcPath.length) { + // no path at all. easy. + // we've already handled the other stuff above. + result.pathname = null + //to support http.request + if (result.search) { + result.path = "/" + result.search + } else { + result.path = null + } + result.href = result.format() + return result + } + + // if a url ENDs in . or .., then it must get a trailing slash. + // however, if it ends in anything else non-slashy, + // then it must NOT get a trailing slash. + var last = srcPath.slice(-1)[0] + var hasTrailingSlash = + ((result.host || relative.host || srcPath.length > 1) && + (last === "." || last === "..")) || + last === "" + + // strip single dots, resolve double dots to parent dir + // if the path tries to go above the root, `up` ends up > 0 + var up = 0 + for (var i = srcPath.length; i >= 0; i--) { + last = srcPath[i] + if (last === ".") { + srcPath.splice(i, 1) + } else if (last === "..") { + srcPath.splice(i, 1) + up++ + } else if (up) { + srcPath.splice(i, 1) + up-- + } + } + + // if the path is allowed to go above the root, restore leading ..s + if (!mustEndAbs && !removeAllDots) { + for (; up--; up) { + srcPath.unshift("..") + } + } + + if ( + mustEndAbs && + srcPath[0] !== "" && + (!srcPath[0] || srcPath[0].charAt(0) !== "/") + ) { + srcPath.unshift("") + } + + if (hasTrailingSlash && srcPath.join("/").substr(-1) !== "/") { + srcPath.push("") + } + + var isAbsolute = + srcPath[0] === "" || (srcPath[0] && srcPath[0].charAt(0) === "/") + + // put the host back + if (psychotic) { + result.hostname = result.host = isAbsolute + ? "" + : srcPath.length + ? srcPath.shift() + : "" + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + var authInHost = + result.host && result.host.indexOf("@") > 0 + ? result.host.split("@") + : false + if (authInHost) { + result.auth = authInHost.shift() + result.host = result.hostname = authInHost.shift() + } + } + + mustEndAbs = mustEndAbs || (result.host && srcPath.length) + + if (mustEndAbs && !isAbsolute) { + srcPath.unshift("") + } + + if (!srcPath.length) { + result.pathname = null + result.path = null + } else { + result.pathname = srcPath.join("/") + } + + //to support request.http + if (!util.isNull(result.pathname) || !util.isNull(result.search)) { + result.path = + (result.pathname ? result.pathname : "") + + (result.search ? result.search : "") + } + result.auth = relative.auth || result.auth + result.slashes = result.slashes || relative.slashes + result.href = result.format() + return result + } + + Url.prototype.parseHost = function() { + var host = this.host + var port = portPattern.exec(host) + if (port) { + port = port[0] + if (port !== ":") { + this.port = port.substr(1) + } + host = host.substr(0, host.length - port.length) + } + if (host) this.hostname = host + } + }, + { "./util": 161, punycode: 127, querystring: 130 } + ], + 161: [ + function(require, module, exports) { + "use strict" + + module.exports = { + isString: function(arg) { + return typeof arg === "string" + }, + isObject: function(arg) { + return typeof arg === "object" && arg !== null + }, + isNull: function(arg) { + return arg === null + }, + isNullOrUndefined: function(arg) { + return arg == null + } + } + }, + {} + ], + 162: [ + function(require, module, exports) { + ;(function(global) { + /** + * Module exports. + */ + + module.exports = deprecate + + /** + * Mark that a method should not be used. + * Returns a modified function which warns once by default. + * + * If `localStorage.noDeprecation = true` is set, then it is a no-op. + * + * If `localStorage.throwDeprecation = true` is set, then deprecated functions + * will throw an Error when invoked. + * + * If `localStorage.traceDeprecation = true` is set, then deprecated functions + * will invoke `console.trace()` instead of `console.error()`. + * + * @param {Function} fn - the function to deprecate + * @param {String} msg - the string to print to the console when `fn` is invoked + * @returns {Function} a new "deprecated" version of `fn` + * @api public + */ + + function deprecate(fn, msg) { + if (config("noDeprecation")) { + return fn + } + + var warned = false + function deprecated() { + if (!warned) { + if (config("throwDeprecation")) { + throw new Error(msg) + } else if (config("traceDeprecation")) { + console.trace(msg) + } else { + console.warn(msg) + } + warned = true + } + return fn.apply(this, arguments) + } + + return deprecated + } + + /** + * Checks `localStorage` for boolean values for the given `name`. + * + * @param {String} name + * @returns {Boolean} + * @api private + */ + + function config(name) { + // accessing global.localStorage can trigger a DOMException in sandboxed iframes + try { + if (!global.localStorage) return false + } catch (_) { + return false + } + var val = global.localStorage[name] + if (null == val) return false + return String(val).toLowerCase() === "true" + } + }.call( + this, + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + {} + ], + 163: [ + function(require, module, exports) { + module.exports = function isBuffer(arg) { + return ( + arg && + typeof arg === "object" && + typeof arg.copy === "function" && + typeof arg.fill === "function" && + typeof arg.readUInt8 === "function" + ) + } + }, + {} + ], + 164: [ + function(require, module, exports) { + ;(function(process, global) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + var formatRegExp = /%[sdj%]/g + exports.format = function(f) { + if (!isString(f)) { + var objects = [] + for (var i = 0; i < arguments.length; i++) { + objects.push(inspect(arguments[i])) + } + return objects.join(" ") + } + + var i = 1 + var args = arguments + var len = args.length + var str = String(f).replace(formatRegExp, function(x) { + if (x === "%%") return "%" + if (i >= len) return x + switch (x) { + case "%s": + return String(args[i++]) + case "%d": + return Number(args[i++]) + case "%j": + try { + return JSON.stringify(args[i++]) + } catch (_) { + return "[Circular]" + } + default: + return x + } + }) + for (var x = args[i]; i < len; x = args[++i]) { + if (isNull(x) || !isObject(x)) { + str += " " + x + } else { + str += " " + inspect(x) + } + } + return str + } + + // Mark that a method should not be used. + // Returns a modified function which warns once by default. + // If --no-deprecation is set, then it is a no-op. + exports.deprecate = function(fn, msg) { + // Allow for deprecating things in the process of starting up. + if (isUndefined(global.process)) { + return function() { + return exports.deprecate(fn, msg).apply(this, arguments) + } + } + + if (process.noDeprecation === true) { + return fn + } + + var warned = false + function deprecated() { + if (!warned) { + if (process.throwDeprecation) { + throw new Error(msg) + } else if (process.traceDeprecation) { + console.trace(msg) + } else { + console.error(msg) + } + warned = true + } + return fn.apply(this, arguments) + } + + return deprecated + } + + var debugs = {} + var debugEnviron + exports.debuglog = function(set) { + if (isUndefined(debugEnviron)) + debugEnviron = process.env.NODE_DEBUG || "" + set = set.toUpperCase() + if (!debugs[set]) { + if (new RegExp("\\b" + set + "\\b", "i").test(debugEnviron)) { + var pid = process.pid + debugs[set] = function() { + var msg = exports.format.apply(exports, arguments) + console.error("%s %d: %s", set, pid, msg) + } + } else { + debugs[set] = function() {} + } + } + return debugs[set] + } + + /** + * Echos the value of a value. Trys to print the value out + * in the best way possible given the different types. + * + * @param {Object} obj The object to print out. + * @param {Object} opts Optional options object that alters the output. + */ + /* legacy: obj, showHidden, depth, colors*/ + function inspect(obj, opts) { + // default options + var ctx = { + seen: [], + stylize: stylizeNoColor + } + // legacy... + if (arguments.length >= 3) ctx.depth = arguments[2] + if (arguments.length >= 4) ctx.colors = arguments[3] + if (isBoolean(opts)) { + // legacy... + ctx.showHidden = opts + } else if (opts) { + // got an "options" object + exports._extend(ctx, opts) + } + // set default options + if (isUndefined(ctx.showHidden)) ctx.showHidden = false + if (isUndefined(ctx.depth)) ctx.depth = 2 + if (isUndefined(ctx.colors)) ctx.colors = false + if (isUndefined(ctx.customInspect)) ctx.customInspect = true + if (ctx.colors) ctx.stylize = stylizeWithColor + return formatValue(ctx, obj, ctx.depth) + } + exports.inspect = inspect + + // http://en.wikipedia.org/wiki/ANSI_escape_code#graphics + inspect.colors = { + bold: [1, 22], + italic: [3, 23], + underline: [4, 24], + inverse: [7, 27], + white: [37, 39], + grey: [90, 39], + black: [30, 39], + blue: [34, 39], + cyan: [36, 39], + green: [32, 39], + magenta: [35, 39], + red: [31, 39], + yellow: [33, 39] + } + + // Don't use 'blue' not visible on cmd.exe + inspect.styles = { + special: "cyan", + number: "yellow", + boolean: "yellow", + undefined: "grey", + null: "bold", + string: "green", + date: "magenta", + // "name": intentionally not styling + regexp: "red" + } + + function stylizeWithColor(str, styleType) { + var style = inspect.styles[styleType] + + if (style) { + return ( + "\u001b[" + + inspect.colors[style][0] + + "m" + + str + + "\u001b[" + + inspect.colors[style][1] + + "m" + ) + } else { + return str + } + } + + function stylizeNoColor(str, styleType) { + return str + } + + function arrayToHash(array) { + var hash = {} + + array.forEach(function(val, idx) { + hash[val] = true + }) + + return hash + } + + function formatValue(ctx, value, recurseTimes) { + // Provide a hook for user-specified inspect functions. + // Check that value is an object with an inspect function on it + if ( + ctx.customInspect && + value && + isFunction(value.inspect) && + // Filter out the util module, it's inspect function is special + value.inspect !== exports.inspect && + // Also filter out any prototype objects using the circular check. + !(value.constructor && value.constructor.prototype === value) + ) { + var ret = value.inspect(recurseTimes, ctx) + if (!isString(ret)) { + ret = formatValue(ctx, ret, recurseTimes) + } + return ret + } + + // Primitive types cannot have properties + var primitive = formatPrimitive(ctx, value) + if (primitive) { + return primitive + } + + // Look up the keys of the object. + var keys = Object.keys(value) + var visibleKeys = arrayToHash(keys) + + if (ctx.showHidden) { + keys = Object.getOwnPropertyNames(value) + } + + // IE doesn't make error fields non-enumerable + // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx + if ( + isError(value) && + (keys.indexOf("message") >= 0 || + keys.indexOf("description") >= 0) + ) { + return formatError(value) + } + + // Some type of object without properties can be shortcutted. + if (keys.length === 0) { + if (isFunction(value)) { + var name = value.name ? ": " + value.name : "" + return ctx.stylize("[Function" + name + "]", "special") + } + if (isRegExp(value)) { + return ctx.stylize( + RegExp.prototype.toString.call(value), + "regexp" + ) + } + if (isDate(value)) { + return ctx.stylize( + Date.prototype.toString.call(value), + "date" + ) + } + if (isError(value)) { + return formatError(value) + } + } + + var base = "", + array = false, + braces = ["{", "}"] + + // Make Array say that they are Array + if (isArray(value)) { + array = true + braces = ["[", "]"] + } + + // Make functions say that they are functions + if (isFunction(value)) { + var n = value.name ? ": " + value.name : "" + base = " [Function" + n + "]" + } + + // Make RegExps say that they are RegExps + if (isRegExp(value)) { + base = " " + RegExp.prototype.toString.call(value) + } + + // Make dates with properties first say the date + if (isDate(value)) { + base = " " + Date.prototype.toUTCString.call(value) + } + + // Make error with message first say the error + if (isError(value)) { + base = " " + formatError(value) + } + + if (keys.length === 0 && (!array || value.length == 0)) { + return braces[0] + base + braces[1] + } + + if (recurseTimes < 0) { + if (isRegExp(value)) { + return ctx.stylize( + RegExp.prototype.toString.call(value), + "regexp" + ) + } else { + return ctx.stylize("[Object]", "special") + } + } + + ctx.seen.push(value) + + var output + if (array) { + output = formatArray( + ctx, + value, + recurseTimes, + visibleKeys, + keys + ) + } else { + output = keys.map(function(key) { + return formatProperty( + ctx, + value, + recurseTimes, + visibleKeys, + key, + array + ) + }) + } + + ctx.seen.pop() + + return reduceToSingleString(output, base, braces) + } + + function formatPrimitive(ctx, value) { + if (isUndefined(value)) + return ctx.stylize("undefined", "undefined") + if (isString(value)) { + var simple = + "'" + + JSON.stringify(value) + .replace(/^"|"$/g, "") + .replace(/'/g, "\\'") + .replace(/\\"/g, '"') + + "'" + return ctx.stylize(simple, "string") + } + if (isNumber(value)) return ctx.stylize("" + value, "number") + if (isBoolean(value)) return ctx.stylize("" + value, "boolean") + // For some reason typeof null is "object", so special case here. + if (isNull(value)) return ctx.stylize("null", "null") + } + + function formatError(value) { + return "[" + Error.prototype.toString.call(value) + "]" + } + + function formatArray(ctx, value, recurseTimes, visibleKeys, keys) { + var output = [] + for (var i = 0, l = value.length; i < l; ++i) { + if (hasOwnProperty(value, String(i))) { + output.push( + formatProperty( + ctx, + value, + recurseTimes, + visibleKeys, + String(i), + true + ) + ) + } else { + output.push("") + } + } + keys.forEach(function(key) { + if (!key.match(/^\d+$/)) { + output.push( + formatProperty( + ctx, + value, + recurseTimes, + visibleKeys, + key, + true + ) + ) + } + }) + return output + } + + function formatProperty( + ctx, + value, + recurseTimes, + visibleKeys, + key, + array + ) { + var name, str, desc + desc = Object.getOwnPropertyDescriptor(value, key) || { + value: value[key] + } + if (desc.get) { + if (desc.set) { + str = ctx.stylize("[Getter/Setter]", "special") + } else { + str = ctx.stylize("[Getter]", "special") + } + } else { + if (desc.set) { + str = ctx.stylize("[Setter]", "special") + } + } + if (!hasOwnProperty(visibleKeys, key)) { + name = "[" + key + "]" + } + if (!str) { + if (ctx.seen.indexOf(desc.value) < 0) { + if (isNull(recurseTimes)) { + str = formatValue(ctx, desc.value, null) + } else { + str = formatValue(ctx, desc.value, recurseTimes - 1) + } + if (str.indexOf("\n") > -1) { + if (array) { + str = str + .split("\n") + .map(function(line) { + return " " + line + }) + .join("\n") + .substr(2) + } else { + str = + "\n" + + str + .split("\n") + .map(function(line) { + return " " + line + }) + .join("\n") + } + } + } else { + str = ctx.stylize("[Circular]", "special") + } + } + if (isUndefined(name)) { + if (array && key.match(/^\d+$/)) { + return str + } + name = JSON.stringify("" + key) + if (name.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)) { + name = name.substr(1, name.length - 2) + name = ctx.stylize(name, "name") + } else { + name = name + .replace(/'/g, "\\'") + .replace(/\\"/g, '"') + .replace(/(^"|"$)/g, "'") + name = ctx.stylize(name, "string") + } + } + + return name + ": " + str + } + + function reduceToSingleString(output, base, braces) { + var numLinesEst = 0 + var length = output.reduce(function(prev, cur) { + numLinesEst++ + if (cur.indexOf("\n") >= 0) numLinesEst++ + return prev + cur.replace(/\u001b\[\d\d?m/g, "").length + 1 + }, 0) + + if (length > 60) { + return ( + braces[0] + + (base === "" ? "" : base + "\n ") + + " " + + output.join(",\n ") + + " " + + braces[1] + ) + } + + return ( + braces[0] + base + " " + output.join(", ") + " " + braces[1] + ) + } + + // NOTE: These type checking functions intentionally don't use `instanceof` + // because it is fragile and can be easily faked with `Object.create()`. + function isArray(ar) { + return Array.isArray(ar) + } + exports.isArray = isArray + + function isBoolean(arg) { + return typeof arg === "boolean" + } + exports.isBoolean = isBoolean + + function isNull(arg) { + return arg === null + } + exports.isNull = isNull + + function isNullOrUndefined(arg) { + return arg == null + } + exports.isNullOrUndefined = isNullOrUndefined + + function isNumber(arg) { + return typeof arg === "number" + } + exports.isNumber = isNumber + + function isString(arg) { + return typeof arg === "string" + } + exports.isString = isString + + function isSymbol(arg) { + return typeof arg === "symbol" + } + exports.isSymbol = isSymbol + + function isUndefined(arg) { + return arg === void 0 + } + exports.isUndefined = isUndefined + + function isRegExp(re) { + return isObject(re) && objectToString(re) === "[object RegExp]" + } + exports.isRegExp = isRegExp + + function isObject(arg) { + return typeof arg === "object" && arg !== null + } + exports.isObject = isObject + + function isDate(d) { + return isObject(d) && objectToString(d) === "[object Date]" + } + exports.isDate = isDate + + function isError(e) { + return ( + isObject(e) && + (objectToString(e) === "[object Error]" || e instanceof Error) + ) + } + exports.isError = isError + + function isFunction(arg) { + return typeof arg === "function" + } + exports.isFunction = isFunction + + function isPrimitive(arg) { + return ( + arg === null || + typeof arg === "boolean" || + typeof arg === "number" || + typeof arg === "string" || + typeof arg === "symbol" || // ES6 symbol + typeof arg === "undefined" + ) + } + exports.isPrimitive = isPrimitive + + exports.isBuffer = require("./support/isBuffer") + + function objectToString(o) { + return Object.prototype.toString.call(o) + } + + function pad(n) { + return n < 10 ? "0" + n.toString(10) : n.toString(10) + } + + var months = [ + "Jan", + "Feb", + "Mar", + "Apr", + "May", + "Jun", + "Jul", + "Aug", + "Sep", + "Oct", + "Nov", + "Dec" + ] + + // 26 Feb 16:19:34 + function timestamp() { + var d = new Date() + var time = [ + pad(d.getHours()), + pad(d.getMinutes()), + pad(d.getSeconds()) + ].join(":") + return [d.getDate(), months[d.getMonth()], time].join(" ") + } + + // log is just a thin wrapper to console.log that prepends a timestamp + exports.log = function() { + console.log( + "%s - %s", + timestamp(), + exports.format.apply(exports, arguments) + ) + } + + /** + * Inherit the prototype methods from one constructor into another. + * + * The Function.prototype.inherits from lang.js rewritten as a standalone + * function (not on Function.prototype). NOTE: If this file is to be loaded + * during bootstrapping this function needs to be rewritten using some native + * functions as prototype setup using normal JavaScript does not work as + * expected during bootstrapping (see mirror.js in r114903). + * + * @param {function} ctor Constructor function which needs to inherit the + * prototype. + * @param {function} superCtor Constructor function to inherit prototype from. + */ + exports.inherits = require("inherits") + + exports._extend = function(origin, add) { + // Don't do anything if add isn't an object + if (!add || !isObject(add)) return origin + + var keys = Object.keys(add) + var i = keys.length + while (i--) { + origin[keys[i]] = add[keys[i]] + } + return origin + } + + function hasOwnProperty(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop) + } + }.call( + this, + require("_process"), + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + { "./support/isBuffer": 163, _process: 120, inherits: 100 } + ], + 165: [ + function(require, module, exports) { + var indexOf = function(xs, item) { + if (xs.indexOf) return xs.indexOf(item) + else + for (var i = 0; i < xs.length; i++) { + if (xs[i] === item) return i + } + return -1 + } + var Object_keys = function(obj) { + if (Object.keys) return Object.keys(obj) + else { + var res = [] + for (var key in obj) res.push(key) + return res + } + } + + var forEach = function(xs, fn) { + if (xs.forEach) return xs.forEach(fn) + else + for (var i = 0; i < xs.length; i++) { + fn(xs[i], i, xs) + } + } + + var defineProp = (function() { + try { + Object.defineProperty({}, "_", {}) + return function(obj, name, value) { + Object.defineProperty(obj, name, { + writable: true, + enumerable: false, + configurable: true, + value: value + }) + } + } catch (e) { + return function(obj, name, value) { + obj[name] = value + } + } + })() + + var globals = [ + "Array", + "Boolean", + "Date", + "Error", + "EvalError", + "Function", + "Infinity", + "JSON", + "Math", + "NaN", + "Number", + "Object", + "RangeError", + "ReferenceError", + "RegExp", + "String", + "SyntaxError", + "TypeError", + "URIError", + "decodeURI", + "decodeURIComponent", + "encodeURI", + "encodeURIComponent", + "escape", + "eval", + "isFinite", + "isNaN", + "parseFloat", + "parseInt", + "undefined", + "unescape" + ] + + function Context() {} + Context.prototype = {} + + var Script = (exports.Script = function NodeScript(code) { + if (!(this instanceof Script)) return new Script(code) + this.code = code + }) + + Script.prototype.runInContext = function(context) { + if (!(context instanceof Context)) { + throw new TypeError("needs a 'context' argument.") + } + + var iframe = document.createElement("iframe") + if (!iframe.style) iframe.style = {} + iframe.style.display = "none" + + document.body.appendChild(iframe) + + var win = iframe.contentWindow + var wEval = win.eval, + wExecScript = win.execScript + + if (!wEval && wExecScript) { + // win.eval() magically appears when this is called in IE: + wExecScript.call(win, "null") + wEval = win.eval + } + + forEach(Object_keys(context), function(key) { + win[key] = context[key] + }) + forEach(globals, function(key) { + if (context[key]) { + win[key] = context[key] + } + }) + + var winKeys = Object_keys(win) + + var res = wEval.call(win, this.code) + + forEach(Object_keys(win), function(key) { + // Avoid copying circular objects like `top` and `window` by only + // updating existing context properties or new properties in the `win` + // that was only introduced after the eval. + if (key in context || indexOf(winKeys, key) === -1) { + context[key] = win[key] + } + }) + + forEach(globals, function(key) { + if (!(key in context)) { + defineProp(context, key, win[key]) + } + }) + + document.body.removeChild(iframe) + + return res + } + + Script.prototype.runInThisContext = function() { + return eval(this.code) // maybe... + } + + Script.prototype.runInNewContext = function(context) { + var ctx = Script.createContext(context) + var res = this.runInContext(ctx) + + if (context) { + forEach(Object_keys(ctx), function(key) { + context[key] = ctx[key] + }) + } + + return res + } + + forEach(Object_keys(Script.prototype), function(name) { + exports[name] = Script[name] = function(code) { + var s = Script(code) + return s[name].apply(s, [].slice.call(arguments, 1)) + } + }) + + exports.isContext = function(context) { + return context instanceof Context + } + + exports.createScript = function(code) { + return exports.Script(code) + } + + exports.createContext = Script.createContext = function(context) { + var copy = new Context() + if (typeof context === "object") { + forEach(Object_keys(context), function(key) { + copy[key] = context[key] + }) + } + return copy + } + }, + {} + ], + 166: [ + function(require, module, exports) { + "use strict" + + function preserveCamelCase(str) { + let isLastCharLower = false + let isLastCharUpper = false + let isLastLastCharUpper = false + + for (let i = 0; i < str.length; i++) { + const c = str[i] + + if ( + isLastCharLower && + /[a-zA-Z]/.test(c) && + c.toUpperCase() === c + ) { + str = str.substr(0, i) + "-" + str.substr(i) + isLastCharLower = false + isLastLastCharUpper = isLastCharUpper + isLastCharUpper = true + i++ + } else if ( + isLastCharUpper && + isLastLastCharUpper && + /[a-zA-Z]/.test(c) && + c.toLowerCase() === c + ) { + str = str.substr(0, i - 1) + "-" + str.substr(i - 1) + isLastLastCharUpper = isLastCharUpper + isLastCharUpper = false + isLastCharLower = true + } else { + isLastCharLower = c.toLowerCase() === c + isLastLastCharUpper = isLastCharUpper + isLastCharUpper = c.toUpperCase() === c + } + } + + return str + } + + module.exports = function(str) { + if (arguments.length > 1) { + str = Array.from(arguments) + .map(x => x.trim()) + .filter(x => x.length) + .join("-") + } else { + str = str.trim() + } + + if (str.length === 0) { + return "" + } + + if (str.length === 1) { + return str.toLowerCase() + } + + if (/^[a-z0-9]+$/.test(str)) { + return str + } + + const hasUpperCase = str !== str.toLowerCase() + + if (hasUpperCase) { + str = preserveCamelCase(str) + } + + return str + .replace(/^[_.\- ]+/, "") + .toLowerCase() + .replace(/[_.\- ]+(\w|$)/g, (m, p1) => p1.toUpperCase()) + } + }, + {} + ], + 167: [ + function(require, module, exports) { + arguments[4][49][0].apply(exports, arguments) + }, + { + dup: 49, + inherits: 173, + "safe-buffer": 205, + stream: 157, + string_decoder: 158 + } + ], + 168: [ + function(require, module, exports) { + ;(function(Buffer) { + // Copyright Joyent, Inc. and other Node contributors. + // + // Permission is hereby granted, free of charge, to any person obtaining a + // copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to permit + // persons to whom the Software is furnished to do so, subject to the + // following conditions: + // + // The above copyright notice and this permission notice shall be included + // in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + // USE OR OTHER DEALINGS IN THE SOFTWARE. + + // NOTE: These type checking functions intentionally don't use `instanceof` + // because it is fragile and can be easily faked with `Object.create()`. + + function isArray(arg) { + if (Array.isArray) { + return Array.isArray(arg) + } + return objectToString(arg) === "[object Array]" + } + exports.isArray = isArray + + function isBoolean(arg) { + return typeof arg === "boolean" + } + exports.isBoolean = isBoolean + + function isNull(arg) { + return arg === null + } + exports.isNull = isNull + + function isNullOrUndefined(arg) { + return arg == null + } + exports.isNullOrUndefined = isNullOrUndefined + + function isNumber(arg) { + return typeof arg === "number" + } + exports.isNumber = isNumber + + function isString(arg) { + return typeof arg === "string" + } + exports.isString = isString + + function isSymbol(arg) { + return typeof arg === "symbol" + } + exports.isSymbol = isSymbol + + function isUndefined(arg) { + return arg === void 0 + } + exports.isUndefined = isUndefined + + function isRegExp(re) { + return objectToString(re) === "[object RegExp]" + } + exports.isRegExp = isRegExp + + function isObject(arg) { + return typeof arg === "object" && arg !== null + } + exports.isObject = isObject + + function isDate(d) { + return objectToString(d) === "[object Date]" + } + exports.isDate = isDate + + function isError(e) { + return ( + objectToString(e) === "[object Error]" || e instanceof Error + ) + } + exports.isError = isError + + function isFunction(arg) { + return typeof arg === "function" + } + exports.isFunction = isFunction + + function isPrimitive(arg) { + return ( + arg === null || + typeof arg === "boolean" || + typeof arg === "number" || + typeof arg === "string" || + typeof arg === "symbol" || // ES6 symbol + typeof arg === "undefined" + ) + } + exports.isPrimitive = isPrimitive + + exports.isBuffer = Buffer.isBuffer + + function objectToString(o) { + return Object.prototype.toString.call(o) + } + }.call(this, { + isBuffer: require("../../../../../.nvm/versions/node/v10.13.0/lib/node_modules/browserify/node_modules/is-buffer/index.js") + })) + }, + { + "../../../../../.nvm/versions/node/v10.13.0/lib/node_modules/browserify/node_modules/is-buffer/index.js": 101 + } + ], + 169: [ + function(require, module, exports) { + arguments[4][52][0].apply(exports, arguments) + }, + { + "cipher-base": 167, + dup: 52, + inherits: 173, + "md5.js": 182, + ripemd160: 204, + "sha.js": 207 + } + ], + 170: [ + function(require, module, exports) { + ;(function(process, Buffer) { + var stream = require("readable-stream") + var eos = require("end-of-stream") + var inherits = require("inherits") + var shift = require("stream-shift") + + var SIGNAL_FLUSH = + Buffer.from && Buffer.from !== Uint8Array.from + ? Buffer.from([0]) + : new Buffer([0]) + + var onuncork = function(self, fn) { + if (self._corked) self.once("uncork", fn) + else fn() + } + + var autoDestroy = function(self, err) { + if (self._autoDestroy) self.destroy(err) + } + + var destroyer = function(self, end) { + return function(err) { + if (err) + autoDestroy( + self, + err.message === "premature close" ? null : err + ) + else if (end && !self._ended) self.end() + } + } + + var end = function(ws, fn) { + if (!ws) return fn() + if (ws._writableState && ws._writableState.finished) return fn() + if (ws._writableState) return ws.end(fn) + ws.end() + fn() + } + + var toStreams2 = function(rs) { + return new stream.Readable({ + objectMode: true, + highWaterMark: 16 + }).wrap(rs) + } + + var Duplexify = function(writable, readable, opts) { + if (!(this instanceof Duplexify)) + return new Duplexify(writable, readable, opts) + stream.Duplex.call(this, opts) + + this._writable = null + this._readable = null + this._readable2 = null + + this._autoDestroy = !opts || opts.autoDestroy !== false + this._forwardDestroy = !opts || opts.destroy !== false + this._forwardEnd = !opts || opts.end !== false + this._corked = 1 // start corked + this._ondrain = null + this._drained = false + this._forwarding = false + this._unwrite = null + this._unread = null + this._ended = false + + this.destroyed = false + + if (writable) this.setWritable(writable) + if (readable) this.setReadable(readable) + } + + inherits(Duplexify, stream.Duplex) + + Duplexify.obj = function(writable, readable, opts) { + if (!opts) opts = {} + opts.objectMode = true + opts.highWaterMark = 16 + return new Duplexify(writable, readable, opts) + } + + Duplexify.prototype.cork = function() { + if (++this._corked === 1) this.emit("cork") + } + + Duplexify.prototype.uncork = function() { + if (this._corked && --this._corked === 0) this.emit("uncork") + } + + Duplexify.prototype.setWritable = function(writable) { + if (this._unwrite) this._unwrite() + + if (this.destroyed) { + if (writable && writable.destroy) writable.destroy() + return + } + + if (writable === null || writable === false) { + this.end() + return + } + + var self = this + var unend = eos( + writable, + { writable: true, readable: false }, + destroyer(this, this._forwardEnd) + ) + + var ondrain = function() { + var ondrain = self._ondrain + self._ondrain = null + if (ondrain) ondrain() + } + + var clear = function() { + self._writable.removeListener("drain", ondrain) + unend() + } + + if (this._unwrite) process.nextTick(ondrain) // force a drain on stream reset to avoid livelocks + + this._writable = writable + this._writable.on("drain", ondrain) + this._unwrite = clear + + this.uncork() // always uncork setWritable + } + + Duplexify.prototype.setReadable = function(readable) { + if (this._unread) this._unread() + + if (this.destroyed) { + if (readable && readable.destroy) readable.destroy() + return + } + + if (readable === null || readable === false) { + this.push(null) + this.resume() + return + } + + var self = this + var unend = eos( + readable, + { writable: false, readable: true }, + destroyer(this) + ) + + var onreadable = function() { + self._forward() + } + + var onend = function() { + self.push(null) + } + + var clear = function() { + self._readable2.removeListener("readable", onreadable) + self._readable2.removeListener("end", onend) + unend() + } + + this._drained = true + this._readable = readable + this._readable2 = readable._readableState + ? readable + : toStreams2(readable) + this._readable2.on("readable", onreadable) + this._readable2.on("end", onend) + this._unread = clear + + this._forward() + } + + Duplexify.prototype._read = function() { + this._drained = true + this._forward() + } + + Duplexify.prototype._forward = function() { + if (this._forwarding || !this._readable2 || !this._drained) return + this._forwarding = true + + var data + + while ( + this._drained && + (data = shift(this._readable2)) !== null + ) { + if (this.destroyed) continue + this._drained = this.push(data) + } + + this._forwarding = false + } + + Duplexify.prototype.destroy = function(err) { + if (this.destroyed) return + this.destroyed = true + + var self = this + process.nextTick(function() { + self._destroy(err) + }) + } + + Duplexify.prototype._destroy = function(err) { + if (err) { + var ondrain = this._ondrain + this._ondrain = null + if (ondrain) ondrain(err) + else this.emit("error", err) + } + + if (this._forwardDestroy) { + if (this._readable && this._readable.destroy) + this._readable.destroy() + if (this._writable && this._writable.destroy) + this._writable.destroy() + } + + this.emit("close") + } + + Duplexify.prototype._write = function(data, enc, cb) { + if (this.destroyed) return cb() + if (this._corked) + return onuncork(this, this._write.bind(this, data, enc, cb)) + if (data === SIGNAL_FLUSH) return this._finish(cb) + if (!this._writable) return cb() + + if (this._writable.write(data) === false) this._ondrain = cb + else cb() + } + + Duplexify.prototype._finish = function(cb) { + var self = this + this.emit("preend") + onuncork(this, function() { + end(self._forwardEnd && self._writable, function() { + // haxx to not emit prefinish twice + if (self._writableState.prefinished === false) + self._writableState.prefinished = true + self.emit("prefinish") + onuncork(self, cb) + }) + }) + } + + Duplexify.prototype.end = function(data, enc, cb) { + if (typeof data === "function") return this.end(null, null, data) + if (typeof enc === "function") return this.end(data, null, enc) + this._ended = true + if (data) this.write(data) + if (!this._writableState.ending) this.write(SIGNAL_FLUSH) + return stream.Writable.prototype.end.call(this, cb) + } + + module.exports = Duplexify + }.call(this, require("_process"), require("buffer").Buffer)) + }, + { + _process: 120, + buffer: 48, + "end-of-stream": 171, + inherits: 173, + "readable-stream": 202, + "stream-shift": 215 + } + ], + 171: [ + function(require, module, exports) { + var once = require("once") + + var noop = function() {} + + var isRequest = function(stream) { + return stream.setHeader && typeof stream.abort === "function" + } + + var isChildProcess = function(stream) { + return ( + stream.stdio && + Array.isArray(stream.stdio) && + stream.stdio.length === 3 + ) + } + + var eos = function(stream, opts, callback) { + if (typeof opts === "function") return eos(stream, null, opts) + if (!opts) opts = {} + + callback = once(callback || noop) + + var ws = stream._writableState + var rs = stream._readableState + var readable = + opts.readable || (opts.readable !== false && stream.readable) + var writable = + opts.writable || (opts.writable !== false && stream.writable) + + var onlegacyfinish = function() { + if (!stream.writable) onfinish() + } + + var onfinish = function() { + writable = false + if (!readable) callback.call(stream) + } + + var onend = function() { + readable = false + if (!writable) callback.call(stream) + } + + var onexit = function(exitCode) { + callback.call( + stream, + exitCode + ? new Error("exited with error code: " + exitCode) + : null + ) + } + + var onerror = function(err) { + callback.call(stream, err) + } + + var onclose = function() { + if (readable && !(rs && rs.ended)) + return callback.call(stream, new Error("premature close")) + if (writable && !(ws && ws.ended)) + return callback.call(stream, new Error("premature close")) + } + + var onrequest = function() { + stream.req.on("finish", onfinish) + } + + if (isRequest(stream)) { + stream.on("complete", onfinish) + stream.on("abort", onclose) + if (stream.req) onrequest() + else stream.on("request", onrequest) + } else if (writable && !ws) { + // legacy streams + stream.on("end", onlegacyfinish) + stream.on("close", onlegacyfinish) + } + + if (isChildProcess(stream)) stream.on("exit", onexit) + + stream.on("end", onend) + stream.on("finish", onfinish) + if (opts.error !== false) stream.on("error", onerror) + stream.on("close", onclose) + + return function() { + stream.removeListener("complete", onfinish) + stream.removeListener("abort", onclose) + stream.removeListener("request", onrequest) + if (stream.req) stream.req.removeListener("finish", onfinish) + stream.removeListener("end", onlegacyfinish) + stream.removeListener("close", onlegacyfinish) + stream.removeListener("finish", onfinish) + stream.removeListener("exit", onexit) + stream.removeListener("end", onend) + stream.removeListener("error", onerror) + stream.removeListener("close", onclose) + } + } + + module.exports = eos + }, + { once: 188 } + ], + 172: [ + function(require, module, exports) { + arguments[4][85][0].apply(exports, arguments) + }, + { dup: 85, inherits: 173, "safe-buffer": 205, stream: 157 } + ], + 173: [ + function(require, module, exports) { + arguments[4][100][0].apply(exports, arguments) + }, + { dup: 100 } + ], + 174: [ + function(require, module, exports) { + var int53 = {} + + var MAX_UINT32 = 0x00000000ffffffff + var MAX_INT53 = 0x001fffffffffffff + + function onesComplement(number) { + number = ~number + if (number < 0) { + number = (number & 0x7fffffff) + 0x80000000 + } + return number + } + + function uintHighLow(number) { + console.assert( + number > -1 && number <= MAX_INT53, + "number out of range" + ) + console.assert( + Math.floor(number) === number, + "number must be an integer" + ) + var high = 0 + var signbit = number & 0xffffffff + var low = signbit < 0 ? (number & 0x7fffffff) + 0x80000000 : signbit + if (number > MAX_UINT32) { + high = (number - low) / (MAX_UINT32 + 1) + } + return [high, low] + } + + function intHighLow(number) { + if (number > -1) { + return uintHighLow(number) + } + var hl = uintHighLow(-number) + var high = onesComplement(hl[0]) + var low = onesComplement(hl[1]) + if (low === MAX_UINT32) { + high += 1 + low = 0 + } else { + low += 1 + } + return [high, low] + } + + function toDouble(high, low, signed) { + if (signed && (high & 0x80000000) !== 0) { + high = onesComplement(high) + low = onesComplement(low) + console.assert(high < 0x00200000, "number too small") + return -(high * (MAX_UINT32 + 1) + low + 1) + } else { + //positive + console.assert(high < 0x00200000, "number too large") + return high * (MAX_UINT32 + 1) + low + } + } + + int53.readInt64BE = function(buffer, offset) { + offset = offset || 0 + var high = buffer.readUInt32BE(offset) + var low = buffer.readUInt32BE(offset + 4) + return toDouble(high, low, true) + } + + int53.readInt64LE = function(buffer, offset) { + offset = offset || 0 + var low = buffer.readUInt32LE(offset) + var high = buffer.readUInt32LE(offset + 4) + return toDouble(high, low, true) + } + + int53.readUInt64BE = function(buffer, offset) { + offset = offset || 0 + var high = buffer.readUInt32BE(offset) + var low = buffer.readUInt32BE(offset + 4) + return toDouble(high, low, false) + } + + int53.readUInt64LE = function(buffer, offset) { + offset = offset || 0 + var low = buffer.readUInt32LE(offset) + var high = buffer.readUInt32LE(offset + 4) + return toDouble(high, low, false) + } + + int53.writeInt64BE = function(number, buffer, offset) { + offset = offset || 0 + var hl = intHighLow(number) + buffer.writeUInt32BE(hl[0], offset) + buffer.writeUInt32BE(hl[1], offset + 4) + } + + int53.writeInt64LE = function(number, buffer, offset) { + offset = offset || 0 + var hl = intHighLow(number) + buffer.writeUInt32LE(hl[1], offset) + buffer.writeUInt32LE(hl[0], offset + 4) + } + + int53.writeUInt64BE = function(number, buffer, offset) { + offset = offset || 0 + var hl = uintHighLow(number) + buffer.writeUInt32BE(hl[0], offset) + buffer.writeUInt32BE(hl[1], offset + 4) + } + + int53.writeUInt64LE = function(number, buffer, offset) { + offset = offset || 0 + var hl = uintHighLow(number) + buffer.writeUInt32LE(hl[1], offset) + buffer.writeUInt32LE(hl[0], offset + 4) + } + + module.exports = int53 + }, + {} + ], + 175: [ + function(require, module, exports) { + arguments[4][101][0].apply(exports, arguments) + }, + { dup: 101 } + ], + 176: [ + function(require, module, exports) { + arguments[4][102][0].apply(exports, arguments) + }, + { dup: 102 } + ], + 177: [ + function(require, module, exports) { + var json = typeof JSON !== "undefined" ? JSON : require("jsonify") + + module.exports = function(obj, opts) { + if (!opts) opts = {} + if (typeof opts === "function") opts = { cmp: opts } + var space = opts.space || "" + if (typeof space === "number") space = Array(space + 1).join(" ") + var cycles = typeof opts.cycles === "boolean" ? opts.cycles : false + var replacer = + opts.replacer || + function(key, value) { + return value + } + + var cmp = + opts.cmp && + (function(f) { + return function(node) { + return function(a, b) { + var aobj = { key: a, value: node[a] } + var bobj = { key: b, value: node[b] } + return f(aobj, bobj) + } + } + })(opts.cmp) + + var seen = [] + return (function stringify(parent, key, node, level) { + var indent = space ? "\n" + new Array(level + 1).join(space) : "" + var colonSeparator = space ? ": " : ":" + + if (node && node.toJSON && typeof node.toJSON === "function") { + node = node.toJSON() + } + + node = replacer.call(parent, key, node) + + if (node === undefined) { + return + } + if (typeof node !== "object" || node === null) { + return json.stringify(node) + } + if (isArray(node)) { + var out = [] + for (var i = 0; i < node.length; i++) { + var item = + stringify(node, i, node[i], level + 1) || + json.stringify(null) + out.push(indent + space + item) + } + return "[" + out.join(",") + indent + "]" + } else { + if (seen.indexOf(node) !== -1) { + if (cycles) return json.stringify("__cycle__") + throw new TypeError("Converting circular structure to JSON") + } else seen.push(node) + + var keys = objectKeys(node).sort(cmp && cmp(node)) + var out = [] + for (var i = 0; i < keys.length; i++) { + var key = keys[i] + var value = stringify(node, key, node[key], level + 1) + + if (!value) continue + + var keyValue = json.stringify(key) + colonSeparator + value + out.push(indent + space + keyValue) + } + seen.splice(seen.indexOf(node), 1) + return "{" + out.join(",") + indent + "}" + } + })({ "": obj }, "", obj, 0) + } + + var isArray = + Array.isArray || + function(x) { + return {}.toString.call(x) === "[object Array]" + } + + var objectKeys = + Object.keys || + function(obj) { + var has = + Object.prototype.hasOwnProperty || + function() { + return true + } + var keys = [] + for (var key in obj) { + if (has.call(obj, key)) keys.push(key) + } + return keys + } + }, + { jsonify: 179 } + ], + 178: [ + function(require, module, exports) { + exports = module.exports = stringify + exports.getSerialize = serializer + + function stringify(obj, replacer, spaces, cycleReplacer) { + return JSON.stringify( + obj, + serializer(replacer, cycleReplacer), + spaces + ) + } + + function serializer(replacer, cycleReplacer) { + var stack = [], + keys = [] + + if (cycleReplacer == null) + cycleReplacer = function(key, value) { + if (stack[0] === value) return "[Circular ~]" + return ( + "[Circular ~." + + keys.slice(0, stack.indexOf(value)).join(".") + + "]" + ) + } + + return function(key, value) { + if (stack.length > 0) { + var thisPos = stack.indexOf(this) + ~thisPos ? stack.splice(thisPos + 1) : stack.push(this) + ~thisPos ? keys.splice(thisPos, Infinity, key) : keys.push(key) + if (~stack.indexOf(value)) + value = cycleReplacer.call(this, key, value) + } else stack.push(value) + + return replacer == null ? value : replacer.call(this, key, value) + } + } + }, + {} + ], + 179: [ + function(require, module, exports) { + exports.parse = require("./lib/parse") + exports.stringify = require("./lib/stringify") + }, + { "./lib/parse": 180, "./lib/stringify": 181 } + ], + 180: [ + function(require, module, exports) { + var at, // The index of the current character + ch, // The current character + escapee = { + '"': '"', + "\\": "\\", + "/": "/", + b: "\b", + f: "\f", + n: "\n", + r: "\r", + t: "\t" + }, + text, + error = function(m) { + // Call error when something is wrong. + throw { + name: "SyntaxError", + message: m, + at: at, + text: text + } + }, + next = function(c) { + // If a c parameter is provided, verify that it matches the current character. + if (c && c !== ch) { + error("Expected '" + c + "' instead of '" + ch + "'") + } + + // Get the next character. When there are no more characters, + // return the empty string. + + ch = text.charAt(at) + at += 1 + return ch + }, + number = function() { + // Parse a number value. + var number, + string = "" + + if (ch === "-") { + string = "-" + next("-") + } + while (ch >= "0" && ch <= "9") { + string += ch + next() + } + if (ch === ".") { + string += "." + while (next() && ch >= "0" && ch <= "9") { + string += ch + } + } + if (ch === "e" || ch === "E") { + string += ch + next() + if (ch === "-" || ch === "+") { + string += ch + next() + } + while (ch >= "0" && ch <= "9") { + string += ch + next() + } + } + number = +string + if (!isFinite(number)) { + error("Bad number") + } else { + return number + } + }, + string = function() { + // Parse a string value. + var hex, + i, + string = "", + uffff + + // When parsing for string values, we must look for " and \ characters. + if (ch === '"') { + while (next()) { + if (ch === '"') { + next() + return string + } else if (ch === "\\") { + next() + if (ch === "u") { + uffff = 0 + for (i = 0; i < 4; i += 1) { + hex = parseInt(next(), 16) + if (!isFinite(hex)) { + break + } + uffff = uffff * 16 + hex + } + string += String.fromCharCode(uffff) + } else if (typeof escapee[ch] === "string") { + string += escapee[ch] + } else { + break + } + } else { + string += ch + } + } + } + error("Bad string") + }, + white = function() { + // Skip whitespace. + + while (ch && ch <= " ") { + next() + } + }, + word = function() { + // true, false, or null. + + switch (ch) { + case "t": + next("t") + next("r") + next("u") + next("e") + return true + case "f": + next("f") + next("a") + next("l") + next("s") + next("e") + return false + case "n": + next("n") + next("u") + next("l") + next("l") + return null + } + error("Unexpected '" + ch + "'") + }, + value, // Place holder for the value function. + array = function() { + // Parse an array value. + + var array = [] + + if (ch === "[") { + next("[") + white() + if (ch === "]") { + next("]") + return array // empty array + } + while (ch) { + array.push(value()) + white() + if (ch === "]") { + next("]") + return array + } + next(",") + white() + } + } + error("Bad array") + }, + object = function() { + // Parse an object value. + + var key, + object = {} + + if (ch === "{") { + next("{") + white() + if (ch === "}") { + next("}") + return object // empty object + } + while (ch) { + key = string() + white() + next(":") + if (Object.hasOwnProperty.call(object, key)) { + error('Duplicate key "' + key + '"') + } + object[key] = value() + white() + if (ch === "}") { + next("}") + return object + } + next(",") + white() + } + } + error("Bad object") + } + + value = function() { + // Parse a JSON value. It could be an object, an array, a string, a number, + // or a word. + + white() + switch (ch) { + case "{": + return object() + case "[": + return array() + case '"': + return string() + case "-": + return number() + default: + return ch >= "0" && ch <= "9" ? number() : word() + } + } + + // Return the json_parse function. It will have access to all of the above + // functions and variables. + + module.exports = function(source, reviver) { + var result + + text = source + at = 0 + ch = " " + result = value() + white() + if (ch) { + error("Syntax error") + } + + // If there is a reviver function, we recursively walk the new structure, + // passing each name/value pair to the reviver function for possible + // transformation, starting with a temporary root object that holds the result + // in an empty key. If there is not a reviver function, we simply return the + // result. + + return typeof reviver === "function" + ? (function walk(holder, key) { + var k, + v, + value = holder[key] + if (value && typeof value === "object") { + for (k in value) { + if (Object.prototype.hasOwnProperty.call(value, k)) { + v = walk(value, k) + if (v !== undefined) { + value[k] = v + } else { + delete value[k] + } + } + } + } + return reviver.call(holder, key, value) + })({ "": result }, "") + : result + } + }, + {} + ], + 181: [ + function(require, module, exports) { + var cx = /[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g, + escapable = /[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g, + gap, + indent, + meta = { + // table of character substitutions + "\b": "\\b", + "\t": "\\t", + "\n": "\\n", + "\f": "\\f", + "\r": "\\r", + '"': '\\"', + "\\": "\\\\" + }, + rep + + function quote(string) { + // If the string contains no control characters, no quote characters, and no + // backslash characters, then we can safely slap some quotes around it. + // Otherwise we must also replace the offending characters with safe escape + // sequences. + + escapable.lastIndex = 0 + return escapable.test(string) + ? '"' + + string.replace(escapable, function(a) { + var c = meta[a] + return typeof c === "string" + ? c + : "\\u" + + ("0000" + a.charCodeAt(0).toString(16)).slice(-4) + }) + + '"' + : '"' + string + '"' + } + + function str(key, holder) { + // Produce a string from holder[key]. + var i, // The loop counter. + k, // The member key. + v, // The member value. + length, + mind = gap, + partial, + value = holder[key] + + // If the value has a toJSON method, call it to obtain a replacement value. + if ( + value && + typeof value === "object" && + typeof value.toJSON === "function" + ) { + value = value.toJSON(key) + } + + // If we were called with a replacer function, then call the replacer to + // obtain a replacement value. + if (typeof rep === "function") { + value = rep.call(holder, key, value) + } + + // What happens next depends on the value's type. + switch (typeof value) { + case "string": + return quote(value) + + case "number": + // JSON numbers must be finite. Encode non-finite numbers as null. + return isFinite(value) ? String(value) : "null" + + case "boolean": + case "null": + // If the value is a boolean or null, convert it to a string. Note: + // typeof null does not produce 'null'. The case is included here in + // the remote chance that this gets fixed someday. + return String(value) + + case "object": + if (!value) return "null" + gap += indent + partial = [] + + // Array.isArray + if ( + Object.prototype.toString.apply(value) === "[object Array]" + ) { + length = value.length + for (i = 0; i < length; i += 1) { + partial[i] = str(i, value) || "null" + } + + // Join all of the elements together, separated with commas, and + // wrap them in brackets. + v = + partial.length === 0 + ? "[]" + : gap + ? "[\n" + + gap + + partial.join(",\n" + gap) + + "\n" + + mind + + "]" + : "[" + partial.join(",") + "]" + gap = mind + return v + } + + // If the replacer is an array, use it to select the members to be + // stringified. + if (rep && typeof rep === "object") { + length = rep.length + for (i = 0; i < length; i += 1) { + k = rep[i] + if (typeof k === "string") { + v = str(k, value) + if (v) { + partial.push(quote(k) + (gap ? ": " : ":") + v) + } + } + } + } else { + // Otherwise, iterate through all of the keys in the object. + for (k in value) { + if (Object.prototype.hasOwnProperty.call(value, k)) { + v = str(k, value) + if (v) { + partial.push(quote(k) + (gap ? ": " : ":") + v) + } + } + } + } + + // Join all of the member texts together, separated with commas, + // and wrap them in braces. + + v = + partial.length === 0 + ? "{}" + : gap + ? "{\n" + + gap + + partial.join(",\n" + gap) + + "\n" + + mind + + "}" + : "{" + partial.join(",") + "}" + gap = mind + return v + } + } + + module.exports = function(value, replacer, space) { + var i + gap = "" + indent = "" + + // If the space parameter is a number, make an indent string containing that + // many spaces. + if (typeof space === "number") { + for (i = 0; i < space; i += 1) { + indent += " " + } + } + // If the space parameter is a string, it will be used as the indent string. + else if (typeof space === "string") { + indent = space + } + + // If there is a replacer, it must be a function or an array. + // Otherwise, throw an error. + rep = replacer + if ( + replacer && + typeof replacer !== "function" && + (typeof replacer !== "object" || + typeof replacer.length !== "number") + ) { + throw new Error("JSON.stringify") + } + + // Make a fake root object containing our value under the key of ''. + // Return the result of stringifying the value. + return str("", { "": value }) + } + }, + {} + ], + 182: [ + function(require, module, exports) { + ;(function(Buffer) { + "use strict" + var inherits = require("inherits") + var HashBase = require("hash-base") + + var ARRAY16 = new Array(16) + + function MD5() { + HashBase.call(this, 64) + + // state + this._a = 0x67452301 + this._b = 0xefcdab89 + this._c = 0x98badcfe + this._d = 0x10325476 + } + + inherits(MD5, HashBase) + + MD5.prototype._update = function() { + var M = ARRAY16 + for (var i = 0; i < 16; ++i) M[i] = this._block.readInt32LE(i * 4) + + var a = this._a + var b = this._b + var c = this._c + var d = this._d + + a = fnF(a, b, c, d, M[0], 0xd76aa478, 7) + d = fnF(d, a, b, c, M[1], 0xe8c7b756, 12) + c = fnF(c, d, a, b, M[2], 0x242070db, 17) + b = fnF(b, c, d, a, M[3], 0xc1bdceee, 22) + a = fnF(a, b, c, d, M[4], 0xf57c0faf, 7) + d = fnF(d, a, b, c, M[5], 0x4787c62a, 12) + c = fnF(c, d, a, b, M[6], 0xa8304613, 17) + b = fnF(b, c, d, a, M[7], 0xfd469501, 22) + a = fnF(a, b, c, d, M[8], 0x698098d8, 7) + d = fnF(d, a, b, c, M[9], 0x8b44f7af, 12) + c = fnF(c, d, a, b, M[10], 0xffff5bb1, 17) + b = fnF(b, c, d, a, M[11], 0x895cd7be, 22) + a = fnF(a, b, c, d, M[12], 0x6b901122, 7) + d = fnF(d, a, b, c, M[13], 0xfd987193, 12) + c = fnF(c, d, a, b, M[14], 0xa679438e, 17) + b = fnF(b, c, d, a, M[15], 0x49b40821, 22) + + a = fnG(a, b, c, d, M[1], 0xf61e2562, 5) + d = fnG(d, a, b, c, M[6], 0xc040b340, 9) + c = fnG(c, d, a, b, M[11], 0x265e5a51, 14) + b = fnG(b, c, d, a, M[0], 0xe9b6c7aa, 20) + a = fnG(a, b, c, d, M[5], 0xd62f105d, 5) + d = fnG(d, a, b, c, M[10], 0x02441453, 9) + c = fnG(c, d, a, b, M[15], 0xd8a1e681, 14) + b = fnG(b, c, d, a, M[4], 0xe7d3fbc8, 20) + a = fnG(a, b, c, d, M[9], 0x21e1cde6, 5) + d = fnG(d, a, b, c, M[14], 0xc33707d6, 9) + c = fnG(c, d, a, b, M[3], 0xf4d50d87, 14) + b = fnG(b, c, d, a, M[8], 0x455a14ed, 20) + a = fnG(a, b, c, d, M[13], 0xa9e3e905, 5) + d = fnG(d, a, b, c, M[2], 0xfcefa3f8, 9) + c = fnG(c, d, a, b, M[7], 0x676f02d9, 14) + b = fnG(b, c, d, a, M[12], 0x8d2a4c8a, 20) + + a = fnH(a, b, c, d, M[5], 0xfffa3942, 4) + d = fnH(d, a, b, c, M[8], 0x8771f681, 11) + c = fnH(c, d, a, b, M[11], 0x6d9d6122, 16) + b = fnH(b, c, d, a, M[14], 0xfde5380c, 23) + a = fnH(a, b, c, d, M[1], 0xa4beea44, 4) + d = fnH(d, a, b, c, M[4], 0x4bdecfa9, 11) + c = fnH(c, d, a, b, M[7], 0xf6bb4b60, 16) + b = fnH(b, c, d, a, M[10], 0xbebfbc70, 23) + a = fnH(a, b, c, d, M[13], 0x289b7ec6, 4) + d = fnH(d, a, b, c, M[0], 0xeaa127fa, 11) + c = fnH(c, d, a, b, M[3], 0xd4ef3085, 16) + b = fnH(b, c, d, a, M[6], 0x04881d05, 23) + a = fnH(a, b, c, d, M[9], 0xd9d4d039, 4) + d = fnH(d, a, b, c, M[12], 0xe6db99e5, 11) + c = fnH(c, d, a, b, M[15], 0x1fa27cf8, 16) + b = fnH(b, c, d, a, M[2], 0xc4ac5665, 23) + + a = fnI(a, b, c, d, M[0], 0xf4292244, 6) + d = fnI(d, a, b, c, M[7], 0x432aff97, 10) + c = fnI(c, d, a, b, M[14], 0xab9423a7, 15) + b = fnI(b, c, d, a, M[5], 0xfc93a039, 21) + a = fnI(a, b, c, d, M[12], 0x655b59c3, 6) + d = fnI(d, a, b, c, M[3], 0x8f0ccc92, 10) + c = fnI(c, d, a, b, M[10], 0xffeff47d, 15) + b = fnI(b, c, d, a, M[1], 0x85845dd1, 21) + a = fnI(a, b, c, d, M[8], 0x6fa87e4f, 6) + d = fnI(d, a, b, c, M[15], 0xfe2ce6e0, 10) + c = fnI(c, d, a, b, M[6], 0xa3014314, 15) + b = fnI(b, c, d, a, M[13], 0x4e0811a1, 21) + a = fnI(a, b, c, d, M[4], 0xf7537e82, 6) + d = fnI(d, a, b, c, M[11], 0xbd3af235, 10) + c = fnI(c, d, a, b, M[2], 0x2ad7d2bb, 15) + b = fnI(b, c, d, a, M[9], 0xeb86d391, 21) + + this._a = (this._a + a) | 0 + this._b = (this._b + b) | 0 + this._c = (this._c + c) | 0 + this._d = (this._d + d) | 0 + } + + MD5.prototype._digest = function() { + // create padding and handle blocks + this._block[this._blockOffset++] = 0x80 + if (this._blockOffset > 56) { + this._block.fill(0, this._blockOffset, 64) + this._update() + this._blockOffset = 0 + } + + this._block.fill(0, this._blockOffset, 56) + this._block.writeUInt32LE(this._length[0], 56) + this._block.writeUInt32LE(this._length[1], 60) + this._update() + + // produce result + var buffer = new Buffer(16) + buffer.writeInt32LE(this._a, 0) + buffer.writeInt32LE(this._b, 4) + buffer.writeInt32LE(this._c, 8) + buffer.writeInt32LE(this._d, 12) + return buffer + } + + function rotl(x, n) { + return (x << n) | (x >>> (32 - n)) + } + + function fnF(a, b, c, d, m, k, s) { + return (rotl((a + ((b & c) | (~b & d)) + m + k) | 0, s) + b) | 0 + } + + function fnG(a, b, c, d, m, k, s) { + return (rotl((a + ((b & d) | (c & ~d)) + m + k) | 0, s) + b) | 0 + } + + function fnH(a, b, c, d, m, k, s) { + return (rotl((a + (b ^ c ^ d) + m + k) | 0, s) + b) | 0 + } + + function fnI(a, b, c, d, m, k, s) { + return (rotl((a + (c ^ (b | ~d)) + m + k) | 0, s) + b) | 0 + } + + module.exports = MD5 + }.call(this, require("buffer").Buffer)) + }, + { buffer: 48, "hash-base": 172, inherits: 173 } + ], + 183: [ + function(require, module, exports) { + /** + * Helpers. + */ + + var s = 1000 + var m = s * 60 + var h = m * 60 + var d = h * 24 + var y = d * 365.25 + + /** + * Parse or format the given `val`. + * + * Options: + * + * - `long` verbose formatting [false] + * + * @param {String|Number} val + * @param {Object} [options] + * @throws {Error} throw an error if val is not a non-empty string or a number + * @return {String|Number} + * @api public + */ + + module.exports = function(val, options) { + options = options || {} + var type = typeof val + if (type === "string" && val.length > 0) { + return parse(val) + } else if (type === "number" && isNaN(val) === false) { + return options.long ? fmtLong(val) : fmtShort(val) + } + throw new Error( + "val is not a non-empty string or a valid number. val=" + + JSON.stringify(val) + ) + } + + /** + * Parse the given `str` and return milliseconds. + * + * @param {String} str + * @return {Number} + * @api private + */ + + function parse(str) { + str = String(str) + if (str.length > 100) { + return + } + var match = /^((?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|years?|yrs?|y)?$/i.exec( + str + ) + if (!match) { + return + } + var n = parseFloat(match[1]) + var type = (match[2] || "ms").toLowerCase() + switch (type) { + case "years": + case "year": + case "yrs": + case "yr": + case "y": + return n * y + case "days": + case "day": + case "d": + return n * d + case "hours": + case "hour": + case "hrs": + case "hr": + case "h": + return n * h + case "minutes": + case "minute": + case "mins": + case "min": + case "m": + return n * m + case "seconds": + case "second": + case "secs": + case "sec": + case "s": + return n * s + case "milliseconds": + case "millisecond": + case "msecs": + case "msec": + case "ms": + return n + default: + return undefined + } + } + + /** + * Short format for `ms`. + * + * @param {Number} ms + * @return {String} + * @api private + */ + + function fmtShort(ms) { + if (ms >= d) { + return Math.round(ms / d) + "d" + } + if (ms >= h) { + return Math.round(ms / h) + "h" + } + if (ms >= m) { + return Math.round(ms / m) + "m" + } + if (ms >= s) { + return Math.round(ms / s) + "s" + } + return ms + "ms" + } + + /** + * Long format for `ms`. + * + * @param {Number} ms + * @return {String} + * @api private + */ + + function fmtLong(ms) { + return ( + plural(ms, d, "day") || + plural(ms, h, "hour") || + plural(ms, m, "minute") || + plural(ms, s, "second") || + ms + " ms" + ) + } + + /** + * Pluralization helper. + */ + + function plural(ms, n, name) { + if (ms < n) { + return + } + if (ms < n * 1.5) { + return Math.floor(ms / n) + " " + name + } + return Math.ceil(ms / n) + " " + name + "s" + } + }, + {} + ], + 184: [ + function(require, module, exports) { + var through = require("through2") + var split = require("split2") + var EOL = require("os").EOL + var stringify = require("json-stringify-safe") + + module.exports = parse + module.exports.serialize = module.exports.stringify = serialize + module.exports.parse = parse + + function parse(opts) { + opts = opts || {} + opts.strict = opts.strict !== false + + function parseRow(row) { + try { + if (row) return JSON.parse(row) + } catch (e) { + if (opts.strict) { + this.emit( + "error", + new Error("Could not parse row " + row.slice(0, 50) + "...") + ) + } + } + } + + return split(parseRow, opts) + } + + function serialize(opts) { + return through.obj(opts, function(obj, enc, cb) { + cb(null, stringify(obj) + EOL) + }) + } + }, + { "json-stringify-safe": 178, os: 107, split2: 214, through2: 255 } + ], + 185: [ + function(require, module, exports) { + /* +object-assign +(c) Sindre Sorhus +@license MIT +*/ + + "use strict" + /* eslint-disable no-unused-vars */ + var getOwnPropertySymbols = Object.getOwnPropertySymbols + var hasOwnProperty = Object.prototype.hasOwnProperty + var propIsEnumerable = Object.prototype.propertyIsEnumerable + + function toObject(val) { + if (val === null || val === undefined) { + throw new TypeError( + "Object.assign cannot be called with null or undefined" + ) + } + + return Object(val) + } + + function shouldUseNative() { + try { + if (!Object.assign) { + return false + } + + // Detect buggy property enumeration order in older V8 versions. + + // https://bugs.chromium.org/p/v8/issues/detail?id=4118 + var test1 = new String("abc") // eslint-disable-line no-new-wrappers + test1[5] = "de" + if (Object.getOwnPropertyNames(test1)[0] === "5") { + return false + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test2 = {} + for (var i = 0; i < 10; i++) { + test2["_" + String.fromCharCode(i)] = i + } + var order2 = Object.getOwnPropertyNames(test2).map(function(n) { + return test2[n] + }) + if (order2.join("") !== "0123456789") { + return false + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test3 = {} + "abcdefghijklmnopqrst".split("").forEach(function(letter) { + test3[letter] = letter + }) + if ( + Object.keys(Object.assign({}, test3)).join("") !== + "abcdefghijklmnopqrst" + ) { + return false + } + + return true + } catch (err) { + // We don't expect any of the above to throw, but better to be safe. + return false + } + } + + module.exports = shouldUseNative() + ? Object.assign + : function(target, source) { + var from + var to = toObject(target) + var symbols + + for (var s = 1; s < arguments.length; s++) { + from = Object(arguments[s]) + + for (var key in from) { + if (hasOwnProperty.call(from, key)) { + to[key] = from[key] + } + } + + if (getOwnPropertySymbols) { + symbols = getOwnPropertySymbols(from) + for (var i = 0; i < symbols.length; i++) { + if (propIsEnumerable.call(from, symbols[i])) { + to[symbols[i]] = from[symbols[i]] + } + } + } + } + + return to + } + }, + {} + ], + 186: [ + function(require, module, exports) { + module.exports = require("./lib") + }, + { "./lib": 187 } + ], + 187: [ + function(require, module, exports) { + "use strict" + + var assign = require("object-assign") + + module.exports = function(Class) { + function WrappedClass() { + for ( + var _len = arguments.length, args = Array(_len), _key = 0; + _key < _len; + _key++ + ) { + args[_key] = arguments[_key] + } + + return new (Function.prototype.bind.apply( + Class, + [null].concat(args) + ))() + } + assign(WrappedClass, Class) + WrappedClass.prototype = Class.prototype + return WrappedClass + } + }, + { "object-assign": 185 } + ], + 188: [ + function(require, module, exports) { + var wrappy = require("wrappy") + module.exports = wrappy(once) + module.exports.strict = wrappy(onceStrict) + + once.proto = once(function() { + Object.defineProperty(Function.prototype, "once", { + value: function() { + return once(this) + }, + configurable: true + }) + + Object.defineProperty(Function.prototype, "onceStrict", { + value: function() { + return onceStrict(this) + }, + configurable: true + }) + }) + + function once(fn) { + var f = function() { + if (f.called) return f.value + f.called = true + return (f.value = fn.apply(this, arguments)) + } + f.called = false + return f + } + + function onceStrict(fn) { + var f = function() { + if (f.called) throw new Error(f.onceError) + f.called = true + return (f.value = fn.apply(this, arguments)) + } + var name = fn.name || "Function wrapped with `once`" + f.onceError = name + " shouldn't be called more than once" + f.called = false + return f + } + }, + { wrappy: 273 } + ], + 189: [ + function(require, module, exports) { + arguments[4][119][0].apply(exports, arguments) + }, + { _process: 120, dup: 119 } + ], + 190: [ + function(require, module, exports) { + ;(function(process) { + var once = require("once") + var eos = require("end-of-stream") + var fs = require("fs") // we only need fs to get the ReadStream and WriteStream prototypes + + var noop = function() {} + var ancient = /^v?\.0/.test(process.version) + + var isFn = function(fn) { + return typeof fn === "function" + } + + var isFS = function(stream) { + if (!ancient) return false // newer node version do not need to care about fs is a special way + if (!fs) return false // browser + return ( + (stream instanceof (fs.ReadStream || noop) || + stream instanceof (fs.WriteStream || noop)) && + isFn(stream.close) + ) + } + + var isRequest = function(stream) { + return stream.setHeader && isFn(stream.abort) + } + + var destroyer = function(stream, reading, writing, callback) { + callback = once(callback) + + var closed = false + stream.on("close", function() { + closed = true + }) + + eos(stream, { readable: reading, writable: writing }, function( + err + ) { + if (err) return callback(err) + closed = true + callback() + }) + + var destroyed = false + return function(err) { + if (closed) return + if (destroyed) return + destroyed = true + + if (isFS(stream)) return stream.close(noop) // use close for fs streams to avoid fd leaks + if (isRequest(stream)) return stream.abort() // request.destroy just do .end - .abort is what we want + + if (isFn(stream.destroy)) return stream.destroy() + + callback(err || new Error("stream was destroyed")) + } + } + + var call = function(fn) { + fn() + } + + var pipe = function(from, to) { + return from.pipe(to) + } + + var pump = function() { + var streams = Array.prototype.slice.call(arguments) + var callback = + (isFn(streams[streams.length - 1] || noop) && streams.pop()) || + noop + + if (Array.isArray(streams[0])) streams = streams[0] + if (streams.length < 2) + throw new Error("pump requires two streams per minimum") + + var error + var destroys = streams.map(function(stream, i) { + var reading = i < streams.length - 1 + var writing = i > 0 + return destroyer(stream, reading, writing, function(err) { + if (!error) error = err + if (err) destroys.forEach(call) + if (reading) return + destroys.forEach(call) + callback(error) + }) + }) + + streams.reduce(pipe) + } + + module.exports = pump + }.call(this, require("_process"))) + }, + { _process: 120, "end-of-stream": 171, fs: 19, once: 188 } + ], + 191: [ + function(require, module, exports) { + var pump = require("pump") + var inherits = require("inherits") + var Duplexify = require("duplexify") + + var toArray = function(args) { + if (!args.length) return [] + return Array.isArray(args[0]) + ? args[0] + : Array.prototype.slice.call(args) + } + + var define = function(opts) { + var Pumpify = function() { + var streams = toArray(arguments) + if (!(this instanceof Pumpify)) return new Pumpify(streams) + Duplexify.call(this, null, null, opts) + if (streams.length) this.setPipeline(streams) + } + + inherits(Pumpify, Duplexify) + + Pumpify.prototype.setPipeline = function() { + var streams = toArray(arguments) + var self = this + var ended = false + var w = streams[0] + var r = streams[streams.length - 1] + + r = r.readable ? r : null + w = w.writable ? w : null + + var onclose = function() { + streams[0].emit("error", new Error("stream was destroyed")) + } + + this.on("close", onclose) + this.on("prefinish", function() { + if (!ended) self.cork() + }) + + pump(streams, function(err) { + self.removeListener("close", onclose) + if (err) + return self.destroy( + err.message === "premature close" ? null : err + ) + ended = true + // pump ends after the last stream is not writable *but* + // pumpify still forwards the readable part so we need to catch errors + // still, so reenable autoDestroy in this case + if (self._autoDestroy === false) self._autoDestroy = true + self.uncork() + }) + + if (this.destroyed) return onclose() + this.setWritable(w) + this.setReadable(r) + } + + return Pumpify + } + + module.exports = define({ autoDestroy: false, destroy: false }) + module.exports.obj = define({ + autoDestroy: false, + destroy: false, + objectMode: true, + highWaterMark: 16 + }) + module.exports.ctor = define + }, + { duplexify: 192, inherits: 173, pump: 190 } + ], + 192: [ + function(require, module, exports) { + ;(function(process, Buffer) { + var stream = require("readable-stream") + var eos = require("end-of-stream") + var inherits = require("inherits") + var shift = require("stream-shift") + + var SIGNAL_FLUSH = + Buffer.from && Buffer.from !== Uint8Array.from + ? Buffer.from([0]) + : new Buffer([0]) + + var onuncork = function(self, fn) { + if (self._corked) self.once("uncork", fn) + else fn() + } + + var autoDestroy = function(self, err) { + if (self._autoDestroy) self.destroy(err) + } + + var destroyer = function(self, end) { + return function(err) { + if (err) + autoDestroy( + self, + err.message === "premature close" ? null : err + ) + else if (end && !self._ended) self.end() + } + } + + var end = function(ws, fn) { + if (!ws) return fn() + if (ws._writableState && ws._writableState.finished) return fn() + if (ws._writableState) return ws.end(fn) + ws.end() + fn() + } + + var toStreams2 = function(rs) { + return new stream.Readable({ + objectMode: true, + highWaterMark: 16 + }).wrap(rs) + } + + var Duplexify = function(writable, readable, opts) { + if (!(this instanceof Duplexify)) + return new Duplexify(writable, readable, opts) + stream.Duplex.call(this, opts) + + this._writable = null + this._readable = null + this._readable2 = null + + this._autoDestroy = !opts || opts.autoDestroy !== false + this._forwardDestroy = !opts || opts.destroy !== false + this._forwardEnd = !opts || opts.end !== false + this._corked = 1 // start corked + this._ondrain = null + this._drained = false + this._forwarding = false + this._unwrite = null + this._unread = null + this._ended = false + + this.destroyed = false + + if (writable) this.setWritable(writable) + if (readable) this.setReadable(readable) + } + + inherits(Duplexify, stream.Duplex) + + Duplexify.obj = function(writable, readable, opts) { + if (!opts) opts = {} + opts.objectMode = true + opts.highWaterMark = 16 + return new Duplexify(writable, readable, opts) + } + + Duplexify.prototype.cork = function() { + if (++this._corked === 1) this.emit("cork") + } + + Duplexify.prototype.uncork = function() { + if (this._corked && --this._corked === 0) this.emit("uncork") + } + + Duplexify.prototype.setWritable = function(writable) { + if (this._unwrite) this._unwrite() + + if (this.destroyed) { + if (writable && writable.destroy) writable.destroy() + return + } + + if (writable === null || writable === false) { + this.end() + return + } + + var self = this + var unend = eos( + writable, + { writable: true, readable: false }, + destroyer(this, this._forwardEnd) + ) + + var ondrain = function() { + var ondrain = self._ondrain + self._ondrain = null + if (ondrain) ondrain() + } + + var clear = function() { + self._writable.removeListener("drain", ondrain) + unend() + } + + if (this._unwrite) process.nextTick(ondrain) // force a drain on stream reset to avoid livelocks + + this._writable = writable + this._writable.on("drain", ondrain) + this._unwrite = clear + + this.uncork() // always uncork setWritable + } + + Duplexify.prototype.setReadable = function(readable) { + if (this._unread) this._unread() + + if (this.destroyed) { + if (readable && readable.destroy) readable.destroy() + return + } + + if (readable === null || readable === false) { + this.push(null) + this.resume() + return + } + + var self = this + var unend = eos( + readable, + { writable: false, readable: true }, + destroyer(this) + ) + + var onreadable = function() { + self._forward() + } + + var onend = function() { + self.push(null) + } + + var clear = function() { + self._readable2.removeListener("readable", onreadable) + self._readable2.removeListener("end", onend) + unend() + } + + this._drained = true + this._readable = readable + this._readable2 = readable._readableState + ? readable + : toStreams2(readable) + this._readable2.on("readable", onreadable) + this._readable2.on("end", onend) + this._unread = clear + + this._forward() + } + + Duplexify.prototype._read = function() { + this._drained = true + this._forward() + } + + Duplexify.prototype._forward = function() { + if (this._forwarding || !this._readable2 || !this._drained) return + this._forwarding = true + + var data + + while ( + this._drained && + (data = shift(this._readable2)) !== null + ) { + if (this.destroyed) continue + this._drained = this.push(data) + } + + this._forwarding = false + } + + Duplexify.prototype.destroy = function(err) { + if (this.destroyed) return + this.destroyed = true + + var self = this + process.nextTick(function() { + self._destroy(err) + }) + } + + Duplexify.prototype._destroy = function(err) { + if (err) { + var ondrain = this._ondrain + this._ondrain = null + if (ondrain) ondrain(err) + else this.emit("error", err) + } + + if (this._forwardDestroy) { + if (this._readable && this._readable.destroy) + this._readable.destroy() + if (this._writable && this._writable.destroy) + this._writable.destroy() + } + + this.emit("close") + } + + Duplexify.prototype._write = function(data, enc, cb) { + if (this.destroyed) return cb() + if (this._corked) + return onuncork(this, this._write.bind(this, data, enc, cb)) + if (data === SIGNAL_FLUSH) return this._finish(cb) + if (!this._writable) return cb() + + if (this._writable.write(data) === false) this._ondrain = cb + else cb() + } + + Duplexify.prototype._finish = function(cb) { + var self = this + this.emit("preend") + onuncork(this, function() { + end(self._forwardEnd && self._writable, function() { + // haxx to not emit prefinish twice + if (self._writableState.prefinished === false) + self._writableState.prefinished = true + self.emit("prefinish") + onuncork(self, cb) + }) + }) + } + + Duplexify.prototype.end = function(data, enc, cb) { + if (typeof data === "function") return this.end(null, null, data) + if (typeof enc === "function") return this.end(data, null, enc) + this._ended = true + if (data) this.write(data) + if (!this._writableState.ending) this.write(SIGNAL_FLUSH) + return stream.Writable.prototype.end.call(this, cb) + } + + module.exports = Duplexify + }.call(this, require("_process"), require("buffer").Buffer)) + }, + { + _process: 120, + buffer: 48, + "end-of-stream": 171, + inherits: 173, + "readable-stream": 202, + "stream-shift": 215 + } + ], + 193: [ + function(require, module, exports) { + arguments[4][134][0].apply(exports, arguments) + }, + { + "./_stream_readable": 195, + "./_stream_writable": 197, + "core-util-is": 168, + dup: 134, + inherits: 173, + "process-nextick-args": 189 + } + ], + 194: [ + function(require, module, exports) { + arguments[4][135][0].apply(exports, arguments) + }, + { + "./_stream_transform": 196, + "core-util-is": 168, + dup: 135, + inherits: 173 + } + ], + 195: [ + function(require, module, exports) { + arguments[4][136][0].apply(exports, arguments) + }, + { + "./_stream_duplex": 193, + "./internal/streams/BufferList": 198, + "./internal/streams/destroy": 199, + "./internal/streams/stream": 200, + _process: 120, + "core-util-is": 168, + dup: 136, + events: 83, + inherits: 173, + isarray: 176, + "process-nextick-args": 189, + "safe-buffer": 205, + "string_decoder/": 201, + util: 19 + } + ], + 196: [ + function(require, module, exports) { + arguments[4][137][0].apply(exports, arguments) + }, + { + "./_stream_duplex": 193, + "core-util-is": 168, + dup: 137, + inherits: 173 + } + ], + 197: [ + function(require, module, exports) { + arguments[4][138][0].apply(exports, arguments) + }, + { + "./_stream_duplex": 193, + "./internal/streams/destroy": 199, + "./internal/streams/stream": 200, + _process: 120, + "core-util-is": 168, + dup: 138, + inherits: 173, + "process-nextick-args": 189, + "safe-buffer": 205, + timers: 159, + "util-deprecate": 256 + } + ], + 198: [ + function(require, module, exports) { + arguments[4][139][0].apply(exports, arguments) + }, + { dup: 139, "safe-buffer": 205, util: 19 } + ], + 199: [ + function(require, module, exports) { + arguments[4][140][0].apply(exports, arguments) + }, + { dup: 140, "process-nextick-args": 189 } + ], + 200: [ + function(require, module, exports) { + arguments[4][141][0].apply(exports, arguments) + }, + { dup: 141, events: 83 } + ], + 201: [ + function(require, module, exports) { + arguments[4][142][0].apply(exports, arguments) + }, + { dup: 142, "safe-buffer": 205 } + ], + 202: [ + function(require, module, exports) { + arguments[4][144][0].apply(exports, arguments) + }, + { + "./lib/_stream_duplex.js": 193, + "./lib/_stream_passthrough.js": 194, + "./lib/_stream_readable.js": 195, + "./lib/_stream_transform.js": 196, + "./lib/_stream_writable.js": 197, + dup: 144 + } + ], + 203: [ + function(require, module, exports) { + arguments[4][145][0].apply(exports, arguments) + }, + { "./readable": 202, dup: 145 } + ], + 204: [ + function(require, module, exports) { + arguments[4][147][0].apply(exports, arguments) + }, + { buffer: 48, dup: 147, "hash-base": 172, inherits: 173 } + ], + 205: [ + function(require, module, exports) { + arguments[4][148][0].apply(exports, arguments) + }, + { buffer: 48, dup: 148 } + ], + 206: [ + function(require, module, exports) { + arguments[4][149][0].apply(exports, arguments) + }, + { dup: 149, "safe-buffer": 205 } + ], + 207: [ + function(require, module, exports) { + arguments[4][150][0].apply(exports, arguments) + }, + { + "./sha": 208, + "./sha1": 209, + "./sha224": 210, + "./sha256": 211, + "./sha384": 212, + "./sha512": 213, + dup: 150 + } + ], + 208: [ + function(require, module, exports) { + arguments[4][151][0].apply(exports, arguments) + }, + { "./hash": 206, dup: 151, inherits: 173, "safe-buffer": 205 } + ], + 209: [ + function(require, module, exports) { + arguments[4][152][0].apply(exports, arguments) + }, + { "./hash": 206, dup: 152, inherits: 173, "safe-buffer": 205 } + ], + 210: [ + function(require, module, exports) { + arguments[4][153][0].apply(exports, arguments) + }, + { + "./hash": 206, + "./sha256": 211, + dup: 153, + inherits: 173, + "safe-buffer": 205 + } + ], + 211: [ + function(require, module, exports) { + arguments[4][154][0].apply(exports, arguments) + }, + { "./hash": 206, dup: 154, inherits: 173, "safe-buffer": 205 } + ], + 212: [ + function(require, module, exports) { + arguments[4][155][0].apply(exports, arguments) + }, + { + "./hash": 206, + "./sha512": 213, + dup: 155, + inherits: 173, + "safe-buffer": 205 + } + ], + 213: [ + function(require, module, exports) { + arguments[4][156][0].apply(exports, arguments) + }, + { "./hash": 206, dup: 156, inherits: 173, "safe-buffer": 205 } + ], + 214: [ + function(require, module, exports) { + /* +Copyright (c) 2014-2016, Matteo Collina + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +*/ + + "use strict" + + var through = require("through2") + var StringDecoder = require("string_decoder").StringDecoder + + function transform(chunk, enc, cb) { + this._last += this._decoder.write(chunk) + if (this._last.length > this.maxLength) { + return cb(new Error("maximum buffer reached")) + } + + var list = this._last.split(this.matcher) + + this._last = list.pop() + + for (var i = 0; i < list.length; i++) { + push(this, this.mapper(list[i])) + } + + cb() + } + + function flush(cb) { + // forward any gibberish left in there + this._last += this._decoder.end() + + if (this._last) { + push(this, this.mapper(this._last)) + } + + cb() + } + + function push(self, val) { + if (val !== undefined) { + self.push(val) + } + } + + function noop(incoming) { + return incoming + } + + function split(matcher, mapper, options) { + // Set defaults for any arguments not supplied. + matcher = matcher || /\r?\n/ + mapper = mapper || noop + options = options || {} + + // Test arguments explicitly. + switch (arguments.length) { + case 1: + // If mapper is only argument. + if (typeof matcher === "function") { + mapper = matcher + matcher = /\r?\n/ + // If options is only argument. + } else if ( + typeof matcher === "object" && + !(matcher instanceof RegExp) + ) { + options = matcher + matcher = /\r?\n/ + } + break + + case 2: + // If mapper and options are arguments. + if (typeof matcher === "function") { + options = mapper + mapper = matcher + matcher = /\r?\n/ + // If matcher and options are arguments. + } else if (typeof mapper === "object") { + options = mapper + mapper = noop + } + } + + var stream = through(options, transform, flush) + + // this stream is in objectMode only in the readable part + stream._readableState.objectMode = true + + // objectMode default hwm is 16 and not 16384 + if (stream._readableState.highWaterMark && !options.highWaterMark) { + stream._readableState.highWaterMark = 16 + } + + stream._last = "" + stream._decoder = new StringDecoder("utf8") + stream.matcher = matcher + stream.mapper = mapper + stream.maxLength = options.maxLength + + return stream + } + + module.exports = split + }, + { string_decoder: 158, through2: 255 } + ], + 215: [ + function(require, module, exports) { + module.exports = shift + + function shift(stream) { + var rs = stream._readableState + if (!rs) return null + return rs.objectMode + ? stream.read() + : stream.read(getStateLength(rs)) + } + + function getStateLength(state) { + if (state.buffer.length) { + // Since node 6.3.0 state.buffer is a BufferList not an array + if (state.buffer.head) { + return state.buffer.head.data.length + } + + return state.buffer[0].length + } + + return state.length + } + }, + {} + ], + 216: [ + function(require, module, exports) { + ;(function(Buffer) { + var Module = require("./lib.js") + var randomBytes = require("crypto").randomBytes + + exports.createSeed = function() { + return randomBytes(32) + } + + exports.createKeyPair = function(seed) { + if (!Buffer.isBuffer(seed)) { + throw new Error("not buffers!") + } + var seedPtr = Module._malloc(32) + var seedBuf = new Uint8Array(Module.HEAPU8.buffer, seedPtr, 32) + var pubKeyPtr = Module._malloc(32) + var pubKey = new Uint8Array(Module.HEAPU8.buffer, pubKeyPtr, 32) + var privKeyPtr = Module._malloc(64) + var privKey = new Uint8Array(Module.HEAPU8.buffer, privKeyPtr, 64) + seedBuf.set(seed) + Module._create_keypair(pubKeyPtr, privKeyPtr, seedPtr) + Module._free(seedPtr) + Module._free(pubKeyPtr) + Module._free(privKeyPtr) + return { + publicKey: new Buffer(pubKey), + secretKey: new Buffer(privKey) + } + } + + exports.sign = function(msg, pubKey, privKey) { + if ( + !Buffer.isBuffer(msg) || + !Buffer.isBuffer(pubKey) || + !Buffer.isBuffer(privKey) + ) { + throw new Error("not buffers!") + } + var msgLen = msg.length + var msgArrPtr = Module._malloc(msgLen) + var msgArr = new Uint8Array( + Module.HEAPU8.buffer, + msgArrPtr, + msgLen + ) + var pubKeyArrPtr = Module._malloc(32) + var pubKeyArr = new Uint8Array( + Module.HEAPU8.buffer, + pubKeyArrPtr, + 32 + ) + var privKeyArrPtr = Module._malloc(64) + var privKeyArr = new Uint8Array( + Module.HEAPU8.buffer, + privKeyArrPtr, + 64 + ) + var sigPtr = Module._malloc(64) + var sig = new Uint8Array(Module.HEAPU8.buffer, sigPtr, 64) + msgArr.set(msg) + pubKeyArr.set(pubKey) + privKeyArr.set(privKey) + Module._sign( + sigPtr, + msgArrPtr, + msgLen, + pubKeyArrPtr, + privKeyArrPtr + ) + Module._free(msgArrPtr) + Module._free(pubKeyArrPtr) + Module._free(privKeyArrPtr) + Module._free(sigPtr) + return new Buffer(sig) + } + + exports.verify = function(sig, msg, pubKey) { + if ( + !Buffer.isBuffer(msg) || + !Buffer.isBuffer(sig) || + !Buffer.isBuffer(pubKey) + ) { + throw new Error("not buffers!") + } + var msgLen = msg.length + var msgArrPtr = Module._malloc(msgLen) + var msgArr = new Uint8Array( + Module.HEAPU8.buffer, + msgArrPtr, + msgLen + ) + var sigArrPtr = Module._malloc(64) + var sigArr = new Uint8Array(Module.HEAPU8.buffer, sigArrPtr, 64) + var pubKeyArrPtr = Module._malloc(32) + var pubKeyArr = new Uint8Array( + Module.HEAPU8.buffer, + pubKeyArrPtr, + 32 + ) + msgArr.set(msg) + sigArr.set(sig) + pubKeyArr.set(pubKey) + var res = + Module._verify(sigArrPtr, msgArrPtr, msgLen, pubKeyArrPtr) === 1 + Module._free(msgArrPtr) + Module._free(sigArrPtr) + Module._free(pubKeyArrPtr) + return res + } + }.call(this, require("buffer").Buffer)) + }, + { "./lib.js": 217, buffer: 48, crypto: 56 } + ], + 217: [ + function(require, module, exports) { + ;(function(process, Buffer, __dirname) { + // The Module object: Our interface to the outside world. We import + // and export values on it, and do the work to get that through + // closure compiler if necessary. There are various ways Module can be used: + // 1. Not defined. We create it here + // 2. A function parameter, function(Module) { ..generated code.. } + // 3. pre-run appended it, var Module = {}; ..generated code.. + // 4. External script tag defines var Module. + // We need to do an eval in order to handle the closure compiler + // case, where this code here is minified but Module was defined + // elsewhere (e.g. case 4 above). We also need to check if Module + // already exists (e.g. case 3 above). + // Note that if you want to run closure, and also to use Module + // after the generated code, you will need to define var Module = {}; + // before the code. Then that object will be used in the code, and you + // can continue to use Module afterwards as well. + var Module + if (!Module) + Module = (typeof Module !== "undefined" ? Module : null) || {} + + // Sometimes an existing Module object exists with properties + // meant to overwrite the default module functionality. Here + // we collect those properties and reapply _after_ we configure + // the current environment's defaults to avoid having to be so + // defensive during initialization. + var moduleOverrides = {} + for (var key in Module) { + if (Module.hasOwnProperty(key)) { + moduleOverrides[key] = Module[key] + } + } + + // The environment setup code below is customized to use Module. + // *** Environment setup code *** + var ENVIRONMENT_IS_WEB = typeof window === "object" + // Three configurations we can be running in: + // 1) We could be the application main() thread running in the main JS UI thread. (ENVIRONMENT_IS_WORKER == false and ENVIRONMENT_IS_PTHREAD == false) + // 2) We could be the application main() thread proxied to worker. (with Emscripten -s PROXY_TO_WORKER=1) (ENVIRONMENT_IS_WORKER == true, ENVIRONMENT_IS_PTHREAD == false) + // 3) We could be an application pthread running in a worker. (ENVIRONMENT_IS_WORKER == true and ENVIRONMENT_IS_PTHREAD == true) + var ENVIRONMENT_IS_WORKER = typeof importScripts === "function" + var ENVIRONMENT_IS_NODE = + typeof process === "object" && + typeof require === "function" && + !ENVIRONMENT_IS_WEB && + !ENVIRONMENT_IS_WORKER + var ENVIRONMENT_IS_SHELL = + !ENVIRONMENT_IS_WEB && + !ENVIRONMENT_IS_NODE && + !ENVIRONMENT_IS_WORKER + + if (ENVIRONMENT_IS_NODE) { + // Expose functionality in the same simple way that the shells work + // Note that we pollute the global namespace here, otherwise we break in node + if (!Module["print"]) + Module["print"] = function print(x) { + process["stdout"].write(x + "\n") + } + if (!Module["printErr"]) + Module["printErr"] = function printErr(x) { + process["stderr"].write(x + "\n") + } + + var nodeFS = require("fs") + var nodePath = require("path") + + Module["read"] = function read(filename, binary) { + filename = nodePath["normalize"](filename) + var ret = nodeFS["readFileSync"](filename) + // The path is absolute if the normalized version is the same as the resolved. + if (!ret && filename != nodePath["resolve"](filename)) { + filename = path.join(__dirname, "..", "src", filename) + ret = nodeFS["readFileSync"](filename) + } + if (ret && !binary) ret = ret.toString() + return ret + } + + Module["readBinary"] = function readBinary(filename) { + var ret = Module["read"](filename, true) + if (!ret.buffer) { + ret = new Uint8Array(ret) + } + assert(ret.buffer) + return ret + } + + Module["load"] = function load(f) { + globalEval(read(f)) + } + + if (!Module["thisProgram"]) { + if (process["argv"].length > 1) { + Module["thisProgram"] = process["argv"][1].replace(/\\/g, "/") + } else { + Module["thisProgram"] = "unknown-program" + } + } + + Module["arguments"] = process["argv"].slice(2) + + if (typeof module !== "undefined") { + module["exports"] = Module + } + + process["on"]("uncaughtException", function(ex) { + // suppress ExitStatus exceptions from showing an error + if (!(ex instanceof ExitStatus)) { + throw ex + } + }) + + Module["inspect"] = function() { + return "[Emscripten Module object]" + } + } else if (ENVIRONMENT_IS_SHELL) { + if (!Module["print"]) Module["print"] = print + if (typeof printErr != "undefined") Module["printErr"] = printErr // not present in v8 or older sm + + if (typeof read != "undefined") { + Module["read"] = read + } else { + Module["read"] = function read() { + throw "no read() available (jsc?)" + } + } + + Module["readBinary"] = function readBinary(f) { + if (typeof readbuffer === "function") { + return new Uint8Array(readbuffer(f)) + } + var data = read(f, "binary") + assert(typeof data === "object") + return data + } + + if (typeof scriptArgs != "undefined") { + Module["arguments"] = scriptArgs + } else if (typeof arguments != "undefined") { + Module["arguments"] = arguments + } + } else if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) { + Module["read"] = function read(url) { + var xhr = new XMLHttpRequest() + xhr.open("GET", url, false) + xhr.send(null) + return xhr.responseText + } + + if (typeof arguments != "undefined") { + Module["arguments"] = arguments + } + + if (typeof console !== "undefined") { + if (!Module["print"]) + Module["print"] = function print(x) { + console.log(x) + } + if (!Module["printErr"]) + Module["printErr"] = function printErr(x) { + console.log(x) + } + } else { + // Probably a worker, and without console.log. We can do very little here... + var TRY_USE_DUMP = false + if (!Module["print"]) + Module["print"] = + TRY_USE_DUMP && typeof dump !== "undefined" + ? function(x) { + dump(x) + } + : function(x) { + // self.postMessage(x); // enable this if you want stdout to be sent as messages + } + } + + if (ENVIRONMENT_IS_WORKER) { + Module["load"] = importScripts + } + + if (typeof Module["setWindowTitle"] === "undefined") { + Module["setWindowTitle"] = function(title) { + document.title = title + } + } + } else { + // Unreachable because SHELL is dependant on the others + throw "Unknown runtime environment. Where are we?" + } + + function globalEval(x) { + eval.call(null, x) + } + if (!Module["load"] && Module["read"]) { + Module["load"] = function load(f) { + globalEval(Module["read"](f)) + } + } + if (!Module["print"]) { + Module["print"] = function() {} + } + if (!Module["printErr"]) { + Module["printErr"] = Module["print"] + } + if (!Module["arguments"]) { + Module["arguments"] = [] + } + if (!Module["thisProgram"]) { + Module["thisProgram"] = "./this.program" + } + + // *** Environment setup code *** + + // Closure helpers + Module.print = Module["print"] + Module.printErr = Module["printErr"] + + // Callbacks + Module["preRun"] = [] + Module["postRun"] = [] + + // Merge back in the overrides + for (var key in moduleOverrides) { + if (moduleOverrides.hasOwnProperty(key)) { + Module[key] = moduleOverrides[key] + } + } + + // === Preamble library stuff === + + // Documentation for the public APIs defined in this file must be updated in: + // site/source/docs/api_reference/preamble.js.rst + // A prebuilt local version of the documentation is available at: + // site/build/text/docs/api_reference/preamble.js.txt + // You can also build docs locally as HTML or other formats in site/ + // An online HTML version (which may be of a different version of Emscripten) + // is up at http://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html + + //======================================== + // Runtime code shared with compiler + //======================================== + + var Runtime = { + setTempRet0: function(value) { + tempRet0 = value + }, + getTempRet0: function() { + return tempRet0 + }, + stackSave: function() { + return STACKTOP + }, + stackRestore: function(stackTop) { + STACKTOP = stackTop + }, + getNativeTypeSize: function(type) { + switch (type) { + case "i1": + case "i8": + return 1 + case "i16": + return 2 + case "i32": + return 4 + case "i64": + return 8 + case "float": + return 4 + case "double": + return 8 + default: { + if (type[type.length - 1] === "*") { + return Runtime.QUANTUM_SIZE // A pointer + } else if (type[0] === "i") { + var bits = parseInt(type.substr(1)) + assert(bits % 8 === 0) + return bits / 8 + } else { + return 0 + } + } + } + }, + getNativeFieldSize: function(type) { + return Math.max( + Runtime.getNativeTypeSize(type), + Runtime.QUANTUM_SIZE + ) + }, + STACK_ALIGN: 16, + prepVararg: function(ptr, type) { + if (type === "double" || type === "i64") { + // move so the load is aligned + if (ptr & 7) { + assert((ptr & 7) === 4) + ptr += 4 + } + } else { + assert((ptr & 3) === 0) + } + return ptr + }, + getAlignSize: function(type, size, vararg) { + // we align i64s and doubles on 64-bit boundaries, unlike x86 + if (!vararg && (type == "i64" || type == "double")) return 8 + if (!type) return Math.min(size, 8) // align structures internally to 64 bits + return Math.min( + size || (type ? Runtime.getNativeFieldSize(type) : 0), + Runtime.QUANTUM_SIZE + ) + }, + dynCall: function(sig, ptr, args) { + if (args && args.length) { + if (!args.splice) args = Array.prototype.slice.call(args) + args.splice(0, 0, ptr) + return Module["dynCall_" + sig].apply(null, args) + } else { + return Module["dynCall_" + sig].call(null, ptr) + } + }, + functionPointers: [], + addFunction: function(func) { + for (var i = 0; i < Runtime.functionPointers.length; i++) { + if (!Runtime.functionPointers[i]) { + Runtime.functionPointers[i] = func + return 2 * (1 + i) + } + } + throw "Finished up all reserved function pointers. Use a higher value for RESERVED_FUNCTION_POINTERS." + }, + removeFunction: function(index) { + Runtime.functionPointers[(index - 2) / 2] = null + }, + warnOnce: function(text) { + if (!Runtime.warnOnce.shown) Runtime.warnOnce.shown = {} + if (!Runtime.warnOnce.shown[text]) { + Runtime.warnOnce.shown[text] = 1 + Module.printErr(text) + } + }, + funcWrappers: {}, + getFuncWrapper: function(func, sig) { + assert(sig) + if (!Runtime.funcWrappers[sig]) { + Runtime.funcWrappers[sig] = {} + } + var sigCache = Runtime.funcWrappers[sig] + if (!sigCache[func]) { + sigCache[func] = function dynCall_wrapper() { + return Runtime.dynCall(sig, func, arguments) + } + } + return sigCache[func] + }, + getCompilerSetting: function(name) { + throw "You must build with -s RETAIN_COMPILER_SETTINGS=1 for Runtime.getCompilerSetting or emscripten_get_compiler_setting to work" + }, + stackAlloc: function(size) { + var ret = STACKTOP + STACKTOP = (STACKTOP + size) | 0 + STACKTOP = (STACKTOP + 15) & -16 + return ret + }, + staticAlloc: function(size) { + var ret = STATICTOP + STATICTOP = (STATICTOP + size) | 0 + STATICTOP = (STATICTOP + 15) & -16 + return ret + }, + dynamicAlloc: function(size) { + var ret = DYNAMICTOP + DYNAMICTOP = (DYNAMICTOP + size) | 0 + DYNAMICTOP = (DYNAMICTOP + 15) & -16 + if (DYNAMICTOP >= TOTAL_MEMORY) { + var success = enlargeMemory() + if (!success) { + DYNAMICTOP = ret + return 0 + } + } + return ret + }, + alignMemory: function(size, quantum) { + var ret = (size = + Math.ceil(size / (quantum ? quantum : 16)) * + (quantum ? quantum : 16)) + return ret + }, + makeBigInt: function(low, high, unsigned) { + var ret = unsigned + ? +(low >>> 0) + +(high >>> 0) * 4294967296.0 + : +(low >>> 0) + +(high | 0) * 4294967296.0 + return ret + }, + GLOBAL_BASE: 8, + QUANTUM_SIZE: 4, + __dummy__: 0 + } + + Module["Runtime"] = Runtime + + //======================================== + // Runtime essentials + //======================================== + + var __THREW__ = 0 // Used in checking for thrown exceptions. + + var ABORT = false // whether we are quitting the application. no code should run after this. set in exit() and abort() + var EXITSTATUS = 0 + + var undef = 0 + // tempInt is used for 32-bit signed values or smaller. tempBigInt is used + // for 32-bit unsigned values or more than 32 bits. TODO: audit all uses of tempInt + var tempValue, + tempInt, + tempBigInt, + tempInt2, + tempBigInt2, + tempPair, + tempBigIntI, + tempBigIntR, + tempBigIntS, + tempBigIntP, + tempBigIntD, + tempDouble, + tempFloat + var tempI64, tempI64b + var tempRet0, + tempRet1, + tempRet2, + tempRet3, + tempRet4, + tempRet5, + tempRet6, + tempRet7, + tempRet8, + tempRet9 + + function assert(condition, text) { + if (!condition) { + abort("Assertion failed: " + text) + } + } + + var globalScope = this + + // Returns the C function with a specified identifier (for C++, you need to do manual name mangling) + function getCFunc(ident) { + var func = Module["_" + ident] // closure exported function + if (!func) { + try { + func = eval("_" + ident) // explicit lookup + } catch (e) {} + } + assert( + func, + "Cannot call unknown function " + + ident + + " (perhaps LLVM optimizations or closure removed it?)" + ) + return func + } + + var cwrap, ccall + ;(function() { + var JSfuncs = { + // Helpers for cwrap -- it can't refer to Runtime directly because it might + // be renamed by closure, instead it calls JSfuncs['stackSave'].body to find + // out what the minified function name is. + stackSave: function() { + Runtime.stackSave() + }, + stackRestore: function() { + Runtime.stackRestore() + }, + // type conversion from js to c + arrayToC: function(arr) { + var ret = Runtime.stackAlloc(arr.length) + writeArrayToMemory(arr, ret) + return ret + }, + stringToC: function(str) { + var ret = 0 + if (str !== null && str !== undefined && str !== 0) { + // null string + // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0' + ret = Runtime.stackAlloc((str.length << 2) + 1) + writeStringToMemory(str, ret) + } + return ret + } + } + // For fast lookup of conversion functions + var toC = { + string: JSfuncs["stringToC"], + array: JSfuncs["arrayToC"] + } + + // C calling interface. + ccall = function ccallFunc( + ident, + returnType, + argTypes, + args, + opts + ) { + var func = getCFunc(ident) + var cArgs = [] + var stack = 0 + if (args) { + for (var i = 0; i < args.length; i++) { + var converter = toC[argTypes[i]] + if (converter) { + if (stack === 0) stack = Runtime.stackSave() + cArgs[i] = converter(args[i]) + } else { + cArgs[i] = args[i] + } + } + } + var ret = func.apply(null, cArgs) + if (returnType === "string") ret = Pointer_stringify(ret) + if (stack !== 0) { + if (opts && opts.async) { + EmterpreterAsync.asyncFinalizers.push(function() { + Runtime.stackRestore(stack) + }) + return + } + Runtime.stackRestore(stack) + } + return ret + } + + var sourceRegex = /^function\s*\(([^)]*)\)\s*{\s*([^*]*?)[\s;]*(?:return\s*(.*?)[;\s]*)?}$/ + function parseJSFunc(jsfunc) { + // Match the body and the return value of a javascript function source + var parsed = jsfunc + .toString() + .match(sourceRegex) + .slice(1) + return { + arguments: parsed[0], + body: parsed[1], + returnValue: parsed[2] + } + } + var JSsource = {} + for (var fun in JSfuncs) { + if (JSfuncs.hasOwnProperty(fun)) { + // Elements of toCsource are arrays of three items: + // the code, and the return value + JSsource[fun] = parseJSFunc(JSfuncs[fun]) + } + } + + cwrap = function cwrap(ident, returnType, argTypes) { + argTypes = argTypes || [] + var cfunc = getCFunc(ident) + // When the function takes numbers and returns a number, we can just return + // the original function + var numericArgs = argTypes.every(function(type) { + return type === "number" + }) + var numericRet = returnType !== "string" + if (numericRet && numericArgs) { + return cfunc + } + // Creation of the arguments list (["$1","$2",...,"$nargs"]) + var argNames = argTypes.map(function(x, i) { + return "$" + i + }) + var funcstr = "(function(" + argNames.join(",") + ") {" + var nargs = argTypes.length + if (!numericArgs) { + // Generate the code needed to convert the arguments from javascript + // values to pointers + funcstr += "var stack = " + JSsource["stackSave"].body + ";" + for (var i = 0; i < nargs; i++) { + var arg = argNames[i], + type = argTypes[i] + if (type === "number") continue + var convertCode = JSsource[type + "ToC"] // [code, return] + funcstr += + "var " + convertCode.arguments + " = " + arg + ";" + funcstr += convertCode.body + ";" + funcstr += arg + "=" + convertCode.returnValue + ";" + } + } + + // When the code is compressed, the name of cfunc is not literally 'cfunc' anymore + var cfuncname = parseJSFunc(function() { + return cfunc + }).returnValue + // Call the function + funcstr += + "var ret = " + cfuncname + "(" + argNames.join(",") + ");" + if (!numericRet) { + // Return type can only by 'string' or 'number' + // Convert the result to a string + var strgfy = parseJSFunc(function() { + return Pointer_stringify + }).returnValue + funcstr += "ret = " + strgfy + "(ret);" + } + if (!numericArgs) { + // If we had a stack, restore it + funcstr += + JSsource["stackRestore"].body.replace("()", "(stack)") + ";" + } + funcstr += "return ret})" + return eval(funcstr) + } + })() + Module["ccall"] = ccall + Module["cwrap"] = cwrap + + function setValue(ptr, value, type, noSafe) { + type = type || "i8" + if (type.charAt(type.length - 1) === "*") type = "i32" // pointers are 32-bit + switch (type) { + case "i1": + HEAP8[ptr >> 0] = value + break + case "i8": + HEAP8[ptr >> 0] = value + break + case "i16": + HEAP16[ptr >> 1] = value + break + case "i32": + HEAP32[ptr >> 2] = value + break + case "i64": + ;(tempI64 = [ + value >>> 0, + ((tempDouble = value), + +Math_abs(tempDouble) >= 1.0 + ? tempDouble > 0.0 + ? (Math_min( + +Math_floor(tempDouble / 4294967296.0), + 4294967295.0 + ) | + 0) >>> + 0 + : ~~+Math_ceil( + (tempDouble - +(~~tempDouble >>> 0)) / 4294967296.0 + ) >>> 0 + : 0) + ]), + (HEAP32[ptr >> 2] = tempI64[0]), + (HEAP32[(ptr + 4) >> 2] = tempI64[1]) + break + case "float": + HEAPF32[ptr >> 2] = value + break + case "double": + HEAPF64[ptr >> 3] = value + break + default: + abort("invalid type for setValue: " + type) + } + } + Module["setValue"] = setValue + + function getValue(ptr, type, noSafe) { + type = type || "i8" + if (type.charAt(type.length - 1) === "*") type = "i32" // pointers are 32-bit + switch (type) { + case "i1": + return HEAP8[ptr >> 0] + case "i8": + return HEAP8[ptr >> 0] + case "i16": + return HEAP16[ptr >> 1] + case "i32": + return HEAP32[ptr >> 2] + case "i64": + return HEAP32[ptr >> 2] + case "float": + return HEAPF32[ptr >> 2] + case "double": + return HEAPF64[ptr >> 3] + default: + abort("invalid type for setValue: " + type) + } + return null + } + Module["getValue"] = getValue + + var ALLOC_NORMAL = 0 // Tries to use _malloc() + var ALLOC_STACK = 1 // Lives for the duration of the current function call + var ALLOC_STATIC = 2 // Cannot be freed + var ALLOC_DYNAMIC = 3 // Cannot be freed except through sbrk + var ALLOC_NONE = 4 // Do not allocate + Module["ALLOC_NORMAL"] = ALLOC_NORMAL + Module["ALLOC_STACK"] = ALLOC_STACK + Module["ALLOC_STATIC"] = ALLOC_STATIC + Module["ALLOC_DYNAMIC"] = ALLOC_DYNAMIC + Module["ALLOC_NONE"] = ALLOC_NONE + + // allocate(): This is for internal use. You can use it yourself as well, but the interface + // is a little tricky (see docs right below). The reason is that it is optimized + // for multiple syntaxes to save space in generated code. So you should + // normally not use allocate(), and instead allocate memory using _malloc(), + // initialize it with setValue(), and so forth. + // @slab: An array of data, or a number. If a number, then the size of the block to allocate, + // in *bytes* (note that this is sometimes confusing: the next parameter does not + // affect this!) + // @types: Either an array of types, one for each byte (or 0 if no type at that position), + // or a single type which is used for the entire block. This only matters if there + // is initial data - if @slab is a number, then this does not matter at all and is + // ignored. + // @allocator: How to allocate memory, see ALLOC_* + function allocate(slab, types, allocator, ptr) { + var zeroinit, size + if (typeof slab === "number") { + zeroinit = true + size = slab + } else { + zeroinit = false + size = slab.length + } + + var singleType = typeof types === "string" ? types : null + + var ret + if (allocator == ALLOC_NONE) { + ret = ptr + } else { + ret = [ + _malloc, + Runtime.stackAlloc, + Runtime.staticAlloc, + Runtime.dynamicAlloc + ][allocator === undefined ? ALLOC_STATIC : allocator]( + Math.max(size, singleType ? 1 : types.length) + ) + } + + if (zeroinit) { + var ptr = ret, + stop + assert((ret & 3) == 0) + stop = ret + (size & ~3) + for (; ptr < stop; ptr += 4) { + HEAP32[ptr >> 2] = 0 + } + stop = ret + size + while (ptr < stop) { + HEAP8[ptr++ >> 0] = 0 + } + return ret + } + + if (singleType === "i8") { + if (slab.subarray || slab.slice) { + HEAPU8.set(slab, ret) + } else { + HEAPU8.set(new Uint8Array(slab), ret) + } + return ret + } + + var i = 0, + type, + typeSize, + previousType + while (i < size) { + var curr = slab[i] + + if (typeof curr === "function") { + curr = Runtime.getFunctionIndex(curr) + } + + type = singleType || types[i] + if (type === 0) { + i++ + continue + } + + if (type == "i64") type = "i32" // special case: we have one i32 here, and one i32 later + + setValue(ret + i, curr, type) + + // no need to look up size unless type changes, so cache it + if (previousType !== type) { + typeSize = Runtime.getNativeTypeSize(type) + previousType = type + } + i += typeSize + } + + return ret + } + Module["allocate"] = allocate + + // Allocate memory during any stage of startup - static memory early on, dynamic memory later, malloc when ready + function getMemory(size) { + if (!staticSealed) return Runtime.staticAlloc(size) + if ( + (typeof _sbrk !== "undefined" && !_sbrk.called) || + !runtimeInitialized + ) + return Runtime.dynamicAlloc(size) + return _malloc(size) + } + Module["getMemory"] = getMemory + + function Pointer_stringify(ptr, /* optional */ length) { + if (length === 0 || !ptr) return "" + // TODO: use TextDecoder + // Find the length, and check for UTF while doing so + var hasUtf = 0 + var t + var i = 0 + while (1) { + t = HEAPU8[(ptr + i) >> 0] + hasUtf |= t + if (t == 0 && !length) break + i++ + if (length && i == length) break + } + if (!length) length = i + + var ret = "" + + if (hasUtf < 128) { + var MAX_CHUNK = 1024 // split up into chunks, because .apply on a huge string can overflow the stack + var curr + while (length > 0) { + curr = String.fromCharCode.apply( + String, + HEAPU8.subarray(ptr, ptr + Math.min(length, MAX_CHUNK)) + ) + ret = ret ? ret + curr : curr + ptr += MAX_CHUNK + length -= MAX_CHUNK + } + return ret + } + return Module["UTF8ToString"](ptr) + } + Module["Pointer_stringify"] = Pointer_stringify + + // Given a pointer 'ptr' to a null-terminated ASCII-encoded string in the emscripten HEAP, returns + // a copy of that string as a Javascript String object. + + function AsciiToString(ptr) { + var str = "" + while (1) { + var ch = HEAP8[ptr++ >> 0] + if (!ch) return str + str += String.fromCharCode(ch) + } + } + Module["AsciiToString"] = AsciiToString + + // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', + // null-terminated and encoded in ASCII form. The copy will require at most str.length+1 bytes of space in the HEAP. + + function stringToAscii(str, outPtr) { + return writeAsciiToMemory(str, outPtr, false) + } + Module["stringToAscii"] = stringToAscii + + // Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the given array that contains uint8 values, returns + // a copy of that string as a Javascript String object. + + function UTF8ArrayToString(u8Array, idx) { + var u0, u1, u2, u3, u4, u5 + + var str = "" + while (1) { + // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description and https://www.ietf.org/rfc/rfc2279.txt and https://tools.ietf.org/html/rfc3629 + u0 = u8Array[idx++] + if (!u0) return str + if (!(u0 & 0x80)) { + str += String.fromCharCode(u0) + continue + } + u1 = u8Array[idx++] & 63 + if ((u0 & 0xe0) == 0xc0) { + str += String.fromCharCode(((u0 & 31) << 6) | u1) + continue + } + u2 = u8Array[idx++] & 63 + if ((u0 & 0xf0) == 0xe0) { + u0 = ((u0 & 15) << 12) | (u1 << 6) | u2 + } else { + u3 = u8Array[idx++] & 63 + if ((u0 & 0xf8) == 0xf0) { + u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | u3 + } else { + u4 = u8Array[idx++] & 63 + if ((u0 & 0xfc) == 0xf8) { + u0 = + ((u0 & 3) << 24) | + (u1 << 18) | + (u2 << 12) | + (u3 << 6) | + u4 + } else { + u5 = u8Array[idx++] & 63 + u0 = + ((u0 & 1) << 30) | + (u1 << 24) | + (u2 << 18) | + (u3 << 12) | + (u4 << 6) | + u5 + } + } + } + if (u0 < 0x10000) { + str += String.fromCharCode(u0) + } else { + var ch = u0 - 0x10000 + str += String.fromCharCode( + 0xd800 | (ch >> 10), + 0xdc00 | (ch & 0x3ff) + ) + } + } + } + Module["UTF8ArrayToString"] = UTF8ArrayToString + + // Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the emscripten HEAP, returns + // a copy of that string as a Javascript String object. + + function UTF8ToString(ptr) { + return UTF8ArrayToString(HEAPU8, ptr) + } + Module["UTF8ToString"] = UTF8ToString + + // Copies the given Javascript String object 'str' to the given byte array at address 'outIdx', + // encoded in UTF8 form and null-terminated. The copy will require at most str.length*4+1 bytes of space in the HEAP. + // Use the function lengthBytesUTF8() to compute the exact number of bytes (excluding null terminator) that this function will write. + // Parameters: + // str: the Javascript string to copy. + // outU8Array: the array to copy to. Each index in this array is assumed to be one 8-byte element. + // outIdx: The starting offset in the array to begin the copying. + // maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null + // terminator, i.e. if maxBytesToWrite=1, only the null terminator will be written and nothing else. + // maxBytesToWrite=0 does not write any bytes to the output, not even the null terminator. + // Returns the number of bytes written, EXCLUDING the null terminator. + + function stringToUTF8Array( + str, + outU8Array, + outIdx, + maxBytesToWrite + ) { + if (!(maxBytesToWrite > 0)) + // Parameter maxBytesToWrite is not optional. Negative values, 0, null, undefined and false each don't write out any bytes. + return 0 + + var startIdx = outIdx + var endIdx = outIdx + maxBytesToWrite - 1 // -1 for string null terminator. + for (var i = 0; i < str.length; ++i) { + // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! So decode UTF16->UTF32->UTF8. + // See http://unicode.org/faq/utf_bom.html#utf16-3 + // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description and https://www.ietf.org/rfc/rfc2279.txt and https://tools.ietf.org/html/rfc3629 + var u = str.charCodeAt(i) // possibly a lead surrogate + if (u >= 0xd800 && u <= 0xdfff) + u = + (0x10000 + ((u & 0x3ff) << 10)) | + (str.charCodeAt(++i) & 0x3ff) + if (u <= 0x7f) { + if (outIdx >= endIdx) break + outU8Array[outIdx++] = u + } else if (u <= 0x7ff) { + if (outIdx + 1 >= endIdx) break + outU8Array[outIdx++] = 0xc0 | (u >> 6) + outU8Array[outIdx++] = 0x80 | (u & 63) + } else if (u <= 0xffff) { + if (outIdx + 2 >= endIdx) break + outU8Array[outIdx++] = 0xe0 | (u >> 12) + outU8Array[outIdx++] = 0x80 | ((u >> 6) & 63) + outU8Array[outIdx++] = 0x80 | (u & 63) + } else if (u <= 0x1fffff) { + if (outIdx + 3 >= endIdx) break + outU8Array[outIdx++] = 0xf0 | (u >> 18) + outU8Array[outIdx++] = 0x80 | ((u >> 12) & 63) + outU8Array[outIdx++] = 0x80 | ((u >> 6) & 63) + outU8Array[outIdx++] = 0x80 | (u & 63) + } else if (u <= 0x3ffffff) { + if (outIdx + 4 >= endIdx) break + outU8Array[outIdx++] = 0xf8 | (u >> 24) + outU8Array[outIdx++] = 0x80 | ((u >> 18) & 63) + outU8Array[outIdx++] = 0x80 | ((u >> 12) & 63) + outU8Array[outIdx++] = 0x80 | ((u >> 6) & 63) + outU8Array[outIdx++] = 0x80 | (u & 63) + } else { + if (outIdx + 5 >= endIdx) break + outU8Array[outIdx++] = 0xfc | (u >> 30) + outU8Array[outIdx++] = 0x80 | ((u >> 24) & 63) + outU8Array[outIdx++] = 0x80 | ((u >> 18) & 63) + outU8Array[outIdx++] = 0x80 | ((u >> 12) & 63) + outU8Array[outIdx++] = 0x80 | ((u >> 6) & 63) + outU8Array[outIdx++] = 0x80 | (u & 63) + } + } + // Null-terminate the pointer to the buffer. + outU8Array[outIdx] = 0 + return outIdx - startIdx + } + Module["stringToUTF8Array"] = stringToUTF8Array + + // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', + // null-terminated and encoded in UTF8 form. The copy will require at most str.length*4+1 bytes of space in the HEAP. + // Use the function lengthBytesUTF8() to compute the exact number of bytes (excluding null terminator) that this function will write. + // Returns the number of bytes written, EXCLUDING the null terminator. + + function stringToUTF8(str, outPtr, maxBytesToWrite) { + return stringToUTF8Array(str, HEAPU8, outPtr, maxBytesToWrite) + } + Module["stringToUTF8"] = stringToUTF8 + + // Returns the number of bytes the given Javascript string takes if encoded as a UTF8 byte array, EXCLUDING the null terminator byte. + + function lengthBytesUTF8(str) { + var len = 0 + for (var i = 0; i < str.length; ++i) { + // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! So decode UTF16->UTF32->UTF8. + // See http://unicode.org/faq/utf_bom.html#utf16-3 + var u = str.charCodeAt(i) // possibly a lead surrogate + if (u >= 0xd800 && u <= 0xdfff) + u = + (0x10000 + ((u & 0x3ff) << 10)) | + (str.charCodeAt(++i) & 0x3ff) + if (u <= 0x7f) { + ++len + } else if (u <= 0x7ff) { + len += 2 + } else if (u <= 0xffff) { + len += 3 + } else if (u <= 0x1fffff) { + len += 4 + } else if (u <= 0x3ffffff) { + len += 5 + } else { + len += 6 + } + } + return len + } + Module["lengthBytesUTF8"] = lengthBytesUTF8 + + // Given a pointer 'ptr' to a null-terminated UTF16LE-encoded string in the emscripten HEAP, returns + // a copy of that string as a Javascript String object. + + function UTF16ToString(ptr) { + var i = 0 + + var str = "" + while (1) { + var codeUnit = HEAP16[(ptr + i * 2) >> 1] + if (codeUnit == 0) return str + ++i + // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through. + str += String.fromCharCode(codeUnit) + } + } + Module["UTF16ToString"] = UTF16ToString + + // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', + // null-terminated and encoded in UTF16 form. The copy will require at most str.length*4+2 bytes of space in the HEAP. + // Use the function lengthBytesUTF16() to compute the exact number of bytes (excluding null terminator) that this function will write. + // Parameters: + // str: the Javascript string to copy. + // outPtr: Byte address in Emscripten HEAP where to write the string to. + // maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null + // terminator, i.e. if maxBytesToWrite=2, only the null terminator will be written and nothing else. + // maxBytesToWrite<2 does not write any bytes to the output, not even the null terminator. + // Returns the number of bytes written, EXCLUDING the null terminator. + + function stringToUTF16(str, outPtr, maxBytesToWrite) { + // Backwards compatibility: if max bytes is not specified, assume unsafe unbounded write is allowed. + if (maxBytesToWrite === undefined) { + maxBytesToWrite = 0x7fffffff + } + if (maxBytesToWrite < 2) return 0 + maxBytesToWrite -= 2 // Null terminator. + var startPtr = outPtr + var numCharsToWrite = + maxBytesToWrite < str.length * 2 + ? maxBytesToWrite / 2 + : str.length + for (var i = 0; i < numCharsToWrite; ++i) { + // charCodeAt returns a UTF-16 encoded code unit, so it can be directly written to the HEAP. + var codeUnit = str.charCodeAt(i) // possibly a lead surrogate + HEAP16[outPtr >> 1] = codeUnit + outPtr += 2 + } + // Null-terminate the pointer to the HEAP. + HEAP16[outPtr >> 1] = 0 + return outPtr - startPtr + } + Module["stringToUTF16"] = stringToUTF16 + + // Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte. + + function lengthBytesUTF16(str) { + return str.length * 2 + } + Module["lengthBytesUTF16"] = lengthBytesUTF16 + + function UTF32ToString(ptr) { + var i = 0 + + var str = "" + while (1) { + var utf32 = HEAP32[(ptr + i * 4) >> 2] + if (utf32 == 0) return str + ++i + // Gotcha: fromCharCode constructs a character from a UTF-16 encoded code (pair), not from a Unicode code point! So encode the code point to UTF-16 for constructing. + // See http://unicode.org/faq/utf_bom.html#utf16-3 + if (utf32 >= 0x10000) { + var ch = utf32 - 0x10000 + str += String.fromCharCode( + 0xd800 | (ch >> 10), + 0xdc00 | (ch & 0x3ff) + ) + } else { + str += String.fromCharCode(utf32) + } + } + } + Module["UTF32ToString"] = UTF32ToString + + // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', + // null-terminated and encoded in UTF32 form. The copy will require at most str.length*4+4 bytes of space in the HEAP. + // Use the function lengthBytesUTF32() to compute the exact number of bytes (excluding null terminator) that this function will write. + // Parameters: + // str: the Javascript string to copy. + // outPtr: Byte address in Emscripten HEAP where to write the string to. + // maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null + // terminator, i.e. if maxBytesToWrite=4, only the null terminator will be written and nothing else. + // maxBytesToWrite<4 does not write any bytes to the output, not even the null terminator. + // Returns the number of bytes written, EXCLUDING the null terminator. + + function stringToUTF32(str, outPtr, maxBytesToWrite) { + // Backwards compatibility: if max bytes is not specified, assume unsafe unbounded write is allowed. + if (maxBytesToWrite === undefined) { + maxBytesToWrite = 0x7fffffff + } + if (maxBytesToWrite < 4) return 0 + var startPtr = outPtr + var endPtr = startPtr + maxBytesToWrite - 4 + for (var i = 0; i < str.length; ++i) { + // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! We must decode the string to UTF-32 to the heap. + // See http://unicode.org/faq/utf_bom.html#utf16-3 + var codeUnit = str.charCodeAt(i) // possibly a lead surrogate + if (codeUnit >= 0xd800 && codeUnit <= 0xdfff) { + var trailSurrogate = str.charCodeAt(++i) + codeUnit = + (0x10000 + ((codeUnit & 0x3ff) << 10)) | + (trailSurrogate & 0x3ff) + } + HEAP32[outPtr >> 2] = codeUnit + outPtr += 4 + if (outPtr + 4 > endPtr) break + } + // Null-terminate the pointer to the HEAP. + HEAP32[outPtr >> 2] = 0 + return outPtr - startPtr + } + Module["stringToUTF32"] = stringToUTF32 + + // Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte. + + function lengthBytesUTF32(str) { + var len = 0 + for (var i = 0; i < str.length; ++i) { + // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! We must decode the string to UTF-32 to the heap. + // See http://unicode.org/faq/utf_bom.html#utf16-3 + var codeUnit = str.charCodeAt(i) + if (codeUnit >= 0xd800 && codeUnit <= 0xdfff) ++i // possibly a lead surrogate, so skip over the tail surrogate. + len += 4 + } + + return len + } + Module["lengthBytesUTF32"] = lengthBytesUTF32 + + function demangle(func) { + var hasLibcxxabi = !!Module["___cxa_demangle"] + if (hasLibcxxabi) { + try { + var buf = _malloc(func.length) + writeStringToMemory(func.substr(1), buf) + var status = _malloc(4) + var ret = Module["___cxa_demangle"](buf, 0, 0, status) + if (getValue(status, "i32") === 0 && ret) { + return Pointer_stringify(ret) + } + // otherwise, libcxxabi failed, we can try ours which may return a partial result + } catch (e) { + // failure when using libcxxabi, we can try ours which may return a partial result + } finally { + if (buf) _free(buf) + if (status) _free(status) + if (ret) _free(ret) + } + } + var i = 3 + // params, etc. + var basicTypes = { + v: "void", + b: "bool", + c: "char", + s: "short", + i: "int", + l: "long", + f: "float", + d: "double", + w: "wchar_t", + a: "signed char", + h: "unsigned char", + t: "unsigned short", + j: "unsigned int", + m: "unsigned long", + x: "long long", + y: "unsigned long long", + z: "..." + } + var subs = [] + var first = true + function dump(x) { + //return; + if (x) Module.print(x) + Module.print(func) + var pre = "" + for (var a = 0; a < i; a++) pre += " " + Module.print(pre + "^") + } + function parseNested() { + i++ + if (func[i] === "K") i++ // ignore const + var parts = [] + while (func[i] !== "E") { + if (func[i] === "S") { + // substitution + i++ + var next = func.indexOf("_", i) + var num = func.substring(i, next) || 0 + parts.push(subs[num] || "?") + i = next + 1 + continue + } + if (func[i] === "C") { + // constructor + parts.push(parts[parts.length - 1]) + i += 2 + continue + } + var size = parseInt(func.substr(i)) + var pre = size.toString().length + if (!size || !pre) { + i-- + break + } // counter i++ below us + var curr = func.substr(i + pre, size) + parts.push(curr) + subs.push(curr) + i += pre + size + } + i++ // skip E + return parts + } + function parse(rawList, limit, allowVoid) { + // main parser + limit = limit || Infinity + var ret = "", + list = [] + function flushList() { + return "(" + list.join(", ") + ")" + } + var name + if (func[i] === "N") { + // namespaced N-E + name = parseNested().join("::") + limit-- + if (limit === 0) return rawList ? [name] : name + } else { + // not namespaced + if (func[i] === "K" || (first && func[i] === "L")) i++ // ignore const and first 'L' + var size = parseInt(func.substr(i)) + if (size) { + var pre = size.toString().length + name = func.substr(i + pre, size) + i += pre + size + } + } + first = false + if (func[i] === "I") { + i++ + var iList = parse(true) + var iRet = parse(true, 1, true) + ret += iRet[0] + " " + name + "<" + iList.join(", ") + ">" + } else { + ret = name + } + paramLoop: while (i < func.length && limit-- > 0) { + //dump('paramLoop'); + var c = func[i++] + if (c in basicTypes) { + list.push(basicTypes[c]) + } else { + switch (c) { + case "P": + list.push(parse(true, 1, true)[0] + "*") + break // pointer + case "R": + list.push(parse(true, 1, true)[0] + "&") + break // reference + case "L": { + // literal + i++ // skip basic type + var end = func.indexOf("E", i) + var size = end - i + list.push(func.substr(i, size)) + i += size + 2 // size + 'EE' + break + } + case "A": { + // array + var size = parseInt(func.substr(i)) + i += size.toString().length + if (func[i] !== "_") throw "?" + i++ // skip _ + list.push(parse(true, 1, true)[0] + " [" + size + "]") + break + } + case "E": + break paramLoop + default: + ret += "?" + c + break paramLoop + } + } + } + if (!allowVoid && list.length === 1 && list[0] === "void") + list = [] // avoid (void) + if (rawList) { + if (ret) { + list.push(ret + "?") + } + return list + } else { + return ret + flushList() + } + } + var parsed = func + try { + // Special-case the entry point, since its name differs from other name mangling. + if (func == "Object._main" || func == "_main") { + return "main()" + } + if (typeof func === "number") func = Pointer_stringify(func) + if (func[0] !== "_") return func + if (func[1] !== "_") return func // C function + if (func[2] !== "Z") return func + switch (func[3]) { + case "n": + return "operator new()" + case "d": + return "operator delete()" + } + parsed = parse() + } catch (e) { + parsed += "?" + } + if (parsed.indexOf("?") >= 0 && !hasLibcxxabi) { + Runtime.warnOnce( + "warning: a problem occurred in builtin C++ name demangling; build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling" + ) + } + return parsed + } + + function demangleAll(text) { + return text.replace(/__Z[\w\d_]+/g, function(x) { + var y = demangle(x) + return x === y ? x : x + " [" + y + "]" + }) + } + + function jsStackTrace() { + var err = new Error() + if (!err.stack) { + // IE10+ special cases: It does have callstack info, but it is only populated if an Error object is thrown, + // so try that as a special-case. + try { + throw new Error(0) + } catch (e) { + err = e + } + if (!err.stack) { + return "(no stack trace available)" + } + } + return err.stack.toString() + } + + function stackTrace() { + return demangleAll(jsStackTrace()) + } + Module["stackTrace"] = stackTrace + + // Memory management + + var PAGE_SIZE = 4096 + + function alignMemoryPage(x) { + if (x % 4096 > 0) { + x += 4096 - (x % 4096) + } + return x + } + + var HEAP + var HEAP8, + HEAPU8, + HEAP16, + HEAPU16, + HEAP32, + HEAPU32, + HEAPF32, + HEAPF64 + + var STATIC_BASE = 0, + STATICTOP = 0, + staticSealed = false // static area + var STACK_BASE = 0, + STACKTOP = 0, + STACK_MAX = 0 // stack area + var DYNAMIC_BASE = 0, + DYNAMICTOP = 0 // dynamic area handled by sbrk + + function abortOnCannotGrowMemory() { + abort( + "Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value " + + TOTAL_MEMORY + + ", (2) compile with -s ALLOW_MEMORY_GROWTH=1 which adjusts the size at runtime but prevents some optimizations, (3) set Module.TOTAL_MEMORY to a higher value before the program runs, or if you want malloc to return NULL (0) instead of this abort, compile with -s ABORTING_MALLOC=0 " + ) + } + + function enlargeMemory() { + abortOnCannotGrowMemory() + } + + var TOTAL_STACK = Module["TOTAL_STACK"] || 5242880 + var TOTAL_MEMORY = Module["TOTAL_MEMORY"] || 16777216 + + var totalMemory = 64 * 1024 + while ( + totalMemory < TOTAL_MEMORY || + totalMemory < 2 * TOTAL_STACK + ) { + if (totalMemory < 16 * 1024 * 1024) { + totalMemory *= 2 + } else { + totalMemory += 16 * 1024 * 1024 + } + } + if (totalMemory !== TOTAL_MEMORY) { + TOTAL_MEMORY = totalMemory + } + + // Initialize the runtime's memory + // check for full engine support (use string 'subarray' to avoid closure compiler confusion) + assert( + typeof Int32Array !== "undefined" && + typeof Float64Array !== "undefined" && + !!new Int32Array(1)["subarray"] && + !!new Int32Array(1)["set"], + "JS engine does not provide full typed array support" + ) + + var buffer + + buffer = new ArrayBuffer(TOTAL_MEMORY) + HEAP8 = new Int8Array(buffer) + HEAP16 = new Int16Array(buffer) + HEAP32 = new Int32Array(buffer) + HEAPU8 = new Uint8Array(buffer) + HEAPU16 = new Uint16Array(buffer) + HEAPU32 = new Uint32Array(buffer) + HEAPF32 = new Float32Array(buffer) + HEAPF64 = new Float64Array(buffer) + + // Endianness check (note: assumes compiler arch was little-endian) + HEAP32[0] = 255 + assert( + HEAPU8[0] === 255 && HEAPU8[3] === 0, + "Typed arrays 2 must be run on a little-endian system" + ) + + Module["HEAP"] = HEAP + Module["buffer"] = buffer + Module["HEAP8"] = HEAP8 + Module["HEAP16"] = HEAP16 + Module["HEAP32"] = HEAP32 + Module["HEAPU8"] = HEAPU8 + Module["HEAPU16"] = HEAPU16 + Module["HEAPU32"] = HEAPU32 + Module["HEAPF32"] = HEAPF32 + Module["HEAPF64"] = HEAPF64 + + function callRuntimeCallbacks(callbacks) { + while (callbacks.length > 0) { + var callback = callbacks.shift() + if (typeof callback == "function") { + callback() + continue + } + var func = callback.func + if (typeof func === "number") { + if (callback.arg === undefined) { + Runtime.dynCall("v", func) + } else { + Runtime.dynCall("vi", func, [callback.arg]) + } + } else { + func(callback.arg === undefined ? null : callback.arg) + } + } + } + + var __ATPRERUN__ = [] // functions called before the runtime is initialized + var __ATINIT__ = [] // functions called during startup + var __ATMAIN__ = [] // functions called when main() is to be run + var __ATEXIT__ = [] // functions called during shutdown + var __ATPOSTRUN__ = [] // functions called after the runtime has exited + + var runtimeInitialized = false + var runtimeExited = false + + function preRun() { + // compatibility - merge in anything from Module['preRun'] at this time + if (Module["preRun"]) { + if (typeof Module["preRun"] == "function") + Module["preRun"] = [Module["preRun"]] + while (Module["preRun"].length) { + addOnPreRun(Module["preRun"].shift()) + } + } + callRuntimeCallbacks(__ATPRERUN__) + } + + function ensureInitRuntime() { + if (runtimeInitialized) return + runtimeInitialized = true + callRuntimeCallbacks(__ATINIT__) + } + + function preMain() { + callRuntimeCallbacks(__ATMAIN__) + } + + function exitRuntime() { + callRuntimeCallbacks(__ATEXIT__) + runtimeExited = true + } + + function postRun() { + // compatibility - merge in anything from Module['postRun'] at this time + if (Module["postRun"]) { + if (typeof Module["postRun"] == "function") + Module["postRun"] = [Module["postRun"]] + while (Module["postRun"].length) { + addOnPostRun(Module["postRun"].shift()) + } + } + callRuntimeCallbacks(__ATPOSTRUN__) + } + + function addOnPreRun(cb) { + __ATPRERUN__.unshift(cb) + } + Module["addOnPreRun"] = addOnPreRun + + function addOnInit(cb) { + __ATINIT__.unshift(cb) + } + Module["addOnInit"] = addOnInit + + function addOnPreMain(cb) { + __ATMAIN__.unshift(cb) + } + Module["addOnPreMain"] = addOnPreMain + + function addOnExit(cb) { + __ATEXIT__.unshift(cb) + } + Module["addOnExit"] = addOnExit + + function addOnPostRun(cb) { + __ATPOSTRUN__.unshift(cb) + } + Module["addOnPostRun"] = addOnPostRun + + // Tools + + function intArrayFromString( + stringy, + dontAddNull, + length /* optional */ + ) { + var len = length > 0 ? length : lengthBytesUTF8(stringy) + 1 + var u8array = new Array(len) + var numBytesWritten = stringToUTF8Array( + stringy, + u8array, + 0, + u8array.length + ) + if (dontAddNull) u8array.length = numBytesWritten + return u8array + } + Module["intArrayFromString"] = intArrayFromString + + function intArrayToString(array) { + var ret = [] + for (var i = 0; i < array.length; i++) { + var chr = array[i] + if (chr > 0xff) { + chr &= 0xff + } + ret.push(String.fromCharCode(chr)) + } + return ret.join("") + } + Module["intArrayToString"] = intArrayToString + + function writeStringToMemory(string, buffer, dontAddNull) { + var array = intArrayFromString(string, dontAddNull) + var i = 0 + while (i < array.length) { + var chr = array[i] + HEAP8[(buffer + i) >> 0] = chr + i = i + 1 + } + } + Module["writeStringToMemory"] = writeStringToMemory + + function writeArrayToMemory(array, buffer) { + for (var i = 0; i < array.length; i++) { + HEAP8[buffer++ >> 0] = array[i] + } + } + Module["writeArrayToMemory"] = writeArrayToMemory + + function writeAsciiToMemory(str, buffer, dontAddNull) { + for (var i = 0; i < str.length; ++i) { + HEAP8[buffer++ >> 0] = str.charCodeAt(i) + } + // Null-terminate the pointer to the HEAP. + if (!dontAddNull) HEAP8[buffer >> 0] = 0 + } + Module["writeAsciiToMemory"] = writeAsciiToMemory + + function unSign(value, bits, ignore) { + if (value >= 0) { + return value + } + return bits <= 32 + ? 2 * Math.abs(1 << (bits - 1)) + value // Need some trickery, since if bits == 32, we are right at the limit of the bits JS uses in bitshifts + : Math.pow(2, bits) + value + } + function reSign(value, bits, ignore) { + if (value <= 0) { + return value + } + var half = + bits <= 32 + ? Math.abs(1 << (bits - 1)) // abs is needed if bits == 32 + : Math.pow(2, bits - 1) + if (value >= half && (bits <= 32 || value > half)) { + // for huge values, we can hit the precision limit and always get true here. so don't do that + // but, in general there is no perfect solution here. With 64-bit ints, we get rounding and errors + // TODO: In i64 mode 1, resign the two parts separately and safely + value = -2 * half + value // Cannot bitshift half, as it may be at the limit of the bits JS uses in bitshifts + } + return value + } + + // check for imul support, and also for correctness ( https://bugs.webkit.org/show_bug.cgi?id=126345 ) + if (!Math["imul"] || Math["imul"](0xffffffff, 5) !== -5) + Math["imul"] = function imul(a, b) { + var ah = a >>> 16 + var al = a & 0xffff + var bh = b >>> 16 + var bl = b & 0xffff + return (al * bl + ((ah * bl + al * bh) << 16)) | 0 + } + Math.imul = Math["imul"] + + if (!Math["clz32"]) + Math["clz32"] = function(x) { + x = x >>> 0 + for (var i = 0; i < 32; i++) { + if (x & (1 << (31 - i))) return i + } + return 32 + } + Math.clz32 = Math["clz32"] + + var Math_abs = Math.abs + var Math_cos = Math.cos + var Math_sin = Math.sin + var Math_tan = Math.tan + var Math_acos = Math.acos + var Math_asin = Math.asin + var Math_atan = Math.atan + var Math_atan2 = Math.atan2 + var Math_exp = Math.exp + var Math_log = Math.log + var Math_sqrt = Math.sqrt + var Math_ceil = Math.ceil + var Math_floor = Math.floor + var Math_pow = Math.pow + var Math_imul = Math.imul + var Math_fround = Math.fround + var Math_min = Math.min + var Math_clz32 = Math.clz32 + + // A counter of dependencies for calling run(). If we need to + // do asynchronous work before running, increment this and + // decrement it. Incrementing must happen in a place like + // PRE_RUN_ADDITIONS (used by emcc to add file preloading). + // Note that you can add dependencies in preRun, even though + // it happens right before run - run will be postponed until + // the dependencies are met. + var runDependencies = 0 + var runDependencyWatcher = null + var dependenciesFulfilled = null // overridden to take different actions when all run dependencies are fulfilled + + function getUniqueRunDependency(id) { + return id + } + + function addRunDependency(id) { + runDependencies++ + if (Module["monitorRunDependencies"]) { + Module["monitorRunDependencies"](runDependencies) + } + } + Module["addRunDependency"] = addRunDependency + + function removeRunDependency(id) { + runDependencies-- + if (Module["monitorRunDependencies"]) { + Module["monitorRunDependencies"](runDependencies) + } + if (runDependencies == 0) { + if (runDependencyWatcher !== null) { + clearInterval(runDependencyWatcher) + runDependencyWatcher = null + } + if (dependenciesFulfilled) { + var callback = dependenciesFulfilled + dependenciesFulfilled = null + callback() // can add another dependenciesFulfilled + } + } + } + Module["removeRunDependency"] = removeRunDependency + + Module["preloadedImages"] = {} // maps url to image data + Module["preloadedAudios"] = {} // maps url to audio data + + var memoryInitializer = null + + // === Body === + + var ASM_CONSTS = [] + + STATIC_BASE = 8 + + STATICTOP = STATIC_BASE + 34144 + /* global initializers */ __ATINIT__.push() + + /* memory initializer */ allocate( + [ + 34, + 174, + 40, + 215, + 152, + 47, + 138, + 66, + 205, + 101, + 239, + 35, + 145, + 68, + 55, + 113, + 47, + 59, + 77, + 236, + 207, + 251, + 192, + 181, + 188, + 219, + 137, + 129, + 165, + 219, + 181, + 233, + 56, + 181, + 72, + 243, + 91, + 194, + 86, + 57, + 25, + 208, + 5, + 182, + 241, + 17, + 241, + 89, + 155, + 79, + 25, + 175, + 164, + 130, + 63, + 146, + 24, + 129, + 109, + 218, + 213, + 94, + 28, + 171, + 66, + 2, + 3, + 163, + 152, + 170, + 7, + 216, + 190, + 111, + 112, + 69, + 1, + 91, + 131, + 18, + 140, + 178, + 228, + 78, + 190, + 133, + 49, + 36, + 226, + 180, + 255, + 213, + 195, + 125, + 12, + 85, + 111, + 137, + 123, + 242, + 116, + 93, + 190, + 114, + 177, + 150, + 22, + 59, + 254, + 177, + 222, + 128, + 53, + 18, + 199, + 37, + 167, + 6, + 220, + 155, + 148, + 38, + 105, + 207, + 116, + 241, + 155, + 193, + 210, + 74, + 241, + 158, + 193, + 105, + 155, + 228, + 227, + 37, + 79, + 56, + 134, + 71, + 190, + 239, + 181, + 213, + 140, + 139, + 198, + 157, + 193, + 15, + 101, + 156, + 172, + 119, + 204, + 161, + 12, + 36, + 117, + 2, + 43, + 89, + 111, + 44, + 233, + 45, + 131, + 228, + 166, + 110, + 170, + 132, + 116, + 74, + 212, + 251, + 65, + 189, + 220, + 169, + 176, + 92, + 181, + 83, + 17, + 131, + 218, + 136, + 249, + 118, + 171, + 223, + 102, + 238, + 82, + 81, + 62, + 152, + 16, + 50, + 180, + 45, + 109, + 198, + 49, + 168, + 63, + 33, + 251, + 152, + 200, + 39, + 3, + 176, + 228, + 14, + 239, + 190, + 199, + 127, + 89, + 191, + 194, + 143, + 168, + 61, + 243, + 11, + 224, + 198, + 37, + 167, + 10, + 147, + 71, + 145, + 167, + 213, + 111, + 130, + 3, + 224, + 81, + 99, + 202, + 6, + 112, + 110, + 14, + 10, + 103, + 41, + 41, + 20, + 252, + 47, + 210, + 70, + 133, + 10, + 183, + 39, + 38, + 201, + 38, + 92, + 56, + 33, + 27, + 46, + 237, + 42, + 196, + 90, + 252, + 109, + 44, + 77, + 223, + 179, + 149, + 157, + 19, + 13, + 56, + 83, + 222, + 99, + 175, + 139, + 84, + 115, + 10, + 101, + 168, + 178, + 119, + 60, + 187, + 10, + 106, + 118, + 230, + 174, + 237, + 71, + 46, + 201, + 194, + 129, + 59, + 53, + 130, + 20, + 133, + 44, + 114, + 146, + 100, + 3, + 241, + 76, + 161, + 232, + 191, + 162, + 1, + 48, + 66, + 188, + 75, + 102, + 26, + 168, + 145, + 151, + 248, + 208, + 112, + 139, + 75, + 194, + 48, + 190, + 84, + 6, + 163, + 81, + 108, + 199, + 24, + 82, + 239, + 214, + 25, + 232, + 146, + 209, + 16, + 169, + 101, + 85, + 36, + 6, + 153, + 214, + 42, + 32, + 113, + 87, + 133, + 53, + 14, + 244, + 184, + 209, + 187, + 50, + 112, + 160, + 106, + 16, + 200, + 208, + 210, + 184, + 22, + 193, + 164, + 25, + 83, + 171, + 65, + 81, + 8, + 108, + 55, + 30, + 153, + 235, + 142, + 223, + 76, + 119, + 72, + 39, + 168, + 72, + 155, + 225, + 181, + 188, + 176, + 52, + 99, + 90, + 201, + 197, + 179, + 12, + 28, + 57, + 203, + 138, + 65, + 227, + 74, + 170, + 216, + 78, + 115, + 227, + 99, + 119, + 79, + 202, + 156, + 91, + 163, + 184, + 178, + 214, + 243, + 111, + 46, + 104, + 252, + 178, + 239, + 93, + 238, + 130, + 143, + 116, + 96, + 47, + 23, + 67, + 111, + 99, + 165, + 120, + 114, + 171, + 240, + 161, + 20, + 120, + 200, + 132, + 236, + 57, + 100, + 26, + 8, + 2, + 199, + 140, + 40, + 30, + 99, + 35, + 250, + 255, + 190, + 144, + 233, + 189, + 130, + 222, + 235, + 108, + 80, + 164, + 21, + 121, + 198, + 178, + 247, + 163, + 249, + 190, + 43, + 83, + 114, + 227, + 242, + 120, + 113, + 198, + 156, + 97, + 38, + 234, + 206, + 62, + 39, + 202, + 7, + 194, + 192, + 33, + 199, + 184, + 134, + 209, + 30, + 235, + 224, + 205, + 214, + 125, + 218, + 234, + 120, + 209, + 110, + 238, + 127, + 79, + 125, + 245, + 186, + 111, + 23, + 114, + 170, + 103, + 240, + 6, + 166, + 152, + 200, + 162, + 197, + 125, + 99, + 10, + 174, + 13, + 249, + 190, + 4, + 152, + 63, + 17, + 27, + 71, + 28, + 19, + 53, + 11, + 113, + 27, + 132, + 125, + 4, + 35, + 245, + 119, + 219, + 40, + 147, + 36, + 199, + 64, + 123, + 171, + 202, + 50, + 188, + 190, + 201, + 21, + 10, + 190, + 158, + 60, + 76, + 13, + 16, + 156, + 196, + 103, + 29, + 67, + 182, + 66, + 62, + 203, + 190, + 212, + 197, + 76, + 42, + 126, + 101, + 252, + 156, + 41, + 127, + 89, + 236, + 250, + 214, + 58, + 171, + 111, + 203, + 95, + 23, + 88, + 71, + 74, + 140, + 25, + 68, + 108, + 133, + 59, + 140, + 1, + 189, + 241, + 36, + 255, + 248, + 37, + 195, + 1, + 96, + 220, + 55, + 0, + 183, + 76, + 62, + 255, + 195, + 66, + 61, + 0, + 50, + 76, + 164, + 1, + 225, + 164, + 76, + 255, + 76, + 61, + 163, + 255, + 117, + 62, + 31, + 0, + 81, + 145, + 64, + 255, + 118, + 65, + 14, + 0, + 162, + 115, + 214, + 255, + 6, + 138, + 46, + 0, + 124, + 230, + 244, + 255, + 10, + 138, + 143, + 0, + 52, + 26, + 194, + 0, + 184, + 244, + 76, + 0, + 129, + 143, + 41, + 1, + 190, + 244, + 19, + 255, + 123, + 170, + 122, + 255, + 98, + 129, + 68, + 0, + 121, + 213, + 147, + 0, + 86, + 101, + 30, + 255, + 161, + 103, + 155, + 0, + 140, + 89, + 67, + 255, + 239, + 229, + 190, + 1, + 67, + 11, + 181, + 0, + 198, + 240, + 137, + 254, + 238, + 69, + 188, + 255, + 67, + 151, + 238, + 0, + 19, + 42, + 108, + 255, + 229, + 85, + 113, + 1, + 50, + 68, + 135, + 255, + 17, + 106, + 9, + 0, + 50, + 103, + 1, + 255, + 80, + 1, + 168, + 1, + 35, + 152, + 30, + 255, + 16, + 168, + 185, + 1, + 56, + 89, + 232, + 255, + 101, + 210, + 252, + 0, + 41, + 250, + 71, + 0, + 204, + 170, + 79, + 255, + 14, + 46, + 239, + 255, + 80, + 77, + 239, + 0, + 189, + 214, + 75, + 255, + 17, + 141, + 249, + 0, + 38, + 80, + 76, + 255, + 190, + 85, + 117, + 0, + 86, + 228, + 170, + 0, + 156, + 216, + 208, + 1, + 195, + 207, + 164, + 255, + 150, + 66, + 76, + 255, + 175, + 225, + 16, + 255, + 141, + 80, + 98, + 1, + 76, + 219, + 242, + 0, + 198, + 162, + 114, + 0, + 46, + 218, + 152, + 0, + 155, + 43, + 241, + 254, + 155, + 160, + 104, + 255, + 51, + 187, + 165, + 0, + 2, + 17, + 175, + 0, + 66, + 84, + 160, + 1, + 247, + 58, + 30, + 0, + 35, + 65, + 53, + 254, + 69, + 236, + 191, + 0, + 45, + 134, + 245, + 1, + 163, + 123, + 221, + 0, + 32, + 110, + 20, + 255, + 52, + 23, + 165, + 0, + 186, + 214, + 71, + 0, + 233, + 176, + 96, + 0, + 242, + 239, + 54, + 1, + 57, + 89, + 138, + 0, + 83, + 0, + 84, + 255, + 136, + 160, + 100, + 0, + 92, + 142, + 120, + 254, + 104, + 124, + 190, + 0, + 181, + 177, + 62, + 255, + 250, + 41, + 85, + 0, + 152, + 130, + 42, + 1, + 96, + 252, + 246, + 0, + 151, + 151, + 63, + 254, + 239, + 133, + 62, + 0, + 32, + 56, + 156, + 0, + 45, + 167, + 189, + 255, + 142, + 133, + 179, + 1, + 131, + 86, + 211, + 0, + 187, + 179, + 150, + 254, + 250, + 170, + 14, + 255, + 210, + 163, + 78, + 0, + 37, + 52, + 151, + 0, + 99, + 77, + 26, + 0, + 238, + 156, + 213, + 255, + 213, + 192, + 209, + 1, + 73, + 46, + 84, + 0, + 20, + 65, + 41, + 1, + 54, + 206, + 79, + 0, + 201, + 131, + 146, + 254, + 170, + 111, + 24, + 255, + 177, + 33, + 50, + 254, + 171, + 38, + 203, + 255, + 78, + 247, + 116, + 0, + 209, + 221, + 153, + 0, + 133, + 128, + 178, + 1, + 58, + 44, + 25, + 0, + 201, + 39, + 59, + 1, + 189, + 19, + 252, + 0, + 49, + 229, + 210, + 1, + 117, + 187, + 117, + 0, + 181, + 179, + 184, + 1, + 0, + 114, + 219, + 0, + 48, + 94, + 147, + 0, + 245, + 41, + 56, + 0, + 125, + 13, + 204, + 254, + 244, + 173, + 119, + 0, + 44, + 221, + 32, + 254, + 84, + 234, + 20, + 0, + 249, + 160, + 198, + 1, + 236, + 126, + 234, + 255, + 47, + 99, + 168, + 254, + 170, + 226, + 153, + 255, + 102, + 179, + 216, + 0, + 226, + 141, + 122, + 255, + 122, + 66, + 153, + 254, + 182, + 245, + 134, + 0, + 227, + 228, + 25, + 1, + 214, + 57, + 235, + 255, + 216, + 173, + 56, + 255, + 181, + 231, + 210, + 0, + 119, + 128, + 157, + 255, + 129, + 95, + 136, + 255, + 110, + 126, + 51, + 0, + 2, + 169, + 183, + 255, + 7, + 130, + 98, + 254, + 69, + 176, + 94, + 255, + 116, + 4, + 227, + 1, + 217, + 242, + 145, + 255, + 202, + 173, + 31, + 1, + 105, + 1, + 39, + 255, + 46, + 175, + 69, + 0, + 228, + 47, + 58, + 255, + 215, + 224, + 69, + 254, + 207, + 56, + 69, + 255, + 16, + 254, + 139, + 255, + 23, + 207, + 212, + 255, + 202, + 20, + 126, + 255, + 95, + 213, + 96, + 255, + 9, + 176, + 33, + 0, + 200, + 5, + 207, + 255, + 241, + 42, + 128, + 254, + 35, + 33, + 192, + 255, + 248, + 229, + 196, + 1, + 129, + 17, + 120, + 0, + 251, + 103, + 151, + 255, + 7, + 52, + 112, + 255, + 140, + 56, + 66, + 255, + 40, + 226, + 245, + 255, + 217, + 70, + 37, + 254, + 172, + 214, + 9, + 255, + 72, + 67, + 134, + 1, + 146, + 192, + 214, + 255, + 44, + 38, + 112, + 0, + 68, + 184, + 75, + 255, + 206, + 90, + 251, + 0, + 149, + 235, + 141, + 0, + 181, + 170, + 58, + 0, + 116, + 244, + 239, + 0, + 92, + 157, + 2, + 0, + 102, + 173, + 98, + 0, + 233, + 137, + 96, + 1, + 127, + 49, + 203, + 0, + 5, + 155, + 148, + 0, + 23, + 148, + 9, + 255, + 211, + 122, + 12, + 0, + 34, + 134, + 26, + 255, + 219, + 204, + 136, + 0, + 134, + 8, + 41, + 255, + 224, + 83, + 43, + 254, + 85, + 25, + 247, + 0, + 109, + 127, + 0, + 254, + 169, + 136, + 48, + 0, + 238, + 119, + 219, + 255, + 231, + 173, + 213, + 0, + 206, + 18, + 254, + 254, + 8, + 186, + 7, + 255, + 126, + 9, + 7, + 1, + 111, + 42, + 72, + 0, + 111, + 52, + 236, + 254, + 96, + 63, + 141, + 0, + 147, + 191, + 127, + 254, + 205, + 78, + 192, + 255, + 14, + 106, + 237, + 1, + 187, + 219, + 76, + 0, + 175, + 243, + 187, + 254, + 105, + 89, + 173, + 0, + 85, + 25, + 89, + 1, + 162, + 243, + 148, + 0, + 2, + 118, + 209, + 254, + 33, + 158, + 9, + 0, + 139, + 163, + 46, + 255, + 93, + 70, + 40, + 0, + 108, + 42, + 142, + 254, + 111, + 252, + 142, + 255, + 155, + 223, + 144, + 0, + 51, + 229, + 167, + 255, + 73, + 252, + 155, + 255, + 94, + 116, + 12, + 255, + 152, + 160, + 218, + 255, + 156, + 238, + 37, + 255, + 179, + 234, + 207, + 255, + 197, + 0, + 179, + 255, + 154, + 164, + 141, + 0, + 225, + 196, + 104, + 0, + 10, + 35, + 25, + 254, + 209, + 212, + 242, + 255, + 97, + 253, + 222, + 254, + 184, + 101, + 229, + 0, + 222, + 18, + 127, + 1, + 164, + 136, + 135, + 255, + 30, + 207, + 140, + 254, + 146, + 97, + 243, + 0, + 129, + 192, + 26, + 254, + 201, + 84, + 33, + 255, + 111, + 10, + 78, + 255, + 147, + 81, + 178, + 255, + 4, + 4, + 24, + 0, + 161, + 238, + 215, + 255, + 6, + 141, + 33, + 0, + 53, + 215, + 14, + 255, + 41, + 181, + 208, + 255, + 231, + 139, + 157, + 0, + 179, + 203, + 221, + 255, + 255, + 185, + 113, + 0, + 189, + 226, + 172, + 255, + 113, + 66, + 214, + 255, + 202, + 62, + 45, + 255, + 102, + 64, + 8, + 255, + 78, + 174, + 16, + 254, + 133, + 117, + 68, + 255, + 89, + 241, + 178, + 254, + 10, + 229, + 166, + 255, + 123, + 221, + 42, + 254, + 30, + 20, + 212, + 0, + 82, + 128, + 3, + 0, + 48, + 209, + 243, + 0, + 119, + 121, + 64, + 255, + 50, + 227, + 156, + 255, + 0, + 110, + 197, + 1, + 103, + 27, + 144, + 0, + 182, + 120, + 89, + 255, + 133, + 114, + 211, + 0, + 189, + 110, + 21, + 255, + 15, + 10, + 106, + 0, + 41, + 192, + 1, + 0, + 152, + 232, + 121, + 255, + 188, + 60, + 160, + 255, + 153, + 113, + 206, + 255, + 0, + 183, + 226, + 254, + 180, + 13, + 72, + 255, + 176, + 160, + 14, + 254, + 211, + 201, + 134, + 255, + 158, + 24, + 143, + 0, + 127, + 105, + 53, + 0, + 96, + 12, + 189, + 0, + 167, + 215, + 251, + 255, + 159, + 76, + 128, + 254, + 106, + 101, + 225, + 255, + 30, + 252, + 4, + 0, + 146, + 12, + 174, + 0, + 133, + 59, + 140, + 1, + 189, + 241, + 36, + 255, + 248, + 37, + 195, + 1, + 96, + 220, + 55, + 0, + 183, + 76, + 62, + 255, + 195, + 66, + 61, + 0, + 50, + 76, + 164, + 1, + 225, + 164, + 76, + 255, + 76, + 61, + 163, + 255, + 117, + 62, + 31, + 0, + 81, + 145, + 64, + 255, + 118, + 65, + 14, + 0, + 162, + 115, + 214, + 255, + 6, + 138, + 46, + 0, + 124, + 230, + 244, + 255, + 10, + 138, + 143, + 0, + 52, + 26, + 194, + 0, + 184, + 244, + 76, + 0, + 129, + 143, + 41, + 1, + 190, + 244, + 19, + 255, + 123, + 170, + 122, + 255, + 98, + 129, + 68, + 0, + 121, + 213, + 147, + 0, + 86, + 101, + 30, + 255, + 161, + 103, + 155, + 0, + 140, + 89, + 67, + 255, + 239, + 229, + 190, + 1, + 67, + 11, + 181, + 0, + 198, + 240, + 137, + 254, + 238, + 69, + 188, + 255, + 234, + 113, + 60, + 255, + 37, + 255, + 57, + 255, + 69, + 178, + 182, + 254, + 128, + 208, + 179, + 0, + 118, + 26, + 125, + 254, + 3, + 7, + 214, + 255, + 241, + 50, + 77, + 255, + 85, + 203, + 197, + 255, + 211, + 135, + 250, + 255, + 25, + 48, + 100, + 255, + 187, + 213, + 180, + 254, + 17, + 88, + 105, + 0, + 83, + 209, + 158, + 1, + 5, + 115, + 98, + 0, + 4, + 174, + 60, + 254, + 171, + 55, + 110, + 255, + 217, + 181, + 17, + 255, + 20, + 188, + 170, + 0, + 146, + 156, + 102, + 254, + 87, + 214, + 174, + 255, + 114, + 122, + 155, + 1, + 233, + 44, + 170, + 0, + 127, + 8, + 239, + 1, + 214, + 236, + 234, + 0, + 175, + 5, + 219, + 0, + 49, + 106, + 61, + 255, + 6, + 66, + 208, + 255, + 2, + 106, + 110, + 255, + 81, + 234, + 19, + 255, + 215, + 107, + 192, + 255, + 67, + 151, + 238, + 0, + 19, + 42, + 108, + 255, + 229, + 85, + 113, + 1, + 50, + 68, + 135, + 255, + 17, + 106, + 9, + 0, + 50, + 103, + 1, + 255, + 80, + 1, + 168, + 1, + 35, + 152, + 30, + 255, + 16, + 168, + 185, + 1, + 56, + 89, + 232, + 255, + 101, + 210, + 252, + 0, + 41, + 250, + 71, + 0, + 204, + 170, + 79, + 255, + 14, + 46, + 239, + 255, + 80, + 77, + 239, + 0, + 189, + 214, + 75, + 255, + 17, + 141, + 249, + 0, + 38, + 80, + 76, + 255, + 190, + 85, + 117, + 0, + 86, + 228, + 170, + 0, + 156, + 216, + 208, + 1, + 195, + 207, + 164, + 255, + 150, + 66, + 76, + 255, + 175, + 225, + 16, + 255, + 141, + 80, + 98, + 1, + 76, + 219, + 242, + 0, + 198, + 162, + 114, + 0, + 46, + 218, + 152, + 0, + 155, + 43, + 241, + 254, + 155, + 160, + 104, + 255, + 178, + 9, + 252, + 254, + 100, + 110, + 212, + 0, + 14, + 5, + 167, + 0, + 233, + 239, + 163, + 255, + 28, + 151, + 157, + 1, + 101, + 146, + 10, + 255, + 254, + 158, + 70, + 254, + 71, + 249, + 228, + 0, + 88, + 30, + 50, + 0, + 68, + 58, + 160, + 255, + 191, + 24, + 104, + 1, + 129, + 66, + 129, + 255, + 192, + 50, + 85, + 255, + 8, + 179, + 138, + 255, + 38, + 250, + 201, + 0, + 115, + 80, + 160, + 0, + 131, + 230, + 113, + 0, + 125, + 88, + 147, + 0, + 90, + 68, + 199, + 0, + 253, + 76, + 158, + 0, + 28, + 255, + 118, + 0, + 113, + 250, + 254, + 0, + 66, + 75, + 46, + 0, + 230, + 218, + 43, + 0, + 229, + 120, + 186, + 1, + 148, + 68, + 43, + 0, + 136, + 124, + 238, + 1, + 187, + 107, + 197, + 255, + 84, + 53, + 246, + 255, + 51, + 116, + 254, + 255, + 51, + 187, + 165, + 0, + 2, + 17, + 175, + 0, + 66, + 84, + 160, + 1, + 247, + 58, + 30, + 0, + 35, + 65, + 53, + 254, + 69, + 236, + 191, + 0, + 45, + 134, + 245, + 1, + 163, + 123, + 221, + 0, + 32, + 110, + 20, + 255, + 52, + 23, + 165, + 0, + 186, + 214, + 71, + 0, + 233, + 176, + 96, + 0, + 242, + 239, + 54, + 1, + 57, + 89, + 138, + 0, + 83, + 0, + 84, + 255, + 136, + 160, + 100, + 0, + 92, + 142, + 120, + 254, + 104, + 124, + 190, + 0, + 181, + 177, + 62, + 255, + 250, + 41, + 85, + 0, + 152, + 130, + 42, + 1, + 96, + 252, + 246, + 0, + 151, + 151, + 63, + 254, + 239, + 133, + 62, + 0, + 32, + 56, + 156, + 0, + 45, + 167, + 189, + 255, + 142, + 133, + 179, + 1, + 131, + 86, + 211, + 0, + 187, + 179, + 150, + 254, + 250, + 170, + 14, + 255, + 68, + 113, + 21, + 255, + 222, + 186, + 59, + 255, + 66, + 7, + 241, + 1, + 69, + 6, + 72, + 0, + 86, + 156, + 108, + 254, + 55, + 167, + 89, + 0, + 109, + 52, + 219, + 254, + 13, + 176, + 23, + 255, + 196, + 44, + 106, + 255, + 239, + 149, + 71, + 255, + 164, + 140, + 125, + 255, + 159, + 173, + 1, + 0, + 51, + 41, + 231, + 0, + 145, + 62, + 33, + 0, + 138, + 111, + 93, + 1, + 185, + 83, + 69, + 0, + 144, + 115, + 46, + 0, + 97, + 151, + 16, + 255, + 24, + 228, + 26, + 0, + 49, + 217, + 226, + 0, + 113, + 75, + 234, + 254, + 193, + 153, + 12, + 255, + 182, + 48, + 96, + 255, + 14, + 13, + 26, + 0, + 128, + 195, + 249, + 254, + 69, + 193, + 59, + 0, + 132, + 37, + 81, + 254, + 125, + 106, + 60, + 0, + 214, + 240, + 169, + 1, + 164, + 227, + 66, + 0, + 210, + 163, + 78, + 0, + 37, + 52, + 151, + 0, + 99, + 77, + 26, + 0, + 238, + 156, + 213, + 255, + 213, + 192, + 209, + 1, + 73, + 46, + 84, + 0, + 20, + 65, + 41, + 1, + 54, + 206, + 79, + 0, + 201, + 131, + 146, + 254, + 170, + 111, + 24, + 255, + 177, + 33, + 50, + 254, + 171, + 38, + 203, + 255, + 78, + 247, + 116, + 0, + 209, + 221, + 153, + 0, + 133, + 128, + 178, + 1, + 58, + 44, + 25, + 0, + 201, + 39, + 59, + 1, + 189, + 19, + 252, + 0, + 49, + 229, + 210, + 1, + 117, + 187, + 117, + 0, + 181, + 179, + 184, + 1, + 0, + 114, + 219, + 0, + 48, + 94, + 147, + 0, + 245, + 41, + 56, + 0, + 125, + 13, + 204, + 254, + 244, + 173, + 119, + 0, + 44, + 221, + 32, + 254, + 84, + 234, + 20, + 0, + 249, + 160, + 198, + 1, + 236, + 126, + 234, + 255, + 143, + 62, + 221, + 0, + 129, + 89, + 214, + 255, + 55, + 139, + 5, + 254, + 68, + 20, + 191, + 255, + 14, + 204, + 178, + 1, + 35, + 195, + 217, + 0, + 47, + 51, + 206, + 1, + 38, + 246, + 165, + 0, + 206, + 27, + 6, + 254, + 158, + 87, + 36, + 0, + 217, + 52, + 146, + 255, + 125, + 123, + 215, + 255, + 85, + 60, + 31, + 255, + 171, + 13, + 7, + 0, + 218, + 245, + 88, + 254, + 252, + 35, + 60, + 0, + 55, + 214, + 160, + 255, + 133, + 101, + 56, + 0, + 224, + 32, + 19, + 254, + 147, + 64, + 234, + 0, + 26, + 145, + 162, + 1, + 114, + 118, + 125, + 0, + 248, + 252, + 250, + 0, + 101, + 94, + 196, + 255, + 198, + 141, + 226, + 254, + 51, + 42, + 182, + 0, + 135, + 12, + 9, + 254, + 109, + 172, + 210, + 255, + 197, + 236, + 194, + 1, + 241, + 65, + 154, + 0, + 48, + 156, + 47, + 255, + 153, + 67, + 55, + 255, + 218, + 165, + 34, + 254, + 74, + 180, + 179, + 0, + 218, + 66, + 71, + 1, + 88, + 122, + 99, + 0, + 212, + 181, + 219, + 255, + 92, + 42, + 231, + 255, + 239, + 0, + 154, + 0, + 245, + 77, + 183, + 255, + 94, + 81, + 170, + 1, + 18, + 213, + 216, + 0, + 171, + 93, + 71, + 0, + 52, + 94, + 248, + 0, + 18, + 151, + 161, + 254, + 197, + 209, + 66, + 255, + 174, + 244, + 15, + 254, + 162, + 48, + 183, + 0, + 49, + 61, + 240, + 254, + 182, + 93, + 195, + 0, + 199, + 228, + 6, + 1, + 200, + 5, + 17, + 255, + 137, + 45, + 237, + 255, + 108, + 148, + 4, + 0, + 90, + 79, + 237, + 255, + 39, + 63, + 77, + 255, + 53, + 82, + 207, + 1, + 142, + 22, + 118, + 255, + 101, + 232, + 18, + 1, + 92, + 26, + 67, + 0, + 5, + 200, + 88, + 255, + 33, + 168, + 138, + 255, + 149, + 225, + 72, + 0, + 2, + 209, + 27, + 255, + 44, + 245, + 168, + 1, + 220, + 237, + 17, + 255, + 30, + 211, + 105, + 254, + 141, + 238, + 221, + 0, + 128, + 80, + 245, + 254, + 111, + 254, + 14, + 0, + 222, + 95, + 190, + 1, + 223, + 9, + 241, + 0, + 146, + 76, + 212, + 255, + 108, + 205, + 104, + 255, + 63, + 117, + 153, + 0, + 144, + 69, + 48, + 0, + 35, + 228, + 111, + 0, + 192, + 33, + 193, + 255, + 112, + 214, + 190, + 254, + 115, + 152, + 151, + 0, + 23, + 102, + 88, + 0, + 51, + 74, + 248, + 0, + 226, + 199, + 143, + 254, + 204, + 162, + 101, + 255, + 208, + 97, + 189, + 1, + 245, + 104, + 18, + 0, + 230, + 246, + 30, + 255, + 23, + 148, + 69, + 0, + 110, + 88, + 52, + 254, + 226, + 181, + 89, + 255, + 208, + 47, + 90, + 254, + 114, + 161, + 80, + 255, + 33, + 116, + 248, + 0, + 179, + 152, + 87, + 255, + 69, + 144, + 177, + 1, + 88, + 238, + 26, + 255, + 58, + 32, + 113, + 1, + 1, + 77, + 69, + 0, + 59, + 121, + 52, + 255, + 152, + 238, + 83, + 0, + 52, + 8, + 193, + 0, + 231, + 39, + 233, + 255, + 199, + 34, + 138, + 0, + 222, + 68, + 173, + 0, + 91, + 57, + 242, + 254, + 220, + 210, + 127, + 255, + 192, + 7, + 246, + 254, + 151, + 35, + 187, + 0, + 195, + 236, + 165, + 0, + 111, + 93, + 206, + 0, + 212, + 247, + 133, + 1, + 154, + 133, + 209, + 255, + 155, + 231, + 10, + 0, + 64, + 78, + 38, + 0, + 122, + 249, + 100, + 1, + 30, + 19, + 97, + 255, + 62, + 91, + 249, + 1, + 248, + 133, + 77, + 0, + 197, + 63, + 168, + 254, + 116, + 10, + 82, + 0, + 184, + 236, + 113, + 254, + 212, + 203, + 194, + 255, + 61, + 100, + 252, + 254, + 36, + 5, + 202, + 255, + 119, + 91, + 153, + 255, + 129, + 79, + 29, + 0, + 103, + 103, + 171, + 254, + 237, + 215, + 111, + 255, + 216, + 53, + 69, + 0, + 239, + 240, + 23, + 0, + 194, + 149, + 221, + 255, + 38, + 225, + 222, + 0, + 232, + 255, + 180, + 254, + 118, + 82, + 133, + 255, + 57, + 209, + 177, + 1, + 139, + 232, + 133, + 0, + 158, + 176, + 46, + 254, + 194, + 115, + 46, + 0, + 88, + 247, + 229, + 1, + 28, + 103, + 191, + 0, + 221, + 222, + 175, + 254, + 149, + 235, + 44, + 0, + 151, + 228, + 25, + 254, + 218, + 105, + 103, + 0, + 142, + 85, + 210, + 0, + 149, + 129, + 190, + 255, + 213, + 65, + 94, + 254, + 117, + 134, + 224, + 255, + 82, + 198, + 117, + 0, + 157, + 221, + 220, + 0, + 163, + 101, + 36, + 0, + 197, + 114, + 37, + 0, + 104, + 172, + 166, + 254, + 11, + 182, + 0, + 0, + 81, + 72, + 188, + 255, + 97, + 188, + 16, + 255, + 69, + 6, + 10, + 0, + 199, + 147, + 145, + 255, + 8, + 9, + 115, + 1, + 65, + 214, + 175, + 255, + 217, + 173, + 209, + 0, + 80, + 127, + 166, + 0, + 247, + 229, + 4, + 254, + 167, + 183, + 124, + 255, + 90, + 28, + 204, + 254, + 175, + 59, + 240, + 255, + 11, + 41, + 248, + 1, + 108, + 40, + 51, + 255, + 144, + 177, + 195, + 254, + 150, + 250, + 126, + 0, + 138, + 91, + 65, + 1, + 120, + 60, + 222, + 255, + 245, + 193, + 239, + 0, + 29, + 214, + 189, + 255, + 128, + 2, + 25, + 0, + 80, + 154, + 162, + 0, + 77, + 220, + 107, + 1, + 234, + 205, + 74, + 255, + 54, + 166, + 103, + 255, + 116, + 72, + 9, + 0, + 228, + 94, + 47, + 255, + 30, + 200, + 25, + 255, + 35, + 214, + 89, + 255, + 61, + 176, + 140, + 255, + 83, + 226, + 163, + 255, + 75, + 130, + 172, + 0, + 128, + 38, + 17, + 0, + 95, + 137, + 152, + 255, + 215, + 124, + 159, + 1, + 79, + 93, + 0, + 0, + 148, + 82, + 157, + 254, + 195, + 130, + 251, + 255, + 40, + 202, + 76, + 255, + 251, + 126, + 224, + 0, + 157, + 99, + 62, + 254, + 207, + 7, + 225, + 255, + 96, + 68, + 195, + 0, + 140, + 186, + 157, + 255, + 131, + 19, + 231, + 255, + 42, + 128, + 254, + 0, + 52, + 219, + 61, + 254, + 102, + 203, + 72, + 0, + 141, + 7, + 11, + 255, + 186, + 164, + 213, + 0, + 31, + 122, + 119, + 0, + 133, + 242, + 145, + 0, + 208, + 252, + 232, + 255, + 91, + 213, + 182, + 255, + 143, + 4, + 250, + 254, + 249, + 215, + 74, + 0, + 165, + 30, + 111, + 1, + 171, + 9, + 223, + 0, + 229, + 123, + 34, + 1, + 92, + 130, + 26, + 255, + 77, + 155, + 45, + 1, + 195, + 139, + 28, + 255, + 59, + 224, + 78, + 0, + 136, + 17, + 247, + 0, + 108, + 121, + 32, + 0, + 79, + 250, + 189, + 255, + 96, + 227, + 252, + 254, + 38, + 241, + 62, + 0, + 62, + 174, + 125, + 255, + 155, + 111, + 93, + 255, + 10, + 230, + 206, + 1, + 97, + 197, + 40, + 255, + 0, + 49, + 57, + 254, + 65, + 250, + 13, + 0, + 18, + 251, + 150, + 255, + 220, + 109, + 210, + 255, + 5, + 174, + 166, + 254, + 44, + 129, + 189, + 0, + 235, + 35, + 147, + 255, + 37, + 247, + 141, + 255, + 72, + 141, + 4, + 255, + 103, + 107, + 255, + 0, + 247, + 90, + 4, + 0, + 53, + 44, + 42, + 0, + 2, + 30, + 240, + 0, + 4, + 59, + 63, + 0, + 88, + 78, + 36, + 0, + 113, + 167, + 180, + 0, + 190, + 71, + 193, + 255, + 199, + 158, + 164, + 255, + 58, + 8, + 172, + 0, + 77, + 33, + 12, + 0, + 65, + 63, + 3, + 0, + 153, + 77, + 33, + 255, + 172, + 254, + 102, + 1, + 228, + 221, + 4, + 255, + 87, + 30, + 254, + 1, + 146, + 41, + 86, + 255, + 138, + 204, + 239, + 254, + 108, + 141, + 17, + 255, + 187, + 242, + 135, + 0, + 210, + 208, + 127, + 0, + 68, + 45, + 14, + 254, + 73, + 96, + 62, + 0, + 81, + 60, + 24, + 255, + 170, + 6, + 36, + 255, + 3, + 249, + 26, + 0, + 35, + 213, + 109, + 0, + 22, + 129, + 54, + 255, + 21, + 35, + 225, + 255, + 234, + 61, + 56, + 255, + 58, + 217, + 6, + 0, + 143, + 124, + 88, + 0, + 236, + 126, + 66, + 0, + 209, + 38, + 183, + 255, + 34, + 238, + 6, + 255, + 174, + 145, + 102, + 0, + 95, + 22, + 211, + 0, + 196, + 15, + 153, + 254, + 46, + 84, + 232, + 255, + 117, + 34, + 146, + 1, + 231, + 250, + 74, + 255, + 27, + 134, + 100, + 1, + 92, + 187, + 195, + 255, + 170, + 198, + 112, + 0, + 120, + 28, + 42, + 0, + 209, + 70, + 67, + 0, + 29, + 81, + 31, + 0, + 29, + 168, + 100, + 1, + 169, + 173, + 160, + 0, + 107, + 35, + 117, + 0, + 62, + 96, + 59, + 255, + 81, + 12, + 69, + 1, + 135, + 239, + 190, + 255, + 220, + 252, + 18, + 0, + 163, + 220, + 58, + 255, + 137, + 137, + 188, + 255, + 83, + 102, + 109, + 0, + 96, + 6, + 76, + 0, + 234, + 222, + 210, + 255, + 185, + 174, + 205, + 1, + 60, + 158, + 213, + 255, + 13, + 241, + 214, + 0, + 172, + 129, + 140, + 0, + 93, + 104, + 242, + 0, + 192, + 156, + 251, + 0, + 43, + 117, + 30, + 0, + 225, + 81, + 158, + 0, + 127, + 232, + 218, + 0, + 226, + 28, + 203, + 0, + 233, + 27, + 151, + 255, + 117, + 43, + 5, + 255, + 242, + 14, + 47, + 255, + 33, + 20, + 6, + 0, + 137, + 251, + 44, + 254, + 27, + 31, + 245, + 255, + 183, + 214, + 125, + 254, + 40, + 121, + 149, + 0, + 186, + 158, + 213, + 255, + 89, + 8, + 227, + 0, + 69, + 88, + 0, + 254, + 203, + 135, + 225, + 0, + 201, + 174, + 203, + 0, + 147, + 71, + 184, + 0, + 18, + 121, + 41, + 254, + 94, + 5, + 78, + 0, + 224, + 214, + 240, + 254, + 36, + 5, + 180, + 0, + 251, + 135, + 231, + 1, + 163, + 138, + 212, + 0, + 210, + 249, + 116, + 254, + 88, + 129, + 187, + 0, + 19, + 8, + 49, + 254, + 62, + 14, + 144, + 255, + 159, + 76, + 211, + 0, + 214, + 51, + 82, + 0, + 109, + 117, + 228, + 254, + 103, + 223, + 203, + 255, + 75, + 252, + 15, + 1, + 154, + 71, + 220, + 255, + 23, + 13, + 91, + 1, + 141, + 168, + 96, + 255, + 181, + 182, + 133, + 0, + 250, + 51, + 55, + 0, + 234, + 234, + 212, + 254, + 175, + 63, + 158, + 0, + 39, + 240, + 52, + 1, + 158, + 189, + 36, + 255, + 213, + 40, + 85, + 1, + 32, + 180, + 247, + 255, + 19, + 102, + 26, + 1, + 84, + 24, + 97, + 255, + 69, + 21, + 222, + 0, + 148, + 139, + 122, + 255, + 220, + 213, + 235, + 1, + 232, + 203, + 255, + 0, + 121, + 57, + 147, + 0, + 227, + 7, + 154, + 0, + 53, + 22, + 147, + 1, + 72, + 1, + 225, + 0, + 82, + 134, + 48, + 254, + 83, + 60, + 157, + 255, + 145, + 72, + 169, + 0, + 34, + 103, + 239, + 0, + 198, + 233, + 47, + 0, + 116, + 19, + 4, + 255, + 184, + 106, + 9, + 255, + 183, + 129, + 83, + 0, + 36, + 176, + 230, + 1, + 34, + 103, + 72, + 0, + 219, + 162, + 134, + 0, + 245, + 42, + 158, + 0, + 32, + 149, + 96, + 254, + 165, + 44, + 144, + 0, + 202, + 239, + 72, + 254, + 215, + 150, + 5, + 0, + 42, + 66, + 36, + 1, + 132, + 215, + 175, + 0, + 86, + 174, + 86, + 255, + 26, + 197, + 156, + 255, + 49, + 232, + 135, + 254, + 103, + 182, + 82, + 0, + 253, + 128, + 176, + 1, + 153, + 178, + 122, + 0, + 245, + 250, + 10, + 0, + 236, + 24, + 178, + 0, + 137, + 106, + 132, + 0, + 40, + 29, + 41, + 0, + 50, + 30, + 152, + 255, + 124, + 105, + 38, + 0, + 230, + 191, + 75, + 0, + 143, + 43, + 170, + 0, + 44, + 131, + 20, + 255, + 44, + 13, + 23, + 255, + 237, + 255, + 155, + 1, + 159, + 109, + 100, + 255, + 112, + 181, + 24, + 255, + 104, + 220, + 108, + 0, + 55, + 211, + 131, + 0, + 99, + 12, + 213, + 255, + 152, + 151, + 145, + 255, + 238, + 5, + 159, + 0, + 97, + 155, + 8, + 0, + 33, + 108, + 81, + 0, + 1, + 3, + 103, + 0, + 62, + 109, + 34, + 255, + 250, + 155, + 180, + 0, + 32, + 71, + 195, + 255, + 38, + 70, + 145, + 1, + 159, + 95, + 245, + 0, + 69, + 229, + 101, + 1, + 136, + 28, + 240, + 0, + 79, + 224, + 25, + 0, + 78, + 110, + 121, + 255, + 248, + 168, + 124, + 0, + 187, + 128, + 247, + 0, + 2, + 147, + 235, + 254, + 79, + 11, + 132, + 0, + 70, + 58, + 12, + 1, + 181, + 8, + 163, + 255, + 79, + 137, + 133, + 255, + 37, + 170, + 11, + 255, + 141, + 243, + 85, + 255, + 176, + 231, + 215, + 255, + 204, + 150, + 164, + 255, + 239, + 215, + 39, + 255, + 46, + 87, + 156, + 254, + 8, + 163, + 88, + 255, + 172, + 34, + 232, + 0, + 66, + 44, + 102, + 255, + 27, + 54, + 41, + 254, + 236, + 99, + 87, + 255, + 41, + 123, + 169, + 1, + 52, + 114, + 43, + 0, + 117, + 134, + 40, + 0, + 155, + 134, + 26, + 0, + 231, + 207, + 91, + 254, + 35, + 132, + 38, + 255, + 19, + 102, + 125, + 254, + 36, + 227, + 133, + 255, + 118, + 3, + 113, + 255, + 29, + 13, + 124, + 0, + 152, + 96, + 74, + 1, + 88, + 146, + 206, + 255, + 167, + 191, + 220, + 254, + 162, + 18, + 88, + 255, + 182, + 100, + 23, + 0, + 31, + 117, + 52, + 0, + 81, + 46, + 106, + 1, + 12, + 2, + 7, + 0, + 69, + 80, + 201, + 1, + 209, + 246, + 172, + 0, + 12, + 48, + 141, + 1, + 224, + 211, + 88, + 0, + 116, + 226, + 159, + 0, + 122, + 98, + 130, + 0, + 65, + 236, + 234, + 1, + 225, + 226, + 9, + 255, + 207, + 226, + 123, + 1, + 89, + 214, + 59, + 0, + 112, + 135, + 88, + 1, + 90, + 244, + 203, + 255, + 49, + 11, + 38, + 1, + 129, + 108, + 186, + 0, + 89, + 112, + 15, + 1, + 101, + 46, + 204, + 255, + 127, + 204, + 45, + 254, + 79, + 255, + 221, + 255, + 51, + 73, + 18, + 255, + 127, + 42, + 101, + 255, + 241, + 21, + 202, + 0, + 160, + 227, + 7, + 0, + 105, + 50, + 236, + 0, + 79, + 52, + 197, + 255, + 104, + 202, + 208, + 1, + 180, + 15, + 16, + 0, + 101, + 197, + 78, + 255, + 98, + 77, + 203, + 0, + 41, + 185, + 241, + 1, + 35, + 193, + 124, + 0, + 35, + 155, + 23, + 255, + 207, + 53, + 192, + 0, + 11, + 125, + 163, + 1, + 249, + 158, + 185, + 255, + 4, + 131, + 48, + 0, + 21, + 93, + 111, + 255, + 61, + 121, + 231, + 1, + 69, + 200, + 36, + 255, + 185, + 48, + 185, + 255, + 111, + 238, + 21, + 255, + 39, + 50, + 25, + 255, + 99, + 215, + 163, + 255, + 87, + 212, + 30, + 255, + 164, + 147, + 5, + 255, + 128, + 6, + 35, + 1, + 108, + 223, + 110, + 255, + 194, + 76, + 178, + 0, + 74, + 101, + 180, + 0, + 243, + 47, + 48, + 0, + 174, + 25, + 43, + 255, + 82, + 173, + 253, + 1, + 54, + 114, + 192, + 255, + 40, + 55, + 91, + 0, + 215, + 108, + 176, + 255, + 11, + 56, + 7, + 0, + 224, + 233, + 76, + 0, + 209, + 98, + 202, + 254, + 242, + 25, + 125, + 0, + 44, + 193, + 93, + 254, + 203, + 8, + 177, + 0, + 135, + 176, + 19, + 0, + 112, + 71, + 213, + 255, + 206, + 59, + 176, + 1, + 4, + 67, + 26, + 0, + 14, + 143, + 213, + 254, + 42, + 55, + 208, + 255, + 60, + 67, + 120, + 0, + 193, + 21, + 163, + 0, + 99, + 164, + 115, + 0, + 10, + 20, + 118, + 0, + 156, + 212, + 222, + 254, + 160, + 7, + 217, + 255, + 114, + 245, + 76, + 1, + 117, + 59, + 123, + 0, + 176, + 194, + 86, + 254, + 213, + 15, + 176, + 0, + 78, + 206, + 207, + 254, + 213, + 129, + 59, + 0, + 233, + 251, + 22, + 1, + 96, + 55, + 152, + 255, + 236, + 255, + 15, + 255, + 197, + 89, + 84, + 255, + 93, + 149, + 133, + 0, + 174, + 160, + 113, + 0, + 234, + 99, + 169, + 255, + 152, + 116, + 88, + 0, + 144, + 164, + 83, + 255, + 95, + 29, + 198, + 255, + 34, + 47, + 15, + 255, + 99, + 120, + 134, + 255, + 5, + 236, + 193, + 0, + 249, + 247, + 126, + 255, + 147, + 187, + 30, + 0, + 50, + 230, + 117, + 255, + 108, + 217, + 219, + 255, + 163, + 81, + 166, + 255, + 72, + 25, + 169, + 254, + 155, + 121, + 79, + 255, + 28, + 155, + 89, + 254, + 7, + 126, + 17, + 0, + 147, + 65, + 33, + 1, + 47, + 234, + 253, + 0, + 26, + 51, + 18, + 0, + 105, + 83, + 199, + 255, + 163, + 196, + 230, + 0, + 113, + 248, + 164, + 0, + 226, + 254, + 218, + 0, + 189, + 209, + 203, + 255, + 164, + 247, + 222, + 254, + 255, + 35, + 165, + 0, + 4, + 188, + 243, + 1, + 127, + 179, + 71, + 0, + 37, + 237, + 254, + 255, + 100, + 186, + 240, + 0, + 5, + 57, + 71, + 254, + 103, + 72, + 73, + 255, + 244, + 18, + 81, + 254, + 229, + 210, + 132, + 255, + 238, + 6, + 180, + 255, + 11, + 229, + 174, + 255, + 227, + 221, + 192, + 1, + 17, + 49, + 28, + 0, + 163, + 215, + 196, + 254, + 9, + 118, + 4, + 255, + 51, + 240, + 71, + 0, + 113, + 129, + 109, + 255, + 76, + 240, + 231, + 0, + 188, + 177, + 127, + 0, + 125, + 71, + 44, + 1, + 26, + 175, + 243, + 0, + 94, + 169, + 25, + 254, + 27, + 230, + 29, + 0, + 15, + 139, + 119, + 1, + 168, + 170, + 186, + 255, + 172, + 197, + 76, + 255, + 252, + 75, + 188, + 0, + 137, + 124, + 196, + 0, + 72, + 22, + 96, + 255, + 45, + 151, + 249, + 1, + 220, + 145, + 100, + 0, + 64, + 192, + 159, + 255, + 120, + 239, + 226, + 0, + 129, + 178, + 146, + 0, + 0, + 192, + 125, + 0, + 235, + 138, + 234, + 0, + 183, + 157, + 146, + 0, + 83, + 199, + 192, + 255, + 184, + 172, + 72, + 255, + 73, + 225, + 128, + 0, + 77, + 6, + 250, + 255, + 186, + 65, + 67, + 0, + 104, + 246, + 207, + 0, + 188, + 32, + 138, + 255, + 218, + 24, + 242, + 0, + 67, + 138, + 81, + 254, + 237, + 129, + 121, + 255, + 20, + 207, + 150, + 1, + 41, + 199, + 16, + 255, + 6, + 20, + 128, + 0, + 159, + 118, + 5, + 0, + 181, + 16, + 143, + 255, + 220, + 38, + 15, + 0, + 23, + 64, + 147, + 254, + 73, + 26, + 13, + 0, + 87, + 228, + 57, + 1, + 204, + 124, + 128, + 0, + 43, + 24, + 223, + 0, + 219, + 99, + 199, + 0, + 22, + 75, + 20, + 255, + 19, + 27, + 126, + 0, + 157, + 62, + 215, + 0, + 110, + 29, + 230, + 0, + 179, + 167, + 255, + 1, + 54, + 252, + 190, + 0, + 221, + 204, + 182, + 254, + 179, + 158, + 65, + 255, + 81, + 157, + 3, + 0, + 194, + 218, + 159, + 0, + 170, + 223, + 0, + 0, + 224, + 11, + 32, + 255, + 38, + 197, + 98, + 0, + 168, + 164, + 37, + 0, + 23, + 88, + 7, + 1, + 164, + 186, + 110, + 0, + 96, + 36, + 134, + 0, + 234, + 242, + 229, + 0, + 250, + 121, + 19, + 0, + 242, + 254, + 112, + 255, + 3, + 47, + 94, + 1, + 9, + 239, + 6, + 255, + 81, + 134, + 153, + 254, + 214, + 253, + 168, + 255, + 67, + 124, + 224, + 0, + 245, + 95, + 74, + 0, + 28, + 30, + 44, + 254, + 1, + 109, + 220, + 255, + 178, + 89, + 89, + 0, + 252, + 36, + 76, + 0, + 24, + 198, + 46, + 255, + 76, + 77, + 111, + 0, + 134, + 234, + 136, + 255, + 39, + 94, + 29, + 0, + 185, + 72, + 234, + 255, + 70, + 68, + 135, + 255, + 231, + 102, + 7, + 254, + 77, + 231, + 140, + 0, + 167, + 47, + 58, + 1, + 148, + 97, + 118, + 255, + 16, + 27, + 225, + 1, + 166, + 206, + 143, + 255, + 110, + 178, + 214, + 255, + 180, + 131, + 162, + 0, + 143, + 141, + 225, + 1, + 13, + 218, + 78, + 255, + 114, + 153, + 33, + 1, + 98, + 104, + 204, + 0, + 175, + 114, + 117, + 1, + 167, + 206, + 75, + 0, + 202, + 196, + 83, + 1, + 58, + 64, + 67, + 0, + 138, + 47, + 111, + 1, + 196, + 247, + 128, + 255, + 137, + 224, + 224, + 254, + 158, + 112, + 207, + 0, + 154, + 100, + 255, + 1, + 134, + 37, + 107, + 0, + 198, + 128, + 79, + 255, + 127, + 209, + 155, + 255, + 163, + 254, + 185, + 254, + 60, + 14, + 243, + 0, + 31, + 219, + 112, + 254, + 29, + 217, + 65, + 0, + 200, + 13, + 116, + 254, + 123, + 60, + 196, + 255, + 224, + 59, + 184, + 254, + 242, + 89, + 196, + 0, + 123, + 16, + 75, + 254, + 149, + 16, + 206, + 0, + 69, + 254, + 48, + 1, + 231, + 116, + 223, + 255, + 209, + 160, + 65, + 1, + 200, + 80, + 98, + 0, + 37, + 194, + 184, + 254, + 148, + 63, + 34, + 0, + 139, + 240, + 65, + 255, + 217, + 144, + 132, + 255, + 56, + 38, + 45, + 254, + 199, + 120, + 210, + 0, + 108, + 177, + 166, + 255, + 160, + 222, + 4, + 0, + 220, + 126, + 119, + 254, + 165, + 107, + 160, + 255, + 82, + 220, + 248, + 1, + 241, + 175, + 136, + 0, + 144, + 141, + 23, + 255, + 169, + 138, + 84, + 0, + 160, + 137, + 78, + 255, + 226, + 118, + 80, + 255, + 52, + 27, + 132, + 255, + 63, + 96, + 139, + 255, + 152, + 250, + 39, + 0, + 188, + 155, + 15, + 0, + 232, + 51, + 150, + 254, + 40, + 15, + 232, + 255, + 240, + 229, + 9, + 255, + 137, + 175, + 27, + 255, + 75, + 73, + 97, + 1, + 218, + 212, + 11, + 0, + 135, + 5, + 162, + 1, + 107, + 185, + 213, + 0, + 2, + 249, + 107, + 255, + 40, + 242, + 70, + 0, + 219, + 200, + 25, + 0, + 25, + 157, + 13, + 0, + 67, + 82, + 80, + 255, + 196, + 249, + 23, + 255, + 145, + 20, + 149, + 0, + 50, + 72, + 146, + 0, + 94, + 76, + 148, + 1, + 24, + 251, + 65, + 0, + 31, + 192, + 23, + 0, + 184, + 212, + 201, + 255, + 123, + 233, + 162, + 1, + 247, + 173, + 72, + 0, + 162, + 87, + 219, + 254, + 126, + 134, + 89, + 0, + 159, + 11, + 12, + 254, + 166, + 105, + 29, + 0, + 73, + 27, + 228, + 1, + 113, + 120, + 183, + 255, + 66, + 163, + 109, + 1, + 212, + 143, + 11, + 255, + 159, + 231, + 168, + 1, + 255, + 128, + 90, + 0, + 57, + 14, + 58, + 254, + 89, + 52, + 10, + 255, + 253, + 8, + 163, + 1, + 0, + 145, + 210, + 255, + 10, + 129, + 85, + 1, + 46, + 181, + 27, + 0, + 103, + 136, + 160, + 254, + 126, + 188, + 209, + 255, + 34, + 35, + 111, + 0, + 215, + 219, + 24, + 255, + 212, + 11, + 214, + 254, + 101, + 5, + 118, + 0, + 232, + 197, + 133, + 255, + 223, + 167, + 109, + 255, + 237, + 80, + 86, + 255, + 70, + 139, + 94, + 0, + 158, + 193, + 191, + 1, + 155, + 15, + 51, + 255, + 15, + 190, + 115, + 0, + 78, + 135, + 207, + 255, + 249, + 10, + 27, + 1, + 181, + 125, + 233, + 0, + 95, + 172, + 13, + 254, + 170, + 213, + 161, + 255, + 39, + 236, + 138, + 255, + 95, + 93, + 87, + 255, + 190, + 128, + 95, + 0, + 125, + 15, + 206, + 0, + 166, + 150, + 159, + 0, + 227, + 15, + 158, + 255, + 206, + 158, + 120, + 255, + 42, + 141, + 128, + 0, + 101, + 178, + 120, + 1, + 156, + 109, + 131, + 0, + 218, + 14, + 44, + 254, + 247, + 168, + 206, + 255, + 212, + 112, + 28, + 0, + 112, + 17, + 228, + 255, + 90, + 16, + 37, + 1, + 197, + 222, + 108, + 0, + 254, + 207, + 83, + 255, + 9, + 90, + 243, + 255, + 243, + 244, + 172, + 0, + 26, + 88, + 115, + 255, + 205, + 116, + 122, + 0, + 191, + 230, + 193, + 0, + 180, + 100, + 11, + 1, + 217, + 37, + 96, + 255, + 154, + 78, + 156, + 0, + 235, + 234, + 31, + 255, + 206, + 178, + 178, + 255, + 149, + 192, + 251, + 0, + 182, + 250, + 135, + 0, + 246, + 22, + 105, + 0, + 124, + 193, + 109, + 255, + 2, + 210, + 149, + 255, + 169, + 17, + 170, + 0, + 0, + 96, + 110, + 255, + 117, + 9, + 8, + 1, + 50, + 123, + 40, + 255, + 193, + 189, + 99, + 0, + 34, + 227, + 160, + 0, + 48, + 80, + 70, + 254, + 211, + 51, + 236, + 0, + 45, + 122, + 245, + 254, + 44, + 174, + 8, + 0, + 173, + 37, + 233, + 255, + 158, + 65, + 171, + 0, + 122, + 69, + 215, + 255, + 90, + 80, + 2, + 255, + 131, + 106, + 96, + 254, + 227, + 114, + 135, + 0, + 205, + 49, + 119, + 254, + 176, + 62, + 64, + 255, + 82, + 51, + 17, + 255, + 241, + 20, + 243, + 255, + 130, + 13, + 8, + 254, + 128, + 217, + 243, + 255, + 162, + 27, + 1, + 254, + 90, + 118, + 241, + 0, + 246, + 198, + 246, + 255, + 55, + 16, + 118, + 255, + 200, + 159, + 157, + 0, + 163, + 17, + 1, + 0, + 140, + 107, + 121, + 0, + 85, + 161, + 118, + 255, + 38, + 0, + 149, + 0, + 156, + 47, + 238, + 0, + 9, + 166, + 166, + 1, + 75, + 98, + 181, + 255, + 50, + 74, + 25, + 0, + 66, + 15, + 47, + 0, + 139, + 225, + 159, + 0, + 76, + 3, + 142, + 255, + 14, + 238, + 184, + 0, + 11, + 207, + 53, + 255, + 183, + 192, + 186, + 1, + 171, + 32, + 174, + 255, + 191, + 76, + 221, + 1, + 247, + 170, + 219, + 0, + 25, + 172, + 50, + 254, + 217, + 9, + 233, + 0, + 203, + 126, + 68, + 255, + 183, + 92, + 48, + 0, + 127, + 167, + 183, + 1, + 65, + 49, + 254, + 0, + 16, + 63, + 127, + 1, + 254, + 21, + 170, + 255, + 59, + 224, + 127, + 254, + 22, + 48, + 63, + 255, + 27, + 78, + 130, + 254, + 40, + 195, + 29, + 0, + 250, + 132, + 112, + 254, + 35, + 203, + 144, + 0, + 104, + 169, + 168, + 0, + 207, + 253, + 30, + 255, + 104, + 40, + 38, + 254, + 94, + 228, + 88, + 0, + 206, + 16, + 128, + 255, + 212, + 55, + 122, + 255, + 223, + 22, + 234, + 0, + 223, + 197, + 127, + 0, + 253, + 181, + 181, + 1, + 145, + 102, + 118, + 0, + 236, + 153, + 36, + 255, + 212, + 217, + 72, + 255, + 20, + 38, + 24, + 254, + 138, + 62, + 62, + 0, + 152, + 140, + 4, + 0, + 230, + 220, + 99, + 255, + 1, + 21, + 212, + 255, + 148, + 201, + 231, + 0, + 244, + 123, + 9, + 254, + 0, + 171, + 210, + 0, + 51, + 58, + 37, + 255, + 1, + 255, + 14, + 255, + 244, + 183, + 145, + 254, + 0, + 242, + 166, + 0, + 22, + 74, + 132, + 0, + 121, + 216, + 41, + 0, + 95, + 195, + 114, + 254, + 133, + 24, + 151, + 255, + 156, + 226, + 231, + 255, + 247, + 5, + 77, + 255, + 246, + 148, + 115, + 254, + 225, + 92, + 81, + 255, + 222, + 80, + 246, + 254, + 170, + 123, + 89, + 255, + 74, + 199, + 141, + 0, + 29, + 20, + 8, + 255, + 138, + 136, + 70, + 255, + 93, + 75, + 92, + 0, + 221, + 147, + 49, + 254, + 52, + 126, + 226, + 0, + 229, + 124, + 23, + 0, + 46, + 9, + 181, + 0, + 205, + 64, + 52, + 1, + 131, + 254, + 28, + 0, + 151, + 158, + 212, + 0, + 131, + 64, + 78, + 0, + 206, + 25, + 171, + 0, + 0, + 230, + 139, + 0, + 191, + 253, + 110, + 254, + 103, + 247, + 167, + 0, + 64, + 40, + 40, + 1, + 42, + 165, + 241, + 255, + 59, + 75, + 228, + 254, + 124, + 243, + 189, + 255, + 196, + 92, + 178, + 255, + 130, + 140, + 86, + 255, + 141, + 89, + 56, + 1, + 147, + 198, + 5, + 255, + 203, + 248, + 158, + 254, + 144, + 162, + 141, + 0, + 11, + 172, + 226, + 0, + 130, + 42, + 21, + 255, + 1, + 167, + 143, + 255, + 144, + 36, + 36, + 255, + 48, + 88, + 164, + 254, + 168, + 170, + 220, + 0, + 98, + 71, + 214, + 0, + 91, + 208, + 79, + 0, + 159, + 76, + 201, + 1, + 166, + 42, + 214, + 255, + 69, + 255, + 0, + 255, + 6, + 128, + 125, + 255, + 190, + 1, + 140, + 0, + 146, + 83, + 218, + 255, + 215, + 238, + 72, + 1, + 122, + 127, + 53, + 0, + 189, + 116, + 165, + 255, + 84, + 8, + 66, + 255, + 214, + 3, + 208, + 255, + 213, + 110, + 133, + 0, + 195, + 168, + 44, + 1, + 158, + 231, + 69, + 0, + 162, + 64, + 200, + 254, + 91, + 58, + 104, + 0, + 182, + 58, + 187, + 254, + 249, + 228, + 136, + 0, + 203, + 134, + 76, + 254, + 99, + 221, + 233, + 0, + 75, + 254, + 214, + 254, + 80, + 69, + 154, + 0, + 64, + 152, + 248, + 254, + 236, + 136, + 202, + 255, + 157, + 105, + 153, + 254, + 149, + 175, + 20, + 0, + 22, + 35, + 19, + 255, + 124, + 121, + 233, + 0, + 186, + 250, + 198, + 254, + 132, + 229, + 139, + 0, + 137, + 80, + 174, + 255, + 165, + 125, + 68, + 0, + 144, + 202, + 148, + 254, + 235, + 239, + 248, + 0, + 135, + 184, + 118, + 0, + 101, + 94, + 17, + 255, + 122, + 72, + 70, + 254, + 69, + 130, + 146, + 0, + 127, + 222, + 248, + 1, + 69, + 127, + 118, + 255, + 30, + 82, + 215, + 254, + 188, + 74, + 19, + 255, + 229, + 167, + 194, + 254, + 117, + 25, + 66, + 255, + 65, + 234, + 56, + 254, + 213, + 22, + 156, + 0, + 151, + 59, + 93, + 254, + 45, + 28, + 27, + 255, + 186, + 126, + 164, + 255, + 32, + 6, + 239, + 0, + 127, + 114, + 99, + 1, + 219, + 52, + 2, + 255, + 99, + 96, + 166, + 254, + 62, + 190, + 126, + 255, + 108, + 222, + 168, + 1, + 75, + 226, + 174, + 0, + 230, + 226, + 199, + 0, + 60, + 117, + 218, + 255, + 252, + 248, + 20, + 1, + 214, + 188, + 204, + 0, + 31, + 194, + 134, + 254, + 123, + 69, + 192, + 255, + 169, + 173, + 36, + 254, + 55, + 98, + 91, + 0, + 223, + 42, + 102, + 254, + 137, + 1, + 102, + 0, + 157, + 90, + 25, + 0, + 239, + 122, + 64, + 255, + 252, + 6, + 233, + 0, + 7, + 54, + 20, + 255, + 82, + 116, + 174, + 0, + 135, + 37, + 54, + 255, + 15, + 186, + 125, + 0, + 227, + 112, + 175, + 255, + 100, + 180, + 225, + 255, + 42, + 237, + 244, + 255, + 244, + 173, + 226, + 254, + 248, + 18, + 33, + 0, + 171, + 99, + 150, + 255, + 74, + 235, + 50, + 255, + 117, + 82, + 32, + 254, + 106, + 168, + 237, + 0, + 207, + 109, + 208, + 1, + 228, + 9, + 186, + 0, + 135, + 60, + 169, + 254, + 179, + 92, + 143, + 0, + 244, + 170, + 104, + 255, + 235, + 45, + 124, + 255, + 70, + 99, + 186, + 0, + 117, + 137, + 183, + 0, + 224, + 31, + 215, + 0, + 40, + 9, + 100, + 0, + 26, + 16, + 95, + 1, + 68, + 217, + 87, + 0, + 8, + 151, + 20, + 255, + 26, + 100, + 58, + 255, + 176, + 165, + 203, + 1, + 52, + 118, + 70, + 0, + 7, + 32, + 254, + 254, + 244, + 254, + 245, + 255, + 167, + 144, + 194, + 255, + 125, + 113, + 23, + 255, + 176, + 121, + 181, + 0, + 136, + 84, + 209, + 0, + 138, + 6, + 30, + 255, + 89, + 48, + 28, + 0, + 33, + 155, + 14, + 255, + 25, + 240, + 154, + 0, + 141, + 205, + 109, + 1, + 70, + 115, + 62, + 255, + 20, + 40, + 107, + 254, + 138, + 154, + 199, + 255, + 94, + 223, + 226, + 255, + 157, + 171, + 38, + 0, + 163, + 177, + 25, + 254, + 45, + 118, + 3, + 255, + 14, + 222, + 23, + 1, + 209, + 190, + 81, + 255, + 118, + 123, + 232, + 1, + 13, + 213, + 101, + 255, + 123, + 55, + 123, + 254, + 27, + 246, + 165, + 0, + 50, + 99, + 76, + 255, + 140, + 214, + 32, + 255, + 97, + 65, + 67, + 255, + 24, + 12, + 28, + 0, + 174, + 86, + 78, + 1, + 64, + 247, + 96, + 0, + 160, + 135, + 67, + 0, + 66, + 55, + 243, + 255, + 147, + 204, + 96, + 255, + 26, + 6, + 33, + 255, + 98, + 51, + 83, + 1, + 153, + 213, + 208, + 255, + 2, + 184, + 54, + 255, + 25, + 218, + 11, + 0, + 49, + 67, + 246, + 254, + 18, + 149, + 72, + 255, + 13, + 25, + 72, + 0, + 42, + 79, + 214, + 0, + 42, + 4, + 38, + 1, + 27, + 139, + 144, + 255, + 149, + 187, + 23, + 0, + 18, + 164, + 132, + 0, + 245, + 84, + 184, + 254, + 120, + 198, + 104, + 255, + 126, + 218, + 96, + 0, + 56, + 117, + 234, + 255, + 13, + 29, + 214, + 254, + 68, + 47, + 10, + 255, + 167, + 154, + 132, + 254, + 152, + 38, + 198, + 0, + 66, + 178, + 89, + 255, + 200, + 46, + 171, + 255, + 13, + 99, + 83, + 255, + 210, + 187, + 253, + 255, + 170, + 45, + 42, + 1, + 138, + 209, + 124, + 0, + 214, + 162, + 141, + 0, + 12, + 230, + 156, + 0, + 102, + 36, + 112, + 254, + 3, + 147, + 67, + 0, + 52, + 215, + 123, + 255, + 233, + 171, + 54, + 255, + 98, + 137, + 62, + 0, + 247, + 218, + 39, + 255, + 231, + 218, + 236, + 0, + 247, + 191, + 127, + 0, + 195, + 146, + 84, + 0, + 165, + 176, + 92, + 255, + 19, + 212, + 94, + 255, + 17, + 74, + 227, + 0, + 88, + 40, + 153, + 1, + 198, + 147, + 1, + 255, + 206, + 67, + 245, + 254, + 240, + 3, + 218, + 255, + 61, + 141, + 213, + 255, + 97, + 183, + 106, + 0, + 195, + 232, + 235, + 254, + 95, + 86, + 154, + 0, + 209, + 48, + 205, + 254, + 118, + 209, + 241, + 255, + 240, + 120, + 223, + 1, + 213, + 29, + 159, + 0, + 163, + 127, + 147, + 255, + 13, + 218, + 93, + 0, + 85, + 24, + 68, + 254, + 70, + 20, + 80, + 255, + 189, + 5, + 140, + 1, + 82, + 97, + 254, + 255, + 99, + 99, + 191, + 255, + 132, + 84, + 133, + 255, + 107, + 218, + 116, + 255, + 112, + 122, + 46, + 0, + 105, + 17, + 32, + 0, + 194, + 160, + 63, + 255, + 68, + 222, + 39, + 1, + 216, + 253, + 92, + 0, + 177, + 105, + 205, + 255, + 149, + 201, + 195, + 0, + 42, + 225, + 11, + 255, + 40, + 162, + 115, + 0, + 9, + 7, + 81, + 0, + 165, + 218, + 219, + 0, + 180, + 22, + 0, + 254, + 29, + 146, + 252, + 255, + 146, + 207, + 225, + 1, + 180, + 135, + 96, + 0, + 31, + 163, + 112, + 0, + 177, + 11, + 219, + 255, + 133, + 12, + 193, + 254, + 43, + 78, + 50, + 0, + 65, + 113, + 121, + 1, + 59, + 217, + 6, + 255, + 110, + 94, + 24, + 1, + 112, + 172, + 111, + 0, + 7, + 15, + 96, + 0, + 36, + 85, + 123, + 0, + 71, + 150, + 21, + 255, + 208, + 73, + 188, + 0, + 192, + 11, + 167, + 1, + 213, + 245, + 34, + 0, + 9, + 230, + 92, + 0, + 162, + 142, + 39, + 255, + 215, + 90, + 27, + 0, + 98, + 97, + 89, + 0, + 94, + 79, + 211, + 0, + 90, + 157, + 240, + 0, + 95, + 220, + 126, + 1, + 102, + 176, + 226, + 0, + 36, + 30, + 224, + 254, + 35, + 31, + 127, + 0, + 231, + 232, + 115, + 1, + 85, + 83, + 130, + 0, + 210, + 73, + 245, + 255, + 47, + 143, + 114, + 255, + 68, + 65, + 197, + 0, + 59, + 72, + 62, + 255, + 183, + 133, + 173, + 254, + 93, + 121, + 118, + 255, + 59, + 177, + 81, + 255, + 234, + 69, + 173, + 255, + 205, + 128, + 177, + 0, + 220, + 244, + 51, + 0, + 26, + 244, + 209, + 1, + 73, + 222, + 77, + 255, + 163, + 8, + 96, + 254, + 150, + 149, + 211, + 0, + 158, + 254, + 203, + 1, + 54, + 127, + 139, + 0, + 161, + 224, + 59, + 0, + 4, + 109, + 22, + 255, + 222, + 42, + 45, + 255, + 208, + 146, + 102, + 255, + 236, + 142, + 187, + 0, + 50, + 205, + 245, + 255, + 10, + 74, + 89, + 254, + 48, + 79, + 142, + 0, + 222, + 76, + 130, + 255, + 30, + 166, + 63, + 0, + 236, + 12, + 13, + 255, + 49, + 184, + 244, + 0, + 187, + 113, + 102, + 0, + 218, + 101, + 253, + 0, + 153, + 57, + 182, + 254, + 32, + 150, + 42, + 0, + 25, + 198, + 146, + 1, + 237, + 241, + 56, + 0, + 140, + 68, + 5, + 0, + 91, + 164, + 172, + 255, + 78, + 145, + 186, + 254, + 67, + 52, + 205, + 0, + 219, + 207, + 129, + 1, + 109, + 115, + 17, + 0, + 54, + 143, + 58, + 1, + 21, + 248, + 120, + 255, + 179, + 255, + 30, + 0, + 193, + 236, + 66, + 255, + 1, + 255, + 7, + 255, + 253, + 192, + 48, + 255, + 19, + 69, + 217, + 1, + 3, + 214, + 0, + 255, + 64, + 101, + 146, + 1, + 223, + 125, + 35, + 255, + 235, + 73, + 179, + 255, + 249, + 167, + 226, + 0, + 225, + 175, + 10, + 1, + 97, + 162, + 58, + 0, + 106, + 112, + 171, + 1, + 84, + 172, + 5, + 255, + 133, + 140, + 178, + 255, + 134, + 245, + 142, + 0, + 97, + 90, + 125, + 255, + 186, + 203, + 185, + 255, + 223, + 77, + 23, + 255, + 192, + 92, + 106, + 0, + 15, + 198, + 115, + 255, + 217, + 152, + 248, + 0, + 171, + 178, + 120, + 255, + 228, + 134, + 53, + 0, + 176, + 54, + 193, + 1, + 250, + 251, + 53, + 0, + 213, + 10, + 100, + 1, + 34, + 199, + 106, + 0, + 151, + 31, + 244, + 254, + 172, + 224, + 87, + 255, + 14, + 237, + 23, + 255, + 253, + 85, + 26, + 255, + 127, + 39, + 116, + 255, + 172, + 104, + 100, + 0, + 251, + 14, + 70, + 255, + 212, + 208, + 138, + 255, + 253, + 211, + 250, + 0, + 176, + 49, + 165, + 0, + 15, + 76, + 123, + 255, + 37, + 218, + 160, + 255, + 92, + 135, + 16, + 1, + 10, + 126, + 114, + 255, + 70, + 5, + 224, + 255, + 247, + 249, + 141, + 0, + 68, + 20, + 60, + 1, + 241, + 210, + 189, + 255, + 195, + 217, + 187, + 1, + 151, + 3, + 113, + 0, + 151, + 92, + 174, + 0, + 231, + 62, + 178, + 255, + 219, + 183, + 225, + 0, + 23, + 23, + 33, + 255, + 205, + 181, + 80, + 0, + 57, + 184, + 248, + 255, + 67, + 180, + 1, + 255, + 90, + 123, + 93, + 255, + 39, + 0, + 162, + 255, + 96, + 248, + 52, + 255, + 84, + 66, + 140, + 0, + 34, + 127, + 228, + 255, + 194, + 138, + 7, + 1, + 166, + 110, + 188, + 0, + 21, + 17, + 155, + 1, + 154, + 190, + 198, + 255, + 214, + 80, + 59, + 255, + 18, + 7, + 143, + 0, + 72, + 29, + 226, + 1, + 199, + 217, + 249, + 0, + 232, + 161, + 71, + 1, + 149, + 190, + 201, + 0, + 217, + 175, + 95, + 254, + 113, + 147, + 67, + 255, + 138, + 143, + 199, + 255, + 127, + 204, + 1, + 0, + 29, + 182, + 83, + 1, + 206, + 230, + 155, + 255, + 186, + 204, + 60, + 0, + 10, + 125, + 85, + 255, + 232, + 96, + 25, + 255, + 255, + 89, + 247, + 255, + 213, + 254, + 175, + 1, + 232, + 193, + 81, + 0, + 28, + 43, + 156, + 254, + 12, + 69, + 8, + 0, + 147, + 24, + 248, + 0, + 18, + 198, + 49, + 0, + 134, + 60, + 35, + 0, + 118, + 246, + 18, + 255, + 49, + 88, + 254, + 254, + 228, + 21, + 186, + 255, + 182, + 65, + 112, + 1, + 219, + 22, + 1, + 255, + 22, + 126, + 52, + 255, + 189, + 53, + 49, + 255, + 112, + 25, + 143, + 0, + 38, + 127, + 55, + 255, + 226, + 101, + 163, + 254, + 208, + 133, + 61, + 255, + 137, + 69, + 174, + 1, + 190, + 118, + 145, + 255, + 60, + 98, + 219, + 255, + 217, + 13, + 245, + 255, + 250, + 136, + 10, + 0, + 84, + 254, + 226, + 0, + 201, + 31, + 125, + 1, + 240, + 51, + 251, + 255, + 31, + 131, + 130, + 255, + 2, + 138, + 50, + 255, + 215, + 215, + 177, + 1, + 223, + 12, + 238, + 255, + 252, + 149, + 56, + 255, + 124, + 91, + 68, + 255, + 72, + 126, + 170, + 254, + 119, + 255, + 100, + 0, + 130, + 135, + 232, + 255, + 14, + 79, + 178, + 0, + 250, + 131, + 197, + 0, + 138, + 198, + 208, + 0, + 121, + 216, + 139, + 254, + 119, + 18, + 36, + 255, + 29, + 193, + 122, + 0, + 16, + 42, + 45, + 255, + 213, + 240, + 235, + 1, + 230, + 190, + 169, + 255, + 198, + 35, + 228, + 254, + 110, + 173, + 72, + 0, + 214, + 221, + 241, + 255, + 56, + 148, + 135, + 0, + 192, + 117, + 78, + 254, + 141, + 93, + 207, + 255, + 143, + 65, + 149, + 0, + 21, + 18, + 98, + 255, + 95, + 44, + 244, + 1, + 106, + 191, + 77, + 0, + 254, + 85, + 8, + 254, + 214, + 110, + 176, + 255, + 73, + 173, + 19, + 254, + 160, + 196, + 199, + 255, + 237, + 90, + 144, + 0, + 193, + 172, + 113, + 255, + 200, + 155, + 136, + 254, + 228, + 90, + 221, + 0, + 137, + 49, + 74, + 1, + 164, + 221, + 215, + 255, + 209, + 189, + 5, + 255, + 105, + 236, + 55, + 255, + 42, + 31, + 129, + 1, + 193, + 255, + 236, + 0, + 46, + 217, + 60, + 0, + 138, + 88, + 187, + 255, + 226, + 82, + 236, + 255, + 81, + 69, + 151, + 255, + 142, + 190, + 16, + 1, + 13, + 134, + 8, + 0, + 127, + 122, + 48, + 255, + 81, + 64, + 156, + 0, + 171, + 243, + 139, + 0, + 237, + 35, + 246, + 0, + 122, + 143, + 193, + 254, + 212, + 122, + 146, + 0, + 95, + 41, + 255, + 1, + 87, + 132, + 77, + 0, + 4, + 212, + 31, + 0, + 17, + 31, + 78, + 0, + 39, + 45, + 173, + 254, + 24, + 142, + 217, + 255, + 95, + 9, + 6, + 255, + 227, + 83, + 6, + 0, + 98, + 59, + 130, + 254, + 62, + 30, + 33, + 0, + 8, + 115, + 211, + 1, + 162, + 97, + 128, + 255, + 7, + 184, + 23, + 254, + 116, + 28, + 168, + 255, + 248, + 138, + 151, + 255, + 98, + 244, + 240, + 0, + 186, + 118, + 130, + 0, + 114, + 248, + 235, + 255, + 105, + 173, + 200, + 1, + 160, + 124, + 71, + 255, + 94, + 36, + 164, + 1, + 175, + 65, + 146, + 255, + 238, + 241, + 170, + 254, + 202, + 198, + 197, + 0, + 228, + 71, + 138, + 254, + 45, + 246, + 109, + 255, + 194, + 52, + 158, + 0, + 133, + 187, + 176, + 0, + 83, + 252, + 154, + 254, + 89, + 189, + 221, + 255, + 170, + 73, + 252, + 0, + 148, + 58, + 125, + 0, + 36, + 68, + 51, + 254, + 42, + 69, + 177, + 255, + 168, + 76, + 86, + 255, + 38, + 100, + 204, + 255, + 38, + 53, + 35, + 0, + 175, + 19, + 97, + 0, + 225, + 238, + 253, + 255, + 81, + 81, + 135, + 0, + 210, + 27, + 255, + 254, + 235, + 73, + 107, + 0, + 8, + 207, + 115, + 0, + 82, + 127, + 136, + 0, + 84, + 99, + 21, + 254, + 207, + 19, + 136, + 0, + 100, + 164, + 101, + 0, + 80, + 208, + 77, + 255, + 132, + 207, + 237, + 255, + 15, + 3, + 15, + 255, + 33, + 166, + 110, + 0, + 156, + 95, + 85, + 255, + 37, + 185, + 111, + 1, + 150, + 106, + 35, + 255, + 166, + 151, + 76, + 0, + 114, + 87, + 135, + 255, + 159, + 194, + 64, + 0, + 12, + 122, + 31, + 255, + 232, + 7, + 101, + 254, + 173, + 119, + 98, + 0, + 154, + 71, + 220, + 254, + 191, + 57, + 53, + 255, + 168, + 232, + 160, + 255, + 224, + 32, + 99, + 255, + 218, + 156, + 165, + 0, + 151, + 153, + 163, + 0, + 217, + 13, + 148, + 1, + 197, + 113, + 89, + 0, + 149, + 28, + 161, + 254, + 207, + 23, + 30, + 0, + 105, + 132, + 227, + 255, + 54, + 230, + 94, + 255, + 133, + 173, + 204, + 255, + 92, + 183, + 157, + 255, + 88, + 144, + 252, + 254, + 102, + 33, + 90, + 0, + 159, + 97, + 3, + 0, + 181, + 218, + 155, + 255, + 240, + 114, + 119, + 0, + 106, + 214, + 53, + 255, + 165, + 190, + 115, + 1, + 152, + 91, + 225, + 255, + 88, + 106, + 44, + 255, + 208, + 61, + 113, + 0, + 151, + 52, + 124, + 0, + 191, + 27, + 156, + 255, + 110, + 54, + 236, + 1, + 14, + 30, + 166, + 255, + 39, + 127, + 207, + 1, + 229, + 199, + 28, + 0, + 188, + 228, + 188, + 254, + 100, + 157, + 235, + 0, + 246, + 218, + 183, + 1, + 107, + 22, + 193, + 255, + 206, + 160, + 95, + 0, + 76, + 239, + 147, + 0, + 207, + 161, + 117, + 0, + 51, + 166, + 2, + 255, + 52, + 117, + 10, + 254, + 73, + 56, + 227, + 255, + 152, + 193, + 225, + 0, + 132, + 94, + 136, + 255, + 101, + 191, + 209, + 0, + 32, + 107, + 229, + 255, + 198, + 43, + 180, + 1, + 100, + 210, + 118, + 0, + 114, + 67, + 153, + 255, + 23, + 88, + 26, + 255, + 89, + 154, + 92, + 1, + 220, + 120, + 140, + 255, + 144, + 114, + 207, + 255, + 252, + 115, + 250, + 255, + 34, + 206, + 72, + 0, + 138, + 133, + 127, + 255, + 8, + 178, + 124, + 1, + 87, + 75, + 97, + 0, + 15, + 229, + 92, + 254, + 240, + 67, + 131, + 255, + 118, + 123, + 227, + 254, + 146, + 120, + 104, + 255, + 145, + 213, + 255, + 1, + 129, + 187, + 70, + 255, + 219, + 119, + 54, + 0, + 1, + 19, + 173, + 0, + 45, + 150, + 148, + 1, + 248, + 83, + 72, + 0, + 203, + 233, + 169, + 1, + 142, + 107, + 56, + 0, + 247, + 249, + 38, + 1, + 45, + 242, + 80, + 255, + 30, + 233, + 103, + 0, + 96, + 82, + 70, + 0, + 23, + 201, + 111, + 0, + 81, + 39, + 30, + 255, + 161, + 183, + 78, + 255, + 194, + 234, + 33, + 255, + 68, + 227, + 140, + 254, + 216, + 206, + 116, + 0, + 70, + 27, + 235, + 255, + 104, + 144, + 79, + 0, + 164, + 230, + 93, + 254, + 214, + 135, + 156, + 0, + 154, + 187, + 242, + 254, + 188, + 20, + 131, + 255, + 36, + 109, + 174, + 0, + 159, + 112, + 241, + 0, + 5, + 110, + 149, + 1, + 36, + 165, + 218, + 0, + 166, + 29, + 19, + 1, + 178, + 46, + 73, + 0, + 93, + 43, + 32, + 254, + 248, + 189, + 237, + 0, + 102, + 155, + 141, + 0, + 201, + 93, + 195, + 255, + 241, + 139, + 253, + 255, + 15, + 111, + 98, + 255, + 108, + 65, + 163, + 254, + 155, + 79, + 190, + 255, + 73, + 174, + 193, + 254, + 246, + 40, + 48, + 255, + 107, + 88, + 11, + 254, + 202, + 97, + 85, + 255, + 253, + 204, + 18, + 255, + 113, + 242, + 66, + 0, + 110, + 160, + 194, + 254, + 208, + 18, + 186, + 0, + 81, + 21, + 60, + 0, + 188, + 104, + 167, + 255, + 124, + 166, + 97, + 254, + 210, + 133, + 142, + 0, + 56, + 242, + 137, + 254, + 41, + 111, + 130, + 0, + 111, + 151, + 58, + 1, + 111, + 213, + 141, + 255, + 183, + 172, + 241, + 255, + 38, + 6, + 196, + 255, + 185, + 7, + 123, + 255, + 46, + 11, + 246, + 0, + 245, + 105, + 119, + 1, + 15, + 2, + 161, + 255, + 8, + 206, + 45, + 255, + 18, + 202, + 74, + 255, + 83, + 124, + 115, + 1, + 212, + 141, + 157, + 0, + 83, + 8, + 209, + 254, + 139, + 15, + 232, + 255, + 172, + 54, + 173, + 254, + 50, + 247, + 132, + 0, + 214, + 189, + 213, + 0, + 144, + 184, + 105, + 0, + 223, + 254, + 248, + 0, + 255, + 147, + 240, + 255, + 23, + 188, + 72, + 0, + 7, + 51, + 54, + 0, + 188, + 25, + 180, + 254, + 220, + 180, + 0, + 255, + 83, + 160, + 20, + 0, + 163, + 189, + 243, + 255, + 58, + 209, + 194, + 255, + 87, + 73, + 60, + 0, + 106, + 24, + 49, + 0, + 245, + 249, + 220, + 0, + 22, + 173, + 167, + 0, + 118, + 11, + 195, + 255, + 19, + 126, + 237, + 0, + 110, + 159, + 37, + 255, + 59, + 82, + 47, + 0, + 180, + 187, + 86, + 0, + 188, + 148, + 208, + 1, + 100, + 37, + 133, + 255, + 7, + 112, + 193, + 0, + 129, + 188, + 156, + 255, + 84, + 106, + 129, + 255, + 133, + 225, + 202, + 0, + 14, + 236, + 111, + 255, + 40, + 20, + 101, + 0, + 172, + 172, + 49, + 254, + 51, + 54, + 74, + 255, + 251, + 185, + 184, + 255, + 93, + 155, + 224, + 255, + 180, + 249, + 224, + 1, + 230, + 178, + 146, + 0, + 72, + 57, + 54, + 254, + 178, + 62, + 184, + 0, + 119, + 205, + 72, + 0, + 185, + 239, + 253, + 255, + 61, + 15, + 218, + 0, + 196, + 67, + 56, + 255, + 234, + 32, + 171, + 1, + 46, + 219, + 228, + 0, + 208, + 108, + 234, + 255, + 20, + 63, + 232, + 255, + 165, + 53, + 199, + 1, + 133, + 228, + 5, + 255, + 52, + 205, + 107, + 0, + 74, + 238, + 140, + 255, + 150, + 156, + 219, + 254, + 239, + 172, + 178, + 255, + 251, + 189, + 223, + 254, + 32, + 142, + 211, + 255, + 218, + 15, + 138, + 1, + 241, + 196, + 80, + 0, + 28, + 36, + 98, + 254, + 22, + 234, + 199, + 0, + 61, + 237, + 220, + 255, + 246, + 57, + 37, + 0, + 142, + 17, + 142, + 255, + 157, + 62, + 26, + 0, + 43, + 238, + 95, + 254, + 3, + 217, + 6, + 255, + 213, + 25, + 240, + 1, + 39, + 220, + 174, + 255, + 154, + 205, + 48, + 254, + 19, + 13, + 192, + 255, + 244, + 34, + 54, + 254, + 140, + 16, + 155, + 0, + 240, + 181, + 5, + 254, + 155, + 193, + 60, + 0, + 166, + 128, + 4, + 255, + 36, + 145, + 56, + 255, + 150, + 240, + 219, + 0, + 120, + 51, + 145, + 0, + 82, + 153, + 42, + 1, + 140, + 236, + 146, + 0, + 107, + 92, + 248, + 1, + 189, + 10, + 3, + 0, + 63, + 136, + 242, + 0, + 211, + 39, + 24, + 0, + 19, + 202, + 161, + 1, + 173, + 27, + 186, + 255, + 210, + 204, + 239, + 254, + 41, + 209, + 162, + 255, + 182, + 254, + 159, + 255, + 172, + 116, + 52, + 0, + 195, + 103, + 222, + 254, + 205, + 69, + 59, + 0, + 53, + 22, + 41, + 1, + 218, + 48, + 194, + 0, + 80, + 210, + 242, + 0, + 210, + 188, + 207, + 0, + 187, + 161, + 161, + 254, + 216, + 17, + 1, + 0, + 136, + 225, + 113, + 0, + 250, + 184, + 63, + 0, + 223, + 30, + 98, + 254, + 77, + 168, + 162, + 0, + 59, + 53, + 175, + 0, + 19, + 201, + 10, + 255, + 139, + 224, + 194, + 0, + 147, + 193, + 154, + 255, + 212, + 189, + 12, + 254, + 1, + 200, + 174, + 255, + 50, + 133, + 113, + 1, + 94, + 179, + 90, + 0, + 173, + 182, + 135, + 0, + 94, + 177, + 113, + 0, + 43, + 89, + 215, + 255, + 136, + 252, + 106, + 255, + 123, + 134, + 83, + 254, + 5, + 245, + 66, + 255, + 82, + 49, + 39, + 1, + 220, + 2, + 224, + 0, + 97, + 129, + 177, + 0, + 77, + 59, + 89, + 0, + 61, + 29, + 155, + 1, + 203, + 171, + 220, + 255, + 92, + 78, + 139, + 0, + 145, + 33, + 181, + 255, + 169, + 24, + 141, + 1, + 55, + 150, + 179, + 0, + 139, + 60, + 80, + 255, + 218, + 39, + 97, + 0, + 2, + 147, + 107, + 255, + 60, + 248, + 72, + 0, + 173, + 230, + 47, + 1, + 6, + 83, + 182, + 255, + 16, + 105, + 162, + 254, + 137, + 212, + 81, + 255, + 180, + 184, + 134, + 1, + 39, + 222, + 164, + 255, + 221, + 105, + 251, + 1, + 239, + 112, + 125, + 0, + 63, + 7, + 97, + 0, + 63, + 104, + 227, + 255, + 148, + 58, + 12, + 0, + 90, + 60, + 224, + 255, + 84, + 212, + 252, + 0, + 79, + 215, + 168, + 0, + 248, + 221, + 199, + 1, + 115, + 121, + 1, + 0, + 36, + 172, + 120, + 0, + 32, + 162, + 187, + 255, + 57, + 107, + 49, + 255, + 147, + 42, + 21, + 0, + 106, + 198, + 43, + 1, + 57, + 74, + 87, + 0, + 126, + 203, + 81, + 255, + 129, + 135, + 195, + 0, + 140, + 31, + 177, + 0, + 221, + 139, + 194, + 0, + 3, + 222, + 215, + 0, + 131, + 68, + 231, + 0, + 177, + 86, + 178, + 254, + 124, + 151, + 180, + 0, + 184, + 124, + 38, + 1, + 70, + 163, + 17, + 0, + 249, + 251, + 181, + 1, + 42, + 55, + 227, + 0, + 226, + 161, + 44, + 0, + 23, + 236, + 110, + 0, + 51, + 149, + 142, + 1, + 93, + 5, + 236, + 0, + 218, + 183, + 106, + 254, + 67, + 24, + 77, + 0, + 40, + 245, + 209, + 255, + 222, + 121, + 153, + 0, + 165, + 57, + 30, + 0, + 83, + 125, + 60, + 0, + 70, + 38, + 82, + 1, + 229, + 6, + 188, + 0, + 109, + 222, + 157, + 255, + 55, + 118, + 63, + 255, + 205, + 151, + 186, + 0, + 227, + 33, + 149, + 255, + 254, + 176, + 246, + 1, + 227, + 177, + 227, + 0, + 34, + 106, + 163, + 254, + 176, + 43, + 79, + 0, + 106, + 95, + 78, + 1, + 185, + 241, + 122, + 255, + 185, + 14, + 61, + 0, + 36, + 1, + 202, + 0, + 13, + 178, + 162, + 255, + 247, + 11, + 132, + 0, + 161, + 230, + 92, + 1, + 65, + 1, + 185, + 255, + 212, + 50, + 165, + 1, + 141, + 146, + 64, + 255, + 158, + 242, + 218, + 0, + 21, + 164, + 125, + 0, + 213, + 139, + 122, + 1, + 67, + 71, + 87, + 0, + 203, + 158, + 178, + 1, + 151, + 92, + 43, + 0, + 152, + 111, + 5, + 255, + 39, + 3, + 239, + 255, + 217, + 255, + 250, + 255, + 176, + 63, + 71, + 255, + 74, + 245, + 77, + 1, + 250, + 174, + 18, + 255, + 34, + 49, + 227, + 255, + 246, + 46, + 251, + 255, + 154, + 35, + 48, + 1, + 125, + 157, + 61, + 255, + 106, + 36, + 78, + 255, + 97, + 236, + 153, + 0, + 136, + 187, + 120, + 255, + 113, + 134, + 171, + 255, + 19, + 213, + 217, + 254, + 216, + 94, + 209, + 255, + 252, + 5, + 61, + 0, + 94, + 3, + 202, + 0, + 3, + 26, + 183, + 255, + 64, + 191, + 43, + 255, + 30, + 23, + 21, + 0, + 129, + 141, + 77, + 255, + 102, + 120, + 7, + 1, + 194, + 76, + 140, + 0, + 188, + 175, + 52, + 255, + 17, + 81, + 148, + 0, + 232, + 86, + 55, + 1, + 225, + 48, + 172, + 0, + 134, + 42, + 42, + 255, + 238, + 50, + 47, + 0, + 169, + 18, + 254, + 0, + 20, + 147, + 87, + 255, + 14, + 195, + 239, + 255, + 69, + 247, + 23, + 0, + 238, + 229, + 128, + 255, + 177, + 49, + 112, + 0, + 168, + 98, + 251, + 255, + 121, + 71, + 248, + 0, + 243, + 8, + 145, + 254, + 246, + 227, + 153, + 255, + 219, + 169, + 177, + 254, + 251, + 139, + 165, + 255, + 12, + 163, + 185, + 255, + 164, + 40, + 171, + 255, + 153, + 159, + 27, + 254, + 243, + 109, + 91, + 255, + 222, + 24, + 112, + 1, + 18, + 214, + 231, + 0, + 107, + 157, + 181, + 254, + 195, + 147, + 0, + 255, + 194, + 99, + 104, + 255, + 89, + 140, + 190, + 255, + 177, + 66, + 126, + 254, + 106, + 185, + 66, + 0, + 49, + 218, + 31, + 0, + 252, + 174, + 158, + 0, + 188, + 79, + 230, + 1, + 238, + 41, + 224, + 0, + 212, + 234, + 8, + 1, + 136, + 11, + 181, + 0, + 166, + 117, + 83, + 255, + 68, + 195, + 94, + 0, + 46, + 132, + 201, + 0, + 240, + 152, + 88, + 0, + 164, + 57, + 69, + 254, + 160, + 224, + 42, + 255, + 59, + 215, + 67, + 255, + 119, + 195, + 141, + 255, + 36, + 180, + 121, + 254, + 207, + 47, + 8, + 255, + 174, + 210, + 223, + 0, + 101, + 197, + 68, + 255, + 255, + 82, + 141, + 1, + 250, + 137, + 233, + 0, + 97, + 86, + 133, + 1, + 16, + 80, + 69, + 0, + 132, + 131, + 159, + 0, + 116, + 93, + 100, + 0, + 45, + 141, + 139, + 0, + 152, + 172, + 157, + 255, + 90, + 43, + 91, + 0, + 71, + 153, + 46, + 0, + 39, + 16, + 112, + 255, + 217, + 136, + 97, + 255, + 220, + 198, + 25, + 254, + 177, + 53, + 49, + 0, + 222, + 88, + 134, + 255, + 128, + 15, + 60, + 0, + 207, + 192, + 169, + 255, + 192, + 116, + 209, + 255, + 106, + 78, + 211, + 1, + 200, + 213, + 183, + 255, + 7, + 12, + 122, + 254, + 222, + 203, + 60, + 255, + 33, + 110, + 199, + 254, + 251, + 106, + 117, + 0, + 228, + 225, + 4, + 1, + 120, + 58, + 7, + 255, + 221, + 193, + 84, + 254, + 112, + 133, + 27, + 0, + 189, + 200, + 201, + 255, + 139, + 135, + 150, + 0, + 234, + 55, + 176, + 255, + 61, + 50, + 65, + 0, + 152, + 108, + 169, + 255, + 220, + 85, + 1, + 255, + 112, + 135, + 227, + 0, + 162, + 26, + 186, + 0, + 207, + 96, + 185, + 254, + 244, + 136, + 107, + 0, + 93, + 153, + 50, + 1, + 198, + 97, + 151, + 0, + 110, + 11, + 86, + 255, + 143, + 117, + 174, + 255, + 115, + 212, + 200, + 0, + 5, + 202, + 183, + 0, + 237, + 164, + 10, + 254, + 185, + 239, + 62, + 0, + 236, + 120, + 18, + 254, + 98, + 123, + 99, + 255, + 168, + 201, + 194, + 254, + 46, + 234, + 214, + 0, + 191, + 133, + 49, + 255, + 99, + 169, + 119, + 0, + 190, + 187, + 35, + 1, + 115, + 21, + 45, + 255, + 249, + 131, + 72, + 0, + 112, + 6, + 123, + 255, + 214, + 49, + 181, + 254, + 166, + 233, + 34, + 0, + 92, + 197, + 102, + 254, + 253, + 228, + 205, + 255, + 3, + 59, + 201, + 1, + 42, + 98, + 46, + 0, + 219, + 37, + 35, + 255, + 169, + 195, + 38, + 0, + 94, + 124, + 193, + 1, + 156, + 43, + 223, + 0, + 95, + 72, + 133, + 254, + 120, + 206, + 191, + 0, + 122, + 197, + 239, + 255, + 177, + 187, + 79, + 255, + 254, + 46, + 2, + 1, + 250, + 167, + 190, + 0, + 84, + 129, + 19, + 0, + 203, + 113, + 166, + 255, + 249, + 31, + 189, + 254, + 72, + 157, + 202, + 255, + 208, + 71, + 73, + 255, + 207, + 24, + 72, + 0, + 10, + 16, + 18, + 1, + 210, + 81, + 76, + 255, + 88, + 208, + 192, + 255, + 126, + 243, + 107, + 255, + 238, + 141, + 120, + 255, + 199, + 121, + 234, + 255, + 137, + 12, + 59, + 255, + 36, + 220, + 123, + 255, + 148, + 179, + 60, + 254, + 240, + 12, + 29, + 0, + 66, + 0, + 97, + 1, + 36, + 30, + 38, + 255, + 115, + 1, + 93, + 255, + 96, + 103, + 231, + 255, + 197, + 158, + 59, + 1, + 192, + 164, + 240, + 0, + 202, + 202, + 57, + 255, + 24, + 174, + 48, + 0, + 89, + 77, + 155, + 1, + 42, + 76, + 215, + 0, + 244, + 151, + 233, + 0, + 23, + 48, + 81, + 0, + 239, + 127, + 52, + 254, + 227, + 130, + 37, + 255, + 248, + 116, + 93, + 1, + 124, + 132, + 118, + 0, + 173, + 254, + 192, + 1, + 6, + 235, + 83, + 255, + 110, + 175, + 231, + 1, + 251, + 28, + 182 + ], + "i8", + ALLOC_NONE, + Runtime.GLOBAL_BASE + ) + /* memory initializer */ allocate( + [ + 129, + 249, + 93, + 254, + 84, + 184, + 128, + 0, + 76, + 181, + 62, + 0, + 175, + 128, + 186, + 0, + 100, + 53, + 136, + 254, + 109, + 29, + 226, + 0, + 221, + 233, + 58, + 1, + 20, + 99, + 74, + 0, + 0, + 22, + 160, + 0, + 134, + 13, + 21, + 0, + 9, + 52, + 55, + 255, + 17, + 89, + 140, + 0, + 175, + 34, + 59, + 0, + 84, + 165, + 119, + 255, + 224, + 226, + 234, + 255, + 7, + 72, + 166, + 255, + 123, + 115, + 255, + 1, + 18, + 214, + 246, + 0, + 250, + 7, + 71, + 1, + 217, + 220, + 185, + 0, + 212, + 35, + 76, + 255, + 38, + 125, + 175, + 0, + 189, + 97, + 210, + 0, + 114, + 238, + 44, + 255, + 41, + 188, + 169, + 254, + 45, + 186, + 154, + 0, + 81, + 92, + 22, + 0, + 132, + 160, + 193, + 0, + 121, + 208, + 98, + 255, + 13, + 81, + 44, + 255, + 203, + 156, + 82, + 0, + 71, + 58, + 21, + 255, + 208, + 114, + 191, + 254, + 50, + 38, + 147, + 0, + 154, + 216, + 195, + 0, + 101, + 25, + 18, + 0, + 60, + 250, + 215, + 255, + 233, + 132, + 235, + 255, + 103, + 175, + 142, + 1, + 16, + 14, + 92, + 0, + 141, + 31, + 110, + 254, + 238, + 241, + 45, + 255, + 153, + 217, + 239, + 1, + 97, + 168, + 47, + 255, + 249, + 85, + 16, + 1, + 28, + 175, + 62, + 255, + 57, + 254, + 54, + 0, + 222, + 231, + 126, + 0, + 166, + 45, + 117, + 254, + 18, + 189, + 96, + 255, + 228, + 76, + 50, + 0, + 200, + 244, + 94, + 0, + 198, + 152, + 120, + 1, + 68, + 34, + 69, + 255, + 12, + 65, + 160, + 254, + 101, + 19, + 90, + 0, + 167, + 197, + 120, + 255, + 68, + 54, + 185, + 255, + 41, + 218, + 188, + 0, + 113, + 168, + 48, + 0, + 88, + 105, + 189, + 1, + 26, + 82, + 32, + 255, + 185, + 93, + 164, + 1, + 228, + 240, + 237, + 255, + 66, + 182, + 53, + 0, + 171, + 197, + 92, + 255, + 107, + 9, + 233, + 1, + 199, + 120, + 144, + 255, + 78, + 49, + 10, + 255, + 109, + 170, + 105, + 255, + 90, + 4, + 31, + 255, + 28, + 244, + 113, + 255, + 74, + 58, + 11, + 0, + 62, + 220, + 246, + 255, + 121, + 154, + 200, + 254, + 144, + 210, + 178, + 255, + 126, + 57, + 129, + 1, + 43, + 250, + 14, + 255, + 101, + 111, + 28, + 1, + 47, + 86, + 241, + 255, + 61, + 70, + 150, + 255, + 53, + 73, + 5, + 255, + 30, + 26, + 158, + 0, + 209, + 26, + 86, + 0, + 138, + 237, + 74, + 0, + 164, + 95, + 188, + 0, + 142, + 60, + 29, + 254, + 162, + 116, + 248, + 255, + 187, + 175, + 160, + 0, + 151, + 18, + 16, + 0, + 209, + 111, + 65, + 254, + 203, + 134, + 39, + 255, + 88, + 108, + 49, + 255, + 131, + 26, + 71, + 255, + 221, + 27, + 215, + 254, + 104, + 105, + 93, + 255, + 31, + 236, + 31, + 254, + 135, + 0, + 211, + 255, + 143, + 127, + 110, + 1, + 212, + 73, + 229, + 0, + 233, + 67, + 167, + 254, + 195, + 1, + 208, + 255, + 132, + 17, + 221, + 255, + 51, + 217, + 90, + 0, + 67, + 235, + 50, + 255, + 223, + 210, + 143, + 0, + 179, + 53, + 130, + 1, + 233, + 106, + 198, + 0, + 217, + 173, + 220, + 255, + 112, + 229, + 24, + 255, + 175, + 154, + 93, + 254, + 71, + 203, + 246, + 255, + 48, + 66, + 133, + 255, + 3, + 136, + 230, + 255, + 23, + 221, + 113, + 254, + 235, + 111, + 213, + 0, + 170, + 120, + 95, + 254, + 251, + 221, + 2, + 0, + 45, + 130, + 158, + 254, + 105, + 94, + 217, + 255, + 242, + 52, + 180, + 254, + 213, + 68, + 45, + 255, + 104, + 38, + 28, + 0, + 244, + 158, + 76, + 0, + 161, + 200, + 96, + 255, + 207, + 53, + 13, + 255, + 187, + 67, + 148, + 0, + 170, + 54, + 248, + 0, + 119, + 162, + 178, + 255, + 83, + 20, + 11, + 0, + 42, + 42, + 192, + 1, + 146, + 159, + 163, + 255, + 183, + 232, + 111, + 0, + 77, + 229, + 21, + 255, + 71, + 53, + 143, + 0, + 27, + 76, + 34, + 0, + 246, + 136, + 47, + 255, + 219, + 39, + 182, + 255, + 92, + 224, + 201, + 1, + 19, + 142, + 14, + 255, + 69, + 182, + 241, + 255, + 163, + 118, + 245, + 0, + 9, + 109, + 106, + 1, + 170, + 181, + 247, + 255, + 78, + 47, + 238, + 255, + 84, + 210, + 176, + 255, + 213, + 107, + 139, + 0, + 39, + 38, + 11, + 0, + 72, + 21, + 150, + 0, + 72, + 130, + 69, + 0, + 205, + 77, + 155, + 254, + 142, + 133, + 21, + 0, + 71, + 111, + 172, + 254, + 226, + 42, + 59, + 255, + 179, + 0, + 215, + 1, + 33, + 128, + 241, + 0, + 234, + 252, + 13, + 1, + 184, + 79, + 8, + 0, + 110, + 30, + 73, + 255, + 246, + 141, + 189, + 0, + 170, + 207, + 218, + 1, + 74, + 154, + 69, + 255, + 138, + 246, + 49, + 255, + 155, + 32, + 100, + 0, + 125, + 74, + 105, + 255, + 90, + 85, + 61, + 255, + 35, + 229, + 177, + 255, + 62, + 125, + 193, + 255, + 153, + 86, + 188, + 1, + 73, + 120, + 212, + 0, + 209, + 123, + 246, + 254, + 135, + 209, + 38, + 255, + 151, + 58, + 44, + 1, + 92, + 69, + 214, + 255, + 14, + 12, + 88, + 255, + 252, + 153, + 166, + 255, + 253, + 207, + 112, + 255, + 60, + 78, + 83, + 255, + 227, + 124, + 110, + 0, + 180, + 96, + 252, + 255, + 53, + 117, + 33, + 254, + 164, + 220, + 82, + 255, + 41, + 1, + 27, + 255, + 38, + 164, + 166, + 255, + 164, + 99, + 169, + 254, + 61, + 144, + 70, + 255, + 192, + 166, + 18, + 0, + 107, + 250, + 66, + 0, + 197, + 65, + 50, + 0, + 1, + 179, + 18, + 255, + 255, + 104, + 1, + 255, + 43, + 153, + 35, + 255, + 80, + 111, + 168, + 0, + 110, + 175, + 168, + 0, + 41, + 105, + 45, + 255, + 219, + 14, + 205, + 255, + 164, + 233, + 140, + 254, + 43, + 1, + 118, + 0, + 233, + 67, + 195, + 0, + 178, + 82, + 159, + 255, + 138, + 87, + 122, + 255, + 212, + 238, + 90, + 255, + 144, + 35, + 124, + 254, + 25, + 140, + 164, + 0, + 251, + 215, + 44, + 254, + 133, + 70, + 107, + 255, + 101, + 227, + 80, + 254, + 92, + 169, + 55, + 0, + 215, + 42, + 49, + 0, + 114, + 180, + 85, + 255, + 33, + 232, + 27, + 1, + 172, + 213, + 25, + 0, + 62, + 176, + 123, + 254, + 32, + 133, + 24, + 255, + 225, + 191, + 62, + 0, + 93, + 70, + 153, + 0, + 181, + 42, + 104, + 1, + 22, + 191, + 224, + 255, + 200, + 200, + 140, + 255, + 249, + 234, + 37, + 0, + 149, + 57, + 141, + 0, + 195, + 56, + 208, + 255, + 254, + 130, + 70, + 255, + 32, + 173, + 240, + 255, + 29, + 220, + 199, + 0, + 110, + 100, + 115, + 255, + 132, + 229, + 249, + 0, + 228, + 233, + 223, + 255, + 37, + 216, + 209, + 254, + 178, + 177, + 209, + 255, + 183, + 45, + 165, + 254, + 224, + 97, + 114, + 0, + 137, + 97, + 168, + 255, + 225, + 222, + 172, + 0, + 165, + 13, + 49, + 1, + 210, + 235, + 204, + 255, + 252, + 4, + 28, + 254, + 70, + 160, + 151, + 0, + 232, + 190, + 52, + 254, + 83, + 248, + 93, + 255, + 62, + 215, + 77, + 1, + 175, + 175, + 179, + 255, + 160, + 50, + 66, + 0, + 121, + 48, + 208, + 0, + 63, + 169, + 209, + 255, + 0, + 210, + 200, + 0, + 224, + 187, + 44, + 1, + 73, + 162, + 82, + 0, + 9, + 176, + 143, + 255, + 19, + 76, + 193, + 255, + 29, + 59, + 167, + 1, + 24, + 43, + 154, + 0, + 28, + 190, + 190, + 0, + 141, + 188, + 129, + 0, + 232, + 235, + 203, + 255, + 234, + 0, + 109, + 255, + 54, + 65, + 159, + 0, + 60, + 88, + 232, + 255, + 121, + 253, + 150, + 254, + 252, + 233, + 131, + 255, + 198, + 110, + 41, + 1, + 83, + 77, + 71, + 255, + 200, + 22, + 59, + 254, + 106, + 253, + 242, + 255, + 21, + 12, + 207, + 255, + 237, + 66, + 189, + 0, + 90, + 198, + 202, + 1, + 225, + 172, + 127, + 0, + 53, + 22, + 202, + 0, + 56, + 230, + 132, + 0, + 1, + 86, + 183, + 0, + 109, + 190, + 42, + 0, + 243, + 68, + 174, + 1, + 109, + 228, + 154, + 0, + 200, + 177, + 122, + 1, + 35, + 160, + 183, + 255, + 177, + 48, + 85, + 255, + 90, + 218, + 169, + 255, + 248, + 152, + 78, + 0, + 202, + 254, + 110, + 0, + 6, + 52, + 43, + 0, + 142, + 98, + 65, + 255, + 63, + 145, + 22, + 0, + 70, + 106, + 93, + 0, + 232, + 138, + 107, + 1, + 110, + 179, + 61, + 255, + 211, + 129, + 218, + 1, + 242, + 209, + 92, + 0, + 35, + 90, + 217, + 1, + 182, + 143, + 106, + 255, + 116, + 101, + 217, + 255, + 114, + 250, + 221, + 255, + 173, + 204, + 6, + 0, + 60, + 150, + 163, + 0, + 73, + 172, + 44, + 255, + 239, + 110, + 80, + 255, + 237, + 76, + 153, + 254, + 161, + 140, + 249, + 0, + 149, + 232, + 229, + 0, + 133, + 31, + 40, + 255, + 174, + 164, + 119, + 0, + 113, + 51, + 214, + 0, + 129, + 228, + 2, + 254, + 64, + 34, + 243, + 0, + 107, + 227, + 244, + 255, + 174, + 106, + 200, + 255, + 84, + 153, + 70, + 1, + 50, + 35, + 16, + 0, + 250, + 74, + 216, + 254, + 236, + 189, + 66, + 255, + 153, + 249, + 13, + 0, + 230, + 178, + 4, + 255, + 221, + 41, + 238, + 0, + 118, + 227, + 121, + 255, + 94, + 87, + 140, + 254, + 254, + 119, + 92, + 0, + 73, + 239, + 246, + 254, + 117, + 87, + 128, + 0, + 19, + 211, + 145, + 255, + 177, + 46, + 252, + 0, + 229, + 91, + 246, + 1, + 69, + 128, + 247, + 255, + 202, + 77, + 54, + 1, + 8, + 11, + 9, + 255, + 153, + 96, + 166, + 0, + 217, + 214, + 173, + 255, + 134, + 192, + 2, + 1, + 0, + 207, + 0, + 0, + 189, + 174, + 107, + 1, + 140, + 134, + 100, + 0, + 158, + 193, + 243, + 1, + 182, + 102, + 171, + 0, + 235, + 154, + 51, + 0, + 142, + 5, + 123, + 255, + 60, + 168, + 89, + 1, + 217, + 14, + 92, + 255, + 19, + 214, + 5, + 1, + 211, + 167, + 254, + 0, + 44, + 6, + 202, + 254, + 120, + 18, + 236, + 255, + 15, + 113, + 184, + 255, + 184, + 223, + 139, + 0, + 40, + 177, + 119, + 254, + 182, + 123, + 90, + 255, + 176, + 165, + 176, + 0, + 247, + 77, + 194, + 0, + 27, + 234, + 120, + 0, + 231, + 0, + 214, + 255, + 59, + 39, + 30, + 0, + 125, + 99, + 145, + 255, + 150, + 68, + 68, + 1, + 141, + 222, + 248, + 0, + 153, + 123, + 210, + 255, + 110, + 127, + 152, + 255, + 229, + 33, + 214, + 1, + 135, + 221, + 197, + 0, + 137, + 97, + 2, + 0, + 12, + 143, + 204, + 255, + 81, + 41, + 188, + 0, + 115, + 79, + 130, + 255, + 94, + 3, + 132, + 0, + 152, + 175, + 187, + 255, + 124, + 141, + 10, + 255, + 126, + 192, + 179, + 255, + 11, + 103, + 198, + 0, + 149, + 6, + 45, + 0, + 219, + 85, + 187, + 1, + 230, + 18, + 178, + 255, + 72, + 182, + 152, + 0, + 3, + 198, + 184, + 255, + 128, + 112, + 224, + 1, + 97, + 161, + 230, + 0, + 254, + 99, + 38, + 255, + 58, + 159, + 197, + 0, + 151, + 66, + 219, + 0, + 59, + 69, + 143, + 255, + 185, + 112, + 249, + 0, + 119, + 136, + 47, + 255, + 123, + 130, + 132, + 0, + 168, + 71, + 95, + 255, + 113, + 176, + 40, + 1, + 232, + 185, + 173, + 0, + 207, + 93, + 117, + 1, + 68, + 157, + 108, + 255, + 102, + 5, + 147, + 254, + 49, + 97, + 33, + 0, + 89, + 65, + 111, + 254, + 247, + 30, + 163, + 255, + 124, + 217, + 221, + 1, + 102, + 250, + 216, + 0, + 198, + 174, + 75, + 254, + 57, + 55, + 18, + 0, + 227, + 5, + 236, + 1, + 229, + 213, + 173, + 0, + 201, + 109, + 218, + 1, + 49, + 233, + 239, + 0, + 30, + 55, + 158, + 1, + 25, + 178, + 106, + 0, + 155, + 111, + 188, + 1, + 94, + 126, + 140, + 0, + 215, + 31, + 238, + 1, + 77, + 240, + 16, + 0, + 213, + 242, + 25, + 1, + 38, + 71, + 168, + 0, + 205, + 186, + 93, + 254, + 49, + 211, + 140, + 255, + 219, + 0, + 180, + 255, + 134, + 118, + 165, + 0, + 160, + 147, + 134, + 255, + 110, + 186, + 35, + 255, + 198, + 243, + 42, + 0, + 243, + 146, + 119, + 0, + 134, + 235, + 163, + 1, + 4, + 241, + 135, + 255, + 193, + 46, + 193, + 254, + 103, + 180, + 79, + 255, + 225, + 4, + 184, + 254, + 242, + 118, + 130, + 0, + 146, + 135, + 176, + 1, + 234, + 111, + 30, + 0, + 69, + 66, + 213, + 254, + 41, + 96, + 123, + 0, + 121, + 94, + 42, + 255, + 178, + 191, + 195, + 255, + 46, + 130, + 42, + 0, + 117, + 84, + 8, + 255, + 233, + 49, + 214, + 254, + 238, + 122, + 109, + 0, + 6, + 71, + 89, + 1, + 236, + 211, + 123, + 0, + 244, + 13, + 48, + 254, + 119, + 148, + 14, + 0, + 114, + 28, + 86, + 255, + 75, + 237, + 25, + 255, + 145, + 229, + 16, + 254, + 129, + 100, + 53, + 255, + 134, + 150, + 120, + 254, + 168, + 157, + 50, + 0, + 23, + 72, + 104, + 255, + 224, + 49, + 14, + 0, + 255, + 123, + 22, + 255, + 151, + 185, + 151, + 255, + 170, + 80, + 184, + 1, + 134, + 182, + 20, + 0, + 41, + 100, + 101, + 1, + 153, + 33, + 16, + 0, + 76, + 154, + 111, + 1, + 86, + 206, + 234, + 255, + 192, + 160, + 164, + 254, + 165, + 123, + 93, + 255, + 1, + 216, + 164, + 254, + 67, + 17, + 175, + 255, + 169, + 11, + 59, + 255, + 158, + 41, + 61, + 255, + 73, + 188, + 14, + 255, + 195, + 6, + 137, + 255, + 22, + 147, + 29, + 255, + 20, + 103, + 3, + 255, + 246, + 130, + 227, + 255, + 122, + 40, + 128, + 0, + 226, + 47, + 24, + 254, + 35, + 36, + 32, + 0, + 152, + 186, + 183, + 255, + 69, + 202, + 20, + 0, + 195, + 133, + 195, + 0, + 222, + 51, + 247, + 0, + 169, + 171, + 94, + 1, + 183, + 0, + 160, + 255, + 64, + 205, + 18, + 1, + 156, + 83, + 15, + 255, + 197, + 58, + 249, + 254, + 251, + 89, + 110, + 255, + 50, + 10, + 88, + 254, + 51, + 43, + 216, + 0, + 98, + 242, + 198, + 1, + 245, + 151, + 113, + 0, + 171, + 236, + 194, + 1, + 197, + 31, + 199, + 255, + 229, + 81, + 38, + 1, + 41, + 59, + 20, + 0, + 253, + 104, + 230, + 0, + 152, + 93, + 14, + 255, + 246, + 242, + 146, + 254, + 214, + 169, + 240, + 255, + 240, + 102, + 108, + 254, + 160, + 167, + 236, + 0, + 154, + 218, + 188, + 0, + 150, + 233, + 202, + 255, + 27, + 19, + 250, + 1, + 2, + 71, + 133, + 255, + 175, + 12, + 63, + 1, + 145, + 183, + 198, + 0, + 104, + 120, + 115, + 255, + 130, + 251, + 247, + 0, + 17, + 212, + 167, + 255, + 62, + 123, + 132, + 255, + 247, + 100, + 189, + 0, + 155, + 223, + 152, + 0, + 143, + 197, + 33, + 0, + 155, + 59, + 44, + 255, + 150, + 93, + 240, + 1, + 127, + 3, + 87, + 255, + 95, + 71, + 207, + 1, + 167, + 85, + 1, + 255, + 188, + 152, + 116, + 255, + 10, + 23, + 23, + 0, + 137, + 195, + 93, + 1, + 54, + 98, + 97, + 0, + 240, + 0, + 168, + 255, + 148, + 188, + 127, + 0, + 134, + 107, + 151, + 0, + 76, + 253, + 171, + 0, + 90, + 132, + 192, + 0, + 146, + 22, + 54, + 0, + 224, + 66, + 54, + 254, + 230, + 186, + 229, + 255, + 39, + 182, + 196, + 0, + 148, + 251, + 130, + 255, + 65, + 131, + 108, + 254, + 128, + 1, + 160, + 0, + 169, + 49, + 167, + 254, + 199, + 254, + 148, + 255, + 251, + 6, + 131, + 0, + 187, + 254, + 129, + 255, + 85, + 82, + 62, + 0, + 178, + 23, + 58, + 255, + 254, + 132, + 5, + 0, + 164, + 213, + 39, + 0, + 134, + 252, + 146, + 254, + 37, + 53, + 81, + 255, + 155, + 134, + 82, + 0, + 205, + 167, + 238, + 255, + 94, + 45, + 180, + 255, + 132, + 40, + 161, + 0, + 254, + 111, + 112, + 1, + 54, + 75, + 217, + 0, + 179, + 230, + 221, + 1, + 235, + 94, + 191, + 255, + 23, + 243, + 48, + 1, + 202, + 145, + 203, + 255, + 39, + 118, + 42, + 255, + 117, + 141, + 253, + 0, + 254, + 0, + 222, + 0, + 43, + 251, + 50, + 0, + 54, + 169, + 234, + 1, + 80, + 68, + 208, + 0, + 148, + 203, + 243, + 254, + 145, + 7, + 135, + 0, + 6, + 254, + 0, + 0, + 252, + 185, + 127, + 0, + 98, + 8, + 129, + 255, + 38, + 35, + 72, + 255, + 211, + 36, + 220, + 1, + 40, + 26, + 89, + 0, + 168, + 64, + 197, + 254, + 3, + 222, + 239, + 255, + 2, + 83, + 215, + 254, + 180, + 159, + 105, + 0, + 58, + 115, + 194, + 0, + 186, + 116, + 106, + 255, + 229, + 247, + 219, + 255, + 129, + 118, + 193, + 0, + 202, + 174, + 183, + 1, + 166, + 161, + 72, + 0, + 201, + 107, + 147, + 254, + 237, + 136, + 74, + 0, + 233, + 230, + 106, + 1, + 105, + 111, + 168, + 0, + 64, + 224, + 30, + 1, + 1, + 229, + 3, + 0, + 102, + 151, + 175, + 255, + 194, + 238, + 228, + 255, + 254, + 250, + 212, + 0, + 187, + 237, + 121, + 0, + 67, + 251, + 96, + 1, + 197, + 30, + 11, + 0, + 183, + 95, + 204, + 0, + 205, + 89, + 138, + 0, + 64, + 221, + 37, + 1, + 255, + 223, + 30, + 255, + 178, + 48, + 211, + 255, + 241, + 200, + 90, + 255, + 167, + 209, + 96, + 255, + 57, + 130, + 221, + 0, + 46, + 114, + 200, + 255, + 61, + 184, + 66, + 0, + 55, + 182, + 24, + 254, + 110, + 182, + 33, + 0, + 171, + 190, + 232, + 255, + 114, + 94, + 31, + 0, + 18, + 221, + 8, + 0, + 47, + 231, + 254, + 0, + 255, + 112, + 83, + 0, + 118, + 15, + 215, + 255, + 173, + 25, + 40, + 254, + 192, + 193, + 31, + 255, + 238, + 21, + 146, + 255, + 171, + 193, + 118, + 255, + 101, + 234, + 53, + 254, + 131, + 212, + 112, + 0, + 89, + 192, + 107, + 1, + 8, + 208, + 27, + 0, + 181, + 217, + 15, + 255, + 231, + 149, + 232, + 0, + 140, + 236, + 126, + 0, + 144, + 9, + 199, + 255, + 12, + 79, + 181, + 254, + 147, + 182, + 202, + 255, + 19, + 109, + 182, + 255, + 49, + 212, + 225, + 0, + 74, + 163, + 203, + 0, + 175, + 233, + 148, + 0, + 26, + 112, + 51, + 0, + 193, + 193, + 9, + 255, + 15, + 135, + 249, + 0, + 150, + 227, + 130, + 0, + 204, + 0, + 219, + 1, + 24, + 242, + 205, + 0, + 238, + 208, + 117, + 255, + 22, + 244, + 112, + 0, + 26, + 229, + 34, + 0, + 37, + 80, + 188, + 255, + 38, + 45, + 206, + 254, + 240, + 90, + 225, + 255, + 29, + 3, + 47, + 255, + 42, + 224, + 76, + 0, + 186, + 243, + 167, + 0, + 32, + 132, + 15, + 255, + 5, + 51, + 125, + 0, + 139, + 135, + 24, + 0, + 6, + 241, + 219, + 0, + 172, + 229, + 133, + 255, + 246, + 214, + 50, + 0, + 231, + 11, + 207, + 255, + 191, + 126, + 83, + 1, + 180, + 163, + 170, + 255, + 245, + 56, + 24, + 1, + 178, + 164, + 211, + 255, + 3, + 16, + 202, + 1, + 98, + 57, + 118, + 255, + 141, + 131, + 89, + 254, + 33, + 51, + 24, + 0, + 243, + 149, + 91, + 255, + 253, + 52, + 14, + 0, + 35, + 169, + 67, + 254, + 49, + 30, + 88, + 255, + 179, + 27, + 36, + 255, + 165, + 140, + 183, + 0, + 58, + 189, + 151, + 0, + 88, + 31, + 0, + 0, + 75, + 169, + 66, + 0, + 66, + 101, + 199, + 255, + 24, + 216, + 199, + 1, + 121, + 196, + 26, + 255, + 14, + 79, + 203, + 254, + 240, + 226, + 81, + 255, + 94, + 28, + 10, + 255, + 83, + 193, + 240, + 255, + 204, + 193, + 131, + 255, + 94, + 15, + 86, + 0, + 218, + 40, + 157, + 0, + 51, + 193, + 209, + 0, + 0, + 242, + 177, + 0, + 102, + 185, + 247, + 0, + 158, + 109, + 116, + 0, + 38, + 135, + 91, + 0, + 223, + 175, + 149, + 0, + 220, + 66, + 1, + 255, + 86, + 60, + 232, + 0, + 25, + 96, + 37, + 255, + 225, + 122, + 162, + 1, + 215, + 187, + 168, + 255, + 158, + 157, + 46, + 0, + 56, + 171, + 162, + 0, + 232, + 240, + 101, + 1, + 122, + 22, + 9, + 0, + 51, + 9, + 21, + 255, + 53, + 25, + 238, + 255, + 217, + 30, + 232, + 254, + 125, + 169, + 148, + 0, + 13, + 232, + 102, + 0, + 148, + 9, + 37, + 0, + 165, + 97, + 141, + 1, + 228, + 131, + 41, + 0, + 222, + 15, + 243, + 255, + 254, + 18, + 17, + 0, + 6, + 60, + 237, + 1, + 106, + 3, + 113, + 0, + 59, + 132, + 189, + 0, + 92, + 112, + 30, + 0, + 105, + 208, + 213, + 0, + 48, + 84, + 179, + 255, + 187, + 121, + 231, + 254, + 27, + 216, + 109, + 255, + 162, + 221, + 107, + 254, + 73, + 239, + 195, + 255, + 250, + 31, + 57, + 255, + 149, + 135, + 89, + 255, + 185, + 23, + 115, + 1, + 3, + 163, + 157, + 255, + 18, + 112, + 250, + 0, + 25, + 57, + 187, + 255, + 161, + 96, + 164, + 0, + 47, + 16, + 243, + 0, + 12, + 141, + 251, + 254, + 67, + 234, + 184, + 255, + 41, + 18, + 161, + 0, + 175, + 6, + 96, + 255, + 160, + 172, + 52, + 254, + 24, + 176, + 183, + 255, + 198, + 193, + 85, + 1, + 124, + 121, + 137, + 255, + 151, + 50, + 114, + 255, + 220, + 203, + 60, + 255, + 207, + 239, + 5, + 1, + 0, + 38, + 107, + 255, + 55, + 238, + 94, + 254, + 70, + 152, + 94, + 0, + 213, + 220, + 77, + 1, + 120, + 17, + 69, + 255, + 85, + 164, + 190, + 255, + 203, + 234, + 81, + 0, + 38, + 49, + 37, + 254, + 61, + 144, + 124, + 0, + 137, + 78, + 49, + 254, + 168, + 247, + 48, + 0, + 95, + 164, + 252, + 0, + 105, + 169, + 135, + 0, + 253, + 228, + 134, + 0, + 64, + 166, + 75, + 0, + 81, + 73, + 20, + 255, + 207, + 210, + 10, + 0, + 234, + 106, + 150, + 255, + 94, + 34, + 90, + 255, + 254, + 159, + 57, + 254, + 220, + 133, + 99, + 0, + 139, + 147, + 180, + 254, + 24, + 23, + 185, + 0, + 41, + 57, + 30, + 255, + 189, + 97, + 76, + 0, + 65, + 187, + 223, + 255, + 224, + 172, + 37, + 255, + 34, + 62, + 95, + 1, + 231, + 144, + 240, + 0, + 77, + 106, + 126, + 254, + 64, + 152, + 91, + 0, + 29, + 98, + 155, + 0, + 226, + 251, + 53, + 255, + 234, + 211, + 5, + 255, + 144, + 203, + 222, + 255, + 164, + 176, + 221, + 254, + 5, + 231, + 24, + 0, + 179, + 122, + 205, + 0, + 36, + 1, + 134, + 255, + 125, + 70, + 151, + 254, + 97, + 228, + 252, + 0, + 172, + 129, + 23, + 254, + 48, + 90, + 209, + 255, + 150, + 224, + 82, + 1, + 84, + 134, + 30, + 0, + 241, + 196, + 46, + 0, + 103, + 113, + 234, + 255, + 46, + 101, + 121, + 254, + 40, + 124, + 250, + 255, + 135, + 45, + 242, + 254, + 9, + 249, + 168, + 255, + 140, + 108, + 131, + 255, + 143, + 163, + 171, + 0, + 50, + 173, + 199, + 255, + 88, + 222, + 142, + 255, + 200, + 95, + 158, + 0, + 142, + 192, + 163, + 255, + 7, + 117, + 135, + 0, + 111, + 124, + 22, + 0, + 236, + 12, + 65, + 254, + 68, + 38, + 65, + 255, + 227, + 174, + 254, + 0, + 244, + 245, + 38, + 0, + 240, + 50, + 208, + 255, + 161, + 63, + 250, + 0, + 60, + 209, + 239, + 0, + 122, + 35, + 19, + 0, + 14, + 33, + 230, + 254, + 2, + 159, + 113, + 0, + 106, + 20, + 127, + 255, + 228, + 205, + 96, + 0, + 137, + 210, + 174, + 254, + 180, + 212, + 144, + 255, + 89, + 98, + 154, + 1, + 34, + 88, + 139, + 0, + 167, + 162, + 112, + 1, + 65, + 110, + 197, + 0, + 241, + 37, + 169, + 0, + 66, + 56, + 131, + 255, + 10, + 201, + 83, + 254, + 133, + 253, + 187, + 255, + 177, + 112, + 45, + 254, + 196, + 251, + 0, + 0, + 196, + 250, + 151, + 255, + 238, + 232, + 214, + 255, + 150, + 209, + 205, + 0, + 28, + 240, + 118, + 0, + 71, + 76, + 83, + 1, + 236, + 99, + 91, + 0, + 42, + 250, + 131, + 1, + 96, + 18, + 64, + 255, + 118, + 222, + 35, + 0, + 113, + 214, + 203, + 255, + 122, + 119, + 184, + 255, + 66, + 19, + 36, + 0, + 204, + 64, + 249, + 0, + 146, + 89, + 139, + 0, + 134, + 62, + 135, + 1, + 104, + 233, + 101, + 0, + 188, + 84, + 26, + 0, + 49, + 249, + 129, + 0, + 208, + 214, + 75, + 255, + 207, + 130, + 77, + 255, + 115, + 175, + 235, + 0, + 171, + 2, + 137, + 255, + 175, + 145, + 186, + 1, + 55, + 245, + 135, + 255, + 154, + 86, + 181, + 1, + 100, + 58, + 246, + 255, + 109, + 199, + 60, + 255, + 82, + 204, + 134, + 255, + 215, + 49, + 230, + 1, + 140, + 229, + 192, + 255, + 222, + 193, + 251, + 255, + 81, + 136, + 15, + 255, + 179, + 149, + 162, + 255, + 23, + 39, + 29, + 255, + 7, + 95, + 75, + 254, + 191, + 81, + 222, + 0, + 241, + 81, + 90, + 255, + 107, + 49, + 201, + 255, + 244, + 211, + 157, + 0, + 222, + 140, + 149, + 255, + 65, + 219, + 56, + 254, + 189, + 246, + 90, + 255, + 178, + 59, + 157, + 1, + 48, + 219, + 52, + 0, + 98, + 34, + 215, + 0, + 28, + 17, + 187, + 255, + 175, + 169, + 24, + 0, + 92, + 79, + 161, + 255, + 236, + 200, + 194, + 1, + 147, + 143, + 234, + 0, + 229, + 225, + 7, + 1, + 197, + 168, + 14, + 0, + 235, + 51, + 53, + 1, + 253, + 120, + 174, + 0, + 197, + 6, + 168, + 255, + 202, + 117, + 171, + 0, + 163, + 21, + 206, + 0, + 114, + 85, + 90, + 255, + 15, + 41, + 10, + 255, + 194, + 19, + 99, + 0, + 65, + 55, + 216, + 254, + 162, + 146, + 116, + 0, + 50, + 206, + 212, + 255, + 64, + 146, + 29, + 255, + 158, + 158, + 131, + 1, + 100, + 165, + 130, + 255, + 172, + 23, + 129, + 255, + 125, + 53, + 9, + 255, + 15, + 193, + 18, + 1, + 26, + 49, + 11, + 255, + 181, + 174, + 201, + 1, + 135, + 201, + 14, + 255, + 100, + 19, + 149, + 0, + 219, + 98, + 79, + 0, + 42, + 99, + 143, + 254, + 96, + 0, + 48, + 255, + 197, + 249, + 83, + 254, + 104, + 149, + 79, + 255, + 235, + 110, + 136, + 254, + 82, + 128, + 44, + 255, + 65, + 41, + 36, + 254, + 88, + 211, + 10, + 0, + 187, + 121, + 187, + 0, + 98, + 134, + 199, + 0, + 171, + 188, + 179, + 254, + 210, + 11, + 238, + 255, + 66, + 123, + 130, + 254, + 52, + 234, + 61, + 0, + 48, + 113, + 23, + 254, + 6, + 86, + 120, + 255, + 119, + 178, + 245, + 0, + 87, + 129, + 201, + 0, + 242, + 141, + 209, + 0, + 202, + 114, + 85, + 0, + 148, + 22, + 161, + 0, + 103, + 195, + 48, + 0, + 25, + 49, + 171, + 255, + 138, + 67, + 130, + 0, + 182, + 73, + 122, + 254, + 148, + 24, + 130, + 0, + 211, + 229, + 154, + 0, + 32, + 155, + 158, + 0, + 84, + 105, + 61, + 0, + 177, + 194, + 9, + 255, + 166, + 89, + 86, + 1, + 54, + 83, + 187, + 0, + 249, + 40, + 117, + 255, + 109, + 3, + 215, + 255, + 53, + 146, + 44, + 1, + 63, + 47, + 179, + 0, + 194, + 216, + 3, + 254, + 14, + 84, + 136, + 0, + 136, + 177, + 13, + 255, + 72, + 243, + 186, + 255, + 117, + 17, + 125, + 255, + 211, + 58, + 211, + 255, + 93, + 79, + 223, + 0, + 90, + 88, + 245, + 255, + 139, + 209, + 111, + 255, + 70, + 222, + 47, + 0, + 10, + 246, + 79, + 255, + 198, + 217, + 178, + 0, + 227, + 225, + 11, + 1, + 78, + 126, + 179, + 255, + 62, + 43, + 126, + 0, + 103, + 148, + 35, + 0, + 129, + 8, + 165, + 254, + 245, + 240, + 148, + 0, + 61, + 51, + 142, + 0, + 81, + 208, + 134, + 0, + 15, + 137, + 115, + 255, + 211, + 119, + 236, + 255, + 159, + 245, + 248, + 255, + 2, + 134, + 136, + 255, + 230, + 139, + 58, + 1, + 160, + 164, + 254, + 0, + 114, + 85, + 141, + 255, + 49, + 166, + 182, + 255, + 144, + 70, + 84, + 1, + 85, + 182, + 7, + 0, + 46, + 53, + 93, + 0, + 9, + 166, + 161, + 255, + 55, + 162, + 178, + 255, + 45, + 184, + 188, + 0, + 146, + 28, + 44, + 254, + 169, + 90, + 49, + 0, + 120, + 178, + 241, + 1, + 14, + 123, + 127, + 255, + 7, + 241, + 199, + 1, + 189, + 66, + 50, + 255, + 198, + 143, + 101, + 254, + 189, + 243, + 135, + 255, + 141, + 24, + 24, + 254, + 75, + 97, + 87, + 0, + 118, + 251, + 154, + 1, + 237, + 54, + 156, + 0, + 171, + 146, + 207, + 255, + 131, + 196, + 246, + 255, + 136, + 64, + 113, + 1, + 151, + 232, + 57, + 0, + 240, + 218, + 115, + 0, + 49, + 61, + 27, + 255, + 64, + 129, + 73, + 1, + 252, + 169, + 27, + 255, + 40, + 132, + 10, + 1, + 90, + 201, + 193, + 255, + 252, + 121, + 240, + 1, + 186, + 206, + 41, + 0, + 43, + 198, + 97, + 0, + 145, + 100, + 183, + 0, + 204, + 216, + 80, + 254, + 172, + 150, + 65, + 0, + 249, + 229, + 196, + 254, + 104, + 123, + 73, + 255, + 77, + 104, + 96, + 254, + 130, + 180, + 8, + 0, + 104, + 123, + 57, + 0, + 220, + 202, + 229, + 255, + 102, + 249, + 211, + 0, + 86, + 14, + 232, + 255, + 182, + 78, + 209, + 0, + 239, + 225, + 164, + 0, + 106, + 13, + 32, + 255, + 120, + 73, + 17, + 255, + 134, + 67, + 233, + 0, + 83, + 254, + 181, + 0, + 183, + 236, + 112, + 1, + 48, + 64, + 131, + 255, + 241, + 216, + 243, + 255, + 65, + 193, + 226, + 0, + 206, + 241, + 100, + 254, + 100, + 134, + 166, + 255, + 237, + 202, + 197, + 0, + 55, + 13, + 81, + 0, + 32, + 124, + 102, + 255, + 40, + 228, + 177, + 0, + 118, + 181, + 31, + 1, + 231, + 160, + 134, + 255, + 119, + 187, + 202, + 0, + 0, + 142, + 60, + 255, + 128, + 38, + 189, + 255, + 166, + 201, + 150, + 0, + 207, + 120, + 26, + 1, + 54, + 184, + 172, + 0, + 12, + 242, + 204, + 254, + 133, + 66, + 230, + 0, + 34, + 38, + 31, + 1, + 184, + 112, + 80, + 0, + 32, + 51, + 165, + 254, + 191, + 243, + 55, + 0, + 58, + 73, + 146, + 254, + 155, + 167, + 205, + 255, + 100, + 104, + 152, + 255, + 197, + 254, + 207, + 255, + 173, + 19, + 247, + 0, + 238, + 10, + 202, + 0, + 239, + 151, + 242, + 0, + 94, + 59, + 39, + 255, + 240, + 29, + 102, + 255, + 10, + 92, + 154, + 255, + 229, + 84, + 219, + 255, + 161, + 129, + 80, + 0, + 208, + 90, + 204, + 1, + 240, + 219, + 174, + 255, + 158, + 102, + 145, + 1, + 53, + 178, + 76, + 255, + 52, + 108, + 168, + 1, + 83, + 222, + 107, + 0, + 211, + 36, + 109, + 0, + 118, + 58, + 56, + 0, + 8, + 29, + 22, + 0, + 237, + 160, + 199, + 0, + 170, + 209, + 157, + 0, + 137, + 71, + 47, + 0, + 143, + 86, + 32, + 0, + 198, + 242, + 2, + 0, + 212, + 48, + 136, + 1, + 92, + 172, + 186, + 0, + 230, + 151, + 105, + 1, + 96, + 191, + 229, + 0, + 138, + 80, + 191, + 254, + 240, + 216, + 130, + 255, + 98, + 43, + 6, + 254, + 168, + 196, + 49, + 0, + 253, + 18, + 91, + 1, + 144, + 73, + 121, + 0, + 61, + 146, + 39, + 1, + 63, + 104, + 24, + 255, + 184, + 165, + 112, + 254, + 126, + 235, + 98, + 0, + 80, + 213, + 98, + 255, + 123, + 60, + 87, + 255, + 82, + 140, + 245, + 1, + 223, + 120, + 173, + 255, + 15, + 198, + 134, + 1, + 206, + 60, + 239, + 0, + 231, + 234, + 92, + 255, + 33, + 238, + 19, + 255, + 165, + 113, + 142, + 1, + 176, + 119, + 38, + 0, + 160, + 43, + 166, + 254, + 239, + 91, + 105, + 0, + 107, + 61, + 194, + 1, + 25, + 4, + 68, + 0, + 15, + 139, + 51, + 0, + 164, + 132, + 106, + 255, + 34, + 116, + 46, + 254, + 168, + 95, + 197, + 0, + 137, + 212, + 23, + 0, + 72, + 156, + 58, + 0, + 137, + 112, + 69, + 254, + 150, + 105, + 154, + 255, + 236, + 201, + 157, + 0, + 23, + 212, + 154, + 255, + 136, + 82, + 227, + 254, + 226, + 59, + 221, + 255, + 95, + 149, + 192, + 0, + 81, + 118, + 52, + 255, + 33, + 43, + 215, + 1, + 14, + 147, + 75, + 255, + 89, + 156, + 121, + 254, + 14, + 18, + 79, + 0, + 147, + 208, + 139, + 1, + 151, + 218, + 62, + 255, + 156, + 88, + 8, + 1, + 210, + 184, + 98, + 255, + 20, + 175, + 123, + 255, + 102, + 83, + 229, + 0, + 220, + 65, + 116, + 1, + 150, + 250, + 4, + 255, + 92, + 142, + 220, + 255, + 34, + 247, + 66, + 255, + 204, + 225, + 179, + 254, + 151, + 81, + 151, + 0, + 71, + 40, + 236, + 255, + 138, + 63, + 62, + 0, + 6, + 79, + 240, + 255, + 183, + 185, + 181, + 0, + 118, + 50, + 27, + 0, + 63, + 227, + 192, + 0, + 123, + 99, + 58, + 1, + 50, + 224, + 155, + 255, + 17, + 225, + 223, + 254, + 220, + 224, + 77, + 255, + 14, + 44, + 123, + 1, + 141, + 128, + 175, + 0, + 248, + 212, + 200, + 0, + 150, + 59, + 183, + 255, + 147, + 97, + 29, + 0, + 150, + 204, + 181, + 0, + 253, + 37, + 71, + 0, + 145, + 85, + 119, + 0, + 154, + 200, + 186, + 0, + 2, + 128, + 249, + 255, + 83, + 24, + 124, + 0, + 14, + 87, + 143, + 0, + 168, + 51, + 245, + 1, + 124, + 151, + 231, + 255, + 208, + 240, + 197, + 1, + 124, + 190, + 185, + 0, + 48, + 58, + 246, + 0, + 20, + 233, + 232, + 0, + 125, + 18, + 98, + 255, + 13, + 254, + 31, + 255, + 245, + 177, + 130, + 255, + 108, + 142, + 35, + 0, + 171, + 125, + 242, + 254, + 140, + 12, + 34, + 255, + 165, + 161, + 162, + 0, + 206, + 205, + 101, + 0, + 247, + 25, + 34, + 1, + 100, + 145, + 57, + 0, + 39, + 70, + 57, + 0, + 118, + 204, + 203, + 255, + 242, + 0, + 162, + 0, + 165, + 244, + 30, + 0, + 198, + 116, + 226, + 0, + 128, + 111, + 153, + 255, + 140, + 54, + 182, + 1, + 60, + 122, + 15, + 255, + 155, + 58, + 57, + 1, + 54, + 50, + 198, + 0, + 171, + 211, + 29, + 255, + 107, + 138, + 167, + 255, + 173, + 107, + 199, + 255, + 109, + 161, + 193, + 0, + 89, + 72, + 242, + 255, + 206, + 115, + 89, + 255, + 250, + 254, + 142, + 254, + 177, + 202, + 94, + 255, + 81, + 89, + 50, + 0, + 7, + 105, + 66, + 255, + 25, + 254, + 255, + 254, + 203, + 64, + 23, + 255, + 79, + 222, + 108, + 255, + 39, + 249, + 75, + 0, + 241, + 124, + 50, + 0, + 239, + 152, + 133, + 0, + 221, + 241, + 105, + 0, + 147, + 151, + 98, + 0, + 213, + 161, + 121, + 254, + 242, + 49, + 137, + 0, + 233, + 37, + 249, + 254, + 42, + 183, + 27, + 0, + 184, + 119, + 230, + 255, + 217, + 32, + 163, + 255, + 208, + 251, + 228, + 1, + 137, + 62, + 131, + 255, + 79, + 64, + 9, + 254, + 94, + 48, + 113, + 0, + 17, + 138, + 50, + 254, + 193, + 255, + 22, + 0, + 247, + 18, + 197, + 1, + 67, + 55, + 104, + 0, + 16, + 205, + 95, + 255, + 48, + 37, + 66, + 0, + 55, + 156, + 63, + 1, + 64, + 82, + 74, + 255, + 200, + 53, + 71, + 254, + 239, + 67, + 125, + 0, + 26, + 224, + 222, + 0, + 223, + 137, + 93, + 255, + 30, + 224, + 202, + 255, + 9, + 220, + 132, + 0, + 198, + 38, + 235, + 1, + 102, + 141, + 86, + 0, + 60, + 43, + 81, + 1, + 136, + 28, + 26, + 0, + 233, + 36, + 8, + 254, + 207, + 242, + 148, + 0, + 164, + 162, + 63, + 0, + 51, + 46, + 224, + 255, + 114, + 48, + 79, + 255, + 9, + 175, + 226, + 0, + 222, + 3, + 193, + 255, + 47, + 160, + 232, + 255, + 255, + 93, + 105, + 254, + 14, + 42, + 230, + 0, + 26, + 138, + 82, + 1, + 208, + 43, + 244, + 0, + 27, + 39, + 38, + 255, + 98, + 208, + 127, + 255, + 64, + 149, + 182, + 255, + 5, + 250, + 209, + 0, + 187, + 60, + 28, + 254, + 49, + 25, + 218, + 255, + 169, + 116, + 205, + 255, + 119, + 18, + 120, + 0, + 156, + 116, + 147, + 255, + 132, + 53, + 109, + 255, + 13, + 10, + 202, + 0, + 110, + 83, + 167, + 0, + 157, + 219, + 137, + 255, + 6, + 3, + 130, + 255, + 50, + 167, + 30, + 255, + 60, + 159, + 47, + 255, + 129, + 128, + 157, + 254, + 94, + 3, + 189, + 0, + 3, + 166, + 68, + 0, + 83, + 223, + 215, + 0, + 150, + 90, + 194, + 1, + 15, + 168, + 65, + 0, + 227, + 83, + 51, + 255, + 205, + 171, + 66, + 255, + 54, + 187, + 60, + 1, + 152, + 102, + 45, + 255, + 119, + 154, + 225, + 0, + 240, + 247, + 136, + 0, + 100, + 197, + 178, + 255, + 139, + 71, + 223, + 255, + 204, + 82, + 16, + 1, + 41, + 206, + 42, + 255, + 156, + 192, + 221, + 255, + 216, + 123, + 244, + 255, + 218, + 218, + 185, + 255, + 187, + 186, + 239, + 255, + 252, + 172, + 160, + 255, + 195, + 52, + 22, + 0, + 144, + 174, + 181, + 254, + 187, + 100, + 115, + 255, + 211, + 78, + 176, + 255, + 27, + 7, + 193, + 0, + 147, + 213, + 104, + 255, + 90, + 201, + 10, + 255, + 80, + 123, + 66, + 1, + 22, + 33, + 186, + 0, + 1, + 7, + 99, + 254, + 30, + 206, + 10, + 0, + 229, + 234, + 5, + 0, + 53, + 30, + 210, + 0, + 138, + 8, + 220, + 254, + 71, + 55, + 167, + 0, + 72, + 225, + 86, + 1, + 118, + 190, + 188, + 0, + 254, + 193, + 101, + 1, + 171, + 249, + 172, + 255, + 94, + 158, + 183, + 254, + 93, + 2, + 108, + 255, + 176, + 93, + 76, + 255, + 73, + 99, + 79, + 255, + 74, + 64, + 129, + 254, + 246, + 46, + 65, + 0, + 99, + 241, + 127, + 254, + 246, + 151, + 102, + 255, + 44, + 53, + 208, + 254, + 59, + 102, + 234, + 0, + 154, + 175, + 164, + 255, + 88, + 242, + 32, + 0, + 111, + 38, + 1, + 0, + 255, + 182, + 190, + 255, + 115, + 176, + 15, + 254, + 169, + 60, + 129, + 0, + 122, + 237, + 241, + 0, + 90, + 76, + 63, + 0, + 62, + 74, + 120, + 255, + 122, + 195, + 110, + 0, + 119, + 4, + 178, + 0, + 222, + 242, + 210, + 0, + 130, + 33, + 46, + 254, + 156, + 40, + 41, + 0, + 167, + 146, + 112, + 1, + 49, + 163, + 111, + 255, + 121, + 176, + 235, + 0, + 76, + 207, + 14, + 255, + 3, + 25, + 198, + 1, + 41, + 235, + 213, + 0, + 85, + 36, + 214, + 1, + 49, + 92, + 109, + 255, + 200, + 24, + 30, + 254, + 168, + 236, + 195, + 0, + 145, + 39, + 124, + 1, + 236, + 195, + 149, + 0, + 90, + 36, + 184, + 255, + 67, + 85, + 170, + 255, + 38, + 35, + 26, + 254, + 131, + 124, + 68, + 255, + 239, + 155, + 35, + 255, + 54, + 201, + 164, + 0, + 196, + 22, + 117, + 255, + 49, + 15, + 205, + 0, + 24, + 224, + 29, + 1, + 126, + 113, + 144, + 0, + 117, + 21, + 182, + 0, + 203, + 159, + 141, + 0, + 223, + 135, + 77, + 0, + 176, + 230, + 176, + 255, + 190, + 229, + 215, + 255, + 99, + 37, + 181, + 255, + 51, + 21, + 138, + 255, + 25, + 189, + 89, + 255, + 49, + 48, + 165, + 254, + 152, + 45, + 247, + 0, + 170, + 108, + 222, + 0, + 80, + 202, + 5, + 0, + 27, + 69, + 103, + 254, + 204, + 22, + 129, + 255, + 180, + 252, + 62, + 254, + 210, + 1, + 91, + 255, + 146, + 110, + 254, + 255, + 219, + 162, + 28, + 0, + 223, + 252, + 213, + 1, + 59, + 8, + 33, + 0, + 206, + 16, + 244, + 0, + 129, + 211, + 48, + 0, + 107, + 160, + 208, + 0, + 112, + 59, + 209, + 0, + 109, + 77, + 216, + 254, + 34, + 21, + 185, + 255, + 246, + 99, + 56, + 255, + 179, + 139, + 19, + 255, + 185, + 29, + 50, + 255, + 84, + 89, + 19, + 0, + 74, + 250, + 98, + 255, + 225, + 42, + 200, + 255, + 192, + 217, + 205, + 255, + 210, + 16, + 167, + 0, + 99, + 132, + 95, + 1, + 43, + 230, + 57, + 0, + 254, + 11, + 203, + 255, + 99, + 188, + 63, + 255, + 119, + 193, + 251, + 254, + 80, + 105, + 54, + 0, + 232, + 181, + 189, + 1, + 183, + 69, + 112, + 255, + 208, + 171, + 165, + 255, + 47, + 109, + 180, + 255, + 123, + 83, + 165, + 0, + 146, + 162, + 52, + 255, + 154, + 11, + 4, + 255, + 151, + 227, + 90, + 255, + 146, + 137, + 97, + 254, + 61, + 233, + 41, + 255, + 94, + 42, + 55, + 255, + 108, + 164, + 236, + 0, + 152, + 68, + 254, + 0, + 10, + 140, + 131, + 255, + 10, + 106, + 79, + 254, + 243, + 158, + 137, + 0, + 67, + 178, + 66, + 254, + 177, + 123, + 198, + 255, + 15, + 62, + 34, + 0, + 197, + 88, + 42, + 255, + 149, + 95, + 177, + 255, + 152, + 0, + 198, + 255, + 149, + 254, + 113, + 255, + 225, + 90, + 163, + 255, + 125, + 217, + 247, + 0, + 18, + 17, + 224, + 0, + 128, + 66, + 120, + 254, + 192, + 25, + 9, + 255, + 50, + 221, + 205, + 0, + 49, + 212, + 70, + 0, + 233, + 255, + 164, + 0, + 2, + 209, + 9, + 0, + 221, + 52, + 219, + 254, + 172, + 224, + 244, + 255, + 94, + 56, + 206, + 1, + 242, + 179, + 2, + 255, + 31, + 91, + 164, + 1, + 230, + 46, + 138, + 255, + 189, + 230, + 220, + 0, + 57, + 47, + 61, + 255, + 111, + 11, + 157, + 0, + 177, + 91, + 152, + 0, + 28, + 230, + 98, + 0, + 97, + 87, + 126, + 0, + 198, + 89, + 145, + 255, + 167, + 79, + 107, + 0, + 249, + 77, + 160, + 1, + 29, + 233, + 230, + 255, + 150, + 21, + 86, + 254, + 60, + 11, + 193, + 0, + 151, + 37, + 36, + 254, + 185, + 150, + 243, + 255, + 228, + 212, + 83, + 1, + 172, + 151, + 180, + 0, + 201, + 169, + 155, + 0, + 244, + 60, + 234, + 0, + 142, + 235, + 4, + 1, + 67, + 218, + 60, + 0, + 192, + 113, + 75, + 1, + 116, + 243, + 207, + 255, + 65, + 172, + 155, + 0, + 81, + 30, + 156, + 255, + 80, + 72, + 33, + 254, + 18, + 231, + 109, + 255, + 142, + 107, + 21, + 254, + 125, + 26, + 132, + 255, + 176, + 16, + 59, + 255, + 150, + 201, + 58, + 0, + 206, + 169, + 201, + 0, + 208, + 121, + 226, + 0, + 40, + 172, + 14, + 255, + 150, + 61, + 94, + 255, + 56, + 57, + 156, + 255, + 141, + 60, + 145, + 255, + 45, + 108, + 149, + 255, + 238, + 145, + 155, + 255, + 209, + 85, + 31, + 254, + 192, + 12, + 210, + 0, + 99, + 98, + 93, + 254, + 152, + 16, + 151, + 0, + 225, + 185, + 220, + 0, + 141, + 235, + 44, + 255, + 160, + 172, + 21, + 254, + 71, + 26, + 31, + 255, + 13, + 64, + 93, + 254, + 28, + 56, + 198, + 0, + 177, + 62, + 248, + 1, + 182, + 8, + 241, + 0, + 166, + 101, + 148, + 255, + 78, + 81, + 133, + 255, + 129, + 222, + 215, + 1, + 188, + 169, + 129, + 255, + 232, + 7, + 97, + 0, + 49, + 112, + 60, + 255, + 217, + 229, + 251, + 0, + 119, + 108, + 138, + 0, + 39, + 19, + 123, + 254, + 131, + 49, + 235, + 0, + 132, + 84, + 145, + 0, + 130, + 230, + 148, + 255, + 25, + 74, + 187, + 0, + 5, + 245, + 54, + 255, + 185, + 219, + 241, + 1, + 18, + 194, + 228, + 255, + 241, + 202, + 102, + 0, + 105, + 113, + 202, + 0, + 155, + 235, + 79, + 0, + 21, + 9, + 178, + 255, + 156, + 1, + 239, + 0, + 200, + 148, + 61, + 0, + 115, + 247, + 210, + 255, + 49, + 221, + 135, + 0, + 58, + 189, + 8, + 1, + 35, + 46, + 9, + 0, + 81, + 65, + 5, + 255, + 52, + 158, + 185, + 255, + 125, + 116, + 46, + 255, + 74, + 140, + 13, + 255, + 210, + 92, + 172, + 254, + 147, + 23, + 71, + 0, + 217, + 224, + 253, + 254, + 115, + 108, + 180, + 255, + 145, + 58, + 48, + 254, + 219, + 177, + 24, + 255, + 156, + 255, + 60, + 1, + 154, + 147, + 242, + 0, + 253, + 134, + 87, + 0, + 53, + 75, + 229, + 0, + 48, + 195, + 222, + 255, + 31, + 175, + 50, + 255, + 156, + 210, + 120, + 255, + 208, + 35, + 222, + 255, + 18, + 248, + 179, + 1, + 2, + 10, + 101, + 255, + 157, + 194, + 248, + 255, + 158, + 204, + 101, + 255, + 104, + 254, + 197, + 255, + 79, + 62, + 4, + 0, + 178, + 172, + 101, + 1, + 96, + 146, + 251, + 255, + 65, + 10, + 156, + 0, + 2, + 137, + 165, + 255, + 116, + 4, + 231, + 0, + 242, + 215, + 1, + 0, + 19, + 35, + 29, + 255, + 43, + 161, + 79, + 0, + 59, + 149, + 246, + 1, + 251, + 66, + 176, + 0, + 200, + 33, + 3, + 255, + 80, + 110, + 142, + 255, + 195, + 161, + 17, + 1, + 228, + 56, + 66, + 255, + 123, + 47, + 145, + 254, + 132, + 4, + 164, + 0, + 67, + 174, + 172, + 0, + 25, + 253, + 114, + 0, + 87, + 97, + 87, + 1, + 250, + 220, + 84, + 0, + 96, + 91, + 200, + 255, + 37, + 125, + 59, + 0, + 19, + 65, + 118, + 0, + 161, + 52, + 241, + 255, + 237, + 172, + 6, + 255, + 176, + 191, + 255, + 255, + 1, + 65, + 130, + 254, + 223, + 190, + 230, + 0, + 101, + 253, + 231, + 255, + 146, + 35, + 109, + 0, + 250, + 29, + 77, + 1, + 49, + 0, + 19, + 0, + 123, + 90, + 155, + 1, + 22, + 86, + 32, + 255, + 218, + 213, + 65, + 0, + 111, + 93, + 127, + 0, + 60, + 93, + 169, + 255, + 8, + 127, + 182, + 0, + 17, + 186, + 14, + 254, + 253, + 137, + 246, + 255, + 213, + 25, + 48, + 254, + 76, + 238, + 0, + 255, + 248, + 92, + 70, + 255, + 99, + 224, + 139, + 0, + 184, + 9, + 255, + 1, + 7, + 164, + 208, + 0, + 205, + 131, + 198, + 1, + 87, + 214, + 199, + 0, + 130, + 214, + 95, + 0, + 221, + 149, + 222, + 0, + 23, + 38, + 171, + 254, + 197, + 110, + 213, + 0, + 43, + 115, + 140, + 254, + 215, + 177, + 118, + 0, + 96, + 52, + 66, + 1, + 117, + 158, + 237, + 0, + 14, + 64, + 182, + 255, + 46, + 63, + 174, + 255, + 158, + 95, + 190, + 255, + 225, + 205, + 177, + 255, + 43, + 5, + 142, + 255, + 172, + 99, + 212, + 255, + 244, + 187, + 147, + 0, + 29, + 51, + 153, + 255, + 228, + 116, + 24, + 254, + 30, + 101, + 207, + 0, + 19, + 246, + 150, + 255, + 134, + 231, + 5, + 0, + 125, + 134, + 226, + 1, + 77, + 65, + 98, + 0, + 236, + 130, + 33, + 255, + 5, + 110, + 62, + 0, + 69, + 108, + 127, + 255, + 7, + 113, + 22, + 0, + 145, + 20, + 83, + 254, + 194, + 161, + 231, + 255, + 131, + 181, + 60, + 0, + 217, + 209, + 177, + 255, + 229, + 148, + 212, + 254, + 3, + 131, + 184, + 0, + 117, + 177, + 187, + 1, + 28, + 14, + 31, + 255, + 176, + 102, + 80, + 0, + 50, + 84, + 151, + 255, + 125, + 31, + 54, + 255, + 21, + 157, + 133, + 255, + 19, + 179, + 139, + 1, + 224, + 232, + 26, + 0, + 34, + 117, + 170, + 255, + 167, + 252, + 171, + 255, + 73, + 141, + 206, + 254, + 129, + 250, + 35, + 0, + 72, + 79, + 236, + 1, + 220, + 229, + 20, + 255, + 41, + 202, + 173, + 255, + 99, + 76, + 238, + 255, + 198, + 22, + 224, + 255, + 108, + 198, + 195, + 255, + 36, + 141, + 96, + 1, + 236, + 158, + 59, + 255, + 106, + 100, + 87, + 0, + 110, + 226, + 2, + 0, + 227, + 234, + 222, + 0, + 154, + 93, + 119, + 255, + 74, + 112, + 164, + 255, + 67, + 91, + 2, + 255, + 21, + 145, + 33, + 255, + 102, + 214, + 137, + 255, + 175, + 230, + 103, + 254, + 163, + 246, + 166, + 0, + 93, + 247, + 116, + 254, + 167, + 224, + 28, + 255, + 220, + 2, + 57, + 1, + 171, + 206, + 84, + 0, + 123, + 228, + 17, + 255, + 27, + 120, + 119, + 0, + 119, + 11, + 147, + 1, + 180, + 47, + 225, + 255, + 104, + 200, + 185, + 254, + 165, + 2, + 114, + 0, + 77, + 78, + 212, + 0, + 45, + 154, + 177, + 255, + 24, + 196, + 121, + 254, + 82, + 157, + 182, + 0, + 90, + 16, + 190, + 1, + 12, + 147, + 197, + 0, + 95, + 239, + 152, + 255, + 11, + 235, + 71, + 0, + 86, + 146, + 119, + 255, + 172, + 134, + 214, + 0, + 60, + 131, + 196, + 0, + 161, + 225, + 129, + 0, + 31, + 130, + 120, + 254, + 95, + 200, + 51, + 0, + 105, + 231, + 210, + 255, + 58, + 9, + 148, + 255, + 43, + 168, + 221, + 255, + 124, + 237, + 142, + 0, + 198, + 211, + 50, + 254, + 46, + 245, + 103, + 0, + 164, + 248, + 84, + 0, + 152, + 70, + 208, + 255, + 180, + 117, + 177, + 0, + 70, + 79, + 185, + 0, + 243, + 74, + 32, + 0, + 149, + 156, + 207, + 0, + 197, + 196, + 161, + 1, + 245, + 53, + 239, + 0, + 15, + 93, + 246, + 254, + 139, + 240, + 49, + 255, + 196, + 88, + 36, + 255, + 162, + 38, + 123, + 0, + 128, + 200, + 157, + 1, + 174, + 76, + 103, + 255, + 173, + 169, + 34, + 254, + 216, + 1, + 171, + 255, + 114, + 51, + 17, + 0, + 136, + 228, + 194, + 0, + 110, + 150, + 56, + 254, + 106, + 246, + 159, + 0, + 19, + 184, + 79, + 255, + 150, + 77, + 240, + 255, + 155, + 80, + 162, + 0, + 0, + 53, + 169, + 255, + 29, + 151, + 86, + 0, + 68, + 94, + 16, + 0, + 92, + 7, + 110, + 254, + 98, + 117, + 149, + 255, + 249, + 77, + 230, + 255, + 253, + 10, + 140, + 0, + 214, + 124, + 92, + 254, + 35, + 118, + 235, + 0, + 89, + 48, + 57, + 1, + 22, + 53, + 166, + 0, + 184, + 144, + 61, + 255, + 179, + 255, + 194, + 0, + 214, + 248, + 61, + 254, + 59, + 110, + 246, + 0, + 121, + 21, + 81, + 254, + 166, + 3, + 228, + 0, + 106, + 64, + 26, + 255, + 69, + 232, + 134, + 255, + 242, + 220, + 53, + 254, + 46, + 220, + 85, + 0, + 113, + 149, + 247, + 255, + 97, + 179, + 103, + 255, + 190, + 127, + 11, + 0, + 135, + 209, + 182, + 0, + 95, + 52, + 129, + 1, + 170, + 144, + 206, + 255, + 122, + 200, + 204, + 255, + 168, + 100, + 146, + 0, + 60, + 144, + 149, + 254, + 70, + 60, + 40, + 0, + 122, + 52, + 177, + 255, + 246, + 211, + 101, + 255, + 174, + 237, + 8, + 0, + 7, + 51, + 120, + 0, + 19, + 31, + 173, + 0, + 126, + 239, + 156, + 255, + 143, + 189, + 203, + 0, + 196, + 128, + 88, + 255, + 233, + 133, + 226, + 255, + 30, + 125, + 173, + 255, + 201, + 108, + 50, + 0, + 123, + 100, + 59, + 255, + 254, + 163, + 3, + 1, + 221, + 148, + 181, + 255, + 214, + 136, + 57, + 254, + 222, + 180, + 137, + 255, + 207, + 88, + 54, + 255, + 28, + 33, + 251, + 255, + 67, + 214, + 52, + 1, + 210, + 208, + 100, + 0, + 81, + 170, + 94, + 0, + 145, + 40, + 53, + 0, + 224, + 111, + 231, + 254, + 35, + 28, + 244, + 255, + 226, + 199, + 195, + 254, + 238, + 17, + 230, + 0, + 217, + 217, + 164, + 254, + 169, + 157, + 221, + 0, + 218, + 46, + 162, + 1, + 199, + 207, + 163, + 255, + 108, + 115, + 162, + 1, + 14, + 96, + 187, + 255, + 118, + 60, + 76, + 0, + 184, + 159, + 152, + 0, + 209, + 231, + 71, + 254, + 42, + 164, + 186, + 255, + 186, + 153, + 51, + 254, + 221, + 171, + 182, + 255, + 162, + 142, + 173, + 0, + 235, + 47, + 193, + 0, + 7, + 139, + 16, + 1, + 95, + 164, + 64, + 255, + 16, + 221, + 166, + 0, + 219, + 197, + 16, + 0, + 132, + 29, + 44, + 255, + 100, + 69, + 117, + 255, + 60, + 235, + 88, + 254, + 40, + 81, + 173, + 0, + 71, + 190, + 61, + 255, + 187, + 88, + 157, + 0, + 231, + 11, + 23, + 0, + 237, + 117, + 164, + 0, + 225, + 168, + 223, + 255, + 154, + 114, + 116, + 255, + 163, + 152, + 242, + 1, + 24, + 32, + 170, + 0, + 125, + 98, + 113, + 254, + 168, + 19, + 76, + 0, + 17, + 157, + 220, + 254, + 155, + 52, + 5, + 0, + 19, + 111, + 161, + 255, + 71, + 90, + 252, + 255, + 173, + 110, + 240, + 0, + 10, + 198, + 121, + 255, + 253, + 255, + 240, + 255, + 66, + 123, + 210, + 0, + 221, + 194, + 215, + 254, + 121, + 163, + 17, + 255, + 225, + 7, + 99, + 0, + 190, + 49, + 182, + 0, + 115, + 9, + 133, + 1, + 232, + 26, + 138, + 255, + 213, + 68, + 132, + 0, + 44, + 119, + 122, + 255, + 179, + 98, + 51, + 0, + 149, + 90, + 106, + 0, + 71, + 50, + 230, + 255, + 10, + 153, + 118, + 255, + 177, + 70, + 25, + 0, + 165, + 87, + 205, + 0, + 55, + 138, + 234, + 0, + 238, + 30, + 97, + 0, + 113, + 155, + 207, + 0, + 98, + 153, + 127, + 0, + 34, + 107, + 219, + 254, + 117, + 114, + 172, + 255, + 76, + 180, + 255, + 254, + 242, + 57, + 179, + 255, + 221, + 34, + 172, + 254, + 56, + 162, + 49, + 255, + 83, + 3, + 255, + 255, + 113, + 221, + 189, + 255, + 188, + 25, + 228, + 254, + 16, + 88, + 89, + 255, + 71, + 28, + 198, + 254, + 22, + 17, + 149, + 255, + 243, + 121, + 254, + 255, + 107, + 202, + 99, + 255, + 9, + 206, + 14, + 1, + 220, + 47, + 153, + 0, + 107, + 137, + 39, + 1, + 97, + 49, + 194, + 255, + 149, + 51, + 197, + 254, + 186, + 58, + 11, + 255, + 107, + 43, + 232, + 1, + 200, + 6, + 14, + 255, + 181, + 133, + 65, + 254, + 221, + 228, + 171, + 255, + 123, + 62, + 231, + 1, + 227, + 234, + 179, + 255, + 34, + 189, + 212, + 254, + 244, + 187, + 249, + 0, + 190, + 13, + 80, + 1, + 130, + 89, + 1, + 0, + 223, + 133, + 173, + 0, + 9, + 222, + 198, + 255, + 66, + 127, + 74, + 0, + 167, + 216, + 93, + 255, + 155, + 168, + 198, + 1, + 66, + 145, + 0, + 0, + 68, + 102, + 46, + 1, + 172, + 90, + 154, + 0, + 216, + 128, + 75, + 255, + 160, + 40, + 51, + 0, + 158, + 17, + 27, + 1, + 124, + 240, + 49, + 0, + 236, + 202, + 176, + 255, + 151, + 124, + 192, + 255, + 38, + 193, + 190, + 0, + 95, + 182, + 61, + 0, + 163, + 147, + 124, + 255, + 255, + 165, + 51, + 255, + 28, + 40, + 17, + 254, + 215, + 96, + 78, + 0, + 86, + 145, + 218, + 254, + 31, + 36, + 202, + 255, + 86, + 9, + 5, + 0, + 111, + 41, + 200, + 255, + 237, + 108, + 97, + 0, + 57, + 62, + 44, + 0, + 117, + 184, + 15, + 1, + 45, + 241, + 116, + 0, + 152, + 1, + 220, + 255, + 157, + 165, + 188, + 0, + 250, + 15, + 131, + 1, + 60, + 44, + 125, + 255, + 65, + 220, + 251, + 255, + 75, + 50, + 184, + 0, + 53, + 90, + 128, + 255, + 231, + 80, + 194, + 255, + 136, + 129, + 127, + 1, + 21, + 18, + 187, + 255, + 45, + 58, + 161, + 255, + 71, + 147, + 34, + 0, + 174, + 249, + 11, + 254, + 35, + 141, + 29, + 0, + 239, + 68, + 177, + 255, + 115, + 110, + 58, + 0, + 238, + 190, + 177, + 1, + 87, + 245, + 166, + 255, + 190, + 49, + 247, + 255, + 146, + 83, + 184, + 255, + 173, + 14, + 39, + 255, + 146, + 215, + 104, + 0, + 142, + 223, + 120, + 0, + 149, + 200, + 155, + 255, + 212, + 207, + 145, + 1, + 16, + 181, + 217, + 0, + 173, + 32, + 87, + 255, + 255, + 35, + 181, + 0, + 119, + 223, + 161, + 1, + 200, + 223, + 94, + 255, + 70, + 6, + 186, + 255, + 192, + 67, + 85, + 255, + 50, + 169, + 152, + 0, + 144, + 26, + 123, + 255, + 56, + 243, + 179, + 254, + 20, + 68, + 136, + 0, + 39, + 140, + 188, + 254, + 253, + 208, + 5, + 255, + 200, + 115, + 135, + 1, + 43, + 172, + 229, + 255, + 156, + 104, + 187, + 0, + 151, + 251, + 167, + 0, + 52, + 135, + 23, + 0, + 151, + 153, + 72, + 0, + 147, + 197, + 107, + 254, + 148, + 158, + 5, + 255, + 238, + 143, + 206, + 0, + 126, + 153, + 137, + 255, + 88, + 152, + 197, + 254, + 7, + 68, + 167, + 0, + 252, + 159, + 165, + 255, + 239, + 78, + 54, + 255, + 24, + 63, + 55, + 255, + 38, + 222, + 94, + 0, + 237, + 183, + 12, + 255, + 206, + 204, + 210, + 0, + 19, + 39, + 246, + 254, + 30, + 74, + 231, + 0, + 135, + 108, + 29, + 1, + 179, + 115, + 0, + 0, + 117, + 118, + 116, + 1, + 132, + 6, + 252, + 255, + 145, + 129, + 161, + 1, + 105, + 67, + 141, + 0, + 82, + 37, + 226, + 255, + 238, + 226, + 228, + 255, + 204, + 214, + 129, + 254, + 162, + 123, + 100, + 255, + 185, + 121, + 234, + 0, + 45, + 108, + 231, + 0, + 66, + 8, + 56, + 255, + 132, + 136, + 128, + 0, + 172, + 224, + 66, + 254, + 175, + 157, + 188, + 0, + 230, + 223, + 226, + 254, + 242, + 219, + 69, + 0, + 184, + 14, + 119, + 1, + 82, + 162, + 56, + 0, + 114, + 123, + 20, + 0, + 162, + 103, + 85, + 255, + 49, + 239, + 99, + 254, + 156, + 135, + 215, + 0, + 111, + 255, + 167, + 254, + 39, + 196, + 214, + 0, + 144, + 38, + 79, + 1, + 249, + 168, + 125, + 0, + 155, + 97, + 156, + 255, + 23, + 52, + 219, + 255, + 150, + 22, + 144, + 0, + 44, + 149, + 165, + 255, + 40, + 127, + 183, + 0, + 196, + 77, + 233, + 255, + 118, + 129, + 210, + 255, + 170, + 135, + 230, + 255, + 214, + 119, + 198, + 0, + 233, + 240, + 35, + 0, + 253, + 52, + 7, + 255, + 117, + 102, + 48, + 255, + 21, + 204, + 154, + 255, + 179, + 136, + 177, + 255, + 23, + 2, + 3, + 1, + 149, + 130, + 89, + 255, + 252, + 17, + 159, + 1, + 70, + 60, + 26, + 0, + 144, + 107, + 17, + 0, + 180, + 190, + 60, + 255, + 56, + 182, + 59, + 255, + 110, + 71, + 54, + 255, + 198, + 18, + 129, + 255, + 149, + 224, + 87, + 255, + 223, + 21, + 152, + 255, + 138, + 22, + 182, + 255, + 250, + 156, + 205, + 0, + 236, + 45, + 208, + 255, + 79, + 148, + 242, + 1, + 101, + 70, + 209, + 0, + 103, + 78, + 174, + 0, + 101, + 144, + 172, + 255, + 152, + 136, + 237, + 1, + 191, + 194, + 136, + 0, + 113, + 80, + 125, + 1, + 152, + 4, + 141, + 0, + 155, + 150, + 53, + 255, + 196, + 116, + 245, + 0, + 239, + 114, + 73, + 254, + 19, + 82, + 17, + 255, + 124, + 125, + 234, + 255, + 40, + 52, + 191, + 0, + 42, + 210, + 158, + 255, + 155, + 132, + 165, + 0, + 178, + 5, + 42, + 1, + 64, + 92, + 40, + 255, + 36, + 85, + 77, + 255, + 178, + 228, + 118, + 0, + 137, + 66, + 96, + 254, + 115, + 226, + 66, + 0, + 110, + 240, + 69, + 254, + 151, + 111, + 80, + 0, + 167, + 174, + 236, + 255, + 227, + 108, + 107, + 255, + 188, + 242, + 65, + 255, + 183, + 81, + 255, + 0, + 57, + 206, + 181, + 255, + 47, + 34, + 181, + 255, + 213, + 240, + 158, + 1, + 71, + 75, + 95, + 0, + 156, + 40, + 24, + 255, + 102, + 210, + 81, + 0, + 171, + 199, + 228, + 255, + 154, + 34, + 41, + 0, + 227, + 175, + 75, + 0, + 21, + 239, + 195, + 0, + 138, + 229, + 95, + 1, + 76, + 192, + 49, + 0, + 117, + 123, + 87, + 1, + 227, + 225, + 130, + 0, + 125, + 62, + 63, + 255, + 2, + 198, + 171, + 0, + 254, + 36, + 13, + 254, + 145, + 186, + 206, + 0, + 148, + 255, + 244, + 255, + 35, + 0, + 166, + 0, + 30, + 150, + 219, + 1, + 92, + 228, + 212, + 0, + 92, + 198, + 60, + 254, + 62, + 133, + 200, + 255, + 201, + 41, + 59, + 0, + 125, + 238, + 109, + 255, + 180, + 163, + 238, + 1, + 140, + 122, + 82, + 0, + 9, + 22, + 88, + 255, + 197, + 157, + 47, + 255, + 153, + 94, + 57, + 0, + 88, + 30, + 182, + 0, + 84, + 161, + 85, + 0, + 178, + 146, + 124, + 0, + 166, + 166, + 7, + 255, + 21, + 208, + 223, + 0, + 156, + 182, + 242, + 0, + 155, + 121, + 185, + 0, + 83, + 156, + 174, + 254, + 154, + 16, + 118, + 255, + 186, + 83, + 232, + 1, + 223, + 58, + 121, + 255, + 29, + 23, + 88, + 0, + 35, + 125, + 127, + 255, + 170, + 5, + 149, + 254, + 164, + 12, + 130, + 255, + 155, + 196, + 29, + 0, + 161, + 96, + 136, + 0, + 7, + 35, + 29, + 1, + 162, + 37, + 251, + 0, + 3, + 46, + 242, + 255, + 0, + 217, + 188, + 0, + 57, + 174, + 226, + 1, + 206, + 233, + 2, + 0, + 57, + 187, + 136, + 254, + 123, + 189, + 9, + 255, + 201, + 117, + 127, + 255, + 186, + 36, + 204, + 0, + 231, + 25, + 216, + 0, + 80, + 78, + 105, + 0, + 19, + 134, + 129, + 255, + 148, + 203, + 68, + 0, + 141, + 81, + 125, + 254, + 248, + 165, + 200, + 255, + 214, + 144, + 135, + 0, + 151, + 55, + 166, + 255, + 38, + 235, + 91, + 0, + 21, + 46, + 154, + 0, + 223, + 254, + 150, + 255, + 35, + 153, + 180, + 255, + 125, + 176, + 29, + 1, + 43, + 98, + 30, + 255, + 216, + 122, + 230, + 255, + 233, + 160, + 12, + 0, + 57, + 185, + 12, + 254, + 240, + 113, + 7, + 255, + 5, + 9, + 16, + 254, + 26, + 91, + 108, + 0, + 109, + 198, + 203, + 0, + 8, + 147, + 40, + 0, + 129, + 134, + 228, + 255, + 124, + 186, + 40, + 255, + 114, + 98, + 132, + 254, + 166, + 132, + 23, + 0, + 99, + 69, + 44, + 0, + 9, + 242, + 238, + 255, + 184, + 53, + 59, + 0, + 132, + 129, + 102, + 255, + 52, + 32, + 243, + 254, + 147, + 223, + 200, + 255, + 123, + 83, + 179, + 254, + 135, + 144, + 201, + 255, + 141, + 37, + 56, + 1, + 151, + 60, + 227, + 255, + 90, + 73, + 156, + 1, + 203, + 172, + 187, + 0, + 80, + 151, + 47, + 255, + 94, + 137, + 231, + 255, + 36, + 191, + 59, + 255, + 225, + 209, + 181, + 255, + 74, + 215, + 213, + 254, + 6, + 118, + 179, + 255, + 153, + 54, + 193, + 1, + 50, + 0, + 231, + 0, + 104, + 157, + 72, + 1, + 140, + 227, + 154, + 255, + 182, + 226, + 16, + 254, + 96, + 225, + 92, + 255, + 115, + 20, + 170, + 254, + 6, + 250, + 78, + 0, + 248, + 75, + 173, + 255, + 53, + 89, + 6, + 255, + 0, + 180, + 118, + 0, + 72, + 173, + 1, + 0, + 64, + 8, + 206, + 1, + 174, + 133, + 223, + 0, + 185, + 62, + 133, + 255, + 214, + 11, + 98, + 0, + 197, + 31, + 208, + 0, + 171, + 167, + 244, + 255, + 22, + 231, + 181, + 1, + 150, + 218, + 185, + 0, + 247, + 169, + 97, + 1, + 165, + 139, + 247, + 255, + 47, + 120, + 149, + 1, + 103, + 248, + 51, + 0, + 60, + 69, + 28, + 254, + 25, + 179, + 196, + 0, + 124, + 7, + 218, + 254, + 58, + 107, + 81, + 0, + 184, + 233, + 156, + 255, + 252, + 74, + 36, + 0, + 118, + 188, + 67, + 0, + 141, + 95, + 53, + 255, + 222, + 94, + 165, + 254, + 46, + 61, + 53, + 0, + 206, + 59, + 115, + 255, + 47, + 236, + 250, + 255, + 74, + 5, + 32, + 1, + 129, + 154, + 238, + 255, + 106, + 32, + 226, + 0, + 121, + 187, + 61, + 255, + 3, + 166, + 241, + 254, + 67, + 170, + 172, + 255, + 29, + 216, + 178, + 255, + 23, + 201, + 252, + 0, + 253, + 110, + 243, + 0, + 200, + 125, + 57, + 0, + 109, + 192, + 96, + 255, + 52, + 115, + 238, + 0, + 38, + 121, + 243, + 255, + 201, + 56, + 33, + 0, + 194, + 118, + 130, + 0, + 75, + 96, + 25, + 255, + 170, + 30, + 230, + 254, + 39, + 63, + 253, + 0, + 36, + 45, + 250, + 255, + 251, + 1, + 239, + 0, + 160, + 212, + 92, + 1, + 45, + 209, + 237, + 0, + 243, + 33, + 87, + 254, + 237, + 84, + 201, + 255, + 212, + 18, + 157, + 254, + 212, + 99, + 127, + 255, + 217, + 98, + 16, + 254, + 139, + 172, + 239, + 0, + 168, + 201, + 130, + 255, + 143, + 193, + 169, + 255, + 238, + 151, + 193, + 1, + 215, + 104, + 41, + 0, + 239, + 61, + 165, + 254, + 2, + 3, + 242, + 0, + 22, + 203, + 177, + 254, + 177, + 204, + 22, + 0, + 149, + 129, + 213, + 254, + 31, + 11, + 41, + 255, + 0, + 159, + 121, + 254, + 160, + 25, + 114, + 255, + 162, + 80, + 200, + 0, + 157, + 151, + 11, + 0, + 154, + 134, + 78, + 1, + 216, + 54, + 252, + 0, + 48, + 103, + 133, + 0, + 105, + 220, + 197, + 0, + 253, + 168, + 77, + 254, + 53, + 179, + 23, + 0, + 24, + 121, + 240, + 1, + 255, + 46, + 96, + 255, + 107, + 60, + 135, + 254, + 98, + 205, + 249, + 255, + 63, + 249, + 119, + 255, + 120, + 59, + 211, + 255, + 114, + 180, + 55, + 254, + 91, + 85, + 237, + 0, + 149, + 212, + 77, + 1, + 56, + 73, + 49, + 0, + 86, + 198, + 150, + 0, + 93, + 209, + 160, + 0, + 69, + 205, + 182, + 255, + 244, + 90, + 43, + 0, + 20, + 36, + 176, + 0, + 122, + 116, + 221, + 0, + 51, + 167, + 39, + 1, + 231, + 1, + 63, + 255, + 13, + 197, + 134, + 0, + 3, + 209, + 34, + 255, + 135, + 59, + 202, + 0, + 167, + 100, + 78, + 0, + 47, + 223, + 76, + 0, + 185, + 60, + 62, + 0, + 178, + 166, + 123, + 1, + 132, + 12, + 161, + 255, + 61, + 174, + 43, + 0, + 195, + 69, + 144, + 0, + 127, + 47, + 191, + 1, + 34, + 44, + 78, + 0, + 57, + 234, + 52, + 1, + 255, + 22, + 40, + 255, + 246, + 94, + 146, + 0, + 83, + 228, + 128, + 0, + 60, + 78, + 224, + 255, + 0, + 96, + 210, + 255, + 153, + 175, + 236, + 0, + 159, + 21, + 73, + 0, + 180, + 115, + 196, + 254, + 131, + 225, + 106, + 0, + 255, + 167, + 134, + 0, + 159, + 8, + 112, + 255, + 120, + 68, + 194, + 255, + 176, + 196, + 198, + 255, + 118, + 48, + 168, + 255, + 93, + 169, + 1, + 0, + 112, + 200, + 102, + 1, + 74, + 24, + 254, + 0, + 19, + 141, + 4, + 254, + 142, + 62, + 63, + 0, + 131, + 179, + 187, + 255, + 77, + 156, + 155, + 255, + 119, + 86, + 164, + 0, + 170, + 208, + 146, + 255, + 208, + 133, + 154, + 255, + 148, + 155, + 58, + 255, + 162, + 120, + 232, + 254, + 252, + 213, + 155, + 0, + 241, + 13, + 42, + 0, + 94, + 50, + 131, + 0, + 179, + 170, + 112, + 0, + 140, + 83, + 151, + 255, + 55, + 119, + 84, + 1, + 140, + 35, + 239, + 255, + 153, + 45, + 67, + 1, + 236, + 175, + 39, + 0, + 54, + 151, + 103, + 255, + 158, + 42, + 65, + 255, + 196, + 239, + 135, + 254, + 86, + 53, + 203, + 0, + 149, + 97, + 47, + 254, + 216, + 35, + 17, + 255, + 70, + 3, + 70, + 1, + 103, + 36, + 90, + 255, + 40, + 26, + 173, + 0, + 184, + 48, + 13, + 0, + 163, + 219, + 217, + 255, + 81, + 6, + 1, + 255, + 221, + 170, + 108, + 254, + 233, + 208, + 93, + 0, + 100, + 201, + 249, + 254, + 86, + 36, + 35, + 255, + 209, + 154, + 30, + 1, + 227, + 201, + 251, + 255, + 2, + 189, + 167, + 254, + 100, + 57, + 3, + 0, + 13, + 128, + 41, + 0, + 197, + 100, + 75, + 0, + 150, + 204, + 235, + 255, + 145, + 174, + 59, + 0, + 120, + 248, + 149, + 255, + 85, + 55, + 225, + 0, + 114, + 210, + 53, + 254, + 199, + 204, + 119, + 0, + 14, + 247, + 74, + 1, + 63, + 251, + 129, + 0, + 67, + 104, + 151, + 1, + 135, + 130, + 80, + 0, + 79, + 89, + 55, + 255, + 117, + 230, + 157, + 255, + 25, + 96, + 143, + 0, + 213, + 145, + 5, + 0, + 69, + 241, + 120, + 1, + 149, + 243, + 95, + 255, + 114, + 42, + 20, + 0, + 131, + 72, + 2, + 0, + 154, + 53, + 20, + 255, + 73, + 62, + 109, + 0, + 196, + 102, + 152, + 0, + 41, + 12, + 204, + 255, + 122, + 38, + 11, + 1, + 250, + 10, + 145, + 0, + 207, + 125, + 148, + 0, + 246, + 244, + 222, + 255, + 41, + 32, + 85, + 1, + 112, + 213, + 126, + 0, + 162, + 249, + 86, + 1, + 71, + 198, + 127, + 255, + 81, + 9, + 21, + 1, + 98, + 39, + 4, + 255, + 204, + 71, + 45, + 1, + 75, + 111, + 137, + 0, + 234, + 59, + 231, + 0, + 32, + 48, + 95, + 255, + 204, + 31, + 114, + 1, + 29, + 196, + 181, + 255, + 51, + 241, + 167, + 254, + 93, + 109, + 142, + 0, + 104, + 144, + 45, + 0, + 235, + 12, + 181, + 255, + 52, + 112, + 164, + 0, + 76, + 254, + 202, + 255, + 174, + 14, + 162, + 0, + 61, + 235, + 147, + 255, + 43, + 64, + 185, + 254, + 233, + 125, + 217, + 0, + 243, + 88, + 167, + 254, + 74, + 49, + 8, + 0, + 156, + 204, + 66, + 0, + 124, + 214, + 123, + 0, + 38, + 221, + 118, + 1, + 146, + 112, + 236, + 0, + 114, + 98, + 177, + 0, + 151, + 89, + 199, + 0, + 87, + 197, + 112, + 0, + 185, + 149, + 161, + 0, + 44, + 96, + 165, + 0, + 248, + 179, + 20, + 255, + 188, + 219, + 216, + 254, + 40, + 62, + 13, + 0, + 243, + 142, + 141, + 0, + 229, + 227, + 206, + 255, + 172, + 202, + 35, + 255, + 117, + 176, + 225, + 255, + 82, + 110, + 38, + 1, + 42, + 245, + 14, + 255, + 20, + 83, + 97, + 0, + 49, + 171, + 10, + 0, + 242, + 119, + 120, + 0, + 25, + 232, + 61, + 0, + 212, + 240, + 147, + 255, + 4, + 115, + 56, + 255, + 145, + 17, + 239, + 254, + 202, + 17, + 251, + 255, + 249, + 18, + 245, + 255, + 99, + 117, + 239, + 0, + 184, + 4, + 179, + 255, + 246, + 237, + 51, + 255, + 37, + 239, + 137, + 255, + 166, + 112, + 166, + 255, + 81, + 188, + 33, + 255, + 185, + 250, + 142, + 255, + 54, + 187, + 173, + 0, + 208, + 112, + 201, + 0, + 246, + 43, + 228, + 1, + 104, + 184, + 88, + 255, + 212, + 52, + 196, + 255, + 51, + 117, + 108, + 255, + 254, + 117, + 155, + 0, + 46, + 91, + 15, + 255, + 87, + 14, + 144, + 255, + 87, + 227, + 204, + 0, + 83, + 26, + 83, + 1, + 159, + 76, + 227, + 0, + 159, + 27, + 213, + 1, + 24, + 151, + 108, + 0, + 117, + 144, + 179, + 254, + 137, + 209, + 82, + 0, + 38, + 159, + 10, + 0, + 115, + 133, + 201, + 0, + 223, + 182, + 156, + 1, + 110, + 196, + 93, + 255, + 57, + 60, + 233, + 0, + 5, + 167, + 105, + 255, + 154, + 197, + 164, + 0, + 96, + 34, + 186, + 255, + 147, + 133, + 37, + 1, + 220, + 99, + 190, + 0, + 1, + 167, + 84, + 255, + 20, + 145, + 171, + 0, + 194, + 197, + 251, + 254, + 95, + 78, + 133, + 255, + 252, + 248, + 243, + 255, + 225, + 93, + 131, + 255, + 187, + 134, + 196, + 255, + 216, + 153, + 170, + 0, + 20, + 118, + 158, + 254, + 140, + 1, + 118, + 0, + 86, + 158, + 15, + 1, + 45, + 211, + 41, + 255, + 147, + 1, + 100, + 254, + 113, + 116, + 76, + 255, + 211, + 127, + 108, + 1, + 103, + 15, + 48, + 0, + 193, + 16, + 102, + 1, + 69, + 51, + 95, + 255, + 107, + 128, + 157, + 0, + 137, + 171, + 233, + 0, + 90, + 124, + 144, + 1, + 106, + 161, + 182, + 0, + 175, + 76, + 236, + 1, + 200, + 141, + 172, + 255, + 163, + 58, + 104, + 0, + 233, + 180, + 52, + 255, + 240, + 253, + 14, + 255, + 162, + 113, + 254, + 255, + 38, + 239, + 138, + 254, + 52, + 46, + 166, + 0, + 241, + 101, + 33, + 254, + 131, + 186, + 156, + 0, + 111, + 208, + 62, + 255, + 124, + 94, + 160, + 255, + 31, + 172, + 254, + 0, + 112, + 174, + 56, + 255, + 188, + 99, + 27, + 255, + 67, + 138, + 251, + 0, + 125, + 58, + 128, + 1, + 156, + 152, + 174, + 255, + 178, + 12, + 247, + 255, + 252, + 84, + 158, + 0, + 82, + 197, + 14, + 254, + 172, + 200, + 83, + 255, + 37, + 39, + 46, + 1, + 106, + 207, + 167, + 0, + 24, + 189, + 34, + 0, + 131, + 178, + 144, + 0, + 206, + 213, + 4, + 0, + 161, + 226, + 210, + 0, + 72, + 51, + 105, + 255, + 97, + 45, + 187, + 255, + 78, + 184, + 223, + 255, + 176, + 29, + 251, + 0, + 79, + 160, + 86, + 255, + 116, + 37, + 178, + 0, + 82, + 77, + 213, + 1, + 82, + 84, + 141, + 255, + 226, + 101, + 212, + 1, + 175, + 88, + 199, + 255, + 245, + 94, + 247, + 1, + 172, + 118, + 109, + 255, + 166, + 185, + 190, + 0, + 131, + 181, + 120, + 0, + 87, + 254, + 93, + 255, + 134, + 240, + 73, + 255, + 32, + 245, + 143, + 255, + 139, + 162, + 103, + 255, + 179, + 98, + 18, + 254, + 217, + 204, + 112, + 0, + 147, + 223, + 120, + 255, + 53, + 10, + 243, + 0, + 166, + 140, + 150, + 0, + 125, + 80, + 200, + 255, + 14, + 109, + 219, + 255, + 91, + 218, + 1, + 255, + 252, + 252, + 47, + 254, + 109, + 156, + 116, + 255, + 115, + 49, + 127, + 1, + 204, + 87, + 211, + 255, + 148, + 202, + 217, + 255, + 26, + 85, + 249, + 255, + 14, + 245, + 134, + 1, + 76, + 89, + 169, + 255, + 242, + 45, + 230, + 0, + 59, + 98, + 172, + 255, + 114, + 73, + 132, + 254, + 78, + 155, + 49, + 255, + 158, + 126, + 84, + 0, + 49, + 175, + 43, + 255, + 16, + 182, + 84, + 255, + 157, + 103, + 35, + 0, + 104, + 193, + 109, + 255, + 67, + 221, + 154, + 0, + 201, + 172, + 1, + 254, + 8, + 162, + 88, + 0, + 165, + 1, + 29, + 255, + 125, + 155, + 229, + 255, + 30, + 154, + 220, + 1, + 103, + 239, + 92, + 0, + 220, + 1, + 109, + 255, + 202, + 198, + 1, + 0, + 94, + 2, + 142, + 1, + 36, + 54, + 44, + 0, + 235, + 226, + 158, + 255, + 170, + 251, + 214, + 255, + 185, + 77, + 9, + 0, + 97, + 74, + 242, + 0, + 219, + 163, + 149, + 255, + 240, + 35, + 118, + 255, + 223, + 114, + 88, + 254, + 192, + 199, + 3, + 0, + 106, + 37, + 24, + 255, + 201, + 161, + 118, + 255, + 97, + 89, + 99, + 1, + 224, + 58, + 103, + 255, + 101, + 199, + 147, + 254, + 222, + 60, + 99, + 0, + 234, + 25, + 59, + 1, + 52, + 135, + 27, + 0, + 102, + 3, + 91, + 254, + 168, + 216, + 235, + 0, + 229, + 232, + 136, + 0, + 104, + 60, + 129, + 0, + 46, + 168, + 238, + 0, + 39, + 191, + 67, + 0, + 75, + 163, + 47, + 0, + 143, + 97, + 98, + 255, + 56, + 216, + 168, + 1, + 168, + 233, + 252, + 255, + 35, + 111, + 22, + 255, + 92, + 84, + 43, + 0, + 26, + 200, + 87, + 1, + 91, + 253, + 152, + 0, + 202, + 56, + 70, + 0, + 142, + 8, + 77, + 0, + 80, + 10, + 175, + 1, + 252, + 199, + 76, + 0, + 22, + 110, + 82, + 255, + 129, + 1, + 194, + 0, + 11, + 128, + 61, + 1, + 87, + 14, + 145, + 255, + 253, + 222, + 190, + 1, + 15, + 72, + 174, + 0, + 85, + 163, + 86, + 254, + 58, + 99, + 44, + 255, + 45, + 24, + 188, + 254, + 26, + 205, + 15, + 0, + 19, + 229, + 210, + 254, + 248, + 67, + 195, + 0, + 99, + 71, + 184, + 0, + 154, + 199, + 37, + 255, + 151, + 243, + 121, + 255, + 38, + 51, + 75, + 255, + 201, + 85, + 130, + 254, + 44, + 65, + 250, + 0, + 57, + 147, + 243, + 254, + 146, + 43, + 59, + 255, + 89, + 28, + 53, + 0, + 33, + 84, + 24, + 255, + 179, + 51, + 18, + 254, + 189, + 70, + 83, + 0, + 11, + 156, + 179, + 1, + 98, + 134, + 119, + 0, + 158, + 111, + 111, + 0, + 119, + 154, + 73, + 255, + 200, + 63, + 140, + 254, + 45, + 13, + 13, + 255, + 154, + 192, + 2, + 254, + 81, + 72, + 42, + 0, + 46, + 160, + 185, + 254, + 44, + 112, + 6, + 0, + 146, + 215, + 149, + 1, + 26, + 176, + 104, + 0, + 68, + 28, + 87, + 1, + 236, + 50, + 153, + 255, + 179, + 128, + 250, + 254, + 206, + 193, + 191, + 255, + 166, + 92, + 137, + 254, + 53, + 40, + 239, + 0, + 210, + 1, + 204, + 254, + 168, + 173, + 35, + 0, + 141, + 243, + 45, + 1, + 36, + 50, + 109, + 255, + 15, + 242, + 194, + 255, + 227, + 159, + 122, + 255, + 176, + 175, + 202, + 254, + 70, + 57, + 72, + 0, + 40, + 223, + 56, + 0, + 208, + 162, + 58, + 255, + 183, + 98, + 93, + 0, + 15, + 111, + 12, + 0, + 30, + 8, + 76, + 255, + 132, + 127, + 246, + 255, + 45, + 242, + 103, + 0, + 69, + 181, + 15, + 255, + 10, + 209, + 30, + 0, + 3, + 179, + 121, + 0, + 241, + 232, + 218, + 1, + 123, + 199, + 88, + 255, + 2, + 210, + 202, + 1, + 188, + 130, + 81, + 255, + 94, + 101, + 208, + 1, + 103, + 36, + 45, + 0, + 76, + 193, + 24, + 1, + 95, + 26, + 241, + 255, + 165, + 162, + 187, + 0, + 36, + 114, + 140, + 0, + 202, + 66, + 5, + 255, + 37, + 56, + 147, + 0, + 152, + 11, + 243, + 1, + 127, + 85, + 232, + 255, + 250, + 135, + 212, + 1, + 185, + 177, + 113, + 0, + 90, + 220, + 75, + 255, + 69, + 248, + 146, + 0, + 50, + 111, + 50, + 0, + 92, + 22, + 80, + 0, + 244, + 36, + 115, + 254, + 163, + 100, + 82, + 255 + ], + "i8", + ALLOC_NONE, + Runtime.GLOBAL_BASE + 10240 + ) + /* memory initializer */ allocate( + [ + 25, + 193, + 6, + 1, + 127, + 61, + 36, + 0, + 253, + 67, + 30, + 254, + 65, + 236, + 170, + 255, + 161, + 17, + 215, + 254, + 63, + 175, + 140, + 0, + 55, + 127, + 4, + 0, + 79, + 112, + 233, + 0, + 109, + 160, + 40, + 0, + 143, + 83, + 7, + 255, + 65, + 26, + 238, + 255, + 217, + 169, + 140, + 255, + 78, + 94, + 189, + 255, + 0, + 147, + 190, + 255, + 147, + 71, + 186, + 254, + 106, + 77, + 127, + 255, + 233, + 157, + 233, + 1, + 135, + 87, + 237, + 255, + 208, + 13, + 236, + 1, + 155, + 109, + 36, + 255, + 180, + 100, + 218, + 0, + 180, + 163, + 18, + 0, + 190, + 110, + 9, + 1, + 17, + 63, + 123, + 255, + 179, + 136, + 180, + 255, + 165, + 123, + 123, + 255, + 144, + 188, + 81, + 254, + 71, + 240, + 108, + 255, + 25, + 112, + 11, + 255, + 227, + 218, + 51, + 255, + 167, + 50, + 234, + 255, + 114, + 79, + 108, + 255, + 31, + 19, + 115, + 255, + 183, + 240, + 99, + 0, + 227, + 87, + 143, + 255, + 72, + 217, + 248, + 255, + 102, + 169, + 95, + 1, + 129, + 149, + 149, + 0, + 238, + 133, + 12, + 1, + 227, + 204, + 35, + 0, + 208, + 115, + 26, + 1, + 102, + 8, + 234, + 0, + 112, + 88, + 143, + 1, + 144, + 249, + 14, + 0, + 240, + 158, + 172, + 254, + 100, + 112, + 119, + 0, + 194, + 141, + 153, + 254, + 40, + 56, + 83, + 255, + 121, + 176, + 46, + 0, + 42, + 53, + 76, + 255, + 158, + 191, + 154, + 0, + 91, + 209, + 92, + 0, + 173, + 13, + 16, + 1, + 5, + 72, + 226, + 255, + 204, + 254, + 149, + 0, + 80, + 184, + 207, + 0, + 100, + 9, + 122, + 254, + 118, + 101, + 171, + 255, + 252, + 203, + 0, + 254, + 160, + 207, + 54, + 0, + 56, + 72, + 249, + 1, + 56, + 140, + 13, + 255, + 10, + 64, + 107, + 254, + 91, + 101, + 52, + 255, + 225, + 181, + 248, + 1, + 139, + 255, + 132, + 0, + 230, + 145, + 17, + 0, + 233, + 56, + 23, + 0, + 119, + 1, + 241, + 255, + 213, + 169, + 151, + 255, + 99, + 99, + 9, + 254, + 185, + 15, + 191, + 255, + 173, + 103, + 109, + 1, + 174, + 13, + 251, + 255, + 178, + 88, + 7, + 254, + 27, + 59, + 68, + 255, + 10, + 33, + 2, + 255, + 248, + 97, + 59, + 0, + 26, + 30, + 146, + 1, + 176, + 147, + 10, + 0, + 95, + 121, + 207, + 1, + 188, + 88, + 24, + 0, + 185, + 94, + 254, + 254, + 115, + 55, + 201, + 0, + 24, + 50, + 70, + 0, + 120, + 53, + 6, + 0, + 142, + 66, + 146, + 0, + 228, + 226, + 249, + 255, + 104, + 192, + 222, + 1, + 173, + 68, + 219, + 0, + 162, + 184, + 36, + 255, + 143, + 102, + 137, + 255, + 157, + 11, + 23, + 0, + 125, + 45, + 98, + 0, + 235, + 93, + 225, + 254, + 56, + 112, + 160, + 255, + 70, + 116, + 243, + 1, + 153, + 249, + 55, + 255, + 129, + 39, + 17, + 1, + 241, + 80, + 244, + 0, + 87, + 69, + 21, + 1, + 94, + 228, + 73, + 255, + 78, + 66, + 65, + 255, + 194, + 227, + 231, + 0, + 61, + 146, + 87, + 255, + 173, + 155, + 23, + 255, + 112, + 116, + 219, + 254, + 216, + 38, + 11, + 255, + 131, + 186, + 133, + 0, + 94, + 212, + 187, + 0, + 100, + 47, + 91, + 0, + 204, + 254, + 175, + 255, + 222, + 18, + 215, + 254, + 173, + 68, + 108, + 255, + 227, + 228, + 79, + 255, + 38, + 221, + 213, + 0, + 163, + 227, + 150, + 254, + 31, + 190, + 18, + 0, + 160, + 179, + 11, + 1, + 10, + 90, + 94, + 255, + 220, + 174, + 88, + 0, + 163, + 211, + 229, + 255, + 199, + 136, + 52, + 0, + 130, + 95, + 221, + 255, + 140, + 188, + 231, + 254, + 139, + 113, + 128, + 255, + 117, + 171, + 236, + 254, + 49, + 220, + 20, + 255, + 59, + 20, + 171, + 255, + 228, + 109, + 188, + 0, + 20, + 225, + 32, + 254, + 195, + 16, + 174, + 0, + 227, + 254, + 136, + 1, + 135, + 39, + 105, + 0, + 150, + 77, + 206, + 255, + 210, + 238, + 226, + 0, + 55, + 212, + 132, + 254, + 239, + 57, + 124, + 0, + 170, + 194, + 93, + 255, + 249, + 16, + 247, + 255, + 24, + 151, + 62, + 255, + 10, + 151, + 10, + 0, + 79, + 139, + 178, + 255, + 120, + 242, + 202, + 0, + 26, + 219, + 213, + 0, + 62, + 125, + 35, + 255, + 144, + 2, + 108, + 255, + 230, + 33, + 83, + 255, + 81, + 45, + 216, + 1, + 224, + 62, + 17, + 0, + 214, + 217, + 125, + 0, + 98, + 153, + 153, + 255, + 179, + 176, + 106, + 254, + 131, + 93, + 138, + 255, + 109, + 62, + 36, + 255, + 178, + 121, + 32, + 255, + 120, + 252, + 70, + 0, + 220, + 248, + 37, + 0, + 204, + 88, + 103, + 1, + 128, + 220, + 251, + 255, + 236, + 227, + 7, + 1, + 106, + 49, + 198, + 255, + 60, + 56, + 107, + 0, + 99, + 114, + 238, + 0, + 220, + 204, + 94, + 1, + 73, + 187, + 1, + 0, + 89, + 154, + 34, + 0, + 78, + 217, + 165, + 255, + 14, + 195, + 249, + 255, + 9, + 230, + 253, + 255, + 205, + 135, + 245, + 0, + 26, + 252, + 7, + 255, + 84, + 205, + 27, + 1, + 134, + 2, + 112, + 0, + 37, + 158, + 32, + 0, + 231, + 91, + 237, + 255, + 191, + 170, + 204, + 255, + 152, + 7, + 222, + 0, + 109, + 192, + 49, + 0, + 193, + 166, + 146, + 255, + 232, + 19, + 181, + 255, + 105, + 142, + 52, + 255, + 103, + 16, + 27, + 1, + 253, + 200, + 165, + 0, + 195, + 217, + 4, + 255, + 52, + 189, + 144, + 255, + 123, + 155, + 160, + 254, + 87, + 130, + 54, + 255, + 78, + 120, + 61, + 255, + 14, + 56, + 41, + 0, + 25, + 41, + 125, + 255, + 87, + 168, + 245, + 0, + 214, + 165, + 70, + 0, + 212, + 169, + 6, + 255, + 219, + 211, + 194, + 254, + 72, + 93, + 164, + 255, + 197, + 33, + 103, + 255, + 43, + 142, + 141, + 0, + 131, + 225, + 172, + 0, + 244, + 105, + 28, + 0, + 68, + 68, + 225, + 0, + 136, + 84, + 13, + 255, + 130, + 57, + 40, + 254, + 139, + 77, + 56, + 0, + 84, + 150, + 53, + 0, + 54, + 95, + 157, + 0, + 144, + 13, + 177, + 254, + 95, + 115, + 186, + 0, + 117, + 23, + 118, + 255, + 244, + 166, + 241, + 255, + 11, + 186, + 135, + 0, + 178, + 106, + 203, + 255, + 97, + 218, + 93, + 0, + 43, + 253, + 45, + 0, + 164, + 152, + 4, + 0, + 139, + 118, + 239, + 0, + 96, + 1, + 24, + 254, + 235, + 153, + 211, + 255, + 168, + 110, + 20, + 255, + 50, + 239, + 176, + 0, + 114, + 41, + 232, + 0, + 193, + 250, + 53, + 0, + 254, + 160, + 111, + 254, + 136, + 122, + 41, + 255, + 97, + 108, + 67, + 0, + 215, + 152, + 23, + 255, + 140, + 209, + 212, + 0, + 42, + 189, + 163, + 0, + 202, + 42, + 50, + 255, + 106, + 106, + 189, + 255, + 190, + 68, + 217, + 255, + 233, + 58, + 117, + 0, + 229, + 220, + 243, + 1, + 197, + 3, + 4, + 0, + 37, + 120, + 54, + 254, + 4, + 156, + 134, + 255, + 36, + 61, + 171, + 254, + 165, + 136, + 100, + 255, + 212, + 232, + 14, + 0, + 90, + 174, + 10, + 0, + 216, + 198, + 65, + 255, + 12, + 3, + 64, + 0, + 116, + 113, + 115, + 255, + 248, + 103, + 8, + 0, + 231, + 125, + 18, + 255, + 160, + 28, + 197, + 0, + 30, + 184, + 35, + 1, + 223, + 73, + 249, + 255, + 123, + 20, + 46, + 254, + 135, + 56, + 37, + 255, + 173, + 13, + 229, + 1, + 119, + 161, + 34, + 255, + 245, + 61, + 73, + 0, + 205, + 125, + 112, + 0, + 137, + 104, + 134, + 0, + 217, + 246, + 30, + 255, + 237, + 142, + 143, + 0, + 65, + 159, + 102, + 255, + 108, + 164, + 190, + 0, + 219, + 117, + 173, + 255, + 34, + 37, + 120, + 254, + 200, + 69, + 80, + 0, + 31, + 124, + 218, + 254, + 74, + 27, + 160, + 255, + 186, + 154, + 199, + 255, + 71, + 199, + 252, + 0, + 104, + 81, + 159, + 1, + 17, + 200, + 39, + 0, + 211, + 61, + 192, + 1, + 26, + 238, + 91, + 0, + 148, + 217, + 12, + 0, + 59, + 91, + 213, + 255, + 11, + 81, + 183, + 255, + 129, + 230, + 122, + 255, + 114, + 203, + 145, + 1, + 119, + 180, + 66, + 255, + 72, + 138, + 180, + 0, + 224, + 149, + 106, + 0, + 119, + 82, + 104, + 255, + 208, + 140, + 43, + 0, + 98, + 9, + 182, + 255, + 205, + 101, + 134, + 255, + 18, + 101, + 38, + 0, + 95, + 197, + 166, + 255, + 203, + 241, + 147, + 0, + 62, + 208, + 145, + 255, + 133, + 246, + 251, + 0, + 2, + 169, + 14, + 0, + 13, + 247, + 184, + 0, + 142, + 7, + 254, + 0, + 36, + 200, + 23, + 255, + 88, + 205, + 223, + 0, + 91, + 129, + 52, + 255, + 21, + 186, + 30, + 0, + 143, + 228, + 210, + 1, + 247, + 234, + 248, + 255, + 230, + 69, + 31, + 254, + 176, + 186, + 135, + 255, + 238, + 205, + 52, + 1, + 139, + 79, + 43, + 0, + 17, + 176, + 217, + 254, + 32, + 243, + 67, + 0, + 242, + 111, + 233, + 0, + 44, + 35, + 9, + 255, + 227, + 114, + 81, + 1, + 4, + 71, + 12, + 255, + 38, + 105, + 191, + 0, + 7, + 117, + 50, + 255, + 81, + 79, + 16, + 0, + 63, + 68, + 65, + 255, + 157, + 36, + 110, + 255, + 77, + 241, + 3, + 255, + 226, + 45, + 251, + 1, + 142, + 25, + 206, + 0, + 120, + 123, + 209, + 1, + 28, + 254, + 238, + 255, + 5, + 128, + 126, + 255, + 91, + 222, + 215, + 255, + 162, + 15, + 191, + 0, + 86, + 240, + 73, + 0, + 135, + 185, + 81, + 254, + 44, + 241, + 163, + 0, + 212, + 219, + 210, + 255, + 112, + 162, + 155, + 0, + 207, + 101, + 118, + 0, + 168, + 72, + 56, + 255, + 196, + 5, + 52, + 0, + 72, + 172, + 242, + 255, + 126, + 22, + 157, + 255, + 146, + 96, + 59, + 255, + 162, + 121, + 152, + 254, + 140, + 16, + 95, + 0, + 195, + 254, + 200, + 254, + 82, + 150, + 162, + 0, + 119, + 43, + 145, + 254, + 204, + 172, + 78, + 255, + 166, + 224, + 159, + 0, + 104, + 19, + 237, + 255, + 245, + 126, + 208, + 255, + 226, + 59, + 213, + 0, + 117, + 217, + 197, + 0, + 152, + 72, + 237, + 0, + 220, + 31, + 23, + 254, + 14, + 90, + 231, + 255, + 188, + 212, + 64, + 1, + 60, + 101, + 246, + 255, + 85, + 24, + 86, + 0, + 1, + 177, + 109, + 0, + 146, + 83, + 32, + 1, + 75, + 182, + 192, + 0, + 119, + 241, + 224, + 0, + 185, + 237, + 27, + 255, + 184, + 101, + 82, + 1, + 235, + 37, + 77, + 255, + 253, + 134, + 19, + 0, + 232, + 246, + 122, + 0, + 60, + 106, + 179, + 0, + 195, + 11, + 12, + 0, + 109, + 66, + 235, + 1, + 125, + 113, + 59, + 0, + 61, + 40, + 164, + 0, + 175, + 104, + 240, + 0, + 2, + 47, + 187, + 255, + 50, + 12, + 141, + 0, + 194, + 139, + 181, + 255, + 135, + 250, + 104, + 0, + 97, + 92, + 222, + 255, + 217, + 149, + 201, + 255, + 203, + 241, + 118, + 255, + 79, + 151, + 67, + 0, + 122, + 142, + 218, + 255, + 149, + 245, + 239, + 0, + 138, + 42, + 200, + 254, + 80, + 37, + 97, + 255, + 124, + 112, + 167, + 255, + 36, + 138, + 87, + 255, + 130, + 29, + 147, + 255, + 241, + 87, + 78, + 255, + 204, + 97, + 19, + 1, + 177, + 209, + 22, + 255, + 247, + 227, + 127, + 254, + 99, + 119, + 83, + 255, + 212, + 25, + 198, + 1, + 16, + 179, + 179, + 0, + 145, + 77, + 172, + 254, + 89, + 153, + 14, + 255, + 218, + 189, + 167, + 0, + 107, + 233, + 59, + 255, + 35, + 33, + 243, + 254, + 44, + 112, + 112, + 255, + 161, + 127, + 79, + 1, + 204, + 175, + 10, + 0, + 40, + 21, + 138, + 254, + 104, + 116, + 228, + 0, + 199, + 95, + 137, + 255, + 133, + 190, + 168, + 255, + 146, + 165, + 234, + 1, + 183, + 99, + 39, + 0, + 183, + 220, + 54, + 254, + 255, + 222, + 133, + 0, + 162, + 219, + 121, + 254, + 63, + 239, + 6, + 0, + 225, + 102, + 54, + 255, + 251, + 18, + 246, + 0, + 4, + 34, + 129, + 1, + 135, + 36, + 131, + 0, + 206, + 50, + 59, + 1, + 15, + 97, + 183, + 0, + 171, + 216, + 135, + 255, + 101, + 152, + 43, + 255, + 150, + 251, + 91, + 0, + 38, + 145, + 95, + 0, + 34, + 204, + 38, + 254, + 178, + 140, + 83, + 255, + 25, + 129, + 243, + 255, + 76, + 144, + 37, + 0, + 106, + 36, + 26, + 254, + 118, + 144, + 172, + 255, + 68, + 186, + 229, + 255, + 107, + 161, + 213, + 255, + 46, + 163, + 68, + 255, + 149, + 170, + 253, + 0, + 187, + 17, + 15, + 0, + 218, + 160, + 165, + 255, + 171, + 35, + 246, + 1, + 96, + 13, + 19, + 0, + 165, + 203, + 117, + 0, + 214, + 107, + 192, + 255, + 244, + 123, + 177, + 1, + 100, + 3, + 104, + 0, + 178, + 242, + 97, + 255, + 251, + 76, + 130, + 255, + 211, + 77, + 42, + 1, + 250, + 79, + 70, + 255, + 63, + 244, + 80, + 1, + 105, + 101, + 246, + 0, + 61, + 136, + 58, + 1, + 238, + 91, + 213, + 0, + 14, + 59, + 98, + 255, + 167, + 84, + 77, + 0, + 17, + 132, + 46, + 254, + 57, + 175, + 197, + 255, + 185, + 62, + 184, + 0, + 76, + 64, + 207, + 0, + 172, + 175, + 208, + 254, + 175, + 74, + 37, + 0, + 138, + 27, + 211, + 254, + 148, + 125, + 194, + 0, + 10, + 89, + 81, + 0, + 168, + 203, + 101, + 255, + 43, + 213, + 209, + 1, + 235, + 245, + 54, + 0, + 30, + 35, + 226, + 255, + 9, + 126, + 70, + 0, + 226, + 125, + 94, + 254, + 156, + 117, + 20, + 255, + 57, + 248, + 112, + 1, + 230, + 48, + 64, + 255, + 164, + 92, + 166, + 1, + 224, + 214, + 230, + 255, + 36, + 120, + 143, + 0, + 55, + 8, + 43, + 255, + 251, + 1, + 245, + 1, + 106, + 98, + 165, + 0, + 74, + 107, + 106, + 254, + 53, + 4, + 54, + 255, + 90, + 178, + 150, + 1, + 3, + 120, + 123, + 255, + 244, + 5, + 89, + 1, + 114, + 250, + 61, + 255, + 254, + 153, + 82, + 1, + 77, + 15, + 17, + 0, + 57, + 238, + 90, + 1, + 95, + 223, + 230, + 0, + 236, + 52, + 47, + 254, + 103, + 148, + 164, + 255, + 121, + 207, + 36, + 1, + 18, + 16, + 185, + 255, + 75, + 20, + 74, + 0, + 187, + 11, + 101, + 0, + 46, + 48, + 129, + 255, + 22, + 239, + 210, + 255, + 77, + 236, + 129, + 255, + 111, + 77, + 204, + 255, + 61, + 72, + 97, + 255, + 199, + 217, + 251, + 255, + 42, + 215, + 204, + 0, + 133, + 145, + 201, + 255, + 57, + 230, + 146, + 1, + 235, + 100, + 198, + 0, + 146, + 73, + 35, + 254, + 108, + 198, + 20, + 255, + 182, + 79, + 210, + 255, + 82, + 103, + 136, + 0, + 246, + 108, + 176, + 0, + 34, + 17, + 60, + 255, + 19, + 74, + 114, + 254, + 168, + 170, + 78, + 255, + 157, + 239, + 20, + 255, + 149, + 41, + 168, + 0, + 58, + 121, + 28, + 0, + 79, + 179, + 134, + 255, + 231, + 121, + 135, + 255, + 174, + 209, + 98, + 255, + 243, + 122, + 190, + 0, + 171, + 166, + 205, + 0, + 212, + 116, + 48, + 0, + 29, + 108, + 66, + 255, + 162, + 222, + 182, + 1, + 14, + 119, + 21, + 0, + 213, + 39, + 249, + 255, + 254, + 223, + 228, + 255, + 183, + 165, + 198, + 0, + 133, + 190, + 48, + 0, + 124, + 208, + 109, + 255, + 119, + 175, + 85, + 255, + 9, + 209, + 121, + 1, + 48, + 171, + 189, + 255, + 195, + 71, + 134, + 1, + 136, + 219, + 51, + 255, + 182, + 91, + 141, + 254, + 49, + 159, + 72, + 0, + 35, + 118, + 245, + 255, + 112, + 186, + 227, + 255, + 59, + 137, + 31, + 0, + 137, + 44, + 163, + 0, + 114, + 103, + 60, + 254, + 8, + 213, + 150, + 0, + 162, + 10, + 113, + 255, + 194, + 104, + 72, + 0, + 220, + 131, + 116, + 255, + 178, + 79, + 92, + 0, + 203, + 250, + 213, + 254, + 93, + 193, + 189, + 255, + 130, + 255, + 34, + 254, + 212, + 188, + 151, + 0, + 136, + 17, + 20, + 255, + 20, + 101, + 83, + 255, + 212, + 206, + 166, + 0, + 229, + 238, + 73, + 255, + 151, + 74, + 3, + 255, + 168, + 87, + 215, + 0, + 155, + 188, + 133, + 255, + 166, + 129, + 73, + 0, + 240, + 79, + 133, + 255, + 178, + 211, + 81, + 255, + 203, + 72, + 163, + 254, + 193, + 168, + 165, + 0, + 14, + 164, + 199, + 254, + 30, + 255, + 204, + 0, + 65, + 72, + 91, + 1, + 166, + 74, + 102, + 255, + 200, + 42, + 0, + 255, + 194, + 113, + 227, + 255, + 66, + 23, + 208, + 0, + 229, + 216, + 100, + 255, + 24, + 239, + 26, + 0, + 10, + 233, + 62, + 255, + 123, + 10, + 178, + 1, + 26, + 36, + 174, + 255, + 119, + 219, + 199, + 1, + 45, + 163, + 190, + 0, + 16, + 168, + 42, + 0, + 166, + 57, + 198, + 255, + 28, + 26, + 26, + 0, + 126, + 165, + 231, + 0, + 251, + 108, + 100, + 255, + 61, + 229, + 121, + 255, + 58, + 118, + 138, + 0, + 76, + 207, + 17, + 0, + 13, + 34, + 112, + 254, + 89, + 16, + 168, + 0, + 37, + 208, + 105, + 255, + 35, + 201, + 215, + 255, + 40, + 106, + 101, + 254, + 6, + 239, + 114, + 0, + 40, + 103, + 226, + 254, + 246, + 127, + 110, + 255, + 63, + 167, + 58, + 0, + 132, + 240, + 142, + 0, + 5, + 158, + 88, + 255, + 129, + 73, + 158, + 255, + 94, + 89, + 146, + 0, + 230, + 54, + 146, + 0, + 8, + 45, + 173, + 0, + 79, + 169, + 1, + 0, + 115, + 186, + 247, + 0, + 84, + 64, + 131, + 0, + 67, + 224, + 253, + 255, + 207, + 189, + 64, + 0, + 154, + 28, + 81, + 1, + 45, + 184, + 54, + 255, + 87, + 212, + 224, + 255, + 0, + 96, + 73, + 255, + 129, + 33, + 235, + 1, + 52, + 66, + 80, + 255, + 251, + 174, + 155, + 255, + 4, + 179, + 37, + 0, + 234, + 164, + 93, + 254, + 93, + 175, + 253, + 0, + 198, + 69, + 87, + 255, + 224, + 106, + 46, + 0, + 99, + 29, + 210, + 0, + 62, + 188, + 114, + 255, + 44, + 234, + 8, + 0, + 169, + 175, + 247, + 255, + 23, + 109, + 137, + 255, + 229, + 182, + 39, + 0, + 192, + 165, + 94, + 254, + 245, + 101, + 217, + 0, + 191, + 88, + 96, + 0, + 196, + 94, + 99, + 255, + 106, + 238, + 11, + 254, + 53, + 126, + 243, + 0, + 94, + 1, + 101, + 255, + 46, + 147, + 2, + 0, + 201, + 124, + 124, + 255, + 141, + 12, + 218, + 0, + 13, + 166, + 157, + 1, + 48, + 251, + 237, + 255, + 155, + 250, + 124, + 255, + 106, + 148, + 146, + 255, + 182, + 13, + 202, + 0, + 28, + 61, + 167, + 0, + 217, + 152, + 8, + 254, + 220, + 130, + 45, + 255, + 200, + 230, + 255, + 1, + 55, + 65, + 87, + 255, + 93, + 191, + 97, + 254, + 114, + 251, + 14, + 0, + 32, + 105, + 92, + 1, + 26, + 207, + 141, + 0, + 24, + 207, + 13, + 254, + 21, + 50, + 48, + 255, + 186, + 148, + 116, + 255, + 211, + 43, + 225, + 0, + 37, + 34, + 162, + 254, + 164, + 210, + 42, + 255, + 68, + 23, + 96, + 255, + 182, + 214, + 8, + 255, + 245, + 117, + 137, + 255, + 66, + 195, + 50, + 0, + 75, + 12, + 83, + 254, + 80, + 140, + 164, + 0, + 9, + 165, + 36, + 1, + 228, + 110, + 227, + 0, + 241, + 17, + 90, + 1, + 25, + 52, + 212, + 0, + 6, + 223, + 12, + 255, + 139, + 243, + 57, + 0, + 12, + 113, + 75, + 1, + 246, + 183, + 191, + 255, + 213, + 191, + 69, + 255, + 230, + 15, + 142, + 0, + 1, + 195, + 196, + 255, + 138, + 171, + 47, + 255, + 64, + 63, + 106, + 1, + 16, + 169, + 214, + 255, + 207, + 174, + 56, + 1, + 88, + 73, + 133, + 255, + 182, + 133, + 140, + 0, + 177, + 14, + 25, + 255, + 147, + 184, + 53, + 255, + 10, + 227, + 161, + 255, + 120, + 216, + 244, + 255, + 73, + 77, + 233, + 0, + 157, + 238, + 139, + 1, + 59, + 65, + 233, + 0, + 70, + 251, + 216, + 1, + 41, + 184, + 153, + 255, + 32, + 203, + 112, + 0, + 146, + 147, + 253, + 0, + 87, + 101, + 109, + 1, + 44, + 82, + 133, + 255, + 244, + 150, + 53, + 255, + 94, + 152, + 232, + 255, + 59, + 93, + 39, + 255, + 88, + 147, + 220, + 255, + 78, + 81, + 13, + 1, + 32, + 47, + 252, + 255, + 160, + 19, + 114, + 255, + 93, + 107, + 39, + 255, + 118, + 16, + 211, + 1, + 185, + 119, + 209, + 255, + 227, + 219, + 127, + 254, + 88, + 105, + 236, + 255, + 162, + 110, + 23, + 255, + 36, + 166, + 110, + 255, + 91, + 236, + 221, + 255, + 66, + 234, + 116, + 0, + 111, + 19, + 244, + 254, + 10, + 233, + 26, + 0, + 32, + 183, + 6, + 254, + 2, + 191, + 242, + 0, + 218, + 156, + 53, + 254, + 41, + 60, + 70, + 255, + 168, + 236, + 111, + 0, + 121, + 185, + 126, + 255, + 238, + 142, + 207, + 255, + 55, + 126, + 52, + 0, + 220, + 129, + 208, + 254, + 80, + 204, + 164, + 255, + 67, + 23, + 144, + 254, + 218, + 40, + 108, + 255, + 127, + 202, + 164, + 0, + 203, + 33, + 3, + 255, + 2, + 158, + 0, + 0, + 37, + 96, + 188, + 255, + 192, + 49, + 74, + 0, + 109, + 4, + 0, + 0, + 111, + 167, + 10, + 254, + 91, + 218, + 135, + 255, + 203, + 66, + 173, + 255, + 150, + 194, + 226, + 0, + 201, + 253, + 6, + 255, + 174, + 102, + 121, + 0, + 205, + 191, + 110, + 0, + 53, + 194, + 4, + 0, + 81, + 40, + 45, + 254, + 35, + 102, + 143, + 255, + 12, + 108, + 198, + 255, + 16, + 27, + 232, + 255, + 252, + 71, + 186, + 1, + 176, + 110, + 114, + 0, + 142, + 3, + 117, + 1, + 113, + 77, + 142, + 0, + 19, + 156, + 197, + 1, + 92, + 47, + 252, + 0, + 53, + 232, + 22, + 1, + 54, + 18, + 235, + 0, + 46, + 35, + 189, + 255, + 236, + 212, + 129, + 0, + 2, + 96, + 208, + 254, + 200, + 238, + 199, + 255, + 59, + 175, + 164, + 255, + 146, + 43, + 231, + 0, + 194, + 217, + 52, + 255, + 3, + 223, + 12, + 0, + 138, + 54, + 178, + 254, + 85, + 235, + 207, + 0, + 232, + 207, + 34, + 0, + 49, + 52, + 50, + 255, + 166, + 113, + 89, + 255, + 10, + 45, + 216, + 255, + 62, + 173, + 28, + 0, + 111, + 165, + 246, + 0, + 118, + 115, + 91, + 255, + 128, + 84, + 60, + 0, + 167, + 144, + 203, + 0, + 87, + 13, + 243, + 0, + 22, + 30, + 228, + 1, + 177, + 113, + 146, + 255, + 129, + 170, + 230, + 254, + 252, + 153, + 129, + 255, + 145, + 225, + 43, + 0, + 70, + 231, + 5, + 255, + 122, + 105, + 126, + 254, + 86, + 246, + 148, + 255, + 110, + 37, + 154, + 254, + 209, + 3, + 91, + 0, + 68, + 145, + 62, + 0, + 228, + 16, + 165, + 255, + 55, + 221, + 249, + 254, + 178, + 210, + 91, + 0, + 83, + 146, + 226, + 254, + 69, + 146, + 186, + 0, + 93, + 210, + 104, + 254, + 16, + 25, + 173, + 0, + 231, + 186, + 38, + 0, + 189, + 122, + 140, + 255, + 251, + 13, + 112, + 255, + 105, + 110, + 93, + 0, + 251, + 72, + 170, + 0, + 192, + 23, + 223, + 255, + 24, + 3, + 202, + 1, + 225, + 93, + 228, + 0, + 153, + 147, + 199, + 254, + 109, + 170, + 22, + 0, + 248, + 101, + 246, + 255, + 178, + 124, + 12, + 255, + 178, + 254, + 102, + 254, + 55, + 4, + 65, + 0, + 125, + 214, + 180, + 0, + 183, + 96, + 147, + 0, + 45, + 117, + 23, + 254, + 132, + 191, + 249, + 0, + 143, + 176, + 203, + 254, + 136, + 183, + 54, + 255, + 146, + 234, + 177, + 0, + 146, + 101, + 86, + 255, + 44, + 123, + 143, + 1, + 33, + 209, + 152, + 0, + 192, + 90, + 41, + 254, + 83, + 15, + 125, + 255, + 213, + 172, + 82, + 0, + 215, + 169, + 144, + 0, + 16, + 13, + 34, + 0, + 32, + 209, + 100, + 255, + 84, + 18, + 249, + 1, + 197, + 17, + 236, + 255, + 217, + 186, + 230, + 0, + 49, + 160, + 176, + 255, + 111, + 118, + 97, + 255, + 237, + 104, + 235, + 0, + 79, + 59, + 92, + 254, + 69, + 249, + 11, + 255, + 35, + 172, + 74, + 1, + 19, + 118, + 68, + 0, + 222, + 124, + 165, + 255, + 180, + 66, + 35, + 255, + 86, + 174, + 246, + 0, + 43, + 74, + 111, + 255, + 126, + 144, + 86, + 255, + 228, + 234, + 91, + 0, + 242, + 213, + 24, + 254, + 69, + 44, + 235, + 255, + 220, + 180, + 35, + 0, + 8, + 248, + 7, + 255, + 102, + 47, + 92, + 255, + 240, + 205, + 102, + 255, + 113, + 230, + 171, + 1, + 31, + 185, + 201, + 255, + 194, + 246, + 70, + 255, + 122, + 17, + 187, + 0, + 134, + 70, + 199, + 255, + 149, + 3, + 150, + 255, + 117, + 63, + 103, + 0, + 65, + 104, + 123, + 255, + 212, + 54, + 19, + 1, + 6, + 141, + 88, + 0, + 83, + 134, + 243, + 255, + 136, + 53, + 103, + 0, + 169, + 27, + 180, + 0, + 177, + 49, + 24, + 0, + 111, + 54, + 167, + 0, + 195, + 61, + 215, + 255, + 31, + 1, + 108, + 1, + 60, + 42, + 70, + 0, + 185, + 3, + 162, + 255, + 194, + 149, + 40, + 255, + 246, + 127, + 38, + 254, + 190, + 119, + 38, + 255, + 61, + 119, + 8, + 1, + 96, + 161, + 219, + 255, + 42, + 203, + 221, + 1, + 177, + 242, + 164, + 255, + 245, + 159, + 10, + 0, + 116, + 196, + 0, + 0, + 5, + 93, + 205, + 254, + 128, + 127, + 179, + 0, + 125, + 237, + 246, + 255, + 149, + 162, + 217, + 255, + 87, + 37, + 20, + 254, + 140, + 238, + 192, + 0, + 9, + 9, + 193, + 0, + 97, + 1, + 226, + 0, + 29, + 38, + 10, + 0, + 0, + 136, + 63, + 255, + 229, + 72, + 210, + 254, + 38, + 134, + 92, + 255, + 78, + 218, + 208, + 1, + 104, + 36, + 84, + 255, + 12, + 5, + 193, + 255, + 242, + 175, + 61, + 255, + 191, + 169, + 46, + 1, + 179, + 147, + 147, + 255, + 113, + 190, + 139, + 254, + 125, + 172, + 31, + 0, + 3, + 75, + 252, + 254, + 215, + 36, + 15, + 0, + 193, + 27, + 24, + 1, + 255, + 69, + 149, + 255, + 110, + 129, + 118, + 0, + 203, + 93, + 249, + 0, + 138, + 137, + 64, + 254, + 38, + 70, + 6, + 0, + 153, + 116, + 222, + 0, + 161, + 74, + 123, + 0, + 193, + 99, + 79, + 255, + 118, + 59, + 94, + 255, + 61, + 12, + 43, + 1, + 146, + 177, + 157, + 0, + 46, + 147, + 191, + 0, + 16, + 255, + 38, + 0, + 11, + 51, + 31, + 1, + 60, + 58, + 98, + 255, + 111, + 194, + 77, + 1, + 154, + 91, + 244, + 0, + 140, + 40, + 144, + 1, + 173, + 10, + 251, + 0, + 203, + 209, + 50, + 254, + 108, + 130, + 78, + 0, + 228, + 180, + 90, + 0, + 174, + 7, + 250, + 0, + 31, + 174, + 60, + 0, + 41, + 171, + 30, + 0, + 116, + 99, + 82, + 255, + 118, + 193, + 139, + 255, + 187, + 173, + 198, + 254, + 218, + 111, + 56, + 0, + 185, + 123, + 216, + 0, + 249, + 158, + 52, + 0, + 52, + 180, + 93, + 255, + 201, + 9, + 91, + 255, + 56, + 45, + 166, + 254, + 132, + 155, + 203, + 255, + 58, + 232, + 110, + 0, + 52, + 211, + 89, + 255, + 253, + 0, + 162, + 1, + 9, + 87, + 183, + 0, + 145, + 136, + 44, + 1, + 94, + 122, + 245, + 0, + 85, + 188, + 171, + 1, + 147, + 92, + 198, + 0, + 0, + 8, + 104, + 0, + 30, + 95, + 174, + 0, + 221, + 230, + 52, + 1, + 247, + 247, + 235, + 255, + 137, + 174, + 53, + 255, + 35, + 21, + 204, + 255, + 71, + 227, + 214, + 1, + 232, + 82, + 194, + 0, + 11, + 48, + 227, + 255, + 170, + 73, + 184, + 255, + 198, + 251, + 252, + 254, + 44, + 112, + 34, + 0, + 131, + 101, + 131, + 255, + 72, + 168, + 187, + 0, + 132, + 135, + 125, + 255, + 138, + 104, + 97, + 255, + 238, + 184, + 168, + 255, + 243, + 104, + 84, + 255, + 135, + 216, + 226, + 255, + 139, + 144, + 237, + 0, + 188, + 137, + 150, + 1, + 80, + 56, + 140, + 255, + 86, + 169, + 167, + 255, + 194, + 78, + 25, + 255, + 220, + 17, + 180, + 255, + 17, + 13, + 193, + 0, + 117, + 137, + 212, + 255, + 141, + 224, + 151, + 0, + 49, + 244, + 175, + 0, + 193, + 99, + 175, + 255, + 19, + 99, + 154, + 1, + 255, + 65, + 62, + 255, + 156, + 210, + 55, + 255, + 242, + 244, + 3, + 255, + 250, + 14, + 149, + 0, + 158, + 88, + 217, + 255, + 157, + 207, + 134, + 254, + 251, + 232, + 28, + 0, + 46, + 156, + 251, + 255, + 171, + 56, + 184, + 255, + 239, + 51, + 234, + 0, + 142, + 138, + 131, + 255, + 25, + 254, + 243, + 1, + 10, + 201, + 194, + 0, + 63, + 97, + 75, + 0, + 210, + 239, + 162, + 0, + 192, + 200, + 31, + 1, + 117, + 214, + 243, + 0, + 24, + 71, + 222, + 254, + 54, + 40, + 232, + 255, + 76, + 183, + 111, + 254, + 144, + 14, + 87, + 255, + 214, + 79, + 136, + 255, + 216, + 196, + 212, + 0, + 132, + 27, + 140, + 254, + 131, + 5, + 253, + 0, + 124, + 108, + 19, + 255, + 28, + 215, + 75, + 0, + 76, + 222, + 55, + 254, + 233, + 182, + 63, + 0, + 68, + 171, + 191, + 254, + 52, + 111, + 222, + 255, + 10, + 105, + 77, + 255, + 80, + 170, + 235, + 0, + 143, + 24, + 88, + 255, + 45, + 231, + 121, + 0, + 148, + 129, + 224, + 1, + 61, + 246, + 84, + 0, + 253, + 46, + 219, + 255, + 239, + 76, + 33, + 0, + 49, + 148, + 18, + 254, + 230, + 37, + 69, + 0, + 67, + 134, + 22, + 254, + 142, + 155, + 94, + 0, + 31, + 157, + 211, + 254, + 213, + 42, + 30, + 255, + 4, + 228, + 247, + 254, + 252, + 176, + 13, + 255, + 39, + 0, + 31, + 254, + 241, + 244, + 255, + 255, + 170, + 45, + 10, + 254, + 253, + 222, + 249, + 0, + 222, + 114, + 132, + 0, + 255, + 47, + 6, + 255, + 180, + 163, + 179, + 1, + 84, + 94, + 151, + 255, + 89, + 209, + 82, + 254, + 229, + 52, + 169, + 255, + 213, + 236, + 0, + 1, + 214, + 56, + 228, + 255, + 135, + 119, + 151, + 255, + 112, + 201, + 193, + 0, + 83, + 160, + 53, + 254, + 6, + 151, + 66, + 0, + 18, + 162, + 17, + 0, + 233, + 97, + 91, + 0, + 131, + 5, + 78, + 1, + 181, + 120, + 53, + 255, + 117, + 95, + 63, + 255, + 237, + 117, + 185, + 0, + 191, + 126, + 136, + 255, + 144, + 119, + 233, + 0, + 183, + 57, + 97, + 1, + 47, + 201, + 187, + 255, + 167, + 165, + 119, + 1, + 45, + 100, + 126, + 0, + 21, + 98, + 6, + 254, + 145, + 150, + 95, + 255, + 120, + 54, + 152, + 0, + 209, + 98, + 104, + 0, + 143, + 111, + 30, + 254, + 184, + 148, + 249, + 0, + 235, + 216, + 46, + 0, + 248, + 202, + 148, + 255, + 57, + 95, + 22, + 0, + 242, + 225, + 163, + 0, + 233, + 247, + 232, + 255, + 71, + 171, + 19, + 255, + 103, + 244, + 49, + 255, + 84, + 103, + 93, + 255, + 68, + 121, + 244, + 1, + 82, + 224, + 13, + 0, + 41, + 79, + 43, + 255, + 249, + 206, + 167, + 255, + 215, + 52, + 21, + 254, + 192, + 32, + 22, + 255, + 247, + 111, + 60, + 0, + 101, + 74, + 38, + 255, + 22, + 91, + 84, + 254, + 29, + 28, + 13, + 255, + 198, + 231, + 215, + 254, + 244, + 154, + 200, + 0, + 223, + 137, + 237, + 0, + 211, + 132, + 14, + 0, + 95, + 64, + 206, + 255, + 17, + 62, + 247, + 255, + 233, + 131, + 121, + 1, + 93, + 23, + 77, + 0, + 205, + 204, + 52, + 254, + 81, + 189, + 136, + 0, + 180, + 219, + 138, + 1, + 143, + 18, + 94, + 0, + 204, + 43, + 140, + 254, + 188, + 175, + 219, + 0, + 111, + 98, + 143, + 255, + 151, + 63, + 162, + 255, + 211, + 50, + 71, + 254, + 19, + 146, + 53, + 0, + 146, + 45, + 83, + 254, + 178, + 82, + 238, + 255, + 16, + 133, + 84, + 255, + 226, + 198, + 93, + 255, + 201, + 97, + 20, + 255, + 120, + 118, + 35, + 255, + 114, + 50, + 231, + 255, + 162, + 229, + 156, + 255, + 211, + 26, + 12, + 0, + 114, + 39, + 115, + 255, + 206, + 212, + 134, + 0, + 197, + 217, + 160, + 255, + 116, + 129, + 94, + 254, + 199, + 215, + 219, + 255, + 75, + 223, + 249, + 1, + 253, + 116, + 181, + 255, + 232, + 215, + 104, + 255, + 228, + 130, + 246, + 255, + 185, + 117, + 86, + 0, + 14, + 5, + 8, + 0, + 239, + 29, + 61, + 1, + 237, + 87, + 133, + 255, + 125, + 146, + 137, + 254, + 204, + 168, + 223, + 0, + 46, + 168, + 245, + 0, + 154, + 105, + 22, + 0, + 220, + 212, + 161, + 255, + 107, + 69, + 24, + 255, + 137, + 218, + 181, + 255, + 241, + 84, + 198, + 255, + 130, + 122, + 211, + 255, + 141, + 8, + 153, + 255, + 190, + 177, + 118, + 0, + 96, + 89, + 178, + 0, + 255, + 16, + 48, + 254, + 122, + 96, + 105, + 255, + 117, + 54, + 232, + 255, + 34, + 126, + 105, + 255, + 204, + 67, + 166, + 0, + 232, + 52, + 138, + 255, + 211, + 147, + 12, + 0, + 25, + 54, + 7, + 0, + 44, + 15, + 215, + 254, + 51, + 236, + 45, + 0, + 190, + 68, + 129, + 1, + 106, + 147, + 225, + 0, + 28, + 93, + 45, + 254, + 236, + 141, + 15, + 255, + 17, + 61, + 161, + 0, + 220, + 115, + 192, + 0, + 236, + 145, + 24, + 254, + 111, + 168, + 169, + 0, + 224, + 58, + 63, + 255, + 127, + 164, + 188, + 0, + 82, + 234, + 75, + 1, + 224, + 158, + 134, + 0, + 209, + 68, + 110, + 1, + 217, + 166, + 217, + 0, + 70, + 225, + 166, + 1, + 187, + 193, + 143, + 255, + 16, + 7, + 88, + 255, + 10, + 205, + 140, + 0, + 117, + 192, + 156, + 1, + 17, + 56, + 38, + 0, + 27, + 124, + 108, + 1, + 171, + 215, + 55, + 255, + 95, + 253, + 212, + 0, + 155, + 135, + 168, + 255, + 246, + 178, + 153, + 254, + 154, + 68, + 74, + 0, + 232, + 61, + 96, + 254, + 105, + 132, + 59, + 0, + 33, + 76, + 199, + 1, + 189, + 176, + 130, + 255, + 9, + 104, + 25, + 254, + 75, + 198, + 102, + 255, + 233, + 1, + 112, + 0, + 108, + 220, + 20, + 255, + 114, + 230, + 70, + 0, + 140, + 194, + 133, + 255, + 57, + 158, + 164, + 254, + 146, + 6, + 80, + 255, + 169, + 196, + 97, + 1, + 85, + 183, + 130, + 0, + 70, + 158, + 222, + 1, + 59, + 237, + 234, + 255, + 96, + 25, + 26, + 255, + 232, + 175, + 97, + 255, + 11, + 121, + 248, + 254, + 88, + 35, + 194, + 0, + 219, + 180, + 252, + 254, + 74, + 8, + 227, + 0, + 195, + 227, + 73, + 1, + 184, + 110, + 161, + 255, + 49, + 233, + 164, + 1, + 128, + 53, + 47, + 0, + 82, + 14, + 121, + 255, + 193, + 190, + 58, + 0, + 48, + 174, + 117, + 255, + 132, + 23, + 32, + 0, + 40, + 10, + 134, + 1, + 22, + 51, + 25, + 255, + 240, + 11, + 176, + 255, + 110, + 57, + 146, + 0, + 117, + 143, + 239, + 1, + 157, + 101, + 118, + 255, + 54, + 84, + 76, + 0, + 205, + 184, + 18, + 255, + 47, + 4, + 72, + 255, + 78, + 112, + 85, + 255, + 193, + 50, + 66, + 1, + 93, + 16, + 52, + 255, + 8, + 105, + 134, + 0, + 12, + 109, + 72, + 255, + 58, + 156, + 251, + 0, + 144, + 35, + 204, + 0, + 44, + 160, + 117, + 254, + 50, + 107, + 194, + 0, + 1, + 68, + 165, + 255, + 111, + 110, + 162, + 0, + 158, + 83, + 40, + 254, + 76, + 214, + 234, + 0, + 58, + 216, + 205, + 255, + 171, + 96, + 147, + 255, + 40, + 227, + 114, + 1, + 176, + 227, + 241, + 0, + 70, + 249, + 183, + 1, + 136, + 84, + 139, + 255, + 60, + 122, + 247, + 254, + 143, + 9, + 117, + 255, + 177, + 174, + 137, + 254, + 73, + 247, + 143, + 0, + 236, + 185, + 126, + 255, + 62, + 25, + 247, + 255, + 45, + 64, + 56, + 255, + 161, + 244, + 6, + 0, + 34, + 57, + 56, + 1, + 105, + 202, + 83, + 0, + 128, + 147, + 208, + 0, + 6, + 103, + 10, + 255, + 74, + 138, + 65, + 255, + 97, + 80, + 100, + 255, + 214, + 174, + 33, + 255, + 50, + 134, + 74, + 255, + 110, + 151, + 130, + 254, + 111, + 84, + 172, + 0, + 84, + 199, + 75, + 254, + 248, + 59, + 112, + 255, + 8, + 216, + 178, + 1, + 9, + 183, + 95, + 0, + 238, + 27, + 8, + 254, + 170, + 205, + 220, + 0, + 195, + 229, + 135, + 0, + 98, + 76, + 237, + 255, + 226, + 91, + 26, + 1, + 82, + 219, + 39, + 255, + 225, + 190, + 199, + 1, + 217, + 200, + 121, + 255, + 81, + 179, + 8, + 255, + 140, + 65, + 206, + 0, + 178, + 207, + 87, + 254, + 250, + 252, + 46, + 255, + 104, + 89, + 110, + 1, + 253, + 189, + 158, + 255, + 144, + 214, + 158, + 255, + 160, + 245, + 54, + 255, + 53, + 183, + 92, + 1, + 21, + 200, + 194, + 255, + 146, + 33, + 113, + 1, + 209, + 1, + 255, + 0, + 235, + 106, + 43, + 255, + 167, + 52, + 232, + 0, + 157, + 229, + 221, + 0, + 51, + 30, + 25, + 0, + 250, + 221, + 27, + 1, + 65, + 147, + 87, + 255, + 79, + 123, + 196, + 0, + 65, + 196, + 223, + 255, + 76, + 44, + 17, + 1, + 85, + 241, + 68, + 0, + 202, + 183, + 249, + 255, + 65, + 212, + 212, + 255, + 9, + 33, + 154, + 1, + 71, + 59, + 80, + 0, + 175, + 194, + 59, + 255, + 141, + 72, + 9, + 0, + 100, + 160, + 244, + 0, + 230, + 208, + 56, + 0, + 59, + 25, + 75, + 254, + 80, + 194, + 194, + 0, + 18, + 3, + 200, + 254, + 160, + 159, + 115, + 0, + 132, + 143, + 247, + 1, + 111, + 93, + 57, + 255, + 58, + 237, + 11, + 1, + 134, + 222, + 135, + 255, + 122, + 163, + 108, + 1, + 123, + 43, + 190, + 255, + 251, + 189, + 206, + 254, + 80, + 182, + 72, + 255, + 208, + 246, + 224, + 1, + 17, + 60, + 9, + 0, + 161, + 207, + 38, + 0, + 141, + 109, + 91, + 0, + 216, + 15, + 211, + 255, + 136, + 78, + 110, + 0, + 98, + 163, + 104, + 255, + 21, + 80, + 121, + 255, + 173, + 178, + 183, + 1, + 127, + 143, + 4, + 0, + 104, + 60, + 82, + 254, + 214, + 16, + 13, + 255, + 96, + 238, + 33, + 1, + 158, + 148, + 230, + 255, + 127, + 129, + 62, + 255, + 51, + 255, + 210, + 255, + 62, + 141, + 236, + 254, + 157, + 55, + 224, + 255, + 114, + 39, + 244, + 0, + 192, + 188, + 250, + 255, + 228, + 76, + 53, + 0, + 98, + 84, + 81, + 255, + 173, + 203, + 61, + 254, + 147, + 50, + 55, + 255, + 204, + 235, + 191, + 0, + 52, + 197, + 244, + 0, + 88, + 43, + 211, + 254, + 27, + 191, + 119, + 0, + 188, + 231, + 154, + 0, + 66, + 81, + 161, + 0, + 92, + 193, + 160, + 1, + 250, + 227, + 120, + 0, + 123, + 55, + 226, + 0, + 184, + 17, + 72, + 0, + 133, + 168, + 10, + 254, + 22, + 135, + 156, + 255, + 41, + 25, + 103, + 255, + 48, + 202, + 58, + 0, + 186, + 149, + 81, + 255, + 188, + 134, + 239, + 0, + 235, + 181, + 189, + 254, + 217, + 139, + 188, + 255, + 74, + 48, + 82, + 0, + 46, + 218, + 229, + 0, + 189, + 253, + 251, + 0, + 50, + 229, + 12, + 255, + 211, + 141, + 191, + 1, + 128, + 244, + 25, + 255, + 169, + 231, + 122, + 254, + 86, + 47, + 189, + 255, + 132, + 183, + 23, + 255, + 37, + 178, + 150, + 255, + 51, + 137, + 253, + 0, + 200, + 78, + 31, + 0, + 22, + 105, + 50, + 0, + 130, + 60, + 0, + 0, + 132, + 163, + 91, + 254, + 23, + 231, + 187, + 0, + 192, + 79, + 239, + 0, + 157, + 102, + 164, + 255, + 192, + 82, + 20, + 1, + 24, + 181, + 103, + 255, + 240, + 9, + 234, + 0, + 1, + 123, + 164, + 255, + 133, + 233, + 0, + 255, + 202, + 242, + 242, + 0, + 60, + 186, + 245, + 0, + 241, + 16, + 199, + 255, + 224, + 116, + 158, + 254, + 191, + 125, + 91, + 255, + 224, + 86, + 207, + 0, + 121, + 37, + 231, + 255, + 227, + 9, + 198, + 255, + 15, + 153, + 239, + 255, + 121, + 232, + 217, + 254, + 75, + 112, + 82, + 0, + 95, + 12, + 57, + 254, + 51, + 214, + 105, + 255, + 148, + 220, + 97, + 1, + 199, + 98, + 36, + 0, + 156, + 209, + 12, + 254, + 10, + 212, + 52, + 0, + 217, + 180, + 55, + 254, + 212, + 170, + 232, + 255, + 216, + 20, + 84, + 255, + 157, + 250, + 135, + 0, + 157, + 99, + 127, + 254, + 1, + 206, + 41, + 0, + 149, + 36, + 70, + 1, + 54, + 196, + 201, + 255, + 87, + 116, + 0, + 254, + 235, + 171, + 150, + 0, + 27, + 163, + 234, + 0, + 202, + 135, + 180, + 0, + 208, + 95, + 0, + 254, + 123, + 156, + 93, + 0, + 183, + 62, + 75, + 0, + 137, + 235, + 182, + 0, + 204, + 225, + 255, + 255, + 214, + 139, + 210, + 255, + 2, + 115, + 8, + 255, + 29, + 12, + 111, + 0, + 52, + 156, + 1, + 0, + 253, + 21, + 251, + 255, + 37, + 165, + 31, + 254, + 12, + 130, + 211, + 0, + 106, + 18, + 53, + 254, + 42, + 99, + 154, + 0, + 14, + 217, + 61, + 254, + 216, + 11, + 92, + 255, + 200, + 197, + 112, + 254, + 147, + 38, + 199, + 0, + 36, + 252, + 120, + 254, + 107, + 169, + 77, + 0, + 1, + 123, + 159, + 255, + 207, + 75, + 102, + 0, + 163, + 175, + 196, + 0, + 44, + 1, + 240, + 0, + 120, + 186, + 176, + 254, + 13, + 98, + 76, + 255, + 237, + 124, + 241, + 255, + 232, + 146, + 188, + 255, + 200, + 96, + 224, + 0, + 204, + 31, + 41, + 0, + 208, + 200, + 13, + 0, + 21, + 225, + 96, + 255, + 175, + 156, + 196, + 0, + 247, + 208, + 126, + 0, + 62, + 184, + 244, + 254, + 2, + 171, + 81, + 0, + 85, + 115, + 158, + 0, + 54, + 64, + 45, + 255, + 19, + 138, + 114, + 0, + 135, + 71, + 205, + 0, + 227, + 47, + 147, + 1, + 218, + 231, + 66, + 0, + 253, + 209, + 28, + 0, + 244, + 15, + 173, + 255, + 6, + 15, + 118, + 254, + 16, + 150, + 208, + 255, + 185, + 22, + 50, + 255, + 86, + 112, + 207, + 255, + 75, + 113, + 215, + 1, + 63, + 146, + 43, + 255, + 4, + 225, + 19, + 254, + 227, + 23, + 62, + 255, + 14, + 255, + 214, + 254, + 45, + 8, + 205, + 255, + 87, + 197, + 151, + 254, + 210, + 82, + 215, + 255, + 245, + 248, + 247, + 255, + 128, + 248, + 70, + 0, + 225, + 247, + 87, + 0, + 90, + 120, + 70, + 0, + 213, + 245, + 92, + 0, + 13, + 133, + 226, + 0, + 47, + 181, + 5, + 1, + 92, + 163, + 105, + 255, + 6, + 30, + 133, + 254, + 232, + 178, + 61, + 255, + 230, + 149, + 24, + 255, + 18, + 49, + 158, + 0, + 228, + 100, + 61, + 254, + 116, + 243, + 251, + 255, + 77, + 75, + 92, + 1, + 81, + 219, + 147, + 255, + 76, + 163, + 254, + 254, + 141, + 213, + 246, + 0, + 232, + 37, + 152, + 254, + 97, + 44, + 100, + 0, + 201, + 37, + 50, + 1, + 212, + 244, + 57, + 0, + 174, + 171, + 183, + 255, + 249, + 74, + 112, + 0, + 166, + 156, + 30, + 0, + 222, + 221, + 97, + 255, + 243, + 93, + 73, + 254, + 251, + 101, + 100, + 255, + 216, + 217, + 93, + 255, + 254, + 138, + 187, + 255, + 142, + 190, + 52, + 255, + 59, + 203, + 177, + 255, + 200, + 94, + 52, + 0, + 115, + 114, + 158, + 255, + 165, + 152, + 104, + 1, + 126, + 99, + 226, + 255, + 118, + 157, + 244, + 1, + 107, + 200, + 16, + 0, + 193, + 90, + 229, + 0, + 121, + 6, + 88, + 0, + 156, + 32, + 93, + 254, + 125, + 241, + 211, + 255, + 14, + 237, + 157, + 255, + 165, + 154, + 21, + 255, + 184, + 224, + 22, + 255, + 250, + 24, + 152, + 255, + 113, + 77, + 31, + 0, + 247, + 171, + 23, + 255, + 237, + 177, + 204, + 255, + 52, + 137, + 145, + 255, + 194, + 182, + 114, + 0, + 224, + 234, + 149, + 0, + 10, + 111, + 103, + 1, + 201, + 129, + 4, + 0, + 238, + 142, + 78, + 0, + 52, + 6, + 40, + 255, + 110, + 213, + 165, + 254, + 60, + 207, + 253, + 0, + 62, + 215, + 69, + 0, + 96, + 97, + 0, + 255, + 49, + 45, + 202, + 0, + 120, + 121, + 22, + 255, + 235, + 139, + 48, + 1, + 198, + 45, + 34, + 255, + 182, + 50, + 27, + 1, + 131, + 210, + 91, + 255, + 46, + 54, + 128, + 0, + 175, + 123, + 105, + 255, + 198, + 141, + 78, + 254, + 67, + 244, + 239, + 255, + 245, + 54, + 103, + 254, + 78, + 38, + 242, + 255, + 2, + 92, + 249, + 254, + 251, + 174, + 87, + 255, + 139, + 63, + 144, + 0, + 24, + 108, + 27, + 255, + 34, + 102, + 18, + 1, + 34, + 22, + 152, + 0, + 66, + 229, + 118, + 254, + 50, + 143, + 99, + 0, + 144, + 169, + 149, + 1, + 118, + 30, + 152, + 0, + 178, + 8, + 121, + 1, + 8, + 159, + 18, + 0, + 90, + 101, + 230, + 255, + 129, + 29, + 119, + 0, + 68, + 36, + 11, + 1, + 232, + 183, + 55, + 0, + 23, + 255, + 96, + 255, + 161, + 41, + 193, + 255, + 63, + 139, + 222, + 0, + 15, + 179, + 243, + 0, + 255, + 100, + 15, + 255, + 82, + 53, + 135, + 0, + 137, + 57, + 149, + 1, + 99, + 240, + 170, + 255, + 22, + 230, + 228, + 254, + 49, + 180, + 82, + 255, + 61, + 82, + 43, + 0, + 110, + 245, + 217, + 0, + 199, + 125, + 61, + 0, + 46, + 253, + 52, + 0, + 141, + 197, + 219, + 0, + 211, + 159, + 193, + 0, + 55, + 121, + 105, + 254, + 183, + 20, + 129, + 0, + 169, + 119, + 170, + 255, + 203, + 178, + 139, + 255, + 135, + 40, + 182, + 255, + 172, + 13, + 202, + 255, + 65, + 178, + 148, + 0, + 8, + 207, + 43, + 0, + 122, + 53, + 127, + 1, + 74, + 161, + 48, + 0, + 227, + 214, + 128, + 254, + 86, + 11, + 243, + 255, + 100, + 86, + 7, + 1, + 245, + 68, + 134, + 255, + 61, + 43, + 21, + 1, + 152, + 84, + 94, + 255, + 190, + 60, + 250, + 254, + 239, + 118, + 232, + 255, + 214, + 136, + 37, + 1, + 113, + 76, + 107, + 255, + 93, + 104, + 100, + 1, + 144, + 206, + 23, + 255, + 110, + 150, + 154, + 1, + 228, + 103, + 185, + 0, + 218, + 49, + 50, + 254, + 135, + 77, + 139, + 255, + 185, + 1, + 78, + 0, + 0, + 161, + 148, + 255, + 97, + 29, + 233, + 255, + 207, + 148, + 149, + 255, + 160, + 168, + 0, + 0, + 91, + 128, + 171, + 255, + 6, + 28, + 19, + 254, + 11, + 111, + 247, + 0, + 39, + 187, + 150, + 255, + 138, + 232, + 149, + 0, + 117, + 62, + 68, + 255, + 63, + 216, + 188, + 255, + 235, + 234, + 32, + 254, + 29, + 57, + 160, + 255, + 25, + 12, + 241, + 1, + 169, + 60, + 191, + 0, + 32, + 131, + 141, + 255, + 237, + 159, + 123, + 255, + 94, + 197, + 94, + 254, + 116, + 254, + 3, + 255, + 92, + 179, + 97, + 254, + 121, + 97, + 92, + 255, + 170, + 112, + 14, + 0, + 21, + 149, + 248, + 0, + 248, + 227, + 3, + 0, + 80, + 96, + 109, + 0, + 75, + 192, + 74, + 1, + 12, + 90, + 226, + 255, + 161, + 106, + 68, + 1, + 208, + 114, + 127, + 255, + 114, + 42, + 255, + 254, + 74, + 26, + 74, + 255, + 247, + 179, + 150, + 254, + 121, + 140, + 60, + 0, + 147, + 70, + 200, + 255, + 214, + 40, + 161, + 255, + 161, + 188, + 201, + 255, + 141, + 65, + 135, + 255, + 242, + 115, + 252, + 0, + 62, + 47, + 202, + 0, + 180, + 149, + 255, + 254, + 130, + 55, + 237, + 0, + 165, + 17, + 186, + 255, + 10, + 169, + 194, + 0, + 156, + 109, + 218, + 255, + 112, + 140, + 123, + 255, + 104, + 128, + 223, + 254, + 177, + 142, + 108, + 255, + 121, + 37, + 219, + 255, + 128, + 77, + 18, + 255, + 111, + 108, + 23, + 1, + 91, + 192, + 75, + 0, + 174, + 245, + 22, + 255, + 4, + 236, + 62, + 255, + 43, + 64, + 153, + 1, + 227, + 173, + 254, + 0, + 237, + 122, + 132, + 1, + 127, + 89, + 186, + 255, + 142, + 82, + 128, + 254, + 252, + 84, + 174, + 0, + 90, + 179, + 177, + 1, + 243, + 214, + 87, + 255, + 103, + 60, + 162, + 255, + 208, + 130, + 14, + 255, + 11, + 130, + 139, + 0, + 206, + 129, + 219, + 255, + 94, + 217, + 157, + 255, + 239, + 230, + 230, + 255, + 116, + 115, + 159, + 254, + 164, + 107, + 95, + 0, + 51, + 218, + 2, + 1, + 216, + 125, + 198, + 255, + 140, + 202, + 128, + 254, + 11, + 95, + 68, + 255, + 55, + 9, + 93, + 254, + 174, + 153, + 6, + 255, + 204, + 172, + 96, + 0, + 69, + 160, + 110, + 0, + 213, + 38, + 49, + 254, + 27, + 80, + 213, + 0, + 118, + 125, + 114, + 0, + 70, + 70, + 67, + 255, + 15, + 142, + 73, + 255, + 131, + 122, + 185, + 255, + 243, + 20, + 50, + 254, + 130, + 237, + 40, + 0, + 210, + 159, + 140, + 1, + 197, + 151, + 65, + 255, + 84, + 153, + 66, + 0, + 195, + 126, + 90, + 0, + 16, + 238, + 236, + 1, + 118, + 187, + 102, + 255, + 3, + 24, + 133, + 255, + 187, + 69, + 230, + 0, + 56, + 197, + 92, + 1, + 213, + 69, + 94, + 255, + 80, + 138, + 229, + 1, + 206, + 7, + 230, + 0, + 222, + 111, + 230, + 1, + 91, + 233, + 119, + 255, + 9, + 89, + 7, + 1, + 2, + 98, + 1, + 0, + 148, + 74, + 133, + 255, + 51, + 246, + 180, + 255, + 228, + 177, + 112, + 1, + 58, + 189, + 108, + 255, + 194, + 203, + 237, + 254, + 21, + 209, + 195, + 0, + 147, + 10, + 35, + 1, + 86, + 157, + 226, + 0, + 31, + 163, + 139, + 254, + 56, + 7, + 75, + 255, + 62, + 90, + 116, + 0, + 181, + 60, + 169, + 0, + 138, + 162, + 212, + 254, + 81, + 167, + 31, + 0, + 205, + 90, + 112, + 255, + 33, + 112, + 227, + 0, + 83, + 151, + 117, + 1, + 177, + 224, + 73, + 255, + 174, + 144, + 217, + 255, + 230, + 204, + 79, + 255, + 22, + 77, + 232, + 255, + 114, + 78, + 234, + 0, + 224, + 57, + 126, + 254, + 9, + 49, + 141, + 0, + 242, + 147, + 165, + 1, + 104, + 182, + 140, + 255, + 167, + 132, + 12, + 1, + 123, + 68, + 127, + 0, + 225, + 87, + 39, + 1, + 251, + 108, + 8, + 0, + 198, + 193, + 143, + 1, + 121, + 135, + 207, + 255, + 172, + 22, + 70, + 0, + 50, + 68, + 116, + 255, + 101, + 175, + 40, + 255, + 248, + 105, + 233, + 0, + 166, + 203, + 7, + 0, + 110, + 197, + 218, + 0, + 215, + 254, + 26, + 254, + 168, + 226, + 253, + 0, + 31, + 143, + 96, + 0, + 11, + 103, + 41, + 0, + 183, + 129, + 203, + 254, + 100, + 247, + 74, + 255, + 213, + 126, + 132, + 0, + 210, + 147, + 44, + 0, + 199, + 234, + 27, + 1, + 148, + 47, + 181, + 0, + 155, + 91, + 158, + 1, + 54, + 105, + 175, + 255, + 2, + 78, + 145, + 254, + 102, + 154, + 95, + 0, + 128, + 207, + 127, + 254, + 52, + 124, + 236, + 255, + 130, + 84, + 71, + 0, + 221, + 243, + 211, + 0, + 152, + 170, + 207, + 0, + 222, + 106, + 199, + 0, + 183, + 84, + 94, + 254, + 92, + 200, + 56, + 255, + 138, + 182, + 115, + 1, + 142, + 96, + 146, + 0, + 133, + 136, + 228, + 0, + 97, + 18, + 150, + 0, + 55, + 251, + 66, + 0, + 140, + 102, + 4, + 0, + 202, + 103, + 151, + 0, + 30, + 19, + 248, + 255, + 51, + 184, + 207, + 0, + 202, + 198, + 89, + 0, + 55, + 197, + 225, + 254, + 169, + 95, + 249, + 255, + 66, + 65, + 68, + 255, + 188, + 234, + 126, + 0, + 166, + 223, + 100, + 1, + 112, + 239, + 244, + 0, + 144, + 23, + 194, + 0, + 58, + 39, + 182, + 0, + 244, + 44, + 24, + 254, + 175, + 68, + 179, + 255, + 152, + 118, + 154, + 1, + 176, + 162, + 130, + 0, + 217, + 114, + 204, + 254, + 173, + 126, + 78, + 255, + 33, + 222, + 30, + 255, + 36, + 2, + 91, + 255, + 2, + 143, + 243, + 0, + 9, + 235, + 215, + 0, + 3, + 171, + 151, + 1, + 24, + 215, + 245, + 255, + 168, + 47, + 164, + 254, + 241, + 146, + 207, + 0, + 69, + 129, + 180, + 0, + 68, + 243, + 113, + 0, + 144, + 53, + 72, + 254, + 251, + 45, + 14, + 0, + 23, + 110, + 168, + 0, + 68, + 68, + 79, + 255, + 110, + 70, + 95, + 254, + 174, + 91, + 144, + 255, + 33, + 206, + 95, + 255, + 137, + 41, + 7, + 255, + 19, + 187, + 153, + 254, + 35, + 255, + 112, + 255, + 9, + 145, + 185, + 254, + 50, + 157, + 37, + 0, + 11, + 112, + 49, + 1, + 102, + 8, + 190, + 255, + 234, + 243, + 169, + 1, + 60, + 85, + 23, + 0, + 74, + 39, + 189, + 0, + 116, + 49, + 239, + 0, + 173, + 213, + 210, + 0, + 46, + 161, + 108, + 255, + 159, + 150, + 37, + 0, + 196, + 120, + 185, + 255, + 34, + 98, + 6, + 255, + 153, + 195, + 62, + 255, + 97, + 230, + 71, + 255, + 102, + 61, + 76, + 0, + 26, + 212, + 236, + 255, + 164, + 97, + 16, + 0, + 198, + 59, + 146, + 0, + 163, + 23, + 196, + 0, + 56, + 24, + 61, + 0, + 181, + 98, + 193, + 0, + 251, + 147, + 229, + 255, + 98, + 189, + 24, + 255, + 46, + 54, + 206, + 255, + 234, + 82, + 246, + 0, + 183, + 103, + 38, + 1, + 109, + 62, + 204, + 0, + 10, + 240, + 224, + 0, + 146, + 22, + 117, + 255, + 142, + 154, + 120, + 0, + 69, + 212, + 35, + 0, + 208, + 99, + 118, + 1, + 121, + 255, + 3, + 255, + 72, + 6, + 194, + 0, + 117, + 17, + 197, + 255, + 125, + 15, + 23, + 0, + 154, + 79, + 153, + 0, + 214, + 94, + 197, + 255, + 185, + 55, + 147, + 255, + 62, + 254, + 78, + 254, + 127, + 82, + 153, + 0, + 110, + 102, + 63, + 255, + 108, + 82, + 161, + 255, + 105, + 187, + 212, + 1, + 80, + 138, + 39, + 0, + 60, + 255, + 93, + 255, + 72, + 12, + 186, + 0, + 210, + 251, + 31, + 1, + 190, + 167, + 144, + 255, + 228, + 44, + 19, + 254, + 128, + 67, + 232, + 0, + 214, + 249, + 107, + 254, + 136, + 145, + 86, + 255, + 132, + 46, + 176, + 0, + 189, + 187, + 227, + 255, + 208, + 22, + 140, + 0, + 217, + 211, + 116, + 0, + 50, + 81, + 186, + 254, + 139, + 250, + 31, + 0, + 30, + 64, + 198, + 1, + 135, + 155, + 100, + 0, + 160, + 206, + 23, + 254, + 187, + 162, + 211, + 255, + 16, + 188, + 63, + 0, + 254, + 208, + 49, + 0, + 85, + 84, + 191, + 0, + 241, + 192, + 242, + 255, + 153, + 126, + 145, + 1, + 234, + 162, + 162, + 255, + 230, + 97, + 216, + 1, + 64, + 135, + 126, + 0, + 190, + 148, + 223, + 1, + 52, + 0, + 43, + 255, + 28, + 39, + 189, + 1, + 64, + 136, + 238, + 0, + 175, + 196, + 185, + 0, + 98, + 226, + 213, + 255, + 127, + 159, + 244, + 1, + 226, + 175, + 60, + 0, + 160, + 233, + 142, + 1, + 180, + 243, + 207, + 255, + 69, + 152, + 89, + 1, + 31, + 101, + 21, + 0, + 144, + 25, + 164, + 254, + 139, + 191, + 209, + 0, + 91, + 25, + 121, + 0, + 32, + 147, + 5, + 0, + 39, + 186, + 123, + 255, + 63, + 115, + 230, + 255, + 93, + 167, + 198, + 255, + 143, + 213, + 220, + 255, + 179, + 156, + 19, + 255, + 25, + 66, + 122, + 0, + 214, + 160, + 217, + 255, + 2, + 45, + 62, + 255, + 106, + 79, + 146, + 254, + 51, + 137, + 99, + 255, + 87, + 100, + 231, + 255, + 175, + 145, + 232, + 255, + 101, + 184, + 1, + 255, + 174, + 9, + 125, + 0, + 82, + 37, + 161, + 1, + 36, + 114, + 141, + 255, + 48, + 222, + 142, + 255, + 245, + 186, + 154, + 0, + 5, + 174, + 221, + 254, + 63, + 114, + 155, + 255, + 135, + 55, + 160, + 1, + 80, + 31, + 135, + 0, + 126, + 250, + 179, + 1, + 236, + 218, + 45, + 0, + 20, + 28, + 145, + 1, + 16, + 147, + 73, + 0, + 249, + 189, + 132, + 1, + 17, + 189, + 192, + 255, + 223, + 142, + 198, + 255, + 72, + 20, + 15, + 255, + 250, + 53, + 237, + 254, + 15, + 11, + 18, + 0, + 27, + 211, + 113, + 254, + 213, + 107, + 56, + 255, + 174, + 147, + 146, + 255, + 96, + 126, + 48, + 0, + 23, + 193, + 109, + 1, + 37, + 162, + 94, + 0, + 199, + 157, + 249, + 254, + 24, + 128, + 187, + 255, + 205, + 49, + 178, + 254, + 93, + 164, + 42, + 255, + 43, + 119, + 235, + 1, + 88, + 183, + 237, + 255, + 218, + 210, + 1, + 255, + 107, + 254, + 42, + 0, + 230, + 10, + 99, + 255, + 162, + 0, + 226, + 0, + 219, + 237, + 91, + 0, + 129, + 178, + 203, + 0, + 208, + 50, + 95, + 254, + 206, + 208, + 95, + 255, + 247, + 191, + 89, + 254, + 110, + 234, + 79, + 255, + 165, + 61, + 243, + 0, + 20, + 122, + 112, + 255, + 246, + 246, + 185, + 254, + 103, + 4, + 123, + 0, + 233, + 99, + 230, + 1, + 219, + 91, + 252, + 255, + 199, + 222, + 22, + 255, + 179, + 245, + 233, + 255, + 211, + 241, + 234, + 0, + 111, + 250, + 192, + 255, + 85, + 84, + 136, + 0, + 101, + 58, + 50, + 255, + 131, + 173, + 156, + 254, + 119, + 45, + 51, + 255, + 118, + 233, + 16, + 254, + 242, + 90, + 214, + 0, + 94, + 159, + 219, + 1, + 3, + 3, + 234, + 255, + 98, + 76, + 92, + 254, + 80, + 54, + 230, + 0, + 5, + 228, + 231, + 254, + 53, + 24, + 223, + 255, + 113, + 56, + 118, + 1, + 20, + 132, + 1, + 255, + 171, + 210, + 236, + 0, + 56, + 241, + 158, + 255, + 186, + 115, + 19, + 255, + 8, + 229, + 174, + 0, + 48, + 44, + 0, + 1, + 114, + 114, + 166, + 255, + 6, + 73, + 226, + 255, + 205, + 89, + 244, + 0, + 137, + 227, + 75, + 1, + 248, + 173, + 56, + 0, + 74, + 120, + 246, + 254, + 119, + 3, + 11, + 255, + 81, + 120, + 198, + 255, + 136, + 122, + 98, + 255, + 146, + 241, + 221, + 1, + 109, + 194, + 78, + 255, + 223, + 241, + 70, + 1, + 214, + 200, + 169, + 255, + 97, + 190, + 47, + 255, + 47, + 103, + 174, + 255, + 99, + 92, + 72, + 254, + 118, + 233, + 180, + 255, + 193, + 35, + 233, + 254, + 26, + 229, + 32, + 255, + 222, + 252, + 198, + 0, + 204, + 43, + 71, + 255, + 199, + 84, + 172, + 0, + 134, + 102, + 190, + 0, + 111, + 238, + 97, + 254, + 230, + 40, + 230, + 0, + 227, + 205, + 64, + 254, + 200, + 12, + 225, + 0, + 166, + 25, + 222, + 0, + 113, + 69, + 51, + 255, + 143, + 159, + 24, + 0, + 167, + 184, + 74, + 0, + 29, + 224, + 116, + 254, + 158, + 208, + 233, + 0, + 193, + 116, + 126, + 255, + 212, + 11, + 133, + 255, + 22, + 58, + 140, + 1, + 204, + 36, + 51, + 255, + 232, + 30, + 43, + 0, + 235, + 70, + 181, + 255, + 64, + 56, + 146, + 254, + 169, + 18, + 84, + 255, + 226, + 1, + 13, + 255, + 200, + 50, + 176, + 255, + 52, + 213, + 245, + 254, + 168, + 209, + 97, + 0, + 191, + 71, + 55, + 0, + 34, + 78, + 156, + 0, + 232, + 144, + 58, + 1, + 185, + 74, + 189, + 0, + 186, + 142, + 149, + 254, + 64, + 69, + 127, + 255, + 161, + 203, + 147, + 255, + 176, + 151, + 191, + 0, + 136, + 231, + 203, + 254, + 163, + 182, + 137, + 0, + 161, + 126, + 251, + 254, + 233, + 32, + 66, + 0, + 68, + 207, + 66, + 0, + 30, + 28, + 37, + 0, + 93, + 114, + 96, + 1, + 254, + 92, + 247, + 255, + 44, + 171, + 69, + 0, + 202, + 119, + 11, + 255, + 188, + 118, + 50, + 1, + 255, + 83, + 136, + 255, + 71, + 82, + 26, + 0, + 70, + 227, + 2, + 0, + 32, + 235, + 121, + 1, + 181, + 41, + 154, + 0, + 71, + 134, + 229, + 254, + 202, + 255, + 36, + 0, + 41, + 152, + 5, + 0, + 154, + 63, + 73, + 255, + 34, + 182, + 124, + 0, + 121, + 221, + 150, + 255, + 26, + 204, + 213, + 1, + 41, + 172, + 87, + 0, + 90, + 157, + 146, + 255, + 109, + 130, + 20, + 0, + 71, + 107, + 200, + 255, + 243, + 102, + 189, + 0, + 1, + 195, + 145, + 254, + 46, + 88, + 117, + 0, + 8, + 206, + 227, + 0, + 191, + 110, + 253, + 255, + 109, + 128, + 20, + 254, + 134, + 85, + 51, + 255, + 137, + 177, + 112, + 1, + 216, + 34, + 22, + 255, + 131, + 16, + 208, + 255, + 121, + 149, + 170, + 0, + 114, + 19, + 23, + 1, + 166, + 80, + 31, + 255, + 113, + 240, + 122, + 0, + 232, + 179, + 250, + 0, + 68, + 110, + 180, + 254, + 210, + 170, + 119, + 0, + 223, + 108, + 164, + 255, + 207, + 79, + 233, + 255, + 27, + 229, + 226, + 254, + 209, + 98, + 81, + 255, + 79, + 68, + 7, + 0, + 131, + 185, + 100, + 0, + 170, + 29, + 162, + 255, + 17, + 162, + 107, + 255, + 57, + 21, + 11, + 1, + 100, + 200, + 181, + 255, + 127, + 65, + 166, + 1, + 165, + 134, + 204, + 0, + 104, + 167, + 168, + 0, + 1, + 164, + 79, + 0, + 146, + 135, + 59, + 1, + 70, + 50, + 128, + 255, + 102, + 119, + 13, + 254, + 227, + 6, + 135, + 0, + 162, + 142, + 179, + 255, + 160, + 100, + 222, + 0, + 27, + 224, + 219, + 1, + 158, + 93, + 195, + 255, + 234, + 141, + 137, + 0, + 16, + 24, + 125, + 255, + 238, + 206, + 47, + 255, + 97, + 17, + 98, + 255, + 116, + 110, + 12, + 255, + 96, + 115, + 77, + 0, + 91, + 227, + 232, + 255, + 248, + 254, + 79, + 255, + 92, + 229, + 6, + 254, + 88, + 198, + 139, + 0, + 206, + 75, + 129, + 0, + 250, + 77, + 206, + 255, + 141, + 244, + 123, + 1, + 138, + 69, + 220, + 0, + 32, + 151, + 6, + 1, + 131, + 167, + 22, + 255, + 237, + 68, + 167, + 254, + 199, + 189, + 150, + 0, + 163, + 171, + 138, + 255, + 51, + 188, + 6, + 255, + 95, + 29, + 137, + 254, + 148, + 226, + 179, + 0, + 181, + 107, + 208, + 255, + 134, + 31, + 82, + 255, + 151, + 101, + 45, + 255, + 129, + 202, + 225, + 0, + 224, + 72, + 147, + 0, + 48, + 138, + 151, + 255, + 195, + 64, + 206, + 254, + 237, + 218, + 158, + 0, + 106, + 29, + 137, + 254, + 253, + 189, + 233, + 255, + 103, + 15, + 17, + 255, + 194, + 97, + 255, + 0, + 178, + 45, + 169, + 254, + 198, + 225, + 155, + 0, + 39, + 48, + 117, + 255, + 135, + 106, + 115, + 0, + 97, + 38, + 181, + 0, + 150, + 47, + 65, + 255, + 83, + 130, + 229, + 254, + 246, + 38, + 129, + 0, + 92, + 239, + 154, + 254, + 91, + 99, + 127, + 0, + 161, + 111, + 33, + 255, + 238, + 217, + 242, + 255, + 131, + 185, + 195, + 255, + 213, + 191, + 158, + 255, + 41, + 150, + 218, + 0, + 132, + 169, + 131, + 0, + 89, + 84, + 252, + 1, + 171, + 70, + 128, + 255, + 163, + 248, + 203, + 254, + 1, + 50, + 180, + 255, + 124, + 76, + 85, + 1, + 251, + 111, + 80, + 0, + 99, + 66, + 239, + 255, + 154, + 237, + 182, + 255, + 221, + 126, + 133, + 254, + 74, + 204, + 99, + 255, + 65, + 147, + 119, + 255, + 99, + 56, + 167, + 255, + 79, + 248, + 149, + 255, + 116, + 155, + 228, + 255, + 237, + 43, + 14, + 254, + 69, + 137, + 11, + 255, + 22, + 250, + 241, + 1, + 91, + 122, + 143, + 255, + 205, + 249, + 243, + 0, + 212, + 26, + 60, + 255, + 48, + 182, + 176, + 1, + 48, + 23, + 191, + 255, + 203, + 121, + 152, + 254, + 45, + 74, + 213, + 255, + 62, + 90, + 18, + 254, + 245, + 163, + 230, + 255, + 185, + 106, + 116, + 255, + 83, + 35, + 159, + 0, + 12, + 33, + 2, + 255, + 80, + 34, + 62, + 0, + 16, + 87, + 174, + 255, + 173, + 101, + 85, + 0, + 202, + 36, + 81, + 254, + 160, + 69, + 204, + 255, + 64, + 225, + 187, + 0, + 58, + 206, + 94, + 0, + 86, + 144, + 47, + 0, + 229, + 86, + 245, + 0, + 63, + 145, + 190, + 1, + 37, + 5, + 39, + 0, + 109, + 251, + 26, + 0, + 137, + 147, + 234, + 0, + 162, + 121, + 145, + 255, + 144, + 116, + 206, + 255, + 197, + 232, + 185, + 255, + 183, + 190, + 140, + 255, + 73, + 12, + 254, + 255, + 139, + 20, + 242, + 255, + 170, + 90, + 239, + 255, + 97, + 66, + 187, + 255, + 245, + 181, + 135, + 254, + 222, + 136, + 52, + 0, + 245, + 5, + 51, + 254, + 203, + 47, + 78, + 0, + 152, + 101, + 216, + 0, + 73, + 23, + 125, + 0, + 254, + 96, + 33, + 1, + 235, + 210, + 73, + 255, + 43, + 209, + 88, + 1, + 7, + 129, + 109, + 0, + 122, + 104, + 228, + 254, + 170, + 242, + 203, + 0, + 242, + 204, + 135, + 255, + 202, + 28, + 233, + 255, + 65, + 6, + 127, + 0, + 159, + 144, + 71, + 0, + 100, + 140, + 95, + 0, + 78, + 150, + 13, + 0, + 251, + 107, + 118, + 1, + 182, + 58, + 125, + 255, + 1, + 38, + 108, + 255, + 141, + 189, + 209, + 255, + 8, + 155, + 125, + 1, + 113, + 163, + 91, + 255, + 121, + 79, + 190, + 255, + 134, + 239, + 108, + 255, + 76, + 47, + 248, + 0, + 163, + 228, + 239, + 0, + 17, + 111, + 10, + 0, + 88, + 149, + 75, + 255, + 215, + 235, + 239, + 0, + 167, + 159, + 24, + 255, + 47, + 151, + 108, + 255, + 107, + 209, + 188, + 0, + 233, + 231, + 99, + 254, + 28, + 202, + 148, + 255, + 174, + 35, + 138, + 255, + 110, + 24, + 68, + 255, + 2, + 69, + 181, + 0, + 107, + 102, + 82, + 0, + 102, + 237, + 7, + 0, + 92, + 36, + 237, + 255, + 221, + 162, + 83, + 1, + 55, + 202, + 6, + 255, + 135, + 234, + 135, + 255, + 24, + 250, + 222, + 0, + 65, + 94, + 168, + 254, + 245, + 248, + 210, + 255, + 167, + 108, + 201, + 254, + 255, + 161, + 111, + 0, + 205, + 8, + 254, + 0, + 136, + 13, + 116, + 0, + 100, + 176, + 132, + 255, + 43, + 215, + 126, + 255, + 177, + 133, + 130, + 255, + 158, + 79, + 148, + 0, + 67, + 224, + 37, + 1, + 12, + 206, + 21, + 255, + 62, + 34, + 110, + 1, + 237, + 104, + 175, + 255, + 80, + 132, + 111, + 255, + 142, + 174, + 72, + 0, + 84, + 229, + 180, + 254, + 105, + 179, + 140, + 0, + 64, + 248, + 15, + 255, + 233, + 138, + 16, + 0, + 245, + 67, + 123, + 254, + 218, + 121, + 212, + 255, + 63, + 95, + 218, + 1, + 213, + 133, + 137, + 255, + 143, + 182, + 82, + 255, + 48, + 28, + 11, + 0, + 244, + 114, + 141, + 1, + 209, + 175, + 76, + 255, + 157, + 181, + 150, + 255, + 186, + 229, + 3, + 255, + 164, + 157, + 111, + 1, + 231, + 189, + 139, + 0, + 119, + 202, + 190, + 255, + 218, + 106, + 64, + 255, + 68, + 235, + 63, + 254, + 96, + 26, + 172, + 255, + 187, + 47, + 11, + 1, + 215, + 18, + 251, + 255, + 81, + 84, + 89, + 0, + 68, + 58, + 128, + 0, + 94, + 113, + 5, + 1, + 92, + 129, + 208, + 255, + 97, + 15, + 83, + 254, + 9, + 28, + 188, + 0, + 239, + 9, + 164, + 0, + 60, + 205, + 152, + 0, + 192, + 163, + 98, + 255, + 184, + 18, + 60, + 0, + 217, + 182, + 139, + 0, + 109, + 59, + 120, + 255, + 4, + 192, + 251, + 0, + 169, + 210, + 240, + 255, + 37, + 172, + 92, + 254, + 148, + 211, + 245, + 255, + 179, + 65, + 52, + 0, + 253, + 13, + 115, + 0, + 185, + 174, + 206, + 1, + 114, + 188, + 149, + 255, + 237, + 90, + 173, + 0, + 43, + 199, + 192, + 255, + 88, + 108, + 113, + 0, + 52, + 35, + 76, + 0, + 66, + 25, + 148, + 255, + 221, + 4, + 7, + 255, + 151, + 241, + 114, + 255, + 190, + 209, + 232, + 0, + 98, + 50, + 199, + 0, + 151, + 150, + 213, + 255, + 18, + 74, + 36, + 1, + 53, + 40, + 7, + 0, + 19, + 135, + 65, + 255, + 26, + 172, + 69, + 0, + 174, + 237, + 85, + 0, + 99, + 95, + 41, + 0, + 3, + 56, + 16, + 0, + 39, + 160, + 177, + 255, + 200, + 106, + 218, + 254, + 185, + 68, + 84, + 255, + 91, + 186, + 61, + 254, + 67, + 143, + 141, + 255, + 13, + 244, + 166, + 255, + 99, + 114, + 198, + 0, + 199, + 110, + 163, + 255, + 193, + 18, + 186, + 0, + 124, + 239, + 246, + 1, + 110, + 68, + 22, + 0, + 2, + 235, + 46, + 1, + 212, + 60, + 107, + 0, + 105, + 42, + 105, + 1, + 14, + 230, + 152, + 0, + 7, + 5, + 131, + 0, + 141, + 104, + 154, + 255, + 213, + 3, + 6, + 0, + 131, + 228, + 162, + 255, + 179, + 100, + 28, + 1, + 231, + 123, + 85, + 255, + 206, + 14, + 223, + 1, + 253, + 96, + 230, + 0, + 38, + 152, + 149, + 1, + 98, + 137, + 122, + 0, + 214, + 205, + 3, + 255, + 226, + 152, + 179, + 255, + 6, + 133, + 137, + 0, + 158, + 69, + 140, + 255, + 113, + 162, + 154, + 255, + 180, + 243, + 172, + 255, + 27, + 189, + 115, + 255, + 143, + 46, + 220, + 255, + 213, + 134, + 225, + 255, + 126, + 29, + 69, + 0, + 188, + 43, + 137, + 1, + 242, + 70, + 9, + 0, + 90, + 204, + 255, + 255, + 231, + 170, + 147, + 0, + 23, + 56, + 19, + 254, + 56, + 125, + 157, + 255, + 48, + 179, + 218, + 255, + 79, + 182, + 253, + 255, + 38, + 212, + 191, + 1, + 41, + 235, + 124, + 0, + 96, + 151, + 28, + 0, + 135, + 148, + 190, + 0, + 205, + 249, + 39, + 254, + 52, + 96, + 136, + 255, + 212, + 44, + 136, + 255, + 67, + 209, + 131, + 255, + 252, + 130, + 23, + 255, + 219, + 128, + 20, + 255, + 198, + 129, + 118, + 0, + 108, + 101, + 11, + 0, + 178, + 5, + 146, + 1, + 62, + 7, + 100, + 255, + 181, + 236, + 94, + 254, + 28, + 26, + 164, + 0, + 76, + 22, + 112, + 255, + 120, + 102, + 79, + 0, + 202, + 192, + 229, + 1, + 200, + 176, + 215, + 0, + 41, + 64, + 244, + 255, + 206, + 184, + 78, + 0, + 167, + 45, + 63, + 1, + 160, + 35, + 0, + 255, + 59, + 12, + 142, + 255, + 204, + 9, + 144, + 255, + 219, + 94, + 229, + 1, + 122, + 27, + 112, + 0, + 189, + 105, + 109, + 255, + 64, + 208, + 74, + 255, + 251, + 127, + 55, + 1, + 2, + 226, + 198, + 0, + 44, + 76, + 209, + 0, + 151, + 152, + 77, + 255, + 210, + 23, + 46, + 1, + 201, + 171, + 69, + 255, + 44, + 211, + 231, + 0, + 190, + 37, + 224, + 255, + 245, + 196, + 62, + 255, + 169, + 181, + 222, + 255, + 34, + 211, + 17, + 0, + 119, + 241, + 197, + 255, + 229, + 35, + 152, + 1, + 21, + 69, + 40, + 255, + 178, + 226, + 161, + 0, + 148, + 179, + 193, + 0, + 219, + 194, + 254, + 1, + 40, + 206, + 51, + 255, + 231, + 92, + 250, + 1, + 67, + 153, + 170, + 0, + 21, + 148, + 241, + 0, + 170, + 69, + 82, + 255, + 121, + 18, + 231, + 255, + 92, + 114, + 3, + 0, + 184, + 62, + 230, + 0, + 225, + 201, + 87, + 255, + 146, + 96, + 162, + 255, + 181, + 242, + 220, + 0, + 173, + 187, + 221, + 1, + 226, + 62, + 170, + 255, + 56, + 126, + 217, + 1, + 117, + 13, + 227, + 255, + 179, + 44, + 239, + 0, + 157, + 141, + 155, + 255, + 144, + 221, + 83, + 0, + 235, + 209, + 208, + 0, + 42, + 17, + 165, + 1, + 251, + 81, + 133, + 0, + 124, + 245, + 201, + 254, + 97, + 211, + 24, + 255, + 83, + 214, + 166, + 0, + 154, + 36, + 9, + 255, + 248, + 47, + 127, + 0, + 90, + 219, + 140, + 255, + 161, + 217, + 38, + 254, + 212, + 147, + 63, + 255, + 66, + 84, + 148, + 1, + 207, + 3, + 1, + 0, + 230, + 134, + 89, + 1, + 127, + 78, + 122, + 255, + 224, + 155, + 1, + 255, + 82, + 136, + 74, + 0, + 178, + 156, + 208, + 255, + 186, + 25, + 49, + 255, + 222, + 3, + 210, + 1, + 229, + 150, + 190, + 255, + 85, + 162, + 52, + 255, + 41, + 84, + 141, + 255, + 73, + 123, + 84, + 254, + 93, + 17, + 150, + 0, + 119, + 19, + 28, + 1, + 32, + 22, + 215, + 255, + 28, + 23, + 204, + 255, + 142, + 241, + 52, + 255, + 228, + 52, + 125, + 0, + 29, + 76, + 207, + 0, + 215, + 167, + 250, + 254, + 175, + 164, + 230, + 0, + 55, + 207, + 105, + 1, + 109, + 187, + 245, + 255, + 161, + 44, + 220, + 1, + 41, + 101, + 128, + 255, + 167, + 16, + 94, + 0, + 93, + 214, + 107, + 255, + 118, + 72, + 0, + 254, + 80, + 61, + 234, + 255, + 121, + 175, + 125, + 0, + 139, + 169, + 251, + 0, + 97, + 39, + 147, + 254, + 250, + 196, + 49, + 255, + 165, + 179, + 110, + 254, + 223, + 70, + 187, + 255, + 22, + 142, + 125, + 1, + 154, + 179, + 138, + 255, + 118, + 176, + 42, + 1, + 10, + 174, + 153, + 0, + 156, + 92, + 102, + 0, + 168, + 13, + 161, + 255, + 143, + 16, + 32, + 0, + 250, + 197, + 180, + 255, + 203, + 163, + 44, + 1, + 87, + 32, + 36, + 0, + 161, + 153, + 20, + 255, + 123, + 252, + 15, + 0, + 25, + 227, + 80, + 0, + 60, + 88, + 142, + 0, + 17, + 22, + 201, + 1, + 154, + 205, + 77, + 255, + 39, + 63, + 47, + 0, + 8, + 122, + 141, + 0, + 128, + 23, + 182, + 254, + 204, + 39, + 19, + 255, + 4, + 112, + 29, + 255, + 23, + 36, + 140, + 255, + 210, + 234, + 116, + 254, + 53, + 50, + 63, + 255, + 121, + 171, + 104, + 255, + 160, + 219, + 94, + 0, + 87, + 82, + 14, + 254, + 231, + 42, + 5, + 0, + 165, + 139, + 127, + 254, + 86, + 78, + 38, + 0, + 130, + 60, + 66, + 254, + 203, + 30, + 45, + 255, + 46, + 196, + 122, + 1, + 249, + 53, + 162, + 255, + 136, + 143, + 103, + 254, + 215, + 210, + 114, + 0, + 231, + 7, + 160, + 254, + 169, + 152, + 42, + 255, + 111, + 45, + 246, + 0, + 142, + 131, + 135, + 255, + 131, + 71, + 204, + 255, + 36, + 226, + 11, + 0, + 0, + 28, + 242, + 255, + 225, + 138, + 213, + 255, + 247, + 46, + 216, + 254, + 245, + 3, + 183, + 0, + 108, + 252, + 74, + 1, + 206, + 26, + 48, + 255, + 205, + 54, + 246, + 255, + 211, + 198, + 36, + 255, + 121, + 35, + 50, + 0, + 52, + 216, + 202, + 255, + 38, + 139, + 129, + 254, + 242, + 73, + 148, + 0, + 67, + 231, + 141, + 255, + 42, + 47, + 204, + 0, + 78, + 116, + 25, + 1, + 4, + 225, + 191, + 255, + 6, + 147, + 228, + 0, + 58, + 88, + 177, + 0, + 122, + 165, + 229, + 255, + 252, + 83, + 201, + 255, + 224, + 167, + 96, + 1, + 177, + 184, + 158, + 255, + 242, + 105, + 179, + 1, + 248, + 198, + 240, + 0, + 133, + 66, + 203, + 1, + 254, + 36, + 47, + 0, + 45, + 24, + 115, + 255, + 119, + 62, + 254, + 0, + 196, + 225, + 186, + 254, + 123, + 141, + 172, + 0, + 26, + 85, + 41, + 255, + 226, + 111, + 183, + 0, + 213, + 231, + 151, + 0, + 4, + 59, + 7, + 255, + 238, + 138, + 148, + 0, + 66, + 147, + 33, + 255, + 31, + 246, + 141, + 255, + 209, + 141, + 116, + 255, + 104, + 112, + 31, + 0, + 88, + 161, + 172, + 0, + 83, + 215, + 230, + 254, + 47, + 111, + 151, + 0, + 45, + 38, + 52, + 1, + 132, + 45, + 204, + 0, + 138, + 128, + 109, + 254, + 233, + 117, + 134, + 255, + 243, + 190, + 173, + 254, + 241, + 236, + 240, + 0, + 82, + 127, + 236, + 254, + 40, + 223, + 161, + 255, + 110, + 182, + 225, + 255, + 123, + 174, + 239, + 0, + 135, + 242, + 145, + 1, + 51, + 209, + 154, + 0, + 150, + 3, + 115, + 254, + 217, + 164, + 252, + 255, + 55, + 156, + 69, + 1, + 84, + 94, + 255, + 255, + 232, + 73, + 45, + 1, + 20, + 19, + 212, + 255, + 96, + 197, + 59, + 254, + 96, + 251, + 33, + 0, + 38, + 199, + 73, + 1, + 64, + 172, + 247, + 255, + 117, + 116, + 56, + 255, + 228, + 17, + 18, + 0, + 62, + 138, + 103, + 1, + 246, + 229, + 164, + 255, + 244, + 118, + 201, + 254, + 86, + 32, + 159, + 255, + 109, + 34, + 137, + 1, + 85, + 211, + 186, + 0, + 10, + 193, + 193, + 254, + 122, + 194, + 177, + 0, + 122, + 238, + 102, + 255, + 162, + 218, + 171, + 0, + 108, + 217, + 161, + 1, + 158, + 170, + 34, + 0, + 176, + 47, + 155, + 1, + 181, + 228, + 11, + 255, + 8, + 156, + 0, + 0, + 16, + 75, + 93, + 0, + 206, + 98, + 255, + 1, + 58, + 154, + 35, + 0, + 12, + 243, + 184, + 254, + 67, + 117, + 66, + 255, + 230, + 229, + 123, + 0, + 201, + 42, + 110, + 0, + 134, + 228, + 178, + 254, + 186, + 108, + 118, + 255, + 58, + 19, + 154, + 255, + 82, + 169, + 62, + 255, + 114, + 143, + 115, + 1, + 239, + 196, + 50, + 255, + 173, + 48, + 193, + 255, + 147, + 2, + 84, + 255, + 150, + 134, + 147, + 254, + 95, + 232, + 73, + 0, + 109, + 227, + 52, + 254, + 191, + 137, + 10, + 0, + 40, + 204, + 30, + 254, + 76, + 52, + 97, + 255, + 164, + 235, + 126, + 0, + 254, + 124, + 188 + ], + "i8", + ALLOC_NONE, + Runtime.GLOBAL_BASE + 20480 + ) + /* memory initializer */ allocate( + [ + 74, + 182, + 21, + 1, + 121, + 29, + 35, + 255, + 241, + 30, + 7, + 254, + 85, + 218, + 214, + 255, + 7, + 84, + 150, + 254, + 81, + 27, + 117, + 255, + 160, + 159, + 152, + 254, + 66, + 24, + 221, + 255, + 227, + 10, + 60, + 1, + 141, + 135, + 102, + 0, + 208, + 189, + 150, + 1, + 117, + 179, + 92, + 0, + 132, + 22, + 136, + 255, + 120, + 199, + 28, + 0, + 21, + 129, + 79, + 254, + 182, + 9, + 65, + 0, + 218, + 163, + 169, + 0, + 246, + 147, + 198, + 255, + 107, + 38, + 144, + 1, + 78, + 175, + 205, + 255, + 214, + 5, + 250, + 254, + 47, + 88, + 29, + 255, + 164, + 47, + 204, + 255, + 43, + 55, + 6, + 255, + 131, + 134, + 207, + 254, + 116, + 100, + 214, + 0, + 96, + 140, + 75, + 1, + 106, + 220, + 144, + 0, + 195, + 32, + 28, + 1, + 172, + 81, + 5, + 255, + 199, + 179, + 52, + 255, + 37, + 84, + 203, + 0, + 170, + 112, + 174, + 0, + 11, + 4, + 91, + 0, + 69, + 244, + 27, + 1, + 117, + 131, + 92, + 0, + 33, + 152, + 175, + 255, + 140, + 153, + 107, + 255, + 251, + 135, + 43, + 254, + 87, + 138, + 4, + 255, + 198, + 234, + 147, + 254, + 121, + 152, + 84, + 255, + 205, + 101, + 155, + 1, + 157, + 9, + 25, + 0, + 72, + 106, + 17, + 254, + 108, + 153, + 0, + 255, + 189, + 229, + 186, + 0, + 193, + 8, + 176, + 255, + 174, + 149, + 209, + 0, + 238, + 130, + 29, + 0, + 233, + 214, + 126, + 1, + 61, + 226, + 102, + 0, + 57, + 163, + 4, + 1, + 198, + 111, + 51, + 255, + 45, + 79, + 78, + 1, + 115, + 210, + 10, + 255, + 218, + 9, + 25, + 255, + 158, + 139, + 198, + 255, + 211, + 82, + 187, + 254, + 80, + 133, + 83, + 0, + 157, + 129, + 230, + 1, + 243, + 133, + 134, + 255, + 40, + 136, + 16, + 0, + 77, + 107, + 79, + 255, + 183, + 85, + 92, + 1, + 177, + 204, + 202, + 0, + 163, + 71, + 147, + 255, + 152, + 69, + 190, + 0, + 172, + 51, + 188, + 1, + 250, + 210, + 172, + 255, + 211, + 242, + 113, + 1, + 89, + 89, + 26, + 255, + 64, + 66, + 111, + 254, + 116, + 152, + 42, + 0, + 161, + 39, + 27, + 255, + 54, + 80, + 254, + 0, + 106, + 209, + 115, + 1, + 103, + 124, + 97, + 0, + 221, + 230, + 98, + 255, + 31, + 231, + 6, + 0, + 178, + 192, + 120, + 254, + 15, + 217, + 203, + 255, + 124, + 158, + 79, + 0, + 112, + 145, + 247, + 0, + 92, + 250, + 48, + 1, + 163, + 181, + 193, + 255, + 37, + 47, + 142, + 254, + 144, + 189, + 165, + 255, + 46, + 146, + 240, + 0, + 6, + 75, + 128, + 0, + 41, + 157, + 200, + 254, + 87, + 121, + 213, + 0, + 1, + 113, + 236, + 0, + 5, + 45, + 250, + 0, + 144, + 12, + 82, + 0, + 31, + 108, + 231, + 0, + 225, + 239, + 119, + 255, + 167, + 7, + 189, + 255, + 187, + 228, + 132, + 255, + 110, + 189, + 34, + 0, + 94, + 44, + 204, + 1, + 162, + 52, + 197, + 0, + 78, + 188, + 241, + 254, + 57, + 20, + 141, + 0, + 244, + 146, + 47, + 1, + 206, + 100, + 51, + 0, + 125, + 107, + 148, + 254, + 27, + 195, + 77, + 0, + 152, + 253, + 90, + 1, + 7, + 143, + 144, + 255, + 51, + 37, + 31, + 0, + 34, + 119, + 38, + 255, + 7, + 197, + 118, + 0, + 153, + 188, + 211, + 0, + 151, + 20, + 116, + 254, + 245, + 65, + 52, + 255, + 180, + 253, + 110, + 1, + 47, + 177, + 209, + 0, + 161, + 99, + 17, + 255, + 118, + 222, + 202, + 0, + 125, + 179, + 252, + 1, + 123, + 54, + 126, + 255, + 145, + 57, + 191, + 0, + 55, + 186, + 121, + 0, + 10, + 243, + 138, + 0, + 205, + 211, + 229, + 255, + 125, + 156, + 241, + 254, + 148, + 156, + 185, + 255, + 227, + 19, + 188, + 255, + 124, + 41, + 32, + 255, + 31, + 34, + 206, + 254, + 17, + 57, + 83, + 0, + 204, + 22, + 37, + 255, + 42, + 96, + 98, + 0, + 119, + 102, + 184, + 1, + 3, + 190, + 28, + 0, + 110, + 82, + 218, + 255, + 200, + 204, + 192, + 255, + 201, + 145, + 118, + 0, + 117, + 204, + 146, + 0, + 132, + 32, + 98, + 1, + 192, + 194, + 121, + 0, + 106, + 161, + 248, + 1, + 237, + 88, + 124, + 0, + 23, + 212, + 26, + 0, + 205, + 171, + 90, + 255, + 248, + 48, + 216, + 1, + 141, + 37, + 230, + 255, + 124, + 203, + 0, + 254, + 158, + 168, + 30, + 255, + 214, + 248, + 21, + 0, + 112, + 187, + 7, + 255, + 75, + 133, + 239, + 255, + 74, + 227, + 243, + 255, + 250, + 147, + 70, + 0, + 214, + 120, + 162, + 0, + 167, + 9, + 179, + 255, + 22, + 158, + 18, + 0, + 218, + 77, + 209, + 1, + 97, + 109, + 81, + 255, + 244, + 33, + 179, + 255, + 57, + 52, + 57, + 255, + 65, + 172, + 210, + 255, + 249, + 71, + 209, + 255, + 142, + 169, + 238, + 0, + 158, + 189, + 153, + 255, + 174, + 254, + 103, + 254, + 98, + 33, + 14, + 0, + 141, + 76, + 230, + 255, + 113, + 139, + 52, + 255, + 15, + 58, + 212, + 0, + 168, + 215, + 201, + 255, + 248, + 204, + 215, + 1, + 223, + 68, + 160, + 255, + 57, + 154, + 183, + 254, + 47, + 231, + 121, + 0, + 106, + 166, + 137, + 0, + 81, + 136, + 138, + 0, + 165, + 43, + 51, + 0, + 231, + 139, + 61, + 0, + 57, + 95, + 59, + 254, + 118, + 98, + 25, + 255, + 151, + 63, + 236, + 1, + 94, + 190, + 250, + 255, + 169, + 185, + 114, + 1, + 5, + 250, + 58, + 255, + 75, + 105, + 97, + 1, + 215, + 223, + 134, + 0, + 113, + 99, + 163, + 1, + 128, + 62, + 112, + 0, + 99, + 106, + 147, + 0, + 163, + 195, + 10, + 0, + 33, + 205, + 182, + 0, + 214, + 14, + 174, + 255, + 129, + 38, + 231, + 255, + 53, + 182, + 223, + 0, + 98, + 42, + 159, + 255, + 247, + 13, + 40, + 0, + 188, + 210, + 177, + 1, + 6, + 21, + 0, + 255, + 255, + 61, + 148, + 254, + 137, + 45, + 129, + 255, + 89, + 26, + 116, + 254, + 126, + 38, + 114, + 0, + 251, + 50, + 242, + 254, + 121, + 134, + 128, + 255, + 204, + 249, + 167, + 254, + 165, + 235, + 215, + 0, + 202, + 177, + 243, + 0, + 133, + 141, + 62, + 0, + 240, + 130, + 190, + 1, + 110, + 175, + 255, + 0, + 0, + 20, + 146, + 1, + 37, + 210, + 121, + 255, + 7, + 39, + 130, + 0, + 142, + 250, + 84, + 255, + 141, + 200, + 207, + 0, + 9, + 95, + 104, + 255, + 11, + 244, + 174, + 0, + 134, + 232, + 126, + 0, + 167, + 1, + 123, + 254, + 16, + 193, + 149, + 255, + 232, + 233, + 239, + 1, + 213, + 70, + 112, + 255, + 252, + 116, + 160, + 254, + 242, + 222, + 220, + 255, + 205, + 85, + 227, + 0, + 7, + 185, + 58, + 0, + 118, + 247, + 63, + 1, + 116, + 77, + 177, + 255, + 62, + 245, + 200, + 254, + 63, + 18, + 37, + 255, + 107, + 53, + 232, + 254, + 50, + 221, + 211, + 0, + 162, + 219, + 7, + 254, + 2, + 94, + 43, + 0, + 182, + 62, + 182, + 254, + 160, + 78, + 200, + 255, + 135, + 140, + 170, + 0, + 235, + 184, + 228, + 0, + 175, + 53, + 138, + 254, + 80, + 58, + 77, + 255, + 152, + 201, + 2, + 1, + 63, + 196, + 34, + 0, + 5, + 30, + 184, + 0, + 171, + 176, + 154, + 0, + 121, + 59, + 206, + 0, + 38, + 99, + 39, + 0, + 172, + 80, + 77, + 254, + 0, + 134, + 151, + 0, + 186, + 33, + 241, + 254, + 94, + 253, + 223, + 255, + 44, + 114, + 252, + 0, + 108, + 126, + 57, + 255, + 201, + 40, + 13, + 255, + 39, + 229, + 27, + 255, + 39, + 239, + 23, + 1, + 151, + 121, + 51, + 255, + 153, + 150, + 248, + 0, + 10, + 234, + 174, + 255, + 118, + 246, + 4, + 254, + 200, + 245, + 38, + 0, + 69, + 161, + 242, + 1, + 16, + 178, + 150, + 0, + 113, + 56, + 130, + 0, + 171, + 31, + 105, + 0, + 26, + 88, + 108, + 255, + 49, + 42, + 106, + 0, + 251, + 169, + 66, + 0, + 69, + 93, + 149, + 0, + 20, + 57, + 254, + 0, + 164, + 25, + 111, + 0, + 90, + 188, + 90, + 255, + 204, + 4, + 197, + 0, + 40, + 213, + 50, + 1, + 212, + 96, + 132, + 255, + 88, + 138, + 180, + 254, + 228, + 146, + 124, + 255, + 184, + 246, + 247, + 0, + 65, + 117, + 86, + 255, + 253, + 102, + 210, + 254, + 254, + 121, + 36, + 0, + 137, + 115, + 3, + 255, + 60, + 24, + 216, + 0, + 134, + 18, + 29, + 0, + 59, + 226, + 97, + 0, + 176, + 142, + 71, + 0, + 7, + 209, + 161, + 0, + 189, + 84, + 51, + 254, + 155, + 250, + 72, + 0, + 213, + 84, + 235, + 255, + 45, + 222, + 224, + 0, + 238, + 148, + 143, + 255, + 170, + 42, + 53, + 255, + 78, + 167, + 117, + 0, + 186, + 0, + 40, + 255, + 125, + 177, + 103, + 255, + 69, + 225, + 66, + 0, + 227, + 7, + 88, + 1, + 75, + 172, + 6, + 0, + 169, + 45, + 227, + 1, + 16, + 36, + 70, + 255, + 50, + 2, + 9, + 255, + 139, + 193, + 22, + 0, + 143, + 183, + 231, + 254, + 218, + 69, + 50, + 0, + 236, + 56, + 161, + 1, + 213, + 131, + 42, + 0, + 138, + 145, + 44, + 254, + 136, + 229, + 40, + 255, + 49, + 63, + 35, + 255, + 61, + 145, + 245, + 255, + 101, + 192, + 2, + 254, + 232, + 167, + 113, + 0, + 152, + 104, + 38, + 1, + 121, + 185, + 218, + 0, + 121, + 139, + 211, + 254, + 119, + 240, + 35, + 0, + 65, + 189, + 217, + 254, + 187, + 179, + 162, + 255, + 160, + 187, + 230, + 0, + 62, + 248, + 14, + 255, + 60, + 78, + 97, + 0, + 255, + 247, + 163, + 255, + 225, + 59, + 91, + 255, + 107, + 71, + 58, + 255, + 241, + 47, + 33, + 1, + 50, + 117, + 236, + 0, + 219, + 177, + 63, + 254, + 244, + 90, + 179, + 0, + 35, + 194, + 215, + 255, + 189, + 67, + 50, + 255, + 23, + 135, + 129, + 0, + 104, + 189, + 37, + 255, + 185, + 57, + 194, + 0, + 35, + 62, + 231, + 255, + 220, + 248, + 108, + 0, + 12, + 231, + 178, + 0, + 143, + 80, + 91, + 1, + 131, + 93, + 101, + 255, + 144, + 39, + 2, + 1, + 255, + 250, + 178, + 0, + 5, + 17, + 236, + 254, + 139, + 32, + 46, + 0, + 204, + 188, + 38, + 254, + 245, + 115, + 52, + 255, + 191, + 113, + 73, + 254, + 191, + 108, + 69, + 255, + 22, + 69, + 245, + 1, + 23, + 203, + 178, + 0, + 170, + 99, + 170, + 0, + 65, + 248, + 111, + 0, + 37, + 108, + 153, + 255, + 64, + 37, + 69, + 0, + 0, + 88, + 62, + 254, + 89, + 148, + 144, + 255, + 191, + 68, + 224, + 1, + 241, + 39, + 53, + 0, + 41, + 203, + 237, + 255, + 145, + 126, + 194, + 255, + 221, + 42, + 253, + 255, + 25, + 99, + 151, + 0, + 97, + 253, + 223, + 1, + 74, + 115, + 49, + 255, + 6, + 175, + 72, + 255, + 59, + 176, + 203, + 0, + 124, + 183, + 249, + 1, + 228, + 228, + 99, + 0, + 129, + 12, + 207, + 254, + 168, + 192, + 195, + 255, + 204, + 176, + 16, + 254, + 152, + 234, + 171, + 0, + 77, + 37, + 85, + 255, + 33, + 120, + 135, + 255, + 142, + 194, + 227, + 1, + 31, + 214, + 58, + 0, + 213, + 187, + 125, + 255, + 232, + 46, + 60, + 255, + 190, + 116, + 42, + 254, + 151, + 178, + 19, + 255, + 51, + 62, + 237, + 254, + 204, + 236, + 193, + 0, + 194, + 232, + 60, + 0, + 172, + 34, + 157, + 255, + 189, + 16, + 184, + 254, + 103, + 3, + 95, + 255, + 141, + 233, + 36, + 254, + 41, + 25, + 11, + 255, + 21, + 195, + 166, + 0, + 118, + 245, + 45, + 0, + 67, + 213, + 149, + 255, + 159, + 12, + 18, + 255, + 187, + 164, + 227, + 1, + 160, + 25, + 5, + 0, + 12, + 78, + 195, + 1, + 43, + 197, + 225, + 0, + 48, + 142, + 41, + 254, + 196, + 155, + 60, + 255, + 223, + 199, + 18, + 1, + 145, + 136, + 156, + 0, + 252, + 117, + 169, + 254, + 145, + 226, + 238, + 0, + 239, + 23, + 107, + 0, + 109, + 181, + 188, + 255, + 230, + 112, + 49, + 254, + 73, + 170, + 237, + 255, + 231, + 183, + 227, + 255, + 80, + 220, + 20, + 0, + 194, + 107, + 127, + 1, + 127, + 205, + 101, + 0, + 46, + 52, + 197, + 1, + 210, + 171, + 36, + 255, + 88, + 3, + 90, + 255, + 56, + 151, + 141, + 0, + 96, + 187, + 255, + 255, + 42, + 78, + 200, + 0, + 254, + 70, + 70, + 1, + 244, + 125, + 168, + 0, + 204, + 68, + 138, + 1, + 124, + 215, + 70, + 0, + 102, + 66, + 200, + 254, + 17, + 52, + 228, + 0, + 117, + 220, + 143, + 254, + 203, + 248, + 123, + 0, + 56, + 18, + 174, + 255, + 186, + 151, + 164, + 255, + 51, + 232, + 208, + 1, + 160, + 228, + 43, + 255, + 249, + 29, + 25, + 1, + 68, + 190, + 63, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 244, + 126, + 0, + 0, + 0, + 0, + 0, + 0, + 5, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 92, + 129, + 0, + 0, + 0, + 4, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 10, + 255, + 255, + 255, + 255 + ], + "i8", + ALLOC_NONE, + Runtime.GLOBAL_BASE + 30720 + ) + + /* no memory initializer */ + var tempDoublePtr = Runtime.alignMemory( + allocate(12, "i8", ALLOC_STATIC), + 8 + ) + + assert(tempDoublePtr % 8 == 0) + + function copyTempFloat(ptr) { + // functions, because inlining this code increases code size too much + + HEAP8[tempDoublePtr] = HEAP8[ptr] + + HEAP8[tempDoublePtr + 1] = HEAP8[ptr + 1] + + HEAP8[tempDoublePtr + 2] = HEAP8[ptr + 2] + + HEAP8[tempDoublePtr + 3] = HEAP8[ptr + 3] + } + + function copyTempDouble(ptr) { + HEAP8[tempDoublePtr] = HEAP8[ptr] + + HEAP8[tempDoublePtr + 1] = HEAP8[ptr + 1] + + HEAP8[tempDoublePtr + 2] = HEAP8[ptr + 2] + + HEAP8[tempDoublePtr + 3] = HEAP8[ptr + 3] + + HEAP8[tempDoublePtr + 4] = HEAP8[ptr + 4] + + HEAP8[tempDoublePtr + 5] = HEAP8[ptr + 5] + + HEAP8[tempDoublePtr + 6] = HEAP8[ptr + 6] + + HEAP8[tempDoublePtr + 7] = HEAP8[ptr + 7] + } + + // {{PRE_LIBRARY}} + + Module["_bitshift64Ashr"] = _bitshift64Ashr + + Module["_i64Subtract"] = _i64Subtract + + Module["_i64Add"] = _i64Add + + Module["_memset"] = _memset + + function _pthread_cleanup_push(routine, arg) { + __ATEXIT__.push(function() { + Runtime.dynCall("vi", routine, [arg]) + }) + _pthread_cleanup_push.level = __ATEXIT__.length + } + + Module["_bitshift64Lshr"] = _bitshift64Lshr + + Module["_bitshift64Shl"] = _bitshift64Shl + + function _pthread_cleanup_pop() { + assert( + _pthread_cleanup_push.level == __ATEXIT__.length, + "cannot pop if something else added meanwhile!" + ) + __ATEXIT__.pop() + _pthread_cleanup_push.level = __ATEXIT__.length + } + + function _abort() { + Module["abort"]() + } + + function ___lock() {} + + function ___unlock() {} + + var ERRNO_CODES = { + EPERM: 1, + ENOENT: 2, + ESRCH: 3, + EINTR: 4, + EIO: 5, + ENXIO: 6, + E2BIG: 7, + ENOEXEC: 8, + EBADF: 9, + ECHILD: 10, + EAGAIN: 11, + EWOULDBLOCK: 11, + ENOMEM: 12, + EACCES: 13, + EFAULT: 14, + ENOTBLK: 15, + EBUSY: 16, + EEXIST: 17, + EXDEV: 18, + ENODEV: 19, + ENOTDIR: 20, + EISDIR: 21, + EINVAL: 22, + ENFILE: 23, + EMFILE: 24, + ENOTTY: 25, + ETXTBSY: 26, + EFBIG: 27, + ENOSPC: 28, + ESPIPE: 29, + EROFS: 30, + EMLINK: 31, + EPIPE: 32, + EDOM: 33, + ERANGE: 34, + ENOMSG: 42, + EIDRM: 43, + ECHRNG: 44, + EL2NSYNC: 45, + EL3HLT: 46, + EL3RST: 47, + ELNRNG: 48, + EUNATCH: 49, + ENOCSI: 50, + EL2HLT: 51, + EDEADLK: 35, + ENOLCK: 37, + EBADE: 52, + EBADR: 53, + EXFULL: 54, + ENOANO: 55, + EBADRQC: 56, + EBADSLT: 57, + EDEADLOCK: 35, + EBFONT: 59, + ENOSTR: 60, + ENODATA: 61, + ETIME: 62, + ENOSR: 63, + ENONET: 64, + ENOPKG: 65, + EREMOTE: 66, + ENOLINK: 67, + EADV: 68, + ESRMNT: 69, + ECOMM: 70, + EPROTO: 71, + EMULTIHOP: 72, + EDOTDOT: 73, + EBADMSG: 74, + ENOTUNIQ: 76, + EBADFD: 77, + EREMCHG: 78, + ELIBACC: 79, + ELIBBAD: 80, + ELIBSCN: 81, + ELIBMAX: 82, + ELIBEXEC: 83, + ENOSYS: 38, + ENOTEMPTY: 39, + ENAMETOOLONG: 36, + ELOOP: 40, + EOPNOTSUPP: 95, + EPFNOSUPPORT: 96, + ECONNRESET: 104, + ENOBUFS: 105, + EAFNOSUPPORT: 97, + EPROTOTYPE: 91, + ENOTSOCK: 88, + ENOPROTOOPT: 92, + ESHUTDOWN: 108, + ECONNREFUSED: 111, + EADDRINUSE: 98, + ECONNABORTED: 103, + ENETUNREACH: 101, + ENETDOWN: 100, + ETIMEDOUT: 110, + EHOSTDOWN: 112, + EHOSTUNREACH: 113, + EINPROGRESS: 115, + EALREADY: 114, + EDESTADDRREQ: 89, + EMSGSIZE: 90, + EPROTONOSUPPORT: 93, + ESOCKTNOSUPPORT: 94, + EADDRNOTAVAIL: 99, + ENETRESET: 102, + EISCONN: 106, + ENOTCONN: 107, + ETOOMANYREFS: 109, + EUSERS: 87, + EDQUOT: 122, + ESTALE: 116, + ENOTSUP: 95, + ENOMEDIUM: 123, + EILSEQ: 84, + EOVERFLOW: 75, + ECANCELED: 125, + ENOTRECOVERABLE: 131, + EOWNERDEAD: 130, + ESTRPIPE: 86 + } + + var ERRNO_MESSAGES = { + 0: "Success", + 1: "Not super-user", + 2: "No such file or directory", + 3: "No such process", + 4: "Interrupted system call", + 5: "I/O error", + 6: "No such device or address", + 7: "Arg list too long", + 8: "Exec format error", + 9: "Bad file number", + 10: "No children", + 11: "No more processes", + 12: "Not enough core", + 13: "Permission denied", + 14: "Bad address", + 15: "Block device required", + 16: "Mount device busy", + 17: "File exists", + 18: "Cross-device link", + 19: "No such device", + 20: "Not a directory", + 21: "Is a directory", + 22: "Invalid argument", + 23: "Too many open files in system", + 24: "Too many open files", + 25: "Not a typewriter", + 26: "Text file busy", + 27: "File too large", + 28: "No space left on device", + 29: "Illegal seek", + 30: "Read only file system", + 31: "Too many links", + 32: "Broken pipe", + 33: "Math arg out of domain of func", + 34: "Math result not representable", + 35: "File locking deadlock error", + 36: "File or path name too long", + 37: "No record locks available", + 38: "Function not implemented", + 39: "Directory not empty", + 40: "Too many symbolic links", + 42: "No message of desired type", + 43: "Identifier removed", + 44: "Channel number out of range", + 45: "Level 2 not synchronized", + 46: "Level 3 halted", + 47: "Level 3 reset", + 48: "Link number out of range", + 49: "Protocol driver not attached", + 50: "No CSI structure available", + 51: "Level 2 halted", + 52: "Invalid exchange", + 53: "Invalid request descriptor", + 54: "Exchange full", + 55: "No anode", + 56: "Invalid request code", + 57: "Invalid slot", + 59: "Bad font file fmt", + 60: "Device not a stream", + 61: "No data (for no delay io)", + 62: "Timer expired", + 63: "Out of streams resources", + 64: "Machine is not on the network", + 65: "Package not installed", + 66: "The object is remote", + 67: "The link has been severed", + 68: "Advertise error", + 69: "Srmount error", + 70: "Communication error on send", + 71: "Protocol error", + 72: "Multihop attempted", + 73: "Cross mount point (not really error)", + 74: "Trying to read unreadable message", + 75: "Value too large for defined data type", + 76: "Given log. name not unique", + 77: "f.d. invalid for this operation", + 78: "Remote address changed", + 79: "Can access a needed shared lib", + 80: "Accessing a corrupted shared lib", + 81: ".lib section in a.out corrupted", + 82: "Attempting to link in too many libs", + 83: "Attempting to exec a shared library", + 84: "Illegal byte sequence", + 86: "Streams pipe error", + 87: "Too many users", + 88: "Socket operation on non-socket", + 89: "Destination address required", + 90: "Message too long", + 91: "Protocol wrong type for socket", + 92: "Protocol not available", + 93: "Unknown protocol", + 94: "Socket type not supported", + 95: "Not supported", + 96: "Protocol family not supported", + 97: "Address family not supported by protocol family", + 98: "Address already in use", + 99: "Address not available", + 100: "Network interface is not configured", + 101: "Network is unreachable", + 102: "Connection reset by network", + 103: "Connection aborted", + 104: "Connection reset by peer", + 105: "No buffer space available", + 106: "Socket is already connected", + 107: "Socket is not connected", + 108: "Can't send after socket shutdown", + 109: "Too many references", + 110: "Connection timed out", + 111: "Connection refused", + 112: "Host is down", + 113: "Host is unreachable", + 114: "Socket already connected", + 115: "Connection already in progress", + 116: "Stale file handle", + 122: "Quota exceeded", + 123: "No medium (in tape drive)", + 125: "Operation canceled", + 130: "Previous owner died", + 131: "State not recoverable" + } + + function ___setErrNo(value) { + if (Module["___errno_location"]) + HEAP32[Module["___errno_location"]() >> 2] = value + return value + } + + var PATH = { + splitPath: function(filename) { + var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/ + return splitPathRe.exec(filename).slice(1) + }, + normalizeArray: function(parts, allowAboveRoot) { + // if the path tries to go above the root, `up` ends up > 0 + var up = 0 + for (var i = parts.length - 1; i >= 0; i--) { + var last = parts[i] + if (last === ".") { + parts.splice(i, 1) + } else if (last === "..") { + parts.splice(i, 1) + up++ + } else if (up) { + parts.splice(i, 1) + up-- + } + } + // if the path is allowed to go above the root, restore leading ..s + if (allowAboveRoot) { + for (; up--; up) { + parts.unshift("..") + } + } + return parts + }, + normalize: function(path) { + var isAbsolute = path.charAt(0) === "/", + trailingSlash = path.substr(-1) === "/" + // Normalize the path + path = PATH.normalizeArray( + path.split("/").filter(function(p) { + return !!p + }), + !isAbsolute + ).join("/") + if (!path && !isAbsolute) { + path = "." + } + if (path && trailingSlash) { + path += "/" + } + return (isAbsolute ? "/" : "") + path + }, + dirname: function(path) { + var result = PATH.splitPath(path), + root = result[0], + dir = result[1] + if (!root && !dir) { + // No dirname whatsoever + return "." + } + if (dir) { + // It has a dirname, strip trailing slash + dir = dir.substr(0, dir.length - 1) + } + return root + dir + }, + basename: function(path) { + // EMSCRIPTEN return '/'' for '/', not an empty string + if (path === "/") return "/" + var lastSlash = path.lastIndexOf("/") + if (lastSlash === -1) return path + return path.substr(lastSlash + 1) + }, + extname: function(path) { + return PATH.splitPath(path)[3] + }, + join: function() { + var paths = Array.prototype.slice.call(arguments, 0) + return PATH.normalize(paths.join("/")) + }, + join2: function(l, r) { + return PATH.normalize(l + "/" + r) + }, + resolve: function() { + var resolvedPath = "", + resolvedAbsolute = false + for ( + var i = arguments.length - 1; + i >= -1 && !resolvedAbsolute; + i-- + ) { + var path = i >= 0 ? arguments[i] : FS.cwd() + // Skip empty and invalid entries + if (typeof path !== "string") { + throw new TypeError( + "Arguments to path.resolve must be strings" + ) + } else if (!path) { + return "" // an invalid portion invalidates the whole thing + } + resolvedPath = path + "/" + resolvedPath + resolvedAbsolute = path.charAt(0) === "/" + } + // At this point the path should be resolved to a full absolute path, but + // handle relative paths to be safe (might happen when process.cwd() fails) + resolvedPath = PATH.normalizeArray( + resolvedPath.split("/").filter(function(p) { + return !!p + }), + !resolvedAbsolute + ).join("/") + return (resolvedAbsolute ? "/" : "") + resolvedPath || "." + }, + relative: function(from, to) { + from = PATH.resolve(from).substr(1) + to = PATH.resolve(to).substr(1) + function trim(arr) { + var start = 0 + for (; start < arr.length; start++) { + if (arr[start] !== "") break + } + var end = arr.length - 1 + for (; end >= 0; end--) { + if (arr[end] !== "") break + } + if (start > end) return [] + return arr.slice(start, end - start + 1) + } + var fromParts = trim(from.split("/")) + var toParts = trim(to.split("/")) + var length = Math.min(fromParts.length, toParts.length) + var samePartsLength = length + for (var i = 0; i < length; i++) { + if (fromParts[i] !== toParts[i]) { + samePartsLength = i + break + } + } + var outputParts = [] + for (var i = samePartsLength; i < fromParts.length; i++) { + outputParts.push("..") + } + outputParts = outputParts.concat(toParts.slice(samePartsLength)) + return outputParts.join("/") + } + } + + var TTY = { + ttys: [], + init: function() { + // https://github.com/kripken/emscripten/pull/1555 + // if (ENVIRONMENT_IS_NODE) { + // // currently, FS.init does not distinguish if process.stdin is a file or TTY + // // device, it always assumes it's a TTY device. because of this, we're forcing + // // process.stdin to UTF8 encoding to at least make stdin reading compatible + // // with text files until FS.init can be refactored. + // process['stdin']['setEncoding']('utf8'); + // } + }, + shutdown: function() { + // https://github.com/kripken/emscripten/pull/1555 + // if (ENVIRONMENT_IS_NODE) { + // // inolen: any idea as to why node -e 'process.stdin.read()' wouldn't exit immediately (with process.stdin being a tty)? + // // isaacs: because now it's reading from the stream, you've expressed interest in it, so that read() kicks off a _read() which creates a ReadReq operation + // // inolen: I thought read() in that case was a synchronous operation that just grabbed some amount of buffered data if it exists? + // // isaacs: it is. but it also triggers a _read() call, which calls readStart() on the handle + // // isaacs: do process.stdin.pause() and i'd think it'd probably close the pending call + // process['stdin']['pause'](); + // } + }, + register: function(dev, ops) { + TTY.ttys[dev] = { input: [], output: [], ops: ops } + FS.registerDevice(dev, TTY.stream_ops) + }, + stream_ops: { + open: function(stream) { + var tty = TTY.ttys[stream.node.rdev] + if (!tty) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV) + } + stream.tty = tty + stream.seekable = false + }, + close: function(stream) { + // flush any pending line data + stream.tty.ops.flush(stream.tty) + }, + flush: function(stream) { + stream.tty.ops.flush(stream.tty) + }, + read: function( + stream, + buffer, + offset, + length, + pos /* ignored */ + ) { + if (!stream.tty || !stream.tty.ops.get_char) { + throw new FS.ErrnoError(ERRNO_CODES.ENXIO) + } + var bytesRead = 0 + for (var i = 0; i < length; i++) { + var result + try { + result = stream.tty.ops.get_char(stream.tty) + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO) + } + if (result === undefined && bytesRead === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EAGAIN) + } + if (result === null || result === undefined) break + bytesRead++ + buffer[offset + i] = result + } + if (bytesRead) { + stream.node.timestamp = Date.now() + } + return bytesRead + }, + write: function(stream, buffer, offset, length, pos) { + if (!stream.tty || !stream.tty.ops.put_char) { + throw new FS.ErrnoError(ERRNO_CODES.ENXIO) + } + for (var i = 0; i < length; i++) { + try { + stream.tty.ops.put_char(stream.tty, buffer[offset + i]) + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO) + } + } + if (length) { + stream.node.timestamp = Date.now() + } + return i + } + }, + default_tty_ops: { + get_char: function(tty) { + if (!tty.input.length) { + var result = null + if (ENVIRONMENT_IS_NODE) { + // we will read data by chunks of BUFSIZE + var BUFSIZE = 256 + var buf = new Buffer(BUFSIZE) + var bytesRead = 0 + + var fd = process.stdin.fd + // Linux and Mac cannot use process.stdin.fd (which isn't set up as sync) + var usingDevice = false + try { + fd = fs.openSync("/dev/stdin", "r") + usingDevice = true + } catch (e) {} + + bytesRead = fs.readSync(fd, buf, 0, BUFSIZE, null) + + if (usingDevice) { + fs.closeSync(fd) + } + if (bytesRead > 0) { + result = buf.slice(0, bytesRead).toString("utf-8") + } else { + result = null + } + } else if ( + typeof window != "undefined" && + typeof window.prompt == "function" + ) { + // Browser. + result = window.prompt("Input: ") // returns null on cancel + if (result !== null) { + result += "\n" + } + } else if (typeof readline == "function") { + // Command line. + result = readline() + if (result !== null) { + result += "\n" + } + } + if (!result) { + return null + } + tty.input = intArrayFromString(result, true) + } + return tty.input.shift() + }, + put_char: function(tty, val) { + if (val === null || val === 10) { + Module["print"](UTF8ArrayToString(tty.output, 0)) + tty.output = [] + } else { + if (val != 0) tty.output.push(val) // val == 0 would cut text output off in the middle. + } + }, + flush: function(tty) { + if (tty.output && tty.output.length > 0) { + Module["print"](UTF8ArrayToString(tty.output, 0)) + tty.output = [] + } + } + }, + default_tty1_ops: { + put_char: function(tty, val) { + if (val === null || val === 10) { + Module["printErr"](UTF8ArrayToString(tty.output, 0)) + tty.output = [] + } else { + if (val != 0) tty.output.push(val) + } + }, + flush: function(tty) { + if (tty.output && tty.output.length > 0) { + Module["printErr"](UTF8ArrayToString(tty.output, 0)) + tty.output = [] + } + } + } + } + + var MEMFS = { + ops_table: null, + mount: function(mount) { + return MEMFS.createNode(null, "/", 16384 | 511 /* 0777 */, 0) + }, + createNode: function(parent, name, mode, dev) { + if (FS.isBlkdev(mode) || FS.isFIFO(mode)) { + // no supported + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + } + if (!MEMFS.ops_table) { + MEMFS.ops_table = { + dir: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr, + lookup: MEMFS.node_ops.lookup, + mknod: MEMFS.node_ops.mknod, + rename: MEMFS.node_ops.rename, + unlink: MEMFS.node_ops.unlink, + rmdir: MEMFS.node_ops.rmdir, + readdir: MEMFS.node_ops.readdir, + symlink: MEMFS.node_ops.symlink + }, + stream: { + llseek: MEMFS.stream_ops.llseek + } + }, + file: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr + }, + stream: { + llseek: MEMFS.stream_ops.llseek, + read: MEMFS.stream_ops.read, + write: MEMFS.stream_ops.write, + allocate: MEMFS.stream_ops.allocate, + mmap: MEMFS.stream_ops.mmap, + msync: MEMFS.stream_ops.msync + } + }, + link: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr, + readlink: MEMFS.node_ops.readlink + }, + stream: {} + }, + chrdev: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr + }, + stream: FS.chrdev_stream_ops + } + } + } + var node = FS.createNode(parent, name, mode, dev) + if (FS.isDir(node.mode)) { + node.node_ops = MEMFS.ops_table.dir.node + node.stream_ops = MEMFS.ops_table.dir.stream + node.contents = {} + } else if (FS.isFile(node.mode)) { + node.node_ops = MEMFS.ops_table.file.node + node.stream_ops = MEMFS.ops_table.file.stream + node.usedBytes = 0 // The actual number of bytes used in the typed array, as opposed to contents.buffer.byteLength which gives the whole capacity. + // When the byte data of the file is populated, this will point to either a typed array, or a normal JS array. Typed arrays are preferred + // for performance, and used by default. However, typed arrays are not resizable like normal JS arrays are, so there is a small disk size + // penalty involved for appending file writes that continuously grow a file similar to std::vector capacity vs used -scheme. + node.contents = null + } else if (FS.isLink(node.mode)) { + node.node_ops = MEMFS.ops_table.link.node + node.stream_ops = MEMFS.ops_table.link.stream + } else if (FS.isChrdev(node.mode)) { + node.node_ops = MEMFS.ops_table.chrdev.node + node.stream_ops = MEMFS.ops_table.chrdev.stream + } + node.timestamp = Date.now() + // add the new node to the parent + if (parent) { + parent.contents[name] = node + } + return node + }, + getFileDataAsRegularArray: function(node) { + if (node.contents && node.contents.subarray) { + var arr = [] + for (var i = 0; i < node.usedBytes; ++i) + arr.push(node.contents[i]) + return arr // Returns a copy of the original data. + } + return node.contents // No-op, the file contents are already in a JS array. Return as-is. + }, + getFileDataAsTypedArray: function(node) { + if (!node.contents) return new Uint8Array() + if (node.contents.subarray) + return node.contents.subarray(0, node.usedBytes) // Make sure to not return excess unused bytes. + return new Uint8Array(node.contents) + }, + expandFileStorage: function(node, newCapacity) { + // If we are asked to expand the size of a file that already exists, revert to using a standard JS array to store the file + // instead of a typed array. This makes resizing the array more flexible because we can just .push() elements at the back to + // increase the size. + if ( + node.contents && + node.contents.subarray && + newCapacity > node.contents.length + ) { + node.contents = MEMFS.getFileDataAsRegularArray(node) + node.usedBytes = node.contents.length // We might be writing to a lazy-loaded file which had overridden this property, so force-reset it. + } + + if (!node.contents || node.contents.subarray) { + // Keep using a typed array if creating a new storage, or if old one was a typed array as well. + var prevCapacity = node.contents + ? node.contents.buffer.byteLength + : 0 + if (prevCapacity >= newCapacity) return // No need to expand, the storage was already large enough. + // Don't expand strictly to the given requested limit if it's only a very small increase, but instead geometrically grow capacity. + // For small filesizes (<1MB), perform size*2 geometric increase, but for large sizes, do a much more conservative size*1.125 increase to + // avoid overshooting the allocation cap by a very large margin. + var CAPACITY_DOUBLING_MAX = 1024 * 1024 + newCapacity = Math.max( + newCapacity, + (prevCapacity * + (prevCapacity < CAPACITY_DOUBLING_MAX ? 2.0 : 1.125)) | + 0 + ) + if (prevCapacity != 0) + newCapacity = Math.max(newCapacity, 256) // At minimum allocate 256b for each file when expanding. + var oldContents = node.contents + node.contents = new Uint8Array(newCapacity) // Allocate new storage. + if (node.usedBytes > 0) + node.contents.set( + oldContents.subarray(0, node.usedBytes), + 0 + ) // Copy old data over to the new storage. + return + } + // Not using a typed array to back the file storage. Use a standard JS array instead. + if (!node.contents && newCapacity > 0) node.contents = [] + while (node.contents.length < newCapacity) node.contents.push(0) + }, + resizeFileStorage: function(node, newSize) { + if (node.usedBytes == newSize) return + if (newSize == 0) { + node.contents = null // Fully decommit when requesting a resize to zero. + node.usedBytes = 0 + return + } + if (!node.contents || node.contents.subarray) { + // Resize a typed array if that is being used as the backing store. + var oldContents = node.contents + node.contents = new Uint8Array(new ArrayBuffer(newSize)) // Allocate new storage. + if (oldContents) { + node.contents.set( + oldContents.subarray(0, Math.min(newSize, node.usedBytes)) + ) // Copy old data over to the new storage. + } + node.usedBytes = newSize + return + } + // Backing with a JS array. + if (!node.contents) node.contents = [] + if (node.contents.length > newSize) + node.contents.length = newSize + else + while (node.contents.length < newSize) node.contents.push(0) + node.usedBytes = newSize + }, + node_ops: { + getattr: function(node) { + var attr = {} + // device numbers reuse inode numbers. + attr.dev = FS.isChrdev(node.mode) ? node.id : 1 + attr.ino = node.id + attr.mode = node.mode + attr.nlink = 1 + attr.uid = 0 + attr.gid = 0 + attr.rdev = node.rdev + if (FS.isDir(node.mode)) { + attr.size = 4096 + } else if (FS.isFile(node.mode)) { + attr.size = node.usedBytes + } else if (FS.isLink(node.mode)) { + attr.size = node.link.length + } else { + attr.size = 0 + } + attr.atime = new Date(node.timestamp) + attr.mtime = new Date(node.timestamp) + attr.ctime = new Date(node.timestamp) + // NOTE: In our implementation, st_blocks = Math.ceil(st_size/st_blksize), + // but this is not required by the standard. + attr.blksize = 4096 + attr.blocks = Math.ceil(attr.size / attr.blksize) + return attr + }, + setattr: function(node, attr) { + if (attr.mode !== undefined) { + node.mode = attr.mode + } + if (attr.timestamp !== undefined) { + node.timestamp = attr.timestamp + } + if (attr.size !== undefined) { + MEMFS.resizeFileStorage(node, attr.size) + } + }, + lookup: function(parent, name) { + throw FS.genericErrors[ERRNO_CODES.ENOENT] + }, + mknod: function(parent, name, mode, dev) { + return MEMFS.createNode(parent, name, mode, dev) + }, + rename: function(old_node, new_dir, new_name) { + // if we're overwriting a directory at new_name, make sure it's empty. + if (FS.isDir(old_node.mode)) { + var new_node + try { + new_node = FS.lookupNode(new_dir, new_name) + } catch (e) {} + if (new_node) { + for (var i in new_node.contents) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY) + } + } + } + // do the internal rewiring + delete old_node.parent.contents[old_node.name] + old_node.name = new_name + new_dir.contents[new_name] = old_node + old_node.parent = new_dir + }, + unlink: function(parent, name) { + delete parent.contents[name] + }, + rmdir: function(parent, name) { + var node = FS.lookupNode(parent, name) + for (var i in node.contents) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY) + } + delete parent.contents[name] + }, + readdir: function(node) { + var entries = [".", ".."] + for (var key in node.contents) { + if (!node.contents.hasOwnProperty(key)) { + continue + } + entries.push(key) + } + return entries + }, + symlink: function(parent, newname, oldpath) { + var node = MEMFS.createNode( + parent, + newname, + 511 /* 0777 */ | 40960, + 0 + ) + node.link = oldpath + return node + }, + readlink: function(node) { + if (!FS.isLink(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + return node.link + } + }, + stream_ops: { + read: function(stream, buffer, offset, length, position) { + var contents = stream.node.contents + if (position >= stream.node.usedBytes) return 0 + var size = Math.min(stream.node.usedBytes - position, length) + assert(size >= 0) + if (size > 8 && contents.subarray) { + // non-trivial, and typed array + buffer.set( + contents.subarray(position, position + size), + offset + ) + } else { + for (var i = 0; i < size; i++) + buffer[offset + i] = contents[position + i] + } + return size + }, + write: function( + stream, + buffer, + offset, + length, + position, + canOwn + ) { + if (!length) return 0 + var node = stream.node + node.timestamp = Date.now() + + if ( + buffer.subarray && + (!node.contents || node.contents.subarray) + ) { + // This write is from a typed array to a typed array? + if (canOwn) { + // Can we just reuse the buffer we are given? + node.contents = buffer.subarray(offset, offset + length) + node.usedBytes = length + return length + } else if (node.usedBytes === 0 && position === 0) { + // If this is a simple first write to an empty file, do a fast set since we don't need to care about old data. + node.contents = new Uint8Array( + buffer.subarray(offset, offset + length) + ) + node.usedBytes = length + return length + } else if (position + length <= node.usedBytes) { + // Writing to an already allocated and used subrange of the file? + node.contents.set( + buffer.subarray(offset, offset + length), + position + ) + return length + } + } + + // Appending to an existing file and we need to reallocate, or source data did not come as a typed array. + MEMFS.expandFileStorage(node, position + length) + if (node.contents.subarray && buffer.subarray) + node.contents.set( + buffer.subarray(offset, offset + length), + position + ) + // Use typed array write if available. + else { + for (var i = 0; i < length; i++) { + node.contents[position + i] = buffer[offset + i] // Or fall back to manual write if not. + } + } + node.usedBytes = Math.max(node.usedBytes, position + length) + return length + }, + llseek: function(stream, offset, whence) { + var position = offset + if (whence === 1) { + // SEEK_CUR. + position += stream.position + } else if (whence === 2) { + // SEEK_END. + if (FS.isFile(stream.node.mode)) { + position += stream.node.usedBytes + } + } + if (position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + return position + }, + allocate: function(stream, offset, length) { + MEMFS.expandFileStorage(stream.node, offset + length) + stream.node.usedBytes = Math.max( + stream.node.usedBytes, + offset + length + ) + }, + mmap: function( + stream, + buffer, + offset, + length, + position, + prot, + flags + ) { + if (!FS.isFile(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV) + } + var ptr + var allocated + var contents = stream.node.contents + // Only make a new copy when MAP_PRIVATE is specified. + if ( + !(flags & 2) && + (contents.buffer === buffer || + contents.buffer === buffer.buffer) + ) { + // We can't emulate MAP_SHARED when the file is not backed by the buffer + // we're mapping to (e.g. the HEAP buffer). + allocated = false + ptr = contents.byteOffset + } else { + // Try to avoid unnecessary slices. + if ( + position > 0 || + position + length < stream.node.usedBytes + ) { + if (contents.subarray) { + contents = contents.subarray( + position, + position + length + ) + } else { + contents = Array.prototype.slice.call( + contents, + position, + position + length + ) + } + } + allocated = true + ptr = _malloc(length) + if (!ptr) { + throw new FS.ErrnoError(ERRNO_CODES.ENOMEM) + } + buffer.set(contents, ptr) + } + return { ptr: ptr, allocated: allocated } + }, + msync: function(stream, buffer, offset, length, mmapFlags) { + if (!FS.isFile(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV) + } + if (mmapFlags & 2) { + // MAP_PRIVATE calls need not to be synced back to underlying fs + return 0 + } + + var bytesWritten = MEMFS.stream_ops.write( + stream, + buffer, + 0, + length, + offset, + false + ) + // should we check if bytesWritten and length are the same? + return 0 + } + } + } + + var IDBFS = { + dbs: {}, + indexedDB: function() { + if (typeof indexedDB !== "undefined") return indexedDB + var ret = null + if (typeof window === "object") + ret = + window.indexedDB || + window.mozIndexedDB || + window.webkitIndexedDB || + window.msIndexedDB + assert(ret, "IDBFS used, but indexedDB not supported") + return ret + }, + DB_VERSION: 21, + DB_STORE_NAME: "FILE_DATA", + mount: function(mount) { + // reuse all of the core MEMFS functionality + return MEMFS.mount.apply(null, arguments) + }, + syncfs: function(mount, populate, callback) { + IDBFS.getLocalSet(mount, function(err, local) { + if (err) return callback(err) + + IDBFS.getRemoteSet(mount, function(err, remote) { + if (err) return callback(err) + + var src = populate ? remote : local + var dst = populate ? local : remote + + IDBFS.reconcile(src, dst, callback) + }) + }) + }, + getDB: function(name, callback) { + // check the cache first + var db = IDBFS.dbs[name] + if (db) { + return callback(null, db) + } + + var req + try { + req = IDBFS.indexedDB().open(name, IDBFS.DB_VERSION) + } catch (e) { + return callback(e) + } + req.onupgradeneeded = function(e) { + var db = e.target.result + var transaction = e.target.transaction + + var fileStore + + if (db.objectStoreNames.contains(IDBFS.DB_STORE_NAME)) { + fileStore = transaction.objectStore(IDBFS.DB_STORE_NAME) + } else { + fileStore = db.createObjectStore(IDBFS.DB_STORE_NAME) + } + + if (!fileStore.indexNames.contains("timestamp")) { + fileStore.createIndex("timestamp", "timestamp", { + unique: false + }) + } + } + req.onsuccess = function() { + db = req.result + + // add to the cache + IDBFS.dbs[name] = db + callback(null, db) + } + req.onerror = function(e) { + callback(this.error) + e.preventDefault() + } + }, + getLocalSet: function(mount, callback) { + var entries = {} + + function isRealDir(p) { + return p !== "." && p !== ".." + } + function toAbsolute(root) { + return function(p) { + return PATH.join2(root, p) + } + } + + var check = FS.readdir(mount.mountpoint) + .filter(isRealDir) + .map(toAbsolute(mount.mountpoint)) + + while (check.length) { + var path = check.pop() + var stat + + try { + stat = FS.stat(path) + } catch (e) { + return callback(e) + } + + if (FS.isDir(stat.mode)) { + check.push.apply( + check, + FS.readdir(path) + .filter(isRealDir) + .map(toAbsolute(path)) + ) + } + + entries[path] = { timestamp: stat.mtime } + } + + return callback(null, { type: "local", entries: entries }) + }, + getRemoteSet: function(mount, callback) { + var entries = {} + + IDBFS.getDB(mount.mountpoint, function(err, db) { + if (err) return callback(err) + + var transaction = db.transaction( + [IDBFS.DB_STORE_NAME], + "readonly" + ) + transaction.onerror = function(e) { + callback(this.error) + e.preventDefault() + } + + var store = transaction.objectStore(IDBFS.DB_STORE_NAME) + var index = store.index("timestamp") + + index.openKeyCursor().onsuccess = function(event) { + var cursor = event.target.result + + if (!cursor) { + return callback(null, { + type: "remote", + db: db, + entries: entries + }) + } + + entries[cursor.primaryKey] = { timestamp: cursor.key } + + cursor.continue() + } + }) + }, + loadLocalEntry: function(path, callback) { + var stat, node + + try { + var lookup = FS.lookupPath(path) + node = lookup.node + stat = FS.stat(path) + } catch (e) { + return callback(e) + } + + if (FS.isDir(stat.mode)) { + return callback(null, { + timestamp: stat.mtime, + mode: stat.mode + }) + } else if (FS.isFile(stat.mode)) { + // Performance consideration: storing a normal JavaScript array to a IndexedDB is much slower than storing a typed array. + // Therefore always convert the file contents to a typed array first before writing the data to IndexedDB. + node.contents = MEMFS.getFileDataAsTypedArray(node) + return callback(null, { + timestamp: stat.mtime, + mode: stat.mode, + contents: node.contents + }) + } else { + return callback(new Error("node type not supported")) + } + }, + storeLocalEntry: function(path, entry, callback) { + try { + if (FS.isDir(entry.mode)) { + FS.mkdir(path, entry.mode) + } else if (FS.isFile(entry.mode)) { + FS.writeFile(path, entry.contents, { + encoding: "binary", + canOwn: true + }) + } else { + return callback(new Error("node type not supported")) + } + + FS.chmod(path, entry.mode) + FS.utime(path, entry.timestamp, entry.timestamp) + } catch (e) { + return callback(e) + } + + callback(null) + }, + removeLocalEntry: function(path, callback) { + try { + var lookup = FS.lookupPath(path) + var stat = FS.stat(path) + + if (FS.isDir(stat.mode)) { + FS.rmdir(path) + } else if (FS.isFile(stat.mode)) { + FS.unlink(path) + } + } catch (e) { + return callback(e) + } + + callback(null) + }, + loadRemoteEntry: function(store, path, callback) { + var req = store.get(path) + req.onsuccess = function(event) { + callback(null, event.target.result) + } + req.onerror = function(e) { + callback(this.error) + e.preventDefault() + } + }, + storeRemoteEntry: function(store, path, entry, callback) { + var req = store.put(entry, path) + req.onsuccess = function() { + callback(null) + } + req.onerror = function(e) { + callback(this.error) + e.preventDefault() + } + }, + removeRemoteEntry: function(store, path, callback) { + var req = store.delete(path) + req.onsuccess = function() { + callback(null) + } + req.onerror = function(e) { + callback(this.error) + e.preventDefault() + } + }, + reconcile: function(src, dst, callback) { + var total = 0 + + var create = [] + Object.keys(src.entries).forEach(function(key) { + var e = src.entries[key] + var e2 = dst.entries[key] + if (!e2 || e.timestamp > e2.timestamp) { + create.push(key) + total++ + } + }) + + var remove = [] + Object.keys(dst.entries).forEach(function(key) { + var e = dst.entries[key] + var e2 = src.entries[key] + if (!e2) { + remove.push(key) + total++ + } + }) + + if (!total) { + return callback(null) + } + + var errored = false + var completed = 0 + var db = src.type === "remote" ? src.db : dst.db + var transaction = db.transaction( + [IDBFS.DB_STORE_NAME], + "readwrite" + ) + var store = transaction.objectStore(IDBFS.DB_STORE_NAME) + + function done(err) { + if (err) { + if (!done.errored) { + done.errored = true + return callback(err) + } + return + } + if (++completed >= total) { + return callback(null) + } + } + + transaction.onerror = function(e) { + done(this.error) + e.preventDefault() + } + + // sort paths in ascending order so directory entries are created + // before the files inside them + create.sort().forEach(function(path) { + if (dst.type === "local") { + IDBFS.loadRemoteEntry(store, path, function(err, entry) { + if (err) return done(err) + IDBFS.storeLocalEntry(path, entry, done) + }) + } else { + IDBFS.loadLocalEntry(path, function(err, entry) { + if (err) return done(err) + IDBFS.storeRemoteEntry(store, path, entry, done) + }) + } + }) + + // sort paths in descending order so files are deleted before their + // parent directories + remove + .sort() + .reverse() + .forEach(function(path) { + if (dst.type === "local") { + IDBFS.removeLocalEntry(path, done) + } else { + IDBFS.removeRemoteEntry(store, path, done) + } + }) + } + } + + var NODEFS = { + isWindows: false, + staticInit: function() { + NODEFS.isWindows = !!process.platform.match(/^win/) + }, + mount: function(mount) { + assert(ENVIRONMENT_IS_NODE) + return NODEFS.createNode( + null, + "/", + NODEFS.getMode(mount.opts.root), + 0 + ) + }, + createNode: function(parent, name, mode, dev) { + if (!FS.isDir(mode) && !FS.isFile(mode) && !FS.isLink(mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + var node = FS.createNode(parent, name, mode) + node.node_ops = NODEFS.node_ops + node.stream_ops = NODEFS.stream_ops + return node + }, + getMode: function(path) { + var stat + try { + stat = fs.lstatSync(path) + if (NODEFS.isWindows) { + // On Windows, directories return permission bits 'rw-rw-rw-', even though they have 'rwxrwxrwx', so + // propagate write bits to execute bits. + stat.mode = stat.mode | ((stat.mode & 146) >> 1) + } + } catch (e) { + if (!e.code) throw e + throw new FS.ErrnoError(ERRNO_CODES[e.code]) + } + return stat.mode + }, + realPath: function(node) { + var parts = [] + while (node.parent !== node) { + parts.push(node.name) + node = node.parent + } + parts.push(node.mount.opts.root) + parts.reverse() + return PATH.join.apply(null, parts) + }, + flagsToPermissionStringMap: { + 0: "r", + 1: "r+", + 2: "r+", + 64: "r", + 65: "r+", + 66: "r+", + 129: "rx+", + 193: "rx+", + 514: "w+", + 577: "w", + 578: "w+", + 705: "wx", + 706: "wx+", + 1024: "a", + 1025: "a", + 1026: "a+", + 1089: "a", + 1090: "a+", + 1153: "ax", + 1154: "ax+", + 1217: "ax", + 1218: "ax+", + 4096: "rs", + 4098: "rs+" + }, + flagsToPermissionString: function(flags) { + flags &= ~0100000 /*O_LARGEFILE*/ // Ignore this flag from musl, otherwise node.js fails to open the file. + if (flags in NODEFS.flagsToPermissionStringMap) { + return NODEFS.flagsToPermissionStringMap[flags] + } else { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + }, + node_ops: { + getattr: function(node) { + var path = NODEFS.realPath(node) + var stat + try { + stat = fs.lstatSync(path) + } catch (e) { + if (!e.code) throw e + throw new FS.ErrnoError(ERRNO_CODES[e.code]) + } + // node.js v0.10.20 doesn't report blksize and blocks on Windows. Fake them with default blksize of 4096. + // See http://support.microsoft.com/kb/140365 + if (NODEFS.isWindows && !stat.blksize) { + stat.blksize = 4096 + } + if (NODEFS.isWindows && !stat.blocks) { + stat.blocks = + ((stat.size + stat.blksize - 1) / stat.blksize) | 0 + } + return { + dev: stat.dev, + ino: stat.ino, + mode: stat.mode, + nlink: stat.nlink, + uid: stat.uid, + gid: stat.gid, + rdev: stat.rdev, + size: stat.size, + atime: stat.atime, + mtime: stat.mtime, + ctime: stat.ctime, + blksize: stat.blksize, + blocks: stat.blocks + } + }, + setattr: function(node, attr) { + var path = NODEFS.realPath(node) + try { + if (attr.mode !== undefined) { + fs.chmodSync(path, attr.mode) + // update the common node structure mode as well + node.mode = attr.mode + } + if (attr.timestamp !== undefined) { + var date = new Date(attr.timestamp) + fs.utimesSync(path, date, date) + } + if (attr.size !== undefined) { + fs.truncateSync(path, attr.size) + } + } catch (e) { + if (!e.code) throw e + throw new FS.ErrnoError(ERRNO_CODES[e.code]) + } + }, + lookup: function(parent, name) { + var path = PATH.join2(NODEFS.realPath(parent), name) + var mode = NODEFS.getMode(path) + return NODEFS.createNode(parent, name, mode) + }, + mknod: function(parent, name, mode, dev) { + var node = NODEFS.createNode(parent, name, mode, dev) + // create the backing node for this in the fs root as well + var path = NODEFS.realPath(node) + try { + if (FS.isDir(node.mode)) { + fs.mkdirSync(path, node.mode) + } else { + fs.writeFileSync(path, "", { mode: node.mode }) + } + } catch (e) { + if (!e.code) throw e + throw new FS.ErrnoError(ERRNO_CODES[e.code]) + } + return node + }, + rename: function(oldNode, newDir, newName) { + var oldPath = NODEFS.realPath(oldNode) + var newPath = PATH.join2(NODEFS.realPath(newDir), newName) + try { + fs.renameSync(oldPath, newPath) + } catch (e) { + if (!e.code) throw e + throw new FS.ErrnoError(ERRNO_CODES[e.code]) + } + }, + unlink: function(parent, name) { + var path = PATH.join2(NODEFS.realPath(parent), name) + try { + fs.unlinkSync(path) + } catch (e) { + if (!e.code) throw e + throw new FS.ErrnoError(ERRNO_CODES[e.code]) + } + }, + rmdir: function(parent, name) { + var path = PATH.join2(NODEFS.realPath(parent), name) + try { + fs.rmdirSync(path) + } catch (e) { + if (!e.code) throw e + throw new FS.ErrnoError(ERRNO_CODES[e.code]) + } + }, + readdir: function(node) { + var path = NODEFS.realPath(node) + try { + return fs.readdirSync(path) + } catch (e) { + if (!e.code) throw e + throw new FS.ErrnoError(ERRNO_CODES[e.code]) + } + }, + symlink: function(parent, newName, oldPath) { + var newPath = PATH.join2(NODEFS.realPath(parent), newName) + try { + fs.symlinkSync(oldPath, newPath) + } catch (e) { + if (!e.code) throw e + throw new FS.ErrnoError(ERRNO_CODES[e.code]) + } + }, + readlink: function(node) { + var path = NODEFS.realPath(node) + try { + path = fs.readlinkSync(path) + path = NODEJS_PATH.relative( + NODEJS_PATH.resolve(node.mount.opts.root), + path + ) + return path + } catch (e) { + if (!e.code) throw e + throw new FS.ErrnoError(ERRNO_CODES[e.code]) + } + } + }, + stream_ops: { + open: function(stream) { + var path = NODEFS.realPath(stream.node) + try { + if (FS.isFile(stream.node.mode)) { + stream.nfd = fs.openSync( + path, + NODEFS.flagsToPermissionString(stream.flags) + ) + } + } catch (e) { + if (!e.code) throw e + throw new FS.ErrnoError(ERRNO_CODES[e.code]) + } + }, + close: function(stream) { + try { + if (FS.isFile(stream.node.mode) && stream.nfd) { + fs.closeSync(stream.nfd) + } + } catch (e) { + if (!e.code) throw e + throw new FS.ErrnoError(ERRNO_CODES[e.code]) + } + }, + read: function(stream, buffer, offset, length, position) { + if (length === 0) return 0 // node errors on 0 length reads + // FIXME this is terrible. + var nbuffer = new Buffer(length) + var res + try { + res = fs.readSync(stream.nfd, nbuffer, 0, length, position) + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES[e.code]) + } + if (res > 0) { + for (var i = 0; i < res; i++) { + buffer[offset + i] = nbuffer[i] + } + } + return res + }, + write: function(stream, buffer, offset, length, position) { + // FIXME this is terrible. + var nbuffer = new Buffer( + buffer.subarray(offset, offset + length) + ) + var res + try { + res = fs.writeSync(stream.nfd, nbuffer, 0, length, position) + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES[e.code]) + } + return res + }, + llseek: function(stream, offset, whence) { + var position = offset + if (whence === 1) { + // SEEK_CUR. + position += stream.position + } else if (whence === 2) { + // SEEK_END. + if (FS.isFile(stream.node.mode)) { + try { + var stat = fs.fstatSync(stream.nfd) + position += stat.size + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES[e.code]) + } + } + } + + if (position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + + return position + } + } + } + + var WORKERFS = { + DIR_MODE: 16895, + FILE_MODE: 33279, + reader: null, + mount: function(mount) { + assert(ENVIRONMENT_IS_WORKER) + if (!WORKERFS.reader) WORKERFS.reader = new FileReaderSync() + var root = WORKERFS.createNode(null, "/", WORKERFS.DIR_MODE, 0) + var createdParents = {} + function ensureParent(path) { + // return the parent node, creating subdirs as necessary + var parts = path.split("/") + var parent = root + for (var i = 0; i < parts.length - 1; i++) { + var curr = parts.slice(0, i + 1).join("/") + if (!createdParents[curr]) { + createdParents[curr] = WORKERFS.createNode( + parent, + curr, + WORKERFS.DIR_MODE, + 0 + ) + } + parent = createdParents[curr] + } + return parent + } + function base(path) { + var parts = path.split("/") + return parts[parts.length - 1] + } + // We also accept FileList here, by using Array.prototype + Array.prototype.forEach.call( + mount.opts["files"] || [], + function(file) { + WORKERFS.createNode( + ensureParent(file.name), + base(file.name), + WORKERFS.FILE_MODE, + 0, + file, + file.lastModifiedDate + ) + } + ) + ;(mount.opts["blobs"] || []).forEach(function(obj) { + WORKERFS.createNode( + ensureParent(obj["name"]), + base(obj["name"]), + WORKERFS.FILE_MODE, + 0, + obj["data"] + ) + }) + ;(mount.opts["packages"] || []).forEach(function(pack) { + pack["metadata"].files.forEach(function(file) { + var name = file.filename.substr(1) // remove initial slash + WORKERFS.createNode( + ensureParent(name), + base(name), + WORKERFS.FILE_MODE, + 0, + pack["blob"].slice(file.start, file.end) + ) + }) + }) + return root + }, + createNode: function(parent, name, mode, dev, contents, mtime) { + var node = FS.createNode(parent, name, mode) + node.mode = mode + node.node_ops = WORKERFS.node_ops + node.stream_ops = WORKERFS.stream_ops + node.timestamp = (mtime || new Date()).getTime() + assert(WORKERFS.FILE_MODE !== WORKERFS.DIR_MODE) + if (mode === WORKERFS.FILE_MODE) { + node.size = contents.size + node.contents = contents + } else { + node.size = 4096 + node.contents = {} + } + if (parent) { + parent.contents[name] = node + } + return node + }, + node_ops: { + getattr: function(node) { + return { + dev: 1, + ino: undefined, + mode: node.mode, + nlink: 1, + uid: 0, + gid: 0, + rdev: undefined, + size: node.size, + atime: new Date(node.timestamp), + mtime: new Date(node.timestamp), + ctime: new Date(node.timestamp), + blksize: 4096, + blocks: Math.ceil(node.size / 4096) + } + }, + setattr: function(node, attr) { + if (attr.mode !== undefined) { + node.mode = attr.mode + } + if (attr.timestamp !== undefined) { + node.timestamp = attr.timestamp + } + }, + lookup: function(parent, name) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT) + }, + mknod: function(parent, name, mode, dev) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + }, + rename: function(oldNode, newDir, newName) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + }, + unlink: function(parent, name) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + }, + rmdir: function(parent, name) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + }, + readdir: function(node) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + }, + symlink: function(parent, newName, oldPath) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + }, + readlink: function(node) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + } + }, + stream_ops: { + read: function(stream, buffer, offset, length, position) { + if (position >= stream.node.size) return 0 + var chunk = stream.node.contents.slice( + position, + position + length + ) + var ab = WORKERFS.reader.readAsArrayBuffer(chunk) + buffer.set(new Uint8Array(ab), offset) + return chunk.size + }, + write: function(stream, buffer, offset, length, position) { + throw new FS.ErrnoError(ERRNO_CODES.EIO) + }, + llseek: function(stream, offset, whence) { + var position = offset + if (whence === 1) { + // SEEK_CUR. + position += stream.position + } else if (whence === 2) { + // SEEK_END. + if (FS.isFile(stream.node.mode)) { + position += stream.node.size + } + } + if (position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + return position + } + } + } + + var _stdin = allocate(1, "i32*", ALLOC_STATIC) + + var _stdout = allocate(1, "i32*", ALLOC_STATIC) + + var _stderr = allocate(1, "i32*", ALLOC_STATIC) + var FS = { + root: null, + mounts: [], + devices: [null], + streams: [], + nextInode: 1, + nameTable: null, + currentPath: "/", + initialized: false, + ignorePermissions: true, + trackingDelegate: {}, + tracking: { openFlags: { READ: 1, WRITE: 2 } }, + ErrnoError: null, + genericErrors: {}, + filesystems: null, + handleFSError: function(e) { + if (!(e instanceof FS.ErrnoError)) + throw e + " : " + stackTrace() + return ___setErrNo(e.errno) + }, + lookupPath: function(path, opts) { + path = PATH.resolve(FS.cwd(), path) + opts = opts || {} + + if (!path) return { path: "", node: null } + + var defaults = { + follow_mount: true, + recurse_count: 0 + } + for (var key in defaults) { + if (opts[key] === undefined) { + opts[key] = defaults[key] + } + } + + if (opts.recurse_count > 8) { + // max recursive lookup of 8 + throw new FS.ErrnoError(ERRNO_CODES.ELOOP) + } + + // split the path + var parts = PATH.normalizeArray( + path.split("/").filter(function(p) { + return !!p + }), + false + ) + + // start at the root + var current = FS.root + var current_path = "/" + + for (var i = 0; i < parts.length; i++) { + var islast = i === parts.length - 1 + if (islast && opts.parent) { + // stop resolving + break + } + + current = FS.lookupNode(current, parts[i]) + current_path = PATH.join2(current_path, parts[i]) + + // jump to the mount's root node if this is a mountpoint + if (FS.isMountpoint(current)) { + if (!islast || (islast && opts.follow_mount)) { + current = current.mounted.root + } + } + + // by default, lookupPath will not follow a symlink if it is the final path component. + // setting opts.follow = true will override this behavior. + if (!islast || opts.follow) { + var count = 0 + while (FS.isLink(current.mode)) { + var link = FS.readlink(current_path) + current_path = PATH.resolve( + PATH.dirname(current_path), + link + ) + + var lookup = FS.lookupPath(current_path, { + recurse_count: opts.recurse_count + }) + current = lookup.node + + if (count++ > 40) { + // limit max consecutive symlinks to 40 (SYMLOOP_MAX). + throw new FS.ErrnoError(ERRNO_CODES.ELOOP) + } + } + } + } + + return { path: current_path, node: current } + }, + getPath: function(node) { + var path + while (true) { + if (FS.isRoot(node)) { + var mount = node.mount.mountpoint + if (!path) return mount + return mount[mount.length - 1] !== "/" + ? mount + "/" + path + : mount + path + } + path = path ? node.name + "/" + path : node.name + node = node.parent + } + }, + hashName: function(parentid, name) { + var hash = 0 + + for (var i = 0; i < name.length; i++) { + hash = ((hash << 5) - hash + name.charCodeAt(i)) | 0 + } + return ((parentid + hash) >>> 0) % FS.nameTable.length + }, + hashAddNode: function(node) { + var hash = FS.hashName(node.parent.id, node.name) + node.name_next = FS.nameTable[hash] + FS.nameTable[hash] = node + }, + hashRemoveNode: function(node) { + var hash = FS.hashName(node.parent.id, node.name) + if (FS.nameTable[hash] === node) { + FS.nameTable[hash] = node.name_next + } else { + var current = FS.nameTable[hash] + while (current) { + if (current.name_next === node) { + current.name_next = node.name_next + break + } + current = current.name_next + } + } + }, + lookupNode: function(parent, name) { + var err = FS.mayLookup(parent) + if (err) { + throw new FS.ErrnoError(err, parent) + } + var hash = FS.hashName(parent.id, name) + for ( + var node = FS.nameTable[hash]; + node; + node = node.name_next + ) { + var nodeName = node.name + if (node.parent.id === parent.id && nodeName === name) { + return node + } + } + // if we failed to find it in the cache, call into the VFS + return FS.lookup(parent, name) + }, + createNode: function(parent, name, mode, rdev) { + if (!FS.FSNode) { + FS.FSNode = function(parent, name, mode, rdev) { + if (!parent) { + parent = this // root node sets parent to itself + } + this.parent = parent + this.mount = parent.mount + this.mounted = null + this.id = FS.nextInode++ + this.name = name + this.mode = mode + this.node_ops = {} + this.stream_ops = {} + this.rdev = rdev + } + + FS.FSNode.prototype = {} + + // compatibility + var readMode = 292 | 73 + var writeMode = 146 + + // NOTE we must use Object.defineProperties instead of individual calls to + // Object.defineProperty in order to make closure compiler happy + Object.defineProperties(FS.FSNode.prototype, { + read: { + get: function() { + return (this.mode & readMode) === readMode + }, + set: function(val) { + val ? (this.mode |= readMode) : (this.mode &= ~readMode) + } + }, + write: { + get: function() { + return (this.mode & writeMode) === writeMode + }, + set: function(val) { + val + ? (this.mode |= writeMode) + : (this.mode &= ~writeMode) + } + }, + isFolder: { + get: function() { + return FS.isDir(this.mode) + } + }, + isDevice: { + get: function() { + return FS.isChrdev(this.mode) + } + } + }) + } + + var node = new FS.FSNode(parent, name, mode, rdev) + + FS.hashAddNode(node) + + return node + }, + destroyNode: function(node) { + FS.hashRemoveNode(node) + }, + isRoot: function(node) { + return node === node.parent + }, + isMountpoint: function(node) { + return !!node.mounted + }, + isFile: function(mode) { + return (mode & 61440) === 32768 + }, + isDir: function(mode) { + return (mode & 61440) === 16384 + }, + isLink: function(mode) { + return (mode & 61440) === 40960 + }, + isChrdev: function(mode) { + return (mode & 61440) === 8192 + }, + isBlkdev: function(mode) { + return (mode & 61440) === 24576 + }, + isFIFO: function(mode) { + return (mode & 61440) === 4096 + }, + isSocket: function(mode) { + return (mode & 49152) === 49152 + }, + flagModes: { + r: 0, + rs: 1052672, + "r+": 2, + w: 577, + wx: 705, + xw: 705, + "w+": 578, + "wx+": 706, + "xw+": 706, + a: 1089, + ax: 1217, + xa: 1217, + "a+": 1090, + "ax+": 1218, + "xa+": 1218 + }, + modeStringToFlags: function(str) { + var flags = FS.flagModes[str] + if (typeof flags === "undefined") { + throw new Error("Unknown file open mode: " + str) + } + return flags + }, + flagsToPermissionString: function(flag) { + var perms = ["r", "w", "rw"][flag & 3] + if (flag & 512) { + perms += "w" + } + return perms + }, + nodePermissions: function(node, perms) { + if (FS.ignorePermissions) { + return 0 + } + // return 0 if any user, group or owner bits are set. + if (perms.indexOf("r") !== -1 && !(node.mode & 292)) { + return ERRNO_CODES.EACCES + } else if (perms.indexOf("w") !== -1 && !(node.mode & 146)) { + return ERRNO_CODES.EACCES + } else if (perms.indexOf("x") !== -1 && !(node.mode & 73)) { + return ERRNO_CODES.EACCES + } + return 0 + }, + mayLookup: function(dir) { + var err = FS.nodePermissions(dir, "x") + if (err) return err + if (!dir.node_ops.lookup) return ERRNO_CODES.EACCES + return 0 + }, + mayCreate: function(dir, name) { + try { + var node = FS.lookupNode(dir, name) + return ERRNO_CODES.EEXIST + } catch (e) {} + return FS.nodePermissions(dir, "wx") + }, + mayDelete: function(dir, name, isdir) { + var node + try { + node = FS.lookupNode(dir, name) + } catch (e) { + return e.errno + } + var err = FS.nodePermissions(dir, "wx") + if (err) { + return err + } + if (isdir) { + if (!FS.isDir(node.mode)) { + return ERRNO_CODES.ENOTDIR + } + if (FS.isRoot(node) || FS.getPath(node) === FS.cwd()) { + return ERRNO_CODES.EBUSY + } + } else { + if (FS.isDir(node.mode)) { + return ERRNO_CODES.EISDIR + } + } + return 0 + }, + mayOpen: function(node, flags) { + if (!node) { + return ERRNO_CODES.ENOENT + } + if (FS.isLink(node.mode)) { + return ERRNO_CODES.ELOOP + } else if (FS.isDir(node.mode)) { + if ( + (flags & 2097155) !== 0 || // opening for write + flags & 512 + ) { + return ERRNO_CODES.EISDIR + } + } + return FS.nodePermissions( + node, + FS.flagsToPermissionString(flags) + ) + }, + MAX_OPEN_FDS: 4096, + nextfd: function(fd_start, fd_end) { + fd_start = fd_start || 0 + fd_end = fd_end || FS.MAX_OPEN_FDS + for (var fd = fd_start; fd <= fd_end; fd++) { + if (!FS.streams[fd]) { + return fd + } + } + throw new FS.ErrnoError(ERRNO_CODES.EMFILE) + }, + getStream: function(fd) { + return FS.streams[fd] + }, + createStream: function(stream, fd_start, fd_end) { + if (!FS.FSStream) { + FS.FSStream = function() {} + FS.FSStream.prototype = {} + // compatibility + Object.defineProperties(FS.FSStream.prototype, { + object: { + get: function() { + return this.node + }, + set: function(val) { + this.node = val + } + }, + isRead: { + get: function() { + return (this.flags & 2097155) !== 1 + } + }, + isWrite: { + get: function() { + return (this.flags & 2097155) !== 0 + } + }, + isAppend: { + get: function() { + return this.flags & 1024 + } + } + }) + } + // clone it, so we can return an instance of FSStream + var newStream = new FS.FSStream() + for (var p in stream) { + newStream[p] = stream[p] + } + stream = newStream + var fd = FS.nextfd(fd_start, fd_end) + stream.fd = fd + FS.streams[fd] = stream + return stream + }, + closeStream: function(fd) { + FS.streams[fd] = null + }, + chrdev_stream_ops: { + open: function(stream) { + var device = FS.getDevice(stream.node.rdev) + // override node's stream ops with the device's + stream.stream_ops = device.stream_ops + // forward the open call + if (stream.stream_ops.open) { + stream.stream_ops.open(stream) + } + }, + llseek: function() { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE) + } + }, + major: function(dev) { + return dev >> 8 + }, + minor: function(dev) { + return dev & 0xff + }, + makedev: function(ma, mi) { + return (ma << 8) | mi + }, + registerDevice: function(dev, ops) { + FS.devices[dev] = { stream_ops: ops } + }, + getDevice: function(dev) { + return FS.devices[dev] + }, + getMounts: function(mount) { + var mounts = [] + var check = [mount] + + while (check.length) { + var m = check.pop() + + mounts.push(m) + + check.push.apply(check, m.mounts) + } + + return mounts + }, + syncfs: function(populate, callback) { + if (typeof populate === "function") { + callback = populate + populate = false + } + + var mounts = FS.getMounts(FS.root.mount) + var completed = 0 + + function done(err) { + if (err) { + if (!done.errored) { + done.errored = true + return callback(err) + } + return + } + if (++completed >= mounts.length) { + callback(null) + } + } + + // sync all mounts + mounts.forEach(function(mount) { + if (!mount.type.syncfs) { + return done(null) + } + mount.type.syncfs(mount, populate, done) + }) + }, + mount: function(type, opts, mountpoint) { + var root = mountpoint === "/" + var pseudo = !mountpoint + var node + + if (root && FS.root) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY) + } else if (!root && !pseudo) { + var lookup = FS.lookupPath(mountpoint, { + follow_mount: false + }) + + mountpoint = lookup.path // use the absolute path + node = lookup.node + + if (FS.isMountpoint(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY) + } + + if (!FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR) + } + } + + var mount = { + type: type, + opts: opts, + mountpoint: mountpoint, + mounts: [] + } + + // create a root node for the fs + var mountRoot = type.mount(mount) + mountRoot.mount = mount + mount.root = mountRoot + + if (root) { + FS.root = mountRoot + } else if (node) { + // set as a mountpoint + node.mounted = mount + + // add the new mount to the current mount's children + if (node.mount) { + node.mount.mounts.push(mount) + } + } + + return mountRoot + }, + unmount: function(mountpoint) { + var lookup = FS.lookupPath(mountpoint, { follow_mount: false }) + + if (!FS.isMountpoint(lookup.node)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + + // destroy the nodes for this mount, and all its child mounts + var node = lookup.node + var mount = node.mounted + var mounts = FS.getMounts(mount) + + Object.keys(FS.nameTable).forEach(function(hash) { + var current = FS.nameTable[hash] + + while (current) { + var next = current.name_next + + if (mounts.indexOf(current.mount) !== -1) { + FS.destroyNode(current) + } + + current = next + } + }) + + // no longer a mountpoint + node.mounted = null + + // remove this mount from the child mounts + var idx = node.mount.mounts.indexOf(mount) + assert(idx !== -1) + node.mount.mounts.splice(idx, 1) + }, + lookup: function(parent, name) { + return parent.node_ops.lookup(parent, name) + }, + mknod: function(path, mode, dev) { + var lookup = FS.lookupPath(path, { parent: true }) + var parent = lookup.node + var name = PATH.basename(path) + if (!name || name === "." || name === "..") { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + var err = FS.mayCreate(parent, name) + if (err) { + throw new FS.ErrnoError(err) + } + if (!parent.node_ops.mknod) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + } + return parent.node_ops.mknod(parent, name, mode, dev) + }, + create: function(path, mode) { + mode = mode !== undefined ? mode : 438 /* 0666 */ + mode &= 4095 + mode |= 32768 + return FS.mknod(path, mode, 0) + }, + mkdir: function(path, mode) { + mode = mode !== undefined ? mode : 511 /* 0777 */ + mode &= 511 | 512 + mode |= 16384 + return FS.mknod(path, mode, 0) + }, + mkdev: function(path, mode, dev) { + if (typeof dev === "undefined") { + dev = mode + mode = 438 /* 0666 */ + } + mode |= 8192 + return FS.mknod(path, mode, dev) + }, + symlink: function(oldpath, newpath) { + if (!PATH.resolve(oldpath)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT) + } + var lookup = FS.lookupPath(newpath, { parent: true }) + var parent = lookup.node + if (!parent) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT) + } + var newname = PATH.basename(newpath) + var err = FS.mayCreate(parent, newname) + if (err) { + throw new FS.ErrnoError(err) + } + if (!parent.node_ops.symlink) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + } + return parent.node_ops.symlink(parent, newname, oldpath) + }, + rename: function(old_path, new_path) { + var old_dirname = PATH.dirname(old_path) + var new_dirname = PATH.dirname(new_path) + var old_name = PATH.basename(old_path) + var new_name = PATH.basename(new_path) + // parents must exist + var lookup, old_dir, new_dir + try { + lookup = FS.lookupPath(old_path, { parent: true }) + old_dir = lookup.node + lookup = FS.lookupPath(new_path, { parent: true }) + new_dir = lookup.node + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY) + } + if (!old_dir || !new_dir) + throw new FS.ErrnoError(ERRNO_CODES.ENOENT) + // need to be part of the same mount + if (old_dir.mount !== new_dir.mount) { + throw new FS.ErrnoError(ERRNO_CODES.EXDEV) + } + // source must exist + var old_node = FS.lookupNode(old_dir, old_name) + // old path should not be an ancestor of the new path + var relative = PATH.relative(old_path, new_dirname) + if (relative.charAt(0) !== ".") { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + // new path should not be an ancestor of the old path + relative = PATH.relative(new_path, old_dirname) + if (relative.charAt(0) !== ".") { + throw new FS.ErrnoError(ERRNO_CODES.ENOTEMPTY) + } + // see if the new path already exists + var new_node + try { + new_node = FS.lookupNode(new_dir, new_name) + } catch (e) { + // not fatal + } + // early out if nothing needs to change + if (old_node === new_node) { + return + } + // we'll need to delete the old entry + var isdir = FS.isDir(old_node.mode) + var err = FS.mayDelete(old_dir, old_name, isdir) + if (err) { + throw new FS.ErrnoError(err) + } + // need delete permissions if we'll be overwriting. + // need create permissions if new doesn't already exist. + err = new_node + ? FS.mayDelete(new_dir, new_name, isdir) + : FS.mayCreate(new_dir, new_name) + if (err) { + throw new FS.ErrnoError(err) + } + if (!old_dir.node_ops.rename) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + } + if ( + FS.isMountpoint(old_node) || + (new_node && FS.isMountpoint(new_node)) + ) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY) + } + // if we are going to change the parent, check write permissions + if (new_dir !== old_dir) { + err = FS.nodePermissions(old_dir, "w") + if (err) { + throw new FS.ErrnoError(err) + } + } + try { + if (FS.trackingDelegate["willMovePath"]) { + FS.trackingDelegate["willMovePath"](old_path, new_path) + } + } catch (e) { + console.log( + "FS.trackingDelegate['willMovePath']('" + + old_path + + "', '" + + new_path + + "') threw an exception: " + + e.message + ) + } + // remove the node from the lookup hash + FS.hashRemoveNode(old_node) + // do the underlying fs rename + try { + old_dir.node_ops.rename(old_node, new_dir, new_name) + } catch (e) { + throw e + } finally { + // add the node back to the hash (in case node_ops.rename + // changed its name) + FS.hashAddNode(old_node) + } + try { + if (FS.trackingDelegate["onMovePath"]) + FS.trackingDelegate["onMovePath"](old_path, new_path) + } catch (e) { + console.log( + "FS.trackingDelegate['onMovePath']('" + + old_path + + "', '" + + new_path + + "') threw an exception: " + + e.message + ) + } + }, + rmdir: function(path) { + var lookup = FS.lookupPath(path, { parent: true }) + var parent = lookup.node + var name = PATH.basename(path) + var node = FS.lookupNode(parent, name) + var err = FS.mayDelete(parent, name, true) + if (err) { + throw new FS.ErrnoError(err) + } + if (!parent.node_ops.rmdir) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + } + if (FS.isMountpoint(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY) + } + try { + if (FS.trackingDelegate["willDeletePath"]) { + FS.trackingDelegate["willDeletePath"](path) + } + } catch (e) { + console.log( + "FS.trackingDelegate['willDeletePath']('" + + path + + "') threw an exception: " + + e.message + ) + } + parent.node_ops.rmdir(parent, name) + FS.destroyNode(node) + try { + if (FS.trackingDelegate["onDeletePath"]) + FS.trackingDelegate["onDeletePath"](path) + } catch (e) { + console.log( + "FS.trackingDelegate['onDeletePath']('" + + path + + "') threw an exception: " + + e.message + ) + } + }, + readdir: function(path) { + var lookup = FS.lookupPath(path, { follow: true }) + var node = lookup.node + if (!node.node_ops.readdir) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR) + } + return node.node_ops.readdir(node) + }, + unlink: function(path) { + var lookup = FS.lookupPath(path, { parent: true }) + var parent = lookup.node + var name = PATH.basename(path) + var node = FS.lookupNode(parent, name) + var err = FS.mayDelete(parent, name, false) + if (err) { + // POSIX says unlink should set EPERM, not EISDIR + if (err === ERRNO_CODES.EISDIR) err = ERRNO_CODES.EPERM + throw new FS.ErrnoError(err) + } + if (!parent.node_ops.unlink) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + } + if (FS.isMountpoint(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EBUSY) + } + try { + if (FS.trackingDelegate["willDeletePath"]) { + FS.trackingDelegate["willDeletePath"](path) + } + } catch (e) { + console.log( + "FS.trackingDelegate['willDeletePath']('" + + path + + "') threw an exception: " + + e.message + ) + } + parent.node_ops.unlink(parent, name) + FS.destroyNode(node) + try { + if (FS.trackingDelegate["onDeletePath"]) + FS.trackingDelegate["onDeletePath"](path) + } catch (e) { + console.log( + "FS.trackingDelegate['onDeletePath']('" + + path + + "') threw an exception: " + + e.message + ) + } + }, + readlink: function(path) { + var lookup = FS.lookupPath(path) + var link = lookup.node + if (!link) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT) + } + if (!link.node_ops.readlink) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + return PATH.resolve( + FS.getPath(link.parent), + link.node_ops.readlink(link) + ) + }, + stat: function(path, dontFollow) { + var lookup = FS.lookupPath(path, { follow: !dontFollow }) + var node = lookup.node + if (!node) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT) + } + if (!node.node_ops.getattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + } + return node.node_ops.getattr(node) + }, + lstat: function(path) { + return FS.stat(path, true) + }, + chmod: function(path, mode, dontFollow) { + var node + if (typeof path === "string") { + var lookup = FS.lookupPath(path, { follow: !dontFollow }) + node = lookup.node + } else { + node = path + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + } + node.node_ops.setattr(node, { + mode: (mode & 4095) | (node.mode & ~4095), + timestamp: Date.now() + }) + }, + lchmod: function(path, mode) { + FS.chmod(path, mode, true) + }, + fchmod: function(fd, mode) { + var stream = FS.getStream(fd) + if (!stream) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF) + } + FS.chmod(stream.node, mode) + }, + chown: function(path, uid, gid, dontFollow) { + var node + if (typeof path === "string") { + var lookup = FS.lookupPath(path, { follow: !dontFollow }) + node = lookup.node + } else { + node = path + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + } + node.node_ops.setattr(node, { + timestamp: Date.now() + // we ignore the uid / gid for now + }) + }, + lchown: function(path, uid, gid) { + FS.chown(path, uid, gid, true) + }, + fchown: function(fd, uid, gid) { + var stream = FS.getStream(fd) + if (!stream) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF) + } + FS.chown(stream.node, uid, gid) + }, + truncate: function(path, len) { + if (len < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + var node + if (typeof path === "string") { + var lookup = FS.lookupPath(path, { follow: true }) + node = lookup.node + } else { + node = path + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(ERRNO_CODES.EPERM) + } + if (FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EISDIR) + } + if (!FS.isFile(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + var err = FS.nodePermissions(node, "w") + if (err) { + throw new FS.ErrnoError(err) + } + node.node_ops.setattr(node, { + size: len, + timestamp: Date.now() + }) + }, + ftruncate: function(fd, len) { + var stream = FS.getStream(fd) + if (!stream) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF) + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + FS.truncate(stream.node, len) + }, + utime: function(path, atime, mtime) { + var lookup = FS.lookupPath(path, { follow: true }) + var node = lookup.node + node.node_ops.setattr(node, { + timestamp: Math.max(atime, mtime) + }) + }, + open: function(path, flags, mode, fd_start, fd_end) { + if (path === "") { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT) + } + flags = + typeof flags === "string" + ? FS.modeStringToFlags(flags) + : flags + mode = typeof mode === "undefined" ? 438 /* 0666 */ : mode + if (flags & 64) { + mode = (mode & 4095) | 32768 + } else { + mode = 0 + } + var node + if (typeof path === "object") { + node = path + } else { + path = PATH.normalize(path) + try { + var lookup = FS.lookupPath(path, { + follow: !(flags & 131072) + }) + node = lookup.node + } catch (e) { + // ignore + } + } + // perhaps we need to create the node + var created = false + if (flags & 64) { + if (node) { + // if O_CREAT and O_EXCL are set, error out if the node already exists + if (flags & 128) { + throw new FS.ErrnoError(ERRNO_CODES.EEXIST) + } + } else { + // node doesn't exist, try to create it + node = FS.mknod(path, mode, 0) + created = true + } + } + if (!node) { + throw new FS.ErrnoError(ERRNO_CODES.ENOENT) + } + // can't truncate a device + if (FS.isChrdev(node.mode)) { + flags &= ~512 + } + // if asked only for a directory, then this must be one + if (flags & 65536 && !FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR) + } + // check permissions, if this is not a file we just created now (it is ok to + // create and write to a file with read-only permissions; it is read-only + // for later use) + if (!created) { + var err = FS.mayOpen(node, flags) + if (err) { + throw new FS.ErrnoError(err) + } + } + // do truncation if necessary + if (flags & 512) { + FS.truncate(node, 0) + } + // we've already handled these, don't pass down to the underlying vfs + flags &= ~(128 | 512) + + // register the stream with the filesystem + var stream = FS.createStream( + { + node: node, + path: FS.getPath(node), // we want the absolute path to the node + flags: flags, + seekable: true, + position: 0, + stream_ops: node.stream_ops, + // used by the file family libc calls (fopen, fwrite, ferror, etc.) + ungotten: [], + error: false + }, + fd_start, + fd_end + ) + // call the new stream's open function + if (stream.stream_ops.open) { + stream.stream_ops.open(stream) + } + if (Module["logReadFiles"] && !(flags & 1)) { + if (!FS.readFiles) FS.readFiles = {} + if (!(path in FS.readFiles)) { + FS.readFiles[path] = 1 + Module["printErr"]("read file: " + path) + } + } + try { + if (FS.trackingDelegate["onOpenFile"]) { + var trackingFlags = 0 + if ((flags & 2097155) !== 1) { + trackingFlags |= FS.tracking.openFlags.READ + } + if ((flags & 2097155) !== 0) { + trackingFlags |= FS.tracking.openFlags.WRITE + } + FS.trackingDelegate["onOpenFile"](path, trackingFlags) + } + } catch (e) { + console.log( + "FS.trackingDelegate['onOpenFile']('" + + path + + "', flags) threw an exception: " + + e.message + ) + } + return stream + }, + close: function(stream) { + if (stream.getdents) stream.getdents = null // free readdir state + try { + if (stream.stream_ops.close) { + stream.stream_ops.close(stream) + } + } catch (e) { + throw e + } finally { + FS.closeStream(stream.fd) + } + }, + llseek: function(stream, offset, whence) { + if (!stream.seekable || !stream.stream_ops.llseek) { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE) + } + stream.position = stream.stream_ops.llseek( + stream, + offset, + whence + ) + stream.ungotten = [] + return stream.position + }, + read: function(stream, buffer, offset, length, position) { + if (length < 0 || position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + if ((stream.flags & 2097155) === 1) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF) + } + if (FS.isDir(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EISDIR) + } + if (!stream.stream_ops.read) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + var seeking = true + if (typeof position === "undefined") { + position = stream.position + seeking = false + } else if (!stream.seekable) { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE) + } + var bytesRead = stream.stream_ops.read( + stream, + buffer, + offset, + length, + position + ) + if (!seeking) stream.position += bytesRead + return bytesRead + }, + write: function( + stream, + buffer, + offset, + length, + position, + canOwn + ) { + if (length < 0 || position < 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF) + } + if (FS.isDir(stream.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.EISDIR) + } + if (!stream.stream_ops.write) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + if (stream.flags & 1024) { + // seek to the end before writing in append mode + FS.llseek(stream, 0, 2) + } + var seeking = true + if (typeof position === "undefined") { + position = stream.position + seeking = false + } else if (!stream.seekable) { + throw new FS.ErrnoError(ERRNO_CODES.ESPIPE) + } + var bytesWritten = stream.stream_ops.write( + stream, + buffer, + offset, + length, + position, + canOwn + ) + if (!seeking) stream.position += bytesWritten + try { + if (stream.path && FS.trackingDelegate["onWriteToFile"]) + FS.trackingDelegate["onWriteToFile"](stream.path) + } catch (e) { + console.log( + "FS.trackingDelegate['onWriteToFile']('" + + path + + "') threw an exception: " + + e.message + ) + } + return bytesWritten + }, + allocate: function(stream, offset, length) { + if (offset < 0 || length <= 0) { + throw new FS.ErrnoError(ERRNO_CODES.EINVAL) + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EBADF) + } + if (!FS.isFile(stream.node.mode) && !FS.isDir(node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV) + } + if (!stream.stream_ops.allocate) { + throw new FS.ErrnoError(ERRNO_CODES.EOPNOTSUPP) + } + stream.stream_ops.allocate(stream, offset, length) + }, + mmap: function( + stream, + buffer, + offset, + length, + position, + prot, + flags + ) { + // TODO if PROT is PROT_WRITE, make sure we have write access + if ((stream.flags & 2097155) === 1) { + throw new FS.ErrnoError(ERRNO_CODES.EACCES) + } + if (!stream.stream_ops.mmap) { + throw new FS.ErrnoError(ERRNO_CODES.ENODEV) + } + return stream.stream_ops.mmap( + stream, + buffer, + offset, + length, + position, + prot, + flags + ) + }, + msync: function(stream, buffer, offset, length, mmapFlags) { + if (!stream || !stream.stream_ops.msync) { + return 0 + } + return stream.stream_ops.msync( + stream, + buffer, + offset, + length, + mmapFlags + ) + }, + munmap: function(stream) { + return 0 + }, + ioctl: function(stream, cmd, arg) { + if (!stream.stream_ops.ioctl) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTTY) + } + return stream.stream_ops.ioctl(stream, cmd, arg) + }, + readFile: function(path, opts) { + opts = opts || {} + opts.flags = opts.flags || "r" + opts.encoding = opts.encoding || "binary" + if (opts.encoding !== "utf8" && opts.encoding !== "binary") { + throw new Error( + 'Invalid encoding type "' + opts.encoding + '"' + ) + } + var ret + var stream = FS.open(path, opts.flags) + var stat = FS.stat(path) + var length = stat.size + var buf = new Uint8Array(length) + FS.read(stream, buf, 0, length, 0) + if (opts.encoding === "utf8") { + ret = UTF8ArrayToString(buf, 0) + } else if (opts.encoding === "binary") { + ret = buf + } + FS.close(stream) + return ret + }, + writeFile: function(path, data, opts) { + opts = opts || {} + opts.flags = opts.flags || "w" + opts.encoding = opts.encoding || "utf8" + if (opts.encoding !== "utf8" && opts.encoding !== "binary") { + throw new Error( + 'Invalid encoding type "' + opts.encoding + '"' + ) + } + var stream = FS.open(path, opts.flags, opts.mode) + if (opts.encoding === "utf8") { + var buf = new Uint8Array(lengthBytesUTF8(data) + 1) + var actualNumBytes = stringToUTF8Array( + data, + buf, + 0, + buf.length + ) + FS.write(stream, buf, 0, actualNumBytes, 0, opts.canOwn) + } else if (opts.encoding === "binary") { + FS.write(stream, data, 0, data.length, 0, opts.canOwn) + } + FS.close(stream) + }, + cwd: function() { + return FS.currentPath + }, + chdir: function(path) { + var lookup = FS.lookupPath(path, { follow: true }) + if (!FS.isDir(lookup.node.mode)) { + throw new FS.ErrnoError(ERRNO_CODES.ENOTDIR) + } + var err = FS.nodePermissions(lookup.node, "x") + if (err) { + throw new FS.ErrnoError(err) + } + FS.currentPath = lookup.path + }, + createDefaultDirectories: function() { + FS.mkdir("/tmp") + FS.mkdir("/home") + FS.mkdir("/home/web_user") + }, + createDefaultDevices: function() { + // create /dev + FS.mkdir("/dev") + // setup /dev/null + FS.registerDevice(FS.makedev(1, 3), { + read: function() { + return 0 + }, + write: function(stream, buffer, offset, length, pos) { + return length + } + }) + FS.mkdev("/dev/null", FS.makedev(1, 3)) + // setup /dev/tty and /dev/tty1 + // stderr needs to print output using Module['printErr'] + // so we register a second tty just for it. + TTY.register(FS.makedev(5, 0), TTY.default_tty_ops) + TTY.register(FS.makedev(6, 0), TTY.default_tty1_ops) + FS.mkdev("/dev/tty", FS.makedev(5, 0)) + FS.mkdev("/dev/tty1", FS.makedev(6, 0)) + // setup /dev/[u]random + var random_device + if (typeof crypto !== "undefined") { + // for modern web browsers + var randomBuffer = new Uint8Array(1) + random_device = function() { + crypto.getRandomValues(randomBuffer) + return randomBuffer[0] + } + } else if (ENVIRONMENT_IS_NODE) { + // for nodejs + random_device = function() { + return require("crypto").randomBytes(1)[0] + } + } else { + // default for ES5 platforms + random_device = function() { + return (Math.random() * 256) | 0 + } + } + FS.createDevice("/dev", "random", random_device) + FS.createDevice("/dev", "urandom", random_device) + // we're not going to emulate the actual shm device, + // just create the tmp dirs that reside in it commonly + FS.mkdir("/dev/shm") + FS.mkdir("/dev/shm/tmp") + }, + createSpecialDirectories: function() { + // create /proc/self/fd which allows /proc/self/fd/6 => readlink gives the name of the stream for fd 6 (see test_unistd_ttyname) + FS.mkdir("/proc") + FS.mkdir("/proc/self") + FS.mkdir("/proc/self/fd") + FS.mount( + { + mount: function() { + var node = FS.createNode( + "/proc/self", + "fd", + 16384 | 0777, + 73 + ) + node.node_ops = { + lookup: function(parent, name) { + var fd = +name + var stream = FS.getStream(fd) + if (!stream) + throw new FS.ErrnoError(ERRNO_CODES.EBADF) + var ret = { + parent: null, + mount: { mountpoint: "fake" }, + node_ops: { + readlink: function() { + return stream.path + } + } + } + ret.parent = ret // make it look like a simple root node + return ret + } + } + return node + } + }, + {}, + "/proc/self/fd" + ) + }, + createStandardStreams: function() { + // TODO deprecate the old functionality of a single + // input / output callback and that utilizes FS.createDevice + // and instead require a unique set of stream ops + + // by default, we symlink the standard streams to the + // default tty devices. however, if the standard streams + // have been overwritten we create a unique device for + // them instead. + if (Module["stdin"]) { + FS.createDevice("/dev", "stdin", Module["stdin"]) + } else { + FS.symlink("/dev/tty", "/dev/stdin") + } + if (Module["stdout"]) { + FS.createDevice("/dev", "stdout", null, Module["stdout"]) + } else { + FS.symlink("/dev/tty", "/dev/stdout") + } + if (Module["stderr"]) { + FS.createDevice("/dev", "stderr", null, Module["stderr"]) + } else { + FS.symlink("/dev/tty1", "/dev/stderr") + } + + // open default streams for the stdin, stdout and stderr devices + var stdin = FS.open("/dev/stdin", "r") + assert( + stdin.fd === 0, + "invalid handle for stdin (" + stdin.fd + ")" + ) + + var stdout = FS.open("/dev/stdout", "w") + assert( + stdout.fd === 1, + "invalid handle for stdout (" + stdout.fd + ")" + ) + + var stderr = FS.open("/dev/stderr", "w") + assert( + stderr.fd === 2, + "invalid handle for stderr (" + stderr.fd + ")" + ) + }, + ensureErrnoError: function() { + if (FS.ErrnoError) return + FS.ErrnoError = function ErrnoError(errno, node) { + //Module.printErr(stackTrace()); // useful for debugging + this.node = node + this.setErrno = function(errno) { + this.errno = errno + for (var key in ERRNO_CODES) { + if (ERRNO_CODES[key] === errno) { + this.code = key + break + } + } + } + this.setErrno(errno) + this.message = ERRNO_MESSAGES[errno] + } + FS.ErrnoError.prototype = new Error() + FS.ErrnoError.prototype.constructor = FS.ErrnoError + // Some errors may happen quite a bit, to avoid overhead we reuse them (and suffer a lack of stack info) + ;[ERRNO_CODES.ENOENT].forEach(function(code) { + FS.genericErrors[code] = new FS.ErrnoError(code) + FS.genericErrors[code].stack = "" + }) + }, + staticInit: function() { + FS.ensureErrnoError() + + FS.nameTable = new Array(4096) + + FS.mount(MEMFS, {}, "/") + + FS.createDefaultDirectories() + FS.createDefaultDevices() + FS.createSpecialDirectories() + + FS.filesystems = { + MEMFS: MEMFS, + IDBFS: IDBFS, + NODEFS: NODEFS, + WORKERFS: WORKERFS + } + }, + init: function(input, output, error) { + assert( + !FS.init.initialized, + "FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)" + ) + FS.init.initialized = true + + FS.ensureErrnoError() + + // Allow Module.stdin etc. to provide defaults, if none explicitly passed to us here + Module["stdin"] = input || Module["stdin"] + Module["stdout"] = output || Module["stdout"] + Module["stderr"] = error || Module["stderr"] + + FS.createStandardStreams() + }, + quit: function() { + FS.init.initialized = false + // force-flush all streams, so we get musl std streams printed out + var fflush = Module["_fflush"] + if (fflush) fflush(0) + // close all of our streams + for (var i = 0; i < FS.streams.length; i++) { + var stream = FS.streams[i] + if (!stream) { + continue + } + FS.close(stream) + } + }, + getMode: function(canRead, canWrite) { + var mode = 0 + if (canRead) mode |= 292 | 73 + if (canWrite) mode |= 146 + return mode + }, + joinPath: function(parts, forceRelative) { + var path = PATH.join.apply(null, parts) + if (forceRelative && path[0] == "/") path = path.substr(1) + return path + }, + absolutePath: function(relative, base) { + return PATH.resolve(base, relative) + }, + standardizePath: function(path) { + return PATH.normalize(path) + }, + findObject: function(path, dontResolveLastLink) { + var ret = FS.analyzePath(path, dontResolveLastLink) + if (ret.exists) { + return ret.object + } else { + ___setErrNo(ret.error) + return null + } + }, + analyzePath: function(path, dontResolveLastLink) { + // operate from within the context of the symlink's target + try { + var lookup = FS.lookupPath(path, { + follow: !dontResolveLastLink + }) + path = lookup.path + } catch (e) {} + var ret = { + isRoot: false, + exists: false, + error: 0, + name: null, + path: null, + object: null, + parentExists: false, + parentPath: null, + parentObject: null + } + try { + var lookup = FS.lookupPath(path, { parent: true }) + ret.parentExists = true + ret.parentPath = lookup.path + ret.parentObject = lookup.node + ret.name = PATH.basename(path) + lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }) + ret.exists = true + ret.path = lookup.path + ret.object = lookup.node + ret.name = lookup.node.name + ret.isRoot = lookup.path === "/" + } catch (e) { + ret.error = e.errno + } + return ret + }, + createFolder: function(parent, name, canRead, canWrite) { + var path = PATH.join2( + typeof parent === "string" ? parent : FS.getPath(parent), + name + ) + var mode = FS.getMode(canRead, canWrite) + return FS.mkdir(path, mode) + }, + createPath: function(parent, path, canRead, canWrite) { + parent = + typeof parent === "string" ? parent : FS.getPath(parent) + var parts = path.split("/").reverse() + while (parts.length) { + var part = parts.pop() + if (!part) continue + var current = PATH.join2(parent, part) + try { + FS.mkdir(current) + } catch (e) { + // ignore EEXIST + } + parent = current + } + return current + }, + createFile: function( + parent, + name, + properties, + canRead, + canWrite + ) { + var path = PATH.join2( + typeof parent === "string" ? parent : FS.getPath(parent), + name + ) + var mode = FS.getMode(canRead, canWrite) + return FS.create(path, mode) + }, + createDataFile: function( + parent, + name, + data, + canRead, + canWrite, + canOwn + ) { + var path = name + ? PATH.join2( + typeof parent === "string" ? parent : FS.getPath(parent), + name + ) + : parent + var mode = FS.getMode(canRead, canWrite) + var node = FS.create(path, mode) + if (data) { + if (typeof data === "string") { + var arr = new Array(data.length) + for (var i = 0, len = data.length; i < len; ++i) + arr[i] = data.charCodeAt(i) + data = arr + } + // make sure we can write to the file + FS.chmod(node, mode | 146) + var stream = FS.open(node, "w") + FS.write(stream, data, 0, data.length, 0, canOwn) + FS.close(stream) + FS.chmod(node, mode) + } + return node + }, + createDevice: function(parent, name, input, output) { + var path = PATH.join2( + typeof parent === "string" ? parent : FS.getPath(parent), + name + ) + var mode = FS.getMode(!!input, !!output) + if (!FS.createDevice.major) FS.createDevice.major = 64 + var dev = FS.makedev(FS.createDevice.major++, 0) + // Create a fake device that a set of stream ops to emulate + // the old behavior. + FS.registerDevice(dev, { + open: function(stream) { + stream.seekable = false + }, + close: function(stream) { + // flush any pending line data + if (output && output.buffer && output.buffer.length) { + output(10) + } + }, + read: function( + stream, + buffer, + offset, + length, + pos /* ignored */ + ) { + var bytesRead = 0 + for (var i = 0; i < length; i++) { + var result + try { + result = input() + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO) + } + if (result === undefined && bytesRead === 0) { + throw new FS.ErrnoError(ERRNO_CODES.EAGAIN) + } + if (result === null || result === undefined) break + bytesRead++ + buffer[offset + i] = result + } + if (bytesRead) { + stream.node.timestamp = Date.now() + } + return bytesRead + }, + write: function(stream, buffer, offset, length, pos) { + for (var i = 0; i < length; i++) { + try { + output(buffer[offset + i]) + } catch (e) { + throw new FS.ErrnoError(ERRNO_CODES.EIO) + } + } + if (length) { + stream.node.timestamp = Date.now() + } + return i + } + }) + return FS.mkdev(path, mode, dev) + }, + createLink: function(parent, name, target, canRead, canWrite) { + var path = PATH.join2( + typeof parent === "string" ? parent : FS.getPath(parent), + name + ) + return FS.symlink(target, path) + }, + forceLoadFile: function(obj) { + if (obj.isDevice || obj.isFolder || obj.link || obj.contents) + return true + var success = true + if (typeof XMLHttpRequest !== "undefined") { + throw new Error( + "Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread." + ) + } else if (Module["read"]) { + // Command-line. + try { + // WARNING: Can't read binary files in V8's d8 or tracemonkey's js, as + // read() will try to parse UTF8. + obj.contents = intArrayFromString( + Module["read"](obj.url), + true + ) + obj.usedBytes = obj.contents.length + } catch (e) { + success = false + } + } else { + throw new Error( + "Cannot load without read() or XMLHttpRequest." + ) + } + if (!success) ___setErrNo(ERRNO_CODES.EIO) + return success + }, + createLazyFile: function(parent, name, url, canRead, canWrite) { + // Lazy chunked Uint8Array (implements get and length from Uint8Array). Actual getting is abstracted away for eventual reuse. + function LazyUint8Array() { + this.lengthKnown = false + this.chunks = [] // Loaded chunks. Index is the chunk number + } + LazyUint8Array.prototype.get = function LazyUint8Array_get( + idx + ) { + if (idx > this.length - 1 || idx < 0) { + return undefined + } + var chunkOffset = idx % this.chunkSize + var chunkNum = (idx / this.chunkSize) | 0 + return this.getter(chunkNum)[chunkOffset] + } + LazyUint8Array.prototype.setDataGetter = function LazyUint8Array_setDataGetter( + getter + ) { + this.getter = getter + } + LazyUint8Array.prototype.cacheLength = function LazyUint8Array_cacheLength() { + // Find length + var xhr = new XMLHttpRequest() + xhr.open("HEAD", url, false) + xhr.send(null) + if ( + !( + (xhr.status >= 200 && xhr.status < 300) || + xhr.status === 304 + ) + ) + throw new Error( + "Couldn't load " + url + ". Status: " + xhr.status + ) + var datalength = Number( + xhr.getResponseHeader("Content-length") + ) + var header + var hasByteServing = + (header = xhr.getResponseHeader("Accept-Ranges")) && + header === "bytes" + var chunkSize = 1024 * 1024 // Chunk size in bytes + + if (!hasByteServing) chunkSize = datalength + + // Function to get a range from the remote URL. + var doXHR = function(from, to) { + if (from > to) + throw new Error( + "invalid range (" + + from + + ", " + + to + + ") or no bytes requested!" + ) + if (to > datalength - 1) + throw new Error( + "only " + + datalength + + " bytes available! programmer error!" + ) + + // TODO: Use mozResponseArrayBuffer, responseStream, etc. if available. + var xhr = new XMLHttpRequest() + xhr.open("GET", url, false) + if (datalength !== chunkSize) + xhr.setRequestHeader("Range", "bytes=" + from + "-" + to) + + // Some hints to the browser that we want binary data. + if (typeof Uint8Array != "undefined") + xhr.responseType = "arraybuffer" + if (xhr.overrideMimeType) { + xhr.overrideMimeType("text/plain; charset=x-user-defined") + } + + xhr.send(null) + if ( + !( + (xhr.status >= 200 && xhr.status < 300) || + xhr.status === 304 + ) + ) + throw new Error( + "Couldn't load " + url + ". Status: " + xhr.status + ) + if (xhr.response !== undefined) { + return new Uint8Array(xhr.response || []) + } else { + return intArrayFromString(xhr.responseText || "", true) + } + } + var lazyArray = this + lazyArray.setDataGetter(function(chunkNum) { + var start = chunkNum * chunkSize + var end = (chunkNum + 1) * chunkSize - 1 // including this byte + end = Math.min(end, datalength - 1) // if datalength-1 is selected, this is the last block + if (typeof lazyArray.chunks[chunkNum] === "undefined") { + lazyArray.chunks[chunkNum] = doXHR(start, end) + } + if (typeof lazyArray.chunks[chunkNum] === "undefined") + throw new Error("doXHR failed!") + return lazyArray.chunks[chunkNum] + }) + + this._length = datalength + this._chunkSize = chunkSize + this.lengthKnown = true + } + if (typeof XMLHttpRequest !== "undefined") { + if (!ENVIRONMENT_IS_WORKER) + throw "Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc" + var lazyArray = new LazyUint8Array() + Object.defineProperty(lazyArray, "length", { + get: function() { + if (!this.lengthKnown) { + this.cacheLength() + } + return this._length + } + }) + Object.defineProperty(lazyArray, "chunkSize", { + get: function() { + if (!this.lengthKnown) { + this.cacheLength() + } + return this._chunkSize + } + }) + + var properties = { isDevice: false, contents: lazyArray } + } else { + var properties = { isDevice: false, url: url } + } + + var node = FS.createFile( + parent, + name, + properties, + canRead, + canWrite + ) + // This is a total hack, but I want to get this lazy file code out of the + // core of MEMFS. If we want to keep this lazy file concept I feel it should + // be its own thin LAZYFS proxying calls to MEMFS. + if (properties.contents) { + node.contents = properties.contents + } else if (properties.url) { + node.contents = null + node.url = properties.url + } + // Add a function that defers querying the file size until it is asked the first time. + Object.defineProperty(node, "usedBytes", { + get: function() { + return this.contents.length + } + }) + // override each stream op with one that tries to force load the lazy file first + var stream_ops = {} + var keys = Object.keys(node.stream_ops) + keys.forEach(function(key) { + var fn = node.stream_ops[key] + stream_ops[key] = function forceLoadLazyFile() { + if (!FS.forceLoadFile(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EIO) + } + return fn.apply(null, arguments) + } + }) + // use a custom read function + stream_ops.read = function stream_ops_read( + stream, + buffer, + offset, + length, + position + ) { + if (!FS.forceLoadFile(node)) { + throw new FS.ErrnoError(ERRNO_CODES.EIO) + } + var contents = stream.node.contents + if (position >= contents.length) return 0 + var size = Math.min(contents.length - position, length) + assert(size >= 0) + if (contents.slice) { + // normal array + for (var i = 0; i < size; i++) { + buffer[offset + i] = contents[position + i] + } + } else { + for (var i = 0; i < size; i++) { + // LazyUint8Array from sync binary XHR + buffer[offset + i] = contents.get(position + i) + } + } + return size + } + node.stream_ops = stream_ops + return node + }, + createPreloadedFile: function( + parent, + name, + url, + canRead, + canWrite, + onload, + onerror, + dontCreateFile, + canOwn, + preFinish + ) { + Browser.init() + // TODO we should allow people to just pass in a complete filename instead + // of parent and name being that we just join them anyways + var fullname = name + ? PATH.resolve(PATH.join2(parent, name)) + : parent + var dep = getUniqueRunDependency("cp " + fullname) // might have several active requests for the same fullname + function processData(byteArray) { + function finish(byteArray) { + if (preFinish) preFinish() + if (!dontCreateFile) { + FS.createDataFile( + parent, + name, + byteArray, + canRead, + canWrite, + canOwn + ) + } + if (onload) onload() + removeRunDependency(dep) + } + var handled = false + Module["preloadPlugins"].forEach(function(plugin) { + if (handled) return + if (plugin["canHandle"](fullname)) { + plugin["handle"](byteArray, fullname, finish, function() { + if (onerror) onerror() + removeRunDependency(dep) + }) + handled = true + } + }) + if (!handled) finish(byteArray) + } + addRunDependency(dep) + if (typeof url == "string") { + Browser.asyncLoad( + url, + function(byteArray) { + processData(byteArray) + }, + onerror + ) + } else { + processData(url) + } + }, + indexedDB: function() { + return ( + window.indexedDB || + window.mozIndexedDB || + window.webkitIndexedDB || + window.msIndexedDB + ) + }, + DB_NAME: function() { + return "EM_FS_" + window.location.pathname + }, + DB_VERSION: 20, + DB_STORE_NAME: "FILE_DATA", + saveFilesToDB: function(paths, onload, onerror) { + onload = onload || function() {} + onerror = onerror || function() {} + var indexedDB = FS.indexedDB() + try { + var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION) + } catch (e) { + return onerror(e) + } + openRequest.onupgradeneeded = function openRequest_onupgradeneeded() { + console.log("creating db") + var db = openRequest.result + db.createObjectStore(FS.DB_STORE_NAME) + } + openRequest.onsuccess = function openRequest_onsuccess() { + var db = openRequest.result + var transaction = db.transaction( + [FS.DB_STORE_NAME], + "readwrite" + ) + var files = transaction.objectStore(FS.DB_STORE_NAME) + var ok = 0, + fail = 0, + total = paths.length + function finish() { + if (fail == 0) onload() + else onerror() + } + paths.forEach(function(path) { + var putRequest = files.put( + FS.analyzePath(path).object.contents, + path + ) + putRequest.onsuccess = function putRequest_onsuccess() { + ok++ + if (ok + fail == total) finish() + } + putRequest.onerror = function putRequest_onerror() { + fail++ + if (ok + fail == total) finish() + } + }) + transaction.onerror = onerror + } + openRequest.onerror = onerror + }, + loadFilesFromDB: function(paths, onload, onerror) { + onload = onload || function() {} + onerror = onerror || function() {} + var indexedDB = FS.indexedDB() + try { + var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION) + } catch (e) { + return onerror(e) + } + openRequest.onupgradeneeded = onerror // no database to load from + openRequest.onsuccess = function openRequest_onsuccess() { + var db = openRequest.result + try { + var transaction = db.transaction( + [FS.DB_STORE_NAME], + "readonly" + ) + } catch (e) { + onerror(e) + return + } + var files = transaction.objectStore(FS.DB_STORE_NAME) + var ok = 0, + fail = 0, + total = paths.length + function finish() { + if (fail == 0) onload() + else onerror() + } + paths.forEach(function(path) { + var getRequest = files.get(path) + getRequest.onsuccess = function getRequest_onsuccess() { + if (FS.analyzePath(path).exists) { + FS.unlink(path) + } + FS.createDataFile( + PATH.dirname(path), + PATH.basename(path), + getRequest.result, + true, + true, + true + ) + ok++ + if (ok + fail == total) finish() + } + getRequest.onerror = function getRequest_onerror() { + fail++ + if (ok + fail == total) finish() + } + }) + transaction.onerror = onerror + } + openRequest.onerror = onerror + } + } + var SYSCALLS = { + DEFAULT_POLLMASK: 5, + mappings: {}, + umask: 511, + calculateAt: function(dirfd, path) { + if (path[0] !== "/") { + // relative path + var dir + if (dirfd === -100) { + dir = FS.cwd() + } else { + var dirstream = FS.getStream(dirfd) + if (!dirstream) throw new FS.ErrnoError(ERRNO_CODES.EBADF) + dir = dirstream.path + } + path = PATH.join2(dir, path) + } + return path + }, + doStat: function(func, path, buf) { + try { + var stat = func(path) + } catch (e) { + if ( + e && + e.node && + PATH.normalize(path) !== PATH.normalize(FS.getPath(e.node)) + ) { + // an error occurred while trying to look up the path; we should just report ENOTDIR + return -ERRNO_CODES.ENOTDIR + } + throw e + } + HEAP32[buf >> 2] = stat.dev + HEAP32[(buf + 4) >> 2] = 0 + HEAP32[(buf + 8) >> 2] = stat.ino + HEAP32[(buf + 12) >> 2] = stat.mode + HEAP32[(buf + 16) >> 2] = stat.nlink + HEAP32[(buf + 20) >> 2] = stat.uid + HEAP32[(buf + 24) >> 2] = stat.gid + HEAP32[(buf + 28) >> 2] = stat.rdev + HEAP32[(buf + 32) >> 2] = 0 + HEAP32[(buf + 36) >> 2] = stat.size + HEAP32[(buf + 40) >> 2] = 4096 + HEAP32[(buf + 44) >> 2] = stat.blocks + HEAP32[(buf + 48) >> 2] = (stat.atime.getTime() / 1000) | 0 + HEAP32[(buf + 52) >> 2] = 0 + HEAP32[(buf + 56) >> 2] = (stat.mtime.getTime() / 1000) | 0 + HEAP32[(buf + 60) >> 2] = 0 + HEAP32[(buf + 64) >> 2] = (stat.ctime.getTime() / 1000) | 0 + HEAP32[(buf + 68) >> 2] = 0 + HEAP32[(buf + 72) >> 2] = stat.ino + return 0 + }, + doMsync: function(addr, stream, len, flags) { + var buffer = new Uint8Array(HEAPU8.subarray(addr, addr + len)) + FS.msync(stream, buffer, 0, len, flags) + }, + doMkdir: function(path, mode) { + // remove a trailing slash, if one - /a/b/ has basename of '', but + // we want to create b in the context of this function + path = PATH.normalize(path) + if (path[path.length - 1] === "/") + path = path.substr(0, path.length - 1) + FS.mkdir(path, mode, 0) + return 0 + }, + doMknod: function(path, mode, dev) { + // we don't want this in the JS API as it uses mknod to create all nodes. + switch (mode & 61440) { + case 32768: + case 8192: + case 24576: + case 4096: + case 49152: + break + default: + return -ERRNO_CODES.EINVAL + } + FS.mknod(path, mode, dev) + return 0 + }, + doReadlink: function(path, buf, bufsize) { + if (bufsize <= 0) return -ERRNO_CODES.EINVAL + var ret = FS.readlink(path) + ret = ret.slice(0, Math.max(0, bufsize)) + writeStringToMemory(ret, buf, true) + return ret.length + }, + doAccess: function(path, amode) { + if (amode & ~7) { + // need a valid mode + return -ERRNO_CODES.EINVAL + } + var node + var lookup = FS.lookupPath(path, { follow: true }) + node = lookup.node + var perms = "" + if (amode & 4) perms += "r" + if (amode & 2) perms += "w" + if (amode & 1) perms += "x" + if ( + perms /* otherwise, they've just passed F_OK */ && + FS.nodePermissions(node, perms) + ) { + return -ERRNO_CODES.EACCES + } + return 0 + }, + doDup: function(path, flags, suggestFD) { + var suggest = FS.getStream(suggestFD) + if (suggest) FS.close(suggest) + return FS.open(path, flags, 0, suggestFD, suggestFD).fd + }, + doReadv: function(stream, iov, iovcnt, offset) { + var ret = 0 + for (var i = 0; i < iovcnt; i++) { + var ptr = HEAP32[(iov + i * 8) >> 2] + var len = HEAP32[(iov + (i * 8 + 4)) >> 2] + var curr = FS.read(stream, HEAP8, ptr, len, offset) + if (curr < 0) return -1 + ret += curr + if (curr < len) break // nothing more to read + } + return ret + }, + doWritev: function(stream, iov, iovcnt, offset) { + var ret = 0 + for (var i = 0; i < iovcnt; i++) { + var ptr = HEAP32[(iov + i * 8) >> 2] + var len = HEAP32[(iov + (i * 8 + 4)) >> 2] + var curr = FS.write(stream, HEAP8, ptr, len, offset) + if (curr < 0) return -1 + ret += curr + } + return ret + }, + varargs: 0, + get: function(varargs) { + SYSCALLS.varargs += 4 + var ret = HEAP32[(SYSCALLS.varargs - 4) >> 2] + return ret + }, + getStr: function() { + var ret = Pointer_stringify(SYSCALLS.get()) + return ret + }, + getStreamFromFD: function() { + var stream = FS.getStream(SYSCALLS.get()) + if (!stream) throw new FS.ErrnoError(ERRNO_CODES.EBADF) + return stream + }, + getSocketFromFD: function() { + var socket = SOCKFS.getSocket(SYSCALLS.get()) + if (!socket) throw new FS.ErrnoError(ERRNO_CODES.EBADF) + return socket + }, + getSocketAddress: function(allowNull) { + var addrp = SYSCALLS.get(), + addrlen = SYSCALLS.get() + if (allowNull && addrp === 0) return null + var info = __read_sockaddr(addrp, addrlen) + if (info.errno) throw new FS.ErrnoError(info.errno) + info.addr = DNS.lookup_addr(info.addr) || info.addr + return info + }, + get64: function() { + var low = SYSCALLS.get(), + high = SYSCALLS.get() + if (low >= 0) assert(high === 0) + else assert(high === -1) + return low + }, + getZero: function() { + assert(SYSCALLS.get() === 0) + } + } + function ___syscall6(which, varargs) { + SYSCALLS.varargs = varargs + try { + // close + var stream = SYSCALLS.getStreamFromFD() + FS.close(stream) + return 0 + } catch (e) { + if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) + abort(e) + return -e.errno + } + } + + function _sysconf(name) { + // long sysconf(int name); + // http://pubs.opengroup.org/onlinepubs/009695399/functions/sysconf.html + switch (name) { + case 30: + return PAGE_SIZE + case 85: + return totalMemory / PAGE_SIZE + case 132: + case 133: + case 12: + case 137: + case 138: + case 15: + case 235: + case 16: + case 17: + case 18: + case 19: + case 20: + case 149: + case 13: + case 10: + case 236: + case 153: + case 9: + case 21: + case 22: + case 159: + case 154: + case 14: + case 77: + case 78: + case 139: + case 80: + case 81: + case 82: + case 68: + case 67: + case 164: + case 11: + case 29: + case 47: + case 48: + case 95: + case 52: + case 51: + case 46: + return 200809 + case 79: + return 0 + case 27: + case 246: + case 127: + case 128: + case 23: + case 24: + case 160: + case 161: + case 181: + case 182: + case 242: + case 183: + case 184: + case 243: + case 244: + case 245: + case 165: + case 178: + case 179: + case 49: + case 50: + case 168: + case 169: + case 175: + case 170: + case 171: + case 172: + case 97: + case 76: + case 32: + case 173: + case 35: + return -1 + case 176: + case 177: + case 7: + case 155: + case 8: + case 157: + case 125: + case 126: + case 92: + case 93: + case 129: + case 130: + case 131: + case 94: + case 91: + return 1 + case 74: + case 60: + case 69: + case 70: + case 4: + return 1024 + case 31: + case 42: + case 72: + return 32 + case 87: + case 26: + case 33: + return 2147483647 + case 34: + case 1: + return 47839 + case 38: + case 36: + return 99 + case 43: + case 37: + return 2048 + case 0: + return 2097152 + case 3: + return 65536 + case 28: + return 32768 + case 44: + return 32767 + case 75: + return 16384 + case 39: + return 1000 + case 89: + return 700 + case 71: + return 256 + case 40: + return 255 + case 2: + return 100 + case 180: + return 64 + case 25: + return 20 + case 5: + return 16 + case 6: + return 6 + case 73: + return 4 + case 84: { + if (typeof navigator === "object") + return navigator["hardwareConcurrency"] || 1 + return 1 + } + } + ___setErrNo(ERRNO_CODES.EINVAL) + return -1 + } + + function _sbrk(bytes) { + // Implement a Linux-like 'memory area' for our 'process'. + // Changes the size of the memory area by |bytes|; returns the + // address of the previous top ('break') of the memory area + // We control the "dynamic" memory - DYNAMIC_BASE to DYNAMICTOP + var self = _sbrk + if (!self.called) { + DYNAMICTOP = alignMemoryPage(DYNAMICTOP) // make sure we start out aligned + self.called = true + assert(Runtime.dynamicAlloc) + self.alloc = Runtime.dynamicAlloc + Runtime.dynamicAlloc = function() { + abort("cannot dynamically allocate, sbrk now has control") + } + } + var ret = DYNAMICTOP + if (bytes != 0) { + var success = self.alloc(bytes) + if (!success) return -1 >>> 0 // sbrk failure code + } + return ret // Previous break location. + } + + function _emscripten_memcpy_big(dest, src, num) { + HEAPU8.set(HEAPU8.subarray(src, src + num), dest) + return dest + } + Module["_memcpy"] = _memcpy + + function _emscripten_set_main_loop_timing(mode, value) { + Browser.mainLoop.timingMode = mode + Browser.mainLoop.timingValue = value + + if (!Browser.mainLoop.func) { + return 1 // Return non-zero on failure, can't set timing mode when there is no main loop. + } + + if (mode == 0 /*EM_TIMING_SETTIMEOUT*/) { + Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_setTimeout() { + setTimeout(Browser.mainLoop.runner, value) // doing this each time means that on exception, we stop + } + Browser.mainLoop.method = "timeout" + } else if (mode == 1 /*EM_TIMING_RAF*/) { + Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_rAF() { + Browser.requestAnimationFrame(Browser.mainLoop.runner) + } + Browser.mainLoop.method = "rAF" + } else if (mode == 2 /*EM_TIMING_SETIMMEDIATE*/) { + if (!window["setImmediate"]) { + // Emulate setImmediate. (note: not a complete polyfill, we don't emulate clearImmediate() to keep code size to minimum, since not needed) + var setImmediates = [] + var emscriptenMainLoopMessageId = "__emcc" + function Browser_setImmediate_messageHandler(event) { + if ( + event.source === window && + event.data === emscriptenMainLoopMessageId + ) { + event.stopPropagation() + setImmediates.shift()() + } + } + window.addEventListener( + "message", + Browser_setImmediate_messageHandler, + true + ) + window[ + "setImmediate" + ] = function Browser_emulated_setImmediate(func) { + setImmediates.push(func) + window.postMessage(emscriptenMainLoopMessageId, "*") + } + } + Browser.mainLoop.scheduler = function Browser_mainLoop_scheduler_setImmediate() { + window["setImmediate"](Browser.mainLoop.runner) + } + Browser.mainLoop.method = "immediate" + } + return 0 + } + function _emscripten_set_main_loop( + func, + fps, + simulateInfiniteLoop, + arg, + noSetTiming + ) { + Module["noExitRuntime"] = true + + assert( + !Browser.mainLoop.func, + "emscripten_set_main_loop: there can only be one main loop function at once: call emscripten_cancel_main_loop to cancel the previous one before setting a new one with different parameters." + ) + + Browser.mainLoop.func = func + Browser.mainLoop.arg = arg + + var thisMainLoopId = Browser.mainLoop.currentlyRunningMainloop + + Browser.mainLoop.runner = function Browser_mainLoop_runner() { + if (ABORT) return + if (Browser.mainLoop.queue.length > 0) { + var start = Date.now() + var blocker = Browser.mainLoop.queue.shift() + blocker.func(blocker.arg) + if (Browser.mainLoop.remainingBlockers) { + var remaining = Browser.mainLoop.remainingBlockers + var next = + remaining % 1 == 0 ? remaining - 1 : Math.floor(remaining) + if (blocker.counted) { + Browser.mainLoop.remainingBlockers = next + } else { + // not counted, but move the progress along a tiny bit + next = next + 0.5 // do not steal all the next one's progress + Browser.mainLoop.remainingBlockers = + (8 * remaining + next) / 9 + } + } + console.log( + 'main loop blocker "' + + blocker.name + + '" took ' + + (Date.now() - start) + + " ms" + ) //, left: ' + Browser.mainLoop.remainingBlockers); + Browser.mainLoop.updateStatus() + setTimeout(Browser.mainLoop.runner, 0) + return + } + + // catch pauses from non-main loop sources + if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) + return + + // Implement very basic swap interval control + Browser.mainLoop.currentFrameNumber = + (Browser.mainLoop.currentFrameNumber + 1) | 0 + if ( + Browser.mainLoop.timingMode == 1 /*EM_TIMING_RAF*/ && + Browser.mainLoop.timingValue > 1 && + Browser.mainLoop.currentFrameNumber % + Browser.mainLoop.timingValue != + 0 + ) { + // Not the scheduled time to render this frame - skip. + Browser.mainLoop.scheduler() + return + } + + // Signal GL rendering layer that processing of a new frame is about to start. This helps it optimize + // VBO double-buffering and reduce GPU stalls. + + if (Browser.mainLoop.method === "timeout" && Module.ctx) { + Module.printErr( + "Looks like you are rendering without using requestAnimationFrame for the main loop. You should use 0 for the frame rate in emscripten_set_main_loop in order to use requestAnimationFrame, as that can greatly improve your frame rates!" + ) + Browser.mainLoop.method = "" // just warn once per call to set main loop + } + + Browser.mainLoop.runIter(function() { + if (typeof arg !== "undefined") { + Runtime.dynCall("vi", func, [arg]) + } else { + Runtime.dynCall("v", func) + } + }) + + // catch pauses from the main loop itself + if (thisMainLoopId < Browser.mainLoop.currentlyRunningMainloop) + return + + // Queue new audio data. This is important to be right after the main loop invocation, so that we will immediately be able + // to queue the newest produced audio samples. + // TODO: Consider adding pre- and post- rAF callbacks so that GL.newRenderingFrameStarted() and SDL.audio.queueNewAudioData() + // do not need to be hardcoded into this function, but can be more generic. + if ( + typeof SDL === "object" && + SDL.audio && + SDL.audio.queueNewAudioData + ) + SDL.audio.queueNewAudioData() + + Browser.mainLoop.scheduler() + } + + if (!noSetTiming) { + if (fps && fps > 0) + _emscripten_set_main_loop_timing( + 0 /*EM_TIMING_SETTIMEOUT*/, + 1000.0 / fps + ) + else _emscripten_set_main_loop_timing(1 /*EM_TIMING_RAF*/, 1) // Do rAF by rendering each frame (no decimating) + + Browser.mainLoop.scheduler() + } + + if (simulateInfiniteLoop) { + throw "SimulateInfiniteLoop" + } + } + var Browser = { + mainLoop: { + scheduler: null, + method: "", + currentlyRunningMainloop: 0, + func: null, + arg: 0, + timingMode: 0, + timingValue: 0, + currentFrameNumber: 0, + queue: [], + pause: function() { + Browser.mainLoop.scheduler = null + Browser.mainLoop.currentlyRunningMainloop++ // Incrementing this signals the previous main loop that it's now become old, and it must return. + }, + resume: function() { + Browser.mainLoop.currentlyRunningMainloop++ + var timingMode = Browser.mainLoop.timingMode + var timingValue = Browser.mainLoop.timingValue + var func = Browser.mainLoop.func + Browser.mainLoop.func = null + _emscripten_set_main_loop( + func, + 0, + false, + Browser.mainLoop.arg, + true /* do not set timing and call scheduler, we will do it on the next lines */ + ) + _emscripten_set_main_loop_timing(timingMode, timingValue) + Browser.mainLoop.scheduler() + }, + updateStatus: function() { + if (Module["setStatus"]) { + var message = Module["statusMessage"] || "Please wait..." + var remaining = Browser.mainLoop.remainingBlockers + var expected = Browser.mainLoop.expectedBlockers + if (remaining) { + if (remaining < expected) { + Module["setStatus"]( + message + + " (" + + (expected - remaining) + + "/" + + expected + + ")" + ) + } else { + Module["setStatus"](message) + } + } else { + Module["setStatus"]("") + } + } + }, + runIter: function(func) { + if (ABORT) return + if (Module["preMainLoop"]) { + var preRet = Module["preMainLoop"]() + if (preRet === false) { + return // |return false| skips a frame + } + } + try { + func() + } catch (e) { + if (e instanceof ExitStatus) { + return + } else { + if (e && typeof e === "object" && e.stack) + Module.printErr("exception thrown: " + [e, e.stack]) + throw e + } + } + if (Module["postMainLoop"]) Module["postMainLoop"]() + } + }, + isFullScreen: false, + pointerLock: false, + moduleContextCreatedCallbacks: [], + workers: [], + init: function() { + if (!Module["preloadPlugins"]) Module["preloadPlugins"] = [] // needs to exist even in workers + + if (Browser.initted) return + Browser.initted = true + + try { + new Blob() + Browser.hasBlobConstructor = true + } catch (e) { + Browser.hasBlobConstructor = false + console.log( + "warning: no blob constructor, cannot create blobs with mimetypes" + ) + } + Browser.BlobBuilder = + typeof MozBlobBuilder != "undefined" + ? MozBlobBuilder + : typeof WebKitBlobBuilder != "undefined" + ? WebKitBlobBuilder + : !Browser.hasBlobConstructor + ? console.log("warning: no BlobBuilder") + : null + Browser.URLObject = + typeof window != "undefined" + ? window.URL + ? window.URL + : window.webkitURL + : undefined + if ( + !Module.noImageDecoding && + typeof Browser.URLObject === "undefined" + ) { + console.log( + "warning: Browser does not support creating object URLs. Built-in browser image decoding will not be available." + ) + Module.noImageDecoding = true + } + + // Support for plugins that can process preloaded files. You can add more of these to + // your app by creating and appending to Module.preloadPlugins. + // + // Each plugin is asked if it can handle a file based on the file's name. If it can, + // it is given the file's raw data. When it is done, it calls a callback with the file's + // (possibly modified) data. For example, a plugin might decompress a file, or it + // might create some side data structure for use later (like an Image element, etc.). + + var imagePlugin = {} + imagePlugin["canHandle"] = function imagePlugin_canHandle( + name + ) { + return ( + !Module.noImageDecoding && + /\.(jpg|jpeg|png|bmp)$/i.test(name) + ) + } + imagePlugin["handle"] = function imagePlugin_handle( + byteArray, + name, + onload, + onerror + ) { + var b = null + if (Browser.hasBlobConstructor) { + try { + b = new Blob([byteArray], { + type: Browser.getMimetype(name) + }) + if (b.size !== byteArray.length) { + // Safari bug #118630 + // Safari's Blob can only take an ArrayBuffer + b = new Blob([new Uint8Array(byteArray).buffer], { + type: Browser.getMimetype(name) + }) + } + } catch (e) { + Runtime.warnOnce( + "Blob constructor present but fails: " + + e + + "; falling back to blob builder" + ) + } + } + if (!b) { + var bb = new Browser.BlobBuilder() + bb.append(new Uint8Array(byteArray).buffer) // we need to pass a buffer, and must copy the array to get the right data range + b = bb.getBlob() + } + var url = Browser.URLObject.createObjectURL(b) + var img = new Image() + img.onload = function img_onload() { + assert( + img.complete, + "Image " + name + " could not be decoded" + ) + var canvas = document.createElement("canvas") + canvas.width = img.width + canvas.height = img.height + var ctx = canvas.getContext("2d") + ctx.drawImage(img, 0, 0) + Module["preloadedImages"][name] = canvas + Browser.URLObject.revokeObjectURL(url) + if (onload) onload(byteArray) + } + img.onerror = function img_onerror(event) { + console.log("Image " + url + " could not be decoded") + if (onerror) onerror() + } + img.src = url + } + Module["preloadPlugins"].push(imagePlugin) + + var audioPlugin = {} + audioPlugin["canHandle"] = function audioPlugin_canHandle( + name + ) { + return ( + !Module.noAudioDecoding && + name.substr(-4) in { ".ogg": 1, ".wav": 1, ".mp3": 1 } + ) + } + audioPlugin["handle"] = function audioPlugin_handle( + byteArray, + name, + onload, + onerror + ) { + var done = false + function finish(audio) { + if (done) return + done = true + Module["preloadedAudios"][name] = audio + if (onload) onload(byteArray) + } + function fail() { + if (done) return + done = true + Module["preloadedAudios"][name] = new Audio() // empty shim + if (onerror) onerror() + } + if (Browser.hasBlobConstructor) { + try { + var b = new Blob([byteArray], { + type: Browser.getMimetype(name) + }) + } catch (e) { + return fail() + } + var url = Browser.URLObject.createObjectURL(b) // XXX we never revoke this! + var audio = new Audio() + audio.addEventListener( + "canplaythrough", + function() { + finish(audio) + }, + false + ) // use addEventListener due to chromium bug 124926 + audio.onerror = function audio_onerror(event) { + if (done) return + console.log( + "warning: browser could not fully decode audio " + + name + + ", trying slower base64 approach" + ) + function encode64(data) { + var BASE = + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" + var PAD = "=" + var ret = "" + var leftchar = 0 + var leftbits = 0 + for (var i = 0; i < data.length; i++) { + leftchar = (leftchar << 8) | data[i] + leftbits += 8 + while (leftbits >= 6) { + var curr = (leftchar >> (leftbits - 6)) & 0x3f + leftbits -= 6 + ret += BASE[curr] + } + } + if (leftbits == 2) { + ret += BASE[(leftchar & 3) << 4] + ret += PAD + PAD + } else if (leftbits == 4) { + ret += BASE[(leftchar & 0xf) << 2] + ret += PAD + } + return ret + } + audio.src = + "data:audio/x-" + + name.substr(-3) + + ";base64," + + encode64(byteArray) + finish(audio) // we don't wait for confirmation this worked - but it's worth trying + } + audio.src = url + // workaround for chrome bug 124926 - we do not always get oncanplaythrough or onerror + Browser.safeSetTimeout(function() { + finish(audio) // try to use it even though it is not necessarily ready to play + }, 10000) + } else { + return fail() + } + } + Module["preloadPlugins"].push(audioPlugin) + + // Canvas event setup + + var canvas = Module["canvas"] + function pointerLockChange() { + Browser.pointerLock = + document["pointerLockElement"] === canvas || + document["mozPointerLockElement"] === canvas || + document["webkitPointerLockElement"] === canvas || + document["msPointerLockElement"] === canvas + } + if (canvas) { + // forced aspect ratio can be enabled by defining 'forcedAspectRatio' on Module + // Module['forcedAspectRatio'] = 4 / 3; + + canvas.requestPointerLock = + canvas["requestPointerLock"] || + canvas["mozRequestPointerLock"] || + canvas["webkitRequestPointerLock"] || + canvas["msRequestPointerLock"] || + function() {} + canvas.exitPointerLock = + document["exitPointerLock"] || + document["mozExitPointerLock"] || + document["webkitExitPointerLock"] || + document["msExitPointerLock"] || + function() {} // no-op if function does not exist + canvas.exitPointerLock = canvas.exitPointerLock.bind(document) + + document.addEventListener( + "pointerlockchange", + pointerLockChange, + false + ) + document.addEventListener( + "mozpointerlockchange", + pointerLockChange, + false + ) + document.addEventListener( + "webkitpointerlockchange", + pointerLockChange, + false + ) + document.addEventListener( + "mspointerlockchange", + pointerLockChange, + false + ) + + if (Module["elementPointerLock"]) { + canvas.addEventListener( + "click", + function(ev) { + if (!Browser.pointerLock && canvas.requestPointerLock) { + canvas.requestPointerLock() + ev.preventDefault() + } + }, + false + ) + } + } + }, + createContext: function( + canvas, + useWebGL, + setInModule, + webGLContextAttributes + ) { + if (useWebGL && Module.ctx && canvas == Module.canvas) + return Module.ctx // no need to recreate GL context if it's already been created for this canvas. + + var ctx + var contextHandle + if (useWebGL) { + // For GLES2/desktop GL compatibility, adjust a few defaults to be different to WebGL defaults, so that they align better with the desktop defaults. + var contextAttributes = { + antialias: false, + alpha: false + } + + if (webGLContextAttributes) { + for (var attribute in webGLContextAttributes) { + contextAttributes[attribute] = + webGLContextAttributes[attribute] + } + } + + contextHandle = GL.createContext(canvas, contextAttributes) + if (contextHandle) { + ctx = GL.getContext(contextHandle).GLctx + } + // Set the background of the WebGL canvas to black + canvas.style.backgroundColor = "black" + } else { + ctx = canvas.getContext("2d") + } + + if (!ctx) return null + + if (setInModule) { + if (!useWebGL) + assert( + typeof GLctx === "undefined", + "cannot set in module if GLctx is used, but we are a non-GL context that would replace it" + ) + + Module.ctx = ctx + if (useWebGL) GL.makeContextCurrent(contextHandle) + Module.useWebGL = useWebGL + Browser.moduleContextCreatedCallbacks.forEach(function( + callback + ) { + callback() + }) + Browser.init() + } + return ctx + }, + destroyContext: function(canvas, useWebGL, setInModule) {}, + fullScreenHandlersInstalled: false, + lockPointer: undefined, + resizeCanvas: undefined, + requestFullScreen: function(lockPointer, resizeCanvas, vrDevice) { + Browser.lockPointer = lockPointer + Browser.resizeCanvas = resizeCanvas + Browser.vrDevice = vrDevice + if (typeof Browser.lockPointer === "undefined") + Browser.lockPointer = true + if (typeof Browser.resizeCanvas === "undefined") + Browser.resizeCanvas = false + if (typeof Browser.vrDevice === "undefined") + Browser.vrDevice = null + + var canvas = Module["canvas"] + function fullScreenChange() { + Browser.isFullScreen = false + var canvasContainer = canvas.parentNode + if ( + (document["webkitFullScreenElement"] || + document["webkitFullscreenElement"] || + document["mozFullScreenElement"] || + document["mozFullscreenElement"] || + document["fullScreenElement"] || + document["fullscreenElement"] || + document["msFullScreenElement"] || + document["msFullscreenElement"] || + document["webkitCurrentFullScreenElement"]) === + canvasContainer + ) { + canvas.cancelFullScreen = + document["cancelFullScreen"] || + document["mozCancelFullScreen"] || + document["webkitCancelFullScreen"] || + document["msExitFullscreen"] || + document["exitFullscreen"] || + function() {} + canvas.cancelFullScreen = canvas.cancelFullScreen.bind( + document + ) + if (Browser.lockPointer) canvas.requestPointerLock() + Browser.isFullScreen = true + if (Browser.resizeCanvas) Browser.setFullScreenCanvasSize() + } else { + // remove the full screen specific parent of the canvas again to restore the HTML structure from before going full screen + canvasContainer.parentNode.insertBefore( + canvas, + canvasContainer + ) + canvasContainer.parentNode.removeChild(canvasContainer) + + if (Browser.resizeCanvas) Browser.setWindowedCanvasSize() + } + if (Module["onFullScreen"]) + Module["onFullScreen"](Browser.isFullScreen) + Browser.updateCanvasDimensions(canvas) + } + + if (!Browser.fullScreenHandlersInstalled) { + Browser.fullScreenHandlersInstalled = true + document.addEventListener( + "fullscreenchange", + fullScreenChange, + false + ) + document.addEventListener( + "mozfullscreenchange", + fullScreenChange, + false + ) + document.addEventListener( + "webkitfullscreenchange", + fullScreenChange, + false + ) + document.addEventListener( + "MSFullscreenChange", + fullScreenChange, + false + ) + } + + // create a new parent to ensure the canvas has no siblings. this allows browsers to optimize full screen performance when its parent is the full screen root + var canvasContainer = document.createElement("div") + canvas.parentNode.insertBefore(canvasContainer, canvas) + canvasContainer.appendChild(canvas) + + // use parent of canvas as full screen root to allow aspect ratio correction (Firefox stretches the root to screen size) + canvasContainer.requestFullScreen = + canvasContainer["requestFullScreen"] || + canvasContainer["mozRequestFullScreen"] || + canvasContainer["msRequestFullscreen"] || + (canvasContainer["webkitRequestFullScreen"] + ? function() { + canvasContainer["webkitRequestFullScreen"]( + Element["ALLOW_KEYBOARD_INPUT"] + ) + } + : null) + + if (vrDevice) { + canvasContainer.requestFullScreen({ vrDisplay: vrDevice }) + } else { + canvasContainer.requestFullScreen() + } + }, + nextRAF: 0, + fakeRequestAnimationFrame: function(func) { + // try to keep 60fps between calls to here + var now = Date.now() + if (Browser.nextRAF === 0) { + Browser.nextRAF = now + 1000 / 60 + } else { + while (now + 2 >= Browser.nextRAF) { + // fudge a little, to avoid timer jitter causing us to do lots of delay:0 + Browser.nextRAF += 1000 / 60 + } + } + var delay = Math.max(Browser.nextRAF - now, 0) + setTimeout(func, delay) + }, + requestAnimationFrame: function requestAnimationFrame(func) { + if (typeof window === "undefined") { + // Provide fallback to setTimeout if window is undefined (e.g. in Node.js) + Browser.fakeRequestAnimationFrame(func) + } else { + if (!window.requestAnimationFrame) { + window.requestAnimationFrame = + window["requestAnimationFrame"] || + window["mozRequestAnimationFrame"] || + window["webkitRequestAnimationFrame"] || + window["msRequestAnimationFrame"] || + window["oRequestAnimationFrame"] || + Browser.fakeRequestAnimationFrame + } + window.requestAnimationFrame(func) + } + }, + safeCallback: function(func) { + return function() { + if (!ABORT) return func.apply(null, arguments) + } + }, + allowAsyncCallbacks: true, + queuedAsyncCallbacks: [], + pauseAsyncCallbacks: function() { + Browser.allowAsyncCallbacks = false + }, + resumeAsyncCallbacks: function() { + // marks future callbacks as ok to execute, and synchronously runs any remaining ones right now + Browser.allowAsyncCallbacks = true + if (Browser.queuedAsyncCallbacks.length > 0) { + var callbacks = Browser.queuedAsyncCallbacks + Browser.queuedAsyncCallbacks = [] + callbacks.forEach(function(func) { + func() + }) + } + }, + safeRequestAnimationFrame: function(func) { + return Browser.requestAnimationFrame(function() { + if (ABORT) return + if (Browser.allowAsyncCallbacks) { + func() + } else { + Browser.queuedAsyncCallbacks.push(func) + } + }) + }, + safeSetTimeout: function(func, timeout) { + Module["noExitRuntime"] = true + return setTimeout(function() { + if (ABORT) return + if (Browser.allowAsyncCallbacks) { + func() + } else { + Browser.queuedAsyncCallbacks.push(func) + } + }, timeout) + }, + safeSetInterval: function(func, timeout) { + Module["noExitRuntime"] = true + return setInterval(function() { + if (ABORT) return + if (Browser.allowAsyncCallbacks) { + func() + } // drop it on the floor otherwise, next interval will kick in + }, timeout) + }, + getMimetype: function(name) { + return { + jpg: "image/jpeg", + jpeg: "image/jpeg", + png: "image/png", + bmp: "image/bmp", + ogg: "audio/ogg", + wav: "audio/wav", + mp3: "audio/mpeg" + }[name.substr(name.lastIndexOf(".") + 1)] + }, + getUserMedia: function(func) { + if (!window.getUserMedia) { + window.getUserMedia = + navigator["getUserMedia"] || navigator["mozGetUserMedia"] + } + window.getUserMedia(func) + }, + getMovementX: function(event) { + return ( + event["movementX"] || + event["mozMovementX"] || + event["webkitMovementX"] || + 0 + ) + }, + getMovementY: function(event) { + return ( + event["movementY"] || + event["mozMovementY"] || + event["webkitMovementY"] || + 0 + ) + }, + getMouseWheelDelta: function(event) { + var delta = 0 + switch (event.type) { + case "DOMMouseScroll": + delta = event.detail + break + case "mousewheel": + delta = event.wheelDelta + break + case "wheel": + delta = event["deltaY"] + break + default: + throw "unrecognized mouse wheel event: " + event.type + } + return delta + }, + mouseX: 0, + mouseY: 0, + mouseMovementX: 0, + mouseMovementY: 0, + touches: {}, + lastTouches: {}, + calculateMouseEvent: function(event) { + // event should be mousemove, mousedown or mouseup + if (Browser.pointerLock) { + // When the pointer is locked, calculate the coordinates + // based on the movement of the mouse. + // Workaround for Firefox bug 764498 + if (event.type != "mousemove" && "mozMovementX" in event) { + Browser.mouseMovementX = Browser.mouseMovementY = 0 + } else { + Browser.mouseMovementX = Browser.getMovementX(event) + Browser.mouseMovementY = Browser.getMovementY(event) + } + + // check if SDL is available + if (typeof SDL != "undefined") { + Browser.mouseX = SDL.mouseX + Browser.mouseMovementX + Browser.mouseY = SDL.mouseY + Browser.mouseMovementY + } else { + // just add the mouse delta to the current absolut mouse position + // FIXME: ideally this should be clamped against the canvas size and zero + Browser.mouseX += Browser.mouseMovementX + Browser.mouseY += Browser.mouseMovementY + } + } else { + // Otherwise, calculate the movement based on the changes + // in the coordinates. + var rect = Module["canvas"].getBoundingClientRect() + var cw = Module["canvas"].width + var ch = Module["canvas"].height + + // Neither .scrollX or .pageXOffset are defined in a spec, but + // we prefer .scrollX because it is currently in a spec draft. + // (see: http://www.w3.org/TR/2013/WD-cssom-view-20131217/) + var scrollX = + typeof window.scrollX !== "undefined" + ? window.scrollX + : window.pageXOffset + var scrollY = + typeof window.scrollY !== "undefined" + ? window.scrollY + : window.pageYOffset + + if ( + event.type === "touchstart" || + event.type === "touchend" || + event.type === "touchmove" + ) { + var touch = event.touch + if (touch === undefined) { + return // the "touch" property is only defined in SDL + } + var adjustedX = touch.pageX - (scrollX + rect.left) + var adjustedY = touch.pageY - (scrollY + rect.top) + + adjustedX = adjustedX * (cw / rect.width) + adjustedY = adjustedY * (ch / rect.height) + + var coords = { x: adjustedX, y: adjustedY } + + if (event.type === "touchstart") { + Browser.lastTouches[touch.identifier] = coords + Browser.touches[touch.identifier] = coords + } else if ( + event.type === "touchend" || + event.type === "touchmove" + ) { + var last = Browser.touches[touch.identifier] + if (!last) last = coords + Browser.lastTouches[touch.identifier] = last + Browser.touches[touch.identifier] = coords + } + return + } + + var x = event.pageX - (scrollX + rect.left) + var y = event.pageY - (scrollY + rect.top) + + // the canvas might be CSS-scaled compared to its backbuffer; + // SDL-using content will want mouse coordinates in terms + // of backbuffer units. + x = x * (cw / rect.width) + y = y * (ch / rect.height) + + Browser.mouseMovementX = x - Browser.mouseX + Browser.mouseMovementY = y - Browser.mouseY + Browser.mouseX = x + Browser.mouseY = y + } + }, + xhrLoad: function(url, onload, onerror) { + var xhr = new XMLHttpRequest() + xhr.open("GET", url, true) + xhr.responseType = "arraybuffer" + xhr.onload = function xhr_onload() { + if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { + // file URLs can return 0 + onload(xhr.response) + } else { + onerror() + } + } + xhr.onerror = onerror + xhr.send(null) + }, + asyncLoad: function(url, onload, onerror, noRunDep) { + Browser.xhrLoad( + url, + function(arrayBuffer) { + assert( + arrayBuffer, + 'Loading data file "' + url + '" failed (no arrayBuffer).' + ) + onload(new Uint8Array(arrayBuffer)) + if (!noRunDep) removeRunDependency("al " + url) + }, + function(event) { + if (onerror) { + onerror() + } else { + throw 'Loading data file "' + url + '" failed.' + } + } + ) + if (!noRunDep) addRunDependency("al " + url) + }, + resizeListeners: [], + updateResizeListeners: function() { + var canvas = Module["canvas"] + Browser.resizeListeners.forEach(function(listener) { + listener(canvas.width, canvas.height) + }) + }, + setCanvasSize: function(width, height, noUpdates) { + var canvas = Module["canvas"] + Browser.updateCanvasDimensions(canvas, width, height) + if (!noUpdates) Browser.updateResizeListeners() + }, + windowedWidth: 0, + windowedHeight: 0, + setFullScreenCanvasSize: function() { + // check if SDL is available + if (typeof SDL != "undefined") { + var flags = + HEAPU32[(SDL.screen + Runtime.QUANTUM_SIZE * 0) >> 2] + flags = flags | 0x00800000 // set SDL_FULLSCREEN flag + HEAP32[(SDL.screen + Runtime.QUANTUM_SIZE * 0) >> 2] = flags + } + Browser.updateResizeListeners() + }, + setWindowedCanvasSize: function() { + // check if SDL is available + if (typeof SDL != "undefined") { + var flags = + HEAPU32[(SDL.screen + Runtime.QUANTUM_SIZE * 0) >> 2] + flags = flags & ~0x00800000 // clear SDL_FULLSCREEN flag + HEAP32[(SDL.screen + Runtime.QUANTUM_SIZE * 0) >> 2] = flags + } + Browser.updateResizeListeners() + }, + updateCanvasDimensions: function(canvas, wNative, hNative) { + if (wNative && hNative) { + canvas.widthNative = wNative + canvas.heightNative = hNative + } else { + wNative = canvas.widthNative + hNative = canvas.heightNative + } + var w = wNative + var h = hNative + if ( + Module["forcedAspectRatio"] && + Module["forcedAspectRatio"] > 0 + ) { + if (w / h < Module["forcedAspectRatio"]) { + w = Math.round(h * Module["forcedAspectRatio"]) + } else { + h = Math.round(w / Module["forcedAspectRatio"]) + } + } + if ( + (document["webkitFullScreenElement"] || + document["webkitFullscreenElement"] || + document["mozFullScreenElement"] || + document["mozFullscreenElement"] || + document["fullScreenElement"] || + document["fullscreenElement"] || + document["msFullScreenElement"] || + document["msFullscreenElement"] || + document["webkitCurrentFullScreenElement"]) === + canvas.parentNode && + typeof screen != "undefined" + ) { + var factor = Math.min(screen.width / w, screen.height / h) + w = Math.round(w * factor) + h = Math.round(h * factor) + } + if (Browser.resizeCanvas) { + if (canvas.width != w) canvas.width = w + if (canvas.height != h) canvas.height = h + if (typeof canvas.style != "undefined") { + canvas.style.removeProperty("width") + canvas.style.removeProperty("height") + } + } else { + if (canvas.width != wNative) canvas.width = wNative + if (canvas.height != hNative) canvas.height = hNative + if (typeof canvas.style != "undefined") { + if (w != wNative || h != hNative) { + canvas.style.setProperty("width", w + "px", "important") + canvas.style.setProperty("height", h + "px", "important") + } else { + canvas.style.removeProperty("width") + canvas.style.removeProperty("height") + } + } + } + }, + wgetRequests: {}, + nextWgetRequestHandle: 0, + getNextWgetRequestHandle: function() { + var handle = Browser.nextWgetRequestHandle + Browser.nextWgetRequestHandle++ + return handle + } + } + + function _time(ptr) { + var ret = (Date.now() / 1000) | 0 + if (ptr) { + HEAP32[ptr >> 2] = ret + } + return ret + } + + function _pthread_self() { + //FIXME: assumes only a single thread + return 0 + } + + function ___syscall140(which, varargs) { + SYSCALLS.varargs = varargs + try { + // llseek + var stream = SYSCALLS.getStreamFromFD(), + offset_high = SYSCALLS.get(), + offset_low = SYSCALLS.get(), + result = SYSCALLS.get(), + whence = SYSCALLS.get() + var offset = offset_low + assert(offset_high === 0) + FS.llseek(stream, offset, whence) + HEAP32[result >> 2] = stream.position + if (stream.getdents && offset === 0 && whence === 0) + stream.getdents = null // reset readdir state + return 0 + } catch (e) { + if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) + abort(e) + return -e.errno + } + } + + function ___syscall146(which, varargs) { + SYSCALLS.varargs = varargs + try { + // writev + var stream = SYSCALLS.getStreamFromFD(), + iov = SYSCALLS.get(), + iovcnt = SYSCALLS.get() + return SYSCALLS.doWritev(stream, iov, iovcnt) + } catch (e) { + if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) + abort(e) + return -e.errno + } + } + + function ___syscall54(which, varargs) { + SYSCALLS.varargs = varargs + try { + // ioctl + var stream = SYSCALLS.getStreamFromFD(), + op = SYSCALLS.get() + switch (op) { + case 21505: { + if (!stream.tty) return -ERRNO_CODES.ENOTTY + return 0 + } + case 21506: { + if (!stream.tty) return -ERRNO_CODES.ENOTTY + return 0 // no-op, not actually adjusting terminal settings + } + case 21519: { + if (!stream.tty) return -ERRNO_CODES.ENOTTY + var argp = SYSCALLS.get() + HEAP32[argp >> 2] = 0 + return 0 + } + case 21520: { + if (!stream.tty) return -ERRNO_CODES.ENOTTY + return -ERRNO_CODES.EINVAL // not supported + } + case 21531: { + var argp = SYSCALLS.get() + return FS.ioctl(stream, op, argp) + } + default: + abort("bad ioctl syscall " + op) + } + } catch (e) { + if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) + abort(e) + return -e.errno + } + } + FS.staticInit() + __ATINIT__.unshift(function() { + if (!Module["noFSInit"] && !FS.init.initialized) FS.init() + }) + __ATMAIN__.push(function() { + FS.ignorePermissions = false + }) + __ATEXIT__.push(function() { + FS.quit() + }) + Module["FS_createFolder"] = FS.createFolder + Module["FS_createPath"] = FS.createPath + Module["FS_createDataFile"] = FS.createDataFile + Module["FS_createPreloadedFile"] = FS.createPreloadedFile + Module["FS_createLazyFile"] = FS.createLazyFile + Module["FS_createLink"] = FS.createLink + Module["FS_createDevice"] = FS.createDevice + Module["FS_unlink"] = FS.unlink + __ATINIT__.unshift(function() { + TTY.init() + }) + __ATEXIT__.push(function() { + TTY.shutdown() + }) + if (ENVIRONMENT_IS_NODE) { + var fs = require("fs") + var NODEJS_PATH = require("path") + NODEFS.staticInit() + } + Module["requestFullScreen"] = function Module_requestFullScreen( + lockPointer, + resizeCanvas, + vrDevice + ) { + Browser.requestFullScreen(lockPointer, resizeCanvas, vrDevice) + } + Module[ + "requestAnimationFrame" + ] = function Module_requestAnimationFrame(func) { + Browser.requestAnimationFrame(func) + } + Module["setCanvasSize"] = function Module_setCanvasSize( + width, + height, + noUpdates + ) { + Browser.setCanvasSize(width, height, noUpdates) + } + Module["pauseMainLoop"] = function Module_pauseMainLoop() { + Browser.mainLoop.pause() + } + Module["resumeMainLoop"] = function Module_resumeMainLoop() { + Browser.mainLoop.resume() + } + Module["getUserMedia"] = function Module_getUserMedia() { + Browser.getUserMedia() + } + Module["createContext"] = function Module_createContext( + canvas, + useWebGL, + setInModule, + webGLContextAttributes + ) { + return Browser.createContext( + canvas, + useWebGL, + setInModule, + webGLContextAttributes + ) + } + STACK_BASE = STACKTOP = Runtime.alignMemory(STATICTOP) + + staticSealed = true // seal the static portion of memory + + STACK_MAX = STACK_BASE + TOTAL_STACK + + DYNAMIC_BASE = DYNAMICTOP = Runtime.alignMemory(STACK_MAX) + + assert( + DYNAMIC_BASE < TOTAL_MEMORY, + "TOTAL_MEMORY not big enough for stack" + ) + + var cttz_i8 = allocate( + [ + 8, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 4, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 5, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 4, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 6, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 4, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 5, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 4, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 7, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 4, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 5, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 4, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 6, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 4, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 5, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 4, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0 + ], + "i8", + ALLOC_DYNAMIC + ) + + function invoke_ii(index, a1) { + try { + return Module["dynCall_ii"](index, a1) + } catch (e) { + if (typeof e !== "number" && e !== "longjmp") throw e + asm["setThrew"](1, 0) + } + } + + function invoke_iiii(index, a1, a2, a3) { + try { + return Module["dynCall_iiii"](index, a1, a2, a3) + } catch (e) { + if (typeof e !== "number" && e !== "longjmp") throw e + asm["setThrew"](1, 0) + } + } + + function invoke_vi(index, a1) { + try { + Module["dynCall_vi"](index, a1) + } catch (e) { + if (typeof e !== "number" && e !== "longjmp") throw e + asm["setThrew"](1, 0) + } + } + + Module.asmGlobalArg = { + Math: Math, + Int8Array: Int8Array, + Int16Array: Int16Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, + Uint16Array: Uint16Array, + Uint32Array: Uint32Array, + Float32Array: Float32Array, + Float64Array: Float64Array, + NaN: NaN, + Infinity: Infinity + } + + Module.asmLibraryArg = { + abort: abort, + assert: assert, + invoke_ii: invoke_ii, + invoke_iiii: invoke_iiii, + invoke_vi: invoke_vi, + _pthread_cleanup_pop: _pthread_cleanup_pop, + ___lock: ___lock, + _emscripten_set_main_loop: _emscripten_set_main_loop, + _pthread_self: _pthread_self, + ___syscall6: ___syscall6, + _emscripten_set_main_loop_timing: _emscripten_set_main_loop_timing, + _abort: _abort, + _sbrk: _sbrk, + _time: _time, + ___setErrNo: ___setErrNo, + _emscripten_memcpy_big: _emscripten_memcpy_big, + ___syscall54: ___syscall54, + ___unlock: ___unlock, + ___syscall140: ___syscall140, + _pthread_cleanup_push: _pthread_cleanup_push, + _sysconf: _sysconf, + ___syscall146: ___syscall146, + STACKTOP: STACKTOP, + STACK_MAX: STACK_MAX, + tempDoublePtr: tempDoublePtr, + ABORT: ABORT, + cttz_i8: cttz_i8 + } + // EMSCRIPTEN_START_ASM + var asm = (function(global, env, buffer) { + "use asm" + + var HEAP8 = new global.Int8Array(buffer) + var HEAP16 = new global.Int16Array(buffer) + var HEAP32 = new global.Int32Array(buffer) + var HEAPU8 = new global.Uint8Array(buffer) + var HEAPU16 = new global.Uint16Array(buffer) + var HEAPU32 = new global.Uint32Array(buffer) + var HEAPF32 = new global.Float32Array(buffer) + var HEAPF64 = new global.Float64Array(buffer) + + var STACKTOP = env.STACKTOP | 0 + var STACK_MAX = env.STACK_MAX | 0 + var tempDoublePtr = env.tempDoublePtr | 0 + var ABORT = env.ABORT | 0 + var cttz_i8 = env.cttz_i8 | 0 + + var __THREW__ = 0 + var threwValue = 0 + var setjmpId = 0 + var undef = 0 + var nan = global.NaN, + inf = global.Infinity + var tempInt = 0, + tempBigInt = 0, + tempBigIntP = 0, + tempBigIntS = 0, + tempBigIntR = 0.0, + tempBigIntI = 0, + tempBigIntD = 0, + tempValue = 0, + tempDouble = 0.0 + + var tempRet0 = 0 + var tempRet1 = 0 + var tempRet2 = 0 + var tempRet3 = 0 + var tempRet4 = 0 + var tempRet5 = 0 + var tempRet6 = 0 + var tempRet7 = 0 + var tempRet8 = 0 + var tempRet9 = 0 + var Math_floor = global.Math.floor + var Math_abs = global.Math.abs + var Math_sqrt = global.Math.sqrt + var Math_pow = global.Math.pow + var Math_cos = global.Math.cos + var Math_sin = global.Math.sin + var Math_tan = global.Math.tan + var Math_acos = global.Math.acos + var Math_asin = global.Math.asin + var Math_atan = global.Math.atan + var Math_atan2 = global.Math.atan2 + var Math_exp = global.Math.exp + var Math_log = global.Math.log + var Math_ceil = global.Math.ceil + var Math_imul = global.Math.imul + var Math_min = global.Math.min + var Math_clz32 = global.Math.clz32 + var abort = env.abort + var assert = env.assert + var invoke_ii = env.invoke_ii + var invoke_iiii = env.invoke_iiii + var invoke_vi = env.invoke_vi + var _pthread_cleanup_pop = env._pthread_cleanup_pop + var ___lock = env.___lock + var _emscripten_set_main_loop = env._emscripten_set_main_loop + var _pthread_self = env._pthread_self + var ___syscall6 = env.___syscall6 + var _emscripten_set_main_loop_timing = + env._emscripten_set_main_loop_timing + var _abort = env._abort + var _sbrk = env._sbrk + var _time = env._time + var ___setErrNo = env.___setErrNo + var _emscripten_memcpy_big = env._emscripten_memcpy_big + var ___syscall54 = env.___syscall54 + var ___unlock = env.___unlock + var ___syscall140 = env.___syscall140 + var _pthread_cleanup_push = env._pthread_cleanup_push + var _sysconf = env._sysconf + var ___syscall146 = env.___syscall146 + var tempFloat = 0.0 + + // EMSCRIPTEN_START_FUNCS + function stackAlloc(size) { + size = size | 0 + var ret = 0 + ret = STACKTOP + STACKTOP = (STACKTOP + size) | 0 + STACKTOP = (STACKTOP + 15) & -16 + + return ret | 0 + } + function stackSave() { + return STACKTOP | 0 + } + function stackRestore(top) { + top = top | 0 + STACKTOP = top + } + function establishStackSpace(stackBase, stackMax) { + stackBase = stackBase | 0 + stackMax = stackMax | 0 + STACKTOP = stackBase + STACK_MAX = stackMax + } + + function setThrew(threw, value) { + threw = threw | 0 + value = value | 0 + if ((__THREW__ | 0) == 0) { + __THREW__ = threw + threwValue = value + } + } + function copyTempFloat(ptr) { + ptr = ptr | 0 + HEAP8[tempDoublePtr >> 0] = HEAP8[ptr >> 0] + HEAP8[(tempDoublePtr + 1) >> 0] = HEAP8[(ptr + 1) >> 0] + HEAP8[(tempDoublePtr + 2) >> 0] = HEAP8[(ptr + 2) >> 0] + HEAP8[(tempDoublePtr + 3) >> 0] = HEAP8[(ptr + 3) >> 0] + } + function copyTempDouble(ptr) { + ptr = ptr | 0 + HEAP8[tempDoublePtr >> 0] = HEAP8[ptr >> 0] + HEAP8[(tempDoublePtr + 1) >> 0] = HEAP8[(ptr + 1) >> 0] + HEAP8[(tempDoublePtr + 2) >> 0] = HEAP8[(ptr + 2) >> 0] + HEAP8[(tempDoublePtr + 3) >> 0] = HEAP8[(ptr + 3) >> 0] + HEAP8[(tempDoublePtr + 4) >> 0] = HEAP8[(ptr + 4) >> 0] + HEAP8[(tempDoublePtr + 5) >> 0] = HEAP8[(ptr + 5) >> 0] + HEAP8[(tempDoublePtr + 6) >> 0] = HEAP8[(ptr + 6) >> 0] + HEAP8[(tempDoublePtr + 7) >> 0] = HEAP8[(ptr + 7) >> 0] + } + + function setTempRet0(value) { + value = value | 0 + tempRet0 = value + } + function getTempRet0() { + return tempRet0 | 0 + } + + function _create_keypair($public_key, $private_key, $seed) { + $public_key = $public_key | 0 + $private_key = $private_key | 0 + $seed = $seed | 0 + var label = 0, + sp = 0 + sp = STACKTOP + _ed25519_create_keypair($public_key, $private_key, $seed) + return + } + function _sign( + $signature, + $message, + $message_len, + $public_key, + $private_key + ) { + $signature = $signature | 0 + $message = $message | 0 + $message_len = $message_len | 0 + $public_key = $public_key | 0 + $private_key = $private_key | 0 + var label = 0, + sp = 0 + sp = STACKTOP + _ed25519_sign( + $signature, + $message, + $message_len, + $public_key, + $private_key + ) + return + } + function _verify( + $signature, + $message, + $message_len, + $public_key + ) { + $signature = $signature | 0 + $message = $message | 0 + $message_len = $message_len | 0 + $public_key = $public_key | 0 + var $0 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = + _ed25519_verify( + $signature, + $message, + $message_len, + $public_key + ) | 0 + return $0 | 0 + } + function _fe_0($h) { + $h = $h | 0 + var dest = 0, + label = 0, + sp = 0, + stop = 0 + sp = STACKTOP + dest = $h + stop = (dest + 40) | 0 + do { + HEAP32[dest >> 2] = 0 | 0 + dest = (dest + 4) | 0 + } while ((dest | 0) < (stop | 0)) + return + } + function _fe_1($h) { + $h = $h | 0 + var $0 = 0, + dest = 0, + label = 0, + sp = 0, + stop = 0 + sp = STACKTOP + HEAP32[$h >> 2] = 1 + $0 = ($h + 4) | 0 + dest = $0 + stop = (dest + 36) | 0 + do { + HEAP32[dest >> 2] = 0 | 0 + dest = (dest + 4) | 0 + } while ((dest | 0) < (stop | 0)) + return + } + function _fe_add($h, $f, $g) { + $h = $h | 0 + $f = $f | 0 + $g = $g | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0, + $26 = 0 + var $27 = 0, + $28 = 0, + $29 = 0, + $3 = 0, + $30 = 0, + $31 = 0, + $32 = 0, + $33 = 0, + $34 = 0, + $35 = 0, + $36 = 0, + $37 = 0, + $38 = 0, + $39 = 0, + $4 = 0, + $40 = 0, + $41 = 0, + $42 = 0, + $43 = 0, + $44 = 0 + var $45 = 0, + $46 = 0, + $47 = 0, + $48 = 0, + $49 = 0, + $5 = 0, + $50 = 0, + $51 = 0, + $52 = 0, + $53 = 0, + $54 = 0, + $55 = 0, + $56 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = HEAP32[$f >> 2] | 0 + $1 = ($f + 4) | 0 + $2 = HEAP32[$1 >> 2] | 0 + $3 = ($f + 8) | 0 + $4 = HEAP32[$3 >> 2] | 0 + $5 = ($f + 12) | 0 + $6 = HEAP32[$5 >> 2] | 0 + $7 = ($f + 16) | 0 + $8 = HEAP32[$7 >> 2] | 0 + $9 = ($f + 20) | 0 + $10 = HEAP32[$9 >> 2] | 0 + $11 = ($f + 24) | 0 + $12 = HEAP32[$11 >> 2] | 0 + $13 = ($f + 28) | 0 + $14 = HEAP32[$13 >> 2] | 0 + $15 = ($f + 32) | 0 + $16 = HEAP32[$15 >> 2] | 0 + $17 = ($f + 36) | 0 + $18 = HEAP32[$17 >> 2] | 0 + $19 = HEAP32[$g >> 2] | 0 + $20 = ($g + 4) | 0 + $21 = HEAP32[$20 >> 2] | 0 + $22 = ($g + 8) | 0 + $23 = HEAP32[$22 >> 2] | 0 + $24 = ($g + 12) | 0 + $25 = HEAP32[$24 >> 2] | 0 + $26 = ($g + 16) | 0 + $27 = HEAP32[$26 >> 2] | 0 + $28 = ($g + 20) | 0 + $29 = HEAP32[$28 >> 2] | 0 + $30 = ($g + 24) | 0 + $31 = HEAP32[$30 >> 2] | 0 + $32 = ($g + 28) | 0 + $33 = HEAP32[$32 >> 2] | 0 + $34 = ($g + 32) | 0 + $35 = HEAP32[$34 >> 2] | 0 + $36 = ($g + 36) | 0 + $37 = HEAP32[$36 >> 2] | 0 + $38 = ($19 + $0) | 0 + $39 = ($21 + $2) | 0 + $40 = ($23 + $4) | 0 + $41 = ($25 + $6) | 0 + $42 = ($27 + $8) | 0 + $43 = ($29 + $10) | 0 + $44 = ($31 + $12) | 0 + $45 = ($33 + $14) | 0 + $46 = ($35 + $16) | 0 + $47 = ($37 + $18) | 0 + HEAP32[$h >> 2] = $38 + $48 = ($h + 4) | 0 + HEAP32[$48 >> 2] = $39 + $49 = ($h + 8) | 0 + HEAP32[$49 >> 2] = $40 + $50 = ($h + 12) | 0 + HEAP32[$50 >> 2] = $41 + $51 = ($h + 16) | 0 + HEAP32[$51 >> 2] = $42 + $52 = ($h + 20) | 0 + HEAP32[$52 >> 2] = $43 + $53 = ($h + 24) | 0 + HEAP32[$53 >> 2] = $44 + $54 = ($h + 28) | 0 + HEAP32[$54 >> 2] = $45 + $55 = ($h + 32) | 0 + HEAP32[$55 >> 2] = $46 + $56 = ($h + 36) | 0 + HEAP32[$56 >> 2] = $47 + return + } + function _fe_cmov($f, $g, $b) { + $f = $f | 0 + $g = $g | 0 + $b = $b | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0, + $26 = 0 + var $27 = 0, + $28 = 0, + $29 = 0, + $3 = 0, + $30 = 0, + $31 = 0, + $32 = 0, + $33 = 0, + $34 = 0, + $35 = 0, + $36 = 0, + $37 = 0, + $38 = 0, + $39 = 0, + $4 = 0, + $40 = 0, + $41 = 0, + $42 = 0, + $43 = 0, + $44 = 0 + var $45 = 0, + $46 = 0, + $47 = 0, + $48 = 0, + $49 = 0, + $5 = 0, + $50 = 0, + $51 = 0, + $52 = 0, + $53 = 0, + $54 = 0, + $55 = 0, + $56 = 0, + $57 = 0, + $58 = 0, + $59 = 0, + $6 = 0, + $60 = 0, + $61 = 0, + $62 = 0 + var $63 = 0, + $64 = 0, + $65 = 0, + $66 = 0, + $67 = 0, + $68 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = HEAP32[$f >> 2] | 0 + $1 = ($f + 4) | 0 + $2 = HEAP32[$1 >> 2] | 0 + $3 = ($f + 8) | 0 + $4 = HEAP32[$3 >> 2] | 0 + $5 = ($f + 12) | 0 + $6 = HEAP32[$5 >> 2] | 0 + $7 = ($f + 16) | 0 + $8 = HEAP32[$7 >> 2] | 0 + $9 = ($f + 20) | 0 + $10 = HEAP32[$9 >> 2] | 0 + $11 = ($f + 24) | 0 + $12 = HEAP32[$11 >> 2] | 0 + $13 = ($f + 28) | 0 + $14 = HEAP32[$13 >> 2] | 0 + $15 = ($f + 32) | 0 + $16 = HEAP32[$15 >> 2] | 0 + $17 = ($f + 36) | 0 + $18 = HEAP32[$17 >> 2] | 0 + $19 = HEAP32[$g >> 2] | 0 + $20 = ($g + 4) | 0 + $21 = HEAP32[$20 >> 2] | 0 + $22 = ($g + 8) | 0 + $23 = HEAP32[$22 >> 2] | 0 + $24 = ($g + 12) | 0 + $25 = HEAP32[$24 >> 2] | 0 + $26 = ($g + 16) | 0 + $27 = HEAP32[$26 >> 2] | 0 + $28 = ($g + 20) | 0 + $29 = HEAP32[$28 >> 2] | 0 + $30 = ($g + 24) | 0 + $31 = HEAP32[$30 >> 2] | 0 + $32 = ($g + 28) | 0 + $33 = HEAP32[$32 >> 2] | 0 + $34 = ($g + 32) | 0 + $35 = HEAP32[$34 >> 2] | 0 + $36 = ($g + 36) | 0 + $37 = HEAP32[$36 >> 2] | 0 + $38 = $19 ^ $0 + $39 = $21 ^ $2 + $40 = $23 ^ $4 + $41 = $25 ^ $6 + $42 = $27 ^ $8 + $43 = $29 ^ $10 + $44 = $31 ^ $12 + $45 = $33 ^ $14 + $46 = $35 ^ $16 + $47 = $37 ^ $18 + $48 = (0 - $b) | 0 + $49 = $38 & $48 + $50 = $39 & $48 + $51 = $40 & $48 + $52 = $41 & $48 + $53 = $42 & $48 + $54 = $43 & $48 + $55 = $44 & $48 + $56 = $45 & $48 + $57 = $46 & $48 + $58 = $47 & $48 + $59 = $49 ^ $0 + HEAP32[$f >> 2] = $59 + $60 = $50 ^ $2 + HEAP32[$1 >> 2] = $60 + $61 = $51 ^ $4 + HEAP32[$3 >> 2] = $61 + $62 = $52 ^ $6 + HEAP32[$5 >> 2] = $62 + $63 = $53 ^ $8 + HEAP32[$7 >> 2] = $63 + $64 = $54 ^ $10 + HEAP32[$9 >> 2] = $64 + $65 = $55 ^ $12 + HEAP32[$11 >> 2] = $65 + $66 = $56 ^ $14 + HEAP32[$13 >> 2] = $66 + $67 = $57 ^ $16 + HEAP32[$15 >> 2] = $67 + $68 = $58 ^ $18 + HEAP32[$17 >> 2] = $68 + return + } + function _fe_copy($h, $f) { + $h = $h | 0 + $f = $f | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0, + $26 = 0 + var $27 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = HEAP32[$f >> 2] | 0 + $1 = ($f + 4) | 0 + $2 = HEAP32[$1 >> 2] | 0 + $3 = ($f + 8) | 0 + $4 = HEAP32[$3 >> 2] | 0 + $5 = ($f + 12) | 0 + $6 = HEAP32[$5 >> 2] | 0 + $7 = ($f + 16) | 0 + $8 = HEAP32[$7 >> 2] | 0 + $9 = ($f + 20) | 0 + $10 = HEAP32[$9 >> 2] | 0 + $11 = ($f + 24) | 0 + $12 = HEAP32[$11 >> 2] | 0 + $13 = ($f + 28) | 0 + $14 = HEAP32[$13 >> 2] | 0 + $15 = ($f + 32) | 0 + $16 = HEAP32[$15 >> 2] | 0 + $17 = ($f + 36) | 0 + $18 = HEAP32[$17 >> 2] | 0 + HEAP32[$h >> 2] = $0 + $19 = ($h + 4) | 0 + HEAP32[$19 >> 2] = $2 + $20 = ($h + 8) | 0 + HEAP32[$20 >> 2] = $4 + $21 = ($h + 12) | 0 + HEAP32[$21 >> 2] = $6 + $22 = ($h + 16) | 0 + HEAP32[$22 >> 2] = $8 + $23 = ($h + 20) | 0 + HEAP32[$23 >> 2] = $10 + $24 = ($h + 24) | 0 + HEAP32[$24 >> 2] = $12 + $25 = ($h + 28) | 0 + HEAP32[$25 >> 2] = $14 + $26 = ($h + 32) | 0 + HEAP32[$26 >> 2] = $16 + $27 = ($h + 36) | 0 + HEAP32[$27 >> 2] = $18 + return + } + function _fe_frombytes($h, $s) { + $h = $h | 0 + $s = $s | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $100 = 0, + $101 = 0, + $102 = 0, + $103 = 0, + $104 = 0, + $105 = 0, + $106 = 0, + $107 = 0, + $108 = 0, + $109 = 0, + $11 = 0, + $110 = 0, + $111 = 0, + $112 = 0, + $113 = 0, + $114 = 0, + $115 = 0 + var $116 = 0, + $117 = 0, + $118 = 0, + $119 = 0, + $12 = 0, + $120 = 0, + $121 = 0, + $122 = 0, + $123 = 0, + $124 = 0, + $125 = 0, + $126 = 0, + $127 = 0, + $128 = 0, + $129 = 0, + $13 = 0, + $130 = 0, + $131 = 0, + $132 = 0, + $133 = 0 + var $134 = 0, + $135 = 0, + $136 = 0, + $137 = 0, + $138 = 0, + $139 = 0, + $14 = 0, + $140 = 0, + $141 = 0, + $142 = 0, + $143 = 0, + $144 = 0, + $145 = 0, + $146 = 0, + $147 = 0, + $148 = 0, + $149 = 0, + $15 = 0, + $150 = 0, + $151 = 0 + var $152 = 0, + $153 = 0, + $154 = 0, + $155 = 0, + $156 = 0, + $157 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0, + $26 = 0, + $27 = 0, + $28 = 0 + var $29 = 0, + $3 = 0, + $30 = 0, + $31 = 0, + $32 = 0, + $33 = 0, + $34 = 0, + $35 = 0, + $36 = 0, + $37 = 0, + $38 = 0, + $39 = 0, + $4 = 0, + $40 = 0, + $41 = 0, + $42 = 0, + $43 = 0, + $44 = 0, + $45 = 0, + $46 = 0 + var $47 = 0, + $48 = 0, + $49 = 0, + $5 = 0, + $50 = 0, + $51 = 0, + $52 = 0, + $53 = 0, + $54 = 0, + $55 = 0, + $56 = 0, + $57 = 0, + $58 = 0, + $59 = 0, + $6 = 0, + $60 = 0, + $61 = 0, + $62 = 0, + $63 = 0, + $64 = 0 + var $65 = 0, + $66 = 0, + $67 = 0, + $68 = 0, + $69 = 0, + $7 = 0, + $70 = 0, + $71 = 0, + $72 = 0, + $73 = 0, + $74 = 0, + $75 = 0, + $76 = 0, + $77 = 0, + $78 = 0, + $79 = 0, + $8 = 0, + $80 = 0, + $81 = 0, + $82 = 0 + var $83 = 0, + $84 = 0, + $85 = 0, + $86 = 0, + $87 = 0, + $88 = 0, + $89 = 0, + $9 = 0, + $90 = 0, + $91 = 0, + $92 = 0, + $93 = 0, + $94 = 0, + $95 = 0, + $96 = 0, + $97 = 0, + $98 = 0, + $99 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = _load_4($s) | 0 + $1 = tempRet0 + $2 = ($s + 4) | 0 + $3 = _load_3($2) | 0 + $4 = tempRet0 + $5 = _bitshift64Shl($3 | 0, $4 | 0, 6) | 0 + $6 = tempRet0 + $7 = ($s + 7) | 0 + $8 = _load_3($7) | 0 + $9 = tempRet0 + $10 = _bitshift64Shl($8 | 0, $9 | 0, 5) | 0 + $11 = tempRet0 + $12 = ($s + 10) | 0 + $13 = _load_3($12) | 0 + $14 = tempRet0 + $15 = _bitshift64Shl($13 | 0, $14 | 0, 3) | 0 + $16 = tempRet0 + $17 = ($s + 13) | 0 + $18 = _load_3($17) | 0 + $19 = tempRet0 + $20 = _bitshift64Shl($18 | 0, $19 | 0, 2) | 0 + $21 = tempRet0 + $22 = ($s + 16) | 0 + $23 = _load_4($22) | 0 + $24 = tempRet0 + $25 = ($s + 20) | 0 + $26 = _load_3($25) | 0 + $27 = tempRet0 + $28 = _bitshift64Shl($26 | 0, $27 | 0, 7) | 0 + $29 = tempRet0 + $30 = ($s + 23) | 0 + $31 = _load_3($30) | 0 + $32 = tempRet0 + $33 = _bitshift64Shl($31 | 0, $32 | 0, 5) | 0 + $34 = tempRet0 + $35 = ($s + 26) | 0 + $36 = _load_3($35) | 0 + $37 = tempRet0 + $38 = _bitshift64Shl($36 | 0, $37 | 0, 4) | 0 + $39 = tempRet0 + $40 = ($s + 29) | 0 + $41 = _load_3($40) | 0 + $42 = tempRet0 + $43 = _bitshift64Shl($41 | 0, $42 | 0, 2) | 0 + $44 = tempRet0 + $45 = $43 & 33554428 + $46 = _i64Add($45 | 0, 0, 16777216, 0) | 0 + $47 = tempRet0 + $48 = _bitshift64Lshr($46 | 0, $47 | 0, 25) | 0 + $49 = tempRet0 + $50 = _i64Subtract(0, 0, $48 | 0, $49 | 0) | 0 + $51 = tempRet0 + $52 = $50 & 19 + $53 = _i64Add($52 | 0, 0, $0 | 0, $1 | 0) | 0 + $54 = tempRet0 + $55 = _bitshift64Shl($48 | 0, $49 | 0, 25) | 0 + $56 = tempRet0 + $57 = _i64Add($5 | 0, $6 | 0, 16777216, 0) | 0 + $58 = tempRet0 + $59 = _bitshift64Ashr($57 | 0, $58 | 0, 25) | 0 + $60 = tempRet0 + $61 = _i64Add($59 | 0, $60 | 0, $10 | 0, $11 | 0) | 0 + $62 = tempRet0 + $63 = _bitshift64Shl($59 | 0, $60 | 0, 25) | 0 + $64 = tempRet0 + $65 = _i64Subtract($5 | 0, $6 | 0, $63 | 0, $64 | 0) | 0 + $66 = tempRet0 + $67 = _i64Add($15 | 0, $16 | 0, 16777216, 0) | 0 + $68 = tempRet0 + $69 = _bitshift64Ashr($67 | 0, $68 | 0, 25) | 0 + $70 = tempRet0 + $71 = _i64Add($69 | 0, $70 | 0, $20 | 0, $21 | 0) | 0 + $72 = tempRet0 + $73 = _bitshift64Shl($69 | 0, $70 | 0, 25) | 0 + $74 = tempRet0 + $75 = _i64Subtract($15 | 0, $16 | 0, $73 | 0, $74 | 0) | 0 + $76 = tempRet0 + $77 = _i64Add($23 | 0, $24 | 0, 16777216, 0) | 0 + $78 = tempRet0 + $79 = _bitshift64Ashr($77 | 0, $78 | 0, 25) | 0 + $80 = tempRet0 + $81 = _i64Add($28 | 0, $29 | 0, $79 | 0, $80 | 0) | 0 + $82 = tempRet0 + $83 = _bitshift64Shl($79 | 0, $80 | 0, 25) | 0 + $84 = tempRet0 + $85 = _i64Subtract($23 | 0, $24 | 0, $83 | 0, $84 | 0) | 0 + $86 = tempRet0 + $87 = _i64Add($33 | 0, $34 | 0, 16777216, 0) | 0 + $88 = tempRet0 + $89 = _bitshift64Ashr($87 | 0, $88 | 0, 25) | 0 + $90 = tempRet0 + $91 = _i64Add($89 | 0, $90 | 0, $38 | 0, $39 | 0) | 0 + $92 = tempRet0 + $93 = _bitshift64Shl($89 | 0, $90 | 0, 25) | 0 + $94 = tempRet0 + $95 = _i64Add($53 | 0, $54 | 0, 33554432, 0) | 0 + $96 = tempRet0 + $97 = _bitshift64Ashr($95 | 0, $96 | 0, 26) | 0 + $98 = tempRet0 + $99 = _i64Add($65 | 0, $66 | 0, $97 | 0, $98 | 0) | 0 + $100 = tempRet0 + $101 = _bitshift64Shl($97 | 0, $98 | 0, 26) | 0 + $102 = tempRet0 + $103 = _i64Subtract($53 | 0, $54 | 0, $101 | 0, $102 | 0) | 0 + $104 = tempRet0 + $105 = _i64Add($61 | 0, $62 | 0, 33554432, 0) | 0 + $106 = tempRet0 + $107 = _bitshift64Ashr($105 | 0, $106 | 0, 26) | 0 + $108 = tempRet0 + $109 = _i64Add($75 | 0, $76 | 0, $107 | 0, $108 | 0) | 0 + $110 = tempRet0 + $111 = _bitshift64Shl($107 | 0, $108 | 0, 26) | 0 + $112 = tempRet0 + $113 = _i64Subtract($61 | 0, $62 | 0, $111 | 0, $112 | 0) | 0 + $114 = tempRet0 + $115 = _i64Add($71 | 0, $72 | 0, 33554432, 0) | 0 + $116 = tempRet0 + $117 = _bitshift64Ashr($115 | 0, $116 | 0, 26) | 0 + $118 = tempRet0 + $119 = _i64Add($85 | 0, $86 | 0, $117 | 0, $118 | 0) | 0 + $120 = tempRet0 + $121 = _bitshift64Shl($117 | 0, $118 | 0, 26) | 0 + $122 = tempRet0 + $123 = _i64Subtract($71 | 0, $72 | 0, $121 | 0, $122 | 0) | 0 + $124 = tempRet0 + $125 = _i64Add($81 | 0, $82 | 0, 33554432, 0) | 0 + $126 = tempRet0 + $127 = _bitshift64Ashr($125 | 0, $126 | 0, 26) | 0 + $128 = tempRet0 + $129 = _i64Add($127 | 0, $128 | 0, $33 | 0, $34 | 0) | 0 + $130 = tempRet0 + $131 = _i64Subtract($129 | 0, $130 | 0, $93 | 0, $94 | 0) | 0 + $132 = tempRet0 + $133 = _bitshift64Shl($127 | 0, $128 | 0, 26) | 0 + $134 = tempRet0 + $135 = _i64Subtract($81 | 0, $82 | 0, $133 | 0, $134 | 0) | 0 + $136 = tempRet0 + $137 = _i64Add($91 | 0, $92 | 0, 33554432, 0) | 0 + $138 = tempRet0 + $139 = _bitshift64Ashr($137 | 0, $138 | 0, 26) | 0 + $140 = tempRet0 + $141 = _i64Add($139 | 0, $140 | 0, $45 | 0, 0) | 0 + $142 = tempRet0 + $143 = _i64Subtract($141 | 0, $142 | 0, $55 | 0, $56 | 0) | 0 + $144 = tempRet0 + $145 = _bitshift64Shl($139 | 0, $140 | 0, 26) | 0 + $146 = tempRet0 + $147 = _i64Subtract($91 | 0, $92 | 0, $145 | 0, $146 | 0) | 0 + $148 = tempRet0 + HEAP32[$h >> 2] = $103 + $149 = ($h + 4) | 0 + HEAP32[$149 >> 2] = $99 + $150 = ($h + 8) | 0 + HEAP32[$150 >> 2] = $113 + $151 = ($h + 12) | 0 + HEAP32[$151 >> 2] = $109 + $152 = ($h + 16) | 0 + HEAP32[$152 >> 2] = $123 + $153 = ($h + 20) | 0 + HEAP32[$153 >> 2] = $119 + $154 = ($h + 24) | 0 + HEAP32[$154 >> 2] = $135 + $155 = ($h + 28) | 0 + HEAP32[$155 >> 2] = $131 + $156 = ($h + 32) | 0 + HEAP32[$156 >> 2] = $147 + $157 = ($h + 36) | 0 + HEAP32[$157 >> 2] = $143 + return + } + function _fe_invert($out, $z) { + $out = $out | 0 + $z = $z | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $exitcond = 0, + $exitcond10 = 0, + $exitcond11 = 0, + $i$74 = 0, + $i$83 = 0, + $i$92 = 0, + $t0 = 0, + $t1 = 0, + $t2 = 0, + $t3 = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 160) | 0 + $t0 = (sp + 120) | 0 + $t1 = (sp + 80) | 0 + $t2 = (sp + 40) | 0 + $t3 = sp + _fe_sq($t0, $z) + _fe_sq($t1, $t0) + _fe_sq($t1, $t1) + _fe_mul($t1, $z, $t1) + _fe_mul($t0, $t0, $t1) + _fe_sq($t2, $t0) + _fe_mul($t1, $t1, $t2) + _fe_sq($t2, $t1) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_mul($t1, $t2, $t1) + _fe_sq($t2, $t1) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_mul($t2, $t2, $t1) + _fe_sq($t3, $t2) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_sq($t3, $t3) + _fe_mul($t2, $t3, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_mul($t1, $t2, $t1) + _fe_sq($t2, $t1) + $i$74 = 1 + while (1) { + _fe_sq($t2, $t2) + $0 = ($i$74 + 1) | 0 + $exitcond11 = ($0 | 0) == 50 + if ($exitcond11) { + break + } else { + $i$74 = $0 + } + } + _fe_mul($t2, $t2, $t1) + _fe_sq($t3, $t2) + $i$83 = 1 + while (1) { + _fe_sq($t3, $t3) + $1 = ($i$83 + 1) | 0 + $exitcond10 = ($1 | 0) == 100 + if ($exitcond10) { + break + } else { + $i$83 = $1 + } + } + _fe_mul($t2, $t3, $t2) + _fe_sq($t2, $t2) + $i$92 = 1 + while (1) { + _fe_sq($t2, $t2) + $2 = ($i$92 + 1) | 0 + $exitcond = ($2 | 0) == 50 + if ($exitcond) { + break + } else { + $i$92 = $2 + } + } + _fe_mul($t1, $t2, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_mul($out, $t1, $t0) + STACKTOP = sp + return + } + function _fe_sq($h, $f) { + $h = $h | 0 + $f = $f | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $100 = 0, + $101 = 0, + $102 = 0, + $103 = 0, + $104 = 0, + $105 = 0, + $106 = 0, + $107 = 0, + $108 = 0, + $109 = 0, + $11 = 0, + $110 = 0, + $111 = 0, + $112 = 0, + $113 = 0, + $114 = 0, + $115 = 0 + var $116 = 0, + $117 = 0, + $118 = 0, + $119 = 0, + $12 = 0, + $120 = 0, + $121 = 0, + $122 = 0, + $123 = 0, + $124 = 0, + $125 = 0, + $126 = 0, + $127 = 0, + $128 = 0, + $129 = 0, + $13 = 0, + $130 = 0, + $131 = 0, + $132 = 0, + $133 = 0 + var $134 = 0, + $135 = 0, + $136 = 0, + $137 = 0, + $138 = 0, + $139 = 0, + $14 = 0, + $140 = 0, + $141 = 0, + $142 = 0, + $143 = 0, + $144 = 0, + $145 = 0, + $146 = 0, + $147 = 0, + $148 = 0, + $149 = 0, + $15 = 0, + $150 = 0, + $151 = 0 + var $152 = 0, + $153 = 0, + $154 = 0, + $155 = 0, + $156 = 0, + $157 = 0, + $158 = 0, + $159 = 0, + $16 = 0, + $160 = 0, + $161 = 0, + $162 = 0, + $163 = 0, + $164 = 0, + $165 = 0, + $166 = 0, + $167 = 0, + $168 = 0, + $169 = 0, + $17 = 0 + var $170 = 0, + $171 = 0, + $172 = 0, + $173 = 0, + $174 = 0, + $175 = 0, + $176 = 0, + $177 = 0, + $178 = 0, + $179 = 0, + $18 = 0, + $180 = 0, + $181 = 0, + $182 = 0, + $183 = 0, + $184 = 0, + $185 = 0, + $186 = 0, + $187 = 0, + $188 = 0 + var $189 = 0, + $19 = 0, + $190 = 0, + $191 = 0, + $192 = 0, + $193 = 0, + $194 = 0, + $195 = 0, + $196 = 0, + $197 = 0, + $198 = 0, + $199 = 0, + $2 = 0, + $20 = 0, + $200 = 0, + $201 = 0, + $202 = 0, + $203 = 0, + $204 = 0, + $205 = 0 + var $206 = 0, + $207 = 0, + $208 = 0, + $209 = 0, + $21 = 0, + $210 = 0, + $211 = 0, + $212 = 0, + $213 = 0, + $214 = 0, + $215 = 0, + $216 = 0, + $217 = 0, + $218 = 0, + $219 = 0, + $22 = 0, + $220 = 0, + $221 = 0, + $222 = 0, + $223 = 0 + var $224 = 0, + $225 = 0, + $226 = 0, + $227 = 0, + $228 = 0, + $229 = 0, + $23 = 0, + $230 = 0, + $231 = 0, + $232 = 0, + $233 = 0, + $234 = 0, + $235 = 0, + $236 = 0, + $237 = 0, + $238 = 0, + $239 = 0, + $24 = 0, + $240 = 0, + $241 = 0 + var $242 = 0, + $243 = 0, + $244 = 0, + $245 = 0, + $246 = 0, + $247 = 0, + $248 = 0, + $249 = 0, + $25 = 0, + $250 = 0, + $251 = 0, + $252 = 0, + $253 = 0, + $254 = 0, + $255 = 0, + $256 = 0, + $257 = 0, + $258 = 0, + $259 = 0, + $26 = 0 + var $260 = 0, + $261 = 0, + $262 = 0, + $263 = 0, + $264 = 0, + $265 = 0, + $266 = 0, + $267 = 0, + $268 = 0, + $269 = 0, + $27 = 0, + $270 = 0, + $271 = 0, + $272 = 0, + $273 = 0, + $274 = 0, + $275 = 0, + $276 = 0, + $277 = 0, + $278 = 0 + var $279 = 0, + $28 = 0, + $280 = 0, + $281 = 0, + $282 = 0, + $283 = 0, + $284 = 0, + $285 = 0, + $286 = 0, + $287 = 0, + $288 = 0, + $289 = 0, + $29 = 0, + $290 = 0, + $291 = 0, + $292 = 0, + $293 = 0, + $294 = 0, + $295 = 0, + $296 = 0 + var $297 = 0, + $298 = 0, + $299 = 0, + $3 = 0, + $30 = 0, + $300 = 0, + $301 = 0, + $302 = 0, + $303 = 0, + $304 = 0, + $305 = 0, + $306 = 0, + $307 = 0, + $308 = 0, + $309 = 0, + $31 = 0, + $310 = 0, + $311 = 0, + $312 = 0, + $313 = 0 + var $314 = 0, + $315 = 0, + $316 = 0, + $317 = 0, + $318 = 0, + $319 = 0, + $32 = 0, + $320 = 0, + $321 = 0, + $322 = 0, + $323 = 0, + $324 = 0, + $325 = 0, + $326 = 0, + $327 = 0, + $328 = 0, + $329 = 0, + $33 = 0, + $330 = 0, + $331 = 0 + var $332 = 0, + $333 = 0, + $334 = 0, + $335 = 0, + $336 = 0, + $337 = 0, + $338 = 0, + $339 = 0, + $34 = 0, + $340 = 0, + $341 = 0, + $342 = 0, + $343 = 0, + $344 = 0, + $345 = 0, + $346 = 0, + $347 = 0, + $348 = 0, + $349 = 0, + $35 = 0 + var $350 = 0, + $351 = 0, + $352 = 0, + $353 = 0, + $354 = 0, + $355 = 0, + $356 = 0, + $357 = 0, + $358 = 0, + $359 = 0, + $36 = 0, + $360 = 0, + $361 = 0, + $362 = 0, + $363 = 0, + $364 = 0, + $365 = 0, + $366 = 0, + $367 = 0, + $368 = 0 + var $369 = 0, + $37 = 0, + $370 = 0, + $371 = 0, + $372 = 0, + $373 = 0, + $374 = 0, + $375 = 0, + $376 = 0, + $377 = 0, + $378 = 0, + $379 = 0, + $38 = 0, + $380 = 0, + $381 = 0, + $382 = 0, + $383 = 0, + $384 = 0, + $385 = 0, + $386 = 0 + var $387 = 0, + $388 = 0, + $389 = 0, + $39 = 0, + $390 = 0, + $391 = 0, + $392 = 0, + $393 = 0, + $394 = 0, + $395 = 0, + $396 = 0, + $397 = 0, + $398 = 0, + $399 = 0, + $4 = 0, + $40 = 0, + $400 = 0, + $401 = 0, + $402 = 0, + $403 = 0 + var $404 = 0, + $405 = 0, + $406 = 0, + $407 = 0, + $408 = 0, + $41 = 0, + $42 = 0, + $43 = 0, + $44 = 0, + $45 = 0, + $46 = 0, + $47 = 0, + $48 = 0, + $49 = 0, + $5 = 0, + $50 = 0, + $51 = 0, + $52 = 0, + $53 = 0, + $54 = 0 + var $55 = 0, + $56 = 0, + $57 = 0, + $58 = 0, + $59 = 0, + $6 = 0, + $60 = 0, + $61 = 0, + $62 = 0, + $63 = 0, + $64 = 0, + $65 = 0, + $66 = 0, + $67 = 0, + $68 = 0, + $69 = 0, + $7 = 0, + $70 = 0, + $71 = 0, + $72 = 0 + var $73 = 0, + $74 = 0, + $75 = 0, + $76 = 0, + $77 = 0, + $78 = 0, + $79 = 0, + $8 = 0, + $80 = 0, + $81 = 0, + $82 = 0, + $83 = 0, + $84 = 0, + $85 = 0, + $86 = 0, + $87 = 0, + $88 = 0, + $89 = 0, + $9 = 0, + $90 = 0 + var $91 = 0, + $92 = 0, + $93 = 0, + $94 = 0, + $95 = 0, + $96 = 0, + $97 = 0, + $98 = 0, + $99 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = HEAP32[$f >> 2] | 0 + $1 = ($f + 4) | 0 + $2 = HEAP32[$1 >> 2] | 0 + $3 = ($f + 8) | 0 + $4 = HEAP32[$3 >> 2] | 0 + $5 = ($f + 12) | 0 + $6 = HEAP32[$5 >> 2] | 0 + $7 = ($f + 16) | 0 + $8 = HEAP32[$7 >> 2] | 0 + $9 = ($f + 20) | 0 + $10 = HEAP32[$9 >> 2] | 0 + $11 = ($f + 24) | 0 + $12 = HEAP32[$11 >> 2] | 0 + $13 = ($f + 28) | 0 + $14 = HEAP32[$13 >> 2] | 0 + $15 = ($f + 32) | 0 + $16 = HEAP32[$15 >> 2] | 0 + $17 = ($f + 36) | 0 + $18 = HEAP32[$17 >> 2] | 0 + $19 = $0 << 1 + $20 = $2 << 1 + $21 = $4 << 1 + $22 = $6 << 1 + $23 = $8 << 1 + $24 = $10 << 1 + $25 = $12 << 1 + $26 = $14 << 1 + $27 = ($10 * 38) | 0 + $28 = ($12 * 19) | 0 + $29 = ($14 * 38) | 0 + $30 = ($16 * 19) | 0 + $31 = ($18 * 38) | 0 + $32 = ($0 | 0) < 0 + $33 = ($32 << 31) >> 31 + $34 = ___muldi3($0 | 0, $33 | 0, $0 | 0, $33 | 0) | 0 + $35 = tempRet0 + $36 = ($19 | 0) < 0 + $37 = ($36 << 31) >> 31 + $38 = ($2 | 0) < 0 + $39 = ($38 << 31) >> 31 + $40 = ___muldi3($19 | 0, $37 | 0, $2 | 0, $39 | 0) | 0 + $41 = tempRet0 + $42 = ($4 | 0) < 0 + $43 = ($42 << 31) >> 31 + $44 = ___muldi3($4 | 0, $43 | 0, $19 | 0, $37 | 0) | 0 + $45 = tempRet0 + $46 = ($6 | 0) < 0 + $47 = ($46 << 31) >> 31 + $48 = ___muldi3($6 | 0, $47 | 0, $19 | 0, $37 | 0) | 0 + $49 = tempRet0 + $50 = ($8 | 0) < 0 + $51 = ($50 << 31) >> 31 + $52 = ___muldi3($8 | 0, $51 | 0, $19 | 0, $37 | 0) | 0 + $53 = tempRet0 + $54 = ($10 | 0) < 0 + $55 = ($54 << 31) >> 31 + $56 = ___muldi3($10 | 0, $55 | 0, $19 | 0, $37 | 0) | 0 + $57 = tempRet0 + $58 = ($12 | 0) < 0 + $59 = ($58 << 31) >> 31 + $60 = ___muldi3($12 | 0, $59 | 0, $19 | 0, $37 | 0) | 0 + $61 = tempRet0 + $62 = ($14 | 0) < 0 + $63 = ($62 << 31) >> 31 + $64 = ___muldi3($14 | 0, $63 | 0, $19 | 0, $37 | 0) | 0 + $65 = tempRet0 + $66 = ($16 | 0) < 0 + $67 = ($66 << 31) >> 31 + $68 = ___muldi3($16 | 0, $67 | 0, $19 | 0, $37 | 0) | 0 + $69 = tempRet0 + $70 = ($18 | 0) < 0 + $71 = ($70 << 31) >> 31 + $72 = ___muldi3($18 | 0, $71 | 0, $19 | 0, $37 | 0) | 0 + $73 = tempRet0 + $74 = ($20 | 0) < 0 + $75 = ($74 << 31) >> 31 + $76 = ___muldi3($20 | 0, $75 | 0, $2 | 0, $39 | 0) | 0 + $77 = tempRet0 + $78 = ___muldi3($20 | 0, $75 | 0, $4 | 0, $43 | 0) | 0 + $79 = tempRet0 + $80 = ($22 | 0) < 0 + $81 = ($80 << 31) >> 31 + $82 = ___muldi3($22 | 0, $81 | 0, $20 | 0, $75 | 0) | 0 + $83 = tempRet0 + $84 = ___muldi3($8 | 0, $51 | 0, $20 | 0, $75 | 0) | 0 + $85 = tempRet0 + $86 = ($24 | 0) < 0 + $87 = ($86 << 31) >> 31 + $88 = ___muldi3($24 | 0, $87 | 0, $20 | 0, $75 | 0) | 0 + $89 = tempRet0 + $90 = ___muldi3($12 | 0, $59 | 0, $20 | 0, $75 | 0) | 0 + $91 = tempRet0 + $92 = ($26 | 0) < 0 + $93 = ($92 << 31) >> 31 + $94 = ___muldi3($26 | 0, $93 | 0, $20 | 0, $75 | 0) | 0 + $95 = tempRet0 + $96 = ___muldi3($16 | 0, $67 | 0, $20 | 0, $75 | 0) | 0 + $97 = tempRet0 + $98 = ($31 | 0) < 0 + $99 = ($98 << 31) >> 31 + $100 = ___muldi3($31 | 0, $99 | 0, $20 | 0, $75 | 0) | 0 + $101 = tempRet0 + $102 = ___muldi3($4 | 0, $43 | 0, $4 | 0, $43 | 0) | 0 + $103 = tempRet0 + $104 = ($21 | 0) < 0 + $105 = ($104 << 31) >> 31 + $106 = ___muldi3($21 | 0, $105 | 0, $6 | 0, $47 | 0) | 0 + $107 = tempRet0 + $108 = ___muldi3($8 | 0, $51 | 0, $21 | 0, $105 | 0) | 0 + $109 = tempRet0 + $110 = ___muldi3($10 | 0, $55 | 0, $21 | 0, $105 | 0) | 0 + $111 = tempRet0 + $112 = ___muldi3($12 | 0, $59 | 0, $21 | 0, $105 | 0) | 0 + $113 = tempRet0 + $114 = ___muldi3($14 | 0, $63 | 0, $21 | 0, $105 | 0) | 0 + $115 = tempRet0 + $116 = ($30 | 0) < 0 + $117 = ($116 << 31) >> 31 + $118 = ___muldi3($30 | 0, $117 | 0, $21 | 0, $105 | 0) | 0 + $119 = tempRet0 + $120 = ___muldi3($31 | 0, $99 | 0, $4 | 0, $43 | 0) | 0 + $121 = tempRet0 + $122 = ___muldi3($22 | 0, $81 | 0, $6 | 0, $47 | 0) | 0 + $123 = tempRet0 + $124 = ___muldi3($22 | 0, $81 | 0, $8 | 0, $51 | 0) | 0 + $125 = tempRet0 + $126 = ___muldi3($24 | 0, $87 | 0, $22 | 0, $81 | 0) | 0 + $127 = tempRet0 + $128 = ___muldi3($12 | 0, $59 | 0, $22 | 0, $81 | 0) | 0 + $129 = tempRet0 + $130 = ($29 | 0) < 0 + $131 = ($130 << 31) >> 31 + $132 = ___muldi3($29 | 0, $131 | 0, $22 | 0, $81 | 0) | 0 + $133 = tempRet0 + $134 = ___muldi3($30 | 0, $117 | 0, $22 | 0, $81 | 0) | 0 + $135 = tempRet0 + $136 = ___muldi3($31 | 0, $99 | 0, $22 | 0, $81 | 0) | 0 + $137 = tempRet0 + $138 = ___muldi3($8 | 0, $51 | 0, $8 | 0, $51 | 0) | 0 + $139 = tempRet0 + $140 = ($23 | 0) < 0 + $141 = ($140 << 31) >> 31 + $142 = ___muldi3($23 | 0, $141 | 0, $10 | 0, $55 | 0) | 0 + $143 = tempRet0 + $144 = ($28 | 0) < 0 + $145 = ($144 << 31) >> 31 + $146 = ___muldi3($28 | 0, $145 | 0, $23 | 0, $141 | 0) | 0 + $147 = tempRet0 + $148 = ___muldi3($29 | 0, $131 | 0, $8 | 0, $51 | 0) | 0 + $149 = tempRet0 + $150 = ___muldi3($30 | 0, $117 | 0, $23 | 0, $141 | 0) | 0 + $151 = tempRet0 + $152 = ___muldi3($31 | 0, $99 | 0, $8 | 0, $51 | 0) | 0 + $153 = tempRet0 + $154 = ($27 | 0) < 0 + $155 = ($154 << 31) >> 31 + $156 = ___muldi3($27 | 0, $155 | 0, $10 | 0, $55 | 0) | 0 + $157 = tempRet0 + $158 = ___muldi3($28 | 0, $145 | 0, $24 | 0, $87 | 0) | 0 + $159 = tempRet0 + $160 = ___muldi3($29 | 0, $131 | 0, $24 | 0, $87 | 0) | 0 + $161 = tempRet0 + $162 = ___muldi3($30 | 0, $117 | 0, $24 | 0, $87 | 0) | 0 + $163 = tempRet0 + $164 = ___muldi3($31 | 0, $99 | 0, $24 | 0, $87 | 0) | 0 + $165 = tempRet0 + $166 = ___muldi3($28 | 0, $145 | 0, $12 | 0, $59 | 0) | 0 + $167 = tempRet0 + $168 = ___muldi3($29 | 0, $131 | 0, $12 | 0, $59 | 0) | 0 + $169 = tempRet0 + $170 = ($25 | 0) < 0 + $171 = ($170 << 31) >> 31 + $172 = ___muldi3($30 | 0, $117 | 0, $25 | 0, $171 | 0) | 0 + $173 = tempRet0 + $174 = ___muldi3($31 | 0, $99 | 0, $12 | 0, $59 | 0) | 0 + $175 = tempRet0 + $176 = ___muldi3($29 | 0, $131 | 0, $14 | 0, $63 | 0) | 0 + $177 = tempRet0 + $178 = ___muldi3($30 | 0, $117 | 0, $26 | 0, $93 | 0) | 0 + $179 = tempRet0 + $180 = ___muldi3($31 | 0, $99 | 0, $26 | 0, $93 | 0) | 0 + $181 = tempRet0 + $182 = ___muldi3($30 | 0, $117 | 0, $16 | 0, $67 | 0) | 0 + $183 = tempRet0 + $184 = ___muldi3($31 | 0, $99 | 0, $16 | 0, $67 | 0) | 0 + $185 = tempRet0 + $186 = ___muldi3($31 | 0, $99 | 0, $18 | 0, $71 | 0) | 0 + $187 = tempRet0 + $188 = _i64Add($156 | 0, $157 | 0, $34 | 0, $35 | 0) | 0 + $189 = tempRet0 + $190 = _i64Add($188 | 0, $189 | 0, $146 | 0, $147 | 0) | 0 + $191 = tempRet0 + $192 = _i64Add($190 | 0, $191 | 0, $132 | 0, $133 | 0) | 0 + $193 = tempRet0 + $194 = _i64Add($192 | 0, $193 | 0, $118 | 0, $119 | 0) | 0 + $195 = tempRet0 + $196 = _i64Add($194 | 0, $195 | 0, $100 | 0, $101 | 0) | 0 + $197 = tempRet0 + $198 = _i64Add($44 | 0, $45 | 0, $76 | 0, $77 | 0) | 0 + $199 = tempRet0 + $200 = _i64Add($48 | 0, $49 | 0, $78 | 0, $79 | 0) | 0 + $201 = tempRet0 + $202 = _i64Add($82 | 0, $83 | 0, $102 | 0, $103 | 0) | 0 + $203 = tempRet0 + $204 = _i64Add($202 | 0, $203 | 0, $52 | 0, $53 | 0) | 0 + $205 = tempRet0 + $206 = _i64Add($204 | 0, $205 | 0, $176 | 0, $177 | 0) | 0 + $207 = tempRet0 + $208 = _i64Add($206 | 0, $207 | 0, $172 | 0, $173 | 0) | 0 + $209 = tempRet0 + $210 = _i64Add($208 | 0, $209 | 0, $164 | 0, $165 | 0) | 0 + $211 = tempRet0 + $212 = _i64Add($196 | 0, $197 | 0, 33554432, 0) | 0 + $213 = tempRet0 + $214 = _bitshift64Ashr($212 | 0, $213 | 0, 26) | 0 + $215 = tempRet0 + $216 = _i64Add($158 | 0, $159 | 0, $40 | 0, $41 | 0) | 0 + $217 = tempRet0 + $218 = _i64Add($216 | 0, $217 | 0, $148 | 0, $149 | 0) | 0 + $219 = tempRet0 + $220 = _i64Add($218 | 0, $219 | 0, $134 | 0, $135 | 0) | 0 + $221 = tempRet0 + $222 = _i64Add($220 | 0, $221 | 0, $120 | 0, $121 | 0) | 0 + $223 = tempRet0 + $224 = _i64Add($222 | 0, $223 | 0, $214 | 0, $215 | 0) | 0 + $225 = tempRet0 + $226 = _bitshift64Shl($214 | 0, $215 | 0, 26) | 0 + $227 = tempRet0 + $228 = _i64Subtract($196 | 0, $197 | 0, $226 | 0, $227 | 0) | 0 + $229 = tempRet0 + $230 = _i64Add($210 | 0, $211 | 0, 33554432, 0) | 0 + $231 = tempRet0 + $232 = _bitshift64Ashr($230 | 0, $231 | 0, 26) | 0 + $233 = tempRet0 + $234 = _i64Add($84 | 0, $85 | 0, $106 | 0, $107 | 0) | 0 + $235 = tempRet0 + $236 = _i64Add($234 | 0, $235 | 0, $56 | 0, $57 | 0) | 0 + $237 = tempRet0 + $238 = _i64Add($236 | 0, $237 | 0, $178 | 0, $179 | 0) | 0 + $239 = tempRet0 + $240 = _i64Add($238 | 0, $239 | 0, $174 | 0, $175 | 0) | 0 + $241 = tempRet0 + $242 = _i64Add($240 | 0, $241 | 0, $232 | 0, $233 | 0) | 0 + $243 = tempRet0 + $244 = _bitshift64Shl($232 | 0, $233 | 0, 26) | 0 + $245 = tempRet0 + $246 = _i64Subtract($210 | 0, $211 | 0, $244 | 0, $245 | 0) | 0 + $247 = tempRet0 + $248 = _i64Add($224 | 0, $225 | 0, 16777216, 0) | 0 + $249 = tempRet0 + $250 = _bitshift64Ashr($248 | 0, $249 | 0, 25) | 0 + $251 = tempRet0 + $252 = _i64Add($198 | 0, $199 | 0, $166 | 0, $167 | 0) | 0 + $253 = tempRet0 + $254 = _i64Add($252 | 0, $253 | 0, $160 | 0, $161 | 0) | 0 + $255 = tempRet0 + $256 = _i64Add($254 | 0, $255 | 0, $150 | 0, $151 | 0) | 0 + $257 = tempRet0 + $258 = _i64Add($256 | 0, $257 | 0, $136 | 0, $137 | 0) | 0 + $259 = tempRet0 + $260 = _i64Add($258 | 0, $259 | 0, $250 | 0, $251 | 0) | 0 + $261 = tempRet0 + $262 = _bitshift64Shl($250 | 0, $251 | 0, 25) | 0 + $263 = tempRet0 + $264 = _i64Subtract($224 | 0, $225 | 0, $262 | 0, $263 | 0) | 0 + $265 = tempRet0 + $266 = _i64Add($242 | 0, $243 | 0, 16777216, 0) | 0 + $267 = tempRet0 + $268 = _bitshift64Ashr($266 | 0, $267 | 0, 25) | 0 + $269 = tempRet0 + $270 = _i64Add($122 | 0, $123 | 0, $108 | 0, $109 | 0) | 0 + $271 = tempRet0 + $272 = _i64Add($270 | 0, $271 | 0, $88 | 0, $89 | 0) | 0 + $273 = tempRet0 + $274 = _i64Add($272 | 0, $273 | 0, $60 | 0, $61 | 0) | 0 + $275 = tempRet0 + $276 = _i64Add($274 | 0, $275 | 0, $182 | 0, $183 | 0) | 0 + $277 = tempRet0 + $278 = _i64Add($276 | 0, $277 | 0, $180 | 0, $181 | 0) | 0 + $279 = tempRet0 + $280 = _i64Add($278 | 0, $279 | 0, $268 | 0, $269 | 0) | 0 + $281 = tempRet0 + $282 = _bitshift64Shl($268 | 0, $269 | 0, 25) | 0 + $283 = tempRet0 + $284 = _i64Subtract($242 | 0, $243 | 0, $282 | 0, $283 | 0) | 0 + $285 = tempRet0 + $286 = _i64Add($260 | 0, $261 | 0, 33554432, 0) | 0 + $287 = tempRet0 + $288 = _bitshift64Ashr($286 | 0, $287 | 0, 26) | 0 + $289 = tempRet0 + $290 = _i64Add($200 | 0, $201 | 0, $168 | 0, $169 | 0) | 0 + $291 = tempRet0 + $292 = _i64Add($290 | 0, $291 | 0, $162 | 0, $163 | 0) | 0 + $293 = tempRet0 + $294 = _i64Add($292 | 0, $293 | 0, $152 | 0, $153 | 0) | 0 + $295 = tempRet0 + $296 = _i64Add($294 | 0, $295 | 0, $288 | 0, $289 | 0) | 0 + $297 = tempRet0 + $298 = _bitshift64Shl($288 | 0, $289 | 0, 26) | 0 + $299 = tempRet0 + $300 = _i64Subtract($260 | 0, $261 | 0, $298 | 0, $299 | 0) | 0 + $301 = tempRet0 + $302 = _i64Add($280 | 0, $281 | 0, 33554432, 0) | 0 + $303 = tempRet0 + $304 = _bitshift64Ashr($302 | 0, $303 | 0, 26) | 0 + $305 = tempRet0 + $306 = _i64Add($110 | 0, $111 | 0, $124 | 0, $125 | 0) | 0 + $307 = tempRet0 + $308 = _i64Add($306 | 0, $307 | 0, $90 | 0, $91 | 0) | 0 + $309 = tempRet0 + $310 = _i64Add($308 | 0, $309 | 0, $64 | 0, $65 | 0) | 0 + $311 = tempRet0 + $312 = _i64Add($310 | 0, $311 | 0, $184 | 0, $185 | 0) | 0 + $313 = tempRet0 + $314 = _i64Add($312 | 0, $313 | 0, $304 | 0, $305 | 0) | 0 + $315 = tempRet0 + $316 = _bitshift64Shl($304 | 0, $305 | 0, 26) | 0 + $317 = tempRet0 + $318 = _i64Subtract($280 | 0, $281 | 0, $316 | 0, $317 | 0) | 0 + $319 = tempRet0 + $320 = _i64Add($296 | 0, $297 | 0, 16777216, 0) | 0 + $321 = tempRet0 + $322 = _bitshift64Ashr($320 | 0, $321 | 0, 25) | 0 + $323 = tempRet0 + $324 = _i64Add($322 | 0, $323 | 0, $246 | 0, $247 | 0) | 0 + $325 = tempRet0 + $326 = _bitshift64Shl($322 | 0, $323 | 0, 25) | 0 + $327 = tempRet0 + $328 = _i64Subtract($296 | 0, $297 | 0, $326 | 0, $327 | 0) | 0 + $329 = tempRet0 + $330 = _i64Add($314 | 0, $315 | 0, 16777216, 0) | 0 + $331 = tempRet0 + $332 = _bitshift64Ashr($330 | 0, $331 | 0, 25) | 0 + $333 = tempRet0 + $334 = _i64Add($112 | 0, $113 | 0, $138 | 0, $139 | 0) | 0 + $335 = tempRet0 + $336 = _i64Add($334 | 0, $335 | 0, $126 | 0, $127 | 0) | 0 + $337 = tempRet0 + $338 = _i64Add($336 | 0, $337 | 0, $94 | 0, $95 | 0) | 0 + $339 = tempRet0 + $340 = _i64Add($338 | 0, $339 | 0, $68 | 0, $69 | 0) | 0 + $341 = tempRet0 + $342 = _i64Add($340 | 0, $341 | 0, $186 | 0, $187 | 0) | 0 + $343 = tempRet0 + $344 = _i64Add($342 | 0, $343 | 0, $332 | 0, $333 | 0) | 0 + $345 = tempRet0 + $346 = _bitshift64Shl($332 | 0, $333 | 0, 25) | 0 + $347 = tempRet0 + $348 = _i64Subtract($314 | 0, $315 | 0, $346 | 0, $347 | 0) | 0 + $349 = tempRet0 + $350 = _i64Add($324 | 0, $325 | 0, 33554432, 0) | 0 + $351 = tempRet0 + $352 = _bitshift64Ashr($350 | 0, $351 | 0, 26) | 0 + $353 = tempRet0 + $354 = _i64Add($284 | 0, $285 | 0, $352 | 0, $353 | 0) | 0 + $355 = tempRet0 + $356 = _bitshift64Shl($352 | 0, $353 | 0, 26) | 0 + $357 = tempRet0 + $358 = _i64Subtract($324 | 0, $325 | 0, $356 | 0, $357 | 0) | 0 + $359 = tempRet0 + $360 = _i64Add($344 | 0, $345 | 0, 33554432, 0) | 0 + $361 = tempRet0 + $362 = _bitshift64Ashr($360 | 0, $361 | 0, 26) | 0 + $363 = tempRet0 + $364 = _i64Add($128 | 0, $129 | 0, $142 | 0, $143 | 0) | 0 + $365 = tempRet0 + $366 = _i64Add($364 | 0, $365 | 0, $114 | 0, $115 | 0) | 0 + $367 = tempRet0 + $368 = _i64Add($366 | 0, $367 | 0, $96 | 0, $97 | 0) | 0 + $369 = tempRet0 + $370 = _i64Add($368 | 0, $369 | 0, $72 | 0, $73 | 0) | 0 + $371 = tempRet0 + $372 = _i64Add($370 | 0, $371 | 0, $362 | 0, $363 | 0) | 0 + $373 = tempRet0 + $374 = _bitshift64Shl($362 | 0, $363 | 0, 26) | 0 + $375 = tempRet0 + $376 = _i64Subtract($344 | 0, $345 | 0, $374 | 0, $375 | 0) | 0 + $377 = tempRet0 + $378 = _i64Add($372 | 0, $373 | 0, 16777216, 0) | 0 + $379 = tempRet0 + $380 = _bitshift64Ashr($378 | 0, $379 | 0, 25) | 0 + $381 = tempRet0 + $382 = ___muldi3($380 | 0, $381 | 0, 19, 0) | 0 + $383 = tempRet0 + $384 = _i64Add($382 | 0, $383 | 0, $228 | 0, $229 | 0) | 0 + $385 = tempRet0 + $386 = _bitshift64Shl($380 | 0, $381 | 0, 25) | 0 + $387 = tempRet0 + $388 = _i64Subtract($372 | 0, $373 | 0, $386 | 0, $387 | 0) | 0 + $389 = tempRet0 + $390 = _i64Add($384 | 0, $385 | 0, 33554432, 0) | 0 + $391 = tempRet0 + $392 = _bitshift64Ashr($390 | 0, $391 | 0, 26) | 0 + $393 = tempRet0 + $394 = _i64Add($264 | 0, $265 | 0, $392 | 0, $393 | 0) | 0 + $395 = tempRet0 + $396 = _bitshift64Shl($392 | 0, $393 | 0, 26) | 0 + $397 = tempRet0 + $398 = _i64Subtract($384 | 0, $385 | 0, $396 | 0, $397 | 0) | 0 + $399 = tempRet0 + HEAP32[$h >> 2] = $398 + $400 = ($h + 4) | 0 + HEAP32[$400 >> 2] = $394 + $401 = ($h + 8) | 0 + HEAP32[$401 >> 2] = $300 + $402 = ($h + 12) | 0 + HEAP32[$402 >> 2] = $328 + $403 = ($h + 16) | 0 + HEAP32[$403 >> 2] = $358 + $404 = ($h + 20) | 0 + HEAP32[$404 >> 2] = $354 + $405 = ($h + 24) | 0 + HEAP32[$405 >> 2] = $318 + $406 = ($h + 28) | 0 + HEAP32[$406 >> 2] = $348 + $407 = ($h + 32) | 0 + HEAP32[$407 >> 2] = $376 + $408 = ($h + 36) | 0 + HEAP32[$408 >> 2] = $388 + return + } + function _fe_mul($h, $f, $g) { + $h = $h | 0 + $f = $f | 0 + $g = $g | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $100 = 0, + $101 = 0, + $102 = 0, + $103 = 0, + $104 = 0, + $105 = 0, + $106 = 0, + $107 = 0, + $108 = 0, + $109 = 0, + $11 = 0, + $110 = 0, + $111 = 0, + $112 = 0, + $113 = 0, + $114 = 0, + $115 = 0 + var $116 = 0, + $117 = 0, + $118 = 0, + $119 = 0, + $12 = 0, + $120 = 0, + $121 = 0, + $122 = 0, + $123 = 0, + $124 = 0, + $125 = 0, + $126 = 0, + $127 = 0, + $128 = 0, + $129 = 0, + $13 = 0, + $130 = 0, + $131 = 0, + $132 = 0, + $133 = 0 + var $134 = 0, + $135 = 0, + $136 = 0, + $137 = 0, + $138 = 0, + $139 = 0, + $14 = 0, + $140 = 0, + $141 = 0, + $142 = 0, + $143 = 0, + $144 = 0, + $145 = 0, + $146 = 0, + $147 = 0, + $148 = 0, + $149 = 0, + $15 = 0, + $150 = 0, + $151 = 0 + var $152 = 0, + $153 = 0, + $154 = 0, + $155 = 0, + $156 = 0, + $157 = 0, + $158 = 0, + $159 = 0, + $16 = 0, + $160 = 0, + $161 = 0, + $162 = 0, + $163 = 0, + $164 = 0, + $165 = 0, + $166 = 0, + $167 = 0, + $168 = 0, + $169 = 0, + $17 = 0 + var $170 = 0, + $171 = 0, + $172 = 0, + $173 = 0, + $174 = 0, + $175 = 0, + $176 = 0, + $177 = 0, + $178 = 0, + $179 = 0, + $18 = 0, + $180 = 0, + $181 = 0, + $182 = 0, + $183 = 0, + $184 = 0, + $185 = 0, + $186 = 0, + $187 = 0, + $188 = 0 + var $189 = 0, + $19 = 0, + $190 = 0, + $191 = 0, + $192 = 0, + $193 = 0, + $194 = 0, + $195 = 0, + $196 = 0, + $197 = 0, + $198 = 0, + $199 = 0, + $2 = 0, + $20 = 0, + $200 = 0, + $201 = 0, + $202 = 0, + $203 = 0, + $204 = 0, + $205 = 0 + var $206 = 0, + $207 = 0, + $208 = 0, + $209 = 0, + $21 = 0, + $210 = 0, + $211 = 0, + $212 = 0, + $213 = 0, + $214 = 0, + $215 = 0, + $216 = 0, + $217 = 0, + $218 = 0, + $219 = 0, + $22 = 0, + $220 = 0, + $221 = 0, + $222 = 0, + $223 = 0 + var $224 = 0, + $225 = 0, + $226 = 0, + $227 = 0, + $228 = 0, + $229 = 0, + $23 = 0, + $230 = 0, + $231 = 0, + $232 = 0, + $233 = 0, + $234 = 0, + $235 = 0, + $236 = 0, + $237 = 0, + $238 = 0, + $239 = 0, + $24 = 0, + $240 = 0, + $241 = 0 + var $242 = 0, + $243 = 0, + $244 = 0, + $245 = 0, + $246 = 0, + $247 = 0, + $248 = 0, + $249 = 0, + $25 = 0, + $250 = 0, + $251 = 0, + $252 = 0, + $253 = 0, + $254 = 0, + $255 = 0, + $256 = 0, + $257 = 0, + $258 = 0, + $259 = 0, + $26 = 0 + var $260 = 0, + $261 = 0, + $262 = 0, + $263 = 0, + $264 = 0, + $265 = 0, + $266 = 0, + $267 = 0, + $268 = 0, + $269 = 0, + $27 = 0, + $270 = 0, + $271 = 0, + $272 = 0, + $273 = 0, + $274 = 0, + $275 = 0, + $276 = 0, + $277 = 0, + $278 = 0 + var $279 = 0, + $28 = 0, + $280 = 0, + $281 = 0, + $282 = 0, + $283 = 0, + $284 = 0, + $285 = 0, + $286 = 0, + $287 = 0, + $288 = 0, + $289 = 0, + $29 = 0, + $290 = 0, + $291 = 0, + $292 = 0, + $293 = 0, + $294 = 0, + $295 = 0, + $296 = 0 + var $297 = 0, + $298 = 0, + $299 = 0, + $3 = 0, + $30 = 0, + $300 = 0, + $301 = 0, + $302 = 0, + $303 = 0, + $304 = 0, + $305 = 0, + $306 = 0, + $307 = 0, + $308 = 0, + $309 = 0, + $31 = 0, + $310 = 0, + $311 = 0, + $312 = 0, + $313 = 0 + var $314 = 0, + $315 = 0, + $316 = 0, + $317 = 0, + $318 = 0, + $319 = 0, + $32 = 0, + $320 = 0, + $321 = 0, + $322 = 0, + $323 = 0, + $324 = 0, + $325 = 0, + $326 = 0, + $327 = 0, + $328 = 0, + $329 = 0, + $33 = 0, + $330 = 0, + $331 = 0 + var $332 = 0, + $333 = 0, + $334 = 0, + $335 = 0, + $336 = 0, + $337 = 0, + $338 = 0, + $339 = 0, + $34 = 0, + $340 = 0, + $341 = 0, + $342 = 0, + $343 = 0, + $344 = 0, + $345 = 0, + $346 = 0, + $347 = 0, + $348 = 0, + $349 = 0, + $35 = 0 + var $350 = 0, + $351 = 0, + $352 = 0, + $353 = 0, + $354 = 0, + $355 = 0, + $356 = 0, + $357 = 0, + $358 = 0, + $359 = 0, + $36 = 0, + $360 = 0, + $361 = 0, + $362 = 0, + $363 = 0, + $364 = 0, + $365 = 0, + $366 = 0, + $367 = 0, + $368 = 0 + var $369 = 0, + $37 = 0, + $370 = 0, + $371 = 0, + $372 = 0, + $373 = 0, + $374 = 0, + $375 = 0, + $376 = 0, + $377 = 0, + $378 = 0, + $379 = 0, + $38 = 0, + $380 = 0, + $381 = 0, + $382 = 0, + $383 = 0, + $384 = 0, + $385 = 0, + $386 = 0 + var $387 = 0, + $388 = 0, + $389 = 0, + $39 = 0, + $390 = 0, + $391 = 0, + $392 = 0, + $393 = 0, + $394 = 0, + $395 = 0, + $396 = 0, + $397 = 0, + $398 = 0, + $399 = 0, + $4 = 0, + $40 = 0, + $400 = 0, + $401 = 0, + $402 = 0, + $403 = 0 + var $404 = 0, + $405 = 0, + $406 = 0, + $407 = 0, + $408 = 0, + $409 = 0, + $41 = 0, + $410 = 0, + $411 = 0, + $412 = 0, + $413 = 0, + $414 = 0, + $415 = 0, + $416 = 0, + $417 = 0, + $418 = 0, + $419 = 0, + $42 = 0, + $420 = 0, + $421 = 0 + var $422 = 0, + $423 = 0, + $424 = 0, + $425 = 0, + $426 = 0, + $427 = 0, + $428 = 0, + $429 = 0, + $43 = 0, + $430 = 0, + $431 = 0, + $432 = 0, + $433 = 0, + $434 = 0, + $435 = 0, + $436 = 0, + $437 = 0, + $438 = 0, + $439 = 0, + $44 = 0 + var $440 = 0, + $441 = 0, + $442 = 0, + $443 = 0, + $444 = 0, + $445 = 0, + $446 = 0, + $447 = 0, + $448 = 0, + $449 = 0, + $45 = 0, + $450 = 0, + $451 = 0, + $452 = 0, + $453 = 0, + $454 = 0, + $455 = 0, + $456 = 0, + $457 = 0, + $458 = 0 + var $459 = 0, + $46 = 0, + $460 = 0, + $461 = 0, + $462 = 0, + $463 = 0, + $464 = 0, + $465 = 0, + $466 = 0, + $467 = 0, + $468 = 0, + $469 = 0, + $47 = 0, + $470 = 0, + $471 = 0, + $472 = 0, + $473 = 0, + $474 = 0, + $475 = 0, + $476 = 0 + var $477 = 0, + $478 = 0, + $479 = 0, + $48 = 0, + $480 = 0, + $481 = 0, + $482 = 0, + $483 = 0, + $484 = 0, + $485 = 0, + $486 = 0, + $487 = 0, + $488 = 0, + $489 = 0, + $49 = 0, + $490 = 0, + $491 = 0, + $492 = 0, + $493 = 0, + $494 = 0 + var $495 = 0, + $496 = 0, + $497 = 0, + $498 = 0, + $499 = 0, + $5 = 0, + $50 = 0, + $500 = 0, + $501 = 0, + $502 = 0, + $503 = 0, + $504 = 0, + $505 = 0, + $506 = 0, + $507 = 0, + $508 = 0, + $509 = 0, + $51 = 0, + $510 = 0, + $511 = 0 + var $512 = 0, + $513 = 0, + $514 = 0, + $515 = 0, + $516 = 0, + $517 = 0, + $518 = 0, + $519 = 0, + $52 = 0, + $520 = 0, + $521 = 0, + $522 = 0, + $523 = 0, + $524 = 0, + $525 = 0, + $526 = 0, + $527 = 0, + $528 = 0, + $529 = 0, + $53 = 0 + var $530 = 0, + $531 = 0, + $532 = 0, + $533 = 0, + $534 = 0, + $535 = 0, + $536 = 0, + $537 = 0, + $538 = 0, + $539 = 0, + $54 = 0, + $540 = 0, + $541 = 0, + $542 = 0, + $543 = 0, + $544 = 0, + $545 = 0, + $546 = 0, + $547 = 0, + $548 = 0 + var $549 = 0, + $55 = 0, + $550 = 0, + $551 = 0, + $552 = 0, + $553 = 0, + $554 = 0, + $555 = 0, + $556 = 0, + $557 = 0, + $558 = 0, + $559 = 0, + $56 = 0, + $560 = 0, + $561 = 0, + $562 = 0, + $563 = 0, + $564 = 0, + $565 = 0, + $566 = 0 + var $567 = 0, + $568 = 0, + $569 = 0, + $57 = 0, + $570 = 0, + $571 = 0, + $572 = 0, + $573 = 0, + $574 = 0, + $575 = 0, + $576 = 0, + $577 = 0, + $578 = 0, + $579 = 0, + $58 = 0, + $580 = 0, + $581 = 0, + $582 = 0, + $583 = 0, + $584 = 0 + var $585 = 0, + $586 = 0, + $587 = 0, + $588 = 0, + $589 = 0, + $59 = 0, + $590 = 0, + $591 = 0, + $592 = 0, + $593 = 0, + $594 = 0, + $595 = 0, + $596 = 0, + $597 = 0, + $598 = 0, + $599 = 0, + $6 = 0, + $60 = 0, + $600 = 0, + $601 = 0 + var $602 = 0, + $603 = 0, + $604 = 0, + $605 = 0, + $606 = 0, + $607 = 0, + $608 = 0, + $609 = 0, + $61 = 0, + $610 = 0, + $611 = 0, + $612 = 0, + $613 = 0, + $614 = 0, + $615 = 0, + $616 = 0, + $617 = 0, + $618 = 0, + $619 = 0, + $62 = 0 + var $620 = 0, + $621 = 0, + $622 = 0, + $623 = 0, + $624 = 0, + $625 = 0, + $626 = 0, + $627 = 0, + $628 = 0, + $629 = 0, + $63 = 0, + $630 = 0, + $64 = 0, + $65 = 0, + $66 = 0, + $67 = 0, + $68 = 0, + $69 = 0, + $7 = 0, + $70 = 0 + var $71 = 0, + $72 = 0, + $73 = 0, + $74 = 0, + $75 = 0, + $76 = 0, + $77 = 0, + $78 = 0, + $79 = 0, + $8 = 0, + $80 = 0, + $81 = 0, + $82 = 0, + $83 = 0, + $84 = 0, + $85 = 0, + $86 = 0, + $87 = 0, + $88 = 0, + $89 = 0 + var $9 = 0, + $90 = 0, + $91 = 0, + $92 = 0, + $93 = 0, + $94 = 0, + $95 = 0, + $96 = 0, + $97 = 0, + $98 = 0, + $99 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = HEAP32[$f >> 2] | 0 + $1 = ($f + 4) | 0 + $2 = HEAP32[$1 >> 2] | 0 + $3 = ($f + 8) | 0 + $4 = HEAP32[$3 >> 2] | 0 + $5 = ($f + 12) | 0 + $6 = HEAP32[$5 >> 2] | 0 + $7 = ($f + 16) | 0 + $8 = HEAP32[$7 >> 2] | 0 + $9 = ($f + 20) | 0 + $10 = HEAP32[$9 >> 2] | 0 + $11 = ($f + 24) | 0 + $12 = HEAP32[$11 >> 2] | 0 + $13 = ($f + 28) | 0 + $14 = HEAP32[$13 >> 2] | 0 + $15 = ($f + 32) | 0 + $16 = HEAP32[$15 >> 2] | 0 + $17 = ($f + 36) | 0 + $18 = HEAP32[$17 >> 2] | 0 + $19 = HEAP32[$g >> 2] | 0 + $20 = ($g + 4) | 0 + $21 = HEAP32[$20 >> 2] | 0 + $22 = ($g + 8) | 0 + $23 = HEAP32[$22 >> 2] | 0 + $24 = ($g + 12) | 0 + $25 = HEAP32[$24 >> 2] | 0 + $26 = ($g + 16) | 0 + $27 = HEAP32[$26 >> 2] | 0 + $28 = ($g + 20) | 0 + $29 = HEAP32[$28 >> 2] | 0 + $30 = ($g + 24) | 0 + $31 = HEAP32[$30 >> 2] | 0 + $32 = ($g + 28) | 0 + $33 = HEAP32[$32 >> 2] | 0 + $34 = ($g + 32) | 0 + $35 = HEAP32[$34 >> 2] | 0 + $36 = ($g + 36) | 0 + $37 = HEAP32[$36 >> 2] | 0 + $38 = ($21 * 19) | 0 + $39 = ($23 * 19) | 0 + $40 = ($25 * 19) | 0 + $41 = ($27 * 19) | 0 + $42 = ($29 * 19) | 0 + $43 = ($31 * 19) | 0 + $44 = ($33 * 19) | 0 + $45 = ($35 * 19) | 0 + $46 = ($37 * 19) | 0 + $47 = $2 << 1 + $48 = $6 << 1 + $49 = $10 << 1 + $50 = $14 << 1 + $51 = $18 << 1 + $52 = ($0 | 0) < 0 + $53 = ($52 << 31) >> 31 + $54 = ($19 | 0) < 0 + $55 = ($54 << 31) >> 31 + $56 = ___muldi3($19 | 0, $55 | 0, $0 | 0, $53 | 0) | 0 + $57 = tempRet0 + $58 = ($21 | 0) < 0 + $59 = ($58 << 31) >> 31 + $60 = ___muldi3($21 | 0, $59 | 0, $0 | 0, $53 | 0) | 0 + $61 = tempRet0 + $62 = ($23 | 0) < 0 + $63 = ($62 << 31) >> 31 + $64 = ___muldi3($23 | 0, $63 | 0, $0 | 0, $53 | 0) | 0 + $65 = tempRet0 + $66 = ($25 | 0) < 0 + $67 = ($66 << 31) >> 31 + $68 = ___muldi3($25 | 0, $67 | 0, $0 | 0, $53 | 0) | 0 + $69 = tempRet0 + $70 = ($27 | 0) < 0 + $71 = ($70 << 31) >> 31 + $72 = ___muldi3($27 | 0, $71 | 0, $0 | 0, $53 | 0) | 0 + $73 = tempRet0 + $74 = ($29 | 0) < 0 + $75 = ($74 << 31) >> 31 + $76 = ___muldi3($29 | 0, $75 | 0, $0 | 0, $53 | 0) | 0 + $77 = tempRet0 + $78 = ($31 | 0) < 0 + $79 = ($78 << 31) >> 31 + $80 = ___muldi3($31 | 0, $79 | 0, $0 | 0, $53 | 0) | 0 + $81 = tempRet0 + $82 = ($33 | 0) < 0 + $83 = ($82 << 31) >> 31 + $84 = ___muldi3($33 | 0, $83 | 0, $0 | 0, $53 | 0) | 0 + $85 = tempRet0 + $86 = ($35 | 0) < 0 + $87 = ($86 << 31) >> 31 + $88 = ___muldi3($35 | 0, $87 | 0, $0 | 0, $53 | 0) | 0 + $89 = tempRet0 + $90 = ($37 | 0) < 0 + $91 = ($90 << 31) >> 31 + $92 = ___muldi3($37 | 0, $91 | 0, $0 | 0, $53 | 0) | 0 + $93 = tempRet0 + $94 = ($2 | 0) < 0 + $95 = ($94 << 31) >> 31 + $96 = ___muldi3($19 | 0, $55 | 0, $2 | 0, $95 | 0) | 0 + $97 = tempRet0 + $98 = ($47 | 0) < 0 + $99 = ($98 << 31) >> 31 + $100 = ___muldi3($21 | 0, $59 | 0, $47 | 0, $99 | 0) | 0 + $101 = tempRet0 + $102 = ___muldi3($23 | 0, $63 | 0, $2 | 0, $95 | 0) | 0 + $103 = tempRet0 + $104 = ___muldi3($25 | 0, $67 | 0, $47 | 0, $99 | 0) | 0 + $105 = tempRet0 + $106 = ___muldi3($27 | 0, $71 | 0, $2 | 0, $95 | 0) | 0 + $107 = tempRet0 + $108 = ___muldi3($29 | 0, $75 | 0, $47 | 0, $99 | 0) | 0 + $109 = tempRet0 + $110 = ___muldi3($31 | 0, $79 | 0, $2 | 0, $95 | 0) | 0 + $111 = tempRet0 + $112 = ___muldi3($33 | 0, $83 | 0, $47 | 0, $99 | 0) | 0 + $113 = tempRet0 + $114 = ___muldi3($35 | 0, $87 | 0, $2 | 0, $95 | 0) | 0 + $115 = tempRet0 + $116 = ($46 | 0) < 0 + $117 = ($116 << 31) >> 31 + $118 = ___muldi3($46 | 0, $117 | 0, $47 | 0, $99 | 0) | 0 + $119 = tempRet0 + $120 = ($4 | 0) < 0 + $121 = ($120 << 31) >> 31 + $122 = ___muldi3($19 | 0, $55 | 0, $4 | 0, $121 | 0) | 0 + $123 = tempRet0 + $124 = ___muldi3($21 | 0, $59 | 0, $4 | 0, $121 | 0) | 0 + $125 = tempRet0 + $126 = ___muldi3($23 | 0, $63 | 0, $4 | 0, $121 | 0) | 0 + $127 = tempRet0 + $128 = ___muldi3($25 | 0, $67 | 0, $4 | 0, $121 | 0) | 0 + $129 = tempRet0 + $130 = ___muldi3($27 | 0, $71 | 0, $4 | 0, $121 | 0) | 0 + $131 = tempRet0 + $132 = ___muldi3($29 | 0, $75 | 0, $4 | 0, $121 | 0) | 0 + $133 = tempRet0 + $134 = ___muldi3($31 | 0, $79 | 0, $4 | 0, $121 | 0) | 0 + $135 = tempRet0 + $136 = ___muldi3($33 | 0, $83 | 0, $4 | 0, $121 | 0) | 0 + $137 = tempRet0 + $138 = ($45 | 0) < 0 + $139 = ($138 << 31) >> 31 + $140 = ___muldi3($45 | 0, $139 | 0, $4 | 0, $121 | 0) | 0 + $141 = tempRet0 + $142 = ___muldi3($46 | 0, $117 | 0, $4 | 0, $121 | 0) | 0 + $143 = tempRet0 + $144 = ($6 | 0) < 0 + $145 = ($144 << 31) >> 31 + $146 = ___muldi3($19 | 0, $55 | 0, $6 | 0, $145 | 0) | 0 + $147 = tempRet0 + $148 = ($48 | 0) < 0 + $149 = ($148 << 31) >> 31 + $150 = ___muldi3($21 | 0, $59 | 0, $48 | 0, $149 | 0) | 0 + $151 = tempRet0 + $152 = ___muldi3($23 | 0, $63 | 0, $6 | 0, $145 | 0) | 0 + $153 = tempRet0 + $154 = ___muldi3($25 | 0, $67 | 0, $48 | 0, $149 | 0) | 0 + $155 = tempRet0 + $156 = ___muldi3($27 | 0, $71 | 0, $6 | 0, $145 | 0) | 0 + $157 = tempRet0 + $158 = ___muldi3($29 | 0, $75 | 0, $48 | 0, $149 | 0) | 0 + $159 = tempRet0 + $160 = ___muldi3($31 | 0, $79 | 0, $6 | 0, $145 | 0) | 0 + $161 = tempRet0 + $162 = ($44 | 0) < 0 + $163 = ($162 << 31) >> 31 + $164 = ___muldi3($44 | 0, $163 | 0, $48 | 0, $149 | 0) | 0 + $165 = tempRet0 + $166 = ___muldi3($45 | 0, $139 | 0, $6 | 0, $145 | 0) | 0 + $167 = tempRet0 + $168 = ___muldi3($46 | 0, $117 | 0, $48 | 0, $149 | 0) | 0 + $169 = tempRet0 + $170 = ($8 | 0) < 0 + $171 = ($170 << 31) >> 31 + $172 = ___muldi3($19 | 0, $55 | 0, $8 | 0, $171 | 0) | 0 + $173 = tempRet0 + $174 = ___muldi3($21 | 0, $59 | 0, $8 | 0, $171 | 0) | 0 + $175 = tempRet0 + $176 = ___muldi3($23 | 0, $63 | 0, $8 | 0, $171 | 0) | 0 + $177 = tempRet0 + $178 = ___muldi3($25 | 0, $67 | 0, $8 | 0, $171 | 0) | 0 + $179 = tempRet0 + $180 = ___muldi3($27 | 0, $71 | 0, $8 | 0, $171 | 0) | 0 + $181 = tempRet0 + $182 = ___muldi3($29 | 0, $75 | 0, $8 | 0, $171 | 0) | 0 + $183 = tempRet0 + $184 = ($43 | 0) < 0 + $185 = ($184 << 31) >> 31 + $186 = ___muldi3($43 | 0, $185 | 0, $8 | 0, $171 | 0) | 0 + $187 = tempRet0 + $188 = ___muldi3($44 | 0, $163 | 0, $8 | 0, $171 | 0) | 0 + $189 = tempRet0 + $190 = ___muldi3($45 | 0, $139 | 0, $8 | 0, $171 | 0) | 0 + $191 = tempRet0 + $192 = ___muldi3($46 | 0, $117 | 0, $8 | 0, $171 | 0) | 0 + $193 = tempRet0 + $194 = ($10 | 0) < 0 + $195 = ($194 << 31) >> 31 + $196 = ___muldi3($19 | 0, $55 | 0, $10 | 0, $195 | 0) | 0 + $197 = tempRet0 + $198 = ($49 | 0) < 0 + $199 = ($198 << 31) >> 31 + $200 = ___muldi3($21 | 0, $59 | 0, $49 | 0, $199 | 0) | 0 + $201 = tempRet0 + $202 = ___muldi3($23 | 0, $63 | 0, $10 | 0, $195 | 0) | 0 + $203 = tempRet0 + $204 = ___muldi3($25 | 0, $67 | 0, $49 | 0, $199 | 0) | 0 + $205 = tempRet0 + $206 = ___muldi3($27 | 0, $71 | 0, $10 | 0, $195 | 0) | 0 + $207 = tempRet0 + $208 = ($42 | 0) < 0 + $209 = ($208 << 31) >> 31 + $210 = ___muldi3($42 | 0, $209 | 0, $49 | 0, $199 | 0) | 0 + $211 = tempRet0 + $212 = ___muldi3($43 | 0, $185 | 0, $10 | 0, $195 | 0) | 0 + $213 = tempRet0 + $214 = ___muldi3($44 | 0, $163 | 0, $49 | 0, $199 | 0) | 0 + $215 = tempRet0 + $216 = ___muldi3($45 | 0, $139 | 0, $10 | 0, $195 | 0) | 0 + $217 = tempRet0 + $218 = ___muldi3($46 | 0, $117 | 0, $49 | 0, $199 | 0) | 0 + $219 = tempRet0 + $220 = ($12 | 0) < 0 + $221 = ($220 << 31) >> 31 + $222 = ___muldi3($19 | 0, $55 | 0, $12 | 0, $221 | 0) | 0 + $223 = tempRet0 + $224 = ___muldi3($21 | 0, $59 | 0, $12 | 0, $221 | 0) | 0 + $225 = tempRet0 + $226 = ___muldi3($23 | 0, $63 | 0, $12 | 0, $221 | 0) | 0 + $227 = tempRet0 + $228 = ___muldi3($25 | 0, $67 | 0, $12 | 0, $221 | 0) | 0 + $229 = tempRet0 + $230 = ($41 | 0) < 0 + $231 = ($230 << 31) >> 31 + $232 = ___muldi3($41 | 0, $231 | 0, $12 | 0, $221 | 0) | 0 + $233 = tempRet0 + $234 = ___muldi3($42 | 0, $209 | 0, $12 | 0, $221 | 0) | 0 + $235 = tempRet0 + $236 = ___muldi3($43 | 0, $185 | 0, $12 | 0, $221 | 0) | 0 + $237 = tempRet0 + $238 = ___muldi3($44 | 0, $163 | 0, $12 | 0, $221 | 0) | 0 + $239 = tempRet0 + $240 = ___muldi3($45 | 0, $139 | 0, $12 | 0, $221 | 0) | 0 + $241 = tempRet0 + $242 = ___muldi3($46 | 0, $117 | 0, $12 | 0, $221 | 0) | 0 + $243 = tempRet0 + $244 = ($14 | 0) < 0 + $245 = ($244 << 31) >> 31 + $246 = ___muldi3($19 | 0, $55 | 0, $14 | 0, $245 | 0) | 0 + $247 = tempRet0 + $248 = ($50 | 0) < 0 + $249 = ($248 << 31) >> 31 + $250 = ___muldi3($21 | 0, $59 | 0, $50 | 0, $249 | 0) | 0 + $251 = tempRet0 + $252 = ___muldi3($23 | 0, $63 | 0, $14 | 0, $245 | 0) | 0 + $253 = tempRet0 + $254 = ($40 | 0) < 0 + $255 = ($254 << 31) >> 31 + $256 = ___muldi3($40 | 0, $255 | 0, $50 | 0, $249 | 0) | 0 + $257 = tempRet0 + $258 = ___muldi3($41 | 0, $231 | 0, $14 | 0, $245 | 0) | 0 + $259 = tempRet0 + $260 = ___muldi3($42 | 0, $209 | 0, $50 | 0, $249 | 0) | 0 + $261 = tempRet0 + $262 = ___muldi3($43 | 0, $185 | 0, $14 | 0, $245 | 0) | 0 + $263 = tempRet0 + $264 = ___muldi3($44 | 0, $163 | 0, $50 | 0, $249 | 0) | 0 + $265 = tempRet0 + $266 = ___muldi3($45 | 0, $139 | 0, $14 | 0, $245 | 0) | 0 + $267 = tempRet0 + $268 = ___muldi3($46 | 0, $117 | 0, $50 | 0, $249 | 0) | 0 + $269 = tempRet0 + $270 = ($16 | 0) < 0 + $271 = ($270 << 31) >> 31 + $272 = ___muldi3($19 | 0, $55 | 0, $16 | 0, $271 | 0) | 0 + $273 = tempRet0 + $274 = ___muldi3($21 | 0, $59 | 0, $16 | 0, $271 | 0) | 0 + $275 = tempRet0 + $276 = ($39 | 0) < 0 + $277 = ($276 << 31) >> 31 + $278 = ___muldi3($39 | 0, $277 | 0, $16 | 0, $271 | 0) | 0 + $279 = tempRet0 + $280 = ___muldi3($40 | 0, $255 | 0, $16 | 0, $271 | 0) | 0 + $281 = tempRet0 + $282 = ___muldi3($41 | 0, $231 | 0, $16 | 0, $271 | 0) | 0 + $283 = tempRet0 + $284 = ___muldi3($42 | 0, $209 | 0, $16 | 0, $271 | 0) | 0 + $285 = tempRet0 + $286 = ___muldi3($43 | 0, $185 | 0, $16 | 0, $271 | 0) | 0 + $287 = tempRet0 + $288 = ___muldi3($44 | 0, $163 | 0, $16 | 0, $271 | 0) | 0 + $289 = tempRet0 + $290 = ___muldi3($45 | 0, $139 | 0, $16 | 0, $271 | 0) | 0 + $291 = tempRet0 + $292 = ___muldi3($46 | 0, $117 | 0, $16 | 0, $271 | 0) | 0 + $293 = tempRet0 + $294 = ($18 | 0) < 0 + $295 = ($294 << 31) >> 31 + $296 = ___muldi3($19 | 0, $55 | 0, $18 | 0, $295 | 0) | 0 + $297 = tempRet0 + $298 = ($51 | 0) < 0 + $299 = ($298 << 31) >> 31 + $300 = ($38 | 0) < 0 + $301 = ($300 << 31) >> 31 + $302 = ___muldi3($38 | 0, $301 | 0, $51 | 0, $299 | 0) | 0 + $303 = tempRet0 + $304 = ___muldi3($39 | 0, $277 | 0, $18 | 0, $295 | 0) | 0 + $305 = tempRet0 + $306 = ___muldi3($40 | 0, $255 | 0, $51 | 0, $299 | 0) | 0 + $307 = tempRet0 + $308 = ___muldi3($41 | 0, $231 | 0, $18 | 0, $295 | 0) | 0 + $309 = tempRet0 + $310 = ___muldi3($42 | 0, $209 | 0, $51 | 0, $299 | 0) | 0 + $311 = tempRet0 + $312 = ___muldi3($43 | 0, $185 | 0, $18 | 0, $295 | 0) | 0 + $313 = tempRet0 + $314 = ___muldi3($44 | 0, $163 | 0, $51 | 0, $299 | 0) | 0 + $315 = tempRet0 + $316 = ___muldi3($45 | 0, $139 | 0, $18 | 0, $295 | 0) | 0 + $317 = tempRet0 + $318 = ___muldi3($46 | 0, $117 | 0, $51 | 0, $299 | 0) | 0 + $319 = tempRet0 + $320 = _i64Add($302 | 0, $303 | 0, $56 | 0, $57 | 0) | 0 + $321 = tempRet0 + $322 = _i64Add($320 | 0, $321 | 0, $278 | 0, $279 | 0) | 0 + $323 = tempRet0 + $324 = _i64Add($322 | 0, $323 | 0, $256 | 0, $257 | 0) | 0 + $325 = tempRet0 + $326 = _i64Add($324 | 0, $325 | 0, $232 | 0, $233 | 0) | 0 + $327 = tempRet0 + $328 = _i64Add($326 | 0, $327 | 0, $210 | 0, $211 | 0) | 0 + $329 = tempRet0 + $330 = _i64Add($328 | 0, $329 | 0, $186 | 0, $187 | 0) | 0 + $331 = tempRet0 + $332 = _i64Add($330 | 0, $331 | 0, $164 | 0, $165 | 0) | 0 + $333 = tempRet0 + $334 = _i64Add($332 | 0, $333 | 0, $140 | 0, $141 | 0) | 0 + $335 = tempRet0 + $336 = _i64Add($334 | 0, $335 | 0, $118 | 0, $119 | 0) | 0 + $337 = tempRet0 + $338 = _i64Add($60 | 0, $61 | 0, $96 | 0, $97 | 0) | 0 + $339 = tempRet0 + $340 = _i64Add($150 | 0, $151 | 0, $172 | 0, $173 | 0) | 0 + $341 = tempRet0 + $342 = _i64Add($340 | 0, $341 | 0, $126 | 0, $127 | 0) | 0 + $343 = tempRet0 + $344 = _i64Add($342 | 0, $343 | 0, $104 | 0, $105 | 0) | 0 + $345 = tempRet0 + $346 = _i64Add($344 | 0, $345 | 0, $72 | 0, $73 | 0) | 0 + $347 = tempRet0 + $348 = _i64Add($346 | 0, $347 | 0, $310 | 0, $311 | 0) | 0 + $349 = tempRet0 + $350 = _i64Add($348 | 0, $349 | 0, $286 | 0, $287 | 0) | 0 + $351 = tempRet0 + $352 = _i64Add($350 | 0, $351 | 0, $264 | 0, $265 | 0) | 0 + $353 = tempRet0 + $354 = _i64Add($352 | 0, $353 | 0, $240 | 0, $241 | 0) | 0 + $355 = tempRet0 + $356 = _i64Add($354 | 0, $355 | 0, $218 | 0, $219 | 0) | 0 + $357 = tempRet0 + $358 = _i64Add($336 | 0, $337 | 0, 33554432, 0) | 0 + $359 = tempRet0 + $360 = _bitshift64Ashr($358 | 0, $359 | 0, 26) | 0 + $361 = tempRet0 + $362 = _i64Add($338 | 0, $339 | 0, $304 | 0, $305 | 0) | 0 + $363 = tempRet0 + $364 = _i64Add($362 | 0, $363 | 0, $280 | 0, $281 | 0) | 0 + $365 = tempRet0 + $366 = _i64Add($364 | 0, $365 | 0, $258 | 0, $259 | 0) | 0 + $367 = tempRet0 + $368 = _i64Add($366 | 0, $367 | 0, $234 | 0, $235 | 0) | 0 + $369 = tempRet0 + $370 = _i64Add($368 | 0, $369 | 0, $212 | 0, $213 | 0) | 0 + $371 = tempRet0 + $372 = _i64Add($370 | 0, $371 | 0, $188 | 0, $189 | 0) | 0 + $373 = tempRet0 + $374 = _i64Add($372 | 0, $373 | 0, $166 | 0, $167 | 0) | 0 + $375 = tempRet0 + $376 = _i64Add($374 | 0, $375 | 0, $142 | 0, $143 | 0) | 0 + $377 = tempRet0 + $378 = _i64Add($376 | 0, $377 | 0, $360 | 0, $361 | 0) | 0 + $379 = tempRet0 + $380 = _bitshift64Shl($360 | 0, $361 | 0, 26) | 0 + $381 = tempRet0 + $382 = _i64Subtract($336 | 0, $337 | 0, $380 | 0, $381 | 0) | 0 + $383 = tempRet0 + $384 = _i64Add($356 | 0, $357 | 0, 33554432, 0) | 0 + $385 = tempRet0 + $386 = _bitshift64Ashr($384 | 0, $385 | 0, 26) | 0 + $387 = tempRet0 + $388 = _i64Add($174 | 0, $175 | 0, $196 | 0, $197 | 0) | 0 + $389 = tempRet0 + $390 = _i64Add($388 | 0, $389 | 0, $152 | 0, $153 | 0) | 0 + $391 = tempRet0 + $392 = _i64Add($390 | 0, $391 | 0, $128 | 0, $129 | 0) | 0 + $393 = tempRet0 + $394 = _i64Add($392 | 0, $393 | 0, $106 | 0, $107 | 0) | 0 + $395 = tempRet0 + $396 = _i64Add($394 | 0, $395 | 0, $76 | 0, $77 | 0) | 0 + $397 = tempRet0 + $398 = _i64Add($396 | 0, $397 | 0, $312 | 0, $313 | 0) | 0 + $399 = tempRet0 + $400 = _i64Add($398 | 0, $399 | 0, $288 | 0, $289 | 0) | 0 + $401 = tempRet0 + $402 = _i64Add($400 | 0, $401 | 0, $266 | 0, $267 | 0) | 0 + $403 = tempRet0 + $404 = _i64Add($402 | 0, $403 | 0, $242 | 0, $243 | 0) | 0 + $405 = tempRet0 + $406 = _i64Add($404 | 0, $405 | 0, $386 | 0, $387 | 0) | 0 + $407 = tempRet0 + $408 = _bitshift64Shl($386 | 0, $387 | 0, 26) | 0 + $409 = tempRet0 + $410 = _i64Subtract($356 | 0, $357 | 0, $408 | 0, $409 | 0) | 0 + $411 = tempRet0 + $412 = _i64Add($378 | 0, $379 | 0, 16777216, 0) | 0 + $413 = tempRet0 + $414 = _bitshift64Ashr($412 | 0, $413 | 0, 25) | 0 + $415 = tempRet0 + $416 = _i64Add($100 | 0, $101 | 0, $122 | 0, $123 | 0) | 0 + $417 = tempRet0 + $418 = _i64Add($416 | 0, $417 | 0, $64 | 0, $65 | 0) | 0 + $419 = tempRet0 + $420 = _i64Add($418 | 0, $419 | 0, $306 | 0, $307 | 0) | 0 + $421 = tempRet0 + $422 = _i64Add($420 | 0, $421 | 0, $282 | 0, $283 | 0) | 0 + $423 = tempRet0 + $424 = _i64Add($422 | 0, $423 | 0, $260 | 0, $261 | 0) | 0 + $425 = tempRet0 + $426 = _i64Add($424 | 0, $425 | 0, $236 | 0, $237 | 0) | 0 + $427 = tempRet0 + $428 = _i64Add($426 | 0, $427 | 0, $214 | 0, $215 | 0) | 0 + $429 = tempRet0 + $430 = _i64Add($428 | 0, $429 | 0, $190 | 0, $191 | 0) | 0 + $431 = tempRet0 + $432 = _i64Add($430 | 0, $431 | 0, $168 | 0, $169 | 0) | 0 + $433 = tempRet0 + $434 = _i64Add($432 | 0, $433 | 0, $414 | 0, $415 | 0) | 0 + $435 = tempRet0 + $436 = _bitshift64Shl($414 | 0, $415 | 0, 25) | 0 + $437 = tempRet0 + $438 = _i64Subtract($378 | 0, $379 | 0, $436 | 0, $437 | 0) | 0 + $439 = tempRet0 + $440 = _i64Add($406 | 0, $407 | 0, 16777216, 0) | 0 + $441 = tempRet0 + $442 = _bitshift64Ashr($440 | 0, $441 | 0, 25) | 0 + $443 = tempRet0 + $444 = _i64Add($200 | 0, $201 | 0, $222 | 0, $223 | 0) | 0 + $445 = tempRet0 + $446 = _i64Add($444 | 0, $445 | 0, $176 | 0, $177 | 0) | 0 + $447 = tempRet0 + $448 = _i64Add($446 | 0, $447 | 0, $154 | 0, $155 | 0) | 0 + $449 = tempRet0 + $450 = _i64Add($448 | 0, $449 | 0, $130 | 0, $131 | 0) | 0 + $451 = tempRet0 + $452 = _i64Add($450 | 0, $451 | 0, $108 | 0, $109 | 0) | 0 + $453 = tempRet0 + $454 = _i64Add($452 | 0, $453 | 0, $80 | 0, $81 | 0) | 0 + $455 = tempRet0 + $456 = _i64Add($454 | 0, $455 | 0, $314 | 0, $315 | 0) | 0 + $457 = tempRet0 + $458 = _i64Add($456 | 0, $457 | 0, $290 | 0, $291 | 0) | 0 + $459 = tempRet0 + $460 = _i64Add($458 | 0, $459 | 0, $268 | 0, $269 | 0) | 0 + $461 = tempRet0 + $462 = _i64Add($460 | 0, $461 | 0, $442 | 0, $443 | 0) | 0 + $463 = tempRet0 + $464 = _bitshift64Shl($442 | 0, $443 | 0, 25) | 0 + $465 = tempRet0 + $466 = _i64Subtract($406 | 0, $407 | 0, $464 | 0, $465 | 0) | 0 + $467 = tempRet0 + $468 = _i64Add($434 | 0, $435 | 0, 33554432, 0) | 0 + $469 = tempRet0 + $470 = _bitshift64Ashr($468 | 0, $469 | 0, 26) | 0 + $471 = tempRet0 + $472 = _i64Add($124 | 0, $125 | 0, $146 | 0, $147 | 0) | 0 + $473 = tempRet0 + $474 = _i64Add($472 | 0, $473 | 0, $102 | 0, $103 | 0) | 0 + $475 = tempRet0 + $476 = _i64Add($474 | 0, $475 | 0, $68 | 0, $69 | 0) | 0 + $477 = tempRet0 + $478 = _i64Add($476 | 0, $477 | 0, $308 | 0, $309 | 0) | 0 + $479 = tempRet0 + $480 = _i64Add($478 | 0, $479 | 0, $284 | 0, $285 | 0) | 0 + $481 = tempRet0 + $482 = _i64Add($480 | 0, $481 | 0, $262 | 0, $263 | 0) | 0 + $483 = tempRet0 + $484 = _i64Add($482 | 0, $483 | 0, $238 | 0, $239 | 0) | 0 + $485 = tempRet0 + $486 = _i64Add($484 | 0, $485 | 0, $216 | 0, $217 | 0) | 0 + $487 = tempRet0 + $488 = _i64Add($486 | 0, $487 | 0, $192 | 0, $193 | 0) | 0 + $489 = tempRet0 + $490 = _i64Add($488 | 0, $489 | 0, $470 | 0, $471 | 0) | 0 + $491 = tempRet0 + $492 = _bitshift64Shl($470 | 0, $471 | 0, 26) | 0 + $493 = tempRet0 + $494 = _i64Subtract($434 | 0, $435 | 0, $492 | 0, $493 | 0) | 0 + $495 = tempRet0 + $496 = _i64Add($462 | 0, $463 | 0, 33554432, 0) | 0 + $497 = tempRet0 + $498 = _bitshift64Ashr($496 | 0, $497 | 0, 26) | 0 + $499 = tempRet0 + $500 = _i64Add($224 | 0, $225 | 0, $246 | 0, $247 | 0) | 0 + $501 = tempRet0 + $502 = _i64Add($500 | 0, $501 | 0, $202 | 0, $203 | 0) | 0 + $503 = tempRet0 + $504 = _i64Add($502 | 0, $503 | 0, $178 | 0, $179 | 0) | 0 + $505 = tempRet0 + $506 = _i64Add($504 | 0, $505 | 0, $156 | 0, $157 | 0) | 0 + $507 = tempRet0 + $508 = _i64Add($506 | 0, $507 | 0, $132 | 0, $133 | 0) | 0 + $509 = tempRet0 + $510 = _i64Add($508 | 0, $509 | 0, $110 | 0, $111 | 0) | 0 + $511 = tempRet0 + $512 = _i64Add($510 | 0, $511 | 0, $84 | 0, $85 | 0) | 0 + $513 = tempRet0 + $514 = _i64Add($512 | 0, $513 | 0, $316 | 0, $317 | 0) | 0 + $515 = tempRet0 + $516 = _i64Add($514 | 0, $515 | 0, $292 | 0, $293 | 0) | 0 + $517 = tempRet0 + $518 = _i64Add($516 | 0, $517 | 0, $498 | 0, $499 | 0) | 0 + $519 = tempRet0 + $520 = _bitshift64Shl($498 | 0, $499 | 0, 26) | 0 + $521 = tempRet0 + $522 = _i64Subtract($462 | 0, $463 | 0, $520 | 0, $521 | 0) | 0 + $523 = tempRet0 + $524 = _i64Add($490 | 0, $491 | 0, 16777216, 0) | 0 + $525 = tempRet0 + $526 = _bitshift64Ashr($524 | 0, $525 | 0, 25) | 0 + $527 = tempRet0 + $528 = _i64Add($526 | 0, $527 | 0, $410 | 0, $411 | 0) | 0 + $529 = tempRet0 + $530 = _bitshift64Shl($526 | 0, $527 | 0, 25) | 0 + $531 = tempRet0 + $532 = _i64Subtract($490 | 0, $491 | 0, $530 | 0, $531 | 0) | 0 + $533 = tempRet0 + $534 = _i64Add($518 | 0, $519 | 0, 16777216, 0) | 0 + $535 = tempRet0 + $536 = _bitshift64Ashr($534 | 0, $535 | 0, 25) | 0 + $537 = tempRet0 + $538 = _i64Add($250 | 0, $251 | 0, $272 | 0, $273 | 0) | 0 + $539 = tempRet0 + $540 = _i64Add($538 | 0, $539 | 0, $226 | 0, $227 | 0) | 0 + $541 = tempRet0 + $542 = _i64Add($540 | 0, $541 | 0, $204 | 0, $205 | 0) | 0 + $543 = tempRet0 + $544 = _i64Add($542 | 0, $543 | 0, $180 | 0, $181 | 0) | 0 + $545 = tempRet0 + $546 = _i64Add($544 | 0, $545 | 0, $158 | 0, $159 | 0) | 0 + $547 = tempRet0 + $548 = _i64Add($546 | 0, $547 | 0, $134 | 0, $135 | 0) | 0 + $549 = tempRet0 + $550 = _i64Add($548 | 0, $549 | 0, $112 | 0, $113 | 0) | 0 + $551 = tempRet0 + $552 = _i64Add($550 | 0, $551 | 0, $88 | 0, $89 | 0) | 0 + $553 = tempRet0 + $554 = _i64Add($552 | 0, $553 | 0, $318 | 0, $319 | 0) | 0 + $555 = tempRet0 + $556 = _i64Add($554 | 0, $555 | 0, $536 | 0, $537 | 0) | 0 + $557 = tempRet0 + $558 = _bitshift64Shl($536 | 0, $537 | 0, 25) | 0 + $559 = tempRet0 + $560 = _i64Subtract($518 | 0, $519 | 0, $558 | 0, $559 | 0) | 0 + $561 = tempRet0 + $562 = _i64Add($528 | 0, $529 | 0, 33554432, 0) | 0 + $563 = tempRet0 + $564 = _bitshift64Ashr($562 | 0, $563 | 0, 26) | 0 + $565 = tempRet0 + $566 = _i64Add($466 | 0, $467 | 0, $564 | 0, $565 | 0) | 0 + $567 = tempRet0 + $568 = _bitshift64Shl($564 | 0, $565 | 0, 26) | 0 + $569 = tempRet0 + $570 = _i64Subtract($528 | 0, $529 | 0, $568 | 0, $569 | 0) | 0 + $571 = tempRet0 + $572 = _i64Add($556 | 0, $557 | 0, 33554432, 0) | 0 + $573 = tempRet0 + $574 = _bitshift64Ashr($572 | 0, $573 | 0, 26) | 0 + $575 = tempRet0 + $576 = _i64Add($274 | 0, $275 | 0, $296 | 0, $297 | 0) | 0 + $577 = tempRet0 + $578 = _i64Add($576 | 0, $577 | 0, $252 | 0, $253 | 0) | 0 + $579 = tempRet0 + $580 = _i64Add($578 | 0, $579 | 0, $228 | 0, $229 | 0) | 0 + $581 = tempRet0 + $582 = _i64Add($580 | 0, $581 | 0, $206 | 0, $207 | 0) | 0 + $583 = tempRet0 + $584 = _i64Add($582 | 0, $583 | 0, $182 | 0, $183 | 0) | 0 + $585 = tempRet0 + $586 = _i64Add($584 | 0, $585 | 0, $160 | 0, $161 | 0) | 0 + $587 = tempRet0 + $588 = _i64Add($586 | 0, $587 | 0, $136 | 0, $137 | 0) | 0 + $589 = tempRet0 + $590 = _i64Add($588 | 0, $589 | 0, $114 | 0, $115 | 0) | 0 + $591 = tempRet0 + $592 = _i64Add($590 | 0, $591 | 0, $92 | 0, $93 | 0) | 0 + $593 = tempRet0 + $594 = _i64Add($592 | 0, $593 | 0, $574 | 0, $575 | 0) | 0 + $595 = tempRet0 + $596 = _bitshift64Shl($574 | 0, $575 | 0, 26) | 0 + $597 = tempRet0 + $598 = _i64Subtract($556 | 0, $557 | 0, $596 | 0, $597 | 0) | 0 + $599 = tempRet0 + $600 = _i64Add($594 | 0, $595 | 0, 16777216, 0) | 0 + $601 = tempRet0 + $602 = _bitshift64Ashr($600 | 0, $601 | 0, 25) | 0 + $603 = tempRet0 + $604 = ___muldi3($602 | 0, $603 | 0, 19, 0) | 0 + $605 = tempRet0 + $606 = _i64Add($604 | 0, $605 | 0, $382 | 0, $383 | 0) | 0 + $607 = tempRet0 + $608 = _bitshift64Shl($602 | 0, $603 | 0, 25) | 0 + $609 = tempRet0 + $610 = _i64Subtract($594 | 0, $595 | 0, $608 | 0, $609 | 0) | 0 + $611 = tempRet0 + $612 = _i64Add($606 | 0, $607 | 0, 33554432, 0) | 0 + $613 = tempRet0 + $614 = _bitshift64Ashr($612 | 0, $613 | 0, 26) | 0 + $615 = tempRet0 + $616 = _i64Add($438 | 0, $439 | 0, $614 | 0, $615 | 0) | 0 + $617 = tempRet0 + $618 = _bitshift64Shl($614 | 0, $615 | 0, 26) | 0 + $619 = tempRet0 + $620 = _i64Subtract($606 | 0, $607 | 0, $618 | 0, $619 | 0) | 0 + $621 = tempRet0 + HEAP32[$h >> 2] = $620 + $622 = ($h + 4) | 0 + HEAP32[$622 >> 2] = $616 + $623 = ($h + 8) | 0 + HEAP32[$623 >> 2] = $494 + $624 = ($h + 12) | 0 + HEAP32[$624 >> 2] = $532 + $625 = ($h + 16) | 0 + HEAP32[$625 >> 2] = $570 + $626 = ($h + 20) | 0 + HEAP32[$626 >> 2] = $566 + $627 = ($h + 24) | 0 + HEAP32[$627 >> 2] = $522 + $628 = ($h + 28) | 0 + HEAP32[$628 >> 2] = $560 + $629 = ($h + 32) | 0 + HEAP32[$629 >> 2] = $598 + $630 = ($h + 36) | 0 + HEAP32[$630 >> 2] = $610 + return + } + function _fe_isnegative($f) { + $f = $f | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $s = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 32) | 0 + $s = sp + _fe_tobytes($s, $f) + $0 = HEAP8[$s >> 0] | 0 + $1 = $0 & 255 + $2 = $1 & 1 + STACKTOP = sp + return $2 | 0 + } + function _fe_tobytes($s, $h) { + $s = $s | 0 + $h = $h | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $100 = 0, + $101 = 0, + $102 = 0, + $103 = 0, + $104 = 0, + $105 = 0, + $106 = 0, + $107 = 0, + $108 = 0, + $109 = 0, + $11 = 0, + $110 = 0, + $111 = 0, + $112 = 0, + $113 = 0, + $114 = 0, + $115 = 0 + var $116 = 0, + $117 = 0, + $118 = 0, + $119 = 0, + $12 = 0, + $120 = 0, + $121 = 0, + $122 = 0, + $123 = 0, + $124 = 0, + $125 = 0, + $126 = 0, + $127 = 0, + $128 = 0, + $129 = 0, + $13 = 0, + $130 = 0, + $131 = 0, + $132 = 0, + $133 = 0 + var $134 = 0, + $135 = 0, + $136 = 0, + $137 = 0, + $138 = 0, + $139 = 0, + $14 = 0, + $140 = 0, + $141 = 0, + $142 = 0, + $143 = 0, + $144 = 0, + $145 = 0, + $146 = 0, + $147 = 0, + $148 = 0, + $149 = 0, + $15 = 0, + $150 = 0, + $151 = 0 + var $152 = 0, + $153 = 0, + $154 = 0, + $155 = 0, + $156 = 0, + $157 = 0, + $158 = 0, + $159 = 0, + $16 = 0, + $160 = 0, + $161 = 0, + $162 = 0, + $163 = 0, + $164 = 0, + $165 = 0, + $166 = 0, + $167 = 0, + $168 = 0, + $169 = 0, + $17 = 0 + var $170 = 0, + $171 = 0, + $172 = 0, + $173 = 0, + $174 = 0, + $175 = 0, + $176 = 0, + $177 = 0, + $178 = 0, + $179 = 0, + $18 = 0, + $180 = 0, + $181 = 0, + $182 = 0, + $183 = 0, + $184 = 0, + $185 = 0, + $186 = 0, + $187 = 0, + $188 = 0 + var $189 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0, + $26 = 0, + $27 = 0, + $28 = 0, + $29 = 0, + $3 = 0, + $30 = 0, + $31 = 0, + $32 = 0, + $33 = 0, + $34 = 0, + $35 = 0 + var $36 = 0, + $37 = 0, + $38 = 0, + $39 = 0, + $4 = 0, + $40 = 0, + $41 = 0, + $42 = 0, + $43 = 0, + $44 = 0, + $45 = 0, + $46 = 0, + $47 = 0, + $48 = 0, + $49 = 0, + $5 = 0, + $50 = 0, + $51 = 0, + $52 = 0, + $53 = 0 + var $54 = 0, + $55 = 0, + $56 = 0, + $57 = 0, + $58 = 0, + $59 = 0, + $6 = 0, + $60 = 0, + $61 = 0, + $62 = 0, + $63 = 0, + $64 = 0, + $65 = 0, + $66 = 0, + $67 = 0, + $68 = 0, + $69 = 0, + $7 = 0, + $70 = 0, + $71 = 0 + var $72 = 0, + $73 = 0, + $74 = 0, + $75 = 0, + $76 = 0, + $77 = 0, + $78 = 0, + $79 = 0, + $8 = 0, + $80 = 0, + $81 = 0, + $82 = 0, + $83 = 0, + $84 = 0, + $85 = 0, + $86 = 0, + $87 = 0, + $88 = 0, + $89 = 0, + $9 = 0 + var $90 = 0, + $91 = 0, + $92 = 0, + $93 = 0, + $94 = 0, + $95 = 0, + $96 = 0, + $97 = 0, + $98 = 0, + $99 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = HEAP32[$h >> 2] | 0 + $1 = ($h + 4) | 0 + $2 = HEAP32[$1 >> 2] | 0 + $3 = ($h + 8) | 0 + $4 = HEAP32[$3 >> 2] | 0 + $5 = ($h + 12) | 0 + $6 = HEAP32[$5 >> 2] | 0 + $7 = ($h + 16) | 0 + $8 = HEAP32[$7 >> 2] | 0 + $9 = ($h + 20) | 0 + $10 = HEAP32[$9 >> 2] | 0 + $11 = ($h + 24) | 0 + $12 = HEAP32[$11 >> 2] | 0 + $13 = ($h + 28) | 0 + $14 = HEAP32[$13 >> 2] | 0 + $15 = ($h + 32) | 0 + $16 = HEAP32[$15 >> 2] | 0 + $17 = ($h + 36) | 0 + $18 = HEAP32[$17 >> 2] | 0 + $19 = ($18 * 19) | 0 + $20 = ($19 + 16777216) | 0 + $21 = $20 >> 25 + $22 = ($21 + $0) | 0 + $23 = $22 >> 26 + $24 = ($23 + $2) | 0 + $25 = $24 >> 25 + $26 = ($25 + $4) | 0 + $27 = $26 >> 26 + $28 = ($27 + $6) | 0 + $29 = $28 >> 25 + $30 = ($29 + $8) | 0 + $31 = $30 >> 26 + $32 = ($31 + $10) | 0 + $33 = $32 >> 25 + $34 = ($33 + $12) | 0 + $35 = $34 >> 26 + $36 = ($35 + $14) | 0 + $37 = $36 >> 25 + $38 = ($37 + $16) | 0 + $39 = $38 >> 26 + $40 = ($39 + $18) | 0 + $41 = $40 >> 25 + $42 = ($41 * 19) | 0 + $43 = ($42 + $0) | 0 + $44 = $43 >> 26 + $45 = ($44 + $2) | 0 + $46 = $44 << 26 + $47 = ($43 - $46) | 0 + $48 = $45 >> 25 + $49 = ($48 + $4) | 0 + $50 = $48 << 25 + $51 = ($45 - $50) | 0 + $52 = $49 >> 26 + $53 = ($52 + $6) | 0 + $54 = $52 << 26 + $55 = ($49 - $54) | 0 + $56 = $53 >> 25 + $57 = ($56 + $8) | 0 + $58 = $56 << 25 + $59 = ($53 - $58) | 0 + $60 = $57 >> 26 + $61 = ($60 + $10) | 0 + $62 = $60 << 26 + $63 = ($57 - $62) | 0 + $64 = $61 >> 25 + $65 = ($64 + $12) | 0 + $66 = $64 << 25 + $67 = ($61 - $66) | 0 + $68 = $65 >> 26 + $69 = ($68 + $14) | 0 + $70 = $68 << 26 + $71 = ($65 - $70) | 0 + $72 = $69 >> 25 + $73 = ($72 + $16) | 0 + $74 = $72 << 25 + $75 = ($69 - $74) | 0 + $76 = $73 >> 26 + $77 = ($76 + $18) | 0 + $78 = $76 << 26 + $79 = ($73 - $78) | 0 + $80 = $77 & 33554431 + $81 = $47 & 255 + HEAP8[$s >> 0] = $81 + $82 = $47 >>> 8 + $83 = $82 & 255 + $84 = ($s + 1) | 0 + HEAP8[$84 >> 0] = $83 + $85 = $47 >>> 16 + $86 = $85 & 255 + $87 = ($s + 2) | 0 + HEAP8[$87 >> 0] = $86 + $88 = $47 >>> 24 + $89 = $51 << 2 + $90 = $89 | $88 + $91 = $90 & 255 + $92 = ($s + 3) | 0 + HEAP8[$92 >> 0] = $91 + $93 = $51 >>> 6 + $94 = $93 & 255 + $95 = ($s + 4) | 0 + HEAP8[$95 >> 0] = $94 + $96 = $51 >>> 14 + $97 = $96 & 255 + $98 = ($s + 5) | 0 + HEAP8[$98 >> 0] = $97 + $99 = $51 >>> 22 + $100 = $55 << 3 + $101 = $100 | $99 + $102 = $101 & 255 + $103 = ($s + 6) | 0 + HEAP8[$103 >> 0] = $102 + $104 = $55 >>> 5 + $105 = $104 & 255 + $106 = ($s + 7) | 0 + HEAP8[$106 >> 0] = $105 + $107 = $55 >>> 13 + $108 = $107 & 255 + $109 = ($s + 8) | 0 + HEAP8[$109 >> 0] = $108 + $110 = $55 >>> 21 + $111 = $59 << 5 + $112 = $111 | $110 + $113 = $112 & 255 + $114 = ($s + 9) | 0 + HEAP8[$114 >> 0] = $113 + $115 = $59 >>> 3 + $116 = $115 & 255 + $117 = ($s + 10) | 0 + HEAP8[$117 >> 0] = $116 + $118 = $59 >>> 11 + $119 = $118 & 255 + $120 = ($s + 11) | 0 + HEAP8[$120 >> 0] = $119 + $121 = $59 >>> 19 + $122 = $63 << 6 + $123 = $122 | $121 + $124 = $123 & 255 + $125 = ($s + 12) | 0 + HEAP8[$125 >> 0] = $124 + $126 = $63 >>> 2 + $127 = $126 & 255 + $128 = ($s + 13) | 0 + HEAP8[$128 >> 0] = $127 + $129 = $63 >>> 10 + $130 = $129 & 255 + $131 = ($s + 14) | 0 + HEAP8[$131 >> 0] = $130 + $132 = $63 >>> 18 + $133 = $132 & 255 + $134 = ($s + 15) | 0 + HEAP8[$134 >> 0] = $133 + $135 = $67 & 255 + $136 = ($s + 16) | 0 + HEAP8[$136 >> 0] = $135 + $137 = $67 >>> 8 + $138 = $137 & 255 + $139 = ($s + 17) | 0 + HEAP8[$139 >> 0] = $138 + $140 = $67 >>> 16 + $141 = $140 & 255 + $142 = ($s + 18) | 0 + HEAP8[$142 >> 0] = $141 + $143 = $67 >>> 24 + $144 = $71 << 1 + $145 = $144 | $143 + $146 = $145 & 255 + $147 = ($s + 19) | 0 + HEAP8[$147 >> 0] = $146 + $148 = $71 >>> 7 + $149 = $148 & 255 + $150 = ($s + 20) | 0 + HEAP8[$150 >> 0] = $149 + $151 = $71 >>> 15 + $152 = $151 & 255 + $153 = ($s + 21) | 0 + HEAP8[$153 >> 0] = $152 + $154 = $71 >>> 23 + $155 = $75 << 3 + $156 = $155 | $154 + $157 = $156 & 255 + $158 = ($s + 22) | 0 + HEAP8[$158 >> 0] = $157 + $159 = $75 >>> 5 + $160 = $159 & 255 + $161 = ($s + 23) | 0 + HEAP8[$161 >> 0] = $160 + $162 = $75 >>> 13 + $163 = $162 & 255 + $164 = ($s + 24) | 0 + HEAP8[$164 >> 0] = $163 + $165 = $75 >>> 21 + $166 = $79 << 4 + $167 = $166 | $165 + $168 = $167 & 255 + $169 = ($s + 25) | 0 + HEAP8[$169 >> 0] = $168 + $170 = $79 >>> 4 + $171 = $170 & 255 + $172 = ($s + 26) | 0 + HEAP8[$172 >> 0] = $171 + $173 = $79 >>> 12 + $174 = $173 & 255 + $175 = ($s + 27) | 0 + HEAP8[$175 >> 0] = $174 + $176 = $79 >>> 20 + $177 = $80 << 6 + $178 = $176 | $177 + $179 = $178 & 255 + $180 = ($s + 28) | 0 + HEAP8[$180 >> 0] = $179 + $181 = $77 >>> 2 + $182 = $181 & 255 + $183 = ($s + 29) | 0 + HEAP8[$183 >> 0] = $182 + $184 = $77 >>> 10 + $185 = $184 & 255 + $186 = ($s + 30) | 0 + HEAP8[$186 >> 0] = $185 + $187 = $80 >>> 18 + $188 = $187 & 255 + $189 = ($s + 31) | 0 + HEAP8[$189 >> 0] = $188 + return + } + function _fe_isnonzero($f) { + $f = $f | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0, + $26 = 0 + var $27 = 0, + $28 = 0, + $29 = 0, + $3 = 0, + $30 = 0, + $31 = 0, + $32 = 0, + $33 = 0, + $34 = 0, + $35 = 0, + $36 = 0, + $37 = 0, + $38 = 0, + $39 = 0, + $4 = 0, + $40 = 0, + $41 = 0, + $42 = 0, + $43 = 0, + $44 = 0 + var $45 = 0, + $46 = 0, + $47 = 0, + $48 = 0, + $49 = 0, + $5 = 0, + $50 = 0, + $51 = 0, + $52 = 0, + $53 = 0, + $54 = 0, + $55 = 0, + $56 = 0, + $57 = 0, + $58 = 0, + $59 = 0, + $6 = 0, + $60 = 0, + $61 = 0, + $62 = 0 + var $63 = 0, + $64 = 0, + $65 = 0, + $66 = 0, + $67 = 0, + $68 = 0, + $69 = 0, + $7 = 0, + $70 = 0, + $71 = 0, + $72 = 0, + $73 = 0, + $74 = 0, + $75 = 0, + $76 = 0, + $77 = 0, + $78 = 0, + $79 = 0, + $8 = 0, + $80 = 0 + var $81 = 0, + $82 = 0, + $83 = 0, + $84 = 0, + $85 = 0, + $86 = 0, + $87 = 0, + $88 = 0, + $89 = 0, + $9 = 0, + $90 = 0, + $91 = 0, + $92 = 0, + $93 = 0, + $94 = 0, + $95 = 0, + $s = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 32) | 0 + $s = sp + _fe_tobytes($s, $f) + $0 = HEAP8[$s >> 0] | 0 + $1 = ($s + 1) | 0 + $2 = HEAP8[$1 >> 0] | 0 + $3 = $2 | $0 + $4 = ($s + 2) | 0 + $5 = HEAP8[$4 >> 0] | 0 + $6 = $3 | $5 + $7 = ($s + 3) | 0 + $8 = HEAP8[$7 >> 0] | 0 + $9 = $6 | $8 + $10 = ($s + 4) | 0 + $11 = HEAP8[$10 >> 0] | 0 + $12 = $9 | $11 + $13 = ($s + 5) | 0 + $14 = HEAP8[$13 >> 0] | 0 + $15 = $12 | $14 + $16 = ($s + 6) | 0 + $17 = HEAP8[$16 >> 0] | 0 + $18 = $15 | $17 + $19 = ($s + 7) | 0 + $20 = HEAP8[$19 >> 0] | 0 + $21 = $18 | $20 + $22 = ($s + 8) | 0 + $23 = HEAP8[$22 >> 0] | 0 + $24 = $21 | $23 + $25 = ($s + 9) | 0 + $26 = HEAP8[$25 >> 0] | 0 + $27 = $24 | $26 + $28 = ($s + 10) | 0 + $29 = HEAP8[$28 >> 0] | 0 + $30 = $27 | $29 + $31 = ($s + 11) | 0 + $32 = HEAP8[$31 >> 0] | 0 + $33 = $30 | $32 + $34 = ($s + 12) | 0 + $35 = HEAP8[$34 >> 0] | 0 + $36 = $33 | $35 + $37 = ($s + 13) | 0 + $38 = HEAP8[$37 >> 0] | 0 + $39 = $36 | $38 + $40 = ($s + 14) | 0 + $41 = HEAP8[$40 >> 0] | 0 + $42 = $39 | $41 + $43 = ($s + 15) | 0 + $44 = HEAP8[$43 >> 0] | 0 + $45 = $42 | $44 + $46 = ($s + 16) | 0 + $47 = HEAP8[$46 >> 0] | 0 + $48 = $45 | $47 + $49 = ($s + 17) | 0 + $50 = HEAP8[$49 >> 0] | 0 + $51 = $48 | $50 + $52 = ($s + 18) | 0 + $53 = HEAP8[$52 >> 0] | 0 + $54 = $51 | $53 + $55 = ($s + 19) | 0 + $56 = HEAP8[$55 >> 0] | 0 + $57 = $54 | $56 + $58 = ($s + 20) | 0 + $59 = HEAP8[$58 >> 0] | 0 + $60 = $57 | $59 + $61 = ($s + 21) | 0 + $62 = HEAP8[$61 >> 0] | 0 + $63 = $60 | $62 + $64 = ($s + 22) | 0 + $65 = HEAP8[$64 >> 0] | 0 + $66 = $63 | $65 + $67 = ($s + 23) | 0 + $68 = HEAP8[$67 >> 0] | 0 + $69 = $66 | $68 + $70 = ($s + 24) | 0 + $71 = HEAP8[$70 >> 0] | 0 + $72 = $69 | $71 + $73 = ($s + 25) | 0 + $74 = HEAP8[$73 >> 0] | 0 + $75 = $72 | $74 + $76 = ($s + 26) | 0 + $77 = HEAP8[$76 >> 0] | 0 + $78 = $75 | $77 + $79 = ($s + 27) | 0 + $80 = HEAP8[$79 >> 0] | 0 + $81 = $78 | $80 + $82 = ($s + 28) | 0 + $83 = HEAP8[$82 >> 0] | 0 + $84 = $81 | $83 + $85 = ($s + 29) | 0 + $86 = HEAP8[$85 >> 0] | 0 + $87 = $84 | $86 + $88 = ($s + 30) | 0 + $89 = HEAP8[$88 >> 0] | 0 + $90 = $87 | $89 + $91 = ($s + 31) | 0 + $92 = HEAP8[$91 >> 0] | 0 + $93 = $90 | $92 + $94 = ($93 << 24) >> 24 != 0 + $95 = $94 & 1 + STACKTOP = sp + return $95 | 0 + } + function _fe_neg($h, $f) { + $h = $h | 0 + $f = $f | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0, + $26 = 0 + var $27 = 0, + $28 = 0, + $29 = 0, + $3 = 0, + $30 = 0, + $31 = 0, + $32 = 0, + $33 = 0, + $34 = 0, + $35 = 0, + $36 = 0, + $37 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = HEAP32[$f >> 2] | 0 + $1 = ($f + 4) | 0 + $2 = HEAP32[$1 >> 2] | 0 + $3 = ($f + 8) | 0 + $4 = HEAP32[$3 >> 2] | 0 + $5 = ($f + 12) | 0 + $6 = HEAP32[$5 >> 2] | 0 + $7 = ($f + 16) | 0 + $8 = HEAP32[$7 >> 2] | 0 + $9 = ($f + 20) | 0 + $10 = HEAP32[$9 >> 2] | 0 + $11 = ($f + 24) | 0 + $12 = HEAP32[$11 >> 2] | 0 + $13 = ($f + 28) | 0 + $14 = HEAP32[$13 >> 2] | 0 + $15 = ($f + 32) | 0 + $16 = HEAP32[$15 >> 2] | 0 + $17 = ($f + 36) | 0 + $18 = HEAP32[$17 >> 2] | 0 + $19 = (0 - $0) | 0 + $20 = (0 - $2) | 0 + $21 = (0 - $4) | 0 + $22 = (0 - $6) | 0 + $23 = (0 - $8) | 0 + $24 = (0 - $10) | 0 + $25 = (0 - $12) | 0 + $26 = (0 - $14) | 0 + $27 = (0 - $16) | 0 + $28 = (0 - $18) | 0 + HEAP32[$h >> 2] = $19 + $29 = ($h + 4) | 0 + HEAP32[$29 >> 2] = $20 + $30 = ($h + 8) | 0 + HEAP32[$30 >> 2] = $21 + $31 = ($h + 12) | 0 + HEAP32[$31 >> 2] = $22 + $32 = ($h + 16) | 0 + HEAP32[$32 >> 2] = $23 + $33 = ($h + 20) | 0 + HEAP32[$33 >> 2] = $24 + $34 = ($h + 24) | 0 + HEAP32[$34 >> 2] = $25 + $35 = ($h + 28) | 0 + HEAP32[$35 >> 2] = $26 + $36 = ($h + 32) | 0 + HEAP32[$36 >> 2] = $27 + $37 = ($h + 36) | 0 + HEAP32[$37 >> 2] = $28 + return + } + function _fe_pow22523($out, $z) { + $out = $out | 0 + $z = $z | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $exitcond = 0, + $exitcond10 = 0, + $exitcond11 = 0, + $i$74 = 0, + $i$83 = 0, + $i$92 = 0, + $t0 = 0, + $t1 = 0, + $t2 = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 128) | 0 + $t0 = (sp + 80) | 0 + $t1 = (sp + 40) | 0 + $t2 = sp + _fe_sq($t0, $z) + _fe_sq($t1, $t0) + _fe_sq($t1, $t1) + _fe_mul($t1, $z, $t1) + _fe_mul($t0, $t0, $t1) + _fe_sq($t0, $t0) + _fe_mul($t0, $t1, $t0) + _fe_sq($t1, $t0) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_mul($t0, $t1, $t0) + _fe_sq($t1, $t0) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_mul($t1, $t1, $t0) + _fe_sq($t2, $t1) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_sq($t2, $t2) + _fe_mul($t1, $t2, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_sq($t1, $t1) + _fe_mul($t0, $t1, $t0) + _fe_sq($t1, $t0) + $i$74 = 1 + while (1) { + _fe_sq($t1, $t1) + $0 = ($i$74 + 1) | 0 + $exitcond11 = ($0 | 0) == 50 + if ($exitcond11) { + break + } else { + $i$74 = $0 + } + } + _fe_mul($t1, $t1, $t0) + _fe_sq($t2, $t1) + $i$83 = 1 + while (1) { + _fe_sq($t2, $t2) + $1 = ($i$83 + 1) | 0 + $exitcond10 = ($1 | 0) == 100 + if ($exitcond10) { + break + } else { + $i$83 = $1 + } + } + _fe_mul($t1, $t2, $t1) + _fe_sq($t1, $t1) + $i$92 = 1 + while (1) { + _fe_sq($t1, $t1) + $2 = ($i$92 + 1) | 0 + $exitcond = ($2 | 0) == 50 + if ($exitcond) { + break + } else { + $i$92 = $2 + } + } + _fe_mul($t0, $t1, $t0) + _fe_sq($t0, $t0) + _fe_sq($t0, $t0) + _fe_mul($out, $t0, $z) + STACKTOP = sp + return + } + function _fe_sq2($h, $f) { + $h = $h | 0 + $f = $f | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $100 = 0, + $101 = 0, + $102 = 0, + $103 = 0, + $104 = 0, + $105 = 0, + $106 = 0, + $107 = 0, + $108 = 0, + $109 = 0, + $11 = 0, + $110 = 0, + $111 = 0, + $112 = 0, + $113 = 0, + $114 = 0, + $115 = 0 + var $116 = 0, + $117 = 0, + $118 = 0, + $119 = 0, + $12 = 0, + $120 = 0, + $121 = 0, + $122 = 0, + $123 = 0, + $124 = 0, + $125 = 0, + $126 = 0, + $127 = 0, + $128 = 0, + $129 = 0, + $13 = 0, + $130 = 0, + $131 = 0, + $132 = 0, + $133 = 0 + var $134 = 0, + $135 = 0, + $136 = 0, + $137 = 0, + $138 = 0, + $139 = 0, + $14 = 0, + $140 = 0, + $141 = 0, + $142 = 0, + $143 = 0, + $144 = 0, + $145 = 0, + $146 = 0, + $147 = 0, + $148 = 0, + $149 = 0, + $15 = 0, + $150 = 0, + $151 = 0 + var $152 = 0, + $153 = 0, + $154 = 0, + $155 = 0, + $156 = 0, + $157 = 0, + $158 = 0, + $159 = 0, + $16 = 0, + $160 = 0, + $161 = 0, + $162 = 0, + $163 = 0, + $164 = 0, + $165 = 0, + $166 = 0, + $167 = 0, + $168 = 0, + $169 = 0, + $17 = 0 + var $170 = 0, + $171 = 0, + $172 = 0, + $173 = 0, + $174 = 0, + $175 = 0, + $176 = 0, + $177 = 0, + $178 = 0, + $179 = 0, + $18 = 0, + $180 = 0, + $181 = 0, + $182 = 0, + $183 = 0, + $184 = 0, + $185 = 0, + $186 = 0, + $187 = 0, + $188 = 0 + var $189 = 0, + $19 = 0, + $190 = 0, + $191 = 0, + $192 = 0, + $193 = 0, + $194 = 0, + $195 = 0, + $196 = 0, + $197 = 0, + $198 = 0, + $199 = 0, + $2 = 0, + $20 = 0, + $200 = 0, + $201 = 0, + $202 = 0, + $203 = 0, + $204 = 0, + $205 = 0 + var $206 = 0, + $207 = 0, + $208 = 0, + $209 = 0, + $21 = 0, + $210 = 0, + $211 = 0, + $212 = 0, + $213 = 0, + $214 = 0, + $215 = 0, + $216 = 0, + $217 = 0, + $218 = 0, + $219 = 0, + $22 = 0, + $220 = 0, + $221 = 0, + $222 = 0, + $223 = 0 + var $224 = 0, + $225 = 0, + $226 = 0, + $227 = 0, + $228 = 0, + $229 = 0, + $23 = 0, + $230 = 0, + $231 = 0, + $232 = 0, + $233 = 0, + $234 = 0, + $235 = 0, + $236 = 0, + $237 = 0, + $238 = 0, + $239 = 0, + $24 = 0, + $240 = 0, + $241 = 0 + var $242 = 0, + $243 = 0, + $244 = 0, + $245 = 0, + $246 = 0, + $247 = 0, + $248 = 0, + $249 = 0, + $25 = 0, + $250 = 0, + $251 = 0, + $252 = 0, + $253 = 0, + $254 = 0, + $255 = 0, + $256 = 0, + $257 = 0, + $258 = 0, + $259 = 0, + $26 = 0 + var $260 = 0, + $261 = 0, + $262 = 0, + $263 = 0, + $264 = 0, + $265 = 0, + $266 = 0, + $267 = 0, + $268 = 0, + $269 = 0, + $27 = 0, + $270 = 0, + $271 = 0, + $272 = 0, + $273 = 0, + $274 = 0, + $275 = 0, + $276 = 0, + $277 = 0, + $278 = 0 + var $279 = 0, + $28 = 0, + $280 = 0, + $281 = 0, + $282 = 0, + $283 = 0, + $284 = 0, + $285 = 0, + $286 = 0, + $287 = 0, + $288 = 0, + $289 = 0, + $29 = 0, + $290 = 0, + $291 = 0, + $292 = 0, + $293 = 0, + $294 = 0, + $295 = 0, + $296 = 0 + var $297 = 0, + $298 = 0, + $299 = 0, + $3 = 0, + $30 = 0, + $300 = 0, + $301 = 0, + $302 = 0, + $303 = 0, + $304 = 0, + $305 = 0, + $306 = 0, + $307 = 0, + $308 = 0, + $309 = 0, + $31 = 0, + $310 = 0, + $311 = 0, + $312 = 0, + $313 = 0 + var $314 = 0, + $315 = 0, + $316 = 0, + $317 = 0, + $318 = 0, + $319 = 0, + $32 = 0, + $320 = 0, + $321 = 0, + $322 = 0, + $323 = 0, + $324 = 0, + $325 = 0, + $326 = 0, + $327 = 0, + $328 = 0, + $329 = 0, + $33 = 0, + $330 = 0, + $331 = 0 + var $332 = 0, + $333 = 0, + $334 = 0, + $335 = 0, + $336 = 0, + $337 = 0, + $338 = 0, + $339 = 0, + $34 = 0, + $340 = 0, + $341 = 0, + $342 = 0, + $343 = 0, + $344 = 0, + $345 = 0, + $346 = 0, + $347 = 0, + $348 = 0, + $349 = 0, + $35 = 0 + var $350 = 0, + $351 = 0, + $352 = 0, + $353 = 0, + $354 = 0, + $355 = 0, + $356 = 0, + $357 = 0, + $358 = 0, + $359 = 0, + $36 = 0, + $360 = 0, + $361 = 0, + $362 = 0, + $363 = 0, + $364 = 0, + $365 = 0, + $366 = 0, + $367 = 0, + $368 = 0 + var $369 = 0, + $37 = 0, + $370 = 0, + $371 = 0, + $372 = 0, + $373 = 0, + $374 = 0, + $375 = 0, + $376 = 0, + $377 = 0, + $378 = 0, + $379 = 0, + $38 = 0, + $380 = 0, + $381 = 0, + $382 = 0, + $383 = 0, + $384 = 0, + $385 = 0, + $386 = 0 + var $387 = 0, + $388 = 0, + $389 = 0, + $39 = 0, + $390 = 0, + $391 = 0, + $392 = 0, + $393 = 0, + $394 = 0, + $395 = 0, + $396 = 0, + $397 = 0, + $398 = 0, + $399 = 0, + $4 = 0, + $40 = 0, + $400 = 0, + $401 = 0, + $402 = 0, + $403 = 0 + var $404 = 0, + $405 = 0, + $406 = 0, + $407 = 0, + $408 = 0, + $409 = 0, + $41 = 0, + $410 = 0, + $411 = 0, + $412 = 0, + $413 = 0, + $414 = 0, + $415 = 0, + $416 = 0, + $417 = 0, + $418 = 0, + $419 = 0, + $42 = 0, + $420 = 0, + $421 = 0 + var $422 = 0, + $423 = 0, + $424 = 0, + $425 = 0, + $426 = 0, + $427 = 0, + $428 = 0, + $43 = 0, + $44 = 0, + $45 = 0, + $46 = 0, + $47 = 0, + $48 = 0, + $49 = 0, + $5 = 0, + $50 = 0, + $51 = 0, + $52 = 0, + $53 = 0, + $54 = 0 + var $55 = 0, + $56 = 0, + $57 = 0, + $58 = 0, + $59 = 0, + $6 = 0, + $60 = 0, + $61 = 0, + $62 = 0, + $63 = 0, + $64 = 0, + $65 = 0, + $66 = 0, + $67 = 0, + $68 = 0, + $69 = 0, + $7 = 0, + $70 = 0, + $71 = 0, + $72 = 0 + var $73 = 0, + $74 = 0, + $75 = 0, + $76 = 0, + $77 = 0, + $78 = 0, + $79 = 0, + $8 = 0, + $80 = 0, + $81 = 0, + $82 = 0, + $83 = 0, + $84 = 0, + $85 = 0, + $86 = 0, + $87 = 0, + $88 = 0, + $89 = 0, + $9 = 0, + $90 = 0 + var $91 = 0, + $92 = 0, + $93 = 0, + $94 = 0, + $95 = 0, + $96 = 0, + $97 = 0, + $98 = 0, + $99 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = HEAP32[$f >> 2] | 0 + $1 = ($f + 4) | 0 + $2 = HEAP32[$1 >> 2] | 0 + $3 = ($f + 8) | 0 + $4 = HEAP32[$3 >> 2] | 0 + $5 = ($f + 12) | 0 + $6 = HEAP32[$5 >> 2] | 0 + $7 = ($f + 16) | 0 + $8 = HEAP32[$7 >> 2] | 0 + $9 = ($f + 20) | 0 + $10 = HEAP32[$9 >> 2] | 0 + $11 = ($f + 24) | 0 + $12 = HEAP32[$11 >> 2] | 0 + $13 = ($f + 28) | 0 + $14 = HEAP32[$13 >> 2] | 0 + $15 = ($f + 32) | 0 + $16 = HEAP32[$15 >> 2] | 0 + $17 = ($f + 36) | 0 + $18 = HEAP32[$17 >> 2] | 0 + $19 = $0 << 1 + $20 = $2 << 1 + $21 = $4 << 1 + $22 = $6 << 1 + $23 = $8 << 1 + $24 = $10 << 1 + $25 = $12 << 1 + $26 = $14 << 1 + $27 = ($10 * 38) | 0 + $28 = ($12 * 19) | 0 + $29 = ($14 * 38) | 0 + $30 = ($16 * 19) | 0 + $31 = ($18 * 38) | 0 + $32 = ($0 | 0) < 0 + $33 = ($32 << 31) >> 31 + $34 = ___muldi3($0 | 0, $33 | 0, $0 | 0, $33 | 0) | 0 + $35 = tempRet0 + $36 = ($19 | 0) < 0 + $37 = ($36 << 31) >> 31 + $38 = ($2 | 0) < 0 + $39 = ($38 << 31) >> 31 + $40 = ___muldi3($19 | 0, $37 | 0, $2 | 0, $39 | 0) | 0 + $41 = tempRet0 + $42 = ($4 | 0) < 0 + $43 = ($42 << 31) >> 31 + $44 = ___muldi3($4 | 0, $43 | 0, $19 | 0, $37 | 0) | 0 + $45 = tempRet0 + $46 = ($6 | 0) < 0 + $47 = ($46 << 31) >> 31 + $48 = ___muldi3($6 | 0, $47 | 0, $19 | 0, $37 | 0) | 0 + $49 = tempRet0 + $50 = ($8 | 0) < 0 + $51 = ($50 << 31) >> 31 + $52 = ___muldi3($8 | 0, $51 | 0, $19 | 0, $37 | 0) | 0 + $53 = tempRet0 + $54 = ($10 | 0) < 0 + $55 = ($54 << 31) >> 31 + $56 = ___muldi3($10 | 0, $55 | 0, $19 | 0, $37 | 0) | 0 + $57 = tempRet0 + $58 = ($12 | 0) < 0 + $59 = ($58 << 31) >> 31 + $60 = ___muldi3($12 | 0, $59 | 0, $19 | 0, $37 | 0) | 0 + $61 = tempRet0 + $62 = ($14 | 0) < 0 + $63 = ($62 << 31) >> 31 + $64 = ___muldi3($14 | 0, $63 | 0, $19 | 0, $37 | 0) | 0 + $65 = tempRet0 + $66 = ($16 | 0) < 0 + $67 = ($66 << 31) >> 31 + $68 = ___muldi3($16 | 0, $67 | 0, $19 | 0, $37 | 0) | 0 + $69 = tempRet0 + $70 = ($18 | 0) < 0 + $71 = ($70 << 31) >> 31 + $72 = ___muldi3($18 | 0, $71 | 0, $19 | 0, $37 | 0) | 0 + $73 = tempRet0 + $74 = ($20 | 0) < 0 + $75 = ($74 << 31) >> 31 + $76 = ___muldi3($20 | 0, $75 | 0, $2 | 0, $39 | 0) | 0 + $77 = tempRet0 + $78 = ___muldi3($20 | 0, $75 | 0, $4 | 0, $43 | 0) | 0 + $79 = tempRet0 + $80 = ($22 | 0) < 0 + $81 = ($80 << 31) >> 31 + $82 = ___muldi3($22 | 0, $81 | 0, $20 | 0, $75 | 0) | 0 + $83 = tempRet0 + $84 = ___muldi3($8 | 0, $51 | 0, $20 | 0, $75 | 0) | 0 + $85 = tempRet0 + $86 = ($24 | 0) < 0 + $87 = ($86 << 31) >> 31 + $88 = ___muldi3($24 | 0, $87 | 0, $20 | 0, $75 | 0) | 0 + $89 = tempRet0 + $90 = ___muldi3($12 | 0, $59 | 0, $20 | 0, $75 | 0) | 0 + $91 = tempRet0 + $92 = ($26 | 0) < 0 + $93 = ($92 << 31) >> 31 + $94 = ___muldi3($26 | 0, $93 | 0, $20 | 0, $75 | 0) | 0 + $95 = tempRet0 + $96 = ___muldi3($16 | 0, $67 | 0, $20 | 0, $75 | 0) | 0 + $97 = tempRet0 + $98 = ($31 | 0) < 0 + $99 = ($98 << 31) >> 31 + $100 = ___muldi3($31 | 0, $99 | 0, $20 | 0, $75 | 0) | 0 + $101 = tempRet0 + $102 = ___muldi3($4 | 0, $43 | 0, $4 | 0, $43 | 0) | 0 + $103 = tempRet0 + $104 = ($21 | 0) < 0 + $105 = ($104 << 31) >> 31 + $106 = ___muldi3($21 | 0, $105 | 0, $6 | 0, $47 | 0) | 0 + $107 = tempRet0 + $108 = ___muldi3($8 | 0, $51 | 0, $21 | 0, $105 | 0) | 0 + $109 = tempRet0 + $110 = ___muldi3($10 | 0, $55 | 0, $21 | 0, $105 | 0) | 0 + $111 = tempRet0 + $112 = ___muldi3($12 | 0, $59 | 0, $21 | 0, $105 | 0) | 0 + $113 = tempRet0 + $114 = ___muldi3($14 | 0, $63 | 0, $21 | 0, $105 | 0) | 0 + $115 = tempRet0 + $116 = ($30 | 0) < 0 + $117 = ($116 << 31) >> 31 + $118 = ___muldi3($30 | 0, $117 | 0, $21 | 0, $105 | 0) | 0 + $119 = tempRet0 + $120 = ___muldi3($31 | 0, $99 | 0, $4 | 0, $43 | 0) | 0 + $121 = tempRet0 + $122 = ___muldi3($22 | 0, $81 | 0, $6 | 0, $47 | 0) | 0 + $123 = tempRet0 + $124 = ___muldi3($22 | 0, $81 | 0, $8 | 0, $51 | 0) | 0 + $125 = tempRet0 + $126 = ___muldi3($24 | 0, $87 | 0, $22 | 0, $81 | 0) | 0 + $127 = tempRet0 + $128 = ___muldi3($12 | 0, $59 | 0, $22 | 0, $81 | 0) | 0 + $129 = tempRet0 + $130 = ($29 | 0) < 0 + $131 = ($130 << 31) >> 31 + $132 = ___muldi3($29 | 0, $131 | 0, $22 | 0, $81 | 0) | 0 + $133 = tempRet0 + $134 = ___muldi3($30 | 0, $117 | 0, $22 | 0, $81 | 0) | 0 + $135 = tempRet0 + $136 = ___muldi3($31 | 0, $99 | 0, $22 | 0, $81 | 0) | 0 + $137 = tempRet0 + $138 = ___muldi3($8 | 0, $51 | 0, $8 | 0, $51 | 0) | 0 + $139 = tempRet0 + $140 = ($23 | 0) < 0 + $141 = ($140 << 31) >> 31 + $142 = ___muldi3($23 | 0, $141 | 0, $10 | 0, $55 | 0) | 0 + $143 = tempRet0 + $144 = ($28 | 0) < 0 + $145 = ($144 << 31) >> 31 + $146 = ___muldi3($28 | 0, $145 | 0, $23 | 0, $141 | 0) | 0 + $147 = tempRet0 + $148 = ___muldi3($29 | 0, $131 | 0, $8 | 0, $51 | 0) | 0 + $149 = tempRet0 + $150 = ___muldi3($30 | 0, $117 | 0, $23 | 0, $141 | 0) | 0 + $151 = tempRet0 + $152 = ___muldi3($31 | 0, $99 | 0, $8 | 0, $51 | 0) | 0 + $153 = tempRet0 + $154 = ($27 | 0) < 0 + $155 = ($154 << 31) >> 31 + $156 = ___muldi3($27 | 0, $155 | 0, $10 | 0, $55 | 0) | 0 + $157 = tempRet0 + $158 = ___muldi3($28 | 0, $145 | 0, $24 | 0, $87 | 0) | 0 + $159 = tempRet0 + $160 = ___muldi3($29 | 0, $131 | 0, $24 | 0, $87 | 0) | 0 + $161 = tempRet0 + $162 = ___muldi3($30 | 0, $117 | 0, $24 | 0, $87 | 0) | 0 + $163 = tempRet0 + $164 = ___muldi3($31 | 0, $99 | 0, $24 | 0, $87 | 0) | 0 + $165 = tempRet0 + $166 = ___muldi3($28 | 0, $145 | 0, $12 | 0, $59 | 0) | 0 + $167 = tempRet0 + $168 = ___muldi3($29 | 0, $131 | 0, $12 | 0, $59 | 0) | 0 + $169 = tempRet0 + $170 = ($25 | 0) < 0 + $171 = ($170 << 31) >> 31 + $172 = ___muldi3($30 | 0, $117 | 0, $25 | 0, $171 | 0) | 0 + $173 = tempRet0 + $174 = ___muldi3($31 | 0, $99 | 0, $12 | 0, $59 | 0) | 0 + $175 = tempRet0 + $176 = ___muldi3($29 | 0, $131 | 0, $14 | 0, $63 | 0) | 0 + $177 = tempRet0 + $178 = ___muldi3($30 | 0, $117 | 0, $26 | 0, $93 | 0) | 0 + $179 = tempRet0 + $180 = ___muldi3($31 | 0, $99 | 0, $26 | 0, $93 | 0) | 0 + $181 = tempRet0 + $182 = ___muldi3($30 | 0, $117 | 0, $16 | 0, $67 | 0) | 0 + $183 = tempRet0 + $184 = ___muldi3($31 | 0, $99 | 0, $16 | 0, $67 | 0) | 0 + $185 = tempRet0 + $186 = ___muldi3($31 | 0, $99 | 0, $18 | 0, $71 | 0) | 0 + $187 = tempRet0 + $188 = _i64Add($156 | 0, $157 | 0, $34 | 0, $35 | 0) | 0 + $189 = tempRet0 + $190 = _i64Add($188 | 0, $189 | 0, $146 | 0, $147 | 0) | 0 + $191 = tempRet0 + $192 = _i64Add($190 | 0, $191 | 0, $132 | 0, $133 | 0) | 0 + $193 = tempRet0 + $194 = _i64Add($192 | 0, $193 | 0, $118 | 0, $119 | 0) | 0 + $195 = tempRet0 + $196 = _i64Add($194 | 0, $195 | 0, $100 | 0, $101 | 0) | 0 + $197 = tempRet0 + $198 = _i64Add($158 | 0, $159 | 0, $40 | 0, $41 | 0) | 0 + $199 = tempRet0 + $200 = _i64Add($198 | 0, $199 | 0, $148 | 0, $149 | 0) | 0 + $201 = tempRet0 + $202 = _i64Add($200 | 0, $201 | 0, $134 | 0, $135 | 0) | 0 + $203 = tempRet0 + $204 = _i64Add($202 | 0, $203 | 0, $120 | 0, $121 | 0) | 0 + $205 = tempRet0 + $206 = _i64Add($44 | 0, $45 | 0, $76 | 0, $77 | 0) | 0 + $207 = tempRet0 + $208 = _i64Add($206 | 0, $207 | 0, $166 | 0, $167 | 0) | 0 + $209 = tempRet0 + $210 = _i64Add($208 | 0, $209 | 0, $160 | 0, $161 | 0) | 0 + $211 = tempRet0 + $212 = _i64Add($210 | 0, $211 | 0, $150 | 0, $151 | 0) | 0 + $213 = tempRet0 + $214 = _i64Add($212 | 0, $213 | 0, $136 | 0, $137 | 0) | 0 + $215 = tempRet0 + $216 = _i64Add($48 | 0, $49 | 0, $78 | 0, $79 | 0) | 0 + $217 = tempRet0 + $218 = _i64Add($216 | 0, $217 | 0, $168 | 0, $169 | 0) | 0 + $219 = tempRet0 + $220 = _i64Add($218 | 0, $219 | 0, $162 | 0, $163 | 0) | 0 + $221 = tempRet0 + $222 = _i64Add($220 | 0, $221 | 0, $152 | 0, $153 | 0) | 0 + $223 = tempRet0 + $224 = _i64Add($82 | 0, $83 | 0, $102 | 0, $103 | 0) | 0 + $225 = tempRet0 + $226 = _i64Add($224 | 0, $225 | 0, $52 | 0, $53 | 0) | 0 + $227 = tempRet0 + $228 = _i64Add($226 | 0, $227 | 0, $176 | 0, $177 | 0) | 0 + $229 = tempRet0 + $230 = _i64Add($228 | 0, $229 | 0, $172 | 0, $173 | 0) | 0 + $231 = tempRet0 + $232 = _i64Add($230 | 0, $231 | 0, $164 | 0, $165 | 0) | 0 + $233 = tempRet0 + $234 = _i64Add($84 | 0, $85 | 0, $106 | 0, $107 | 0) | 0 + $235 = tempRet0 + $236 = _i64Add($234 | 0, $235 | 0, $56 | 0, $57 | 0) | 0 + $237 = tempRet0 + $238 = _i64Add($236 | 0, $237 | 0, $178 | 0, $179 | 0) | 0 + $239 = tempRet0 + $240 = _i64Add($238 | 0, $239 | 0, $174 | 0, $175 | 0) | 0 + $241 = tempRet0 + $242 = _i64Add($122 | 0, $123 | 0, $108 | 0, $109 | 0) | 0 + $243 = tempRet0 + $244 = _i64Add($242 | 0, $243 | 0, $88 | 0, $89 | 0) | 0 + $245 = tempRet0 + $246 = _i64Add($244 | 0, $245 | 0, $60 | 0, $61 | 0) | 0 + $247 = tempRet0 + $248 = _i64Add($246 | 0, $247 | 0, $182 | 0, $183 | 0) | 0 + $249 = tempRet0 + $250 = _i64Add($248 | 0, $249 | 0, $180 | 0, $181 | 0) | 0 + $251 = tempRet0 + $252 = _i64Add($110 | 0, $111 | 0, $124 | 0, $125 | 0) | 0 + $253 = tempRet0 + $254 = _i64Add($252 | 0, $253 | 0, $90 | 0, $91 | 0) | 0 + $255 = tempRet0 + $256 = _i64Add($254 | 0, $255 | 0, $64 | 0, $65 | 0) | 0 + $257 = tempRet0 + $258 = _i64Add($256 | 0, $257 | 0, $184 | 0, $185 | 0) | 0 + $259 = tempRet0 + $260 = _i64Add($112 | 0, $113 | 0, $138 | 0, $139 | 0) | 0 + $261 = tempRet0 + $262 = _i64Add($260 | 0, $261 | 0, $126 | 0, $127 | 0) | 0 + $263 = tempRet0 + $264 = _i64Add($262 | 0, $263 | 0, $94 | 0, $95 | 0) | 0 + $265 = tempRet0 + $266 = _i64Add($264 | 0, $265 | 0, $68 | 0, $69 | 0) | 0 + $267 = tempRet0 + $268 = _i64Add($266 | 0, $267 | 0, $186 | 0, $187 | 0) | 0 + $269 = tempRet0 + $270 = _i64Add($128 | 0, $129 | 0, $142 | 0, $143 | 0) | 0 + $271 = tempRet0 + $272 = _i64Add($270 | 0, $271 | 0, $114 | 0, $115 | 0) | 0 + $273 = tempRet0 + $274 = _i64Add($272 | 0, $273 | 0, $96 | 0, $97 | 0) | 0 + $275 = tempRet0 + $276 = _i64Add($274 | 0, $275 | 0, $72 | 0, $73 | 0) | 0 + $277 = tempRet0 + $278 = _bitshift64Shl($196 | 0, $197 | 0, 1) | 0 + $279 = tempRet0 + $280 = _bitshift64Shl($204 | 0, $205 | 0, 1) | 0 + $281 = tempRet0 + $282 = _bitshift64Shl($214 | 0, $215 | 0, 1) | 0 + $283 = tempRet0 + $284 = _bitshift64Shl($222 | 0, $223 | 0, 1) | 0 + $285 = tempRet0 + $286 = _bitshift64Shl($232 | 0, $233 | 0, 1) | 0 + $287 = tempRet0 + $288 = _bitshift64Shl($240 | 0, $241 | 0, 1) | 0 + $289 = tempRet0 + $290 = _bitshift64Shl($250 | 0, $251 | 0, 1) | 0 + $291 = tempRet0 + $292 = _bitshift64Shl($258 | 0, $259 | 0, 1) | 0 + $293 = tempRet0 + $294 = _bitshift64Shl($268 | 0, $269 | 0, 1) | 0 + $295 = tempRet0 + $296 = _bitshift64Shl($276 | 0, $277 | 0, 1) | 0 + $297 = tempRet0 + $298 = _i64Add($278 | 0, $279 | 0, 33554432, 0) | 0 + $299 = tempRet0 + $300 = _bitshift64Ashr($298 | 0, $299 | 0, 26) | 0 + $301 = tempRet0 + $302 = _i64Add($300 | 0, $301 | 0, $280 | 0, $281 | 0) | 0 + $303 = tempRet0 + $304 = _bitshift64Shl($300 | 0, $301 | 0, 26) | 0 + $305 = tempRet0 + $306 = _i64Subtract($278 | 0, $279 | 0, $304 | 0, $305 | 0) | 0 + $307 = tempRet0 + $308 = _i64Add($286 | 0, $287 | 0, 33554432, 0) | 0 + $309 = tempRet0 + $310 = _bitshift64Ashr($308 | 0, $309 | 0, 26) | 0 + $311 = tempRet0 + $312 = _i64Add($310 | 0, $311 | 0, $288 | 0, $289 | 0) | 0 + $313 = tempRet0 + $314 = _bitshift64Shl($310 | 0, $311 | 0, 26) | 0 + $315 = tempRet0 + $316 = _i64Subtract($286 | 0, $287 | 0, $314 | 0, $315 | 0) | 0 + $317 = tempRet0 + $318 = _i64Add($302 | 0, $303 | 0, 16777216, 0) | 0 + $319 = tempRet0 + $320 = _bitshift64Ashr($318 | 0, $319 | 0, 25) | 0 + $321 = tempRet0 + $322 = _i64Add($320 | 0, $321 | 0, $282 | 0, $283 | 0) | 0 + $323 = tempRet0 + $324 = _bitshift64Shl($320 | 0, $321 | 0, 25) | 0 + $325 = tempRet0 + $326 = _i64Subtract($302 | 0, $303 | 0, $324 | 0, $325 | 0) | 0 + $327 = tempRet0 + $328 = _i64Add($312 | 0, $313 | 0, 16777216, 0) | 0 + $329 = tempRet0 + $330 = _bitshift64Ashr($328 | 0, $329 | 0, 25) | 0 + $331 = tempRet0 + $332 = _i64Add($330 | 0, $331 | 0, $290 | 0, $291 | 0) | 0 + $333 = tempRet0 + $334 = _bitshift64Shl($330 | 0, $331 | 0, 25) | 0 + $335 = tempRet0 + $336 = _i64Subtract($312 | 0, $313 | 0, $334 | 0, $335 | 0) | 0 + $337 = tempRet0 + $338 = _i64Add($322 | 0, $323 | 0, 33554432, 0) | 0 + $339 = tempRet0 + $340 = _bitshift64Ashr($338 | 0, $339 | 0, 26) | 0 + $341 = tempRet0 + $342 = _i64Add($340 | 0, $341 | 0, $284 | 0, $285 | 0) | 0 + $343 = tempRet0 + $344 = _bitshift64Shl($340 | 0, $341 | 0, 26) | 0 + $345 = tempRet0 + $346 = _i64Subtract($322 | 0, $323 | 0, $344 | 0, $345 | 0) | 0 + $347 = tempRet0 + $348 = _i64Add($332 | 0, $333 | 0, 33554432, 0) | 0 + $349 = tempRet0 + $350 = _bitshift64Ashr($348 | 0, $349 | 0, 26) | 0 + $351 = tempRet0 + $352 = _i64Add($350 | 0, $351 | 0, $292 | 0, $293 | 0) | 0 + $353 = tempRet0 + $354 = _bitshift64Shl($350 | 0, $351 | 0, 26) | 0 + $355 = tempRet0 + $356 = _i64Subtract($332 | 0, $333 | 0, $354 | 0, $355 | 0) | 0 + $357 = tempRet0 + $358 = _i64Add($342 | 0, $343 | 0, 16777216, 0) | 0 + $359 = tempRet0 + $360 = _bitshift64Ashr($358 | 0, $359 | 0, 25) | 0 + $361 = tempRet0 + $362 = _i64Add($360 | 0, $361 | 0, $316 | 0, $317 | 0) | 0 + $363 = tempRet0 + $364 = _bitshift64Shl($360 | 0, $361 | 0, 25) | 0 + $365 = tempRet0 + $366 = _i64Subtract($342 | 0, $343 | 0, $364 | 0, $365 | 0) | 0 + $367 = tempRet0 + $368 = _i64Add($352 | 0, $353 | 0, 16777216, 0) | 0 + $369 = tempRet0 + $370 = _bitshift64Ashr($368 | 0, $369 | 0, 25) | 0 + $371 = tempRet0 + $372 = _i64Add($370 | 0, $371 | 0, $294 | 0, $295 | 0) | 0 + $373 = tempRet0 + $374 = _bitshift64Shl($370 | 0, $371 | 0, 25) | 0 + $375 = tempRet0 + $376 = _i64Subtract($352 | 0, $353 | 0, $374 | 0, $375 | 0) | 0 + $377 = tempRet0 + $378 = _i64Add($362 | 0, $363 | 0, 33554432, 0) | 0 + $379 = tempRet0 + $380 = _bitshift64Ashr($378 | 0, $379 | 0, 26) | 0 + $381 = tempRet0 + $382 = _i64Add($336 | 0, $337 | 0, $380 | 0, $381 | 0) | 0 + $383 = tempRet0 + $384 = _bitshift64Shl($380 | 0, $381 | 0, 26) | 0 + $385 = tempRet0 + $386 = _i64Subtract($362 | 0, $363 | 0, $384 | 0, $385 | 0) | 0 + $387 = tempRet0 + $388 = _i64Add($372 | 0, $373 | 0, 33554432, 0) | 0 + $389 = tempRet0 + $390 = _bitshift64Ashr($388 | 0, $389 | 0, 26) | 0 + $391 = tempRet0 + $392 = _i64Add($390 | 0, $391 | 0, $296 | 0, $297 | 0) | 0 + $393 = tempRet0 + $394 = _bitshift64Shl($390 | 0, $391 | 0, 26) | 0 + $395 = tempRet0 + $396 = _i64Subtract($372 | 0, $373 | 0, $394 | 0, $395 | 0) | 0 + $397 = tempRet0 + $398 = _i64Add($392 | 0, $393 | 0, 16777216, 0) | 0 + $399 = tempRet0 + $400 = _bitshift64Ashr($398 | 0, $399 | 0, 25) | 0 + $401 = tempRet0 + $402 = ___muldi3($400 | 0, $401 | 0, 19, 0) | 0 + $403 = tempRet0 + $404 = _i64Add($402 | 0, $403 | 0, $306 | 0, $307 | 0) | 0 + $405 = tempRet0 + $406 = _bitshift64Shl($400 | 0, $401 | 0, 25) | 0 + $407 = tempRet0 + $408 = _i64Subtract($392 | 0, $393 | 0, $406 | 0, $407 | 0) | 0 + $409 = tempRet0 + $410 = _i64Add($404 | 0, $405 | 0, 33554432, 0) | 0 + $411 = tempRet0 + $412 = _bitshift64Ashr($410 | 0, $411 | 0, 26) | 0 + $413 = tempRet0 + $414 = _i64Add($326 | 0, $327 | 0, $412 | 0, $413 | 0) | 0 + $415 = tempRet0 + $416 = _bitshift64Shl($412 | 0, $413 | 0, 26) | 0 + $417 = tempRet0 + $418 = _i64Subtract($404 | 0, $405 | 0, $416 | 0, $417 | 0) | 0 + $419 = tempRet0 + HEAP32[$h >> 2] = $418 + $420 = ($h + 4) | 0 + HEAP32[$420 >> 2] = $414 + $421 = ($h + 8) | 0 + HEAP32[$421 >> 2] = $346 + $422 = ($h + 12) | 0 + HEAP32[$422 >> 2] = $366 + $423 = ($h + 16) | 0 + HEAP32[$423 >> 2] = $386 + $424 = ($h + 20) | 0 + HEAP32[$424 >> 2] = $382 + $425 = ($h + 24) | 0 + HEAP32[$425 >> 2] = $356 + $426 = ($h + 28) | 0 + HEAP32[$426 >> 2] = $376 + $427 = ($h + 32) | 0 + HEAP32[$427 >> 2] = $396 + $428 = ($h + 36) | 0 + HEAP32[$428 >> 2] = $408 + return + } + function _fe_sub($h, $f, $g) { + $h = $h | 0 + $f = $f | 0 + $g = $g | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0, + $26 = 0 + var $27 = 0, + $28 = 0, + $29 = 0, + $3 = 0, + $30 = 0, + $31 = 0, + $32 = 0, + $33 = 0, + $34 = 0, + $35 = 0, + $36 = 0, + $37 = 0, + $38 = 0, + $39 = 0, + $4 = 0, + $40 = 0, + $41 = 0, + $42 = 0, + $43 = 0, + $44 = 0 + var $45 = 0, + $46 = 0, + $47 = 0, + $48 = 0, + $49 = 0, + $5 = 0, + $50 = 0, + $51 = 0, + $52 = 0, + $53 = 0, + $54 = 0, + $55 = 0, + $56 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = HEAP32[$f >> 2] | 0 + $1 = ($f + 4) | 0 + $2 = HEAP32[$1 >> 2] | 0 + $3 = ($f + 8) | 0 + $4 = HEAP32[$3 >> 2] | 0 + $5 = ($f + 12) | 0 + $6 = HEAP32[$5 >> 2] | 0 + $7 = ($f + 16) | 0 + $8 = HEAP32[$7 >> 2] | 0 + $9 = ($f + 20) | 0 + $10 = HEAP32[$9 >> 2] | 0 + $11 = ($f + 24) | 0 + $12 = HEAP32[$11 >> 2] | 0 + $13 = ($f + 28) | 0 + $14 = HEAP32[$13 >> 2] | 0 + $15 = ($f + 32) | 0 + $16 = HEAP32[$15 >> 2] | 0 + $17 = ($f + 36) | 0 + $18 = HEAP32[$17 >> 2] | 0 + $19 = HEAP32[$g >> 2] | 0 + $20 = ($g + 4) | 0 + $21 = HEAP32[$20 >> 2] | 0 + $22 = ($g + 8) | 0 + $23 = HEAP32[$22 >> 2] | 0 + $24 = ($g + 12) | 0 + $25 = HEAP32[$24 >> 2] | 0 + $26 = ($g + 16) | 0 + $27 = HEAP32[$26 >> 2] | 0 + $28 = ($g + 20) | 0 + $29 = HEAP32[$28 >> 2] | 0 + $30 = ($g + 24) | 0 + $31 = HEAP32[$30 >> 2] | 0 + $32 = ($g + 28) | 0 + $33 = HEAP32[$32 >> 2] | 0 + $34 = ($g + 32) | 0 + $35 = HEAP32[$34 >> 2] | 0 + $36 = ($g + 36) | 0 + $37 = HEAP32[$36 >> 2] | 0 + $38 = ($0 - $19) | 0 + $39 = ($2 - $21) | 0 + $40 = ($4 - $23) | 0 + $41 = ($6 - $25) | 0 + $42 = ($8 - $27) | 0 + $43 = ($10 - $29) | 0 + $44 = ($12 - $31) | 0 + $45 = ($14 - $33) | 0 + $46 = ($16 - $35) | 0 + $47 = ($18 - $37) | 0 + HEAP32[$h >> 2] = $38 + $48 = ($h + 4) | 0 + HEAP32[$48 >> 2] = $39 + $49 = ($h + 8) | 0 + HEAP32[$49 >> 2] = $40 + $50 = ($h + 12) | 0 + HEAP32[$50 >> 2] = $41 + $51 = ($h + 16) | 0 + HEAP32[$51 >> 2] = $42 + $52 = ($h + 20) | 0 + HEAP32[$52 >> 2] = $43 + $53 = ($h + 24) | 0 + HEAP32[$53 >> 2] = $44 + $54 = ($h + 28) | 0 + HEAP32[$54 >> 2] = $45 + $55 = ($h + 32) | 0 + HEAP32[$55 >> 2] = $46 + $56 = ($h + 36) | 0 + HEAP32[$56 >> 2] = $47 + return + } + function _load_4($in) { + $in = $in | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0 + var $8 = 0, + $9 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = HEAP8[$in >> 0] | 0 + $1 = $0 & 255 + $2 = ($in + 1) | 0 + $3 = HEAP8[$2 >> 0] | 0 + $4 = $3 & 255 + $5 = _bitshift64Shl($4 | 0, 0, 8) | 0 + $6 = tempRet0 + $7 = $5 | $1 + $8 = ($in + 2) | 0 + $9 = HEAP8[$8 >> 0] | 0 + $10 = $9 & 255 + $11 = _bitshift64Shl($10 | 0, 0, 16) | 0 + $12 = tempRet0 + $13 = $7 | $11 + $14 = $6 | $12 + $15 = ($in + 3) | 0 + $16 = HEAP8[$15 >> 0] | 0 + $17 = $16 & 255 + $18 = _bitshift64Shl($17 | 0, 0, 24) | 0 + $19 = tempRet0 + $20 = $13 | $18 + $21 = $14 | $19 + tempRet0 = $21 + return $20 | 0 + } + function _load_3($in) { + $in = $in | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = HEAP8[$in >> 0] | 0 + $1 = $0 & 255 + $2 = ($in + 1) | 0 + $3 = HEAP8[$2 >> 0] | 0 + $4 = $3 & 255 + $5 = _bitshift64Shl($4 | 0, 0, 8) | 0 + $6 = tempRet0 + $7 = $5 | $1 + $8 = ($in + 2) | 0 + $9 = HEAP8[$8 >> 0] | 0 + $10 = $9 & 255 + $11 = _bitshift64Shl($10 | 0, 0, 16) | 0 + $12 = tempRet0 + $13 = $7 | $11 + $14 = $6 | $12 + tempRet0 = $14 + return $13 | 0 + } + function _ge_add($r, $p, $q) { + $r = $r | 0 + $p = $p | 0 + $q = $q | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $t0 = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 48) | 0 + $t0 = sp + $0 = ($p + 40) | 0 + _fe_add($r, $0, $p) + $1 = ($r + 40) | 0 + _fe_sub($1, $0, $p) + $2 = ($r + 80) | 0 + _fe_mul($2, $r, $q) + $3 = ($q + 40) | 0 + _fe_mul($1, $1, $3) + $4 = ($r + 120) | 0 + $5 = ($q + 120) | 0 + $6 = ($p + 120) | 0 + _fe_mul($4, $5, $6) + $7 = ($p + 80) | 0 + $8 = ($q + 80) | 0 + _fe_mul($r, $7, $8) + _fe_add($t0, $r, $r) + _fe_sub($r, $2, $1) + _fe_add($1, $2, $1) + _fe_add($2, $t0, $4) + _fe_sub($4, $t0, $4) + STACKTOP = sp + return + } + function _ge_double_scalarmult_vartime($r, $a, $A, $b) { + $r = $r | 0 + $a = $a | 0 + $A = $A | 0 + $b = $b | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0, + $26 = 0 + var $27 = 0, + $28 = 0, + $29 = 0, + $3 = 0, + $30 = 0, + $31 = 0, + $32 = 0, + $33 = 0, + $34 = 0, + $35 = 0, + $36 = 0, + $37 = 0, + $38 = 0, + $39 = 0, + $4 = 0, + $40 = 0, + $41 = 0, + $5 = 0, + $6 = 0, + $7 = 0 + var $8 = 0, + $9 = 0, + $A2 = 0, + $Ai = 0, + $aslide = 0, + $bslide = 0, + $i$0$lcssa = 0, + $i$02 = 0, + $i$11 = 0, + $t = 0, + $u = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 2272) | 0 + $aslide = (sp + 2016) | 0 + $bslide = (sp + 1760) | 0 + $Ai = (sp + 480) | 0 + $t = (sp + 320) | 0 + $u = (sp + 160) | 0 + $A2 = sp + _slide($aslide, $a) + _slide($bslide, $b) + _ge_p3_to_cached($Ai, $A) + _ge_p3_dbl($t, $A) + _ge_p1p1_to_p3($A2, $t) + _ge_add($t, $A2, $Ai) + _ge_p1p1_to_p3($u, $t) + $0 = ($Ai + 160) | 0 + _ge_p3_to_cached($0, $u) + _ge_add($t, $A2, $0) + _ge_p1p1_to_p3($u, $t) + $1 = ($Ai + 320) | 0 + _ge_p3_to_cached($1, $u) + _ge_add($t, $A2, $1) + _ge_p1p1_to_p3($u, $t) + $2 = ($Ai + 480) | 0 + _ge_p3_to_cached($2, $u) + _ge_add($t, $A2, $2) + _ge_p1p1_to_p3($u, $t) + $3 = ($Ai + 640) | 0 + _ge_p3_to_cached($3, $u) + _ge_add($t, $A2, $3) + _ge_p1p1_to_p3($u, $t) + $4 = ($Ai + 800) | 0 + _ge_p3_to_cached($4, $u) + _ge_add($t, $A2, $4) + _ge_p1p1_to_p3($u, $t) + $5 = ($Ai + 960) | 0 + _ge_p3_to_cached($5, $u) + _ge_add($t, $A2, $5) + _ge_p1p1_to_p3($u, $t) + $6 = ($Ai + 1120) | 0 + _ge_p3_to_cached($6, $u) + _ge_p2_0($r) + $i$02 = 255 + while (1) { + $7 = ($aslide + $i$02) | 0 + $8 = HEAP8[$7 >> 0] | 0 + $9 = ($8 << 24) >> 24 == 0 + if (!$9) { + $i$0$lcssa = $i$02 + break + } + $10 = ($bslide + $i$02) | 0 + $11 = HEAP8[$10 >> 0] | 0 + $12 = ($11 << 24) >> 24 == 0 + if (!$12) { + $i$0$lcssa = $i$02 + break + } + $14 = ($i$02 + -1) | 0 + $15 = ($i$02 | 0) > 0 + if ($15) { + $i$02 = $14 + } else { + $i$0$lcssa = $14 + break + } + } + $13 = ($i$0$lcssa | 0) > -1 + if ($13) { + $i$11 = $i$0$lcssa + } else { + STACKTOP = sp + return + } + while (1) { + _ge_p2_dbl($t, $r) + $16 = ($aslide + $i$11) | 0 + $17 = HEAP8[$16 >> 0] | 0 + $18 = ($17 << 24) >> 24 > 0 + if ($18) { + _ge_p1p1_to_p3($u, $t) + $19 = HEAP8[$16 >> 0] | 0 + $20 = ($19 << 24) >> 24 + $21 = (($20 | 0) / 2) & -1 + $22 = ($Ai + (($21 * 160) | 0)) | 0 + _ge_add($t, $u, $22) + } else { + $23 = ($17 << 24) >> 24 < 0 + if ($23) { + _ge_p1p1_to_p3($u, $t) + $24 = HEAP8[$16 >> 0] | 0 + $25 = ($24 << 24) >> 24 + $26 = (($25 | 0) / -2) & -1 + $27 = ($Ai + (($26 * 160) | 0)) | 0 + _ge_sub($t, $u, $27) + } + } + $28 = ($bslide + $i$11) | 0 + $29 = HEAP8[$28 >> 0] | 0 + $30 = ($29 << 24) >> 24 > 0 + if ($30) { + _ge_p1p1_to_p3($u, $t) + $31 = HEAP8[$28 >> 0] | 0 + $32 = ($31 << 24) >> 24 + $33 = (($32 | 0) / 2) & -1 + $34 = (648 + (($33 * 120) | 0)) | 0 + _ge_madd($t, $u, $34) + } else { + $35 = ($29 << 24) >> 24 < 0 + if ($35) { + _ge_p1p1_to_p3($u, $t) + $36 = HEAP8[$28 >> 0] | 0 + $37 = ($36 << 24) >> 24 + $38 = (($37 | 0) / -2) & -1 + $39 = (648 + (($38 * 120) | 0)) | 0 + _ge_msub($t, $u, $39) + } + } + _ge_p1p1_to_p2($r, $t) + $40 = ($i$11 + -1) | 0 + $41 = ($i$11 | 0) > 0 + if ($41) { + $i$11 = $40 + } else { + break + } + } + STACKTOP = sp + return + } + function _ge_p3_to_cached($r, $p) { + $r = $r | 0 + $p = $p | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = ($p + 40) | 0 + _fe_add($r, $0, $p) + $1 = ($r + 40) | 0 + _fe_sub($1, $0, $p) + $2 = ($r + 80) | 0 + $3 = ($p + 80) | 0 + _fe_copy($2, $3) + $4 = ($r + 120) | 0 + $5 = ($p + 120) | 0 + _fe_mul($4, $5, 1608) + return + } + function _ge_p3_dbl($r, $p) { + $r = $r | 0 + $p = $p | 0 + var $q = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 128) | 0 + $q = sp + _ge_p3_to_p2($q, $p) + _ge_p2_dbl($r, $q) + STACKTOP = sp + return + } + function _ge_p1p1_to_p3($r, $p) { + $r = $r | 0 + $p = $p | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = ($p + 120) | 0 + _fe_mul($r, $p, $0) + $1 = ($r + 40) | 0 + $2 = ($p + 40) | 0 + $3 = ($p + 80) | 0 + _fe_mul($1, $2, $3) + $4 = ($r + 80) | 0 + _fe_mul($4, $3, $0) + $5 = ($r + 120) | 0 + _fe_mul($5, $p, $2) + return + } + function _ge_p2_0($h) { + $h = $h | 0 + var $0 = 0, + $1 = 0, + label = 0, + sp = 0 + sp = STACKTOP + _fe_0($h) + $0 = ($h + 40) | 0 + _fe_1($0) + $1 = ($h + 80) | 0 + _fe_1($1) + return + } + function _ge_p2_dbl($r, $p) { + $r = $r | 0 + $p = $p | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $t0 = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 48) | 0 + $t0 = sp + _fe_sq($r, $p) + $0 = ($r + 80) | 0 + $1 = ($p + 40) | 0 + _fe_sq($0, $1) + $2 = ($r + 120) | 0 + $3 = ($p + 80) | 0 + _fe_sq2($2, $3) + $4 = ($r + 40) | 0 + _fe_add($4, $p, $1) + _fe_sq($t0, $4) + _fe_add($4, $0, $r) + _fe_sub($0, $0, $r) + _fe_sub($r, $t0, $4) + _fe_sub($2, $2, $0) + STACKTOP = sp + return + } + function _ge_sub($r, $p, $q) { + $r = $r | 0 + $p = $p | 0 + $q = $q | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $t0 = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 48) | 0 + $t0 = sp + $0 = ($p + 40) | 0 + _fe_add($r, $0, $p) + $1 = ($r + 40) | 0 + _fe_sub($1, $0, $p) + $2 = ($r + 80) | 0 + $3 = ($q + 40) | 0 + _fe_mul($2, $r, $3) + _fe_mul($1, $1, $q) + $4 = ($r + 120) | 0 + $5 = ($q + 120) | 0 + $6 = ($p + 120) | 0 + _fe_mul($4, $5, $6) + $7 = ($p + 80) | 0 + $8 = ($q + 80) | 0 + _fe_mul($r, $7, $8) + _fe_add($t0, $r, $r) + _fe_sub($r, $2, $1) + _fe_add($1, $2, $1) + _fe_sub($2, $t0, $4) + _fe_add($4, $t0, $4) + STACKTOP = sp + return + } + function _ge_madd($r, $p, $q) { + $r = $r | 0 + $p = $p | 0 + $q = $q | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $t0 = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 48) | 0 + $t0 = sp + $0 = ($p + 40) | 0 + _fe_add($r, $0, $p) + $1 = ($r + 40) | 0 + _fe_sub($1, $0, $p) + $2 = ($r + 80) | 0 + _fe_mul($2, $r, $q) + $3 = ($q + 40) | 0 + _fe_mul($1, $1, $3) + $4 = ($r + 120) | 0 + $5 = ($q + 80) | 0 + $6 = ($p + 120) | 0 + _fe_mul($4, $5, $6) + $7 = ($p + 80) | 0 + _fe_add($t0, $7, $7) + _fe_sub($r, $2, $1) + _fe_add($1, $2, $1) + _fe_add($2, $t0, $4) + _fe_sub($4, $t0, $4) + STACKTOP = sp + return + } + function _ge_msub($r, $p, $q) { + $r = $r | 0 + $p = $p | 0 + $q = $q | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $t0 = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 48) | 0 + $t0 = sp + $0 = ($p + 40) | 0 + _fe_add($r, $0, $p) + $1 = ($r + 40) | 0 + _fe_sub($1, $0, $p) + $2 = ($r + 80) | 0 + $3 = ($q + 40) | 0 + _fe_mul($2, $r, $3) + _fe_mul($1, $1, $q) + $4 = ($r + 120) | 0 + $5 = ($q + 80) | 0 + $6 = ($p + 120) | 0 + _fe_mul($4, $5, $6) + $7 = ($p + 80) | 0 + _fe_add($t0, $7, $7) + _fe_sub($r, $2, $1) + _fe_add($1, $2, $1) + _fe_sub($2, $t0, $4) + _fe_add($4, $t0, $4) + STACKTOP = sp + return + } + function _ge_p1p1_to_p2($r, $p) { + $r = $r | 0 + $p = $p | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = ($p + 120) | 0 + _fe_mul($r, $p, $0) + $1 = ($r + 40) | 0 + $2 = ($p + 40) | 0 + $3 = ($p + 80) | 0 + _fe_mul($1, $2, $3) + $4 = ($r + 80) | 0 + _fe_mul($4, $3, $0) + return + } + function _ge_frombytes_negate_vartime($h, $s) { + $h = $h | 0 + $s = $s | 0 + var $$0 = 0, + $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + $check = 0, + $u = 0, + $v = 0, + $v3 = 0, + $vxx = 0, + label = 0 + var sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 208) | 0 + $u = (sp + 160) | 0 + $v = (sp + 120) | 0 + $v3 = (sp + 80) | 0 + $vxx = (sp + 40) | 0 + $check = sp + $0 = ($h + 40) | 0 + _fe_frombytes($0, $s) + $1 = ($h + 80) | 0 + _fe_1($1) + _fe_sq($u, $0) + _fe_mul($v, $u, 1648) + _fe_sub($u, $u, $1) + _fe_add($v, $v, $1) + _fe_sq($v3, $v) + _fe_mul($v3, $v3, $v) + _fe_sq($h, $v3) + _fe_mul($h, $h, $v) + _fe_mul($h, $h, $u) + _fe_pow22523($h, $h) + _fe_mul($h, $h, $v3) + _fe_mul($h, $h, $u) + _fe_sq($vxx, $h) + _fe_mul($vxx, $vxx, $v) + _fe_sub($check, $vxx, $u) + $2 = _fe_isnonzero($check) | 0 + $3 = ($2 | 0) == 0 + do { + if (!$3) { + _fe_add($check, $vxx, $u) + $4 = _fe_isnonzero($check) | 0 + $5 = ($4 | 0) == 0 + if ($5) { + _fe_mul($h, $h, 1688) + break + } else { + $$0 = -1 + STACKTOP = sp + return $$0 | 0 + } + } + } while (0) + $6 = _fe_isnegative($h) | 0 + $7 = ($s + 31) | 0 + $8 = HEAP8[$7 >> 0] | 0 + $9 = $8 & 255 + $10 = $9 >>> 7 + $11 = ($6 | 0) == ($10 | 0) + if ($11) { + _fe_neg($h, $h) + } + $12 = ($h + 120) | 0 + _fe_mul($12, $h, $0) + $$0 = 0 + STACKTOP = sp + return $$0 | 0 + } + function _ge_p3_0($h) { + $h = $h | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + label = 0, + sp = 0 + sp = STACKTOP + _fe_0($h) + $0 = ($h + 40) | 0 + _fe_1($0) + $1 = ($h + 80) | 0 + _fe_1($1) + $2 = ($h + 120) | 0 + _fe_0($2) + return + } + function _ge_p3_to_p2($r, $p) { + $r = $r | 0 + $p = $p | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + label = 0, + sp = 0 + sp = STACKTOP + _fe_copy($r, $p) + $0 = ($r + 40) | 0 + $1 = ($p + 40) | 0 + _fe_copy($0, $1) + $2 = ($r + 80) | 0 + $3 = ($p + 80) | 0 + _fe_copy($2, $3) + return + } + function _ge_p3_tobytes($s, $h) { + $s = $s | 0 + $h = $h | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $recip = 0, + $x = 0, + $y = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 128) | 0 + $recip = (sp + 80) | 0 + $x = (sp + 40) | 0 + $y = sp + $0 = ($h + 80) | 0 + _fe_invert($recip, $0) + _fe_mul($x, $h, $recip) + $1 = ($h + 40) | 0 + _fe_mul($y, $1, $recip) + _fe_tobytes($s, $y) + $2 = _fe_isnegative($x) | 0 + $3 = $2 << 7 + $4 = ($s + 31) | 0 + $5 = HEAP8[$4 >> 0] | 0 + $6 = $5 & 255 + $7 = $6 ^ $3 + $8 = $7 & 255 + HEAP8[$4 >> 0] = $8 + STACKTOP = sp + return + } + function _ge_scalarmult_base($h, $a) { + $h = $h | 0 + $a = $a | 0 + var $$lcssa = 0, + $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0 + var $26 = 0, + $27 = 0, + $28 = 0, + $29 = 0, + $3 = 0, + $30 = 0, + $31 = 0, + $32 = 0, + $33 = 0, + $34 = 0, + $35 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + $carry$04 = 0, + $e = 0, + $exitcond = 0 + var $exitcond7 = 0, + $i$06 = 0, + $i$15 = 0, + $i$23 = 0, + $i$32 = 0, + $r = 0, + $s = 0, + $sext = 0, + $sext1 = 0, + $t = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 464) | 0 + $e = (sp + 400) | 0 + $r = (sp + 240) | 0 + $s = (sp + 120) | 0 + $t = sp + $i$06 = 0 + while (1) { + $0 = ($a + $i$06) | 0 + $1 = HEAP8[$0 >> 0] | 0 + $2 = $1 & 255 + $3 = $2 & 15 + $4 = $3 & 255 + $5 = $i$06 << 1 + $6 = ($e + $5) | 0 + HEAP8[$6 >> 0] = $4 + $7 = HEAP8[$0 >> 0] | 0 + $8 = ($7 & 255) >>> 4 + $9 = $5 | 1 + $10 = ($e + $9) | 0 + HEAP8[$10 >> 0] = $8 + $11 = ($i$06 + 1) | 0 + $exitcond7 = ($11 | 0) == 32 + if ($exitcond7) { + $carry$04 = 0 + $i$15 = 0 + break + } else { + $i$06 = $11 + } + } + while (1) { + $12 = ($e + $i$15) | 0 + $13 = HEAP8[$12 >> 0] | 0 + $14 = $13 & 255 + $15 = ($14 + $carry$04) | 0 + $sext = $15 << 24 + $sext1 = ($sext + 134217728) | 0 + $16 = $sext1 >> 28 + $17 = $16 << 4 + $18 = ($15 - $17) | 0 + $19 = $18 & 255 + HEAP8[$12 >> 0] = $19 + $20 = ($i$15 + 1) | 0 + $exitcond = ($20 | 0) == 63 + if ($exitcond) { + $$lcssa = $16 + break + } else { + $carry$04 = $16 + $i$15 = $20 + } + } + $21 = ($e + 63) | 0 + $22 = HEAP8[$21 >> 0] | 0 + $23 = $22 & 255 + $24 = ($23 + $$lcssa) | 0 + $25 = $24 & 255 + HEAP8[$21 >> 0] = $25 + _ge_p3_0($h) + $i$23 = 1 + while (1) { + $26 = (($i$23 | 0) / 2) & -1 + $27 = ($e + $i$23) | 0 + $28 = HEAP8[$27 >> 0] | 0 + _select28($t, $26, $28) + _ge_madd($r, $h, $t) + _ge_p1p1_to_p3($h, $r) + $29 = ($i$23 + 2) | 0 + $30 = ($29 | 0) < 64 + if ($30) { + $i$23 = $29 + } else { + break + } + } + _ge_p3_dbl($r, $h) + _ge_p1p1_to_p2($s, $r) + _ge_p2_dbl($r, $s) + _ge_p1p1_to_p2($s, $r) + _ge_p2_dbl($r, $s) + _ge_p1p1_to_p2($s, $r) + _ge_p2_dbl($r, $s) + _ge_p1p1_to_p3($h, $r) + $i$32 = 0 + while (1) { + $31 = (($i$32 | 0) / 2) & -1 + $32 = ($e + $i$32) | 0 + $33 = HEAP8[$32 >> 0] | 0 + _select28($t, $31, $33) + _ge_madd($r, $h, $t) + _ge_p1p1_to_p3($h, $r) + $34 = ($i$32 + 2) | 0 + $35 = ($34 | 0) < 64 + if ($35) { + $i$32 = $34 + } else { + break + } + } + STACKTOP = sp + return + } + function _ge_tobytes($s, $h) { + $s = $s | 0 + $h = $h | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $recip = 0, + $x = 0, + $y = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 128) | 0 + $recip = (sp + 80) | 0 + $x = (sp + 40) | 0 + $y = sp + $0 = ($h + 80) | 0 + _fe_invert($recip, $0) + _fe_mul($x, $h, $recip) + $1 = ($h + 40) | 0 + _fe_mul($y, $1, $recip) + _fe_tobytes($s, $y) + $2 = _fe_isnegative($x) | 0 + $3 = $2 << 7 + $4 = ($s + 31) | 0 + $5 = HEAP8[$4 >> 0] | 0 + $6 = $5 & 255 + $7 = $6 ^ $3 + $8 = $7 & 255 + HEAP8[$4 >> 0] = $8 + STACKTOP = sp + return + } + function _slide($r, $a) { + $r = $r | 0 + $a = $a | 0 + var $$lcssa = 0, + $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0 + var $26 = 0, + $27 = 0, + $28 = 0, + $29 = 0, + $3 = 0, + $30 = 0, + $31 = 0, + $32 = 0, + $33 = 0, + $34 = 0, + $35 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + $b$03 = 0, + $exitcond = 0, + $exitcond9 = 0 + var $i$07 = 0, + $i$14 = 0, + $k$02 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $i$07 = 0 + while (1) { + $0 = $i$07 >> 3 + $1 = ($a + $0) | 0 + $2 = HEAP8[$1 >> 0] | 0 + $3 = $2 & 255 + $4 = $i$07 & 7 + $5 = $3 >>> $4 + $6 = $5 & 1 + $7 = $6 & 255 + $8 = ($r + $i$07) | 0 + HEAP8[$8 >> 0] = $7 + $9 = ($i$07 + 1) | 0 + $exitcond9 = ($9 | 0) == 256 + if ($exitcond9) { + $i$14 = 0 + break + } else { + $i$07 = $9 + } + } + while (1) { + $10 = ($r + $i$14) | 0 + $11 = HEAP8[$10 >> 0] | 0 + $12 = ($11 << 24) >> 24 == 0 + L5: do { + if (!$12) { + $b$03 = 1 + while (1) { + $13 = ($b$03 + $i$14) | 0 + $14 = ($13 | 0) < 256 + if (!$14) { + break L5 + } + $15 = ($r + $13) | 0 + $16 = HEAP8[$15 >> 0] | 0 + $17 = ($16 << 24) >> 24 == 0 + L9: do { + if (!$17) { + $18 = HEAP8[$10 >> 0] | 0 + $19 = ($18 << 24) >> 24 + $20 = ($16 << 24) >> 24 + $21 = $20 << $b$03 + $22 = ($19 + $21) | 0 + $23 = ($22 | 0) < 16 + if ($23) { + $24 = $22 & 255 + HEAP8[$10 >> 0] = $24 + HEAP8[$15 >> 0] = 0 + break + } + $25 = ($19 - $21) | 0 + $26 = ($25 | 0) > -16 + if (!$26) { + break L5 + } + $27 = $25 & 255 + HEAP8[$10 >> 0] = $27 + $k$02 = $13 + while (1) { + $28 = ($r + $k$02) | 0 + $29 = HEAP8[$28 >> 0] | 0 + $30 = ($29 << 24) >> 24 == 0 + if ($30) { + $$lcssa = $28 + break + } + HEAP8[$28 >> 0] = 0 + $31 = ($k$02 + 1) | 0 + $32 = ($31 | 0) < 256 + if ($32) { + $k$02 = $31 + } else { + break L9 + } + } + HEAP8[$$lcssa >> 0] = 1 + } + } while (0) + $33 = ($b$03 + 1) | 0 + $34 = ($33 | 0) < 7 + if ($34) { + $b$03 = $33 + } else { + break + } + } + } + } while (0) + $35 = ($i$14 + 1) | 0 + $exitcond = ($35 | 0) == 256 + if ($exitcond) { + break + } else { + $i$14 = $35 + } + } + return + } + function _select28($t, $pos, $b) { + $t = $t | 0 + $pos = $pos | 0 + $b = $b | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0, + $26 = 0 + var $27 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + $minust = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 128) | 0 + $minust = sp + $0 = _negative($b) | 0 + $1 = ($b << 24) >> 24 + $2 = $0 & 255 + $3 = (0 - $2) | 0 + $4 = $1 & $3 + $5 = $4 << 1 + $6 = ($1 - $5) | 0 + $7 = $6 & 255 + _fe_1($t) + $8 = ($t + 40) | 0 + _fe_1($8) + $9 = ($t + 80) | 0 + _fe_0($9) + $10 = (1728 + (($pos * 960) | 0)) | 0 + $11 = _equal($7, 1) | 0 + _cmov($t, $10, $11) + $12 = (((1728 + (($pos * 960) | 0)) | 0) + 120) | 0 + $13 = _equal($7, 2) | 0 + _cmov($t, $12, $13) + $14 = (((1728 + (($pos * 960) | 0)) | 0) + 240) | 0 + $15 = _equal($7, 3) | 0 + _cmov($t, $14, $15) + $16 = (((1728 + (($pos * 960) | 0)) | 0) + 360) | 0 + $17 = _equal($7, 4) | 0 + _cmov($t, $16, $17) + $18 = (((1728 + (($pos * 960) | 0)) | 0) + 480) | 0 + $19 = _equal($7, 5) | 0 + _cmov($t, $18, $19) + $20 = (((1728 + (($pos * 960) | 0)) | 0) + 600) | 0 + $21 = _equal($7, 6) | 0 + _cmov($t, $20, $21) + $22 = (((1728 + (($pos * 960) | 0)) | 0) + 720) | 0 + $23 = _equal($7, 7) | 0 + _cmov($t, $22, $23) + $24 = (((1728 + (($pos * 960) | 0)) | 0) + 840) | 0 + $25 = _equal($7, 8) | 0 + _cmov($t, $24, $25) + _fe_copy($minust, $8) + $26 = ($minust + 40) | 0 + _fe_copy($26, $t) + $27 = ($minust + 80) | 0 + _fe_neg($27, $9) + _cmov($t, $minust, $0) + STACKTOP = sp + return + } + function _negative($b) { + $b = $b | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = ($b << 24) >> 24 + $1 = ($0 | 0) < 0 + $2 = ($1 << 31) >> 31 + $3 = _bitshift64Lshr($0 | 0, $2 | 0, 63) | 0 + $4 = tempRet0 + $5 = $3 & 255 + return $5 | 0 + } + function _equal($b, $c) { + $b = $b | 0 + $c = $c | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = $c ^ $b + $1 = $0 & 255 + $2 = _i64Add($1 | 0, 0, -1, -1) | 0 + $3 = tempRet0 + $4 = _bitshift64Lshr($2 | 0, $3 | 0, 63) | 0 + $5 = tempRet0 + $6 = $4 & 255 + return $6 | 0 + } + function _cmov($t, $u, $b) { + $t = $t | 0 + $u = $u | 0 + $b = $b | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = $b & 255 + _fe_cmov($t, $u, $0) + $1 = ($t + 40) | 0 + $2 = ($u + 40) | 0 + _fe_cmov($1, $2, $0) + $3 = ($t + 80) | 0 + $4 = ($u + 80) | 0 + _fe_cmov($3, $4, $0) + return + } + function _ed25519_create_keypair( + $public_key, + $private_key, + $seed + ) { + $public_key = $public_key | 0 + $private_key = $private_key | 0 + $seed = $seed | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + $A = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 160) | 0 + $A = sp + _sha512($seed, 32, $private_key) | 0 + $0 = HEAP8[$private_key >> 0] | 0 + $1 = $0 & 255 + $2 = $1 & 248 + $3 = $2 & 255 + HEAP8[$private_key >> 0] = $3 + $4 = ($private_key + 31) | 0 + $5 = HEAP8[$4 >> 0] | 0 + $6 = $5 & 255 + $7 = $6 & 63 + $8 = $7 | 64 + $9 = $8 & 255 + HEAP8[$4 >> 0] = $9 + _ge_scalarmult_base($A, $private_key) + _ge_p3_tobytes($public_key, $A) + STACKTOP = sp + return + } + function _sc_reduce($s) { + $s = $s | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $100 = 0, + $1000 = 0, + $1001 = 0, + $1002 = 0, + $1003 = 0, + $1004 = 0, + $1005 = 0, + $1006 = 0, + $1007 = 0, + $1008 = 0, + $1009 = 0, + $101 = 0, + $1010 = 0, + $1011 = 0, + $1012 = 0, + $1013 = 0, + $1014 = 0 + var $1015 = 0, + $1016 = 0, + $1017 = 0, + $1018 = 0, + $1019 = 0, + $102 = 0, + $1020 = 0, + $1021 = 0, + $1022 = 0, + $103 = 0, + $104 = 0, + $105 = 0, + $106 = 0, + $107 = 0, + $108 = 0, + $109 = 0, + $11 = 0, + $110 = 0, + $111 = 0, + $112 = 0 + var $113 = 0, + $114 = 0, + $115 = 0, + $116 = 0, + $117 = 0, + $118 = 0, + $119 = 0, + $12 = 0, + $120 = 0, + $121 = 0, + $122 = 0, + $123 = 0, + $124 = 0, + $125 = 0, + $126 = 0, + $127 = 0, + $128 = 0, + $129 = 0, + $13 = 0, + $130 = 0 + var $131 = 0, + $132 = 0, + $133 = 0, + $134 = 0, + $135 = 0, + $136 = 0, + $137 = 0, + $138 = 0, + $139 = 0, + $14 = 0, + $140 = 0, + $141 = 0, + $142 = 0, + $143 = 0, + $144 = 0, + $145 = 0, + $146 = 0, + $147 = 0, + $148 = 0, + $149 = 0 + var $15 = 0, + $150 = 0, + $151 = 0, + $152 = 0, + $153 = 0, + $154 = 0, + $155 = 0, + $156 = 0, + $157 = 0, + $158 = 0, + $159 = 0, + $16 = 0, + $160 = 0, + $161 = 0, + $162 = 0, + $163 = 0, + $164 = 0, + $165 = 0, + $166 = 0, + $167 = 0 + var $168 = 0, + $169 = 0, + $17 = 0, + $170 = 0, + $171 = 0, + $172 = 0, + $173 = 0, + $174 = 0, + $175 = 0, + $176 = 0, + $177 = 0, + $178 = 0, + $179 = 0, + $18 = 0, + $180 = 0, + $181 = 0, + $182 = 0, + $183 = 0, + $184 = 0, + $185 = 0 + var $186 = 0, + $187 = 0, + $188 = 0, + $189 = 0, + $19 = 0, + $190 = 0, + $191 = 0, + $192 = 0, + $193 = 0, + $194 = 0, + $195 = 0, + $196 = 0, + $197 = 0, + $198 = 0, + $199 = 0, + $2 = 0, + $20 = 0, + $200 = 0, + $201 = 0, + $202 = 0 + var $203 = 0, + $204 = 0, + $205 = 0, + $206 = 0, + $207 = 0, + $208 = 0, + $209 = 0, + $21 = 0, + $210 = 0, + $211 = 0, + $212 = 0, + $213 = 0, + $214 = 0, + $215 = 0, + $216 = 0, + $217 = 0, + $218 = 0, + $219 = 0, + $22 = 0, + $220 = 0 + var $221 = 0, + $222 = 0, + $223 = 0, + $224 = 0, + $225 = 0, + $226 = 0, + $227 = 0, + $228 = 0, + $229 = 0, + $23 = 0, + $230 = 0, + $231 = 0, + $232 = 0, + $233 = 0, + $234 = 0, + $235 = 0, + $236 = 0, + $237 = 0, + $238 = 0, + $239 = 0 + var $24 = 0, + $240 = 0, + $241 = 0, + $242 = 0, + $243 = 0, + $244 = 0, + $245 = 0, + $246 = 0, + $247 = 0, + $248 = 0, + $249 = 0, + $25 = 0, + $250 = 0, + $251 = 0, + $252 = 0, + $253 = 0, + $254 = 0, + $255 = 0, + $256 = 0, + $257 = 0 + var $258 = 0, + $259 = 0, + $26 = 0, + $260 = 0, + $261 = 0, + $262 = 0, + $263 = 0, + $264 = 0, + $265 = 0, + $266 = 0, + $267 = 0, + $268 = 0, + $269 = 0, + $27 = 0, + $270 = 0, + $271 = 0, + $272 = 0, + $273 = 0, + $274 = 0, + $275 = 0 + var $276 = 0, + $277 = 0, + $278 = 0, + $279 = 0, + $28 = 0, + $280 = 0, + $281 = 0, + $282 = 0, + $283 = 0, + $284 = 0, + $285 = 0, + $286 = 0, + $287 = 0, + $288 = 0, + $289 = 0, + $29 = 0, + $290 = 0, + $291 = 0, + $292 = 0, + $293 = 0 + var $294 = 0, + $295 = 0, + $296 = 0, + $297 = 0, + $298 = 0, + $299 = 0, + $3 = 0, + $30 = 0, + $300 = 0, + $301 = 0, + $302 = 0, + $303 = 0, + $304 = 0, + $305 = 0, + $306 = 0, + $307 = 0, + $308 = 0, + $309 = 0, + $31 = 0, + $310 = 0 + var $311 = 0, + $312 = 0, + $313 = 0, + $314 = 0, + $315 = 0, + $316 = 0, + $317 = 0, + $318 = 0, + $319 = 0, + $32 = 0, + $320 = 0, + $321 = 0, + $322 = 0, + $323 = 0, + $324 = 0, + $325 = 0, + $326 = 0, + $327 = 0, + $328 = 0, + $329 = 0 + var $33 = 0, + $330 = 0, + $331 = 0, + $332 = 0, + $333 = 0, + $334 = 0, + $335 = 0, + $336 = 0, + $337 = 0, + $338 = 0, + $339 = 0, + $34 = 0, + $340 = 0, + $341 = 0, + $342 = 0, + $343 = 0, + $344 = 0, + $345 = 0, + $346 = 0, + $347 = 0 + var $348 = 0, + $349 = 0, + $35 = 0, + $350 = 0, + $351 = 0, + $352 = 0, + $353 = 0, + $354 = 0, + $355 = 0, + $356 = 0, + $357 = 0, + $358 = 0, + $359 = 0, + $36 = 0, + $360 = 0, + $361 = 0, + $362 = 0, + $363 = 0, + $364 = 0, + $365 = 0 + var $366 = 0, + $367 = 0, + $368 = 0, + $369 = 0, + $37 = 0, + $370 = 0, + $371 = 0, + $372 = 0, + $373 = 0, + $374 = 0, + $375 = 0, + $376 = 0, + $377 = 0, + $378 = 0, + $379 = 0, + $38 = 0, + $380 = 0, + $381 = 0, + $382 = 0, + $383 = 0 + var $384 = 0, + $385 = 0, + $386 = 0, + $387 = 0, + $388 = 0, + $389 = 0, + $39 = 0, + $390 = 0, + $391 = 0, + $392 = 0, + $393 = 0, + $394 = 0, + $395 = 0, + $396 = 0, + $397 = 0, + $398 = 0, + $399 = 0, + $4 = 0, + $40 = 0, + $400 = 0 + var $401 = 0, + $402 = 0, + $403 = 0, + $404 = 0, + $405 = 0, + $406 = 0, + $407 = 0, + $408 = 0, + $409 = 0, + $41 = 0, + $410 = 0, + $411 = 0, + $412 = 0, + $413 = 0, + $414 = 0, + $415 = 0, + $416 = 0, + $417 = 0, + $418 = 0, + $419 = 0 + var $42 = 0, + $420 = 0, + $421 = 0, + $422 = 0, + $423 = 0, + $424 = 0, + $425 = 0, + $426 = 0, + $427 = 0, + $428 = 0, + $429 = 0, + $43 = 0, + $430 = 0, + $431 = 0, + $432 = 0, + $433 = 0, + $434 = 0, + $435 = 0, + $436 = 0, + $437 = 0 + var $438 = 0, + $439 = 0, + $44 = 0, + $440 = 0, + $441 = 0, + $442 = 0, + $443 = 0, + $444 = 0, + $445 = 0, + $446 = 0, + $447 = 0, + $448 = 0, + $449 = 0, + $45 = 0, + $450 = 0, + $451 = 0, + $452 = 0, + $453 = 0, + $454 = 0, + $455 = 0 + var $456 = 0, + $457 = 0, + $458 = 0, + $459 = 0, + $46 = 0, + $460 = 0, + $461 = 0, + $462 = 0, + $463 = 0, + $464 = 0, + $465 = 0, + $466 = 0, + $467 = 0, + $468 = 0, + $469 = 0, + $47 = 0, + $470 = 0, + $471 = 0, + $472 = 0, + $473 = 0 + var $474 = 0, + $475 = 0, + $476 = 0, + $477 = 0, + $478 = 0, + $479 = 0, + $48 = 0, + $480 = 0, + $481 = 0, + $482 = 0, + $483 = 0, + $484 = 0, + $485 = 0, + $486 = 0, + $487 = 0, + $488 = 0, + $489 = 0, + $49 = 0, + $490 = 0, + $491 = 0 + var $492 = 0, + $493 = 0, + $494 = 0, + $495 = 0, + $496 = 0, + $497 = 0, + $498 = 0, + $499 = 0, + $5 = 0, + $50 = 0, + $500 = 0, + $501 = 0, + $502 = 0, + $503 = 0, + $504 = 0, + $505 = 0, + $506 = 0, + $507 = 0, + $508 = 0, + $509 = 0 + var $51 = 0, + $510 = 0, + $511 = 0, + $512 = 0, + $513 = 0, + $514 = 0, + $515 = 0, + $516 = 0, + $517 = 0, + $518 = 0, + $519 = 0, + $52 = 0, + $520 = 0, + $521 = 0, + $522 = 0, + $523 = 0, + $524 = 0, + $525 = 0, + $526 = 0, + $527 = 0 + var $528 = 0, + $529 = 0, + $53 = 0, + $530 = 0, + $531 = 0, + $532 = 0, + $533 = 0, + $534 = 0, + $535 = 0, + $536 = 0, + $537 = 0, + $538 = 0, + $539 = 0, + $54 = 0, + $540 = 0, + $541 = 0, + $542 = 0, + $543 = 0, + $544 = 0, + $545 = 0 + var $546 = 0, + $547 = 0, + $548 = 0, + $549 = 0, + $55 = 0, + $550 = 0, + $551 = 0, + $552 = 0, + $553 = 0, + $554 = 0, + $555 = 0, + $556 = 0, + $557 = 0, + $558 = 0, + $559 = 0, + $56 = 0, + $560 = 0, + $561 = 0, + $562 = 0, + $563 = 0 + var $564 = 0, + $565 = 0, + $566 = 0, + $567 = 0, + $568 = 0, + $569 = 0, + $57 = 0, + $570 = 0, + $571 = 0, + $572 = 0, + $573 = 0, + $574 = 0, + $575 = 0, + $576 = 0, + $577 = 0, + $578 = 0, + $579 = 0, + $58 = 0, + $580 = 0, + $581 = 0 + var $582 = 0, + $583 = 0, + $584 = 0, + $585 = 0, + $586 = 0, + $587 = 0, + $588 = 0, + $589 = 0, + $59 = 0, + $590 = 0, + $591 = 0, + $592 = 0, + $593 = 0, + $594 = 0, + $595 = 0, + $596 = 0, + $597 = 0, + $598 = 0, + $599 = 0, + $6 = 0 + var $60 = 0, + $600 = 0, + $601 = 0, + $602 = 0, + $603 = 0, + $604 = 0, + $605 = 0, + $606 = 0, + $607 = 0, + $608 = 0, + $609 = 0, + $61 = 0, + $610 = 0, + $611 = 0, + $612 = 0, + $613 = 0, + $614 = 0, + $615 = 0, + $616 = 0, + $617 = 0 + var $618 = 0, + $619 = 0, + $62 = 0, + $620 = 0, + $621 = 0, + $622 = 0, + $623 = 0, + $624 = 0, + $625 = 0, + $626 = 0, + $627 = 0, + $628 = 0, + $629 = 0, + $63 = 0, + $630 = 0, + $631 = 0, + $632 = 0, + $633 = 0, + $634 = 0, + $635 = 0 + var $636 = 0, + $637 = 0, + $638 = 0, + $639 = 0, + $64 = 0, + $640 = 0, + $641 = 0, + $642 = 0, + $643 = 0, + $644 = 0, + $645 = 0, + $646 = 0, + $647 = 0, + $648 = 0, + $649 = 0, + $65 = 0, + $650 = 0, + $651 = 0, + $652 = 0, + $653 = 0 + var $654 = 0, + $655 = 0, + $656 = 0, + $657 = 0, + $658 = 0, + $659 = 0, + $66 = 0, + $660 = 0, + $661 = 0, + $662 = 0, + $663 = 0, + $664 = 0, + $665 = 0, + $666 = 0, + $667 = 0, + $668 = 0, + $669 = 0, + $67 = 0, + $670 = 0, + $671 = 0 + var $672 = 0, + $673 = 0, + $674 = 0, + $675 = 0, + $676 = 0, + $677 = 0, + $678 = 0, + $679 = 0, + $68 = 0, + $680 = 0, + $681 = 0, + $682 = 0, + $683 = 0, + $684 = 0, + $685 = 0, + $686 = 0, + $687 = 0, + $688 = 0, + $689 = 0, + $69 = 0 + var $690 = 0, + $691 = 0, + $692 = 0, + $693 = 0, + $694 = 0, + $695 = 0, + $696 = 0, + $697 = 0, + $698 = 0, + $699 = 0, + $7 = 0, + $70 = 0, + $700 = 0, + $701 = 0, + $702 = 0, + $703 = 0, + $704 = 0, + $705 = 0, + $706 = 0, + $707 = 0 + var $708 = 0, + $709 = 0, + $71 = 0, + $710 = 0, + $711 = 0, + $712 = 0, + $713 = 0, + $714 = 0, + $715 = 0, + $716 = 0, + $717 = 0, + $718 = 0, + $719 = 0, + $72 = 0, + $720 = 0, + $721 = 0, + $722 = 0, + $723 = 0, + $724 = 0, + $725 = 0 + var $726 = 0, + $727 = 0, + $728 = 0, + $729 = 0, + $73 = 0, + $730 = 0, + $731 = 0, + $732 = 0, + $733 = 0, + $734 = 0, + $735 = 0, + $736 = 0, + $737 = 0, + $738 = 0, + $739 = 0, + $74 = 0, + $740 = 0, + $741 = 0, + $742 = 0, + $743 = 0 + var $744 = 0, + $745 = 0, + $746 = 0, + $747 = 0, + $748 = 0, + $749 = 0, + $75 = 0, + $750 = 0, + $751 = 0, + $752 = 0, + $753 = 0, + $754 = 0, + $755 = 0, + $756 = 0, + $757 = 0, + $758 = 0, + $759 = 0, + $76 = 0, + $760 = 0, + $761 = 0 + var $762 = 0, + $763 = 0, + $764 = 0, + $765 = 0, + $766 = 0, + $767 = 0, + $768 = 0, + $769 = 0, + $77 = 0, + $770 = 0, + $771 = 0, + $772 = 0, + $773 = 0, + $774 = 0, + $775 = 0, + $776 = 0, + $777 = 0, + $778 = 0, + $779 = 0, + $78 = 0 + var $780 = 0, + $781 = 0, + $782 = 0, + $783 = 0, + $784 = 0, + $785 = 0, + $786 = 0, + $787 = 0, + $788 = 0, + $789 = 0, + $79 = 0, + $790 = 0, + $791 = 0, + $792 = 0, + $793 = 0, + $794 = 0, + $795 = 0, + $796 = 0, + $797 = 0, + $798 = 0 + var $799 = 0, + $8 = 0, + $80 = 0, + $800 = 0, + $801 = 0, + $802 = 0, + $803 = 0, + $804 = 0, + $805 = 0, + $806 = 0, + $807 = 0, + $808 = 0, + $809 = 0, + $81 = 0, + $810 = 0, + $811 = 0, + $812 = 0, + $813 = 0, + $814 = 0, + $815 = 0 + var $816 = 0, + $817 = 0, + $818 = 0, + $819 = 0, + $82 = 0, + $820 = 0, + $821 = 0, + $822 = 0, + $823 = 0, + $824 = 0, + $825 = 0, + $826 = 0, + $827 = 0, + $828 = 0, + $829 = 0, + $83 = 0, + $830 = 0, + $831 = 0, + $832 = 0, + $833 = 0 + var $834 = 0, + $835 = 0, + $836 = 0, + $837 = 0, + $838 = 0, + $839 = 0, + $84 = 0, + $840 = 0, + $841 = 0, + $842 = 0, + $843 = 0, + $844 = 0, + $845 = 0, + $846 = 0, + $847 = 0, + $848 = 0, + $849 = 0, + $85 = 0, + $850 = 0, + $851 = 0 + var $852 = 0, + $853 = 0, + $854 = 0, + $855 = 0, + $856 = 0, + $857 = 0, + $858 = 0, + $859 = 0, + $86 = 0, + $860 = 0, + $861 = 0, + $862 = 0, + $863 = 0, + $864 = 0, + $865 = 0, + $866 = 0, + $867 = 0, + $868 = 0, + $869 = 0, + $87 = 0 + var $870 = 0, + $871 = 0, + $872 = 0, + $873 = 0, + $874 = 0, + $875 = 0, + $876 = 0, + $877 = 0, + $878 = 0, + $879 = 0, + $88 = 0, + $880 = 0, + $881 = 0, + $882 = 0, + $883 = 0, + $884 = 0, + $885 = 0, + $886 = 0, + $887 = 0, + $888 = 0 + var $889 = 0, + $89 = 0, + $890 = 0, + $891 = 0, + $892 = 0, + $893 = 0, + $894 = 0, + $895 = 0, + $896 = 0, + $897 = 0, + $898 = 0, + $899 = 0, + $9 = 0, + $90 = 0, + $900 = 0, + $901 = 0, + $902 = 0, + $903 = 0, + $904 = 0, + $905 = 0 + var $906 = 0, + $907 = 0, + $908 = 0, + $909 = 0, + $91 = 0, + $910 = 0, + $911 = 0, + $912 = 0, + $913 = 0, + $914 = 0, + $915 = 0, + $916 = 0, + $917 = 0, + $918 = 0, + $919 = 0, + $92 = 0, + $920 = 0, + $921 = 0, + $922 = 0, + $923 = 0 + var $924 = 0, + $925 = 0, + $926 = 0, + $927 = 0, + $928 = 0, + $929 = 0, + $93 = 0, + $930 = 0, + $931 = 0, + $932 = 0, + $933 = 0, + $934 = 0, + $935 = 0, + $936 = 0, + $937 = 0, + $938 = 0, + $939 = 0, + $94 = 0, + $940 = 0, + $941 = 0 + var $942 = 0, + $943 = 0, + $944 = 0, + $945 = 0, + $946 = 0, + $947 = 0, + $948 = 0, + $949 = 0, + $95 = 0, + $950 = 0, + $951 = 0, + $952 = 0, + $953 = 0, + $954 = 0, + $955 = 0, + $956 = 0, + $957 = 0, + $958 = 0, + $959 = 0, + $96 = 0 + var $960 = 0, + $961 = 0, + $962 = 0, + $963 = 0, + $964 = 0, + $965 = 0, + $966 = 0, + $967 = 0, + $968 = 0, + $969 = 0, + $97 = 0, + $970 = 0, + $971 = 0, + $972 = 0, + $973 = 0, + $974 = 0, + $975 = 0, + $976 = 0, + $977 = 0, + $978 = 0 + var $979 = 0, + $98 = 0, + $980 = 0, + $981 = 0, + $982 = 0, + $983 = 0, + $984 = 0, + $985 = 0, + $986 = 0, + $987 = 0, + $988 = 0, + $989 = 0, + $99 = 0, + $990 = 0, + $991 = 0, + $992 = 0, + $993 = 0, + $994 = 0, + $995 = 0, + $996 = 0 + var $997 = 0, + $998 = 0, + $999 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = _load_319($s) | 0 + $1 = tempRet0 + $2 = $0 & 2097151 + $3 = ($s + 2) | 0 + $4 = _load_420($3) | 0 + $5 = tempRet0 + $6 = _bitshift64Lshr($4 | 0, $5 | 0, 5) | 0 + $7 = tempRet0 + $8 = $6 & 2097151 + $9 = ($s + 5) | 0 + $10 = _load_319($9) | 0 + $11 = tempRet0 + $12 = _bitshift64Lshr($10 | 0, $11 | 0, 2) | 0 + $13 = tempRet0 + $14 = $12 & 2097151 + $15 = ($s + 7) | 0 + $16 = _load_420($15) | 0 + $17 = tempRet0 + $18 = _bitshift64Lshr($16 | 0, $17 | 0, 7) | 0 + $19 = tempRet0 + $20 = $18 & 2097151 + $21 = ($s + 10) | 0 + $22 = _load_420($21) | 0 + $23 = tempRet0 + $24 = _bitshift64Lshr($22 | 0, $23 | 0, 4) | 0 + $25 = tempRet0 + $26 = $24 & 2097151 + $27 = ($s + 13) | 0 + $28 = _load_319($27) | 0 + $29 = tempRet0 + $30 = _bitshift64Lshr($28 | 0, $29 | 0, 1) | 0 + $31 = tempRet0 + $32 = $30 & 2097151 + $33 = ($s + 15) | 0 + $34 = _load_420($33) | 0 + $35 = tempRet0 + $36 = _bitshift64Lshr($34 | 0, $35 | 0, 6) | 0 + $37 = tempRet0 + $38 = $36 & 2097151 + $39 = ($s + 18) | 0 + $40 = _load_319($39) | 0 + $41 = tempRet0 + $42 = _bitshift64Lshr($40 | 0, $41 | 0, 3) | 0 + $43 = tempRet0 + $44 = $42 & 2097151 + $45 = ($s + 21) | 0 + $46 = _load_319($45) | 0 + $47 = tempRet0 + $48 = $46 & 2097151 + $49 = ($s + 23) | 0 + $50 = _load_420($49) | 0 + $51 = tempRet0 + $52 = _bitshift64Lshr($50 | 0, $51 | 0, 5) | 0 + $53 = tempRet0 + $54 = $52 & 2097151 + $55 = ($s + 26) | 0 + $56 = _load_319($55) | 0 + $57 = tempRet0 + $58 = _bitshift64Lshr($56 | 0, $57 | 0, 2) | 0 + $59 = tempRet0 + $60 = $58 & 2097151 + $61 = ($s + 28) | 0 + $62 = _load_420($61) | 0 + $63 = tempRet0 + $64 = _bitshift64Lshr($62 | 0, $63 | 0, 7) | 0 + $65 = tempRet0 + $66 = $64 & 2097151 + $67 = ($s + 31) | 0 + $68 = _load_420($67) | 0 + $69 = tempRet0 + $70 = _bitshift64Lshr($68 | 0, $69 | 0, 4) | 0 + $71 = tempRet0 + $72 = $70 & 2097151 + $73 = ($s + 34) | 0 + $74 = _load_319($73) | 0 + $75 = tempRet0 + $76 = _bitshift64Lshr($74 | 0, $75 | 0, 1) | 0 + $77 = tempRet0 + $78 = $76 & 2097151 + $79 = ($s + 36) | 0 + $80 = _load_420($79) | 0 + $81 = tempRet0 + $82 = _bitshift64Lshr($80 | 0, $81 | 0, 6) | 0 + $83 = tempRet0 + $84 = $82 & 2097151 + $85 = ($s + 39) | 0 + $86 = _load_319($85) | 0 + $87 = tempRet0 + $88 = _bitshift64Lshr($86 | 0, $87 | 0, 3) | 0 + $89 = tempRet0 + $90 = $88 & 2097151 + $91 = ($s + 42) | 0 + $92 = _load_319($91) | 0 + $93 = tempRet0 + $94 = $92 & 2097151 + $95 = ($s + 44) | 0 + $96 = _load_420($95) | 0 + $97 = tempRet0 + $98 = _bitshift64Lshr($96 | 0, $97 | 0, 5) | 0 + $99 = tempRet0 + $100 = $98 & 2097151 + $101 = ($s + 47) | 0 + $102 = _load_319($101) | 0 + $103 = tempRet0 + $104 = _bitshift64Lshr($102 | 0, $103 | 0, 2) | 0 + $105 = tempRet0 + $106 = $104 & 2097151 + $107 = ($s + 49) | 0 + $108 = _load_420($107) | 0 + $109 = tempRet0 + $110 = _bitshift64Lshr($108 | 0, $109 | 0, 7) | 0 + $111 = tempRet0 + $112 = $110 & 2097151 + $113 = ($s + 52) | 0 + $114 = _load_420($113) | 0 + $115 = tempRet0 + $116 = _bitshift64Lshr($114 | 0, $115 | 0, 4) | 0 + $117 = tempRet0 + $118 = $116 & 2097151 + $119 = ($s + 55) | 0 + $120 = _load_319($119) | 0 + $121 = tempRet0 + $122 = _bitshift64Lshr($120 | 0, $121 | 0, 1) | 0 + $123 = tempRet0 + $124 = $122 & 2097151 + $125 = ($s + 57) | 0 + $126 = _load_420($125) | 0 + $127 = tempRet0 + $128 = _bitshift64Lshr($126 | 0, $127 | 0, 6) | 0 + $129 = tempRet0 + $130 = $128 & 2097151 + $131 = ($s + 60) | 0 + $132 = _load_420($131) | 0 + $133 = tempRet0 + $134 = _bitshift64Lshr($132 | 0, $133 | 0, 3) | 0 + $135 = tempRet0 + $136 = ___muldi3($134 | 0, $135 | 0, 666643, 0) | 0 + $137 = tempRet0 + $138 = _i64Add($66 | 0, 0, $136 | 0, $137 | 0) | 0 + $139 = tempRet0 + $140 = ___muldi3($134 | 0, $135 | 0, 470296, 0) | 0 + $141 = tempRet0 + $142 = _i64Add($72 | 0, 0, $140 | 0, $141 | 0) | 0 + $143 = tempRet0 + $144 = ___muldi3($134 | 0, $135 | 0, 654183, 0) | 0 + $145 = tempRet0 + $146 = _i64Add($78 | 0, 0, $144 | 0, $145 | 0) | 0 + $147 = tempRet0 + $148 = ___muldi3($134 | 0, $135 | 0, -997805, -1) | 0 + $149 = tempRet0 + $150 = _i64Add($84 | 0, 0, $148 | 0, $149 | 0) | 0 + $151 = tempRet0 + $152 = ___muldi3($134 | 0, $135 | 0, 136657, 0) | 0 + $153 = tempRet0 + $154 = _i64Add($90 | 0, 0, $152 | 0, $153 | 0) | 0 + $155 = tempRet0 + $156 = ___muldi3($134 | 0, $135 | 0, -683901, -1) | 0 + $157 = tempRet0 + $158 = _i64Add($94 | 0, 0, $156 | 0, $157 | 0) | 0 + $159 = tempRet0 + $160 = ___muldi3($130 | 0, 0, 666643, 0) | 0 + $161 = tempRet0 + $162 = _i64Add($60 | 0, 0, $160 | 0, $161 | 0) | 0 + $163 = tempRet0 + $164 = ___muldi3($130 | 0, 0, 470296, 0) | 0 + $165 = tempRet0 + $166 = _i64Add($164 | 0, $165 | 0, $138 | 0, $139 | 0) | 0 + $167 = tempRet0 + $168 = ___muldi3($130 | 0, 0, 654183, 0) | 0 + $169 = tempRet0 + $170 = _i64Add($168 | 0, $169 | 0, $142 | 0, $143 | 0) | 0 + $171 = tempRet0 + $172 = ___muldi3($130 | 0, 0, -997805, -1) | 0 + $173 = tempRet0 + $174 = _i64Add($172 | 0, $173 | 0, $146 | 0, $147 | 0) | 0 + $175 = tempRet0 + $176 = ___muldi3($130 | 0, 0, 136657, 0) | 0 + $177 = tempRet0 + $178 = _i64Add($176 | 0, $177 | 0, $150 | 0, $151 | 0) | 0 + $179 = tempRet0 + $180 = ___muldi3($130 | 0, 0, -683901, -1) | 0 + $181 = tempRet0 + $182 = _i64Add($154 | 0, $155 | 0, $180 | 0, $181 | 0) | 0 + $183 = tempRet0 + $184 = ___muldi3($124 | 0, 0, 666643, 0) | 0 + $185 = tempRet0 + $186 = _i64Add($54 | 0, 0, $184 | 0, $185 | 0) | 0 + $187 = tempRet0 + $188 = ___muldi3($124 | 0, 0, 470296, 0) | 0 + $189 = tempRet0 + $190 = _i64Add($188 | 0, $189 | 0, $162 | 0, $163 | 0) | 0 + $191 = tempRet0 + $192 = ___muldi3($124 | 0, 0, 654183, 0) | 0 + $193 = tempRet0 + $194 = _i64Add($192 | 0, $193 | 0, $166 | 0, $167 | 0) | 0 + $195 = tempRet0 + $196 = ___muldi3($124 | 0, 0, -997805, -1) | 0 + $197 = tempRet0 + $198 = _i64Add($196 | 0, $197 | 0, $170 | 0, $171 | 0) | 0 + $199 = tempRet0 + $200 = ___muldi3($124 | 0, 0, 136657, 0) | 0 + $201 = tempRet0 + $202 = _i64Add($200 | 0, $201 | 0, $174 | 0, $175 | 0) | 0 + $203 = tempRet0 + $204 = ___muldi3($124 | 0, 0, -683901, -1) | 0 + $205 = tempRet0 + $206 = _i64Add($178 | 0, $179 | 0, $204 | 0, $205 | 0) | 0 + $207 = tempRet0 + $208 = ___muldi3($118 | 0, 0, 666643, 0) | 0 + $209 = tempRet0 + $210 = ___muldi3($118 | 0, 0, 470296, 0) | 0 + $211 = tempRet0 + $212 = _i64Add($210 | 0, $211 | 0, $186 | 0, $187 | 0) | 0 + $213 = tempRet0 + $214 = ___muldi3($118 | 0, 0, 654183, 0) | 0 + $215 = tempRet0 + $216 = _i64Add($214 | 0, $215 | 0, $190 | 0, $191 | 0) | 0 + $217 = tempRet0 + $218 = ___muldi3($118 | 0, 0, -997805, -1) | 0 + $219 = tempRet0 + $220 = _i64Add($218 | 0, $219 | 0, $194 | 0, $195 | 0) | 0 + $221 = tempRet0 + $222 = ___muldi3($118 | 0, 0, 136657, 0) | 0 + $223 = tempRet0 + $224 = _i64Add($222 | 0, $223 | 0, $198 | 0, $199 | 0) | 0 + $225 = tempRet0 + $226 = ___muldi3($118 | 0, 0, -683901, -1) | 0 + $227 = tempRet0 + $228 = _i64Add($202 | 0, $203 | 0, $226 | 0, $227 | 0) | 0 + $229 = tempRet0 + $230 = ___muldi3($112 | 0, 0, 666643, 0) | 0 + $231 = tempRet0 + $232 = ___muldi3($112 | 0, 0, 470296, 0) | 0 + $233 = tempRet0 + $234 = ___muldi3($112 | 0, 0, 654183, 0) | 0 + $235 = tempRet0 + $236 = _i64Add($234 | 0, $235 | 0, $212 | 0, $213 | 0) | 0 + $237 = tempRet0 + $238 = ___muldi3($112 | 0, 0, -997805, -1) | 0 + $239 = tempRet0 + $240 = _i64Add($216 | 0, $217 | 0, $238 | 0, $239 | 0) | 0 + $241 = tempRet0 + $242 = ___muldi3($112 | 0, 0, 136657, 0) | 0 + $243 = tempRet0 + $244 = _i64Add($242 | 0, $243 | 0, $220 | 0, $221 | 0) | 0 + $245 = tempRet0 + $246 = ___muldi3($112 | 0, 0, -683901, -1) | 0 + $247 = tempRet0 + $248 = _i64Add($224 | 0, $225 | 0, $246 | 0, $247 | 0) | 0 + $249 = tempRet0 + $250 = ___muldi3($106 | 0, 0, 666643, 0) | 0 + $251 = tempRet0 + $252 = _i64Add($250 | 0, $251 | 0, $38 | 0, 0) | 0 + $253 = tempRet0 + $254 = ___muldi3($106 | 0, 0, 470296, 0) | 0 + $255 = tempRet0 + $256 = ___muldi3($106 | 0, 0, 654183, 0) | 0 + $257 = tempRet0 + $258 = _i64Add($256 | 0, $257 | 0, $48 | 0, 0) | 0 + $259 = tempRet0 + $260 = _i64Add($258 | 0, $259 | 0, $232 | 0, $233 | 0) | 0 + $261 = tempRet0 + $262 = _i64Add($260 | 0, $261 | 0, $208 | 0, $209 | 0) | 0 + $263 = tempRet0 + $264 = ___muldi3($106 | 0, 0, -997805, -1) | 0 + $265 = tempRet0 + $266 = _i64Add($236 | 0, $237 | 0, $264 | 0, $265 | 0) | 0 + $267 = tempRet0 + $268 = ___muldi3($106 | 0, 0, 136657, 0) | 0 + $269 = tempRet0 + $270 = _i64Add($240 | 0, $241 | 0, $268 | 0, $269 | 0) | 0 + $271 = tempRet0 + $272 = ___muldi3($106 | 0, 0, -683901, -1) | 0 + $273 = tempRet0 + $274 = _i64Add($244 | 0, $245 | 0, $272 | 0, $273 | 0) | 0 + $275 = tempRet0 + $276 = _i64Add($252 | 0, $253 | 0, 1048576, 0) | 0 + $277 = tempRet0 + $278 = _bitshift64Lshr($276 | 0, $277 | 0, 21) | 0 + $279 = tempRet0 + $280 = _i64Add($254 | 0, $255 | 0, $44 | 0, 0) | 0 + $281 = tempRet0 + $282 = _i64Add($280 | 0, $281 | 0, $230 | 0, $231 | 0) | 0 + $283 = tempRet0 + $284 = _i64Add($282 | 0, $283 | 0, $278 | 0, $279 | 0) | 0 + $285 = tempRet0 + $286 = _bitshift64Shl($278 | 0, $279 | 0, 21) | 0 + $287 = tempRet0 + $288 = _i64Subtract($252 | 0, $253 | 0, $286 | 0, $287 | 0) | 0 + $289 = tempRet0 + $290 = _i64Add($262 | 0, $263 | 0, 1048576, 0) | 0 + $291 = tempRet0 + $292 = _bitshift64Lshr($290 | 0, $291 | 0, 21) | 0 + $293 = tempRet0 + $294 = _i64Add($266 | 0, $267 | 0, $292 | 0, $293 | 0) | 0 + $295 = tempRet0 + $296 = _bitshift64Shl($292 | 0, $293 | 0, 21) | 0 + $297 = tempRet0 + $298 = _i64Subtract($262 | 0, $263 | 0, $296 | 0, $297 | 0) | 0 + $299 = tempRet0 + $300 = _i64Add($270 | 0, $271 | 0, 1048576, 0) | 0 + $301 = tempRet0 + $302 = _bitshift64Ashr($300 | 0, $301 | 0, 21) | 0 + $303 = tempRet0 + $304 = _i64Add($302 | 0, $303 | 0, $274 | 0, $275 | 0) | 0 + $305 = tempRet0 + $306 = _bitshift64Shl($302 | 0, $303 | 0, 21) | 0 + $307 = tempRet0 + $308 = _i64Subtract($270 | 0, $271 | 0, $306 | 0, $307 | 0) | 0 + $309 = tempRet0 + $310 = _i64Add($248 | 0, $249 | 0, 1048576, 0) | 0 + $311 = tempRet0 + $312 = _bitshift64Ashr($310 | 0, $311 | 0, 21) | 0 + $313 = tempRet0 + $314 = _i64Add($312 | 0, $313 | 0, $228 | 0, $229 | 0) | 0 + $315 = tempRet0 + $316 = _bitshift64Shl($312 | 0, $313 | 0, 21) | 0 + $317 = tempRet0 + $318 = _i64Subtract($248 | 0, $249 | 0, $316 | 0, $317 | 0) | 0 + $319 = tempRet0 + $320 = _i64Add($206 | 0, $207 | 0, 1048576, 0) | 0 + $321 = tempRet0 + $322 = _bitshift64Ashr($320 | 0, $321 | 0, 21) | 0 + $323 = tempRet0 + $324 = _i64Add($322 | 0, $323 | 0, $182 | 0, $183 | 0) | 0 + $325 = tempRet0 + $326 = _bitshift64Shl($322 | 0, $323 | 0, 21) | 0 + $327 = tempRet0 + $328 = _i64Subtract($206 | 0, $207 | 0, $326 | 0, $327 | 0) | 0 + $329 = tempRet0 + $330 = _i64Add($158 | 0, $159 | 0, 1048576, 0) | 0 + $331 = tempRet0 + $332 = _bitshift64Ashr($330 | 0, $331 | 0, 21) | 0 + $333 = tempRet0 + $334 = _i64Add($332 | 0, $333 | 0, $100 | 0, 0) | 0 + $335 = tempRet0 + $336 = _bitshift64Shl($332 | 0, $333 | 0, 21) | 0 + $337 = tempRet0 + $338 = _i64Subtract($158 | 0, $159 | 0, $336 | 0, $337 | 0) | 0 + $339 = tempRet0 + $340 = _i64Add($284 | 0, $285 | 0, 1048576, 0) | 0 + $341 = tempRet0 + $342 = _bitshift64Lshr($340 | 0, $341 | 0, 21) | 0 + $343 = tempRet0 + $344 = _i64Add($342 | 0, $343 | 0, $298 | 0, $299 | 0) | 0 + $345 = tempRet0 + $346 = _bitshift64Shl($342 | 0, $343 | 0, 21) | 0 + $347 = tempRet0 + $348 = _i64Subtract($284 | 0, $285 | 0, $346 | 0, $347 | 0) | 0 + $349 = tempRet0 + $350 = _i64Add($294 | 0, $295 | 0, 1048576, 0) | 0 + $351 = tempRet0 + $352 = _bitshift64Ashr($350 | 0, $351 | 0, 21) | 0 + $353 = tempRet0 + $354 = _i64Add($352 | 0, $353 | 0, $308 | 0, $309 | 0) | 0 + $355 = tempRet0 + $356 = _bitshift64Shl($352 | 0, $353 | 0, 21) | 0 + $357 = tempRet0 + $358 = _i64Subtract($294 | 0, $295 | 0, $356 | 0, $357 | 0) | 0 + $359 = tempRet0 + $360 = _i64Add($304 | 0, $305 | 0, 1048576, 0) | 0 + $361 = tempRet0 + $362 = _bitshift64Ashr($360 | 0, $361 | 0, 21) | 0 + $363 = tempRet0 + $364 = _i64Add($362 | 0, $363 | 0, $318 | 0, $319 | 0) | 0 + $365 = tempRet0 + $366 = _bitshift64Shl($362 | 0, $363 | 0, 21) | 0 + $367 = tempRet0 + $368 = _i64Subtract($304 | 0, $305 | 0, $366 | 0, $367 | 0) | 0 + $369 = tempRet0 + $370 = _i64Add($314 | 0, $315 | 0, 1048576, 0) | 0 + $371 = tempRet0 + $372 = _bitshift64Ashr($370 | 0, $371 | 0, 21) | 0 + $373 = tempRet0 + $374 = _i64Add($372 | 0, $373 | 0, $328 | 0, $329 | 0) | 0 + $375 = tempRet0 + $376 = _bitshift64Shl($372 | 0, $373 | 0, 21) | 0 + $377 = tempRet0 + $378 = _i64Subtract($314 | 0, $315 | 0, $376 | 0, $377 | 0) | 0 + $379 = tempRet0 + $380 = _i64Add($324 | 0, $325 | 0, 1048576, 0) | 0 + $381 = tempRet0 + $382 = _bitshift64Ashr($380 | 0, $381 | 0, 21) | 0 + $383 = tempRet0 + $384 = _i64Add($382 | 0, $383 | 0, $338 | 0, $339 | 0) | 0 + $385 = tempRet0 + $386 = _bitshift64Shl($382 | 0, $383 | 0, 21) | 0 + $387 = tempRet0 + $388 = _i64Subtract($324 | 0, $325 | 0, $386 | 0, $387 | 0) | 0 + $389 = tempRet0 + $390 = ___muldi3($334 | 0, $335 | 0, 666643, 0) | 0 + $391 = tempRet0 + $392 = _i64Add($32 | 0, 0, $390 | 0, $391 | 0) | 0 + $393 = tempRet0 + $394 = ___muldi3($334 | 0, $335 | 0, 470296, 0) | 0 + $395 = tempRet0 + $396 = _i64Add($288 | 0, $289 | 0, $394 | 0, $395 | 0) | 0 + $397 = tempRet0 + $398 = ___muldi3($334 | 0, $335 | 0, 654183, 0) | 0 + $399 = tempRet0 + $400 = _i64Add($348 | 0, $349 | 0, $398 | 0, $399 | 0) | 0 + $401 = tempRet0 + $402 = ___muldi3($334 | 0, $335 | 0, -997805, -1) | 0 + $403 = tempRet0 + $404 = _i64Add($402 | 0, $403 | 0, $344 | 0, $345 | 0) | 0 + $405 = tempRet0 + $406 = ___muldi3($334 | 0, $335 | 0, 136657, 0) | 0 + $407 = tempRet0 + $408 = _i64Add($406 | 0, $407 | 0, $358 | 0, $359 | 0) | 0 + $409 = tempRet0 + $410 = ___muldi3($334 | 0, $335 | 0, -683901, -1) | 0 + $411 = tempRet0 + $412 = _i64Add($354 | 0, $355 | 0, $410 | 0, $411 | 0) | 0 + $413 = tempRet0 + $414 = ___muldi3($384 | 0, $385 | 0, 666643, 0) | 0 + $415 = tempRet0 + $416 = _i64Add($26 | 0, 0, $414 | 0, $415 | 0) | 0 + $417 = tempRet0 + $418 = ___muldi3($384 | 0, $385 | 0, 470296, 0) | 0 + $419 = tempRet0 + $420 = _i64Add($392 | 0, $393 | 0, $418 | 0, $419 | 0) | 0 + $421 = tempRet0 + $422 = ___muldi3($384 | 0, $385 | 0, 654183, 0) | 0 + $423 = tempRet0 + $424 = _i64Add($396 | 0, $397 | 0, $422 | 0, $423 | 0) | 0 + $425 = tempRet0 + $426 = ___muldi3($384 | 0, $385 | 0, -997805, -1) | 0 + $427 = tempRet0 + $428 = _i64Add($400 | 0, $401 | 0, $426 | 0, $427 | 0) | 0 + $429 = tempRet0 + $430 = ___muldi3($384 | 0, $385 | 0, 136657, 0) | 0 + $431 = tempRet0 + $432 = _i64Add($404 | 0, $405 | 0, $430 | 0, $431 | 0) | 0 + $433 = tempRet0 + $434 = ___muldi3($384 | 0, $385 | 0, -683901, -1) | 0 + $435 = tempRet0 + $436 = _i64Add($408 | 0, $409 | 0, $434 | 0, $435 | 0) | 0 + $437 = tempRet0 + $438 = ___muldi3($388 | 0, $389 | 0, 666643, 0) | 0 + $439 = tempRet0 + $440 = _i64Add($20 | 0, 0, $438 | 0, $439 | 0) | 0 + $441 = tempRet0 + $442 = ___muldi3($388 | 0, $389 | 0, 470296, 0) | 0 + $443 = tempRet0 + $444 = _i64Add($416 | 0, $417 | 0, $442 | 0, $443 | 0) | 0 + $445 = tempRet0 + $446 = ___muldi3($388 | 0, $389 | 0, 654183, 0) | 0 + $447 = tempRet0 + $448 = _i64Add($420 | 0, $421 | 0, $446 | 0, $447 | 0) | 0 + $449 = tempRet0 + $450 = ___muldi3($388 | 0, $389 | 0, -997805, -1) | 0 + $451 = tempRet0 + $452 = _i64Add($424 | 0, $425 | 0, $450 | 0, $451 | 0) | 0 + $453 = tempRet0 + $454 = ___muldi3($388 | 0, $389 | 0, 136657, 0) | 0 + $455 = tempRet0 + $456 = _i64Add($428 | 0, $429 | 0, $454 | 0, $455 | 0) | 0 + $457 = tempRet0 + $458 = ___muldi3($388 | 0, $389 | 0, -683901, -1) | 0 + $459 = tempRet0 + $460 = _i64Add($432 | 0, $433 | 0, $458 | 0, $459 | 0) | 0 + $461 = tempRet0 + $462 = ___muldi3($374 | 0, $375 | 0, 666643, 0) | 0 + $463 = tempRet0 + $464 = _i64Add($462 | 0, $463 | 0, $14 | 0, 0) | 0 + $465 = tempRet0 + $466 = ___muldi3($374 | 0, $375 | 0, 470296, 0) | 0 + $467 = tempRet0 + $468 = _i64Add($440 | 0, $441 | 0, $466 | 0, $467 | 0) | 0 + $469 = tempRet0 + $470 = ___muldi3($374 | 0, $375 | 0, 654183, 0) | 0 + $471 = tempRet0 + $472 = _i64Add($444 | 0, $445 | 0, $470 | 0, $471 | 0) | 0 + $473 = tempRet0 + $474 = ___muldi3($374 | 0, $375 | 0, -997805, -1) | 0 + $475 = tempRet0 + $476 = _i64Add($448 | 0, $449 | 0, $474 | 0, $475 | 0) | 0 + $477 = tempRet0 + $478 = ___muldi3($374 | 0, $375 | 0, 136657, 0) | 0 + $479 = tempRet0 + $480 = _i64Add($452 | 0, $453 | 0, $478 | 0, $479 | 0) | 0 + $481 = tempRet0 + $482 = ___muldi3($374 | 0, $375 | 0, -683901, -1) | 0 + $483 = tempRet0 + $484 = _i64Add($456 | 0, $457 | 0, $482 | 0, $483 | 0) | 0 + $485 = tempRet0 + $486 = ___muldi3($378 | 0, $379 | 0, 666643, 0) | 0 + $487 = tempRet0 + $488 = ___muldi3($378 | 0, $379 | 0, 470296, 0) | 0 + $489 = tempRet0 + $490 = ___muldi3($378 | 0, $379 | 0, 654183, 0) | 0 + $491 = tempRet0 + $492 = _i64Add($468 | 0, $469 | 0, $490 | 0, $491 | 0) | 0 + $493 = tempRet0 + $494 = ___muldi3($378 | 0, $379 | 0, -997805, -1) | 0 + $495 = tempRet0 + $496 = _i64Add($472 | 0, $473 | 0, $494 | 0, $495 | 0) | 0 + $497 = tempRet0 + $498 = ___muldi3($378 | 0, $379 | 0, 136657, 0) | 0 + $499 = tempRet0 + $500 = _i64Add($476 | 0, $477 | 0, $498 | 0, $499 | 0) | 0 + $501 = tempRet0 + $502 = ___muldi3($378 | 0, $379 | 0, -683901, -1) | 0 + $503 = tempRet0 + $504 = _i64Add($480 | 0, $481 | 0, $502 | 0, $503 | 0) | 0 + $505 = tempRet0 + $506 = ___muldi3($364 | 0, $365 | 0, 666643, 0) | 0 + $507 = tempRet0 + $508 = _i64Add($506 | 0, $507 | 0, $2 | 0, 0) | 0 + $509 = tempRet0 + $510 = ___muldi3($364 | 0, $365 | 0, 470296, 0) | 0 + $511 = tempRet0 + $512 = ___muldi3($364 | 0, $365 | 0, 654183, 0) | 0 + $513 = tempRet0 + $514 = _i64Add($464 | 0, $465 | 0, $512 | 0, $513 | 0) | 0 + $515 = tempRet0 + $516 = _i64Add($514 | 0, $515 | 0, $488 | 0, $489 | 0) | 0 + $517 = tempRet0 + $518 = ___muldi3($364 | 0, $365 | 0, -997805, -1) | 0 + $519 = tempRet0 + $520 = _i64Add($492 | 0, $493 | 0, $518 | 0, $519 | 0) | 0 + $521 = tempRet0 + $522 = ___muldi3($364 | 0, $365 | 0, 136657, 0) | 0 + $523 = tempRet0 + $524 = _i64Add($496 | 0, $497 | 0, $522 | 0, $523 | 0) | 0 + $525 = tempRet0 + $526 = ___muldi3($364 | 0, $365 | 0, -683901, -1) | 0 + $527 = tempRet0 + $528 = _i64Add($500 | 0, $501 | 0, $526 | 0, $527 | 0) | 0 + $529 = tempRet0 + $530 = _i64Add($508 | 0, $509 | 0, 1048576, 0) | 0 + $531 = tempRet0 + $532 = _bitshift64Ashr($530 | 0, $531 | 0, 21) | 0 + $533 = tempRet0 + $534 = _i64Add($510 | 0, $511 | 0, $8 | 0, 0) | 0 + $535 = tempRet0 + $536 = _i64Add($534 | 0, $535 | 0, $486 | 0, $487 | 0) | 0 + $537 = tempRet0 + $538 = _i64Add($536 | 0, $537 | 0, $532 | 0, $533 | 0) | 0 + $539 = tempRet0 + $540 = _bitshift64Shl($532 | 0, $533 | 0, 21) | 0 + $541 = tempRet0 + $542 = _i64Subtract($508 | 0, $509 | 0, $540 | 0, $541 | 0) | 0 + $543 = tempRet0 + $544 = _i64Add($516 | 0, $517 | 0, 1048576, 0) | 0 + $545 = tempRet0 + $546 = _bitshift64Ashr($544 | 0, $545 | 0, 21) | 0 + $547 = tempRet0 + $548 = _i64Add($546 | 0, $547 | 0, $520 | 0, $521 | 0) | 0 + $549 = tempRet0 + $550 = _bitshift64Shl($546 | 0, $547 | 0, 21) | 0 + $551 = tempRet0 + $552 = _i64Add($524 | 0, $525 | 0, 1048576, 0) | 0 + $553 = tempRet0 + $554 = _bitshift64Ashr($552 | 0, $553 | 0, 21) | 0 + $555 = tempRet0 + $556 = _i64Add($554 | 0, $555 | 0, $528 | 0, $529 | 0) | 0 + $557 = tempRet0 + $558 = _bitshift64Shl($554 | 0, $555 | 0, 21) | 0 + $559 = tempRet0 + $560 = _i64Add($504 | 0, $505 | 0, 1048576, 0) | 0 + $561 = tempRet0 + $562 = _bitshift64Ashr($560 | 0, $561 | 0, 21) | 0 + $563 = tempRet0 + $564 = _i64Add($562 | 0, $563 | 0, $484 | 0, $485 | 0) | 0 + $565 = tempRet0 + $566 = _bitshift64Shl($562 | 0, $563 | 0, 21) | 0 + $567 = tempRet0 + $568 = _i64Subtract($504 | 0, $505 | 0, $566 | 0, $567 | 0) | 0 + $569 = tempRet0 + $570 = _i64Add($460 | 0, $461 | 0, 1048576, 0) | 0 + $571 = tempRet0 + $572 = _bitshift64Ashr($570 | 0, $571 | 0, 21) | 0 + $573 = tempRet0 + $574 = _i64Add($572 | 0, $573 | 0, $436 | 0, $437 | 0) | 0 + $575 = tempRet0 + $576 = _bitshift64Shl($572 | 0, $573 | 0, 21) | 0 + $577 = tempRet0 + $578 = _i64Subtract($460 | 0, $461 | 0, $576 | 0, $577 | 0) | 0 + $579 = tempRet0 + $580 = _i64Add($412 | 0, $413 | 0, 1048576, 0) | 0 + $581 = tempRet0 + $582 = _bitshift64Ashr($580 | 0, $581 | 0, 21) | 0 + $583 = tempRet0 + $584 = _i64Add($582 | 0, $583 | 0, $368 | 0, $369 | 0) | 0 + $585 = tempRet0 + $586 = _bitshift64Shl($582 | 0, $583 | 0, 21) | 0 + $587 = tempRet0 + $588 = _i64Subtract($412 | 0, $413 | 0, $586 | 0, $587 | 0) | 0 + $589 = tempRet0 + $590 = _i64Add($538 | 0, $539 | 0, 1048576, 0) | 0 + $591 = tempRet0 + $592 = _bitshift64Ashr($590 | 0, $591 | 0, 21) | 0 + $593 = tempRet0 + $594 = _bitshift64Shl($592 | 0, $593 | 0, 21) | 0 + $595 = tempRet0 + $596 = _i64Add($548 | 0, $549 | 0, 1048576, 0) | 0 + $597 = tempRet0 + $598 = _bitshift64Ashr($596 | 0, $597 | 0, 21) | 0 + $599 = tempRet0 + $600 = _bitshift64Shl($598 | 0, $599 | 0, 21) | 0 + $601 = tempRet0 + $602 = _i64Subtract($548 | 0, $549 | 0, $600 | 0, $601 | 0) | 0 + $603 = tempRet0 + $604 = _i64Add($556 | 0, $557 | 0, 1048576, 0) | 0 + $605 = tempRet0 + $606 = _bitshift64Ashr($604 | 0, $605 | 0, 21) | 0 + $607 = tempRet0 + $608 = _i64Add($568 | 0, $569 | 0, $606 | 0, $607 | 0) | 0 + $609 = tempRet0 + $610 = _bitshift64Shl($606 | 0, $607 | 0, 21) | 0 + $611 = tempRet0 + $612 = _i64Subtract($556 | 0, $557 | 0, $610 | 0, $611 | 0) | 0 + $613 = tempRet0 + $614 = _i64Add($564 | 0, $565 | 0, 1048576, 0) | 0 + $615 = tempRet0 + $616 = _bitshift64Ashr($614 | 0, $615 | 0, 21) | 0 + $617 = tempRet0 + $618 = _i64Add($578 | 0, $579 | 0, $616 | 0, $617 | 0) | 0 + $619 = tempRet0 + $620 = _bitshift64Shl($616 | 0, $617 | 0, 21) | 0 + $621 = tempRet0 + $622 = _i64Subtract($564 | 0, $565 | 0, $620 | 0, $621 | 0) | 0 + $623 = tempRet0 + $624 = _i64Add($574 | 0, $575 | 0, 1048576, 0) | 0 + $625 = tempRet0 + $626 = _bitshift64Ashr($624 | 0, $625 | 0, 21) | 0 + $627 = tempRet0 + $628 = _i64Add($588 | 0, $589 | 0, $626 | 0, $627 | 0) | 0 + $629 = tempRet0 + $630 = _bitshift64Shl($626 | 0, $627 | 0, 21) | 0 + $631 = tempRet0 + $632 = _i64Subtract($574 | 0, $575 | 0, $630 | 0, $631 | 0) | 0 + $633 = tempRet0 + $634 = _i64Add($584 | 0, $585 | 0, 1048576, 0) | 0 + $635 = tempRet0 + $636 = _bitshift64Ashr($634 | 0, $635 | 0, 21) | 0 + $637 = tempRet0 + $638 = _bitshift64Shl($636 | 0, $637 | 0, 21) | 0 + $639 = tempRet0 + $640 = _i64Subtract($584 | 0, $585 | 0, $638 | 0, $639 | 0) | 0 + $641 = tempRet0 + $642 = ___muldi3($636 | 0, $637 | 0, 666643, 0) | 0 + $643 = tempRet0 + $644 = _i64Add($542 | 0, $543 | 0, $642 | 0, $643 | 0) | 0 + $645 = tempRet0 + $646 = ___muldi3($636 | 0, $637 | 0, 470296, 0) | 0 + $647 = tempRet0 + $648 = ___muldi3($636 | 0, $637 | 0, 654183, 0) | 0 + $649 = tempRet0 + $650 = ___muldi3($636 | 0, $637 | 0, -997805, -1) | 0 + $651 = tempRet0 + $652 = _i64Add($602 | 0, $603 | 0, $650 | 0, $651 | 0) | 0 + $653 = tempRet0 + $654 = ___muldi3($636 | 0, $637 | 0, 136657, 0) | 0 + $655 = tempRet0 + $656 = ___muldi3($636 | 0, $637 | 0, -683901, -1) | 0 + $657 = tempRet0 + $658 = _i64Add($612 | 0, $613 | 0, $656 | 0, $657 | 0) | 0 + $659 = tempRet0 + $660 = _bitshift64Ashr($644 | 0, $645 | 0, 21) | 0 + $661 = tempRet0 + $662 = _i64Add($646 | 0, $647 | 0, $538 | 0, $539 | 0) | 0 + $663 = tempRet0 + $664 = _i64Subtract($662 | 0, $663 | 0, $594 | 0, $595 | 0) | 0 + $665 = tempRet0 + $666 = _i64Add($664 | 0, $665 | 0, $660 | 0, $661 | 0) | 0 + $667 = tempRet0 + $668 = _bitshift64Shl($660 | 0, $661 | 0, 21) | 0 + $669 = tempRet0 + $670 = _i64Subtract($644 | 0, $645 | 0, $668 | 0, $669 | 0) | 0 + $671 = tempRet0 + $672 = _bitshift64Ashr($666 | 0, $667 | 0, 21) | 0 + $673 = tempRet0 + $674 = _i64Add($648 | 0, $649 | 0, $516 | 0, $517 | 0) | 0 + $675 = tempRet0 + $676 = _i64Subtract($674 | 0, $675 | 0, $550 | 0, $551 | 0) | 0 + $677 = tempRet0 + $678 = _i64Add($676 | 0, $677 | 0, $592 | 0, $593 | 0) | 0 + $679 = tempRet0 + $680 = _i64Add($678 | 0, $679 | 0, $672 | 0, $673 | 0) | 0 + $681 = tempRet0 + $682 = _bitshift64Shl($672 | 0, $673 | 0, 21) | 0 + $683 = tempRet0 + $684 = _i64Subtract($666 | 0, $667 | 0, $682 | 0, $683 | 0) | 0 + $685 = tempRet0 + $686 = _bitshift64Ashr($680 | 0, $681 | 0, 21) | 0 + $687 = tempRet0 + $688 = _i64Add($686 | 0, $687 | 0, $652 | 0, $653 | 0) | 0 + $689 = tempRet0 + $690 = _bitshift64Shl($686 | 0, $687 | 0, 21) | 0 + $691 = tempRet0 + $692 = _i64Subtract($680 | 0, $681 | 0, $690 | 0, $691 | 0) | 0 + $693 = tempRet0 + $694 = _bitshift64Ashr($688 | 0, $689 | 0, 21) | 0 + $695 = tempRet0 + $696 = _i64Add($654 | 0, $655 | 0, $524 | 0, $525 | 0) | 0 + $697 = tempRet0 + $698 = _i64Subtract($696 | 0, $697 | 0, $558 | 0, $559 | 0) | 0 + $699 = tempRet0 + $700 = _i64Add($698 | 0, $699 | 0, $598 | 0, $599 | 0) | 0 + $701 = tempRet0 + $702 = _i64Add($700 | 0, $701 | 0, $694 | 0, $695 | 0) | 0 + $703 = tempRet0 + $704 = _bitshift64Shl($694 | 0, $695 | 0, 21) | 0 + $705 = tempRet0 + $706 = _i64Subtract($688 | 0, $689 | 0, $704 | 0, $705 | 0) | 0 + $707 = tempRet0 + $708 = _bitshift64Ashr($702 | 0, $703 | 0, 21) | 0 + $709 = tempRet0 + $710 = _i64Add($708 | 0, $709 | 0, $658 | 0, $659 | 0) | 0 + $711 = tempRet0 + $712 = _bitshift64Shl($708 | 0, $709 | 0, 21) | 0 + $713 = tempRet0 + $714 = _i64Subtract($702 | 0, $703 | 0, $712 | 0, $713 | 0) | 0 + $715 = tempRet0 + $716 = _bitshift64Ashr($710 | 0, $711 | 0, 21) | 0 + $717 = tempRet0 + $718 = _i64Add($608 | 0, $609 | 0, $716 | 0, $717 | 0) | 0 + $719 = tempRet0 + $720 = _bitshift64Shl($716 | 0, $717 | 0, 21) | 0 + $721 = tempRet0 + $722 = _i64Subtract($710 | 0, $711 | 0, $720 | 0, $721 | 0) | 0 + $723 = tempRet0 + $724 = _bitshift64Ashr($718 | 0, $719 | 0, 21) | 0 + $725 = tempRet0 + $726 = _i64Add($724 | 0, $725 | 0, $622 | 0, $623 | 0) | 0 + $727 = tempRet0 + $728 = _bitshift64Shl($724 | 0, $725 | 0, 21) | 0 + $729 = tempRet0 + $730 = _i64Subtract($718 | 0, $719 | 0, $728 | 0, $729 | 0) | 0 + $731 = tempRet0 + $732 = _bitshift64Ashr($726 | 0, $727 | 0, 21) | 0 + $733 = tempRet0 + $734 = _i64Add($618 | 0, $619 | 0, $732 | 0, $733 | 0) | 0 + $735 = tempRet0 + $736 = _bitshift64Shl($732 | 0, $733 | 0, 21) | 0 + $737 = tempRet0 + $738 = _i64Subtract($726 | 0, $727 | 0, $736 | 0, $737 | 0) | 0 + $739 = tempRet0 + $740 = _bitshift64Ashr($734 | 0, $735 | 0, 21) | 0 + $741 = tempRet0 + $742 = _i64Add($740 | 0, $741 | 0, $632 | 0, $633 | 0) | 0 + $743 = tempRet0 + $744 = _bitshift64Shl($740 | 0, $741 | 0, 21) | 0 + $745 = tempRet0 + $746 = _i64Subtract($734 | 0, $735 | 0, $744 | 0, $745 | 0) | 0 + $747 = tempRet0 + $748 = _bitshift64Ashr($742 | 0, $743 | 0, 21) | 0 + $749 = tempRet0 + $750 = _i64Add($628 | 0, $629 | 0, $748 | 0, $749 | 0) | 0 + $751 = tempRet0 + $752 = _bitshift64Shl($748 | 0, $749 | 0, 21) | 0 + $753 = tempRet0 + $754 = _i64Subtract($742 | 0, $743 | 0, $752 | 0, $753 | 0) | 0 + $755 = tempRet0 + $756 = _bitshift64Ashr($750 | 0, $751 | 0, 21) | 0 + $757 = tempRet0 + $758 = _i64Add($756 | 0, $757 | 0, $640 | 0, $641 | 0) | 0 + $759 = tempRet0 + $760 = _bitshift64Shl($756 | 0, $757 | 0, 21) | 0 + $761 = tempRet0 + $762 = _i64Subtract($750 | 0, $751 | 0, $760 | 0, $761 | 0) | 0 + $763 = tempRet0 + $764 = _bitshift64Ashr($758 | 0, $759 | 0, 21) | 0 + $765 = tempRet0 + $766 = _bitshift64Shl($764 | 0, $765 | 0, 21) | 0 + $767 = tempRet0 + $768 = _i64Subtract($758 | 0, $759 | 0, $766 | 0, $767 | 0) | 0 + $769 = tempRet0 + $770 = ___muldi3($764 | 0, $765 | 0, 666643, 0) | 0 + $771 = tempRet0 + $772 = _i64Add($770 | 0, $771 | 0, $670 | 0, $671 | 0) | 0 + $773 = tempRet0 + $774 = ___muldi3($764 | 0, $765 | 0, 470296, 0) | 0 + $775 = tempRet0 + $776 = _i64Add($684 | 0, $685 | 0, $774 | 0, $775 | 0) | 0 + $777 = tempRet0 + $778 = ___muldi3($764 | 0, $765 | 0, 654183, 0) | 0 + $779 = tempRet0 + $780 = _i64Add($692 | 0, $693 | 0, $778 | 0, $779 | 0) | 0 + $781 = tempRet0 + $782 = ___muldi3($764 | 0, $765 | 0, -997805, -1) | 0 + $783 = tempRet0 + $784 = _i64Add($706 | 0, $707 | 0, $782 | 0, $783 | 0) | 0 + $785 = tempRet0 + $786 = ___muldi3($764 | 0, $765 | 0, 136657, 0) | 0 + $787 = tempRet0 + $788 = _i64Add($714 | 0, $715 | 0, $786 | 0, $787 | 0) | 0 + $789 = tempRet0 + $790 = ___muldi3($764 | 0, $765 | 0, -683901, -1) | 0 + $791 = tempRet0 + $792 = _i64Add($722 | 0, $723 | 0, $790 | 0, $791 | 0) | 0 + $793 = tempRet0 + $794 = _bitshift64Ashr($772 | 0, $773 | 0, 21) | 0 + $795 = tempRet0 + $796 = _i64Add($776 | 0, $777 | 0, $794 | 0, $795 | 0) | 0 + $797 = tempRet0 + $798 = _bitshift64Shl($794 | 0, $795 | 0, 21) | 0 + $799 = tempRet0 + $800 = _i64Subtract($772 | 0, $773 | 0, $798 | 0, $799 | 0) | 0 + $801 = tempRet0 + $802 = _bitshift64Ashr($796 | 0, $797 | 0, 21) | 0 + $803 = tempRet0 + $804 = _i64Add($780 | 0, $781 | 0, $802 | 0, $803 | 0) | 0 + $805 = tempRet0 + $806 = _bitshift64Shl($802 | 0, $803 | 0, 21) | 0 + $807 = tempRet0 + $808 = _i64Subtract($796 | 0, $797 | 0, $806 | 0, $807 | 0) | 0 + $809 = tempRet0 + $810 = _bitshift64Ashr($804 | 0, $805 | 0, 21) | 0 + $811 = tempRet0 + $812 = _i64Add($810 | 0, $811 | 0, $784 | 0, $785 | 0) | 0 + $813 = tempRet0 + $814 = _bitshift64Shl($810 | 0, $811 | 0, 21) | 0 + $815 = tempRet0 + $816 = _i64Subtract($804 | 0, $805 | 0, $814 | 0, $815 | 0) | 0 + $817 = tempRet0 + $818 = _bitshift64Ashr($812 | 0, $813 | 0, 21) | 0 + $819 = tempRet0 + $820 = _i64Add($788 | 0, $789 | 0, $818 | 0, $819 | 0) | 0 + $821 = tempRet0 + $822 = _bitshift64Shl($818 | 0, $819 | 0, 21) | 0 + $823 = tempRet0 + $824 = _i64Subtract($812 | 0, $813 | 0, $822 | 0, $823 | 0) | 0 + $825 = tempRet0 + $826 = _bitshift64Ashr($820 | 0, $821 | 0, 21) | 0 + $827 = tempRet0 + $828 = _i64Add($826 | 0, $827 | 0, $792 | 0, $793 | 0) | 0 + $829 = tempRet0 + $830 = _bitshift64Shl($826 | 0, $827 | 0, 21) | 0 + $831 = tempRet0 + $832 = _i64Subtract($820 | 0, $821 | 0, $830 | 0, $831 | 0) | 0 + $833 = tempRet0 + $834 = _bitshift64Ashr($828 | 0, $829 | 0, 21) | 0 + $835 = tempRet0 + $836 = _i64Add($834 | 0, $835 | 0, $730 | 0, $731 | 0) | 0 + $837 = tempRet0 + $838 = _bitshift64Shl($834 | 0, $835 | 0, 21) | 0 + $839 = tempRet0 + $840 = _i64Subtract($828 | 0, $829 | 0, $838 | 0, $839 | 0) | 0 + $841 = tempRet0 + $842 = _bitshift64Ashr($836 | 0, $837 | 0, 21) | 0 + $843 = tempRet0 + $844 = _i64Add($842 | 0, $843 | 0, $738 | 0, $739 | 0) | 0 + $845 = tempRet0 + $846 = _bitshift64Shl($842 | 0, $843 | 0, 21) | 0 + $847 = tempRet0 + $848 = _i64Subtract($836 | 0, $837 | 0, $846 | 0, $847 | 0) | 0 + $849 = tempRet0 + $850 = _bitshift64Ashr($844 | 0, $845 | 0, 21) | 0 + $851 = tempRet0 + $852 = _i64Add($850 | 0, $851 | 0, $746 | 0, $747 | 0) | 0 + $853 = tempRet0 + $854 = _bitshift64Shl($850 | 0, $851 | 0, 21) | 0 + $855 = tempRet0 + $856 = _i64Subtract($844 | 0, $845 | 0, $854 | 0, $855 | 0) | 0 + $857 = tempRet0 + $858 = _bitshift64Ashr($852 | 0, $853 | 0, 21) | 0 + $859 = tempRet0 + $860 = _i64Add($858 | 0, $859 | 0, $754 | 0, $755 | 0) | 0 + $861 = tempRet0 + $862 = _bitshift64Shl($858 | 0, $859 | 0, 21) | 0 + $863 = tempRet0 + $864 = _i64Subtract($852 | 0, $853 | 0, $862 | 0, $863 | 0) | 0 + $865 = tempRet0 + $866 = _bitshift64Ashr($860 | 0, $861 | 0, 21) | 0 + $867 = tempRet0 + $868 = _i64Add($866 | 0, $867 | 0, $762 | 0, $763 | 0) | 0 + $869 = tempRet0 + $870 = _bitshift64Shl($866 | 0, $867 | 0, 21) | 0 + $871 = tempRet0 + $872 = _i64Subtract($860 | 0, $861 | 0, $870 | 0, $871 | 0) | 0 + $873 = tempRet0 + $874 = _bitshift64Ashr($868 | 0, $869 | 0, 21) | 0 + $875 = tempRet0 + $876 = _i64Add($874 | 0, $875 | 0, $768 | 0, $769 | 0) | 0 + $877 = tempRet0 + $878 = _bitshift64Shl($874 | 0, $875 | 0, 21) | 0 + $879 = tempRet0 + $880 = _i64Subtract($868 | 0, $869 | 0, $878 | 0, $879 | 0) | 0 + $881 = tempRet0 + $882 = $800 & 255 + HEAP8[$s >> 0] = $882 + $883 = _bitshift64Lshr($800 | 0, $801 | 0, 8) | 0 + $884 = tempRet0 + $885 = $883 & 255 + $886 = ($s + 1) | 0 + HEAP8[$886 >> 0] = $885 + $887 = _bitshift64Lshr($800 | 0, $801 | 0, 16) | 0 + $888 = tempRet0 + $889 = _bitshift64Shl($808 | 0, $809 | 0, 5) | 0 + $890 = tempRet0 + $891 = $889 | $887 + $890 | $888 + $892 = $891 & 255 + HEAP8[$3 >> 0] = $892 + $893 = _bitshift64Lshr($808 | 0, $809 | 0, 3) | 0 + $894 = tempRet0 + $895 = $893 & 255 + $896 = ($s + 3) | 0 + HEAP8[$896 >> 0] = $895 + $897 = _bitshift64Lshr($808 | 0, $809 | 0, 11) | 0 + $898 = tempRet0 + $899 = $897 & 255 + $900 = ($s + 4) | 0 + HEAP8[$900 >> 0] = $899 + $901 = _bitshift64Lshr($808 | 0, $809 | 0, 19) | 0 + $902 = tempRet0 + $903 = _bitshift64Shl($816 | 0, $817 | 0, 2) | 0 + $904 = tempRet0 + $905 = $903 | $901 + $904 | $902 + $906 = $905 & 255 + HEAP8[$9 >> 0] = $906 + $907 = _bitshift64Lshr($816 | 0, $817 | 0, 6) | 0 + $908 = tempRet0 + $909 = $907 & 255 + $910 = ($s + 6) | 0 + HEAP8[$910 >> 0] = $909 + $911 = _bitshift64Lshr($816 | 0, $817 | 0, 14) | 0 + $912 = tempRet0 + $913 = _bitshift64Shl($824 | 0, $825 | 0, 7) | 0 + $914 = tempRet0 + $915 = $913 | $911 + $914 | $912 + $916 = $915 & 255 + HEAP8[$15 >> 0] = $916 + $917 = _bitshift64Lshr($824 | 0, $825 | 0, 1) | 0 + $918 = tempRet0 + $919 = $917 & 255 + $920 = ($s + 8) | 0 + HEAP8[$920 >> 0] = $919 + $921 = _bitshift64Lshr($824 | 0, $825 | 0, 9) | 0 + $922 = tempRet0 + $923 = $921 & 255 + $924 = ($s + 9) | 0 + HEAP8[$924 >> 0] = $923 + $925 = _bitshift64Lshr($824 | 0, $825 | 0, 17) | 0 + $926 = tempRet0 + $927 = _bitshift64Shl($832 | 0, $833 | 0, 4) | 0 + $928 = tempRet0 + $929 = $927 | $925 + $928 | $926 + $930 = $929 & 255 + HEAP8[$21 >> 0] = $930 + $931 = _bitshift64Lshr($832 | 0, $833 | 0, 4) | 0 + $932 = tempRet0 + $933 = $931 & 255 + $934 = ($s + 11) | 0 + HEAP8[$934 >> 0] = $933 + $935 = _bitshift64Lshr($832 | 0, $833 | 0, 12) | 0 + $936 = tempRet0 + $937 = $935 & 255 + $938 = ($s + 12) | 0 + HEAP8[$938 >> 0] = $937 + $939 = _bitshift64Lshr($832 | 0, $833 | 0, 20) | 0 + $940 = tempRet0 + $941 = _bitshift64Shl($840 | 0, $841 | 0, 1) | 0 + $942 = tempRet0 + $943 = $941 | $939 + $942 | $940 + $944 = $943 & 255 + HEAP8[$27 >> 0] = $944 + $945 = _bitshift64Lshr($840 | 0, $841 | 0, 7) | 0 + $946 = tempRet0 + $947 = $945 & 255 + $948 = ($s + 14) | 0 + HEAP8[$948 >> 0] = $947 + $949 = _bitshift64Lshr($840 | 0, $841 | 0, 15) | 0 + $950 = tempRet0 + $951 = _bitshift64Shl($848 | 0, $849 | 0, 6) | 0 + $952 = tempRet0 + $953 = $951 | $949 + $952 | $950 + $954 = $953 & 255 + HEAP8[$33 >> 0] = $954 + $955 = _bitshift64Lshr($848 | 0, $849 | 0, 2) | 0 + $956 = tempRet0 + $957 = $955 & 255 + $958 = ($s + 16) | 0 + HEAP8[$958 >> 0] = $957 + $959 = _bitshift64Lshr($848 | 0, $849 | 0, 10) | 0 + $960 = tempRet0 + $961 = $959 & 255 + $962 = ($s + 17) | 0 + HEAP8[$962 >> 0] = $961 + $963 = _bitshift64Lshr($848 | 0, $849 | 0, 18) | 0 + $964 = tempRet0 + $965 = _bitshift64Shl($856 | 0, $857 | 0, 3) | 0 + $966 = tempRet0 + $967 = $965 | $963 + $966 | $964 + $968 = $967 & 255 + HEAP8[$39 >> 0] = $968 + $969 = _bitshift64Lshr($856 | 0, $857 | 0, 5) | 0 + $970 = tempRet0 + $971 = $969 & 255 + $972 = ($s + 19) | 0 + HEAP8[$972 >> 0] = $971 + $973 = _bitshift64Lshr($856 | 0, $857 | 0, 13) | 0 + $974 = tempRet0 + $975 = $973 & 255 + $976 = ($s + 20) | 0 + HEAP8[$976 >> 0] = $975 + $977 = $864 & 255 + HEAP8[$45 >> 0] = $977 + $978 = _bitshift64Lshr($864 | 0, $865 | 0, 8) | 0 + $979 = tempRet0 + $980 = $978 & 255 + $981 = ($s + 22) | 0 + HEAP8[$981 >> 0] = $980 + $982 = _bitshift64Lshr($864 | 0, $865 | 0, 16) | 0 + $983 = tempRet0 + $984 = _bitshift64Shl($872 | 0, $873 | 0, 5) | 0 + $985 = tempRet0 + $986 = $984 | $982 + $985 | $983 + $987 = $986 & 255 + HEAP8[$49 >> 0] = $987 + $988 = _bitshift64Lshr($872 | 0, $873 | 0, 3) | 0 + $989 = tempRet0 + $990 = $988 & 255 + $991 = ($s + 24) | 0 + HEAP8[$991 >> 0] = $990 + $992 = _bitshift64Lshr($872 | 0, $873 | 0, 11) | 0 + $993 = tempRet0 + $994 = $992 & 255 + $995 = ($s + 25) | 0 + HEAP8[$995 >> 0] = $994 + $996 = _bitshift64Lshr($872 | 0, $873 | 0, 19) | 0 + $997 = tempRet0 + $998 = _bitshift64Shl($880 | 0, $881 | 0, 2) | 0 + $999 = tempRet0 + $1000 = $998 | $996 + $999 | $997 + $1001 = $1000 & 255 + HEAP8[$55 >> 0] = $1001 + $1002 = _bitshift64Lshr($880 | 0, $881 | 0, 6) | 0 + $1003 = tempRet0 + $1004 = $1002 & 255 + $1005 = ($s + 27) | 0 + HEAP8[$1005 >> 0] = $1004 + $1006 = _bitshift64Lshr($880 | 0, $881 | 0, 14) | 0 + $1007 = tempRet0 + $1008 = _bitshift64Shl($876 | 0, $877 | 0, 7) | 0 + $1009 = tempRet0 + $1010 = $1006 | $1008 + $1007 | $1009 + $1011 = $1010 & 255 + HEAP8[$61 >> 0] = $1011 + $1012 = _bitshift64Lshr($876 | 0, $877 | 0, 1) | 0 + $1013 = tempRet0 + $1014 = $1012 & 255 + $1015 = ($s + 29) | 0 + HEAP8[$1015 >> 0] = $1014 + $1016 = _bitshift64Lshr($876 | 0, $877 | 0, 9) | 0 + $1017 = tempRet0 + $1018 = $1016 & 255 + $1019 = ($s + 30) | 0 + HEAP8[$1019 >> 0] = $1018 + $1020 = _bitshift64Lshr($876 | 0, $877 | 0, 17) | 0 + $1021 = tempRet0 + $1022 = $1020 & 255 + HEAP8[$67 >> 0] = $1022 + return + } + function _sc_muladd($s, $a, $b, $c) { + $s = $s | 0 + $a = $a | 0 + $b = $b | 0 + $c = $c | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $100 = 0, + $1000 = 0, + $1001 = 0, + $1002 = 0, + $1003 = 0, + $1004 = 0, + $1005 = 0, + $1006 = 0, + $1007 = 0, + $1008 = 0, + $1009 = 0, + $101 = 0, + $1010 = 0, + $1011 = 0, + $1012 = 0, + $1013 = 0, + $1014 = 0 + var $1015 = 0, + $1016 = 0, + $1017 = 0, + $1018 = 0, + $1019 = 0, + $102 = 0, + $1020 = 0, + $1021 = 0, + $1022 = 0, + $1023 = 0, + $1024 = 0, + $1025 = 0, + $1026 = 0, + $1027 = 0, + $1028 = 0, + $1029 = 0, + $103 = 0, + $1030 = 0, + $1031 = 0, + $1032 = 0 + var $1033 = 0, + $1034 = 0, + $1035 = 0, + $1036 = 0, + $1037 = 0, + $1038 = 0, + $1039 = 0, + $104 = 0, + $1040 = 0, + $1041 = 0, + $1042 = 0, + $1043 = 0, + $1044 = 0, + $1045 = 0, + $1046 = 0, + $1047 = 0, + $1048 = 0, + $1049 = 0, + $105 = 0, + $1050 = 0 + var $1051 = 0, + $1052 = 0, + $1053 = 0, + $1054 = 0, + $1055 = 0, + $1056 = 0, + $1057 = 0, + $1058 = 0, + $1059 = 0, + $106 = 0, + $1060 = 0, + $1061 = 0, + $1062 = 0, + $1063 = 0, + $1064 = 0, + $1065 = 0, + $1066 = 0, + $1067 = 0, + $1068 = 0, + $1069 = 0 + var $107 = 0, + $1070 = 0, + $1071 = 0, + $1072 = 0, + $1073 = 0, + $1074 = 0, + $1075 = 0, + $1076 = 0, + $1077 = 0, + $1078 = 0, + $1079 = 0, + $108 = 0, + $1080 = 0, + $1081 = 0, + $1082 = 0, + $1083 = 0, + $1084 = 0, + $1085 = 0, + $1086 = 0, + $1087 = 0 + var $1088 = 0, + $1089 = 0, + $109 = 0, + $1090 = 0, + $1091 = 0, + $1092 = 0, + $1093 = 0, + $1094 = 0, + $1095 = 0, + $1096 = 0, + $1097 = 0, + $1098 = 0, + $1099 = 0, + $11 = 0, + $110 = 0, + $1100 = 0, + $1101 = 0, + $1102 = 0, + $1103 = 0, + $1104 = 0 + var $1105 = 0, + $1106 = 0, + $1107 = 0, + $1108 = 0, + $1109 = 0, + $111 = 0, + $1110 = 0, + $1111 = 0, + $1112 = 0, + $1113 = 0, + $1114 = 0, + $1115 = 0, + $1116 = 0, + $1117 = 0, + $1118 = 0, + $1119 = 0, + $112 = 0, + $1120 = 0, + $1121 = 0, + $1122 = 0 + var $1123 = 0, + $1124 = 0, + $1125 = 0, + $1126 = 0, + $1127 = 0, + $1128 = 0, + $1129 = 0, + $113 = 0, + $1130 = 0, + $1131 = 0, + $1132 = 0, + $1133 = 0, + $1134 = 0, + $1135 = 0, + $1136 = 0, + $1137 = 0, + $1138 = 0, + $1139 = 0, + $114 = 0, + $1140 = 0 + var $1141 = 0, + $1142 = 0, + $1143 = 0, + $1144 = 0, + $1145 = 0, + $1146 = 0, + $1147 = 0, + $1148 = 0, + $1149 = 0, + $115 = 0, + $1150 = 0, + $1151 = 0, + $1152 = 0, + $1153 = 0, + $1154 = 0, + $1155 = 0, + $1156 = 0, + $1157 = 0, + $1158 = 0, + $1159 = 0 + var $116 = 0, + $1160 = 0, + $1161 = 0, + $1162 = 0, + $1163 = 0, + $1164 = 0, + $1165 = 0, + $1166 = 0, + $1167 = 0, + $1168 = 0, + $1169 = 0, + $117 = 0, + $1170 = 0, + $1171 = 0, + $1172 = 0, + $1173 = 0, + $1174 = 0, + $1175 = 0, + $1176 = 0, + $1177 = 0 + var $1178 = 0, + $1179 = 0, + $118 = 0, + $1180 = 0, + $1181 = 0, + $1182 = 0, + $1183 = 0, + $1184 = 0, + $1185 = 0, + $1186 = 0, + $1187 = 0, + $1188 = 0, + $1189 = 0, + $119 = 0, + $1190 = 0, + $1191 = 0, + $1192 = 0, + $1193 = 0, + $1194 = 0, + $1195 = 0 + var $1196 = 0, + $1197 = 0, + $1198 = 0, + $1199 = 0, + $12 = 0, + $120 = 0, + $1200 = 0, + $1201 = 0, + $1202 = 0, + $1203 = 0, + $1204 = 0, + $1205 = 0, + $1206 = 0, + $1207 = 0, + $1208 = 0, + $1209 = 0, + $121 = 0, + $1210 = 0, + $1211 = 0, + $1212 = 0 + var $1213 = 0, + $1214 = 0, + $1215 = 0, + $1216 = 0, + $1217 = 0, + $1218 = 0, + $1219 = 0, + $122 = 0, + $1220 = 0, + $1221 = 0, + $1222 = 0, + $1223 = 0, + $1224 = 0, + $1225 = 0, + $1226 = 0, + $1227 = 0, + $1228 = 0, + $1229 = 0, + $123 = 0, + $1230 = 0 + var $1231 = 0, + $1232 = 0, + $1233 = 0, + $1234 = 0, + $1235 = 0, + $1236 = 0, + $1237 = 0, + $1238 = 0, + $1239 = 0, + $124 = 0, + $1240 = 0, + $1241 = 0, + $1242 = 0, + $1243 = 0, + $1244 = 0, + $1245 = 0, + $1246 = 0, + $1247 = 0, + $1248 = 0, + $1249 = 0 + var $125 = 0, + $1250 = 0, + $1251 = 0, + $1252 = 0, + $1253 = 0, + $1254 = 0, + $1255 = 0, + $1256 = 0, + $1257 = 0, + $1258 = 0, + $1259 = 0, + $126 = 0, + $1260 = 0, + $1261 = 0, + $1262 = 0, + $1263 = 0, + $1264 = 0, + $1265 = 0, + $1266 = 0, + $1267 = 0 + var $1268 = 0, + $1269 = 0, + $127 = 0, + $1270 = 0, + $1271 = 0, + $1272 = 0, + $1273 = 0, + $1274 = 0, + $1275 = 0, + $1276 = 0, + $1277 = 0, + $1278 = 0, + $1279 = 0, + $128 = 0, + $1280 = 0, + $1281 = 0, + $1282 = 0, + $1283 = 0, + $1284 = 0, + $1285 = 0 + var $1286 = 0, + $1287 = 0, + $1288 = 0, + $1289 = 0, + $129 = 0, + $1290 = 0, + $1291 = 0, + $1292 = 0, + $1293 = 0, + $1294 = 0, + $1295 = 0, + $1296 = 0, + $1297 = 0, + $1298 = 0, + $1299 = 0, + $13 = 0, + $130 = 0, + $1300 = 0, + $1301 = 0, + $1302 = 0 + var $1303 = 0, + $1304 = 0, + $1305 = 0, + $1306 = 0, + $1307 = 0, + $1308 = 0, + $1309 = 0, + $131 = 0, + $1310 = 0, + $1311 = 0, + $1312 = 0, + $1313 = 0, + $1314 = 0, + $1315 = 0, + $1316 = 0, + $1317 = 0, + $1318 = 0, + $1319 = 0, + $132 = 0, + $1320 = 0 + var $1321 = 0, + $1322 = 0, + $1323 = 0, + $1324 = 0, + $1325 = 0, + $1326 = 0, + $1327 = 0, + $1328 = 0, + $1329 = 0, + $133 = 0, + $1330 = 0, + $1331 = 0, + $1332 = 0, + $1333 = 0, + $1334 = 0, + $1335 = 0, + $1336 = 0, + $1337 = 0, + $1338 = 0, + $1339 = 0 + var $134 = 0, + $1340 = 0, + $1341 = 0, + $1342 = 0, + $1343 = 0, + $1344 = 0, + $1345 = 0, + $1346 = 0, + $1347 = 0, + $1348 = 0, + $1349 = 0, + $135 = 0, + $1350 = 0, + $1351 = 0, + $1352 = 0, + $1353 = 0, + $1354 = 0, + $1355 = 0, + $1356 = 0, + $1357 = 0 + var $1358 = 0, + $1359 = 0, + $136 = 0, + $1360 = 0, + $1361 = 0, + $1362 = 0, + $1363 = 0, + $1364 = 0, + $1365 = 0, + $1366 = 0, + $1367 = 0, + $1368 = 0, + $1369 = 0, + $137 = 0, + $1370 = 0, + $1371 = 0, + $1372 = 0, + $1373 = 0, + $1374 = 0, + $1375 = 0 + var $1376 = 0, + $1377 = 0, + $1378 = 0, + $1379 = 0, + $138 = 0, + $1380 = 0, + $1381 = 0, + $1382 = 0, + $1383 = 0, + $1384 = 0, + $1385 = 0, + $1386 = 0, + $1387 = 0, + $1388 = 0, + $1389 = 0, + $139 = 0, + $1390 = 0, + $1391 = 0, + $1392 = 0, + $1393 = 0 + var $1394 = 0, + $1395 = 0, + $1396 = 0, + $1397 = 0, + $1398 = 0, + $1399 = 0, + $14 = 0, + $140 = 0, + $1400 = 0, + $1401 = 0, + $1402 = 0, + $1403 = 0, + $1404 = 0, + $1405 = 0, + $1406 = 0, + $1407 = 0, + $1408 = 0, + $1409 = 0, + $141 = 0, + $1410 = 0 + var $1411 = 0, + $1412 = 0, + $1413 = 0, + $1414 = 0, + $1415 = 0, + $1416 = 0, + $1417 = 0, + $1418 = 0, + $1419 = 0, + $142 = 0, + $1420 = 0, + $1421 = 0, + $1422 = 0, + $1423 = 0, + $1424 = 0, + $1425 = 0, + $1426 = 0, + $1427 = 0, + $1428 = 0, + $1429 = 0 + var $143 = 0, + $1430 = 0, + $1431 = 0, + $1432 = 0, + $1433 = 0, + $1434 = 0, + $1435 = 0, + $1436 = 0, + $1437 = 0, + $1438 = 0, + $1439 = 0, + $144 = 0, + $1440 = 0, + $1441 = 0, + $1442 = 0, + $1443 = 0, + $1444 = 0, + $1445 = 0, + $1446 = 0, + $1447 = 0 + var $1448 = 0, + $1449 = 0, + $145 = 0, + $1450 = 0, + $1451 = 0, + $1452 = 0, + $1453 = 0, + $1454 = 0, + $1455 = 0, + $1456 = 0, + $1457 = 0, + $1458 = 0, + $1459 = 0, + $146 = 0, + $1460 = 0, + $1461 = 0, + $1462 = 0, + $1463 = 0, + $1464 = 0, + $1465 = 0 + var $1466 = 0, + $1467 = 0, + $1468 = 0, + $1469 = 0, + $147 = 0, + $1470 = 0, + $1471 = 0, + $1472 = 0, + $1473 = 0, + $1474 = 0, + $1475 = 0, + $1476 = 0, + $1477 = 0, + $1478 = 0, + $1479 = 0, + $148 = 0, + $1480 = 0, + $1481 = 0, + $1482 = 0, + $1483 = 0 + var $1484 = 0, + $1485 = 0, + $1486 = 0, + $1487 = 0, + $1488 = 0, + $1489 = 0, + $149 = 0, + $1490 = 0, + $1491 = 0, + $1492 = 0, + $1493 = 0, + $1494 = 0, + $1495 = 0, + $1496 = 0, + $1497 = 0, + $1498 = 0, + $1499 = 0, + $15 = 0, + $150 = 0, + $1500 = 0 + var $1501 = 0, + $1502 = 0, + $1503 = 0, + $1504 = 0, + $1505 = 0, + $1506 = 0, + $1507 = 0, + $1508 = 0, + $1509 = 0, + $151 = 0, + $1510 = 0, + $1511 = 0, + $1512 = 0, + $1513 = 0, + $1514 = 0, + $1515 = 0, + $1516 = 0, + $1517 = 0, + $1518 = 0, + $1519 = 0 + var $152 = 0, + $1520 = 0, + $1521 = 0, + $1522 = 0, + $1523 = 0, + $1524 = 0, + $1525 = 0, + $1526 = 0, + $1527 = 0, + $1528 = 0, + $1529 = 0, + $153 = 0, + $1530 = 0, + $1531 = 0, + $1532 = 0, + $1533 = 0, + $1534 = 0, + $1535 = 0, + $1536 = 0, + $1537 = 0 + var $1538 = 0, + $1539 = 0, + $154 = 0, + $1540 = 0, + $1541 = 0, + $1542 = 0, + $1543 = 0, + $1544 = 0, + $1545 = 0, + $1546 = 0, + $1547 = 0, + $1548 = 0, + $1549 = 0, + $155 = 0, + $1550 = 0, + $1551 = 0, + $1552 = 0, + $1553 = 0, + $1554 = 0, + $1555 = 0 + var $1556 = 0, + $1557 = 0, + $1558 = 0, + $1559 = 0, + $156 = 0, + $1560 = 0, + $1561 = 0, + $1562 = 0, + $1563 = 0, + $1564 = 0, + $1565 = 0, + $1566 = 0, + $1567 = 0, + $1568 = 0, + $1569 = 0, + $157 = 0, + $1570 = 0, + $1571 = 0, + $1572 = 0, + $1573 = 0 + var $1574 = 0, + $1575 = 0, + $1576 = 0, + $1577 = 0, + $1578 = 0, + $1579 = 0, + $158 = 0, + $1580 = 0, + $1581 = 0, + $1582 = 0, + $1583 = 0, + $1584 = 0, + $1585 = 0, + $1586 = 0, + $1587 = 0, + $1588 = 0, + $1589 = 0, + $159 = 0, + $1590 = 0, + $1591 = 0 + var $1592 = 0, + $1593 = 0, + $1594 = 0, + $1595 = 0, + $1596 = 0, + $1597 = 0, + $1598 = 0, + $1599 = 0, + $16 = 0, + $160 = 0, + $1600 = 0, + $1601 = 0, + $1602 = 0, + $1603 = 0, + $1604 = 0, + $1605 = 0, + $1606 = 0, + $1607 = 0, + $1608 = 0, + $1609 = 0 + var $161 = 0, + $1610 = 0, + $1611 = 0, + $1612 = 0, + $1613 = 0, + $1614 = 0, + $1615 = 0, + $1616 = 0, + $1617 = 0, + $1618 = 0, + $1619 = 0, + $162 = 0, + $1620 = 0, + $1621 = 0, + $1622 = 0, + $1623 = 0, + $1624 = 0, + $1625 = 0, + $1626 = 0, + $1627 = 0 + var $1628 = 0, + $1629 = 0, + $163 = 0, + $1630 = 0, + $1631 = 0, + $1632 = 0, + $1633 = 0, + $1634 = 0, + $1635 = 0, + $1636 = 0, + $1637 = 0, + $1638 = 0, + $1639 = 0, + $164 = 0, + $1640 = 0, + $1641 = 0, + $1642 = 0, + $1643 = 0, + $1644 = 0, + $1645 = 0 + var $1646 = 0, + $1647 = 0, + $1648 = 0, + $1649 = 0, + $165 = 0, + $1650 = 0, + $1651 = 0, + $1652 = 0, + $1653 = 0, + $1654 = 0, + $1655 = 0, + $1656 = 0, + $1657 = 0, + $1658 = 0, + $1659 = 0, + $166 = 0, + $1660 = 0, + $1661 = 0, + $1662 = 0, + $1663 = 0 + var $1664 = 0, + $1665 = 0, + $1666 = 0, + $1667 = 0, + $1668 = 0, + $1669 = 0, + $167 = 0, + $1670 = 0, + $1671 = 0, + $1672 = 0, + $1673 = 0, + $1674 = 0, + $1675 = 0, + $1676 = 0, + $1677 = 0, + $1678 = 0, + $1679 = 0, + $168 = 0, + $1680 = 0, + $1681 = 0 + var $1682 = 0, + $1683 = 0, + $1684 = 0, + $1685 = 0, + $1686 = 0, + $1687 = 0, + $1688 = 0, + $1689 = 0, + $169 = 0, + $1690 = 0, + $1691 = 0, + $1692 = 0, + $1693 = 0, + $1694 = 0, + $1695 = 0, + $1696 = 0, + $1697 = 0, + $1698 = 0, + $1699 = 0, + $17 = 0 + var $170 = 0, + $1700 = 0, + $1701 = 0, + $1702 = 0, + $1703 = 0, + $1704 = 0, + $1705 = 0, + $1706 = 0, + $1707 = 0, + $1708 = 0, + $1709 = 0, + $171 = 0, + $1710 = 0, + $1711 = 0, + $1712 = 0, + $1713 = 0, + $1714 = 0, + $1715 = 0, + $1716 = 0, + $1717 = 0 + var $1718 = 0, + $1719 = 0, + $172 = 0, + $1720 = 0, + $1721 = 0, + $1722 = 0, + $1723 = 0, + $1724 = 0, + $1725 = 0, + $1726 = 0, + $1727 = 0, + $1728 = 0, + $1729 = 0, + $173 = 0, + $1730 = 0, + $1731 = 0, + $1732 = 0, + $1733 = 0, + $1734 = 0, + $1735 = 0 + var $1736 = 0, + $1737 = 0, + $1738 = 0, + $1739 = 0, + $174 = 0, + $1740 = 0, + $1741 = 0, + $1742 = 0, + $1743 = 0, + $1744 = 0, + $1745 = 0, + $1746 = 0, + $1747 = 0, + $1748 = 0, + $1749 = 0, + $175 = 0, + $1750 = 0, + $1751 = 0, + $1752 = 0, + $1753 = 0 + var $1754 = 0, + $1755 = 0, + $1756 = 0, + $1757 = 0, + $1758 = 0, + $1759 = 0, + $176 = 0, + $1760 = 0, + $1761 = 0, + $1762 = 0, + $1763 = 0, + $1764 = 0, + $1765 = 0, + $1766 = 0, + $1767 = 0, + $1768 = 0, + $1769 = 0, + $177 = 0, + $1770 = 0, + $1771 = 0 + var $1772 = 0, + $1773 = 0, + $1774 = 0, + $1775 = 0, + $1776 = 0, + $1777 = 0, + $1778 = 0, + $1779 = 0, + $178 = 0, + $1780 = 0, + $1781 = 0, + $1782 = 0, + $1783 = 0, + $1784 = 0, + $1785 = 0, + $1786 = 0, + $1787 = 0, + $1788 = 0, + $1789 = 0, + $179 = 0 + var $1790 = 0, + $1791 = 0, + $1792 = 0, + $1793 = 0, + $1794 = 0, + $1795 = 0, + $1796 = 0, + $1797 = 0, + $1798 = 0, + $1799 = 0, + $18 = 0, + $180 = 0, + $1800 = 0, + $1801 = 0, + $1802 = 0, + $1803 = 0, + $1804 = 0, + $1805 = 0, + $1806 = 0, + $1807 = 0 + var $1808 = 0, + $1809 = 0, + $181 = 0, + $1810 = 0, + $1811 = 0, + $1812 = 0, + $1813 = 0, + $1814 = 0, + $1815 = 0, + $1816 = 0, + $1817 = 0, + $1818 = 0, + $1819 = 0, + $182 = 0, + $1820 = 0, + $1821 = 0, + $1822 = 0, + $1823 = 0, + $1824 = 0, + $1825 = 0 + var $1826 = 0, + $1827 = 0, + $1828 = 0, + $1829 = 0, + $183 = 0, + $1830 = 0, + $1831 = 0, + $1832 = 0, + $1833 = 0, + $1834 = 0, + $1835 = 0, + $1836 = 0, + $1837 = 0, + $1838 = 0, + $1839 = 0, + $184 = 0, + $1840 = 0, + $1841 = 0, + $1842 = 0, + $1843 = 0 + var $1844 = 0, + $1845 = 0, + $1846 = 0, + $1847 = 0, + $1848 = 0, + $1849 = 0, + $185 = 0, + $1850 = 0, + $1851 = 0, + $1852 = 0, + $1853 = 0, + $1854 = 0, + $1855 = 0, + $1856 = 0, + $1857 = 0, + $1858 = 0, + $1859 = 0, + $186 = 0, + $1860 = 0, + $1861 = 0 + var $1862 = 0, + $1863 = 0, + $1864 = 0, + $1865 = 0, + $1866 = 0, + $1867 = 0, + $1868 = 0, + $1869 = 0, + $187 = 0, + $1870 = 0, + $1871 = 0, + $1872 = 0, + $1873 = 0, + $1874 = 0, + $1875 = 0, + $1876 = 0, + $1877 = 0, + $1878 = 0, + $188 = 0, + $189 = 0 + var $19 = 0, + $190 = 0, + $191 = 0, + $192 = 0, + $193 = 0, + $194 = 0, + $195 = 0, + $196 = 0, + $197 = 0, + $198 = 0, + $199 = 0, + $2 = 0, + $20 = 0, + $200 = 0, + $201 = 0, + $202 = 0, + $203 = 0, + $204 = 0, + $205 = 0, + $206 = 0 + var $207 = 0, + $208 = 0, + $209 = 0, + $21 = 0, + $210 = 0, + $211 = 0, + $212 = 0, + $213 = 0, + $214 = 0, + $215 = 0, + $216 = 0, + $217 = 0, + $218 = 0, + $219 = 0, + $22 = 0, + $220 = 0, + $221 = 0, + $222 = 0, + $223 = 0, + $224 = 0 + var $225 = 0, + $226 = 0, + $227 = 0, + $228 = 0, + $229 = 0, + $23 = 0, + $230 = 0, + $231 = 0, + $232 = 0, + $233 = 0, + $234 = 0, + $235 = 0, + $236 = 0, + $237 = 0, + $238 = 0, + $239 = 0, + $24 = 0, + $240 = 0, + $241 = 0, + $242 = 0 + var $243 = 0, + $244 = 0, + $245 = 0, + $246 = 0, + $247 = 0, + $248 = 0, + $249 = 0, + $25 = 0, + $250 = 0, + $251 = 0, + $252 = 0, + $253 = 0, + $254 = 0, + $255 = 0, + $256 = 0, + $257 = 0, + $258 = 0, + $259 = 0, + $26 = 0, + $260 = 0 + var $261 = 0, + $262 = 0, + $263 = 0, + $264 = 0, + $265 = 0, + $266 = 0, + $267 = 0, + $268 = 0, + $269 = 0, + $27 = 0, + $270 = 0, + $271 = 0, + $272 = 0, + $273 = 0, + $274 = 0, + $275 = 0, + $276 = 0, + $277 = 0, + $278 = 0, + $279 = 0 + var $28 = 0, + $280 = 0, + $281 = 0, + $282 = 0, + $283 = 0, + $284 = 0, + $285 = 0, + $286 = 0, + $287 = 0, + $288 = 0, + $289 = 0, + $29 = 0, + $290 = 0, + $291 = 0, + $292 = 0, + $293 = 0, + $294 = 0, + $295 = 0, + $296 = 0, + $297 = 0 + var $298 = 0, + $299 = 0, + $3 = 0, + $30 = 0, + $300 = 0, + $301 = 0, + $302 = 0, + $303 = 0, + $304 = 0, + $305 = 0, + $306 = 0, + $307 = 0, + $308 = 0, + $309 = 0, + $31 = 0, + $310 = 0, + $311 = 0, + $312 = 0, + $313 = 0, + $314 = 0 + var $315 = 0, + $316 = 0, + $317 = 0, + $318 = 0, + $319 = 0, + $32 = 0, + $320 = 0, + $321 = 0, + $322 = 0, + $323 = 0, + $324 = 0, + $325 = 0, + $326 = 0, + $327 = 0, + $328 = 0, + $329 = 0, + $33 = 0, + $330 = 0, + $331 = 0, + $332 = 0 + var $333 = 0, + $334 = 0, + $335 = 0, + $336 = 0, + $337 = 0, + $338 = 0, + $339 = 0, + $34 = 0, + $340 = 0, + $341 = 0, + $342 = 0, + $343 = 0, + $344 = 0, + $345 = 0, + $346 = 0, + $347 = 0, + $348 = 0, + $349 = 0, + $35 = 0, + $350 = 0 + var $351 = 0, + $352 = 0, + $353 = 0, + $354 = 0, + $355 = 0, + $356 = 0, + $357 = 0, + $358 = 0, + $359 = 0, + $36 = 0, + $360 = 0, + $361 = 0, + $362 = 0, + $363 = 0, + $364 = 0, + $365 = 0, + $366 = 0, + $367 = 0, + $368 = 0, + $369 = 0 + var $37 = 0, + $370 = 0, + $371 = 0, + $372 = 0, + $373 = 0, + $374 = 0, + $375 = 0, + $376 = 0, + $377 = 0, + $378 = 0, + $379 = 0, + $38 = 0, + $380 = 0, + $381 = 0, + $382 = 0, + $383 = 0, + $384 = 0, + $385 = 0, + $386 = 0, + $387 = 0 + var $388 = 0, + $389 = 0, + $39 = 0, + $390 = 0, + $391 = 0, + $392 = 0, + $393 = 0, + $394 = 0, + $395 = 0, + $396 = 0, + $397 = 0, + $398 = 0, + $399 = 0, + $4 = 0, + $40 = 0, + $400 = 0, + $401 = 0, + $402 = 0, + $403 = 0, + $404 = 0 + var $405 = 0, + $406 = 0, + $407 = 0, + $408 = 0, + $409 = 0, + $41 = 0, + $410 = 0, + $411 = 0, + $412 = 0, + $413 = 0, + $414 = 0, + $415 = 0, + $416 = 0, + $417 = 0, + $418 = 0, + $419 = 0, + $42 = 0, + $420 = 0, + $421 = 0, + $422 = 0 + var $423 = 0, + $424 = 0, + $425 = 0, + $426 = 0, + $427 = 0, + $428 = 0, + $429 = 0, + $43 = 0, + $430 = 0, + $431 = 0, + $432 = 0, + $433 = 0, + $434 = 0, + $435 = 0, + $436 = 0, + $437 = 0, + $438 = 0, + $439 = 0, + $44 = 0, + $440 = 0 + var $441 = 0, + $442 = 0, + $443 = 0, + $444 = 0, + $445 = 0, + $446 = 0, + $447 = 0, + $448 = 0, + $449 = 0, + $45 = 0, + $450 = 0, + $451 = 0, + $452 = 0, + $453 = 0, + $454 = 0, + $455 = 0, + $456 = 0, + $457 = 0, + $458 = 0, + $459 = 0 + var $46 = 0, + $460 = 0, + $461 = 0, + $462 = 0, + $463 = 0, + $464 = 0, + $465 = 0, + $466 = 0, + $467 = 0, + $468 = 0, + $469 = 0, + $47 = 0, + $470 = 0, + $471 = 0, + $472 = 0, + $473 = 0, + $474 = 0, + $475 = 0, + $476 = 0, + $477 = 0 + var $478 = 0, + $479 = 0, + $48 = 0, + $480 = 0, + $481 = 0, + $482 = 0, + $483 = 0, + $484 = 0, + $485 = 0, + $486 = 0, + $487 = 0, + $488 = 0, + $489 = 0, + $49 = 0, + $490 = 0, + $491 = 0, + $492 = 0, + $493 = 0, + $494 = 0, + $495 = 0 + var $496 = 0, + $497 = 0, + $498 = 0, + $499 = 0, + $5 = 0, + $50 = 0, + $500 = 0, + $501 = 0, + $502 = 0, + $503 = 0, + $504 = 0, + $505 = 0, + $506 = 0, + $507 = 0, + $508 = 0, + $509 = 0, + $51 = 0, + $510 = 0, + $511 = 0, + $512 = 0 + var $513 = 0, + $514 = 0, + $515 = 0, + $516 = 0, + $517 = 0, + $518 = 0, + $519 = 0, + $52 = 0, + $520 = 0, + $521 = 0, + $522 = 0, + $523 = 0, + $524 = 0, + $525 = 0, + $526 = 0, + $527 = 0, + $528 = 0, + $529 = 0, + $53 = 0, + $530 = 0 + var $531 = 0, + $532 = 0, + $533 = 0, + $534 = 0, + $535 = 0, + $536 = 0, + $537 = 0, + $538 = 0, + $539 = 0, + $54 = 0, + $540 = 0, + $541 = 0, + $542 = 0, + $543 = 0, + $544 = 0, + $545 = 0, + $546 = 0, + $547 = 0, + $548 = 0, + $549 = 0 + var $55 = 0, + $550 = 0, + $551 = 0, + $552 = 0, + $553 = 0, + $554 = 0, + $555 = 0, + $556 = 0, + $557 = 0, + $558 = 0, + $559 = 0, + $56 = 0, + $560 = 0, + $561 = 0, + $562 = 0, + $563 = 0, + $564 = 0, + $565 = 0, + $566 = 0, + $567 = 0 + var $568 = 0, + $569 = 0, + $57 = 0, + $570 = 0, + $571 = 0, + $572 = 0, + $573 = 0, + $574 = 0, + $575 = 0, + $576 = 0, + $577 = 0, + $578 = 0, + $579 = 0, + $58 = 0, + $580 = 0, + $581 = 0, + $582 = 0, + $583 = 0, + $584 = 0, + $585 = 0 + var $586 = 0, + $587 = 0, + $588 = 0, + $589 = 0, + $59 = 0, + $590 = 0, + $591 = 0, + $592 = 0, + $593 = 0, + $594 = 0, + $595 = 0, + $596 = 0, + $597 = 0, + $598 = 0, + $599 = 0, + $6 = 0, + $60 = 0, + $600 = 0, + $601 = 0, + $602 = 0 + var $603 = 0, + $604 = 0, + $605 = 0, + $606 = 0, + $607 = 0, + $608 = 0, + $609 = 0, + $61 = 0, + $610 = 0, + $611 = 0, + $612 = 0, + $613 = 0, + $614 = 0, + $615 = 0, + $616 = 0, + $617 = 0, + $618 = 0, + $619 = 0, + $62 = 0, + $620 = 0 + var $621 = 0, + $622 = 0, + $623 = 0, + $624 = 0, + $625 = 0, + $626 = 0, + $627 = 0, + $628 = 0, + $629 = 0, + $63 = 0, + $630 = 0, + $631 = 0, + $632 = 0, + $633 = 0, + $634 = 0, + $635 = 0, + $636 = 0, + $637 = 0, + $638 = 0, + $639 = 0 + var $64 = 0, + $640 = 0, + $641 = 0, + $642 = 0, + $643 = 0, + $644 = 0, + $645 = 0, + $646 = 0, + $647 = 0, + $648 = 0, + $649 = 0, + $65 = 0, + $650 = 0, + $651 = 0, + $652 = 0, + $653 = 0, + $654 = 0, + $655 = 0, + $656 = 0, + $657 = 0 + var $658 = 0, + $659 = 0, + $66 = 0, + $660 = 0, + $661 = 0, + $662 = 0, + $663 = 0, + $664 = 0, + $665 = 0, + $666 = 0, + $667 = 0, + $668 = 0, + $669 = 0, + $67 = 0, + $670 = 0, + $671 = 0, + $672 = 0, + $673 = 0, + $674 = 0, + $675 = 0 + var $676 = 0, + $677 = 0, + $678 = 0, + $679 = 0, + $68 = 0, + $680 = 0, + $681 = 0, + $682 = 0, + $683 = 0, + $684 = 0, + $685 = 0, + $686 = 0, + $687 = 0, + $688 = 0, + $689 = 0, + $69 = 0, + $690 = 0, + $691 = 0, + $692 = 0, + $693 = 0 + var $694 = 0, + $695 = 0, + $696 = 0, + $697 = 0, + $698 = 0, + $699 = 0, + $7 = 0, + $70 = 0, + $700 = 0, + $701 = 0, + $702 = 0, + $703 = 0, + $704 = 0, + $705 = 0, + $706 = 0, + $707 = 0, + $708 = 0, + $709 = 0, + $71 = 0, + $710 = 0 + var $711 = 0, + $712 = 0, + $713 = 0, + $714 = 0, + $715 = 0, + $716 = 0, + $717 = 0, + $718 = 0, + $719 = 0, + $72 = 0, + $720 = 0, + $721 = 0, + $722 = 0, + $723 = 0, + $724 = 0, + $725 = 0, + $726 = 0, + $727 = 0, + $728 = 0, + $729 = 0 + var $73 = 0, + $730 = 0, + $731 = 0, + $732 = 0, + $733 = 0, + $734 = 0, + $735 = 0, + $736 = 0, + $737 = 0, + $738 = 0, + $739 = 0, + $74 = 0, + $740 = 0, + $741 = 0, + $742 = 0, + $743 = 0, + $744 = 0, + $745 = 0, + $746 = 0, + $747 = 0 + var $748 = 0, + $749 = 0, + $75 = 0, + $750 = 0, + $751 = 0, + $752 = 0, + $753 = 0, + $754 = 0, + $755 = 0, + $756 = 0, + $757 = 0, + $758 = 0, + $759 = 0, + $76 = 0, + $760 = 0, + $761 = 0, + $762 = 0, + $763 = 0, + $764 = 0, + $765 = 0 + var $766 = 0, + $767 = 0, + $768 = 0, + $769 = 0, + $77 = 0, + $770 = 0, + $771 = 0, + $772 = 0, + $773 = 0, + $774 = 0, + $775 = 0, + $776 = 0, + $777 = 0, + $778 = 0, + $779 = 0, + $78 = 0, + $780 = 0, + $781 = 0, + $782 = 0, + $783 = 0 + var $784 = 0, + $785 = 0, + $786 = 0, + $787 = 0, + $788 = 0, + $789 = 0, + $79 = 0, + $790 = 0, + $791 = 0, + $792 = 0, + $793 = 0, + $794 = 0, + $795 = 0, + $796 = 0, + $797 = 0, + $798 = 0, + $799 = 0, + $8 = 0, + $80 = 0, + $800 = 0 + var $801 = 0, + $802 = 0, + $803 = 0, + $804 = 0, + $805 = 0, + $806 = 0, + $807 = 0, + $808 = 0, + $809 = 0, + $81 = 0, + $810 = 0, + $811 = 0, + $812 = 0, + $813 = 0, + $814 = 0, + $815 = 0, + $816 = 0, + $817 = 0, + $818 = 0, + $819 = 0 + var $82 = 0, + $820 = 0, + $821 = 0, + $822 = 0, + $823 = 0, + $824 = 0, + $825 = 0, + $826 = 0, + $827 = 0, + $828 = 0, + $829 = 0, + $83 = 0, + $830 = 0, + $831 = 0, + $832 = 0, + $833 = 0, + $834 = 0, + $835 = 0, + $836 = 0, + $837 = 0 + var $838 = 0, + $839 = 0, + $84 = 0, + $840 = 0, + $841 = 0, + $842 = 0, + $843 = 0, + $844 = 0, + $845 = 0, + $846 = 0, + $847 = 0, + $848 = 0, + $849 = 0, + $85 = 0, + $850 = 0, + $851 = 0, + $852 = 0, + $853 = 0, + $854 = 0, + $855 = 0 + var $856 = 0, + $857 = 0, + $858 = 0, + $859 = 0, + $86 = 0, + $860 = 0, + $861 = 0, + $862 = 0, + $863 = 0, + $864 = 0, + $865 = 0, + $866 = 0, + $867 = 0, + $868 = 0, + $869 = 0, + $87 = 0, + $870 = 0, + $871 = 0, + $872 = 0, + $873 = 0 + var $874 = 0, + $875 = 0, + $876 = 0, + $877 = 0, + $878 = 0, + $879 = 0, + $88 = 0, + $880 = 0, + $881 = 0, + $882 = 0, + $883 = 0, + $884 = 0, + $885 = 0, + $886 = 0, + $887 = 0, + $888 = 0, + $889 = 0, + $89 = 0, + $890 = 0, + $891 = 0 + var $892 = 0, + $893 = 0, + $894 = 0, + $895 = 0, + $896 = 0, + $897 = 0, + $898 = 0, + $899 = 0, + $9 = 0, + $90 = 0, + $900 = 0, + $901 = 0, + $902 = 0, + $903 = 0, + $904 = 0, + $905 = 0, + $906 = 0, + $907 = 0, + $908 = 0, + $909 = 0 + var $91 = 0, + $910 = 0, + $911 = 0, + $912 = 0, + $913 = 0, + $914 = 0, + $915 = 0, + $916 = 0, + $917 = 0, + $918 = 0, + $919 = 0, + $92 = 0, + $920 = 0, + $921 = 0, + $922 = 0, + $923 = 0, + $924 = 0, + $925 = 0, + $926 = 0, + $927 = 0 + var $928 = 0, + $929 = 0, + $93 = 0, + $930 = 0, + $931 = 0, + $932 = 0, + $933 = 0, + $934 = 0, + $935 = 0, + $936 = 0, + $937 = 0, + $938 = 0, + $939 = 0, + $94 = 0, + $940 = 0, + $941 = 0, + $942 = 0, + $943 = 0, + $944 = 0, + $945 = 0 + var $946 = 0, + $947 = 0, + $948 = 0, + $949 = 0, + $95 = 0, + $950 = 0, + $951 = 0, + $952 = 0, + $953 = 0, + $954 = 0, + $955 = 0, + $956 = 0, + $957 = 0, + $958 = 0, + $959 = 0, + $96 = 0, + $960 = 0, + $961 = 0, + $962 = 0, + $963 = 0 + var $964 = 0, + $965 = 0, + $966 = 0, + $967 = 0, + $968 = 0, + $969 = 0, + $97 = 0, + $970 = 0, + $971 = 0, + $972 = 0, + $973 = 0, + $974 = 0, + $975 = 0, + $976 = 0, + $977 = 0, + $978 = 0, + $979 = 0, + $98 = 0, + $980 = 0, + $981 = 0 + var $982 = 0, + $983 = 0, + $984 = 0, + $985 = 0, + $986 = 0, + $987 = 0, + $988 = 0, + $989 = 0, + $99 = 0, + $990 = 0, + $991 = 0, + $992 = 0, + $993 = 0, + $994 = 0, + $995 = 0, + $996 = 0, + $997 = 0, + $998 = 0, + $999 = 0, + label = 0 + var sp = 0 + sp = STACKTOP + $0 = _load_319($a) | 0 + $1 = tempRet0 + $2 = $0 & 2097151 + $3 = ($a + 2) | 0 + $4 = _load_420($3) | 0 + $5 = tempRet0 + $6 = _bitshift64Lshr($4 | 0, $5 | 0, 5) | 0 + $7 = tempRet0 + $8 = $6 & 2097151 + $9 = ($a + 5) | 0 + $10 = _load_319($9) | 0 + $11 = tempRet0 + $12 = _bitshift64Lshr($10 | 0, $11 | 0, 2) | 0 + $13 = tempRet0 + $14 = $12 & 2097151 + $15 = ($a + 7) | 0 + $16 = _load_420($15) | 0 + $17 = tempRet0 + $18 = _bitshift64Lshr($16 | 0, $17 | 0, 7) | 0 + $19 = tempRet0 + $20 = $18 & 2097151 + $21 = ($a + 10) | 0 + $22 = _load_420($21) | 0 + $23 = tempRet0 + $24 = _bitshift64Lshr($22 | 0, $23 | 0, 4) | 0 + $25 = tempRet0 + $26 = $24 & 2097151 + $27 = ($a + 13) | 0 + $28 = _load_319($27) | 0 + $29 = tempRet0 + $30 = _bitshift64Lshr($28 | 0, $29 | 0, 1) | 0 + $31 = tempRet0 + $32 = $30 & 2097151 + $33 = ($a + 15) | 0 + $34 = _load_420($33) | 0 + $35 = tempRet0 + $36 = _bitshift64Lshr($34 | 0, $35 | 0, 6) | 0 + $37 = tempRet0 + $38 = $36 & 2097151 + $39 = ($a + 18) | 0 + $40 = _load_319($39) | 0 + $41 = tempRet0 + $42 = _bitshift64Lshr($40 | 0, $41 | 0, 3) | 0 + $43 = tempRet0 + $44 = $42 & 2097151 + $45 = ($a + 21) | 0 + $46 = _load_319($45) | 0 + $47 = tempRet0 + $48 = $46 & 2097151 + $49 = ($a + 23) | 0 + $50 = _load_420($49) | 0 + $51 = tempRet0 + $52 = _bitshift64Lshr($50 | 0, $51 | 0, 5) | 0 + $53 = tempRet0 + $54 = $52 & 2097151 + $55 = ($a + 26) | 0 + $56 = _load_319($55) | 0 + $57 = tempRet0 + $58 = _bitshift64Lshr($56 | 0, $57 | 0, 2) | 0 + $59 = tempRet0 + $60 = $58 & 2097151 + $61 = ($a + 28) | 0 + $62 = _load_420($61) | 0 + $63 = tempRet0 + $64 = _bitshift64Lshr($62 | 0, $63 | 0, 7) | 0 + $65 = tempRet0 + $66 = _load_319($b) | 0 + $67 = tempRet0 + $68 = $66 & 2097151 + $69 = ($b + 2) | 0 + $70 = _load_420($69) | 0 + $71 = tempRet0 + $72 = _bitshift64Lshr($70 | 0, $71 | 0, 5) | 0 + $73 = tempRet0 + $74 = $72 & 2097151 + $75 = ($b + 5) | 0 + $76 = _load_319($75) | 0 + $77 = tempRet0 + $78 = _bitshift64Lshr($76 | 0, $77 | 0, 2) | 0 + $79 = tempRet0 + $80 = $78 & 2097151 + $81 = ($b + 7) | 0 + $82 = _load_420($81) | 0 + $83 = tempRet0 + $84 = _bitshift64Lshr($82 | 0, $83 | 0, 7) | 0 + $85 = tempRet0 + $86 = $84 & 2097151 + $87 = ($b + 10) | 0 + $88 = _load_420($87) | 0 + $89 = tempRet0 + $90 = _bitshift64Lshr($88 | 0, $89 | 0, 4) | 0 + $91 = tempRet0 + $92 = $90 & 2097151 + $93 = ($b + 13) | 0 + $94 = _load_319($93) | 0 + $95 = tempRet0 + $96 = _bitshift64Lshr($94 | 0, $95 | 0, 1) | 0 + $97 = tempRet0 + $98 = $96 & 2097151 + $99 = ($b + 15) | 0 + $100 = _load_420($99) | 0 + $101 = tempRet0 + $102 = _bitshift64Lshr($100 | 0, $101 | 0, 6) | 0 + $103 = tempRet0 + $104 = $102 & 2097151 + $105 = ($b + 18) | 0 + $106 = _load_319($105) | 0 + $107 = tempRet0 + $108 = _bitshift64Lshr($106 | 0, $107 | 0, 3) | 0 + $109 = tempRet0 + $110 = $108 & 2097151 + $111 = ($b + 21) | 0 + $112 = _load_319($111) | 0 + $113 = tempRet0 + $114 = $112 & 2097151 + $115 = ($b + 23) | 0 + $116 = _load_420($115) | 0 + $117 = tempRet0 + $118 = _bitshift64Lshr($116 | 0, $117 | 0, 5) | 0 + $119 = tempRet0 + $120 = $118 & 2097151 + $121 = ($b + 26) | 0 + $122 = _load_319($121) | 0 + $123 = tempRet0 + $124 = _bitshift64Lshr($122 | 0, $123 | 0, 2) | 0 + $125 = tempRet0 + $126 = $124 & 2097151 + $127 = ($b + 28) | 0 + $128 = _load_420($127) | 0 + $129 = tempRet0 + $130 = _bitshift64Lshr($128 | 0, $129 | 0, 7) | 0 + $131 = tempRet0 + $132 = _load_319($c) | 0 + $133 = tempRet0 + $134 = $132 & 2097151 + $135 = ($c + 2) | 0 + $136 = _load_420($135) | 0 + $137 = tempRet0 + $138 = _bitshift64Lshr($136 | 0, $137 | 0, 5) | 0 + $139 = tempRet0 + $140 = $138 & 2097151 + $141 = ($c + 5) | 0 + $142 = _load_319($141) | 0 + $143 = tempRet0 + $144 = _bitshift64Lshr($142 | 0, $143 | 0, 2) | 0 + $145 = tempRet0 + $146 = $144 & 2097151 + $147 = ($c + 7) | 0 + $148 = _load_420($147) | 0 + $149 = tempRet0 + $150 = _bitshift64Lshr($148 | 0, $149 | 0, 7) | 0 + $151 = tempRet0 + $152 = $150 & 2097151 + $153 = ($c + 10) | 0 + $154 = _load_420($153) | 0 + $155 = tempRet0 + $156 = _bitshift64Lshr($154 | 0, $155 | 0, 4) | 0 + $157 = tempRet0 + $158 = $156 & 2097151 + $159 = ($c + 13) | 0 + $160 = _load_319($159) | 0 + $161 = tempRet0 + $162 = _bitshift64Lshr($160 | 0, $161 | 0, 1) | 0 + $163 = tempRet0 + $164 = $162 & 2097151 + $165 = ($c + 15) | 0 + $166 = _load_420($165) | 0 + $167 = tempRet0 + $168 = _bitshift64Lshr($166 | 0, $167 | 0, 6) | 0 + $169 = tempRet0 + $170 = $168 & 2097151 + $171 = ($c + 18) | 0 + $172 = _load_319($171) | 0 + $173 = tempRet0 + $174 = _bitshift64Lshr($172 | 0, $173 | 0, 3) | 0 + $175 = tempRet0 + $176 = $174 & 2097151 + $177 = ($c + 21) | 0 + $178 = _load_319($177) | 0 + $179 = tempRet0 + $180 = $178 & 2097151 + $181 = ($c + 23) | 0 + $182 = _load_420($181) | 0 + $183 = tempRet0 + $184 = _bitshift64Lshr($182 | 0, $183 | 0, 5) | 0 + $185 = tempRet0 + $186 = $184 & 2097151 + $187 = ($c + 26) | 0 + $188 = _load_319($187) | 0 + $189 = tempRet0 + $190 = _bitshift64Lshr($188 | 0, $189 | 0, 2) | 0 + $191 = tempRet0 + $192 = $190 & 2097151 + $193 = ($c + 28) | 0 + $194 = _load_420($193) | 0 + $195 = tempRet0 + $196 = _bitshift64Lshr($194 | 0, $195 | 0, 7) | 0 + $197 = tempRet0 + $198 = ___muldi3($68 | 0, 0, $2 | 0, 0) | 0 + $199 = tempRet0 + $200 = _i64Add($134 | 0, 0, $198 | 0, $199 | 0) | 0 + $201 = tempRet0 + $202 = ___muldi3($74 | 0, 0, $2 | 0, 0) | 0 + $203 = tempRet0 + $204 = ___muldi3($68 | 0, 0, $8 | 0, 0) | 0 + $205 = tempRet0 + $206 = ___muldi3($80 | 0, 0, $2 | 0, 0) | 0 + $207 = tempRet0 + $208 = ___muldi3($74 | 0, 0, $8 | 0, 0) | 0 + $209 = tempRet0 + $210 = ___muldi3($68 | 0, 0, $14 | 0, 0) | 0 + $211 = tempRet0 + $212 = _i64Add($208 | 0, $209 | 0, $210 | 0, $211 | 0) | 0 + $213 = tempRet0 + $214 = _i64Add($212 | 0, $213 | 0, $206 | 0, $207 | 0) | 0 + $215 = tempRet0 + $216 = _i64Add($214 | 0, $215 | 0, $146 | 0, 0) | 0 + $217 = tempRet0 + $218 = ___muldi3($86 | 0, 0, $2 | 0, 0) | 0 + $219 = tempRet0 + $220 = ___muldi3($80 | 0, 0, $8 | 0, 0) | 0 + $221 = tempRet0 + $222 = ___muldi3($74 | 0, 0, $14 | 0, 0) | 0 + $223 = tempRet0 + $224 = ___muldi3($68 | 0, 0, $20 | 0, 0) | 0 + $225 = tempRet0 + $226 = ___muldi3($92 | 0, 0, $2 | 0, 0) | 0 + $227 = tempRet0 + $228 = ___muldi3($86 | 0, 0, $8 | 0, 0) | 0 + $229 = tempRet0 + $230 = ___muldi3($80 | 0, 0, $14 | 0, 0) | 0 + $231 = tempRet0 + $232 = ___muldi3($74 | 0, 0, $20 | 0, 0) | 0 + $233 = tempRet0 + $234 = ___muldi3($68 | 0, 0, $26 | 0, 0) | 0 + $235 = tempRet0 + $236 = _i64Add($232 | 0, $233 | 0, $234 | 0, $235 | 0) | 0 + $237 = tempRet0 + $238 = _i64Add($236 | 0, $237 | 0, $230 | 0, $231 | 0) | 0 + $239 = tempRet0 + $240 = _i64Add($238 | 0, $239 | 0, $228 | 0, $229 | 0) | 0 + $241 = tempRet0 + $242 = _i64Add($240 | 0, $241 | 0, $226 | 0, $227 | 0) | 0 + $243 = tempRet0 + $244 = _i64Add($242 | 0, $243 | 0, $158 | 0, 0) | 0 + $245 = tempRet0 + $246 = ___muldi3($98 | 0, 0, $2 | 0, 0) | 0 + $247 = tempRet0 + $248 = ___muldi3($92 | 0, 0, $8 | 0, 0) | 0 + $249 = tempRet0 + $250 = ___muldi3($86 | 0, 0, $14 | 0, 0) | 0 + $251 = tempRet0 + $252 = ___muldi3($80 | 0, 0, $20 | 0, 0) | 0 + $253 = tempRet0 + $254 = ___muldi3($74 | 0, 0, $26 | 0, 0) | 0 + $255 = tempRet0 + $256 = ___muldi3($68 | 0, 0, $32 | 0, 0) | 0 + $257 = tempRet0 + $258 = ___muldi3($104 | 0, 0, $2 | 0, 0) | 0 + $259 = tempRet0 + $260 = ___muldi3($98 | 0, 0, $8 | 0, 0) | 0 + $261 = tempRet0 + $262 = ___muldi3($92 | 0, 0, $14 | 0, 0) | 0 + $263 = tempRet0 + $264 = ___muldi3($86 | 0, 0, $20 | 0, 0) | 0 + $265 = tempRet0 + $266 = ___muldi3($80 | 0, 0, $26 | 0, 0) | 0 + $267 = tempRet0 + $268 = ___muldi3($74 | 0, 0, $32 | 0, 0) | 0 + $269 = tempRet0 + $270 = ___muldi3($68 | 0, 0, $38 | 0, 0) | 0 + $271 = tempRet0 + $272 = _i64Add($268 | 0, $269 | 0, $270 | 0, $271 | 0) | 0 + $273 = tempRet0 + $274 = _i64Add($272 | 0, $273 | 0, $266 | 0, $267 | 0) | 0 + $275 = tempRet0 + $276 = _i64Add($274 | 0, $275 | 0, $264 | 0, $265 | 0) | 0 + $277 = tempRet0 + $278 = _i64Add($276 | 0, $277 | 0, $262 | 0, $263 | 0) | 0 + $279 = tempRet0 + $280 = _i64Add($278 | 0, $279 | 0, $260 | 0, $261 | 0) | 0 + $281 = tempRet0 + $282 = _i64Add($280 | 0, $281 | 0, $258 | 0, $259 | 0) | 0 + $283 = tempRet0 + $284 = _i64Add($282 | 0, $283 | 0, $170 | 0, 0) | 0 + $285 = tempRet0 + $286 = ___muldi3($110 | 0, 0, $2 | 0, 0) | 0 + $287 = tempRet0 + $288 = ___muldi3($104 | 0, 0, $8 | 0, 0) | 0 + $289 = tempRet0 + $290 = ___muldi3($98 | 0, 0, $14 | 0, 0) | 0 + $291 = tempRet0 + $292 = ___muldi3($92 | 0, 0, $20 | 0, 0) | 0 + $293 = tempRet0 + $294 = ___muldi3($86 | 0, 0, $26 | 0, 0) | 0 + $295 = tempRet0 + $296 = ___muldi3($80 | 0, 0, $32 | 0, 0) | 0 + $297 = tempRet0 + $298 = ___muldi3($74 | 0, 0, $38 | 0, 0) | 0 + $299 = tempRet0 + $300 = ___muldi3($68 | 0, 0, $44 | 0, 0) | 0 + $301 = tempRet0 + $302 = ___muldi3($114 | 0, 0, $2 | 0, 0) | 0 + $303 = tempRet0 + $304 = ___muldi3($110 | 0, 0, $8 | 0, 0) | 0 + $305 = tempRet0 + $306 = ___muldi3($104 | 0, 0, $14 | 0, 0) | 0 + $307 = tempRet0 + $308 = ___muldi3($98 | 0, 0, $20 | 0, 0) | 0 + $309 = tempRet0 + $310 = ___muldi3($92 | 0, 0, $26 | 0, 0) | 0 + $311 = tempRet0 + $312 = ___muldi3($86 | 0, 0, $32 | 0, 0) | 0 + $313 = tempRet0 + $314 = ___muldi3($80 | 0, 0, $38 | 0, 0) | 0 + $315 = tempRet0 + $316 = ___muldi3($74 | 0, 0, $44 | 0, 0) | 0 + $317 = tempRet0 + $318 = ___muldi3($68 | 0, 0, $48 | 0, 0) | 0 + $319 = tempRet0 + $320 = _i64Add($316 | 0, $317 | 0, $318 | 0, $319 | 0) | 0 + $321 = tempRet0 + $322 = _i64Add($320 | 0, $321 | 0, $314 | 0, $315 | 0) | 0 + $323 = tempRet0 + $324 = _i64Add($322 | 0, $323 | 0, $312 | 0, $313 | 0) | 0 + $325 = tempRet0 + $326 = _i64Add($324 | 0, $325 | 0, $310 | 0, $311 | 0) | 0 + $327 = tempRet0 + $328 = _i64Add($326 | 0, $327 | 0, $308 | 0, $309 | 0) | 0 + $329 = tempRet0 + $330 = _i64Add($328 | 0, $329 | 0, $306 | 0, $307 | 0) | 0 + $331 = tempRet0 + $332 = _i64Add($330 | 0, $331 | 0, $302 | 0, $303 | 0) | 0 + $333 = tempRet0 + $334 = _i64Add($332 | 0, $333 | 0, $304 | 0, $305 | 0) | 0 + $335 = tempRet0 + $336 = _i64Add($334 | 0, $335 | 0, $180 | 0, 0) | 0 + $337 = tempRet0 + $338 = ___muldi3($120 | 0, 0, $2 | 0, 0) | 0 + $339 = tempRet0 + $340 = ___muldi3($114 | 0, 0, $8 | 0, 0) | 0 + $341 = tempRet0 + $342 = ___muldi3($110 | 0, 0, $14 | 0, 0) | 0 + $343 = tempRet0 + $344 = ___muldi3($104 | 0, 0, $20 | 0, 0) | 0 + $345 = tempRet0 + $346 = ___muldi3($98 | 0, 0, $26 | 0, 0) | 0 + $347 = tempRet0 + $348 = ___muldi3($92 | 0, 0, $32 | 0, 0) | 0 + $349 = tempRet0 + $350 = ___muldi3($86 | 0, 0, $38 | 0, 0) | 0 + $351 = tempRet0 + $352 = ___muldi3($80 | 0, 0, $44 | 0, 0) | 0 + $353 = tempRet0 + $354 = ___muldi3($74 | 0, 0, $48 | 0, 0) | 0 + $355 = tempRet0 + $356 = ___muldi3($68 | 0, 0, $54 | 0, 0) | 0 + $357 = tempRet0 + $358 = ___muldi3($126 | 0, 0, $2 | 0, 0) | 0 + $359 = tempRet0 + $360 = ___muldi3($120 | 0, 0, $8 | 0, 0) | 0 + $361 = tempRet0 + $362 = ___muldi3($114 | 0, 0, $14 | 0, 0) | 0 + $363 = tempRet0 + $364 = ___muldi3($110 | 0, 0, $20 | 0, 0) | 0 + $365 = tempRet0 + $366 = ___muldi3($104 | 0, 0, $26 | 0, 0) | 0 + $367 = tempRet0 + $368 = ___muldi3($98 | 0, 0, $32 | 0, 0) | 0 + $369 = tempRet0 + $370 = ___muldi3($92 | 0, 0, $38 | 0, 0) | 0 + $371 = tempRet0 + $372 = ___muldi3($86 | 0, 0, $44 | 0, 0) | 0 + $373 = tempRet0 + $374 = ___muldi3($80 | 0, 0, $48 | 0, 0) | 0 + $375 = tempRet0 + $376 = ___muldi3($74 | 0, 0, $54 | 0, 0) | 0 + $377 = tempRet0 + $378 = ___muldi3($68 | 0, 0, $60 | 0, 0) | 0 + $379 = tempRet0 + $380 = _i64Add($376 | 0, $377 | 0, $378 | 0, $379 | 0) | 0 + $381 = tempRet0 + $382 = _i64Add($380 | 0, $381 | 0, $374 | 0, $375 | 0) | 0 + $383 = tempRet0 + $384 = _i64Add($382 | 0, $383 | 0, $372 | 0, $373 | 0) | 0 + $385 = tempRet0 + $386 = _i64Add($384 | 0, $385 | 0, $370 | 0, $371 | 0) | 0 + $387 = tempRet0 + $388 = _i64Add($386 | 0, $387 | 0, $368 | 0, $369 | 0) | 0 + $389 = tempRet0 + $390 = _i64Add($388 | 0, $389 | 0, $366 | 0, $367 | 0) | 0 + $391 = tempRet0 + $392 = _i64Add($390 | 0, $391 | 0, $362 | 0, $363 | 0) | 0 + $393 = tempRet0 + $394 = _i64Add($392 | 0, $393 | 0, $364 | 0, $365 | 0) | 0 + $395 = tempRet0 + $396 = _i64Add($394 | 0, $395 | 0, $360 | 0, $361 | 0) | 0 + $397 = tempRet0 + $398 = _i64Add($396 | 0, $397 | 0, $358 | 0, $359 | 0) | 0 + $399 = tempRet0 + $400 = _i64Add($398 | 0, $399 | 0, $192 | 0, 0) | 0 + $401 = tempRet0 + $402 = ___muldi3($130 | 0, $131 | 0, $2 | 0, 0) | 0 + $403 = tempRet0 + $404 = ___muldi3($126 | 0, 0, $8 | 0, 0) | 0 + $405 = tempRet0 + $406 = ___muldi3($120 | 0, 0, $14 | 0, 0) | 0 + $407 = tempRet0 + $408 = ___muldi3($114 | 0, 0, $20 | 0, 0) | 0 + $409 = tempRet0 + $410 = ___muldi3($110 | 0, 0, $26 | 0, 0) | 0 + $411 = tempRet0 + $412 = ___muldi3($104 | 0, 0, $32 | 0, 0) | 0 + $413 = tempRet0 + $414 = ___muldi3($98 | 0, 0, $38 | 0, 0) | 0 + $415 = tempRet0 + $416 = ___muldi3($92 | 0, 0, $44 | 0, 0) | 0 + $417 = tempRet0 + $418 = ___muldi3($86 | 0, 0, $48 | 0, 0) | 0 + $419 = tempRet0 + $420 = ___muldi3($80 | 0, 0, $54 | 0, 0) | 0 + $421 = tempRet0 + $422 = ___muldi3($74 | 0, 0, $60 | 0, 0) | 0 + $423 = tempRet0 + $424 = ___muldi3($68 | 0, 0, $64 | 0, $65 | 0) | 0 + $425 = tempRet0 + $426 = ___muldi3($130 | 0, $131 | 0, $8 | 0, 0) | 0 + $427 = tempRet0 + $428 = ___muldi3($126 | 0, 0, $14 | 0, 0) | 0 + $429 = tempRet0 + $430 = ___muldi3($120 | 0, 0, $20 | 0, 0) | 0 + $431 = tempRet0 + $432 = ___muldi3($114 | 0, 0, $26 | 0, 0) | 0 + $433 = tempRet0 + $434 = ___muldi3($110 | 0, 0, $32 | 0, 0) | 0 + $435 = tempRet0 + $436 = ___muldi3($104 | 0, 0, $38 | 0, 0) | 0 + $437 = tempRet0 + $438 = ___muldi3($98 | 0, 0, $44 | 0, 0) | 0 + $439 = tempRet0 + $440 = ___muldi3($92 | 0, 0, $48 | 0, 0) | 0 + $441 = tempRet0 + $442 = ___muldi3($86 | 0, 0, $54 | 0, 0) | 0 + $443 = tempRet0 + $444 = ___muldi3($80 | 0, 0, $60 | 0, 0) | 0 + $445 = tempRet0 + $446 = ___muldi3($74 | 0, 0, $64 | 0, $65 | 0) | 0 + $447 = tempRet0 + $448 = _i64Add($444 | 0, $445 | 0, $446 | 0, $447 | 0) | 0 + $449 = tempRet0 + $450 = _i64Add($448 | 0, $449 | 0, $442 | 0, $443 | 0) | 0 + $451 = tempRet0 + $452 = _i64Add($450 | 0, $451 | 0, $440 | 0, $441 | 0) | 0 + $453 = tempRet0 + $454 = _i64Add($452 | 0, $453 | 0, $438 | 0, $439 | 0) | 0 + $455 = tempRet0 + $456 = _i64Add($454 | 0, $455 | 0, $436 | 0, $437 | 0) | 0 + $457 = tempRet0 + $458 = _i64Add($456 | 0, $457 | 0, $432 | 0, $433 | 0) | 0 + $459 = tempRet0 + $460 = _i64Add($458 | 0, $459 | 0, $434 | 0, $435 | 0) | 0 + $461 = tempRet0 + $462 = _i64Add($460 | 0, $461 | 0, $430 | 0, $431 | 0) | 0 + $463 = tempRet0 + $464 = _i64Add($462 | 0, $463 | 0, $428 | 0, $429 | 0) | 0 + $465 = tempRet0 + $466 = _i64Add($464 | 0, $465 | 0, $426 | 0, $427 | 0) | 0 + $467 = tempRet0 + $468 = ___muldi3($130 | 0, $131 | 0, $14 | 0, 0) | 0 + $469 = tempRet0 + $470 = ___muldi3($126 | 0, 0, $20 | 0, 0) | 0 + $471 = tempRet0 + $472 = ___muldi3($120 | 0, 0, $26 | 0, 0) | 0 + $473 = tempRet0 + $474 = ___muldi3($114 | 0, 0, $32 | 0, 0) | 0 + $475 = tempRet0 + $476 = ___muldi3($110 | 0, 0, $38 | 0, 0) | 0 + $477 = tempRet0 + $478 = ___muldi3($104 | 0, 0, $44 | 0, 0) | 0 + $479 = tempRet0 + $480 = ___muldi3($98 | 0, 0, $48 | 0, 0) | 0 + $481 = tempRet0 + $482 = ___muldi3($92 | 0, 0, $54 | 0, 0) | 0 + $483 = tempRet0 + $484 = ___muldi3($86 | 0, 0, $60 | 0, 0) | 0 + $485 = tempRet0 + $486 = ___muldi3($80 | 0, 0, $64 | 0, $65 | 0) | 0 + $487 = tempRet0 + $488 = ___muldi3($130 | 0, $131 | 0, $20 | 0, 0) | 0 + $489 = tempRet0 + $490 = ___muldi3($126 | 0, 0, $26 | 0, 0) | 0 + $491 = tempRet0 + $492 = ___muldi3($120 | 0, 0, $32 | 0, 0) | 0 + $493 = tempRet0 + $494 = ___muldi3($114 | 0, 0, $38 | 0, 0) | 0 + $495 = tempRet0 + $496 = ___muldi3($110 | 0, 0, $44 | 0, 0) | 0 + $497 = tempRet0 + $498 = ___muldi3($104 | 0, 0, $48 | 0, 0) | 0 + $499 = tempRet0 + $500 = ___muldi3($98 | 0, 0, $54 | 0, 0) | 0 + $501 = tempRet0 + $502 = ___muldi3($92 | 0, 0, $60 | 0, 0) | 0 + $503 = tempRet0 + $504 = ___muldi3($86 | 0, 0, $64 | 0, $65 | 0) | 0 + $505 = tempRet0 + $506 = _i64Add($502 | 0, $503 | 0, $504 | 0, $505 | 0) | 0 + $507 = tempRet0 + $508 = _i64Add($506 | 0, $507 | 0, $500 | 0, $501 | 0) | 0 + $509 = tempRet0 + $510 = _i64Add($508 | 0, $509 | 0, $498 | 0, $499 | 0) | 0 + $511 = tempRet0 + $512 = _i64Add($510 | 0, $511 | 0, $494 | 0, $495 | 0) | 0 + $513 = tempRet0 + $514 = _i64Add($512 | 0, $513 | 0, $496 | 0, $497 | 0) | 0 + $515 = tempRet0 + $516 = _i64Add($514 | 0, $515 | 0, $492 | 0, $493 | 0) | 0 + $517 = tempRet0 + $518 = _i64Add($516 | 0, $517 | 0, $490 | 0, $491 | 0) | 0 + $519 = tempRet0 + $520 = _i64Add($518 | 0, $519 | 0, $488 | 0, $489 | 0) | 0 + $521 = tempRet0 + $522 = ___muldi3($130 | 0, $131 | 0, $26 | 0, 0) | 0 + $523 = tempRet0 + $524 = ___muldi3($126 | 0, 0, $32 | 0, 0) | 0 + $525 = tempRet0 + $526 = ___muldi3($120 | 0, 0, $38 | 0, 0) | 0 + $527 = tempRet0 + $528 = ___muldi3($114 | 0, 0, $44 | 0, 0) | 0 + $529 = tempRet0 + $530 = ___muldi3($110 | 0, 0, $48 | 0, 0) | 0 + $531 = tempRet0 + $532 = ___muldi3($104 | 0, 0, $54 | 0, 0) | 0 + $533 = tempRet0 + $534 = ___muldi3($98 | 0, 0, $60 | 0, 0) | 0 + $535 = tempRet0 + $536 = ___muldi3($92 | 0, 0, $64 | 0, $65 | 0) | 0 + $537 = tempRet0 + $538 = ___muldi3($130 | 0, $131 | 0, $32 | 0, 0) | 0 + $539 = tempRet0 + $540 = ___muldi3($126 | 0, 0, $38 | 0, 0) | 0 + $541 = tempRet0 + $542 = ___muldi3($120 | 0, 0, $44 | 0, 0) | 0 + $543 = tempRet0 + $544 = ___muldi3($114 | 0, 0, $48 | 0, 0) | 0 + $545 = tempRet0 + $546 = ___muldi3($110 | 0, 0, $54 | 0, 0) | 0 + $547 = tempRet0 + $548 = ___muldi3($104 | 0, 0, $60 | 0, 0) | 0 + $549 = tempRet0 + $550 = ___muldi3($98 | 0, 0, $64 | 0, $65 | 0) | 0 + $551 = tempRet0 + $552 = _i64Add($548 | 0, $549 | 0, $550 | 0, $551 | 0) | 0 + $553 = tempRet0 + $554 = _i64Add($552 | 0, $553 | 0, $544 | 0, $545 | 0) | 0 + $555 = tempRet0 + $556 = _i64Add($554 | 0, $555 | 0, $546 | 0, $547 | 0) | 0 + $557 = tempRet0 + $558 = _i64Add($556 | 0, $557 | 0, $542 | 0, $543 | 0) | 0 + $559 = tempRet0 + $560 = _i64Add($558 | 0, $559 | 0, $540 | 0, $541 | 0) | 0 + $561 = tempRet0 + $562 = _i64Add($560 | 0, $561 | 0, $538 | 0, $539 | 0) | 0 + $563 = tempRet0 + $564 = ___muldi3($130 | 0, $131 | 0, $38 | 0, 0) | 0 + $565 = tempRet0 + $566 = ___muldi3($126 | 0, 0, $44 | 0, 0) | 0 + $567 = tempRet0 + $568 = ___muldi3($120 | 0, 0, $48 | 0, 0) | 0 + $569 = tempRet0 + $570 = ___muldi3($114 | 0, 0, $54 | 0, 0) | 0 + $571 = tempRet0 + $572 = ___muldi3($110 | 0, 0, $60 | 0, 0) | 0 + $573 = tempRet0 + $574 = ___muldi3($104 | 0, 0, $64 | 0, $65 | 0) | 0 + $575 = tempRet0 + $576 = ___muldi3($130 | 0, $131 | 0, $44 | 0, 0) | 0 + $577 = tempRet0 + $578 = ___muldi3($126 | 0, 0, $48 | 0, 0) | 0 + $579 = tempRet0 + $580 = ___muldi3($120 | 0, 0, $54 | 0, 0) | 0 + $581 = tempRet0 + $582 = ___muldi3($114 | 0, 0, $60 | 0, 0) | 0 + $583 = tempRet0 + $584 = ___muldi3($110 | 0, 0, $64 | 0, $65 | 0) | 0 + $585 = tempRet0 + $586 = _i64Add($584 | 0, $585 | 0, $582 | 0, $583 | 0) | 0 + $587 = tempRet0 + $588 = _i64Add($586 | 0, $587 | 0, $580 | 0, $581 | 0) | 0 + $589 = tempRet0 + $590 = _i64Add($588 | 0, $589 | 0, $578 | 0, $579 | 0) | 0 + $591 = tempRet0 + $592 = _i64Add($590 | 0, $591 | 0, $576 | 0, $577 | 0) | 0 + $593 = tempRet0 + $594 = ___muldi3($130 | 0, $131 | 0, $48 | 0, 0) | 0 + $595 = tempRet0 + $596 = ___muldi3($126 | 0, 0, $54 | 0, 0) | 0 + $597 = tempRet0 + $598 = ___muldi3($120 | 0, 0, $60 | 0, 0) | 0 + $599 = tempRet0 + $600 = ___muldi3($114 | 0, 0, $64 | 0, $65 | 0) | 0 + $601 = tempRet0 + $602 = ___muldi3($130 | 0, $131 | 0, $54 | 0, 0) | 0 + $603 = tempRet0 + $604 = ___muldi3($126 | 0, 0, $60 | 0, 0) | 0 + $605 = tempRet0 + $606 = ___muldi3($120 | 0, 0, $64 | 0, $65 | 0) | 0 + $607 = tempRet0 + $608 = _i64Add($604 | 0, $605 | 0, $606 | 0, $607 | 0) | 0 + $609 = tempRet0 + $610 = _i64Add($608 | 0, $609 | 0, $602 | 0, $603 | 0) | 0 + $611 = tempRet0 + $612 = ___muldi3($130 | 0, $131 | 0, $60 | 0, 0) | 0 + $613 = tempRet0 + $614 = ___muldi3($126 | 0, 0, $64 | 0, $65 | 0) | 0 + $615 = tempRet0 + $616 = _i64Add($612 | 0, $613 | 0, $614 | 0, $615 | 0) | 0 + $617 = tempRet0 + $618 = ___muldi3($130 | 0, $131 | 0, $64 | 0, $65 | 0) | 0 + $619 = tempRet0 + $620 = _i64Add($200 | 0, $201 | 0, 1048576, 0) | 0 + $621 = tempRet0 + $622 = _bitshift64Lshr($620 | 0, $621 | 0, 21) | 0 + $623 = tempRet0 + $624 = _i64Add($202 | 0, $203 | 0, $204 | 0, $205 | 0) | 0 + $625 = tempRet0 + $626 = _i64Add($624 | 0, $625 | 0, $140 | 0, 0) | 0 + $627 = tempRet0 + $628 = _i64Add($626 | 0, $627 | 0, $622 | 0, $623 | 0) | 0 + $629 = tempRet0 + $630 = _bitshift64Shl($622 | 0, $623 | 0, 21) | 0 + $631 = tempRet0 + $632 = _i64Subtract($200 | 0, $201 | 0, $630 | 0, $631 | 0) | 0 + $633 = tempRet0 + $634 = _i64Add($216 | 0, $217 | 0, 1048576, 0) | 0 + $635 = tempRet0 + $636 = _bitshift64Lshr($634 | 0, $635 | 0, 21) | 0 + $637 = tempRet0 + $638 = _i64Add($222 | 0, $223 | 0, $224 | 0, $225 | 0) | 0 + $639 = tempRet0 + $640 = _i64Add($638 | 0, $639 | 0, $220 | 0, $221 | 0) | 0 + $641 = tempRet0 + $642 = _i64Add($640 | 0, $641 | 0, $218 | 0, $219 | 0) | 0 + $643 = tempRet0 + $644 = _i64Add($642 | 0, $643 | 0, $152 | 0, 0) | 0 + $645 = tempRet0 + $646 = _i64Add($644 | 0, $645 | 0, $636 | 0, $637 | 0) | 0 + $647 = tempRet0 + $648 = _bitshift64Shl($636 | 0, $637 | 0, 21) | 0 + $649 = tempRet0 + $650 = _i64Add($244 | 0, $245 | 0, 1048576, 0) | 0 + $651 = tempRet0 + $652 = _bitshift64Ashr($650 | 0, $651 | 0, 21) | 0 + $653 = tempRet0 + $654 = _i64Add($254 | 0, $255 | 0, $256 | 0, $257 | 0) | 0 + $655 = tempRet0 + $656 = _i64Add($654 | 0, $655 | 0, $252 | 0, $253 | 0) | 0 + $657 = tempRet0 + $658 = _i64Add($656 | 0, $657 | 0, $250 | 0, $251 | 0) | 0 + $659 = tempRet0 + $660 = _i64Add($658 | 0, $659 | 0, $248 | 0, $249 | 0) | 0 + $661 = tempRet0 + $662 = _i64Add($660 | 0, $661 | 0, $246 | 0, $247 | 0) | 0 + $663 = tempRet0 + $664 = _i64Add($662 | 0, $663 | 0, $164 | 0, 0) | 0 + $665 = tempRet0 + $666 = _i64Add($664 | 0, $665 | 0, $652 | 0, $653 | 0) | 0 + $667 = tempRet0 + $668 = _bitshift64Shl($652 | 0, $653 | 0, 21) | 0 + $669 = tempRet0 + $670 = _i64Subtract($244 | 0, $245 | 0, $668 | 0, $669 | 0) | 0 + $671 = tempRet0 + $672 = _i64Add($284 | 0, $285 | 0, 1048576, 0) | 0 + $673 = tempRet0 + $674 = _bitshift64Ashr($672 | 0, $673 | 0, 21) | 0 + $675 = tempRet0 + $676 = _i64Add($298 | 0, $299 | 0, $300 | 0, $301 | 0) | 0 + $677 = tempRet0 + $678 = _i64Add($676 | 0, $677 | 0, $296 | 0, $297 | 0) | 0 + $679 = tempRet0 + $680 = _i64Add($678 | 0, $679 | 0, $294 | 0, $295 | 0) | 0 + $681 = tempRet0 + $682 = _i64Add($680 | 0, $681 | 0, $292 | 0, $293 | 0) | 0 + $683 = tempRet0 + $684 = _i64Add($682 | 0, $683 | 0, $290 | 0, $291 | 0) | 0 + $685 = tempRet0 + $686 = _i64Add($684 | 0, $685 | 0, $288 | 0, $289 | 0) | 0 + $687 = tempRet0 + $688 = _i64Add($686 | 0, $687 | 0, $286 | 0, $287 | 0) | 0 + $689 = tempRet0 + $690 = _i64Add($688 | 0, $689 | 0, $176 | 0, 0) | 0 + $691 = tempRet0 + $692 = _i64Add($690 | 0, $691 | 0, $674 | 0, $675 | 0) | 0 + $693 = tempRet0 + $694 = _bitshift64Shl($674 | 0, $675 | 0, 21) | 0 + $695 = tempRet0 + $696 = _i64Add($336 | 0, $337 | 0, 1048576, 0) | 0 + $697 = tempRet0 + $698 = _bitshift64Ashr($696 | 0, $697 | 0, 21) | 0 + $699 = tempRet0 + $700 = _i64Add($354 | 0, $355 | 0, $356 | 0, $357 | 0) | 0 + $701 = tempRet0 + $702 = _i64Add($700 | 0, $701 | 0, $352 | 0, $353 | 0) | 0 + $703 = tempRet0 + $704 = _i64Add($702 | 0, $703 | 0, $350 | 0, $351 | 0) | 0 + $705 = tempRet0 + $706 = _i64Add($704 | 0, $705 | 0, $348 | 0, $349 | 0) | 0 + $707 = tempRet0 + $708 = _i64Add($706 | 0, $707 | 0, $346 | 0, $347 | 0) | 0 + $709 = tempRet0 + $710 = _i64Add($708 | 0, $709 | 0, $344 | 0, $345 | 0) | 0 + $711 = tempRet0 + $712 = _i64Add($710 | 0, $711 | 0, $340 | 0, $341 | 0) | 0 + $713 = tempRet0 + $714 = _i64Add($712 | 0, $713 | 0, $342 | 0, $343 | 0) | 0 + $715 = tempRet0 + $716 = _i64Add($714 | 0, $715 | 0, $338 | 0, $339 | 0) | 0 + $717 = tempRet0 + $718 = _i64Add($716 | 0, $717 | 0, $186 | 0, 0) | 0 + $719 = tempRet0 + $720 = _i64Add($718 | 0, $719 | 0, $698 | 0, $699 | 0) | 0 + $721 = tempRet0 + $722 = _bitshift64Shl($698 | 0, $699 | 0, 21) | 0 + $723 = tempRet0 + $724 = _i64Add($400 | 0, $401 | 0, 1048576, 0) | 0 + $725 = tempRet0 + $726 = _bitshift64Ashr($724 | 0, $725 | 0, 21) | 0 + $727 = tempRet0 + $728 = _i64Add($422 | 0, $423 | 0, $424 | 0, $425 | 0) | 0 + $729 = tempRet0 + $730 = _i64Add($728 | 0, $729 | 0, $420 | 0, $421 | 0) | 0 + $731 = tempRet0 + $732 = _i64Add($730 | 0, $731 | 0, $418 | 0, $419 | 0) | 0 + $733 = tempRet0 + $734 = _i64Add($732 | 0, $733 | 0, $416 | 0, $417 | 0) | 0 + $735 = tempRet0 + $736 = _i64Add($734 | 0, $735 | 0, $414 | 0, $415 | 0) | 0 + $737 = tempRet0 + $738 = _i64Add($736 | 0, $737 | 0, $412 | 0, $413 | 0) | 0 + $739 = tempRet0 + $740 = _i64Add($738 | 0, $739 | 0, $408 | 0, $409 | 0) | 0 + $741 = tempRet0 + $742 = _i64Add($740 | 0, $741 | 0, $410 | 0, $411 | 0) | 0 + $743 = tempRet0 + $744 = _i64Add($742 | 0, $743 | 0, $406 | 0, $407 | 0) | 0 + $745 = tempRet0 + $746 = _i64Add($744 | 0, $745 | 0, $402 | 0, $403 | 0) | 0 + $747 = tempRet0 + $748 = _i64Add($746 | 0, $747 | 0, $404 | 0, $405 | 0) | 0 + $749 = tempRet0 + $750 = _i64Add($748 | 0, $749 | 0, $196 | 0, $197 | 0) | 0 + $751 = tempRet0 + $752 = _i64Add($750 | 0, $751 | 0, $726 | 0, $727 | 0) | 0 + $753 = tempRet0 + $754 = _bitshift64Shl($726 | 0, $727 | 0, 21) | 0 + $755 = tempRet0 + $756 = _i64Subtract($400 | 0, $401 | 0, $754 | 0, $755 | 0) | 0 + $757 = tempRet0 + $758 = _i64Add($466 | 0, $467 | 0, 1048576, 0) | 0 + $759 = tempRet0 + $760 = _bitshift64Ashr($758 | 0, $759 | 0, 21) | 0 + $761 = tempRet0 + $762 = _i64Add($484 | 0, $485 | 0, $486 | 0, $487 | 0) | 0 + $763 = tempRet0 + $764 = _i64Add($762 | 0, $763 | 0, $482 | 0, $483 | 0) | 0 + $765 = tempRet0 + $766 = _i64Add($764 | 0, $765 | 0, $480 | 0, $481 | 0) | 0 + $767 = tempRet0 + $768 = _i64Add($766 | 0, $767 | 0, $478 | 0, $479 | 0) | 0 + $769 = tempRet0 + $770 = _i64Add($768 | 0, $769 | 0, $474 | 0, $475 | 0) | 0 + $771 = tempRet0 + $772 = _i64Add($770 | 0, $771 | 0, $476 | 0, $477 | 0) | 0 + $773 = tempRet0 + $774 = _i64Add($772 | 0, $773 | 0, $472 | 0, $473 | 0) | 0 + $775 = tempRet0 + $776 = _i64Add($774 | 0, $775 | 0, $470 | 0, $471 | 0) | 0 + $777 = tempRet0 + $778 = _i64Add($776 | 0, $777 | 0, $468 | 0, $469 | 0) | 0 + $779 = tempRet0 + $780 = _i64Add($778 | 0, $779 | 0, $760 | 0, $761 | 0) | 0 + $781 = tempRet0 + $782 = _bitshift64Shl($760 | 0, $761 | 0, 21) | 0 + $783 = tempRet0 + $784 = _i64Subtract($466 | 0, $467 | 0, $782 | 0, $783 | 0) | 0 + $785 = tempRet0 + $786 = _i64Add($520 | 0, $521 | 0, 1048576, 0) | 0 + $787 = tempRet0 + $788 = _bitshift64Ashr($786 | 0, $787 | 0, 21) | 0 + $789 = tempRet0 + $790 = _i64Add($534 | 0, $535 | 0, $536 | 0, $537 | 0) | 0 + $791 = tempRet0 + $792 = _i64Add($790 | 0, $791 | 0, $532 | 0, $533 | 0) | 0 + $793 = tempRet0 + $794 = _i64Add($792 | 0, $793 | 0, $528 | 0, $529 | 0) | 0 + $795 = tempRet0 + $796 = _i64Add($794 | 0, $795 | 0, $530 | 0, $531 | 0) | 0 + $797 = tempRet0 + $798 = _i64Add($796 | 0, $797 | 0, $526 | 0, $527 | 0) | 0 + $799 = tempRet0 + $800 = _i64Add($798 | 0, $799 | 0, $524 | 0, $525 | 0) | 0 + $801 = tempRet0 + $802 = _i64Add($800 | 0, $801 | 0, $522 | 0, $523 | 0) | 0 + $803 = tempRet0 + $804 = _i64Add($802 | 0, $803 | 0, $788 | 0, $789 | 0) | 0 + $805 = tempRet0 + $806 = _bitshift64Shl($788 | 0, $789 | 0, 21) | 0 + $807 = tempRet0 + $808 = _i64Subtract($520 | 0, $521 | 0, $806 | 0, $807 | 0) | 0 + $809 = tempRet0 + $810 = _i64Add($562 | 0, $563 | 0, 1048576, 0) | 0 + $811 = tempRet0 + $812 = _bitshift64Ashr($810 | 0, $811 | 0, 21) | 0 + $813 = tempRet0 + $814 = _i64Add($570 | 0, $571 | 0, $574 | 0, $575 | 0) | 0 + $815 = tempRet0 + $816 = _i64Add($814 | 0, $815 | 0, $572 | 0, $573 | 0) | 0 + $817 = tempRet0 + $818 = _i64Add($816 | 0, $817 | 0, $568 | 0, $569 | 0) | 0 + $819 = tempRet0 + $820 = _i64Add($818 | 0, $819 | 0, $566 | 0, $567 | 0) | 0 + $821 = tempRet0 + $822 = _i64Add($820 | 0, $821 | 0, $564 | 0, $565 | 0) | 0 + $823 = tempRet0 + $824 = _i64Add($822 | 0, $823 | 0, $812 | 0, $813 | 0) | 0 + $825 = tempRet0 + $826 = _bitshift64Shl($812 | 0, $813 | 0, 21) | 0 + $827 = tempRet0 + $828 = _i64Subtract($562 | 0, $563 | 0, $826 | 0, $827 | 0) | 0 + $829 = tempRet0 + $830 = _i64Add($592 | 0, $593 | 0, 1048576, 0) | 0 + $831 = tempRet0 + $832 = _bitshift64Ashr($830 | 0, $831 | 0, 21) | 0 + $833 = tempRet0 + $834 = _i64Add($598 | 0, $599 | 0, $600 | 0, $601 | 0) | 0 + $835 = tempRet0 + $836 = _i64Add($834 | 0, $835 | 0, $596 | 0, $597 | 0) | 0 + $837 = tempRet0 + $838 = _i64Add($836 | 0, $837 | 0, $594 | 0, $595 | 0) | 0 + $839 = tempRet0 + $840 = _i64Add($838 | 0, $839 | 0, $832 | 0, $833 | 0) | 0 + $841 = tempRet0 + $842 = _bitshift64Shl($832 | 0, $833 | 0, 21) | 0 + $843 = tempRet0 + $844 = _i64Subtract($592 | 0, $593 | 0, $842 | 0, $843 | 0) | 0 + $845 = tempRet0 + $846 = _i64Add($610 | 0, $611 | 0, 1048576, 0) | 0 + $847 = tempRet0 + $848 = _bitshift64Lshr($846 | 0, $847 | 0, 21) | 0 + $849 = tempRet0 + $850 = _i64Add($616 | 0, $617 | 0, $848 | 0, $849 | 0) | 0 + $851 = tempRet0 + $852 = _bitshift64Shl($848 | 0, $849 | 0, 21) | 0 + $853 = tempRet0 + $854 = _i64Subtract($610 | 0, $611 | 0, $852 | 0, $853 | 0) | 0 + $855 = tempRet0 + $856 = _i64Add($618 | 0, $619 | 0, 1048576, 0) | 0 + $857 = tempRet0 + $858 = _bitshift64Lshr($856 | 0, $857 | 0, 21) | 0 + $859 = tempRet0 + $860 = _bitshift64Shl($858 | 0, $859 | 0, 21) | 0 + $861 = tempRet0 + $862 = _i64Subtract($618 | 0, $619 | 0, $860 | 0, $861 | 0) | 0 + $863 = tempRet0 + $864 = _i64Add($628 | 0, $629 | 0, 1048576, 0) | 0 + $865 = tempRet0 + $866 = _bitshift64Lshr($864 | 0, $865 | 0, 21) | 0 + $867 = tempRet0 + $868 = _bitshift64Shl($866 | 0, $867 | 0, 21) | 0 + $869 = tempRet0 + $870 = _i64Subtract($628 | 0, $629 | 0, $868 | 0, $869 | 0) | 0 + $871 = tempRet0 + $872 = _i64Add($646 | 0, $647 | 0, 1048576, 0) | 0 + $873 = tempRet0 + $874 = _bitshift64Ashr($872 | 0, $873 | 0, 21) | 0 + $875 = tempRet0 + $876 = _i64Add($874 | 0, $875 | 0, $670 | 0, $671 | 0) | 0 + $877 = tempRet0 + $878 = _bitshift64Shl($874 | 0, $875 | 0, 21) | 0 + $879 = tempRet0 + $880 = _i64Subtract($646 | 0, $647 | 0, $878 | 0, $879 | 0) | 0 + $881 = tempRet0 + $882 = _i64Add($666 | 0, $667 | 0, 1048576, 0) | 0 + $883 = tempRet0 + $884 = _bitshift64Ashr($882 | 0, $883 | 0, 21) | 0 + $885 = tempRet0 + $886 = _bitshift64Shl($884 | 0, $885 | 0, 21) | 0 + $887 = tempRet0 + $888 = _i64Subtract($666 | 0, $667 | 0, $886 | 0, $887 | 0) | 0 + $889 = tempRet0 + $890 = _i64Add($692 | 0, $693 | 0, 1048576, 0) | 0 + $891 = tempRet0 + $892 = _bitshift64Ashr($890 | 0, $891 | 0, 21) | 0 + $893 = tempRet0 + $894 = _bitshift64Shl($892 | 0, $893 | 0, 21) | 0 + $895 = tempRet0 + $896 = _i64Add($720 | 0, $721 | 0, 1048576, 0) | 0 + $897 = tempRet0 + $898 = _bitshift64Ashr($896 | 0, $897 | 0, 21) | 0 + $899 = tempRet0 + $900 = _i64Add($898 | 0, $899 | 0, $756 | 0, $757 | 0) | 0 + $901 = tempRet0 + $902 = _bitshift64Shl($898 | 0, $899 | 0, 21) | 0 + $903 = tempRet0 + $904 = _i64Subtract($720 | 0, $721 | 0, $902 | 0, $903 | 0) | 0 + $905 = tempRet0 + $906 = _i64Add($752 | 0, $753 | 0, 1048576, 0) | 0 + $907 = tempRet0 + $908 = _bitshift64Ashr($906 | 0, $907 | 0, 21) | 0 + $909 = tempRet0 + $910 = _i64Add($784 | 0, $785 | 0, $908 | 0, $909 | 0) | 0 + $911 = tempRet0 + $912 = _bitshift64Shl($908 | 0, $909 | 0, 21) | 0 + $913 = tempRet0 + $914 = _i64Subtract($752 | 0, $753 | 0, $912 | 0, $913 | 0) | 0 + $915 = tempRet0 + $916 = _i64Add($780 | 0, $781 | 0, 1048576, 0) | 0 + $917 = tempRet0 + $918 = _bitshift64Ashr($916 | 0, $917 | 0, 21) | 0 + $919 = tempRet0 + $920 = _i64Add($808 | 0, $809 | 0, $918 | 0, $919 | 0) | 0 + $921 = tempRet0 + $922 = _bitshift64Shl($918 | 0, $919 | 0, 21) | 0 + $923 = tempRet0 + $924 = _i64Subtract($780 | 0, $781 | 0, $922 | 0, $923 | 0) | 0 + $925 = tempRet0 + $926 = _i64Add($804 | 0, $805 | 0, 1048576, 0) | 0 + $927 = tempRet0 + $928 = _bitshift64Ashr($926 | 0, $927 | 0, 21) | 0 + $929 = tempRet0 + $930 = _i64Add($828 | 0, $829 | 0, $928 | 0, $929 | 0) | 0 + $931 = tempRet0 + $932 = _bitshift64Shl($928 | 0, $929 | 0, 21) | 0 + $933 = tempRet0 + $934 = _i64Subtract($804 | 0, $805 | 0, $932 | 0, $933 | 0) | 0 + $935 = tempRet0 + $936 = _i64Add($824 | 0, $825 | 0, 1048576, 0) | 0 + $937 = tempRet0 + $938 = _bitshift64Ashr($936 | 0, $937 | 0, 21) | 0 + $939 = tempRet0 + $940 = _i64Add($938 | 0, $939 | 0, $844 | 0, $845 | 0) | 0 + $941 = tempRet0 + $942 = _bitshift64Shl($938 | 0, $939 | 0, 21) | 0 + $943 = tempRet0 + $944 = _i64Subtract($824 | 0, $825 | 0, $942 | 0, $943 | 0) | 0 + $945 = tempRet0 + $946 = _i64Add($840 | 0, $841 | 0, 1048576, 0) | 0 + $947 = tempRet0 + $948 = _bitshift64Ashr($946 | 0, $947 | 0, 21) | 0 + $949 = tempRet0 + $950 = _i64Add($948 | 0, $949 | 0, $854 | 0, $855 | 0) | 0 + $951 = tempRet0 + $952 = _bitshift64Shl($948 | 0, $949 | 0, 21) | 0 + $953 = tempRet0 + $954 = _i64Subtract($840 | 0, $841 | 0, $952 | 0, $953 | 0) | 0 + $955 = tempRet0 + $956 = _i64Add($850 | 0, $851 | 0, 1048576, 0) | 0 + $957 = tempRet0 + $958 = _bitshift64Lshr($956 | 0, $957 | 0, 21) | 0 + $959 = tempRet0 + $960 = _i64Add($958 | 0, $959 | 0, $862 | 0, $863 | 0) | 0 + $961 = tempRet0 + $962 = _bitshift64Shl($958 | 0, $959 | 0, 21) | 0 + $963 = tempRet0 + $964 = _i64Subtract($850 | 0, $851 | 0, $962 | 0, $963 | 0) | 0 + $965 = tempRet0 + $966 = ___muldi3($858 | 0, $859 | 0, 666643, 0) | 0 + $967 = tempRet0 + $968 = _i64Add($966 | 0, $967 | 0, $914 | 0, $915 | 0) | 0 + $969 = tempRet0 + $970 = ___muldi3($858 | 0, $859 | 0, 470296, 0) | 0 + $971 = tempRet0 + $972 = _i64Add($970 | 0, $971 | 0, $910 | 0, $911 | 0) | 0 + $973 = tempRet0 + $974 = ___muldi3($858 | 0, $859 | 0, 654183, 0) | 0 + $975 = tempRet0 + $976 = _i64Add($974 | 0, $975 | 0, $924 | 0, $925 | 0) | 0 + $977 = tempRet0 + $978 = ___muldi3($858 | 0, $859 | 0, -997805, -1) | 0 + $979 = tempRet0 + $980 = _i64Add($978 | 0, $979 | 0, $920 | 0, $921 | 0) | 0 + $981 = tempRet0 + $982 = ___muldi3($858 | 0, $859 | 0, 136657, 0) | 0 + $983 = tempRet0 + $984 = _i64Add($982 | 0, $983 | 0, $934 | 0, $935 | 0) | 0 + $985 = tempRet0 + $986 = ___muldi3($858 | 0, $859 | 0, -683901, -1) | 0 + $987 = tempRet0 + $988 = _i64Add($930 | 0, $931 | 0, $986 | 0, $987 | 0) | 0 + $989 = tempRet0 + $990 = ___muldi3($960 | 0, $961 | 0, 666643, 0) | 0 + $991 = tempRet0 + $992 = _i64Add($990 | 0, $991 | 0, $900 | 0, $901 | 0) | 0 + $993 = tempRet0 + $994 = ___muldi3($960 | 0, $961 | 0, 470296, 0) | 0 + $995 = tempRet0 + $996 = _i64Add($994 | 0, $995 | 0, $968 | 0, $969 | 0) | 0 + $997 = tempRet0 + $998 = ___muldi3($960 | 0, $961 | 0, 654183, 0) | 0 + $999 = tempRet0 + $1000 = _i64Add($998 | 0, $999 | 0, $972 | 0, $973 | 0) | 0 + $1001 = tempRet0 + $1002 = ___muldi3($960 | 0, $961 | 0, -997805, -1) | 0 + $1003 = tempRet0 + $1004 = _i64Add($1002 | 0, $1003 | 0, $976 | 0, $977 | 0) | 0 + $1005 = tempRet0 + $1006 = ___muldi3($960 | 0, $961 | 0, 136657, 0) | 0 + $1007 = tempRet0 + $1008 = _i64Add($1006 | 0, $1007 | 0, $980 | 0, $981 | 0) | 0 + $1009 = tempRet0 + $1010 = ___muldi3($960 | 0, $961 | 0, -683901, -1) | 0 + $1011 = tempRet0 + $1012 = _i64Add($984 | 0, $985 | 0, $1010 | 0, $1011 | 0) | 0 + $1013 = tempRet0 + $1014 = ___muldi3($964 | 0, $965 | 0, 666643, 0) | 0 + $1015 = tempRet0 + $1016 = _i64Add($1014 | 0, $1015 | 0, $904 | 0, $905 | 0) | 0 + $1017 = tempRet0 + $1018 = ___muldi3($964 | 0, $965 | 0, 470296, 0) | 0 + $1019 = tempRet0 + $1020 = _i64Add($1018 | 0, $1019 | 0, $992 | 0, $993 | 0) | 0 + $1021 = tempRet0 + $1022 = ___muldi3($964 | 0, $965 | 0, 654183, 0) | 0 + $1023 = tempRet0 + $1024 = _i64Add($1022 | 0, $1023 | 0, $996 | 0, $997 | 0) | 0 + $1025 = tempRet0 + $1026 = ___muldi3($964 | 0, $965 | 0, -997805, -1) | 0 + $1027 = tempRet0 + $1028 = _i64Add($1026 | 0, $1027 | 0, $1000 | 0, $1001 | 0) | 0 + $1029 = tempRet0 + $1030 = ___muldi3($964 | 0, $965 | 0, 136657, 0) | 0 + $1031 = tempRet0 + $1032 = _i64Add($1030 | 0, $1031 | 0, $1004 | 0, $1005 | 0) | 0 + $1033 = tempRet0 + $1034 = ___muldi3($964 | 0, $965 | 0, -683901, -1) | 0 + $1035 = tempRet0 + $1036 = _i64Add($1008 | 0, $1009 | 0, $1034 | 0, $1035 | 0) | 0 + $1037 = tempRet0 + $1038 = ___muldi3($950 | 0, $951 | 0, 666643, 0) | 0 + $1039 = tempRet0 + $1040 = ___muldi3($950 | 0, $951 | 0, 470296, 0) | 0 + $1041 = tempRet0 + $1042 = _i64Add($1040 | 0, $1041 | 0, $1016 | 0, $1017 | 0) | 0 + $1043 = tempRet0 + $1044 = ___muldi3($950 | 0, $951 | 0, 654183, 0) | 0 + $1045 = tempRet0 + $1046 = _i64Add($1044 | 0, $1045 | 0, $1020 | 0, $1021 | 0) | 0 + $1047 = tempRet0 + $1048 = ___muldi3($950 | 0, $951 | 0, -997805, -1) | 0 + $1049 = tempRet0 + $1050 = _i64Add($1048 | 0, $1049 | 0, $1024 | 0, $1025 | 0) | 0 + $1051 = tempRet0 + $1052 = ___muldi3($950 | 0, $951 | 0, 136657, 0) | 0 + $1053 = tempRet0 + $1054 = _i64Add($1052 | 0, $1053 | 0, $1028 | 0, $1029 | 0) | 0 + $1055 = tempRet0 + $1056 = ___muldi3($950 | 0, $951 | 0, -683901, -1) | 0 + $1057 = tempRet0 + $1058 = _i64Add($1032 | 0, $1033 | 0, $1056 | 0, $1057 | 0) | 0 + $1059 = tempRet0 + $1060 = ___muldi3($954 | 0, $955 | 0, 666643, 0) | 0 + $1061 = tempRet0 + $1062 = ___muldi3($954 | 0, $955 | 0, 470296, 0) | 0 + $1063 = tempRet0 + $1064 = ___muldi3($954 | 0, $955 | 0, 654183, 0) | 0 + $1065 = tempRet0 + $1066 = _i64Add($1064 | 0, $1065 | 0, $1042 | 0, $1043 | 0) | 0 + $1067 = tempRet0 + $1068 = ___muldi3($954 | 0, $955 | 0, -997805, -1) | 0 + $1069 = tempRet0 + $1070 = _i64Add($1046 | 0, $1047 | 0, $1068 | 0, $1069 | 0) | 0 + $1071 = tempRet0 + $1072 = ___muldi3($954 | 0, $955 | 0, 136657, 0) | 0 + $1073 = tempRet0 + $1074 = _i64Add($1072 | 0, $1073 | 0, $1050 | 0, $1051 | 0) | 0 + $1075 = tempRet0 + $1076 = ___muldi3($954 | 0, $955 | 0, -683901, -1) | 0 + $1077 = tempRet0 + $1078 = _i64Add($1054 | 0, $1055 | 0, $1076 | 0, $1077 | 0) | 0 + $1079 = tempRet0 + $1080 = ___muldi3($940 | 0, $941 | 0, 666643, 0) | 0 + $1081 = tempRet0 + $1082 = _i64Add($284 | 0, $285 | 0, $1080 | 0, $1081 | 0) | 0 + $1083 = tempRet0 + $1084 = _i64Add($1082 | 0, $1083 | 0, $884 | 0, $885 | 0) | 0 + $1085 = tempRet0 + $1086 = + _i64Subtract($1084 | 0, $1085 | 0, $694 | 0, $695 | 0) | 0 + $1087 = tempRet0 + $1088 = ___muldi3($940 | 0, $941 | 0, 470296, 0) | 0 + $1089 = tempRet0 + $1090 = ___muldi3($940 | 0, $941 | 0, 654183, 0) | 0 + $1091 = tempRet0 + $1092 = _i64Add($1062 | 0, $1063 | 0, $1038 | 0, $1039 | 0) | 0 + $1093 = tempRet0 + $1094 = _i64Add($1092 | 0, $1093 | 0, $1090 | 0, $1091 | 0) | 0 + $1095 = tempRet0 + $1096 = _i64Add($1094 | 0, $1095 | 0, $336 | 0, $337 | 0) | 0 + $1097 = tempRet0 + $1098 = _i64Add($1096 | 0, $1097 | 0, $892 | 0, $893 | 0) | 0 + $1099 = tempRet0 + $1100 = + _i64Subtract($1098 | 0, $1099 | 0, $722 | 0, $723 | 0) | 0 + $1101 = tempRet0 + $1102 = ___muldi3($940 | 0, $941 | 0, -997805, -1) | 0 + $1103 = tempRet0 + $1104 = _i64Add($1066 | 0, $1067 | 0, $1102 | 0, $1103 | 0) | 0 + $1105 = tempRet0 + $1106 = ___muldi3($940 | 0, $941 | 0, 136657, 0) | 0 + $1107 = tempRet0 + $1108 = _i64Add($1070 | 0, $1071 | 0, $1106 | 0, $1107 | 0) | 0 + $1109 = tempRet0 + $1110 = ___muldi3($940 | 0, $941 | 0, -683901, -1) | 0 + $1111 = tempRet0 + $1112 = _i64Add($1074 | 0, $1075 | 0, $1110 | 0, $1111 | 0) | 0 + $1113 = tempRet0 + $1114 = _i64Add($1086 | 0, $1087 | 0, 1048576, 0) | 0 + $1115 = tempRet0 + $1116 = _bitshift64Ashr($1114 | 0, $1115 | 0, 21) | 0 + $1117 = tempRet0 + $1118 = _i64Add($1088 | 0, $1089 | 0, $1060 | 0, $1061 | 0) | 0 + $1119 = tempRet0 + $1120 = _i64Add($1118 | 0, $1119 | 0, $692 | 0, $693 | 0) | 0 + $1121 = tempRet0 + $1122 = + _i64Subtract($1120 | 0, $1121 | 0, $894 | 0, $895 | 0) | 0 + $1123 = tempRet0 + $1124 = _i64Add($1122 | 0, $1123 | 0, $1116 | 0, $1117 | 0) | 0 + $1125 = tempRet0 + $1126 = _bitshift64Shl($1116 | 0, $1117 | 0, 21) | 0 + $1127 = tempRet0 + $1128 = + _i64Subtract($1086 | 0, $1087 | 0, $1126 | 0, $1127 | 0) | 0 + $1129 = tempRet0 + $1130 = _i64Add($1100 | 0, $1101 | 0, 1048576, 0) | 0 + $1131 = tempRet0 + $1132 = _bitshift64Ashr($1130 | 0, $1131 | 0, 21) | 0 + $1133 = tempRet0 + $1134 = _i64Add($1104 | 0, $1105 | 0, $1132 | 0, $1133 | 0) | 0 + $1135 = tempRet0 + $1136 = _bitshift64Shl($1132 | 0, $1133 | 0, 21) | 0 + $1137 = tempRet0 + $1138 = + _i64Subtract($1100 | 0, $1101 | 0, $1136 | 0, $1137 | 0) | 0 + $1139 = tempRet0 + $1140 = _i64Add($1108 | 0, $1109 | 0, 1048576, 0) | 0 + $1141 = tempRet0 + $1142 = _bitshift64Ashr($1140 | 0, $1141 | 0, 21) | 0 + $1143 = tempRet0 + $1144 = _i64Add($1112 | 0, $1113 | 0, $1142 | 0, $1143 | 0) | 0 + $1145 = tempRet0 + $1146 = _bitshift64Shl($1142 | 0, $1143 | 0, 21) | 0 + $1147 = tempRet0 + $1148 = + _i64Subtract($1108 | 0, $1109 | 0, $1146 | 0, $1147 | 0) | 0 + $1149 = tempRet0 + $1150 = _i64Add($1078 | 0, $1079 | 0, 1048576, 0) | 0 + $1151 = tempRet0 + $1152 = _bitshift64Ashr($1150 | 0, $1151 | 0, 21) | 0 + $1153 = tempRet0 + $1154 = _i64Add($1152 | 0, $1153 | 0, $1058 | 0, $1059 | 0) | 0 + $1155 = tempRet0 + $1156 = _bitshift64Shl($1152 | 0, $1153 | 0, 21) | 0 + $1157 = tempRet0 + $1158 = + _i64Subtract($1078 | 0, $1079 | 0, $1156 | 0, $1157 | 0) | 0 + $1159 = tempRet0 + $1160 = _i64Add($1036 | 0, $1037 | 0, 1048576, 0) | 0 + $1161 = tempRet0 + $1162 = _bitshift64Ashr($1160 | 0, $1161 | 0, 21) | 0 + $1163 = tempRet0 + $1164 = _i64Add($1162 | 0, $1163 | 0, $1012 | 0, $1013 | 0) | 0 + $1165 = tempRet0 + $1166 = _bitshift64Shl($1162 | 0, $1163 | 0, 21) | 0 + $1167 = tempRet0 + $1168 = + _i64Subtract($1036 | 0, $1037 | 0, $1166 | 0, $1167 | 0) | 0 + $1169 = tempRet0 + $1170 = _i64Add($988 | 0, $989 | 0, 1048576, 0) | 0 + $1171 = tempRet0 + $1172 = _bitshift64Ashr($1170 | 0, $1171 | 0, 21) | 0 + $1173 = tempRet0 + $1174 = _i64Add($1172 | 0, $1173 | 0, $944 | 0, $945 | 0) | 0 + $1175 = tempRet0 + $1176 = _bitshift64Shl($1172 | 0, $1173 | 0, 21) | 0 + $1177 = tempRet0 + $1178 = + _i64Subtract($988 | 0, $989 | 0, $1176 | 0, $1177 | 0) | 0 + $1179 = tempRet0 + $1180 = _i64Add($1124 | 0, $1125 | 0, 1048576, 0) | 0 + $1181 = tempRet0 + $1182 = _bitshift64Ashr($1180 | 0, $1181 | 0, 21) | 0 + $1183 = tempRet0 + $1184 = _i64Add($1182 | 0, $1183 | 0, $1138 | 0, $1139 | 0) | 0 + $1185 = tempRet0 + $1186 = _bitshift64Shl($1182 | 0, $1183 | 0, 21) | 0 + $1187 = tempRet0 + $1188 = + _i64Subtract($1124 | 0, $1125 | 0, $1186 | 0, $1187 | 0) | 0 + $1189 = tempRet0 + $1190 = _i64Add($1134 | 0, $1135 | 0, 1048576, 0) | 0 + $1191 = tempRet0 + $1192 = _bitshift64Ashr($1190 | 0, $1191 | 0, 21) | 0 + $1193 = tempRet0 + $1194 = _i64Add($1192 | 0, $1193 | 0, $1148 | 0, $1149 | 0) | 0 + $1195 = tempRet0 + $1196 = _bitshift64Shl($1192 | 0, $1193 | 0, 21) | 0 + $1197 = tempRet0 + $1198 = + _i64Subtract($1134 | 0, $1135 | 0, $1196 | 0, $1197 | 0) | 0 + $1199 = tempRet0 + $1200 = _i64Add($1144 | 0, $1145 | 0, 1048576, 0) | 0 + $1201 = tempRet0 + $1202 = _bitshift64Ashr($1200 | 0, $1201 | 0, 21) | 0 + $1203 = tempRet0 + $1204 = _i64Add($1202 | 0, $1203 | 0, $1158 | 0, $1159 | 0) | 0 + $1205 = tempRet0 + $1206 = _bitshift64Shl($1202 | 0, $1203 | 0, 21) | 0 + $1207 = tempRet0 + $1208 = + _i64Subtract($1144 | 0, $1145 | 0, $1206 | 0, $1207 | 0) | 0 + $1209 = tempRet0 + $1210 = _i64Add($1154 | 0, $1155 | 0, 1048576, 0) | 0 + $1211 = tempRet0 + $1212 = _bitshift64Ashr($1210 | 0, $1211 | 0, 21) | 0 + $1213 = tempRet0 + $1214 = _i64Add($1212 | 0, $1213 | 0, $1168 | 0, $1169 | 0) | 0 + $1215 = tempRet0 + $1216 = _bitshift64Shl($1212 | 0, $1213 | 0, 21) | 0 + $1217 = tempRet0 + $1218 = + _i64Subtract($1154 | 0, $1155 | 0, $1216 | 0, $1217 | 0) | 0 + $1219 = tempRet0 + $1220 = _i64Add($1164 | 0, $1165 | 0, 1048576, 0) | 0 + $1221 = tempRet0 + $1222 = _bitshift64Ashr($1220 | 0, $1221 | 0, 21) | 0 + $1223 = tempRet0 + $1224 = _i64Add($1222 | 0, $1223 | 0, $1178 | 0, $1179 | 0) | 0 + $1225 = tempRet0 + $1226 = _bitshift64Shl($1222 | 0, $1223 | 0, 21) | 0 + $1227 = tempRet0 + $1228 = + _i64Subtract($1164 | 0, $1165 | 0, $1226 | 0, $1227 | 0) | 0 + $1229 = tempRet0 + $1230 = ___muldi3($1174 | 0, $1175 | 0, 666643, 0) | 0 + $1231 = tempRet0 + $1232 = _i64Add($888 | 0, $889 | 0, $1230 | 0, $1231 | 0) | 0 + $1233 = tempRet0 + $1234 = ___muldi3($1174 | 0, $1175 | 0, 470296, 0) | 0 + $1235 = tempRet0 + $1236 = _i64Add($1234 | 0, $1235 | 0, $1128 | 0, $1129 | 0) | 0 + $1237 = tempRet0 + $1238 = ___muldi3($1174 | 0, $1175 | 0, 654183, 0) | 0 + $1239 = tempRet0 + $1240 = _i64Add($1238 | 0, $1239 | 0, $1188 | 0, $1189 | 0) | 0 + $1241 = tempRet0 + $1242 = ___muldi3($1174 | 0, $1175 | 0, -997805, -1) | 0 + $1243 = tempRet0 + $1244 = _i64Add($1242 | 0, $1243 | 0, $1184 | 0, $1185 | 0) | 0 + $1245 = tempRet0 + $1246 = ___muldi3($1174 | 0, $1175 | 0, 136657, 0) | 0 + $1247 = tempRet0 + $1248 = _i64Add($1246 | 0, $1247 | 0, $1198 | 0, $1199 | 0) | 0 + $1249 = tempRet0 + $1250 = ___muldi3($1174 | 0, $1175 | 0, -683901, -1) | 0 + $1251 = tempRet0 + $1252 = _i64Add($1194 | 0, $1195 | 0, $1250 | 0, $1251 | 0) | 0 + $1253 = tempRet0 + $1254 = ___muldi3($1224 | 0, $1225 | 0, 666643, 0) | 0 + $1255 = tempRet0 + $1256 = _i64Add($876 | 0, $877 | 0, $1254 | 0, $1255 | 0) | 0 + $1257 = tempRet0 + $1258 = ___muldi3($1224 | 0, $1225 | 0, 470296, 0) | 0 + $1259 = tempRet0 + $1260 = _i64Add($1232 | 0, $1233 | 0, $1258 | 0, $1259 | 0) | 0 + $1261 = tempRet0 + $1262 = ___muldi3($1224 | 0, $1225 | 0, 654183, 0) | 0 + $1263 = tempRet0 + $1264 = _i64Add($1236 | 0, $1237 | 0, $1262 | 0, $1263 | 0) | 0 + $1265 = tempRet0 + $1266 = ___muldi3($1224 | 0, $1225 | 0, -997805, -1) | 0 + $1267 = tempRet0 + $1268 = _i64Add($1266 | 0, $1267 | 0, $1240 | 0, $1241 | 0) | 0 + $1269 = tempRet0 + $1270 = ___muldi3($1224 | 0, $1225 | 0, 136657, 0) | 0 + $1271 = tempRet0 + $1272 = _i64Add($1270 | 0, $1271 | 0, $1244 | 0, $1245 | 0) | 0 + $1273 = tempRet0 + $1274 = ___muldi3($1224 | 0, $1225 | 0, -683901, -1) | 0 + $1275 = tempRet0 + $1276 = _i64Add($1248 | 0, $1249 | 0, $1274 | 0, $1275 | 0) | 0 + $1277 = tempRet0 + $1278 = ___muldi3($1228 | 0, $1229 | 0, 666643, 0) | 0 + $1279 = tempRet0 + $1280 = _i64Add($880 | 0, $881 | 0, $1278 | 0, $1279 | 0) | 0 + $1281 = tempRet0 + $1282 = ___muldi3($1228 | 0, $1229 | 0, 470296, 0) | 0 + $1283 = tempRet0 + $1284 = _i64Add($1256 | 0, $1257 | 0, $1282 | 0, $1283 | 0) | 0 + $1285 = tempRet0 + $1286 = ___muldi3($1228 | 0, $1229 | 0, 654183, 0) | 0 + $1287 = tempRet0 + $1288 = _i64Add($1260 | 0, $1261 | 0, $1286 | 0, $1287 | 0) | 0 + $1289 = tempRet0 + $1290 = ___muldi3($1228 | 0, $1229 | 0, -997805, -1) | 0 + $1291 = tempRet0 + $1292 = _i64Add($1264 | 0, $1265 | 0, $1290 | 0, $1291 | 0) | 0 + $1293 = tempRet0 + $1294 = ___muldi3($1228 | 0, $1229 | 0, 136657, 0) | 0 + $1295 = tempRet0 + $1296 = _i64Add($1294 | 0, $1295 | 0, $1268 | 0, $1269 | 0) | 0 + $1297 = tempRet0 + $1298 = ___muldi3($1228 | 0, $1229 | 0, -683901, -1) | 0 + $1299 = tempRet0 + $1300 = _i64Add($1272 | 0, $1273 | 0, $1298 | 0, $1299 | 0) | 0 + $1301 = tempRet0 + $1302 = ___muldi3($1214 | 0, $1215 | 0, 666643, 0) | 0 + $1303 = tempRet0 + $1304 = ___muldi3($1214 | 0, $1215 | 0, 470296, 0) | 0 + $1305 = tempRet0 + $1306 = _i64Add($1280 | 0, $1281 | 0, $1304 | 0, $1305 | 0) | 0 + $1307 = tempRet0 + $1308 = ___muldi3($1214 | 0, $1215 | 0, 654183, 0) | 0 + $1309 = tempRet0 + $1310 = _i64Add($1284 | 0, $1285 | 0, $1308 | 0, $1309 | 0) | 0 + $1311 = tempRet0 + $1312 = ___muldi3($1214 | 0, $1215 | 0, -997805, -1) | 0 + $1313 = tempRet0 + $1314 = _i64Add($1288 | 0, $1289 | 0, $1312 | 0, $1313 | 0) | 0 + $1315 = tempRet0 + $1316 = ___muldi3($1214 | 0, $1215 | 0, 136657, 0) | 0 + $1317 = tempRet0 + $1318 = _i64Add($1292 | 0, $1293 | 0, $1316 | 0, $1317 | 0) | 0 + $1319 = tempRet0 + $1320 = ___muldi3($1214 | 0, $1215 | 0, -683901, -1) | 0 + $1321 = tempRet0 + $1322 = _i64Add($1296 | 0, $1297 | 0, $1320 | 0, $1321 | 0) | 0 + $1323 = tempRet0 + $1324 = ___muldi3($1218 | 0, $1219 | 0, 666643, 0) | 0 + $1325 = tempRet0 + $1326 = ___muldi3($1218 | 0, $1219 | 0, 470296, 0) | 0 + $1327 = tempRet0 + $1328 = ___muldi3($1218 | 0, $1219 | 0, 654183, 0) | 0 + $1329 = tempRet0 + $1330 = _i64Add($1306 | 0, $1307 | 0, $1328 | 0, $1329 | 0) | 0 + $1331 = tempRet0 + $1332 = ___muldi3($1218 | 0, $1219 | 0, -997805, -1) | 0 + $1333 = tempRet0 + $1334 = _i64Add($1310 | 0, $1311 | 0, $1332 | 0, $1333 | 0) | 0 + $1335 = tempRet0 + $1336 = ___muldi3($1218 | 0, $1219 | 0, 136657, 0) | 0 + $1337 = tempRet0 + $1338 = _i64Add($1314 | 0, $1315 | 0, $1336 | 0, $1337 | 0) | 0 + $1339 = tempRet0 + $1340 = ___muldi3($1218 | 0, $1219 | 0, -683901, -1) | 0 + $1341 = tempRet0 + $1342 = _i64Add($1318 | 0, $1319 | 0, $1340 | 0, $1341 | 0) | 0 + $1343 = tempRet0 + $1344 = ___muldi3($1204 | 0, $1205 | 0, 666643, 0) | 0 + $1345 = tempRet0 + $1346 = _i64Add($1344 | 0, $1345 | 0, $632 | 0, $633 | 0) | 0 + $1347 = tempRet0 + $1348 = ___muldi3($1204 | 0, $1205 | 0, 470296, 0) | 0 + $1349 = tempRet0 + $1350 = ___muldi3($1204 | 0, $1205 | 0, 654183, 0) | 0 + $1351 = tempRet0 + $1352 = _i64Add($866 | 0, $867 | 0, $216 | 0, $217 | 0) | 0 + $1353 = tempRet0 + $1354 = + _i64Subtract($1352 | 0, $1353 | 0, $648 | 0, $649 | 0) | 0 + $1355 = tempRet0 + $1356 = _i64Add($1354 | 0, $1355 | 0, $1302 | 0, $1303 | 0) | 0 + $1357 = tempRet0 + $1358 = _i64Add($1356 | 0, $1357 | 0, $1350 | 0, $1351 | 0) | 0 + $1359 = tempRet0 + $1360 = _i64Add($1358 | 0, $1359 | 0, $1326 | 0, $1327 | 0) | 0 + $1361 = tempRet0 + $1362 = ___muldi3($1204 | 0, $1205 | 0, -997805, -1) | 0 + $1363 = tempRet0 + $1364 = _i64Add($1330 | 0, $1331 | 0, $1362 | 0, $1363 | 0) | 0 + $1365 = tempRet0 + $1366 = ___muldi3($1204 | 0, $1205 | 0, 136657, 0) | 0 + $1367 = tempRet0 + $1368 = _i64Add($1334 | 0, $1335 | 0, $1366 | 0, $1367 | 0) | 0 + $1369 = tempRet0 + $1370 = ___muldi3($1204 | 0, $1205 | 0, -683901, -1) | 0 + $1371 = tempRet0 + $1372 = _i64Add($1338 | 0, $1339 | 0, $1370 | 0, $1371 | 0) | 0 + $1373 = tempRet0 + $1374 = _i64Add($1346 | 0, $1347 | 0, 1048576, 0) | 0 + $1375 = tempRet0 + $1376 = _bitshift64Ashr($1374 | 0, $1375 | 0, 21) | 0 + $1377 = tempRet0 + $1378 = _i64Add($870 | 0, $871 | 0, $1348 | 0, $1349 | 0) | 0 + $1379 = tempRet0 + $1380 = _i64Add($1378 | 0, $1379 | 0, $1324 | 0, $1325 | 0) | 0 + $1381 = tempRet0 + $1382 = _i64Add($1380 | 0, $1381 | 0, $1376 | 0, $1377 | 0) | 0 + $1383 = tempRet0 + $1384 = _bitshift64Shl($1376 | 0, $1377 | 0, 21) | 0 + $1385 = tempRet0 + $1386 = + _i64Subtract($1346 | 0, $1347 | 0, $1384 | 0, $1385 | 0) | 0 + $1387 = tempRet0 + $1388 = _i64Add($1360 | 0, $1361 | 0, 1048576, 0) | 0 + $1389 = tempRet0 + $1390 = _bitshift64Ashr($1388 | 0, $1389 | 0, 21) | 0 + $1391 = tempRet0 + $1392 = _i64Add($1390 | 0, $1391 | 0, $1364 | 0, $1365 | 0) | 0 + $1393 = tempRet0 + $1394 = _bitshift64Shl($1390 | 0, $1391 | 0, 21) | 0 + $1395 = tempRet0 + $1396 = _i64Add($1368 | 0, $1369 | 0, 1048576, 0) | 0 + $1397 = tempRet0 + $1398 = _bitshift64Ashr($1396 | 0, $1397 | 0, 21) | 0 + $1399 = tempRet0 + $1400 = _i64Add($1398 | 0, $1399 | 0, $1372 | 0, $1373 | 0) | 0 + $1401 = tempRet0 + $1402 = _bitshift64Shl($1398 | 0, $1399 | 0, 21) | 0 + $1403 = tempRet0 + $1404 = _i64Add($1342 | 0, $1343 | 0, 1048576, 0) | 0 + $1405 = tempRet0 + $1406 = _bitshift64Ashr($1404 | 0, $1405 | 0, 21) | 0 + $1407 = tempRet0 + $1408 = _i64Add($1406 | 0, $1407 | 0, $1322 | 0, $1323 | 0) | 0 + $1409 = tempRet0 + $1410 = _bitshift64Shl($1406 | 0, $1407 | 0, 21) | 0 + $1411 = tempRet0 + $1412 = + _i64Subtract($1342 | 0, $1343 | 0, $1410 | 0, $1411 | 0) | 0 + $1413 = tempRet0 + $1414 = _i64Add($1300 | 0, $1301 | 0, 1048576, 0) | 0 + $1415 = tempRet0 + $1416 = _bitshift64Ashr($1414 | 0, $1415 | 0, 21) | 0 + $1417 = tempRet0 + $1418 = _i64Add($1276 | 0, $1277 | 0, $1416 | 0, $1417 | 0) | 0 + $1419 = tempRet0 + $1420 = _bitshift64Shl($1416 | 0, $1417 | 0, 21) | 0 + $1421 = tempRet0 + $1422 = + _i64Subtract($1300 | 0, $1301 | 0, $1420 | 0, $1421 | 0) | 0 + $1423 = tempRet0 + $1424 = _i64Add($1252 | 0, $1253 | 0, 1048576, 0) | 0 + $1425 = tempRet0 + $1426 = _bitshift64Ashr($1424 | 0, $1425 | 0, 21) | 0 + $1427 = tempRet0 + $1428 = _i64Add($1208 | 0, $1209 | 0, $1426 | 0, $1427 | 0) | 0 + $1429 = tempRet0 + $1430 = _bitshift64Shl($1426 | 0, $1427 | 0, 21) | 0 + $1431 = tempRet0 + $1432 = _i64Add($1382 | 0, $1383 | 0, 1048576, 0) | 0 + $1433 = tempRet0 + $1434 = _bitshift64Ashr($1432 | 0, $1433 | 0, 21) | 0 + $1435 = tempRet0 + $1436 = _bitshift64Shl($1434 | 0, $1435 | 0, 21) | 0 + $1437 = tempRet0 + $1438 = _i64Add($1392 | 0, $1393 | 0, 1048576, 0) | 0 + $1439 = tempRet0 + $1440 = _bitshift64Ashr($1438 | 0, $1439 | 0, 21) | 0 + $1441 = tempRet0 + $1442 = _bitshift64Shl($1440 | 0, $1441 | 0, 21) | 0 + $1443 = tempRet0 + $1444 = + _i64Subtract($1392 | 0, $1393 | 0, $1442 | 0, $1443 | 0) | 0 + $1445 = tempRet0 + $1446 = _i64Add($1400 | 0, $1401 | 0, 1048576, 0) | 0 + $1447 = tempRet0 + $1448 = _bitshift64Ashr($1446 | 0, $1447 | 0, 21) | 0 + $1449 = tempRet0 + $1450 = _i64Add($1412 | 0, $1413 | 0, $1448 | 0, $1449 | 0) | 0 + $1451 = tempRet0 + $1452 = _bitshift64Shl($1448 | 0, $1449 | 0, 21) | 0 + $1453 = tempRet0 + $1454 = + _i64Subtract($1400 | 0, $1401 | 0, $1452 | 0, $1453 | 0) | 0 + $1455 = tempRet0 + $1456 = _i64Add($1408 | 0, $1409 | 0, 1048576, 0) | 0 + $1457 = tempRet0 + $1458 = _bitshift64Ashr($1456 | 0, $1457 | 0, 21) | 0 + $1459 = tempRet0 + $1460 = _i64Add($1422 | 0, $1423 | 0, $1458 | 0, $1459 | 0) | 0 + $1461 = tempRet0 + $1462 = _bitshift64Shl($1458 | 0, $1459 | 0, 21) | 0 + $1463 = tempRet0 + $1464 = + _i64Subtract($1408 | 0, $1409 | 0, $1462 | 0, $1463 | 0) | 0 + $1465 = tempRet0 + $1466 = _i64Add($1418 | 0, $1419 | 0, 1048576, 0) | 0 + $1467 = tempRet0 + $1468 = _bitshift64Ashr($1466 | 0, $1467 | 0, 21) | 0 + $1469 = tempRet0 + $1470 = _bitshift64Shl($1468 | 0, $1469 | 0, 21) | 0 + $1471 = tempRet0 + $1472 = + _i64Subtract($1418 | 0, $1419 | 0, $1470 | 0, $1471 | 0) | 0 + $1473 = tempRet0 + $1474 = _i64Add($1428 | 0, $1429 | 0, 1048576, 0) | 0 + $1475 = tempRet0 + $1476 = _bitshift64Ashr($1474 | 0, $1475 | 0, 21) | 0 + $1477 = tempRet0 + $1478 = _bitshift64Shl($1476 | 0, $1477 | 0, 21) | 0 + $1479 = tempRet0 + $1480 = + _i64Subtract($1428 | 0, $1429 | 0, $1478 | 0, $1479 | 0) | 0 + $1481 = tempRet0 + $1482 = ___muldi3($1476 | 0, $1477 | 0, 666643, 0) | 0 + $1483 = tempRet0 + $1484 = _i64Add($1386 | 0, $1387 | 0, $1482 | 0, $1483 | 0) | 0 + $1485 = tempRet0 + $1486 = ___muldi3($1476 | 0, $1477 | 0, 470296, 0) | 0 + $1487 = tempRet0 + $1488 = ___muldi3($1476 | 0, $1477 | 0, 654183, 0) | 0 + $1489 = tempRet0 + $1490 = ___muldi3($1476 | 0, $1477 | 0, -997805, -1) | 0 + $1491 = tempRet0 + $1492 = _i64Add($1444 | 0, $1445 | 0, $1490 | 0, $1491 | 0) | 0 + $1493 = tempRet0 + $1494 = ___muldi3($1476 | 0, $1477 | 0, 136657, 0) | 0 + $1495 = tempRet0 + $1496 = ___muldi3($1476 | 0, $1477 | 0, -683901, -1) | 0 + $1497 = tempRet0 + $1498 = _i64Add($1454 | 0, $1455 | 0, $1496 | 0, $1497 | 0) | 0 + $1499 = tempRet0 + $1500 = _bitshift64Ashr($1484 | 0, $1485 | 0, 21) | 0 + $1501 = tempRet0 + $1502 = _i64Add($1486 | 0, $1487 | 0, $1382 | 0, $1383 | 0) | 0 + $1503 = tempRet0 + $1504 = + _i64Subtract($1502 | 0, $1503 | 0, $1436 | 0, $1437 | 0) | 0 + $1505 = tempRet0 + $1506 = _i64Add($1504 | 0, $1505 | 0, $1500 | 0, $1501 | 0) | 0 + $1507 = tempRet0 + $1508 = _bitshift64Shl($1500 | 0, $1501 | 0, 21) | 0 + $1509 = tempRet0 + $1510 = + _i64Subtract($1484 | 0, $1485 | 0, $1508 | 0, $1509 | 0) | 0 + $1511 = tempRet0 + $1512 = _bitshift64Ashr($1506 | 0, $1507 | 0, 21) | 0 + $1513 = tempRet0 + $1514 = _i64Add($1488 | 0, $1489 | 0, $1360 | 0, $1361 | 0) | 0 + $1515 = tempRet0 + $1516 = + _i64Subtract($1514 | 0, $1515 | 0, $1394 | 0, $1395 | 0) | 0 + $1517 = tempRet0 + $1518 = _i64Add($1516 | 0, $1517 | 0, $1434 | 0, $1435 | 0) | 0 + $1519 = tempRet0 + $1520 = _i64Add($1518 | 0, $1519 | 0, $1512 | 0, $1513 | 0) | 0 + $1521 = tempRet0 + $1522 = _bitshift64Shl($1512 | 0, $1513 | 0, 21) | 0 + $1523 = tempRet0 + $1524 = + _i64Subtract($1506 | 0, $1507 | 0, $1522 | 0, $1523 | 0) | 0 + $1525 = tempRet0 + $1526 = _bitshift64Ashr($1520 | 0, $1521 | 0, 21) | 0 + $1527 = tempRet0 + $1528 = _i64Add($1526 | 0, $1527 | 0, $1492 | 0, $1493 | 0) | 0 + $1529 = tempRet0 + $1530 = _bitshift64Shl($1526 | 0, $1527 | 0, 21) | 0 + $1531 = tempRet0 + $1532 = + _i64Subtract($1520 | 0, $1521 | 0, $1530 | 0, $1531 | 0) | 0 + $1533 = tempRet0 + $1534 = _bitshift64Ashr($1528 | 0, $1529 | 0, 21) | 0 + $1535 = tempRet0 + $1536 = _i64Add($1494 | 0, $1495 | 0, $1368 | 0, $1369 | 0) | 0 + $1537 = tempRet0 + $1538 = + _i64Subtract($1536 | 0, $1537 | 0, $1402 | 0, $1403 | 0) | 0 + $1539 = tempRet0 + $1540 = _i64Add($1538 | 0, $1539 | 0, $1440 | 0, $1441 | 0) | 0 + $1541 = tempRet0 + $1542 = _i64Add($1540 | 0, $1541 | 0, $1534 | 0, $1535 | 0) | 0 + $1543 = tempRet0 + $1544 = _bitshift64Shl($1534 | 0, $1535 | 0, 21) | 0 + $1545 = tempRet0 + $1546 = + _i64Subtract($1528 | 0, $1529 | 0, $1544 | 0, $1545 | 0) | 0 + $1547 = tempRet0 + $1548 = _bitshift64Ashr($1542 | 0, $1543 | 0, 21) | 0 + $1549 = tempRet0 + $1550 = _i64Add($1548 | 0, $1549 | 0, $1498 | 0, $1499 | 0) | 0 + $1551 = tempRet0 + $1552 = _bitshift64Shl($1548 | 0, $1549 | 0, 21) | 0 + $1553 = tempRet0 + $1554 = + _i64Subtract($1542 | 0, $1543 | 0, $1552 | 0, $1553 | 0) | 0 + $1555 = tempRet0 + $1556 = _bitshift64Ashr($1550 | 0, $1551 | 0, 21) | 0 + $1557 = tempRet0 + $1558 = _i64Add($1450 | 0, $1451 | 0, $1556 | 0, $1557 | 0) | 0 + $1559 = tempRet0 + $1560 = _bitshift64Shl($1556 | 0, $1557 | 0, 21) | 0 + $1561 = tempRet0 + $1562 = + _i64Subtract($1550 | 0, $1551 | 0, $1560 | 0, $1561 | 0) | 0 + $1563 = tempRet0 + $1564 = _bitshift64Ashr($1558 | 0, $1559 | 0, 21) | 0 + $1565 = tempRet0 + $1566 = _i64Add($1564 | 0, $1565 | 0, $1464 | 0, $1465 | 0) | 0 + $1567 = tempRet0 + $1568 = _bitshift64Shl($1564 | 0, $1565 | 0, 21) | 0 + $1569 = tempRet0 + $1570 = + _i64Subtract($1558 | 0, $1559 | 0, $1568 | 0, $1569 | 0) | 0 + $1571 = tempRet0 + $1572 = _bitshift64Ashr($1566 | 0, $1567 | 0, 21) | 0 + $1573 = tempRet0 + $1574 = _i64Add($1460 | 0, $1461 | 0, $1572 | 0, $1573 | 0) | 0 + $1575 = tempRet0 + $1576 = _bitshift64Shl($1572 | 0, $1573 | 0, 21) | 0 + $1577 = tempRet0 + $1578 = + _i64Subtract($1566 | 0, $1567 | 0, $1576 | 0, $1577 | 0) | 0 + $1579 = tempRet0 + $1580 = _bitshift64Ashr($1574 | 0, $1575 | 0, 21) | 0 + $1581 = tempRet0 + $1582 = _i64Add($1580 | 0, $1581 | 0, $1472 | 0, $1473 | 0) | 0 + $1583 = tempRet0 + $1584 = _bitshift64Shl($1580 | 0, $1581 | 0, 21) | 0 + $1585 = tempRet0 + $1586 = + _i64Subtract($1574 | 0, $1575 | 0, $1584 | 0, $1585 | 0) | 0 + $1587 = tempRet0 + $1588 = _bitshift64Ashr($1582 | 0, $1583 | 0, 21) | 0 + $1589 = tempRet0 + $1590 = _i64Add($1468 | 0, $1469 | 0, $1252 | 0, $1253 | 0) | 0 + $1591 = tempRet0 + $1592 = + _i64Subtract($1590 | 0, $1591 | 0, $1430 | 0, $1431 | 0) | 0 + $1593 = tempRet0 + $1594 = _i64Add($1592 | 0, $1593 | 0, $1588 | 0, $1589 | 0) | 0 + $1595 = tempRet0 + $1596 = _bitshift64Shl($1588 | 0, $1589 | 0, 21) | 0 + $1597 = tempRet0 + $1598 = + _i64Subtract($1582 | 0, $1583 | 0, $1596 | 0, $1597 | 0) | 0 + $1599 = tempRet0 + $1600 = _bitshift64Ashr($1594 | 0, $1595 | 0, 21) | 0 + $1601 = tempRet0 + $1602 = _i64Add($1600 | 0, $1601 | 0, $1480 | 0, $1481 | 0) | 0 + $1603 = tempRet0 + $1604 = _bitshift64Shl($1600 | 0, $1601 | 0, 21) | 0 + $1605 = tempRet0 + $1606 = + _i64Subtract($1594 | 0, $1595 | 0, $1604 | 0, $1605 | 0) | 0 + $1607 = tempRet0 + $1608 = _bitshift64Ashr($1602 | 0, $1603 | 0, 21) | 0 + $1609 = tempRet0 + $1610 = _bitshift64Shl($1608 | 0, $1609 | 0, 21) | 0 + $1611 = tempRet0 + $1612 = + _i64Subtract($1602 | 0, $1603 | 0, $1610 | 0, $1611 | 0) | 0 + $1613 = tempRet0 + $1614 = ___muldi3($1608 | 0, $1609 | 0, 666643, 0) | 0 + $1615 = tempRet0 + $1616 = _i64Add($1614 | 0, $1615 | 0, $1510 | 0, $1511 | 0) | 0 + $1617 = tempRet0 + $1618 = ___muldi3($1608 | 0, $1609 | 0, 470296, 0) | 0 + $1619 = tempRet0 + $1620 = _i64Add($1524 | 0, $1525 | 0, $1618 | 0, $1619 | 0) | 0 + $1621 = tempRet0 + $1622 = ___muldi3($1608 | 0, $1609 | 0, 654183, 0) | 0 + $1623 = tempRet0 + $1624 = _i64Add($1532 | 0, $1533 | 0, $1622 | 0, $1623 | 0) | 0 + $1625 = tempRet0 + $1626 = ___muldi3($1608 | 0, $1609 | 0, -997805, -1) | 0 + $1627 = tempRet0 + $1628 = _i64Add($1546 | 0, $1547 | 0, $1626 | 0, $1627 | 0) | 0 + $1629 = tempRet0 + $1630 = ___muldi3($1608 | 0, $1609 | 0, 136657, 0) | 0 + $1631 = tempRet0 + $1632 = _i64Add($1554 | 0, $1555 | 0, $1630 | 0, $1631 | 0) | 0 + $1633 = tempRet0 + $1634 = ___muldi3($1608 | 0, $1609 | 0, -683901, -1) | 0 + $1635 = tempRet0 + $1636 = _i64Add($1562 | 0, $1563 | 0, $1634 | 0, $1635 | 0) | 0 + $1637 = tempRet0 + $1638 = _bitshift64Ashr($1616 | 0, $1617 | 0, 21) | 0 + $1639 = tempRet0 + $1640 = _i64Add($1620 | 0, $1621 | 0, $1638 | 0, $1639 | 0) | 0 + $1641 = tempRet0 + $1642 = _bitshift64Shl($1638 | 0, $1639 | 0, 21) | 0 + $1643 = tempRet0 + $1644 = + _i64Subtract($1616 | 0, $1617 | 0, $1642 | 0, $1643 | 0) | 0 + $1645 = tempRet0 + $1646 = _bitshift64Ashr($1640 | 0, $1641 | 0, 21) | 0 + $1647 = tempRet0 + $1648 = _i64Add($1624 | 0, $1625 | 0, $1646 | 0, $1647 | 0) | 0 + $1649 = tempRet0 + $1650 = _bitshift64Shl($1646 | 0, $1647 | 0, 21) | 0 + $1651 = tempRet0 + $1652 = + _i64Subtract($1640 | 0, $1641 | 0, $1650 | 0, $1651 | 0) | 0 + $1653 = tempRet0 + $1654 = _bitshift64Ashr($1648 | 0, $1649 | 0, 21) | 0 + $1655 = tempRet0 + $1656 = _i64Add($1654 | 0, $1655 | 0, $1628 | 0, $1629 | 0) | 0 + $1657 = tempRet0 + $1658 = _bitshift64Shl($1654 | 0, $1655 | 0, 21) | 0 + $1659 = tempRet0 + $1660 = + _i64Subtract($1648 | 0, $1649 | 0, $1658 | 0, $1659 | 0) | 0 + $1661 = tempRet0 + $1662 = _bitshift64Ashr($1656 | 0, $1657 | 0, 21) | 0 + $1663 = tempRet0 + $1664 = _i64Add($1632 | 0, $1633 | 0, $1662 | 0, $1663 | 0) | 0 + $1665 = tempRet0 + $1666 = _bitshift64Shl($1662 | 0, $1663 | 0, 21) | 0 + $1667 = tempRet0 + $1668 = + _i64Subtract($1656 | 0, $1657 | 0, $1666 | 0, $1667 | 0) | 0 + $1669 = tempRet0 + $1670 = _bitshift64Ashr($1664 | 0, $1665 | 0, 21) | 0 + $1671 = tempRet0 + $1672 = _i64Add($1670 | 0, $1671 | 0, $1636 | 0, $1637 | 0) | 0 + $1673 = tempRet0 + $1674 = _bitshift64Shl($1670 | 0, $1671 | 0, 21) | 0 + $1675 = tempRet0 + $1676 = + _i64Subtract($1664 | 0, $1665 | 0, $1674 | 0, $1675 | 0) | 0 + $1677 = tempRet0 + $1678 = _bitshift64Ashr($1672 | 0, $1673 | 0, 21) | 0 + $1679 = tempRet0 + $1680 = _i64Add($1678 | 0, $1679 | 0, $1570 | 0, $1571 | 0) | 0 + $1681 = tempRet0 + $1682 = _bitshift64Shl($1678 | 0, $1679 | 0, 21) | 0 + $1683 = tempRet0 + $1684 = + _i64Subtract($1672 | 0, $1673 | 0, $1682 | 0, $1683 | 0) | 0 + $1685 = tempRet0 + $1686 = _bitshift64Ashr($1680 | 0, $1681 | 0, 21) | 0 + $1687 = tempRet0 + $1688 = _i64Add($1686 | 0, $1687 | 0, $1578 | 0, $1579 | 0) | 0 + $1689 = tempRet0 + $1690 = _bitshift64Shl($1686 | 0, $1687 | 0, 21) | 0 + $1691 = tempRet0 + $1692 = + _i64Subtract($1680 | 0, $1681 | 0, $1690 | 0, $1691 | 0) | 0 + $1693 = tempRet0 + $1694 = _bitshift64Ashr($1688 | 0, $1689 | 0, 21) | 0 + $1695 = tempRet0 + $1696 = _i64Add($1694 | 0, $1695 | 0, $1586 | 0, $1587 | 0) | 0 + $1697 = tempRet0 + $1698 = _bitshift64Shl($1694 | 0, $1695 | 0, 21) | 0 + $1699 = tempRet0 + $1700 = + _i64Subtract($1688 | 0, $1689 | 0, $1698 | 0, $1699 | 0) | 0 + $1701 = tempRet0 + $1702 = _bitshift64Ashr($1696 | 0, $1697 | 0, 21) | 0 + $1703 = tempRet0 + $1704 = _i64Add($1702 | 0, $1703 | 0, $1598 | 0, $1599 | 0) | 0 + $1705 = tempRet0 + $1706 = _bitshift64Shl($1702 | 0, $1703 | 0, 21) | 0 + $1707 = tempRet0 + $1708 = + _i64Subtract($1696 | 0, $1697 | 0, $1706 | 0, $1707 | 0) | 0 + $1709 = tempRet0 + $1710 = _bitshift64Ashr($1704 | 0, $1705 | 0, 21) | 0 + $1711 = tempRet0 + $1712 = _i64Add($1710 | 0, $1711 | 0, $1606 | 0, $1607 | 0) | 0 + $1713 = tempRet0 + $1714 = _bitshift64Shl($1710 | 0, $1711 | 0, 21) | 0 + $1715 = tempRet0 + $1716 = + _i64Subtract($1704 | 0, $1705 | 0, $1714 | 0, $1715 | 0) | 0 + $1717 = tempRet0 + $1718 = _bitshift64Ashr($1712 | 0, $1713 | 0, 21) | 0 + $1719 = tempRet0 + $1720 = _i64Add($1718 | 0, $1719 | 0, $1612 | 0, $1613 | 0) | 0 + $1721 = tempRet0 + $1722 = _bitshift64Shl($1718 | 0, $1719 | 0, 21) | 0 + $1723 = tempRet0 + $1724 = + _i64Subtract($1712 | 0, $1713 | 0, $1722 | 0, $1723 | 0) | 0 + $1725 = tempRet0 + $1726 = $1644 & 255 + HEAP8[$s >> 0] = $1726 + $1727 = _bitshift64Lshr($1644 | 0, $1645 | 0, 8) | 0 + $1728 = tempRet0 + $1729 = $1727 & 255 + $1730 = ($s + 1) | 0 + HEAP8[$1730 >> 0] = $1729 + $1731 = _bitshift64Lshr($1644 | 0, $1645 | 0, 16) | 0 + $1732 = tempRet0 + $1733 = _bitshift64Shl($1652 | 0, $1653 | 0, 5) | 0 + $1734 = tempRet0 + $1735 = $1733 | $1731 + $1734 | $1732 + $1736 = $1735 & 255 + $1737 = ($s + 2) | 0 + HEAP8[$1737 >> 0] = $1736 + $1738 = _bitshift64Lshr($1652 | 0, $1653 | 0, 3) | 0 + $1739 = tempRet0 + $1740 = $1738 & 255 + $1741 = ($s + 3) | 0 + HEAP8[$1741 >> 0] = $1740 + $1742 = _bitshift64Lshr($1652 | 0, $1653 | 0, 11) | 0 + $1743 = tempRet0 + $1744 = $1742 & 255 + $1745 = ($s + 4) | 0 + HEAP8[$1745 >> 0] = $1744 + $1746 = _bitshift64Lshr($1652 | 0, $1653 | 0, 19) | 0 + $1747 = tempRet0 + $1748 = _bitshift64Shl($1660 | 0, $1661 | 0, 2) | 0 + $1749 = tempRet0 + $1750 = $1748 | $1746 + $1749 | $1747 + $1751 = $1750 & 255 + $1752 = ($s + 5) | 0 + HEAP8[$1752 >> 0] = $1751 + $1753 = _bitshift64Lshr($1660 | 0, $1661 | 0, 6) | 0 + $1754 = tempRet0 + $1755 = $1753 & 255 + $1756 = ($s + 6) | 0 + HEAP8[$1756 >> 0] = $1755 + $1757 = _bitshift64Lshr($1660 | 0, $1661 | 0, 14) | 0 + $1758 = tempRet0 + $1759 = _bitshift64Shl($1668 | 0, $1669 | 0, 7) | 0 + $1760 = tempRet0 + $1761 = $1759 | $1757 + $1760 | $1758 + $1762 = $1761 & 255 + $1763 = ($s + 7) | 0 + HEAP8[$1763 >> 0] = $1762 + $1764 = _bitshift64Lshr($1668 | 0, $1669 | 0, 1) | 0 + $1765 = tempRet0 + $1766 = $1764 & 255 + $1767 = ($s + 8) | 0 + HEAP8[$1767 >> 0] = $1766 + $1768 = _bitshift64Lshr($1668 | 0, $1669 | 0, 9) | 0 + $1769 = tempRet0 + $1770 = $1768 & 255 + $1771 = ($s + 9) | 0 + HEAP8[$1771 >> 0] = $1770 + $1772 = _bitshift64Lshr($1668 | 0, $1669 | 0, 17) | 0 + $1773 = tempRet0 + $1774 = _bitshift64Shl($1676 | 0, $1677 | 0, 4) | 0 + $1775 = tempRet0 + $1776 = $1774 | $1772 + $1775 | $1773 + $1777 = $1776 & 255 + $1778 = ($s + 10) | 0 + HEAP8[$1778 >> 0] = $1777 + $1779 = _bitshift64Lshr($1676 | 0, $1677 | 0, 4) | 0 + $1780 = tempRet0 + $1781 = $1779 & 255 + $1782 = ($s + 11) | 0 + HEAP8[$1782 >> 0] = $1781 + $1783 = _bitshift64Lshr($1676 | 0, $1677 | 0, 12) | 0 + $1784 = tempRet0 + $1785 = $1783 & 255 + $1786 = ($s + 12) | 0 + HEAP8[$1786 >> 0] = $1785 + $1787 = _bitshift64Lshr($1676 | 0, $1677 | 0, 20) | 0 + $1788 = tempRet0 + $1789 = _bitshift64Shl($1684 | 0, $1685 | 0, 1) | 0 + $1790 = tempRet0 + $1791 = $1789 | $1787 + $1790 | $1788 + $1792 = $1791 & 255 + $1793 = ($s + 13) | 0 + HEAP8[$1793 >> 0] = $1792 + $1794 = _bitshift64Lshr($1684 | 0, $1685 | 0, 7) | 0 + $1795 = tempRet0 + $1796 = $1794 & 255 + $1797 = ($s + 14) | 0 + HEAP8[$1797 >> 0] = $1796 + $1798 = _bitshift64Lshr($1684 | 0, $1685 | 0, 15) | 0 + $1799 = tempRet0 + $1800 = _bitshift64Shl($1692 | 0, $1693 | 0, 6) | 0 + $1801 = tempRet0 + $1802 = $1800 | $1798 + $1801 | $1799 + $1803 = $1802 & 255 + $1804 = ($s + 15) | 0 + HEAP8[$1804 >> 0] = $1803 + $1805 = _bitshift64Lshr($1692 | 0, $1693 | 0, 2) | 0 + $1806 = tempRet0 + $1807 = $1805 & 255 + $1808 = ($s + 16) | 0 + HEAP8[$1808 >> 0] = $1807 + $1809 = _bitshift64Lshr($1692 | 0, $1693 | 0, 10) | 0 + $1810 = tempRet0 + $1811 = $1809 & 255 + $1812 = ($s + 17) | 0 + HEAP8[$1812 >> 0] = $1811 + $1813 = _bitshift64Lshr($1692 | 0, $1693 | 0, 18) | 0 + $1814 = tempRet0 + $1815 = _bitshift64Shl($1700 | 0, $1701 | 0, 3) | 0 + $1816 = tempRet0 + $1817 = $1815 | $1813 + $1816 | $1814 + $1818 = $1817 & 255 + $1819 = ($s + 18) | 0 + HEAP8[$1819 >> 0] = $1818 + $1820 = _bitshift64Lshr($1700 | 0, $1701 | 0, 5) | 0 + $1821 = tempRet0 + $1822 = $1820 & 255 + $1823 = ($s + 19) | 0 + HEAP8[$1823 >> 0] = $1822 + $1824 = _bitshift64Lshr($1700 | 0, $1701 | 0, 13) | 0 + $1825 = tempRet0 + $1826 = $1824 & 255 + $1827 = ($s + 20) | 0 + HEAP8[$1827 >> 0] = $1826 + $1828 = $1708 & 255 + $1829 = ($s + 21) | 0 + HEAP8[$1829 >> 0] = $1828 + $1830 = _bitshift64Lshr($1708 | 0, $1709 | 0, 8) | 0 + $1831 = tempRet0 + $1832 = $1830 & 255 + $1833 = ($s + 22) | 0 + HEAP8[$1833 >> 0] = $1832 + $1834 = _bitshift64Lshr($1708 | 0, $1709 | 0, 16) | 0 + $1835 = tempRet0 + $1836 = _bitshift64Shl($1716 | 0, $1717 | 0, 5) | 0 + $1837 = tempRet0 + $1838 = $1836 | $1834 + $1837 | $1835 + $1839 = $1838 & 255 + $1840 = ($s + 23) | 0 + HEAP8[$1840 >> 0] = $1839 + $1841 = _bitshift64Lshr($1716 | 0, $1717 | 0, 3) | 0 + $1842 = tempRet0 + $1843 = $1841 & 255 + $1844 = ($s + 24) | 0 + HEAP8[$1844 >> 0] = $1843 + $1845 = _bitshift64Lshr($1716 | 0, $1717 | 0, 11) | 0 + $1846 = tempRet0 + $1847 = $1845 & 255 + $1848 = ($s + 25) | 0 + HEAP8[$1848 >> 0] = $1847 + $1849 = _bitshift64Lshr($1716 | 0, $1717 | 0, 19) | 0 + $1850 = tempRet0 + $1851 = _bitshift64Shl($1724 | 0, $1725 | 0, 2) | 0 + $1852 = tempRet0 + $1853 = $1851 | $1849 + $1852 | $1850 + $1854 = $1853 & 255 + $1855 = ($s + 26) | 0 + HEAP8[$1855 >> 0] = $1854 + $1856 = _bitshift64Lshr($1724 | 0, $1725 | 0, 6) | 0 + $1857 = tempRet0 + $1858 = $1856 & 255 + $1859 = ($s + 27) | 0 + HEAP8[$1859 >> 0] = $1858 + $1860 = _bitshift64Lshr($1724 | 0, $1725 | 0, 14) | 0 + $1861 = tempRet0 + $1862 = _bitshift64Shl($1720 | 0, $1721 | 0, 7) | 0 + $1863 = tempRet0 + $1864 = $1860 | $1862 + $1861 | $1863 + $1865 = $1864 & 255 + $1866 = ($s + 28) | 0 + HEAP8[$1866 >> 0] = $1865 + $1867 = _bitshift64Lshr($1720 | 0, $1721 | 0, 1) | 0 + $1868 = tempRet0 + $1869 = $1867 & 255 + $1870 = ($s + 29) | 0 + HEAP8[$1870 >> 0] = $1869 + $1871 = _bitshift64Lshr($1720 | 0, $1721 | 0, 9) | 0 + $1872 = tempRet0 + $1873 = $1871 & 255 + $1874 = ($s + 30) | 0 + HEAP8[$1874 >> 0] = $1873 + $1875 = _bitshift64Lshr($1720 | 0, $1721 | 0, 17) | 0 + $1876 = tempRet0 + $1877 = $1875 & 255 + $1878 = ($s + 31) | 0 + HEAP8[$1878 >> 0] = $1877 + return + } + function _load_319($in) { + $in = $in | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = HEAP8[$in >> 0] | 0 + $1 = $0 & 255 + $2 = ($in + 1) | 0 + $3 = HEAP8[$2 >> 0] | 0 + $4 = $3 & 255 + $5 = _bitshift64Shl($4 | 0, 0, 8) | 0 + $6 = tempRet0 + $7 = $5 | $1 + $8 = ($in + 2) | 0 + $9 = HEAP8[$8 >> 0] | 0 + $10 = $9 & 255 + $11 = _bitshift64Shl($10 | 0, 0, 16) | 0 + $12 = tempRet0 + $13 = $7 | $11 + $14 = $6 | $12 + tempRet0 = $14 + return $13 | 0 + } + function _load_420($in) { + $in = $in | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0 + var $8 = 0, + $9 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = HEAP8[$in >> 0] | 0 + $1 = $0 & 255 + $2 = ($in + 1) | 0 + $3 = HEAP8[$2 >> 0] | 0 + $4 = $3 & 255 + $5 = _bitshift64Shl($4 | 0, 0, 8) | 0 + $6 = tempRet0 + $7 = $5 | $1 + $8 = ($in + 2) | 0 + $9 = HEAP8[$8 >> 0] | 0 + $10 = $9 & 255 + $11 = _bitshift64Shl($10 | 0, 0, 16) | 0 + $12 = tempRet0 + $13 = $7 | $11 + $14 = $6 | $12 + $15 = ($in + 3) | 0 + $16 = HEAP8[$15 >> 0] | 0 + $17 = $16 & 255 + $18 = _bitshift64Shl($17 | 0, 0, 24) | 0 + $19 = tempRet0 + $20 = $13 | $18 + $21 = $14 | $19 + tempRet0 = $21 + return $20 | 0 + } + function _sha512_init($md) { + $md = $md | 0 + var $$0 = 0, + $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0 + var $26 = 0, + $27 = 0, + $28 = 0, + $29 = 0, + $3 = 0, + $30 = 0, + $31 = 0, + $32 = 0, + $33 = 0, + $34 = 0, + $35 = 0, + $36 = 0, + $37 = 0, + $38 = 0, + $39 = 0, + $4 = 0, + $40 = 0, + $41 = 0, + $42 = 0, + $43 = 0 + var $44 = 0, + $45 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = ($md | 0) == (0 | 0) + if ($0) { + $$0 = 1 + return $$0 | 0 + } + $1 = ($md + 72) | 0 + HEAP32[$1 >> 2] = 0 + $2 = $md + $3 = $2 + HEAP32[$3 >> 2] = 0 + $4 = ($2 + 4) | 0 + $5 = $4 + HEAP32[$5 >> 2] = 0 + $6 = ($md + 8) | 0 + $7 = $6 + $8 = $7 + HEAP32[$8 >> 2] = -205731576 + $9 = ($7 + 4) | 0 + $10 = $9 + HEAP32[$10 >> 2] = 1779033703 + $11 = ($md + 16) | 0 + $12 = $11 + $13 = $12 + HEAP32[$13 >> 2] = -2067093701 + $14 = ($12 + 4) | 0 + $15 = $14 + HEAP32[$15 >> 2] = -1150833019 + $16 = ($md + 24) | 0 + $17 = $16 + $18 = $17 + HEAP32[$18 >> 2] = -23791573 + $19 = ($17 + 4) | 0 + $20 = $19 + HEAP32[$20 >> 2] = 1013904242 + $21 = ($md + 32) | 0 + $22 = $21 + $23 = $22 + HEAP32[$23 >> 2] = 1595750129 + $24 = ($22 + 4) | 0 + $25 = $24 + HEAP32[$25 >> 2] = -1521486534 + $26 = ($md + 40) | 0 + $27 = $26 + $28 = $27 + HEAP32[$28 >> 2] = -1377402159 + $29 = ($27 + 4) | 0 + $30 = $29 + HEAP32[$30 >> 2] = 1359893119 + $31 = ($md + 48) | 0 + $32 = $31 + $33 = $32 + HEAP32[$33 >> 2] = 725511199 + $34 = ($32 + 4) | 0 + $35 = $34 + HEAP32[$35 >> 2] = -1694144372 + $36 = ($md + 56) | 0 + $37 = $36 + $38 = $37 + HEAP32[$38 >> 2] = -79577749 + $39 = ($37 + 4) | 0 + $40 = $39 + HEAP32[$40 >> 2] = 528734635 + $41 = ($md + 64) | 0 + $42 = $41 + $43 = $42 + HEAP32[$43 >> 2] = 327033209 + $44 = ($42 + 4) | 0 + $45 = $44 + HEAP32[$45 >> 2] = 1541459225 + $$0 = 0 + return $$0 | 0 + } + function _sha512_update($md, $in, $inlen) { + $md = $md | 0 + $in = $in | 0 + $inlen = $inlen | 0 + var $$0 = 0, + $$02$ = 0, + $$02$be = 0, + $$027 = 0, + $$03$be = 0, + $$036 = 0, + $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0 + var $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0, + $26 = 0, + $27 = 0, + $28 = 0, + $29 = 0, + $3 = 0, + $30 = 0, + $31 = 0, + $32 = 0, + $33 = 0, + $34 = 0, + $35 = 0, + $36 = 0, + $37 = 0, + $38 = 0, + $39 = 0 + var $4 = 0, + $40 = 0, + $41 = 0, + $42 = 0, + $43 = 0, + $44 = 0, + $45 = 0, + $46 = 0, + $47 = 0, + $48 = 0, + $49 = 0, + $5 = 0, + $50 = 0, + $51 = 0, + $52 = 0, + $53 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0 + var $exitcond = 0, + $i$05 = 0, + $or$cond = 0, + $or$cond4 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = ($md | 0) == (0 | 0) + $1 = ($in | 0) == (0 | 0) + $or$cond4 = $0 | $1 + if ($or$cond4) { + $$0 = 1 + return $$0 | 0 + } + $2 = ($md + 72) | 0 + $3 = HEAP32[$2 >> 2] | 0 + $4 = $3 >>> 0 > 128 + if ($4) { + $$0 = 1 + return $$0 | 0 + } + $5 = ($inlen | 0) == 0 + if ($5) { + $$0 = 0 + return $$0 | 0 + } + $6 = ($md + 76) | 0 + $$027 = $inlen + $$036 = $in + while (1) { + $7 = HEAP32[$2 >> 2] | 0 + $8 = ($7 | 0) == 0 + $9 = $$027 >>> 0 > 127 + $or$cond = $9 & $8 + if ($or$cond) { + _sha512_compress($md, $$036) + $10 = $md + $11 = $10 + $12 = HEAP32[$11 >> 2] | 0 + $13 = ($10 + 4) | 0 + $14 = $13 + $15 = HEAP32[$14 >> 2] | 0 + $16 = _i64Add($12 | 0, $15 | 0, 1024, 0) | 0 + $17 = tempRet0 + $18 = $md + $19 = $18 + HEAP32[$19 >> 2] = $16 + $20 = ($18 + 4) | 0 + $21 = $20 + HEAP32[$21 >> 2] = $17 + $22 = ($$036 + 128) | 0 + $23 = ($$027 + -128) | 0 + $$02$be = $23 + $$03$be = $22 + } else { + $24 = (128 - $7) | 0 + $25 = $$027 >>> 0 < $24 >>> 0 + $$02$ = $25 ? $$027 : $24 + $26 = ($$02$ | 0) == 0 + if (!$26) { + $27 = (128 - $7) | 0 + $28 = $$027 >>> 0 > $27 >>> 0 + $29 = $28 ? $27 : $$027 + $i$05 = 0 + while (1) { + $30 = ($$036 + $i$05) | 0 + $31 = HEAP8[$30 >> 0] | 0 + $32 = HEAP32[$2 >> 2] | 0 + $33 = ($32 + $i$05) | 0 + $34 = ((($md + 76) | 0) + $33) | 0 + HEAP8[$34 >> 0] = $31 + $35 = ($i$05 + 1) | 0 + $exitcond = ($35 | 0) == ($29 | 0) + if ($exitcond) { + break + } else { + $i$05 = $35 + } + } + } + $36 = HEAP32[$2 >> 2] | 0 + $37 = ($36 + $$02$) | 0 + HEAP32[$2 >> 2] = $37 + $38 = ($$036 + $$02$) | 0 + $39 = ($$027 - $$02$) | 0 + $40 = ($37 | 0) == 128 + if ($40) { + _sha512_compress($md, $6) + $42 = $md + $43 = $42 + $44 = HEAP32[$43 >> 2] | 0 + $45 = ($42 + 4) | 0 + $46 = $45 + $47 = HEAP32[$46 >> 2] | 0 + $48 = _i64Add($44 | 0, $47 | 0, 1024, 0) | 0 + $49 = tempRet0 + $50 = $md + $51 = $50 + HEAP32[$51 >> 2] = $48 + $52 = ($50 + 4) | 0 + $53 = $52 + HEAP32[$53 >> 2] = $49 + HEAP32[$2 >> 2] = 0 + $$02$be = $39 + $$03$be = $38 + } else { + $$02$be = $39 + $$03$be = $38 + } + } + $41 = ($$02$be | 0) == 0 + if ($41) { + $$0 = 0 + break + } else { + $$027 = $$02$be + $$036 = $$03$be + } + } + return $$0 | 0 + } + function _sha512_final($md, $out) { + $md = $md | 0 + $out = $out | 0 + var $$0 = 0, + $$pr = 0, + $$pr8 = 0, + $$sum1 = 0, + $$sum2 = 0, + $$sum3 = 0, + $$sum4 = 0, + $$sum5 = 0, + $$sum6 = 0, + $$sum7 = 0, + $0 = 0, + $1 = 0, + $10 = 0, + $100 = 0, + $101 = 0, + $102 = 0, + $103 = 0, + $104 = 0, + $105 = 0, + $106 = 0 + var $107 = 0, + $108 = 0, + $109 = 0, + $11 = 0, + $110 = 0, + $111 = 0, + $112 = 0, + $113 = 0, + $114 = 0, + $115 = 0, + $116 = 0, + $117 = 0, + $118 = 0, + $119 = 0, + $12 = 0, + $120 = 0, + $121 = 0, + $122 = 0, + $123 = 0, + $124 = 0 + var $125 = 0, + $126 = 0, + $127 = 0, + $128 = 0, + $129 = 0, + $13 = 0, + $130 = 0, + $131 = 0, + $132 = 0, + $133 = 0, + $134 = 0, + $135 = 0, + $136 = 0, + $137 = 0, + $138 = 0, + $139 = 0, + $14 = 0, + $140 = 0, + $141 = 0, + $142 = 0 + var $143 = 0, + $144 = 0, + $145 = 0, + $146 = 0, + $147 = 0, + $148 = 0, + $149 = 0, + $15 = 0, + $150 = 0, + $151 = 0, + $152 = 0, + $153 = 0, + $154 = 0, + $155 = 0, + $156 = 0, + $157 = 0, + $158 = 0, + $159 = 0, + $16 = 0, + $160 = 0 + var $161 = 0, + $162 = 0, + $163 = 0, + $164 = 0, + $165 = 0, + $166 = 0, + $167 = 0, + $168 = 0, + $169 = 0, + $17 = 0, + $170 = 0, + $171 = 0, + $172 = 0, + $173 = 0, + $174 = 0, + $175 = 0, + $176 = 0, + $177 = 0, + $178 = 0, + $179 = 0 + var $18 = 0, + $180 = 0, + $181 = 0, + $182 = 0, + $183 = 0, + $184 = 0, + $185 = 0, + $186 = 0, + $187 = 0, + $188 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0, + $26 = 0, + $27 = 0 + var $28 = 0, + $29 = 0, + $3 = 0, + $30 = 0, + $31 = 0, + $32 = 0, + $33 = 0, + $34 = 0, + $35 = 0, + $36 = 0, + $37 = 0, + $38 = 0, + $39 = 0, + $4 = 0, + $40 = 0, + $41 = 0, + $42 = 0, + $43 = 0, + $44 = 0, + $45 = 0 + var $46 = 0, + $47 = 0, + $48 = 0, + $49 = 0, + $5 = 0, + $50 = 0, + $51 = 0, + $52 = 0, + $53 = 0, + $54 = 0, + $55 = 0, + $56 = 0, + $57 = 0, + $58 = 0, + $59 = 0, + $6 = 0, + $60 = 0, + $61 = 0, + $62 = 0, + $63 = 0 + var $64 = 0, + $65 = 0, + $66 = 0, + $67 = 0, + $68 = 0, + $69 = 0, + $7 = 0, + $70 = 0, + $71 = 0, + $72 = 0, + $73 = 0, + $74 = 0, + $75 = 0, + $76 = 0, + $77 = 0, + $78 = 0, + $79 = 0, + $8 = 0, + $80 = 0, + $81 = 0 + var $82 = 0, + $83 = 0, + $84 = 0, + $85 = 0, + $86 = 0, + $87 = 0, + $88 = 0, + $89 = 0, + $9 = 0, + $90 = 0, + $91 = 0, + $92 = 0, + $93 = 0, + $94 = 0, + $95 = 0, + $96 = 0, + $97 = 0, + $98 = 0, + $99 = 0, + $exitcond = 0 + var $i$010 = 0, + $or$cond = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = ($md | 0) == (0 | 0) + $1 = ($out | 0) == (0 | 0) + $or$cond = $0 | $1 + if ($or$cond) { + $$0 = 1 + return $$0 | 0 + } + $2 = ($md + 72) | 0 + $3 = HEAP32[$2 >> 2] | 0 + $4 = $3 >>> 0 > 127 + if ($4) { + $$0 = 1 + return $$0 | 0 + } + $5 = _bitshift64Shl($3 | 0, 0, 3) | 0 + $6 = tempRet0 + $7 = $md + $8 = $7 + $9 = HEAP32[$8 >> 2] | 0 + $10 = ($7 + 4) | 0 + $11 = $10 + $12 = HEAP32[$11 >> 2] | 0 + $13 = _i64Add($9 | 0, $12 | 0, $5 | 0, $6 | 0) | 0 + $14 = tempRet0 + $15 = $md + $16 = $15 + HEAP32[$16 >> 2] = $13 + $17 = ($15 + 4) | 0 + $18 = $17 + HEAP32[$18 >> 2] = $14 + $19 = HEAP32[$2 >> 2] | 0 + $20 = ($19 + 1) | 0 + HEAP32[$2 >> 2] = $20 + $21 = ($md + 76) | 0 + $22 = ((($md + 76) | 0) + $19) | 0 + HEAP8[$22 >> 0] = -128 + $23 = HEAP32[$2 >> 2] | 0 + $24 = $23 >>> 0 > 112 + if ($24) { + $25 = $23 >>> 0 < 128 + if ($25) { + $27 = $23 + while (1) { + $26 = ($27 + 1) | 0 + HEAP32[$2 >> 2] = $26 + $28 = ((($md + 76) | 0) + $27) | 0 + HEAP8[$28 >> 0] = 0 + $$pr = HEAP32[$2 >> 2] | 0 + $29 = $$pr >>> 0 < 128 + if ($29) { + $27 = $$pr + } else { + break + } + } + } + _sha512_compress($md, $21) + HEAP32[$2 >> 2] = 0 + $31 = 0 + } else { + $31 = $23 + } + while (1) { + $30 = ($31 + 1) | 0 + HEAP32[$2 >> 2] = $30 + $32 = ((($md + 76) | 0) + $31) | 0 + HEAP8[$32 >> 0] = 0 + $$pr8 = HEAP32[$2 >> 2] | 0 + $33 = $$pr8 >>> 0 < 120 + if ($33) { + $31 = $$pr8 + } else { + break + } + } + $34 = $md + $35 = $34 + $36 = HEAP32[$35 >> 2] | 0 + $37 = ($34 + 4) | 0 + $38 = $37 + $39 = HEAP32[$38 >> 2] | 0 + $40 = _bitshift64Lshr($36 | 0, $39 | 0, 56) | 0 + $41 = tempRet0 + $42 = $40 & 255 + $43 = ($md + 196) | 0 + HEAP8[$43 >> 0] = $42 + $44 = $md + $45 = $44 + $46 = HEAP32[$45 >> 2] | 0 + $47 = ($44 + 4) | 0 + $48 = $47 + $49 = HEAP32[$48 >> 2] | 0 + $50 = _bitshift64Lshr($46 | 0, $49 | 0, 48) | 0 + $51 = tempRet0 + $52 = $50 & 255 + $53 = ($md + 197) | 0 + HEAP8[$53 >> 0] = $52 + $54 = $md + $55 = $54 + $56 = HEAP32[$55 >> 2] | 0 + $57 = ($54 + 4) | 0 + $58 = $57 + $59 = HEAP32[$58 >> 2] | 0 + $60 = _bitshift64Lshr($56 | 0, $59 | 0, 40) | 0 + $61 = tempRet0 + $62 = $60 & 255 + $63 = ($md + 198) | 0 + HEAP8[$63 >> 0] = $62 + $64 = $md + $65 = $64 + $66 = HEAP32[$65 >> 2] | 0 + $67 = ($64 + 4) | 0 + $68 = $67 + $69 = HEAP32[$68 >> 2] | 0 + $70 = $69 & 255 + $71 = ($md + 199) | 0 + HEAP8[$71 >> 0] = $70 + $72 = $md + $73 = $72 + $74 = HEAP32[$73 >> 2] | 0 + $75 = ($72 + 4) | 0 + $76 = $75 + $77 = HEAP32[$76 >> 2] | 0 + $78 = _bitshift64Lshr($74 | 0, $77 | 0, 24) | 0 + $79 = tempRet0 + $80 = $78 & 255 + $81 = ($md + 200) | 0 + HEAP8[$81 >> 0] = $80 + $82 = $md + $83 = $82 + $84 = HEAP32[$83 >> 2] | 0 + $85 = ($82 + 4) | 0 + $86 = $85 + $87 = HEAP32[$86 >> 2] | 0 + $88 = _bitshift64Lshr($84 | 0, $87 | 0, 16) | 0 + $89 = tempRet0 + $90 = $88 & 255 + $91 = ($md + 201) | 0 + HEAP8[$91 >> 0] = $90 + $92 = $md + $93 = $92 + $94 = HEAP32[$93 >> 2] | 0 + $95 = ($92 + 4) | 0 + $96 = $95 + $97 = HEAP32[$96 >> 2] | 0 + $98 = _bitshift64Lshr($94 | 0, $97 | 0, 8) | 0 + $99 = tempRet0 + $100 = $98 & 255 + $101 = ($md + 202) | 0 + HEAP8[$101 >> 0] = $100 + $102 = $md + $103 = $102 + $104 = HEAP32[$103 >> 2] | 0 + $105 = ($102 + 4) | 0 + $106 = $105 + $107 = HEAP32[$106 >> 2] | 0 + $108 = $104 & 255 + $109 = ($md + 203) | 0 + HEAP8[$109 >> 0] = $108 + _sha512_compress($md, $21) + $i$010 = 0 + while (1) { + $110 = ((($md + 8) | 0) + ($i$010 << 3)) | 0 + $111 = $110 + $112 = $111 + $113 = HEAP32[$112 >> 2] | 0 + $114 = ($111 + 4) | 0 + $115 = $114 + $116 = HEAP32[$115 >> 2] | 0 + $117 = _bitshift64Lshr($113 | 0, $116 | 0, 56) | 0 + $118 = tempRet0 + $119 = $117 & 255 + $120 = $i$010 << 3 + $121 = ($out + $120) | 0 + HEAP8[$121 >> 0] = $119 + $122 = $110 + $123 = $122 + $124 = HEAP32[$123 >> 2] | 0 + $125 = ($122 + 4) | 0 + $126 = $125 + $127 = HEAP32[$126 >> 2] | 0 + $128 = _bitshift64Lshr($124 | 0, $127 | 0, 48) | 0 + $129 = tempRet0 + $130 = $128 & 255 + $$sum1 = $120 | 1 + $131 = ($out + $$sum1) | 0 + HEAP8[$131 >> 0] = $130 + $132 = $110 + $133 = $132 + $134 = HEAP32[$133 >> 2] | 0 + $135 = ($132 + 4) | 0 + $136 = $135 + $137 = HEAP32[$136 >> 2] | 0 + $138 = _bitshift64Lshr($134 | 0, $137 | 0, 40) | 0 + $139 = tempRet0 + $140 = $138 & 255 + $$sum2 = $120 | 2 + $141 = ($out + $$sum2) | 0 + HEAP8[$141 >> 0] = $140 + $142 = $110 + $143 = $142 + $144 = HEAP32[$143 >> 2] | 0 + $145 = ($142 + 4) | 0 + $146 = $145 + $147 = HEAP32[$146 >> 2] | 0 + $148 = $147 & 255 + $$sum3 = $120 | 3 + $149 = ($out + $$sum3) | 0 + HEAP8[$149 >> 0] = $148 + $150 = $110 + $151 = $150 + $152 = HEAP32[$151 >> 2] | 0 + $153 = ($150 + 4) | 0 + $154 = $153 + $155 = HEAP32[$154 >> 2] | 0 + $156 = _bitshift64Lshr($152 | 0, $155 | 0, 24) | 0 + $157 = tempRet0 + $158 = $156 & 255 + $$sum4 = $120 | 4 + $159 = ($out + $$sum4) | 0 + HEAP8[$159 >> 0] = $158 + $160 = $110 + $161 = $160 + $162 = HEAP32[$161 >> 2] | 0 + $163 = ($160 + 4) | 0 + $164 = $163 + $165 = HEAP32[$164 >> 2] | 0 + $166 = _bitshift64Lshr($162 | 0, $165 | 0, 16) | 0 + $167 = tempRet0 + $168 = $166 & 255 + $$sum5 = $120 | 5 + $169 = ($out + $$sum5) | 0 + HEAP8[$169 >> 0] = $168 + $170 = $110 + $171 = $170 + $172 = HEAP32[$171 >> 2] | 0 + $173 = ($170 + 4) | 0 + $174 = $173 + $175 = HEAP32[$174 >> 2] | 0 + $176 = _bitshift64Lshr($172 | 0, $175 | 0, 8) | 0 + $177 = tempRet0 + $178 = $176 & 255 + $$sum6 = $120 | 6 + $179 = ($out + $$sum6) | 0 + HEAP8[$179 >> 0] = $178 + $180 = $110 + $181 = $180 + $182 = HEAP32[$181 >> 2] | 0 + $183 = ($180 + 4) | 0 + $184 = $183 + $185 = HEAP32[$184 >> 2] | 0 + $186 = $182 & 255 + $$sum7 = $120 | 7 + $187 = ($out + $$sum7) | 0 + HEAP8[$187 >> 0] = $186 + $188 = ($i$010 + 1) | 0 + $exitcond = ($188 | 0) == 8 + if ($exitcond) { + $$0 = 0 + break + } else { + $i$010 = $188 + } + } + return $$0 | 0 + } + function _sha512($message, $message_len, $out) { + $message = $message | 0 + $message_len = $message_len | 0 + $out = $out | 0 + var $$0 = 0, + $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $ctx = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 208) | 0 + $ctx = sp + $0 = _sha512_init($ctx) | 0 + $1 = ($0 | 0) == 0 + if ($1) { + $2 = _sha512_update($ctx, $message, $message_len) | 0 + $3 = ($2 | 0) == 0 + if ($3) { + $4 = _sha512_final($ctx, $out) | 0 + $$0 = $4 + } else { + $$0 = $2 + } + } else { + $$0 = $0 + } + STACKTOP = sp + return $$0 | 0 + } + function _sha512_compress($md, $buf) { + $md = $md | 0 + $buf = $buf | 0 + var $$sum1 = 0, + $$sum2 = 0, + $$sum3 = 0, + $$sum4 = 0, + $$sum5 = 0, + $$sum6 = 0, + $$sum7 = 0, + $0 = 0, + $1 = 0, + $10 = 0, + $100 = 0, + $1000 = 0, + $1001 = 0, + $1002 = 0, + $1003 = 0, + $1004 = 0, + $1005 = 0, + $1006 = 0, + $1007 = 0, + $1008 = 0 + var $1009 = 0, + $101 = 0, + $1010 = 0, + $1011 = 0, + $1012 = 0, + $1013 = 0, + $1014 = 0, + $1015 = 0, + $1016 = 0, + $1017 = 0, + $1018 = 0, + $1019 = 0, + $102 = 0, + $1020 = 0, + $1021 = 0, + $1022 = 0, + $1023 = 0, + $1024 = 0, + $1025 = 0, + $1026 = 0 + var $1027 = 0, + $1028 = 0, + $1029 = 0, + $103 = 0, + $1030 = 0, + $1031 = 0, + $1032 = 0, + $1033 = 0, + $1034 = 0, + $1035 = 0, + $1036 = 0, + $1037 = 0, + $1038 = 0, + $1039 = 0, + $104 = 0, + $1040 = 0, + $1041 = 0, + $1042 = 0, + $1043 = 0, + $1044 = 0 + var $1045 = 0, + $1046 = 0, + $1047 = 0, + $1048 = 0, + $1049 = 0, + $105 = 0, + $1050 = 0, + $1051 = 0, + $1052 = 0, + $1053 = 0, + $1054 = 0, + $1055 = 0, + $1056 = 0, + $1057 = 0, + $1058 = 0, + $1059 = 0, + $106 = 0, + $1060 = 0, + $1061 = 0, + $1062 = 0 + var $1063 = 0, + $1064 = 0, + $1065 = 0, + $1066 = 0, + $1067 = 0, + $1068 = 0, + $1069 = 0, + $107 = 0, + $1070 = 0, + $1071 = 0, + $1072 = 0, + $1073 = 0, + $1074 = 0, + $1075 = 0, + $1076 = 0, + $1077 = 0, + $1078 = 0, + $1079 = 0, + $108 = 0, + $1080 = 0 + var $1081 = 0, + $1082 = 0, + $1083 = 0, + $1084 = 0, + $1085 = 0, + $1086 = 0, + $1087 = 0, + $1088 = 0, + $1089 = 0, + $109 = 0, + $1090 = 0, + $1091 = 0, + $1092 = 0, + $1093 = 0, + $1094 = 0, + $1095 = 0, + $1096 = 0, + $1097 = 0, + $1098 = 0, + $1099 = 0 + var $11 = 0, + $110 = 0, + $1100 = 0, + $1101 = 0, + $1102 = 0, + $1103 = 0, + $1104 = 0, + $1105 = 0, + $1106 = 0, + $1107 = 0, + $1108 = 0, + $1109 = 0, + $111 = 0, + $112 = 0, + $113 = 0, + $114 = 0, + $115 = 0, + $116 = 0, + $117 = 0, + $118 = 0 + var $119 = 0, + $12 = 0, + $120 = 0, + $121 = 0, + $122 = 0, + $123 = 0, + $124 = 0, + $125 = 0, + $126 = 0, + $127 = 0, + $128 = 0, + $129 = 0, + $13 = 0, + $130 = 0, + $131 = 0, + $132 = 0, + $133 = 0, + $134 = 0, + $135 = 0, + $136 = 0 + var $137 = 0, + $138 = 0, + $139 = 0, + $14 = 0, + $140 = 0, + $141 = 0, + $142 = 0, + $143 = 0, + $144 = 0, + $145 = 0, + $146 = 0, + $147 = 0, + $148 = 0, + $149 = 0, + $15 = 0, + $150 = 0, + $151 = 0, + $152 = 0, + $153 = 0, + $154 = 0 + var $155 = 0, + $156 = 0, + $157 = 0, + $158 = 0, + $159 = 0, + $16 = 0, + $160 = 0, + $161 = 0, + $162 = 0, + $163 = 0, + $164 = 0, + $165 = 0, + $166 = 0, + $167 = 0, + $168 = 0, + $169 = 0, + $17 = 0, + $170 = 0, + $171 = 0, + $172 = 0 + var $173 = 0, + $174 = 0, + $175 = 0, + $176 = 0, + $177 = 0, + $178 = 0, + $179 = 0, + $18 = 0, + $180 = 0, + $181 = 0, + $182 = 0, + $183 = 0, + $184 = 0, + $185 = 0, + $186 = 0, + $187 = 0, + $188 = 0, + $189 = 0, + $19 = 0, + $190 = 0 + var $191 = 0, + $192 = 0, + $193 = 0, + $194 = 0, + $195 = 0, + $196 = 0, + $197 = 0, + $198 = 0, + $199 = 0, + $2 = 0, + $20 = 0, + $200 = 0, + $201 = 0, + $202 = 0, + $203 = 0, + $204 = 0, + $205 = 0, + $206 = 0, + $207 = 0, + $208 = 0 + var $209 = 0, + $21 = 0, + $210 = 0, + $211 = 0, + $212 = 0, + $213 = 0, + $214 = 0, + $215 = 0, + $216 = 0, + $217 = 0, + $218 = 0, + $219 = 0, + $22 = 0, + $220 = 0, + $221 = 0, + $222 = 0, + $223 = 0, + $224 = 0, + $225 = 0, + $226 = 0 + var $227 = 0, + $228 = 0, + $229 = 0, + $23 = 0, + $230 = 0, + $231 = 0, + $232 = 0, + $233 = 0, + $234 = 0, + $235 = 0, + $236 = 0, + $237 = 0, + $238 = 0, + $239 = 0, + $24 = 0, + $240 = 0, + $241 = 0, + $242 = 0, + $243 = 0, + $244 = 0 + var $245 = 0, + $246 = 0, + $247 = 0, + $248 = 0, + $249 = 0, + $25 = 0, + $250 = 0, + $251 = 0, + $252 = 0, + $253 = 0, + $254 = 0, + $255 = 0, + $256 = 0, + $257 = 0, + $258 = 0, + $259 = 0, + $26 = 0, + $260 = 0, + $261 = 0, + $262 = 0 + var $263 = 0, + $264 = 0, + $265 = 0, + $266 = 0, + $267 = 0, + $268 = 0, + $269 = 0, + $27 = 0, + $270 = 0, + $271 = 0, + $272 = 0, + $273 = 0, + $274 = 0, + $275 = 0, + $276 = 0, + $277 = 0, + $278 = 0, + $279 = 0, + $28 = 0, + $280 = 0 + var $281 = 0, + $282 = 0, + $283 = 0, + $284 = 0, + $285 = 0, + $286 = 0, + $287 = 0, + $288 = 0, + $289 = 0, + $29 = 0, + $290 = 0, + $291 = 0, + $292 = 0, + $293 = 0, + $294 = 0, + $295 = 0, + $296 = 0, + $297 = 0, + $298 = 0, + $299 = 0 + var $3 = 0, + $30 = 0, + $300 = 0, + $301 = 0, + $302 = 0, + $303 = 0, + $304 = 0, + $305 = 0, + $306 = 0, + $307 = 0, + $308 = 0, + $309 = 0, + $31 = 0, + $310 = 0, + $311 = 0, + $312 = 0, + $313 = 0, + $314 = 0, + $315 = 0, + $316 = 0 + var $317 = 0, + $318 = 0, + $319 = 0, + $32 = 0, + $320 = 0, + $321 = 0, + $322 = 0, + $323 = 0, + $324 = 0, + $325 = 0, + $326 = 0, + $327 = 0, + $328 = 0, + $329 = 0, + $33 = 0, + $330 = 0, + $331 = 0, + $332 = 0, + $333 = 0, + $334 = 0 + var $335 = 0, + $336 = 0, + $337 = 0, + $338 = 0, + $339 = 0, + $34 = 0, + $340 = 0, + $341 = 0, + $342 = 0, + $343 = 0, + $344 = 0, + $345 = 0, + $346 = 0, + $347 = 0, + $348 = 0, + $349 = 0, + $35 = 0, + $350 = 0, + $351 = 0, + $352 = 0 + var $353 = 0, + $354 = 0, + $355 = 0, + $356 = 0, + $357 = 0, + $358 = 0, + $359 = 0, + $36 = 0, + $360 = 0, + $361 = 0, + $362 = 0, + $363 = 0, + $364 = 0, + $365 = 0, + $366 = 0, + $367 = 0, + $368 = 0, + $369 = 0, + $37 = 0, + $370 = 0 + var $371 = 0, + $372 = 0, + $373 = 0, + $374 = 0, + $375 = 0, + $376 = 0, + $377 = 0, + $378 = 0, + $379 = 0, + $38 = 0, + $380 = 0, + $381 = 0, + $382 = 0, + $383 = 0, + $384 = 0, + $385 = 0, + $386 = 0, + $387 = 0, + $388 = 0, + $389 = 0 + var $39 = 0, + $390 = 0, + $391 = 0, + $392 = 0, + $393 = 0, + $394 = 0, + $395 = 0, + $396 = 0, + $397 = 0, + $398 = 0, + $399 = 0, + $4 = 0, + $40 = 0, + $400 = 0, + $401 = 0, + $402 = 0, + $403 = 0, + $404 = 0, + $405 = 0, + $406 = 0 + var $407 = 0, + $408 = 0, + $409 = 0, + $41 = 0, + $410 = 0, + $411 = 0, + $412 = 0, + $413 = 0, + $414 = 0, + $415 = 0, + $416 = 0, + $417 = 0, + $418 = 0, + $419 = 0, + $42 = 0, + $420 = 0, + $421 = 0, + $422 = 0, + $423 = 0, + $424 = 0 + var $425 = 0, + $426 = 0, + $427 = 0, + $428 = 0, + $429 = 0, + $43 = 0, + $430 = 0, + $431 = 0, + $432 = 0, + $433 = 0, + $434 = 0, + $435 = 0, + $436 = 0, + $437 = 0, + $438 = 0, + $439 = 0, + $44 = 0, + $440 = 0, + $441 = 0, + $442 = 0 + var $443 = 0, + $444 = 0, + $445 = 0, + $446 = 0, + $447 = 0, + $448 = 0, + $449 = 0, + $45 = 0, + $450 = 0, + $451 = 0, + $452 = 0, + $453 = 0, + $454 = 0, + $455 = 0, + $456 = 0, + $457 = 0, + $458 = 0, + $459 = 0, + $46 = 0, + $460 = 0 + var $461 = 0, + $462 = 0, + $463 = 0, + $464 = 0, + $465 = 0, + $466 = 0, + $467 = 0, + $468 = 0, + $469 = 0, + $47 = 0, + $470 = 0, + $471 = 0, + $472 = 0, + $473 = 0, + $474 = 0, + $475 = 0, + $476 = 0, + $477 = 0, + $478 = 0, + $479 = 0 + var $48 = 0, + $480 = 0, + $481 = 0, + $482 = 0, + $483 = 0, + $484 = 0, + $485 = 0, + $486 = 0, + $487 = 0, + $488 = 0, + $489 = 0, + $49 = 0, + $490 = 0, + $491 = 0, + $492 = 0, + $493 = 0, + $494 = 0, + $495 = 0, + $496 = 0, + $497 = 0 + var $498 = 0, + $499 = 0, + $5 = 0, + $50 = 0, + $500 = 0, + $501 = 0, + $502 = 0, + $503 = 0, + $504 = 0, + $505 = 0, + $506 = 0, + $507 = 0, + $508 = 0, + $509 = 0, + $51 = 0, + $510 = 0, + $511 = 0, + $512 = 0, + $513 = 0, + $514 = 0 + var $515 = 0, + $516 = 0, + $517 = 0, + $518 = 0, + $519 = 0, + $52 = 0, + $520 = 0, + $521 = 0, + $522 = 0, + $523 = 0, + $524 = 0, + $525 = 0, + $526 = 0, + $527 = 0, + $528 = 0, + $529 = 0, + $53 = 0, + $530 = 0, + $531 = 0, + $532 = 0 + var $533 = 0, + $534 = 0, + $535 = 0, + $536 = 0, + $537 = 0, + $538 = 0, + $539 = 0, + $54 = 0, + $540 = 0, + $541 = 0, + $542 = 0, + $543 = 0, + $544 = 0, + $545 = 0, + $546 = 0, + $547 = 0, + $548 = 0, + $549 = 0, + $55 = 0, + $550 = 0 + var $551 = 0, + $552 = 0, + $553 = 0, + $554 = 0, + $555 = 0, + $556 = 0, + $557 = 0, + $558 = 0, + $559 = 0, + $56 = 0, + $560 = 0, + $561 = 0, + $562 = 0, + $563 = 0, + $564 = 0, + $565 = 0, + $566 = 0, + $567 = 0, + $568 = 0, + $569 = 0 + var $57 = 0, + $570 = 0, + $571 = 0, + $572 = 0, + $573 = 0, + $574 = 0, + $575 = 0, + $576 = 0, + $577 = 0, + $578 = 0, + $579 = 0, + $58 = 0, + $580 = 0, + $581 = 0, + $582 = 0, + $583 = 0, + $584 = 0, + $585 = 0, + $586 = 0, + $587 = 0 + var $588 = 0, + $589 = 0, + $59 = 0, + $590 = 0, + $591 = 0, + $592 = 0, + $593 = 0, + $594 = 0, + $595 = 0, + $596 = 0, + $597 = 0, + $598 = 0, + $599 = 0, + $6 = 0, + $60 = 0, + $600 = 0, + $601 = 0, + $602 = 0, + $603 = 0, + $604 = 0 + var $605 = 0, + $606 = 0, + $607 = 0, + $608 = 0, + $609 = 0, + $61 = 0, + $610 = 0, + $611 = 0, + $612 = 0, + $613 = 0, + $614 = 0, + $615 = 0, + $616 = 0, + $617 = 0, + $618 = 0, + $619 = 0, + $62 = 0, + $620 = 0, + $621 = 0, + $622 = 0 + var $623 = 0, + $624 = 0, + $625 = 0, + $626 = 0, + $627 = 0, + $628 = 0, + $629 = 0, + $63 = 0, + $630 = 0, + $631 = 0, + $632 = 0, + $633 = 0, + $634 = 0, + $635 = 0, + $636 = 0, + $637 = 0, + $638 = 0, + $639 = 0, + $64 = 0, + $640 = 0 + var $641 = 0, + $642 = 0, + $643 = 0, + $644 = 0, + $645 = 0, + $646 = 0, + $647 = 0, + $648 = 0, + $649 = 0, + $65 = 0, + $650 = 0, + $651 = 0, + $652 = 0, + $653 = 0, + $654 = 0, + $655 = 0, + $656 = 0, + $657 = 0, + $658 = 0, + $659 = 0 + var $66 = 0, + $660 = 0, + $661 = 0, + $662 = 0, + $663 = 0, + $664 = 0, + $665 = 0, + $666 = 0, + $667 = 0, + $668 = 0, + $669 = 0, + $67 = 0, + $670 = 0, + $671 = 0, + $672 = 0, + $673 = 0, + $674 = 0, + $675 = 0, + $676 = 0, + $677 = 0 + var $678 = 0, + $679 = 0, + $68 = 0, + $680 = 0, + $681 = 0, + $682 = 0, + $683 = 0, + $684 = 0, + $685 = 0, + $686 = 0, + $687 = 0, + $688 = 0, + $689 = 0, + $69 = 0, + $690 = 0, + $691 = 0, + $692 = 0, + $693 = 0, + $694 = 0, + $695 = 0 + var $696 = 0, + $697 = 0, + $698 = 0, + $699 = 0, + $7 = 0, + $70 = 0, + $700 = 0, + $701 = 0, + $702 = 0, + $703 = 0, + $704 = 0, + $705 = 0, + $706 = 0, + $707 = 0, + $708 = 0, + $709 = 0, + $71 = 0, + $710 = 0, + $711 = 0, + $712 = 0 + var $713 = 0, + $714 = 0, + $715 = 0, + $716 = 0, + $717 = 0, + $718 = 0, + $719 = 0, + $72 = 0, + $720 = 0, + $721 = 0, + $722 = 0, + $723 = 0, + $724 = 0, + $725 = 0, + $726 = 0, + $727 = 0, + $728 = 0, + $729 = 0, + $73 = 0, + $730 = 0 + var $731 = 0, + $732 = 0, + $733 = 0, + $734 = 0, + $735 = 0, + $736 = 0, + $737 = 0, + $738 = 0, + $739 = 0, + $74 = 0, + $740 = 0, + $741 = 0, + $742 = 0, + $743 = 0, + $744 = 0, + $745 = 0, + $746 = 0, + $747 = 0, + $748 = 0, + $749 = 0 + var $75 = 0, + $750 = 0, + $751 = 0, + $752 = 0, + $753 = 0, + $754 = 0, + $755 = 0, + $756 = 0, + $757 = 0, + $758 = 0, + $759 = 0, + $76 = 0, + $760 = 0, + $761 = 0, + $762 = 0, + $763 = 0, + $764 = 0, + $765 = 0, + $766 = 0, + $767 = 0 + var $768 = 0, + $769 = 0, + $77 = 0, + $770 = 0, + $771 = 0, + $772 = 0, + $773 = 0, + $774 = 0, + $775 = 0, + $776 = 0, + $777 = 0, + $778 = 0, + $779 = 0, + $78 = 0, + $780 = 0, + $781 = 0, + $782 = 0, + $783 = 0, + $784 = 0, + $785 = 0 + var $786 = 0, + $787 = 0, + $788 = 0, + $789 = 0, + $79 = 0, + $790 = 0, + $791 = 0, + $792 = 0, + $793 = 0, + $794 = 0, + $795 = 0, + $796 = 0, + $797 = 0, + $798 = 0, + $799 = 0, + $8 = 0, + $80 = 0, + $800 = 0, + $801 = 0, + $802 = 0 + var $803 = 0, + $804 = 0, + $805 = 0, + $806 = 0, + $807 = 0, + $808 = 0, + $809 = 0, + $81 = 0, + $810 = 0, + $811 = 0, + $812 = 0, + $813 = 0, + $814 = 0, + $815 = 0, + $816 = 0, + $817 = 0, + $818 = 0, + $819 = 0, + $82 = 0, + $820 = 0 + var $821 = 0, + $822 = 0, + $823 = 0, + $824 = 0, + $825 = 0, + $826 = 0, + $827 = 0, + $828 = 0, + $829 = 0, + $83 = 0, + $830 = 0, + $831 = 0, + $832 = 0, + $833 = 0, + $834 = 0, + $835 = 0, + $836 = 0, + $837 = 0, + $838 = 0, + $839 = 0 + var $84 = 0, + $840 = 0, + $841 = 0, + $842 = 0, + $843 = 0, + $844 = 0, + $845 = 0, + $846 = 0, + $847 = 0, + $848 = 0, + $849 = 0, + $85 = 0, + $850 = 0, + $851 = 0, + $852 = 0, + $853 = 0, + $854 = 0, + $855 = 0, + $856 = 0, + $857 = 0 + var $858 = 0, + $859 = 0, + $86 = 0, + $860 = 0, + $861 = 0, + $862 = 0, + $863 = 0, + $864 = 0, + $865 = 0, + $866 = 0, + $867 = 0, + $868 = 0, + $869 = 0, + $87 = 0, + $870 = 0, + $871 = 0, + $872 = 0, + $873 = 0, + $874 = 0, + $875 = 0 + var $876 = 0, + $877 = 0, + $878 = 0, + $879 = 0, + $88 = 0, + $880 = 0, + $881 = 0, + $882 = 0, + $883 = 0, + $884 = 0, + $885 = 0, + $886 = 0, + $887 = 0, + $888 = 0, + $889 = 0, + $89 = 0, + $890 = 0, + $891 = 0, + $892 = 0, + $893 = 0 + var $894 = 0, + $895 = 0, + $896 = 0, + $897 = 0, + $898 = 0, + $899 = 0, + $9 = 0, + $90 = 0, + $900 = 0, + $901 = 0, + $902 = 0, + $903 = 0, + $904 = 0, + $905 = 0, + $906 = 0, + $907 = 0, + $908 = 0, + $909 = 0, + $91 = 0, + $910 = 0 + var $911 = 0, + $912 = 0, + $913 = 0, + $914 = 0, + $915 = 0, + $916 = 0, + $917 = 0, + $918 = 0, + $919 = 0, + $92 = 0, + $920 = 0, + $921 = 0, + $922 = 0, + $923 = 0, + $924 = 0, + $925 = 0, + $926 = 0, + $927 = 0, + $928 = 0, + $929 = 0 + var $93 = 0, + $930 = 0, + $931 = 0, + $932 = 0, + $933 = 0, + $934 = 0, + $935 = 0, + $936 = 0, + $937 = 0, + $938 = 0, + $939 = 0, + $94 = 0, + $940 = 0, + $941 = 0, + $942 = 0, + $943 = 0, + $944 = 0, + $945 = 0, + $946 = 0, + $947 = 0 + var $948 = 0, + $949 = 0, + $95 = 0, + $950 = 0, + $951 = 0, + $952 = 0, + $953 = 0, + $954 = 0, + $955 = 0, + $956 = 0, + $957 = 0, + $958 = 0, + $959 = 0, + $96 = 0, + $960 = 0, + $961 = 0, + $962 = 0, + $963 = 0, + $964 = 0, + $965 = 0 + var $966 = 0, + $967 = 0, + $968 = 0, + $969 = 0, + $97 = 0, + $970 = 0, + $971 = 0, + $972 = 0, + $973 = 0, + $974 = 0, + $975 = 0, + $976 = 0, + $977 = 0, + $978 = 0, + $979 = 0, + $98 = 0, + $980 = 0, + $981 = 0, + $982 = 0, + $983 = 0 + var $984 = 0, + $985 = 0, + $986 = 0, + $987 = 0, + $988 = 0, + $989 = 0, + $99 = 0, + $990 = 0, + $991 = 0, + $992 = 0, + $993 = 0, + $994 = 0, + $995 = 0, + $996 = 0, + $997 = 0, + $998 = 0, + $999 = 0, + $S = 0, + $W = 0, + $exitcond = 0 + var $exitcond37 = 0, + $i$128 = 0, + $i$227 = 0, + $i$312 = 0, + $scevgep = 0, + dest = 0, + label = 0, + sp = 0, + src = 0, + stop = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 704) | 0 + $S = (sp + 640) | 0 + $W = sp + $scevgep = ($md + 8) | 0 + dest = $S + src = $scevgep + stop = (dest + 64) | 0 + do { + HEAP32[dest >> 2] = HEAP32[src >> 2] | 0 + dest = (dest + 4) | 0 + src = (src + 4) | 0 + } while ((dest | 0) < (stop | 0)) + $i$128 = 0 + while (1) { + $0 = $i$128 << 3 + $1 = ($buf + $0) | 0 + $2 = HEAP8[$1 >> 0] | 0 + $3 = $2 & 255 + $4 = _bitshift64Shl($3 | 0, 0, 56) | 0 + $5 = tempRet0 + $$sum1 = $0 | 1 + $6 = ($buf + $$sum1) | 0 + $7 = HEAP8[$6 >> 0] | 0 + $8 = $7 & 255 + $9 = _bitshift64Shl($8 | 0, 0, 48) | 0 + $10 = tempRet0 + $11 = $9 | $4 + $12 = $10 | $5 + $$sum2 = $0 | 2 + $13 = ($buf + $$sum2) | 0 + $14 = HEAP8[$13 >> 0] | 0 + $15 = $14 & 255 + $16 = _bitshift64Shl($15 | 0, 0, 40) | 0 + $17 = tempRet0 + $18 = $11 | $16 + $19 = $12 | $17 + $$sum3 = $0 | 3 + $20 = ($buf + $$sum3) | 0 + $21 = HEAP8[$20 >> 0] | 0 + $22 = $21 & 255 + $23 = $19 | $22 + $$sum4 = $0 | 4 + $24 = ($buf + $$sum4) | 0 + $25 = HEAP8[$24 >> 0] | 0 + $26 = $25 & 255 + $27 = _bitshift64Shl($26 | 0, 0, 24) | 0 + $28 = tempRet0 + $29 = $18 | $27 + $30 = $23 | $28 + $$sum5 = $0 | 5 + $31 = ($buf + $$sum5) | 0 + $32 = HEAP8[$31 >> 0] | 0 + $33 = $32 & 255 + $34 = _bitshift64Shl($33 | 0, 0, 16) | 0 + $35 = tempRet0 + $36 = $29 | $34 + $37 = $30 | $35 + $$sum6 = $0 | 6 + $38 = ($buf + $$sum6) | 0 + $39 = HEAP8[$38 >> 0] | 0 + $40 = $39 & 255 + $41 = _bitshift64Shl($40 | 0, 0, 8) | 0 + $42 = tempRet0 + $43 = $36 | $41 + $44 = $37 | $42 + $$sum7 = $0 | 7 + $45 = ($buf + $$sum7) | 0 + $46 = HEAP8[$45 >> 0] | 0 + $47 = $46 & 255 + $48 = $43 | $47 + $49 = ($W + ($i$128 << 3)) | 0 + $50 = $49 + $51 = $50 + HEAP32[$51 >> 2] = $48 + $52 = ($50 + 4) | 0 + $53 = $52 + HEAP32[$53 >> 2] = $44 + $54 = ($i$128 + 1) | 0 + $exitcond37 = ($54 | 0) == 16 + if ($exitcond37) { + $i$227 = 16 + break + } else { + $i$128 = $54 + } + } + while (1) { + $110 = ($i$227 + -2) | 0 + $111 = ($W + ($110 << 3)) | 0 + $112 = $111 + $113 = $112 + $114 = HEAP32[$113 >> 2] | 0 + $115 = ($112 + 4) | 0 + $116 = $115 + $117 = HEAP32[$116 >> 2] | 0 + $118 = _bitshift64Lshr($114 | 0, $117 | 0, 19) | 0 + $119 = tempRet0 + $120 = _bitshift64Shl($114 | 0, $117 | 0, 45) | 0 + $121 = tempRet0 + $122 = $118 | $120 + $123 = $119 | $121 + $124 = _bitshift64Lshr($114 | 0, $117 | 0, 61) | 0 + $125 = tempRet0 + $126 = _bitshift64Shl($114 | 0, $117 | 0, 3) | 0 + $127 = tempRet0 + $128 = $124 | $126 + $129 = $125 | $127 + $130 = _bitshift64Lshr($114 | 0, $117 | 0, 6) | 0 + $131 = tempRet0 + $132 = $128 ^ $130 + $133 = $129 ^ $131 + $134 = $132 ^ $122 + $135 = $133 ^ $123 + $136 = ($i$227 + -7) | 0 + $137 = ($W + ($136 << 3)) | 0 + $138 = $137 + $139 = $138 + $140 = HEAP32[$139 >> 2] | 0 + $141 = ($138 + 4) | 0 + $142 = $141 + $143 = HEAP32[$142 >> 2] | 0 + $144 = ($i$227 + -15) | 0 + $145 = ($W + ($144 << 3)) | 0 + $146 = $145 + $147 = $146 + $148 = HEAP32[$147 >> 2] | 0 + $149 = ($146 + 4) | 0 + $150 = $149 + $151 = HEAP32[$150 >> 2] | 0 + $152 = _bitshift64Lshr($148 | 0, $151 | 0, 1) | 0 + $153 = tempRet0 + $154 = _bitshift64Shl($148 | 0, $151 | 0, 63) | 0 + $155 = tempRet0 + $156 = $152 | $154 + $157 = $153 | $155 + $158 = _bitshift64Lshr($148 | 0, $151 | 0, 8) | 0 + $159 = tempRet0 + $160 = _bitshift64Shl($148 | 0, $151 | 0, 56) | 0 + $161 = tempRet0 + $162 = $158 | $160 + $163 = $159 | $161 + $164 = _bitshift64Lshr($148 | 0, $151 | 0, 7) | 0 + $165 = tempRet0 + $166 = $162 ^ $164 + $167 = $163 ^ $165 + $168 = $166 ^ $156 + $169 = $167 ^ $157 + $170 = ($i$227 + -16) | 0 + $171 = ($W + ($170 << 3)) | 0 + $172 = $171 + $173 = $172 + $174 = HEAP32[$173 >> 2] | 0 + $175 = ($172 + 4) | 0 + $176 = $175 + $177 = HEAP32[$176 >> 2] | 0 + $178 = _i64Add($174 | 0, $177 | 0, $140 | 0, $143 | 0) | 0 + $179 = tempRet0 + $180 = _i64Add($178 | 0, $179 | 0, $134 | 0, $135 | 0) | 0 + $181 = tempRet0 + $182 = _i64Add($180 | 0, $181 | 0, $168 | 0, $169 | 0) | 0 + $183 = tempRet0 + $184 = ($W + ($i$227 << 3)) | 0 + $185 = $184 + $186 = $185 + HEAP32[$186 >> 2] = $182 + $187 = ($185 + 4) | 0 + $188 = $187 + HEAP32[$188 >> 2] = $183 + $189 = ($i$227 + 1) | 0 + $exitcond = ($189 | 0) == 80 + if ($exitcond) { + break + } else { + $i$227 = $189 + } + } + $55 = ($S + 56) | 0 + $56 = ($S + 32) | 0 + $57 = ($S + 48) | 0 + $58 = ($S + 40) | 0 + $59 = ($S + 8) | 0 + $60 = ($S + 16) | 0 + $61 = ($S + 24) | 0 + $62 = $55 + $63 = $62 + $64 = HEAP32[$63 >> 2] | 0 + $65 = ($62 + 4) | 0 + $66 = $65 + $67 = HEAP32[$66 >> 2] | 0 + $68 = $56 + $69 = $68 + $70 = HEAP32[$69 >> 2] | 0 + $71 = ($68 + 4) | 0 + $72 = $71 + $73 = HEAP32[$72 >> 2] | 0 + $74 = $57 + $75 = $74 + $76 = HEAP32[$75 >> 2] | 0 + $77 = ($74 + 4) | 0 + $78 = $77 + $79 = HEAP32[$78 >> 2] | 0 + $80 = $58 + $81 = $80 + $82 = HEAP32[$81 >> 2] | 0 + $83 = ($80 + 4) | 0 + $84 = $83 + $85 = HEAP32[$84 >> 2] | 0 + $86 = $S + $87 = $86 + $88 = HEAP32[$87 >> 2] | 0 + $89 = ($86 + 4) | 0 + $90 = $89 + $91 = HEAP32[$90 >> 2] | 0 + $92 = $59 + $93 = $92 + $94 = HEAP32[$93 >> 2] | 0 + $95 = ($92 + 4) | 0 + $96 = $95 + $97 = HEAP32[$96 >> 2] | 0 + $98 = $60 + $99 = $98 + $100 = HEAP32[$99 >> 2] | 0 + $101 = ($98 + 4) | 0 + $102 = $101 + $103 = HEAP32[$102 >> 2] | 0 + $104 = $61 + $105 = $104 + $106 = HEAP32[$105 >> 2] | 0 + $107 = ($104 + 4) | 0 + $108 = $107 + $109 = HEAP32[$108 >> 2] | 0 + $190 = $70 + $191 = $73 + $215 = $82 + $216 = $76 + $218 = $85 + $219 = $79 + $238 = $64 + $239 = $67 + $248 = $88 + $249 = $91 + $273 = $94 + $275 = $97 + $277 = $100 + $279 = $103 + $284 = $106 + $285 = $109 + $i$312 = 0 + while (1) { + $192 = _bitshift64Lshr($190 | 0, $191 | 0, 14) | 0 + $193 = tempRet0 + $194 = _bitshift64Shl($190 | 0, $191 | 0, 50) | 0 + $195 = tempRet0 + $196 = $192 | $194 + $197 = $193 | $195 + $198 = _bitshift64Lshr($190 | 0, $191 | 0, 18) | 0 + $199 = tempRet0 + $200 = _bitshift64Shl($190 | 0, $191 | 0, 46) | 0 + $201 = tempRet0 + $202 = $198 | $200 + $203 = $199 | $201 + $204 = $196 ^ $202 + $205 = $197 ^ $203 + $206 = _bitshift64Lshr($190 | 0, $191 | 0, 41) | 0 + $207 = tempRet0 + $208 = _bitshift64Shl($190 | 0, $191 | 0, 23) | 0 + $209 = tempRet0 + $210 = $206 | $208 + $211 = $207 | $209 + $212 = $204 ^ $210 + $213 = $205 ^ $211 + $214 = $215 ^ $216 + $217 = $218 ^ $219 + $220 = $214 & $190 + $221 = $217 & $191 + $222 = $220 ^ $216 + $223 = $221 ^ $219 + $224 = (8 + ($i$312 << 3)) | 0 + $225 = $224 + $226 = $225 + $227 = HEAP32[$226 >> 2] | 0 + $228 = ($225 + 4) | 0 + $229 = $228 + $230 = HEAP32[$229 >> 2] | 0 + $231 = ($W + ($i$312 << 3)) | 0 + $232 = $231 + $233 = $232 + $234 = HEAP32[$233 >> 2] | 0 + $235 = ($232 + 4) | 0 + $236 = $235 + $237 = HEAP32[$236 >> 2] | 0 + $240 = _i64Add($227 | 0, $230 | 0, $238 | 0, $239 | 0) | 0 + $241 = tempRet0 + $242 = _i64Add($240 | 0, $241 | 0, $212 | 0, $213 | 0) | 0 + $243 = tempRet0 + $244 = _i64Add($242 | 0, $243 | 0, $234 | 0, $237 | 0) | 0 + $245 = tempRet0 + $246 = _i64Add($244 | 0, $245 | 0, $222 | 0, $223 | 0) | 0 + $247 = tempRet0 + $250 = _bitshift64Lshr($248 | 0, $249 | 0, 28) | 0 + $251 = tempRet0 + $252 = _bitshift64Shl($248 | 0, $249 | 0, 36) | 0 + $253 = tempRet0 + $254 = $250 | $252 + $255 = $251 | $253 + $256 = _bitshift64Lshr($248 | 0, $249 | 0, 34) | 0 + $257 = tempRet0 + $258 = _bitshift64Shl($248 | 0, $249 | 0, 30) | 0 + $259 = tempRet0 + $260 = $256 | $258 + $261 = $257 | $259 + $262 = $254 ^ $260 + $263 = $255 ^ $261 + $264 = _bitshift64Lshr($248 | 0, $249 | 0, 39) | 0 + $265 = tempRet0 + $266 = _bitshift64Shl($248 | 0, $249 | 0, 25) | 0 + $267 = tempRet0 + $268 = $264 | $266 + $269 = $265 | $267 + $270 = $262 ^ $268 + $271 = $263 ^ $269 + $272 = $273 | $248 + $274 = $275 | $249 + $276 = $272 & $277 + $278 = $274 & $279 + $280 = $273 & $248 + $281 = $275 & $249 + $282 = $276 | $280 + $283 = $278 | $281 + $286 = _i64Add($284 | 0, $285 | 0, $246 | 0, $247 | 0) | 0 + $287 = tempRet0 + $288 = _i64Add($282 | 0, $283 | 0, $246 | 0, $247 | 0) | 0 + $289 = tempRet0 + $290 = _i64Add($288 | 0, $289 | 0, $270 | 0, $271 | 0) | 0 + $291 = tempRet0 + $292 = _bitshift64Lshr($286 | 0, $287 | 0, 14) | 0 + $293 = tempRet0 + $294 = _bitshift64Shl($286 | 0, $287 | 0, 50) | 0 + $295 = tempRet0 + $296 = $292 | $294 + $297 = $293 | $295 + $298 = _bitshift64Lshr($286 | 0, $287 | 0, 18) | 0 + $299 = tempRet0 + $300 = _bitshift64Shl($286 | 0, $287 | 0, 46) | 0 + $301 = tempRet0 + $302 = $298 | $300 + $303 = $299 | $301 + $304 = $296 ^ $302 + $305 = $297 ^ $303 + $306 = _bitshift64Lshr($286 | 0, $287 | 0, 41) | 0 + $307 = tempRet0 + $308 = _bitshift64Shl($286 | 0, $287 | 0, 23) | 0 + $309 = tempRet0 + $310 = $306 | $308 + $311 = $307 | $309 + $312 = $304 ^ $310 + $313 = $305 ^ $311 + $314 = $190 ^ $215 + $315 = $191 ^ $218 + $316 = $314 & $286 + $317 = $315 & $287 + $318 = $316 ^ $215 + $319 = $317 ^ $218 + $320 = $i$312 | 1 + $321 = (8 + ($320 << 3)) | 0 + $322 = $321 + $323 = $322 + $324 = HEAP32[$323 >> 2] | 0 + $325 = ($322 + 4) | 0 + $326 = $325 + $327 = HEAP32[$326 >> 2] | 0 + $328 = ($W + ($320 << 3)) | 0 + $329 = $328 + $330 = $329 + $331 = HEAP32[$330 >> 2] | 0 + $332 = ($329 + 4) | 0 + $333 = $332 + $334 = HEAP32[$333 >> 2] | 0 + $335 = _i64Add($324 | 0, $327 | 0, $216 | 0, $219 | 0) | 0 + $336 = tempRet0 + $337 = _i64Add($335 | 0, $336 | 0, $312 | 0, $313 | 0) | 0 + $338 = tempRet0 + $339 = _i64Add($337 | 0, $338 | 0, $331 | 0, $334 | 0) | 0 + $340 = tempRet0 + $341 = _i64Add($339 | 0, $340 | 0, $318 | 0, $319 | 0) | 0 + $342 = tempRet0 + $343 = _bitshift64Lshr($290 | 0, $291 | 0, 28) | 0 + $344 = tempRet0 + $345 = _bitshift64Shl($290 | 0, $291 | 0, 36) | 0 + $346 = tempRet0 + $347 = $343 | $345 + $348 = $344 | $346 + $349 = _bitshift64Lshr($290 | 0, $291 | 0, 34) | 0 + $350 = tempRet0 + $351 = _bitshift64Shl($290 | 0, $291 | 0, 30) | 0 + $352 = tempRet0 + $353 = $349 | $351 + $354 = $350 | $352 + $355 = $347 ^ $353 + $356 = $348 ^ $354 + $357 = _bitshift64Lshr($290 | 0, $291 | 0, 39) | 0 + $358 = tempRet0 + $359 = _bitshift64Shl($290 | 0, $291 | 0, 25) | 0 + $360 = tempRet0 + $361 = $357 | $359 + $362 = $358 | $360 + $363 = $355 ^ $361 + $364 = $356 ^ $362 + $365 = $248 | $290 + $366 = $249 | $291 + $367 = $365 & $273 + $368 = $366 & $275 + $369 = $248 & $290 + $370 = $249 & $291 + $371 = $367 | $369 + $372 = $368 | $370 + $373 = _i64Add($371 | 0, $372 | 0, $363 | 0, $364 | 0) | 0 + $374 = tempRet0 + $375 = _i64Add($341 | 0, $342 | 0, $277 | 0, $279 | 0) | 0 + $376 = tempRet0 + $377 = _i64Add($373 | 0, $374 | 0, $341 | 0, $342 | 0) | 0 + $378 = tempRet0 + $379 = _bitshift64Lshr($375 | 0, $376 | 0, 14) | 0 + $380 = tempRet0 + $381 = _bitshift64Shl($375 | 0, $376 | 0, 50) | 0 + $382 = tempRet0 + $383 = $379 | $381 + $384 = $380 | $382 + $385 = _bitshift64Lshr($375 | 0, $376 | 0, 18) | 0 + $386 = tempRet0 + $387 = _bitshift64Shl($375 | 0, $376 | 0, 46) | 0 + $388 = tempRet0 + $389 = $385 | $387 + $390 = $386 | $388 + $391 = $383 ^ $389 + $392 = $384 ^ $390 + $393 = _bitshift64Lshr($375 | 0, $376 | 0, 41) | 0 + $394 = tempRet0 + $395 = _bitshift64Shl($375 | 0, $376 | 0, 23) | 0 + $396 = tempRet0 + $397 = $393 | $395 + $398 = $394 | $396 + $399 = $391 ^ $397 + $400 = $392 ^ $398 + $401 = $286 ^ $190 + $402 = $287 ^ $191 + $403 = $401 & $375 + $404 = $402 & $376 + $405 = $403 ^ $190 + $406 = $404 ^ $191 + $407 = $i$312 | 2 + $408 = (8 + ($407 << 3)) | 0 + $409 = $408 + $410 = $409 + $411 = HEAP32[$410 >> 2] | 0 + $412 = ($409 + 4) | 0 + $413 = $412 + $414 = HEAP32[$413 >> 2] | 0 + $415 = ($W + ($407 << 3)) | 0 + $416 = $415 + $417 = $416 + $418 = HEAP32[$417 >> 2] | 0 + $419 = ($416 + 4) | 0 + $420 = $419 + $421 = HEAP32[$420 >> 2] | 0 + $422 = _i64Add($411 | 0, $414 | 0, $215 | 0, $218 | 0) | 0 + $423 = tempRet0 + $424 = _i64Add($422 | 0, $423 | 0, $399 | 0, $400 | 0) | 0 + $425 = tempRet0 + $426 = _i64Add($424 | 0, $425 | 0, $418 | 0, $421 | 0) | 0 + $427 = tempRet0 + $428 = _i64Add($426 | 0, $427 | 0, $405 | 0, $406 | 0) | 0 + $429 = tempRet0 + $430 = _bitshift64Lshr($377 | 0, $378 | 0, 28) | 0 + $431 = tempRet0 + $432 = _bitshift64Shl($377 | 0, $378 | 0, 36) | 0 + $433 = tempRet0 + $434 = $430 | $432 + $435 = $431 | $433 + $436 = _bitshift64Lshr($377 | 0, $378 | 0, 34) | 0 + $437 = tempRet0 + $438 = _bitshift64Shl($377 | 0, $378 | 0, 30) | 0 + $439 = tempRet0 + $440 = $436 | $438 + $441 = $437 | $439 + $442 = $434 ^ $440 + $443 = $435 ^ $441 + $444 = _bitshift64Lshr($377 | 0, $378 | 0, 39) | 0 + $445 = tempRet0 + $446 = _bitshift64Shl($377 | 0, $378 | 0, 25) | 0 + $447 = tempRet0 + $448 = $444 | $446 + $449 = $445 | $447 + $450 = $442 ^ $448 + $451 = $443 ^ $449 + $452 = $290 | $377 + $453 = $291 | $378 + $454 = $452 & $248 + $455 = $453 & $249 + $456 = $290 & $377 + $457 = $291 & $378 + $458 = $454 | $456 + $459 = $455 | $457 + $460 = _i64Add($458 | 0, $459 | 0, $450 | 0, $451 | 0) | 0 + $461 = tempRet0 + $462 = _i64Add($428 | 0, $429 | 0, $273 | 0, $275 | 0) | 0 + $463 = tempRet0 + $464 = _i64Add($460 | 0, $461 | 0, $428 | 0, $429 | 0) | 0 + $465 = tempRet0 + $466 = _bitshift64Lshr($462 | 0, $463 | 0, 14) | 0 + $467 = tempRet0 + $468 = _bitshift64Shl($462 | 0, $463 | 0, 50) | 0 + $469 = tempRet0 + $470 = $466 | $468 + $471 = $467 | $469 + $472 = _bitshift64Lshr($462 | 0, $463 | 0, 18) | 0 + $473 = tempRet0 + $474 = _bitshift64Shl($462 | 0, $463 | 0, 46) | 0 + $475 = tempRet0 + $476 = $472 | $474 + $477 = $473 | $475 + $478 = $470 ^ $476 + $479 = $471 ^ $477 + $480 = _bitshift64Lshr($462 | 0, $463 | 0, 41) | 0 + $481 = tempRet0 + $482 = _bitshift64Shl($462 | 0, $463 | 0, 23) | 0 + $483 = tempRet0 + $484 = $480 | $482 + $485 = $481 | $483 + $486 = $478 ^ $484 + $487 = $479 ^ $485 + $488 = $375 ^ $286 + $489 = $376 ^ $287 + $490 = $488 & $462 + $491 = $489 & $463 + $492 = $490 ^ $286 + $493 = $491 ^ $287 + $494 = $i$312 | 3 + $495 = (8 + ($494 << 3)) | 0 + $496 = $495 + $497 = $496 + $498 = HEAP32[$497 >> 2] | 0 + $499 = ($496 + 4) | 0 + $500 = $499 + $501 = HEAP32[$500 >> 2] | 0 + $502 = ($W + ($494 << 3)) | 0 + $503 = $502 + $504 = $503 + $505 = HEAP32[$504 >> 2] | 0 + $506 = ($503 + 4) | 0 + $507 = $506 + $508 = HEAP32[$507 >> 2] | 0 + $509 = _i64Add($498 | 0, $501 | 0, $190 | 0, $191 | 0) | 0 + $510 = tempRet0 + $511 = _i64Add($509 | 0, $510 | 0, $486 | 0, $487 | 0) | 0 + $512 = tempRet0 + $513 = _i64Add($511 | 0, $512 | 0, $505 | 0, $508 | 0) | 0 + $514 = tempRet0 + $515 = _i64Add($513 | 0, $514 | 0, $492 | 0, $493 | 0) | 0 + $516 = tempRet0 + $517 = _bitshift64Lshr($464 | 0, $465 | 0, 28) | 0 + $518 = tempRet0 + $519 = _bitshift64Shl($464 | 0, $465 | 0, 36) | 0 + $520 = tempRet0 + $521 = $517 | $519 + $522 = $518 | $520 + $523 = _bitshift64Lshr($464 | 0, $465 | 0, 34) | 0 + $524 = tempRet0 + $525 = _bitshift64Shl($464 | 0, $465 | 0, 30) | 0 + $526 = tempRet0 + $527 = $523 | $525 + $528 = $524 | $526 + $529 = $521 ^ $527 + $530 = $522 ^ $528 + $531 = _bitshift64Lshr($464 | 0, $465 | 0, 39) | 0 + $532 = tempRet0 + $533 = _bitshift64Shl($464 | 0, $465 | 0, 25) | 0 + $534 = tempRet0 + $535 = $531 | $533 + $536 = $532 | $534 + $537 = $529 ^ $535 + $538 = $530 ^ $536 + $539 = $377 | $464 + $540 = $378 | $465 + $541 = $539 & $290 + $542 = $540 & $291 + $543 = $377 & $464 + $544 = $378 & $465 + $545 = $541 | $543 + $546 = $542 | $544 + $547 = _i64Add($545 | 0, $546 | 0, $537 | 0, $538 | 0) | 0 + $548 = tempRet0 + $549 = _i64Add($515 | 0, $516 | 0, $248 | 0, $249 | 0) | 0 + $550 = tempRet0 + $551 = _i64Add($547 | 0, $548 | 0, $515 | 0, $516 | 0) | 0 + $552 = tempRet0 + $553 = _bitshift64Lshr($549 | 0, $550 | 0, 14) | 0 + $554 = tempRet0 + $555 = _bitshift64Shl($549 | 0, $550 | 0, 50) | 0 + $556 = tempRet0 + $557 = $553 | $555 + $558 = $554 | $556 + $559 = _bitshift64Lshr($549 | 0, $550 | 0, 18) | 0 + $560 = tempRet0 + $561 = _bitshift64Shl($549 | 0, $550 | 0, 46) | 0 + $562 = tempRet0 + $563 = $559 | $561 + $564 = $560 | $562 + $565 = $557 ^ $563 + $566 = $558 ^ $564 + $567 = _bitshift64Lshr($549 | 0, $550 | 0, 41) | 0 + $568 = tempRet0 + $569 = _bitshift64Shl($549 | 0, $550 | 0, 23) | 0 + $570 = tempRet0 + $571 = $567 | $569 + $572 = $568 | $570 + $573 = $565 ^ $571 + $574 = $566 ^ $572 + $575 = $462 ^ $375 + $576 = $463 ^ $376 + $577 = $575 & $549 + $578 = $576 & $550 + $579 = $577 ^ $375 + $580 = $578 ^ $376 + $581 = $i$312 | 4 + $582 = (8 + ($581 << 3)) | 0 + $583 = $582 + $584 = $583 + $585 = HEAP32[$584 >> 2] | 0 + $586 = ($583 + 4) | 0 + $587 = $586 + $588 = HEAP32[$587 >> 2] | 0 + $589 = ($W + ($581 << 3)) | 0 + $590 = $589 + $591 = $590 + $592 = HEAP32[$591 >> 2] | 0 + $593 = ($590 + 4) | 0 + $594 = $593 + $595 = HEAP32[$594 >> 2] | 0 + $596 = _i64Add($585 | 0, $588 | 0, $286 | 0, $287 | 0) | 0 + $597 = tempRet0 + $598 = _i64Add($596 | 0, $597 | 0, $573 | 0, $574 | 0) | 0 + $599 = tempRet0 + $600 = _i64Add($598 | 0, $599 | 0, $592 | 0, $595 | 0) | 0 + $601 = tempRet0 + $602 = _i64Add($600 | 0, $601 | 0, $579 | 0, $580 | 0) | 0 + $603 = tempRet0 + $604 = _bitshift64Lshr($551 | 0, $552 | 0, 28) | 0 + $605 = tempRet0 + $606 = _bitshift64Shl($551 | 0, $552 | 0, 36) | 0 + $607 = tempRet0 + $608 = $604 | $606 + $609 = $605 | $607 + $610 = _bitshift64Lshr($551 | 0, $552 | 0, 34) | 0 + $611 = tempRet0 + $612 = _bitshift64Shl($551 | 0, $552 | 0, 30) | 0 + $613 = tempRet0 + $614 = $610 | $612 + $615 = $611 | $613 + $616 = $608 ^ $614 + $617 = $609 ^ $615 + $618 = _bitshift64Lshr($551 | 0, $552 | 0, 39) | 0 + $619 = tempRet0 + $620 = _bitshift64Shl($551 | 0, $552 | 0, 25) | 0 + $621 = tempRet0 + $622 = $618 | $620 + $623 = $619 | $621 + $624 = $616 ^ $622 + $625 = $617 ^ $623 + $626 = $464 | $551 + $627 = $465 | $552 + $628 = $626 & $377 + $629 = $627 & $378 + $630 = $464 & $551 + $631 = $465 & $552 + $632 = $628 | $630 + $633 = $629 | $631 + $634 = _i64Add($632 | 0, $633 | 0, $624 | 0, $625 | 0) | 0 + $635 = tempRet0 + $636 = _i64Add($602 | 0, $603 | 0, $290 | 0, $291 | 0) | 0 + $637 = tempRet0 + $638 = _i64Add($634 | 0, $635 | 0, $602 | 0, $603 | 0) | 0 + $639 = tempRet0 + $640 = _bitshift64Lshr($636 | 0, $637 | 0, 14) | 0 + $641 = tempRet0 + $642 = _bitshift64Shl($636 | 0, $637 | 0, 50) | 0 + $643 = tempRet0 + $644 = $640 | $642 + $645 = $641 | $643 + $646 = _bitshift64Lshr($636 | 0, $637 | 0, 18) | 0 + $647 = tempRet0 + $648 = _bitshift64Shl($636 | 0, $637 | 0, 46) | 0 + $649 = tempRet0 + $650 = $646 | $648 + $651 = $647 | $649 + $652 = $644 ^ $650 + $653 = $645 ^ $651 + $654 = _bitshift64Lshr($636 | 0, $637 | 0, 41) | 0 + $655 = tempRet0 + $656 = _bitshift64Shl($636 | 0, $637 | 0, 23) | 0 + $657 = tempRet0 + $658 = $654 | $656 + $659 = $655 | $657 + $660 = $652 ^ $658 + $661 = $653 ^ $659 + $662 = $549 ^ $462 + $663 = $550 ^ $463 + $664 = $662 & $636 + $665 = $663 & $637 + $666 = $664 ^ $462 + $667 = $665 ^ $463 + $668 = $i$312 | 5 + $669 = (8 + ($668 << 3)) | 0 + $670 = $669 + $671 = $670 + $672 = HEAP32[$671 >> 2] | 0 + $673 = ($670 + 4) | 0 + $674 = $673 + $675 = HEAP32[$674 >> 2] | 0 + $676 = ($W + ($668 << 3)) | 0 + $677 = $676 + $678 = $677 + $679 = HEAP32[$678 >> 2] | 0 + $680 = ($677 + 4) | 0 + $681 = $680 + $682 = HEAP32[$681 >> 2] | 0 + $683 = _i64Add($672 | 0, $675 | 0, $375 | 0, $376 | 0) | 0 + $684 = tempRet0 + $685 = _i64Add($683 | 0, $684 | 0, $660 | 0, $661 | 0) | 0 + $686 = tempRet0 + $687 = _i64Add($685 | 0, $686 | 0, $679 | 0, $682 | 0) | 0 + $688 = tempRet0 + $689 = _i64Add($687 | 0, $688 | 0, $666 | 0, $667 | 0) | 0 + $690 = tempRet0 + $691 = _bitshift64Lshr($638 | 0, $639 | 0, 28) | 0 + $692 = tempRet0 + $693 = _bitshift64Shl($638 | 0, $639 | 0, 36) | 0 + $694 = tempRet0 + $695 = $691 | $693 + $696 = $692 | $694 + $697 = _bitshift64Lshr($638 | 0, $639 | 0, 34) | 0 + $698 = tempRet0 + $699 = _bitshift64Shl($638 | 0, $639 | 0, 30) | 0 + $700 = tempRet0 + $701 = $697 | $699 + $702 = $698 | $700 + $703 = $695 ^ $701 + $704 = $696 ^ $702 + $705 = _bitshift64Lshr($638 | 0, $639 | 0, 39) | 0 + $706 = tempRet0 + $707 = _bitshift64Shl($638 | 0, $639 | 0, 25) | 0 + $708 = tempRet0 + $709 = $705 | $707 + $710 = $706 | $708 + $711 = $703 ^ $709 + $712 = $704 ^ $710 + $713 = $551 | $638 + $714 = $552 | $639 + $715 = $713 & $464 + $716 = $714 & $465 + $717 = $551 & $638 + $718 = $552 & $639 + $719 = $715 | $717 + $720 = $716 | $718 + $721 = _i64Add($719 | 0, $720 | 0, $711 | 0, $712 | 0) | 0 + $722 = tempRet0 + $723 = _i64Add($689 | 0, $690 | 0, $377 | 0, $378 | 0) | 0 + $724 = tempRet0 + $725 = _i64Add($721 | 0, $722 | 0, $689 | 0, $690 | 0) | 0 + $726 = tempRet0 + $727 = _bitshift64Lshr($723 | 0, $724 | 0, 14) | 0 + $728 = tempRet0 + $729 = _bitshift64Shl($723 | 0, $724 | 0, 50) | 0 + $730 = tempRet0 + $731 = $727 | $729 + $732 = $728 | $730 + $733 = _bitshift64Lshr($723 | 0, $724 | 0, 18) | 0 + $734 = tempRet0 + $735 = _bitshift64Shl($723 | 0, $724 | 0, 46) | 0 + $736 = tempRet0 + $737 = $733 | $735 + $738 = $734 | $736 + $739 = $731 ^ $737 + $740 = $732 ^ $738 + $741 = _bitshift64Lshr($723 | 0, $724 | 0, 41) | 0 + $742 = tempRet0 + $743 = _bitshift64Shl($723 | 0, $724 | 0, 23) | 0 + $744 = tempRet0 + $745 = $741 | $743 + $746 = $742 | $744 + $747 = $739 ^ $745 + $748 = $740 ^ $746 + $749 = $636 ^ $549 + $750 = $637 ^ $550 + $751 = $749 & $723 + $752 = $750 & $724 + $753 = $751 ^ $549 + $754 = $752 ^ $550 + $755 = $i$312 | 6 + $756 = (8 + ($755 << 3)) | 0 + $757 = $756 + $758 = $757 + $759 = HEAP32[$758 >> 2] | 0 + $760 = ($757 + 4) | 0 + $761 = $760 + $762 = HEAP32[$761 >> 2] | 0 + $763 = ($W + ($755 << 3)) | 0 + $764 = $763 + $765 = $764 + $766 = HEAP32[$765 >> 2] | 0 + $767 = ($764 + 4) | 0 + $768 = $767 + $769 = HEAP32[$768 >> 2] | 0 + $770 = _i64Add($759 | 0, $762 | 0, $462 | 0, $463 | 0) | 0 + $771 = tempRet0 + $772 = _i64Add($770 | 0, $771 | 0, $747 | 0, $748 | 0) | 0 + $773 = tempRet0 + $774 = _i64Add($772 | 0, $773 | 0, $766 | 0, $769 | 0) | 0 + $775 = tempRet0 + $776 = _i64Add($774 | 0, $775 | 0, $753 | 0, $754 | 0) | 0 + $777 = tempRet0 + $778 = _bitshift64Lshr($725 | 0, $726 | 0, 28) | 0 + $779 = tempRet0 + $780 = _bitshift64Shl($725 | 0, $726 | 0, 36) | 0 + $781 = tempRet0 + $782 = $778 | $780 + $783 = $779 | $781 + $784 = _bitshift64Lshr($725 | 0, $726 | 0, 34) | 0 + $785 = tempRet0 + $786 = _bitshift64Shl($725 | 0, $726 | 0, 30) | 0 + $787 = tempRet0 + $788 = $784 | $786 + $789 = $785 | $787 + $790 = $782 ^ $788 + $791 = $783 ^ $789 + $792 = _bitshift64Lshr($725 | 0, $726 | 0, 39) | 0 + $793 = tempRet0 + $794 = _bitshift64Shl($725 | 0, $726 | 0, 25) | 0 + $795 = tempRet0 + $796 = $792 | $794 + $797 = $793 | $795 + $798 = $790 ^ $796 + $799 = $791 ^ $797 + $800 = $638 | $725 + $801 = $639 | $726 + $802 = $800 & $551 + $803 = $801 & $552 + $804 = $638 & $725 + $805 = $639 & $726 + $806 = $802 | $804 + $807 = $803 | $805 + $808 = _i64Add($806 | 0, $807 | 0, $798 | 0, $799 | 0) | 0 + $809 = tempRet0 + $810 = _i64Add($776 | 0, $777 | 0, $464 | 0, $465 | 0) | 0 + $811 = tempRet0 + $812 = _i64Add($808 | 0, $809 | 0, $776 | 0, $777 | 0) | 0 + $813 = tempRet0 + $814 = _bitshift64Lshr($810 | 0, $811 | 0, 14) | 0 + $815 = tempRet0 + $816 = _bitshift64Shl($810 | 0, $811 | 0, 50) | 0 + $817 = tempRet0 + $818 = $814 | $816 + $819 = $815 | $817 + $820 = _bitshift64Lshr($810 | 0, $811 | 0, 18) | 0 + $821 = tempRet0 + $822 = _bitshift64Shl($810 | 0, $811 | 0, 46) | 0 + $823 = tempRet0 + $824 = $820 | $822 + $825 = $821 | $823 + $826 = $818 ^ $824 + $827 = $819 ^ $825 + $828 = _bitshift64Lshr($810 | 0, $811 | 0, 41) | 0 + $829 = tempRet0 + $830 = _bitshift64Shl($810 | 0, $811 | 0, 23) | 0 + $831 = tempRet0 + $832 = $828 | $830 + $833 = $829 | $831 + $834 = $826 ^ $832 + $835 = $827 ^ $833 + $836 = $723 ^ $636 + $837 = $724 ^ $637 + $838 = $836 & $810 + $839 = $837 & $811 + $840 = $838 ^ $636 + $841 = $839 ^ $637 + $842 = $i$312 | 7 + $843 = (8 + ($842 << 3)) | 0 + $844 = $843 + $845 = $844 + $846 = HEAP32[$845 >> 2] | 0 + $847 = ($844 + 4) | 0 + $848 = $847 + $849 = HEAP32[$848 >> 2] | 0 + $850 = ($W + ($842 << 3)) | 0 + $851 = $850 + $852 = $851 + $853 = HEAP32[$852 >> 2] | 0 + $854 = ($851 + 4) | 0 + $855 = $854 + $856 = HEAP32[$855 >> 2] | 0 + $857 = _i64Add($846 | 0, $849 | 0, $549 | 0, $550 | 0) | 0 + $858 = tempRet0 + $859 = _i64Add($857 | 0, $858 | 0, $834 | 0, $835 | 0) | 0 + $860 = tempRet0 + $861 = _i64Add($859 | 0, $860 | 0, $853 | 0, $856 | 0) | 0 + $862 = tempRet0 + $863 = _i64Add($861 | 0, $862 | 0, $840 | 0, $841 | 0) | 0 + $864 = tempRet0 + $865 = _bitshift64Lshr($812 | 0, $813 | 0, 28) | 0 + $866 = tempRet0 + $867 = _bitshift64Shl($812 | 0, $813 | 0, 36) | 0 + $868 = tempRet0 + $869 = $865 | $867 + $870 = $866 | $868 + $871 = _bitshift64Lshr($812 | 0, $813 | 0, 34) | 0 + $872 = tempRet0 + $873 = _bitshift64Shl($812 | 0, $813 | 0, 30) | 0 + $874 = tempRet0 + $875 = $871 | $873 + $876 = $872 | $874 + $877 = $869 ^ $875 + $878 = $870 ^ $876 + $879 = _bitshift64Lshr($812 | 0, $813 | 0, 39) | 0 + $880 = tempRet0 + $881 = _bitshift64Shl($812 | 0, $813 | 0, 25) | 0 + $882 = tempRet0 + $883 = $879 | $881 + $884 = $880 | $882 + $885 = $877 ^ $883 + $886 = $878 ^ $884 + $887 = $725 | $812 + $888 = $726 | $813 + $889 = $887 & $638 + $890 = $888 & $639 + $891 = $725 & $812 + $892 = $726 & $813 + $893 = $889 | $891 + $894 = $890 | $892 + $895 = _i64Add($893 | 0, $894 | 0, $885 | 0, $886 | 0) | 0 + $896 = tempRet0 + $897 = _i64Add($863 | 0, $864 | 0, $551 | 0, $552 | 0) | 0 + $898 = tempRet0 + $899 = _i64Add($895 | 0, $896 | 0, $863 | 0, $864 | 0) | 0 + $900 = tempRet0 + $901 = ($i$312 + 8) | 0 + $902 = ($901 | 0) < 80 + if ($902) { + $190 = $897 + $191 = $898 + $215 = $810 + $216 = $723 + $218 = $811 + $219 = $724 + $238 = $636 + $239 = $637 + $248 = $899 + $249 = $900 + $273 = $812 + $275 = $813 + $277 = $725 + $279 = $726 + $284 = $638 + $285 = $639 + $i$312 = $901 + } else { + $905 = $636 + $908 = $637 + $911 = $897 + $914 = $898 + $917 = $723 + $920 = $724 + $923 = $810 + $926 = $811 + $929 = $899 + $932 = $900 + $935 = $812 + $938 = $813 + $941 = $725 + $944 = $726 + $947 = $638 + $950 = $639 + break + } + } + $903 = $55 + $904 = $903 + HEAP32[$904 >> 2] = $905 + $906 = ($903 + 4) | 0 + $907 = $906 + HEAP32[$907 >> 2] = $908 + $909 = $56 + $910 = $909 + HEAP32[$910 >> 2] = $911 + $912 = ($909 + 4) | 0 + $913 = $912 + HEAP32[$913 >> 2] = $914 + $915 = $57 + $916 = $915 + HEAP32[$916 >> 2] = $917 + $918 = ($915 + 4) | 0 + $919 = $918 + HEAP32[$919 >> 2] = $920 + $921 = $58 + $922 = $921 + HEAP32[$922 >> 2] = $923 + $924 = ($921 + 4) | 0 + $925 = $924 + HEAP32[$925 >> 2] = $926 + $927 = $S + $928 = $927 + HEAP32[$928 >> 2] = $929 + $930 = ($927 + 4) | 0 + $931 = $930 + HEAP32[$931 >> 2] = $932 + $933 = $59 + $934 = $933 + HEAP32[$934 >> 2] = $935 + $936 = ($933 + 4) | 0 + $937 = $936 + HEAP32[$937 >> 2] = $938 + $939 = $60 + $940 = $939 + HEAP32[$940 >> 2] = $941 + $942 = ($939 + 4) | 0 + $943 = $942 + HEAP32[$943 >> 2] = $944 + $945 = $61 + $946 = $945 + HEAP32[$946 >> 2] = $947 + $948 = ($945 + 4) | 0 + $949 = $948 + HEAP32[$949 >> 2] = $950 + $951 = ($md + 8) | 0 + $952 = $951 + $953 = $952 + $954 = HEAP32[$953 >> 2] | 0 + $955 = ($952 + 4) | 0 + $956 = $955 + $957 = HEAP32[$956 >> 2] | 0 + $958 = $S + $959 = $958 + $960 = HEAP32[$959 >> 2] | 0 + $961 = ($958 + 4) | 0 + $962 = $961 + $963 = HEAP32[$962 >> 2] | 0 + $964 = _i64Add($960 | 0, $963 | 0, $954 | 0, $957 | 0) | 0 + $965 = tempRet0 + $966 = $951 + $967 = $966 + HEAP32[$967 >> 2] = $964 + $968 = ($966 + 4) | 0 + $969 = $968 + HEAP32[$969 >> 2] = $965 + $970 = ($md + 16) | 0 + $971 = $970 + $972 = $971 + $973 = HEAP32[$972 >> 2] | 0 + $974 = ($971 + 4) | 0 + $975 = $974 + $976 = HEAP32[$975 >> 2] | 0 + $977 = ($S + 8) | 0 + $978 = $977 + $979 = $978 + $980 = HEAP32[$979 >> 2] | 0 + $981 = ($978 + 4) | 0 + $982 = $981 + $983 = HEAP32[$982 >> 2] | 0 + $984 = _i64Add($980 | 0, $983 | 0, $973 | 0, $976 | 0) | 0 + $985 = tempRet0 + $986 = $970 + $987 = $986 + HEAP32[$987 >> 2] = $984 + $988 = ($986 + 4) | 0 + $989 = $988 + HEAP32[$989 >> 2] = $985 + $990 = ($md + 24) | 0 + $991 = $990 + $992 = $991 + $993 = HEAP32[$992 >> 2] | 0 + $994 = ($991 + 4) | 0 + $995 = $994 + $996 = HEAP32[$995 >> 2] | 0 + $997 = ($S + 16) | 0 + $998 = $997 + $999 = $998 + $1000 = HEAP32[$999 >> 2] | 0 + $1001 = ($998 + 4) | 0 + $1002 = $1001 + $1003 = HEAP32[$1002 >> 2] | 0 + $1004 = _i64Add($1000 | 0, $1003 | 0, $993 | 0, $996 | 0) | 0 + $1005 = tempRet0 + $1006 = $990 + $1007 = $1006 + HEAP32[$1007 >> 2] = $1004 + $1008 = ($1006 + 4) | 0 + $1009 = $1008 + HEAP32[$1009 >> 2] = $1005 + $1010 = ($md + 32) | 0 + $1011 = $1010 + $1012 = $1011 + $1013 = HEAP32[$1012 >> 2] | 0 + $1014 = ($1011 + 4) | 0 + $1015 = $1014 + $1016 = HEAP32[$1015 >> 2] | 0 + $1017 = ($S + 24) | 0 + $1018 = $1017 + $1019 = $1018 + $1020 = HEAP32[$1019 >> 2] | 0 + $1021 = ($1018 + 4) | 0 + $1022 = $1021 + $1023 = HEAP32[$1022 >> 2] | 0 + $1024 = _i64Add($1020 | 0, $1023 | 0, $1013 | 0, $1016 | 0) | 0 + $1025 = tempRet0 + $1026 = $1010 + $1027 = $1026 + HEAP32[$1027 >> 2] = $1024 + $1028 = ($1026 + 4) | 0 + $1029 = $1028 + HEAP32[$1029 >> 2] = $1025 + $1030 = ($md + 40) | 0 + $1031 = $1030 + $1032 = $1031 + $1033 = HEAP32[$1032 >> 2] | 0 + $1034 = ($1031 + 4) | 0 + $1035 = $1034 + $1036 = HEAP32[$1035 >> 2] | 0 + $1037 = ($S + 32) | 0 + $1038 = $1037 + $1039 = $1038 + $1040 = HEAP32[$1039 >> 2] | 0 + $1041 = ($1038 + 4) | 0 + $1042 = $1041 + $1043 = HEAP32[$1042 >> 2] | 0 + $1044 = _i64Add($1040 | 0, $1043 | 0, $1033 | 0, $1036 | 0) | 0 + $1045 = tempRet0 + $1046 = $1030 + $1047 = $1046 + HEAP32[$1047 >> 2] = $1044 + $1048 = ($1046 + 4) | 0 + $1049 = $1048 + HEAP32[$1049 >> 2] = $1045 + $1050 = ($md + 48) | 0 + $1051 = $1050 + $1052 = $1051 + $1053 = HEAP32[$1052 >> 2] | 0 + $1054 = ($1051 + 4) | 0 + $1055 = $1054 + $1056 = HEAP32[$1055 >> 2] | 0 + $1057 = ($S + 40) | 0 + $1058 = $1057 + $1059 = $1058 + $1060 = HEAP32[$1059 >> 2] | 0 + $1061 = ($1058 + 4) | 0 + $1062 = $1061 + $1063 = HEAP32[$1062 >> 2] | 0 + $1064 = _i64Add($1060 | 0, $1063 | 0, $1053 | 0, $1056 | 0) | 0 + $1065 = tempRet0 + $1066 = $1050 + $1067 = $1066 + HEAP32[$1067 >> 2] = $1064 + $1068 = ($1066 + 4) | 0 + $1069 = $1068 + HEAP32[$1069 >> 2] = $1065 + $1070 = ($md + 56) | 0 + $1071 = $1070 + $1072 = $1071 + $1073 = HEAP32[$1072 >> 2] | 0 + $1074 = ($1071 + 4) | 0 + $1075 = $1074 + $1076 = HEAP32[$1075 >> 2] | 0 + $1077 = ($S + 48) | 0 + $1078 = $1077 + $1079 = $1078 + $1080 = HEAP32[$1079 >> 2] | 0 + $1081 = ($1078 + 4) | 0 + $1082 = $1081 + $1083 = HEAP32[$1082 >> 2] | 0 + $1084 = _i64Add($1080 | 0, $1083 | 0, $1073 | 0, $1076 | 0) | 0 + $1085 = tempRet0 + $1086 = $1070 + $1087 = $1086 + HEAP32[$1087 >> 2] = $1084 + $1088 = ($1086 + 4) | 0 + $1089 = $1088 + HEAP32[$1089 >> 2] = $1085 + $1090 = ($md + 64) | 0 + $1091 = $1090 + $1092 = $1091 + $1093 = HEAP32[$1092 >> 2] | 0 + $1094 = ($1091 + 4) | 0 + $1095 = $1094 + $1096 = HEAP32[$1095 >> 2] | 0 + $1097 = ($S + 56) | 0 + $1098 = $1097 + $1099 = $1098 + $1100 = HEAP32[$1099 >> 2] | 0 + $1101 = ($1098 + 4) | 0 + $1102 = $1101 + $1103 = HEAP32[$1102 >> 2] | 0 + $1104 = _i64Add($1100 | 0, $1103 | 0, $1093 | 0, $1096 | 0) | 0 + $1105 = tempRet0 + $1106 = $1090 + $1107 = $1106 + HEAP32[$1107 >> 2] = $1104 + $1108 = ($1106 + 4) | 0 + $1109 = $1108 + HEAP32[$1109 >> 2] = $1105 + STACKTOP = sp + return + } + function _ed25519_sign( + $signature, + $message, + $message_len, + $public_key, + $private_key + ) { + $signature = $signature | 0 + $message = $message | 0 + $message_len = $message_len | 0 + $public_key = $public_key | 0 + $private_key = $private_key | 0 + var $0 = 0, + $1 = 0, + $R = 0, + $hash = 0, + $hram = 0, + $r = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 496) | 0 + $hash = sp + $hram = (sp + 432) | 0 + $r = (sp + 368) | 0 + $R = (sp + 208) | 0 + _sha512_init($hash) | 0 + $0 = ($private_key + 32) | 0 + _sha512_update($hash, $0, 32) | 0 + _sha512_update($hash, $message, $message_len) | 0 + _sha512_final($hash, $r) | 0 + _sc_reduce($r) + _ge_scalarmult_base($R, $r) + _ge_p3_tobytes($signature, $R) + _sha512_init($hash) | 0 + _sha512_update($hash, $signature, 32) | 0 + _sha512_update($hash, $public_key, 32) | 0 + _sha512_update($hash, $message, $message_len) | 0 + _sha512_final($hash, $hram) | 0 + _sc_reduce($hram) + $1 = ($signature + 32) | 0 + _sc_muladd($1, $hram, $private_key, $r) + STACKTOP = sp + return + } + function _ed25519_verify( + $signature, + $message, + $message_len, + $public_key + ) { + $signature = $signature | 0 + $message = $message | 0 + $message_len = $message_len | 0 + $public_key = $public_key | 0 + var $$ = 0, + $$0 = 0, + $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $A = 0, + $R = 0, + $checker = 0, + $h = 0, + $hash = 0, + $not$ = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 592) | 0 + $h = (sp + 520) | 0 + $checker = (sp + 488) | 0 + $hash = sp + $A = (sp + 328) | 0 + $R = (sp + 208) | 0 + $0 = ($signature + 63) | 0 + $1 = HEAP8[$0 >> 0] | 0 + $2 = ($1 & 255) > 31 + if ($2) { + $$0 = 0 + STACKTOP = sp + return $$0 | 0 + } + $3 = _ge_frombytes_negate_vartime($A, $public_key) | 0 + $4 = ($3 | 0) == 0 + if (!$4) { + $$0 = 0 + STACKTOP = sp + return $$0 | 0 + } + _sha512_init($hash) | 0 + _sha512_update($hash, $signature, 32) | 0 + _sha512_update($hash, $public_key, 32) | 0 + _sha512_update($hash, $message, $message_len) | 0 + _sha512_final($hash, $h) | 0 + _sc_reduce($h) + $5 = ($signature + 32) | 0 + _ge_double_scalarmult_vartime($R, $h, $A, $5) + _ge_tobytes($checker, $R) + $6 = _consttime_equal($checker, $signature) | 0 + $not$ = ($6 | 0) != 0 + $$ = $not$ & 1 + $$0 = $$ + STACKTOP = sp + return $$0 | 0 + } + function _consttime_equal($x, $y) { + $x = $x | 0 + $y = $y | 0 + var $0 = 0, + $1 = 0, + $10 = 0, + $100 = 0, + $101 = 0, + $102 = 0, + $103 = 0, + $104 = 0, + $105 = 0, + $106 = 0, + $107 = 0, + $108 = 0, + $109 = 0, + $11 = 0, + $110 = 0, + $111 = 0, + $112 = 0, + $113 = 0, + $114 = 0, + $115 = 0 + var $116 = 0, + $117 = 0, + $118 = 0, + $119 = 0, + $12 = 0, + $120 = 0, + $121 = 0, + $122 = 0, + $123 = 0, + $124 = 0, + $125 = 0, + $126 = 0, + $127 = 0, + $128 = 0, + $129 = 0, + $13 = 0, + $130 = 0, + $131 = 0, + $132 = 0, + $133 = 0 + var $134 = 0, + $135 = 0, + $136 = 0, + $137 = 0, + $138 = 0, + $139 = 0, + $14 = 0, + $140 = 0, + $141 = 0, + $142 = 0, + $143 = 0, + $144 = 0, + $145 = 0, + $146 = 0, + $147 = 0, + $148 = 0, + $149 = 0, + $15 = 0, + $150 = 0, + $151 = 0 + var $152 = 0, + $153 = 0, + $154 = 0, + $155 = 0, + $156 = 0, + $157 = 0, + $158 = 0, + $159 = 0, + $16 = 0, + $160 = 0, + $161 = 0, + $162 = 0, + $163 = 0, + $164 = 0, + $165 = 0, + $166 = 0, + $167 = 0, + $168 = 0, + $169 = 0, + $17 = 0 + var $170 = 0, + $171 = 0, + $172 = 0, + $173 = 0, + $174 = 0, + $175 = 0, + $176 = 0, + $177 = 0, + $178 = 0, + $179 = 0, + $18 = 0, + $180 = 0, + $181 = 0, + $182 = 0, + $183 = 0, + $184 = 0, + $185 = 0, + $186 = 0, + $187 = 0, + $188 = 0 + var $189 = 0, + $19 = 0, + $190 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0, + $24 = 0, + $25 = 0, + $26 = 0, + $27 = 0, + $28 = 0, + $29 = 0, + $3 = 0, + $30 = 0, + $31 = 0, + $32 = 0, + $33 = 0, + $34 = 0 + var $35 = 0, + $36 = 0, + $37 = 0, + $38 = 0, + $39 = 0, + $4 = 0, + $40 = 0, + $41 = 0, + $42 = 0, + $43 = 0, + $44 = 0, + $45 = 0, + $46 = 0, + $47 = 0, + $48 = 0, + $49 = 0, + $5 = 0, + $50 = 0, + $51 = 0, + $52 = 0 + var $53 = 0, + $54 = 0, + $55 = 0, + $56 = 0, + $57 = 0, + $58 = 0, + $59 = 0, + $6 = 0, + $60 = 0, + $61 = 0, + $62 = 0, + $63 = 0, + $64 = 0, + $65 = 0, + $66 = 0, + $67 = 0, + $68 = 0, + $69 = 0, + $7 = 0, + $70 = 0 + var $71 = 0, + $72 = 0, + $73 = 0, + $74 = 0, + $75 = 0, + $76 = 0, + $77 = 0, + $78 = 0, + $79 = 0, + $8 = 0, + $80 = 0, + $81 = 0, + $82 = 0, + $83 = 0, + $84 = 0, + $85 = 0, + $86 = 0, + $87 = 0, + $88 = 0, + $89 = 0 + var $9 = 0, + $90 = 0, + $91 = 0, + $92 = 0, + $93 = 0, + $94 = 0, + $95 = 0, + $96 = 0, + $97 = 0, + $98 = 0, + $99 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = HEAP8[$x >> 0] | 0 + $1 = HEAP8[$y >> 0] | 0 + $2 = $1 ^ $0 + $3 = ($x + 1) | 0 + $4 = HEAP8[$3 >> 0] | 0 + $5 = ($y + 1) | 0 + $6 = HEAP8[$5 >> 0] | 0 + $7 = $6 ^ $4 + $8 = $7 | $2 + $9 = ($x + 2) | 0 + $10 = HEAP8[$9 >> 0] | 0 + $11 = ($y + 2) | 0 + $12 = HEAP8[$11 >> 0] | 0 + $13 = $12 ^ $10 + $14 = $8 | $13 + $15 = ($x + 3) | 0 + $16 = HEAP8[$15 >> 0] | 0 + $17 = ($y + 3) | 0 + $18 = HEAP8[$17 >> 0] | 0 + $19 = $18 ^ $16 + $20 = $14 | $19 + $21 = ($x + 4) | 0 + $22 = HEAP8[$21 >> 0] | 0 + $23 = ($y + 4) | 0 + $24 = HEAP8[$23 >> 0] | 0 + $25 = $24 ^ $22 + $26 = $20 | $25 + $27 = ($x + 5) | 0 + $28 = HEAP8[$27 >> 0] | 0 + $29 = ($y + 5) | 0 + $30 = HEAP8[$29 >> 0] | 0 + $31 = $30 ^ $28 + $32 = $26 | $31 + $33 = ($x + 6) | 0 + $34 = HEAP8[$33 >> 0] | 0 + $35 = ($y + 6) | 0 + $36 = HEAP8[$35 >> 0] | 0 + $37 = $36 ^ $34 + $38 = $32 | $37 + $39 = ($x + 7) | 0 + $40 = HEAP8[$39 >> 0] | 0 + $41 = ($y + 7) | 0 + $42 = HEAP8[$41 >> 0] | 0 + $43 = $42 ^ $40 + $44 = $38 | $43 + $45 = ($x + 8) | 0 + $46 = HEAP8[$45 >> 0] | 0 + $47 = ($y + 8) | 0 + $48 = HEAP8[$47 >> 0] | 0 + $49 = $48 ^ $46 + $50 = $44 | $49 + $51 = ($x + 9) | 0 + $52 = HEAP8[$51 >> 0] | 0 + $53 = ($y + 9) | 0 + $54 = HEAP8[$53 >> 0] | 0 + $55 = $54 ^ $52 + $56 = $50 | $55 + $57 = ($x + 10) | 0 + $58 = HEAP8[$57 >> 0] | 0 + $59 = ($y + 10) | 0 + $60 = HEAP8[$59 >> 0] | 0 + $61 = $60 ^ $58 + $62 = $56 | $61 + $63 = ($x + 11) | 0 + $64 = HEAP8[$63 >> 0] | 0 + $65 = ($y + 11) | 0 + $66 = HEAP8[$65 >> 0] | 0 + $67 = $66 ^ $64 + $68 = $62 | $67 + $69 = ($x + 12) | 0 + $70 = HEAP8[$69 >> 0] | 0 + $71 = ($y + 12) | 0 + $72 = HEAP8[$71 >> 0] | 0 + $73 = $72 ^ $70 + $74 = $68 | $73 + $75 = ($x + 13) | 0 + $76 = HEAP8[$75 >> 0] | 0 + $77 = ($y + 13) | 0 + $78 = HEAP8[$77 >> 0] | 0 + $79 = $78 ^ $76 + $80 = $74 | $79 + $81 = ($x + 14) | 0 + $82 = HEAP8[$81 >> 0] | 0 + $83 = ($y + 14) | 0 + $84 = HEAP8[$83 >> 0] | 0 + $85 = $84 ^ $82 + $86 = $80 | $85 + $87 = ($x + 15) | 0 + $88 = HEAP8[$87 >> 0] | 0 + $89 = ($y + 15) | 0 + $90 = HEAP8[$89 >> 0] | 0 + $91 = $90 ^ $88 + $92 = $86 | $91 + $93 = ($x + 16) | 0 + $94 = HEAP8[$93 >> 0] | 0 + $95 = ($y + 16) | 0 + $96 = HEAP8[$95 >> 0] | 0 + $97 = $96 ^ $94 + $98 = $92 | $97 + $99 = ($x + 17) | 0 + $100 = HEAP8[$99 >> 0] | 0 + $101 = ($y + 17) | 0 + $102 = HEAP8[$101 >> 0] | 0 + $103 = $102 ^ $100 + $104 = $98 | $103 + $105 = ($x + 18) | 0 + $106 = HEAP8[$105 >> 0] | 0 + $107 = ($y + 18) | 0 + $108 = HEAP8[$107 >> 0] | 0 + $109 = $108 ^ $106 + $110 = $104 | $109 + $111 = ($x + 19) | 0 + $112 = HEAP8[$111 >> 0] | 0 + $113 = ($y + 19) | 0 + $114 = HEAP8[$113 >> 0] | 0 + $115 = $114 ^ $112 + $116 = $110 | $115 + $117 = ($x + 20) | 0 + $118 = HEAP8[$117 >> 0] | 0 + $119 = ($y + 20) | 0 + $120 = HEAP8[$119 >> 0] | 0 + $121 = $120 ^ $118 + $122 = $116 | $121 + $123 = ($x + 21) | 0 + $124 = HEAP8[$123 >> 0] | 0 + $125 = ($y + 21) | 0 + $126 = HEAP8[$125 >> 0] | 0 + $127 = $126 ^ $124 + $128 = $122 | $127 + $129 = ($x + 22) | 0 + $130 = HEAP8[$129 >> 0] | 0 + $131 = ($y + 22) | 0 + $132 = HEAP8[$131 >> 0] | 0 + $133 = $132 ^ $130 + $134 = $128 | $133 + $135 = ($x + 23) | 0 + $136 = HEAP8[$135 >> 0] | 0 + $137 = ($y + 23) | 0 + $138 = HEAP8[$137 >> 0] | 0 + $139 = $138 ^ $136 + $140 = $134 | $139 + $141 = ($x + 24) | 0 + $142 = HEAP8[$141 >> 0] | 0 + $143 = ($y + 24) | 0 + $144 = HEAP8[$143 >> 0] | 0 + $145 = $144 ^ $142 + $146 = $140 | $145 + $147 = ($x + 25) | 0 + $148 = HEAP8[$147 >> 0] | 0 + $149 = ($y + 25) | 0 + $150 = HEAP8[$149 >> 0] | 0 + $151 = $150 ^ $148 + $152 = $146 | $151 + $153 = ($x + 26) | 0 + $154 = HEAP8[$153 >> 0] | 0 + $155 = ($y + 26) | 0 + $156 = HEAP8[$155 >> 0] | 0 + $157 = $156 ^ $154 + $158 = $152 | $157 + $159 = ($x + 27) | 0 + $160 = HEAP8[$159 >> 0] | 0 + $161 = ($y + 27) | 0 + $162 = HEAP8[$161 >> 0] | 0 + $163 = $162 ^ $160 + $164 = $158 | $163 + $165 = ($x + 28) | 0 + $166 = HEAP8[$165 >> 0] | 0 + $167 = ($y + 28) | 0 + $168 = HEAP8[$167 >> 0] | 0 + $169 = $168 ^ $166 + $170 = $164 | $169 + $171 = ($x + 29) | 0 + $172 = HEAP8[$171 >> 0] | 0 + $173 = ($y + 29) | 0 + $174 = HEAP8[$173 >> 0] | 0 + $175 = $174 ^ $172 + $176 = $170 | $175 + $177 = ($x + 30) | 0 + $178 = HEAP8[$177 >> 0] | 0 + $179 = ($y + 30) | 0 + $180 = HEAP8[$179 >> 0] | 0 + $181 = $180 ^ $178 + $182 = $176 | $181 + $183 = ($x + 31) | 0 + $184 = HEAP8[$183 >> 0] | 0 + $185 = ($y + 31) | 0 + $186 = HEAP8[$185 >> 0] | 0 + $187 = $186 ^ $184 + $188 = $182 | $187 + $189 = ($188 << 24) >> 24 == 0 + $190 = $189 & 1 + return $190 | 0 + } + function ___errno_location() { + var $$0 = 0, + $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = HEAP32[32448 >> 2] | 0 + $1 = ($0 | 0) == (0 | 0) + if ($1) { + $$0 = 32496 + } else { + $2 = _pthread_self() | 0 + $3 = ($2 + 60) | 0 + $4 = HEAP32[$3 >> 2] | 0 + $$0 = $4 + } + return $$0 | 0 + } + function ___syscall_ret($r) { + $r = $r | 0 + var $$0 = 0, + $0 = 0, + $1 = 0, + $2 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = $r >>> 0 > 4294963200 + if ($0) { + $1 = (0 - $r) | 0 + $2 = ___errno_location() | 0 + HEAP32[$2 >> 2] = $1 + $$0 = -1 + } else { + $$0 = $r + } + return $$0 | 0 + } + function _fflush($f) { + $f = $f | 0 + var $$0 = 0, + $$01 = 0, + $$012 = 0, + $$014 = 0, + $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0 + var $23 = 0, + $24 = 0, + $25 = 0, + $26 = 0, + $27 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + $phitmp = 0, + $r$0$lcssa = 0, + $r$03 = 0, + $r$1 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = ($f | 0) == (0 | 0) + do { + if ($0) { + $7 = HEAP32[32492 >> 2] | 0 + $8 = ($7 | 0) == (0 | 0) + if ($8) { + $27 = 0 + } else { + $9 = HEAP32[32492 >> 2] | 0 + $10 = _fflush($9) | 0 + $27 = $10 + } + ___lock(32476 | 0) + $$012 = HEAP32[32472 >> 2] | 0 + $11 = ($$012 | 0) == (0 | 0) + if ($11) { + $r$0$lcssa = $27 + } else { + $$014 = $$012 + $r$03 = $27 + while (1) { + $12 = ($$014 + 76) | 0 + $13 = HEAP32[$12 >> 2] | 0 + $14 = ($13 | 0) > -1 + if ($14) { + $15 = ___lockfile($$014) | 0 + $23 = $15 + } else { + $23 = 0 + } + $16 = ($$014 + 20) | 0 + $17 = HEAP32[$16 >> 2] | 0 + $18 = ($$014 + 28) | 0 + $19 = HEAP32[$18 >> 2] | 0 + $20 = $17 >>> 0 > $19 >>> 0 + if ($20) { + $21 = ___fflush_unlocked($$014) | 0 + $22 = $21 | $r$03 + $r$1 = $22 + } else { + $r$1 = $r$03 + } + $24 = ($23 | 0) == 0 + if (!$24) { + ___unlockfile($$014) + } + $25 = ($$014 + 56) | 0 + $$01 = HEAP32[$25 >> 2] | 0 + $26 = ($$01 | 0) == (0 | 0) + if ($26) { + $r$0$lcssa = $r$1 + break + } else { + $$014 = $$01 + $r$03 = $r$1 + } + } + } + ___unlock(32476 | 0) + $$0 = $r$0$lcssa + } else { + $1 = ($f + 76) | 0 + $2 = HEAP32[$1 >> 2] | 0 + $3 = ($2 | 0) > -1 + if (!$3) { + $4 = ___fflush_unlocked($f) | 0 + $$0 = $4 + break + } + $5 = ___lockfile($f) | 0 + $phitmp = ($5 | 0) == 0 + $6 = ___fflush_unlocked($f) | 0 + if ($phitmp) { + $$0 = $6 + } else { + ___unlockfile($f) + $$0 = $6 + } + } + } while (0) + return $$0 | 0 + } + function ___lockfile($f) { + $f = $f | 0 + var label = 0, + sp = 0 + sp = STACKTOP + return 0 + } + function ___unlockfile($f) { + $f = $f | 0 + var label = 0, + sp = 0 + sp = STACKTOP + return + } + function ___stdio_close($f) { + $f = $f | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $vararg_buffer = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 16) | 0 + $vararg_buffer = sp + $0 = ($f + 60) | 0 + $1 = HEAP32[$0 >> 2] | 0 + HEAP32[$vararg_buffer >> 2] = $1 + $2 = ___syscall6(6, $vararg_buffer | 0) | 0 + $3 = ___syscall_ret($2) | 0 + STACKTOP = sp + return $3 | 0 + } + function ___stdio_seek($f, $off, $whence) { + $f = $f | 0 + $off = $off | 0 + $whence = $whence | 0 + var $$pre = 0, + $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $ret = 0, + $vararg_buffer = 0, + $vararg_ptr1 = 0, + $vararg_ptr2 = 0, + $vararg_ptr3 = 0, + $vararg_ptr4 = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 32) | 0 + $vararg_buffer = sp + $ret = (sp + 20) | 0 + $0 = ($f + 60) | 0 + $1 = HEAP32[$0 >> 2] | 0 + HEAP32[$vararg_buffer >> 2] = $1 + $vararg_ptr1 = ($vararg_buffer + 4) | 0 + HEAP32[$vararg_ptr1 >> 2] = 0 + $vararg_ptr2 = ($vararg_buffer + 8) | 0 + HEAP32[$vararg_ptr2 >> 2] = $off + $vararg_ptr3 = ($vararg_buffer + 12) | 0 + HEAP32[$vararg_ptr3 >> 2] = $ret + $vararg_ptr4 = ($vararg_buffer + 16) | 0 + HEAP32[$vararg_ptr4 >> 2] = $whence + $2 = ___syscall140(140, $vararg_buffer | 0) | 0 + $3 = ___syscall_ret($2) | 0 + $4 = ($3 | 0) < 0 + if ($4) { + HEAP32[$ret >> 2] = -1 + $5 = -1 + } else { + $$pre = HEAP32[$ret >> 2] | 0 + $5 = $$pre + } + STACKTOP = sp + return $5 | 0 + } + function ___stdio_write($f, $buf, $len) { + $f = $f | 0 + $buf = $buf | 0 + $len = $len | 0 + var $$0 = 0, + $$phi$trans$insert = 0, + $$pre = 0, + $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $20 = 0, + $21 = 0, + $22 = 0, + $23 = 0 + var $24 = 0, + $25 = 0, + $26 = 0, + $27 = 0, + $28 = 0, + $29 = 0, + $3 = 0, + $30 = 0, + $31 = 0, + $32 = 0, + $33 = 0, + $34 = 0, + $35 = 0, + $36 = 0, + $37 = 0, + $38 = 0, + $39 = 0, + $4 = 0, + $40 = 0, + $41 = 0 + var $42 = 0, + $43 = 0, + $44 = 0, + $45 = 0, + $46 = 0, + $47 = 0, + $48 = 0, + $49 = 0, + $5 = 0, + $50 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + $cnt$0 = 0, + $cnt$1 = 0, + $iov$0 = 0, + $iov$0$lcssa11 = 0, + $iov$1 = 0, + $iovcnt$0 = 0 + var $iovcnt$0$lcssa12 = 0, + $iovcnt$1 = 0, + $iovs = 0, + $rem$0 = 0, + $vararg_buffer = 0, + $vararg_buffer3 = 0, + $vararg_ptr1 = 0, + $vararg_ptr2 = 0, + $vararg_ptr6 = 0, + $vararg_ptr7 = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 48) | 0 + $vararg_buffer3 = (sp + 16) | 0 + $vararg_buffer = sp + $iovs = (sp + 32) | 0 + $0 = ($f + 28) | 0 + $1 = HEAP32[$0 >> 2] | 0 + HEAP32[$iovs >> 2] = $1 + $2 = ($iovs + 4) | 0 + $3 = ($f + 20) | 0 + $4 = HEAP32[$3 >> 2] | 0 + $5 = $4 + $6 = ($5 - $1) | 0 + HEAP32[$2 >> 2] = $6 + $7 = ($iovs + 8) | 0 + HEAP32[$7 >> 2] = $buf + $8 = ($iovs + 12) | 0 + HEAP32[$8 >> 2] = $len + $9 = ($6 + $len) | 0 + $10 = ($f + 60) | 0 + $11 = ($f + 44) | 0 + $iov$0 = $iovs + $iovcnt$0 = 2 + $rem$0 = $9 + while (1) { + $12 = HEAP32[32448 >> 2] | 0 + $13 = ($12 | 0) == (0 | 0) + if ($13) { + $17 = HEAP32[$10 >> 2] | 0 + HEAP32[$vararg_buffer3 >> 2] = $17 + $vararg_ptr6 = ($vararg_buffer3 + 4) | 0 + HEAP32[$vararg_ptr6 >> 2] = $iov$0 + $vararg_ptr7 = ($vararg_buffer3 + 8) | 0 + HEAP32[$vararg_ptr7 >> 2] = $iovcnt$0 + $18 = ___syscall146(146, $vararg_buffer3 | 0) | 0 + $19 = ___syscall_ret($18) | 0 + $cnt$0 = $19 + } else { + _pthread_cleanup_push(1 | 0, $f | 0) + $14 = HEAP32[$10 >> 2] | 0 + HEAP32[$vararg_buffer >> 2] = $14 + $vararg_ptr1 = ($vararg_buffer + 4) | 0 + HEAP32[$vararg_ptr1 >> 2] = $iov$0 + $vararg_ptr2 = ($vararg_buffer + 8) | 0 + HEAP32[$vararg_ptr2 >> 2] = $iovcnt$0 + $15 = ___syscall146(146, $vararg_buffer | 0) | 0 + $16 = ___syscall_ret($15) | 0 + _pthread_cleanup_pop(0) + $cnt$0 = $16 + } + $20 = ($rem$0 | 0) == ($cnt$0 | 0) + if ($20) { + label = 6 + break + } + $27 = ($cnt$0 | 0) < 0 + if ($27) { + $iov$0$lcssa11 = $iov$0 + $iovcnt$0$lcssa12 = $iovcnt$0 + label = 8 + break + } + $35 = ($rem$0 - $cnt$0) | 0 + $36 = ($iov$0 + 4) | 0 + $37 = HEAP32[$36 >> 2] | 0 + $38 = $cnt$0 >>> 0 > $37 >>> 0 + if ($38) { + $39 = HEAP32[$11 >> 2] | 0 + HEAP32[$0 >> 2] = $39 + HEAP32[$3 >> 2] = $39 + $40 = ($cnt$0 - $37) | 0 + $41 = ($iov$0 + 8) | 0 + $42 = ($iovcnt$0 + -1) | 0 + $$phi$trans$insert = ($iov$0 + 12) | 0 + $$pre = HEAP32[$$phi$trans$insert >> 2] | 0 + $50 = $$pre + $cnt$1 = $40 + $iov$1 = $41 + $iovcnt$1 = $42 + } else { + $43 = ($iovcnt$0 | 0) == 2 + if ($43) { + $44 = HEAP32[$0 >> 2] | 0 + $45 = ($44 + $cnt$0) | 0 + HEAP32[$0 >> 2] = $45 + $50 = $37 + $cnt$1 = $cnt$0 + $iov$1 = $iov$0 + $iovcnt$1 = 2 + } else { + $50 = $37 + $cnt$1 = $cnt$0 + $iov$1 = $iov$0 + $iovcnt$1 = $iovcnt$0 + } + } + $46 = HEAP32[$iov$1 >> 2] | 0 + $47 = ($46 + $cnt$1) | 0 + HEAP32[$iov$1 >> 2] = $47 + $48 = ($iov$1 + 4) | 0 + $49 = ($50 - $cnt$1) | 0 + HEAP32[$48 >> 2] = $49 + $iov$0 = $iov$1 + $iovcnt$0 = $iovcnt$1 + $rem$0 = $35 + } + if ((label | 0) == 6) { + $21 = HEAP32[$11 >> 2] | 0 + $22 = ($f + 48) | 0 + $23 = HEAP32[$22 >> 2] | 0 + $24 = ($21 + $23) | 0 + $25 = ($f + 16) | 0 + HEAP32[$25 >> 2] = $24 + $26 = $21 + HEAP32[$0 >> 2] = $26 + HEAP32[$3 >> 2] = $26 + $$0 = $len + } else if ((label | 0) == 8) { + $28 = ($f + 16) | 0 + HEAP32[$28 >> 2] = 0 + HEAP32[$0 >> 2] = 0 + HEAP32[$3 >> 2] = 0 + $29 = HEAP32[$f >> 2] | 0 + $30 = $29 | 32 + HEAP32[$f >> 2] = $30 + $31 = ($iovcnt$0$lcssa12 | 0) == 2 + if ($31) { + $$0 = 0 + } else { + $32 = ($iov$0$lcssa11 + 4) | 0 + $33 = HEAP32[$32 >> 2] | 0 + $34 = ($len - $33) | 0 + $$0 = $34 + } + } + STACKTOP = sp + return $$0 | 0 + } + function ___stdout_write($f, $buf, $len) { + $f = $f | 0 + $buf = $buf | 0 + $len = $len | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0, + $9 = 0, + $tio = 0, + $vararg_buffer = 0, + $vararg_ptr1 = 0, + $vararg_ptr2 = 0, + label = 0, + sp = 0 + sp = STACKTOP + STACKTOP = (STACKTOP + 80) | 0 + $vararg_buffer = sp + $tio = (sp + 12) | 0 + $0 = ($f + 36) | 0 + HEAP32[$0 >> 2] = 3 + $1 = HEAP32[$f >> 2] | 0 + $2 = $1 & 64 + $3 = ($2 | 0) == 0 + if ($3) { + $4 = ($f + 60) | 0 + $5 = HEAP32[$4 >> 2] | 0 + HEAP32[$vararg_buffer >> 2] = $5 + $vararg_ptr1 = ($vararg_buffer + 4) | 0 + HEAP32[$vararg_ptr1 >> 2] = 21505 + $vararg_ptr2 = ($vararg_buffer + 8) | 0 + HEAP32[$vararg_ptr2 >> 2] = $tio + $6 = ___syscall54(54, $vararg_buffer | 0) | 0 + $7 = ($6 | 0) == 0 + if (!$7) { + $8 = ($f + 75) | 0 + HEAP8[$8 >> 0] = -1 + } + } + $9 = ___stdio_write($f, $buf, $len) | 0 + STACKTOP = sp + return $9 | 0 + } + function ___fflush_unlocked($f) { + $f = $f | 0 + var $$0 = 0, + $0 = 0, + $1 = 0, + $10 = 0, + $11 = 0, + $12 = 0, + $13 = 0, + $14 = 0, + $15 = 0, + $16 = 0, + $17 = 0, + $18 = 0, + $19 = 0, + $2 = 0, + $3 = 0, + $4 = 0, + $5 = 0, + $6 = 0, + $7 = 0, + $8 = 0 + var $9 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = ($f + 20) | 0 + $1 = HEAP32[$0 >> 2] | 0 + $2 = ($f + 28) | 0 + $3 = HEAP32[$2 >> 2] | 0 + $4 = $1 >>> 0 > $3 >>> 0 + if ($4) { + $5 = ($f + 36) | 0 + $6 = HEAP32[$5 >> 2] | 0 + FUNCTION_TABLE_iiii[$6 & 3]($f, 0, 0) | 0 + $7 = HEAP32[$0 >> 2] | 0 + $8 = ($7 | 0) == (0 | 0) + if ($8) { + $$0 = -1 + } else { + label = 3 + } + } else { + label = 3 + } + if ((label | 0) == 3) { + $9 = ($f + 4) | 0 + $10 = HEAP32[$9 >> 2] | 0 + $11 = ($f + 8) | 0 + $12 = HEAP32[$11 >> 2] | 0 + $13 = $10 >>> 0 < $12 >>> 0 + if ($13) { + $14 = ($f + 40) | 0 + $15 = HEAP32[$14 >> 2] | 0 + $16 = $10 + $17 = $12 + $18 = ($16 - $17) | 0 + FUNCTION_TABLE_iiii[$15 & 3]($f, $18, 1) | 0 + } + $19 = ($f + 16) | 0 + HEAP32[$19 >> 2] = 0 + HEAP32[$2 >> 2] = 0 + HEAP32[$0 >> 2] = 0 + HEAP32[$11 >> 2] = 0 + HEAP32[$9 >> 2] = 0 + $$0 = 0 + } + return $$0 | 0 + } + function _cleanup526($p) { + $p = $p | 0 + var $0 = 0, + $1 = 0, + $2 = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = ($p + 68) | 0 + $1 = HEAP32[$0 >> 2] | 0 + $2 = ($1 | 0) == 0 + if ($2) { + ___unlockfile($p) + } + return + } + function _malloc($bytes) { + $bytes = $bytes | 0 + var $$3$i = 0, + $$lcssa = 0, + $$lcssa211 = 0, + $$lcssa215 = 0, + $$lcssa216 = 0, + $$lcssa217 = 0, + $$lcssa219 = 0, + $$lcssa222 = 0, + $$lcssa224 = 0, + $$lcssa226 = 0, + $$lcssa228 = 0, + $$lcssa230 = 0, + $$lcssa232 = 0, + $$pre = 0, + $$pre$i = 0, + $$pre$i$i = 0, + $$pre$i22$i = 0, + $$pre$i25 = 0, + $$pre$phi$i$iZ2D = 0, + $$pre$phi$i23$iZ2D = 0 + var $$pre$phi$i26Z2D = 0, + $$pre$phi$iZ2D = 0, + $$pre$phi58$i$iZ2D = 0, + $$pre$phiZ2D = 0, + $$pre105 = 0, + $$pre106 = 0, + $$pre14$i$i = 0, + $$pre43$i = 0, + $$pre56$i$i = 0, + $$pre57$i$i = 0, + $$pre8$i = 0, + $$rsize$0$i = 0, + $$rsize$3$i = 0, + $$sum = 0, + $$sum$i$i = 0, + $$sum$i$i$i = 0, + $$sum$i13$i = 0, + $$sum$i14$i = 0, + $$sum$i17$i = 0, + $$sum$i19$i = 0 + var $$sum$i2334 = 0, + $$sum$i32 = 0, + $$sum$i35 = 0, + $$sum1 = 0, + $$sum1$i = 0, + $$sum1$i$i = 0, + $$sum1$i15$i = 0, + $$sum1$i20$i = 0, + $$sum1$i24 = 0, + $$sum10 = 0, + $$sum10$i = 0, + $$sum10$i$i = 0, + $$sum11$i = 0, + $$sum11$i$i = 0, + $$sum1112 = 0, + $$sum112$i = 0, + $$sum113$i = 0, + $$sum114$i = 0, + $$sum115$i = 0, + $$sum116$i = 0 + var $$sum117$i = 0, + $$sum118$i = 0, + $$sum119$i = 0, + $$sum12$i = 0, + $$sum12$i$i = 0, + $$sum120$i = 0, + $$sum121$i = 0, + $$sum122$i = 0, + $$sum123$i = 0, + $$sum124$i = 0, + $$sum125$i = 0, + $$sum13$i = 0, + $$sum13$i$i = 0, + $$sum14$i$i = 0, + $$sum15$i = 0, + $$sum15$i$i = 0, + $$sum16$i = 0, + $$sum16$i$i = 0, + $$sum17$i = 0, + $$sum17$i$i = 0 + var $$sum18$i = 0, + $$sum1819$i$i = 0, + $$sum2 = 0, + $$sum2$i = 0, + $$sum2$i$i = 0, + $$sum2$i$i$i = 0, + $$sum2$i16$i = 0, + $$sum2$i18$i = 0, + $$sum2$i21$i = 0, + $$sum20$i$i = 0, + $$sum21$i$i = 0, + $$sum22$i$i = 0, + $$sum23$i$i = 0, + $$sum24$i$i = 0, + $$sum25$i$i = 0, + $$sum27$i$i = 0, + $$sum28$i$i = 0, + $$sum29$i$i = 0, + $$sum3$i = 0, + $$sum3$i27 = 0 + var $$sum30$i$i = 0, + $$sum3132$i$i = 0, + $$sum34$i$i = 0, + $$sum3536$i$i = 0, + $$sum3738$i$i = 0, + $$sum39$i$i = 0, + $$sum4 = 0, + $$sum4$i = 0, + $$sum4$i$i = 0, + $$sum4$i28 = 0, + $$sum40$i$i = 0, + $$sum41$i$i = 0, + $$sum42$i$i = 0, + $$sum5$i = 0, + $$sum5$i$i = 0, + $$sum56 = 0, + $$sum6$i = 0, + $$sum67$i$i = 0, + $$sum7$i = 0, + $$sum8$i = 0 + var $$sum9 = 0, + $$sum9$i = 0, + $$sum9$i$i = 0, + $$tsize$1$i = 0, + $$v$0$i = 0, + $0 = 0, + $1 = 0, + $10 = 0, + $100 = 0, + $1000 = 0, + $1001 = 0, + $1002 = 0, + $1003 = 0, + $1004 = 0, + $1005 = 0, + $1006 = 0, + $1007 = 0, + $1008 = 0, + $1009 = 0, + $101 = 0 + var $1010 = 0, + $1011 = 0, + $1012 = 0, + $1013 = 0, + $1014 = 0, + $1015 = 0, + $1016 = 0, + $1017 = 0, + $1018 = 0, + $1019 = 0, + $102 = 0, + $1020 = 0, + $1021 = 0, + $1022 = 0, + $1023 = 0, + $1024 = 0, + $1025 = 0, + $1026 = 0, + $1027 = 0, + $1028 = 0 + var $1029 = 0, + $103 = 0, + $1030 = 0, + $1031 = 0, + $1032 = 0, + $1033 = 0, + $1034 = 0, + $1035 = 0, + $1036 = 0, + $1037 = 0, + $1038 = 0, + $1039 = 0, + $104 = 0, + $1040 = 0, + $1041 = 0, + $1042 = 0, + $1043 = 0, + $1044 = 0, + $1045 = 0, + $1046 = 0 + var $1047 = 0, + $1048 = 0, + $1049 = 0, + $105 = 0, + $1050 = 0, + $1051 = 0, + $1052 = 0, + $1053 = 0, + $1054 = 0, + $1055 = 0, + $1056 = 0, + $1057 = 0, + $1058 = 0, + $1059 = 0, + $106 = 0, + $1060 = 0, + $1061 = 0, + $1062 = 0, + $1063 = 0, + $1064 = 0 + var $1065 = 0, + $1066 = 0, + $1067 = 0, + $1068 = 0, + $1069 = 0, + $107 = 0, + $1070 = 0, + $108 = 0, + $109 = 0, + $11 = 0, + $110 = 0, + $111 = 0, + $112 = 0, + $113 = 0, + $114 = 0, + $115 = 0, + $116 = 0, + $117 = 0, + $118 = 0, + $119 = 0 + var $12 = 0, + $120 = 0, + $121 = 0, + $122 = 0, + $123 = 0, + $124 = 0, + $125 = 0, + $126 = 0, + $127 = 0, + $128 = 0, + $129 = 0, + $13 = 0, + $130 = 0, + $131 = 0, + $132 = 0, + $133 = 0, + $134 = 0, + $135 = 0, + $136 = 0, + $137 = 0 + var $138 = 0, + $139 = 0, + $14 = 0, + $140 = 0, + $141 = 0, + $142 = 0, + $143 = 0, + $144 = 0, + $145 = 0, + $146 = 0, + $147 = 0, + $148 = 0, + $149 = 0, + $15 = 0, + $150 = 0, + $151 = 0, + $152 = 0, + $153 = 0, + $154 = 0, + $155 = 0 + var $156 = 0, + $157 = 0, + $158 = 0, + $159 = 0, + $16 = 0, + $160 = 0, + $161 = 0, + $162 = 0, + $163 = 0, + $164 = 0, + $165 = 0, + $166 = 0, + $167 = 0, + $168 = 0, + $169 = 0, + $17 = 0, + $170 = 0, + $171 = 0, + $172 = 0, + $173 = 0 + var $174 = 0, + $175 = 0, + $176 = 0, + $177 = 0, + $178 = 0, + $179 = 0, + $18 = 0, + $180 = 0, + $181 = 0, + $182 = 0, + $183 = 0, + $184 = 0, + $185 = 0, + $186 = 0, + $187 = 0, + $188 = 0, + $189 = 0, + $19 = 0, + $190 = 0, + $191 = 0 + var $192 = 0, + $193 = 0, + $194 = 0, + $195 = 0, + $196 = 0, + $197 = 0, + $198 = 0, + $199 = 0, + $2 = 0, + $20 = 0, + $200 = 0, + $201 = 0, + $202 = 0, + $203 = 0, + $204 = 0, + $205 = 0, + $206 = 0, + $207 = 0, + $208 = 0, + $209 = 0 + var $21 = 0, + $210 = 0, + $211 = 0, + $212 = 0, + $213 = 0, + $214 = 0, + $215 = 0, + $216 = 0, + $217 = 0, + $218 = 0, + $219 = 0, + $22 = 0, + $220 = 0, + $221 = 0, + $222 = 0, + $223 = 0, + $224 = 0, + $225 = 0, + $226 = 0, + $227 = 0 + var $228 = 0, + $229 = 0, + $23 = 0, + $230 = 0, + $231 = 0, + $232 = 0, + $233 = 0, + $234 = 0, + $235 = 0, + $236 = 0, + $237 = 0, + $238 = 0, + $239 = 0, + $24 = 0, + $240 = 0, + $241 = 0, + $242 = 0, + $243 = 0, + $244 = 0, + $245 = 0 + var $246 = 0, + $247 = 0, + $248 = 0, + $249 = 0, + $25 = 0, + $250 = 0, + $251 = 0, + $252 = 0, + $253 = 0, + $254 = 0, + $255 = 0, + $256 = 0, + $257 = 0, + $258 = 0, + $259 = 0, + $26 = 0, + $260 = 0, + $261 = 0, + $262 = 0, + $263 = 0 + var $264 = 0, + $265 = 0, + $266 = 0, + $267 = 0, + $268 = 0, + $269 = 0, + $27 = 0, + $270 = 0, + $271 = 0, + $272 = 0, + $273 = 0, + $274 = 0, + $275 = 0, + $276 = 0, + $277 = 0, + $278 = 0, + $279 = 0, + $28 = 0, + $280 = 0, + $281 = 0 + var $282 = 0, + $283 = 0, + $284 = 0, + $285 = 0, + $286 = 0, + $287 = 0, + $288 = 0, + $289 = 0, + $29 = 0, + $290 = 0, + $291 = 0, + $292 = 0, + $293 = 0, + $294 = 0, + $295 = 0, + $296 = 0, + $297 = 0, + $298 = 0, + $299 = 0, + $3 = 0 + var $30 = 0, + $300 = 0, + $301 = 0, + $302 = 0, + $303 = 0, + $304 = 0, + $305 = 0, + $306 = 0, + $307 = 0, + $308 = 0, + $309 = 0, + $31 = 0, + $310 = 0, + $311 = 0, + $312 = 0, + $313 = 0, + $314 = 0, + $315 = 0, + $316 = 0, + $317 = 0 + var $318 = 0, + $319 = 0, + $32 = 0, + $320 = 0, + $321 = 0, + $322 = 0, + $323 = 0, + $324 = 0, + $325 = 0, + $326 = 0, + $327 = 0, + $328 = 0, + $329 = 0, + $33 = 0, + $330 = 0, + $331 = 0, + $332 = 0, + $333 = 0, + $334 = 0, + $335 = 0 + var $336 = 0, + $337 = 0, + $338 = 0, + $339 = 0, + $34 = 0, + $340 = 0, + $341 = 0, + $342 = 0, + $343 = 0, + $344 = 0, + $345 = 0, + $346 = 0, + $347 = 0, + $348 = 0, + $349 = 0, + $35 = 0, + $350 = 0, + $351 = 0, + $352 = 0, + $353 = 0 + var $354 = 0, + $355 = 0, + $356 = 0, + $357 = 0, + $358 = 0, + $359 = 0, + $36 = 0, + $360 = 0, + $361 = 0, + $362 = 0, + $363 = 0, + $364 = 0, + $365 = 0, + $366 = 0, + $367 = 0, + $368 = 0, + $369 = 0, + $37 = 0, + $370 = 0, + $371 = 0 + var $372 = 0, + $373 = 0, + $374 = 0, + $375 = 0, + $376 = 0, + $377 = 0, + $378 = 0, + $379 = 0, + $38 = 0, + $380 = 0, + $381 = 0, + $382 = 0, + $383 = 0, + $384 = 0, + $385 = 0, + $386 = 0, + $387 = 0, + $388 = 0, + $389 = 0, + $39 = 0 + var $390 = 0, + $391 = 0, + $392 = 0, + $393 = 0, + $394 = 0, + $395 = 0, + $396 = 0, + $397 = 0, + $398 = 0, + $399 = 0, + $4 = 0, + $40 = 0, + $400 = 0, + $401 = 0, + $402 = 0, + $403 = 0, + $404 = 0, + $405 = 0, + $406 = 0, + $407 = 0 + var $408 = 0, + $409 = 0, + $41 = 0, + $410 = 0, + $411 = 0, + $412 = 0, + $413 = 0, + $414 = 0, + $415 = 0, + $416 = 0, + $417 = 0, + $418 = 0, + $419 = 0, + $42 = 0, + $420 = 0, + $421 = 0, + $422 = 0, + $423 = 0, + $424 = 0, + $425 = 0 + var $426 = 0, + $427 = 0, + $428 = 0, + $429 = 0, + $43 = 0, + $430 = 0, + $431 = 0, + $432 = 0, + $433 = 0, + $434 = 0, + $435 = 0, + $436 = 0, + $437 = 0, + $438 = 0, + $439 = 0, + $44 = 0, + $440 = 0, + $441 = 0, + $442 = 0, + $443 = 0 + var $444 = 0, + $445 = 0, + $446 = 0, + $447 = 0, + $448 = 0, + $449 = 0, + $45 = 0, + $450 = 0, + $451 = 0, + $452 = 0, + $453 = 0, + $454 = 0, + $455 = 0, + $456 = 0, + $457 = 0, + $458 = 0, + $459 = 0, + $46 = 0, + $460 = 0, + $461 = 0 + var $462 = 0, + $463 = 0, + $464 = 0, + $465 = 0, + $466 = 0, + $467 = 0, + $468 = 0, + $469 = 0, + $47 = 0, + $470 = 0, + $471 = 0, + $472 = 0, + $473 = 0, + $474 = 0, + $475 = 0, + $476 = 0, + $477 = 0, + $478 = 0, + $479 = 0, + $48 = 0 + var $480 = 0, + $481 = 0, + $482 = 0, + $483 = 0, + $484 = 0, + $485 = 0, + $486 = 0, + $487 = 0, + $488 = 0, + $489 = 0, + $49 = 0, + $490 = 0, + $491 = 0, + $492 = 0, + $493 = 0, + $494 = 0, + $495 = 0, + $496 = 0, + $497 = 0, + $498 = 0 + var $499 = 0, + $5 = 0, + $50 = 0, + $500 = 0, + $501 = 0, + $502 = 0, + $503 = 0, + $504 = 0, + $505 = 0, + $506 = 0, + $507 = 0, + $508 = 0, + $509 = 0, + $51 = 0, + $510 = 0, + $511 = 0, + $512 = 0, + $513 = 0, + $514 = 0, + $515 = 0 + var $516 = 0, + $517 = 0, + $518 = 0, + $519 = 0, + $52 = 0, + $520 = 0, + $521 = 0, + $522 = 0, + $523 = 0, + $524 = 0, + $525 = 0, + $526 = 0, + $527 = 0, + $528 = 0, + $529 = 0, + $53 = 0, + $530 = 0, + $531 = 0, + $532 = 0, + $533 = 0 + var $534 = 0, + $535 = 0, + $536 = 0, + $537 = 0, + $538 = 0, + $539 = 0, + $54 = 0, + $540 = 0, + $541 = 0, + $542 = 0, + $543 = 0, + $544 = 0, + $545 = 0, + $546 = 0, + $547 = 0, + $548 = 0, + $549 = 0, + $55 = 0, + $550 = 0, + $551 = 0 + var $552 = 0, + $553 = 0, + $554 = 0, + $555 = 0, + $556 = 0, + $557 = 0, + $558 = 0, + $559 = 0, + $56 = 0, + $560 = 0, + $561 = 0, + $562 = 0, + $563 = 0, + $564 = 0, + $565 = 0, + $566 = 0, + $567 = 0, + $568 = 0, + $569 = 0, + $57 = 0 + var $570 = 0, + $571 = 0, + $572 = 0, + $573 = 0, + $574 = 0, + $575 = 0, + $576 = 0, + $577 = 0, + $578 = 0, + $579 = 0, + $58 = 0, + $580 = 0, + $581 = 0, + $582 = 0, + $583 = 0, + $584 = 0, + $585 = 0, + $586 = 0, + $587 = 0, + $588 = 0 + var $589 = 0, + $59 = 0, + $590 = 0, + $591 = 0, + $592 = 0, + $593 = 0, + $594 = 0, + $595 = 0, + $596 = 0, + $597 = 0, + $598 = 0, + $599 = 0, + $6 = 0, + $60 = 0, + $600 = 0, + $601 = 0, + $602 = 0, + $603 = 0, + $604 = 0, + $605 = 0 + var $606 = 0, + $607 = 0, + $608 = 0, + $609 = 0, + $61 = 0, + $610 = 0, + $611 = 0, + $612 = 0, + $613 = 0, + $614 = 0, + $615 = 0, + $616 = 0, + $617 = 0, + $618 = 0, + $619 = 0, + $62 = 0, + $620 = 0, + $621 = 0, + $622 = 0, + $623 = 0 + var $624 = 0, + $625 = 0, + $626 = 0, + $627 = 0, + $628 = 0, + $629 = 0, + $63 = 0, + $630 = 0, + $631 = 0, + $632 = 0, + $633 = 0, + $634 = 0, + $635 = 0, + $636 = 0, + $637 = 0, + $638 = 0, + $639 = 0, + $64 = 0, + $640 = 0, + $641 = 0 + var $642 = 0, + $643 = 0, + $644 = 0, + $645 = 0, + $646 = 0, + $647 = 0, + $648 = 0, + $649 = 0, + $65 = 0, + $650 = 0, + $651 = 0, + $652 = 0, + $653 = 0, + $654 = 0, + $655 = 0, + $656 = 0, + $657 = 0, + $658 = 0, + $659 = 0, + $66 = 0 + var $660 = 0, + $661 = 0, + $662 = 0, + $663 = 0, + $664 = 0, + $665 = 0, + $666 = 0, + $667 = 0, + $668 = 0, + $669 = 0, + $67 = 0, + $670 = 0, + $671 = 0, + $672 = 0, + $673 = 0, + $674 = 0, + $675 = 0, + $676 = 0, + $677 = 0, + $678 = 0 + var $679 = 0, + $68 = 0, + $680 = 0, + $681 = 0, + $682 = 0, + $683 = 0, + $684 = 0, + $685 = 0, + $686 = 0, + $687 = 0, + $688 = 0, + $689 = 0, + $69 = 0, + $690 = 0, + $691 = 0, + $692 = 0, + $693 = 0, + $694 = 0, + $695 = 0, + $696 = 0 + var $697 = 0, + $698 = 0, + $699 = 0, + $7 = 0, + $70 = 0, + $700 = 0, + $701 = 0, + $702 = 0, + $703 = 0, + $704 = 0, + $705 = 0, + $706 = 0, + $707 = 0, + $708 = 0, + $709 = 0, + $71 = 0, + $710 = 0, + $711 = 0, + $712 = 0, + $713 = 0 + var $714 = 0, + $715 = 0, + $716 = 0, + $717 = 0, + $718 = 0, + $719 = 0, + $72 = 0, + $720 = 0, + $721 = 0, + $722 = 0, + $723 = 0, + $724 = 0, + $725 = 0, + $726 = 0, + $727 = 0, + $728 = 0, + $729 = 0, + $73 = 0, + $730 = 0, + $731 = 0 + var $732 = 0, + $733 = 0, + $734 = 0, + $735 = 0, + $736 = 0, + $737 = 0, + $738 = 0, + $739 = 0, + $74 = 0, + $740 = 0, + $741 = 0, + $742 = 0, + $743 = 0, + $744 = 0, + $745 = 0, + $746 = 0, + $747 = 0, + $748 = 0, + $749 = 0, + $75 = 0 + var $750 = 0, + $751 = 0, + $752 = 0, + $753 = 0, + $754 = 0, + $755 = 0, + $756 = 0, + $757 = 0, + $758 = 0, + $759 = 0, + $76 = 0, + $760 = 0, + $761 = 0, + $762 = 0, + $763 = 0, + $764 = 0, + $765 = 0, + $766 = 0, + $767 = 0, + $768 = 0 + var $769 = 0, + $77 = 0, + $770 = 0, + $771 = 0, + $772 = 0, + $773 = 0, + $774 = 0, + $775 = 0, + $776 = 0, + $777 = 0, + $778 = 0, + $779 = 0, + $78 = 0, + $780 = 0, + $781 = 0, + $782 = 0, + $783 = 0, + $784 = 0, + $785 = 0, + $786 = 0 + var $787 = 0, + $788 = 0, + $789 = 0, + $79 = 0, + $790 = 0, + $791 = 0, + $792 = 0, + $793 = 0, + $794 = 0, + $795 = 0, + $796 = 0, + $797 = 0, + $798 = 0, + $799 = 0, + $8 = 0, + $80 = 0, + $800 = 0, + $801 = 0, + $802 = 0, + $803 = 0 + var $804 = 0, + $805 = 0, + $806 = 0, + $807 = 0, + $808 = 0, + $809 = 0, + $81 = 0, + $810 = 0, + $811 = 0, + $812 = 0, + $813 = 0, + $814 = 0, + $815 = 0, + $816 = 0, + $817 = 0, + $818 = 0, + $819 = 0, + $82 = 0, + $820 = 0, + $821 = 0 + var $822 = 0, + $823 = 0, + $824 = 0, + $825 = 0, + $826 = 0, + $827 = 0, + $828 = 0, + $829 = 0, + $83 = 0, + $830 = 0, + $831 = 0, + $832 = 0, + $833 = 0, + $834 = 0, + $835 = 0, + $836 = 0, + $837 = 0, + $838 = 0, + $839 = 0, + $84 = 0 + var $840 = 0, + $841 = 0, + $842 = 0, + $843 = 0, + $844 = 0, + $845 = 0, + $846 = 0, + $847 = 0, + $848 = 0, + $849 = 0, + $85 = 0, + $850 = 0, + $851 = 0, + $852 = 0, + $853 = 0, + $854 = 0, + $855 = 0, + $856 = 0, + $857 = 0, + $858 = 0 + var $859 = 0, + $86 = 0, + $860 = 0, + $861 = 0, + $862 = 0, + $863 = 0, + $864 = 0, + $865 = 0, + $866 = 0, + $867 = 0, + $868 = 0, + $869 = 0, + $87 = 0, + $870 = 0, + $871 = 0, + $872 = 0, + $873 = 0, + $874 = 0, + $875 = 0, + $876 = 0 + var $877 = 0, + $878 = 0, + $879 = 0, + $88 = 0, + $880 = 0, + $881 = 0, + $882 = 0, + $883 = 0, + $884 = 0, + $885 = 0, + $886 = 0, + $887 = 0, + $888 = 0, + $889 = 0, + $89 = 0, + $890 = 0, + $891 = 0, + $892 = 0, + $893 = 0, + $894 = 0 + var $895 = 0, + $896 = 0, + $897 = 0, + $898 = 0, + $899 = 0, + $9 = 0, + $90 = 0, + $900 = 0, + $901 = 0, + $902 = 0, + $903 = 0, + $904 = 0, + $905 = 0, + $906 = 0, + $907 = 0, + $908 = 0, + $909 = 0, + $91 = 0, + $910 = 0, + $911 = 0 + var $912 = 0, + $913 = 0, + $914 = 0, + $915 = 0, + $916 = 0, + $917 = 0, + $918 = 0, + $919 = 0, + $92 = 0, + $920 = 0, + $921 = 0, + $922 = 0, + $923 = 0, + $924 = 0, + $925 = 0, + $926 = 0, + $927 = 0, + $928 = 0, + $929 = 0, + $93 = 0 + var $930 = 0, + $931 = 0, + $932 = 0, + $933 = 0, + $934 = 0, + $935 = 0, + $936 = 0, + $937 = 0, + $938 = 0, + $939 = 0, + $94 = 0, + $940 = 0, + $941 = 0, + $942 = 0, + $943 = 0, + $944 = 0, + $945 = 0, + $946 = 0, + $947 = 0, + $948 = 0 + var $949 = 0, + $95 = 0, + $950 = 0, + $951 = 0, + $952 = 0, + $953 = 0, + $954 = 0, + $955 = 0, + $956 = 0, + $957 = 0, + $958 = 0, + $959 = 0, + $96 = 0, + $960 = 0, + $961 = 0, + $962 = 0, + $963 = 0, + $964 = 0, + $965 = 0, + $966 = 0 + var $967 = 0, + $968 = 0, + $969 = 0, + $97 = 0, + $970 = 0, + $971 = 0, + $972 = 0, + $973 = 0, + $974 = 0, + $975 = 0, + $976 = 0, + $977 = 0, + $978 = 0, + $979 = 0, + $98 = 0, + $980 = 0, + $981 = 0, + $982 = 0, + $983 = 0, + $984 = 0 + var $985 = 0, + $986 = 0, + $987 = 0, + $988 = 0, + $989 = 0, + $99 = 0, + $990 = 0, + $991 = 0, + $992 = 0, + $993 = 0, + $994 = 0, + $995 = 0, + $996 = 0, + $997 = 0, + $998 = 0, + $999 = 0, + $F$0$i$i = 0, + $F1$0$i = 0, + $F4$0 = 0, + $F4$0$i$i = 0 + var $F5$0$i = 0, + $I1$0$i$i = 0, + $I7$0$i = 0, + $I7$0$i$i = 0, + $K12$029$i = 0, + $K2$07$i$i = 0, + $K8$051$i$i = 0, + $R$0$i = 0, + $R$0$i$i = 0, + $R$0$i$i$lcssa = 0, + $R$0$i$lcssa = 0, + $R$0$i18 = 0, + $R$0$i18$lcssa = 0, + $R$1$i = 0, + $R$1$i$i = 0, + $R$1$i20 = 0, + $RP$0$i = 0, + $RP$0$i$i = 0, + $RP$0$i$i$lcssa = 0, + $RP$0$i$lcssa = 0 + var $RP$0$i17 = 0, + $RP$0$i17$lcssa = 0, + $T$0$lcssa$i = 0, + $T$0$lcssa$i$i = 0, + $T$0$lcssa$i25$i = 0, + $T$028$i = 0, + $T$028$i$lcssa = 0, + $T$050$i$i = 0, + $T$050$i$i$lcssa = 0, + $T$06$i$i = 0, + $T$06$i$i$lcssa = 0, + $br$0$ph$i = 0, + $cond$i = 0, + $cond$i$i = 0, + $cond$i21 = 0, + $exitcond$i$i = 0, + $i$02$i$i = 0, + $idx$0$i = 0, + $mem$0 = 0, + $nb$0 = 0 + var $not$$i = 0, + $not$$i$i = 0, + $not$$i26$i = 0, + $oldfirst$0$i$i = 0, + $or$cond$i = 0, + $or$cond$i30 = 0, + $or$cond1$i = 0, + $or$cond19$i = 0, + $or$cond2$i = 0, + $or$cond3$i = 0, + $or$cond5$i = 0, + $or$cond57$i = 0, + $or$cond6$i = 0, + $or$cond8$i = 0, + $or$cond9$i = 0, + $qsize$0$i$i = 0, + $rsize$0$i = 0, + $rsize$0$i$lcssa = 0, + $rsize$0$i15 = 0, + $rsize$1$i = 0 + var $rsize$2$i = 0, + $rsize$3$lcssa$i = 0, + $rsize$331$i = 0, + $rst$0$i = 0, + $rst$1$i = 0, + $sizebits$0$i = 0, + $sp$0$i$i = 0, + $sp$0$i$i$i = 0, + $sp$084$i = 0, + $sp$084$i$lcssa = 0, + $sp$183$i = 0, + $sp$183$i$lcssa = 0, + $ssize$0$$i = 0, + $ssize$0$i = 0, + $ssize$1$ph$i = 0, + $ssize$2$i = 0, + $t$0$i = 0, + $t$0$i14 = 0, + $t$1$i = 0, + $t$2$ph$i = 0 + var $t$2$v$3$i = 0, + $t$230$i = 0, + $tbase$255$i = 0, + $tsize$0$ph$i = 0, + $tsize$0323944$i = 0, + $tsize$1$i = 0, + $tsize$254$i = 0, + $v$0$i = 0, + $v$0$i$lcssa = 0, + $v$0$i16 = 0, + $v$1$i = 0, + $v$2$i = 0, + $v$3$lcssa$i = 0, + $v$3$ph$i = 0, + $v$332$i = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = $bytes >>> 0 < 245 + do { + if ($0) { + $1 = $bytes >>> 0 < 11 + $2 = ($bytes + 11) | 0 + $3 = $2 & -8 + $4 = $1 ? 16 : $3 + $5 = $4 >>> 3 + $6 = HEAP32[32612 >> 2] | 0 + $7 = $6 >>> $5 + $8 = $7 & 3 + $9 = ($8 | 0) == 0 + if (!$9) { + $10 = $7 & 1 + $11 = $10 ^ 1 + $12 = ($11 + $5) | 0 + $13 = $12 << 1 + $14 = (32652 + ($13 << 2)) | 0 + $$sum10 = ($13 + 2) | 0 + $15 = (32652 + ($$sum10 << 2)) | 0 + $16 = HEAP32[$15 >> 2] | 0 + $17 = ($16 + 8) | 0 + $18 = HEAP32[$17 >> 2] | 0 + $19 = ($14 | 0) == ($18 | 0) + do { + if ($19) { + $20 = 1 << $12 + $21 = $20 ^ -1 + $22 = $6 & $21 + HEAP32[32612 >> 2] = $22 + } else { + $23 = HEAP32[32628 >> 2] | 0 + $24 = $18 >>> 0 < $23 >>> 0 + if ($24) { + _abort() + // unreachable; + } + $25 = ($18 + 12) | 0 + $26 = HEAP32[$25 >> 2] | 0 + $27 = ($26 | 0) == ($16 | 0) + if ($27) { + HEAP32[$25 >> 2] = $14 + HEAP32[$15 >> 2] = $18 + break + } else { + _abort() + // unreachable; + } + } + } while (0) + $28 = $12 << 3 + $29 = $28 | 3 + $30 = ($16 + 4) | 0 + HEAP32[$30 >> 2] = $29 + $$sum1112 = $28 | 4 + $31 = ($16 + $$sum1112) | 0 + $32 = HEAP32[$31 >> 2] | 0 + $33 = $32 | 1 + HEAP32[$31 >> 2] = $33 + $mem$0 = $17 + return $mem$0 | 0 + } + $34 = HEAP32[32620 >> 2] | 0 + $35 = $4 >>> 0 > $34 >>> 0 + if ($35) { + $36 = ($7 | 0) == 0 + if (!$36) { + $37 = $7 << $5 + $38 = 2 << $5 + $39 = (0 - $38) | 0 + $40 = $38 | $39 + $41 = $37 & $40 + $42 = (0 - $41) | 0 + $43 = $41 & $42 + $44 = ($43 + -1) | 0 + $45 = $44 >>> 12 + $46 = $45 & 16 + $47 = $44 >>> $46 + $48 = $47 >>> 5 + $49 = $48 & 8 + $50 = $49 | $46 + $51 = $47 >>> $49 + $52 = $51 >>> 2 + $53 = $52 & 4 + $54 = $50 | $53 + $55 = $51 >>> $53 + $56 = $55 >>> 1 + $57 = $56 & 2 + $58 = $54 | $57 + $59 = $55 >>> $57 + $60 = $59 >>> 1 + $61 = $60 & 1 + $62 = $58 | $61 + $63 = $59 >>> $61 + $64 = ($62 + $63) | 0 + $65 = $64 << 1 + $66 = (32652 + ($65 << 2)) | 0 + $$sum4 = ($65 + 2) | 0 + $67 = (32652 + ($$sum4 << 2)) | 0 + $68 = HEAP32[$67 >> 2] | 0 + $69 = ($68 + 8) | 0 + $70 = HEAP32[$69 >> 2] | 0 + $71 = ($66 | 0) == ($70 | 0) + do { + if ($71) { + $72 = 1 << $64 + $73 = $72 ^ -1 + $74 = $6 & $73 + HEAP32[32612 >> 2] = $74 + $88 = $34 + } else { + $75 = HEAP32[32628 >> 2] | 0 + $76 = $70 >>> 0 < $75 >>> 0 + if ($76) { + _abort() + // unreachable; + } + $77 = ($70 + 12) | 0 + $78 = HEAP32[$77 >> 2] | 0 + $79 = ($78 | 0) == ($68 | 0) + if ($79) { + HEAP32[$77 >> 2] = $66 + HEAP32[$67 >> 2] = $70 + $$pre = HEAP32[32620 >> 2] | 0 + $88 = $$pre + break + } else { + _abort() + // unreachable; + } + } + } while (0) + $80 = $64 << 3 + $81 = ($80 - $4) | 0 + $82 = $4 | 3 + $83 = ($68 + 4) | 0 + HEAP32[$83 >> 2] = $82 + $84 = ($68 + $4) | 0 + $85 = $81 | 1 + $$sum56 = $4 | 4 + $86 = ($68 + $$sum56) | 0 + HEAP32[$86 >> 2] = $85 + $87 = ($68 + $80) | 0 + HEAP32[$87 >> 2] = $81 + $89 = ($88 | 0) == 0 + if (!$89) { + $90 = HEAP32[32632 >> 2] | 0 + $91 = $88 >>> 3 + $92 = $91 << 1 + $93 = (32652 + ($92 << 2)) | 0 + $94 = HEAP32[32612 >> 2] | 0 + $95 = 1 << $91 + $96 = $94 & $95 + $97 = ($96 | 0) == 0 + if ($97) { + $98 = $94 | $95 + HEAP32[32612 >> 2] = $98 + $$pre105 = ($92 + 2) | 0 + $$pre106 = (32652 + ($$pre105 << 2)) | 0 + $$pre$phiZ2D = $$pre106 + $F4$0 = $93 + } else { + $$sum9 = ($92 + 2) | 0 + $99 = (32652 + ($$sum9 << 2)) | 0 + $100 = HEAP32[$99 >> 2] | 0 + $101 = HEAP32[32628 >> 2] | 0 + $102 = $100 >>> 0 < $101 >>> 0 + if ($102) { + _abort() + // unreachable; + } else { + $$pre$phiZ2D = $99 + $F4$0 = $100 + } + } + HEAP32[$$pre$phiZ2D >> 2] = $90 + $103 = ($F4$0 + 12) | 0 + HEAP32[$103 >> 2] = $90 + $104 = ($90 + 8) | 0 + HEAP32[$104 >> 2] = $F4$0 + $105 = ($90 + 12) | 0 + HEAP32[$105 >> 2] = $93 + } + HEAP32[32620 >> 2] = $81 + HEAP32[32632 >> 2] = $84 + $mem$0 = $69 + return $mem$0 | 0 + } + $106 = HEAP32[32616 >> 2] | 0 + $107 = ($106 | 0) == 0 + if ($107) { + $nb$0 = $4 + } else { + $108 = (0 - $106) | 0 + $109 = $106 & $108 + $110 = ($109 + -1) | 0 + $111 = $110 >>> 12 + $112 = $111 & 16 + $113 = $110 >>> $112 + $114 = $113 >>> 5 + $115 = $114 & 8 + $116 = $115 | $112 + $117 = $113 >>> $115 + $118 = $117 >>> 2 + $119 = $118 & 4 + $120 = $116 | $119 + $121 = $117 >>> $119 + $122 = $121 >>> 1 + $123 = $122 & 2 + $124 = $120 | $123 + $125 = $121 >>> $123 + $126 = $125 >>> 1 + $127 = $126 & 1 + $128 = $124 | $127 + $129 = $125 >>> $127 + $130 = ($128 + $129) | 0 + $131 = (32916 + ($130 << 2)) | 0 + $132 = HEAP32[$131 >> 2] | 0 + $133 = ($132 + 4) | 0 + $134 = HEAP32[$133 >> 2] | 0 + $135 = $134 & -8 + $136 = ($135 - $4) | 0 + $rsize$0$i = $136 + $t$0$i = $132 + $v$0$i = $132 + while (1) { + $137 = ($t$0$i + 16) | 0 + $138 = HEAP32[$137 >> 2] | 0 + $139 = ($138 | 0) == (0 | 0) + if ($139) { + $140 = ($t$0$i + 20) | 0 + $141 = HEAP32[$140 >> 2] | 0 + $142 = ($141 | 0) == (0 | 0) + if ($142) { + $rsize$0$i$lcssa = $rsize$0$i + $v$0$i$lcssa = $v$0$i + break + } else { + $144 = $141 + } + } else { + $144 = $138 + } + $143 = ($144 + 4) | 0 + $145 = HEAP32[$143 >> 2] | 0 + $146 = $145 & -8 + $147 = ($146 - $4) | 0 + $148 = $147 >>> 0 < $rsize$0$i >>> 0 + $$rsize$0$i = $148 ? $147 : $rsize$0$i + $$v$0$i = $148 ? $144 : $v$0$i + $rsize$0$i = $$rsize$0$i + $t$0$i = $144 + $v$0$i = $$v$0$i + } + $149 = HEAP32[32628 >> 2] | 0 + $150 = $v$0$i$lcssa >>> 0 < $149 >>> 0 + if ($150) { + _abort() + // unreachable; + } + $151 = ($v$0$i$lcssa + $4) | 0 + $152 = $v$0$i$lcssa >>> 0 < $151 >>> 0 + if (!$152) { + _abort() + // unreachable; + } + $153 = ($v$0$i$lcssa + 24) | 0 + $154 = HEAP32[$153 >> 2] | 0 + $155 = ($v$0$i$lcssa + 12) | 0 + $156 = HEAP32[$155 >> 2] | 0 + $157 = ($156 | 0) == ($v$0$i$lcssa | 0) + do { + if ($157) { + $167 = ($v$0$i$lcssa + 20) | 0 + $168 = HEAP32[$167 >> 2] | 0 + $169 = ($168 | 0) == (0 | 0) + if ($169) { + $170 = ($v$0$i$lcssa + 16) | 0 + $171 = HEAP32[$170 >> 2] | 0 + $172 = ($171 | 0) == (0 | 0) + if ($172) { + $R$1$i = 0 + break + } else { + $R$0$i = $171 + $RP$0$i = $170 + } + } else { + $R$0$i = $168 + $RP$0$i = $167 + } + while (1) { + $173 = ($R$0$i + 20) | 0 + $174 = HEAP32[$173 >> 2] | 0 + $175 = ($174 | 0) == (0 | 0) + if (!$175) { + $R$0$i = $174 + $RP$0$i = $173 + continue + } + $176 = ($R$0$i + 16) | 0 + $177 = HEAP32[$176 >> 2] | 0 + $178 = ($177 | 0) == (0 | 0) + if ($178) { + $R$0$i$lcssa = $R$0$i + $RP$0$i$lcssa = $RP$0$i + break + } else { + $R$0$i = $177 + $RP$0$i = $176 + } + } + $179 = $RP$0$i$lcssa >>> 0 < $149 >>> 0 + if ($179) { + _abort() + // unreachable; + } else { + HEAP32[$RP$0$i$lcssa >> 2] = 0 + $R$1$i = $R$0$i$lcssa + break + } + } else { + $158 = ($v$0$i$lcssa + 8) | 0 + $159 = HEAP32[$158 >> 2] | 0 + $160 = $159 >>> 0 < $149 >>> 0 + if ($160) { + _abort() + // unreachable; + } + $161 = ($159 + 12) | 0 + $162 = HEAP32[$161 >> 2] | 0 + $163 = ($162 | 0) == ($v$0$i$lcssa | 0) + if (!$163) { + _abort() + // unreachable; + } + $164 = ($156 + 8) | 0 + $165 = HEAP32[$164 >> 2] | 0 + $166 = ($165 | 0) == ($v$0$i$lcssa | 0) + if ($166) { + HEAP32[$161 >> 2] = $156 + HEAP32[$164 >> 2] = $159 + $R$1$i = $156 + break + } else { + _abort() + // unreachable; + } + } + } while (0) + $180 = ($154 | 0) == (0 | 0) + do { + if (!$180) { + $181 = ($v$0$i$lcssa + 28) | 0 + $182 = HEAP32[$181 >> 2] | 0 + $183 = (32916 + ($182 << 2)) | 0 + $184 = HEAP32[$183 >> 2] | 0 + $185 = ($v$0$i$lcssa | 0) == ($184 | 0) + if ($185) { + HEAP32[$183 >> 2] = $R$1$i + $cond$i = ($R$1$i | 0) == (0 | 0) + if ($cond$i) { + $186 = 1 << $182 + $187 = $186 ^ -1 + $188 = HEAP32[32616 >> 2] | 0 + $189 = $188 & $187 + HEAP32[32616 >> 2] = $189 + break + } + } else { + $190 = HEAP32[32628 >> 2] | 0 + $191 = $154 >>> 0 < $190 >>> 0 + if ($191) { + _abort() + // unreachable; + } + $192 = ($154 + 16) | 0 + $193 = HEAP32[$192 >> 2] | 0 + $194 = ($193 | 0) == ($v$0$i$lcssa | 0) + if ($194) { + HEAP32[$192 >> 2] = $R$1$i + } else { + $195 = ($154 + 20) | 0 + HEAP32[$195 >> 2] = $R$1$i + } + $196 = ($R$1$i | 0) == (0 | 0) + if ($196) { + break + } + } + $197 = HEAP32[32628 >> 2] | 0 + $198 = $R$1$i >>> 0 < $197 >>> 0 + if ($198) { + _abort() + // unreachable; + } + $199 = ($R$1$i + 24) | 0 + HEAP32[$199 >> 2] = $154 + $200 = ($v$0$i$lcssa + 16) | 0 + $201 = HEAP32[$200 >> 2] | 0 + $202 = ($201 | 0) == (0 | 0) + do { + if (!$202) { + $203 = $201 >>> 0 < $197 >>> 0 + if ($203) { + _abort() + // unreachable; + } else { + $204 = ($R$1$i + 16) | 0 + HEAP32[$204 >> 2] = $201 + $205 = ($201 + 24) | 0 + HEAP32[$205 >> 2] = $R$1$i + break + } + } + } while (0) + $206 = ($v$0$i$lcssa + 20) | 0 + $207 = HEAP32[$206 >> 2] | 0 + $208 = ($207 | 0) == (0 | 0) + if (!$208) { + $209 = HEAP32[32628 >> 2] | 0 + $210 = $207 >>> 0 < $209 >>> 0 + if ($210) { + _abort() + // unreachable; + } else { + $211 = ($R$1$i + 20) | 0 + HEAP32[$211 >> 2] = $207 + $212 = ($207 + 24) | 0 + HEAP32[$212 >> 2] = $R$1$i + break + } + } + } + } while (0) + $213 = $rsize$0$i$lcssa >>> 0 < 16 + if ($213) { + $214 = ($rsize$0$i$lcssa + $4) | 0 + $215 = $214 | 3 + $216 = ($v$0$i$lcssa + 4) | 0 + HEAP32[$216 >> 2] = $215 + $$sum4$i = ($214 + 4) | 0 + $217 = ($v$0$i$lcssa + $$sum4$i) | 0 + $218 = HEAP32[$217 >> 2] | 0 + $219 = $218 | 1 + HEAP32[$217 >> 2] = $219 + } else { + $220 = $4 | 3 + $221 = ($v$0$i$lcssa + 4) | 0 + HEAP32[$221 >> 2] = $220 + $222 = $rsize$0$i$lcssa | 1 + $$sum$i35 = $4 | 4 + $223 = ($v$0$i$lcssa + $$sum$i35) | 0 + HEAP32[$223 >> 2] = $222 + $$sum1$i = ($rsize$0$i$lcssa + $4) | 0 + $224 = ($v$0$i$lcssa + $$sum1$i) | 0 + HEAP32[$224 >> 2] = $rsize$0$i$lcssa + $225 = HEAP32[32620 >> 2] | 0 + $226 = ($225 | 0) == 0 + if (!$226) { + $227 = HEAP32[32632 >> 2] | 0 + $228 = $225 >>> 3 + $229 = $228 << 1 + $230 = (32652 + ($229 << 2)) | 0 + $231 = HEAP32[32612 >> 2] | 0 + $232 = 1 << $228 + $233 = $231 & $232 + $234 = ($233 | 0) == 0 + if ($234) { + $235 = $231 | $232 + HEAP32[32612 >> 2] = $235 + $$pre$i = ($229 + 2) | 0 + $$pre8$i = (32652 + ($$pre$i << 2)) | 0 + $$pre$phi$iZ2D = $$pre8$i + $F1$0$i = $230 + } else { + $$sum3$i = ($229 + 2) | 0 + $236 = (32652 + ($$sum3$i << 2)) | 0 + $237 = HEAP32[$236 >> 2] | 0 + $238 = HEAP32[32628 >> 2] | 0 + $239 = $237 >>> 0 < $238 >>> 0 + if ($239) { + _abort() + // unreachable; + } else { + $$pre$phi$iZ2D = $236 + $F1$0$i = $237 + } + } + HEAP32[$$pre$phi$iZ2D >> 2] = $227 + $240 = ($F1$0$i + 12) | 0 + HEAP32[$240 >> 2] = $227 + $241 = ($227 + 8) | 0 + HEAP32[$241 >> 2] = $F1$0$i + $242 = ($227 + 12) | 0 + HEAP32[$242 >> 2] = $230 + } + HEAP32[32620 >> 2] = $rsize$0$i$lcssa + HEAP32[32632 >> 2] = $151 + } + $243 = ($v$0$i$lcssa + 8) | 0 + $mem$0 = $243 + return $mem$0 | 0 + } + } else { + $nb$0 = $4 + } + } else { + $244 = $bytes >>> 0 > 4294967231 + if ($244) { + $nb$0 = -1 + } else { + $245 = ($bytes + 11) | 0 + $246 = $245 & -8 + $247 = HEAP32[32616 >> 2] | 0 + $248 = ($247 | 0) == 0 + if ($248) { + $nb$0 = $246 + } else { + $249 = (0 - $246) | 0 + $250 = $245 >>> 8 + $251 = ($250 | 0) == 0 + if ($251) { + $idx$0$i = 0 + } else { + $252 = $246 >>> 0 > 16777215 + if ($252) { + $idx$0$i = 31 + } else { + $253 = ($250 + 1048320) | 0 + $254 = $253 >>> 16 + $255 = $254 & 8 + $256 = $250 << $255 + $257 = ($256 + 520192) | 0 + $258 = $257 >>> 16 + $259 = $258 & 4 + $260 = $259 | $255 + $261 = $256 << $259 + $262 = ($261 + 245760) | 0 + $263 = $262 >>> 16 + $264 = $263 & 2 + $265 = $260 | $264 + $266 = (14 - $265) | 0 + $267 = $261 << $264 + $268 = $267 >>> 15 + $269 = ($266 + $268) | 0 + $270 = $269 << 1 + $271 = ($269 + 7) | 0 + $272 = $246 >>> $271 + $273 = $272 & 1 + $274 = $273 | $270 + $idx$0$i = $274 + } + } + $275 = (32916 + ($idx$0$i << 2)) | 0 + $276 = HEAP32[$275 >> 2] | 0 + $277 = ($276 | 0) == (0 | 0) + L123: do { + if ($277) { + $rsize$2$i = $249 + $t$1$i = 0 + $v$2$i = 0 + label = 86 + } else { + $278 = ($idx$0$i | 0) == 31 + $279 = $idx$0$i >>> 1 + $280 = (25 - $279) | 0 + $281 = $278 ? 0 : $280 + $282 = $246 << $281 + $rsize$0$i15 = $249 + $rst$0$i = 0 + $sizebits$0$i = $282 + $t$0$i14 = $276 + $v$0$i16 = 0 + while (1) { + $283 = ($t$0$i14 + 4) | 0 + $284 = HEAP32[$283 >> 2] | 0 + $285 = $284 & -8 + $286 = ($285 - $246) | 0 + $287 = $286 >>> 0 < $rsize$0$i15 >>> 0 + if ($287) { + $288 = ($285 | 0) == ($246 | 0) + if ($288) { + $rsize$331$i = $286 + $t$230$i = $t$0$i14 + $v$332$i = $t$0$i14 + label = 90 + break L123 + } else { + $rsize$1$i = $286 + $v$1$i = $t$0$i14 + } + } else { + $rsize$1$i = $rsize$0$i15 + $v$1$i = $v$0$i16 + } + $289 = ($t$0$i14 + 20) | 0 + $290 = HEAP32[$289 >> 2] | 0 + $291 = $sizebits$0$i >>> 31 + $292 = ((($t$0$i14 + 16) | 0) + ($291 << 2)) | 0 + $293 = HEAP32[$292 >> 2] | 0 + $294 = ($290 | 0) == (0 | 0) + $295 = ($290 | 0) == ($293 | 0) + $or$cond19$i = $294 | $295 + $rst$1$i = $or$cond19$i ? $rst$0$i : $290 + $296 = ($293 | 0) == (0 | 0) + $297 = $sizebits$0$i << 1 + if ($296) { + $rsize$2$i = $rsize$1$i + $t$1$i = $rst$1$i + $v$2$i = $v$1$i + label = 86 + break + } else { + $rsize$0$i15 = $rsize$1$i + $rst$0$i = $rst$1$i + $sizebits$0$i = $297 + $t$0$i14 = $293 + $v$0$i16 = $v$1$i + } + } + } + } while (0) + if ((label | 0) == 86) { + $298 = ($t$1$i | 0) == (0 | 0) + $299 = ($v$2$i | 0) == (0 | 0) + $or$cond$i = $298 & $299 + if ($or$cond$i) { + $300 = 2 << $idx$0$i + $301 = (0 - $300) | 0 + $302 = $300 | $301 + $303 = $247 & $302 + $304 = ($303 | 0) == 0 + if ($304) { + $nb$0 = $246 + break + } + $305 = (0 - $303) | 0 + $306 = $303 & $305 + $307 = ($306 + -1) | 0 + $308 = $307 >>> 12 + $309 = $308 & 16 + $310 = $307 >>> $309 + $311 = $310 >>> 5 + $312 = $311 & 8 + $313 = $312 | $309 + $314 = $310 >>> $312 + $315 = $314 >>> 2 + $316 = $315 & 4 + $317 = $313 | $316 + $318 = $314 >>> $316 + $319 = $318 >>> 1 + $320 = $319 & 2 + $321 = $317 | $320 + $322 = $318 >>> $320 + $323 = $322 >>> 1 + $324 = $323 & 1 + $325 = $321 | $324 + $326 = $322 >>> $324 + $327 = ($325 + $326) | 0 + $328 = (32916 + ($327 << 2)) | 0 + $329 = HEAP32[$328 >> 2] | 0 + $t$2$ph$i = $329 + $v$3$ph$i = 0 + } else { + $t$2$ph$i = $t$1$i + $v$3$ph$i = $v$2$i + } + $330 = ($t$2$ph$i | 0) == (0 | 0) + if ($330) { + $rsize$3$lcssa$i = $rsize$2$i + $v$3$lcssa$i = $v$3$ph$i + } else { + $rsize$331$i = $rsize$2$i + $t$230$i = $t$2$ph$i + $v$332$i = $v$3$ph$i + label = 90 + } + } + if ((label | 0) == 90) { + while (1) { + label = 0 + $331 = ($t$230$i + 4) | 0 + $332 = HEAP32[$331 >> 2] | 0 + $333 = $332 & -8 + $334 = ($333 - $246) | 0 + $335 = $334 >>> 0 < $rsize$331$i >>> 0 + $$rsize$3$i = $335 ? $334 : $rsize$331$i + $t$2$v$3$i = $335 ? $t$230$i : $v$332$i + $336 = ($t$230$i + 16) | 0 + $337 = HEAP32[$336 >> 2] | 0 + $338 = ($337 | 0) == (0 | 0) + if (!$338) { + $rsize$331$i = $$rsize$3$i + $t$230$i = $337 + $v$332$i = $t$2$v$3$i + label = 90 + continue + } + $339 = ($t$230$i + 20) | 0 + $340 = HEAP32[$339 >> 2] | 0 + $341 = ($340 | 0) == (0 | 0) + if ($341) { + $rsize$3$lcssa$i = $$rsize$3$i + $v$3$lcssa$i = $t$2$v$3$i + break + } else { + $rsize$331$i = $$rsize$3$i + $t$230$i = $340 + $v$332$i = $t$2$v$3$i + label = 90 + } + } + } + $342 = ($v$3$lcssa$i | 0) == (0 | 0) + if ($342) { + $nb$0 = $246 + } else { + $343 = HEAP32[32620 >> 2] | 0 + $344 = ($343 - $246) | 0 + $345 = $rsize$3$lcssa$i >>> 0 < $344 >>> 0 + if ($345) { + $346 = HEAP32[32628 >> 2] | 0 + $347 = $v$3$lcssa$i >>> 0 < $346 >>> 0 + if ($347) { + _abort() + // unreachable; + } + $348 = ($v$3$lcssa$i + $246) | 0 + $349 = $v$3$lcssa$i >>> 0 < $348 >>> 0 + if (!$349) { + _abort() + // unreachable; + } + $350 = ($v$3$lcssa$i + 24) | 0 + $351 = HEAP32[$350 >> 2] | 0 + $352 = ($v$3$lcssa$i + 12) | 0 + $353 = HEAP32[$352 >> 2] | 0 + $354 = ($353 | 0) == ($v$3$lcssa$i | 0) + do { + if ($354) { + $364 = ($v$3$lcssa$i + 20) | 0 + $365 = HEAP32[$364 >> 2] | 0 + $366 = ($365 | 0) == (0 | 0) + if ($366) { + $367 = ($v$3$lcssa$i + 16) | 0 + $368 = HEAP32[$367 >> 2] | 0 + $369 = ($368 | 0) == (0 | 0) + if ($369) { + $R$1$i20 = 0 + break + } else { + $R$0$i18 = $368 + $RP$0$i17 = $367 + } + } else { + $R$0$i18 = $365 + $RP$0$i17 = $364 + } + while (1) { + $370 = ($R$0$i18 + 20) | 0 + $371 = HEAP32[$370 >> 2] | 0 + $372 = ($371 | 0) == (0 | 0) + if (!$372) { + $R$0$i18 = $371 + $RP$0$i17 = $370 + continue + } + $373 = ($R$0$i18 + 16) | 0 + $374 = HEAP32[$373 >> 2] | 0 + $375 = ($374 | 0) == (0 | 0) + if ($375) { + $R$0$i18$lcssa = $R$0$i18 + $RP$0$i17$lcssa = $RP$0$i17 + break + } else { + $R$0$i18 = $374 + $RP$0$i17 = $373 + } + } + $376 = $RP$0$i17$lcssa >>> 0 < $346 >>> 0 + if ($376) { + _abort() + // unreachable; + } else { + HEAP32[$RP$0$i17$lcssa >> 2] = 0 + $R$1$i20 = $R$0$i18$lcssa + break + } + } else { + $355 = ($v$3$lcssa$i + 8) | 0 + $356 = HEAP32[$355 >> 2] | 0 + $357 = $356 >>> 0 < $346 >>> 0 + if ($357) { + _abort() + // unreachable; + } + $358 = ($356 + 12) | 0 + $359 = HEAP32[$358 >> 2] | 0 + $360 = ($359 | 0) == ($v$3$lcssa$i | 0) + if (!$360) { + _abort() + // unreachable; + } + $361 = ($353 + 8) | 0 + $362 = HEAP32[$361 >> 2] | 0 + $363 = ($362 | 0) == ($v$3$lcssa$i | 0) + if ($363) { + HEAP32[$358 >> 2] = $353 + HEAP32[$361 >> 2] = $356 + $R$1$i20 = $353 + break + } else { + _abort() + // unreachable; + } + } + } while (0) + $377 = ($351 | 0) == (0 | 0) + do { + if (!$377) { + $378 = ($v$3$lcssa$i + 28) | 0 + $379 = HEAP32[$378 >> 2] | 0 + $380 = (32916 + ($379 << 2)) | 0 + $381 = HEAP32[$380 >> 2] | 0 + $382 = ($v$3$lcssa$i | 0) == ($381 | 0) + if ($382) { + HEAP32[$380 >> 2] = $R$1$i20 + $cond$i21 = ($R$1$i20 | 0) == (0 | 0) + if ($cond$i21) { + $383 = 1 << $379 + $384 = $383 ^ -1 + $385 = HEAP32[32616 >> 2] | 0 + $386 = $385 & $384 + HEAP32[32616 >> 2] = $386 + break + } + } else { + $387 = HEAP32[32628 >> 2] | 0 + $388 = $351 >>> 0 < $387 >>> 0 + if ($388) { + _abort() + // unreachable; + } + $389 = ($351 + 16) | 0 + $390 = HEAP32[$389 >> 2] | 0 + $391 = ($390 | 0) == ($v$3$lcssa$i | 0) + if ($391) { + HEAP32[$389 >> 2] = $R$1$i20 + } else { + $392 = ($351 + 20) | 0 + HEAP32[$392 >> 2] = $R$1$i20 + } + $393 = ($R$1$i20 | 0) == (0 | 0) + if ($393) { + break + } + } + $394 = HEAP32[32628 >> 2] | 0 + $395 = $R$1$i20 >>> 0 < $394 >>> 0 + if ($395) { + _abort() + // unreachable; + } + $396 = ($R$1$i20 + 24) | 0 + HEAP32[$396 >> 2] = $351 + $397 = ($v$3$lcssa$i + 16) | 0 + $398 = HEAP32[$397 >> 2] | 0 + $399 = ($398 | 0) == (0 | 0) + do { + if (!$399) { + $400 = $398 >>> 0 < $394 >>> 0 + if ($400) { + _abort() + // unreachable; + } else { + $401 = ($R$1$i20 + 16) | 0 + HEAP32[$401 >> 2] = $398 + $402 = ($398 + 24) | 0 + HEAP32[$402 >> 2] = $R$1$i20 + break + } + } + } while (0) + $403 = ($v$3$lcssa$i + 20) | 0 + $404 = HEAP32[$403 >> 2] | 0 + $405 = ($404 | 0) == (0 | 0) + if (!$405) { + $406 = HEAP32[32628 >> 2] | 0 + $407 = $404 >>> 0 < $406 >>> 0 + if ($407) { + _abort() + // unreachable; + } else { + $408 = ($R$1$i20 + 20) | 0 + HEAP32[$408 >> 2] = $404 + $409 = ($404 + 24) | 0 + HEAP32[$409 >> 2] = $R$1$i20 + break + } + } + } + } while (0) + $410 = $rsize$3$lcssa$i >>> 0 < 16 + L199: do { + if ($410) { + $411 = ($rsize$3$lcssa$i + $246) | 0 + $412 = $411 | 3 + $413 = ($v$3$lcssa$i + 4) | 0 + HEAP32[$413 >> 2] = $412 + $$sum18$i = ($411 + 4) | 0 + $414 = ($v$3$lcssa$i + $$sum18$i) | 0 + $415 = HEAP32[$414 >> 2] | 0 + $416 = $415 | 1 + HEAP32[$414 >> 2] = $416 + } else { + $417 = $246 | 3 + $418 = ($v$3$lcssa$i + 4) | 0 + HEAP32[$418 >> 2] = $417 + $419 = $rsize$3$lcssa$i | 1 + $$sum$i2334 = $246 | 4 + $420 = ($v$3$lcssa$i + $$sum$i2334) | 0 + HEAP32[$420 >> 2] = $419 + $$sum1$i24 = ($rsize$3$lcssa$i + $246) | 0 + $421 = ($v$3$lcssa$i + $$sum1$i24) | 0 + HEAP32[$421 >> 2] = $rsize$3$lcssa$i + $422 = $rsize$3$lcssa$i >>> 3 + $423 = $rsize$3$lcssa$i >>> 0 < 256 + if ($423) { + $424 = $422 << 1 + $425 = (32652 + ($424 << 2)) | 0 + $426 = HEAP32[32612 >> 2] | 0 + $427 = 1 << $422 + $428 = $426 & $427 + $429 = ($428 | 0) == 0 + if ($429) { + $430 = $426 | $427 + HEAP32[32612 >> 2] = $430 + $$pre$i25 = ($424 + 2) | 0 + $$pre43$i = (32652 + ($$pre$i25 << 2)) | 0 + $$pre$phi$i26Z2D = $$pre43$i + $F5$0$i = $425 + } else { + $$sum17$i = ($424 + 2) | 0 + $431 = (32652 + ($$sum17$i << 2)) | 0 + $432 = HEAP32[$431 >> 2] | 0 + $433 = HEAP32[32628 >> 2] | 0 + $434 = $432 >>> 0 < $433 >>> 0 + if ($434) { + _abort() + // unreachable; + } else { + $$pre$phi$i26Z2D = $431 + $F5$0$i = $432 + } + } + HEAP32[$$pre$phi$i26Z2D >> 2] = $348 + $435 = ($F5$0$i + 12) | 0 + HEAP32[$435 >> 2] = $348 + $$sum15$i = ($246 + 8) | 0 + $436 = ($v$3$lcssa$i + $$sum15$i) | 0 + HEAP32[$436 >> 2] = $F5$0$i + $$sum16$i = ($246 + 12) | 0 + $437 = ($v$3$lcssa$i + $$sum16$i) | 0 + HEAP32[$437 >> 2] = $425 + break + } + $438 = $rsize$3$lcssa$i >>> 8 + $439 = ($438 | 0) == 0 + if ($439) { + $I7$0$i = 0 + } else { + $440 = $rsize$3$lcssa$i >>> 0 > 16777215 + if ($440) { + $I7$0$i = 31 + } else { + $441 = ($438 + 1048320) | 0 + $442 = $441 >>> 16 + $443 = $442 & 8 + $444 = $438 << $443 + $445 = ($444 + 520192) | 0 + $446 = $445 >>> 16 + $447 = $446 & 4 + $448 = $447 | $443 + $449 = $444 << $447 + $450 = ($449 + 245760) | 0 + $451 = $450 >>> 16 + $452 = $451 & 2 + $453 = $448 | $452 + $454 = (14 - $453) | 0 + $455 = $449 << $452 + $456 = $455 >>> 15 + $457 = ($454 + $456) | 0 + $458 = $457 << 1 + $459 = ($457 + 7) | 0 + $460 = $rsize$3$lcssa$i >>> $459 + $461 = $460 & 1 + $462 = $461 | $458 + $I7$0$i = $462 + } + } + $463 = (32916 + ($I7$0$i << 2)) | 0 + $$sum2$i = ($246 + 28) | 0 + $464 = ($v$3$lcssa$i + $$sum2$i) | 0 + HEAP32[$464 >> 2] = $I7$0$i + $$sum3$i27 = ($246 + 16) | 0 + $465 = ($v$3$lcssa$i + $$sum3$i27) | 0 + $$sum4$i28 = ($246 + 20) | 0 + $466 = ($v$3$lcssa$i + $$sum4$i28) | 0 + HEAP32[$466 >> 2] = 0 + HEAP32[$465 >> 2] = 0 + $467 = HEAP32[32616 >> 2] | 0 + $468 = 1 << $I7$0$i + $469 = $467 & $468 + $470 = ($469 | 0) == 0 + if ($470) { + $471 = $467 | $468 + HEAP32[32616 >> 2] = $471 + HEAP32[$463 >> 2] = $348 + $$sum5$i = ($246 + 24) | 0 + $472 = ($v$3$lcssa$i + $$sum5$i) | 0 + HEAP32[$472 >> 2] = $463 + $$sum6$i = ($246 + 12) | 0 + $473 = ($v$3$lcssa$i + $$sum6$i) | 0 + HEAP32[$473 >> 2] = $348 + $$sum7$i = ($246 + 8) | 0 + $474 = ($v$3$lcssa$i + $$sum7$i) | 0 + HEAP32[$474 >> 2] = $348 + break + } + $475 = HEAP32[$463 >> 2] | 0 + $476 = ($475 + 4) | 0 + $477 = HEAP32[$476 >> 2] | 0 + $478 = $477 & -8 + $479 = ($478 | 0) == ($rsize$3$lcssa$i | 0) + L217: do { + if ($479) { + $T$0$lcssa$i = $475 + } else { + $480 = ($I7$0$i | 0) == 31 + $481 = $I7$0$i >>> 1 + $482 = (25 - $481) | 0 + $483 = $480 ? 0 : $482 + $484 = $rsize$3$lcssa$i << $483 + $K12$029$i = $484 + $T$028$i = $475 + while (1) { + $491 = $K12$029$i >>> 31 + $492 = + ((($T$028$i + 16) | 0) + ($491 << 2)) | + 0 + $487 = HEAP32[$492 >> 2] | 0 + $493 = ($487 | 0) == (0 | 0) + if ($493) { + $$lcssa232 = $492 + $T$028$i$lcssa = $T$028$i + break + } + $485 = $K12$029$i << 1 + $486 = ($487 + 4) | 0 + $488 = HEAP32[$486 >> 2] | 0 + $489 = $488 & -8 + $490 = + ($489 | 0) == ($rsize$3$lcssa$i | 0) + if ($490) { + $T$0$lcssa$i = $487 + break L217 + } else { + $K12$029$i = $485 + $T$028$i = $487 + } + } + $494 = HEAP32[32628 >> 2] | 0 + $495 = $$lcssa232 >>> 0 < $494 >>> 0 + if ($495) { + _abort() + // unreachable; + } else { + HEAP32[$$lcssa232 >> 2] = $348 + $$sum11$i = ($246 + 24) | 0 + $496 = ($v$3$lcssa$i + $$sum11$i) | 0 + HEAP32[$496 >> 2] = $T$028$i$lcssa + $$sum12$i = ($246 + 12) | 0 + $497 = ($v$3$lcssa$i + $$sum12$i) | 0 + HEAP32[$497 >> 2] = $348 + $$sum13$i = ($246 + 8) | 0 + $498 = ($v$3$lcssa$i + $$sum13$i) | 0 + HEAP32[$498 >> 2] = $348 + break L199 + } + } + } while (0) + $499 = ($T$0$lcssa$i + 8) | 0 + $500 = HEAP32[$499 >> 2] | 0 + $501 = HEAP32[32628 >> 2] | 0 + $502 = $500 >>> 0 >= $501 >>> 0 + $not$$i = $T$0$lcssa$i >>> 0 >= $501 >>> 0 + $503 = $502 & $not$$i + if ($503) { + $504 = ($500 + 12) | 0 + HEAP32[$504 >> 2] = $348 + HEAP32[$499 >> 2] = $348 + $$sum8$i = ($246 + 8) | 0 + $505 = ($v$3$lcssa$i + $$sum8$i) | 0 + HEAP32[$505 >> 2] = $500 + $$sum9$i = ($246 + 12) | 0 + $506 = ($v$3$lcssa$i + $$sum9$i) | 0 + HEAP32[$506 >> 2] = $T$0$lcssa$i + $$sum10$i = ($246 + 24) | 0 + $507 = ($v$3$lcssa$i + $$sum10$i) | 0 + HEAP32[$507 >> 2] = 0 + break + } else { + _abort() + // unreachable; + } + } + } while (0) + $508 = ($v$3$lcssa$i + 8) | 0 + $mem$0 = $508 + return $mem$0 | 0 + } else { + $nb$0 = $246 + } + } + } + } + } + } while (0) + $509 = HEAP32[32620 >> 2] | 0 + $510 = $509 >>> 0 < $nb$0 >>> 0 + if (!$510) { + $511 = ($509 - $nb$0) | 0 + $512 = HEAP32[32632 >> 2] | 0 + $513 = $511 >>> 0 > 15 + if ($513) { + $514 = ($512 + $nb$0) | 0 + HEAP32[32632 >> 2] = $514 + HEAP32[32620 >> 2] = $511 + $515 = $511 | 1 + $$sum2 = ($nb$0 + 4) | 0 + $516 = ($512 + $$sum2) | 0 + HEAP32[$516 >> 2] = $515 + $517 = ($512 + $509) | 0 + HEAP32[$517 >> 2] = $511 + $518 = $nb$0 | 3 + $519 = ($512 + 4) | 0 + HEAP32[$519 >> 2] = $518 + } else { + HEAP32[32620 >> 2] = 0 + HEAP32[32632 >> 2] = 0 + $520 = $509 | 3 + $521 = ($512 + 4) | 0 + HEAP32[$521 >> 2] = $520 + $$sum1 = ($509 + 4) | 0 + $522 = ($512 + $$sum1) | 0 + $523 = HEAP32[$522 >> 2] | 0 + $524 = $523 | 1 + HEAP32[$522 >> 2] = $524 + } + $525 = ($512 + 8) | 0 + $mem$0 = $525 + return $mem$0 | 0 + } + $526 = HEAP32[32624 >> 2] | 0 + $527 = $526 >>> 0 > $nb$0 >>> 0 + if ($527) { + $528 = ($526 - $nb$0) | 0 + HEAP32[32624 >> 2] = $528 + $529 = HEAP32[32636 >> 2] | 0 + $530 = ($529 + $nb$0) | 0 + HEAP32[32636 >> 2] = $530 + $531 = $528 | 1 + $$sum = ($nb$0 + 4) | 0 + $532 = ($529 + $$sum) | 0 + HEAP32[$532 >> 2] = $531 + $533 = $nb$0 | 3 + $534 = ($529 + 4) | 0 + HEAP32[$534 >> 2] = $533 + $535 = ($529 + 8) | 0 + $mem$0 = $535 + return $mem$0 | 0 + } + $536 = HEAP32[33084 >> 2] | 0 + $537 = ($536 | 0) == 0 + do { + if ($537) { + $538 = _sysconf(30) | 0 + $539 = ($538 + -1) | 0 + $540 = $539 & $538 + $541 = ($540 | 0) == 0 + if ($541) { + HEAP32[33092 >> 2] = $538 + HEAP32[33088 >> 2] = $538 + HEAP32[33096 >> 2] = -1 + HEAP32[33100 >> 2] = -1 + HEAP32[33104 >> 2] = 0 + HEAP32[33056 >> 2] = 0 + $542 = _time(0 | 0) | 0 + $543 = $542 & -16 + $544 = $543 ^ 1431655768 + HEAP32[33084 >> 2] = $544 + break + } else { + _abort() + // unreachable; + } + } + } while (0) + $545 = ($nb$0 + 48) | 0 + $546 = HEAP32[33092 >> 2] | 0 + $547 = ($nb$0 + 47) | 0 + $548 = ($546 + $547) | 0 + $549 = (0 - $546) | 0 + $550 = $548 & $549 + $551 = $550 >>> 0 > $nb$0 >>> 0 + if (!$551) { + $mem$0 = 0 + return $mem$0 | 0 + } + $552 = HEAP32[33052 >> 2] | 0 + $553 = ($552 | 0) == 0 + if (!$553) { + $554 = HEAP32[33044 >> 2] | 0 + $555 = ($554 + $550) | 0 + $556 = $555 >>> 0 <= $554 >>> 0 + $557 = $555 >>> 0 > $552 >>> 0 + $or$cond1$i = $556 | $557 + if ($or$cond1$i) { + $mem$0 = 0 + return $mem$0 | 0 + } + } + $558 = HEAP32[33056 >> 2] | 0 + $559 = $558 & 4 + $560 = ($559 | 0) == 0 + L258: do { + if ($560) { + $561 = HEAP32[32636 >> 2] | 0 + $562 = ($561 | 0) == (0 | 0) + L260: do { + if ($562) { + label = 174 + } else { + $sp$0$i$i = 33060 + while (1) { + $563 = HEAP32[$sp$0$i$i >> 2] | 0 + $564 = $563 >>> 0 > $561 >>> 0 + if (!$564) { + $565 = ($sp$0$i$i + 4) | 0 + $566 = HEAP32[$565 >> 2] | 0 + $567 = ($563 + $566) | 0 + $568 = $567 >>> 0 > $561 >>> 0 + if ($568) { + $$lcssa228 = $sp$0$i$i + $$lcssa230 = $565 + break + } + } + $569 = ($sp$0$i$i + 8) | 0 + $570 = HEAP32[$569 >> 2] | 0 + $571 = ($570 | 0) == (0 | 0) + if ($571) { + label = 174 + break L260 + } else { + $sp$0$i$i = $570 + } + } + $594 = HEAP32[32624 >> 2] | 0 + $595 = ($548 - $594) | 0 + $596 = $595 & $549 + $597 = $596 >>> 0 < 2147483647 + if ($597) { + $598 = _sbrk($596 | 0) | 0 + $599 = HEAP32[$$lcssa228 >> 2] | 0 + $600 = HEAP32[$$lcssa230 >> 2] | 0 + $601 = ($599 + $600) | 0 + $602 = ($598 | 0) == ($601 | 0) + $$3$i = $602 ? $596 : 0 + if ($602) { + $603 = ($598 | 0) == (-1 | 0) + if ($603) { + $tsize$0323944$i = $$3$i + } else { + $tbase$255$i = $598 + $tsize$254$i = $$3$i + label = 194 + break L258 + } + } else { + $br$0$ph$i = $598 + $ssize$1$ph$i = $596 + $tsize$0$ph$i = $$3$i + label = 184 + } + } else { + $tsize$0323944$i = 0 + } + } + } while (0) + do { + if ((label | 0) == 174) { + $572 = _sbrk(0) | 0 + $573 = ($572 | 0) == (-1 | 0) + if ($573) { + $tsize$0323944$i = 0 + } else { + $574 = $572 + $575 = HEAP32[33088 >> 2] | 0 + $576 = ($575 + -1) | 0 + $577 = $576 & $574 + $578 = ($577 | 0) == 0 + if ($578) { + $ssize$0$i = $550 + } else { + $579 = ($576 + $574) | 0 + $580 = (0 - $575) | 0 + $581 = $579 & $580 + $582 = ($550 - $574) | 0 + $583 = ($582 + $581) | 0 + $ssize$0$i = $583 + } + $584 = HEAP32[33044 >> 2] | 0 + $585 = ($584 + $ssize$0$i) | 0 + $586 = $ssize$0$i >>> 0 > $nb$0 >>> 0 + $587 = $ssize$0$i >>> 0 < 2147483647 + $or$cond$i30 = $586 & $587 + if ($or$cond$i30) { + $588 = HEAP32[33052 >> 2] | 0 + $589 = ($588 | 0) == 0 + if (!$589) { + $590 = $585 >>> 0 <= $584 >>> 0 + $591 = $585 >>> 0 > $588 >>> 0 + $or$cond2$i = $590 | $591 + if ($or$cond2$i) { + $tsize$0323944$i = 0 + break + } + } + $592 = _sbrk($ssize$0$i | 0) | 0 + $593 = ($592 | 0) == ($572 | 0) + $ssize$0$$i = $593 ? $ssize$0$i : 0 + if ($593) { + $tbase$255$i = $572 + $tsize$254$i = $ssize$0$$i + label = 194 + break L258 + } else { + $br$0$ph$i = $592 + $ssize$1$ph$i = $ssize$0$i + $tsize$0$ph$i = $ssize$0$$i + label = 184 + } + } else { + $tsize$0323944$i = 0 + } + } + } + } while (0) + L280: do { + if ((label | 0) == 184) { + $604 = (0 - $ssize$1$ph$i) | 0 + $605 = ($br$0$ph$i | 0) != (-1 | 0) + $606 = $ssize$1$ph$i >>> 0 < 2147483647 + $or$cond5$i = $606 & $605 + $607 = $545 >>> 0 > $ssize$1$ph$i >>> 0 + $or$cond6$i = $607 & $or$cond5$i + do { + if ($or$cond6$i) { + $608 = HEAP32[33092 >> 2] | 0 + $609 = ($547 - $ssize$1$ph$i) | 0 + $610 = ($609 + $608) | 0 + $611 = (0 - $608) | 0 + $612 = $610 & $611 + $613 = $612 >>> 0 < 2147483647 + if ($613) { + $614 = _sbrk($612 | 0) | 0 + $615 = ($614 | 0) == (-1 | 0) + if ($615) { + _sbrk($604 | 0) | 0 + $tsize$0323944$i = $tsize$0$ph$i + break L280 + } else { + $616 = ($612 + $ssize$1$ph$i) | 0 + $ssize$2$i = $616 + break + } + } else { + $ssize$2$i = $ssize$1$ph$i + } + } else { + $ssize$2$i = $ssize$1$ph$i + } + } while (0) + $617 = ($br$0$ph$i | 0) == (-1 | 0) + if ($617) { + $tsize$0323944$i = $tsize$0$ph$i + } else { + $tbase$255$i = $br$0$ph$i + $tsize$254$i = $ssize$2$i + label = 194 + break L258 + } + } + } while (0) + $618 = HEAP32[33056 >> 2] | 0 + $619 = $618 | 4 + HEAP32[33056 >> 2] = $619 + $tsize$1$i = $tsize$0323944$i + label = 191 + } else { + $tsize$1$i = 0 + label = 191 + } + } while (0) + if ((label | 0) == 191) { + $620 = $550 >>> 0 < 2147483647 + if ($620) { + $621 = _sbrk($550 | 0) | 0 + $622 = _sbrk(0) | 0 + $623 = ($621 | 0) != (-1 | 0) + $624 = ($622 | 0) != (-1 | 0) + $or$cond3$i = $623 & $624 + $625 = $621 >>> 0 < $622 >>> 0 + $or$cond8$i = $625 & $or$cond3$i + if ($or$cond8$i) { + $626 = $622 + $627 = $621 + $628 = ($626 - $627) | 0 + $629 = ($nb$0 + 40) | 0 + $630 = $628 >>> 0 > $629 >>> 0 + $$tsize$1$i = $630 ? $628 : $tsize$1$i + if ($630) { + $tbase$255$i = $621 + $tsize$254$i = $$tsize$1$i + label = 194 + } + } + } + } + if ((label | 0) == 194) { + $631 = HEAP32[33044 >> 2] | 0 + $632 = ($631 + $tsize$254$i) | 0 + HEAP32[33044 >> 2] = $632 + $633 = HEAP32[33048 >> 2] | 0 + $634 = $632 >>> 0 > $633 >>> 0 + if ($634) { + HEAP32[33048 >> 2] = $632 + } + $635 = HEAP32[32636 >> 2] | 0 + $636 = ($635 | 0) == (0 | 0) + L299: do { + if ($636) { + $637 = HEAP32[32628 >> 2] | 0 + $638 = ($637 | 0) == (0 | 0) + $639 = $tbase$255$i >>> 0 < $637 >>> 0 + $or$cond9$i = $638 | $639 + if ($or$cond9$i) { + HEAP32[32628 >> 2] = $tbase$255$i + } + HEAP32[33060 >> 2] = $tbase$255$i + HEAP32[33064 >> 2] = $tsize$254$i + HEAP32[33072 >> 2] = 0 + $640 = HEAP32[33084 >> 2] | 0 + HEAP32[32648 >> 2] = $640 + HEAP32[32644 >> 2] = -1 + $i$02$i$i = 0 + while (1) { + $641 = $i$02$i$i << 1 + $642 = (32652 + ($641 << 2)) | 0 + $$sum$i$i = ($641 + 3) | 0 + $643 = (32652 + ($$sum$i$i << 2)) | 0 + HEAP32[$643 >> 2] = $642 + $$sum1$i$i = ($641 + 2) | 0 + $644 = (32652 + ($$sum1$i$i << 2)) | 0 + HEAP32[$644 >> 2] = $642 + $645 = ($i$02$i$i + 1) | 0 + $exitcond$i$i = ($645 | 0) == 32 + if ($exitcond$i$i) { + break + } else { + $i$02$i$i = $645 + } + } + $646 = ($tsize$254$i + -40) | 0 + $647 = ($tbase$255$i + 8) | 0 + $648 = $647 + $649 = $648 & 7 + $650 = ($649 | 0) == 0 + $651 = (0 - $648) | 0 + $652 = $651 & 7 + $653 = $650 ? 0 : $652 + $654 = ($tbase$255$i + $653) | 0 + $655 = ($646 - $653) | 0 + HEAP32[32636 >> 2] = $654 + HEAP32[32624 >> 2] = $655 + $656 = $655 | 1 + $$sum$i13$i = ($653 + 4) | 0 + $657 = ($tbase$255$i + $$sum$i13$i) | 0 + HEAP32[$657 >> 2] = $656 + $$sum2$i$i = ($tsize$254$i + -36) | 0 + $658 = ($tbase$255$i + $$sum2$i$i) | 0 + HEAP32[$658 >> 2] = 40 + $659 = HEAP32[33100 >> 2] | 0 + HEAP32[32640 >> 2] = $659 + } else { + $sp$084$i = 33060 + while (1) { + $660 = HEAP32[$sp$084$i >> 2] | 0 + $661 = ($sp$084$i + 4) | 0 + $662 = HEAP32[$661 >> 2] | 0 + $663 = ($660 + $662) | 0 + $664 = ($tbase$255$i | 0) == ($663 | 0) + if ($664) { + $$lcssa222 = $660 + $$lcssa224 = $661 + $$lcssa226 = $662 + $sp$084$i$lcssa = $sp$084$i + label = 204 + break + } + $665 = ($sp$084$i + 8) | 0 + $666 = HEAP32[$665 >> 2] | 0 + $667 = ($666 | 0) == (0 | 0) + if ($667) { + break + } else { + $sp$084$i = $666 + } + } + if ((label | 0) == 204) { + $668 = ($sp$084$i$lcssa + 12) | 0 + $669 = HEAP32[$668 >> 2] | 0 + $670 = $669 & 8 + $671 = ($670 | 0) == 0 + if ($671) { + $672 = $635 >>> 0 >= $$lcssa222 >>> 0 + $673 = $635 >>> 0 < $tbase$255$i >>> 0 + $or$cond57$i = $673 & $672 + if ($or$cond57$i) { + $674 = ($$lcssa226 + $tsize$254$i) | 0 + HEAP32[$$lcssa224 >> 2] = $674 + $675 = HEAP32[32624 >> 2] | 0 + $676 = ($675 + $tsize$254$i) | 0 + $677 = ($635 + 8) | 0 + $678 = $677 + $679 = $678 & 7 + $680 = ($679 | 0) == 0 + $681 = (0 - $678) | 0 + $682 = $681 & 7 + $683 = $680 ? 0 : $682 + $684 = ($635 + $683) | 0 + $685 = ($676 - $683) | 0 + HEAP32[32636 >> 2] = $684 + HEAP32[32624 >> 2] = $685 + $686 = $685 | 1 + $$sum$i17$i = ($683 + 4) | 0 + $687 = ($635 + $$sum$i17$i) | 0 + HEAP32[$687 >> 2] = $686 + $$sum2$i18$i = ($676 + 4) | 0 + $688 = ($635 + $$sum2$i18$i) | 0 + HEAP32[$688 >> 2] = 40 + $689 = HEAP32[33100 >> 2] | 0 + HEAP32[32640 >> 2] = $689 + break + } + } + } + $690 = HEAP32[32628 >> 2] | 0 + $691 = $tbase$255$i >>> 0 < $690 >>> 0 + if ($691) { + HEAP32[32628 >> 2] = $tbase$255$i + $755 = $tbase$255$i + } else { + $755 = $690 + } + $692 = ($tbase$255$i + $tsize$254$i) | 0 + $sp$183$i = 33060 + while (1) { + $693 = HEAP32[$sp$183$i >> 2] | 0 + $694 = ($693 | 0) == ($692 | 0) + if ($694) { + $$lcssa219 = $sp$183$i + $sp$183$i$lcssa = $sp$183$i + label = 212 + break + } + $695 = ($sp$183$i + 8) | 0 + $696 = HEAP32[$695 >> 2] | 0 + $697 = ($696 | 0) == (0 | 0) + if ($697) { + $sp$0$i$i$i = 33060 + break + } else { + $sp$183$i = $696 + } + } + if ((label | 0) == 212) { + $698 = ($sp$183$i$lcssa + 12) | 0 + $699 = HEAP32[$698 >> 2] | 0 + $700 = $699 & 8 + $701 = ($700 | 0) == 0 + if ($701) { + HEAP32[$$lcssa219 >> 2] = $tbase$255$i + $702 = ($sp$183$i$lcssa + 4) | 0 + $703 = HEAP32[$702 >> 2] | 0 + $704 = ($703 + $tsize$254$i) | 0 + HEAP32[$702 >> 2] = $704 + $705 = ($tbase$255$i + 8) | 0 + $706 = $705 + $707 = $706 & 7 + $708 = ($707 | 0) == 0 + $709 = (0 - $706) | 0 + $710 = $709 & 7 + $711 = $708 ? 0 : $710 + $712 = ($tbase$255$i + $711) | 0 + $$sum112$i = ($tsize$254$i + 8) | 0 + $713 = ($tbase$255$i + $$sum112$i) | 0 + $714 = $713 + $715 = $714 & 7 + $716 = ($715 | 0) == 0 + $717 = (0 - $714) | 0 + $718 = $717 & 7 + $719 = $716 ? 0 : $718 + $$sum113$i = ($719 + $tsize$254$i) | 0 + $720 = ($tbase$255$i + $$sum113$i) | 0 + $721 = $720 + $722 = $712 + $723 = ($721 - $722) | 0 + $$sum$i19$i = ($711 + $nb$0) | 0 + $724 = ($tbase$255$i + $$sum$i19$i) | 0 + $725 = ($723 - $nb$0) | 0 + $726 = $nb$0 | 3 + $$sum1$i20$i = ($711 + 4) | 0 + $727 = ($tbase$255$i + $$sum1$i20$i) | 0 + HEAP32[$727 >> 2] = $726 + $728 = ($720 | 0) == ($635 | 0) + L324: do { + if ($728) { + $729 = HEAP32[32624 >> 2] | 0 + $730 = ($729 + $725) | 0 + HEAP32[32624 >> 2] = $730 + HEAP32[32636 >> 2] = $724 + $731 = $730 | 1 + $$sum42$i$i = ($$sum$i19$i + 4) | 0 + $732 = ($tbase$255$i + $$sum42$i$i) | 0 + HEAP32[$732 >> 2] = $731 + } else { + $733 = HEAP32[32632 >> 2] | 0 + $734 = ($720 | 0) == ($733 | 0) + if ($734) { + $735 = HEAP32[32620 >> 2] | 0 + $736 = ($735 + $725) | 0 + HEAP32[32620 >> 2] = $736 + HEAP32[32632 >> 2] = $724 + $737 = $736 | 1 + $$sum40$i$i = ($$sum$i19$i + 4) | 0 + $738 = ($tbase$255$i + $$sum40$i$i) | 0 + HEAP32[$738 >> 2] = $737 + $$sum41$i$i = ($736 + $$sum$i19$i) | 0 + $739 = ($tbase$255$i + $$sum41$i$i) | 0 + HEAP32[$739 >> 2] = $736 + break + } + $$sum2$i21$i = ($tsize$254$i + 4) | 0 + $$sum114$i = ($$sum2$i21$i + $719) | 0 + $740 = ($tbase$255$i + $$sum114$i) | 0 + $741 = HEAP32[$740 >> 2] | 0 + $742 = $741 & 3 + $743 = ($742 | 0) == 1 + if ($743) { + $744 = $741 & -8 + $745 = $741 >>> 3 + $746 = $741 >>> 0 < 256 + L332: do { + if ($746) { + $$sum3738$i$i = $719 | 8 + $$sum124$i = + ($$sum3738$i$i + $tsize$254$i) | 0 + $747 = ($tbase$255$i + $$sum124$i) | 0 + $748 = HEAP32[$747 >> 2] | 0 + $$sum39$i$i = ($tsize$254$i + 12) | 0 + $$sum125$i = ($$sum39$i$i + $719) | 0 + $749 = ($tbase$255$i + $$sum125$i) | 0 + $750 = HEAP32[$749 >> 2] | 0 + $751 = $745 << 1 + $752 = (32652 + ($751 << 2)) | 0 + $753 = ($748 | 0) == ($752 | 0) + do { + if (!$753) { + $754 = $748 >>> 0 < $755 >>> 0 + if ($754) { + _abort() + // unreachable; + } + $756 = ($748 + 12) | 0 + $757 = HEAP32[$756 >> 2] | 0 + $758 = ($757 | 0) == ($720 | 0) + if ($758) { + break + } + _abort() + // unreachable; + } + } while (0) + $759 = ($750 | 0) == ($748 | 0) + if ($759) { + $760 = 1 << $745 + $761 = $760 ^ -1 + $762 = HEAP32[32612 >> 2] | 0 + $763 = $762 & $761 + HEAP32[32612 >> 2] = $763 + break + } + $764 = ($750 | 0) == ($752 | 0) + do { + if ($764) { + $$pre57$i$i = ($750 + 8) | 0 + $$pre$phi58$i$iZ2D = $$pre57$i$i + } else { + $765 = $750 >>> 0 < $755 >>> 0 + if ($765) { + _abort() + // unreachable; + } + $766 = ($750 + 8) | 0 + $767 = HEAP32[$766 >> 2] | 0 + $768 = ($767 | 0) == ($720 | 0) + if ($768) { + $$pre$phi58$i$iZ2D = $766 + break + } + _abort() + // unreachable; + } + } while (0) + $769 = ($748 + 12) | 0 + HEAP32[$769 >> 2] = $750 + HEAP32[$$pre$phi58$i$iZ2D >> 2] = $748 + } else { + $$sum34$i$i = $719 | 24 + $$sum115$i = + ($$sum34$i$i + $tsize$254$i) | 0 + $770 = ($tbase$255$i + $$sum115$i) | 0 + $771 = HEAP32[$770 >> 2] | 0 + $$sum5$i$i = ($tsize$254$i + 12) | 0 + $$sum116$i = ($$sum5$i$i + $719) | 0 + $772 = ($tbase$255$i + $$sum116$i) | 0 + $773 = HEAP32[$772 >> 2] | 0 + $774 = ($773 | 0) == ($720 | 0) + do { + if ($774) { + $$sum67$i$i = $719 | 16 + $$sum122$i = + ($$sum2$i21$i + $$sum67$i$i) | 0 + $784 = ($tbase$255$i + $$sum122$i) | 0 + $785 = HEAP32[$784 >> 2] | 0 + $786 = ($785 | 0) == (0 | 0) + if ($786) { + $$sum123$i = + ($$sum67$i$i + $tsize$254$i) | 0 + $787 = ($tbase$255$i + $$sum123$i) | 0 + $788 = HEAP32[$787 >> 2] | 0 + $789 = ($788 | 0) == (0 | 0) + if ($789) { + $R$1$i$i = 0 + break + } else { + $R$0$i$i = $788 + $RP$0$i$i = $787 + } + } else { + $R$0$i$i = $785 + $RP$0$i$i = $784 + } + while (1) { + $790 = ($R$0$i$i + 20) | 0 + $791 = HEAP32[$790 >> 2] | 0 + $792 = ($791 | 0) == (0 | 0) + if (!$792) { + $R$0$i$i = $791 + $RP$0$i$i = $790 + continue + } + $793 = ($R$0$i$i + 16) | 0 + $794 = HEAP32[$793 >> 2] | 0 + $795 = ($794 | 0) == (0 | 0) + if ($795) { + $R$0$i$i$lcssa = $R$0$i$i + $RP$0$i$i$lcssa = $RP$0$i$i + break + } else { + $R$0$i$i = $794 + $RP$0$i$i = $793 + } + } + $796 = + $RP$0$i$i$lcssa >>> 0 < $755 >>> 0 + if ($796) { + _abort() + // unreachable; + } else { + HEAP32[$RP$0$i$i$lcssa >> 2] = 0 + $R$1$i$i = $R$0$i$i$lcssa + break + } + } else { + $$sum3536$i$i = $719 | 8 + $$sum117$i = + ($$sum3536$i$i + $tsize$254$i) | 0 + $775 = ($tbase$255$i + $$sum117$i) | 0 + $776 = HEAP32[$775 >> 2] | 0 + $777 = $776 >>> 0 < $755 >>> 0 + if ($777) { + _abort() + // unreachable; + } + $778 = ($776 + 12) | 0 + $779 = HEAP32[$778 >> 2] | 0 + $780 = ($779 | 0) == ($720 | 0) + if (!$780) { + _abort() + // unreachable; + } + $781 = ($773 + 8) | 0 + $782 = HEAP32[$781 >> 2] | 0 + $783 = ($782 | 0) == ($720 | 0) + if ($783) { + HEAP32[$778 >> 2] = $773 + HEAP32[$781 >> 2] = $776 + $R$1$i$i = $773 + break + } else { + _abort() + // unreachable; + } + } + } while (0) + $797 = ($771 | 0) == (0 | 0) + if ($797) { + break + } + $$sum30$i$i = ($tsize$254$i + 28) | 0 + $$sum118$i = ($$sum30$i$i + $719) | 0 + $798 = ($tbase$255$i + $$sum118$i) | 0 + $799 = HEAP32[$798 >> 2] | 0 + $800 = (32916 + ($799 << 2)) | 0 + $801 = HEAP32[$800 >> 2] | 0 + $802 = ($720 | 0) == ($801 | 0) + do { + if ($802) { + HEAP32[$800 >> 2] = $R$1$i$i + $cond$i$i = ($R$1$i$i | 0) == (0 | 0) + if (!$cond$i$i) { + break + } + $803 = 1 << $799 + $804 = $803 ^ -1 + $805 = HEAP32[32616 >> 2] | 0 + $806 = $805 & $804 + HEAP32[32616 >> 2] = $806 + break L332 + } else { + $807 = HEAP32[32628 >> 2] | 0 + $808 = $771 >>> 0 < $807 >>> 0 + if ($808) { + _abort() + // unreachable; + } + $809 = ($771 + 16) | 0 + $810 = HEAP32[$809 >> 2] | 0 + $811 = ($810 | 0) == ($720 | 0) + if ($811) { + HEAP32[$809 >> 2] = $R$1$i$i + } else { + $812 = ($771 + 20) | 0 + HEAP32[$812 >> 2] = $R$1$i$i + } + $813 = ($R$1$i$i | 0) == (0 | 0) + if ($813) { + break L332 + } + } + } while (0) + $814 = HEAP32[32628 >> 2] | 0 + $815 = $R$1$i$i >>> 0 < $814 >>> 0 + if ($815) { + _abort() + // unreachable; + } + $816 = ($R$1$i$i + 24) | 0 + HEAP32[$816 >> 2] = $771 + $$sum3132$i$i = $719 | 16 + $$sum119$i = + ($$sum3132$i$i + $tsize$254$i) | 0 + $817 = ($tbase$255$i + $$sum119$i) | 0 + $818 = HEAP32[$817 >> 2] | 0 + $819 = ($818 | 0) == (0 | 0) + do { + if (!$819) { + $820 = $818 >>> 0 < $814 >>> 0 + if ($820) { + _abort() + // unreachable; + } else { + $821 = ($R$1$i$i + 16) | 0 + HEAP32[$821 >> 2] = $818 + $822 = ($818 + 24) | 0 + HEAP32[$822 >> 2] = $R$1$i$i + break + } + } + } while (0) + $$sum120$i = + ($$sum2$i21$i + $$sum3132$i$i) | 0 + $823 = ($tbase$255$i + $$sum120$i) | 0 + $824 = HEAP32[$823 >> 2] | 0 + $825 = ($824 | 0) == (0 | 0) + if ($825) { + break + } + $826 = HEAP32[32628 >> 2] | 0 + $827 = $824 >>> 0 < $826 >>> 0 + if ($827) { + _abort() + // unreachable; + } else { + $828 = ($R$1$i$i + 20) | 0 + HEAP32[$828 >> 2] = $824 + $829 = ($824 + 24) | 0 + HEAP32[$829 >> 2] = $R$1$i$i + break + } + } + } while (0) + $$sum9$i$i = $744 | $719 + $$sum121$i = ($$sum9$i$i + $tsize$254$i) | 0 + $830 = ($tbase$255$i + $$sum121$i) | 0 + $831 = ($744 + $725) | 0 + $oldfirst$0$i$i = $830 + $qsize$0$i$i = $831 + } else { + $oldfirst$0$i$i = $720 + $qsize$0$i$i = $725 + } + $832 = ($oldfirst$0$i$i + 4) | 0 + $833 = HEAP32[$832 >> 2] | 0 + $834 = $833 & -2 + HEAP32[$832 >> 2] = $834 + $835 = $qsize$0$i$i | 1 + $$sum10$i$i = ($$sum$i19$i + 4) | 0 + $836 = ($tbase$255$i + $$sum10$i$i) | 0 + HEAP32[$836 >> 2] = $835 + $$sum11$i$i = ($qsize$0$i$i + $$sum$i19$i) | 0 + $837 = ($tbase$255$i + $$sum11$i$i) | 0 + HEAP32[$837 >> 2] = $qsize$0$i$i + $838 = $qsize$0$i$i >>> 3 + $839 = $qsize$0$i$i >>> 0 < 256 + if ($839) { + $840 = $838 << 1 + $841 = (32652 + ($840 << 2)) | 0 + $842 = HEAP32[32612 >> 2] | 0 + $843 = 1 << $838 + $844 = $842 & $843 + $845 = ($844 | 0) == 0 + do { + if ($845) { + $846 = $842 | $843 + HEAP32[32612 >> 2] = $846 + $$pre$i22$i = ($840 + 2) | 0 + $$pre56$i$i = + (32652 + ($$pre$i22$i << 2)) | 0 + $$pre$phi$i23$iZ2D = $$pre56$i$i + $F4$0$i$i = $841 + } else { + $$sum29$i$i = ($840 + 2) | 0 + $847 = (32652 + ($$sum29$i$i << 2)) | 0 + $848 = HEAP32[$847 >> 2] | 0 + $849 = HEAP32[32628 >> 2] | 0 + $850 = $848 >>> 0 < $849 >>> 0 + if (!$850) { + $$pre$phi$i23$iZ2D = $847 + $F4$0$i$i = $848 + break + } + _abort() + // unreachable; + } + } while (0) + HEAP32[$$pre$phi$i23$iZ2D >> 2] = $724 + $851 = ($F4$0$i$i + 12) | 0 + HEAP32[$851 >> 2] = $724 + $$sum27$i$i = ($$sum$i19$i + 8) | 0 + $852 = ($tbase$255$i + $$sum27$i$i) | 0 + HEAP32[$852 >> 2] = $F4$0$i$i + $$sum28$i$i = ($$sum$i19$i + 12) | 0 + $853 = ($tbase$255$i + $$sum28$i$i) | 0 + HEAP32[$853 >> 2] = $841 + break + } + $854 = $qsize$0$i$i >>> 8 + $855 = ($854 | 0) == 0 + do { + if ($855) { + $I7$0$i$i = 0 + } else { + $856 = $qsize$0$i$i >>> 0 > 16777215 + if ($856) { + $I7$0$i$i = 31 + break + } + $857 = ($854 + 1048320) | 0 + $858 = $857 >>> 16 + $859 = $858 & 8 + $860 = $854 << $859 + $861 = ($860 + 520192) | 0 + $862 = $861 >>> 16 + $863 = $862 & 4 + $864 = $863 | $859 + $865 = $860 << $863 + $866 = ($865 + 245760) | 0 + $867 = $866 >>> 16 + $868 = $867 & 2 + $869 = $864 | $868 + $870 = (14 - $869) | 0 + $871 = $865 << $868 + $872 = $871 >>> 15 + $873 = ($870 + $872) | 0 + $874 = $873 << 1 + $875 = ($873 + 7) | 0 + $876 = $qsize$0$i$i >>> $875 + $877 = $876 & 1 + $878 = $877 | $874 + $I7$0$i$i = $878 + } + } while (0) + $879 = (32916 + ($I7$0$i$i << 2)) | 0 + $$sum12$i$i = ($$sum$i19$i + 28) | 0 + $880 = ($tbase$255$i + $$sum12$i$i) | 0 + HEAP32[$880 >> 2] = $I7$0$i$i + $$sum13$i$i = ($$sum$i19$i + 16) | 0 + $881 = ($tbase$255$i + $$sum13$i$i) | 0 + $$sum14$i$i = ($$sum$i19$i + 20) | 0 + $882 = ($tbase$255$i + $$sum14$i$i) | 0 + HEAP32[$882 >> 2] = 0 + HEAP32[$881 >> 2] = 0 + $883 = HEAP32[32616 >> 2] | 0 + $884 = 1 << $I7$0$i$i + $885 = $883 & $884 + $886 = ($885 | 0) == 0 + if ($886) { + $887 = $883 | $884 + HEAP32[32616 >> 2] = $887 + HEAP32[$879 >> 2] = $724 + $$sum15$i$i = ($$sum$i19$i + 24) | 0 + $888 = ($tbase$255$i + $$sum15$i$i) | 0 + HEAP32[$888 >> 2] = $879 + $$sum16$i$i = ($$sum$i19$i + 12) | 0 + $889 = ($tbase$255$i + $$sum16$i$i) | 0 + HEAP32[$889 >> 2] = $724 + $$sum17$i$i = ($$sum$i19$i + 8) | 0 + $890 = ($tbase$255$i + $$sum17$i$i) | 0 + HEAP32[$890 >> 2] = $724 + break + } + $891 = HEAP32[$879 >> 2] | 0 + $892 = ($891 + 4) | 0 + $893 = HEAP32[$892 >> 2] | 0 + $894 = $893 & -8 + $895 = ($894 | 0) == ($qsize$0$i$i | 0) + L418: do { + if ($895) { + $T$0$lcssa$i25$i = $891 + } else { + $896 = ($I7$0$i$i | 0) == 31 + $897 = $I7$0$i$i >>> 1 + $898 = (25 - $897) | 0 + $899 = $896 ? 0 : $898 + $900 = $qsize$0$i$i << $899 + $K8$051$i$i = $900 + $T$050$i$i = $891 + while (1) { + $907 = $K8$051$i$i >>> 31 + $908 = + ((($T$050$i$i + 16) | 0) + ($907 << 2)) | + 0 + $903 = HEAP32[$908 >> 2] | 0 + $909 = ($903 | 0) == (0 | 0) + if ($909) { + $$lcssa = $908 + $T$050$i$i$lcssa = $T$050$i$i + break + } + $901 = $K8$051$i$i << 1 + $902 = ($903 + 4) | 0 + $904 = HEAP32[$902 >> 2] | 0 + $905 = $904 & -8 + $906 = ($905 | 0) == ($qsize$0$i$i | 0) + if ($906) { + $T$0$lcssa$i25$i = $903 + break L418 + } else { + $K8$051$i$i = $901 + $T$050$i$i = $903 + } + } + $910 = HEAP32[32628 >> 2] | 0 + $911 = $$lcssa >>> 0 < $910 >>> 0 + if ($911) { + _abort() + // unreachable; + } else { + HEAP32[$$lcssa >> 2] = $724 + $$sum23$i$i = ($$sum$i19$i + 24) | 0 + $912 = ($tbase$255$i + $$sum23$i$i) | 0 + HEAP32[$912 >> 2] = $T$050$i$i$lcssa + $$sum24$i$i = ($$sum$i19$i + 12) | 0 + $913 = ($tbase$255$i + $$sum24$i$i) | 0 + HEAP32[$913 >> 2] = $724 + $$sum25$i$i = ($$sum$i19$i + 8) | 0 + $914 = ($tbase$255$i + $$sum25$i$i) | 0 + HEAP32[$914 >> 2] = $724 + break L324 + } + } + } while (0) + $915 = ($T$0$lcssa$i25$i + 8) | 0 + $916 = HEAP32[$915 >> 2] | 0 + $917 = HEAP32[32628 >> 2] | 0 + $918 = $916 >>> 0 >= $917 >>> 0 + $not$$i26$i = $T$0$lcssa$i25$i >>> 0 >= $917 >>> 0 + $919 = $918 & $not$$i26$i + if ($919) { + $920 = ($916 + 12) | 0 + HEAP32[$920 >> 2] = $724 + HEAP32[$915 >> 2] = $724 + $$sum20$i$i = ($$sum$i19$i + 8) | 0 + $921 = ($tbase$255$i + $$sum20$i$i) | 0 + HEAP32[$921 >> 2] = $916 + $$sum21$i$i = ($$sum$i19$i + 12) | 0 + $922 = ($tbase$255$i + $$sum21$i$i) | 0 + HEAP32[$922 >> 2] = $T$0$lcssa$i25$i + $$sum22$i$i = ($$sum$i19$i + 24) | 0 + $923 = ($tbase$255$i + $$sum22$i$i) | 0 + HEAP32[$923 >> 2] = 0 + break + } else { + _abort() + // unreachable; + } + } + } while (0) + $$sum1819$i$i = $711 | 8 + $924 = ($tbase$255$i + $$sum1819$i$i) | 0 + $mem$0 = $924 + return $mem$0 | 0 + } else { + $sp$0$i$i$i = 33060 + } + } + while (1) { + $925 = HEAP32[$sp$0$i$i$i >> 2] | 0 + $926 = $925 >>> 0 > $635 >>> 0 + if (!$926) { + $927 = ($sp$0$i$i$i + 4) | 0 + $928 = HEAP32[$927 >> 2] | 0 + $929 = ($925 + $928) | 0 + $930 = $929 >>> 0 > $635 >>> 0 + if ($930) { + $$lcssa215 = $925 + $$lcssa216 = $928 + $$lcssa217 = $929 + break + } + } + $931 = ($sp$0$i$i$i + 8) | 0 + $932 = HEAP32[$931 >> 2] | 0 + $sp$0$i$i$i = $932 + } + $$sum$i14$i = ($$lcssa216 + -47) | 0 + $$sum1$i15$i = ($$lcssa216 + -39) | 0 + $933 = ($$lcssa215 + $$sum1$i15$i) | 0 + $934 = $933 + $935 = $934 & 7 + $936 = ($935 | 0) == 0 + $937 = (0 - $934) | 0 + $938 = $937 & 7 + $939 = $936 ? 0 : $938 + $$sum2$i16$i = ($$sum$i14$i + $939) | 0 + $940 = ($$lcssa215 + $$sum2$i16$i) | 0 + $941 = ($635 + 16) | 0 + $942 = $940 >>> 0 < $941 >>> 0 + $943 = $942 ? $635 : $940 + $944 = ($943 + 8) | 0 + $945 = ($tsize$254$i + -40) | 0 + $946 = ($tbase$255$i + 8) | 0 + $947 = $946 + $948 = $947 & 7 + $949 = ($948 | 0) == 0 + $950 = (0 - $947) | 0 + $951 = $950 & 7 + $952 = $949 ? 0 : $951 + $953 = ($tbase$255$i + $952) | 0 + $954 = ($945 - $952) | 0 + HEAP32[32636 >> 2] = $953 + HEAP32[32624 >> 2] = $954 + $955 = $954 | 1 + $$sum$i$i$i = ($952 + 4) | 0 + $956 = ($tbase$255$i + $$sum$i$i$i) | 0 + HEAP32[$956 >> 2] = $955 + $$sum2$i$i$i = ($tsize$254$i + -36) | 0 + $957 = ($tbase$255$i + $$sum2$i$i$i) | 0 + HEAP32[$957 >> 2] = 40 + $958 = HEAP32[33100 >> 2] | 0 + HEAP32[32640 >> 2] = $958 + $959 = ($943 + 4) | 0 + HEAP32[$959 >> 2] = 27 + HEAP32[$944 >> 2] = HEAP32[33060 >> 2] | 0 + HEAP32[($944 + 4) >> 2] = HEAP32[(33060 + 4) >> 2] | 0 + HEAP32[($944 + 8) >> 2] = HEAP32[(33060 + 8) >> 2] | 0 + HEAP32[($944 + 12) >> 2] = HEAP32[(33060 + 12) >> 2] | 0 + HEAP32[33060 >> 2] = $tbase$255$i + HEAP32[33064 >> 2] = $tsize$254$i + HEAP32[33072 >> 2] = 0 + HEAP32[33068 >> 2] = $944 + $960 = ($943 + 28) | 0 + HEAP32[$960 >> 2] = 7 + $961 = ($943 + 32) | 0 + $962 = $961 >>> 0 < $$lcssa217 >>> 0 + if ($962) { + $964 = $960 + while (1) { + $963 = ($964 + 4) | 0 + HEAP32[$963 >> 2] = 7 + $965 = ($964 + 8) | 0 + $966 = $965 >>> 0 < $$lcssa217 >>> 0 + if ($966) { + $964 = $963 + } else { + break + } + } + } + $967 = ($943 | 0) == ($635 | 0) + if (!$967) { + $968 = $943 + $969 = $635 + $970 = ($968 - $969) | 0 + $971 = HEAP32[$959 >> 2] | 0 + $972 = $971 & -2 + HEAP32[$959 >> 2] = $972 + $973 = $970 | 1 + $974 = ($635 + 4) | 0 + HEAP32[$974 >> 2] = $973 + HEAP32[$943 >> 2] = $970 + $975 = $970 >>> 3 + $976 = $970 >>> 0 < 256 + if ($976) { + $977 = $975 << 1 + $978 = (32652 + ($977 << 2)) | 0 + $979 = HEAP32[32612 >> 2] | 0 + $980 = 1 << $975 + $981 = $979 & $980 + $982 = ($981 | 0) == 0 + if ($982) { + $983 = $979 | $980 + HEAP32[32612 >> 2] = $983 + $$pre$i$i = ($977 + 2) | 0 + $$pre14$i$i = (32652 + ($$pre$i$i << 2)) | 0 + $$pre$phi$i$iZ2D = $$pre14$i$i + $F$0$i$i = $978 + } else { + $$sum4$i$i = ($977 + 2) | 0 + $984 = (32652 + ($$sum4$i$i << 2)) | 0 + $985 = HEAP32[$984 >> 2] | 0 + $986 = HEAP32[32628 >> 2] | 0 + $987 = $985 >>> 0 < $986 >>> 0 + if ($987) { + _abort() + // unreachable; + } else { + $$pre$phi$i$iZ2D = $984 + $F$0$i$i = $985 + } + } + HEAP32[$$pre$phi$i$iZ2D >> 2] = $635 + $988 = ($F$0$i$i + 12) | 0 + HEAP32[$988 >> 2] = $635 + $989 = ($635 + 8) | 0 + HEAP32[$989 >> 2] = $F$0$i$i + $990 = ($635 + 12) | 0 + HEAP32[$990 >> 2] = $978 + break + } + $991 = $970 >>> 8 + $992 = ($991 | 0) == 0 + if ($992) { + $I1$0$i$i = 0 + } else { + $993 = $970 >>> 0 > 16777215 + if ($993) { + $I1$0$i$i = 31 + } else { + $994 = ($991 + 1048320) | 0 + $995 = $994 >>> 16 + $996 = $995 & 8 + $997 = $991 << $996 + $998 = ($997 + 520192) | 0 + $999 = $998 >>> 16 + $1000 = $999 & 4 + $1001 = $1000 | $996 + $1002 = $997 << $1000 + $1003 = ($1002 + 245760) | 0 + $1004 = $1003 >>> 16 + $1005 = $1004 & 2 + $1006 = $1001 | $1005 + $1007 = (14 - $1006) | 0 + $1008 = $1002 << $1005 + $1009 = $1008 >>> 15 + $1010 = ($1007 + $1009) | 0 + $1011 = $1010 << 1 + $1012 = ($1010 + 7) | 0 + $1013 = $970 >>> $1012 + $1014 = $1013 & 1 + $1015 = $1014 | $1011 + $I1$0$i$i = $1015 + } + } + $1016 = (32916 + ($I1$0$i$i << 2)) | 0 + $1017 = ($635 + 28) | 0 + HEAP32[$1017 >> 2] = $I1$0$i$i + $1018 = ($635 + 20) | 0 + HEAP32[$1018 >> 2] = 0 + HEAP32[$941 >> 2] = 0 + $1019 = HEAP32[32616 >> 2] | 0 + $1020 = 1 << $I1$0$i$i + $1021 = $1019 & $1020 + $1022 = ($1021 | 0) == 0 + if ($1022) { + $1023 = $1019 | $1020 + HEAP32[32616 >> 2] = $1023 + HEAP32[$1016 >> 2] = $635 + $1024 = ($635 + 24) | 0 + HEAP32[$1024 >> 2] = $1016 + $1025 = ($635 + 12) | 0 + HEAP32[$1025 >> 2] = $635 + $1026 = ($635 + 8) | 0 + HEAP32[$1026 >> 2] = $635 + break + } + $1027 = HEAP32[$1016 >> 2] | 0 + $1028 = ($1027 + 4) | 0 + $1029 = HEAP32[$1028 >> 2] | 0 + $1030 = $1029 & -8 + $1031 = ($1030 | 0) == ($970 | 0) + L459: do { + if ($1031) { + $T$0$lcssa$i$i = $1027 + } else { + $1032 = ($I1$0$i$i | 0) == 31 + $1033 = $I1$0$i$i >>> 1 + $1034 = (25 - $1033) | 0 + $1035 = $1032 ? 0 : $1034 + $1036 = $970 << $1035 + $K2$07$i$i = $1036 + $T$06$i$i = $1027 + while (1) { + $1043 = $K2$07$i$i >>> 31 + $1044 = + ((($T$06$i$i + 16) | 0) + ($1043 << 2)) | 0 + $1039 = HEAP32[$1044 >> 2] | 0 + $1045 = ($1039 | 0) == (0 | 0) + if ($1045) { + $$lcssa211 = $1044 + $T$06$i$i$lcssa = $T$06$i$i + break + } + $1037 = $K2$07$i$i << 1 + $1038 = ($1039 + 4) | 0 + $1040 = HEAP32[$1038 >> 2] | 0 + $1041 = $1040 & -8 + $1042 = ($1041 | 0) == ($970 | 0) + if ($1042) { + $T$0$lcssa$i$i = $1039 + break L459 + } else { + $K2$07$i$i = $1037 + $T$06$i$i = $1039 + } + } + $1046 = HEAP32[32628 >> 2] | 0 + $1047 = $$lcssa211 >>> 0 < $1046 >>> 0 + if ($1047) { + _abort() + // unreachable; + } else { + HEAP32[$$lcssa211 >> 2] = $635 + $1048 = ($635 + 24) | 0 + HEAP32[$1048 >> 2] = $T$06$i$i$lcssa + $1049 = ($635 + 12) | 0 + HEAP32[$1049 >> 2] = $635 + $1050 = ($635 + 8) | 0 + HEAP32[$1050 >> 2] = $635 + break L299 + } + } + } while (0) + $1051 = ($T$0$lcssa$i$i + 8) | 0 + $1052 = HEAP32[$1051 >> 2] | 0 + $1053 = HEAP32[32628 >> 2] | 0 + $1054 = $1052 >>> 0 >= $1053 >>> 0 + $not$$i$i = $T$0$lcssa$i$i >>> 0 >= $1053 >>> 0 + $1055 = $1054 & $not$$i$i + if ($1055) { + $1056 = ($1052 + 12) | 0 + HEAP32[$1056 >> 2] = $635 + HEAP32[$1051 >> 2] = $635 + $1057 = ($635 + 8) | 0 + HEAP32[$1057 >> 2] = $1052 + $1058 = ($635 + 12) | 0 + HEAP32[$1058 >> 2] = $T$0$lcssa$i$i + $1059 = ($635 + 24) | 0 + HEAP32[$1059 >> 2] = 0 + break + } else { + _abort() + // unreachable; + } + } + } + } while (0) + $1060 = HEAP32[32624 >> 2] | 0 + $1061 = $1060 >>> 0 > $nb$0 >>> 0 + if ($1061) { + $1062 = ($1060 - $nb$0) | 0 + HEAP32[32624 >> 2] = $1062 + $1063 = HEAP32[32636 >> 2] | 0 + $1064 = ($1063 + $nb$0) | 0 + HEAP32[32636 >> 2] = $1064 + $1065 = $1062 | 1 + $$sum$i32 = ($nb$0 + 4) | 0 + $1066 = ($1063 + $$sum$i32) | 0 + HEAP32[$1066 >> 2] = $1065 + $1067 = $nb$0 | 3 + $1068 = ($1063 + 4) | 0 + HEAP32[$1068 >> 2] = $1067 + $1069 = ($1063 + 8) | 0 + $mem$0 = $1069 + return $mem$0 | 0 + } + } + $1070 = ___errno_location() | 0 + HEAP32[$1070 >> 2] = 12 + $mem$0 = 0 + return $mem$0 | 0 + } + function _free($mem) { + $mem = $mem | 0 + var $$lcssa = 0, + $$pre = 0, + $$pre$phi59Z2D = 0, + $$pre$phi61Z2D = 0, + $$pre$phiZ2D = 0, + $$pre57 = 0, + $$pre58 = 0, + $$pre60 = 0, + $$sum = 0, + $$sum11 = 0, + $$sum12 = 0, + $$sum13 = 0, + $$sum14 = 0, + $$sum1718 = 0, + $$sum19 = 0, + $$sum2 = 0, + $$sum20 = 0, + $$sum22 = 0, + $$sum23 = 0, + $$sum24 = 0 + var $$sum25 = 0, + $$sum26 = 0, + $$sum27 = 0, + $$sum28 = 0, + $$sum29 = 0, + $$sum3 = 0, + $$sum30 = 0, + $$sum31 = 0, + $$sum5 = 0, + $$sum67 = 0, + $$sum8 = 0, + $$sum9 = 0, + $0 = 0, + $1 = 0, + $10 = 0, + $100 = 0, + $101 = 0, + $102 = 0, + $103 = 0, + $104 = 0 + var $105 = 0, + $106 = 0, + $107 = 0, + $108 = 0, + $109 = 0, + $11 = 0, + $110 = 0, + $111 = 0, + $112 = 0, + $113 = 0, + $114 = 0, + $115 = 0, + $116 = 0, + $117 = 0, + $118 = 0, + $119 = 0, + $12 = 0, + $120 = 0, + $121 = 0, + $122 = 0 + var $123 = 0, + $124 = 0, + $125 = 0, + $126 = 0, + $127 = 0, + $128 = 0, + $129 = 0, + $13 = 0, + $130 = 0, + $131 = 0, + $132 = 0, + $133 = 0, + $134 = 0, + $135 = 0, + $136 = 0, + $137 = 0, + $138 = 0, + $139 = 0, + $14 = 0, + $140 = 0 + var $141 = 0, + $142 = 0, + $143 = 0, + $144 = 0, + $145 = 0, + $146 = 0, + $147 = 0, + $148 = 0, + $149 = 0, + $15 = 0, + $150 = 0, + $151 = 0, + $152 = 0, + $153 = 0, + $154 = 0, + $155 = 0, + $156 = 0, + $157 = 0, + $158 = 0, + $159 = 0 + var $16 = 0, + $160 = 0, + $161 = 0, + $162 = 0, + $163 = 0, + $164 = 0, + $165 = 0, + $166 = 0, + $167 = 0, + $168 = 0, + $169 = 0, + $17 = 0, + $170 = 0, + $171 = 0, + $172 = 0, + $173 = 0, + $174 = 0, + $175 = 0, + $176 = 0, + $177 = 0 + var $178 = 0, + $179 = 0, + $18 = 0, + $180 = 0, + $181 = 0, + $182 = 0, + $183 = 0, + $184 = 0, + $185 = 0, + $186 = 0, + $187 = 0, + $188 = 0, + $189 = 0, + $19 = 0, + $190 = 0, + $191 = 0, + $192 = 0, + $193 = 0, + $194 = 0, + $195 = 0 + var $196 = 0, + $197 = 0, + $198 = 0, + $199 = 0, + $2 = 0, + $20 = 0, + $200 = 0, + $201 = 0, + $202 = 0, + $203 = 0, + $204 = 0, + $205 = 0, + $206 = 0, + $207 = 0, + $208 = 0, + $209 = 0, + $21 = 0, + $210 = 0, + $211 = 0, + $212 = 0 + var $213 = 0, + $214 = 0, + $215 = 0, + $216 = 0, + $217 = 0, + $218 = 0, + $219 = 0, + $22 = 0, + $220 = 0, + $221 = 0, + $222 = 0, + $223 = 0, + $224 = 0, + $225 = 0, + $226 = 0, + $227 = 0, + $228 = 0, + $229 = 0, + $23 = 0, + $230 = 0 + var $231 = 0, + $232 = 0, + $233 = 0, + $234 = 0, + $235 = 0, + $236 = 0, + $237 = 0, + $238 = 0, + $239 = 0, + $24 = 0, + $240 = 0, + $241 = 0, + $242 = 0, + $243 = 0, + $244 = 0, + $245 = 0, + $246 = 0, + $247 = 0, + $248 = 0, + $249 = 0 + var $25 = 0, + $250 = 0, + $251 = 0, + $252 = 0, + $253 = 0, + $254 = 0, + $255 = 0, + $256 = 0, + $257 = 0, + $258 = 0, + $259 = 0, + $26 = 0, + $260 = 0, + $261 = 0, + $262 = 0, + $263 = 0, + $264 = 0, + $265 = 0, + $266 = 0, + $267 = 0 + var $268 = 0, + $269 = 0, + $27 = 0, + $270 = 0, + $271 = 0, + $272 = 0, + $273 = 0, + $274 = 0, + $275 = 0, + $276 = 0, + $277 = 0, + $278 = 0, + $279 = 0, + $28 = 0, + $280 = 0, + $281 = 0, + $282 = 0, + $283 = 0, + $284 = 0, + $285 = 0 + var $286 = 0, + $287 = 0, + $288 = 0, + $289 = 0, + $29 = 0, + $290 = 0, + $291 = 0, + $292 = 0, + $293 = 0, + $294 = 0, + $295 = 0, + $296 = 0, + $297 = 0, + $298 = 0, + $299 = 0, + $3 = 0, + $30 = 0, + $300 = 0, + $301 = 0, + $302 = 0 + var $303 = 0, + $304 = 0, + $305 = 0, + $306 = 0, + $307 = 0, + $308 = 0, + $309 = 0, + $31 = 0, + $310 = 0, + $311 = 0, + $312 = 0, + $313 = 0, + $314 = 0, + $315 = 0, + $316 = 0, + $317 = 0, + $318 = 0, + $319 = 0, + $32 = 0, + $320 = 0 + var $321 = 0, + $33 = 0, + $34 = 0, + $35 = 0, + $36 = 0, + $37 = 0, + $38 = 0, + $39 = 0, + $4 = 0, + $40 = 0, + $41 = 0, + $42 = 0, + $43 = 0, + $44 = 0, + $45 = 0, + $46 = 0, + $47 = 0, + $48 = 0, + $49 = 0, + $5 = 0 + var $50 = 0, + $51 = 0, + $52 = 0, + $53 = 0, + $54 = 0, + $55 = 0, + $56 = 0, + $57 = 0, + $58 = 0, + $59 = 0, + $6 = 0, + $60 = 0, + $61 = 0, + $62 = 0, + $63 = 0, + $64 = 0, + $65 = 0, + $66 = 0, + $67 = 0, + $68 = 0 + var $69 = 0, + $7 = 0, + $70 = 0, + $71 = 0, + $72 = 0, + $73 = 0, + $74 = 0, + $75 = 0, + $76 = 0, + $77 = 0, + $78 = 0, + $79 = 0, + $8 = 0, + $80 = 0, + $81 = 0, + $82 = 0, + $83 = 0, + $84 = 0, + $85 = 0, + $86 = 0 + var $87 = 0, + $88 = 0, + $89 = 0, + $9 = 0, + $90 = 0, + $91 = 0, + $92 = 0, + $93 = 0, + $94 = 0, + $95 = 0, + $96 = 0, + $97 = 0, + $98 = 0, + $99 = 0, + $F16$0 = 0, + $I18$0 = 0, + $K19$052 = 0, + $R$0 = 0, + $R$0$lcssa = 0, + $R$1 = 0 + var $R7$0 = 0, + $R7$0$lcssa = 0, + $R7$1 = 0, + $RP$0 = 0, + $RP$0$lcssa = 0, + $RP9$0 = 0, + $RP9$0$lcssa = 0, + $T$0$lcssa = 0, + $T$051 = 0, + $T$051$lcssa = 0, + $cond = 0, + $cond47 = 0, + $not$ = 0, + $p$0 = 0, + $psize$0 = 0, + $psize$1 = 0, + $sp$0$i = 0, + $sp$0$in$i = 0, + label = 0, + sp = 0 + sp = STACKTOP + $0 = ($mem | 0) == (0 | 0) + if ($0) { + return + } + $1 = ($mem + -8) | 0 + $2 = HEAP32[32628 >> 2] | 0 + $3 = $1 >>> 0 < $2 >>> 0 + if ($3) { + _abort() + // unreachable; + } + $4 = ($mem + -4) | 0 + $5 = HEAP32[$4 >> 2] | 0 + $6 = $5 & 3 + $7 = ($6 | 0) == 1 + if ($7) { + _abort() + // unreachable; + } + $8 = $5 & -8 + $$sum = ($8 + -8) | 0 + $9 = ($mem + $$sum) | 0 + $10 = $5 & 1 + $11 = ($10 | 0) == 0 + do { + if ($11) { + $12 = HEAP32[$1 >> 2] | 0 + $13 = ($6 | 0) == 0 + if ($13) { + return + } + $$sum2 = (-8 - $12) | 0 + $14 = ($mem + $$sum2) | 0 + $15 = ($12 + $8) | 0 + $16 = $14 >>> 0 < $2 >>> 0 + if ($16) { + _abort() + // unreachable; + } + $17 = HEAP32[32632 >> 2] | 0 + $18 = ($14 | 0) == ($17 | 0) + if ($18) { + $$sum3 = ($8 + -4) | 0 + $103 = ($mem + $$sum3) | 0 + $104 = HEAP32[$103 >> 2] | 0 + $105 = $104 & 3 + $106 = ($105 | 0) == 3 + if (!$106) { + $p$0 = $14 + $psize$0 = $15 + break + } + HEAP32[32620 >> 2] = $15 + $107 = $104 & -2 + HEAP32[$103 >> 2] = $107 + $108 = $15 | 1 + $$sum20 = ($$sum2 + 4) | 0 + $109 = ($mem + $$sum20) | 0 + HEAP32[$109 >> 2] = $108 + HEAP32[$9 >> 2] = $15 + return + } + $19 = $12 >>> 3 + $20 = $12 >>> 0 < 256 + if ($20) { + $$sum30 = ($$sum2 + 8) | 0 + $21 = ($mem + $$sum30) | 0 + $22 = HEAP32[$21 >> 2] | 0 + $$sum31 = ($$sum2 + 12) | 0 + $23 = ($mem + $$sum31) | 0 + $24 = HEAP32[$23 >> 2] | 0 + $25 = $19 << 1 + $26 = (32652 + ($25 << 2)) | 0 + $27 = ($22 | 0) == ($26 | 0) + if (!$27) { + $28 = $22 >>> 0 < $2 >>> 0 + if ($28) { + _abort() + // unreachable; + } + $29 = ($22 + 12) | 0 + $30 = HEAP32[$29 >> 2] | 0 + $31 = ($30 | 0) == ($14 | 0) + if (!$31) { + _abort() + // unreachable; + } + } + $32 = ($24 | 0) == ($22 | 0) + if ($32) { + $33 = 1 << $19 + $34 = $33 ^ -1 + $35 = HEAP32[32612 >> 2] | 0 + $36 = $35 & $34 + HEAP32[32612 >> 2] = $36 + $p$0 = $14 + $psize$0 = $15 + break + } + $37 = ($24 | 0) == ($26 | 0) + if ($37) { + $$pre60 = ($24 + 8) | 0 + $$pre$phi61Z2D = $$pre60 + } else { + $38 = $24 >>> 0 < $2 >>> 0 + if ($38) { + _abort() + // unreachable; + } + $39 = ($24 + 8) | 0 + $40 = HEAP32[$39 >> 2] | 0 + $41 = ($40 | 0) == ($14 | 0) + if ($41) { + $$pre$phi61Z2D = $39 + } else { + _abort() + // unreachable; + } + } + $42 = ($22 + 12) | 0 + HEAP32[$42 >> 2] = $24 + HEAP32[$$pre$phi61Z2D >> 2] = $22 + $p$0 = $14 + $psize$0 = $15 + break + } + $$sum22 = ($$sum2 + 24) | 0 + $43 = ($mem + $$sum22) | 0 + $44 = HEAP32[$43 >> 2] | 0 + $$sum23 = ($$sum2 + 12) | 0 + $45 = ($mem + $$sum23) | 0 + $46 = HEAP32[$45 >> 2] | 0 + $47 = ($46 | 0) == ($14 | 0) + do { + if ($47) { + $$sum25 = ($$sum2 + 20) | 0 + $57 = ($mem + $$sum25) | 0 + $58 = HEAP32[$57 >> 2] | 0 + $59 = ($58 | 0) == (0 | 0) + if ($59) { + $$sum24 = ($$sum2 + 16) | 0 + $60 = ($mem + $$sum24) | 0 + $61 = HEAP32[$60 >> 2] | 0 + $62 = ($61 | 0) == (0 | 0) + if ($62) { + $R$1 = 0 + break + } else { + $R$0 = $61 + $RP$0 = $60 + } + } else { + $R$0 = $58 + $RP$0 = $57 + } + while (1) { + $63 = ($R$0 + 20) | 0 + $64 = HEAP32[$63 >> 2] | 0 + $65 = ($64 | 0) == (0 | 0) + if (!$65) { + $R$0 = $64 + $RP$0 = $63 + continue + } + $66 = ($R$0 + 16) | 0 + $67 = HEAP32[$66 >> 2] | 0 + $68 = ($67 | 0) == (0 | 0) + if ($68) { + $R$0$lcssa = $R$0 + $RP$0$lcssa = $RP$0 + break + } else { + $R$0 = $67 + $RP$0 = $66 + } + } + $69 = $RP$0$lcssa >>> 0 < $2 >>> 0 + if ($69) { + _abort() + // unreachable; + } else { + HEAP32[$RP$0$lcssa >> 2] = 0 + $R$1 = $R$0$lcssa + break + } + } else { + $$sum29 = ($$sum2 + 8) | 0 + $48 = ($mem + $$sum29) | 0 + $49 = HEAP32[$48 >> 2] | 0 + $50 = $49 >>> 0 < $2 >>> 0 + if ($50) { + _abort() + // unreachable; + } + $51 = ($49 + 12) | 0 + $52 = HEAP32[$51 >> 2] | 0 + $53 = ($52 | 0) == ($14 | 0) + if (!$53) { + _abort() + // unreachable; + } + $54 = ($46 + 8) | 0 + $55 = HEAP32[$54 >> 2] | 0 + $56 = ($55 | 0) == ($14 | 0) + if ($56) { + HEAP32[$51 >> 2] = $46 + HEAP32[$54 >> 2] = $49 + $R$1 = $46 + break + } else { + _abort() + // unreachable; + } + } + } while (0) + $70 = ($44 | 0) == (0 | 0) + if ($70) { + $p$0 = $14 + $psize$0 = $15 + } else { + $$sum26 = ($$sum2 + 28) | 0 + $71 = ($mem + $$sum26) | 0 + $72 = HEAP32[$71 >> 2] | 0 + $73 = (32916 + ($72 << 2)) | 0 + $74 = HEAP32[$73 >> 2] | 0 + $75 = ($14 | 0) == ($74 | 0) + if ($75) { + HEAP32[$73 >> 2] = $R$1 + $cond = ($R$1 | 0) == (0 | 0) + if ($cond) { + $76 = 1 << $72 + $77 = $76 ^ -1 + $78 = HEAP32[32616 >> 2] | 0 + $79 = $78 & $77 + HEAP32[32616 >> 2] = $79 + $p$0 = $14 + $psize$0 = $15 + break + } + } else { + $80 = HEAP32[32628 >> 2] | 0 + $81 = $44 >>> 0 < $80 >>> 0 + if ($81) { + _abort() + // unreachable; + } + $82 = ($44 + 16) | 0 + $83 = HEAP32[$82 >> 2] | 0 + $84 = ($83 | 0) == ($14 | 0) + if ($84) { + HEAP32[$82 >> 2] = $R$1 + } else { + $85 = ($44 + 20) | 0 + HEAP32[$85 >> 2] = $R$1 + } + $86 = ($R$1 | 0) == (0 | 0) + if ($86) { + $p$0 = $14 + $psize$0 = $15 + break + } + } + $87 = HEAP32[32628 >> 2] | 0 + $88 = $R$1 >>> 0 < $87 >>> 0 + if ($88) { + _abort() + // unreachable; + } + $89 = ($R$1 + 24) | 0 + HEAP32[$89 >> 2] = $44 + $$sum27 = ($$sum2 + 16) | 0 + $90 = ($mem + $$sum27) | 0 + $91 = HEAP32[$90 >> 2] | 0 + $92 = ($91 | 0) == (0 | 0) + do { + if (!$92) { + $93 = $91 >>> 0 < $87 >>> 0 + if ($93) { + _abort() + // unreachable; + } else { + $94 = ($R$1 + 16) | 0 + HEAP32[$94 >> 2] = $91 + $95 = ($91 + 24) | 0 + HEAP32[$95 >> 2] = $R$1 + break + } + } + } while (0) + $$sum28 = ($$sum2 + 20) | 0 + $96 = ($mem + $$sum28) | 0 + $97 = HEAP32[$96 >> 2] | 0 + $98 = ($97 | 0) == (0 | 0) + if ($98) { + $p$0 = $14 + $psize$0 = $15 + } else { + $99 = HEAP32[32628 >> 2] | 0 + $100 = $97 >>> 0 < $99 >>> 0 + if ($100) { + _abort() + // unreachable; + } else { + $101 = ($R$1 + 20) | 0 + HEAP32[$101 >> 2] = $97 + $102 = ($97 + 24) | 0 + HEAP32[$102 >> 2] = $R$1 + $p$0 = $14 + $psize$0 = $15 + break + } + } + } + } else { + $p$0 = $1 + $psize$0 = $8 + } + } while (0) + $110 = $p$0 >>> 0 < $9 >>> 0 + if (!$110) { + _abort() + // unreachable; + } + $$sum19 = ($8 + -4) | 0 + $111 = ($mem + $$sum19) | 0 + $112 = HEAP32[$111 >> 2] | 0 + $113 = $112 & 1 + $114 = ($113 | 0) == 0 + if ($114) { + _abort() + // unreachable; + } + $115 = $112 & 2 + $116 = ($115 | 0) == 0 + if ($116) { + $117 = HEAP32[32636 >> 2] | 0 + $118 = ($9 | 0) == ($117 | 0) + if ($118) { + $119 = HEAP32[32624 >> 2] | 0 + $120 = ($119 + $psize$0) | 0 + HEAP32[32624 >> 2] = $120 + HEAP32[32636 >> 2] = $p$0 + $121 = $120 | 1 + $122 = ($p$0 + 4) | 0 + HEAP32[$122 >> 2] = $121 + $123 = HEAP32[32632 >> 2] | 0 + $124 = ($p$0 | 0) == ($123 | 0) + if (!$124) { + return + } + HEAP32[32632 >> 2] = 0 + HEAP32[32620 >> 2] = 0 + return + } + $125 = HEAP32[32632 >> 2] | 0 + $126 = ($9 | 0) == ($125 | 0) + if ($126) { + $127 = HEAP32[32620 >> 2] | 0 + $128 = ($127 + $psize$0) | 0 + HEAP32[32620 >> 2] = $128 + HEAP32[32632 >> 2] = $p$0 + $129 = $128 | 1 + $130 = ($p$0 + 4) | 0 + HEAP32[$130 >> 2] = $129 + $131 = ($p$0 + $128) | 0 + HEAP32[$131 >> 2] = $128 + return + } + $132 = $112 & -8 + $133 = ($132 + $psize$0) | 0 + $134 = $112 >>> 3 + $135 = $112 >>> 0 < 256 + do { + if ($135) { + $136 = ($mem + $8) | 0 + $137 = HEAP32[$136 >> 2] | 0 + $$sum1718 = $8 | 4 + $138 = ($mem + $$sum1718) | 0 + $139 = HEAP32[$138 >> 2] | 0 + $140 = $134 << 1 + $141 = (32652 + ($140 << 2)) | 0 + $142 = ($137 | 0) == ($141 | 0) + if (!$142) { + $143 = HEAP32[32628 >> 2] | 0 + $144 = $137 >>> 0 < $143 >>> 0 + if ($144) { + _abort() + // unreachable; + } + $145 = ($137 + 12) | 0 + $146 = HEAP32[$145 >> 2] | 0 + $147 = ($146 | 0) == ($9 | 0) + if (!$147) { + _abort() + // unreachable; + } + } + $148 = ($139 | 0) == ($137 | 0) + if ($148) { + $149 = 1 << $134 + $150 = $149 ^ -1 + $151 = HEAP32[32612 >> 2] | 0 + $152 = $151 & $150 + HEAP32[32612 >> 2] = $152 + break + } + $153 = ($139 | 0) == ($141 | 0) + if ($153) { + $$pre58 = ($139 + 8) | 0 + $$pre$phi59Z2D = $$pre58 + } else { + $154 = HEAP32[32628 >> 2] | 0 + $155 = $139 >>> 0 < $154 >>> 0 + if ($155) { + _abort() + // unreachable; + } + $156 = ($139 + 8) | 0 + $157 = HEAP32[$156 >> 2] | 0 + $158 = ($157 | 0) == ($9 | 0) + if ($158) { + $$pre$phi59Z2D = $156 + } else { + _abort() + // unreachable; + } + } + $159 = ($137 + 12) | 0 + HEAP32[$159 >> 2] = $139 + HEAP32[$$pre$phi59Z2D >> 2] = $137 + } else { + $$sum5 = ($8 + 16) | 0 + $160 = ($mem + $$sum5) | 0 + $161 = HEAP32[$160 >> 2] | 0 + $$sum67 = $8 | 4 + $162 = ($mem + $$sum67) | 0 + $163 = HEAP32[$162 >> 2] | 0 + $164 = ($163 | 0) == ($9 | 0) + do { + if ($164) { + $$sum9 = ($8 + 12) | 0 + $175 = ($mem + $$sum9) | 0 + $176 = HEAP32[$175 >> 2] | 0 + $177 = ($176 | 0) == (0 | 0) + if ($177) { + $$sum8 = ($8 + 8) | 0 + $178 = ($mem + $$sum8) | 0 + $179 = HEAP32[$178 >> 2] | 0 + $180 = ($179 | 0) == (0 | 0) + if ($180) { + $R7$1 = 0 + break + } else { + $R7$0 = $179 + $RP9$0 = $178 + } + } else { + $R7$0 = $176 + $RP9$0 = $175 + } + while (1) { + $181 = ($R7$0 + 20) | 0 + $182 = HEAP32[$181 >> 2] | 0 + $183 = ($182 | 0) == (0 | 0) + if (!$183) { + $R7$0 = $182 + $RP9$0 = $181 + continue + } + $184 = ($R7$0 + 16) | 0 + $185 = HEAP32[$184 >> 2] | 0 + $186 = ($185 | 0) == (0 | 0) + if ($186) { + $R7$0$lcssa = $R7$0 + $RP9$0$lcssa = $RP9$0 + break + } else { + $R7$0 = $185 + $RP9$0 = $184 + } + } + $187 = HEAP32[32628 >> 2] | 0 + $188 = $RP9$0$lcssa >>> 0 < $187 >>> 0 + if ($188) { + _abort() + // unreachable; + } else { + HEAP32[$RP9$0$lcssa >> 2] = 0 + $R7$1 = $R7$0$lcssa + break + } + } else { + $165 = ($mem + $8) | 0 + $166 = HEAP32[$165 >> 2] | 0 + $167 = HEAP32[32628 >> 2] | 0 + $168 = $166 >>> 0 < $167 >>> 0 + if ($168) { + _abort() + // unreachable; + } + $169 = ($166 + 12) | 0 + $170 = HEAP32[$169 >> 2] | 0 + $171 = ($170 | 0) == ($9 | 0) + if (!$171) { + _abort() + // unreachable; + } + $172 = ($163 + 8) | 0 + $173 = HEAP32[$172 >> 2] | 0 + $174 = ($173 | 0) == ($9 | 0) + if ($174) { + HEAP32[$169 >> 2] = $163 + HEAP32[$172 >> 2] = $166 + $R7$1 = $163 + break + } else { + _abort() + // unreachable; + } + } + } while (0) + $189 = ($161 | 0) == (0 | 0) + if (!$189) { + $$sum12 = ($8 + 20) | 0 + $190 = ($mem + $$sum12) | 0 + $191 = HEAP32[$190 >> 2] | 0 + $192 = (32916 + ($191 << 2)) | 0 + $193 = HEAP32[$192 >> 2] | 0 + $194 = ($9 | 0) == ($193 | 0) + if ($194) { + HEAP32[$192 >> 2] = $R7$1 + $cond47 = ($R7$1 | 0) == (0 | 0) + if ($cond47) { + $195 = 1 << $191 + $196 = $195 ^ -1 + $197 = HEAP32[32616 >> 2] | 0 + $198 = $197 & $196 + HEAP32[32616 >> 2] = $198 + break + } + } else { + $199 = HEAP32[32628 >> 2] | 0 + $200 = $161 >>> 0 < $199 >>> 0 + if ($200) { + _abort() + // unreachable; + } + $201 = ($161 + 16) | 0 + $202 = HEAP32[$201 >> 2] | 0 + $203 = ($202 | 0) == ($9 | 0) + if ($203) { + HEAP32[$201 >> 2] = $R7$1 + } else { + $204 = ($161 + 20) | 0 + HEAP32[$204 >> 2] = $R7$1 + } + $205 = ($R7$1 | 0) == (0 | 0) + if ($205) { + break + } + } + $206 = HEAP32[32628 >> 2] | 0 + $207 = $R7$1 >>> 0 < $206 >>> 0 + if ($207) { + _abort() + // unreachable; + } + $208 = ($R7$1 + 24) | 0 + HEAP32[$208 >> 2] = $161 + $$sum13 = ($8 + 8) | 0 + $209 = ($mem + $$sum13) | 0 + $210 = HEAP32[$209 >> 2] | 0 + $211 = ($210 | 0) == (0 | 0) + do { + if (!$211) { + $212 = $210 >>> 0 < $206 >>> 0 + if ($212) { + _abort() + // unreachable; + } else { + $213 = ($R7$1 + 16) | 0 + HEAP32[$213 >> 2] = $210 + $214 = ($210 + 24) | 0 + HEAP32[$214 >> 2] = $R7$1 + break + } + } + } while (0) + $$sum14 = ($8 + 12) | 0 + $215 = ($mem + $$sum14) | 0 + $216 = HEAP32[$215 >> 2] | 0 + $217 = ($216 | 0) == (0 | 0) + if (!$217) { + $218 = HEAP32[32628 >> 2] | 0 + $219 = $216 >>> 0 < $218 >>> 0 + if ($219) { + _abort() + // unreachable; + } else { + $220 = ($R7$1 + 20) | 0 + HEAP32[$220 >> 2] = $216 + $221 = ($216 + 24) | 0 + HEAP32[$221 >> 2] = $R7$1 + break + } + } + } + } + } while (0) + $222 = $133 | 1 + $223 = ($p$0 + 4) | 0 + HEAP32[$223 >> 2] = $222 + $224 = ($p$0 + $133) | 0 + HEAP32[$224 >> 2] = $133 + $225 = HEAP32[32632 >> 2] | 0 + $226 = ($p$0 | 0) == ($225 | 0) + if ($226) { + HEAP32[32620 >> 2] = $133 + return + } else { + $psize$1 = $133 + } + } else { + $227 = $112 & -2 + HEAP32[$111 >> 2] = $227 + $228 = $psize$0 | 1 + $229 = ($p$0 + 4) | 0 + HEAP32[$229 >> 2] = $228 + $230 = ($p$0 + $psize$0) | 0 + HEAP32[$230 >> 2] = $psize$0 + $psize$1 = $psize$0 + } + $231 = $psize$1 >>> 3 + $232 = $psize$1 >>> 0 < 256 + if ($232) { + $233 = $231 << 1 + $234 = (32652 + ($233 << 2)) | 0 + $235 = HEAP32[32612 >> 2] | 0 + $236 = 1 << $231 + $237 = $235 & $236 + $238 = ($237 | 0) == 0 + if ($238) { + $239 = $235 | $236 + HEAP32[32612 >> 2] = $239 + $$pre = ($233 + 2) | 0 + $$pre57 = (32652 + ($$pre << 2)) | 0 + $$pre$phiZ2D = $$pre57 + $F16$0 = $234 + } else { + $$sum11 = ($233 + 2) | 0 + $240 = (32652 + ($$sum11 << 2)) | 0 + $241 = HEAP32[$240 >> 2] | 0 + $242 = HEAP32[32628 >> 2] | 0 + $243 = $241 >>> 0 < $242 >>> 0 + if ($243) { + _abort() + // unreachable; + } else { + $$pre$phiZ2D = $240 + $F16$0 = $241 + } + } + HEAP32[$$pre$phiZ2D >> 2] = $p$0 + $244 = ($F16$0 + 12) | 0 + HEAP32[$244 >> 2] = $p$0 + $245 = ($p$0 + 8) | 0 + HEAP32[$245 >> 2] = $F16$0 + $246 = ($p$0 + 12) | 0 + HEAP32[$246 >> 2] = $234 + return + } + $247 = $psize$1 >>> 8 + $248 = ($247 | 0) == 0 + if ($248) { + $I18$0 = 0 + } else { + $249 = $psize$1 >>> 0 > 16777215 + if ($249) { + $I18$0 = 31 + } else { + $250 = ($247 + 1048320) | 0 + $251 = $250 >>> 16 + $252 = $251 & 8 + $253 = $247 << $252 + $254 = ($253 + 520192) | 0 + $255 = $254 >>> 16 + $256 = $255 & 4 + $257 = $256 | $252 + $258 = $253 << $256 + $259 = ($258 + 245760) | 0 + $260 = $259 >>> 16 + $261 = $260 & 2 + $262 = $257 | $261 + $263 = (14 - $262) | 0 + $264 = $258 << $261 + $265 = $264 >>> 15 + $266 = ($263 + $265) | 0 + $267 = $266 << 1 + $268 = ($266 + 7) | 0 + $269 = $psize$1 >>> $268 + $270 = $269 & 1 + $271 = $270 | $267 + $I18$0 = $271 + } + } + $272 = (32916 + ($I18$0 << 2)) | 0 + $273 = ($p$0 + 28) | 0 + HEAP32[$273 >> 2] = $I18$0 + $274 = ($p$0 + 16) | 0 + $275 = ($p$0 + 20) | 0 + HEAP32[$275 >> 2] = 0 + HEAP32[$274 >> 2] = 0 + $276 = HEAP32[32616 >> 2] | 0 + $277 = 1 << $I18$0 + $278 = $276 & $277 + $279 = ($278 | 0) == 0 + L199: do { + if ($279) { + $280 = $276 | $277 + HEAP32[32616 >> 2] = $280 + HEAP32[$272 >> 2] = $p$0 + $281 = ($p$0 + 24) | 0 + HEAP32[$281 >> 2] = $272 + $282 = ($p$0 + 12) | 0 + HEAP32[$282 >> 2] = $p$0 + $283 = ($p$0 + 8) | 0 + HEAP32[$283 >> 2] = $p$0 + } else { + $284 = HEAP32[$272 >> 2] | 0 + $285 = ($284 + 4) | 0 + $286 = HEAP32[$285 >> 2] | 0 + $287 = $286 & -8 + $288 = ($287 | 0) == ($psize$1 | 0) + L202: do { + if ($288) { + $T$0$lcssa = $284 + } else { + $289 = ($I18$0 | 0) == 31 + $290 = $I18$0 >>> 1 + $291 = (25 - $290) | 0 + $292 = $289 ? 0 : $291 + $293 = $psize$1 << $292 + $K19$052 = $293 + $T$051 = $284 + while (1) { + $300 = $K19$052 >>> 31 + $301 = ((($T$051 + 16) | 0) + ($300 << 2)) | 0 + $296 = HEAP32[$301 >> 2] | 0 + $302 = ($296 | 0) == (0 | 0) + if ($302) { + $$lcssa = $301 + $T$051$lcssa = $T$051 + break + } + $294 = $K19$052 << 1 + $295 = ($296 + 4) | 0 + $297 = HEAP32[$295 >> 2] | 0 + $298 = $297 & -8 + $299 = ($298 | 0) == ($psize$1 | 0) + if ($299) { + $T$0$lcssa = $296 + break L202 + } else { + $K19$052 = $294 + $T$051 = $296 + } + } + $303 = HEAP32[32628 >> 2] | 0 + $304 = $$lcssa >>> 0 < $303 >>> 0 + if ($304) { + _abort() + // unreachable; + } else { + HEAP32[$$lcssa >> 2] = $p$0 + $305 = ($p$0 + 24) | 0 + HEAP32[$305 >> 2] = $T$051$lcssa + $306 = ($p$0 + 12) | 0 + HEAP32[$306 >> 2] = $p$0 + $307 = ($p$0 + 8) | 0 + HEAP32[$307 >> 2] = $p$0 + break L199 + } + } + } while (0) + $308 = ($T$0$lcssa + 8) | 0 + $309 = HEAP32[$308 >> 2] | 0 + $310 = HEAP32[32628 >> 2] | 0 + $311 = $309 >>> 0 >= $310 >>> 0 + $not$ = $T$0$lcssa >>> 0 >= $310 >>> 0 + $312 = $311 & $not$ + if ($312) { + $313 = ($309 + 12) | 0 + HEAP32[$313 >> 2] = $p$0 + HEAP32[$308 >> 2] = $p$0 + $314 = ($p$0 + 8) | 0 + HEAP32[$314 >> 2] = $309 + $315 = ($p$0 + 12) | 0 + HEAP32[$315 >> 2] = $T$0$lcssa + $316 = ($p$0 + 24) | 0 + HEAP32[$316 >> 2] = 0 + break + } else { + _abort() + // unreachable; + } + } + } while (0) + $317 = HEAP32[32644 >> 2] | 0 + $318 = ($317 + -1) | 0 + HEAP32[32644 >> 2] = $318 + $319 = ($318 | 0) == 0 + if ($319) { + $sp$0$in$i = 33068 + } else { + return + } + while (1) { + $sp$0$i = HEAP32[$sp$0$in$i >> 2] | 0 + $320 = ($sp$0$i | 0) == (0 | 0) + $321 = ($sp$0$i + 8) | 0 + if ($320) { + break + } else { + $sp$0$in$i = $321 + } + } + HEAP32[32644 >> 2] = -1 + return + } + function runPostSets() {} + function _bitshift64Ashr(low, high, bits) { + low = low | 0 + high = high | 0 + bits = bits | 0 + var ander = 0 + if ((bits | 0) < 32) { + ander = ((1 << bits) - 1) | 0 + tempRet0 = high >> bits + return (low >>> bits) | ((high & ander) << (32 - bits)) + } + tempRet0 = (high | 0) < 0 ? -1 : 0 + return (high >> (bits - 32)) | 0 + } + function _i64Subtract(a, b, c, d) { + a = a | 0 + b = b | 0 + c = c | 0 + d = d | 0 + var l = 0, + h = 0 + l = (a - c) >>> 0 + h = (b - d) >>> 0 + h = (b - d - ((c >>> 0 > a >>> 0) | 0)) >>> 0 // Borrow one from high word to low word on underflow. + return ((tempRet0 = h), l | 0) | 0 + } + function _i64Add(a, b, c, d) { + /* + x = a + b*2^32 + y = c + d*2^32 + result = l + h*2^32 + */ + a = a | 0 + b = b | 0 + c = c | 0 + d = d | 0 + var l = 0, + h = 0 + l = (a + c) >>> 0 + h = (b + d + ((l >>> 0 < a >>> 0) | 0)) >>> 0 // Add carry from low word to high word on overflow. + return ((tempRet0 = h), l | 0) | 0 + } + function _memset(ptr, value, num) { + ptr = ptr | 0 + value = value | 0 + num = num | 0 + var stop = 0, + value4 = 0, + stop4 = 0, + unaligned = 0 + stop = (ptr + num) | 0 + if ((num | 0) >= 20) { + // This is unaligned, but quite large, so work hard to get to aligned settings + value = value & 0xff + unaligned = ptr & 3 + value4 = value | (value << 8) | (value << 16) | (value << 24) + stop4 = stop & ~3 + if (unaligned) { + unaligned = (ptr + 4 - unaligned) | 0 + while ((ptr | 0) < (unaligned | 0)) { + // no need to check for stop, since we have large num + HEAP8[ptr >> 0] = value + ptr = (ptr + 1) | 0 + } + } + while ((ptr | 0) < (stop4 | 0)) { + HEAP32[ptr >> 2] = value4 + ptr = (ptr + 4) | 0 + } + } + while ((ptr | 0) < (stop | 0)) { + HEAP8[ptr >> 0] = value + ptr = (ptr + 1) | 0 + } + return (ptr - num) | 0 + } + function _bitshift64Lshr(low, high, bits) { + low = low | 0 + high = high | 0 + bits = bits | 0 + var ander = 0 + if ((bits | 0) < 32) { + ander = ((1 << bits) - 1) | 0 + tempRet0 = high >>> bits + return (low >>> bits) | ((high & ander) << (32 - bits)) + } + tempRet0 = 0 + return (high >>> (bits - 32)) | 0 + } + function _bitshift64Shl(low, high, bits) { + low = low | 0 + high = high | 0 + bits = bits | 0 + var ander = 0 + if ((bits | 0) < 32) { + ander = ((1 << bits) - 1) | 0 + tempRet0 = + (high << bits) | + ((low & (ander << (32 - bits))) >>> (32 - bits)) + return low << bits + } + tempRet0 = low << (bits - 32) + return 0 + } + function _memcpy(dest, src, num) { + dest = dest | 0 + src = src | 0 + num = num | 0 + var ret = 0 + if ((num | 0) >= 4096) + return _emscripten_memcpy_big(dest | 0, src | 0, num | 0) | 0 + ret = dest | 0 + if ((dest & 3) == (src & 3)) { + while (dest & 3) { + if ((num | 0) == 0) return ret | 0 + HEAP8[dest >> 0] = HEAP8[src >> 0] | 0 + dest = (dest + 1) | 0 + src = (src + 1) | 0 + num = (num - 1) | 0 + } + while ((num | 0) >= 4) { + HEAP32[dest >> 2] = HEAP32[src >> 2] | 0 + dest = (dest + 4) | 0 + src = (src + 4) | 0 + num = (num - 4) | 0 + } + } + while ((num | 0) > 0) { + HEAP8[dest >> 0] = HEAP8[src >> 0] | 0 + dest = (dest + 1) | 0 + src = (src + 1) | 0 + num = (num - 1) | 0 + } + return ret | 0 + } + function _llvm_cttz_i32(x) { + x = x | 0 + var ret = 0 + ret = HEAP8[(cttz_i8 + (x & 0xff)) >> 0] | 0 + if ((ret | 0) < 8) return ret | 0 + ret = HEAP8[(cttz_i8 + ((x >> 8) & 0xff)) >> 0] | 0 + if ((ret | 0) < 8) return (ret + 8) | 0 + ret = HEAP8[(cttz_i8 + ((x >> 16) & 0xff)) >> 0] | 0 + if ((ret | 0) < 8) return (ret + 16) | 0 + return ((HEAP8[(cttz_i8 + (x >>> 24)) >> 0] | 0) + 24) | 0 + } + + // ======== compiled code from system/lib/compiler-rt , see readme therein + function ___muldsi3($a, $b) { + $a = $a | 0 + $b = $b | 0 + var $1 = 0, + $2 = 0, + $3 = 0, + $6 = 0, + $8 = 0, + $11 = 0, + $12 = 0 + $1 = $a & 65535 + $2 = $b & 65535 + $3 = Math_imul($2, $1) | 0 + $6 = $a >>> 16 + $8 = (($3 >>> 16) + (Math_imul($2, $6) | 0)) | 0 + $11 = $b >>> 16 + $12 = Math_imul($11, $1) | 0 + return ( + ((tempRet0 = + (((($8 >>> 16) + (Math_imul($11, $6) | 0)) | 0) + + (((($8 & 65535) + $12) | 0) >>> 16)) | + 0), + 0 | ((($8 + $12) << 16) | ($3 & 65535))) | 0 + ) + } + function ___divdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0 + $a$1 = $a$1 | 0 + $b$0 = $b$0 | 0 + $b$1 = $b$1 | 0 + var $1$0 = 0, + $1$1 = 0, + $2$0 = 0, + $2$1 = 0, + $4$0 = 0, + $4$1 = 0, + $6$0 = 0, + $7$0 = 0, + $7$1 = 0, + $8$0 = 0, + $10$0 = 0 + $1$0 = ($a$1 >> 31) | ((($a$1 | 0) < 0 ? -1 : 0) << 1) + $1$1 = + ((($a$1 | 0) < 0 ? -1 : 0) >> 31) | + ((($a$1 | 0) < 0 ? -1 : 0) << 1) + $2$0 = ($b$1 >> 31) | ((($b$1 | 0) < 0 ? -1 : 0) << 1) + $2$1 = + ((($b$1 | 0) < 0 ? -1 : 0) >> 31) | + ((($b$1 | 0) < 0 ? -1 : 0) << 1) + $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0 + $4$1 = tempRet0 + $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0 + $7$0 = $2$0 ^ $1$0 + $7$1 = $2$1 ^ $1$1 + $8$0 = ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, 0) | 0 + $10$0 = + _i64Subtract($8$0 ^ $7$0, tempRet0 ^ $7$1, $7$0, $7$1) | 0 + return $10$0 | 0 + } + function ___remdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0 + $a$1 = $a$1 | 0 + $b$0 = $b$0 | 0 + $b$1 = $b$1 | 0 + var $rem = 0, + $1$0 = 0, + $1$1 = 0, + $2$0 = 0, + $2$1 = 0, + $4$0 = 0, + $4$1 = 0, + $6$0 = 0, + $10$0 = 0, + $10$1 = 0, + __stackBase__ = 0 + __stackBase__ = STACKTOP + STACKTOP = (STACKTOP + 16) | 0 + $rem = __stackBase__ | 0 + $1$0 = ($a$1 >> 31) | ((($a$1 | 0) < 0 ? -1 : 0) << 1) + $1$1 = + ((($a$1 | 0) < 0 ? -1 : 0) >> 31) | + ((($a$1 | 0) < 0 ? -1 : 0) << 1) + $2$0 = ($b$1 >> 31) | ((($b$1 | 0) < 0 ? -1 : 0) << 1) + $2$1 = + ((($b$1 | 0) < 0 ? -1 : 0) >> 31) | + ((($b$1 | 0) < 0 ? -1 : 0) << 1) + $4$0 = _i64Subtract($1$0 ^ $a$0, $1$1 ^ $a$1, $1$0, $1$1) | 0 + $4$1 = tempRet0 + $6$0 = _i64Subtract($2$0 ^ $b$0, $2$1 ^ $b$1, $2$0, $2$1) | 0 + ___udivmoddi4($4$0, $4$1, $6$0, tempRet0, $rem) | 0 + $10$0 = + _i64Subtract( + HEAP32[$rem >> 2] ^ $1$0, + HEAP32[($rem + 4) >> 2] ^ $1$1, + $1$0, + $1$1 + ) | 0 + $10$1 = tempRet0 + STACKTOP = __stackBase__ + return ((tempRet0 = $10$1), $10$0) | 0 + } + function ___muldi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0 + $a$1 = $a$1 | 0 + $b$0 = $b$0 | 0 + $b$1 = $b$1 | 0 + var $x_sroa_0_0_extract_trunc = 0, + $y_sroa_0_0_extract_trunc = 0, + $1$0 = 0, + $1$1 = 0, + $2 = 0 + $x_sroa_0_0_extract_trunc = $a$0 + $y_sroa_0_0_extract_trunc = $b$0 + $1$0 = + ___muldsi3( + $x_sroa_0_0_extract_trunc, + $y_sroa_0_0_extract_trunc + ) | 0 + $1$1 = tempRet0 + $2 = Math_imul($a$1, $y_sroa_0_0_extract_trunc) | 0 + return ( + ((tempRet0 = + ((((Math_imul($b$1, $x_sroa_0_0_extract_trunc) | 0) + $2) | + 0) + + $1$1) | + ($1$1 & 0)), + 0 | ($1$0 & -1)) | 0 + ) + } + function ___udivdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0 + $a$1 = $a$1 | 0 + $b$0 = $b$0 | 0 + $b$1 = $b$1 | 0 + var $1$0 = 0 + $1$0 = ___udivmoddi4($a$0, $a$1, $b$0, $b$1, 0) | 0 + return $1$0 | 0 + } + function ___uremdi3($a$0, $a$1, $b$0, $b$1) { + $a$0 = $a$0 | 0 + $a$1 = $a$1 | 0 + $b$0 = $b$0 | 0 + $b$1 = $b$1 | 0 + var $rem = 0, + __stackBase__ = 0 + __stackBase__ = STACKTOP + STACKTOP = (STACKTOP + 16) | 0 + $rem = __stackBase__ | 0 + ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) | 0 + STACKTOP = __stackBase__ + return ( + ((tempRet0 = HEAP32[($rem + 4) >> 2] | 0), + HEAP32[$rem >> 2] | 0) | 0 + ) + } + function ___udivmoddi4($a$0, $a$1, $b$0, $b$1, $rem) { + $a$0 = $a$0 | 0 + $a$1 = $a$1 | 0 + $b$0 = $b$0 | 0 + $b$1 = $b$1 | 0 + $rem = $rem | 0 + var $n_sroa_0_0_extract_trunc = 0, + $n_sroa_1_4_extract_shift$0 = 0, + $n_sroa_1_4_extract_trunc = 0, + $d_sroa_0_0_extract_trunc = 0, + $d_sroa_1_4_extract_shift$0 = 0, + $d_sroa_1_4_extract_trunc = 0, + $4 = 0, + $17 = 0, + $37 = 0, + $49 = 0, + $51 = 0, + $57 = 0, + $58 = 0, + $66 = 0, + $78 = 0, + $86 = 0, + $88 = 0, + $89 = 0, + $91 = 0, + $92 = 0, + $95 = 0, + $105 = 0, + $117 = 0, + $119 = 0, + $125 = 0, + $126 = 0, + $130 = 0, + $q_sroa_1_1_ph = 0, + $q_sroa_0_1_ph = 0, + $r_sroa_1_1_ph = 0, + $r_sroa_0_1_ph = 0, + $sr_1_ph = 0, + $d_sroa_0_0_insert_insert99$0 = 0, + $d_sroa_0_0_insert_insert99$1 = 0, + $137$0 = 0, + $137$1 = 0, + $carry_0203 = 0, + $sr_1202 = 0, + $r_sroa_0_1201 = 0, + $r_sroa_1_1200 = 0, + $q_sroa_0_1199 = 0, + $q_sroa_1_1198 = 0, + $147 = 0, + $149 = 0, + $r_sroa_0_0_insert_insert42$0 = 0, + $r_sroa_0_0_insert_insert42$1 = 0, + $150$1 = 0, + $151$0 = 0, + $152 = 0, + $154$0 = 0, + $r_sroa_0_0_extract_trunc = 0, + $r_sroa_1_4_extract_trunc = 0, + $155 = 0, + $carry_0_lcssa$0 = 0, + $carry_0_lcssa$1 = 0, + $r_sroa_0_1_lcssa = 0, + $r_sroa_1_1_lcssa = 0, + $q_sroa_0_1_lcssa = 0, + $q_sroa_1_1_lcssa = 0, + $q_sroa_0_0_insert_ext75$0 = 0, + $q_sroa_0_0_insert_ext75$1 = 0, + $q_sroa_0_0_insert_insert77$1 = 0, + $_0$0 = 0, + $_0$1 = 0 + $n_sroa_0_0_extract_trunc = $a$0 + $n_sroa_1_4_extract_shift$0 = $a$1 + $n_sroa_1_4_extract_trunc = $n_sroa_1_4_extract_shift$0 + $d_sroa_0_0_extract_trunc = $b$0 + $d_sroa_1_4_extract_shift$0 = $b$1 + $d_sroa_1_4_extract_trunc = $d_sroa_1_4_extract_shift$0 + if (($n_sroa_1_4_extract_trunc | 0) == 0) { + $4 = ($rem | 0) != 0 + if (($d_sroa_1_4_extract_trunc | 0) == 0) { + if ($4) { + HEAP32[$rem >> 2] = + ($n_sroa_0_0_extract_trunc >>> 0) % + ($d_sroa_0_0_extract_trunc >>> 0) + HEAP32[($rem + 4) >> 2] = 0 + } + $_0$1 = 0 + $_0$0 = + (($n_sroa_0_0_extract_trunc >>> 0) / + ($d_sroa_0_0_extract_trunc >>> 0)) >>> + 0 + return ((tempRet0 = $_0$1), $_0$0) | 0 + } else { + if (!$4) { + $_0$1 = 0 + $_0$0 = 0 + return ((tempRet0 = $_0$1), $_0$0) | 0 + } + HEAP32[$rem >> 2] = $a$0 & -1 + HEAP32[($rem + 4) >> 2] = $a$1 & 0 + $_0$1 = 0 + $_0$0 = 0 + return ((tempRet0 = $_0$1), $_0$0) | 0 + } + } + $17 = ($d_sroa_1_4_extract_trunc | 0) == 0 + do { + if (($d_sroa_0_0_extract_trunc | 0) == 0) { + if ($17) { + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = + ($n_sroa_1_4_extract_trunc >>> 0) % + ($d_sroa_0_0_extract_trunc >>> 0) + HEAP32[($rem + 4) >> 2] = 0 + } + $_0$1 = 0 + $_0$0 = + (($n_sroa_1_4_extract_trunc >>> 0) / + ($d_sroa_0_0_extract_trunc >>> 0)) >>> + 0 + return ((tempRet0 = $_0$1), $_0$0) | 0 + } + if (($n_sroa_0_0_extract_trunc | 0) == 0) { + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = 0 + HEAP32[($rem + 4) >> 2] = + ($n_sroa_1_4_extract_trunc >>> 0) % + ($d_sroa_1_4_extract_trunc >>> 0) + } + $_0$1 = 0 + $_0$0 = + (($n_sroa_1_4_extract_trunc >>> 0) / + ($d_sroa_1_4_extract_trunc >>> 0)) >>> + 0 + return ((tempRet0 = $_0$1), $_0$0) | 0 + } + $37 = ($d_sroa_1_4_extract_trunc - 1) | 0 + if ((($37 & $d_sroa_1_4_extract_trunc) | 0) == 0) { + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = 0 | ($a$0 & -1) + HEAP32[($rem + 4) >> 2] = + ($37 & $n_sroa_1_4_extract_trunc) | ($a$1 & 0) + } + $_0$1 = 0 + $_0$0 = + $n_sroa_1_4_extract_trunc >>> + ((_llvm_cttz_i32($d_sroa_1_4_extract_trunc | 0) | 0) >>> + 0) + return ((tempRet0 = $_0$1), $_0$0) | 0 + } + $49 = Math_clz32($d_sroa_1_4_extract_trunc | 0) | 0 + $51 = + ($49 - (Math_clz32($n_sroa_1_4_extract_trunc | 0) | 0)) | + 0 + if ($51 >>> 0 <= 30) { + $57 = ($51 + 1) | 0 + $58 = (31 - $51) | 0 + $sr_1_ph = $57 + $r_sroa_0_1_ph = + ($n_sroa_1_4_extract_trunc << $58) | + ($n_sroa_0_0_extract_trunc >>> ($57 >>> 0)) + $r_sroa_1_1_ph = $n_sroa_1_4_extract_trunc >>> ($57 >>> 0) + $q_sroa_0_1_ph = 0 + $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $58 + break + } + if (($rem | 0) == 0) { + $_0$1 = 0 + $_0$0 = 0 + return ((tempRet0 = $_0$1), $_0$0) | 0 + } + HEAP32[$rem >> 2] = 0 | ($a$0 & -1) + HEAP32[($rem + 4) >> 2] = + $n_sroa_1_4_extract_shift$0 | ($a$1 & 0) + $_0$1 = 0 + $_0$0 = 0 + return ((tempRet0 = $_0$1), $_0$0) | 0 + } else { + if (!$17) { + $117 = Math_clz32($d_sroa_1_4_extract_trunc | 0) | 0 + $119 = + ($117 - + (Math_clz32($n_sroa_1_4_extract_trunc | 0) | 0)) | + 0 + if ($119 >>> 0 <= 31) { + $125 = ($119 + 1) | 0 + $126 = (31 - $119) | 0 + $130 = ($119 - 31) >> 31 + $sr_1_ph = $125 + $r_sroa_0_1_ph = + (($n_sroa_0_0_extract_trunc >>> ($125 >>> 0)) & + $130) | + ($n_sroa_1_4_extract_trunc << $126) + $r_sroa_1_1_ph = + ($n_sroa_1_4_extract_trunc >>> ($125 >>> 0)) & $130 + $q_sroa_0_1_ph = 0 + $q_sroa_1_1_ph = $n_sroa_0_0_extract_trunc << $126 + break + } + if (($rem | 0) == 0) { + $_0$1 = 0 + $_0$0 = 0 + return ((tempRet0 = $_0$1), $_0$0) | 0 + } + HEAP32[$rem >> 2] = 0 | ($a$0 & -1) + HEAP32[($rem + 4) >> 2] = + $n_sroa_1_4_extract_shift$0 | ($a$1 & 0) + $_0$1 = 0 + $_0$0 = 0 + return ((tempRet0 = $_0$1), $_0$0) | 0 + } + $66 = ($d_sroa_0_0_extract_trunc - 1) | 0 + if ((($66 & $d_sroa_0_0_extract_trunc) | 0) != 0) { + $86 = + ((Math_clz32($d_sroa_0_0_extract_trunc | 0) | 0) + 33) | + 0 + $88 = + ($86 - + (Math_clz32($n_sroa_1_4_extract_trunc | 0) | 0)) | + 0 + $89 = (64 - $88) | 0 + $91 = (32 - $88) | 0 + $92 = $91 >> 31 + $95 = ($88 - 32) | 0 + $105 = $95 >> 31 + $sr_1_ph = $88 + $r_sroa_0_1_ph = + ((($91 - 1) >> 31) & + ($n_sroa_1_4_extract_trunc >>> ($95 >>> 0))) | + ((($n_sroa_1_4_extract_trunc << $91) | + ($n_sroa_0_0_extract_trunc >>> ($88 >>> 0))) & + $105) + $r_sroa_1_1_ph = + $105 & ($n_sroa_1_4_extract_trunc >>> ($88 >>> 0)) + $q_sroa_0_1_ph = ($n_sroa_0_0_extract_trunc << $89) & $92 + $q_sroa_1_1_ph = + ((($n_sroa_1_4_extract_trunc << $89) | + ($n_sroa_0_0_extract_trunc >>> ($95 >>> 0))) & + $92) | + (($n_sroa_0_0_extract_trunc << $91) & + (($88 - 33) >> 31)) + break + } + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = $66 & $n_sroa_0_0_extract_trunc + HEAP32[($rem + 4) >> 2] = 0 + } + if (($d_sroa_0_0_extract_trunc | 0) == 1) { + $_0$1 = $n_sroa_1_4_extract_shift$0 | ($a$1 & 0) + $_0$0 = 0 | ($a$0 & -1) + return ((tempRet0 = $_0$1), $_0$0) | 0 + } else { + $78 = _llvm_cttz_i32($d_sroa_0_0_extract_trunc | 0) | 0 + $_0$1 = 0 | ($n_sroa_1_4_extract_trunc >>> ($78 >>> 0)) + $_0$0 = + ($n_sroa_1_4_extract_trunc << (32 - $78)) | + ($n_sroa_0_0_extract_trunc >>> ($78 >>> 0)) | + 0 + return ((tempRet0 = $_0$1), $_0$0) | 0 + } + } + } while (0) + if (($sr_1_ph | 0) == 0) { + $q_sroa_1_1_lcssa = $q_sroa_1_1_ph + $q_sroa_0_1_lcssa = $q_sroa_0_1_ph + $r_sroa_1_1_lcssa = $r_sroa_1_1_ph + $r_sroa_0_1_lcssa = $r_sroa_0_1_ph + $carry_0_lcssa$1 = 0 + $carry_0_lcssa$0 = 0 + } else { + $d_sroa_0_0_insert_insert99$0 = 0 | ($b$0 & -1) + $d_sroa_0_0_insert_insert99$1 = + $d_sroa_1_4_extract_shift$0 | ($b$1 & 0) + $137$0 = + _i64Add( + $d_sroa_0_0_insert_insert99$0 | 0, + $d_sroa_0_0_insert_insert99$1 | 0, + -1, + -1 + ) | 0 + $137$1 = tempRet0 + $q_sroa_1_1198 = $q_sroa_1_1_ph + $q_sroa_0_1199 = $q_sroa_0_1_ph + $r_sroa_1_1200 = $r_sroa_1_1_ph + $r_sroa_0_1201 = $r_sroa_0_1_ph + $sr_1202 = $sr_1_ph + $carry_0203 = 0 + while (1) { + $147 = ($q_sroa_0_1199 >>> 31) | ($q_sroa_1_1198 << 1) + $149 = $carry_0203 | ($q_sroa_0_1199 << 1) + $r_sroa_0_0_insert_insert42$0 = + 0 | (($r_sroa_0_1201 << 1) | ($q_sroa_1_1198 >>> 31)) + $r_sroa_0_0_insert_insert42$1 = + ($r_sroa_0_1201 >>> 31) | ($r_sroa_1_1200 << 1) | 0 + _i64Subtract( + $137$0, + $137$1, + $r_sroa_0_0_insert_insert42$0, + $r_sroa_0_0_insert_insert42$1 + ) | 0 + $150$1 = tempRet0 + $151$0 = ($150$1 >> 31) | ((($150$1 | 0) < 0 ? -1 : 0) << 1) + $152 = $151$0 & 1 + $154$0 = + _i64Subtract( + $r_sroa_0_0_insert_insert42$0, + $r_sroa_0_0_insert_insert42$1, + $151$0 & $d_sroa_0_0_insert_insert99$0, + (((($150$1 | 0) < 0 ? -1 : 0) >> 31) | + ((($150$1 | 0) < 0 ? -1 : 0) << 1)) & + $d_sroa_0_0_insert_insert99$1 + ) | 0 + $r_sroa_0_0_extract_trunc = $154$0 + $r_sroa_1_4_extract_trunc = tempRet0 + $155 = ($sr_1202 - 1) | 0 + if (($155 | 0) == 0) { + break + } else { + $q_sroa_1_1198 = $147 + $q_sroa_0_1199 = $149 + $r_sroa_1_1200 = $r_sroa_1_4_extract_trunc + $r_sroa_0_1201 = $r_sroa_0_0_extract_trunc + $sr_1202 = $155 + $carry_0203 = $152 + } + } + $q_sroa_1_1_lcssa = $147 + $q_sroa_0_1_lcssa = $149 + $r_sroa_1_1_lcssa = $r_sroa_1_4_extract_trunc + $r_sroa_0_1_lcssa = $r_sroa_0_0_extract_trunc + $carry_0_lcssa$1 = 0 + $carry_0_lcssa$0 = $152 + } + $q_sroa_0_0_insert_ext75$0 = $q_sroa_0_1_lcssa + $q_sroa_0_0_insert_ext75$1 = 0 + $q_sroa_0_0_insert_insert77$1 = + $q_sroa_1_1_lcssa | $q_sroa_0_0_insert_ext75$1 + if (($rem | 0) != 0) { + HEAP32[$rem >> 2] = 0 | $r_sroa_0_1_lcssa + HEAP32[($rem + 4) >> 2] = $r_sroa_1_1_lcssa | 0 + } + $_0$1 = + ((0 | $q_sroa_0_0_insert_ext75$0) >>> 31) | + ($q_sroa_0_0_insert_insert77$1 << 1) | + ((($q_sroa_0_0_insert_ext75$1 << 1) | + ($q_sroa_0_0_insert_ext75$0 >>> 31)) & + 0) | + $carry_0_lcssa$1 + $_0$0 = + ((($q_sroa_0_0_insert_ext75$0 << 1) | (0 >>> 31)) & -2) | + $carry_0_lcssa$0 + return ((tempRet0 = $_0$1), $_0$0) | 0 + } + // ======================================================================= + + function dynCall_ii(index, a1) { + index = index | 0 + a1 = a1 | 0 + return FUNCTION_TABLE_ii[index & 1](a1 | 0) | 0 + } + + function dynCall_iiii(index, a1, a2, a3) { + index = index | 0 + a1 = a1 | 0 + a2 = a2 | 0 + a3 = a3 | 0 + return ( + FUNCTION_TABLE_iiii[index & 3](a1 | 0, a2 | 0, a3 | 0) | 0 + ) + } + + function dynCall_vi(index, a1) { + index = index | 0 + a1 = a1 | 0 + FUNCTION_TABLE_vi[index & 1](a1 | 0) + } + + function b0(p0) { + p0 = p0 | 0 + abort(0) + return 0 + } + function b1(p0, p1, p2) { + p0 = p0 | 0 + p1 = p1 | 0 + p2 = p2 | 0 + abort(1) + return 0 + } + function b2(p0) { + p0 = p0 | 0 + abort(2) + } + + // EMSCRIPTEN_END_FUNCS + var FUNCTION_TABLE_ii = [b0, ___stdio_close] + var FUNCTION_TABLE_iiii = [ + b1, + ___stdout_write, + ___stdio_seek, + ___stdio_write + ] + var FUNCTION_TABLE_vi = [b2, _cleanup526] + + return { + _sign: _sign, + _i64Subtract: _i64Subtract, + _verify: _verify, + _fflush: _fflush, + _i64Add: _i64Add, + _bitshift64Ashr: _bitshift64Ashr, + _memset: _memset, + _malloc: _malloc, + _free: _free, + _memcpy: _memcpy, + _bitshift64Lshr: _bitshift64Lshr, + _create_keypair: _create_keypair, + ___errno_location: ___errno_location, + _bitshift64Shl: _bitshift64Shl, + runPostSets: runPostSets, + stackAlloc: stackAlloc, + stackSave: stackSave, + stackRestore: stackRestore, + establishStackSpace: establishStackSpace, + setThrew: setThrew, + setTempRet0: setTempRet0, + getTempRet0: getTempRet0, + dynCall_ii: dynCall_ii, + dynCall_iiii: dynCall_iiii, + dynCall_vi: dynCall_vi + } + })( + // EMSCRIPTEN_END_ASM + Module.asmGlobalArg, + Module.asmLibraryArg, + buffer + ) + var _create_keypair = (Module["_create_keypair"] = + asm["_create_keypair"]) + var _sign = (Module["_sign"] = asm["_sign"]) + var _i64Subtract = (Module["_i64Subtract"] = asm["_i64Subtract"]) + var _verify = (Module["_verify"] = asm["_verify"]) + var _fflush = (Module["_fflush"] = asm["_fflush"]) + var runPostSets = (Module["runPostSets"] = asm["runPostSets"]) + var _i64Add = (Module["_i64Add"] = asm["_i64Add"]) + var _bitshift64Ashr = (Module["_bitshift64Ashr"] = + asm["_bitshift64Ashr"]) + var _memset = (Module["_memset"] = asm["_memset"]) + var _malloc = (Module["_malloc"] = asm["_malloc"]) + var _memcpy = (Module["_memcpy"] = asm["_memcpy"]) + var _bitshift64Lshr = (Module["_bitshift64Lshr"] = + asm["_bitshift64Lshr"]) + var _free = (Module["_free"] = asm["_free"]) + var ___errno_location = (Module["___errno_location"] = + asm["___errno_location"]) + var _bitshift64Shl = (Module["_bitshift64Shl"] = + asm["_bitshift64Shl"]) + var dynCall_ii = (Module["dynCall_ii"] = asm["dynCall_ii"]) + var dynCall_iiii = (Module["dynCall_iiii"] = asm["dynCall_iiii"]) + var dynCall_vi = (Module["dynCall_vi"] = asm["dynCall_vi"]) + Runtime.stackAlloc = asm["stackAlloc"] + Runtime.stackSave = asm["stackSave"] + Runtime.stackRestore = asm["stackRestore"] + Runtime.establishStackSpace = asm["establishStackSpace"] + + Runtime.setTempRet0 = asm["setTempRet0"] + Runtime.getTempRet0 = asm["getTempRet0"] + + // === Auto-generated postamble setup entry stuff === + + function ExitStatus(status) { + this.name = "ExitStatus" + this.message = "Program terminated with exit(" + status + ")" + this.status = status + } + ExitStatus.prototype = new Error() + ExitStatus.prototype.constructor = ExitStatus + + var initialStackTop + var preloadStartTime = null + var calledMain = false + + dependenciesFulfilled = function runCaller() { + // If run has never been called, and we should call run (INVOKE_RUN is true, and Module.noInitialRun is not false) + if (!Module["calledRun"]) run() + if (!Module["calledRun"]) dependenciesFulfilled = runCaller // try this again later, after new deps are fulfilled + } + + Module["callMain"] = Module.callMain = function callMain(args) { + assert( + runDependencies == 0, + "cannot call main when async dependencies remain! (listen on __ATMAIN__)" + ) + assert( + __ATPRERUN__.length == 0, + "cannot call main when preRun functions remain to be called" + ) + + args = args || [] + + ensureInitRuntime() + + var argc = args.length + 1 + function pad() { + for (var i = 0; i < 4 - 1; i++) { + argv.push(0) + } + } + var argv = [ + allocate( + intArrayFromString(Module["thisProgram"]), + "i8", + ALLOC_NORMAL + ) + ] + pad() + for (var i = 0; i < argc - 1; i = i + 1) { + argv.push( + allocate(intArrayFromString(args[i]), "i8", ALLOC_NORMAL) + ) + pad() + } + argv.push(0) + argv = allocate(argv, "i32", ALLOC_NORMAL) + + try { + var ret = Module["_main"](argc, argv, 0) + + // if we're not running an evented main loop, it's time to exit + exit(ret, /* implicit = */ true) + } catch (e) { + if (e instanceof ExitStatus) { + // exit() throws this once it's done to make sure execution + // has been stopped completely + return + } else if (e == "SimulateInfiniteLoop") { + // running an evented main loop, don't immediately exit + Module["noExitRuntime"] = true + return + } else { + if (e && typeof e === "object" && e.stack) + Module.printErr("exception thrown: " + [e, e.stack]) + throw e + } + } finally { + calledMain = true + } + } + + function run(args) { + args = args || Module["arguments"] + + if (preloadStartTime === null) preloadStartTime = Date.now() + + if (runDependencies > 0) { + return + } + + preRun() + + if (runDependencies > 0) return // a preRun added a dependency, run will be called later + if (Module["calledRun"]) return // run may have just been called through dependencies being fulfilled just in this very frame + + function doRun() { + if (Module["calledRun"]) return // run may have just been called while the async setStatus time below was happening + Module["calledRun"] = true + + if (ABORT) return + + ensureInitRuntime() + + preMain() + + if (Module["onRuntimeInitialized"]) + Module["onRuntimeInitialized"]() + + if (Module["_main"] && shouldRunNow) Module["callMain"](args) + + postRun() + } + + if (Module["setStatus"]) { + Module["setStatus"]("Running...") + setTimeout(function() { + setTimeout(function() { + Module["setStatus"]("") + }, 1) + doRun() + }, 1) + } else { + doRun() + } + } + Module["run"] = Module.run = run + + function exit(status, implicit) { + if (implicit && Module["noExitRuntime"]) { + return + } + + if (Module["noExitRuntime"]) { + } else { + ABORT = true + EXITSTATUS = status + STACKTOP = initialStackTop + + exitRuntime() + + if (Module["onExit"]) Module["onExit"](status) + } + + if (ENVIRONMENT_IS_NODE) { + // Work around a node.js bug where stdout buffer is not flushed at process exit: + // Instead of process.exit() directly, wait for stdout flush event. + // See https://github.com/joyent/node/issues/1669 and https://github.com/kripken/emscripten/issues/2582 + // Workaround is based on https://github.com/RReverser/acorn/commit/50ab143cecc9ed71a2d66f78b4aec3bb2e9844f6 + process["stdout"]["once"]("drain", function() { + process["exit"](status) + }) + console.log(" ") // Make sure to print something to force the drain event to occur, in case the stdout buffer was empty. + // Work around another node bug where sometimes 'drain' is never fired - make another effort + // to emit the exit status, after a significant delay (if node hasn't fired drain by then, give up) + setTimeout(function() { + process["exit"](status) + }, 500) + } else if (ENVIRONMENT_IS_SHELL && typeof quit === "function") { + quit(status) + } + // if we reach here, we must throw an exception to halt the current execution + throw new ExitStatus(status) + } + Module["exit"] = Module.exit = exit + + var abortDecorators = [] + + function abort(what) { + if (what !== undefined) { + Module.print(what) + Module.printErr(what) + what = JSON.stringify(what) + } else { + what = "" + } + + ABORT = true + EXITSTATUS = 1 + + var extra = + "\nIf this abort() is unexpected, build with -s ASSERTIONS=1 which can give more information." + + var output = "abort(" + what + ") at " + stackTrace() + extra + if (abortDecorators) { + abortDecorators.forEach(function(decorator) { + output = decorator(output, what) + }) + } + throw output + } + Module["abort"] = Module.abort = abort + + // {{PRE_RUN_ADDITIONS}} + + if (Module["preInit"]) { + if (typeof Module["preInit"] == "function") + Module["preInit"] = [Module["preInit"]] + while (Module["preInit"].length > 0) { + Module["preInit"].pop()() + } + } + + // shouldRunNow refers to calling main(), not run(). + var shouldRunNow = true + if (Module["noInitialRun"]) { + shouldRunNow = false + } + + run() + + // {{POST_RUN_ADDITIONS}} + + // {{MODULE_ADDITIONS}} + + if (typeof module !== "undefined") { + module["exports"] = Module + } + }.call( + this, + require("_process"), + require("buffer").Buffer, + "/node_modules/supercop.js" + )) + }, + { _process: 120, buffer: 48, crypto: 56, fs: 1, path: 113 } + ], + 218: [ + function(require, module, exports) { + module.exports = require("./lib/lightNode.js") + module.exports.LightNode = require("./lib/lightNode.js") + module.exports.RpcClient = require("./lib/rpc.js") + module.exports.RpcClient.METHODS = require("./lib/methods.js") + Object.assign(module.exports, require("./lib/verify.js")) + }, + { + "./lib/lightNode.js": 221, + "./lib/methods.js": 222, + "./lib/rpc.js": 224, + "./lib/verify.js": 227 + } + ], + 219: [ + function(require, module, exports) { + "use strict" + + function safeParseInt(nStr) { + var n = parseInt(nStr) + if (!Number.isInteger(n)) { + throw Error( + "Value " + JSON.stringify(nStr) + " is not an integer" + ) + } + if (Math.abs(n) >= Number.MAX_SAFE_INTEGER) { + throw Error("Absolute value must be < 2^53") + } + if (String(n) !== String(nStr)) { + throw Error( + "Value " + + JSON.stringify(nStr) + + " is not a canonical integer string representation" + ) + } + return n + } + + module.exports = { safeParseInt: safeParseInt } + }, + {} + ], + 220: [ + function(require, module, exports) { + ;(function(Buffer) { + "use strict" + + var _slicedToArray = (function() { + function sliceIterator(arr, i) { + var _arr = [] + var _n = true + var _d = false + var _e = undefined + try { + for ( + var _i = arr[Symbol.iterator](), _s; + !(_n = (_s = _i.next()).done); + _n = true + ) { + _arr.push(_s.value) + if (i && _arr.length === i) break + } + } catch (err) { + _d = true + _e = err + } finally { + try { + if (!_n && _i["return"]) _i["return"]() + } finally { + if (_d) throw _e + } + } + return _arr + } + return function(arr, i) { + if (Array.isArray(arr)) { + return arr + } else if (Symbol.iterator in Object(arr)) { + return sliceIterator(arr, i) + } else { + throw new TypeError( + "Invalid attempt to destructure non-iterable instance" + ) + } + } + })() + + var createHash = require("create-hash") + + var _require = require("./types.js"), + VarInt = _require.VarInt, + VarString = _require.VarString, + VarBuffer = _require.VarBuffer, + VarHexBuffer = _require.VarHexBuffer, + Time = _require.Time, + BlockID = _require.BlockID, + TreeHashInput = _require.TreeHashInput, + ValidatorHashInput = _require.ValidatorHashInput + + var sha256 = hashFunc("sha256") + var tmhash = function tmhash() { + return sha256.apply(undefined, arguments).slice(0, 20) + } + + var blockHashFields = [ + ["ChainID", "chain_id", VarString], + ["Height", "height", VarInt], + ["Time", "time", Time], + ["NumTxs", "num_txs", VarInt], + ["TotalTxs", "total_txs", VarInt], + ["LastBlockID", "last_block_id", BlockID], + ["LastCommit", "last_commit_hash", VarHexBuffer], + ["Data", "data_hash", VarHexBuffer], + ["Validators", "validators_hash", VarHexBuffer], + ["NextValidators", "next_validators_hash", VarHexBuffer], + ["App", "app_hash", VarHexBuffer], + ["Consensus", "consensus_hash", VarHexBuffer], + ["Results", "last_results_hash", VarHexBuffer], + ["Evidence", "evidence_hash", VarHexBuffer], + ["Proposer", "proposer_address", VarHexBuffer] + ] + + // sort fields by hash of name + blockHashFields.sort(function(_ref, _ref2) { + var _ref4 = _slicedToArray(_ref, 1), + keyA = _ref4[0] + + var _ref3 = _slicedToArray(_ref2, 1), + keyB = _ref3[0] + + var bufA = Buffer.from(keyA) + var bufB = Buffer.from(keyB) + return bufA.compare(bufB) + }) + + function getBlockHash(header) { + var hashes = blockHashFields.map(function(_ref5) { + var _ref6 = _slicedToArray(_ref5, 3), + key = _ref6[0], + jsonKey = _ref6[1], + type = _ref6[2] + + return kvHash(type, header[jsonKey], key) + }) + return treeHash(hashes) + .toString("hex") + .toUpperCase() + } + + function getValidatorSetHash(validators) { + var hashes = validators.map(getValidatorHash) + return treeHash(hashes) + .toString("hex") + .toUpperCase() + } + + function getValidatorHash(validator) { + var bytes = ValidatorHashInput.encode(validator) + return tmhash(bytes) + } + + function kvHash(type, value, key) { + var encodedValue = "" + if (value || typeof value === "number") { + encodedValue = type.encode(value) + + // some types have an "empty" value, + // if we got that then use an empty buffer instead + if (type.empty != null && encodedValue === type.empty) { + encodedValue = Buffer.alloc(0) + } + } + var valueHash = tmhash(encodedValue) + return tmhash(VarString.encode(key), VarBuffer.encode(valueHash)) + } + + function treeHash(hashes) { + if (hashes.length === 1) { + return hashes[0] + } + var midpoint = Math.ceil(hashes.length / 2) + var left = treeHash(hashes.slice(0, midpoint)) + var right = treeHash(hashes.slice(midpoint)) + var hashInput = TreeHashInput.encode({ left: left, right: right }) + return tmhash(hashInput) + } + + function hashFunc(algorithm) { + return function() { + var hash = createHash(algorithm) + + for ( + var _len = arguments.length, chunks = Array(_len), _key = 0; + _key < _len; + _key++ + ) { + chunks[_key] = arguments[_key] + } + + var _iteratorNormalCompletion = true + var _didIteratorError = false + var _iteratorError = undefined + + try { + for ( + var _iterator = chunks[Symbol.iterator](), _step; + !(_iteratorNormalCompletion = (_step = _iterator.next()) + .done); + _iteratorNormalCompletion = true + ) { + var data = _step.value + hash.update(data) + } + } catch (err) { + _didIteratorError = true + _iteratorError = err + } finally { + try { + if (!_iteratorNormalCompletion && _iterator.return) { + _iterator.return() + } + } finally { + if (_didIteratorError) { + throw _iteratorError + } + } + } + + return hash.digest() + } + } + + module.exports = { + getBlockHash: getBlockHash, + getValidatorHash: getValidatorHash, + getValidatorSetHash: getValidatorSetHash, + sha256: sha256, + tmhash: tmhash + } + }.call(this, require("buffer").Buffer)) + }, + { "./types.js": 225, buffer: 48, "create-hash": 169 } + ], + 221: [ + function(require, module, exports) { + "use strict" + + var _createClass = (function() { + function defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i] + descriptor.enumerable = descriptor.enumerable || false + descriptor.configurable = true + if ("value" in descriptor) descriptor.writable = true + Object.defineProperty(target, descriptor.key, descriptor) + } + } + return function(Constructor, protoProps, staticProps) { + if (protoProps) + defineProperties(Constructor.prototype, protoProps) + if (staticProps) defineProperties(Constructor, staticProps) + return Constructor + } + })() + + function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function") + } + } + + function _possibleConstructorReturn(self, call) { + if (!self) { + throw new ReferenceError( + "this hasn't been initialised - super() hasn't been called" + ) + } + return call && + (typeof call === "object" || typeof call === "function") + ? call + : self + } + + function _inherits(subClass, superClass) { + if (typeof superClass !== "function" && superClass !== null) { + throw new TypeError( + "Super expression must either be null or a function, not " + + typeof superClass + ) + } + subClass.prototype = Object.create( + superClass && superClass.prototype, + { + constructor: { + value: subClass, + enumerable: false, + writable: true, + configurable: true + } + } + ) + if (superClass) + Object.setPrototypeOf + ? Object.setPrototypeOf(subClass, superClass) + : (subClass.__proto__ = superClass) + } + + var old = require("old") + var EventEmitter = require("events") + var RpcClient = require("./rpc.js") + + var _require = require("./verify.js"), + verifyCommit = _require.verifyCommit, + verifyCommitSigs = _require.verifyCommitSigs, + verifyValidatorSet = _require.verifyValidatorSet, + verify = _require.verify + + var _require2 = require("./common.js"), + safeParseInt = _require2.safeParseInt + + var HOUR = 60 * 60 * 1000 + var FOUR_HOURS = 4 * HOUR + var THIRTY_DAYS = 30 * 24 * HOUR + + // TODO: support multiple peers + // (multiple connections to listen for headers, + // get current height from multiple peers before syncing, + // randomly select peer when requesting data, + // broadcast txs to many peers) + + // TODO: on error, disconnect from peer and try again + + // TODO: use time heuristic to ensure nodes can't DoS by + // sending fake high heights. + // (applies to getting height when getting status in `sync()`, + // and when receiving a block in `update()`) + + // talks to nodes via RPC and does light-client verification + // of block headers. + + var LightNode = (function(_EventEmitter) { + _inherits(LightNode, _EventEmitter) + + function LightNode(peer, state) { + var opts = + arguments.length > 2 && arguments[2] !== undefined + ? arguments[2] + : {} + + _classCallCheck(this, LightNode) + + var _this = _possibleConstructorReturn( + this, + (LightNode.__proto__ || Object.getPrototypeOf(LightNode)).call( + this + ) + ) + + _this.maxAge = opts.maxAge || THIRTY_DAYS + + if (state.header.height == null) { + throw Error("Expected state header to have a height") + } + state.header.height = safeParseInt(state.header.height) + + // we should be able to trust this state since it was either + // hardcoded into the client, or previously verified/stored, + // but it doesn't hurt to do a sanity check. not required + // for first block, since we might be deriving it from genesis + if (state.header.height > 1 || state.commit != null) { + verifyValidatorSet( + state.validators, + state.header.validators_hash + ) + verifyCommit(state.header, state.commit, state.validators) + } + + _this._state = state + + _this.rpc = RpcClient(peer) + // TODO: ensure we're using websocket + _this.emitError = _this.emitError.bind(_this) + _this.rpc.on("error", _this.emitError) + + _this + .handleError(_this.initialSync)() + .then(function() { + return _this.emit("synced") + }) + return _this + } + + _createClass(LightNode, [ + { + key: "handleError", + value: function handleError(func) { + var _this2 = this + + return function() { + for ( + var _len = arguments.length, args = Array(_len), _key = 0; + _key < _len; + _key++ + ) { + args[_key] = arguments[_key] + } + + return func.call + .apply(func, [_this2].concat(args)) + .catch(function(err) { + return _this2.emitError(err) + }) + } + } + }, + { + key: "emitError", + value: function emitError(err) { + this.rpc.close() + this.emit("error", err) + } + }, + { + key: "state", + value: function state() { + // TODO: deep clone + return Object.assign({}, this._state) + } + }, + { + key: "height", + value: function height() { + return this._state.header.height + } + + // sync from current state to latest block + }, + { + key: "initialSync", + value: async function initialSync() { + // TODO: use time heuristic (see comment at top of file) + // TODO: get tip height from multiple peers and make sure + // they give us similar results + var status = await this.rpc.status() + var tip = safeParseInt(status.sync_info.latest_block_height) + if (tip > this.height()) { + await this.syncTo(tip) + } + this.handleError(this.subscribe)() + } + + // binary search to find furthest block from our current state, + // which is signed by 2/3+ voting power of our current validator set + }, + { + key: "syncTo", + value: async function syncTo(nextHeight) { + var targetHeight = + arguments.length > 1 && arguments[1] !== undefined + ? arguments[1] + : nextHeight + + var _ref = await this.rpc.commit({ height: nextHeight }), + _ref$signed_header = _ref.signed_header, + header = _ref$signed_header.header, + commit = _ref$signed_header.commit + + header.height = safeParseInt(header.height) + + try { + // test if this commit is signed by 2/3+ of our old set + // (throws if not) + verifyCommitSigs(header, commit, this._state.validators) + + // verifiable, let's update + await this.update(header, commit) + + // reached target + if (nextHeight === targetHeight) return + + // continue syncing from this point + return this.syncTo(targetHeight) + } catch (err) { + // throw real errors + if (!err.insufficientVotingPower) { + throw err + } + + // insufficient verifiable voting power error, + // couldn't verify this header + + var height = this.height() + if (nextHeight === height + 1) { + // should not happen unless peer sends us fake transition + throw Error("Could not verify transition") + } + + // let's try going halfway back and see if we can verify + var midpoint = height + Math.ceil((nextHeight - height) / 2) + return this.syncTo(midpoint, targetHeight) + } + } + + // start verifying new blocks as they come in + }, + { + key: "subscribe", + value: async function subscribe() { + var _this3 = this + + var query = "tm.event = 'NewBlockHeader'" + var syncing = false + var targetHeight = this.height() + await this.rpc.subscribe( + { query: query }, + this.handleError(async function(_ref2) { + var header = _ref2.header + + header.height = safeParseInt(header.height) + targetHeight = header.height + + // don't start another sync loop if we are in the middle of syncing + if (syncing) return + syncing = true + + // sync one block at a time to target + while (_this3.height() < targetHeight) { + await _this3.syncTo(_this3.height() + 1) + } + + // unlock + syncing = false + }) + ) + } + }, + { + key: "update", + value: async function update(header, commit) { + header.height = safeParseInt(header.height) + var height = header.height + + // make sure we aren't syncing from longer than than the unbonding period + + var prevTime = new Date(this._state.header.time).getTime() + if (Date.now() - prevTime > this.maxAge) { + throw Error("Our state is too old, cannot update safely") + } + + // make sure new commit isn't too far in the future + var nextTime = new Date(header.time).getTime() + if (nextTime - Date.now() > FOUR_HOURS) { + throw Error("Header time is too far in the future") + } + + if (commit == null) { + var res = await this.rpc.commit({ height: height }) + commit = res.signed_header.commit + commit.header.height = safeParseInt(commit.header.height) + } + + var validators = this._state.validators + + var validatorSetChanged = + header.validators_hash !== + this._state.header.validators_hash + if (validatorSetChanged) { + var _res = await this.rpc.validators({ height: height }) + validators = _res.validators + } + + var newState = { + header: header, + commit: commit, + validators: validators + } + verify(this._state, newState) + + this._state = newState + this.emit("update", header, commit, validators) + } + }, + { + key: "close", + value: function close() { + this.rpc.close() + } + } + ]) + + return LightNode + })(EventEmitter) + + module.exports = old(LightNode) + }, + { + "./common.js": 219, + "./rpc.js": 224, + "./verify.js": 227, + events: 83, + old: 186 + } + ], + 222: [ + function(require, module, exports) { + "use strict" + + module.exports = [ + "subscribe", + "unsubscribe", + "unsubscribe_all", + "status", + "net_info", + "dial_peers", + "dial_seeds", + "blockchain", + "genesis", + "health", + "block", + "block_results", + "blockchain", + "validators", + "consensus_state", + "dump_consensus_state", + "broadcast_tx_commit", + "broadcast_tx_sync", + "broadcast_tx_async", + "unconfirmed_txs", + "num_unconfirmed_txs", + "commit", + "tx", + "tx_search", + "abci_query", + "abci_info", + "unsafe_flush_mempool", + "unsafe_start_cpu_profiler", + "unsafe_stop_cpu_profiler", + "unsafe_write_heap_profile" + ] + }, + {} + ], + 223: [ + function(require, module, exports) { + ;(function(Buffer) { + "use strict" + + var _require = require("./hash.js"), + tmhash = _require.tmhash + + function getAddress(pubkey) { + var bytes = Buffer.from(pubkey.value, "base64") + return tmhash(bytes) + .toString("hex") + .toUpperCase() + } + + module.exports = { getAddress: getAddress } + }.call(this, require("buffer").Buffer)) + }, + { "./hash.js": 220, buffer: 48 } + ], + 224: [ + function(require, module, exports) { + ;(function(Buffer) { + "use strict" + + var _createClass = (function() { + function defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i] + descriptor.enumerable = descriptor.enumerable || false + descriptor.configurable = true + if ("value" in descriptor) descriptor.writable = true + Object.defineProperty(target, descriptor.key, descriptor) + } + } + return function(Constructor, protoProps, staticProps) { + if (protoProps) + defineProperties(Constructor.prototype, protoProps) + if (staticProps) defineProperties(Constructor, staticProps) + return Constructor + } + })() + + function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function") + } + } + + function _possibleConstructorReturn(self, call) { + if (!self) { + throw new ReferenceError( + "this hasn't been initialised - super() hasn't been called" + ) + } + return call && + (typeof call === "object" || typeof call === "function") + ? call + : self + } + + function _inherits(subClass, superClass) { + if (typeof superClass !== "function" && superClass !== null) { + throw new TypeError( + "Super expression must either be null or a function, not " + + typeof superClass + ) + } + subClass.prototype = Object.create( + superClass && superClass.prototype, + { + constructor: { + value: subClass, + enumerable: false, + writable: true, + configurable: true + } + } + ) + if (superClass) + Object.setPrototypeOf + ? Object.setPrototypeOf(subClass, superClass) + : (subClass.__proto__ = superClass) + } + + var EventEmitter = require("events") + var axios = require("axios") + var url = require("url") + var old = require("old") + var camel = require("camelcase") + var websocket = require("websocket-stream") + var ndjson = require("ndjson") + var pumpify = require("pumpify").obj + var debug = require("debug")("tendermint:rpc") + var tendermintMethods = require("./methods.js") + + function convertHttpArgs(args) { + args = args || {} + for (var k in args) { + var v = args[k] + if (typeof v === "number") { + args[k] = '"' + v + '"' + } + } + return args + } + + function convertWsArgs(args) { + args = args || {} + for (var k in args) { + var v = args[k] + if (typeof v === "number") { + args[k] = String(v) + } else if (Buffer.isBuffer(v)) { + args[k] = "0x" + v.toString("hex") + } else if (v instanceof Uint8Array) { + args[k] = "0x" + Buffer.from(v).toString("hex") + } + } + return args + } + + var wsProtocols = ["ws:", "wss:"] + var httpProtocols = ["http:", "https:"] + var allProtocols = wsProtocols.concat(httpProtocols) + + var Client = (function(_EventEmitter) { + _inherits(Client, _EventEmitter) + + function Client() { + var uriString = + arguments.length > 0 && arguments[0] !== undefined + ? arguments[0] + : "localhost:26657" + + _classCallCheck(this, Client) + + // parse full-node URI + var _this = _possibleConstructorReturn( + this, + (Client.__proto__ || Object.getPrototypeOf(Client)).call(this) + ) + + var _url$parse = url.parse(uriString), + protocol = _url$parse.protocol, + hostname = _url$parse.hostname, + port = _url$parse.port + + // default to http + + if (!allProtocols.includes(protocol)) { + var uri = url.parse("http://" + uriString) + protocol = uri.protocol + hostname = uri.hostname + port = uri.port + } + + // default port + if (!port) { + port = 26657 + } + + if (wsProtocols.includes(protocol)) { + _this.websocket = true + _this.uri = + protocol + "//" + hostname + ":" + port + "/websocket" + _this.call = _this.callWs + _this.connectWs() + } else if (httpProtocols.includes(protocol)) { + _this.uri = protocol + "//" + hostname + ":" + port + "/" + _this.call = _this.callHttp + } + return _this + } + + _createClass(Client, [ + { + key: "connectWs", + value: function connectWs() { + var _this2 = this + + this.ws = pumpify(ndjson.stringify(), websocket(this.uri)) + this.ws.on("error", function(err) { + return _this2.emit("error", err) + }) + this.ws.on("close", function() { + if (_this2.closed) return + _this2.emit("error", Error("websocket disconnected")) + }) + this.ws.on("data", function(data) { + data = JSON.parse(data) + if (!data.id) return + _this2.emit(data.id, data.error, data.result) + }) + } + }, + { + key: "callHttp", + value: function callHttp(method, args) { + return axios({ + url: this.uri + method, + params: convertHttpArgs(args) + }).then( + function(_ref) { + var data = _ref.data + + if (data.error) { + var err = Error(data.error.message) + Object.assign(err, data.error) + throw err + } + return data.result + }, + function(err) { + throw Error(err) + } + ) + } + }, + { + key: "callWs", + value: function callWs(method, args, listener) { + var _this3 = this + + var self = this + return new Promise(function(resolve, reject) { + var id = Math.random().toString(36) + var params = convertWsArgs(args) + + if (method === "subscribe") { + if (typeof listener !== "function") { + throw Error("Must provide listener function") + } + + // events get passed to listener + _this3.on(id + "#event", function(err, res) { + if (err) return self.emit("error", err) + listener(res.data.value) + }) + + // promise resolves on successful subscription or error + _this3.on(id, function(err) { + if (err) return reject(err) + resolve() + }) + } else { + // response goes to promise + _this3.once(id, function(err, res) { + if (err) return reject(err) + resolve(res) + }) + } + + _this3.ws.write({ + jsonrpc: "2.0", + id: id, + method: method, + params: params + }) + }) + } + }, + { + key: "close", + value: function close() { + this.closed = true + if (!this.ws) return + this.ws.destroy() + } + } + ]) + + return Client + })(EventEmitter) + + // add methods to Client class based on methods defined in './methods.js' + + var _iteratorNormalCompletion = true + var _didIteratorError = false + var _iteratorError = undefined + + try { + var _loop = function _loop() { + var name = _step.value + + Client.prototype[camel(name)] = function(args, listener) { + if (args) { + debug(">>", name, args) + } else { + debug(">>", name) + } + return this.call(name, args, listener).then(function(res) { + debug("<<", name, res) + return res + }) + } + } + + for ( + var _iterator = tendermintMethods[Symbol.iterator](), _step; + !(_iteratorNormalCompletion = (_step = _iterator.next()).done); + _iteratorNormalCompletion = true + ) { + _loop() + } + } catch (err) { + _didIteratorError = true + _iteratorError = err + } finally { + try { + if (!_iteratorNormalCompletion && _iterator.return) { + _iterator.return() + } + } finally { + if (_didIteratorError) { + throw _iteratorError + } + } + } + + module.exports = old(Client) + }.call(this, require("buffer").Buffer)) + }, + { + "./methods.js": 222, + axios: 228, + buffer: 48, + camelcase: 166, + debug: 253, + events: 83, + ndjson: 184, + old: 186, + pumpify: 191, + url: 160, + "websocket-stream": 271 + } + ], + 225: [ + function(require, module, exports) { + ;(function(Buffer) { + "use strict" + + var struct = require("varstruct") + var Int64LE = struct.Int64LE + + var _require = require("./varint.js"), + VarInt = _require.VarInt, + UVarInt = _require.UVarInt + + var VarString = struct.VarString(UVarInt) + var VarBuffer = struct.VarBuffer(UVarInt) + + var VarHexBuffer = { + decode: function decode() { + throw Error("Decode not implemented") + }, + encode: function encode(value, buffer, offset) { + value = Buffer.from(value, "hex") + var bytes = VarBuffer.encode(value, buffer, offset) + VarHexBuffer.encode.bytes = VarBuffer.encode.bytes + return bytes + }, + encodingLength: function encodingLength(value) { + var length = value.length / 2 + return length + UVarInt.encodingLength(length) + } + } + + var Time = { + encode: function encode(value) { + if (value[value.length - 1] !== "Z") { + throw Error("Timestamp must be UTC timezone") + } + + var millis = new Date(value).getTime() + var seconds = Math.floor(millis / 1000) + + // ghetto, we're pulling the nanoseconds from the string + var withoutZone = value.slice(0, -1) + var nanosStr = withoutZone.split(".")[1] || "" + var nanos = Number(nanosStr.padEnd(9, "0")) + + var buffer = Buffer.alloc(14) + + buffer[0] = (1 << 3) | 1 // field 1, typ3 1 + buffer.writeUInt32LE(seconds, 1) + + buffer[9] = (2 << 3) | 5 // field 2, typ3 5 + buffer.writeUInt32LE(nanos, 10) + + return buffer + } + } + + var BlockID = { + empty: Buffer.from("1200", "hex"), + encode: function encode(value) { + // empty block id + if (!value.hash) { + return BlockID.empty + } + + var buffer = Buffer.alloc(48) + + // TODO: actually do amino encoding stuff + + // hash field + buffer[0] = 0x0a + buffer[1] = 0x14 // length of hash (20) + Buffer.from(value.hash, "hex").copy(buffer, 2) + + // block parts + buffer[22] = 0x12 + buffer[23] = 0x18 + buffer[24] = 0x08 + buffer[25] = 0x02 + buffer[26] = 0x12 + buffer[27] = 0x14 + Buffer.from(value.parts.hash, "hex").copy(buffer, 28) + + return buffer + } + } + + var TreeHashInput = struct([ + { name: "left", type: VarBuffer }, + { name: "right", type: VarBuffer } + ]) + + var pubkeyAminoPrefix = Buffer.from("1624DE6420", "hex") + var PubKey = { + decode: function decode(buffer) { + var start = + arguments.length > 1 && arguments[1] !== undefined + ? arguments[1] + : 0 + var end = + arguments.length > 2 && arguments[2] !== undefined + ? arguments[2] + : buffer.length + + throw Error("Decode not implemented") + }, + encode: function encode(pub, buffer) { + var offset = + arguments.length > 2 && arguments[2] !== undefined + ? arguments[2] + : 0 + + var length = PubKey.encodingLength(pub) + buffer = buffer || Buffer.alloc(length) + if (pub == null) { + buffer[offset] = 0 + } else { + pubkeyAminoPrefix.copy(buffer, offset) + Buffer.from(pub.value, "base64").copy( + buffer, + offset + pubkeyAminoPrefix.length + ) + } + PubKey.encode.bytes = length + return buffer + }, + encodingLength: function encodingLength(pub) { + if (pub == null) return 1 + return 37 + } + } + + var ValidatorHashInput = { + decode: function decode(buffer) { + var start = + arguments.length > 1 && arguments[1] !== undefined + ? arguments[1] + : 0 + var end = + arguments.length > 2 && arguments[2] !== undefined + ? arguments[2] + : buffer.length + + throw Error("Decode not implemented") + }, + encode: function encode(validator) { + var length = ValidatorHashInput.encodingLength(validator) + var buffer = Buffer.alloc(length) + + // address field + buffer[0] = 0x0a + buffer[1] = 0x14 + var address = Buffer.from(validator.address, "hex") + address.copy(buffer, 2) + + // pubkey field + buffer[22] = 0x12 + buffer[23] = 0x25 + PubKey.encode(validator.pub_key, buffer, 24) + + // voting power field + buffer[61] = 0x18 + VarInt.encode(validator.voting_power, buffer, 62) + + ValidatorHashInput.encode.bytes = length + return buffer + }, + encodingLength: function encodingLength(validator) { + return 62 + VarInt.encodingLength(validator.voting_power) + } + } + + module.exports = { + VarInt: VarInt, + UVarInt: UVarInt, + VarString: VarString, + VarBuffer: VarBuffer, + VarHexBuffer: VarHexBuffer, + Time: Time, + BlockID: BlockID, + TreeHashInput: TreeHashInput, + ValidatorHashInput: ValidatorHashInput, + PubKey: PubKey, + Int64LE: Int64LE + } + }.call(this, require("buffer").Buffer)) + }, + { "./varint.js": 226, buffer: 48, varstruct: 260 } + ], + 226: [ + function(require, module, exports) { + ;(function(Buffer) { + "use strict" + + var _require = require("./common.js"), + safeParseInt = _require.safeParseInt + + function VarInt(signed) { + function decode(buffer) { + var start = + arguments.length > 1 && arguments[1] !== undefined + ? arguments[1] + : 0 + var end = + arguments.length > 2 && arguments[2] !== undefined + ? arguments[2] + : buffer.length + + throw Error("not implemented") + } + + function encode(n) { + var buffer = + arguments.length > 1 && arguments[1] !== undefined + ? arguments[1] + : Buffer.alloc(encodingLength(n)) + var offset = + arguments.length > 2 && arguments[2] !== undefined + ? arguments[2] + : 0 + + n = safeParseInt(n) + + // amino signed varint is multiplied by 2 ¯\_(ツ)_/¯ + if (signed) n *= 2 + + var i = 0 + while (n >= 0x80) { + buffer[offset + i] = (n & 0xff) | 0x80 + n >>= 7 + i++ + } + buffer[offset + i] = n & 0xff + encode.bytes = i + 1 + return buffer + } + + function encodingLength(n) { + if (signed) n *= 2 + if (n < 0 || n > Number.MAX_SAFE_INTEGER) { + throw Error("varint value is out of bounds") + } + var bits = Math.log2(n + 1) + return Math.ceil(bits / 7) || 1 + } + + return { + encode: encode, + decode: decode, + encodingLength: encodingLength + } + } + + module.exports = VarInt(true) + module.exports.UVarInt = VarInt(false) + module.exports.VarInt = module.exports + }.call(this, require("buffer").Buffer)) + }, + { "./common.js": 219, buffer: 48 } + ], + 227: [ + function(require, module, exports) { + ;(function(Buffer) { + "use strict" + + var stringify = require("json-stable-stringify") + var ed25519 = require("supercop.js") + // TODO: try to load native ed25519 implementation, fall back to supercop.js + + var _require = require("./hash.js"), + getBlockHash = _require.getBlockHash, + getValidatorSetHash = _require.getValidatorSetHash + + var _require2 = require("./pubkey.js"), + getAddress = _require2.getAddress + + var _require3 = require("./common.js"), + safeParseInt = _require3.safeParseInt + + // gets the serialized representation of a vote, which is used + // in the commit signatures + + function getVoteSignBytes(chainId, vote) { + var height = vote.height, + round = vote.round, + timestamp = vote.timestamp, + type = vote.type, + blockId = vote.block_id + + return Buffer.from( + stringify({ + "@chain_id": chainId, + "@type": "vote", + block_id: blockId, + height: String(height), + round: String(round), + timestamp: timestamp, + type: safeParseInt(type) + }) + ) + } + + // verifies that a number is a positive integer, less than the + // maximum safe JS integer + function verifyPositiveInt(n) { + if (!Number.isInteger(n)) { + throw Error("Value must be an integer") + } + if (n > Number.MAX_SAFE_INTEGER) { + throw Error("Value must be < 2^53") + } + if (n < 0) { + throw Error("Value must be >= 0") + } + } + + // verifies a commit signs the given header, with 2/3+ of + // the voting power from given validator set + function verifyCommit(header, commit, validators) { + var blockHash = getBlockHash(header) + + if (blockHash !== commit.block_id.hash) { + throw Error("Commit does not match block hash") + } + + var countedValidators = new Array(validators.length) + var roundNumber = void 0 + + var _iteratorNormalCompletion = true + var _didIteratorError = false + var _iteratorError = undefined + + try { + for ( + var _iterator = commit.precommits[Symbol.iterator](), _step; + !(_iteratorNormalCompletion = (_step = _iterator.next()) + .done); + _iteratorNormalCompletion = true + ) { + var precommit = _step.value + + // skip empty precommits + if (precommit == null) continue + + precommit.height = safeParseInt(precommit.height) + precommit.round = safeParseInt(precommit.round) + + // all fields of block ID must match commit + if (precommit.block_id.hash !== commit.block_id.hash) { + throw Error("Precommit block hash does not match commit") + } + if ( + precommit.block_id.parts.total !== + commit.block_id.parts.total + ) { + throw Error("Precommit parts count does not match commit") + } + if ( + precommit.block_id.parts.hash !== commit.block_id.parts.hash + ) { + throw Error("Precommit parts hash does not match commit") + } + + // height must match header + if (precommit.height !== header.height) { + throw Error("Precommit height does not match header") + } + + // rounds of all precommits must match + verifyPositiveInt(precommit.round) + if (roundNumber == null) { + roundNumber = precommit.round + } else if (precommit.round !== roundNumber) { + throw Error("Precommit rounds do not match") + } + + // vote type must be 2 (precommit) + if (precommit.type !== 2) { + throw Error("Precommit has invalid type value") + } + + // ensure there are never multiple precommits from a single validator + if (countedValidators[precommit.validator_index]) { + throw Error("Validator has multiple precommits") + } + countedValidators[precommit.validator_index] = true + + // ensure this precommit references the correct validator + var validator = validators[precommit.validator_index] + if (precommit.validator_address !== validator.address) { + throw Error("Precommit address does not match validator") + } + } + } catch (err) { + _didIteratorError = true + _iteratorError = err + } finally { + try { + if (!_iteratorNormalCompletion && _iterator.return) { + _iterator.return() + } + } finally { + if (_didIteratorError) { + throw _iteratorError + } + } + } + + verifyCommitSigs(header, commit, validators) + } + + // verifies a commit is signed by at least 2/3+ of the voting + // power of the given validator set + function verifyCommitSigs(header, commit, validators) { + var committedVotingPower = 0 + + // index validators by address + var validatorsByAddress = {} + var _iteratorNormalCompletion2 = true + var _didIteratorError2 = false + var _iteratorError2 = undefined + + try { + for ( + var _iterator2 = validators[Symbol.iterator](), _step2; + !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()) + .done); + _iteratorNormalCompletion2 = true + ) { + var validator = _step2.value + + validatorsByAddress[validator.address] = validator + } + } catch (err) { + _didIteratorError2 = true + _iteratorError2 = err + } finally { + try { + if (!_iteratorNormalCompletion2 && _iterator2.return) { + _iterator2.return() + } + } finally { + if (_didIteratorError2) { + throw _iteratorError2 + } + } + } + + var _iteratorNormalCompletion3 = true + var _didIteratorError3 = false + var _iteratorError3 = undefined + + try { + for ( + var _iterator3 = commit.precommits[Symbol.iterator](), _step3; + !(_iteratorNormalCompletion3 = (_step3 = _iterator3.next()) + .done); + _iteratorNormalCompletion3 = true + ) { + var precommit = _step3.value + + // skip empty precommits + if (precommit == null) continue + + var _validator = + validatorsByAddress[precommit.validator_address] + + // skip if this validator isn't in the set + // (we allow precommits from validators not in the set, + // because we sometimes check the commit against older + // validator sets) + if (!_validator) continue + + var signature = Buffer.from(precommit.signature, "base64") + var signBytes = getVoteSignBytes(header.chain_id, precommit) + var pubKey = Buffer.from(_validator.pub_key.value, "base64") + + // TODO: support secp256k1 sigs + if (!ed25519.verify(signature, signBytes, pubKey)) { + throw Error("Invalid precommit signature") + } + + // count this validator's voting power + committedVotingPower += _validator.voting_power + } + + // sum all validators' voting power + } catch (err) { + _didIteratorError3 = true + _iteratorError3 = err + } finally { + try { + if (!_iteratorNormalCompletion3 && _iterator3.return) { + _iterator3.return() + } + } finally { + if (_didIteratorError3) { + throw _iteratorError3 + } + } + } + + var totalVotingPower = validators.reduce(function(sum, v) { + return sum + v.voting_power + }, 0) + // JS numbers have no loss of precision up to 2^53, but we + // error at over 2^52 since we have to do arithmetic. apps + // should be able to keep voting power lower than this anyway + if (totalVotingPower > 2 ** 52) { + throw Error("Total voting power must be less than 2^52") + } + + // verify enough voting power signed + var twoThirds = Math.ceil((totalVotingPower * 2) / 3) + if (committedVotingPower < twoThirds) { + var error = Error("Not enough committed voting power") + error.insufficientVotingPower = true + throw error + } + } + + // verifies that a validator set is in the correct format + // and hashes to the correct value + function verifyValidatorSet(validators, expectedHash) { + var _iteratorNormalCompletion4 = true + var _didIteratorError4 = false + var _iteratorError4 = undefined + + try { + for ( + var _iterator4 = validators[Symbol.iterator](), _step4; + !(_iteratorNormalCompletion4 = (_step4 = _iterator4.next()) + .done); + _iteratorNormalCompletion4 = true + ) { + var validator = _step4.value + + if (getAddress(validator.pub_key) !== validator.address) { + throw Error("Validator address does not match pubkey") + } + + validator.voting_power = safeParseInt(validator.voting_power) + verifyPositiveInt(validator.voting_power) + if (validator.voting_power === 0) { + throw Error("Validator voting power must be > 0") + } + } + } catch (err) { + _didIteratorError4 = true + _iteratorError4 = err + } finally { + try { + if (!_iteratorNormalCompletion4 && _iterator4.return) { + _iterator4.return() + } + } finally { + if (_didIteratorError4) { + throw _iteratorError4 + } + } + } + + var validatorSetHash = getValidatorSetHash(validators) + if (validatorSetHash !== expectedHash) { + throw Error("Validator set does not match what we expected") + } + } + + // verifies transition from one block to a higher one, given + // each block's header, commit, and validator set + function verify(oldState, newState) { + var oldHeader = oldState.header + var oldValidators = oldState.validators + var newHeader = newState.header + var newValidators = newState.validators + + if (newHeader.chain_id !== oldHeader.chain_id) { + throw Error("Chain IDs do not match") + } + if (newHeader.height <= oldHeader.height) { + throw Error( + "New state height must be higher than old state height" + ) + } + + var validatorSetChanged = + newHeader.validators_hash !== oldHeader.validators_hash + if (validatorSetChanged && newValidators == null) { + throw Error("Must specify new validator set") + } + + // make sure new header has a valid commit + var validators = validatorSetChanged + ? newValidators + : oldValidators + verifyCommit(newHeader, newState.commit, validators) + + if (validatorSetChanged) { + // make sure new validator set is valid + + // make sure new validator set has correct hash + verifyValidatorSet(newValidators, newHeader.validators_hash) + + // if previous state's `next_validators_hash` matches the new validator + // set hash, then we already know it is valid + if ( + oldHeader.next_validators_hash !== newHeader.validators_hash + ) { + // otherwise, make sure new commit is signed by 2/3+ of old validator set. + // sometimes we will take this path to skip ahead, we don't need any + // headers between `oldState` and `newState` if this check passes + verifyCommitSigs(newHeader, newState.commit, oldValidators) + } + } + } + + module.exports = verify + Object.assign(module.exports, { + verifyCommit: verifyCommit, + verifyCommitSigs: verifyCommitSigs, + verifyValidatorSet: verifyValidatorSet, + verify: verify, + getVoteSignBytes: getVoteSignBytes + }) + }.call(this, require("buffer").Buffer)) + }, + { + "./common.js": 219, + "./hash.js": 220, + "./pubkey.js": 223, + buffer: 48, + "json-stable-stringify": 177, + "supercop.js": 216 + } + ], + 228: [ + function(require, module, exports) { + module.exports = require("./lib/axios") + }, + { "./lib/axios": 230 } + ], + 229: [ + function(require, module, exports) { + ;(function(process) { + "use strict" + + var utils = require("./../utils") + var settle = require("./../core/settle") + var buildURL = require("./../helpers/buildURL") + var parseHeaders = require("./../helpers/parseHeaders") + var isURLSameOrigin = require("./../helpers/isURLSameOrigin") + var createError = require("../core/createError") + var btoa = + (typeof window !== "undefined" && + window.btoa && + window.btoa.bind(window)) || + require("./../helpers/btoa") + + module.exports = function xhrAdapter(config) { + return new Promise(function dispatchXhrRequest(resolve, reject) { + var requestData = config.data + var requestHeaders = config.headers + + if (utils.isFormData(requestData)) { + delete requestHeaders["Content-Type"] // Let the browser set it + } + + var request = new XMLHttpRequest() + var loadEvent = "onreadystatechange" + var xDomain = false + + // For IE 8/9 CORS support + // Only supports POST and GET calls and doesn't returns the response headers. + // DON'T do this for testing b/c XMLHttpRequest is mocked, not XDomainRequest. + if ( + process.env.NODE_ENV !== "test" && + typeof window !== "undefined" && + window.XDomainRequest && + !("withCredentials" in request) && + !isURLSameOrigin(config.url) + ) { + request = new window.XDomainRequest() + loadEvent = "onload" + xDomain = true + request.onprogress = function handleProgress() {} + request.ontimeout = function handleTimeout() {} + } + + // HTTP basic authentication + if (config.auth) { + var username = config.auth.username || "" + var password = config.auth.password || "" + requestHeaders.Authorization = + "Basic " + btoa(username + ":" + password) + } + + request.open( + config.method.toUpperCase(), + buildURL(config.url, config.params, config.paramsSerializer), + true + ) + + // Set the request timeout in MS + request.timeout = config.timeout + + // Listen for ready state + request[loadEvent] = function handleLoad() { + if (!request || (request.readyState !== 4 && !xDomain)) { + return + } + + // The request errored out and we didn't get a response, this will be + // handled by onerror instead + // With one exception: request that using file: protocol, most browsers + // will return status as 0 even though it's a successful request + if ( + request.status === 0 && + !( + request.responseURL && + request.responseURL.indexOf("file:") === 0 + ) + ) { + return + } + + // Prepare the response + var responseHeaders = + "getAllResponseHeaders" in request + ? parseHeaders(request.getAllResponseHeaders()) + : null + var responseData = + !config.responseType || config.responseType === "text" + ? request.responseText + : request.response + var response = { + data: responseData, + // IE sends 1223 instead of 204 (https://github.com/axios/axios/issues/201) + status: request.status === 1223 ? 204 : request.status, + statusText: + request.status === 1223 + ? "No Content" + : request.statusText, + headers: responseHeaders, + config: config, + request: request + } + + settle(resolve, reject, response) + + // Clean up request + request = null + } + + // Handle low level network errors + request.onerror = function handleError() { + // Real errors are hidden from us by the browser + // onerror should only fire if it's a network error + reject(createError("Network Error", config, null, request)) + + // Clean up request + request = null + } + + // Handle timeout + request.ontimeout = function handleTimeout() { + reject( + createError( + "timeout of " + config.timeout + "ms exceeded", + config, + "ECONNABORTED", + request + ) + ) + + // Clean up request + request = null + } + + // Add xsrf header + // This is only done if running in a standard browser environment. + // Specifically not if we're in a web worker, or react-native. + if (utils.isStandardBrowserEnv()) { + var cookies = require("./../helpers/cookies") + + // Add xsrf header + var xsrfValue = + (config.withCredentials || isURLSameOrigin(config.url)) && + config.xsrfCookieName + ? cookies.read(config.xsrfCookieName) + : undefined + + if (xsrfValue) { + requestHeaders[config.xsrfHeaderName] = xsrfValue + } + } + + // Add headers to the request + if ("setRequestHeader" in request) { + utils.forEach(requestHeaders, function setRequestHeader( + val, + key + ) { + if ( + typeof requestData === "undefined" && + key.toLowerCase() === "content-type" + ) { + // Remove Content-Type if data is undefined + delete requestHeaders[key] + } else { + // Otherwise add header to the request + request.setRequestHeader(key, val) + } + }) + } + + // Add withCredentials to request if needed + if (config.withCredentials) { + request.withCredentials = true + } + + // Add responseType to request if needed + if (config.responseType) { + try { + request.responseType = config.responseType + } catch (e) { + // Expected DOMException thrown by browsers not compatible XMLHttpRequest Level 2. + // But, this can be suppressed for 'json' type as it can be parsed by default 'transformResponse' function. + if (config.responseType !== "json") { + throw e + } + } + } + + // Handle progress if needed + if (typeof config.onDownloadProgress === "function") { + request.addEventListener( + "progress", + config.onDownloadProgress + ) + } + + // Not all browsers support upload events + if ( + typeof config.onUploadProgress === "function" && + request.upload + ) { + request.upload.addEventListener( + "progress", + config.onUploadProgress + ) + } + + if (config.cancelToken) { + // Handle cancellation + config.cancelToken.promise.then(function onCanceled(cancel) { + if (!request) { + return + } + + request.abort() + reject(cancel) + // Clean up request + request = null + }) + } + + if (requestData === undefined) { + requestData = null + } + + // Send the request + request.send(requestData) + }) + } + }.call(this, require("_process"))) + }, + { + "../core/createError": 236, + "./../core/settle": 239, + "./../helpers/btoa": 243, + "./../helpers/buildURL": 244, + "./../helpers/cookies": 246, + "./../helpers/isURLSameOrigin": 248, + "./../helpers/parseHeaders": 250, + "./../utils": 252, + _process: 120 + } + ], + 230: [ + function(require, module, exports) { + "use strict" + + var utils = require("./utils") + var bind = require("./helpers/bind") + var Axios = require("./core/Axios") + var defaults = require("./defaults") + + /** + * Create an instance of Axios + * + * @param {Object} defaultConfig The default config for the instance + * @return {Axios} A new instance of Axios + */ + function createInstance(defaultConfig) { + var context = new Axios(defaultConfig) + var instance = bind(Axios.prototype.request, context) + + // Copy axios.prototype to instance + utils.extend(instance, Axios.prototype, context) + + // Copy context to instance + utils.extend(instance, context) + + return instance + } + + // Create the default instance to be exported + var axios = createInstance(defaults) + + // Expose Axios class to allow class inheritance + axios.Axios = Axios + + // Factory for creating new instances + axios.create = function create(instanceConfig) { + return createInstance(utils.merge(defaults, instanceConfig)) + } + + // Expose Cancel & CancelToken + axios.Cancel = require("./cancel/Cancel") + axios.CancelToken = require("./cancel/CancelToken") + axios.isCancel = require("./cancel/isCancel") + + // Expose all/spread + axios.all = function all(promises) { + return Promise.all(promises) + } + axios.spread = require("./helpers/spread") + + module.exports = axios + + // Allow use of default import syntax in TypeScript + module.exports.default = axios + }, + { + "./cancel/Cancel": 231, + "./cancel/CancelToken": 232, + "./cancel/isCancel": 233, + "./core/Axios": 234, + "./defaults": 241, + "./helpers/bind": 242, + "./helpers/spread": 251, + "./utils": 252 + } + ], + 231: [ + function(require, module, exports) { + "use strict" + + /** + * A `Cancel` is an object that is thrown when an operation is canceled. + * + * @class + * @param {string=} message The message. + */ + function Cancel(message) { + this.message = message + } + + Cancel.prototype.toString = function toString() { + return "Cancel" + (this.message ? ": " + this.message : "") + } + + Cancel.prototype.__CANCEL__ = true + + module.exports = Cancel + }, + {} + ], + 232: [ + function(require, module, exports) { + "use strict" + + var Cancel = require("./Cancel") + + /** + * A `CancelToken` is an object that can be used to request cancellation of an operation. + * + * @class + * @param {Function} executor The executor function. + */ + function CancelToken(executor) { + if (typeof executor !== "function") { + throw new TypeError("executor must be a function.") + } + + var resolvePromise + this.promise = new Promise(function promiseExecutor(resolve) { + resolvePromise = resolve + }) + + var token = this + executor(function cancel(message) { + if (token.reason) { + // Cancellation has already been requested + return + } + + token.reason = new Cancel(message) + resolvePromise(token.reason) + }) + } + + /** + * Throws a `Cancel` if cancellation has been requested. + */ + CancelToken.prototype.throwIfRequested = function throwIfRequested() { + if (this.reason) { + throw this.reason + } + } + + /** + * Returns an object that contains a new `CancelToken` and a function that, when called, + * cancels the `CancelToken`. + */ + CancelToken.source = function source() { + var cancel + var token = new CancelToken(function executor(c) { + cancel = c + }) + return { + token: token, + cancel: cancel + } + } + + module.exports = CancelToken + }, + { "./Cancel": 231 } + ], + 233: [ + function(require, module, exports) { + "use strict" + + module.exports = function isCancel(value) { + return !!(value && value.__CANCEL__) + } + }, + {} + ], + 234: [ + function(require, module, exports) { + "use strict" + + var defaults = require("./../defaults") + var utils = require("./../utils") + var InterceptorManager = require("./InterceptorManager") + var dispatchRequest = require("./dispatchRequest") + + /** + * Create a new instance of Axios + * + * @param {Object} instanceConfig The default config for the instance + */ + function Axios(instanceConfig) { + this.defaults = instanceConfig + this.interceptors = { + request: new InterceptorManager(), + response: new InterceptorManager() + } + } + + /** + * Dispatch a request + * + * @param {Object} config The config specific for this request (merged with this.defaults) + */ + Axios.prototype.request = function request(config) { + /*eslint no-param-reassign:0*/ + // Allow for axios('example/url'[, config]) a la fetch API + if (typeof config === "string") { + config = utils.merge( + { + url: arguments[0] + }, + arguments[1] + ) + } + + config = utils.merge( + defaults, + this.defaults, + { method: "get" }, + config + ) + config.method = config.method.toLowerCase() + + // Hook up interceptors middleware + var chain = [dispatchRequest, undefined] + var promise = Promise.resolve(config) + + this.interceptors.request.forEach( + function unshiftRequestInterceptors(interceptor) { + chain.unshift(interceptor.fulfilled, interceptor.rejected) + } + ) + + this.interceptors.response.forEach( + function pushResponseInterceptors(interceptor) { + chain.push(interceptor.fulfilled, interceptor.rejected) + } + ) + + while (chain.length) { + promise = promise.then(chain.shift(), chain.shift()) + } + + return promise + } + + // Provide aliases for supported request methods + utils.forEach( + ["delete", "get", "head", "options"], + function forEachMethodNoData(method) { + /*eslint func-names:0*/ + Axios.prototype[method] = function(url, config) { + return this.request( + utils.merge(config || {}, { + method: method, + url: url + }) + ) + } + } + ) + + utils.forEach( + ["post", "put", "patch"], + function forEachMethodWithData(method) { + /*eslint func-names:0*/ + Axios.prototype[method] = function(url, data, config) { + return this.request( + utils.merge(config || {}, { + method: method, + url: url, + data: data + }) + ) + } + } + ) + + module.exports = Axios + }, + { + "./../defaults": 241, + "./../utils": 252, + "./InterceptorManager": 235, + "./dispatchRequest": 237 + } + ], + 235: [ + function(require, module, exports) { + "use strict" + + var utils = require("./../utils") + + function InterceptorManager() { + this.handlers = [] + } + + /** + * Add a new interceptor to the stack + * + * @param {Function} fulfilled The function to handle `then` for a `Promise` + * @param {Function} rejected The function to handle `reject` for a `Promise` + * + * @return {Number} An ID used to remove interceptor later + */ + InterceptorManager.prototype.use = function use(fulfilled, rejected) { + this.handlers.push({ + fulfilled: fulfilled, + rejected: rejected + }) + return this.handlers.length - 1 + } + + /** + * Remove an interceptor from the stack + * + * @param {Number} id The ID that was returned by `use` + */ + InterceptorManager.prototype.eject = function eject(id) { + if (this.handlers[id]) { + this.handlers[id] = null + } + } + + /** + * Iterate over all the registered interceptors + * + * This method is particularly useful for skipping over any + * interceptors that may have become `null` calling `eject`. + * + * @param {Function} fn The function to call for each interceptor + */ + InterceptorManager.prototype.forEach = function forEach(fn) { + utils.forEach(this.handlers, function forEachHandler(h) { + if (h !== null) { + fn(h) + } + }) + } + + module.exports = InterceptorManager + }, + { "./../utils": 252 } + ], + 236: [ + function(require, module, exports) { + "use strict" + + var enhanceError = require("./enhanceError") + + /** + * Create an Error with the specified message, config, error code, request and response. + * + * @param {string} message The error message. + * @param {Object} config The config. + * @param {string} [code] The error code (for example, 'ECONNABORTED'). + * @param {Object} [request] The request. + * @param {Object} [response] The response. + * @returns {Error} The created error. + */ + module.exports = function createError( + message, + config, + code, + request, + response + ) { + var error = new Error(message) + return enhanceError(error, config, code, request, response) + } + }, + { "./enhanceError": 238 } + ], + 237: [ + function(require, module, exports) { + "use strict" + + var utils = require("./../utils") + var transformData = require("./transformData") + var isCancel = require("../cancel/isCancel") + var defaults = require("../defaults") + var isAbsoluteURL = require("./../helpers/isAbsoluteURL") + var combineURLs = require("./../helpers/combineURLs") + + /** + * Throws a `Cancel` if cancellation has been requested. + */ + function throwIfCancellationRequested(config) { + if (config.cancelToken) { + config.cancelToken.throwIfRequested() + } + } + + /** + * Dispatch a request to the server using the configured adapter. + * + * @param {object} config The config that is to be used for the request + * @returns {Promise} The Promise to be fulfilled + */ + module.exports = function dispatchRequest(config) { + throwIfCancellationRequested(config) + + // Support baseURL config + if (config.baseURL && !isAbsoluteURL(config.url)) { + config.url = combineURLs(config.baseURL, config.url) + } + + // Ensure headers exist + config.headers = config.headers || {} + + // Transform request data + config.data = transformData( + config.data, + config.headers, + config.transformRequest + ) + + // Flatten headers + config.headers = utils.merge( + config.headers.common || {}, + config.headers[config.method] || {}, + config.headers || {} + ) + + utils.forEach( + ["delete", "get", "head", "post", "put", "patch", "common"], + function cleanHeaderConfig(method) { + delete config.headers[method] + } + ) + + var adapter = config.adapter || defaults.adapter + + return adapter(config).then( + function onAdapterResolution(response) { + throwIfCancellationRequested(config) + + // Transform response data + response.data = transformData( + response.data, + response.headers, + config.transformResponse + ) + + return response + }, + function onAdapterRejection(reason) { + if (!isCancel(reason)) { + throwIfCancellationRequested(config) + + // Transform response data + if (reason && reason.response) { + reason.response.data = transformData( + reason.response.data, + reason.response.headers, + config.transformResponse + ) + } + } + + return Promise.reject(reason) + } + ) + } + }, + { + "../cancel/isCancel": 233, + "../defaults": 241, + "./../helpers/combineURLs": 245, + "./../helpers/isAbsoluteURL": 247, + "./../utils": 252, + "./transformData": 240 + } + ], + 238: [ + function(require, module, exports) { + "use strict" + + /** + * Update an Error with the specified config, error code, and response. + * + * @param {Error} error The error to update. + * @param {Object} config The config. + * @param {string} [code] The error code (for example, 'ECONNABORTED'). + * @param {Object} [request] The request. + * @param {Object} [response] The response. + * @returns {Error} The error. + */ + module.exports = function enhanceError( + error, + config, + code, + request, + response + ) { + error.config = config + if (code) { + error.code = code + } + error.request = request + error.response = response + return error + } + }, + {} + ], + 239: [ + function(require, module, exports) { + "use strict" + + var createError = require("./createError") + + /** + * Resolve or reject a Promise based on response status. + * + * @param {Function} resolve A function that resolves the promise. + * @param {Function} reject A function that rejects the promise. + * @param {object} response The response. + */ + module.exports = function settle(resolve, reject, response) { + var validateStatus = response.config.validateStatus + // Note: status is not exposed by XDomainRequest + if ( + !response.status || + !validateStatus || + validateStatus(response.status) + ) { + resolve(response) + } else { + reject( + createError( + "Request failed with status code " + response.status, + response.config, + null, + response.request, + response + ) + ) + } + } + }, + { "./createError": 236 } + ], + 240: [ + function(require, module, exports) { + "use strict" + + var utils = require("./../utils") + + /** + * Transform the data for a request or a response + * + * @param {Object|String} data The data to be transformed + * @param {Array} headers The headers for the request or response + * @param {Array|Function} fns A single function or Array of functions + * @returns {*} The resulting transformed data + */ + module.exports = function transformData(data, headers, fns) { + /*eslint no-param-reassign:0*/ + utils.forEach(fns, function transform(fn) { + data = fn(data, headers) + }) + + return data + } + }, + { "./../utils": 252 } + ], + 241: [ + function(require, module, exports) { + ;(function(process) { + "use strict" + + var utils = require("./utils") + var normalizeHeaderName = require("./helpers/normalizeHeaderName") + + var DEFAULT_CONTENT_TYPE = { + "Content-Type": "application/x-www-form-urlencoded" + } + + function setContentTypeIfUnset(headers, value) { + if ( + !utils.isUndefined(headers) && + utils.isUndefined(headers["Content-Type"]) + ) { + headers["Content-Type"] = value + } + } + + function getDefaultAdapter() { + var adapter + if (typeof XMLHttpRequest !== "undefined") { + // For browsers use XHR adapter + adapter = require("./adapters/xhr") + } else if (typeof process !== "undefined") { + // For node use HTTP adapter + adapter = require("./adapters/http") + } + return adapter + } + + var defaults = { + adapter: getDefaultAdapter(), + + transformRequest: [ + function transformRequest(data, headers) { + normalizeHeaderName(headers, "Content-Type") + if ( + utils.isFormData(data) || + utils.isArrayBuffer(data) || + utils.isBuffer(data) || + utils.isStream(data) || + utils.isFile(data) || + utils.isBlob(data) + ) { + return data + } + if (utils.isArrayBufferView(data)) { + return data.buffer + } + if (utils.isURLSearchParams(data)) { + setContentTypeIfUnset( + headers, + "application/x-www-form-urlencoded;charset=utf-8" + ) + return data.toString() + } + if (utils.isObject(data)) { + setContentTypeIfUnset( + headers, + "application/json;charset=utf-8" + ) + return JSON.stringify(data) + } + return data + } + ], + + transformResponse: [ + function transformResponse(data) { + /*eslint no-param-reassign:0*/ + if (typeof data === "string") { + try { + data = JSON.parse(data) + } catch (e) { + /* Ignore */ + } + } + return data + } + ], + + timeout: 0, + + xsrfCookieName: "XSRF-TOKEN", + xsrfHeaderName: "X-XSRF-TOKEN", + + maxContentLength: -1, + + validateStatus: function validateStatus(status) { + return status >= 200 && status < 300 + } + } + + defaults.headers = { + common: { + Accept: "application/json, text/plain, */*" + } + } + + utils.forEach( + ["delete", "get", "head"], + function forEachMethodNoData(method) { + defaults.headers[method] = {} + } + ) + + utils.forEach( + ["post", "put", "patch"], + function forEachMethodWithData(method) { + defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE) + } + ) + + module.exports = defaults + }.call(this, require("_process"))) + }, + { + "./adapters/http": 229, + "./adapters/xhr": 229, + "./helpers/normalizeHeaderName": 249, + "./utils": 252, + _process: 120 + } + ], + 242: [ + function(require, module, exports) { + "use strict" + + module.exports = function bind(fn, thisArg) { + return function wrap() { + var args = new Array(arguments.length) + for (var i = 0; i < args.length; i++) { + args[i] = arguments[i] + } + return fn.apply(thisArg, args) + } + } + }, + {} + ], + 243: [ + function(require, module, exports) { + "use strict" + + // btoa polyfill for IE<10 courtesy https://github.com/davidchambers/Base64.js + + var chars = + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=" + + function E() { + this.message = "String contains an invalid character" + } + E.prototype = new Error() + E.prototype.code = 5 + E.prototype.name = "InvalidCharacterError" + + function btoa(input) { + var str = String(input) + var output = "" + for ( + // initialize result and counter + var block, charCode, idx = 0, map = chars; + // if the next str index does not exist: + // change the mapping table to "=" + // check if d has no fractional digits + str.charAt(idx | 0) || ((map = "="), idx % 1); + // "8 - idx % 1 * 8" generates the sequence 2, 4, 6, 8 + output += map.charAt(63 & (block >> (8 - (idx % 1) * 8))) + ) { + charCode = str.charCodeAt((idx += 3 / 4)) + if (charCode > 0xff) { + throw new E() + } + block = (block << 8) | charCode + } + return output + } + + module.exports = btoa + }, + {} + ], + 244: [ + function(require, module, exports) { + "use strict" + + var utils = require("./../utils") + + function encode(val) { + return encodeURIComponent(val) + .replace(/%40/gi, "@") + .replace(/%3A/gi, ":") + .replace(/%24/g, "$") + .replace(/%2C/gi, ",") + .replace(/%20/g, "+") + .replace(/%5B/gi, "[") + .replace(/%5D/gi, "]") + } + + /** + * Build a URL by appending params to the end + * + * @param {string} url The base of the url (e.g., http://www.google.com) + * @param {object} [params] The params to be appended + * @returns {string} The formatted url + */ + module.exports = function buildURL(url, params, paramsSerializer) { + /*eslint no-param-reassign:0*/ + if (!params) { + return url + } + + var serializedParams + if (paramsSerializer) { + serializedParams = paramsSerializer(params) + } else if (utils.isURLSearchParams(params)) { + serializedParams = params.toString() + } else { + var parts = [] + + utils.forEach(params, function serialize(val, key) { + if (val === null || typeof val === "undefined") { + return + } + + if (utils.isArray(val)) { + key = key + "[]" + } + + if (!utils.isArray(val)) { + val = [val] + } + + utils.forEach(val, function parseValue(v) { + if (utils.isDate(v)) { + v = v.toISOString() + } else if (utils.isObject(v)) { + v = JSON.stringify(v) + } + parts.push(encode(key) + "=" + encode(v)) + }) + }) + + serializedParams = parts.join("&") + } + + if (serializedParams) { + url += (url.indexOf("?") === -1 ? "?" : "&") + serializedParams + } + + return url + } + }, + { "./../utils": 252 } + ], + 245: [ + function(require, module, exports) { + "use strict" + + /** + * Creates a new URL by combining the specified URLs + * + * @param {string} baseURL The base URL + * @param {string} relativeURL The relative URL + * @returns {string} The combined URL + */ + module.exports = function combineURLs(baseURL, relativeURL) { + return relativeURL + ? baseURL.replace(/\/+$/, "") + + "/" + + relativeURL.replace(/^\/+/, "") + : baseURL + } + }, + {} + ], + 246: [ + function(require, module, exports) { + "use strict" + + var utils = require("./../utils") + + module.exports = utils.isStandardBrowserEnv() + ? // Standard browser envs support document.cookie + (function standardBrowserEnv() { + return { + write: function write( + name, + value, + expires, + path, + domain, + secure + ) { + var cookie = [] + cookie.push(name + "=" + encodeURIComponent(value)) + + if (utils.isNumber(expires)) { + cookie.push("expires=" + new Date(expires).toGMTString()) + } + + if (utils.isString(path)) { + cookie.push("path=" + path) + } + + if (utils.isString(domain)) { + cookie.push("domain=" + domain) + } + + if (secure === true) { + cookie.push("secure") + } + + document.cookie = cookie.join("; ") + }, + + read: function read(name) { + var match = document.cookie.match( + new RegExp("(^|;\\s*)(" + name + ")=([^;]*)") + ) + return match ? decodeURIComponent(match[3]) : null + }, + + remove: function remove(name) { + this.write(name, "", Date.now() - 86400000) + } + } + })() + : // Non standard browser env (web workers, react-native) lack needed support. + (function nonStandardBrowserEnv() { + return { + write: function write() {}, + read: function read() { + return null + }, + remove: function remove() {} + } + })() + }, + { "./../utils": 252 } + ], + 247: [ + function(require, module, exports) { + "use strict" + + /** + * Determines whether the specified URL is absolute + * + * @param {string} url The URL to test + * @returns {boolean} True if the specified URL is absolute, otherwise false + */ + module.exports = function isAbsoluteURL(url) { + // A URL is considered absolute if it begins with "://" or "//" (protocol-relative URL). + // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed + // by any combination of letters, digits, plus, period, or hyphen. + return /^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(url) + } + }, + {} + ], + 248: [ + function(require, module, exports) { + "use strict" + + var utils = require("./../utils") + + module.exports = utils.isStandardBrowserEnv() + ? // Standard browser envs have full support of the APIs needed to test + // whether the request URL is of the same origin as current location. + (function standardBrowserEnv() { + var msie = /(msie|trident)/i.test(navigator.userAgent) + var urlParsingNode = document.createElement("a") + var originURL + + /** + * Parse a URL to discover it's components + * + * @param {String} url The URL to be parsed + * @returns {Object} + */ + function resolveURL(url) { + var href = url + + if (msie) { + // IE needs attribute set twice to normalize properties + urlParsingNode.setAttribute("href", href) + href = urlParsingNode.href + } + + urlParsingNode.setAttribute("href", href) + + // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils + return { + href: urlParsingNode.href, + protocol: urlParsingNode.protocol + ? urlParsingNode.protocol.replace(/:$/, "") + : "", + host: urlParsingNode.host, + search: urlParsingNode.search + ? urlParsingNode.search.replace(/^\?/, "") + : "", + hash: urlParsingNode.hash + ? urlParsingNode.hash.replace(/^#/, "") + : "", + hostname: urlParsingNode.hostname, + port: urlParsingNode.port, + pathname: + urlParsingNode.pathname.charAt(0) === "/" + ? urlParsingNode.pathname + : "/" + urlParsingNode.pathname + } + } + + originURL = resolveURL(window.location.href) + + /** + * Determine if a URL shares the same origin as the current location + * + * @param {String} requestURL The URL to test + * @returns {boolean} True if URL shares the same origin, otherwise false + */ + return function isURLSameOrigin(requestURL) { + var parsed = utils.isString(requestURL) + ? resolveURL(requestURL) + : requestURL + return ( + parsed.protocol === originURL.protocol && + parsed.host === originURL.host + ) + } + })() + : // Non standard browser envs (web workers, react-native) lack needed support. + (function nonStandardBrowserEnv() { + return function isURLSameOrigin() { + return true + } + })() + }, + { "./../utils": 252 } + ], + 249: [ + function(require, module, exports) { + "use strict" + + var utils = require("../utils") + + module.exports = function normalizeHeaderName( + headers, + normalizedName + ) { + utils.forEach(headers, function processHeader(value, name) { + if ( + name !== normalizedName && + name.toUpperCase() === normalizedName.toUpperCase() + ) { + headers[normalizedName] = value + delete headers[name] + } + }) + } + }, + { "../utils": 252 } + ], + 250: [ + function(require, module, exports) { + "use strict" + + var utils = require("./../utils") + + // Headers whose duplicates are ignored by node + // c.f. https://nodejs.org/api/http.html#http_message_headers + var ignoreDuplicateOf = [ + "age", + "authorization", + "content-length", + "content-type", + "etag", + "expires", + "from", + "host", + "if-modified-since", + "if-unmodified-since", + "last-modified", + "location", + "max-forwards", + "proxy-authorization", + "referer", + "retry-after", + "user-agent" + ] + + /** + * Parse headers into an object + * + * ``` + * Date: Wed, 27 Aug 2014 08:58:49 GMT + * Content-Type: application/json + * Connection: keep-alive + * Transfer-Encoding: chunked + * ``` + * + * @param {String} headers Headers needing to be parsed + * @returns {Object} Headers parsed into an object + */ + module.exports = function parseHeaders(headers) { + var parsed = {} + var key + var val + var i + + if (!headers) { + return parsed + } + + utils.forEach(headers.split("\n"), function parser(line) { + i = line.indexOf(":") + key = utils.trim(line.substr(0, i)).toLowerCase() + val = utils.trim(line.substr(i + 1)) + + if (key) { + if (parsed[key] && ignoreDuplicateOf.indexOf(key) >= 0) { + return + } + if (key === "set-cookie") { + parsed[key] = (parsed[key] ? parsed[key] : []).concat([val]) + } else { + parsed[key] = parsed[key] ? parsed[key] + ", " + val : val + } + } + }) + + return parsed + } + }, + { "./../utils": 252 } + ], + 251: [ + function(require, module, exports) { + "use strict" + + /** + * Syntactic sugar for invoking a function and expanding an array for arguments. + * + * Common use case would be to use `Function.prototype.apply`. + * + * ```js + * function f(x, y, z) {} + * var args = [1, 2, 3]; + * f.apply(null, args); + * ``` + * + * With `spread` this example can be re-written. + * + * ```js + * spread(function(x, y, z) {})([1, 2, 3]); + * ``` + * + * @param {Function} callback + * @returns {Function} + */ + module.exports = function spread(callback) { + return function wrap(arr) { + return callback.apply(null, arr) + } + } + }, + {} + ], + 252: [ + function(require, module, exports) { + "use strict" + + var bind = require("./helpers/bind") + var isBuffer = require("is-buffer") + + /*global toString:true*/ + + // utils is a library of generic helper functions non-specific to axios + + var toString = Object.prototype.toString + + /** + * Determine if a value is an Array + * + * @param {Object} val The value to test + * @returns {boolean} True if value is an Array, otherwise false + */ + function isArray(val) { + return toString.call(val) === "[object Array]" + } + + /** + * Determine if a value is an ArrayBuffer + * + * @param {Object} val The value to test + * @returns {boolean} True if value is an ArrayBuffer, otherwise false + */ + function isArrayBuffer(val) { + return toString.call(val) === "[object ArrayBuffer]" + } + + /** + * Determine if a value is a FormData + * + * @param {Object} val The value to test + * @returns {boolean} True if value is an FormData, otherwise false + */ + function isFormData(val) { + return typeof FormData !== "undefined" && val instanceof FormData + } + + /** + * Determine if a value is a view on an ArrayBuffer + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false + */ + function isArrayBufferView(val) { + var result + if (typeof ArrayBuffer !== "undefined" && ArrayBuffer.isView) { + result = ArrayBuffer.isView(val) + } else { + result = val && val.buffer && val.buffer instanceof ArrayBuffer + } + return result + } + + /** + * Determine if a value is a String + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a String, otherwise false + */ + function isString(val) { + return typeof val === "string" + } + + /** + * Determine if a value is a Number + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a Number, otherwise false + */ + function isNumber(val) { + return typeof val === "number" + } + + /** + * Determine if a value is undefined + * + * @param {Object} val The value to test + * @returns {boolean} True if the value is undefined, otherwise false + */ + function isUndefined(val) { + return typeof val === "undefined" + } + + /** + * Determine if a value is an Object + * + * @param {Object} val The value to test + * @returns {boolean} True if value is an Object, otherwise false + */ + function isObject(val) { + return val !== null && typeof val === "object" + } + + /** + * Determine if a value is a Date + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a Date, otherwise false + */ + function isDate(val) { + return toString.call(val) === "[object Date]" + } + + /** + * Determine if a value is a File + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a File, otherwise false + */ + function isFile(val) { + return toString.call(val) === "[object File]" + } + + /** + * Determine if a value is a Blob + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a Blob, otherwise false + */ + function isBlob(val) { + return toString.call(val) === "[object Blob]" + } + + /** + * Determine if a value is a Function + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a Function, otherwise false + */ + function isFunction(val) { + return toString.call(val) === "[object Function]" + } + + /** + * Determine if a value is a Stream + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a Stream, otherwise false + */ + function isStream(val) { + return isObject(val) && isFunction(val.pipe) + } + + /** + * Determine if a value is a URLSearchParams object + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a URLSearchParams object, otherwise false + */ + function isURLSearchParams(val) { + return ( + typeof URLSearchParams !== "undefined" && + val instanceof URLSearchParams + ) + } + + /** + * Trim excess whitespace off the beginning and end of a string + * + * @param {String} str The String to trim + * @returns {String} The String freed of excess whitespace + */ + function trim(str) { + return str.replace(/^\s*/, "").replace(/\s*$/, "") + } + + /** + * Determine if we're running in a standard browser environment + * + * This allows axios to run in a web worker, and react-native. + * Both environments support XMLHttpRequest, but not fully standard globals. + * + * web workers: + * typeof window -> undefined + * typeof document -> undefined + * + * react-native: + * navigator.product -> 'ReactNative' + */ + function isStandardBrowserEnv() { + if ( + typeof navigator !== "undefined" && + navigator.product === "ReactNative" + ) { + return false + } + return ( + typeof window !== "undefined" && typeof document !== "undefined" + ) + } + + /** + * Iterate over an Array or an Object invoking a function for each item. + * + * If `obj` is an Array callback will be called passing + * the value, index, and complete array for each item. + * + * If 'obj' is an Object callback will be called passing + * the value, key, and complete object for each property. + * + * @param {Object|Array} obj The object to iterate + * @param {Function} fn The callback to invoke for each item + */ + function forEach(obj, fn) { + // Don't bother if no value provided + if (obj === null || typeof obj === "undefined") { + return + } + + // Force an array if not already something iterable + if (typeof obj !== "object") { + /*eslint no-param-reassign:0*/ + obj = [obj] + } + + if (isArray(obj)) { + // Iterate over array values + for (var i = 0, l = obj.length; i < l; i++) { + fn.call(null, obj[i], i, obj) + } + } else { + // Iterate over object keys + for (var key in obj) { + if (Object.prototype.hasOwnProperty.call(obj, key)) { + fn.call(null, obj[key], key, obj) + } + } + } + } + + /** + * Accepts varargs expecting each argument to be an object, then + * immutably merges the properties of each object and returns result. + * + * When multiple objects contain the same key the later object in + * the arguments list will take precedence. + * + * Example: + * + * ```js + * var result = merge({foo: 123}, {foo: 456}); + * console.log(result.foo); // outputs 456 + * ``` + * + * @param {Object} obj1 Object to merge + * @returns {Object} Result of all merge properties + */ + function merge(/* obj1, obj2, obj3, ... */) { + var result = {} + function assignValue(val, key) { + if (typeof result[key] === "object" && typeof val === "object") { + result[key] = merge(result[key], val) + } else { + result[key] = val + } + } + + for (var i = 0, l = arguments.length; i < l; i++) { + forEach(arguments[i], assignValue) + } + return result + } + + /** + * Extends object a by mutably adding to it the properties of object b. + * + * @param {Object} a The object to be extended + * @param {Object} b The object to copy properties from + * @param {Object} thisArg The object to bind function to + * @return {Object} The resulting value of object a + */ + function extend(a, b, thisArg) { + forEach(b, function assignValue(val, key) { + if (thisArg && typeof val === "function") { + a[key] = bind(val, thisArg) + } else { + a[key] = val + } + }) + return a + } + + module.exports = { + isArray: isArray, + isArrayBuffer: isArrayBuffer, + isBuffer: isBuffer, + isFormData: isFormData, + isArrayBufferView: isArrayBufferView, + isString: isString, + isNumber: isNumber, + isObject: isObject, + isUndefined: isUndefined, + isDate: isDate, + isFile: isFile, + isBlob: isBlob, + isFunction: isFunction, + isStream: isStream, + isURLSearchParams: isURLSearchParams, + isStandardBrowserEnv: isStandardBrowserEnv, + forEach: forEach, + merge: merge, + extend: extend, + trim: trim + } + }, + { "./helpers/bind": 242, "is-buffer": 175 } + ], + 253: [ + function(require, module, exports) { + ;(function(process) { + /** + * This is the web browser implementation of `debug()`. + * + * Expose `debug()` as the module. + */ + + exports = module.exports = require("./debug") + exports.log = log + exports.formatArgs = formatArgs + exports.save = save + exports.load = load + exports.useColors = useColors + exports.storage = + "undefined" != typeof chrome && + "undefined" != typeof chrome.storage + ? chrome.storage.local + : localstorage() + + /** + * Colors. + */ + + exports.colors = [ + "#0000CC", + "#0000FF", + "#0033CC", + "#0033FF", + "#0066CC", + "#0066FF", + "#0099CC", + "#0099FF", + "#00CC00", + "#00CC33", + "#00CC66", + "#00CC99", + "#00CCCC", + "#00CCFF", + "#3300CC", + "#3300FF", + "#3333CC", + "#3333FF", + "#3366CC", + "#3366FF", + "#3399CC", + "#3399FF", + "#33CC00", + "#33CC33", + "#33CC66", + "#33CC99", + "#33CCCC", + "#33CCFF", + "#6600CC", + "#6600FF", + "#6633CC", + "#6633FF", + "#66CC00", + "#66CC33", + "#9900CC", + "#9900FF", + "#9933CC", + "#9933FF", + "#99CC00", + "#99CC33", + "#CC0000", + "#CC0033", + "#CC0066", + "#CC0099", + "#CC00CC", + "#CC00FF", + "#CC3300", + "#CC3333", + "#CC3366", + "#CC3399", + "#CC33CC", + "#CC33FF", + "#CC6600", + "#CC6633", + "#CC9900", + "#CC9933", + "#CCCC00", + "#CCCC33", + "#FF0000", + "#FF0033", + "#FF0066", + "#FF0099", + "#FF00CC", + "#FF00FF", + "#FF3300", + "#FF3333", + "#FF3366", + "#FF3399", + "#FF33CC", + "#FF33FF", + "#FF6600", + "#FF6633", + "#FF9900", + "#FF9933", + "#FFCC00", + "#FFCC33" + ] + + /** + * Currently only WebKit-based Web Inspectors, Firefox >= v31, + * and the Firebug extension (any Firefox version) are known + * to support "%c" CSS customizations. + * + * TODO: add a `localStorage` variable to explicitly enable/disable colors + */ + + function useColors() { + // NB: In an Electron preload script, document will be defined but not fully + // initialized. Since we know we're in Chrome, we'll just detect this case + // explicitly + if ( + typeof window !== "undefined" && + window.process && + window.process.type === "renderer" + ) { + return true + } + + // Internet Explorer and Edge do not support colors. + if ( + typeof navigator !== "undefined" && + navigator.userAgent && + navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/) + ) { + return false + } + + // is webkit? http://stackoverflow.com/a/16459606/376773 + // document is undefined in react-native: https://github.com/facebook/react-native/pull/1632 + return ( + (typeof document !== "undefined" && + document.documentElement && + document.documentElement.style && + document.documentElement.style.WebkitAppearance) || + // is firebug? http://stackoverflow.com/a/398120/376773 + (typeof window !== "undefined" && + window.console && + (window.console.firebug || + (window.console.exception && window.console.table))) || + // is firefox >= v31? + // https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages + (typeof navigator !== "undefined" && + navigator.userAgent && + navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && + parseInt(RegExp.$1, 10) >= 31) || + // double check webkit in userAgent just in case we are in a worker + (typeof navigator !== "undefined" && + navigator.userAgent && + navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)) + ) + } + + /** + * Map %j to `JSON.stringify()`, since no Web Inspectors do that by default. + */ + + exports.formatters.j = function(v) { + try { + return JSON.stringify(v) + } catch (err) { + return "[UnexpectedJSONParseError]: " + err.message + } + } + + /** + * Colorize log arguments if enabled. + * + * @api public + */ + + function formatArgs(args) { + var useColors = this.useColors + + args[0] = + (useColors ? "%c" : "") + + this.namespace + + (useColors ? " %c" : " ") + + args[0] + + (useColors ? "%c " : " ") + + "+" + + exports.humanize(this.diff) + + if (!useColors) return + + var c = "color: " + this.color + args.splice(1, 0, c, "color: inherit") + + // the final "%c" is somewhat tricky, because there could be other + // arguments passed either before or after the %c, so we need to + // figure out the correct index to insert the CSS into + var index = 0 + var lastC = 0 + args[0].replace(/%[a-zA-Z%]/g, function(match) { + if ("%%" === match) return + index++ + if ("%c" === match) { + // we only are interested in the *last* %c + // (the user may have provided their own) + lastC = index + } + }) + + args.splice(lastC, 0, c) + } + + /** + * Invokes `console.log()` when available. + * No-op when `console.log` is not a "function". + * + * @api public + */ + + function log() { + // this hackery is required for IE8/9, where + // the `console.log` function doesn't have 'apply' + return ( + "object" === typeof console && + console.log && + Function.prototype.apply.call(console.log, console, arguments) + ) + } + + /** + * Save `namespaces`. + * + * @param {String} namespaces + * @api private + */ + + function save(namespaces) { + try { + if (null == namespaces) { + exports.storage.removeItem("debug") + } else { + exports.storage.debug = namespaces + } + } catch (e) {} + } + + /** + * Load `namespaces`. + * + * @return {String} returns the previously persisted debug modes + * @api private + */ + + function load() { + var r + try { + r = exports.storage.debug + } catch (e) {} + + // If debug isn't set in LS, and we're in Electron, try to load $DEBUG + if (!r && typeof process !== "undefined" && "env" in process) { + r = process.env.DEBUG + } + + return r + } + + /** + * Enable namespaces listed in `localStorage.debug` initially. + */ + + exports.enable(load()) + + /** + * Localstorage attempts to return the localstorage. + * + * This is necessary because safari throws + * when a user disables cookies/localstorage + * and you attempt to access it. + * + * @return {LocalStorage} + * @api private + */ + + function localstorage() { + try { + return window.localStorage + } catch (e) {} + } + }.call(this, require("_process"))) + }, + { "./debug": 254, _process: 120 } + ], + 254: [ + function(require, module, exports) { + /** + * This is the common logic for both the Node.js and web browser + * implementations of `debug()`. + * + * Expose `debug()` as the module. + */ + + exports = module.exports = createDebug.debug = createDebug[ + "default" + ] = createDebug + exports.coerce = coerce + exports.disable = disable + exports.enable = enable + exports.enabled = enabled + exports.humanize = require("ms") + + /** + * Active `debug` instances. + */ + exports.instances = [] + + /** + * The currently active debug mode names, and names to skip. + */ + + exports.names = [] + exports.skips = [] + + /** + * Map of special "%n" handling functions, for the debug "format" argument. + * + * Valid key names are a single, lower or upper-case letter, i.e. "n" and "N". + */ + + exports.formatters = {} + + /** + * Select a color. + * @param {String} namespace + * @return {Number} + * @api private + */ + + function selectColor(namespace) { + var hash = 0, + i + + for (i in namespace) { + hash = (hash << 5) - hash + namespace.charCodeAt(i) + hash |= 0 // Convert to 32bit integer + } + + return exports.colors[Math.abs(hash) % exports.colors.length] + } + + /** + * Create a debugger with the given `namespace`. + * + * @param {String} namespace + * @return {Function} + * @api public + */ + + function createDebug(namespace) { + var prevTime + + function debug() { + // disabled? + if (!debug.enabled) return + + var self = debug + + // set `diff` timestamp + var curr = +new Date() + var ms = curr - (prevTime || curr) + self.diff = ms + self.prev = prevTime + self.curr = curr + prevTime = curr + + // turn the `arguments` into a proper Array + var args = new Array(arguments.length) + for (var i = 0; i < args.length; i++) { + args[i] = arguments[i] + } + + args[0] = exports.coerce(args[0]) + + if ("string" !== typeof args[0]) { + // anything else let's inspect with %O + args.unshift("%O") + } + + // apply any `formatters` transformations + var index = 0 + args[0] = args[0].replace(/%([a-zA-Z%])/g, function( + match, + format + ) { + // if we encounter an escaped % then don't increase the array index + if (match === "%%") return match + index++ + var formatter = exports.formatters[format] + if ("function" === typeof formatter) { + var val = args[index] + match = formatter.call(self, val) + + // now we need to remove `args[index]` since it's inlined in the `format` + args.splice(index, 1) + index-- + } + return match + }) + + // apply env-specific formatting (colors, etc.) + exports.formatArgs.call(self, args) + + var logFn = debug.log || exports.log || console.log.bind(console) + logFn.apply(self, args) + } + + debug.namespace = namespace + debug.enabled = exports.enabled(namespace) + debug.useColors = exports.useColors() + debug.color = selectColor(namespace) + debug.destroy = destroy + + // env-specific initialization logic for debug instances + if ("function" === typeof exports.init) { + exports.init(debug) + } + + exports.instances.push(debug) + + return debug + } + + function destroy() { + var index = exports.instances.indexOf(this) + if (index !== -1) { + exports.instances.splice(index, 1) + return true + } else { + return false + } + } + + /** + * Enables a debug mode by namespaces. This can include modes + * separated by a colon and wildcards. + * + * @param {String} namespaces + * @api public + */ + + function enable(namespaces) { + exports.save(namespaces) + + exports.names = [] + exports.skips = [] + + var i + var split = (typeof namespaces === "string" + ? namespaces + : "" + ).split(/[\s,]+/) + var len = split.length + + for (i = 0; i < len; i++) { + if (!split[i]) continue // ignore empty strings + namespaces = split[i].replace(/\*/g, ".*?") + if (namespaces[0] === "-") { + exports.skips.push(new RegExp("^" + namespaces.substr(1) + "$")) + } else { + exports.names.push(new RegExp("^" + namespaces + "$")) + } + } + + for (i = 0; i < exports.instances.length; i++) { + var instance = exports.instances[i] + instance.enabled = exports.enabled(instance.namespace) + } + } + + /** + * Disable debug output. + * + * @api public + */ + + function disable() { + exports.enable("") + } + + /** + * Returns true if the given mode name is enabled, false otherwise. + * + * @param {String} name + * @return {Boolean} + * @api public + */ + + function enabled(name) { + if (name[name.length - 1] === "*") { + return true + } + var i, len + for (i = 0, len = exports.skips.length; i < len; i++) { + if (exports.skips[i].test(name)) { + return false + } + } + for (i = 0, len = exports.names.length; i < len; i++) { + if (exports.names[i].test(name)) { + return true + } + } + return false + } + + /** + * Coerce `val`. + * + * @param {Mixed} val + * @return {Mixed} + * @api private + */ + + function coerce(val) { + if (val instanceof Error) return val.stack || val.message + return val + } + }, + { ms: 183 } + ], + 255: [ + function(require, module, exports) { + ;(function(process) { + var Transform = require("readable-stream/transform"), + inherits = require("util").inherits, + xtend = require("xtend") + + function DestroyableTransform(opts) { + Transform.call(this, opts) + this._destroyed = false + } + + inherits(DestroyableTransform, Transform) + + DestroyableTransform.prototype.destroy = function(err) { + if (this._destroyed) return + this._destroyed = true + + var self = this + process.nextTick(function() { + if (err) self.emit("error", err) + self.emit("close") + }) + } + + // a noop _transform function + function noop(chunk, enc, callback) { + callback(null, chunk) + } + + // create a new export function, used by both the main export and + // the .ctor export, contains common logic for dealing with arguments + function through2(construct) { + return function(options, transform, flush) { + if (typeof options == "function") { + flush = transform + transform = options + options = {} + } + + if (typeof transform != "function") transform = noop + + if (typeof flush != "function") flush = null + + return construct(options, transform, flush) + } + } + + // main export, just make me a transform stream! + module.exports = through2(function(options, transform, flush) { + var t2 = new DestroyableTransform(options) + + t2._transform = transform + + if (flush) t2._flush = flush + + return t2 + }) + + // make me a reusable prototype that I can `new`, or implicitly `new` + // with a constructor call + module.exports.ctor = through2(function(options, transform, flush) { + function Through2(override) { + if (!(this instanceof Through2)) return new Through2(override) + + this.options = xtend(options, override) + + DestroyableTransform.call(this, this.options) + } + + inherits(Through2, DestroyableTransform) + + Through2.prototype._transform = transform + + if (flush) Through2.prototype._flush = flush + + return Through2 + }) + + module.exports.obj = through2(function(options, transform, flush) { + var t2 = new DestroyableTransform( + xtend({ objectMode: true, highWaterMark: 16 }, options) + ) + + t2._transform = transform + + if (flush) t2._flush = flush + + return t2 + }) + }.call(this, require("_process"))) + }, + { + _process: 120, + "readable-stream/transform": 203, + util: 164, + xtend: 274 + } + ], + 256: [ + function(require, module, exports) { + arguments[4][162][0].apply(exports, arguments) + }, + { dup: 162 } + ], + 257: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var util = require("./util") + + module.exports = function(length, itemType) { + if (typeof length !== "number") + throw new TypeError("length must be a number") + if (!util.isAbstractCodec(itemType)) + throw new TypeError("itemType is invalid codec") + + function _length(items) { + return util.size(items, itemType.encodingLength) + } + + return { + encode: function encode(value, buffer, offset) { + if (!Array.isArray(value)) + throw new TypeError("value must be an Array instance") + if (value.length !== length) + throw new RangeError("value.length is out of bounds") + if (!buffer) buffer = Buffer.allocUnsafe(_length(value)) + if (!offset) offset = 0 + encode.bytes = + util.size( + value, + function(item, index, loffset) { + itemType.encode(item, buffer, loffset) + return itemType.encode.bytes + }, + offset + ) - offset + return buffer + }, + decode: function decode(buffer, offset, end) { + if (!offset) offset = 0 + var items = new Array(length) + decode.bytes = + util.size( + items, + function(item, index, loffset) { + items[index] = itemType.decode(buffer, loffset, end) + return itemType.decode.bytes + }, + offset + ) - offset + return items + }, + encodingLength: function(value) { + if (!Array.isArray(value)) + throw new TypeError("value must be an Array instance") + if (value.length !== length) + throw new RangeError("value.length is out of bounds") + return _length(value) + } + } + } + }, + { "./util": 265, "safe-buffer": 205 } + ], + 258: [ + function(require, module, exports) { + "use strict" + var util = require("./util") + + module.exports = function(itemType, checkValue) { + if (!util.isAbstractCodec(itemType)) + throw new TypeError("itemType is invalid codec") + if (typeof checkValue !== "function") + throw new TypeError("checkValue must be a function") + + return { + encode: function encode(value, buffer, offset) { + checkValue(value) + buffer = itemType.encode(value, buffer, offset) + encode.bytes = itemType.encode.bytes + return buffer + }, + decode: function decode(buffer, offset, end) { + var value = itemType.decode(buffer, offset, end) + checkValue(value) + decode.bytes = itemType.decode.bytes + return value + }, + encodingLength: function encodingLength(value) { + checkValue(value) + return itemType.encodingLength(value) + } + } + } + }, + { "./util": 265 } + ], + 259: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + + module.exports = function(length) { + if (typeof length !== "number") + throw new TypeError("length must be a number") + + function _length() { + return length + } + + function encode(value, buffer, offset) { + if (!Buffer.isBuffer(value)) + throw new TypeError("value must be a Buffer instance") + if (value.length !== length) + throw new RangeError("value.length is out of bounds") + if (!buffer) return Buffer.from(value) + if (!offset) offset = 0 + if (offset + length > buffer.length) + throw new RangeError("destination buffer is too small") + value.copy(buffer, offset) + return buffer + } + + function decode(buffer, offset, end) { + if (!offset) offset = 0 + if (!end) end = buffer.length + if (offset + length > end) + throw new RangeError("not enough data for decode") + return Buffer.from(buffer.slice(offset, offset + length)) + } + + encode.bytes = decode.bytes = length + return { + encode: encode, + decode: decode, + encodingLength: _length + } + } + }, + { "safe-buffer": 205 } + ], + 260: [ + function(require, module, exports) { + "use strict" + module.exports = exports = require("./object") + + // numbers + var numbers = require("./numbers") + exports.Byte = numbers("UInt8", 1) + exports.Int8 = numbers("Int8", 1) + exports.UInt8 = numbers("UInt8", 1) + exports.Int16BE = numbers("Int16BE", 2) + exports.Int16LE = numbers("Int16LE", 2) + exports.UInt16BE = numbers("UInt16BE", 2) + exports.UInt16LE = numbers("UInt16LE", 2) + exports.Int32BE = numbers("Int32BE", 4) + exports.Int32LE = numbers("Int32LE", 4) + exports.UInt32BE = numbers("UInt32BE", 4) + exports.UInt32LE = numbers("UInt32LE", 4) + exports.Int64BE = numbers("Int64BE", 8) + exports.Int64LE = numbers("Int64LE", 8) + exports.UInt64BE = numbers("UInt64BE", 8) + exports.UInt64LE = numbers("UInt64LE", 8) + exports.FloatBE = numbers("FloatBE", 4) + exports.FloatLE = numbers("FloatLE", 4) + exports.DoubleBE = numbers("DoubleBE", 8) + exports.DoubleLE = numbers("DoubleLE", 8) + + // array & vararray & sequence + exports.Array = require("./array") + exports.VarArray = require("./vararray") + exports.Sequence = require("./sequence") + + // buffer & varbuffer + exports.Buffer = require("./buffer") + exports.VarBuffer = require("./varbuffer") + + // map + exports.VarMap = require("./varmap") + + // string & varstring + exports.String = require("./string") + exports.VarString = require("./varstring") + + // bound + exports.Bound = require("./bound") + + // value + exports.Value = require("./value") + }, + { + "./array": 257, + "./bound": 258, + "./buffer": 259, + "./numbers": 261, + "./object": 262, + "./sequence": 263, + "./string": 264, + "./value": 266, + "./vararray": 267, + "./varbuffer": 268, + "./varmap": 269, + "./varstring": 270 + } + ], + 261: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var int53 = require("int53") + + function getWrite(name) { + if (Buffer.prototype[name]) return Buffer.prototype[name] + return function(value, offset) { + return int53[name](value, this, offset) + } + } + + function getRead(name) { + if (Buffer.prototype[name]) return Buffer.prototype[name] + return function(offset) { + return int53[name](this, offset) + } + } + + module.exports = function build(type, length) { + var write = getWrite("write" + type) + var read = getRead("read" + type) + + function encode(value, buffer, offset) { + if (typeof value !== "number") + throw new TypeError("value must be a number") + if (!buffer) buffer = Buffer.allocUnsafe(length) + if (!offset) offset = 0 + write.call(buffer, value, offset) + return buffer + } + + function decode(buffer, offset, end) { + if (!offset) offset = 0 + if (!end) return read.call(buffer, offset) + return read.call(buffer.slice(offset, end), 0) + } + + function encodingLength() { + return length + } + + encode.bytes = decode.bytes = length + return { + encode: encode, + decode: decode, + encodingLength: encodingLength + } + } + }, + { int53: 174, "safe-buffer": 205 } + ], + 262: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var util = require("./util") + + module.exports = function(items) { + if (!Array.isArray(items)) + throw new TypeError("items must be an Array instance") + + // copy items for freezing + items = items.map(function(item) { + if (Array.isArray(item)) item = { name: item[0], type: item[1] } + if (!item || typeof item.name !== "string") + throw new TypeError('item missing "name" property') + if (!util.isAbstractCodec(item.type)) + throw new TypeError( + 'item "' + item.name + '" has invalid codec' + ) + return { name: item.name, type: item.type } + }) + + function _length(object) { + if (typeof object !== "object" || object === null) + throw new TypeError("Expected Object, got " + object) + + return items.reduce(function(a, item) { + var value = object[item.name] + return a + item.type.encodingLength(value) + }, 0) + } + + return { + encode: function encode(object, buffer, offset) { + if (!offset) offset = 0 + + var bytes = _length(object) + if (!buffer) buffer = Buffer.allocUnsafe(bytes) + else if (buffer.length - offset < bytes) + throw new RangeError("destination buffer is too small") + + items.forEach(function(item) { + var value = object[item.name] + + item.type.encode(value, buffer, offset) + offset += item.type.encode.bytes + }) + encode.bytes = bytes + + return buffer + }, + decode: function decode(buffer, offset, end) { + if (!offset) offset = 0 + + var result = {} + var start = offset + + items.forEach(function(item) { + var value = item.type.decode(buffer, offset, end) + offset += item.type.decode.bytes + + result[item.name] = value + }) + decode.bytes = offset - start + + return result + }, + encodingLength: _length + } + } + }, + { "./util": 265, "safe-buffer": 205 } + ], + 263: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var util = require("./util") + + module.exports = function(types) { + if (!Array.isArray(types)) + throw new TypeError("types must be an Array instance") + + // copy items for freezing + types = types.map(function(itemType) { + if (!util.isAbstractCodec(itemType)) + throw new TypeError("types Array has invalid codec") + return itemType + }) + + function _length(items) { + return util.size(types, function(itemType, index) { + return itemType.encodingLength(items[index]) + }) + } + + return { + encode: function encode(value, buffer, offset) { + if (!Array.isArray(value)) + throw new TypeError("value must be an Array instance") + if (value.length !== types.length) + throw new RangeError("value.length is out of bounds") + if (!buffer) buffer = Buffer.allocUnsafe(_length(value)) + if (!offset) offset = 0 + encode.bytes = + util.size( + types, + function(itemType, index, loffset) { + itemType.encode(value[index], buffer, loffset) + return itemType.encode.bytes + }, + offset + ) - offset + return buffer + }, + decode: function decode(buffer, offset, end) { + if (!offset) offset = 0 + var items = new Array(types.length) + decode.bytes = + util.size( + types, + function(itemType, index, loffset) { + items[index] = itemType.decode(buffer, loffset, end) + return itemType.decode.bytes + }, + offset + ) - offset + return items + }, + encodingLength: function(value) { + if (!Array.isArray(value)) + throw new TypeError("value must be an Array instance") + if (value.length !== types.length) + throw new RangeError("value.length is out of bounds") + return _length(value) + } + } + } + }, + { "./util": 265, "safe-buffer": 205 } + ], + 264: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var vsBuffer = require("./buffer") + + module.exports = function(length, encoding) { + if (typeof length !== "number") + throw new TypeError("length must be a number") + + var bufferCodec = vsBuffer(length) + if (!encoding) encoding = "utf-8" + if (!Buffer.isEncoding(encoding)) + throw new TypeError("invalid encoding") + + function encode(value, buffer, offset) { + if (typeof value !== "string") + throw new TypeError("value must be a string") + + if (Buffer.byteLength(value, encoding) !== length) + throw new RangeError("value.length is out of bounds") + if (!buffer) return Buffer.from(value, encoding) + if (!Buffer.isBuffer(buffer)) + throw new TypeError("buffer must be a Buffer instance") + + if (!offset) offset = 0 + if (offset + length > buffer.length) + throw new RangeError("destination buffer is too small") + + buffer.write(value, offset, length, encoding) + return buffer + } + + function decode(buffer, offset, end) { + return bufferCodec.decode(buffer, offset, end).toString(encoding) + } + + encode.bytes = decode.bytes = length + return { + encode: encode, + decode: decode, + encodingLength: bufferCodec.encodingLength + } + } + }, + { "./buffer": 259, "safe-buffer": 205 } + ], + 265: [ + function(require, module, exports) { + "use strict" + + // changed reduce: default value, auto sum + exports.size = function(items, iter, acc) { + if (acc === undefined) acc = 0 + for (var i = 0; i < items.length; ++i) acc += iter(items[i], i, acc) + return acc + } + + exports.isAbstractCodec = function(codec) { + return ( + codec && + typeof codec.encode === "function" && + typeof codec.decode === "function" && + typeof codec.encodingLength === "function" + ) + } + }, + {} + ], + 266: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var util = require("./util") + + module.exports = function(valueType, value) { + if (!util.isAbstractCodec(valueType)) + throw new TypeError("valueType is invalid codec") + + var valueBuffer = valueType.encode(value) + var encodeLength = valueBuffer.length + + return { + encode: function encode(valueParam, buffer, offset) { + if (valueParam !== undefined && valueParam !== value) + throw new TypeError( + "Value parameter must be undefined or equal" + ) + + if (!offset) offset = 0 + if (buffer) { + if (buffer.length - offset < encodeLength) + throw new RangeError("destination buffer is too small") + valueBuffer.copy(buffer, offset) + } else { + buffer = Buffer.from(valueBuffer) + } + + encode.bytes = encodeLength + return buffer + }, + decode: function decode(target, offset, end) { + if (!offset) offset = 0 + if (end === undefined) end = target.length + if (offset + encodeLength > end) + throw new RangeError("not enough data for decode") + // if (valueBuffer.compare(target, offset, offset + encodeLength) !== 0) throw new TypeError('Expected value ' + value) + // FIXME: replace with above when Node <5 is deprecated + for (var i = 0; i < encodeLength; ++i) { + if (valueBuffer[i] !== target[offset + i]) + throw new TypeError("Expected value " + value) + } + + decode.bytes = encodeLength + return value + }, + encodingLength: function encodingLength(valueParam) { + if (valueParam !== undefined) + throw new TypeError("Value parameter must be undefined") + return encodeLength + } + } + } + }, + { "./util": 265, "safe-buffer": 205 } + ], + 267: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var util = require("./util") + + module.exports = function(lengthType, itemType) { + if (!util.isAbstractCodec(lengthType)) + throw new TypeError("lengthType is invalid codec") + if (!util.isAbstractCodec(itemType)) + throw new TypeError("itemType is invalid codec") + + function _length(items) { + return util.size( + items, + itemType.encodingLength, + lengthType.encodingLength(items.length) + ) + } + + return { + encode: function encode(value, buffer, offset) { + if (!Array.isArray(value)) + throw new TypeError("value must be an Array instance") + if (!buffer) buffer = Buffer.allocUnsafe(_length(value)) + if (!offset) offset = 0 + lengthType.encode(value.length, buffer, offset) + encode.bytes = + util.size( + value, + function(item, index, loffset) { + itemType.encode(item, buffer, loffset) + return itemType.encode.bytes + }, + lengthType.encode.bytes + offset + ) - offset + return buffer + }, + decode: function decode(buffer, offset, end) { + if (!offset) offset = 0 + var items = new Array(lengthType.decode(buffer, offset, end)) + decode.bytes = + util.size( + items, + function(item, index, loffset) { + items[index] = itemType.decode(buffer, loffset, end) + return itemType.decode.bytes + }, + lengthType.decode.bytes + offset + ) - offset + return items + }, + encodingLength: function(value) { + if (!Array.isArray(value)) + throw new TypeError("value must be an Array instance") + return _length(value) + } + } + } + }, + { "./util": 265, "safe-buffer": 205 } + ], + 268: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var util = require("./util") + + module.exports = function(lengthType) { + if (!util.isAbstractCodec(lengthType)) + throw new TypeError("lengthType is invalid codec") + + function _length(value) { + if (!Buffer.isBuffer(value)) + throw new TypeError("value must be a Buffer instance") + + return lengthType.encodingLength(value.length) + value.length + } + + return { + encode: function encode(value, buffer, offset) { + if (!offset) offset = 0 + + var bytes = _length(value) + if (!buffer) buffer = Buffer.allocUnsafe(bytes) + else if (buffer.length - offset < bytes) + throw new RangeError("destination buffer is too small") + + lengthType.encode(value.length, buffer, offset) + offset += lengthType.encode.bytes + + value.copy(buffer, offset) + encode.bytes = bytes + + return buffer + }, + decode: function decode(buffer, offset, end) { + if (!offset) offset = 0 + if (!end) end = buffer.length + var start = offset + + var length = lengthType.decode(buffer, offset, end) + offset += lengthType.decode.bytes + + if (offset + length > end) + throw new RangeError("not enough data for decode") + + decode.bytes = offset + length - start + return Buffer.from(buffer.slice(offset, offset + length)) + }, + encodingLength: function encodingLength(value) { + return _length(value) + } + } + } + }, + { "./util": 265, "safe-buffer": 205 } + ], + 269: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var util = require("./util") + + function VarMap(lengthType, keyType, valueType) { + if (!util.isAbstractCodec(lengthType)) + throw new TypeError("lengthType is invalid codec") + if (!util.isAbstractCodec(keyType)) + throw new TypeError("keyType is invalid codec") + if (!util.isAbstractCodec(valueType)) + throw new TypeError("valueType is invalid codec") + + function _length(object) { + if (!object) throw new TypeError("Expected object") + + var size = 0 + var i = 0 + for (var key in object) { + size += keyType.encodingLength(key) + size += valueType.encodingLength(object[key]) + ++i + } + + _length.__count = i + return size + lengthType.encodingLength(i) + } + + return { + encode: function encode(object, buffer, offset) { + if (!offset) offset = 0 + + var bytes = _length(object) + var count = _length.__count + if (!buffer) buffer = Buffer.allocUnsafe(bytes) + else if (buffer.length - offset < bytes) + throw new RangeError("destination buffer is too small") + + lengthType.encode(count, buffer, offset) + offset += lengthType.encode.bytes + + for (var key in object) { + keyType.encode(key, buffer, offset) + offset += keyType.encode.bytes + + valueType.encode(object[key], buffer, offset) + offset += valueType.encode.bytes + } + + encode.bytes = bytes + return buffer + }, + decode: function decode(buffer, offset, end) { + if (!offset) offset = 0 + var result = {} + var count = lengthType.decode(buffer, offset) + offset += lengthType.encode.bytes + + for (var i = 0; i < count; ++i) { + var key = keyType.decode(buffer, offset, end) + offset += keyType.decode.bytes + + var value = valueType.decode(buffer, offset, end) + offset += valueType.decode.bytes + + result[key] = value + } + + decode.bytes = offset + return result + }, + encodingLength: _length + } + } + + module.exports = VarMap + }, + { "./util": 265, "safe-buffer": 205 } + ], + 270: [ + function(require, module, exports) { + "use strict" + var Buffer = require("safe-buffer").Buffer + var vsVarBuffer = require("./varbuffer") + var util = require("./util") + + module.exports = function(lengthType, encoding) { + if (!util.isAbstractCodec(lengthType)) + throw new TypeError("lengthType is invalid codec") + + var bufferCodec = vsVarBuffer(lengthType) + if (!encoding) encoding = "utf8" + if (!Buffer.isEncoding(encoding)) + throw new TypeError("invalid encoding") + + function _length(value) { + if (typeof value !== "string") + throw new TypeError("value must be a string") + + var valueLength = Buffer.byteLength(value, encoding) + return lengthType.encodingLength(value.length) + valueLength + } + + return { + encode: function encode(value, buffer, offset) { + if (typeof value !== "string") + throw new TypeError("value must be a string") + if (!offset) offset = 0 + + var valueLength = Buffer.byteLength(value, encoding) + var bytes = + lengthType.encodingLength(value.length) + valueLength + + if (!buffer) buffer = Buffer.allocUnsafe(bytes) + else if (!Buffer.isBuffer(buffer)) + throw new TypeError("buffer must be a Buffer instance") + if (offset + bytes > buffer.length) + throw new RangeError("destination buffer is too small") + + lengthType.encode(valueLength, buffer, offset) + offset += lengthType.encode.bytes + buffer.write(value, offset, valueLength, encoding) + + encode.bytes = bytes + return buffer + }, + decode: function decode(buffer, offset, end) { + var string = bufferCodec + .decode(buffer, offset, end) + .toString(encoding) + + decode.bytes = bufferCodec.decode.bytes + return string + }, + encodingLength: _length + } + } + }, + { "./util": 265, "./varbuffer": 268, "safe-buffer": 205 } + ], + 271: [ + function(require, module, exports) { + ;(function(process, global) { + "use strict" + + var Transform = require("readable-stream").Transform + var duplexify = require("duplexify") + var WS = require("ws") + var Buffer = require("safe-buffer").Buffer + + module.exports = WebSocketStream + + function buildProxy(options, socketWrite, socketEnd) { + var proxy = new Transform({ + objectMode: options.objectMode + }) + + proxy._write = socketWrite + proxy._flush = socketEnd + + return proxy + } + + function WebSocketStream(target, protocols, options) { + var stream, socket + + var isBrowser = process.title === "browser" + var isNative = !!global.WebSocket + var socketWrite = isBrowser ? socketWriteBrowser : socketWriteNode + + if ( + protocols && + !Array.isArray(protocols) && + "object" === typeof protocols + ) { + // accept the "options" Object as the 2nd argument + options = protocols + protocols = null + + if ( + typeof options.protocol === "string" || + Array.isArray(options.protocol) + ) { + protocols = options.protocol + } + } + + if (!options) options = {} + + if (options.objectMode === undefined) { + options.objectMode = !( + options.binary === true || options.binary === undefined + ) + } + + var proxy = buildProxy(options, socketWrite, socketEnd) + + if (!options.objectMode) { + proxy._writev = writev + } + + // browser only: sets the maximum socket buffer size before throttling + var bufferSize = options.browserBufferSize || 1024 * 512 + + // browser only: how long to wait when throttling + var bufferTimeout = options.browserBufferTimeout || 1000 + + // use existing WebSocket object that was passed in + if (typeof target === "object") { + socket = target + // otherwise make a new one + } else { + // special constructor treatment for native websockets in browsers, see + // https://github.com/maxogden/websocket-stream/issues/82 + if (isNative && isBrowser) { + socket = new WS(target, protocols) + } else { + socket = new WS(target, protocols, options) + } + + socket.binaryType = "arraybuffer" + } + + // was already open when passed in + if (socket.readyState === socket.OPEN) { + stream = proxy + } else { + stream = duplexify.obj() + socket.onopen = onopen + } + + stream.socket = socket + + socket.onclose = onclose + socket.onerror = onerror + socket.onmessage = onmessage + + proxy.on("close", destroy) + + var coerceToBuffer = !options.objectMode + + function socketWriteNode(chunk, enc, next) { + // avoid errors, this never happens unless + // destroy() is called + if (socket.readyState !== socket.OPEN) { + next() + return + } + + if (coerceToBuffer && typeof chunk === "string") { + chunk = Buffer.from(chunk, "utf8") + } + socket.send(chunk, next) + } + + function socketWriteBrowser(chunk, enc, next) { + if (socket.bufferedAmount > bufferSize) { + setTimeout( + socketWriteBrowser, + bufferTimeout, + chunk, + enc, + next + ) + return + } + + if (coerceToBuffer && typeof chunk === "string") { + chunk = Buffer.from(chunk, "utf8") + } + + try { + socket.send(chunk) + } catch (err) { + return next(err) + } + + next() + } + + function socketEnd(done) { + socket.close() + done() + } + + function onopen() { + stream.setReadable(proxy) + stream.setWritable(proxy) + stream.emit("connect") + } + + function onclose() { + stream.end() + stream.destroy() + } + + function onerror(err) { + stream.destroy(err) + } + + function onmessage(event) { + var data = event.data + if (data instanceof ArrayBuffer) data = Buffer.from(data) + else data = Buffer.from(data, "utf8") + proxy.push(data) + } + + function destroy() { + socket.close() + } + + // this is to be enabled only if objectMode is false + function writev(chunks, cb) { + var buffers = new Array(chunks.length) + for (var i = 0; i < chunks.length; i++) { + if (typeof chunks[i].chunk === "string") { + buffers[i] = Buffer.from(chunks[i], "utf8") + } else { + buffers[i] = chunks[i].chunk + } + } + + this._write(Buffer.concat(buffers), "binary", cb) + } + + return stream + } + }.call( + this, + require("_process"), + typeof global !== "undefined" + ? global + : typeof self !== "undefined" + ? self + : typeof window !== "undefined" + ? window + : {} + )) + }, + { + _process: 120, + duplexify: 170, + "readable-stream": 202, + "safe-buffer": 205, + ws: 272 + } + ], + 272: [ + function(require, module, exports) { + var ws = null + + if (typeof WebSocket !== "undefined") { + ws = WebSocket + } else if (typeof MozWebSocket !== "undefined") { + ws = MozWebSocket + } else if (typeof window !== "undefined") { + ws = window.WebSocket || window.MozWebSocket + } + + module.exports = ws + }, + {} + ], + 273: [ + function(require, module, exports) { + // Returns a wrapper function that returns a wrapped callback + // The wrapper function should do some stuff, and return a + // presumably different callback function. + // This makes sure that own properties are retained, so that + // decorations and such are not lost along the way. + module.exports = wrappy + function wrappy(fn, cb) { + if (fn && cb) return wrappy(fn)(cb) + + if (typeof fn !== "function") + throw new TypeError("need wrapper function") + + Object.keys(fn).forEach(function(k) { + wrapper[k] = fn[k] + }) + + return wrapper + + function wrapper() { + var args = new Array(arguments.length) + for (var i = 0; i < args.length; i++) { + args[i] = arguments[i] + } + var ret = fn.apply(this, args) + var cb = args[args.length - 1] + if (typeof ret === "function" && ret !== cb) { + Object.keys(cb).forEach(function(k) { + ret[k] = cb[k] + }) + } + return ret + } + } + }, + {} + ], + 274: [ + function(require, module, exports) { + module.exports = extend + + var hasOwnProperty = Object.prototype.hasOwnProperty + + function extend() { + var target = {} + + for (var i = 0; i < arguments.length; i++) { + var source = arguments[i] + + for (var key in source) { + if (hasOwnProperty.call(source, key)) { + target[key] = source[key] + } + } + } + + return target + } + }, + {} + ] + }, + {}, + [218] + )(218) +}) diff --git a/app/src/renderer/connectors/rpcWrapper.js b/app/src/renderer/connectors/rpcWrapper.js index fc6c50d9a9..3eb689342a 100644 --- a/app/src/renderer/connectors/rpcWrapper.js +++ b/app/src/renderer/connectors/rpcWrapper.js @@ -1,6 +1,6 @@ "use strict" -const RpcClient = require(`tendermint`) +const { RpcClient } = require(`../../helpers/tendermint.min.js`) // const { ipcRenderer } = require(`electron`) module.exports = function setRpcWrapper(container) { @@ -29,12 +29,14 @@ module.exports = function setRpcWrapper(container) { ? rpcURL.split(`//`)[1] : rpcURL + let https = rpcURL.startsWith(`https`) + if (container.rpc) { rpcWrapper.rpcDisconnect() } console.log(`init rpc with ` + rpcURL) - let newRpc = new RpcClient(`ws://${rpcHost}`) + let newRpc = new RpcClient(`${https ? `wss` : `ws`}://${rpcHost}`) rpcWrapper.rpcInfo.connected = true // we need to check immediately if the connection fails. later we will not be able to check this error newRpc.on(`error`, err => { diff --git a/app/src/renderer/vuex/modules/blockchain.js b/app/src/renderer/vuex/modules/blockchain.js index f0590dc7a3..81f52908a1 100644 --- a/app/src/renderer/vuex/modules/blockchain.js +++ b/app/src/renderer/vuex/modules/blockchain.js @@ -43,18 +43,9 @@ export default ({ node }) => { return blockMetaInfo } state.loading = true - blockMetaInfo = await new Promise((resolve, reject) => { - node.rpc.blockchain( - { minHeight: String(height), maxHeight: String(height) }, - (error, data) => { - if (error) { - reject(`Couldn't query block. ${error.message}`) - } else { - resolve(data.block_metas && data.block_metas[0]) - } - } - ) - }) + blockMetaInfo = await node.rpc + .blockchain({ minHeight: String(height), maxHeight: String(height) }) + .then(({ block_metas }) => (block_metas ? block_metas[0] : undefined)) state.loading = false commit(`setBlockMetas`, { @@ -84,8 +75,7 @@ export default ({ node }) => { state.error = error } - node.rpc.status((error, status) => { - if (error) return handleError(error) + node.rpc.status().then(status => { commit(`setBlockHeight`, status.sync_info.latest_block_height) if (status.sync_info.catching_up) { // still syncing, let's try subscribing again in 30 seconds @@ -98,12 +88,11 @@ export default ({ node }) => { commit(`setSyncing`, false) // only subscribe if the node is not catching up anymore - node.rpc.subscribe({ query: `tm.event = 'NewBlock'` }, error => { - if (error) return handleError(error) - + node.rpc.subscribe({ query: `tm.event = 'NewBlock'` }, () => { if (state.subscription === false) commit(`setSubscription`, true) }) }) + return true } } diff --git a/app/src/renderer/vuex/modules/connection.js b/app/src/renderer/vuex/modules/connection.js index 343fe65451..487ab1e366 100644 --- a/app/src/renderer/vuex/modules/connection.js +++ b/app/src/renderer/vuex/modules/connection.js @@ -73,9 +73,7 @@ export default function({ node }) { dispatch(`reconnect`) } }) - node.rpc.status((error, result) => { - if (error) return console.error(error) - let status = result + node.rpc.status().then(status => { dispatch(`setLastHeader`, { height: status.sync_info.latest_block_height, chain_id: status.node_info.network @@ -84,12 +82,8 @@ export default function({ node }) { node.rpc.subscribe( { query: `tm.event = 'NewBlockHeader'` }, - (error, event) => { - if (error) { - Sentry.captureException(error) - return console.error(`error subscribing to headers`, error) - } - dispatch(`setLastHeader`, event.data.value.header) + ({ header }) => { + dispatch(`setLastHeader`, header) } ) @@ -116,21 +110,15 @@ export default function({ node }) { pollRPCConnection({ state, dispatch }, timeout = 3000) { if (state.nodeTimeout || state.stopConnecting) return - state.nodeTimeout = setTimeout(() => { - // clear timeout doesn't work - if (state.nodeTimeout && !state.mocked) { - state.connected = false - state.nodeTimeout = null - dispatch(`pollRPCConnection`) - } - }, timeout) - node.rpc.status(error => { - if (error) { - Sentry.captureException(error) - console.error(`Couldn't get status via RPC:`, error) - return - } - + // state.nodeTimeout = setTimeout(() => { + // // clear timeout doesn't work + // if (state.nodeTimeout && !state.mocked) { + // state.connected = false + // state.nodeTimeout = null + // dispatch(`pollRPCConnection`) + // } + // }, timeout) + node.rpc.status().then(status => { state.nodeTimeout = null state.connected = true setTimeout(() => { diff --git a/app/src/renderer/vuex/modules/wallet.js b/app/src/renderer/vuex/modules/wallet.js index 3a5cd13d8b..58829806b0 100644 --- a/app/src/renderer/vuex/modules/wallet.js +++ b/app/src/renderer/vuex/modules/wallet.js @@ -140,17 +140,8 @@ export default ({ node }) => { state.subscribedRPC = node.rpc - function onTx(error, event) { - if (error) { - Sentry.captureException(error) - console.error(`error subscribing to transactions`, error) - return - } - console.log(`TX: ` + JSON.stringify(event.data)) - dispatch( - `queryWalletStateAfterHeight`, - event.data.value.TxResult.height + 1 - ) + function onTx(data) { + dispatch(`queryWalletStateAfterHeight`, data.TxResult.height + 1) } const queries = [ diff --git a/package.json b/package.json index ff187e8bb3..f8e535234c 100644 --- a/package.json +++ b/package.json @@ -130,7 +130,7 @@ "perfect-scrollbar": "1.3.0", "semver": "5.5.0", "shortid": "2.2.8", - "tendermint": "2.0.5", + "tendermint": "3.4.0", "toml": "2.3.3", "user-home": "2.0.0", "varint": "5.0.0", diff --git a/yarn.lock b/yarn.lock index 18bab45d2d..2b9752ef9a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1420,10 +1420,6 @@ browser-process-hrtime@^0.1.2: resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" integrity sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw== -browser-request@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/browser-request/-/browser-request-0.3.3.tgz#9ece5b5aca89a29932242e18bf933def9876cc17" - browser-resolve@^1.11.3: version "1.11.3" resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" @@ -2085,9 +2081,10 @@ create-ecdh@^4.0.0: bn.js "^4.1.0" elliptic "^6.0.0" -create-hash@^1.1.0, create-hash@^1.1.2: +create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.1.3: version "1.2.0" resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== dependencies: cipher-base "^1.0.1" inherits "^2.0.1" @@ -2610,7 +2607,17 @@ duplexer@0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" -duplexify@^3.2.0, duplexify@^3.6.0: +duplexify@^3.5.1: + version "3.6.1" + resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.6.1.tgz#b1a7a29c4abfd639585efaecce80d666b1e34125" + integrity sha512-vM58DwdnKmty+FSPzT14K9JXb90H+j5emaR4KYbr2KTIz00WHGbWOe5ghQTx233ZCLZtrGDALzKwcjEtSt35mA== + dependencies: + end-of-stream "^1.0.0" + inherits "^2.0.1" + readable-stream "^2.0.0" + stream-shift "^1.0.0" + +duplexify@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.6.0.tgz#592903f5d80b38d037220541264d69a198fb3410" dependencies: @@ -4254,6 +4261,11 @@ inquirer@~3.3.0: strip-ansi "^4.0.0" through "^2.3.6" +int53@^0.2.4: + version "0.2.4" + resolved "https://registry.yarnpkg.com/int53/-/int53-0.2.4.tgz#5ed8d7aad6c5c6567cae69aa7ffc4a109ee80f86" + integrity sha1-XtjXqtbFxlZ8rmmqf/xKEJ7oD4Y= + internal-ip@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-1.2.0.tgz#ae9fbf93b984878785d50a8de1b356956058cf5c" @@ -5113,6 +5125,13 @@ json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" +json-stable-stringify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" + integrity sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8= + dependencies: + jsonify "~0.0.0" + json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" @@ -5137,6 +5156,11 @@ jsonfile@^4.0.0: optionalDependencies: graceful-fs "^4.1.6" +jsonify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" + integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM= + jsprim@^1.2.2: version "1.4.1" resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" @@ -6113,10 +6137,6 @@ optionator@^0.8.1, optionator@^0.8.2: type-check "~0.3.2" wordwrap "~1.0.0" -options@>=0.0.5: - version "0.0.6" - resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" - original@>=0.0.5: version "1.0.1" resolved "https://registry.yarnpkg.com/original/-/original-1.0.1.tgz#b0a53ff42ba997a8c9cd1fb5daaeb42b9d693190" @@ -8011,6 +8031,11 @@ sumchecker@^2.0.1: dependencies: debug "^2.2.0" +supercop.js@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/supercop.js/-/supercop.js-2.0.1.tgz#1fcfe9fc5ff6e42aef4e3683636c8cb891594b18" + integrity sha1-H8/p/F/25CrvTjaDY2yMuJFZSxg= + supports-color@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" @@ -8167,18 +8192,22 @@ tar@^4: safe-buffer "^5.1.2" yallist "^3.0.2" -tendermint@2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/tendermint/-/tendermint-2.0.5.tgz#681014ea04c77f36b8dbaed2e3c430e4a24d6cbc" +tendermint@3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/tendermint/-/tendermint-3.4.0.tgz#0867048495301a98662c1a00049ecbe3e729a46d" + integrity sha512-am7uo+SvSQq3tT/DcrpNSDMqq3i6JWriSi5qAAJgChfGWb23Ms1dKYxae1pNptPbfiLsFR4qUkxGmeNBF8Owkg== dependencies: axios "^0.17.1" - browser-request "^0.3.3" camelcase "^4.0.0" + create-hash "^1.1.3" + debug "^3.1.0" + json-stable-stringify "^1.0.1" ndjson "^1.5.0" old "^0.1.3" pumpify "^1.3.5" - request "^2.79.0" - websocket-stream "^3.3.3" + supercop.js "^2.0.1" + varstruct "^6.1.1" + websocket-stream "^5.1.1" test-exclude@^3.3.0: version "3.3.0" @@ -8224,7 +8253,7 @@ throttleit@0.0.2: version "0.0.2" resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-0.0.2.tgz#cfedf88e60c00dd9697b61fdd2a8343a9b680eaf" -through2@^2.0.0, through2@^2.0.2, through2@^2.0.3: +through2@^2.0.2, through2@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" dependencies: @@ -8470,9 +8499,10 @@ uglifyjs-webpack-plugin@^0.4.6: uglify-js "^2.8.29" webpack-sources "^1.0.1" -ultron@1.0.x: - version "1.0.2" - resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" +ultron@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" + integrity sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og== union-value@^1.0.0: version "1.0.0" @@ -8633,6 +8663,14 @@ varint@5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/varint/-/varint-5.0.0.tgz#d826b89f7490732fabc0c0ed693ed475dcb29ebf" +varstruct@^6.1.1: + version "6.1.2" + resolved "https://registry.yarnpkg.com/varstruct/-/varstruct-6.1.2.tgz#9eba2115d9d86f6fd00daa72c3af2798e8506b24" + integrity sha512-tfdokSJxltuS0SD4FBRQl0JPJfZr5lVwL/5bDdwP/AYMh5ZaZxAKbgB4KOmIYDIzagCPDsq9pC8/2urFKnygbA== + dependencies: + int53 "^0.2.4" + safe-buffer "^5.1.1" + vary@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" @@ -8908,14 +8946,16 @@ websocket-extensions@>=0.1.1: version "0.1.3" resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29" -websocket-stream@^3.3.3: - version "3.3.3" - resolved "https://registry.yarnpkg.com/websocket-stream/-/websocket-stream-3.3.3.tgz#361da5404a337e60cfbc29b4a46368762679df0b" +websocket-stream@^5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/websocket-stream/-/websocket-stream-5.1.2.tgz#1c31c627bcdf34f1a9bdacc9daa15bfa4816d9ad" + integrity sha512-lchLOk435iDWs0jNuL+hiU14i3ERSrMA0IKSiJh7z6X/i4XNsutBZrtqu2CPOZuA4G/zabiqVAos0vW+S7GEVw== dependencies: - duplexify "^3.2.0" + duplexify "^3.5.1" inherits "^2.0.1" - through2 "^2.0.0" - ws "^1.0.1" + readable-stream "^2.3.3" + safe-buffer "^5.1.1" + ws "^3.2.0" xtend "^4.0.0" wgxpath@~1.0.0: @@ -9034,12 +9074,14 @@ write@^0.2.1: dependencies: mkdirp "^0.5.1" -ws@^1.0.1: - version "1.1.5" - resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz#cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51" +ws@^3.2.0: + version "3.3.3" + resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" + integrity sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA== dependencies: - options ">=0.0.5" - ultron "1.0.x" + async-limiter "~1.0.0" + safe-buffer "~5.1.0" + ultron "~1.1.0" ws@^5.2.0: version "5.2.2" From 699621ae67164339a0fd7a57fa7593bbee2bb418 Mon Sep 17 00:00:00 2001 From: Fabian Date: Sat, 5 Jan 2019 17:13:02 +0100 Subject: [PATCH 007/125] added ssl cert creation readme --- .gitignore | 2 ++ README.md | 24 ++++++++++++++++++++++++ package.json | 2 +- 3 files changed, 27 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e4aeebbbc7..5ce39dd70d 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,5 @@ yarn-error.log testArtifacts/* app/networks/local-testnet/* .idea/* +*.crt +*.key \ No newline at end of file diff --git a/README.md b/README.md index 440555feff..fa002fe2a7 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,30 @@ yarn install ## Voyager Development +### Generate SSL certificates + +To run Voyager please generate some ssl certificates for your local environment: + +```bash +openssl req -x509 -nodes -days 365 -newkey rsa:2048 \ + -keyout server_dev.key -out server_dev.crt \ + -subj "/C=US/ST=CA/L=Irvine/O=Acme Inc./CN=localhost" \ + -reqexts v3_req -reqexts SAN -extensions SAN \ + -config \ + <(echo -e ' + [req]\n + distinguished_name=req_distinguished_name\n + [req_distinguished_name]\n + [SAN]\n + subjectKeyIdentifier=hash\n + authorityKeyIdentifier=keyid:always,issuer:always\n + basicConstraints=CA:TRUE\n + subjectAltName=@alt_names + [alt_names] + DNS.1 = localhost + ') +``` + To run Voyager on the default testnet: ```bash diff --git a/package.json b/package.json index f8e535234c..827c4adee5 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "stargate": "/Users/fabo/Development/voyager/builds/Gaia/darwin_amd64/gaiacli rest-server --laddr 'tcp://localhost:9070' --home './builds/testnets/local-testnet/cli_home' --node 'http://localhost:26657' --chain-id 'local-testnet' --trust-node true", "frontend": "webpack-dev-server --hot --colors --config webpack.renderer.config.js --port 9080 --content-base app/dist --https", "backend": "yarn fullnode & yarn stargate", - "backend:fixed-https": "yarn fullnode & yarn stargate --ssl-certfile 'ssl/server_dev.crt' --ssl-keyfile 'ssl/server_dev.key'" + "backend:fixed-https": "yarn fullnode & yarn stargate --ssl-certfile 'server_dev.crt' --ssl-keyfile 'server_dev.key'" }, "devDependencies": { "@nodeguy/cli": "0.2.2", From 88d9f655daf4b3b1850de03afe911edc8fce47d5 Mon Sep 17 00:00:00 2001 From: Fabian Date: Sat, 5 Jan 2019 17:13:37 +0100 Subject: [PATCH 008/125] use nilyra node --- app/src/config.json | 4 ++-- app/src/renderer/connectors/lcdClient.js | 16 ++++++++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/app/src/config.json b/app/src/config.json index 6e15ed264f..a01723f4a5 100644 --- a/app/src/config.json +++ b/app/src/config.json @@ -7,8 +7,8 @@ "relay_port_prod": 9061, "default_tendermint_port": 26657, "default_network": "gaia-8001", - "node_lcd": "http://fabo.interblock.io:1317", - "node_rpc": "http://fabo.interblock.io:26657", + "node_lcd": "https://lcd.nylira.net", + "node_rpc": "https://rpc.nylira.net:443", "google_analytics_uid": "UA-51029217-3", "sentry_dsn": "https://4dee9f70a7d94cc0959a265c45902d84:cbf160384aab4cdeafbe9a08dee3b961@sentry.io/288169", "node_halted_timeout": 120000 diff --git a/app/src/renderer/connectors/lcdClient.js b/app/src/renderer/connectors/lcdClient.js index 2461d4abc6..d534c35bf0 100644 --- a/app/src/renderer/connectors/lcdClient.js +++ b/app/src/renderer/connectors/lcdClient.js @@ -3,7 +3,19 @@ const Client = (axios, localLcdURL, remoteLcdURL) => { async function request(method, path, data, useRemote) { const url = useRemote ? remoteLcdURL : localLcdURL - const result = await axios({ data, method, url: url + path }) + const result = await axios({ data, method, url: url + path }).catch( + async err => { + // HACK + if (err.response.data.startsWith(`failed to prove merkle proof`)) { + return { data: {} } + } + if (err.response.status === 502) { + // retry + return { data: await request(method, path, data, useRemote) } + } + throw err + } + ) return result.data } @@ -24,7 +36,7 @@ const Client = (axios, localLcdURL, remoteLcdURL) => { } } - let fetchAccount = argReq(`GET`, `/auth/accounts`) + let fetchAccount = argReq(`GET`, `/auth/accounts`, ``, true) const keys = { add: req(`POST`, `/keys`), From ac1d988c2cd0ee8fbd8db6454967a368f537d857 Mon Sep 17 00:00:00 2001 From: Fabian Date: Sat, 5 Jan 2019 17:14:59 +0100 Subject: [PATCH 009/125] correct wait for connection on app start --- app/src/renderer/main.js | 23 +++++++++++++++-------- app/src/renderer/vuex/modules/user.js | 1 - 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/app/src/renderer/main.js b/app/src/renderer/main.js index 89e0896f3d..c750999a37 100644 --- a/app/src/renderer/main.js +++ b/app/src/renderer/main.js @@ -133,14 +133,21 @@ async function main() { // ipcRenderer.send(`booted`) - // while (true) { - // try { - // await axios(`https://localhost:9070/keys`) - // break - // } catch (err) {} - // await sleep(1000) - // } - store.dispatch(`showInitialScreen`) + new Promise(async () => { + while (true) { + try { + await axios(config.node_lcd + `/node_version`) + break + } catch (err) {} + await sleep(1000) + } + + node.rpcConnect(config.node_rpc) + store.dispatch(`rpcSubscribe`) + store.dispatch(`subscribeToBlocks`) + + store.dispatch(`showInitialScreen`) + }) return new Vue({ router, diff --git a/app/src/renderer/vuex/modules/user.js b/app/src/renderer/vuex/modules/user.js index 7093b11e9a..36b67e5512 100644 --- a/app/src/renderer/vuex/modules/user.js +++ b/app/src/renderer/vuex/modules/user.js @@ -103,7 +103,6 @@ export default ({ node }) => { state.signedIn = true let keys = await loadKeyNames() - debugger let { address } = keys.find(({ name }) => name === account) state.address = address From 80b1132ea77d2f73a3716c4611e06183042eb2c5 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sat, 5 Jan 2019 17:36:37 +0100 Subject: [PATCH 010/125] updated webpack --- package.json | 9 +- webpack.renderer.config.js | 18 +- yarn.lock | 1233 ++++++++++++++++++++++++------------ 3 files changed, 845 insertions(+), 415 deletions(-) diff --git a/package.json b/package.json index 827c4adee5..8fae750a22 100644 --- a/package.json +++ b/package.json @@ -72,7 +72,7 @@ "express": "4.16.4", "express-mung": "0.5.1", "file-loader": "1.1.11", - "html-webpack-plugin": "2.30.1", + "html-webpack-plugin": "3.2.0", "http-server": "0.11.1", "husky": "0.14.3", "jest": "23.6.0", @@ -85,12 +85,8 @@ "prettier": "1.15.2", "pretty-quick": "1.4.1", "publish-release": "1.5.1", - "pug": "2.0.3", - "pug-plain-loader": "1.0.0", "spectron": "https://github.com/electron/spectron.git#c527b4e5fd8ab89ed0c6454a4dfb69f0980e9e1d", "style-loader": "0.21.0", - "stylus": "0.54.5", - "stylus-loader": "3.0.2", "swagger-express-middleware": "1.1.1", "tape": "4.9.0", "tape-promise": "2.0.1", @@ -102,7 +98,8 @@ "vue-style-loader": "4.1.0", "vue-template-compiler": "2.5.21", "vue-template-es2015-compiler": "1.6.0", - "webpack": "3.11.0", + "webpack": "4.28.3", + "webpack-cli": "3.2.0", "webpack-dev-server": "2.11.2" }, "dependencies": { diff --git a/webpack.renderer.config.js b/webpack.renderer.config.js index 135f2c088b..ff0c985126 100644 --- a/webpack.renderer.config.js +++ b/webpack.renderer.config.js @@ -29,24 +29,12 @@ let rendererConfig = { include: [path.resolve(__dirname, `app/src/renderer`)], exclude: /node_modules/ }, - { - test: /\.json$/, - use: `json-loader` - }, { test: /\.vue$/, use: { loader: `vue-loader` } }, - { - test: /\.pug$/, - loader: `pug-plain-loader` - }, - { - test: /\.styl(us)?$/, - use: [`style-loader`, `css-loader`, `stylus-loader`] - }, { test: /\.css$/, use: [`style-loader`, `css-loader`] @@ -97,11 +85,7 @@ let rendererConfig = { }), new webpack.NoEmitOnErrorsPlugin(), // warnings caused by websocket-stream, which has a server-part that is unavailable on the the client - new webpack.IgnorePlugin(/(bufferutil|utf-8-validate)/), - // put all modules in node_modules in chunk - new webpack.optimize.CommonsChunkPlugin({ - name: `vendor` - }) + new webpack.IgnorePlugin(/(bufferutil|utf-8-validate)/) ], output: { filename: `[name].js`, diff --git a/yarn.lock b/yarn.lock index 2b9752ef9a..e255f938df 100644 --- a/yarn.lock +++ b/yarn.lock @@ -107,16 +107,6 @@ "@sentry/types" "4.4.1" tslib "^1.9.3" -"@types/babel-types@*", "@types/babel-types@^7.0.0": - version "7.0.4" - resolved "https://registry.yarnpkg.com/@types/babel-types/-/babel-types-7.0.4.tgz#bfd5b0d0d1ba13e351dff65b6e52783b816826c8" - -"@types/babylon@^6.16.2": - version "6.16.4" - resolved "https://registry.yarnpkg.com/@types/babylon/-/babylon-6.16.4.tgz#d3df72518b34a6a015d0dc58745cd238b5bb8ad2" - dependencies: - "@types/babel-types" "*" - "@types/commander@^2.11.0": version "2.12.2" resolved "https://registry.yarnpkg.com/@types/commander/-/commander-2.12.2.tgz#183041a23842d4281478fa5d23c5ca78e6fd08ae" @@ -167,6 +157,159 @@ dom-event-types "^1.0.0" lodash "^4.17.4" +"@webassemblyjs/ast@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.7.11.tgz#b988582cafbb2b095e8b556526f30c90d057cace" + integrity sha512-ZEzy4vjvTzScC+SH8RBssQUawpaInUdMTYwYYLh54/s8TuT0gBLuyUnppKsVyZEi876VmmStKsUs28UxPgdvrA== + dependencies: + "@webassemblyjs/helper-module-context" "1.7.11" + "@webassemblyjs/helper-wasm-bytecode" "1.7.11" + "@webassemblyjs/wast-parser" "1.7.11" + +"@webassemblyjs/floating-point-hex-parser@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.11.tgz#a69f0af6502eb9a3c045555b1a6129d3d3f2e313" + integrity sha512-zY8dSNyYcgzNRNT666/zOoAyImshm3ycKdoLsyDw/Bwo6+/uktb7p4xyApuef1dwEBo/U/SYQzbGBvV+nru2Xg== + +"@webassemblyjs/helper-api-error@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.11.tgz#c7b6bb8105f84039511a2b39ce494f193818a32a" + integrity sha512-7r1qXLmiglC+wPNkGuXCvkmalyEstKVwcueZRP2GNC2PAvxbLYwLLPr14rcdJaE4UtHxQKfFkuDFuv91ipqvXg== + +"@webassemblyjs/helper-buffer@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.11.tgz#3122d48dcc6c9456ed982debe16c8f37101df39b" + integrity sha512-MynuervdylPPh3ix+mKZloTcL06P8tenNH3sx6s0qE8SLR6DdwnfgA7Hc9NSYeob2jrW5Vql6GVlsQzKQCa13w== + +"@webassemblyjs/helper-code-frame@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.11.tgz#cf8f106e746662a0da29bdef635fcd3d1248364b" + integrity sha512-T8ESC9KMXFTXA5urJcyor5cn6qWeZ4/zLPyWeEXZ03hj/x9weSokGNkVCdnhSabKGYWxElSdgJ+sFa9G/RdHNw== + dependencies: + "@webassemblyjs/wast-printer" "1.7.11" + +"@webassemblyjs/helper-fsm@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.11.tgz#df38882a624080d03f7503f93e3f17ac5ac01181" + integrity sha512-nsAQWNP1+8Z6tkzdYlXT0kxfa2Z1tRTARd8wYnc/e3Zv3VydVVnaeePgqUzFrpkGUyhUUxOl5ML7f1NuT+gC0A== + +"@webassemblyjs/helper-module-context@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.11.tgz#d874d722e51e62ac202476935d649c802fa0e209" + integrity sha512-JxfD5DX8Ygq4PvXDucq0M+sbUFA7BJAv/GGl9ITovqE+idGX+J3QSzJYz+LwQmL7fC3Rs+utvWoJxDb6pmC0qg== + +"@webassemblyjs/helper-wasm-bytecode@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.11.tgz#dd9a1e817f1c2eb105b4cf1013093cb9f3c9cb06" + integrity sha512-cMXeVS9rhoXsI9LLL4tJxBgVD/KMOKXuFqYb5oCJ/opScWpkCMEz9EJtkonaNcnLv2R3K5jIeS4TRj/drde1JQ== + +"@webassemblyjs/helper-wasm-section@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.11.tgz#9c9ac41ecf9fbcfffc96f6d2675e2de33811e68a" + integrity sha512-8ZRY5iZbZdtNFE5UFunB8mmBEAbSI3guwbrsCl4fWdfRiAcvqQpeqd5KHhSWLL5wuxo53zcaGZDBU64qgn4I4Q== + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/helper-buffer" "1.7.11" + "@webassemblyjs/helper-wasm-bytecode" "1.7.11" + "@webassemblyjs/wasm-gen" "1.7.11" + +"@webassemblyjs/ieee754@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.7.11.tgz#c95839eb63757a31880aaec7b6512d4191ac640b" + integrity sha512-Mmqx/cS68K1tSrvRLtaV/Lp3NZWzXtOHUW2IvDvl2sihAwJh4ACE0eL6A8FvMyDG9abes3saB6dMimLOs+HMoQ== + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.7.11.tgz#d7267a1ee9c4594fd3f7e37298818ec65687db63" + integrity sha512-vuGmgZjjp3zjcerQg+JA+tGOncOnJLWVkt8Aze5eWQLwTQGNgVLcyOTqgSCxWTR4J42ijHbBxnuRaL1Rv7XMdw== + dependencies: + "@xtuc/long" "4.2.1" + +"@webassemblyjs/utf8@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.7.11.tgz#06d7218ea9fdc94a6793aa92208160db3d26ee82" + integrity sha512-C6GFkc7aErQIAH+BMrIdVSmW+6HSe20wg57HEC1uqJP8E/xpMjXqQUxkQw07MhNDSDcGpxI9G5JSNOQCqJk4sA== + +"@webassemblyjs/wasm-edit@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.11.tgz#8c74ca474d4f951d01dbae9bd70814ee22a82005" + integrity sha512-FUd97guNGsCZQgeTPKdgxJhBXkUbMTY6hFPf2Y4OedXd48H97J+sOY2Ltaq6WGVpIH8o/TGOVNiVz/SbpEMJGg== + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/helper-buffer" "1.7.11" + "@webassemblyjs/helper-wasm-bytecode" "1.7.11" + "@webassemblyjs/helper-wasm-section" "1.7.11" + "@webassemblyjs/wasm-gen" "1.7.11" + "@webassemblyjs/wasm-opt" "1.7.11" + "@webassemblyjs/wasm-parser" "1.7.11" + "@webassemblyjs/wast-printer" "1.7.11" + +"@webassemblyjs/wasm-gen@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.11.tgz#9bbba942f22375686a6fb759afcd7ac9c45da1a8" + integrity sha512-U/KDYp7fgAZX5KPfq4NOupK/BmhDc5Kjy2GIqstMhvvdJRcER/kUsMThpWeRP8BMn4LXaKhSTggIJPOeYHwISA== + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/helper-wasm-bytecode" "1.7.11" + "@webassemblyjs/ieee754" "1.7.11" + "@webassemblyjs/leb128" "1.7.11" + "@webassemblyjs/utf8" "1.7.11" + +"@webassemblyjs/wasm-opt@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.11.tgz#b331e8e7cef8f8e2f007d42c3a36a0580a7d6ca7" + integrity sha512-XynkOwQyiRidh0GLua7SkeHvAPXQV/RxsUeERILmAInZegApOUAIJfRuPYe2F7RcjOC9tW3Cb9juPvAC/sCqvg== + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/helper-buffer" "1.7.11" + "@webassemblyjs/wasm-gen" "1.7.11" + "@webassemblyjs/wasm-parser" "1.7.11" + +"@webassemblyjs/wasm-parser@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.11.tgz#6e3d20fa6a3519f6b084ef9391ad58211efb0a1a" + integrity sha512-6lmXRTrrZjYD8Ng8xRyvyXQJYUQKYSXhJqXOBLw24rdiXsHAOlvw5PhesjdcaMadU/pyPQOJ5dHreMjBxwnQKg== + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/helper-api-error" "1.7.11" + "@webassemblyjs/helper-wasm-bytecode" "1.7.11" + "@webassemblyjs/ieee754" "1.7.11" + "@webassemblyjs/leb128" "1.7.11" + "@webassemblyjs/utf8" "1.7.11" + +"@webassemblyjs/wast-parser@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.7.11.tgz#25bd117562ca8c002720ff8116ef9072d9ca869c" + integrity sha512-lEyVCg2np15tS+dm7+JJTNhNWq9yTZvi3qEhAIIOaofcYlUp0UR5/tVqOwa/gXYr3gjwSZqw+/lS9dscyLelbQ== + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/floating-point-hex-parser" "1.7.11" + "@webassemblyjs/helper-api-error" "1.7.11" + "@webassemblyjs/helper-code-frame" "1.7.11" + "@webassemblyjs/helper-fsm" "1.7.11" + "@xtuc/long" "4.2.1" + +"@webassemblyjs/wast-printer@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.7.11.tgz#c4245b6de242cb50a2cc950174fdbf65c78d7813" + integrity sha512-m5vkAsuJ32QpkdkDOUPGSltrg8Cuk3KBx4YrmAGQwCZPRdUHXxG4phIOuuycLemHFr74sWL9Wthqss4fzdzSwg== + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/wast-parser" "1.7.11" + "@xtuc/long" "4.2.1" + +"@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + +"@xtuc/long@4.2.1": + version "4.2.1" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.1.tgz#5c85d662f76fa1d34575766c5dcd6615abcd30d8" + integrity sha512-FZdkNBDqBRHKQ2MEbSC17xnPFOhZxeJ2YGSfr2BKf3sujG49Qe3bB+rGCwQfIaA7WHnGeGkSijX4FuBCdrzW/g== + abab@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" @@ -183,17 +326,12 @@ accepts@~1.3.4, accepts@~1.3.5: mime-types "~2.1.18" negotiator "0.6.1" -acorn-dynamic-import@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" - dependencies: - acorn "^4.0.3" - -acorn-globals@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" +acorn-dynamic-import@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz#901ceee4c7faaef7e07ad2a47e890675da50a278" + integrity sha512-zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg== dependencies: - acorn "^4.0.4" + acorn "^5.0.0" acorn-globals@^4.1.0: version "4.3.0" @@ -218,19 +356,15 @@ acorn-walk@^6.0.1: resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.1.tgz#d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913" integrity sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw== -acorn@^3.0.4, acorn@^3.1.0: +acorn@^3.0.4: version "3.3.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" -acorn@^4.0.3, acorn@^4.0.4, acorn@~4.0.2: - version "4.0.13" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" - acorn@^5.0.0, acorn@^5.5.0: version "5.7.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8" -acorn@^5.5.3: +acorn@^5.5.3, acorn@^5.6.2: version "5.7.3" resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== @@ -245,6 +379,11 @@ agent-base@4, agent-base@^4.1.0: dependencies: es6-promisify "^5.0.0" +ajv-errors@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" + integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== + ajv-keywords@^3.1.0: version "3.2.0" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.2.0.tgz#e86b819c602cf8821ad637413698f1dec021847a" @@ -292,6 +431,11 @@ amdefine@>=0.0.4: version "1.0.1" resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" +ansi-escapes@^1.1.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" + integrity sha1-06ioOzGapneTZisT52HHkRQiMG4= + ansi-escapes@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" @@ -340,7 +484,7 @@ append-transform@^0.4.0: dependencies: default-require-extensions "^1.0.0" -aproba@^1.0.3: +aproba@^1.0.3, aproba@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" @@ -444,10 +588,6 @@ arrify@^1.0.0, arrify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" -asap@~2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" - asar@^0.14.0: version "0.14.3" resolved "https://registry.yarnpkg.com/asar/-/asar-0.14.3.tgz#c72a81542a48e3bca459fb1b07ee2b6adfae265d" @@ -508,7 +648,7 @@ async@^1.4.0, async@^1.5.2: version "1.5.2" resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" -async@^2.0.0, async@^2.1.2, async@^2.1.4: +async@^2.0.0, async@^2.1.4: version "2.6.1" resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" dependencies: @@ -1115,6 +1255,15 @@ babel-plugin-transform-strict-mode@^6.24.1: babel-runtime "^6.22.0" babel-types "^6.24.1" +babel-polyfill@6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" + integrity sha1-g2TKYt+Or7gwSZ9pkXdGbDsDSZ0= + dependencies: + babel-runtime "^6.22.0" + core-js "^2.4.0" + regenerator-runtime "^0.10.0" + babel-preset-es2015@6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" @@ -1328,10 +1477,15 @@ bl@~0.9.4: dependencies: readable-stream "~1.0.26" -bluebird@^3.0.5, bluebird@^3.1.1, bluebird@^3.4.7, bluebird@^3.5.0: +bluebird@^3.0.5, bluebird@^3.1.1, bluebird@^3.5.0: version "3.5.1" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" +bluebird@^3.5.3: + version "3.5.3" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.3.tgz#7d01c6f9616c9a51ab0f8c549a79dfe6ec33efa7" + integrity sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw== + bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: version "4.11.8" resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" @@ -1566,6 +1720,26 @@ bytes@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" +cacache@^11.0.2: + version "11.3.2" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.2.tgz#2d81e308e3d258ca38125b676b98b2ac9ce69bfa" + integrity sha512-E0zP4EPGDOaT2chM08Als91eYnf8Z+eH1awwwVsngUmgppfM5jjJ8l3z5vO5p5w/I3LsiXawb1sW0VY65pQABg== + dependencies: + bluebird "^3.5.3" + chownr "^1.1.1" + figgy-pudding "^3.5.1" + glob "^7.1.3" + graceful-fs "^4.1.15" + lru-cache "^5.1.1" + mississippi "^3.0.0" + mkdirp "^0.5.1" + move-concurrently "^1.0.1" + promise-inflight "^1.0.1" + rimraf "^2.6.2" + ssri "^6.0.1" + unique-filename "^1.1.1" + y18n "^4.0.0" + cache-base@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" @@ -1628,6 +1802,11 @@ camelcase@^4.0.0, camelcase@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" +camelcase@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42" + integrity sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA== + caniuse-api@^1.5.2: version "1.6.1" resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" @@ -1668,7 +1847,7 @@ chainsaw@~0.1.0: dependencies: traverse ">=0.3.0 <0.4" -chalk@^1.0.0, chalk@^1.1.3: +chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" dependencies: @@ -1686,12 +1865,6 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4.1: escape-string-regexp "^1.0.5" supports-color "^5.3.0" -character-parser@^2.1.1: - version "2.2.0" - resolved "https://registry.yarnpkg.com/character-parser/-/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0" - dependencies: - is-regex "^1.0.3" - chardet@^0.4.0: version "0.4.2" resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" @@ -1743,6 +1916,18 @@ chownr@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" +chownr@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" + integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== + +chrome-trace-event@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz#45a91bd2c20c9411f0963b5aaeb9a1b95e09cc48" + integrity sha512-xDbVgyfDTT2piup/h8dK/y4QZfJRSa73bw1WZ8b4XM1o7fsFubUVGYcE+1ANtOzJJELGpYoG2961z0Z6OAld9A== + dependencies: + tslib "^1.9.0" + chromium-pickle-js@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz#04a106672c18b085ab774d983dfa3ea138f22205" @@ -1783,12 +1968,6 @@ clean-css@4.1.x: dependencies: source-map "0.5.x" -clean-css@^4.1.11: - version "4.2.1" - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.1.tgz#2d411ef76b8569b6d0c84068dabe85b0aa5e5c17" - dependencies: - source-map "~0.6.0" - cli-cursor@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" @@ -1919,6 +2098,11 @@ commander@2.16.x, commander@^2.9.0, commander@~2.16.0: version "2.16.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.16.0.tgz#f16390593996ceb4f3eeb020b31d78528f7f8a50" +commander@~2.17.1: + version "2.17.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" + integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== + commondir@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" @@ -1962,7 +2146,7 @@ concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" -concat-stream@1.6.2: +concat-stream@1.6.2, concat-stream@^1.5.0: version "1.6.2" resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" dependencies: @@ -1998,15 +2182,6 @@ consolidate@^0.15.1: dependencies: bluebird "^3.1.1" -constantinople@^3.0.1: - version "3.1.2" - resolved "https://registry.yarnpkg.com/constantinople/-/constantinople-3.1.2.tgz#d45ed724f57d3d10500017a7d3a889c1381ae647" - dependencies: - "@types/babel-types" "^7.0.0" - "@types/babylon" "^6.16.2" - babel-types "^6.26.0" - babylon "^6.18.0" - constants-browserify@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" @@ -2038,6 +2213,18 @@ cookie@0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" +copy-concurrently@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" + integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A== + dependencies: + aproba "^1.1.1" + fs-write-stream-atomic "^1.0.8" + iferr "^0.1.5" + mkdirp "^0.5.1" + rimraf "^2.5.4" + run-queue "^1.0.0" + copy-descriptor@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" @@ -2118,7 +2305,7 @@ cross-spawn@^5.0.1, cross-spawn@^5.1.0: shebang-command "^1.2.0" which "^1.2.9" -cross-spawn@^6.0.5: +cross-spawn@^6.0.0, cross-spawn@^6.0.5: version "6.0.5" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" dependencies: @@ -2288,11 +2475,10 @@ currently-unhandled@^0.4.1: dependencies: array-find-index "^1.0.1" -d@1: - version "1.0.0" - resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" - dependencies: - es5-ext "^0.10.9" +cyclist@~0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640" + integrity sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA= dashdash@^1.12.0: version "1.14.1" @@ -2335,7 +2521,7 @@ debug@^4.0.1: dependencies: ms "^2.1.1" -decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: +decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" @@ -2458,6 +2644,11 @@ destroy@~1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" +detect-file@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" + integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc= + detect-indent@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" @@ -2531,10 +2722,6 @@ doctrine@^2.1.0: dependencies: esutils "^2.0.2" -doctypes@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" - dom-converter@~0.1: version "0.1.4" resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.1.4.tgz#a45ef5727b890c9bffe6d7c876e7b19cb0e17f3b" @@ -2607,7 +2794,7 @@ duplexer@0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" -duplexify@^3.5.1: +duplexify@^3.4.2, duplexify@^3.5.1: version "3.6.1" resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.6.1.tgz#b1a7a29c4abfd639585efaecce80d666b1e34125" integrity sha512-vM58DwdnKmty+FSPzT14K9JXb90H+j5emaR4KYbr2KTIz00WHGbWOe5ghQTx233ZCLZtrGDALzKwcjEtSt35mA== @@ -2822,20 +3009,27 @@ encodeurl@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" +encoding@^0.1.11: + version "0.1.12" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" + integrity sha1-U4tm8+5izRq1HsMjgp0flIDHS+s= + dependencies: + iconv-lite "~0.4.13" + end-of-stream@^1.0.0, end-of-stream@^1.1.0: version "1.4.1" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" dependencies: once "^1.4.0" -enhanced-resolve@^3.4.0: - version "3.4.1" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" +enhanced-resolve@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz#41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f" + integrity sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng== dependencies: graceful-fs "^4.1.2" memory-fs "^0.4.0" - object-assign "^4.0.1" - tapable "^0.2.7" + tapable "^1.0.0" entities@~1.1.1: version "1.1.1" @@ -2845,7 +3039,7 @@ env-paths@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-1.0.0.tgz#4168133b42bb05c38a35b1ae4397c8298ab369e0" -errno@^0.1.3: +errno@^0.1.3, errno@~0.1.7: version "0.1.7" resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" dependencies: @@ -2875,33 +3069,6 @@ es-to-primitive@^1.1.1: is-date-object "^1.0.1" is-symbol "^1.0.1" -es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: - version "0.10.45" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.45.tgz#0bfdf7b473da5919d5adf3bd25ceb754fccc3653" - dependencies: - es6-iterator "~2.0.3" - es6-symbol "~3.1.1" - next-tick "1" - -es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" - dependencies: - d "1" - es5-ext "^0.10.35" - es6-symbol "^3.1.1" - -es6-map@^0.1.3: - version "0.1.5" - resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" - dependencies: - d "1" - es5-ext "~0.10.14" - es6-iterator "~2.0.1" - es6-set "~0.1.5" - es6-symbol "~3.1.1" - event-emitter "~0.3.5" - es6-promise@^4.0.3, es6-promise@^4.0.5: version "4.2.4" resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.4.tgz#dc4221c2b16518760bd8c39a52d8f356fc00ed29" @@ -2912,32 +3079,6 @@ es6-promisify@^5.0.0: dependencies: es6-promise "^4.0.3" -es6-set@~0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" - dependencies: - d "1" - es5-ext "~0.10.14" - es6-iterator "~2.0.1" - es6-symbol "3.1.1" - event-emitter "~0.3.5" - -es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" - dependencies: - d "1" - es5-ext "~0.10.14" - -es6-weak-map@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" - dependencies: - d "1" - es5-ext "^0.10.14" - es6-iterator "^2.0.1" - es6-symbol "^3.1.1" - escape-html@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" @@ -2958,15 +3099,6 @@ escodegen@^1.9.1: optionalDependencies: source-map "~0.6.1" -escope@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" - dependencies: - es6-map "^0.1.3" - es6-weak-map "^2.0.1" - esrecurse "^4.1.0" - estraverse "^4.1.1" - eslint-config-prettier@3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-3.3.0.tgz#41afc8d3b852e757f06274ed6c44ca16f939a57d" @@ -3110,13 +3242,6 @@ etag@~1.8.1: version "1.8.1" resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" -event-emitter@~0.3.5: - version "0.3.5" - resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" - dependencies: - d "1" - es5-ext "~0.10.14" - eventemitter3@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.0.tgz#090b4d6cdbd645ed10bf750d4b5407942d7ba163" @@ -3168,6 +3293,19 @@ execa@^0.8.0: signal-exit "^3.0.0" strip-eof "^1.0.0" +execa@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + dependencies: + cross-spawn "^6.0.0" + get-stream "^4.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + exit@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" @@ -3197,6 +3335,13 @@ expand-range@^1.8.1: dependencies: fill-range "^2.1.0" +expand-tilde@^2.0.0, expand-tilde@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" + integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI= + dependencies: + homedir-polyfill "^1.0.1" + expect@^23.6.0: version "23.6.0" resolved "https://registry.yarnpkg.com/expect/-/expect-23.6.0.tgz#1e0c8d3ba9a581c87bd71fb9bc8862d443425f98" @@ -3304,7 +3449,7 @@ extend@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" -external-editor@^2.0.4: +external-editor@^2.0.1, external-editor@^2.0.4: version "2.2.0" resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" dependencies: @@ -3410,6 +3555,11 @@ fd-slicer@~1.0.1: dependencies: pend "~1.2.0" +figgy-pudding@^3.5.1: + version "3.5.1" + resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" + integrity sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w== + figures@^1.3.5: version "1.7.0" resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" @@ -3494,6 +3644,15 @@ find-cache-dir@^1.0.0: make-dir "^1.0.0" pkg-dir "^2.0.0" +find-cache-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.0.0.tgz#4c1faed59f45184530fb9d7fa123a4d04a98472d" + integrity sha512-LDUY6V1Xs5eFskUVYtIwatojt6+9xC9Chnlk/jYOOvn3FAFfSaWddxahDGyNHh0b2dMXa6YW2m0tk8TdVaXHlA== + dependencies: + commondir "^1.0.1" + make-dir "^1.0.0" + pkg-dir "^3.0.0" + find-up@^1.0.0, find-up@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" @@ -3507,6 +3666,23 @@ find-up@^2.0.0, find-up@^2.1.0: dependencies: locate-path "^2.0.0" +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +findup-sync@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc" + integrity sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw= + dependencies: + detect-file "^1.0.0" + is-glob "^3.1.0" + micromatch "^3.0.4" + resolve-dir "^1.0.1" + flat-cache@^1.2.1: version "1.3.0" resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" @@ -3520,6 +3696,14 @@ flatten@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" +flush-write-stream@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.0.3.tgz#c5d586ef38af6097650b49bc41b55fabb19f35bd" + integrity sha512-calZMC10u0FMUqoiunI2AiGIIUtUIvifNwkHhNupZH4cbNnW1Itkoh/Nf5HFYmDrwWPjrUxpkZT0KhuCq0jmGw== + dependencies: + inherits "^2.0.1" + readable-stream "^2.0.4" + follow-redirects@^1.0.0, follow-redirects@^1.2.5, follow-redirects@^1.3.0: version "1.5.1" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.1.tgz#67a8f14f5a1f67f962c2c46469c79eaec0a90291" @@ -3576,6 +3760,14 @@ fresh@0.5.2: version "0.5.2" resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" +from2@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" + integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= + dependencies: + inherits "^2.0.1" + readable-stream "^2.0.0" + fs-constants@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" @@ -3637,6 +3829,16 @@ fs-minipass@^1.2.5: dependencies: minipass "^2.2.1" +fs-write-stream-atomic@^1.0.8: + version "1.0.10" + resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" + integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk= + dependencies: + graceful-fs "^4.1.2" + iferr "^0.1.5" + imurmurhash "^0.1.4" + readable-stream "1 || 2" + fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" @@ -3700,6 +3902,13 @@ get-stream@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" +get-stream@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + dependencies: + pump "^3.0.0" + get-value@^2.0.3, get-value@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" @@ -3757,7 +3966,7 @@ glob@7.0.x: once "^1.3.0" path-is-absolute "^1.0.0" -glob@7.1.3: +glob@7.1.3, glob@^7.1.3: version "7.1.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" dependencies: @@ -3789,6 +3998,31 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2, glob@~7.1.1, gl once "^1.3.0" path-is-absolute "^1.0.0" +global-modules-path@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/global-modules-path/-/global-modules-path-2.3.1.tgz#e541f4c800a1a8514a990477b267ac67525b9931" + integrity sha512-y+shkf4InI7mPRHSo2b/k6ix6+NLDtyccYv86whhxrSGX9wjPX1VMITmrDbE1eh7zkzhiWtW2sHklJYoQ62Cxg== + +global-modules@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" + integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== + dependencies: + global-prefix "^1.0.1" + is-windows "^1.0.1" + resolve-dir "^1.0.0" + +global-prefix@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" + integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4= + dependencies: + expand-tilde "^2.0.2" + homedir-polyfill "^1.0.1" + ini "^1.3.4" + is-windows "^1.0.1" + which "^1.2.14" + globals@^11.7.0: version "11.9.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.9.0.tgz#bde236808e987f290768a93d065060d78e6ab249" @@ -3830,6 +4064,11 @@ graceful-fs@^4.1.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, version "4.1.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" +graceful-fs@^4.1.15: + version "4.1.15" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" + integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== + grapheme-splitter@^1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.3.tgz#6ffffdd44311862ada843f9cd3e7d05eda9f411c" @@ -3966,6 +4205,13 @@ home-path@^1.0.1: version "1.0.6" resolved "https://registry.yarnpkg.com/home-path/-/home-path-1.0.6.tgz#d549dc2465388a7f8667242c5b31588d29af29fc" +homedir-polyfill@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" + integrity sha1-TCu8inWJmP7r9e1oWA921GdotLw= + dependencies: + parse-passwd "^1.0.0" + hosted-git-info@^2.1.4: version "2.7.1" resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" @@ -4006,16 +4252,18 @@ html-minifier@^3.2.3: relateurl "0.2.x" uglify-js "3.4.x" -html-webpack-plugin@2.30.1: - version "2.30.1" - resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-2.30.1.tgz#7f9c421b7ea91ec460f56527d78df484ee7537d5" +html-webpack-plugin@3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz#b01abbd723acaaa7b37b6af4492ebda03d9dd37b" + integrity sha1-sBq71yOsqqeze2r0SS69oD2d03s= dependencies: - bluebird "^3.4.7" html-minifier "^3.2.3" loader-utils "^0.2.16" lodash "^4.17.3" pretty-error "^2.0.2" + tapable "^1.0.0" toposort "^1.0.0" + util.promisify "1.0.0" htmlparser2@~3.3.0: version "3.3.0" @@ -4133,7 +4381,7 @@ iconv-lite@0.4.23, iconv-lite@^0.4.17, iconv-lite@^0.4.4: dependencies: safer-buffer ">= 2.1.2 < 3" -iconv-lite@0.4.24, iconv-lite@^0.4.24: +iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@~0.4.13: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" dependencies: @@ -4153,6 +4401,11 @@ ieee754@^1.1.4: version "1.1.12" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.12.tgz#50bf24e5b9c8bb98af4964c941cdb0918da7b60b" +iferr@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" + integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= + ignore-walk@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" @@ -4174,6 +4427,14 @@ import-local@^1.0.0: pkg-dir "^2.0.0" resolve-cwd "^2.0.0" +import-local@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" + integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== + dependencies: + pkg-dir "^3.0.0" + resolve-cwd "^2.0.0" + imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" @@ -4211,6 +4472,25 @@ ini@^1.3.4, ini@~1.3.0: version "1.3.5" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" +inquirer@3.0.6: + version "3.0.6" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.0.6.tgz#e04aaa9d05b7a3cb9b0f407d04375f0447190347" + integrity sha1-4EqqnQW3o8ubD0B9BDdfBEcZA0c= + dependencies: + ansi-escapes "^1.1.0" + chalk "^1.0.0" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^2.0.1" + figures "^2.0.0" + lodash "^4.3.0" + mute-stream "0.0.7" + run-async "^2.2.0" + rx "^4.1.0" + string-width "^2.0.0" + strip-ansi "^3.0.0" + through "^2.3.6" + inquirer@^0.8.2: version "0.8.5" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.8.5.tgz#dbd740cf6ca3b731296a63ce6f6d961851f336df" @@ -4272,9 +4552,10 @@ internal-ip@1.2.0: dependencies: meow "^3.3.0" -interpret@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" +interpret@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" + integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== invariant@^2.2.2, invariant@^2.2.4: version "2.2.4" @@ -4286,6 +4567,11 @@ invert-kv@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" +invert-kv@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" + integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== + ip@^1.1.0, ip@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" @@ -4386,13 +4672,6 @@ is-equal-shallow@^0.1.3: dependencies: is-primitive "^2.0.0" -is-expression@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-expression/-/is-expression-3.0.0.tgz#39acaa6be7fd1f3471dc42c7416e61c24317ac9f" - dependencies: - acorn "~4.0.2" - object-assign "^4.0.1" - is-extendable@^0.1.0, is-extendable@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" @@ -4504,7 +4783,7 @@ is-primitive@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" -is-promise@^2.0.0, is-promise@^2.1.0: +is-promise@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" @@ -4512,7 +4791,7 @@ is-promise@~1, is-promise@~1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-1.0.1.tgz#31573761c057e33c2e91aab9e96da08cefbe76e5" -is-regex@^1.0.3, is-regex@^1.0.4: +is-regex@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" dependencies: @@ -4522,7 +4801,7 @@ is-resolvable@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" -is-stream@^1.1.0: +is-stream@^1.0.1, is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" @@ -4548,7 +4827,7 @@ is-utf8@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" -is-windows@^1.0.0, is-windows@^1.0.2: +is-windows@^1.0.0, is-windows@^1.0.1, is-windows@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" @@ -5026,10 +5305,6 @@ js-beautify@^1.6.14: mkdirp "~0.5.0" nopt "~3.0.1" -js-stringify@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db" - "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" @@ -5096,10 +5371,15 @@ jsesc@~0.5.0: version "0.5.0" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" -json-loader@0.5.7, json-loader@^0.5.4: +json-loader@0.5.7: version "0.5.7" resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" +json-parse-better-errors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + json-schema-ref-parser@^5.0.3: version "5.1.3" resolved "https://registry.yarnpkg.com/json-schema-ref-parser/-/json-schema-ref-parser-5.1.3.tgz#f86c5868f40898e69169e1bbc854725a4fd0e1ad" @@ -5170,13 +5450,6 @@ jsprim@^1.2.2: json-schema "0.2.3" verror "1.10.0" -jstransformer@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/jstransformer/-/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3" - dependencies: - is-promise "^2.0.0" - promise "^7.0.1" - keyboardevent-from-electron-accelerator@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/keyboardevent-from-electron-accelerator/-/keyboardevent-from-electron-accelerator-1.1.0.tgz#324614f6e33490c37ffc5be5876b3e85fe223c84" @@ -5236,6 +5509,13 @@ lcid@^1.0.0: dependencies: invert-kv "^1.0.0" +lcid@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" + integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== + dependencies: + invert-kv "^2.0.0" + left-pad@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" @@ -5305,14 +5585,18 @@ locate-path@^2.0.0: p-locate "^2.0.0" path-exists "^3.0.0" +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + lodash.camelcase@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" -lodash.clonedeep@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" - lodash.debounce@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" @@ -5388,6 +5672,13 @@ lru-cache@^4.0.1, lru-cache@^4.1.1, lru-cache@^4.1.2: pseudomap "^1.0.2" yallist "^2.1.2" +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + lsmod@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/lsmod/-/lsmod-1.0.0.tgz#9a00f76dca36eb23fa05350afe1b585d4299e64b" @@ -5405,6 +5696,13 @@ makeerror@1.0.x: dependencies: tmpl "1.0.x" +map-age-cleaner@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" + integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== + dependencies: + p-defer "^1.0.0" + map-cache@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" @@ -5462,6 +5760,15 @@ mem@^1.1.0: dependencies: mimic-fn "^1.0.0" +mem@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-4.0.0.tgz#6437690d9471678f6cc83659c00cbafcd6b0cdaf" + integrity sha512-WQxG/5xYc3tMbYLXoXPm81ET2WDULiU5FxbuIoNbJqLOOI8zehXFdZuiUEgfdrU2mVB1pxBZUGlYORSrpuJreA== + dependencies: + map-age-cleaner "^0.1.1" + mimic-fn "^1.0.0" + p-is-promise "^1.1.0" + memory-fs@^0.4.0, memory-fs@~0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" @@ -5527,7 +5834,7 @@ micromatch@^2.3.11: parse-glob "^3.0.4" regex-cache "^0.4.2" -micromatch@^3.1.4, micromatch@^3.1.8: +micromatch@^3.0.4, micromatch@^3.1.4, micromatch@^3.1.8: version "3.1.10" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" dependencies: @@ -5616,7 +5923,7 @@ minimist@0.0.8: version "0.0.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" -minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@~1.2.0: +minimist@1.2.0, minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" @@ -5637,6 +5944,22 @@ minizlib@^1.1.0: dependencies: minipass "^2.2.1" +mississippi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" + integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA== + dependencies: + concat-stream "^1.5.0" + duplexify "^3.4.2" + end-of-stream "^1.1.0" + flush-write-stream "^1.0.0" + from2 "^2.1.0" + parallel-transform "^1.1.0" + pump "^3.0.0" + pumpify "^1.3.3" + stream-each "^1.1.0" + through2 "^2.0.0" + mixin-deep@^1.2.0: version "1.3.1" resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" @@ -5684,6 +6007,18 @@ mousetrap@1.6.1: version "1.6.1" resolved "https://registry.yarnpkg.com/mousetrap/-/mousetrap-1.6.1.tgz#2a085f5c751294c75e7e81f6ec2545b29cbf42d9" +move-concurrently@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" + integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I= + dependencies: + aproba "^1.1.1" + copy-concurrently "^1.0.0" + fs-write-stream-atomic "^1.0.8" + mkdirp "^0.5.1" + rimraf "^2.5.4" + run-queue "^1.0.3" + mri@^1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/mri/-/mri-1.1.1.tgz#85aa26d3daeeeedf80dc5984af95cc5ca5cad9f1" @@ -5781,10 +6116,6 @@ neo-async@^2.5.0: version "2.5.1" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.5.1.tgz#acb909e327b1e87ec9ef15f41b8a269512ad41ee" -next-tick@1: - version "1.0.0" - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" - nib@1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/nib/-/nib-1.1.2.tgz#6a69ede4081b95c0def8be024a4c8ae0c2cbb6c7" @@ -5812,6 +6143,14 @@ node-cache@^4.1.1: clone "2.x" lodash "4.x" +node-fetch@1.6.3: + version "1.6.3" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" + integrity sha1-3CNO3WSJmC1Y6PDbT2lQKavNjAQ= + dependencies: + encoding "^0.1.11" + is-stream "^1.0.1" + node-fetch@^2.1.1: version "2.1.2" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.1.2.tgz#ab884e8e7e57e38a944753cec706f788d1768bb5" @@ -6109,10 +6448,30 @@ ono@^4.0.5, ono@^4.0.6: dependencies: format-util "^1.0.3" +opencollective@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/opencollective/-/opencollective-1.0.3.tgz#aee6372bc28144583690c3ca8daecfc120dd0ef1" + integrity sha1-ruY3K8KBRFg2kMPKja7PwSDdDvE= + dependencies: + babel-polyfill "6.23.0" + chalk "1.1.3" + inquirer "3.0.6" + minimist "1.2.0" + node-fetch "1.6.3" + opn "4.0.2" + opener@~1.4.0: version "1.4.3" resolved "https://registry.yarnpkg.com/opener/-/opener-1.4.3.tgz#5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8" +opn@4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95" + integrity sha1-erwi5kTf9jsKltWrfyeQwPAavJU= + dependencies: + object-assign "^4.0.1" + pinkie-promise "^2.0.0" + opn@^5.1.0: version "5.3.0" resolved "https://registry.yarnpkg.com/opn/-/opn-5.3.0.tgz#64871565c863875f052cfdf53d3e3cb5adb53b1c" @@ -6165,6 +6524,15 @@ os-locale@^2.0.0: lcid "^1.0.0" mem "^1.1.0" +os-locale@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" + integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== + dependencies: + execa "^1.0.0" + lcid "^2.0.0" + mem "^4.0.0" + os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.0, os-tmpdir@~1.0.1, os-tmpdir@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" @@ -6176,22 +6544,46 @@ osenv@^0.1.4: os-homedir "^1.0.0" os-tmpdir "^1.0.0" +p-defer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" + integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= + p-finally@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" +p-is-promise@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e" + integrity sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4= + p-limit@^1.1.0: version "1.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" dependencies: p-try "^1.0.0" +p-limit@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.1.0.tgz#1d5a0d20fb12707c758a655f6bbc4386b5930d68" + integrity sha512-NhURkNcrVB+8hNfLuysU8enY5xn2KXphsHBaC2YmRNTZRc7RWusw6apSpdEj3jo4CMb6W9nrF6tTnsJsJeyu6g== + dependencies: + p-try "^2.0.0" + p-locate@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" dependencies: p-limit "^1.1.0" +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + p-map@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" @@ -6200,10 +6592,24 @@ p-try@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" +p-try@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz#85080bb87c64688fa47996fe8f7dfbe8211760b1" + integrity sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ== + pako@~1.0.5: version "1.0.6" resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" +parallel-transform@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06" + integrity sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY= + dependencies: + cyclist "~0.2.2" + inherits "^2.0.3" + readable-stream "^2.1.5" + param-case@2.1.x: version "2.1.1" resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" @@ -6241,6 +6647,11 @@ parse-json@^2.2.0: dependencies: error-ex "^1.2.0" +parse-passwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" + integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= + parse5@4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" @@ -6352,6 +6763,13 @@ pkg-dir@^2.0.0: dependencies: find-up "^2.1.0" +pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + dependencies: + find-up "^3.0.0" + pkginfo@^0.3.0: version "0.3.1" resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.3.1.tgz#5b29f6a81f70717142e09e765bbeab97b4f81e21" @@ -6724,11 +7142,10 @@ progress@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" -promise@^7.0.1: - version "7.3.1" - resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" - dependencies: - asap "~2.0.3" +promise-inflight@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" + integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= promise@~1.3.0: version "1.3.0" @@ -6813,106 +7230,6 @@ publish-release@1.5.1: single-line-log "^0.4.1" string-editor "^0.1.0" -pug-attrs@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/pug-attrs/-/pug-attrs-2.0.3.tgz#a3095f970e64151f7bdad957eef55fb5d7905d15" - dependencies: - constantinople "^3.0.1" - js-stringify "^1.0.1" - pug-runtime "^2.0.4" - -pug-code-gen@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pug-code-gen/-/pug-code-gen-2.0.1.tgz#0951ec83225d74d8cfc476a7f99a259b5f7d050c" - dependencies: - constantinople "^3.0.1" - doctypes "^1.1.0" - js-stringify "^1.0.1" - pug-attrs "^2.0.3" - pug-error "^1.3.2" - pug-runtime "^2.0.4" - void-elements "^2.0.1" - with "^5.0.0" - -pug-error@^1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/pug-error/-/pug-error-1.3.2.tgz#53ae7d9d29bb03cf564493a026109f54c47f5f26" - -pug-filters@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/pug-filters/-/pug-filters-3.1.0.tgz#27165555bc04c236e4aa2b0366246dfa021b626e" - dependencies: - clean-css "^4.1.11" - constantinople "^3.0.1" - jstransformer "1.0.0" - pug-error "^1.3.2" - pug-walk "^1.1.7" - resolve "^1.1.6" - uglify-js "^2.6.1" - -pug-lexer@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/pug-lexer/-/pug-lexer-4.0.0.tgz#210c18457ef2e1760242740c5e647bd794cec278" - dependencies: - character-parser "^2.1.1" - is-expression "^3.0.0" - pug-error "^1.3.2" - -pug-linker@^3.0.5: - version "3.0.5" - resolved "https://registry.yarnpkg.com/pug-linker/-/pug-linker-3.0.5.tgz#9e9a7ae4005682d027deeb96b000f88eeb83a02f" - dependencies: - pug-error "^1.3.2" - pug-walk "^1.1.7" - -pug-load@^2.0.11: - version "2.0.11" - resolved "https://registry.yarnpkg.com/pug-load/-/pug-load-2.0.11.tgz#e648e57ed113fe2c1f45d57858ea2bad6bc01527" - dependencies: - object-assign "^4.1.0" - pug-walk "^1.1.7" - -pug-parser@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/pug-parser/-/pug-parser-5.0.0.tgz#e394ad9b3fca93123940aff885c06e44ab7e68e4" - dependencies: - pug-error "^1.3.2" - token-stream "0.0.1" - -pug-plain-loader@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/pug-plain-loader/-/pug-plain-loader-1.0.0.tgz#cef2a984c90251882109ec2d417a6b433aa6b42a" - dependencies: - loader-utils "^1.1.0" - -pug-runtime@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/pug-runtime/-/pug-runtime-2.0.4.tgz#e178e1bda68ab2e8c0acfc9bced2c54fd88ceb58" - -pug-strip-comments@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/pug-strip-comments/-/pug-strip-comments-1.0.3.tgz#f1559592206edc6f85310dacf4afb48a025af59f" - dependencies: - pug-error "^1.3.2" - -pug-walk@^1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/pug-walk/-/pug-walk-1.1.7.tgz#c00d5c5128bac5806bec15d2b7e7cdabe42531f3" - -pug@2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/pug/-/pug-2.0.3.tgz#71cba82537c95a5eab7ed04696e4221f53aa878e" - integrity sha1-ccuoJTfJWl6rftBGluQiH1Oqh44= - dependencies: - pug-code-gen "^2.0.1" - pug-filters "^3.1.0" - pug-lexer "^4.0.0" - pug-linker "^3.0.5" - pug-load "^2.0.11" - pug-parser "^5.0.0" - pug-runtime "^2.0.4" - pug-strip-comments "^1.0.3" - pump@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" @@ -6920,7 +7237,15 @@ pump@^2.0.0: end-of-stream "^1.1.0" once "^1.3.1" -pumpify@^1.3.5: +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pumpify@^1.3.3, pumpify@^1.3.5: version "1.5.1" resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" dependencies: @@ -7075,6 +7400,18 @@ read@~1.0.5: dependencies: mute-stream "~0.0.4" +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.2.9, readable-stream@^2.3.0, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: + version "2.3.6" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + readable-stream@1.0, "readable-stream@>=1.0.33-1 <1.1.0-0", readable-stream@~1.0.26: version "1.0.34" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" @@ -7093,18 +7430,6 @@ readable-stream@1.1.x, readable-stream@^1.1.8, readable-stream@~1.1.9: isarray "0.0.1" string_decoder "~0.10.x" -readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.2.9, readable-stream@^2.3.0, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6: - version "2.3.6" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - readdirp@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" @@ -7153,6 +7478,11 @@ regenerate@^1.2.1: version "1.4.0" resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" +regenerator-runtime@^0.10.0: + version "0.10.5" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" + integrity sha1-M2w+/BIgrc7dosn6tntaeVWjNlg= + regenerator-runtime@^0.11.0: version "0.11.1" resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" @@ -7331,6 +7661,14 @@ resolve-cwd@^2.0.0: dependencies: resolve-from "^3.0.0" +resolve-dir@^1.0.0, resolve-dir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" + integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M= + dependencies: + expand-tilde "^2.0.0" + global-modules "^1.0.0" + resolve-from@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" @@ -7392,6 +7730,13 @@ rimraf@^2.2.8, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.1: dependencies: glob "^7.0.5" +rimraf@^2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + ripemd160@^2.0.0, ripemd160@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" @@ -7409,6 +7754,13 @@ run-async@^2.2.0: dependencies: is-promise "^2.1.0" +run-queue@^1.0.0, run-queue@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" + integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec= + dependencies: + aproba "^1.1.1" + rx-lite-aggregates@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" @@ -7423,6 +7775,11 @@ rx@^2.4.3: version "2.5.3" resolved "https://registry.yarnpkg.com/rx/-/rx-2.5.3.tgz#21adc7d80f02002af50dae97fd9dbf248755f566" +rx@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" + integrity sha1-pfE/957zt0D+MKqAP7CfmIBdR4I= + rxjs@^6.1.0: version "6.3.3" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.3.tgz#3c6a7fa420e844a81390fb1158a9ec614f4bad55" @@ -7482,6 +7839,14 @@ schema-utils@^0.3.0: dependencies: ajv "^5.0.0" +schema-utils@^0.4.4: + version "0.4.7" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.7.tgz#ba74f597d2be2ea880131746ee17d0a093c68187" + integrity sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ== + dependencies: + ajv "^6.1.0" + ajv-keywords "^3.1.0" + schema-utils@^0.4.5: version "0.4.5" resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.5.tgz#21836f0608aac17b78f9e3e24daff14a5ca13a3e" @@ -7489,6 +7854,15 @@ schema-utils@^0.4.5: ajv "^6.1.0" ajv-keywords "^3.1.0" +schema-utils@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" + integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g== + dependencies: + ajv "^6.1.0" + ajv-errors "^1.0.0" + ajv-keywords "^3.1.0" + select-hose@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" @@ -7525,6 +7899,11 @@ send@0.16.2: range-parser "~1.2.0" statuses "~1.4.0" +serialize-javascript@^1.4.0: + version "1.6.1" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.6.1.tgz#4d1f697ec49429a847ca6f442a2a755126c4d879" + integrity sha512-A5MOagrPFga4YaKQSWHryl7AXvbQkEqpw4NNYMTNYUNV51bA8ABHgYFpqKx+YFFrw59xMV1qGH1R4AgoNIVgCw== + serve-index@^1.7.2: version "1.9.1" resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" @@ -7713,7 +8092,7 @@ source-map-support@^0.4.15: dependencies: source-map "^0.5.6" -source-map-support@^0.5.6: +source-map-support@^0.5.6, source-map-support@~0.5.6: version "0.5.9" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.9.tgz#41bc953b2534267ea2d605bccfa7bfa3111ced5f" integrity sha512-gR6Rw4MvUlYy83vP0vxoVNzM6t8MUXqNuRsuBmBHQDu1Fh6X015FrLdgoDKcNdkwGubozq0P4N0Q37UyFVr1EA== @@ -7741,7 +8120,7 @@ source-map@^0.4.4: dependencies: amdefine ">=0.0.4" -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: +source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" @@ -7841,6 +8220,13 @@ sshpk@^1.7.0: jsbn "~0.1.0" tweetnacl "~0.14.0" +ssri@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" + integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA== + dependencies: + figgy-pudding "^3.5.1" + stack-trace@0.0.10: version "0.0.10" resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" @@ -7878,6 +8264,14 @@ stream-browserify@^2.0.1: inherits "~2.0.1" readable-stream "^2.0.2" +stream-each@^1.1.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" + integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw== + dependencies: + end-of-stream "^1.1.0" + stream-shift "^1.0.0" + stream-http@^2.7.2: version "2.8.3" resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" @@ -7999,14 +8393,6 @@ style-loader@0.21.0: loader-utils "^1.1.0" schema-utils "^0.4.5" -stylus-loader@3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/stylus-loader/-/stylus-loader-3.0.2.tgz#27a706420b05a38e038e7cacb153578d450513c6" - dependencies: - loader-utils "^1.0.2" - lodash.clonedeep "^4.5.0" - when "~3.6.x" - stylus@0.54.5: version "0.54.5" resolved "https://registry.yarnpkg.com/stylus/-/stylus-0.54.5.tgz#42b9560931ca7090ce8515a798ba9e6aa3d6dc79" @@ -8046,18 +8432,19 @@ supports-color@^3.1.2, supports-color@^3.2.3: dependencies: has-flag "^1.0.0" -supports-color@^4.2.1: - version "4.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" - dependencies: - has-flag "^2.0.0" - supports-color@^5.1.0, supports-color@^5.3.0, supports-color@^5.4.0: version "5.4.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" dependencies: has-flag "^3.0.0" +supports-color@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + supports-color@~5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.0.1.tgz#1c5331f22250c84202805b2f17adf16699f3a39a" @@ -8127,9 +8514,10 @@ table@^5.0.2: slice-ansi "1.0.0" string-width "^2.1.1" -tapable@^0.2.7: - version "0.2.8" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" +tapable@^1.0.0, tapable@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.1.tgz#4d297923c5a72a42360de2ab52dadfaaec00018e" + integrity sha512-9I2ydhj8Z9veORCw5PRm4u9uebCn0mcCa6scWoNcbZ6dAtoo2618u9UUzxgmsCOreJpqDDuv61LvwofW7hLcBA== tape-promise@2.0.1: version "2.0.1" @@ -8209,6 +8597,29 @@ tendermint@3.4.0: varstruct "^6.1.1" websocket-stream "^5.1.1" +terser-webpack-plugin@^1.1.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.2.1.tgz#7545da9ae5f4f9ae6a0ac961eb46f5e7c845cc26" + integrity sha512-GGSt+gbT0oKcMDmPx4SRSfJPE1XaN3kQRWG4ghxKQw9cn5G9x6aCKSsgYdvyM0na9NJ4Drv0RG6jbBByZ5CMjw== + dependencies: + cacache "^11.0.2" + find-cache-dir "^2.0.0" + schema-utils "^1.0.0" + serialize-javascript "^1.4.0" + source-map "^0.6.1" + terser "^3.8.1" + webpack-sources "^1.1.0" + worker-farm "^1.5.2" + +terser@^3.8.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/terser/-/terser-3.14.1.tgz#cc4764014af570bc79c79742358bd46926018a32" + integrity sha512-NSo3E99QDbYSMeJaEk9YW2lTg3qS9V0aKGlb+PlOrei1X02r1wSBHCNX/O+yeTRFSWPKPIGj6MqvvdqV4rnVGw== + dependencies: + commander "~2.17.1" + source-map "~0.6.1" + source-map-support "~0.5.6" + test-exclude@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-3.3.0.tgz#7a17ca1239988c98367b0621456dbb7d4bc38977" @@ -8253,6 +8664,14 @@ throttleit@0.0.2: version "0.0.2" resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-0.0.2.tgz#cfedf88e60c00dd9697b61fdd2a8343a9b680eaf" +through2@^2.0.0: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + through2@^2.0.2, through2@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" @@ -8348,10 +8767,6 @@ to-regex@^3.0.1, to-regex@^3.0.2: regex-not "^1.0.2" safe-regex "^1.1.0" -token-stream@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/token-stream/-/token-stream-0.0.1.tgz#ceeefc717a76c4316f126d0b9dbaa55d7e7df01a" - toml@2.3.3: version "2.3.3" resolved "https://registry.yarnpkg.com/toml/-/toml-2.3.3.tgz#8d683d729577cb286231dfc7a8affe58d31728fb" @@ -8478,7 +8893,7 @@ uglify-js@3.4.x: commander "~2.16.0" source-map "~0.6.1" -uglify-js@^2.6, uglify-js@^2.6.1, uglify-js@^2.8.29: +uglify-js@^2.6: version "2.8.29" resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" dependencies: @@ -8491,14 +8906,6 @@ uglify-to-browserify@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" -uglifyjs-webpack-plugin@^0.4.6: - version "0.4.6" - resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" - dependencies: - source-map "^0.5.6" - uglify-js "^2.8.29" - webpack-sources "^1.0.1" - ultron@~1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" @@ -8527,6 +8934,20 @@ uniqs@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" +unique-filename@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" + integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== + dependencies: + unique-slug "^2.0.0" + +unique-slug@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.1.tgz#5e9edc6d1ce8fb264db18a507ef9bd8544451ca6" + integrity sha512-n9cU6+gITaVu7VGj1Z8feKMmfAjEAQGhwD9fE3zvpRRa0wEIx8ODYkVGfSc94M2OX00tUFV8wH3zYbm1I8mxFg== + dependencies: + imurmurhash "^0.1.4" + universalify@^0.1.0: version "0.1.2" resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" @@ -8612,7 +9033,7 @@ util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" -util.promisify@^1.0.0: +util.promisify@1.0.0, util.promisify@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== @@ -8648,6 +9069,11 @@ uuid@^3.0.1, uuid@^3.1.0, uuid@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" +v8-compile-cache@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.2.tgz#a428b28bb26790734c4fc8bc9fa106fccebf6a6c" + integrity sha512-1wFuMUIM16MDJRCrpbpuEPTUGmM5QMUg0cr3KFwra2XgOgFcPGDQHDh3CszSCD2Zewc/dh/pamNEW8CbfDebUw== + validate-npm-package-license@^3.0.1: version "3.0.3" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" @@ -8693,10 +9119,6 @@ vm-browserify@0.0.4: dependencies: indexof "0.0.1" -void-elements@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" - vue-click-outside@1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/vue-click-outside/-/vue-click-outside-1.0.7.tgz#cdd2b1605e3c4944784e1794eae4a12a0f700bd6" @@ -8809,9 +9231,10 @@ watch@~0.18.0: exec-sh "^0.2.0" minimist "^1.2.0" -watchpack@^1.4.0: +watchpack@^1.5.0: version "1.6.0" resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" + integrity sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA== dependencies: chokidar "^2.0.2" graceful-fs "^4.1.2" @@ -8859,6 +9282,25 @@ webidl-conversions@^4.0.2: resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== +webpack-cli@3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.2.0.tgz#9648cb6d65060f916e63c3d3b55387fb94c019fd" + integrity sha512-wxnUqH0P5ErcwGIKMZbUqix2FjuUmhpS2N9ukZAuGmk9+3vOt7VY2ZM/90W9UZetf6lOJuBNcsbeGU7uCTLdSA== + dependencies: + chalk "^2.4.1" + cross-spawn "^6.0.5" + enhanced-resolve "^4.1.0" + findup-sync "^2.0.0" + global-modules "^1.0.0" + global-modules-path "^2.3.0" + import-local "^2.0.0" + interpret "^1.1.0" + loader-utils "^1.1.0" + opencollective "^1.0.3" + supports-color "^5.5.0" + v8-compile-cache "^2.0.2" + yargs "^12.0.4" + webpack-dev-middleware@1.12.2: version "1.12.2" resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.12.2.tgz#f8fc1120ce3b4fc5680ceecb43d777966b21105e" @@ -8901,39 +9343,43 @@ webpack-dev-server@2.11.2: webpack-dev-middleware "1.12.2" yargs "6.6.0" -webpack-sources@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54" +webpack-sources@^1.1.0, webpack-sources@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.3.0.tgz#2a28dcb9f1f45fe960d8f1493252b5ee6530fa85" + integrity sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA== dependencies: source-list-map "^2.0.0" source-map "~0.6.1" -webpack@3.11.0: - version "3.11.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.11.0.tgz#77da451b1d7b4b117adaf41a1a93b5742f24d894" - dependencies: - acorn "^5.0.0" - acorn-dynamic-import "^2.0.0" +webpack@4.28.3: + version "4.28.3" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.28.3.tgz#8acef6e77fad8a01bfd0c2b25aa3636d46511874" + integrity sha512-vLZN9k5I7Nr/XB1IDG9GbZB4yQd1sPuvufMFgJkx0b31fi2LD97KQIjwjxE7xytdruAYfu5S0FLBLjdxmwGJCg== + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/helper-module-context" "1.7.11" + "@webassemblyjs/wasm-edit" "1.7.11" + "@webassemblyjs/wasm-parser" "1.7.11" + acorn "^5.6.2" + acorn-dynamic-import "^3.0.0" ajv "^6.1.0" ajv-keywords "^3.1.0" - async "^2.1.2" - enhanced-resolve "^3.4.0" - escope "^3.6.0" - interpret "^1.0.0" - json-loader "^0.5.4" - json5 "^0.5.1" + chrome-trace-event "^1.0.0" + enhanced-resolve "^4.1.0" + eslint-scope "^4.0.0" + json-parse-better-errors "^1.0.2" loader-runner "^2.3.0" loader-utils "^1.1.0" memory-fs "~0.4.1" + micromatch "^3.1.8" mkdirp "~0.5.0" + neo-async "^2.5.0" node-libs-browser "^2.0.0" - source-map "^0.5.3" - supports-color "^4.2.1" - tapable "^0.2.7" - uglifyjs-webpack-plugin "^0.4.6" - watchpack "^1.4.0" - webpack-sources "^1.0.1" - yargs "^8.0.2" + schema-utils "^0.4.4" + tapable "^1.1.0" + terser-webpack-plugin "^1.1.0" + watchpack "^1.5.0" + webpack-sources "^1.3.0" websocket-driver@>=0.5.1: version "0.7.0" @@ -8998,10 +9444,6 @@ whatwg-url@^7.0.0: tr46 "^1.0.1" webidl-conversions "^4.0.2" -when@~3.6.x: - version "3.6.4" - resolved "https://registry.yarnpkg.com/when/-/when-3.6.4.tgz#473b517ec159e2b85005497a13983f095412e34e" - whet.extend@~0.9.9: version "0.9.9" resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" @@ -9014,7 +9456,7 @@ which-module@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" -which@^1.2.12, which@^1.2.9, which@^1.3.0: +which@^1.2.12, which@^1.2.14, which@^1.2.9, which@^1.3.0: version "1.3.1" resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" dependencies: @@ -9030,13 +9472,6 @@ window-size@0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" -with@^5.0.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/with/-/with-5.1.1.tgz#fa4daa92daf32c4ea94ed453c81f04686b575dfe" - dependencies: - acorn "^3.1.0" - acorn-globals "^3.0.0" - wordwrap@0.0.2: version "0.0.2" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" @@ -9049,6 +9484,13 @@ wordwrap@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" +worker-farm@^1.5.2: + version "1.6.0" + resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.6.0.tgz#aecc405976fab5a95526180846f0dba288f3a4a0" + integrity sha512-6w+3tHbM87WnSWnENBUvA2pxJPLhQUg5LKwUQHq3r+XPhIM+Gh2R5ycbwPCyuGbNg+lPgdcnQUhuC02kJCvffQ== + dependencies: + errno "~0.1.7" + wrap-ansi@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" @@ -9117,6 +9559,11 @@ y18n@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" +"y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" + integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== + yallist@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" @@ -9125,18 +9572,20 @@ yallist@^3.0.0, yallist@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" +yargs-parser@^11.1.1: + version "11.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" + integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + yargs-parser@^4.2.0: version "4.2.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" dependencies: camelcase "^3.0.0" -yargs-parser@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" - dependencies: - camelcase "^4.1.0" - yargs-parser@^8.0.0: version "8.1.0" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" @@ -9186,23 +9635,23 @@ yargs@^11.0.0: y18n "^3.2.1" yargs-parser "^9.0.2" -yargs@^8.0.2: - version "8.0.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" +yargs@^12.0.4: + version "12.0.5" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" + integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== dependencies: - camelcase "^4.1.0" - cliui "^3.2.0" - decamelize "^1.1.1" + cliui "^4.0.0" + decamelize "^1.2.0" + find-up "^3.0.0" get-caller-file "^1.0.1" - os-locale "^2.0.0" - read-pkg-up "^2.0.0" + os-locale "^3.0.0" require-directory "^2.1.1" require-main-filename "^1.0.1" set-blocking "^2.0.0" string-width "^2.0.0" which-module "^2.0.0" - y18n "^3.2.1" - yargs-parser "^7.0.0" + y18n "^3.2.1 || ^4.0.0" + yargs-parser "^11.1.1" yargs@~3.10.0: version "3.10.0" From f608bab4b009f43c5ac0ea8038bb6b936e113b11 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sun, 6 Jan 2019 22:32:04 +0100 Subject: [PATCH 011/125] linted --- .eslintignore | 1 + .prettierignore | 1 + app/src/{helpers => dependencies}/bip32.js | 0 .../{helpers => dependencies}/bip39.min.js | 0 .../secp256k1.min.js | 0 .../tendermint.min.js | 0 app/src/helpers/wallet.js | 6 +-- .../components/common/TmSessionSignIn.vue | 9 ++-- .../components/common/TmSessionSignUp.vue | 1 - app/src/renderer/google-analytics.js | 3 +- app/src/renderer/vuex/modules/blockchain.js | 5 -- app/src/renderer/vuex/modules/connection.js | 28 ++++------- app/src/renderer/vuex/modules/wallet.js | 49 ++++-------------- tasks/runner.js | 50 ------------------- 14 files changed, 30 insertions(+), 123 deletions(-) rename app/src/{helpers => dependencies}/bip32.js (100%) rename app/src/{helpers => dependencies}/bip39.min.js (100%) rename app/src/{helpers => dependencies}/secp256k1.min.js (100%) rename app/src/{helpers => dependencies}/tendermint.min.js (100%) diff --git a/.eslintignore b/.eslintignore index 16e9fd0ddf..497761572e 100644 --- a/.eslintignore +++ b/.eslintignore @@ -4,3 +4,4 @@ /builds/ /testArtifacts /test/unit/coverage/ +/app/src/dependencies \ No newline at end of file diff --git a/.prettierignore b/.prettierignore index 960ed0e74e..bf9b5e384b 100644 --- a/.prettierignore +++ b/.prettierignore @@ -3,3 +3,4 @@ /package.json /test/unit/coverage/ /test/unit/tmp/ +/app/src/dependencies diff --git a/app/src/helpers/bip32.js b/app/src/dependencies/bip32.js similarity index 100% rename from app/src/helpers/bip32.js rename to app/src/dependencies/bip32.js diff --git a/app/src/helpers/bip39.min.js b/app/src/dependencies/bip39.min.js similarity index 100% rename from app/src/helpers/bip39.min.js rename to app/src/dependencies/bip39.min.js diff --git a/app/src/helpers/secp256k1.min.js b/app/src/dependencies/secp256k1.min.js similarity index 100% rename from app/src/helpers/secp256k1.min.js rename to app/src/dependencies/secp256k1.min.js diff --git a/app/src/helpers/tendermint.min.js b/app/src/dependencies/tendermint.min.js similarity index 100% rename from app/src/helpers/tendermint.min.js rename to app/src/dependencies/tendermint.min.js diff --git a/app/src/helpers/wallet.js b/app/src/helpers/wallet.js index bb46bdb5a0..e4b74d16f4 100644 --- a/app/src/helpers/wallet.js +++ b/app/src/helpers/wallet.js @@ -1,7 +1,7 @@ -const bip39 = require(`./bip39.min.js`) -const bip32 = require(`./bip32.js`) +const bip39 = require(`../dependencies/bip39.min.js`) +const bip32 = require(`../dependencies/bip32.js`) const bech32 = require(`bech32`) -const secp256k1 = require(`./secp256k1.min.js`) +const secp256k1 = require(`../dependencies/secp256k1.min.js`) import sha256 from "crypto-js/sha256" import ripemd160 from "crypto-js/ripemd160" import CryptoJS from "crypto-js" diff --git a/app/src/renderer/components/common/TmSessionSignIn.vue b/app/src/renderer/components/common/TmSessionSignIn.vue index 515879e8a4..0807282ada 100644 --- a/app/src/renderer/components/common/TmSessionSignIn.vue +++ b/app/src/renderer/components/common/TmSessionSignIn.vue @@ -104,12 +104,11 @@ export default { async onSubmit() { this.$v.$touch() if (this.$v.$error) return - // try { - let passwrodCorrect = await this.$store.dispatch(`testLogin`, { + let passwordCorrect = await this.$store.dispatch(`testLogin`, { password: this.fields.signInPassword, account: this.fields.signInName }) - if (passwrodCorrect) { + if (passwordCorrect) { this.$store.dispatch(`signIn`, { password: this.fields.signInPassword, account: this.fields.signInName @@ -120,11 +119,9 @@ export default { } else { this.$store.commit(`notifyError`, { title: `Signing In Failed`, - body: error.message + body: `The provided password is wrong.` }) } - // } catch (error) { - // } }, setDefaultAccount() { let prevAccountKey = localStorage.getItem(`prevAccountKey`) diff --git a/app/src/renderer/components/common/TmSessionSignUp.vue b/app/src/renderer/components/common/TmSessionSignUp.vue index 5e50a7b951..05952d9539 100644 --- a/app/src/renderer/components/common/TmSessionSignUp.vue +++ b/app/src/renderer/components/common/TmSessionSignUp.vue @@ -143,7 +143,6 @@ import TmFormStruct from "common/TmFormStruct" import TmField from "common/TmField" import TmFormMsg from "common/TmFormMsg" import FieldSeed from "common/TmFieldSeed" -import { mapGetters } from "vuex" export default { name: `tm-session-sign-up`, components: { diff --git a/app/src/renderer/google-analytics.js b/app/src/renderer/google-analytics.js index e4f486e74b..1375ea37d5 100644 --- a/app/src/renderer/google-analytics.js +++ b/app/src/renderer/google-analytics.js @@ -2,7 +2,8 @@ // import Analytics from "electron-ga" -module.exports = function(gaUID) { +module.exports = function() //gaUID +{ // TODO // const analytics = new Analytics(gaUID) // window.analytics = analytics diff --git a/app/src/renderer/vuex/modules/blockchain.js b/app/src/renderer/vuex/modules/blockchain.js index 81f52908a1..5765e5a6b1 100644 --- a/app/src/renderer/vuex/modules/blockchain.js +++ b/app/src/renderer/vuex/modules/blockchain.js @@ -70,11 +70,6 @@ export default ({ node }) => { if (state.subscribedRPC === node.rpc) return false commit(`setSubscribedRPC`, node.rpc) - function handleError(error) { - dispatch(`nodeHasHalted`) - state.error = error - } - node.rpc.status().then(status => { commit(`setBlockHeight`, status.sync_info.latest_block_height) if (status.sync_info.catching_up) { diff --git a/app/src/renderer/vuex/modules/connection.js b/app/src/renderer/vuex/modules/connection.js index 487ab1e366..3884415f6b 100644 --- a/app/src/renderer/vuex/modules/connection.js +++ b/app/src/renderer/vuex/modules/connection.js @@ -1,5 +1,3 @@ -// import { ipcRenderer, remote } from "electron" -import * as Sentry from "@sentry/browser" import { sleep } from "scripts/common.js" const config = require(`../../../config.json`) @@ -110,15 +108,15 @@ export default function({ node }) { pollRPCConnection({ state, dispatch }, timeout = 3000) { if (state.nodeTimeout || state.stopConnecting) return - // state.nodeTimeout = setTimeout(() => { - // // clear timeout doesn't work - // if (state.nodeTimeout && !state.mocked) { - // state.connected = false - // state.nodeTimeout = null - // dispatch(`pollRPCConnection`) - // } - // }, timeout) - node.rpc.status().then(status => { + state.nodeTimeout = setTimeout(() => { + // clear timeout doesn't work + if (state.nodeTimeout && !state.mocked) { + state.connected = false + state.nodeTimeout = null + dispatch(`pollRPCConnection`) + } + }, timeout) + node.rpc.status().then(() => { state.nodeTimeout = null state.connected = true setTimeout(() => { @@ -126,14 +124,6 @@ export default function({ node }) { }, timeout) }) }, - // approveNodeHash({ state }, hash) { - // state.approvalRequired = null - // ipcRenderer.send(`hash-approved`, hash) - // }, - // disapproveNodeHash({ state }, hash) { - // state.approvalRequired = null - // ipcRenderer.send(`hash-disapproved`, hash) - // }, async setMockedConnector({ state, dispatch, commit }, mocked) { state.mocked = mocked diff --git a/app/src/renderer/vuex/modules/wallet.js b/app/src/renderer/vuex/modules/wallet.js index 58829806b0..b3d27a8346 100644 --- a/app/src/renderer/vuex/modules/wallet.js +++ b/app/src/renderer/vuex/modules/wallet.js @@ -1,9 +1,7 @@ import * as Sentry from "@sentry/browser" -// import fs from "fs-extra" -// import { join } from "path" -// import { remote } from "electron" -// import { sleep } from "scripts/common.js" -// const root = remote.getGlobal(`root`) +import { path } from "../../../network.js" +// for now importing the fixed genesis for the network from the config.json +const genesis = require(path + `genesis.json`) export default ({ node }) => { let emptyState = { @@ -84,40 +82,15 @@ export default ({ node }) => { state.error = error } }, - async loadDenoms({ commit, state }, maxIterations = 10) { - // // read genesis.json to get default denoms - - // // wait for genesis.json to exist - // let genesisPath = join(root, `genesis.json`) - - // // wait for the genesis and load it - // // at some point give up and throw an error - // while (maxIterations) { - // try { - // await fs.pathExists(genesisPath) - // break - // } catch (error) { - // console.log(`waiting for genesis`, error, genesisPath) - // maxIterations-- - // await sleep(500) - // } - // } - // if (maxIterations === 0) { - // const error = new Error(`Couldn't load genesis at path ${genesisPath}`) - // Sentry.captureException(error) - // state.error = error - // return - // } - - // let genesis = await fs.readJson(genesisPath) + async loadDenoms({ commit }) { let denoms = [] - // for (let account of genesis.app_state.accounts) { - // if (account.coins) { - // for (let { denom } of account.coins) { - // denoms.push(denom) - // } - // } - // } + for (let account of genesis.app_state.accounts) { + if (account.coins) { + for (let { denom } of account.coins) { + denoms.push(denom) + } + } + } commit(`setDenoms`, denoms) }, diff --git a/tasks/runner.js b/tasks/runner.js index 04c5335156..3d83faf094 100644 --- a/tasks/runner.js +++ b/tasks/runner.js @@ -1,12 +1,9 @@ "use strict" -const fs = require(`fs`) const config = require(`../app/src/config`) const spawn = require(`child_process`).spawn const path = require(`path`) -const { cleanExitChild } = require(`./common.js`) let YELLOW = `\x1b[33m` -let BLUE = `\x1b[34m` let END = `\x1b[0m` let NPM_BIN = path.join(path.dirname(__dirname), `node_modules`, `.bin`) @@ -51,50 +48,3 @@ module.exports = function startRendererServer() { child.stdout.on(`data`, waitForCompile) }) } - -// module.exports = async function(networkPath, extendedEnv = {}) { -// if (!fs.existsSync(networkPath)) { -// console.error( -// `The network configuration for the network you want to connect to doesn't exist. Have you run \`yarn build:testnets\` to download the latest configurations?` -// ) -// process.exit() -// } - -// let renderProcess = await startRendererServer() - -// console.log( -// `${BLUE}Starting electron...\n (network path: ${networkPath})\n${END}` -// ) -// const packageJSON = require(`../package.json`) -// const voyagerVersion = packageJSON.version -// const gaiaVersion = fs -// .readFileSync(path.join(networkPath, `gaiaversion.txt`)) -// .toString() -// .split(`-`)[0] -// let env = Object.assign( -// {}, -// { -// NODE_ENV: `development`, -// COSMOS_NETWORK: networkPath, -// GAIA_VERSION: gaiaVersion, -// VOYAGER_VERSION: voyagerVersion -// }, -// extendedEnv, -// process.env -// ) -// let mainProcess = run( -// `electron app/src/main/index.dev.js`, -// BLUE, -// `electron`, -// env -// ) - -// // terminate running processes on exit of main process -// mainProcess.on(`exit`, async () => { -// await cleanExitChild(renderProcess) -// // webpack-dev-server spins up an own process we have no access to. so we kill all processes on our port -// process.exit(0) -// }) - -// return [renderProcess, mainProcess] -// } From b8c200e27781a69441f85414cc3ddfa836390bc5 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sun, 6 Jan 2019 22:48:06 +0100 Subject: [PATCH 012/125] updated webpack dev server to work again --- package.json | 2 +- yarn.lock | 337 +++++++++++++++++++++++++++++++-------------------- 2 files changed, 206 insertions(+), 133 deletions(-) diff --git a/package.json b/package.json index 8fae750a22..03bf0d2c1f 100644 --- a/package.json +++ b/package.json @@ -100,7 +100,7 @@ "vue-template-es2015-compiler": "1.6.0", "webpack": "4.28.3", "webpack-cli": "3.2.0", - "webpack-dev-server": "2.11.2" + "webpack-dev-server": "3.1.14" }, "dependencies": { "@sentry/browser": "4.4.1", diff --git a/yarn.lock b/yarn.lock index e255f938df..e3d11afad9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -431,6 +431,11 @@ amdefine@>=0.0.4: version "1.0.1" resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" +ansi-colors@^3.0.0: + version "3.2.3" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.3.tgz#57d35b8686e851e2cc04c403f1c00203976a1813" + integrity sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw== + ansi-escapes@^1.1.0: version "1.4.0" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" @@ -559,13 +564,6 @@ array-flatten@^2.1.0: version "2.1.1" resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.1.tgz#426bb9da84090c1838d812c8150af20a8331e296" -array-includes@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" - dependencies: - define-properties "^1.1.2" - es-abstract "^1.7.0" - array-union@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" @@ -1794,10 +1792,6 @@ camelcase@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" -camelcase@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" - camelcase@^4.0.0, camelcase@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" @@ -1990,14 +1984,6 @@ cliui@^2.1.0: right-align "^0.1.1" wordwrap "0.0.2" -cliui@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" - dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" - wrap-ansi "^2.0.0" - cliui@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" @@ -2509,22 +2495,43 @@ debug@*, debug@3.1.0, debug@^3.0.0, debug@^3.1.0: dependencies: ms "2.0.0" -debug@2.6.9, debug@^2.1.2, debug@^2.1.3, debug@^2.2.0, debug@^2.3.3, debug@^2.6.6, debug@^2.6.8, debug@^2.6.9: +debug@2.6.9, debug@^2.1.2, debug@^2.1.3, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" dependencies: ms "2.0.0" +debug@^3.2.5: + version "3.2.6" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" + integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== + dependencies: + ms "^2.1.1" + debug@^4.0.1: version "4.1.0" resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.0.tgz#373687bffa678b38b1cd91f861b63850035ddc87" dependencies: ms "^2.1.1" +debug@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" + integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== + dependencies: + ms "^2.1.1" + decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" +decamelize@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-2.0.0.tgz#656d7bbc8094c4c788ea53c5840908c9c7d063c7" + integrity sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg== + dependencies: + xregexp "4.0.0" + decode-uri-component@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" @@ -2557,6 +2564,14 @@ deepmerge@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-2.0.1.tgz#25c1c24f110fb914f80001b925264dd77f3f4312" +default-gateway@^2.6.0: + version "2.7.2" + resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-2.7.2.tgz#b7ef339e5e024b045467af403d50348db4642d0f" + integrity sha512-lAc4i9QJR0YHSDFdzeBQKfZ1SRDG3hsJNEkrpcZa8QhBfidLAilT60BDEIVUUGqosFp425KOgB3uYqcnQrWafQ== + dependencies: + execa "^0.10.0" + ip-regex "^2.1.0" + default-require-extensions@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" @@ -2664,9 +2679,10 @@ detect-newline@^2.1.0: resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I= -detect-node@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.3.tgz#a2033c09cc8e158d37748fbde7507832bd6ce127" +detect-node@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" + integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw== deterministic-zip@1.0.5: version "1.0.5" @@ -3051,7 +3067,7 @@ error-ex@^1.2.0: dependencies: is-arrayish "^0.2.1" -es-abstract@^1.5.0, es-abstract@^1.5.1, es-abstract@^1.7.0: +es-abstract@^1.5.0, es-abstract@^1.5.1: version "1.12.0" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" dependencies: @@ -3250,11 +3266,12 @@ events@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" -eventsource@0.1.6: - version "0.1.6" - resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" +eventsource@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-1.0.7.tgz#8fbc72c93fcd34088090bc0a4e64f4b5cee6d8d0" + integrity sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ== dependencies: - original ">=0.0.5" + original "^1.0.0" evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: version "1.0.3" @@ -3269,6 +3286,19 @@ exec-sh@^0.2.0: dependencies: merge "^1.2.0" +execa@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.10.0.tgz#ff456a8f53f90f8eccc71a96d11bdfc7f082cb50" + integrity sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw== + dependencies: + cross-spawn "^6.0.0" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + execa@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" @@ -3537,9 +3567,10 @@ faye-websocket@^0.10.0: dependencies: websocket-driver ">=0.5.1" -faye-websocket@~0.11.0: +faye-websocket@~0.11.1: version "0.11.1" resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" + integrity sha1-8O/hjE9W5PQK/H4Gxxn9XuYYjzg= dependencies: websocket-driver ">=0.5.1" @@ -4077,9 +4108,10 @@ growly@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" -handle-thing@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-1.2.5.tgz#fd7aad726bf1a5fd16dfc29b2f7a6601d27139c4" +handle-thing@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.0.tgz#0e039695ff50c93fc288557d696f3c1dc6776754" + integrity sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ== handlebars@^4.0.3: version "4.0.11" @@ -4307,14 +4339,15 @@ http-proxy-agent@^2.1.0: agent-base "4" debug "3.1.0" -http-proxy-middleware@~0.17.4: - version "0.17.4" - resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833" +http-proxy-middleware@~0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.18.0.tgz#0987e6bb5a5606e5a69168d8f967a87f15dd8aab" + integrity sha512-Fs25KVMPAIIcgjMZkVHJoKg9VcXcC1C8yb9JUgeDvVXY0S/zgVIhMb+qVswDIgtJe2DfckMSY2d6TuTEutlk6Q== dependencies: http-proxy "^1.16.2" - is-glob "^3.1.0" - lodash "^4.17.2" - micromatch "^2.3.11" + is-glob "^4.0.0" + lodash "^4.17.5" + micromatch "^3.1.9" http-proxy@^1.16.2, http-proxy@^1.8.1: version "1.17.0" @@ -4546,11 +4579,13 @@ int53@^0.2.4: resolved "https://registry.yarnpkg.com/int53/-/int53-0.2.4.tgz#5ed8d7aad6c5c6567cae69aa7ffc4a109ee80f86" integrity sha1-XtjXqtbFxlZ8rmmqf/xKEJ7oD4Y= -internal-ip@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-1.2.0.tgz#ae9fbf93b984878785d50a8de1b356956058cf5c" +internal-ip@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-3.0.1.tgz#df5c99876e1d2eb2ea2d74f520e3f669a00ece27" + integrity sha512-NXXgESC2nNVtU+pqmC9e6R8B1GpKxzsAQhffvh5AL79qKnodd+L7tnEQmTiUAVngqLalPbSqRA7XGIEL5nCd0Q== dependencies: - meow "^3.3.0" + default-gateway "^2.6.0" + ipaddr.js "^1.5.2" interpret@^1.1.0: version "1.2.0" @@ -4572,6 +4607,11 @@ invert-kv@^2.0.0: resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== +ip-regex@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" + integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= + ip@^1.1.0, ip@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" @@ -4584,6 +4624,11 @@ ipaddr.js@1.8.0: version "1.8.0" resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.8.0.tgz#eaa33d6ddd7ace8f7f6fe0c9ca0440e706738b1e" +ipaddr.js@^1.5.2: + version "1.8.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.8.1.tgz#fa4b79fa47fd3def5e3b159825161c0a519c9427" + integrity sha1-+kt5+kf9Pe9eOxWYJRYcClGclCc= + is-absolute-url@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" @@ -5622,7 +5667,7 @@ lodash.uniq@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" -lodash@4.17.10, lodash@4.x, lodash@^4.17.10, lodash@^4.17.2, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.3.0, lodash@^4.8.0, lodash@~4.17.10: +lodash@4.17.10, lodash@4.x, lodash@^4.17.10, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.3.0, lodash@^4.8.0, lodash@~4.17.10: version "4.17.10" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" @@ -5776,7 +5821,7 @@ memory-fs@^0.4.0, memory-fs@~0.4.1: errno "^0.1.3" readable-stream "^2.0.1" -meow@^3.1.0, meow@^3.3.0: +meow@^3.1.0: version "3.7.0" resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" dependencies: @@ -5834,7 +5879,7 @@ micromatch@^2.3.11: parse-glob "^3.0.4" regex-cache "^0.4.2" -micromatch@^3.0.4, micromatch@^3.1.4, micromatch@^3.1.8: +micromatch@^3.0.4, micromatch@^3.1.4, micromatch@^3.1.8, micromatch@^3.1.9: version "3.1.10" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" dependencies: @@ -5897,10 +5942,15 @@ mime@1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" -mime@^1.3.4, mime@^1.4.1, mime@^1.5.0, mime@^1.6.0: +mime@^1.3.4, mime@^1.4.1, mime@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" +mime@^2.3.1: + version "2.4.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.0.tgz#e051fd881358585f3279df333fe694da0bcffdd6" + integrity sha512-ikBcWwyqXQSHKtciCcctu9YfPbFYZ4+gbHEmE0Q8jzcTYQg5dHCr3g2wwAZjPoJfQVXZq6KXAjpXOTf5/cjT7w== + mimic-fn@^1.0.0: version "1.2.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" @@ -6406,7 +6456,7 @@ object.pick@^1.3.0: dependencies: isobject "^3.0.1" -obuf@^1.0.0, obuf@^1.1.1: +obuf@^1.0.0, obuf@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" @@ -6496,11 +6546,12 @@ optionator@^0.8.1, optionator@^0.8.2: type-check "~0.3.2" wordwrap "~1.0.0" -original@>=0.0.5: - version "1.0.1" - resolved "https://registry.yarnpkg.com/original/-/original-1.0.1.tgz#b0a53ff42ba997a8c9cd1fb5daaeb42b9d693190" +original@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/original/-/original-1.0.2.tgz#e442a61cffe1c5fd20a65f3261c26663b303f25f" + integrity sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg== dependencies: - url-parse "~1.4.0" + url-parse "^1.4.3" os-browserify@^0.3.0: version "0.3.0" @@ -6510,12 +6561,6 @@ os-homedir@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" -os-locale@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" - dependencies: - lcid "^1.0.0" - os-locale@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" @@ -7400,7 +7445,7 @@ read@~1.0.5: dependencies: mute-stream "~0.0.4" -"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.2.9, readable-stream@^2.3.0, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: version "2.3.6" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" dependencies: @@ -7430,6 +7475,15 @@ readable-stream@1.1.x, readable-stream@^1.1.8, readable-stream@~1.1.9: isarray "0.0.1" string_decoder "~0.10.x" +readable-stream@^3.0.6: + version "3.1.1" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.1.1.tgz#ed6bbc6c5ba58b090039ff18ce670515795aeb06" + integrity sha512-DkN66hPyqDhnIQ6Jcsvx9bFjhw214O4poMBcIMgPVpQvNy9a0e0Uhg5SqySyDKAmUlwt8LonTBz1ezOnM8pUdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + readdirp@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" @@ -7877,7 +7931,7 @@ selfsigned@^1.9.1: version "5.5.0" resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" -semver@^5.5.0, semver@^5.5.1: +semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: version "5.6.0" resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" @@ -8048,16 +8102,17 @@ snapdragon@^0.8.1: source-map-resolve "^0.5.0" use "^3.1.0" -sockjs-client@1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.4.tgz#5babe386b775e4cf14e7520911452654016c8b12" +sockjs-client@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.3.0.tgz#12fc9d6cb663da5739d3dc5fb6e8687da95cb177" + integrity sha512-R9jxEzhnnrdxLCNln0xg5uGHqMnkhPSTzUZH2eXcR03S/On9Yvoq2wyUZILRUhZCNVu2PmwWVoyuiPz8th8zbg== dependencies: - debug "^2.6.6" - eventsource "0.1.6" - faye-websocket "~0.11.0" - inherits "^2.0.1" + debug "^3.2.5" + eventsource "^1.0.7" + faye-websocket "~0.11.1" + inherits "^2.0.3" json3 "^3.3.2" - url-parse "^1.1.8" + url-parse "^1.4.3" sockjs@0.3.19: version "0.3.19" @@ -8146,28 +8201,28 @@ spdx-license-ids@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" -spdy-transport@^2.0.18: - version "2.1.0" - resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-2.1.0.tgz#4bbb15aaffed0beefdd56ad61dbdc8ba3e2cb7a1" +spdy-transport@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" + integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== dependencies: - debug "^2.6.8" - detect-node "^2.0.3" + debug "^4.1.0" + detect-node "^2.0.4" hpack.js "^2.1.6" - obuf "^1.1.1" - readable-stream "^2.2.9" - safe-buffer "^5.0.1" - wbuf "^1.7.2" + obuf "^1.1.2" + readable-stream "^3.0.6" + wbuf "^1.7.3" -spdy@^3.4.1: - version "3.4.7" - resolved "https://registry.yarnpkg.com/spdy/-/spdy-3.4.7.tgz#42ff41ece5cc0f99a3a6c28aabb73f5c3b03acbc" +spdy@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.0.tgz#81f222b5a743a329aa12cea6a390e60e9b613c52" + integrity sha512-ot0oEGT/PGUpzf/6uk4AWLqkq+irlqHXkrdbk51oWONh3bxQmBuljxPNl66zlRRcIJStWq0QkLUCPOPjgjvU0Q== dependencies: - debug "^2.6.8" - handle-thing "^1.2.5" + debug "^4.1.0" + handle-thing "^2.0.0" http-deceiver "^1.2.7" - safe-buffer "^5.0.1" select-hose "^2.0.0" - spdy-transport "^2.0.18" + spdy-transport "^3.0.0" "spectron@https://github.com/electron/spectron.git#c527b4e5fd8ab89ed0c6454a4dfb69f0980e9e1d": version "3.8.0" @@ -8307,7 +8362,7 @@ string-length@^2.0.0: astral-regex "^1.0.0" strip-ansi "^4.0.0" -string-width@^1.0.1, string-width@^1.0.2: +string-width@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" dependencies: @@ -8336,6 +8391,13 @@ string_decoder@^1.0.0, string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" +string_decoder@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d" + integrity sha512-6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w== + dependencies: + safe-buffer "~5.1.0" + string_decoder@~0.10.x: version "0.10.31" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" @@ -8701,10 +8763,6 @@ thunky@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.0.2.tgz#a862e018e3fb1ea2ec3fce5d55605cf57f247371" -time-stamp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-2.0.0.tgz#95c6a44530e15ba8d6f4a3ecb8c3a3fac46da357" - timers-browserify@^2.0.4: version "2.0.10" resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" @@ -8997,9 +9055,10 @@ url-loader@0.6.2: mime "^1.4.1" schema-utils "^0.3.0" -url-parse@^1.1.8, url-parse@~1.4.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.1.tgz#4dec9dad3dc8585f862fed461d2e19bbf623df30" +url-parse@^1.4.3: + version "1.4.4" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.4.tgz#cac1556e95faa0303691fec5cf9d5a1bc34648f8" + integrity sha512-/92DTTorg4JjktLNLe6GPS2/RvAd/RGr6LuktmWSMLEOa6rjnlrFXNgSbSmkNvCoL2T028A0a1JaJLzRMlFoHg== dependencies: querystringify "^2.0.0" requires-port "^1.0.0" @@ -9029,7 +9088,7 @@ utf8-byte-length@^1.0.1: version "1.0.4" resolved "https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz#f45f150c4c66eee968186505ab93fcbb8ad6bf61" -util-deprecate@~1.0.1: +util-deprecate@^1.0.1, util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" @@ -9240,7 +9299,7 @@ watchpack@^1.5.0: graceful-fs "^4.1.2" neo-async "^2.5.0" -wbuf@^1.1.0, wbuf@^1.7.2: +wbuf@^1.1.0, wbuf@^1.7.3: version "1.7.3" resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" dependencies: @@ -9301,22 +9360,22 @@ webpack-cli@3.2.0: v8-compile-cache "^2.0.2" yargs "^12.0.4" -webpack-dev-middleware@1.12.2: - version "1.12.2" - resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.12.2.tgz#f8fc1120ce3b4fc5680ceecb43d777966b21105e" +webpack-dev-middleware@3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.4.0.tgz#1132fecc9026fd90f0ecedac5cbff75d1fb45890" + integrity sha512-Q9Iyc0X9dP9bAsYskAVJ/hmIZZQwf/3Sy4xCAZgL5cUkjZmUZLt4l5HpbST/Pdgjn3u6pE7u5OdGd1apgzRujA== dependencies: memory-fs "~0.4.1" - mime "^1.5.0" - path-is-absolute "^1.0.0" + mime "^2.3.1" range-parser "^1.0.3" - time-stamp "^2.0.0" + webpack-log "^2.0.0" -webpack-dev-server@2.11.2: - version "2.11.2" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-2.11.2.tgz#1f4f4c78bf1895378f376815910812daf79a216f" +webpack-dev-server@3.1.14: + version "3.1.14" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.1.14.tgz#60fb229b997fc5a0a1fc6237421030180959d469" + integrity sha512-mGXDgz5SlTxcF3hUpfC8hrQ11yhAttuUQWf1Wmb+6zo3x6rb7b9mIfuQvAPLdfDRCGRGvakBWHdHOa0I9p/EVQ== dependencies: ansi-html "0.0.7" - array-includes "^3.0.3" bonjour "^3.5.0" chokidar "^2.0.0" compression "^1.5.2" @@ -9325,23 +9384,35 @@ webpack-dev-server@2.11.2: del "^3.0.0" express "^4.16.2" html-entities "^1.2.0" - http-proxy-middleware "~0.17.4" - import-local "^1.0.0" - internal-ip "1.2.0" + http-proxy-middleware "~0.18.0" + import-local "^2.0.0" + internal-ip "^3.0.1" ip "^1.1.5" killable "^1.0.0" loglevel "^1.4.1" opn "^5.1.0" portfinder "^1.0.9" + schema-utils "^1.0.0" selfsigned "^1.9.1" + semver "^5.6.0" serve-index "^1.7.2" sockjs "0.3.19" - sockjs-client "1.1.4" - spdy "^3.4.1" + sockjs-client "1.3.0" + spdy "^4.0.0" strip-ansi "^3.0.0" supports-color "^5.1.0" - webpack-dev-middleware "1.12.2" - yargs "6.6.0" + url "^0.11.0" + webpack-dev-middleware "3.4.0" + webpack-log "^2.0.0" + yargs "12.0.2" + +webpack-log@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f" + integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg== + dependencies: + ansi-colors "^3.0.0" + uuid "^3.3.2" webpack-sources@^1.1.0, webpack-sources@^1.3.0: version "1.3.0" @@ -9448,10 +9519,6 @@ whet.extend@~0.9.9: version "0.9.9" resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" -which-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" - which-module@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" @@ -9545,6 +9612,11 @@ xmldom@0.1.x: version "0.1.27" resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" +xregexp@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.0.0.tgz#e698189de49dd2a18cc5687b05e17c8e43943020" + integrity sha512-PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg== + "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.0, xtend@~4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" @@ -9572,6 +9644,13 @@ yallist@^3.0.0, yallist@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" +yargs-parser@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" + integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ== + dependencies: + camelcase "^4.1.0" + yargs-parser@^11.1.1: version "11.1.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" @@ -9580,12 +9659,6 @@ yargs-parser@^11.1.1: camelcase "^5.0.0" decamelize "^1.2.0" -yargs-parser@^4.2.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" - dependencies: - camelcase "^3.0.0" - yargs-parser@^8.0.0: version "8.1.0" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" @@ -9599,23 +9672,23 @@ yargs-parser@^9.0.2: dependencies: camelcase "^4.1.0" -yargs@6.6.0: - version "6.6.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" +yargs@12.0.2: + version "12.0.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.2.tgz#fe58234369392af33ecbef53819171eff0f5aadc" + integrity sha512-e7SkEx6N6SIZ5c5H22RTZae61qtn3PYUE8JYbBFlK9sYmh3DMQ6E5ygtaG/2BW0JZi4WGgTR2IV5ChqlqrDGVQ== dependencies: - camelcase "^3.0.0" - cliui "^3.2.0" - decamelize "^1.1.1" + cliui "^4.0.0" + decamelize "^2.0.0" + find-up "^3.0.0" get-caller-file "^1.0.1" - os-locale "^1.4.0" - read-pkg-up "^1.0.1" + os-locale "^3.0.0" require-directory "^2.1.1" require-main-filename "^1.0.1" set-blocking "^2.0.0" - string-width "^1.0.2" - which-module "^1.0.0" - y18n "^3.2.1" - yargs-parser "^4.2.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1 || ^4.0.0" + yargs-parser "^10.1.0" yargs@^11.0.0: version "11.1.0" From 7e2e1d0c29f9076a4dfc52e41559f130eee2eef3 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sun, 6 Jan 2019 22:48:36 +0100 Subject: [PATCH 013/125] import genesis at build time --- app/src/network.js | 13 ++++--------- app/src/renderer/vuex/modules/wallet.js | 3 +-- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/app/src/network.js b/app/src/network.js index 18e89302a5..8ab33248a4 100644 --- a/app/src/network.js +++ b/app/src/network.js @@ -1,19 +1,14 @@ "use strict" -let { join } = require(`path`) -let { readFileSync } = require(`fs-extra`) -let config = require(`./config.js`) +let config = require(`./config.json`) -// this network gets used if none is specified via the -// COSMOS_NETWORK env var -let DEFAULT_NETWORK = join(__dirname, `../networks/` + config.default_network) -let networkPath = process.env.COSMOS_NETWORK || DEFAULT_NETWORK - -let genesisText = readFileSync(join(networkPath, `genesis.json`), `utf8`) +let networkPath = `../networks/` + config.default_network +let genesisText = require(networkPath + `genesis.json`) let genesis = JSON.parse(genesisText) let networkName = genesis.chain_id module.exports = { + genesis, path: networkPath, name: networkName } diff --git a/app/src/renderer/vuex/modules/wallet.js b/app/src/renderer/vuex/modules/wallet.js index b3d27a8346..a8379393ea 100644 --- a/app/src/renderer/vuex/modules/wallet.js +++ b/app/src/renderer/vuex/modules/wallet.js @@ -1,7 +1,6 @@ import * as Sentry from "@sentry/browser" -import { path } from "../../../network.js" // for now importing the fixed genesis for the network from the config.json -const genesis = require(path + `genesis.json`) +import { genesis } from "../../../network.js" export default ({ node }) => { let emptyState = { From de40af80d8324e9d51403c4d9c9e0c18cf8406c3 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sun, 6 Jan 2019 22:48:47 +0100 Subject: [PATCH 014/125] readd google analytics --- app/index.ejs | 1 + app/src/renderer/connectors/rpcWrapper.js | 3 +-- app/src/renderer/google-analytics.js | 16 +++++++++------- app/src/renderer/vuex/modules/user.js | 9 ++++----- 4 files changed, 15 insertions(+), 14 deletions(-) diff --git a/app/index.ejs b/app/index.ejs index 1f4150ec91..4556a8a5fe 100644 --- a/app/index.ejs +++ b/app/index.ejs @@ -9,6 +9,7 @@ <% } %> +
diff --git a/app/src/renderer/connectors/rpcWrapper.js b/app/src/renderer/connectors/rpcWrapper.js index 3eb689342a..689bda23a5 100644 --- a/app/src/renderer/connectors/rpcWrapper.js +++ b/app/src/renderer/connectors/rpcWrapper.js @@ -1,7 +1,6 @@ "use strict" -const { RpcClient } = require(`../../helpers/tendermint.min.js`) -// const { ipcRenderer } = require(`electron`) +const { RpcClient } = require(`../../dependencies/tendermint.min.js`) module.exports = function setRpcWrapper(container) { let rpcWrapper = { diff --git a/app/src/renderer/google-analytics.js b/app/src/renderer/google-analytics.js index 1375ea37d5..896d0ce38b 100644 --- a/app/src/renderer/google-analytics.js +++ b/app/src/renderer/google-analytics.js @@ -1,10 +1,12 @@ +/* global ga */ "use strict" -// import Analytics from "electron-ga" - -module.exports = function() //gaUID -{ - // TODO - // const analytics = new Analytics(gaUID) - // window.analytics = analytics +module.exports = function(gaUID) { + window.ga = + window.ga || + function() { + ;(ga.q = ga.q || []).push(arguments) + } + ga.l = +new Date() + ga(`create`, gaUID, `auto`) } diff --git a/app/src/renderer/vuex/modules/user.js b/app/src/renderer/vuex/modules/user.js index 36b67e5512..04a8134180 100644 --- a/app/src/renderer/vuex/modules/user.js +++ b/app/src/renderer/vuex/modules/user.js @@ -1,7 +1,5 @@ import * as Sentry from "@sentry/browser" -// import { ipcRenderer, remote } from "electron" -import enableGoogleAnalytics from "../../google-analytics.js" -// const config = remote.getGlobal(`config`) +import addGoogleAnalytics from "../../google-analytics.js" const config = require(`../../../config.json`) import { loadKeyNames, @@ -149,7 +147,8 @@ export default ({ node }) => { dsn: config.sentry_dsn, release: `voyager@${config.version}` }) - enableGoogleAnalytics(config.google_analytics_uid) + window[`ga-disable-${config.google_analytics_uid}`] = false + addGoogleAnalytics(config.google_analytics_uid) console.log(`Analytics and error reporting have been enabled`) window.analytics && window.analytics.send(`pageview`, { @@ -158,7 +157,7 @@ export default ({ node }) => { } else { console.log(`Analytics disabled in browser`) Sentry.init({}) - window.analytics = null + window[`ga-disable-${config.google_analytics_uid}`] = true } } } From fe1e864fd402aff2466732c0af79f7c66ed96737 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sun, 6 Jan 2019 23:20:11 +0100 Subject: [PATCH 015/125] fied tmfield --- app/src/renderer/components/common/TmField.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/renderer/components/common/TmField.vue b/app/src/renderer/components/common/TmField.vue index e337e0f34e..5329d59f9a 100644 --- a/app/src/renderer/components/common/TmField.vue +++ b/app/src/renderer/components/common/TmField.vue @@ -81,7 +81,7 @@ export default { default: `text` }, value: { - type: [String, Number], + type: [String, Number, Boolean], default: null }, placeholder: { @@ -168,6 +168,7 @@ export default { methods: { toggle() { this.currentToggleState = !this.currentToggleState + this.onChange(this.currentToggleState) }, updateValue(value) { let formattedValue = value From 65be7885f786e5ff2adc080ffdf79f63551c23eb Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sun, 6 Jan 2019 23:20:55 +0100 Subject: [PATCH 016/125] added networks to dev server --- app/src/config.json | 2 +- app/src/network.js | 20 +++++++++++--------- app/src/renderer/vuex/modules/wallet.js | 3 ++- package.json | 2 +- tasks/runner.js | 2 +- webpack.renderer.config.js | 3 +++ 6 files changed, 19 insertions(+), 13 deletions(-) diff --git a/app/src/config.json b/app/src/config.json index a01723f4a5..baf09a4cb5 100644 --- a/app/src/config.json +++ b/app/src/config.json @@ -6,7 +6,7 @@ "relay_port": 9060, "relay_port_prod": 9061, "default_tendermint_port": 26657, - "default_network": "gaia-8001", + "default_network": "game_of_stakes_3", "node_lcd": "https://lcd.nylira.net", "node_rpc": "https://rpc.nylira.net:443", "google_analytics_uid": "UA-51029217-3", diff --git a/app/src/network.js b/app/src/network.js index 8ab33248a4..ca69f30902 100644 --- a/app/src/network.js +++ b/app/src/network.js @@ -1,14 +1,16 @@ -"use strict" +import axios from "axios" let config = require(`./config.json`) let networkPath = `../networks/` + config.default_network -let genesisText = require(networkPath + `genesis.json`) -let genesis = JSON.parse(genesisText) -let networkName = genesis.chain_id - -module.exports = { - genesis, - path: networkPath, - name: networkName + +export default async function() { + let genesis = (await axios(networkPath + `/genesis.json`)).data + let networkName = genesis.chain_id + + return { + genesis, + path: networkPath, + name: networkName + } } diff --git a/app/src/renderer/vuex/modules/wallet.js b/app/src/renderer/vuex/modules/wallet.js index a8379393ea..70b1067aa7 100644 --- a/app/src/renderer/vuex/modules/wallet.js +++ b/app/src/renderer/vuex/modules/wallet.js @@ -1,6 +1,6 @@ import * as Sentry from "@sentry/browser" // for now importing the fixed genesis for the network from the config.json -import { genesis } from "../../../network.js" +import network from "../../../network.js" export default ({ node }) => { let emptyState = { @@ -82,6 +82,7 @@ export default ({ node }) => { } }, async loadDenoms({ commit }) { + const { genesis } = await network() let denoms = [] for (let account of genesis.app_state.accounts) { if (account.coins) { diff --git a/package.json b/package.json index 03bf0d2c1f..6dfb249b49 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "watch": "tasks/watch.sh", "fullnode": "/Users/fabo/Development/voyager/builds/Gaia/darwin_amd64/gaiad start --home './builds/testnets/local-testnet/node_home_1'", "stargate": "/Users/fabo/Development/voyager/builds/Gaia/darwin_amd64/gaiacli rest-server --laddr 'tcp://localhost:9070' --home './builds/testnets/local-testnet/cli_home' --node 'http://localhost:26657' --chain-id 'local-testnet' --trust-node true", - "frontend": "webpack-dev-server --hot --colors --config webpack.renderer.config.js --port 9080 --content-base app/dist --https", + "frontend": "webpack-dev-server --hot --colors --config webpack.renderer.config.js --port 9080 --content-base app/dist --https --mode=development", "backend": "yarn fullnode & yarn stargate", "backend:fixed-https": "yarn fullnode & yarn stargate --ssl-certfile 'server_dev.crt' --ssl-keyfile 'server_dev.key'" }, diff --git a/tasks/runner.js b/tasks/runner.js index 3d83faf094..28b838996b 100644 --- a/tasks/runner.js +++ b/tasks/runner.js @@ -36,7 +36,7 @@ module.exports = function startRendererServer() { let child = run( `webpack-dev-server --hot --colors --config webpack.renderer.config.js --port ${ config.wds_port - } --content-base app/dist --https`, + } --content-base app/dist --https --mode=development`, YELLOW, `webpack` ) diff --git a/webpack.renderer.config.js b/webpack.renderer.config.js index ff0c985126..1fe5565d5d 100644 --- a/webpack.renderer.config.js +++ b/webpack.renderer.config.js @@ -109,6 +109,9 @@ let rendererConfig = { path.join(__dirname, `app/node_modules`), path.join(__dirname, `node_modules`) ] + }, + devServer: { + contentBase: [path.join(__dirname, `app/dist`), path.join(__dirname, `app`)] } // target: `electron-renderer` } From 5dc8d802670284a8d990cbfd318d1a903a042e1e Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sun, 6 Jan 2019 23:25:41 +0100 Subject: [PATCH 017/125] fixed pageview --- app/src/renderer/vuex/modules/user.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/renderer/vuex/modules/user.js b/app/src/renderer/vuex/modules/user.js index 04a8134180..87ab9284b4 100644 --- a/app/src/renderer/vuex/modules/user.js +++ b/app/src/renderer/vuex/modules/user.js @@ -150,10 +150,10 @@ export default ({ node }) => { window[`ga-disable-${config.google_analytics_uid}`] = false addGoogleAnalytics(config.google_analytics_uid) console.log(`Analytics and error reporting have been enabled`) - window.analytics && - window.analytics.send(`pageview`, { - dl: window.location.pathname - }) + // eslint-disable-next-line no-undef + ga(`send`, `pageview`, { + dl: window.location.pathname + }) } else { console.log(`Analytics disabled in browser`) Sentry.init({}) From a9e29b2a9cd18bedc278267e872a92f113c36680 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sun, 6 Jan 2019 23:34:57 +0100 Subject: [PATCH 018/125] reconnect on signin --- app/src/renderer/vuex/modules/connection.js | 4 ++++ app/src/renderer/vuex/modules/user.js | 1 + 2 files changed, 5 insertions(+) diff --git a/app/src/renderer/vuex/modules/connection.js b/app/src/renderer/vuex/modules/connection.js index 3884415f6b..180609bf3e 100644 --- a/app/src/renderer/vuex/modules/connection.js +++ b/app/src/renderer/vuex/modules/connection.js @@ -49,6 +49,10 @@ export default function({ node }) { commit(`setConnected`, false) node.rpcReconnect() }, + async removeSubscriptions() { + node.rpcDisconnect() + node.rpcConnect(config.node_rpc) + }, async rpcSubscribe({ commit, dispatch }) { if (state.stopConnecting) return diff --git a/app/src/renderer/vuex/modules/user.js b/app/src/renderer/vuex/modules/user.js index 87ab9284b4..615f09e030 100644 --- a/app/src/renderer/vuex/modules/user.js +++ b/app/src/renderer/vuex/modules/user.js @@ -114,6 +114,7 @@ export default ({ node }) => { state.account = null state.signedIn = false + dispatch(`removeSubscriptions`) commit(`setModalSession`, true) dispatch(`showInitialScreen`) }, From 915a822610eb3b76dac0e074f8917a83b5208f34 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sun, 6 Jan 2019 23:34:57 +0100 Subject: [PATCH 019/125] Revert "reconnect on signin" This reverts commit a9e29b2a9cd18bedc278267e872a92f113c36680. --- app/src/renderer/vuex/modules/connection.js | 4 ---- app/src/renderer/vuex/modules/user.js | 1 - 2 files changed, 5 deletions(-) diff --git a/app/src/renderer/vuex/modules/connection.js b/app/src/renderer/vuex/modules/connection.js index 180609bf3e..3884415f6b 100644 --- a/app/src/renderer/vuex/modules/connection.js +++ b/app/src/renderer/vuex/modules/connection.js @@ -49,10 +49,6 @@ export default function({ node }) { commit(`setConnected`, false) node.rpcReconnect() }, - async removeSubscriptions() { - node.rpcDisconnect() - node.rpcConnect(config.node_rpc) - }, async rpcSubscribe({ commit, dispatch }) { if (state.stopConnecting) return diff --git a/app/src/renderer/vuex/modules/user.js b/app/src/renderer/vuex/modules/user.js index 615f09e030..87ab9284b4 100644 --- a/app/src/renderer/vuex/modules/user.js +++ b/app/src/renderer/vuex/modules/user.js @@ -114,7 +114,6 @@ export default ({ node }) => { state.account = null state.signedIn = false - dispatch(`removeSubscriptions`) commit(`setModalSession`, true) dispatch(`showInitialScreen`) }, From fbcdd2ba0e38da5a638f158fb3a94c0eb3ddd56a Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sun, 6 Jan 2019 23:48:53 +0100 Subject: [PATCH 020/125] fixed bug on LiProposal --- app/src/renderer/components/governance/LiProposal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/renderer/components/governance/LiProposal.vue b/app/src/renderer/components/governance/LiProposal.vue index b8f1f48a20..9fa96009cb 100644 --- a/app/src/renderer/components/governance/LiProposal.vue +++ b/app/src/renderer/components/governance/LiProposal.vue @@ -49,7 +49,7 @@ export default { ...mapGetters([`proposals`]), tally() { let proposalTally - proposalTally = this.proposals.tallies[this.proposal.proposal_id] + proposalTally = this.proposals.tallies[this.proposal.proposal_id] || {} proposalTally.yes = Math.round(parseFloat(proposalTally.yes)) proposalTally.no = Math.round(parseFloat(proposalTally.no)) proposalTally.no_with_veto = Math.round( From 224db52eee2f957bf0cf2f62e33dd353c589d0f7 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sun, 6 Jan 2019 23:52:02 +0100 Subject: [PATCH 021/125] increased timeout for waiting for blocks to proof connection --- app/src/config.json | 3 ++- app/src/renderer/vuex/modules/connection.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app/src/config.json b/app/src/config.json index baf09a4cb5..1828b7addd 100644 --- a/app/src/config.json +++ b/app/src/config.json @@ -11,5 +11,6 @@ "node_rpc": "https://rpc.nylira.net:443", "google_analytics_uid": "UA-51029217-3", "sentry_dsn": "https://4dee9f70a7d94cc0959a265c45902d84:cbf160384aab4cdeafbe9a08dee3b961@sentry.io/288169", - "node_halted_timeout": 120000 + "node_halted_timeout": 120000, + "block_timeout": 10000 } diff --git a/app/src/renderer/vuex/modules/connection.js b/app/src/renderer/vuex/modules/connection.js index 3884415f6b..73ce6c1956 100644 --- a/app/src/renderer/vuex/modules/connection.js +++ b/app/src/renderer/vuex/modules/connection.js @@ -105,7 +105,7 @@ export default function({ node }) { state.nodeHaltedTimeout = undefined commit(`setModalNodeHalted`, true) }, - pollRPCConnection({ state, dispatch }, timeout = 3000) { + pollRPCConnection({ state, dispatch }, timeout = config.block_timeout) { if (state.nodeTimeout || state.stopConnecting) return state.nodeTimeout = setTimeout(() => { From ba4aefc98ccb530a5aa5d4a29cd606c584d0f580 Mon Sep 17 00:00:00 2001 From: Federico Kunze <31522760+fedekunze@users.noreply.github.com> Date: Mon, 7 Jan 2019 14:16:00 +0100 Subject: [PATCH 022/125] Update app/src/renderer/components/common/TmSessionSignIn.vue Co-Authored-By: faboweb --- app/src/renderer/components/common/TmSessionSignIn.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/renderer/components/common/TmSessionSignIn.vue b/app/src/renderer/components/common/TmSessionSignIn.vue index 0807282ada..ef88066dff 100644 --- a/app/src/renderer/components/common/TmSessionSignIn.vue +++ b/app/src/renderer/components/common/TmSessionSignIn.vue @@ -119,7 +119,7 @@ export default { } else { this.$store.commit(`notifyError`, { title: `Signing In Failed`, - body: `The provided password is wrong.` + body: `The provided username or password is wrong` }) } }, From 1727720195e50054e482dd91e90787acf2cb4803 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Wed, 9 Jan 2019 11:40:39 +0100 Subject: [PATCH 023/125] refactor keystore --- app/src/helpers/keystore.js | 42 +++++++++++---------------- app/src/renderer/vuex/modules/user.js | 10 ++----- 2 files changed, 20 insertions(+), 32 deletions(-) diff --git a/app/src/helpers/keystore.js b/app/src/helpers/keystore.js index 7cc23077bb..1df2a44001 100644 --- a/app/src/helpers/keystore.js +++ b/app/src/helpers/keystore.js @@ -1,49 +1,41 @@ -// require the plugin -// import { SecureStorage } from "nativescript-secure-storage" -// instantiate the plugin -// let secureStorage = new SecureStorage() let CryptoJS = require(`crypto-js`) let AES = require(`crypto-js/aes`) import { generateWallet, generateWalletFromSeed } from "./wallet.js" -export async function storeKeyNames(keys) { - // async +export async function storeKeys(keys) { await localStorage.setItem(`keys`, JSON.stringify(keys)) } -export async function loadKeyNames() { +export async function loadKeys() { return JSON.parse((await localStorage.getItem(`keys`)) || `[]`) } -async function storeKey(wallet, name, password) { +async function addKey(wallet, name, password) { + let keys = await loadKeys() + let ciphertext = AES.encrypt(JSON.stringify(wallet), password).toString() - await localStorage.setItem(`key_` + name, ciphertext) + + keys.push({ + name, + address: wallet.cosmosAddress, + wallet: ciphertext + }) + + await localStorage.setItem(`keys`, JSON.stringify(keys)) } export async function testPassword(name, password) { - const key = localStorage.getItem(`key_` + name) + let keys = await loadKeys() + + const key = keys.find(key => key.name === name) try { - AES.decrypt(key, password) + AES.decrypt(key.wallet, password) return true } catch (err) { return false } - // const originalText = bytes.toString(CryptoJS.enc.Utf8); - // return JSON.parse(originalText); } -export async function addKey(name, password, wallet) { - let keys = await loadKeyNames() - keys.push({ - name, - address: wallet.cosmosAddress - }) - await storeKeyNames(keys) - - await storeKey(wallet, name, password) - - return wallet -} export async function addNewKey(name, password) { const wallet = generateWallet(CryptoJS.lib.WordArray.random) await addKey(name, password, wallet) diff --git a/app/src/renderer/vuex/modules/user.js b/app/src/renderer/vuex/modules/user.js index 87ab9284b4..45e75a74e9 100644 --- a/app/src/renderer/vuex/modules/user.js +++ b/app/src/renderer/vuex/modules/user.js @@ -1,11 +1,7 @@ import * as Sentry from "@sentry/browser" import addGoogleAnalytics from "../../google-analytics.js" const config = require(`../../../config.json`) -import { - loadKeyNames, - importKey, - testPassword -} from "../../../helpers/keystore.js" +import { loadKeys, importKey, testPassword } from "../../../helpers/keystore.js" import { generateSeed } from "../../../helpers/wallet.js" import CryptoJS from "crypto-js" @@ -68,7 +64,7 @@ export default ({ node }) => { async loadAccounts({ commit, state }) { state.loading = true try { - let keys = await loadKeyNames() + let keys = await loadKeys() commit(`setAccounts`, keys) } catch (error) { Sentry.captureException(error) @@ -100,7 +96,7 @@ export default ({ node }) => { state.account = account state.signedIn = true - let keys = await loadKeyNames() + let keys = await loadKeys() let { address } = keys.find(({ name }) => name === account) state.address = address From 795579a9119c3d9a93e344db18ed8636aae0e667 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Wed, 9 Jan 2019 11:53:30 +0100 Subject: [PATCH 024/125] fixed keystore issues --- app/src/helpers/keystore.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/src/helpers/keystore.js b/app/src/helpers/keystore.js index 1df2a44001..5b2a97f204 100644 --- a/app/src/helpers/keystore.js +++ b/app/src/helpers/keystore.js @@ -13,6 +13,9 @@ export async function loadKeys() { async function addKey(wallet, name, password) { let keys = await loadKeys() + if (keys.find(key => key.name === name)) + throw new Error(`Key with that name already exists`) + let ciphertext = AES.encrypt(JSON.stringify(wallet), password).toString() keys.push({ @@ -38,13 +41,13 @@ export async function testPassword(name, password) { export async function addNewKey(name, password) { const wallet = generateWallet(CryptoJS.lib.WordArray.random) - await addKey(name, password, wallet) + await addKey(wallet, name, password) return wallet } export async function importKey(name, password, seed) { const wallet = generateWalletFromSeed(seed) - await addKey(name, password, wallet) + await addKey(wallet, name, password) return wallet } From 1882811e05d3a8d718f7ccc7cc8f65318c366eb3 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Wed, 9 Jan 2019 12:06:07 +0100 Subject: [PATCH 025/125] made analytics not global --- app/src/renderer/google-analytics.js | 16 +++++++++++++++- app/src/renderer/vuex/modules/user.js | 20 +++++++++++--------- 2 files changed, 26 insertions(+), 10 deletions(-) diff --git a/app/src/renderer/google-analytics.js b/app/src/renderer/google-analytics.js index 896d0ce38b..63bf61cceb 100644 --- a/app/src/renderer/google-analytics.js +++ b/app/src/renderer/google-analytics.js @@ -1,7 +1,10 @@ /* global ga */ "use strict" -module.exports = function(gaUID) { +module.exports.enableGoogleAnalytics = function enableGoogleAnalytics(gaUID) { + // if set to true disables google analytics + window[`ga-disable-${gaUID}`] = false + window.ga = window.ga || function() { @@ -10,3 +13,14 @@ module.exports = function(gaUID) { ga.l = +new Date() ga(`create`, gaUID, `auto`) } + +module.exports.disableGoogleAnalytics = function disableGoogleAnalytics(gaUID) { + // if set to true disables google analytics + window[`ga-disable-${gaUID}`] = true +} + +module.exports.track = function track(...args) { + if (window.ga) { + window.ga(...args) + } +} diff --git a/app/src/renderer/vuex/modules/user.js b/app/src/renderer/vuex/modules/user.js index 45e75a74e9..cb05bfbac8 100644 --- a/app/src/renderer/vuex/modules/user.js +++ b/app/src/renderer/vuex/modules/user.js @@ -1,5 +1,9 @@ import * as Sentry from "@sentry/browser" -import addGoogleAnalytics from "../../google-analytics.js" +import { + enableGoogleAnalytics, + disableGoogleAnalytics, + track +} from "../../google-analytics.js" const config = require(`../../../config.json`) import { loadKeys, importKey, testPassword } from "../../../helpers/keystore.js" import { generateSeed } from "../../../helpers/wallet.js" @@ -30,10 +34,9 @@ export default ({ node }) => { }, addHistory(state, path) { state.history.push(path) - window.analytics && - window.analytics.send(`pageview`, { - dl: path - }) + track(`send`, `pageview`, { + dl: path + }) }, popHistory(state) { state.history.pop() @@ -143,17 +146,16 @@ export default ({ node }) => { dsn: config.sentry_dsn, release: `voyager@${config.version}` }) - window[`ga-disable-${config.google_analytics_uid}`] = false - addGoogleAnalytics(config.google_analytics_uid) + enableGoogleAnalytics(config.google_analytics_uid) console.log(`Analytics and error reporting have been enabled`) // eslint-disable-next-line no-undef - ga(`send`, `pageview`, { + track(`send`, `pageview`, { dl: window.location.pathname }) } else { console.log(`Analytics disabled in browser`) Sentry.init({}) - window[`ga-disable-${config.google_analytics_uid}`] = true + disableGoogleAnalytics(config.google_analytics_uid) } } } From 922fbc705cb5f77c2cca80a69665d6c934b27818 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Wed, 9 Jan 2019 12:10:53 +0100 Subject: [PATCH 026/125] cleanup package scripts --- package.json | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 6dfb249b49..2ecd506041 100644 --- a/package.json +++ b/package.json @@ -18,15 +18,12 @@ "build:testnets": "cd tasks/build/testnets && ./localBuild.sh", "build:gaia": "cd tasks/build/Gaia && ./localBuild.sh", "build:local": "node tasks/build/local/build", - "start": "node tasks/testnet.js", - "testnet": "echo \"'yarn testnet' has been deprecated. Please use 'yarn start'\"", + "start": "yarn frontend & yarn fullnode & yarn stargate", "lint": "yarn lint:eslint && yarn lint:format", "lint:eslint": "eslint -f ./node_modules/eslint-friendly-formatter \"{,**/}*.{js,vue}\"", "lint:format": "prettier --list-different \"{,**/}*.{css,js,json,vue}\" \"!testArtifacts/**\" \"!app/networks/**\"", "lint:fix": "prettier --write \"{,**/}*.{css,js,json,vue}\" \"!testArtifacts/**\"", - "pack": "yarn run pack:main && yarn run pack:renderer", - "pack:main": "cross-env NODE_ENV=production webpack --colors --config webpack.main.config.js", - "pack:renderer": "cross-env NODE_ENV=production webpack --colors --config webpack.renderer.config.js", + "pack": "webpack --colors --config webpack.renderer.config.js --mode=production", "test": "yarn run lint && yarn test:unit && yarn test:e2e", "test:unit": "cross-env LOGGING=false ANALYTICS=false NODE_ENV=testing jest --maxWorkers=2", "test:e2e": "cross-env ANALYTICS=false yarn run pack && tape \"${TEST:-test/e2e/*.js}\"", @@ -37,8 +34,8 @@ "prepush": "bash ./tasks/changelog-changed-check.sh && yarn lint", "postcheckout": "yarn", "watch": "tasks/watch.sh", - "fullnode": "/Users/fabo/Development/voyager/builds/Gaia/darwin_amd64/gaiad start --home './builds/testnets/local-testnet/node_home_1'", - "stargate": "/Users/fabo/Development/voyager/builds/Gaia/darwin_amd64/gaiacli rest-server --laddr 'tcp://localhost:9070' --home './builds/testnets/local-testnet/cli_home' --node 'http://localhost:26657' --chain-id 'local-testnet' --trust-node true", + "fullnode": "./builds/Gaia/darwin_amd64/gaiad start --home './builds/testnets/local-testnet/node_home_1'", + "stargate": "./builds/Gaia/darwin_amd64/gaiacli rest-server --laddr 'tcp://localhost:9070' --home './builds/testnets/local-testnet/cli_home' --node 'http://localhost:26657' --chain-id 'local-testnet' --trust-node true", "frontend": "webpack-dev-server --hot --colors --config webpack.renderer.config.js --port 9080 --content-base app/dist --https --mode=development", "backend": "yarn fullnode & yarn stargate", "backend:fixed-https": "yarn fullnode & yarn stargate --ssl-certfile 'server_dev.crt' --ssl-keyfile 'server_dev.key'" From cb99b90ef2be2a7a920704880b135cad465e6884 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Wed, 9 Jan 2019 12:11:14 +0100 Subject: [PATCH 027/125] cleanup deps --- package.json | 8 -------- 1 file changed, 8 deletions(-) diff --git a/package.json b/package.json index 2ecd506041..5892a52863 100644 --- a/package.json +++ b/package.json @@ -58,9 +58,6 @@ "css-loader": "0.28.11", "deterministic-zip": "1.0.5", "duplexer": "0.1.1", - "electron-debug": "1.5.0", - "electron-devtools-installer": "2.2.4", - "electron-packager": "10.1.2", "eslint": "5.9.0", "eslint-config-prettier": "3.3.0", "eslint-friendly-formatter": "2.0.7", @@ -82,7 +79,6 @@ "prettier": "1.15.2", "pretty-quick": "1.4.1", "publish-release": "1.5.1", - "spectron": "https://github.com/electron/spectron.git#c527b4e5fd8ab89ed0c6454a4dfb69f0980e9e1d", "style-loader": "0.21.0", "swagger-express-middleware": "1.1.1", "tape": "4.9.0", @@ -109,9 +105,6 @@ "bignumber.js": "7.2.1", "chart.js": "2.7.2", "crypto-js": "3.1.9-1", - "electron": "2.0.8", - "electron-chromedriver": "3.0.0-beta.1", - "electron-ga": "1.0.6", "fs-extra": "7.0.0", "glob": "7.1.3", "js-beautify": "1.8.6", @@ -131,7 +124,6 @@ "vue": "2.5.21", "vue-click-outside": "1.0.7", "vue-directive-tooltip": "1.4.5", - "vue-electron": "1.0.6", "vue-router": "3.0.1", "vuelidate": "0.6.2", "vuex": "3.0.1" From b3bd8ac7028f0f4a8ff794b2426aa17e0dfd5104 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Wed, 9 Jan 2019 12:14:03 +0100 Subject: [PATCH 028/125] fixes signin feedback --- app/src/renderer/components/common/TmSessionSignIn.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/renderer/components/common/TmSessionSignIn.vue b/app/src/renderer/components/common/TmSessionSignIn.vue index 0807282ada..ba5f523205 100644 --- a/app/src/renderer/components/common/TmSessionSignIn.vue +++ b/app/src/renderer/components/common/TmSessionSignIn.vue @@ -104,11 +104,11 @@ export default { async onSubmit() { this.$v.$touch() if (this.$v.$error) return - let passwordCorrect = await this.$store.dispatch(`testLogin`, { + let sessionCorrect = await this.$store.dispatch(`testLogin`, { password: this.fields.signInPassword, account: this.fields.signInName }) - if (passwordCorrect) { + if (sessionCorrect) { this.$store.dispatch(`signIn`, { password: this.fields.signInPassword, account: this.fields.signInName @@ -119,7 +119,7 @@ export default { } else { this.$store.commit(`notifyError`, { title: `Signing In Failed`, - body: `The provided password is wrong.` + body: `The provided username or password is wrong.` }) } }, From b99e4c32c39615e202d9de65d5279056393afb39 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Wed, 9 Jan 2019 12:14:52 +0100 Subject: [PATCH 029/125] enable transactions in prod mode --- app/src/renderer/components/common/AppMenu.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/app/src/renderer/components/common/AppMenu.vue b/app/src/renderer/components/common/AppMenu.vue index 644796b18e..426f3e61ae 100644 --- a/app/src/renderer/components/common/AppMenu.vue +++ b/app/src/renderer/components/common/AppMenu.vue @@ -13,7 +13,6 @@ chevron_right Date: Wed, 9 Jan 2019 12:16:10 +0100 Subject: [PATCH 030/125] removed config.toml --- app/config.toml | 21 --------------------- app/src/config.js | 11 ----------- 2 files changed, 32 deletions(-) delete mode 100644 app/config.toml delete mode 100644 app/src/config.js diff --git a/app/config.toml b/app/config.toml deleted file mode 100644 index a85c002454..0000000000 --- a/app/config.toml +++ /dev/null @@ -1,21 +0,0 @@ -# Name of electron app -# Will be used in production builds -name = "Cosmos Voyager" - -# webpack-dev-server port -wds_port = 9080 -lcd_port = 9070 -lcd_port_prod = 9071 -relay_port = 9060 -relay_port_prod = 9061 -default_tendermint_port = 26657 - -default_network = "gaia-8001" -node_lcd = "http://fabo.interblock.io:1317" -node_rpc = "http://fabo.interblock.io:26657" - -google_analytics_uid = "UA-51029217-3" -sentry_dsn = "https://4dee9f70a7d94cc0959a265c45902d84:cbf160384aab4cdeafbe9a08dee3b961@sentry.io/288169" - -# time to wait for a block until node is declared halted -node_halted_timeout = 120000 diff --git a/app/src/config.js b/app/src/config.js deleted file mode 100644 index 7d28535f0e..0000000000 --- a/app/src/config.js +++ /dev/null @@ -1,11 +0,0 @@ -"use strict" - -const fs = require(`fs`) -const path = require(`path`) -const toml = require(`toml`) - -module.exports = toml.parse( - fs.readFileSync(path.join(__dirname, `../config.toml`), { - encoding: `utf8` - }) -) From 50e313178e6535301468ae77332a33b0b4995a18 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Wed, 9 Jan 2019 12:25:55 +0100 Subject: [PATCH 031/125] code cleanup --- app/src/main/addressbook.js | 171 ----- app/src/main/index.dev.js | 29 - app/src/main/index.js | 684 ------------------ app/src/main/menu.js | 83 --- .../components/common/TmModalError.vue | 18 - .../components/common/TmModalNodeHalted.vue | 2 - .../components/common/TmSessionLoading.vue | 11 +- app/src/renderer/connectors/rpcWrapper.js | 8 - app/src/renderer/connectors/rpcWrapperMock.js | 4 - app/src/renderer/main.js | 66 +- app/src/renderer/vuex/modules/connection.js | 35 +- tasks/runner.js | 50 -- tasks/windows-installer.js | 22 - test/unit/helpers/node_mock.js | 1 - test/unit/specs/App.spec.js | 1 - test/unit/specs/connectors/rpcWrapper.spec.js | 25 - webpack.renderer.config.js | 4 - 17 files changed, 4 insertions(+), 1210 deletions(-) delete mode 100644 app/src/main/addressbook.js delete mode 100644 app/src/main/index.dev.js delete mode 100644 app/src/main/index.js delete mode 100644 app/src/main/menu.js delete mode 100644 tasks/runner.js delete mode 100644 tasks/windows-installer.js diff --git a/app/src/main/addressbook.js b/app/src/main/addressbook.js deleted file mode 100644 index e427ee2a39..0000000000 --- a/app/src/main/addressbook.js +++ /dev/null @@ -1,171 +0,0 @@ -"use strict" - -const fs = require(`fs-extra`) -const { join } = require(`path`) -const axios = require(`axios`) - -const LOGGING = JSON.parse(process.env.LOGGING || `true`) !== false -const FIXED_NODE = process.env.COSMOS_NODE - -module.exports = class Addressbook { - constructor( - config, - configPath, - { persistent_peers = [], onConnectionMessage = () => {} } = {} - ) { - this.peers = [] - this.config = config - this.onConnectionMessage = onConnectionMessage - - // if we define a fixed node, we skip persistence - if (FIXED_NODE) { - this.addPeer(FIXED_NODE) - return - } - - this.addressbookPath = join(configPath, `addressbook.json`) - this.loadFromDisc() - - // add persistent peers to already stored peers - persistent_peers.forEach(peer => this.addPeer(peer)) - - if (persistent_peers.length > 0) { - this.persistToDisc() - } - } - - // adds the new peer to the list of peers - addPeer(peerHost) { - const peerIsKnown = this.peers.find( - peer => peer.host.indexOf(peerHost) !== -1 - ) - - if (!peerIsKnown) { - LOGGING && console.log(`Adding new peer:`, peerHost) - this.peers.push({ - host: peerHost, - // assume that new peers are available - state: `available` - }) - } - } - - loadFromDisc() { - // if there is no address book file yet, there are no peers stored yet - // the file will be created when persisting any peers to disc - let exists = fs.existsSync(this.addressbookPath) - if (!exists) { - this.peers = [] - return - } - let content = fs.readFileSync(this.addressbookPath, `utf8`) - let peers = JSON.parse(content) - this.peers = peers.map(host => ({ - host, - state: `available` - })) - } - - persistToDisc() { - let peers = this.peers - // only remember available nodes - .filter(p => p.state === `available`) - .map(p => p.host) - fs.ensureFileSync(this.addressbookPath) - fs.writeFileSync(this.addressbookPath, JSON.stringify(peers), `utf8`) - } - - // returns an available node or throws if it can't find any - async pickNode() { - let curNode - - if (FIXED_NODE) { - // we skip discovery for fixed nodes as we want to always return the same - // node - curNode = { host: FIXED_NODE } - - // ping fixed node - let alive = await axios - .get( - `http://${FIXED_NODE}:${ - this.config.default_tendermint_port - }/net_info`, - { timeout: 3000 } - ) - .then(() => true, () => false) - if (!alive) - throw Error(`The fixed node you tried to connect to is not reachable.`) - } else { - let availableNodes = this.peers.filter(node => node.state === `available`) - if (availableNodes.length === 0) { - throw Error(`No nodes available to connect to`) - } - // pick a random node - curNode = - availableNodes[Math.floor(Math.random() * availableNodes.length)] - - try { - let peerIP = curNode.host.split(`:`)[0] - await this.discoverPeers(peerIP) - } catch (exception) { - console.log( - `Unable to discover peers from node ${require(`util`).inspect( - curNode - )}: ${exception}` - ) - - this.flagNodeOffline(curNode.host) - return this.pickNode() - } - - // remember the peers of the node and store them in the addressbook - this.persistToDisc() - } - - this.onConnectionMessage(`Picked node: ` + curNode.host) - return `${curNode.host.split(`:`)[0]}:${ - this.config.default_tendermint_port - }` // export the picked node with the correct tendermint port - } - - flagNodeOffline(host) { - let peer = this.peers.find(p => p.host === host) - if (peer) peer.state = `down` - } - - flagNodeIncompatible(host) { - let peer = this.peers.find(p => p.host === host) - if (peer) peer.state = `incompatible` - } - - resetNodes() { - this.peers = this.peers.map(peer => - Object.assign({}, peer, { - state: `available` - }) - ) - } - - async discoverPeers(peerIP) { - this.onConnectionMessage(`Querying node: ${peerIP}`) - - let subPeers = (await axios.get( - `http://${peerIP}:${this.config.default_tendermint_port}/net_info`, - { timeout: 3000 } - )).data.result.peers - - this.onConnectionMessage(`Node ${peerIP} is alive.`) - - let subPeersHostnames = subPeers.map(peer => peer.node_info.listen_addr) - - subPeersHostnames - // add new peers to state - .forEach(subPeerHostname => { - this.addPeer(subPeerHostname) - }) - - if (subPeersHostnames.length > 0) { - this.persistToDisc() - } - } -} diff --git a/app/src/main/index.dev.js b/app/src/main/index.dev.js deleted file mode 100644 index 374b59ba07..0000000000 --- a/app/src/main/index.dev.js +++ /dev/null @@ -1,29 +0,0 @@ -"use strict" - -/** - * This file is used specifically and only for development. It enables the use of ES6+ - * features for the main process and installs `electron-debug` & `vue-devtools`. There - * shouldn't be any need to modify this file, but it can be used to extend your - * development environment. - */ - -/* eslint-disable no-console */ - -// Set babel `env` and install `babel-register` -process.env.BABEL_ENV = `main` - -require(`babel-register`)({ ignore: /node_modules/ }) - -// Install `vue-devtools` -require(`electron`).app.on(`ready`, () => { - let installExtension = require(`electron-devtools-installer`) - installExtension - .default(installExtension.VUEJS_DEVTOOLS) - .then(() => {}) - .catch(err => { - console.log(`Unable to install \`vue-devtools\`: \n`, err) - }) -}) - -// Require `main` process to boot app -require(`./index`) diff --git a/app/src/main/index.js b/app/src/main/index.js deleted file mode 100644 index d56cf98bf9..0000000000 --- a/app/src/main/index.js +++ /dev/null @@ -1,684 +0,0 @@ -"use strict" - -const assert = require(`assert`) -let { app, BrowserWindow, ipcMain } = require(`electron`) -let fs = require(`fs-extra`) -const https = require(`https`) -let { join, relative } = require(`path`) -let childProcess = require(`child_process`) -let semver = require(`semver`) -const Sentry = require(`@sentry/node`) -const readline = require(`readline`) -let axios = require(`axios`) - -let { version: pkgVersion } = require(`../../../package.json`) -let addMenu = require(`./menu.js`) -let config = require(`../config.js`) -config.node_lcd = process.env.LCD_URL || config.node_lcd -config.node_rpc = process.env.RPC_URL || config.node_rpc -let LcdClient = require(`../renderer/connectors/lcdClient.js`) -global.config = config // to make the config accessable from renderer -global.config.version = pkgVersion - -require(`electron-debug`)() - -let shuttingDown = false -let mainWindow -let gaiaLiteProcess -let streams = [] -let connecting = true -let chainId -let booted = false -let expectedGaiaCliVersion - -const root = require(`../root.js`) -global.root = root // to make the root accessable from renderer -const networkPath = require(`../network.js`).path - -const lcdHome = join(root, `lcd`) -const WIN = /^win/.test(process.platform) -const DEV = process.env.NODE_ENV === `development` -const TEST = process.env.NODE_ENV === `testing` -global.config.development = DEV || TEST -// TODO default logging or default disable logging? -const LOGGING = JSON.parse(process.env.LOGGING || `true`) !== false -const winURL = DEV - ? `http://localhost:${config.wds_port}` - : `file://${__dirname}/index.html` -const LCD_PORT = DEV ? config.lcd_port : config.lcd_port_prod -const MOCK = - process.env.COSMOS_MOCKED !== undefined - ? JSON.parse(process.env.COSMOS_MOCKED) - : false -global.config.mocked = MOCK // persist resolved mock setting also in config used by view thread -const gaiaVersion = fs - .readFileSync(networkPath + `/gaiaversion.txt`) - .toString() - .split(`-`)[0] -process.env.GAIA_VERSION = gaiaVersion - -let LCD_BINARY_NAME = `gaiacli` + (WIN ? `.exe` : ``) - -function log(...args) { - if (LOGGING) { - console.log(...args) - } -} -function logError(...args) { - if (LOGGING) { - console.log(...args) - } -} - -function logProcess(process, logPath) { - fs.ensureFileSync(logPath) - // Writestreams are blocking fs cleanup in tests, if you get errors, disable logging - if (LOGGING) { - let logStream = fs.createWriteStream(logPath, { flags: `a` }) // 'a' means appending (old data will be preserved) - streams.push(logStream) - process.stdout.pipe(logStream) - process.stderr.pipe(logStream) - } -} - -function handleCrash(error) { - afterBooted(() => { - if (mainWindow) { - mainWindow.webContents.send(`error`, { - message: error - ? error.message - ? error.message - : error - : `An unspecified error occurred` - }) - } - }) -} - -async function shutdown() { - if (shuttingDown) return - - mainWindow = null - shuttingDown = true - - if (gaiaLiteProcess) { - await stopLCD() - } - - return Promise.all( - streams.map(stream => new Promise(resolve => stream.close(resolve))) - ).then(() => { - log(`[SHUTDOWN] Voyager has shutdown`) - }) -} - -function createWindow() { - mainWindow = new BrowserWindow({ - show: false, - minWidth: 320, - minHeight: 480, - width: 1024, - height: 768, - center: true, - title: `Cosmos Voyager`, - darkTheme: true, - titleBarStyle: `hidden`, - backgroundColor: `#15182d`, - webPreferences: { webSecurity: false } - }) - mainWindow.once(`ready-to-show`, () => { - setTimeout(() => { - mainWindow.show() - if (DEV || JSON.parse(process.env.COSMOS_DEVTOOLS || `false`)) { - mainWindow.webContents.openDevTools() - // we need to reload at this point to make sure sourcemaps are loaded correctly - mainWindow.reload() - } - if (DEV) { - mainWindow.maximize() - } - }, 300) - }) - - // start vue app - mainWindow.loadURL(winURL) - - mainWindow.on(`closed`, shutdown) - - // eslint-disable-next-line no-console - log(`mainWindow opened`) - - // handle opening external links in OS's browser - let webContents = mainWindow.webContents - let handleRedirect = (e, url) => { - if (url !== webContents.getURL()) { - e.preventDefault() - require(`electron`).shell.openExternal(url) - } - } - webContents.on(`will-navigate`, handleRedirect) - webContents.on(`new-window`, handleRedirect) - - addMenu(mainWindow) -} - -function startProcess(name, args, env) { - let binPath - if (process.env.BINARY_PATH) { - binPath = process.env.BINARY_PATH - } else if (DEV) { - // in development use the build gaia files from running `yarn build:gaia` - const osFolderName = (function() { - switch (process.platform) { - case `win32`: - return `windows_amd64` - case `darwin`: - return `darwin_amd64` - case `linux`: - return `linux_amd64` - } - })() - binPath = join(__dirname, `../../../builds/Gaia`, osFolderName, name) - } else { - // in production mode, use binaries packaged with app - binPath = join(__dirname, `..`, `bin`, name) - } - - let argString = args.map(arg => JSON.stringify(arg)).join(` `) - log(`spawning ${binPath} with args "${argString}"`) - let child - try { - child = childProcess.spawn(binPath, args, env) - } catch (error) { - log(`Err: Spawning ${name} failed`, error) - throw error - } - child.stdout.on(`data`, data => !shuttingDown && log(`${name}: ${data}`)) - child.stderr.on(`data`, data => !shuttingDown && log(`${name}: ${data}`)) - - // Make stdout more useful by emitting a line at a time. - readline.createInterface({ input: child.stdout }).on(`line`, line => { - child.stdout.emit(`line`, line) - }) - - // Make stderr more useful by emitting a line at a time. - readline.createInterface({ input: child.stderr }).on(`line`, line => { - child.stderr.emit(`line`, line) - }) - - child.on( - `exit`, - code => !shuttingDown && log(`${name} exited with code ${code}`) - ) - child.on(`error`, async function(error) { - if (!(shuttingDown && error.code === `ECONNRESET`)) { - // if we throw errors here, they are not handled by the main process - let errorMessage = [ - `[Uncaught Exception] Child`, - name, - `produced an unhandled exception:`, - error - ] - logError(...errorMessage) - console.error(...errorMessage) // also output to console for easier debugging - handleCrash(error) - - Sentry.captureException(error) - } - }) - - // need to kill child processes if main process dies - process.on(`exit`, () => { - child.kill() - }) - return child -} - -app.on(`window-all-closed`, () => { - app.quit() -}) - -app.on(`activate`, () => { - if (mainWindow === null) { - createWindow() - } -}) - -app.on(`ready`, () => createWindow()) - -// start lcd REST API -async function startLCD(home, nodeURL) { - assert.equal( - gaiaLiteProcess, - null, - `Can't start Gaia Lite because it's already running. Call StopLCD first.` - ) - - let lcdStarted = false // remember if the lcd has started to toggle the right error handling if it crashes async - return new Promise(async (resolve, reject) => { - log(`startLCD`, home) - let child = startProcess(LCD_BINARY_NAME, [ - `rest-server`, - `--laddr`, - `tcp://localhost:${LCD_PORT}`, - `--home`, - home, - `--node`, - nodeURL, - `--chain-id`, - chainId, - `--trust-node`, - true - ]) - logProcess(child, join(home, `lcd.log`)) - - child.stdout.on(`line`, line => { - if (/\(cert: "(.+?)"/.test(line)) { - const certPath = /\(cert: "(.+?)"/.exec(line)[1] - resolve({ ca: fs.readFileSync(certPath, `utf8`), process: child }) - lcdStarted = true - child.stdout.removeAllListeners(`line`) - } - }) - - child.stderr.on(`line`, error => { - let errorMessage = `The gaiacli rest-server (LCD) experienced an error:\n${error.toString( - `utf8` - )}`.substr(0, 1000) - lcdStarted - ? handleCrash(errorMessage) // if fails later - : reject(errorMessage) // if fails immediatly - }) - }) -} - -function stopLCD() { - return new Promise((resolve, reject) => { - if (!gaiaLiteProcess) { - resolve() - return - } - log(`Stopping the LCD server`) - try { - // prevent the exit to signal bad termination warnings - gaiaLiteProcess.removeAllListeners(`exit`) - gaiaLiteProcess.on(`exit`, () => { - gaiaLiteProcess = null - resolve() - }) - gaiaLiteProcess.kill(`SIGKILL`) - } catch (error) { - handleCrash(error) - reject(`Stopping the LCD resulted in an error: ${error.message}`) - } - }) -} - -async function getGaiacliVersion() { - let child = startProcess(LCD_BINARY_NAME, [`version`]) - let data = await new Promise(resolve => { - child.stdout.on(`data`, resolve) - }) - return data.toString(`utf8`).trim() -} - -function exists(path) { - try { - fs.accessSync(path) - return true - } catch (error) { - if (error.code !== `ENOENT`) throw error - return false - } -} - -// this function will call the passed in callback when the view is booted -// the purpose is to send events to the view thread only after it is ready to receive those events -// if we don't do this, the view thread misses out on those (i.e. an error that occures before the view is ready) -function afterBooted(cb) { - // in tests we trigger the booted callback always, this causes those events to be sent twice - // this is why we skip the callback if the message was sent already - let sent = false - ipcMain.on(`booted`, () => { - cb() - sent = true - }) - if (booted && !sent) { - cb() - } -} - -/* - * log to file - */ -function setupLogging(root) { - if (!LOGGING) return - - // initialize log file - let logFilePath = join(root, `main.log`) - fs.ensureFileSync(logFilePath) - let mainLog = fs.createWriteStream(logFilePath, { flags: `a` }) // 'a' means appending (old data will be preserved) - mainLog.write(`${new Date()} Running Cosmos-UI\r\n`) - // mainLog.write(`${new Date()} Environment: ${JSON.stringify(process.env)}\r\n`) // TODO should be filtered before adding it to the log - streams.push(mainLog) - - log(`Redirecting console output to logfile`, logFilePath) - // redirect stdout/err to logfile - // TODO overwriting console.log sounds like a bad idea, can we find an alternative? - // eslint-disable-next-line no-func-assign - log = function(...args) { - if (DEV) { - console.log(...args) - } - mainLog.write(`main-process: ${args.join(` `)}\r\n`) - } - // eslint-disable-next-line no-func-assign - logError = function(...args) { - if (DEV) { - console.error(...args) - } - mainLog.write(`main-process: ${args.join(` `)}\r\n`) - } -} - -if (!TEST) { - process.on(`exit`, shutdown) - // on uncaught exceptions we wait so the sentry event can be sent - process.on(`uncaughtException`, async function(error) { - logError(`[Uncaught Exception]`, error) - Sentry.captureException(error) - handleCrash(error) - }) - process.on(`unhandledRejection`, async function(error) { - logError(`[Unhandled Promise Rejection]`, error) - Sentry.captureException(error) - handleCrash(error) - }) -} - -const eventHandlers = { - booted: () => { - log(`View has booted`) - booted = true - }, - - "error-collection": (event, optin) => { - if (optin) { - Sentry.init({ - dsn: config.sentry_dsn, - release: `voyager@${pkgVersion}` - }) - } else { - Sentry.init({}) - } - }, - - mocked: value => { - global.config.mocked = value - }, - - reconnect: () => reconnect(), - - "stop-lcd": () => stopLCD(), - - "successful-launch": () => { - console.log(`[START SUCCESS] Vue app successfuly started`) - } -} - -// handle ipc messages from the renderer process -Object.entries(eventHandlers).forEach(([event, handler]) => { - ipcMain.on(event, handler) -}) - -// test an actual node version against the expected one and flag the node if incompatible -async function testNodeVersion(client, expectedGaiaVersion) { - let result = await client.nodeVersion() - let nodeVersion = result.split(`-`)[0] - let semverDiff = semver.diff(nodeVersion, expectedGaiaVersion) - if (semverDiff === `patch` || semverDiff === null) { - return { compatible: true, nodeVersion } - } - - return { compatible: false, nodeVersion } -} - -// Proxy requests to Axios through the main process because we need -// Node.js in order to support self-signed TLS certificates. -const AxiosListener = axios => { - return async (event, id, options) => { - let response - - try { - response = { - value: await axios(options) - } - } catch (exception) { - response = { exception } - } - - event.sender.send(`Axios/${id}`, response) - } -} - -// check if our node is reachable and the SDK version is compatible with the local one -async function pickAndConnect() { - let nodeURL = config.node_lcd - connecting = true - let certificate - - try { - certificate = (await connect(nodeURL)).ca - } catch (error) { - handleCrash(error) - return - } - - // make the tls certificate available to the view process - // https://en.wikipedia.org/wiki/Certificate_authority - global.config.ca = certificate - const axiosInstance = axios.create({ - httpsAgent: new https.Agent({ ca: certificate }) - }) - - let compatible, nodeVersion - try { - const client = LcdClient(axiosInstance, config.node_lcd) - const out = await testNodeVersion(client, expectedGaiaCliVersion) - - compatible = out.compatible - nodeVersion = out.nodeVersion - } catch (error) { - logError( - `Error in getting node SDK version, assuming node is incompatible. Error:`, - error - ) - await stopLCD() - - // retry - setTimeout(pickAndConnect, 2000) - return - } - - if (!compatible) { - let message = `Node ${nodeURL} uses SDK version ${nodeVersion} which is incompatible to the version used in Voyager ${expectedGaiaCliVersion}` - log(message) - await stopLCD() - - // retry - setTimeout(pickAndConnect, 2000) - return - } - - ipcMain.removeAllListeners(`Axios`) - ipcMain.on(`Axios`, AxiosListener(axiosInstance)) - - afterBooted(() => { - log(`Signaling connected node`) - mainWindow.webContents.send(`connected`, { - lcdURL: config.node_lcd, - rpcURL: config.node_rpc - }) - }) -} - -async function connect() { - log(`starting gaia rest server with nodeURL ${config.node_lcd}`) - - const { ca, process } = await startLCD(lcdHome, config.node_rpc) - gaiaLiteProcess = process - log(`gaia rest server ready`) - - connecting = false - return { ca, process } -} - -async function reconnect() { - if (connecting) return - log(`Starting reconnect`) - connecting = true - - await stopLCD() - - await pickAndConnect() -} - -function checkConsistentConfigDir( - appVersionPath, - genesisPath, - configPath, - gaiacliVersionPath -) { - let missingFile = - (!exists(genesisPath) && genesisPath) || - (!exists(appVersionPath) && appVersionPath) || - (!exists(configPath) && configPath) || - (!exists(gaiacliVersionPath) && gaiacliVersionPath) - if (missingFile) { - throw Error( - `The data directory (${root}) is missing ${relative(root, missingFile)}` - ) - } else { - let existingVersion = fs.readFileSync(appVersionPath, `utf8`).trim() - let semverDiff = semver.diff(existingVersion, pkgVersion) - let compatible = semverDiff !== `major` && semverDiff !== `minor` - if (compatible) { - log(`configs are compatible with current app version`) - } else { - // TODO: versions of the app with different data formats will need to learn how to - // migrate old data - throw Error(`Data was created with an incompatible app version - data=${existingVersion} app=${pkgVersion}`) - } - } -} - -const checkGaiaCompatibility = async gaiacliVersionPath => { - // XXX: currently ignores commit hash - let gaiacliVersion = (await getGaiacliVersion()).split(`-`)[0] - - expectedGaiaCliVersion = fs - .readFileSync(gaiacliVersionPath, `utf8`) - .trim() - .split(`-`)[0] - - log( - `gaiacli version: "${gaiacliVersion}", expected: "${expectedGaiaCliVersion}"` - ) - - let compatible = - semver.major(gaiacliVersion) == semver.major(expectedGaiaCliVersion) && - semver.minor(gaiacliVersion) == semver.minor(expectedGaiaCliVersion) - - if (!compatible) { - throw Error( - `The network you are trying to connect to requires gaia ${expectedGaiaCliVersion}, but the version Voyager is using is ${gaiacliVersion}.${ - DEV - ? ` Please update "tasks/build/Gaia/COMMIT.sh" with the required version and run "yarn build:gaia".` - : `` - }` - ) - } -} - -async function main() { - // Sentry is used for automatic error reporting. It is turned off by default. - Sentry.init({}) - - let appVersionPath = join(root, `app_version`) - let genesisPath = join(root, `genesis.json`) - let configPath = join(root, `config.toml`) - let gaiacliVersionPath = join(root, `gaiaversion.txt`) - - let rootExists = exists(root) - await fs.ensureDir(root) - - setupLogging(root) - - if (rootExists) { - log(`root exists (${root})`) - - // NOTE: when changing this code, always make sure the app can never - // overwrite/delete existing data without at least backing it up, - // since it may contain the user's private keys and they might not - // have written down their seed words. - // they might get pretty mad if the app deletes their money! - - // check if the existing data came from a compatible app version - // if not, fail with an error - checkConsistentConfigDir( - appVersionPath, - genesisPath, - configPath, - gaiacliVersionPath - ) - - // check to make sure the genesis.json we want to use matches the one - // we already have. if it has changed, replace it with the new one - let existingGenesis = fs.readFileSync(genesisPath, `utf8`) - let genesisJSON = JSON.parse(existingGenesis) - // skip this check for local testnet - if (genesisJSON.chain_id !== `local`) { - let specifiedGenesis = fs.readFileSync( - join(networkPath, `genesis.json`), - `utf8` - ) - if (existingGenesis.trim() !== specifiedGenesis.trim()) { - fs.copySync(networkPath, root) - log( - `genesis.json at "${genesisPath}" was overridden by genesis.json from "${networkPath}"` - ) - } - } - } else { - log(`initializing data directory (${root})`) - await fs.ensureDir(root) - - // copy predefined genesis.json and config.toml into root - fs.accessSync(networkPath) // crash if invalid path - fs.copySync(networkPath, root) - - fs.writeFileSync(appVersionPath, pkgVersion) - } - - await checkGaiaCompatibility(gaiacliVersionPath) - - // read chainId from genesis.json - let genesisText = fs.readFileSync(genesisPath, `utf8`) - let genesis = JSON.parse(genesisText) - chainId = genesis.chain_id // is set globaly - - // choose one random node to start from - await pickAndConnect() -} -module.exports = main() - .catch(error => { - logError(error) - handleCrash(error) - }) - .then(() => ({ - shutdown, - processes: { gaiaLiteProcess }, - eventHandlers, - getGaiaLiteProcess: () => gaiaLiteProcess - })) diff --git a/app/src/main/menu.js b/app/src/main/menu.js deleted file mode 100644 index 34d20acb25..0000000000 --- a/app/src/main/menu.js +++ /dev/null @@ -1,83 +0,0 @@ -"use strict" - -const { app, Menu, shell, dialog } = require(`electron`) -const { join } = require(`path`) - -module.exports = function() { - let template = [ - { - label: `Cosmos Voyager`, - submenu: [ - { - label: `About Cosmos Voyager`, - selector: `orderFrontStandardAboutPanel:`, - click: () => openAboutMenu() - }, - { type: `separator` }, - { - label: `Quit`, - accelerator: `Command+Q`, - click: () => app.quit() - } - ] - }, - { - label: `Edit`, - submenu: [ - { - label: `Cut`, - accelerator: `CmdOrCtrl+X`, - selector: `cut:` - }, - { - label: `Copy`, - accelerator: `CmdOrCtrl+C`, - selector: `copy:` - }, - { - label: `Paste`, - accelerator: `CmdOrCtrl+V`, - selector: `paste:` - } - ] - }, - { - label: `Help`, - submenu: [ - { - label: `Report An Issue`, - click() { - shell.openExternal(`https://github.com/cosmos/voyager/issues/new`) - } - }, - { - label: `View Application Log`, - click() { - shell.openItem(global.root + `/main.log`) - } - } - ] - } - ] - - let menu = Menu.buildFromTemplate(template) - Menu.setApplicationMenu(menu) -} - -function openAboutMenu() { - const voyagerVersion = require(`../../../package.json`).version - const gaiaVersion = process.env.GAIA_VERSION - const electronVersion = app.getVersion() - - const imageLocation = - process.env.NODE_ENV === `development` - ? join(__dirname, `../renderer/assets/images`) - : join(__dirname, `./imgs`) - - dialog.showMessageBox({ - type: `info`, - title: `About Voyager`, - message: `Versions\n\nVoyager ${voyagerVersion}\nCosmos SDK ${gaiaVersion}\nElectron ${electronVersion}`, - icon: join(imageLocation, `cosmos-logo.png`) - }) -} diff --git a/app/src/renderer/components/common/TmModalError.vue b/app/src/renderer/components/common/TmModalError.vue index c370adfb10..711eb17058 100644 --- a/app/src/renderer/components/common/TmModalError.vue +++ b/app/src/renderer/components/common/TmModalError.vue @@ -16,22 +16,12 @@ value="Create an issue" type="anchor" /> - diff --git a/app/src/renderer/components/common/TmModalNodeHalted.vue b/app/src/renderer/components/common/TmModalNodeHalted.vue index 4a220c410a..d8ac587faf 100644 --- a/app/src/renderer/components/common/TmModalNodeHalted.vue +++ b/app/src/renderer/components/common/TmModalNodeHalted.vue @@ -32,14 +32,12 @@ diff --git a/app/src/renderer/components/common/TmNotifications.vue b/app/src/renderer/components/common/TmNotifications.vue index 950aeeb976..20b05fc417 100644 --- a/app/src/renderer/components/common/TmNotifications.vue +++ b/app/src/renderer/components/common/TmNotifications.vue @@ -9,7 +9,6 @@ :layout="notification.layout" :title="notification.title" :time="notification.time" - :theme="theme" > @@ -25,10 +24,6 @@ export default { notifications: { type: Array, required: true - }, - theme: { - type: String, - default: null } } } diff --git a/test/unit/specs/components/common/AppHeader.spec.js b/test/unit/specs/components/common/AppHeader.spec.js index a52d500de5..bb09d812a6 100644 --- a/test/unit/specs/components/common/AppHeader.spec.js +++ b/test/unit/specs/components/common/AppHeader.spec.js @@ -76,13 +76,4 @@ describe(`AppHeader`, () => { expect(store.commit).toHaveBeenCalledWith(`setConfigDesktop`, false) }) - - it(`handles dark theme`, () => { - expect(wrapper.find(`#logo-white`).exists()).toBeTruthy() - }) - - it(`handles light theme`, () => { - store.commit(`setTheme`, `light`) - expect(wrapper.find(`#logo-black`).exists()).toBeTruthy() - }) }) diff --git a/test/unit/specs/components/common/TmField.spec.js b/test/unit/specs/components/common/TmField.spec.js index 4b57bc893a..8cc0505f95 100644 --- a/test/unit/specs/components/common/TmField.spec.js +++ b/test/unit/specs/components/common/TmField.spec.js @@ -152,8 +152,7 @@ describe(`TmField`, () => { it(`allows for style customization`, () => { const wrapper = shallowMount(TmField, { propsData: { - size: `lg`, - theme: `light` + size: `lg` } }) expect(wrapper.vm.$el).toMatchSnapshot() diff --git a/test/unit/specs/components/common/__snapshots__/TmField.spec.js.snap b/test/unit/specs/components/common/__snapshots__/TmField.spec.js.snap index 0d0aec3586..a98ba33ce0 100644 --- a/test/unit/specs/components/common/__snapshots__/TmField.spec.js.snap +++ b/test/unit/specs/components/common/__snapshots__/TmField.spec.js.snap @@ -2,7 +2,7 @@ exports[`TmField allows for style customization 1`] = ` `; diff --git a/test/unit/specs/store/__snapshots__/themes.spec.js.snap b/test/unit/specs/store/__snapshots__/themes.spec.js.snap deleted file mode 100644 index 5ee5e5e209..0000000000 --- a/test/unit/specs/store/__snapshots__/themes.spec.js.snap +++ /dev/null @@ -1,21 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Module: Themes has a dark theme 1`] = ` -Object { - "app-bg": "hsl(233, 30%, 22%)", - "app-fg": "hsl(233, 36%, 18%)", - "app-nav": "hsl(233, 38%, 14%)", - "bc": "hsla(233, 24%, 75%, 0.175)", - "bc-dim": "hsla(233, 24%, 75%, 0.0875)", - "bright": "hsl(0, 100%, 100%)", - "dim": "hsla(0, 100%, 100%, 0.667)", - "hover": "hsla(0, 0%, 0%, 0)", - "link": "hsl(217, 100%, 70%)", - "primary": "hsl(233, 88%, 57%)", - "secondary": "hsl(277, 92%, 58%)", - "tertiary": "hsl(325, 96%, 59%)", - "txt": "hsla(0, 100%, 100%, 0.8)", -} -`; - -exports[`Module: Themes has a light theme 1`] = `undefined`; diff --git a/test/unit/specs/store/themes.spec.js b/test/unit/specs/store/themes.spec.js deleted file mode 100644 index 78cd71aeaa..0000000000 --- a/test/unit/specs/store/themes.spec.js +++ /dev/null @@ -1,37 +0,0 @@ -import setup from "../../helpers/vuex-setup" - -let instance = setup() - -describe(`Module: Themes`, () => { - let store, state - - beforeEach(() => { - store = instance.shallow().store - state = store.state.themes - }) - - it(`has a dark theme`, () => { - expect(state.options.dark).toMatchSnapshot() - }) - - it(`has a light theme`, () => { - expect(state.options.light).toMatchSnapshot() - }) - - it(`loads themes`, () => { - expect(state.active).toBe(`dark`) - localStorage.setItem(`appTheme`, `light`) - store.dispatch(`loadTheme`) - expect(state.active).toBe(`light`) - }) - - it(`sets themes`, () => { - expect(state.active).toBe(`dark`) - store.commit(`setTheme`, `light`) - expect(state.active).toBe(`light`) - }) - - it(`updates themes`, () => { - store.commit(`updateTheme`, `light`) - }) -}) From a5188dfea5a02cb44cee786c1799538333fee4b0 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Mon, 14 Jan 2019 19:13:29 +0100 Subject: [PATCH 110/125] disable e2e tests for now --- .circleci/config.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ec6bc04464..2923c684bb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -181,19 +181,19 @@ workflows: branches: ignore: release - - testE2e: - requires: - - buildGaia - filters: - branches: - ignore: release + # - testE2e: + # requires: + # - buildGaia + # filters: + # branches: + # ignore: release - publish: requires: - changelogUpdated - buildGaia - testUnit - - testE2e + # - testE2e filters: branches: only: develop From b420490b347da4a94bae1abc1bec84f91d331bc6 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Mon, 14 Jan 2019 20:40:07 +0100 Subject: [PATCH 111/125] go with 2 nodes as the third node fails currently --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9ff85e3fb7..faab8cf0b0 100644 --- a/package.json +++ b/package.json @@ -41,8 +41,8 @@ "stargate": "./builds/Gaia/darwin_amd64/gaiacli rest-server --laddr 'tcp://localhost:9070' --home './builds/testnets/local-testnet/cli_home' --node 'http://localhost:26657' --chain-id 'local-testnet' --trust-node true", "frontend": "webpack-dev-server --hot --colors --config webpack.renderer.config.js --port 9080 --content-base app/dist --https --mode=development", "frontend:fixed-https": "yarn frontend --cert 'server_dev.crt' --key 'server_dev.key'", - "backend": "yarn proxy & yarn stargate & yarn nodes 3", - "backend:fixed-https": "yarn nodes 3 skip-rebuild & yarn stargate --ssl-certfile 'server_dev.crt' --ssl-keyfile 'server_dev.key'" + "backend": "yarn proxy & yarn stargate & yarn nodes 2", + "backend:fixed-https": "yarn nodes 2 skip-rebuild & yarn stargate --ssl-certfile 'server_dev.crt' --ssl-keyfile 'server_dev.key'" }, "devDependencies": { "@nodeguy/cli": "0.2.2", From 4b9349a17fc702cdb93d12b7b725433fce777b17 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Tue, 15 Jan 2019 11:50:55 +0100 Subject: [PATCH 112/125] updating header correctly and provide liquidAtoms getter --- CHANGELOG.md | 5 +- .../renderer/components/common/TmBalance.vue | 4 +- .../components/staking/PageValidator.vue | 10 +- .../components/staking/TableValidators.vue | 3 +- .../renderer/components/wallet/PageSend.vue | 9 +- app/src/renderer/vuex/getters.js | 8 +- app/src/renderer/vuex/modules/delegation.js | 8 +- app/src/renderer/vuex/modules/user.js | 3 - app/src/renderer/vuex/modules/wallet.js | 56 +++++- .../specs/components/common/TmBalance.spec.js | 2 +- .../governance/PageGovernance.spec.js | 8 +- .../governance/TableProposals.spec.js | 10 +- .../__snapshots__/PageGovernance.spec.js.snap | 188 +----------------- .../components/staking/PageStaking.spec.js | 10 +- .../components/staking/PageValidator.spec.js | 21 +- .../staking/TableValidators.spec.js | 10 +- .../__snapshots__/PageStaking.spec.js.snap | 104 +--------- .../__snapshots__/PageValidator.spec.js.snap | 33 +-- test/unit/specs/store/delegation.spec.js | 41 +++- test/unit/specs/store/user.spec.js | 5 - test/unit/specs/store/wallet.spec.js | 14 ++ 21 files changed, 182 insertions(+), 370 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e706c0e9df..90583b1ae0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -147,8 +147,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - [\#1572](https://github.com/cosmos/voyager/issues/1572) Fixed scroll bug when switching between tabs @jbibla - [\#1749](https://github.com/cosmos/voyager/issues/1749) Fixed proposal tally update after voting @fedekunze - [\#1765](https://github.com/cosmos/voyager/pull/1765) Fixed proposal deposit update after submitting a deposit @fedekunze -- [\#1791](https://github.com/cosmos/voyager/pull/1791) Fixed a problem with initializing the Voyager config dir @faboweb -- [\#1815](https://github.com/cosmos/voyager/pull/1815) Fixed getters for proposals denominator, reverted to 945803d586b83d65547cd16f4cd5994eac2957ea until interfaces are ready @sabau +- [\#1791](https://github.com/cosmos/voyager/issue/1791) Fixed a problem with initializing the Voyager config dir @faboweb +- [\#1815](https://github.com/cosmos/voyager/issue/1815) Fixed getters for proposals denominator, reverted to 945803d586b83d65547cd16f4cd5994eac2957ea until interfaces are ready @sabau +- [\#1809](https://github.com/cosmos/voyager/issue/1809) Fixed optimistically updating the header on sending @faboweb ## [0.10.7] - 2018-10-10 diff --git a/app/src/renderer/components/common/TmBalance.vue b/app/src/renderer/components/common/TmBalance.vue index d7783b9a34..031a827136 100644 --- a/app/src/renderer/components/common/TmBalance.vue +++ b/app/src/renderer/components/common/TmBalance.vue @@ -51,12 +51,12 @@ export default { } }, computed: { - ...mapGetters([`user`, `totalAtoms`, `bondDenom`]), + ...mapGetters([`user`, `liquidAtoms`, `totalAtoms`, `bondDenom`]), address() { return this.user.address }, unbondedAtoms() { - return this.num.shortNumber(this.user.atoms) + return this.num.shortNumber(this.liquidAtoms) } } } diff --git a/app/src/renderer/components/staking/PageValidator.vue b/app/src/renderer/components/staking/PageValidator.vue index 83fe66a24f..abb6053dd8 100644 --- a/app/src/renderer/components/staking/PageValidator.vue +++ b/app/src/renderer/components/staking/PageValidator.vue @@ -250,8 +250,7 @@ export default { `committedDelegations`, `config`, `keybase`, - `oldBondedAtoms`, - `totalAtoms`, + `liquidAtoms`, `wallet`, `connected` ]), @@ -312,9 +311,6 @@ export default { // status: active return `green` - }, - availableAtoms() { - return this.totalAtoms - this.oldBondedAtoms } }, watch: { @@ -332,7 +328,7 @@ export default { }, onDelegation() { this.action = `delegate` - if (this.availableAtoms > 0) { + if (this.liquidAtoms > 0) { this.showDelegationModal = true } else { this.showCannotModal = true @@ -415,7 +411,7 @@ export default { let myWallet = [ { address: this.wallet.address, - maximum: Math.floor(this.totalAtoms - this.oldBondedAtoms), + maximum: Math.floor(this.liquidAtoms), key: `My Wallet - ${shortAddress(this.wallet.address, 20)}`, value: 0 } diff --git a/app/src/renderer/components/staking/TableValidators.vue b/app/src/renderer/components/staking/TableValidators.vue index 24fb144883..f2a7431aa1 100644 --- a/app/src/renderer/components/staking/TableValidators.vue +++ b/app/src/renderer/components/staking/TableValidators.vue @@ -61,6 +61,7 @@ export default { `committedDelegations`, `config`, `user`, + `liquidAtoms`, `connected`, `bondDenom`, `keybase` @@ -110,7 +111,7 @@ export default { } }, userCanDelegate() { - return this.user.atoms > 0 && this.delegation.loaded + return this.liquidAtoms > 0 && this.delegation.loaded }, properties() { return [ diff --git a/app/src/renderer/components/wallet/PageSend.vue b/app/src/renderer/components/wallet/PageSend.vue index cc5a37305a..2b77a29bc0 100644 --- a/app/src/renderer/components/wallet/PageSend.vue +++ b/app/src/renderer/components/wallet/PageSend.vue @@ -237,11 +237,12 @@ export default { let denom = this.fields.denom try { let type = `send` - await this.sendTx({ + await this.sendCoins({ type, password: this.fields.password, - to: address, - amount: [{ denom, amount: amount.toString() }] + receiver: address, + denom, + amount }) this.sending = false this.$store.commit(`notify`, { @@ -271,7 +272,7 @@ export default { return false } }, - ...mapActions([`sendTx`]) + ...mapActions([`sendCoins`]) }, validations() { return { diff --git a/app/src/renderer/vuex/getters.js b/app/src/renderer/vuex/getters.js index fd0da39ca6..e72befe1da 100644 --- a/app/src/renderer/vuex/getters.js +++ b/app/src/renderer/vuex/getters.js @@ -23,9 +23,15 @@ export const allTransactions = state => export const wallet = state => state.wallet // staking +export const liquidAtoms = state => + ( + state.wallet.balances.find( + balance => balance.denom === state.stakingParameters.parameters.bond_denom + ) || { amount: 0 } + ).amount export const delegation = state => state.delegation export const totalAtoms = (state, getters) => { - return new BN(getters.user.atoms) + return new BN(getters.liquidAtoms) .plus(new BN(getters.oldBondedAtoms)) .plus(new BN(getters.oldUnbondingAtoms)) .toString() diff --git a/app/src/renderer/vuex/modules/delegation.js b/app/src/renderer/vuex/modules/delegation.js index ad0cf28004..04c2be1051 100644 --- a/app/src/renderer/vuex/modules/delegation.js +++ b/app/src/renderer/vuex/modules/delegation.js @@ -142,7 +142,8 @@ export default ({ node }) => { }, async submitDelegation( { - rootState: { stakingParameters, user, wallet }, + rootState: { stakingParameters, wallet }, + getters: { liquidAtoms }, state, dispatch, commit @@ -165,7 +166,10 @@ export default ({ node }) => { }) // optimistic update the atoms of the user before we get the new values from chain - commit(`setAtoms`, user.atoms - amount) + commit(`updateWalletBalance`, { + denom, + amount: liquidAtoms - amount + }) // optimistically update the committed delegations Vue.set( state.committedDelegates, diff --git a/app/src/renderer/vuex/modules/user.js b/app/src/renderer/vuex/modules/user.js index de84748602..85f553b102 100644 --- a/app/src/renderer/vuex/modules/user.js +++ b/app/src/renderer/vuex/modules/user.js @@ -41,9 +41,6 @@ export default ({}) => { setAccounts(state, accounts) { state.accounts = accounts }, - setAtoms(state, atoms) { - state.atoms = atoms - }, addHistory(state, path) { state.history.push(path) state.externals.track(`pageview`, { diff --git a/app/src/renderer/vuex/modules/wallet.js b/app/src/renderer/vuex/modules/wallet.js index 1da79ebbc4..a2dfa92e2b 100644 --- a/app/src/renderer/vuex/modules/wallet.js +++ b/app/src/renderer/vuex/modules/wallet.js @@ -19,6 +19,20 @@ export default ({ node }) => { state.balances = balances state.loading = false }, + updateWalletBalance(state, balance) { + let updated = false + state.balances = state.balances.map(oldBalance => { + if (oldBalance.denom === balance.denom) { + updated = true + return balance + } + return oldBalance + }) + + if (!updated) { + state.balances.push(balance) + } + }, setWalletAddress(state, address) { state.address = address }, @@ -64,14 +78,6 @@ export default ({ node }) => { commit(`setNonce`, res.sequence) commit(`setAccountNumber`, res.account_number) commit(`setWalletBalances`, coins) - for (let coin of coins) { - if ( - coin.denom === rootState.stakingParameters.parameters.bond_denom - ) { - commit(`setAtoms`, parseFloat(coin.amount)) - break - } - } state.loading = false state.loaded = true } catch (error) { @@ -83,6 +89,40 @@ export default ({ node }) => { state.error = error } }, + async sendCoins( + { dispatch, commit, state }, + { receiver, amount, denom, password } + ) { + await dispatch(`sendTx`, { + type: `send`, + password, + to: receiver, + amount: [{ denom, amount: amount.toString() }] + }) + + // const balanceIndex = state.balances.findIndex( + // balance => balance.denom === denom + // ) + + // Vue.set(state.balances, balanceIndex, { + // denom, + // amount: state.balances[balanceIndex].amount - amount + // }) + + // copy array because if we just manipulate the item in it, Vue doesn't recognize the change + const newBalances = JSON.parse(JSON.stringify(state.balances)).map( + ({ denom: _denom, amount: oldAmount }) => { + if (denom === _denom) { + return { + denom, + amount: oldAmount - amount + } + } + return { denom: _denom, amount: oldAmount } + } + ) + commit(`setWalletBalances`, newBalances) + }, async loadDenoms({ commit, state }) { try { const { genesis } = await network() diff --git a/test/unit/specs/components/common/TmBalance.spec.js b/test/unit/specs/components/common/TmBalance.spec.js index 838d9d6715..20123dc5a8 100644 --- a/test/unit/specs/components/common/TmBalance.spec.js +++ b/test/unit/specs/components/common/TmBalance.spec.js @@ -12,10 +12,10 @@ describe(`TmBalance`, () => { getters: { user: () => { return { - atoms: 123, address: `useraddress16876876876876876786876876876876876` } }, + liquidAtoms: () => 123, totalAtoms: () => { return 321 } diff --git a/test/unit/specs/components/governance/PageGovernance.spec.js b/test/unit/specs/components/governance/PageGovernance.spec.js index 93e9354a80..d406e27101 100644 --- a/test/unit/specs/components/governance/PageGovernance.spec.js +++ b/test/unit/specs/components/governance/PageGovernance.spec.js @@ -12,8 +12,9 @@ const proposal = { password: `1234567890` } -let { governanceParameters, stakingParameters } = lcdClientMock.state +let { governanceParameters } = lcdClientMock.state +// TODO refactor according to new unit test standard describe(`PageGovernance`, () => { let wrapper, store let { mount, localVue } = setup() @@ -25,15 +26,16 @@ describe(`PageGovernance`, () => { let instance = mount(PageGovernance, { doBefore: ({ store }) => { store.commit(`setGovParameters`, governanceParameters) - store.commit(`setStakingParameters`, stakingParameters.parameters) store.commit(`setConnected`, true) + }, + stubs: { + "tm-balance": true } }) wrapper = instance.wrapper store = instance.store store.state.user.address = lcdClientMock.addresses[0] store.dispatch(`updateDelegates`) - store.commit(`setAtoms`, 1337) }) it(`has the expected html structure`, async () => { diff --git a/test/unit/specs/components/governance/TableProposals.spec.js b/test/unit/specs/components/governance/TableProposals.spec.js index 457c5aaccf..16f8572d7f 100644 --- a/test/unit/specs/components/governance/TableProposals.spec.js +++ b/test/unit/specs/components/governance/TableProposals.spec.js @@ -21,7 +21,10 @@ describe(`TableProposals`, () => { doBefore: ({ store }) => { store.commit(`setConnected`, true) store.state.user.address = `address1234` - store.commit(`setAtoms`, 1337) + store.commit(`updateWalletBalance`, { + denom: `atom`, + amount: 1337 + }) for (const [proposal_id, tally_result] of Object.entries(tallies)) { store.commit(`setProposalTally`, { proposal_id, tally_result }) } @@ -83,7 +86,10 @@ describe(`TableProposals`, () => { doBefore: ({ store }) => { store.commit(`setConnected`, true) store.state.user.address = `address1234` - store.commit(`setAtoms`, 1337) + store.commit(`updateWalletBalance`, { + denom: `atom`, + amount: 1337 + }) }, propsData: { proposals: {} }, stubs: { "data-empty-search": true } diff --git a/test/unit/specs/components/governance/__snapshots__/PageGovernance.spec.js.snap b/test/unit/specs/components/governance/__snapshots__/PageGovernance.spec.js.snap index d4a879daab..d0c79871f9 100644 --- a/test/unit/specs/components/governance/__snapshots__/PageGovernance.spec.js.snap +++ b/test/unit/specs/components/governance/__snapshots__/PageGovernance.spec.js.snap @@ -21,97 +21,9 @@ exports[`PageGovernance disables proposal creation if not connected 1`] = `
-
-
-
- -
- -
-

- Total STAKE -

- -

- 1,337.0000… -

-
- -
-

- Available STAKE -

- -

- 1,337.0000… -

-
-
- -
-
- - cosmos…xxn9 - -
- -
- - check - - - Copied - -
-
- -
-
- - Proposals - -
-
- - Parameters - -
-
- -
+
-
-
-
- -
- -
-

- Total STAKE -

- -

- 1,351.0000… -

-
- -
-

- Available STAKE -

- -

- 1,337.0000… -

-
-
- -
-
- - cosmos…xxn9 - -
- -
- - check - - - Copied - -
-
- -
-
- - Proposals - -
-
- - Parameters - -
-
- -
+
{ let wrapper, store - let { stakingParameters } = lcdClientMock.state let { mount } = setup() beforeEach(() => { - let instance = mount(PageStaking) + let instance = mount(PageStaking, { + stubs: { + "tm-balance": true + } + }) wrapper = instance.wrapper store = instance.store store.commit(`setConnected`, true) store.state.user.address = lcdClientMock.addresses[0] store.dispatch(`updateDelegates`) - store.commit(`setAtoms`, 1337) - store.commit(`setStakingParameters`, stakingParameters.parameters) }) it(`has the expected html structure`, async () => { diff --git a/test/unit/specs/components/staking/PageValidator.spec.js b/test/unit/specs/components/staking/PageValidator.spec.js index 828ab0d9b7..c92b3b8d79 100644 --- a/test/unit/specs/components/staking/PageValidator.spec.js +++ b/test/unit/specs/components/staking/PageValidator.spec.js @@ -35,9 +35,9 @@ const getterValues = { [lcdClientMock.validators[0]]: 0 }, keybase: `keybase`, - oldBondedAtoms: 50, - totalAtoms: 100, - user: { atoms: 42 }, + liquidAtoms: 1337, + oldBondedAtoms: 100, + totalAtoms: 1437, wallet: { address: `cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpesxxn9` }, connected: true, lastPage: null, @@ -45,6 +45,7 @@ const getterValues = { bondDenom: stakingParameters.parameters.bond_denom } +// TODO refactor tests according to new unit test standard describe(`PageValidator`, () => { let wrapper, store let { mount } = setup() @@ -337,17 +338,20 @@ describe(`onDelegation`, () => { candidateId: lcdClientMock.validators[0], value: 100 }) - store.commit(`setAtoms`, 1337) store.commit(`setConnected`, true) + store.commit(`setStakingParameters`, stakingParameters.parameters) store.commit(`setDelegates`, [validator, validatorTo]) + store.commit(`updateWalletBalance`, { + denom: `STAKE`, + amount: 1337 + }) store.state.wallet.address = lcdClientMock.addresses[0] }, mocks: { $route: { params: { validator: validator.operator_address } } - }, - getters: { bondDenom: () => stakingParameters.parameters.bond_denom } + } }) wrapper = instance.wrapper store = instance.store @@ -360,7 +364,10 @@ describe(`onDelegation`, () => { }) it(`is not enough`, () => { - store.commit(`setAtoms`, 0) + store.commit(`updateWalletBalance`, { + denom: `STAKE`, + amount: 0 + }) wrapper.find(`#delegation-btn`).trigger(`click`) expect(wrapper.vm.showCannotModal).toBe(true) diff --git a/test/unit/specs/components/staking/TableValidators.spec.js b/test/unit/specs/components/staking/TableValidators.spec.js index 253ca892dc..2525153d07 100644 --- a/test/unit/specs/components/staking/TableValidators.spec.js +++ b/test/unit/specs/components/staking/TableValidators.spec.js @@ -12,14 +12,20 @@ describe(`TableValidators`, () => { let instance = mount(TableValidators, { doBefore: ({ store }) => { store.commit(`setConnected`, true) - store.commit(`setAtoms`, 1337) + store.commit(`updateWalletBalance`, { + denom: `atom`, + amount: 1337 + }) }, propsData: { validators: lcdClientMock.candidates } }) wrapper = instance.wrapper store = instance.store store.state.user.address = `address1234` - store.commit(`setAtoms`, 1337) + store.commit(`updateWalletBalance`, { + denom: `atom`, + amount: 1337 + }) store.commit(`setStakingParameters`, stakingParameters.parameters) }) diff --git a/test/unit/specs/components/staking/__snapshots__/PageStaking.spec.js.snap b/test/unit/specs/components/staking/__snapshots__/PageStaking.spec.js.snap index 9874508413..246897dd29 100644 --- a/test/unit/specs/components/staking/__snapshots__/PageStaking.spec.js.snap +++ b/test/unit/specs/components/staking/__snapshots__/PageStaking.spec.js.snap @@ -21,107 +21,9 @@ exports[`PageStaking has the expected html structure 1`] = `
-
-
-
- -
- -
-

- Total STAKE -

- -

- 1,351.0000… -

-
- -
-

- Available STAKE -

- -

- 1,337.0000… -

-
-
- -
-
- - cosmos…xxn9 - -
- -
- - check - - - Copied - -
-
- -
-
- - My Delegations - -
-
- - Validators - -
-
- - Parameters - -
-
- -
+
{ const dispatch = jest.fn() await actions.submitDelegation( - { rootState: mockRootState, state, dispatch, commit: jest.fn() }, + { + rootState: mockRootState, + getters: { + liquidAtoms: 1000 + }, + state, + dispatch, + commit: jest.fn() + }, { stakingTransactions } ) @@ -209,7 +217,15 @@ describe(`Module: Delegations`, () => { const dispatch = jest.fn() await actions.submitDelegation( - { rootState: mockRootState, state, dispatch, commit: jest.fn() }, + { + rootState: mockRootState, + getters: { + liquidAtoms: 1000 + }, + state, + dispatch, + commit: jest.fn() + }, { stakingTransactions } ) @@ -320,6 +336,9 @@ describe(`Module: Delegations`, () => { state: { committedDelegates }, + getters: { + liquidAtoms: 1000 + }, dispatch: () => {}, commit }, @@ -329,8 +348,10 @@ describe(`Module: Delegations`, () => { password: `12345` } ) - - expect(commit).toHaveBeenCalledWith(`setAtoms`, 900) + expect(commit).toHaveBeenCalledWith(`updateWalletBalance`, { + denom: `STAKE`, + amount: 900 + }) expect(committedDelegates).toEqual({ [delegates[0].operator_address]: 110 }) @@ -354,7 +375,15 @@ describe(`Module: Delegations`, () => { const dispatch = jest.fn() await actions.submitDelegation( - { rootState: mockRootState, state, dispatch, commit: jest.fn() }, + { + rootState: mockRootState, + getters: { + liquidAtoms: 1000 + }, + state, + dispatch, + commit: jest.fn() + }, { stakingTransactions } ) jest.runAllTimers() diff --git a/test/unit/specs/store/user.spec.js b/test/unit/specs/store/user.spec.js index 7963aff873..ad2a6e8be5 100644 --- a/test/unit/specs/store/user.spec.js +++ b/test/unit/specs/store/user.spec.js @@ -91,11 +91,6 @@ describe(`Module: User`, () => { }) }) - it(`should set atoms`, () => { - mutations.setAtoms(state, 42) - expect(state.atoms).toBe(42) - }) - it(`should prepare the signin`, async () => { const commit = jest.fn() const dispatch = jest.fn() diff --git a/test/unit/specs/store/wallet.spec.js b/test/unit/specs/store/wallet.spec.js index 0111985151..972dfc8f2b 100644 --- a/test/unit/specs/store/wallet.spec.js +++ b/test/unit/specs/store/wallet.spec.js @@ -60,6 +60,20 @@ describe(`Module: Wallet`, () => { expect(state.balances).toBe(balances) }) + it(`update individual wallet balances`, () => { + let { state, mutations } = module + + // add new + const balance = { denom: `leetcoin`, amount: `1337` } + mutations.updateWalletBalance(state, balance) + expect(state.balances).toContain(balance) + + // update balance + const updatedBalance = { denom: `leetcoin`, amount: `1` } + mutations.updateWalletBalance(state, updatedBalance) + expect(state.balances).toContain(updatedBalance) + }) + it(`should set wallet key and clear balance `, () => { let { state, mutations } = module const address = `tb1v9jxgun9wdenzv3nu98g8r` From 042d500c1c80f37e120537674d28277fc5a88782 Mon Sep 17 00:00:00 2001 From: Federico Kunze <31522760+fedekunze@users.noreply.github.com> Date: Wed, 16 Jan 2019 11:07:39 +0100 Subject: [PATCH 113/125] Update test/unit/specs/components/governance/PageGovernance.spec.js Co-Authored-By: faboweb --- test/unit/specs/components/governance/PageGovernance.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/specs/components/governance/PageGovernance.spec.js b/test/unit/specs/components/governance/PageGovernance.spec.js index d406e27101..3bfb34bd83 100644 --- a/test/unit/specs/components/governance/PageGovernance.spec.js +++ b/test/unit/specs/components/governance/PageGovernance.spec.js @@ -14,7 +14,7 @@ const proposal = { let { governanceParameters } = lcdClientMock.state -// TODO refactor according to new unit test standard +// TODO: refactor according to new unit test standard describe(`PageGovernance`, () => { let wrapper, store let { mount, localVue } = setup() From 1795b4662f8694713b8c9d7bb60b9760d27678c5 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Wed, 16 Jan 2019 11:08:17 +0100 Subject: [PATCH 114/125] removed comments --- app/src/renderer/vuex/modules/wallet.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/app/src/renderer/vuex/modules/wallet.js b/app/src/renderer/vuex/modules/wallet.js index a2dfa92e2b..f0fcd3a96d 100644 --- a/app/src/renderer/vuex/modules/wallet.js +++ b/app/src/renderer/vuex/modules/wallet.js @@ -100,15 +100,6 @@ export default ({ node }) => { amount: [{ denom, amount: amount.toString() }] }) - // const balanceIndex = state.balances.findIndex( - // balance => balance.denom === denom - // ) - - // Vue.set(state.balances, balanceIndex, { - // denom, - // amount: state.balances[balanceIndex].amount - amount - // }) - // copy array because if we just manipulate the item in it, Vue doesn't recognize the change const newBalances = JSON.parse(JSON.stringify(state.balances)).map( ({ denom: _denom, amount: oldAmount }) => { From dcea1012e9e9421b4f7f98f0080bd063d99751af Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Wed, 16 Jan 2019 11:15:19 +0100 Subject: [PATCH 115/125] fixed pagevalidator test --- .../components/staking/PageValidator.spec.js | 3 ++ .../__snapshots__/PageValidator.spec.js.snap | 30 +++++++++++++++++-- 2 files changed, 30 insertions(+), 3 deletions(-) diff --git a/test/unit/specs/components/staking/PageValidator.spec.js b/test/unit/specs/components/staking/PageValidator.spec.js index c92b3b8d79..eb964c6cf0 100644 --- a/test/unit/specs/components/staking/PageValidator.spec.js +++ b/test/unit/specs/components/staking/PageValidator.spec.js @@ -492,6 +492,9 @@ describe(`onDelegation`, () => { commit: jest.fn(), dispatch, rootState: getterValues, + getters: { + liquidAtoms: 100 + }, state: { committedDelegates: { [lcdClientMock.validators[0]]: 0 }, unbondingDelegations: {}, diff --git a/test/unit/specs/components/staking/__snapshots__/PageValidator.spec.js.snap b/test/unit/specs/components/staking/__snapshots__/PageValidator.spec.js.snap index 4a868d629f..3d509c32b9 100644 --- a/test/unit/specs/components/staking/__snapshots__/PageValidator.spec.js.snap +++ b/test/unit/specs/components/staking/__snapshots__/PageValidator.spec.js.snap @@ -3556,16 +3556,40 @@ Array [ "validator_addr": "cosmosvaladdr15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqzh8yqw", }, ], + Array [ + "sendTx", + Object { + "delegation": Object { + "amount": "10", + "denom": "STAKE", + }, + "delegator_addr": "cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpesxxn9", + "password": "12345", + "to": "cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpesxxn9", + "type": "postDelegation", + "validator_addr": "cosmosvaladdr15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqzh8yqw", + }, + ], + Array [ + "updateDelegates", + ], ] `; exports[`onDelegation submitDelegation delegation composition delegation.submitDelegation 2`] = ` Array [ Array [ - "notifyError", + "updateWalletBalance", + Object { + "amount": 90, + "denom": "STAKE", + }, + ], + Array [ + "notify", Object { - "body": "Cannot read property 'liquidAtoms' of undefined", - "title": "Error while delegating STAKEs", + "body": "You have successfully delegated your STAKEs", + "title": "Successful delegation!", }, ], ] From 1ee6a3ffec4e3a5f6378a64c08c49b852d1240eb Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Wed, 16 Jan 2019 13:11:27 +0100 Subject: [PATCH 116/125] updated tablevalidator jest --- .../staking/TableValidators.spec.js | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/test/unit/specs/components/staking/TableValidators.spec.js b/test/unit/specs/components/staking/TableValidators.spec.js index 2525153d07..abf4ea189e 100644 --- a/test/unit/specs/components/staking/TableValidators.spec.js +++ b/test/unit/specs/components/staking/TableValidators.spec.js @@ -74,6 +74,32 @@ describe(`TableValidators`, () => { expect(wrapper.vm.somethingToSearch).toBe(false) }) + it(`should disallow delegation if user can't delegate`, () => { + let res = TableValidators.computed.userCanDelegate.call({ + liquidAtoms: 0, + delegation: { + loaded: true + } + }) + expect(res).toBe(false) + + res = TableValidators.computed.userCanDelegate.call({ + liquidAtoms: 1, + delegation: { + loaded: true + } + }) + expect(res).toBe(true) + + res = TableValidators.computed.userCanDelegate.call({ + liquidAtoms: 1, + delegation: { + loaded: false + } + }) + expect(res).toBe(false) + }) + describe(`setSearch`, () => { it(`should show search when there is something to search`, () => { const $store = { From 20b355889277b05c476aaba5b8aa6120e2abded9 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Wed, 16 Jan 2019 13:29:52 +0100 Subject: [PATCH 117/125] added coverage --- app/src/renderer/vuex/modules/wallet.js | 18 ++----- test/unit/specs/store/wallet.spec.js | 69 ++++++++++++++++++++++++- 2 files changed, 73 insertions(+), 14 deletions(-) diff --git a/app/src/renderer/vuex/modules/wallet.js b/app/src/renderer/vuex/modules/wallet.js index f0fcd3a96d..0e32bb5806 100644 --- a/app/src/renderer/vuex/modules/wallet.js +++ b/app/src/renderer/vuex/modules/wallet.js @@ -100,19 +100,11 @@ export default ({ node }) => { amount: [{ denom, amount: amount.toString() }] }) - // copy array because if we just manipulate the item in it, Vue doesn't recognize the change - const newBalances = JSON.parse(JSON.stringify(state.balances)).map( - ({ denom: _denom, amount: oldAmount }) => { - if (denom === _denom) { - return { - denom, - amount: oldAmount - amount - } - } - return { denom: _denom, amount: oldAmount } - } - ) - commit(`setWalletBalances`, newBalances) + const oldBalance = state.balances.find(balance => balance.denom === denom) + commit(`updateWalletBalance`, { + denom, + amount: oldBalance.amount - amount + }) }, async loadDenoms({ commit, state }) { try { diff --git a/test/unit/specs/store/wallet.spec.js b/test/unit/specs/store/wallet.spec.js index 972dfc8f2b..6748890cd8 100644 --- a/test/unit/specs/store/wallet.spec.js +++ b/test/unit/specs/store/wallet.spec.js @@ -37,10 +37,11 @@ jest.mock(`src/network.js`, () => () => ({ })) describe(`Module: Wallet`, () => { - let module, actions + let module, actions, state beforeEach(() => { module = walletModule({ node: {} }) + state = module.state actions = module.actions }) @@ -63,6 +64,8 @@ describe(`Module: Wallet`, () => { it(`update individual wallet balances`, () => { let { state, mutations } = module + state.balances.push({ denom: `coin`, amount: `42` }) + // add new const balance = { denom: `leetcoin`, amount: `1337` } mutations.updateWalletBalance(state, balance) @@ -259,4 +262,68 @@ describe(`Module: Wallet`, () => { }) expect(state.error.message).toBe(`Error`) }) + + it(`should send coins`, async () => { + state.balances = [ + { + denom: `funcoin`, + amount: 1000 + } + ] + + const commit = jest.fn() + const dispatch = jest.fn() + await actions.sendCoins( + { + state, + rootState: mockRootState, + dispatch, + commit + }, + { + receiver: `cosmos1xxx`, + amount: 12, + denom: `funcoin`, + password: `1234567890` + } + ) + + expect(dispatch).toHaveBeenCalledWith(`sendTx`, { + type: `send`, + password: `1234567890`, + to: `cosmos1xxx`, + amount: [{ denom: `funcoin`, amount: `12` }] + }) + }) + + it(`should update the state optimistically when sending coins`, async () => { + state.balances = [ + { + denom: `funcoin`, + amount: 1000 + } + ] + + const commit = jest.fn() + const dispatch = jest.fn() + await actions.sendCoins( + { + state, + rootState: mockRootState, + dispatch, + commit + }, + { + receiver: `cosmos1xxx`, + amount: 12, + denom: `funcoin`, + password: `1234567890` + } + ) + + expect(commit).toHaveBeenCalledWith(`updateWalletBalance`, { + denom: `funcoin`, + amount: 988 + }) + }) }) From 1b4344b39cd0394856ea69e5d3f0db4fabb6b694 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sun, 20 Jan 2019 15:47:37 +0100 Subject: [PATCH 118/125] update balance correct after sending --- app/src/renderer/vuex/modules/wallet.js | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/app/src/renderer/vuex/modules/wallet.js b/app/src/renderer/vuex/modules/wallet.js index 0e32bb5806..fbd58756c1 100644 --- a/app/src/renderer/vuex/modules/wallet.js +++ b/app/src/renderer/vuex/modules/wallet.js @@ -1,4 +1,5 @@ import * as Sentry from "@sentry/browser" +import Vue from "vue" // for now importing the fixed genesis for the network from the config.json import network from "../../../network.js" @@ -20,18 +21,14 @@ export default ({ node }) => { state.loading = false }, updateWalletBalance(state, balance) { - let updated = false - state.balances = state.balances.map(oldBalance => { - if (oldBalance.denom === balance.denom) { - updated = true - return balance - } - return oldBalance - }) - - if (!updated) { + const findBalanceIndex = state.balances.findIndex( + ({ denom }) => balance.denom === denom + ) + if (findBalanceIndex === -1) { state.balances.push(balance) + return } + Vue.set(state.balances, findBalanceIndex, balance) }, setWalletAddress(state, address) { state.address = address From 7ca1ec0a3ee984b4617aa1b7002164126980668c Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sun, 20 Jan 2019 15:58:33 +0100 Subject: [PATCH 119/125] implemented feedback by Karoly --- app/src/renderer/vuex/modules/delegation.js | 9 +++---- test/unit/specs/store/delegation.spec.js | 7 ++--- test/unit/specs/store/wallet.spec.js | 29 ++------------------- 3 files changed, 10 insertions(+), 35 deletions(-) diff --git a/app/src/renderer/vuex/modules/delegation.js b/app/src/renderer/vuex/modules/delegation.js index 04c2be1051..5ff064d7fc 100644 --- a/app/src/renderer/vuex/modules/delegation.js +++ b/app/src/renderer/vuex/modules/delegation.js @@ -171,11 +171,10 @@ export default ({ node }) => { amount: liquidAtoms - amount }) // optimistically update the committed delegations - Vue.set( - state.committedDelegates, - validator_addr, - state.committedDelegates[validator_addr] + amount - ) + commit(`setCommittedDelegation`, { + candidateId: validator_addr, + value: state.committedDelegates[validator_addr] + amount + }) dispatch(`updateDelegates`) }, diff --git a/test/unit/specs/store/delegation.spec.js b/test/unit/specs/store/delegation.spec.js index e6b01fdfda..c6babde921 100644 --- a/test/unit/specs/store/delegation.spec.js +++ b/test/unit/specs/store/delegation.spec.js @@ -224,7 +224,7 @@ describe(`Module: Delegations`, () => { }, state, dispatch, - commit: jest.fn() + commit: () => {} }, { stakingTransactions } ) @@ -352,8 +352,9 @@ describe(`Module: Delegations`, () => { denom: `STAKE`, amount: 900 }) - expect(committedDelegates).toEqual({ - [delegates[0].operator_address]: 110 + expect(commit).toHaveBeenCalledWith(`setCommittedDelegation`, { + candidateId: delegates[0].operator_address, + value: 110 }) }) diff --git a/test/unit/specs/store/wallet.spec.js b/test/unit/specs/store/wallet.spec.js index 6748890cd8..2de3b54799 100644 --- a/test/unit/specs/store/wallet.spec.js +++ b/test/unit/specs/store/wallet.spec.js @@ -271,8 +271,8 @@ describe(`Module: Wallet`, () => { } ] - const commit = jest.fn() const dispatch = jest.fn() + const commit = jest.fn() await actions.sendCoins( { state, @@ -294,33 +294,8 @@ describe(`Module: Wallet`, () => { to: `cosmos1xxx`, amount: [{ denom: `funcoin`, amount: `12` }] }) - }) - - it(`should update the state optimistically when sending coins`, async () => { - state.balances = [ - { - denom: `funcoin`, - amount: 1000 - } - ] - - const commit = jest.fn() - const dispatch = jest.fn() - await actions.sendCoins( - { - state, - rootState: mockRootState, - dispatch, - commit - }, - { - receiver: `cosmos1xxx`, - amount: 12, - denom: `funcoin`, - password: `1234567890` - } - ) + // should update the balance optimistically expect(commit).toHaveBeenCalledWith(`updateWalletBalance`, { denom: `funcoin`, amount: 988 From 8f12c2c503f839409a255ae5b05fc7896169e1bf Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Sun, 20 Jan 2019 16:00:36 +0100 Subject: [PATCH 120/125] fixed integration test --- .../staking/__snapshots__/PageValidator.spec.js.snap | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/unit/specs/components/staking/__snapshots__/PageValidator.spec.js.snap b/test/unit/specs/components/staking/__snapshots__/PageValidator.spec.js.snap index 3d509c32b9..b44c74dbb1 100644 --- a/test/unit/specs/components/staking/__snapshots__/PageValidator.spec.js.snap +++ b/test/unit/specs/components/staking/__snapshots__/PageValidator.spec.js.snap @@ -3585,6 +3585,13 @@ Array [ "denom": "STAKE", }, ], + Array [ + "setCommittedDelegation", + Object { + "candidateId": "cosmosvaladdr15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqzh8yqw", + "value": 10, + }, + ], Array [ "notify", Object { From 3e86327714baff717f674ac52746b8ca1477b0d0 Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Mon, 21 Jan 2019 18:31:12 +0100 Subject: [PATCH 121/125] tally bug --- app/src/renderer/components/governance/PageProposal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/renderer/components/governance/PageProposal.vue b/app/src/renderer/components/governance/PageProposal.vue index f2f54b506b..3d8f4cc76d 100644 --- a/app/src/renderer/components/governance/PageProposal.vue +++ b/app/src/renderer/components/governance/PageProposal.vue @@ -200,7 +200,7 @@ export default { return num.percentInt(this.tally.abstain / this.totalVotes) }, tally() { - let proposalTally = this.proposals.tallies[this.proposalId] + let proposalTally = this.proposals.tallies[this.proposalId] || {} proposalTally.yes = Math.round(parseFloat(proposalTally.yes)) proposalTally.no = Math.round(parseFloat(proposalTally.no)) proposalTally.no_with_veto = Math.round( From 0f623674745ec16338293f788f92d4b0d20b582a Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Mon, 21 Jan 2019 18:31:21 +0100 Subject: [PATCH 122/125] fixed serialization of txs --- app/src/renderer/scripts/wallet.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/app/src/renderer/scripts/wallet.js b/app/src/renderer/scripts/wallet.js index 910291eeb2..f74a00ff4c 100644 --- a/app/src/renderer/scripts/wallet.js +++ b/app/src/renderer/scripts/wallet.js @@ -81,8 +81,15 @@ export function prepareSignBytes(jsonTx) { return jsonTx } - const keys = Object.keys(jsonTx) - if (keys.length === 2 && keys.includes(`type`) && keys.includes(`value`)) { + // TODO temporary, https://github.com/cosmos/cosmos-sdk/issues/3336 + if ( + jsonTx.type === `cosmos-sdk/Send` || + jsonTx.type === `cosmos-sdk/MsgSubmitProposal` || + jsonTx.type === `cosmos-sdk/MsgVote` || + jsonTx.type === `cosmos-sdk/MsgDeposit` || + jsonTx.type === `cosmos-sdk/BeginUnbonding` || + jsonTx.type === `cosmos-sdk/BeginRedelegate` + ) { return prepareSignBytes(jsonTx.value) } From 79491bb8fe560f45d0277bb9e212fd41cd74b5d8 Mon Sep 17 00:00:00 2001 From: Karoly Albert Szabo Date: Mon, 21 Jan 2019 18:39:55 +0100 Subject: [PATCH 123/125] fix circleci audit job Signed-off-by: Karoly Albert Szabo --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8a935cc6de..5bb8c6547e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -82,6 +82,8 @@ jobs: - run: name: Audit command: | + set +e + SUMMARY="$(yarn audit | grep Severity)" VULNERABILITIES=".*(High|Critical).*" From badf905d622f702f166d89c67d185e5b98242d22 Mon Sep 17 00:00:00 2001 From: Fabian Date: Wed, 23 Jan 2019 22:07:52 +0100 Subject: [PATCH 124/125] fixed tally prop --- app/src/renderer/vuex/modules/governance/proposals.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/renderer/vuex/modules/governance/proposals.js b/app/src/renderer/vuex/modules/governance/proposals.js index 9eb5c741fa..432eeb669d 100644 --- a/app/src/renderer/vuex/modules/governance/proposals.js +++ b/app/src/renderer/vuex/modules/governance/proposals.js @@ -45,7 +45,7 @@ export default ({ node }) => { ) } else { tally_result = JSON.parse( - JSON.stringify(proposal.value.tally_result) + JSON.stringify(proposal.value.final_tally_result) ) } commit(`setProposalTally`, { From 1e7f117554a1fca66298c3f7f7a4071f6f94180d Mon Sep 17 00:00:00 2001 From: Voyager Bot Date: Wed, 23 Jan 2019 22:16:52 +0100 Subject: [PATCH 125/125] fixed tests --- app/src/renderer/connectors/lcdClientMock.js | 18 ++++++------- .../vuex/modules/governance/proposals.js | 24 ++++++++++------- .../components/governance/LiProposal.spec.js | 2 +- .../governance/PageProposal.spec.js | 6 ++--- .../specs/connectors/lcdClientMock.spec.js | 6 ++--- .../specs/store/governance/proposals.spec.js | 27 ++++++++++++------- 6 files changed, 48 insertions(+), 35 deletions(-) diff --git a/app/src/renderer/connectors/lcdClientMock.js b/app/src/renderer/connectors/lcdClientMock.js index 6d80e78f2c..c8ab6d6f63 100644 --- a/app/src/renderer/connectors/lcdClientMock.js +++ b/app/src/renderer/connectors/lcdClientMock.js @@ -357,7 +357,7 @@ let state = { voting_start_time: `2018-11-23T13:29:24.66404Z`, voting_end_time: `2018-11-25T13:29:24.66404Z`, proposal_status: `Passed`, - tally_result: { + final_tally_result: { yes: `500`, no: `25`, no_with_veto: `10`, @@ -386,7 +386,7 @@ let state = { voting_start_time: `2018-11-23T13:29:24.66404Z`, voting_end_time: `2018-11-25T13:29:24.66404Z`, proposal_status: `VotingPeriod`, - tally_result: { + final_tally_result: { yes: `0`, no: `0`, no_with_veto: `0`, @@ -415,7 +415,7 @@ let state = { voting_start_time: `0001-01-01T00:00:00Z`, voting_end_time: `0001-01-01T00:00:00Z`, proposal_status: `DepositPeriod`, - tally_result: { + final_tally_result: { yes: `0`, no: `0`, no_with_veto: `0`, @@ -444,7 +444,7 @@ let state = { voting_start_time: `2018-11-23T13:29:24.66404Z`, voting_end_time: `2018-11-25T13:29:24.66404Z`, proposal_status: `Rejected`, - tally_result: { + final_tally_result: { yes: `10`, no: `30`, no_with_veto: `100`, @@ -1085,7 +1085,7 @@ Msg Traces: return results } - let tally_result = { + let final_tally_result = { yes: `0`, no: `0`, no_with_veto: `0`, @@ -1102,7 +1102,7 @@ Msg Traces: description, proposal_type, proposal_status: `DepositPeriod`, - tally_result, + final_tally_result, submit_time, deposit_end_time, voting_start_time: undefined, @@ -1129,7 +1129,7 @@ Msg Traces: }, async getProposalTally(proposalId) { let proposal = await this.getProposal(proposalId) - return proposal.tally_result + return proposal.final_tally_result }, async getProposalDeposits(proposalId) { return state.deposits[proposalId] || [] @@ -1320,8 +1320,8 @@ Msg Traces: } state.votes[proposal_id].push(vote) - let intTallyResult = parseInt(proposal.tally_result[option]) - proposal.tally_result[option] = String(intTallyResult + 1) + let intTallyResult = parseInt(proposal.final_tally_result[option]) + proposal.final_tally_result[option] = String(intTallyResult + 1) storeTx(`cosmos-sdk/MsgVote`, vote) results.push(txResult(0)) diff --git a/app/src/renderer/vuex/modules/governance/proposals.js b/app/src/renderer/vuex/modules/governance/proposals.js index 432eeb669d..65b76c83fa 100644 --- a/app/src/renderer/vuex/modules/governance/proposals.js +++ b/app/src/renderer/vuex/modules/governance/proposals.js @@ -14,8 +14,8 @@ export default ({ node }) => { setProposal(state, proposal) { Vue.set(state.proposals, proposal.proposal_id, proposal) }, - setProposalTally(state, { proposal_id, tally_result }) { - Vue.set(state.tallies, proposal_id, tally_result) + setProposalTally(state, { proposal_id, final_tally_result }) { + Vue.set(state.tallies, proposal_id, final_tally_result) } } let actions = { @@ -33,24 +33,24 @@ export default ({ node }) => { if (!rootState.connection.connected) return try { - let tally_result + let final_tally_result let proposals = await node.queryProposals() if (proposals.length > 0) { await Promise.all( proposals.map(async proposal => { commit(`setProposal`, proposal.value) if (proposal.value.proposal_status === `VotingPeriod`) { - tally_result = await node.getProposalTally( + final_tally_result = await node.getProposalTally( proposal.value.proposal_id ) } else { - tally_result = JSON.parse( + final_tally_result = JSON.parse( JSON.stringify(proposal.value.final_tally_result) ) } commit(`setProposalTally`, { proposal_id: proposal.value.proposal_id, - tally_result + final_tally_result }) }) ) @@ -70,18 +70,22 @@ export default ({ node }) => { async getProposal({ state, commit }, proposal_id) { state.loading = true try { - let tally_result + let final_tally_result state.error = null state.loading = false state.loaded = true // TODO make state for single proposal let proposal = await node.queryProposal(proposal_id) commit(`setProposal`, proposal.value) if (proposal.value.proposal_status === `VotingPeriod`) { - tally_result = await node.getProposalTally(proposal.value.proposal_id) + final_tally_result = await node.getProposalTally( + proposal.value.proposal_id + ) } else { - tally_result = JSON.parse(JSON.stringify(proposal.value.tally_result)) + final_tally_result = JSON.parse( + JSON.stringify(proposal.value.final_tally_result) + ) } - commit(`setProposalTally`, { proposal_id, tally_result }) + commit(`setProposalTally`, { proposal_id, final_tally_result }) } catch (error) { commit(`notifyError`, { title: `Error querying proposal with id #${proposal_id}`, diff --git a/test/unit/specs/components/governance/LiProposal.spec.js b/test/unit/specs/components/governance/LiProposal.spec.js index 89d32986d5..5b9ddd0478 100644 --- a/test/unit/specs/components/governance/LiProposal.spec.js +++ b/test/unit/specs/components/governance/LiProposal.spec.js @@ -24,7 +24,7 @@ describe(`LiProposal`, () => { store.commit(`setProposal`, proposal) store.commit(`setProposalTally`, { proposal_id: `2`, - tally_result: tallies[`2`] + final_tally_result: tallies[`2`] }) }, propsData: { proposal }, diff --git a/test/unit/specs/components/governance/PageProposal.spec.js b/test/unit/specs/components/governance/PageProposal.spec.js index f5533d0cec..a1139e2e3d 100644 --- a/test/unit/specs/components/governance/PageProposal.spec.js +++ b/test/unit/specs/components/governance/PageProposal.spec.js @@ -43,7 +43,7 @@ describe(`PageProposal`, () => { store.commit(`setProposal`, proposal) store.commit(`setProposalTally`, { proposal_id: `2`, - tally_result: tallies[`2`] + final_tally_result: tallies[`2`] }) }, propsData: { proposalId: proposal.proposal_id }, @@ -147,7 +147,7 @@ describe(`PageProposal`, () => { store.commit(`setProposal`, proposal) store.commit(`setProposalTally`, { proposal_id: `2`, - tally_result: tallies[`2`] + final_tally_result: tallies[`2`] }) }, propsData: { @@ -205,7 +205,7 @@ describe(`PageProposal`, () => { store.commit(`setProposal`, proposal) store.commit(`setProposalTally`, { proposal_id: `5`, - tally_result: tallies[`5`] + final_tally_result: tallies[`5`] }) }, propsData: { diff --git a/test/unit/specs/connectors/lcdClientMock.spec.js b/test/unit/specs/connectors/lcdClientMock.spec.js index 9548335b95..0e8eeb5944 100644 --- a/test/unit/specs/connectors/lcdClientMock.spec.js +++ b/test/unit/specs/connectors/lcdClientMock.spec.js @@ -832,7 +832,7 @@ describe(`LCD Client Mock`, () => { let proposal = lcdClientMock.state.proposals[`2`] let res = await client.getProposalTally(`2`) expect(res).toBeDefined() - expect(res).toEqual(proposal.tally_result) + expect(res).toEqual(proposal.final_tally_result) }) }) @@ -1243,7 +1243,7 @@ describe(`LCD Client Mock`, () => { it(`if proposal is in 'VotingPeriod'`, async () => { let option = `no_with_veto` let proposalBefore = await client.getProposal(`2`) - let optionBefore = proposalBefore.tally_result[option] + let optionBefore = proposalBefore.final_tally_result[option] await client.submitProposalVote({ base_req: { @@ -1264,7 +1264,7 @@ describe(`LCD Client Mock`, () => { // check if the tally was updated let proposalAfter = await client.getProposal(`2`) - let optionAfter = proposalAfter.tally_result[option] + let optionAfter = proposalAfter.final_tally_result[option] expect(optionAfter).toEqual(String(parseInt(optionBefore) + 1)) }) }) diff --git a/test/unit/specs/store/governance/proposals.spec.js b/test/unit/specs/store/governance/proposals.spec.js index 3468448961..4030587723 100644 --- a/test/unit/specs/store/governance/proposals.spec.js +++ b/test/unit/specs/store/governance/proposals.spec.js @@ -42,7 +42,7 @@ describe(`Module: Proposals`, () => { mutations.setProposal(state, proposals[`2`]) mutations.setProposalTally(state, { proposal_id: `2`, - tally_result: tallies[`1`] + final_tally_result: tallies[`1`] }) expect(state.tallies[`2`]).toEqual(tallies[`1`]) }) @@ -51,14 +51,14 @@ describe(`Module: Proposals`, () => { let { mutations, state } = module mutations.setProposal(state, proposals[`1`]) let newProposal = JSON.parse(JSON.stringify(proposals[`1`])) - newProposal.tally_result = { + newProposal.final_tally_result = { yes: `10`, no: `3`, no_with_veto: `1`, abstain: `4` } mutations.setProposal(state, newProposal) - expect(state.proposals[`1`]).toHaveProperty(`tally_result`, { + expect(state.proposals[`1`]).toHaveProperty(`final_tally_result`, { yes: `10`, no: `3`, no_with_veto: `1`, @@ -95,20 +95,23 @@ describe(`Module: Proposals`, () => { [`setProposal`, proposals[`1`]], [ `setProposalTally`, - { proposal_id: `1`, tally_result: tallies[`1`] } + { proposal_id: `1`, final_tally_result: tallies[`1`] } ], [`setProposal`, proposals[`2`]], [ `setProposalTally`, - { proposal_id: `2`, tally_result: tallies[`2`] } + { proposal_id: `2`, final_tally_result: tallies[`2`] } ], [`setProposal`, proposals[`5`]], [ `setProposalTally`, - { proposal_id: `5`, tally_result: tallies[`5`] } + { proposal_id: `5`, final_tally_result: tallies[`5`] } ], [`setProposal`, proposals[`6`]], - [`setProposalTally`, { proposal_id: `6`, tally_result: tallies[`6`] }] + [ + `setProposalTally`, + { proposal_id: `6`, final_tally_result: tallies[`6`] } + ] ]) ) }) @@ -150,7 +153,10 @@ describe(`Module: Proposals`, () => { ) expect(commit.mock.calls).toEqual([ [`setProposal`, proposals[`1`]], - [`setProposalTally`, { proposal_id: `1`, tally_result: tallies[`1`] }] + [ + `setProposalTally`, + { proposal_id: `1`, final_tally_result: tallies[`1`] } + ] ]) // on VotingPeriod @@ -160,7 +166,10 @@ describe(`Module: Proposals`, () => { ) expect(commit.mock.calls.slice(2)).toEqual([ [`setProposal`, proposals[`2`]], - [`setProposalTally`, { proposal_id: `2`, tally_result: tallies[`2`] }] + [ + `setProposalTally`, + { proposal_id: `2`, final_tally_result: tallies[`2`] } + ] ]) })