@leofcoin/peernet 0.10.2 → 0.10.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/peernet.js +659 -628
- package/dist/commonjs/codec-format-interface.js +20 -4
- package/dist/commonjs/peernet.js +30 -144
- package/dist/module/peernet.js +47 -146
- package/package.json +3 -4
- package/rollup.config.js +7 -4
- package/src/codec/codec-format-interface.js +20 -4
- package/src/messages/data.js +7 -3
- package/src/peernet.js +21 -17
package/dist/browser/peernet.js
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
var PubSub = require('@vandeurenglenn/little-pubsub');
|
|
6
6
|
var sha256 = require('crypto-js/sha256');
|
|
7
7
|
var P2P = require('p2pt');
|
|
8
|
+
var LeofcoinStorage$1 = require('@leofcoin/storage');
|
|
8
9
|
var websocket = require('websocket');
|
|
9
10
|
var http$1 = require('http');
|
|
10
11
|
var Koa = require('koa');
|
|
@@ -21,6 +22,7 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
|
|
|
21
22
|
var PubSub__default = /*#__PURE__*/_interopDefaultLegacy(PubSub);
|
|
22
23
|
var sha256__default = /*#__PURE__*/_interopDefaultLegacy(sha256);
|
|
23
24
|
var P2P__default = /*#__PURE__*/_interopDefaultLegacy(P2P);
|
|
25
|
+
var LeofcoinStorage__default = /*#__PURE__*/_interopDefaultLegacy(LeofcoinStorage$1);
|
|
24
26
|
var Koa__default = /*#__PURE__*/_interopDefaultLegacy(Koa);
|
|
25
27
|
var protons__default = /*#__PURE__*/_interopDefaultLegacy(protons);
|
|
26
28
|
var bs32__default = /*#__PURE__*/_interopDefaultLegacy(bs32);
|
|
@@ -167,129 +169,7 @@ class PeernetClient {
|
|
|
167
169
|
}
|
|
168
170
|
}
|
|
169
171
|
|
|
170
|
-
|
|
171
|
-
const LevelStore = require('datastore-level');
|
|
172
|
-
const { homedir } = require('os');
|
|
173
|
-
const { join } = require('path');
|
|
174
|
-
const Key = require('interface-datastore').Key;
|
|
175
|
-
const {readdirSync, mkdirSync} = require('fs');
|
|
176
|
-
|
|
177
|
-
class LeofcoinStorage$1 {
|
|
178
|
-
|
|
179
|
-
constructor(path, root = '.leofcoin', home = true) {
|
|
180
|
-
if (!home) this.root = root;
|
|
181
|
-
else this.root = join(homedir(), root);
|
|
182
|
-
if (readdirSync) try {
|
|
183
|
-
readdirSync(this.root);
|
|
184
|
-
} catch (e) {
|
|
185
|
-
let _path = home ? homedir() : root;
|
|
186
|
-
const parts = root.split('/');
|
|
187
|
-
if (e.code === 'ENOENT') {
|
|
188
|
-
|
|
189
|
-
if (parts.length > 0) {
|
|
190
|
-
for (const path of parts) {
|
|
191
|
-
_path = join(_path, path);
|
|
192
|
-
try {
|
|
193
|
-
readdirSync(_path);
|
|
194
|
-
} catch (e) {
|
|
195
|
-
if (e.code === 'ENOENT') mkdirSync(_path);
|
|
196
|
-
else throw e
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
} else {
|
|
200
|
-
mkdirSync(this.root);
|
|
201
|
-
}
|
|
202
|
-
} else throw e
|
|
203
|
-
}
|
|
204
|
-
this.db = new LevelStore(join(this.root, path));
|
|
205
|
-
// this.db = level(path, { prefix: 'lfc-'})
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
toBuffer(value) {
|
|
209
|
-
if (Buffer.isBuffer(value)) return value;
|
|
210
|
-
if (typeof value === 'object' ||
|
|
211
|
-
typeof value === 'boolean' ||
|
|
212
|
-
!isNaN(value)) value = JSON.stringify(value);
|
|
213
|
-
|
|
214
|
-
return Buffer.from(value)
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
async many(type, _value) {
|
|
218
|
-
const jobs = [];
|
|
219
|
-
|
|
220
|
-
for (const key of Object.keys(_value)) {
|
|
221
|
-
const value = this.toBuffer(_value[key]);
|
|
222
|
-
|
|
223
|
-
jobs.push(this[type](key, value));
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
return Promise.all(jobs)
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
async put(key, value) {
|
|
230
|
-
if (typeof key === 'object') return this.many('put', key);
|
|
231
|
-
value = this.toBuffer(value);
|
|
232
|
-
|
|
233
|
-
return this.db.put(new Key(String(key)), value);
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
async query() {
|
|
237
|
-
const object = {};
|
|
238
|
-
|
|
239
|
-
for await (let query of this.db.query({})) {
|
|
240
|
-
const key = query.key.baseNamespace();
|
|
241
|
-
object[key] = this.possibleJSON(query.value);
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
return object
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
async get(key) {
|
|
248
|
-
if (!key) return this.query()
|
|
249
|
-
if (typeof key === 'object') return this.many('get', key);
|
|
250
|
-
let data = await this.db.get(new Key(String(key)));
|
|
251
|
-
if (!data) return undefined
|
|
252
|
-
return this.possibleJSON(data)
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
async has(key) {
|
|
256
|
-
if (typeof key === 'object') return this.many('has', key);
|
|
257
|
-
|
|
258
|
-
try {
|
|
259
|
-
await this.db.get(new Key(String(key)));
|
|
260
|
-
return true;
|
|
261
|
-
} catch (e) {
|
|
262
|
-
return false
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
async delete(key) {
|
|
267
|
-
return this.db.delete(new Key(String(key)))
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
async size() {
|
|
271
|
-
const object = await this.query();
|
|
272
|
-
return Object.keys(object).length
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
// TODO: deprecate usage possibleJSON
|
|
276
|
-
// make possibleJSON optional
|
|
277
|
-
// or release as its own package
|
|
278
|
-
possibleJSON(data) {
|
|
279
|
-
let string = data.toString();
|
|
280
|
-
if (string.charAt(0) === '{' && string.charAt(string.length - 1) === '}' ||
|
|
281
|
-
string.charAt(0) === '[' && string.charAt(string.length - 1) === ']' ||
|
|
282
|
-
string === 'true' ||
|
|
283
|
-
string === 'false' ||
|
|
284
|
-
!isNaN(string))
|
|
285
|
-
return JSON.parse(string);
|
|
286
|
-
|
|
287
|
-
return data
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
var version = "0.10.1";
|
|
172
|
+
var version = "0.10.4";
|
|
293
173
|
|
|
294
174
|
var api$1 = {
|
|
295
175
|
version: ({send}) => send({client: '@peernet/api/http', version}),
|
|
@@ -1284,7 +1164,7 @@ class PeernetHash {
|
|
|
1284
1164
|
|
|
1285
1165
|
class FormatInterface {
|
|
1286
1166
|
/**
|
|
1287
|
-
* @param {Buffer|String|Object} buffer -
|
|
1167
|
+
* @param {Buffer|String|Object} buffer - data - The data needed to create the desired message
|
|
1288
1168
|
* @param {Object} proto - {encode, decode}
|
|
1289
1169
|
* @param {Object} options - {hashFormat, name}
|
|
1290
1170
|
*/
|
|
@@ -1293,7 +1173,9 @@ class FormatInterface {
|
|
|
1293
1173
|
this.protoDecode = proto.decode;
|
|
1294
1174
|
if (options.name) this.name = options.name;
|
|
1295
1175
|
this.hashFormat = options.hashFormat || 'bs32';
|
|
1296
|
-
if (
|
|
1176
|
+
if (buffer.name === options.name) {
|
|
1177
|
+
return buffer
|
|
1178
|
+
} else if (Buffer.isBuffer(buffer)) {
|
|
1297
1179
|
const codec = new PeernetCodec(buffer);
|
|
1298
1180
|
if (codec.name) {
|
|
1299
1181
|
this.fromEncoded(buffer);
|
|
@@ -1411,8 +1293,22 @@ class FormatInterface {
|
|
|
1411
1293
|
* @param {Object} data
|
|
1412
1294
|
*/
|
|
1413
1295
|
create(data) {
|
|
1414
|
-
|
|
1415
|
-
this.
|
|
1296
|
+
const decoded = {};
|
|
1297
|
+
if (this.keys?.length > 0) {
|
|
1298
|
+
for (const key of this.keys) {
|
|
1299
|
+
Object.defineProperties(decoded, {
|
|
1300
|
+
[key]: {
|
|
1301
|
+
enumerable: true,
|
|
1302
|
+
configurable: true,
|
|
1303
|
+
set: (val) => value = data[key],
|
|
1304
|
+
get: () => data[key]
|
|
1305
|
+
}
|
|
1306
|
+
});
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
this.decoded = decoded;
|
|
1310
|
+
this.encode();
|
|
1311
|
+
}
|
|
1416
1312
|
}
|
|
1417
1313
|
}
|
|
1418
1314
|
|
|
@@ -1484,14 +1380,18 @@ message PeernetDataMessage {
|
|
|
1484
1380
|
}
|
|
1485
1381
|
`;
|
|
1486
1382
|
|
|
1383
|
+
/**
|
|
1384
|
+
* @extends {CodecFormat}
|
|
1385
|
+
*/
|
|
1487
1386
|
class DataMessage extends FormatInterface {
|
|
1488
1387
|
get keys() {
|
|
1489
1388
|
return ['hash', 'store']
|
|
1490
1389
|
}
|
|
1491
|
-
|
|
1390
|
+
/**
|
|
1391
|
+
* @param {Buffer|String|Object|DataMessage} data - The data needed to create the DataMessage
|
|
1392
|
+
*/
|
|
1492
1393
|
constructor(data) {
|
|
1493
|
-
|
|
1494
|
-
super(data, protons__default['default'](proto$7).PeernetDataMessage, {name});
|
|
1394
|
+
super(data, protons__default['default'](proto$7).PeernetDataMessage, {name: 'peernet-data'});
|
|
1495
1395
|
}
|
|
1496
1396
|
}
|
|
1497
1397
|
|
|
@@ -2018,7 +1918,7 @@ class Peernet {
|
|
|
2018
1918
|
globalThis.peernet = this;
|
|
2019
1919
|
this.bw = {
|
|
2020
1920
|
up: 0,
|
|
2021
|
-
down: 0
|
|
1921
|
+
down: 0,
|
|
2022
1922
|
};
|
|
2023
1923
|
return this._init(options)
|
|
2024
1924
|
}
|
|
@@ -2043,7 +1943,7 @@ class Peernet {
|
|
|
2043
1943
|
if (this.hasDaemon) {
|
|
2044
1944
|
Storage = LeofcoinStorageClient;
|
|
2045
1945
|
} else {
|
|
2046
|
-
Storage =
|
|
1946
|
+
Storage = LeofcoinStorage__default['default'];
|
|
2047
1947
|
}
|
|
2048
1948
|
globalThis[`${name}Store`] = globalThis[`${name}Store`] ||
|
|
2049
1949
|
await new Storage(`${prefix}-${name}`, root);
|
|
@@ -2232,7 +2132,7 @@ class Peernet {
|
|
|
2232
2132
|
*/
|
|
2233
2133
|
async _protoHandler(message, peer) {
|
|
2234
2134
|
const {id, proto} = message;
|
|
2235
|
-
this.bw.down +=
|
|
2135
|
+
this.bw.down += proto.encoded.length;
|
|
2236
2136
|
if (proto.name === 'peernet-peer') {
|
|
2237
2137
|
const from = proto.decoded.id;
|
|
2238
2138
|
if (!this.peerMap.has(from)) this.peerMap.set(from, [peer.id]);
|
|
@@ -2300,22 +2200,22 @@ class Peernet {
|
|
|
2300
2200
|
let data;
|
|
2301
2201
|
|
|
2302
2202
|
if (!store) {
|
|
2303
|
-
|
|
2203
|
+
store = await this.whichStore([...this.stores], hash);
|
|
2304
2204
|
} else {
|
|
2305
|
-
store = globalThis[`${store}Store`];
|
|
2306
|
-
if (store.private) {
|
|
2307
|
-
// TODO: ban
|
|
2308
|
-
return
|
|
2309
|
-
} else data = await store.get(hash);
|
|
2205
|
+
store = globalThis.stores[`${store}Store`];
|
|
2310
2206
|
}
|
|
2207
|
+
if (store && !store.private) {
|
|
2208
|
+
data = await store.get(hash);
|
|
2311
2209
|
|
|
2312
|
-
|
|
2313
|
-
|
|
2210
|
+
if (data) {
|
|
2211
|
+
data = new DataMessageResponse({hash, data: data.decoded ? Buffer.from(JSON.stringify(data)) : Buffer.from(data)});
|
|
2314
2212
|
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2213
|
+
const node = await this.prepareMessage(from, data.encoded);
|
|
2214
|
+
peer.write(Buffer.from(JSON.stringify({id, data: node.encoded})));
|
|
2215
|
+
this.bw.up += node.encoded.length;
|
|
2216
|
+
}
|
|
2318
2217
|
}
|
|
2218
|
+
|
|
2319
2219
|
} else if (proto.name === 'peernet-peer') {
|
|
2320
2220
|
const from = proto.decoded.id;
|
|
2321
2221
|
if (!this.peerMap.has(from)) this.peerMap.set(from, [peer.id]);
|
|
@@ -2418,7 +2318,7 @@ class Peernet {
|
|
|
2418
2318
|
get: async (hash) => {
|
|
2419
2319
|
const data = await blockStore.has(hash);
|
|
2420
2320
|
if (data) return await blockStore.get(hash)
|
|
2421
|
-
return this.requestData(hash)
|
|
2321
|
+
return this.requestData(hash, 'block')
|
|
2422
2322
|
},
|
|
2423
2323
|
put: async (hash, data) => {
|
|
2424
2324
|
if (await blockStore.has(hash)) return
|
|
@@ -2554,7 +2454,8 @@ class Peernet {
|
|
|
2554
2454
|
/**
|
|
2555
2455
|
* Get content for given hash
|
|
2556
2456
|
*
|
|
2557
|
-
* @param {String} hash
|
|
2457
|
+
* @param {String} hash - the hash of the wanted data
|
|
2458
|
+
* @param {String} store - storeName to access
|
|
2558
2459
|
*/
|
|
2559
2460
|
async get(hash, store) {
|
|
2560
2461
|
debug(`get ${hash}`);
|
|
@@ -2564,7 +2465,7 @@ class Peernet {
|
|
|
2564
2465
|
if (store && await store.has(hash)) data = await store.get(hash);
|
|
2565
2466
|
if (data) return data
|
|
2566
2467
|
|
|
2567
|
-
return this.requestData(hash,
|
|
2468
|
+
return this.requestData(hash, store)
|
|
2568
2469
|
}
|
|
2569
2470
|
|
|
2570
2471
|
/**
|
|
@@ -2572,10 +2473,11 @@ class Peernet {
|
|
|
2572
2473
|
*
|
|
2573
2474
|
* @param {String} hash
|
|
2574
2475
|
* @param {Buffer} data
|
|
2476
|
+
* @param {String} store - storeName to access
|
|
2575
2477
|
*/
|
|
2576
2478
|
async put(hash, data, store = 'data') {
|
|
2577
2479
|
store = globalThis[`${store}Store`];
|
|
2578
|
-
return
|
|
2480
|
+
return store.put(hash, data)
|
|
2579
2481
|
}
|
|
2580
2482
|
|
|
2581
2483
|
/**
|
|
@@ -2649,7 +2551,7 @@ class Peernet {
|
|
|
2649
2551
|
module.exports = Peernet;
|
|
2650
2552
|
|
|
2651
2553
|
}).call(this)}).call(this,require('_process'),require("buffer").Buffer)
|
|
2652
|
-
},{"@leofcoin/multi-wallet":2,"@vandeurenglenn/little-pubsub":
|
|
2554
|
+
},{"@leofcoin/multi-wallet":2,"@leofcoin/storage":3,"@vandeurenglenn/little-pubsub":4,"_process":322,"bs32":85,"bs58":86,"buffer":91,"crypto-js/sha256":118,"http":423,"https":202,"is-hex":220,"keccak":224,"koa":234,"p2pt":307,"protons":350,"varint":451,"websocket":454}],2:[function(require,module,exports){
|
|
2653
2555
|
(function (Buffer){(function (){
|
|
2654
2556
|
'use strict';
|
|
2655
2557
|
|
|
@@ -3085,11 +2987,140 @@ class MultiWallet extends HDWallet {
|
|
|
3085
2987
|
module.exports = MultiWallet;
|
|
3086
2988
|
|
|
3087
2989
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
3088
|
-
},{"bip32":
|
|
3089
|
-
|
|
2990
|
+
},{"bip32":36,"bip39":38,"bs58check":88,"buffer":91,"crypto-js/aes.js":109,"crypto-js/enc-utf8.js":113,"crypto-js/sha512.js":119,"keccak":224,"multi-signature":268,"secp256k1":385,"tiny-secp256k1":429,"varint":451}],3:[function(require,module,exports){
|
|
2991
|
+
(function (Buffer){(function (){
|
|
3090
2992
|
'use strict';
|
|
3091
2993
|
|
|
3092
|
-
const
|
|
2994
|
+
// const level = require('level');
|
|
2995
|
+
const LevelStore = require('datastore-level');
|
|
2996
|
+
const { homedir } = require('os');
|
|
2997
|
+
const { join } = require('path');
|
|
2998
|
+
const Key = require('interface-datastore').Key;
|
|
2999
|
+
const {readdirSync, mkdirSync} = require('fs');
|
|
3000
|
+
|
|
3001
|
+
class LeofcoinStorage {
|
|
3002
|
+
|
|
3003
|
+
constructor(path, root = '.leofcoin', home = true) {
|
|
3004
|
+
if (!home) this.root = root;
|
|
3005
|
+
else this.root = join(homedir(), root);
|
|
3006
|
+
if (readdirSync) try {
|
|
3007
|
+
readdirSync(this.root);
|
|
3008
|
+
} catch (e) {
|
|
3009
|
+
let _path = home ? homedir() : root;
|
|
3010
|
+
const parts = root.split('/');
|
|
3011
|
+
if (e.code === 'ENOENT') {
|
|
3012
|
+
|
|
3013
|
+
if (parts.length > 0) {
|
|
3014
|
+
for (const path of parts) {
|
|
3015
|
+
_path = join(_path, path);
|
|
3016
|
+
try {
|
|
3017
|
+
readdirSync(_path);
|
|
3018
|
+
} catch (e) {
|
|
3019
|
+
if (e.code === 'ENOENT') mkdirSync(_path);
|
|
3020
|
+
else throw e
|
|
3021
|
+
}
|
|
3022
|
+
}
|
|
3023
|
+
} else {
|
|
3024
|
+
mkdirSync(this.root);
|
|
3025
|
+
}
|
|
3026
|
+
} else throw e
|
|
3027
|
+
}
|
|
3028
|
+
this.db = new LevelStore(join(this.root, path));
|
|
3029
|
+
// this.db = level(path, { prefix: 'lfc-'})
|
|
3030
|
+
}
|
|
3031
|
+
|
|
3032
|
+
toBuffer(value) {
|
|
3033
|
+
if (Buffer.isBuffer(value)) return value;
|
|
3034
|
+
if (typeof value === 'object' ||
|
|
3035
|
+
typeof value === 'boolean' ||
|
|
3036
|
+
!isNaN(value)) value = JSON.stringify(value);
|
|
3037
|
+
|
|
3038
|
+
return Buffer.from(value)
|
|
3039
|
+
}
|
|
3040
|
+
|
|
3041
|
+
async many(type, _value) {
|
|
3042
|
+
const jobs = [];
|
|
3043
|
+
|
|
3044
|
+
for (const key of Object.keys(_value)) {
|
|
3045
|
+
const value = this.toBuffer(_value[key]);
|
|
3046
|
+
|
|
3047
|
+
jobs.push(this[type](key, value));
|
|
3048
|
+
}
|
|
3049
|
+
|
|
3050
|
+
return Promise.all(jobs)
|
|
3051
|
+
}
|
|
3052
|
+
|
|
3053
|
+
async put(key, value) {
|
|
3054
|
+
if (typeof key === 'object') return this.many('put', key);
|
|
3055
|
+
value = this.toBuffer(value);
|
|
3056
|
+
|
|
3057
|
+
return this.db.put(new Key(String(key)), value);
|
|
3058
|
+
}
|
|
3059
|
+
|
|
3060
|
+
async query() {
|
|
3061
|
+
const object = {};
|
|
3062
|
+
|
|
3063
|
+
for await (let query of this.db.query({})) {
|
|
3064
|
+
const key = query.key.baseNamespace();
|
|
3065
|
+
object[key] = this.possibleJSON(query.value);
|
|
3066
|
+
}
|
|
3067
|
+
|
|
3068
|
+
return object
|
|
3069
|
+
}
|
|
3070
|
+
|
|
3071
|
+
async get(key) {
|
|
3072
|
+
if (!key) return this.query()
|
|
3073
|
+
if (typeof key === 'object') return this.many('get', key);
|
|
3074
|
+
let data = await this.db.get(new Key(String(key)));
|
|
3075
|
+
if (!data) return undefined
|
|
3076
|
+
return this.possibleJSON(data)
|
|
3077
|
+
}
|
|
3078
|
+
|
|
3079
|
+
async has(key) {
|
|
3080
|
+
if (typeof key === 'object') return this.many('has', key);
|
|
3081
|
+
|
|
3082
|
+
try {
|
|
3083
|
+
await this.db.get(new Key(String(key)));
|
|
3084
|
+
return true;
|
|
3085
|
+
} catch (e) {
|
|
3086
|
+
return false
|
|
3087
|
+
}
|
|
3088
|
+
}
|
|
3089
|
+
|
|
3090
|
+
async delete(key) {
|
|
3091
|
+
return this.db.delete(new Key(String(key)))
|
|
3092
|
+
}
|
|
3093
|
+
|
|
3094
|
+
async size() {
|
|
3095
|
+
const object = await this.query();
|
|
3096
|
+
return Object.keys(object).length
|
|
3097
|
+
}
|
|
3098
|
+
|
|
3099
|
+
// TODO: deprecate usage possibleJSON
|
|
3100
|
+
// make possibleJSON optional
|
|
3101
|
+
// or release as its own package
|
|
3102
|
+
possibleJSON(data) {
|
|
3103
|
+
let string = data.toString();
|
|
3104
|
+
if (string.charAt(0) === '{' && string.charAt(string.length - 1) === '}' ||
|
|
3105
|
+
string.charAt(0) === '[' && string.charAt(string.length - 1) === ']' ||
|
|
3106
|
+
string === 'true' ||
|
|
3107
|
+
string === 'false' ||
|
|
3108
|
+
!isNaN(string))
|
|
3109
|
+
return JSON.parse(string);
|
|
3110
|
+
|
|
3111
|
+
return data
|
|
3112
|
+
}
|
|
3113
|
+
|
|
3114
|
+
}
|
|
3115
|
+
|
|
3116
|
+
module.exports = LeofcoinStorage;
|
|
3117
|
+
|
|
3118
|
+
}).call(this)}).call(this,require("buffer").Buffer)
|
|
3119
|
+
},{"buffer":91,"datastore-level":121,"fs":83,"interface-datastore":213,"os":306,"path":314}],4:[function(require,module,exports){
|
|
3120
|
+
/* @vandeurenglenn/little-pubsub version 1.3.0 */
|
|
3121
|
+
'use strict';
|
|
3122
|
+
|
|
3123
|
+
const ENVIRONMENT = {version: '1.3.0', production: true};
|
|
3093
3124
|
|
|
3094
3125
|
class LittlePubSub {
|
|
3095
3126
|
|
|
@@ -3126,9 +3157,9 @@ class LittlePubSub {
|
|
|
3126
3157
|
if (this.subscribers[event]) {
|
|
3127
3158
|
const index = this.subscribers[event].handlers.indexOf(handler.bind(context));
|
|
3128
3159
|
this.subscribers[event].handlers.splice(index);
|
|
3129
|
-
if (this.subscribers[event].handlers.length === 0) delete this.subscribers[event];
|
|
3160
|
+
if (this.subscribers[event].handlers.length === 0) delete this.subscribers[event];
|
|
3130
3161
|
}
|
|
3131
|
-
|
|
3162
|
+
|
|
3132
3163
|
}
|
|
3133
3164
|
|
|
3134
3165
|
/**
|
|
@@ -3138,10 +3169,10 @@ class LittlePubSub {
|
|
|
3138
3169
|
publish(event, change) {
|
|
3139
3170
|
if (this.subscribers[event]) {
|
|
3140
3171
|
if (this.verbose || this.subscribers[event].value !== change) {
|
|
3172
|
+
this.subscribers[event].value = change;
|
|
3141
3173
|
this.subscribers[event].handlers.forEach(handler => {
|
|
3142
3174
|
handler(change, this.subscribers[event].value);
|
|
3143
3175
|
});
|
|
3144
|
-
this.subscribers[event].value = change;
|
|
3145
3176
|
}
|
|
3146
3177
|
}
|
|
3147
3178
|
}
|
|
@@ -3149,7 +3180,7 @@ class LittlePubSub {
|
|
|
3149
3180
|
|
|
3150
3181
|
module.exports = LittlePubSub;
|
|
3151
3182
|
|
|
3152
|
-
},{}],
|
|
3183
|
+
},{}],5:[function(require,module,exports){
|
|
3153
3184
|
function AbstractChainedBatch (db) {
|
|
3154
3185
|
if (typeof db !== 'object' || db === null) {
|
|
3155
3186
|
throw new TypeError('First argument must be an abstract-leveldown compliant store')
|
|
@@ -3232,7 +3263,7 @@ AbstractChainedBatch.prototype._write = function (options, callback) {
|
|
|
3232
3263
|
|
|
3233
3264
|
module.exports = AbstractChainedBatch
|
|
3234
3265
|
|
|
3235
|
-
},{}],
|
|
3266
|
+
},{}],6:[function(require,module,exports){
|
|
3236
3267
|
(function (process){(function (){
|
|
3237
3268
|
function AbstractIterator (db) {
|
|
3238
3269
|
if (typeof db !== 'object' || db === null) {
|
|
@@ -3308,7 +3339,7 @@ AbstractIterator.prototype._end = function (callback) {
|
|
|
3308
3339
|
module.exports = AbstractIterator
|
|
3309
3340
|
|
|
3310
3341
|
}).call(this)}).call(this,require('_process'))
|
|
3311
|
-
},{"_process":
|
|
3342
|
+
},{"_process":322}],7:[function(require,module,exports){
|
|
3312
3343
|
(function (Buffer,process){(function (){
|
|
3313
3344
|
var xtend = require('xtend')
|
|
3314
3345
|
var AbstractIterator = require('./abstract-iterator')
|
|
@@ -3575,12 +3606,12 @@ AbstractLevelDOWN.prototype._checkValue = function (value) {
|
|
|
3575
3606
|
module.exports = AbstractLevelDOWN
|
|
3576
3607
|
|
|
3577
3608
|
}).call(this)}).call(this,{"isBuffer":require("../is-buffer/index.js")},require('_process'))
|
|
3578
|
-
},{"../is-buffer/index.js":
|
|
3609
|
+
},{"../is-buffer/index.js":218,"./abstract-chained-batch":5,"./abstract-iterator":6,"_process":322,"xtend":458}],8:[function(require,module,exports){
|
|
3579
3610
|
exports.AbstractLevelDOWN = require('./abstract-leveldown')
|
|
3580
3611
|
exports.AbstractIterator = require('./abstract-iterator')
|
|
3581
3612
|
exports.AbstractChainedBatch = require('./abstract-chained-batch')
|
|
3582
3613
|
|
|
3583
|
-
},{"./abstract-chained-batch":
|
|
3614
|
+
},{"./abstract-chained-batch":5,"./abstract-iterator":6,"./abstract-leveldown":7}],9:[function(require,module,exports){
|
|
3584
3615
|
/*!
|
|
3585
3616
|
* accepts
|
|
3586
3617
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -3820,10 +3851,10 @@ function validMime (type) {
|
|
|
3820
3851
|
return typeof type === 'string'
|
|
3821
3852
|
}
|
|
3822
3853
|
|
|
3823
|
-
},{"mime-types":
|
|
3854
|
+
},{"mime-types":264,"negotiator":298}],10:[function(require,module,exports){
|
|
3824
3855
|
module.exports = require('./register')().Promise
|
|
3825
3856
|
|
|
3826
|
-
},{"./register":
|
|
3857
|
+
},{"./register":12}],11:[function(require,module,exports){
|
|
3827
3858
|
"use strict"
|
|
3828
3859
|
// global key for user preferred registration
|
|
3829
3860
|
var REGISTRATION_KEY = '@@any-promise/REGISTRATION',
|
|
@@ -3903,7 +3934,7 @@ module.exports = function(root, loadImplementation){
|
|
|
3903
3934
|
}
|
|
3904
3935
|
}
|
|
3905
3936
|
|
|
3906
|
-
},{}],
|
|
3937
|
+
},{}],12:[function(require,module,exports){
|
|
3907
3938
|
"use strict";
|
|
3908
3939
|
module.exports = require('./loader')(window, loadImplementation)
|
|
3909
3940
|
|
|
@@ -3923,7 +3954,7 @@ function loadImplementation(){
|
|
|
3923
3954
|
}
|
|
3924
3955
|
}
|
|
3925
3956
|
|
|
3926
|
-
},{"./loader":
|
|
3957
|
+
},{"./loader":11}],13:[function(require,module,exports){
|
|
3927
3958
|
'use strict';
|
|
3928
3959
|
|
|
3929
3960
|
const asn1 = exports;
|
|
@@ -3936,7 +3967,7 @@ asn1.constants = require('./asn1/constants');
|
|
|
3936
3967
|
asn1.decoders = require('./asn1/decoders');
|
|
3937
3968
|
asn1.encoders = require('./asn1/encoders');
|
|
3938
3969
|
|
|
3939
|
-
},{"./asn1/api":
|
|
3970
|
+
},{"./asn1/api":14,"./asn1/base":16,"./asn1/constants":20,"./asn1/decoders":22,"./asn1/encoders":25,"bn.js":27}],14:[function(require,module,exports){
|
|
3940
3971
|
'use strict';
|
|
3941
3972
|
|
|
3942
3973
|
const encoders = require('./encoders');
|
|
@@ -3995,7 +4026,7 @@ Entity.prototype.encode = function encode(data, enc, /* internal */ reporter) {
|
|
|
3995
4026
|
return this._getEncoder(enc).encode(data, reporter);
|
|
3996
4027
|
};
|
|
3997
4028
|
|
|
3998
|
-
},{"./decoders":
|
|
4029
|
+
},{"./decoders":22,"./encoders":25,"inherits":210}],15:[function(require,module,exports){
|
|
3999
4030
|
'use strict';
|
|
4000
4031
|
|
|
4001
4032
|
const inherits = require('inherits');
|
|
@@ -4150,7 +4181,7 @@ EncoderBuffer.prototype.join = function join(out, offset) {
|
|
|
4150
4181
|
return out;
|
|
4151
4182
|
};
|
|
4152
4183
|
|
|
4153
|
-
},{"../base/reporter":
|
|
4184
|
+
},{"../base/reporter":18,"inherits":210,"safer-buffer":384}],16:[function(require,module,exports){
|
|
4154
4185
|
'use strict';
|
|
4155
4186
|
|
|
4156
4187
|
const base = exports;
|
|
@@ -4160,7 +4191,7 @@ base.DecoderBuffer = require('./buffer').DecoderBuffer;
|
|
|
4160
4191
|
base.EncoderBuffer = require('./buffer').EncoderBuffer;
|
|
4161
4192
|
base.Node = require('./node');
|
|
4162
4193
|
|
|
4163
|
-
},{"./buffer":
|
|
4194
|
+
},{"./buffer":15,"./node":17,"./reporter":18}],17:[function(require,module,exports){
|
|
4164
4195
|
'use strict';
|
|
4165
4196
|
|
|
4166
4197
|
const Reporter = require('../base/reporter').Reporter;
|
|
@@ -4800,7 +4831,7 @@ Node.prototype._isPrintstr = function isPrintstr(str) {
|
|
|
4800
4831
|
return /^[A-Za-z0-9 '()+,-./:=?]*$/.test(str);
|
|
4801
4832
|
};
|
|
4802
4833
|
|
|
4803
|
-
},{"../base/buffer":
|
|
4834
|
+
},{"../base/buffer":15,"../base/reporter":18,"minimalistic-assert":265}],18:[function(require,module,exports){
|
|
4804
4835
|
'use strict';
|
|
4805
4836
|
|
|
4806
4837
|
const inherits = require('inherits');
|
|
@@ -4925,7 +4956,7 @@ ReporterError.prototype.rethrow = function rethrow(msg) {
|
|
|
4925
4956
|
return this;
|
|
4926
4957
|
};
|
|
4927
4958
|
|
|
4928
|
-
},{"inherits":
|
|
4959
|
+
},{"inherits":210}],19:[function(require,module,exports){
|
|
4929
4960
|
'use strict';
|
|
4930
4961
|
|
|
4931
4962
|
// Helper
|
|
@@ -4985,7 +5016,7 @@ exports.tag = {
|
|
|
4985
5016
|
};
|
|
4986
5017
|
exports.tagByName = reverse(exports.tag);
|
|
4987
5018
|
|
|
4988
|
-
},{}],
|
|
5019
|
+
},{}],20:[function(require,module,exports){
|
|
4989
5020
|
'use strict';
|
|
4990
5021
|
|
|
4991
5022
|
const constants = exports;
|
|
@@ -5008,7 +5039,7 @@ constants._reverse = function reverse(map) {
|
|
|
5008
5039
|
|
|
5009
5040
|
constants.der = require('./der');
|
|
5010
5041
|
|
|
5011
|
-
},{"./der":
|
|
5042
|
+
},{"./der":19}],21:[function(require,module,exports){
|
|
5012
5043
|
'use strict';
|
|
5013
5044
|
|
|
5014
5045
|
const inherits = require('inherits');
|
|
@@ -5345,7 +5376,7 @@ function derDecodeLen(buf, primitive, fail) {
|
|
|
5345
5376
|
return len;
|
|
5346
5377
|
}
|
|
5347
5378
|
|
|
5348
|
-
},{"../base/buffer":
|
|
5379
|
+
},{"../base/buffer":15,"../base/node":17,"../constants/der":19,"bn.js":27,"inherits":210}],22:[function(require,module,exports){
|
|
5349
5380
|
'use strict';
|
|
5350
5381
|
|
|
5351
5382
|
const decoders = exports;
|
|
@@ -5353,7 +5384,7 @@ const decoders = exports;
|
|
|
5353
5384
|
decoders.der = require('./der');
|
|
5354
5385
|
decoders.pem = require('./pem');
|
|
5355
5386
|
|
|
5356
|
-
},{"./der":
|
|
5387
|
+
},{"./der":21,"./pem":23}],23:[function(require,module,exports){
|
|
5357
5388
|
'use strict';
|
|
5358
5389
|
|
|
5359
5390
|
const inherits = require('inherits');
|
|
@@ -5406,7 +5437,7 @@ PEMDecoder.prototype.decode = function decode(data, options) {
|
|
|
5406
5437
|
return DERDecoder.prototype.decode.call(this, input, options);
|
|
5407
5438
|
};
|
|
5408
5439
|
|
|
5409
|
-
},{"./der":
|
|
5440
|
+
},{"./der":21,"inherits":210,"safer-buffer":384}],24:[function(require,module,exports){
|
|
5410
5441
|
'use strict';
|
|
5411
5442
|
|
|
5412
5443
|
const inherits = require('inherits');
|
|
@@ -5703,7 +5734,7 @@ function encodeTag(tag, primitive, cls, reporter) {
|
|
|
5703
5734
|
return res;
|
|
5704
5735
|
}
|
|
5705
5736
|
|
|
5706
|
-
},{"../base/node":
|
|
5737
|
+
},{"../base/node":17,"../constants/der":19,"inherits":210,"safer-buffer":384}],25:[function(require,module,exports){
|
|
5707
5738
|
'use strict';
|
|
5708
5739
|
|
|
5709
5740
|
const encoders = exports;
|
|
@@ -5711,7 +5742,7 @@ const encoders = exports;
|
|
|
5711
5742
|
encoders.der = require('./der');
|
|
5712
5743
|
encoders.pem = require('./pem');
|
|
5713
5744
|
|
|
5714
|
-
},{"./der":
|
|
5745
|
+
},{"./der":24,"./pem":26}],26:[function(require,module,exports){
|
|
5715
5746
|
'use strict';
|
|
5716
5747
|
|
|
5717
5748
|
const inherits = require('inherits');
|
|
@@ -5736,7 +5767,7 @@ PEMEncoder.prototype.encode = function encode(data, options) {
|
|
|
5736
5767
|
return out.join('\n');
|
|
5737
5768
|
};
|
|
5738
5769
|
|
|
5739
|
-
},{"./der":
|
|
5770
|
+
},{"./der":24,"inherits":210}],27:[function(require,module,exports){
|
|
5740
5771
|
(function (module, exports) {
|
|
5741
5772
|
'use strict';
|
|
5742
5773
|
|
|
@@ -9184,7 +9215,7 @@ PEMEncoder.prototype.encode = function encode(data, options) {
|
|
|
9184
9215
|
};
|
|
9185
9216
|
})(typeof module === 'undefined' || module, this);
|
|
9186
9217
|
|
|
9187
|
-
},{"buffer":
|
|
9218
|
+
},{"buffer":55}],28:[function(require,module,exports){
|
|
9188
9219
|
(function (global){(function (){
|
|
9189
9220
|
'use strict';
|
|
9190
9221
|
|
|
@@ -9694,7 +9725,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
9694
9725
|
};
|
|
9695
9726
|
|
|
9696
9727
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
9697
|
-
},{"object-assign":
|
|
9728
|
+
},{"object-assign":303,"util/":31}],29:[function(require,module,exports){
|
|
9698
9729
|
if (typeof Object.create === 'function') {
|
|
9699
9730
|
// implementation from standard node.js 'util' module
|
|
9700
9731
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -9719,14 +9750,14 @@ if (typeof Object.create === 'function') {
|
|
|
9719
9750
|
}
|
|
9720
9751
|
}
|
|
9721
9752
|
|
|
9722
|
-
},{}],
|
|
9753
|
+
},{}],30:[function(require,module,exports){
|
|
9723
9754
|
module.exports = function isBuffer(arg) {
|
|
9724
9755
|
return arg && typeof arg === 'object'
|
|
9725
9756
|
&& typeof arg.copy === 'function'
|
|
9726
9757
|
&& typeof arg.fill === 'function'
|
|
9727
9758
|
&& typeof arg.readUInt8 === 'function';
|
|
9728
9759
|
}
|
|
9729
|
-
},{}],
|
|
9760
|
+
},{}],31:[function(require,module,exports){
|
|
9730
9761
|
(function (process,global){(function (){
|
|
9731
9762
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
9732
9763
|
//
|
|
@@ -10316,7 +10347,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
10316
10347
|
}
|
|
10317
10348
|
|
|
10318
10349
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
10319
|
-
},{"./support/isBuffer":
|
|
10350
|
+
},{"./support/isBuffer":30,"_process":322,"inherits":29}],32:[function(require,module,exports){
|
|
10320
10351
|
'use strict'
|
|
10321
10352
|
// base-x encoding / decoding
|
|
10322
10353
|
// Copyright (c) 2018 base-x contributors
|
|
@@ -10441,7 +10472,7 @@ function base (ALPHABET) {
|
|
|
10441
10472
|
}
|
|
10442
10473
|
module.exports = base
|
|
10443
10474
|
|
|
10444
|
-
},{"safe-buffer":
|
|
10475
|
+
},{"safe-buffer":383}],33:[function(require,module,exports){
|
|
10445
10476
|
'use strict'
|
|
10446
10477
|
|
|
10447
10478
|
exports.byteLength = byteLength
|
|
@@ -10595,7 +10626,7 @@ function fromByteArray (uint8) {
|
|
|
10595
10626
|
return parts.join('')
|
|
10596
10627
|
}
|
|
10597
10628
|
|
|
10598
|
-
},{}],
|
|
10629
|
+
},{}],34:[function(require,module,exports){
|
|
10599
10630
|
(function (Buffer){(function (){
|
|
10600
10631
|
"use strict";
|
|
10601
10632
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -10896,7 +10927,7 @@ function fromSeed(seed, network) {
|
|
|
10896
10927
|
exports.fromSeed = fromSeed;
|
|
10897
10928
|
|
|
10898
10929
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
10899
|
-
},{"./crypto":
|
|
10930
|
+
},{"./crypto":35,"bs58check":88,"buffer":91,"tiny-secp256k1":429,"typeforce":438,"wif":457}],35:[function(require,module,exports){
|
|
10900
10931
|
"use strict";
|
|
10901
10932
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10902
10933
|
const createHash = require('create-hash');
|
|
@@ -10924,7 +10955,7 @@ function hmacSHA512(key, data) {
|
|
|
10924
10955
|
}
|
|
10925
10956
|
exports.hmacSHA512 = hmacSHA512;
|
|
10926
10957
|
|
|
10927
|
-
},{"create-hash":
|
|
10958
|
+
},{"create-hash":104,"create-hmac":106}],36:[function(require,module,exports){
|
|
10928
10959
|
"use strict";
|
|
10929
10960
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10930
10961
|
var bip32_1 = require("./bip32");
|
|
@@ -10933,7 +10964,7 @@ exports.fromBase58 = bip32_1.fromBase58;
|
|
|
10933
10964
|
exports.fromPublicKey = bip32_1.fromPublicKey;
|
|
10934
10965
|
exports.fromPrivateKey = bip32_1.fromPrivateKey;
|
|
10935
10966
|
|
|
10936
|
-
},{"./bip32":
|
|
10967
|
+
},{"./bip32":34}],37:[function(require,module,exports){
|
|
10937
10968
|
"use strict";
|
|
10938
10969
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10939
10970
|
// browserify by default only pulls in files that are hard coded in requires
|
|
@@ -10996,7 +11027,7 @@ try {
|
|
|
10996
11027
|
}
|
|
10997
11028
|
catch (err) { }
|
|
10998
11029
|
|
|
10999
|
-
},{"./wordlists/chinese_simplified.json":
|
|
11030
|
+
},{"./wordlists/chinese_simplified.json":39,"./wordlists/chinese_traditional.json":40,"./wordlists/czech.json":41,"./wordlists/english.json":42,"./wordlists/french.json":43,"./wordlists/italian.json":44,"./wordlists/japanese.json":45,"./wordlists/korean.json":46,"./wordlists/portuguese.json":47,"./wordlists/spanish.json":48}],38:[function(require,module,exports){
|
|
11000
11031
|
(function (Buffer){(function (){
|
|
11001
11032
|
"use strict";
|
|
11002
11033
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -11181,7 +11212,7 @@ var _wordlists_2 = require("./_wordlists");
|
|
|
11181
11212
|
exports.wordlists = _wordlists_2.wordlists;
|
|
11182
11213
|
|
|
11183
11214
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
11184
|
-
},{"./_wordlists":
|
|
11215
|
+
},{"./_wordlists":37,"buffer":91,"create-hash":104,"pbkdf2":315,"randombytes":364}],39:[function(require,module,exports){
|
|
11185
11216
|
module.exports=[
|
|
11186
11217
|
"的",
|
|
11187
11218
|
"一",
|
|
@@ -13233,7 +13264,7 @@ module.exports=[
|
|
|
13233
13264
|
"歇"
|
|
13234
13265
|
]
|
|
13235
13266
|
|
|
13236
|
-
},{}],
|
|
13267
|
+
},{}],40:[function(require,module,exports){
|
|
13237
13268
|
module.exports=[
|
|
13238
13269
|
"的",
|
|
13239
13270
|
"一",
|
|
@@ -15285,7 +15316,7 @@ module.exports=[
|
|
|
15285
15316
|
"歇"
|
|
15286
15317
|
]
|
|
15287
15318
|
|
|
15288
|
-
},{}],
|
|
15319
|
+
},{}],41:[function(require,module,exports){
|
|
15289
15320
|
module.exports=[
|
|
15290
15321
|
"abdikace",
|
|
15291
15322
|
"abeceda",
|
|
@@ -17337,7 +17368,7 @@ module.exports=[
|
|
|
17337
17368
|
"zvyk"
|
|
17338
17369
|
]
|
|
17339
17370
|
|
|
17340
|
-
},{}],
|
|
17371
|
+
},{}],42:[function(require,module,exports){
|
|
17341
17372
|
module.exports=[
|
|
17342
17373
|
"abandon",
|
|
17343
17374
|
"ability",
|
|
@@ -19389,7 +19420,7 @@ module.exports=[
|
|
|
19389
19420
|
"zoo"
|
|
19390
19421
|
]
|
|
19391
19422
|
|
|
19392
|
-
},{}],
|
|
19423
|
+
},{}],43:[function(require,module,exports){
|
|
19393
19424
|
module.exports=[
|
|
19394
19425
|
"abaisser",
|
|
19395
19426
|
"abandon",
|
|
@@ -21441,7 +21472,7 @@ module.exports=[
|
|
|
21441
21472
|
"zoologie"
|
|
21442
21473
|
]
|
|
21443
21474
|
|
|
21444
|
-
},{}],
|
|
21475
|
+
},{}],44:[function(require,module,exports){
|
|
21445
21476
|
module.exports=[
|
|
21446
21477
|
"abaco",
|
|
21447
21478
|
"abbaglio",
|
|
@@ -23493,7 +23524,7 @@ module.exports=[
|
|
|
23493
23524
|
"zuppa"
|
|
23494
23525
|
]
|
|
23495
23526
|
|
|
23496
|
-
},{}],
|
|
23527
|
+
},{}],45:[function(require,module,exports){
|
|
23497
23528
|
module.exports=[
|
|
23498
23529
|
"あいこくしん",
|
|
23499
23530
|
"あいさつ",
|
|
@@ -25545,7 +25576,7 @@ module.exports=[
|
|
|
25545
25576
|
"われる"
|
|
25546
25577
|
]
|
|
25547
25578
|
|
|
25548
|
-
},{}],
|
|
25579
|
+
},{}],46:[function(require,module,exports){
|
|
25549
25580
|
module.exports=[
|
|
25550
25581
|
"가격",
|
|
25551
25582
|
"가끔",
|
|
@@ -27597,7 +27628,7 @@ module.exports=[
|
|
|
27597
27628
|
"힘껏"
|
|
27598
27629
|
]
|
|
27599
27630
|
|
|
27600
|
-
},{}],
|
|
27631
|
+
},{}],47:[function(require,module,exports){
|
|
27601
27632
|
module.exports=[
|
|
27602
27633
|
"abacate",
|
|
27603
27634
|
"abaixo",
|
|
@@ -29649,7 +29680,7 @@ module.exports=[
|
|
|
29649
29680
|
"zumbido"
|
|
29650
29681
|
]
|
|
29651
29682
|
|
|
29652
|
-
},{}],
|
|
29683
|
+
},{}],48:[function(require,module,exports){
|
|
29653
29684
|
module.exports=[
|
|
29654
29685
|
"ábaco",
|
|
29655
29686
|
"abdomen",
|
|
@@ -31701,7 +31732,7 @@ module.exports=[
|
|
|
31701
31732
|
"zurdo"
|
|
31702
31733
|
]
|
|
31703
31734
|
|
|
31704
|
-
},{}],
|
|
31735
|
+
},{}],49:[function(require,module,exports){
|
|
31705
31736
|
const EventEmitter = require('events')
|
|
31706
31737
|
|
|
31707
31738
|
class Tracker extends EventEmitter {
|
|
@@ -31731,7 +31762,7 @@ class Tracker extends EventEmitter {
|
|
|
31731
31762
|
|
|
31732
31763
|
module.exports = Tracker
|
|
31733
31764
|
|
|
31734
|
-
},{"events":
|
|
31765
|
+
},{"events":178}],50:[function(require,module,exports){
|
|
31735
31766
|
const debug = require('debug')('bittorrent-tracker:websocket-tracker')
|
|
31736
31767
|
const Peer = require('simple-peer')
|
|
31737
31768
|
const randombytes = require('randombytes')
|
|
@@ -32165,7 +32196,7 @@ function noop () {}
|
|
|
32165
32196
|
|
|
32166
32197
|
module.exports = WebSocketTracker
|
|
32167
32198
|
|
|
32168
|
-
},{"../common":
|
|
32199
|
+
},{"../common":51,"./tracker":49,"debug":122,"randombytes":364,"simple-peer":402,"simple-websocket":52}],51:[function(require,module,exports){
|
|
32169
32200
|
(function (Buffer){(function (){
|
|
32170
32201
|
/**
|
|
32171
32202
|
* Functions/constants needed by both the client and server.
|
|
@@ -32192,7 +32223,7 @@ var config = require('./common-node')
|
|
|
32192
32223
|
Object.assign(exports, config)
|
|
32193
32224
|
|
|
32194
32225
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
32195
|
-
},{"./common-node":
|
|
32226
|
+
},{"./common-node":55,"buffer":91}],52:[function(require,module,exports){
|
|
32196
32227
|
(function (Buffer){(function (){
|
|
32197
32228
|
/* global WebSocket, DOMException */
|
|
32198
32229
|
|
|
@@ -32457,7 +32488,7 @@ Socket.WEBSOCKET_SUPPORT = !!_WebSocket
|
|
|
32457
32488
|
module.exports = Socket
|
|
32458
32489
|
|
|
32459
32490
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
32460
|
-
},{"buffer":
|
|
32491
|
+
},{"buffer":91,"debug":122,"queue-microtask":363,"randombytes":364,"readable-stream":380,"ws":55}],53:[function(require,module,exports){
|
|
32461
32492
|
(function (module, exports) {
|
|
32462
32493
|
'use strict';
|
|
32463
32494
|
|
|
@@ -35999,7 +36030,7 @@ module.exports = Socket
|
|
|
35999
36030
|
};
|
|
36000
36031
|
})(typeof module === 'undefined' || module, this);
|
|
36001
36032
|
|
|
36002
|
-
},{"buffer":
|
|
36033
|
+
},{"buffer":55}],54:[function(require,module,exports){
|
|
36003
36034
|
var r;
|
|
36004
36035
|
|
|
36005
36036
|
module.exports = function rand(len) {
|
|
@@ -36066,9 +36097,9 @@ if (typeof self === 'object') {
|
|
|
36066
36097
|
}
|
|
36067
36098
|
}
|
|
36068
36099
|
|
|
36069
|
-
},{"crypto":
|
|
36100
|
+
},{"crypto":55}],55:[function(require,module,exports){
|
|
36070
36101
|
|
|
36071
|
-
},{}],
|
|
36102
|
+
},{}],56:[function(require,module,exports){
|
|
36072
36103
|
// based on the aes implimentation in triple sec
|
|
36073
36104
|
// https://github.com/keybase/triplesec
|
|
36074
36105
|
// which is in turn based on the one from crypto-js
|
|
@@ -36298,7 +36329,7 @@ AES.prototype.scrub = function () {
|
|
|
36298
36329
|
|
|
36299
36330
|
module.exports.AES = AES
|
|
36300
36331
|
|
|
36301
|
-
},{"safe-buffer":
|
|
36332
|
+
},{"safe-buffer":383}],57:[function(require,module,exports){
|
|
36302
36333
|
var aes = require('./aes')
|
|
36303
36334
|
var Buffer = require('safe-buffer').Buffer
|
|
36304
36335
|
var Transform = require('cipher-base')
|
|
@@ -36417,7 +36448,7 @@ StreamCipher.prototype.setAAD = function setAAD (buf) {
|
|
|
36417
36448
|
|
|
36418
36449
|
module.exports = StreamCipher
|
|
36419
36450
|
|
|
36420
|
-
},{"./aes":
|
|
36451
|
+
},{"./aes":56,"./ghash":61,"./incr32":62,"buffer-xor":90,"cipher-base":94,"inherits":210,"safe-buffer":383}],58:[function(require,module,exports){
|
|
36421
36452
|
var ciphers = require('./encrypter')
|
|
36422
36453
|
var deciphers = require('./decrypter')
|
|
36423
36454
|
var modes = require('./modes/list.json')
|
|
@@ -36432,7 +36463,7 @@ exports.createDecipher = exports.Decipher = deciphers.createDecipher
|
|
|
36432
36463
|
exports.createDecipheriv = exports.Decipheriv = deciphers.createDecipheriv
|
|
36433
36464
|
exports.listCiphers = exports.getCiphers = getCiphers
|
|
36434
36465
|
|
|
36435
|
-
},{"./decrypter":
|
|
36466
|
+
},{"./decrypter":59,"./encrypter":60,"./modes/list.json":70}],59:[function(require,module,exports){
|
|
36436
36467
|
var AuthCipher = require('./authCipher')
|
|
36437
36468
|
var Buffer = require('safe-buffer').Buffer
|
|
36438
36469
|
var MODES = require('./modes')
|
|
@@ -36558,7 +36589,7 @@ function createDecipher (suite, password) {
|
|
|
36558
36589
|
exports.createDecipher = createDecipher
|
|
36559
36590
|
exports.createDecipheriv = createDecipheriv
|
|
36560
36591
|
|
|
36561
|
-
},{"./aes":
|
|
36592
|
+
},{"./aes":56,"./authCipher":57,"./modes":69,"./streamCipher":72,"cipher-base":94,"evp_bytestokey":179,"inherits":210,"safe-buffer":383}],60:[function(require,module,exports){
|
|
36562
36593
|
var MODES = require('./modes')
|
|
36563
36594
|
var AuthCipher = require('./authCipher')
|
|
36564
36595
|
var Buffer = require('safe-buffer').Buffer
|
|
@@ -36674,7 +36705,7 @@ function createCipher (suite, password) {
|
|
|
36674
36705
|
exports.createCipheriv = createCipheriv
|
|
36675
36706
|
exports.createCipher = createCipher
|
|
36676
36707
|
|
|
36677
|
-
},{"./aes":
|
|
36708
|
+
},{"./aes":56,"./authCipher":57,"./modes":69,"./streamCipher":72,"cipher-base":94,"evp_bytestokey":179,"inherits":210,"safe-buffer":383}],61:[function(require,module,exports){
|
|
36678
36709
|
var Buffer = require('safe-buffer').Buffer
|
|
36679
36710
|
var ZEROES = Buffer.alloc(16, 0)
|
|
36680
36711
|
|
|
@@ -36765,7 +36796,7 @@ GHASH.prototype.final = function (abl, bl) {
|
|
|
36765
36796
|
|
|
36766
36797
|
module.exports = GHASH
|
|
36767
36798
|
|
|
36768
|
-
},{"safe-buffer":
|
|
36799
|
+
},{"safe-buffer":383}],62:[function(require,module,exports){
|
|
36769
36800
|
function incr32 (iv) {
|
|
36770
36801
|
var len = iv.length
|
|
36771
36802
|
var item
|
|
@@ -36782,7 +36813,7 @@ function incr32 (iv) {
|
|
|
36782
36813
|
}
|
|
36783
36814
|
module.exports = incr32
|
|
36784
36815
|
|
|
36785
|
-
},{}],
|
|
36816
|
+
},{}],63:[function(require,module,exports){
|
|
36786
36817
|
var xor = require('buffer-xor')
|
|
36787
36818
|
|
|
36788
36819
|
exports.encrypt = function (self, block) {
|
|
@@ -36801,7 +36832,7 @@ exports.decrypt = function (self, block) {
|
|
|
36801
36832
|
return xor(out, pad)
|
|
36802
36833
|
}
|
|
36803
36834
|
|
|
36804
|
-
},{"buffer-xor":
|
|
36835
|
+
},{"buffer-xor":90}],64:[function(require,module,exports){
|
|
36805
36836
|
var Buffer = require('safe-buffer').Buffer
|
|
36806
36837
|
var xor = require('buffer-xor')
|
|
36807
36838
|
|
|
@@ -36836,7 +36867,7 @@ exports.encrypt = function (self, data, decrypt) {
|
|
|
36836
36867
|
return out
|
|
36837
36868
|
}
|
|
36838
36869
|
|
|
36839
|
-
},{"buffer-xor":
|
|
36870
|
+
},{"buffer-xor":90,"safe-buffer":383}],65:[function(require,module,exports){
|
|
36840
36871
|
var Buffer = require('safe-buffer').Buffer
|
|
36841
36872
|
|
|
36842
36873
|
function encryptByte (self, byteParam, decrypt) {
|
|
@@ -36880,7 +36911,7 @@ exports.encrypt = function (self, chunk, decrypt) {
|
|
|
36880
36911
|
return out
|
|
36881
36912
|
}
|
|
36882
36913
|
|
|
36883
|
-
},{"safe-buffer":
|
|
36914
|
+
},{"safe-buffer":383}],66:[function(require,module,exports){
|
|
36884
36915
|
var Buffer = require('safe-buffer').Buffer
|
|
36885
36916
|
|
|
36886
36917
|
function encryptByte (self, byteParam, decrypt) {
|
|
@@ -36907,7 +36938,7 @@ exports.encrypt = function (self, chunk, decrypt) {
|
|
|
36907
36938
|
return out
|
|
36908
36939
|
}
|
|
36909
36940
|
|
|
36910
|
-
},{"safe-buffer":
|
|
36941
|
+
},{"safe-buffer":383}],67:[function(require,module,exports){
|
|
36911
36942
|
var xor = require('buffer-xor')
|
|
36912
36943
|
var Buffer = require('safe-buffer').Buffer
|
|
36913
36944
|
var incr32 = require('../incr32')
|
|
@@ -36939,7 +36970,7 @@ exports.encrypt = function (self, chunk) {
|
|
|
36939
36970
|
return xor(chunk, pad)
|
|
36940
36971
|
}
|
|
36941
36972
|
|
|
36942
|
-
},{"../incr32":
|
|
36973
|
+
},{"../incr32":62,"buffer-xor":90,"safe-buffer":383}],68:[function(require,module,exports){
|
|
36943
36974
|
exports.encrypt = function (self, block) {
|
|
36944
36975
|
return self._cipher.encryptBlock(block)
|
|
36945
36976
|
}
|
|
@@ -36948,7 +36979,7 @@ exports.decrypt = function (self, block) {
|
|
|
36948
36979
|
return self._cipher.decryptBlock(block)
|
|
36949
36980
|
}
|
|
36950
36981
|
|
|
36951
|
-
},{}],
|
|
36982
|
+
},{}],69:[function(require,module,exports){
|
|
36952
36983
|
var modeModules = {
|
|
36953
36984
|
ECB: require('./ecb'),
|
|
36954
36985
|
CBC: require('./cbc'),
|
|
@@ -36968,7 +36999,7 @@ for (var key in modes) {
|
|
|
36968
36999
|
|
|
36969
37000
|
module.exports = modes
|
|
36970
37001
|
|
|
36971
|
-
},{"./cbc":
|
|
37002
|
+
},{"./cbc":63,"./cfb":64,"./cfb1":65,"./cfb8":66,"./ctr":67,"./ecb":68,"./list.json":70,"./ofb":71}],70:[function(require,module,exports){
|
|
36972
37003
|
module.exports={
|
|
36973
37004
|
"aes-128-ecb": {
|
|
36974
37005
|
"cipher": "AES",
|
|
@@ -37161,7 +37192,7 @@ module.exports={
|
|
|
37161
37192
|
}
|
|
37162
37193
|
}
|
|
37163
37194
|
|
|
37164
|
-
},{}],
|
|
37195
|
+
},{}],71:[function(require,module,exports){
|
|
37165
37196
|
(function (Buffer){(function (){
|
|
37166
37197
|
var xor = require('buffer-xor')
|
|
37167
37198
|
|
|
@@ -37181,7 +37212,7 @@ exports.encrypt = function (self, chunk) {
|
|
|
37181
37212
|
}
|
|
37182
37213
|
|
|
37183
37214
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
37184
|
-
},{"buffer":
|
|
37215
|
+
},{"buffer":91,"buffer-xor":90}],72:[function(require,module,exports){
|
|
37185
37216
|
var aes = require('./aes')
|
|
37186
37217
|
var Buffer = require('safe-buffer').Buffer
|
|
37187
37218
|
var Transform = require('cipher-base')
|
|
@@ -37210,7 +37241,7 @@ StreamCipher.prototype._final = function () {
|
|
|
37210
37241
|
|
|
37211
37242
|
module.exports = StreamCipher
|
|
37212
37243
|
|
|
37213
|
-
},{"./aes":
|
|
37244
|
+
},{"./aes":56,"cipher-base":94,"inherits":210,"safe-buffer":383}],73:[function(require,module,exports){
|
|
37214
37245
|
var DES = require('browserify-des')
|
|
37215
37246
|
var aes = require('browserify-aes/browser')
|
|
37216
37247
|
var aesModes = require('browserify-aes/modes')
|
|
@@ -37279,7 +37310,7 @@ exports.createDecipher = exports.Decipher = createDecipher
|
|
|
37279
37310
|
exports.createDecipheriv = exports.Decipheriv = createDecipheriv
|
|
37280
37311
|
exports.listCiphers = exports.getCiphers = getCiphers
|
|
37281
37312
|
|
|
37282
|
-
},{"browserify-aes/browser":
|
|
37313
|
+
},{"browserify-aes/browser":58,"browserify-aes/modes":69,"browserify-des":74,"browserify-des/modes":75,"evp_bytestokey":179}],74:[function(require,module,exports){
|
|
37283
37314
|
var CipherBase = require('cipher-base')
|
|
37284
37315
|
var des = require('des.js')
|
|
37285
37316
|
var inherits = require('inherits')
|
|
@@ -37331,7 +37362,7 @@ DES.prototype._final = function () {
|
|
|
37331
37362
|
return Buffer.from(this._des.final())
|
|
37332
37363
|
}
|
|
37333
37364
|
|
|
37334
|
-
},{"cipher-base":
|
|
37365
|
+
},{"cipher-base":94,"des.js":136,"inherits":210,"safe-buffer":383}],75:[function(require,module,exports){
|
|
37335
37366
|
exports['des-ecb'] = {
|
|
37336
37367
|
key: 8,
|
|
37337
37368
|
iv: 0
|
|
@@ -37357,7 +37388,7 @@ exports['des-ede'] = {
|
|
|
37357
37388
|
iv: 0
|
|
37358
37389
|
}
|
|
37359
37390
|
|
|
37360
|
-
},{}],
|
|
37391
|
+
},{}],76:[function(require,module,exports){
|
|
37361
37392
|
(function (Buffer){(function (){
|
|
37362
37393
|
var BN = require('bn.js')
|
|
37363
37394
|
var randomBytes = require('randombytes')
|
|
@@ -37396,10 +37427,10 @@ crt.getr = getr
|
|
|
37396
37427
|
module.exports = crt
|
|
37397
37428
|
|
|
37398
37429
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
37399
|
-
},{"bn.js":
|
|
37430
|
+
},{"bn.js":53,"buffer":91,"randombytes":364}],77:[function(require,module,exports){
|
|
37400
37431
|
module.exports = require('./browser/algorithms.json')
|
|
37401
37432
|
|
|
37402
|
-
},{"./browser/algorithms.json":
|
|
37433
|
+
},{"./browser/algorithms.json":78}],78:[function(require,module,exports){
|
|
37403
37434
|
module.exports={
|
|
37404
37435
|
"sha224WithRSAEncryption": {
|
|
37405
37436
|
"sign": "rsa",
|
|
@@ -37553,7 +37584,7 @@ module.exports={
|
|
|
37553
37584
|
}
|
|
37554
37585
|
}
|
|
37555
37586
|
|
|
37556
|
-
},{}],
|
|
37587
|
+
},{}],79:[function(require,module,exports){
|
|
37557
37588
|
module.exports={
|
|
37558
37589
|
"1.3.132.0.10": "secp256k1",
|
|
37559
37590
|
"1.3.132.0.33": "p224",
|
|
@@ -37563,7 +37594,7 @@ module.exports={
|
|
|
37563
37594
|
"1.3.132.0.35": "p521"
|
|
37564
37595
|
}
|
|
37565
37596
|
|
|
37566
|
-
},{}],
|
|
37597
|
+
},{}],80:[function(require,module,exports){
|
|
37567
37598
|
var Buffer = require('safe-buffer').Buffer
|
|
37568
37599
|
var createHash = require('create-hash')
|
|
37569
37600
|
var stream = require('readable-stream')
|
|
@@ -37657,7 +37688,7 @@ module.exports = {
|
|
|
37657
37688
|
createVerify: createVerify
|
|
37658
37689
|
}
|
|
37659
37690
|
|
|
37660
|
-
},{"./algorithms.json":
|
|
37691
|
+
},{"./algorithms.json":78,"./sign":81,"./verify":82,"create-hash":104,"inherits":210,"readable-stream":380,"safe-buffer":383}],81:[function(require,module,exports){
|
|
37661
37692
|
// much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js
|
|
37662
37693
|
var Buffer = require('safe-buffer').Buffer
|
|
37663
37694
|
var createHmac = require('create-hmac')
|
|
@@ -37802,7 +37833,7 @@ module.exports = sign
|
|
|
37802
37833
|
module.exports.getKey = getKey
|
|
37803
37834
|
module.exports.makeKey = makeKey
|
|
37804
37835
|
|
|
37805
|
-
},{"./curves.json":
|
|
37836
|
+
},{"./curves.json":79,"bn.js":53,"browserify-rsa":76,"create-hmac":106,"elliptic":149,"parse-asn1":312,"safe-buffer":383}],82:[function(require,module,exports){
|
|
37806
37837
|
// much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js
|
|
37807
37838
|
var Buffer = require('safe-buffer').Buffer
|
|
37808
37839
|
var BN = require('bn.js')
|
|
@@ -37888,9 +37919,9 @@ function checkValue (b, q) {
|
|
|
37888
37919
|
|
|
37889
37920
|
module.exports = verify
|
|
37890
37921
|
|
|
37891
|
-
},{"./curves.json":
|
|
37892
|
-
arguments[4][
|
|
37893
|
-
},{"dup":
|
|
37922
|
+
},{"./curves.json":79,"bn.js":53,"elliptic":149,"parse-asn1":312,"safe-buffer":383}],83:[function(require,module,exports){
|
|
37923
|
+
arguments[4][55][0].apply(exports,arguments)
|
|
37924
|
+
},{"dup":55}],84:[function(require,module,exports){
|
|
37894
37925
|
(function (Buffer){(function (){
|
|
37895
37926
|
/*!
|
|
37896
37927
|
* base32.js - base32 for bcrypto
|
|
@@ -38178,18 +38209,18 @@ exports.test = test;
|
|
|
38178
38209
|
exports.testHex = testHex;
|
|
38179
38210
|
|
|
38180
38211
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
38181
|
-
},{"bsert":
|
|
38212
|
+
},{"bsert":89,"buffer":91}],85:[function(require,module,exports){
|
|
38182
38213
|
'use strict';
|
|
38183
38214
|
|
|
38184
38215
|
module.exports = require('./base32');
|
|
38185
38216
|
|
|
38186
|
-
},{"./base32":
|
|
38217
|
+
},{"./base32":84}],86:[function(require,module,exports){
|
|
38187
38218
|
var basex = require('base-x')
|
|
38188
38219
|
var ALPHABET = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
|
|
38189
38220
|
|
|
38190
38221
|
module.exports = basex(ALPHABET)
|
|
38191
38222
|
|
|
38192
|
-
},{"base-x":
|
|
38223
|
+
},{"base-x":32}],87:[function(require,module,exports){
|
|
38193
38224
|
'use strict'
|
|
38194
38225
|
|
|
38195
38226
|
var base58 = require('bs58')
|
|
@@ -38241,7 +38272,7 @@ module.exports = function (checksumFn) {
|
|
|
38241
38272
|
}
|
|
38242
38273
|
}
|
|
38243
38274
|
|
|
38244
|
-
},{"bs58":
|
|
38275
|
+
},{"bs58":86,"safe-buffer":383}],88:[function(require,module,exports){
|
|
38245
38276
|
'use strict'
|
|
38246
38277
|
|
|
38247
38278
|
var createHash = require('create-hash')
|
|
@@ -38255,7 +38286,7 @@ function sha256x2 (buffer) {
|
|
|
38255
38286
|
|
|
38256
38287
|
module.exports = bs58checkBase(sha256x2)
|
|
38257
38288
|
|
|
38258
|
-
},{"./base":
|
|
38289
|
+
},{"./base":87,"create-hash":104}],89:[function(require,module,exports){
|
|
38259
38290
|
/*!
|
|
38260
38291
|
* assert.js - assertions for javascript
|
|
38261
38292
|
* Copyright (c) 2018, Christopher Jeffrey (MIT License).
|
|
@@ -39221,7 +39252,7 @@ assert.range = range;
|
|
|
39221
39252
|
|
|
39222
39253
|
module.exports = assert;
|
|
39223
39254
|
|
|
39224
|
-
},{}],
|
|
39255
|
+
},{}],90:[function(require,module,exports){
|
|
39225
39256
|
(function (Buffer){(function (){
|
|
39226
39257
|
module.exports = function xor (a, b) {
|
|
39227
39258
|
var length = Math.min(a.length, b.length)
|
|
@@ -39235,7 +39266,7 @@ module.exports = function xor (a, b) {
|
|
|
39235
39266
|
}
|
|
39236
39267
|
|
|
39237
39268
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
39238
|
-
},{"buffer":
|
|
39269
|
+
},{"buffer":91}],91:[function(require,module,exports){
|
|
39239
39270
|
(function (Buffer){(function (){
|
|
39240
39271
|
/*!
|
|
39241
39272
|
* The buffer module from node.js, for the browser.
|
|
@@ -41016,7 +41047,7 @@ function numberIsNaN (obj) {
|
|
|
41016
41047
|
}
|
|
41017
41048
|
|
|
41018
41049
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
41019
|
-
},{"base64-js":
|
|
41050
|
+
},{"base64-js":33,"buffer":91,"ieee754":203}],92:[function(require,module,exports){
|
|
41020
41051
|
module.exports = {
|
|
41021
41052
|
"100": "Continue",
|
|
41022
41053
|
"101": "Switching Protocols",
|
|
@@ -41082,7 +41113,7 @@ module.exports = {
|
|
|
41082
41113
|
"511": "Network Authentication Required"
|
|
41083
41114
|
}
|
|
41084
41115
|
|
|
41085
|
-
},{}],
|
|
41116
|
+
},{}],93:[function(require,module,exports){
|
|
41086
41117
|
'use strict';
|
|
41087
41118
|
|
|
41088
41119
|
const mimeTypes = require('mime-types');
|
|
@@ -41099,7 +41130,7 @@ module.exports = type => {
|
|
|
41099
41130
|
return mimeType;
|
|
41100
41131
|
};
|
|
41101
41132
|
|
|
41102
|
-
},{"mime-types":
|
|
41133
|
+
},{"mime-types":264,"ylru":460}],94:[function(require,module,exports){
|
|
41103
41134
|
var Buffer = require('safe-buffer').Buffer
|
|
41104
41135
|
var Transform = require('stream').Transform
|
|
41105
41136
|
var StringDecoder = require('string_decoder').StringDecoder
|
|
@@ -41200,7 +41231,7 @@ CipherBase.prototype._toString = function (value, enc, fin) {
|
|
|
41200
41231
|
|
|
41201
41232
|
module.exports = CipherBase
|
|
41202
41233
|
|
|
41203
|
-
},{"inherits":
|
|
41234
|
+
},{"inherits":210,"safe-buffer":383,"stream":407,"string_decoder":427}],95:[function(require,module,exports){
|
|
41204
41235
|
'use strict';
|
|
41205
41236
|
|
|
41206
41237
|
function withIs(Class, { className, symbolName }) {
|
|
@@ -41268,7 +41299,7 @@ function withIsProto(Class, { className, symbolName, withoutNew }) {
|
|
|
41268
41299
|
module.exports = withIs;
|
|
41269
41300
|
module.exports.proto = withIsProto;
|
|
41270
41301
|
|
|
41271
|
-
},{}],
|
|
41302
|
+
},{}],96:[function(require,module,exports){
|
|
41272
41303
|
|
|
41273
41304
|
/**
|
|
41274
41305
|
* slice() reference.
|
|
@@ -41507,7 +41538,7 @@ function isObject(val) {
|
|
|
41507
41538
|
return Object == val.constructor;
|
|
41508
41539
|
}
|
|
41509
41540
|
|
|
41510
|
-
},{}],
|
|
41541
|
+
},{}],97:[function(require,module,exports){
|
|
41511
41542
|
/*!
|
|
41512
41543
|
* content-disposition
|
|
41513
41544
|
* Copyright(c) 2014-2017 Douglas Christopher Wilson
|
|
@@ -41967,7 +41998,7 @@ function ContentDisposition (type, parameters) {
|
|
|
41967
41998
|
this.parameters = parameters
|
|
41968
41999
|
}
|
|
41969
42000
|
|
|
41970
|
-
},{"path":
|
|
42001
|
+
},{"path":314,"safe-buffer":98}],98:[function(require,module,exports){
|
|
41971
42002
|
/* eslint-disable node/no-deprecated-api */
|
|
41972
42003
|
var buffer = require('buffer')
|
|
41973
42004
|
var Buffer = buffer.Buffer
|
|
@@ -42031,7 +42062,7 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
42031
42062
|
return buffer.SlowBuffer(size)
|
|
42032
42063
|
}
|
|
42033
42064
|
|
|
42034
|
-
},{"buffer":
|
|
42065
|
+
},{"buffer":91}],99:[function(require,module,exports){
|
|
42035
42066
|
/*!
|
|
42036
42067
|
* content-type
|
|
42037
42068
|
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
@@ -42255,7 +42286,7 @@ function ContentType (type) {
|
|
|
42255
42286
|
this.type = type
|
|
42256
42287
|
}
|
|
42257
42288
|
|
|
42258
|
-
},{}],
|
|
42289
|
+
},{}],100:[function(require,module,exports){
|
|
42259
42290
|
/*!
|
|
42260
42291
|
* cookies
|
|
42261
42292
|
* Copyright(c) 2014 Jed Schmidt, http://jed.is/
|
|
@@ -42481,7 +42512,7 @@ Cookies.Cookie = Cookie
|
|
|
42481
42512
|
|
|
42482
42513
|
module.exports = Cookies
|
|
42483
42514
|
|
|
42484
|
-
},{"depd":
|
|
42515
|
+
},{"depd":135,"http":423,"keygrip":230}],101:[function(require,module,exports){
|
|
42485
42516
|
(function (Buffer){(function (){
|
|
42486
42517
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
42487
42518
|
//
|
|
@@ -42592,7 +42623,7 @@ function objectToString(o) {
|
|
|
42592
42623
|
}
|
|
42593
42624
|
|
|
42594
42625
|
}).call(this)}).call(this,{"isBuffer":require("../../is-buffer/index.js")})
|
|
42595
|
-
},{"../../is-buffer/index.js":
|
|
42626
|
+
},{"../../is-buffer/index.js":218}],102:[function(require,module,exports){
|
|
42596
42627
|
(function (Buffer){(function (){
|
|
42597
42628
|
var elliptic = require('elliptic')
|
|
42598
42629
|
var BN = require('bn.js')
|
|
@@ -42720,9 +42751,9 @@ function formatReturnValue (bn, enc, len) {
|
|
|
42720
42751
|
}
|
|
42721
42752
|
|
|
42722
42753
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
42723
|
-
},{"bn.js":
|
|
42724
|
-
arguments[4][
|
|
42725
|
-
},{"buffer":
|
|
42754
|
+
},{"bn.js":103,"buffer":91,"elliptic":149}],103:[function(require,module,exports){
|
|
42755
|
+
arguments[4][27][0].apply(exports,arguments)
|
|
42756
|
+
},{"buffer":55,"dup":27}],104:[function(require,module,exports){
|
|
42726
42757
|
'use strict'
|
|
42727
42758
|
var inherits = require('inherits')
|
|
42728
42759
|
var MD5 = require('md5.js')
|
|
@@ -42754,14 +42785,14 @@ module.exports = function createHash (alg) {
|
|
|
42754
42785
|
return new Hash(sha(alg))
|
|
42755
42786
|
}
|
|
42756
42787
|
|
|
42757
|
-
},{"cipher-base":
|
|
42788
|
+
},{"cipher-base":94,"inherits":210,"md5.js":258,"ripemd160":381,"sha.js":390}],105:[function(require,module,exports){
|
|
42758
42789
|
var MD5 = require('md5.js')
|
|
42759
42790
|
|
|
42760
42791
|
module.exports = function (buffer) {
|
|
42761
42792
|
return new MD5().update(buffer).digest()
|
|
42762
42793
|
}
|
|
42763
42794
|
|
|
42764
|
-
},{"md5.js":
|
|
42795
|
+
},{"md5.js":258}],106:[function(require,module,exports){
|
|
42765
42796
|
'use strict'
|
|
42766
42797
|
var inherits = require('inherits')
|
|
42767
42798
|
var Legacy = require('./legacy')
|
|
@@ -42825,7 +42856,7 @@ module.exports = function createHmac (alg, key) {
|
|
|
42825
42856
|
return new Hmac(alg, key)
|
|
42826
42857
|
}
|
|
42827
42858
|
|
|
42828
|
-
},{"./legacy":
|
|
42859
|
+
},{"./legacy":107,"cipher-base":94,"create-hash/md5":105,"inherits":210,"ripemd160":381,"safe-buffer":383,"sha.js":390}],107:[function(require,module,exports){
|
|
42829
42860
|
'use strict'
|
|
42830
42861
|
var inherits = require('inherits')
|
|
42831
42862
|
var Buffer = require('safe-buffer').Buffer
|
|
@@ -42873,7 +42904,7 @@ Hmac.prototype._final = function () {
|
|
|
42873
42904
|
}
|
|
42874
42905
|
module.exports = Hmac
|
|
42875
42906
|
|
|
42876
|
-
},{"cipher-base":
|
|
42907
|
+
},{"cipher-base":94,"inherits":210,"safe-buffer":383}],108:[function(require,module,exports){
|
|
42877
42908
|
'use strict'
|
|
42878
42909
|
|
|
42879
42910
|
exports.randomBytes = exports.rng = exports.pseudoRandomBytes = exports.prng = require('randombytes')
|
|
@@ -42972,7 +43003,7 @@ exports.constants = {
|
|
|
42972
43003
|
'POINT_CONVERSION_HYBRID': 6
|
|
42973
43004
|
}
|
|
42974
43005
|
|
|
42975
|
-
},{"browserify-cipher":
|
|
43006
|
+
},{"browserify-cipher":73,"browserify-sign":80,"browserify-sign/algos":77,"create-ecdh":102,"create-hash":104,"create-hmac":106,"diffie-hellman":143,"pbkdf2":315,"public-encrypt":352,"randombytes":364,"randomfill":365}],109:[function(require,module,exports){
|
|
42976
43007
|
;(function (root, factory, undef) {
|
|
42977
43008
|
if (typeof exports === "object") {
|
|
42978
43009
|
// CommonJS
|
|
@@ -43207,7 +43238,7 @@ exports.constants = {
|
|
|
43207
43238
|
return CryptoJS.AES;
|
|
43208
43239
|
|
|
43209
43240
|
}));
|
|
43210
|
-
},{"./cipher-core":
|
|
43241
|
+
},{"./cipher-core":110,"./core":111,"./enc-base64":112,"./evpkdf":114,"./md5":116}],110:[function(require,module,exports){
|
|
43211
43242
|
;(function (root, factory, undef) {
|
|
43212
43243
|
if (typeof exports === "object") {
|
|
43213
43244
|
// CommonJS
|
|
@@ -44098,7 +44129,7 @@ exports.constants = {
|
|
|
44098
44129
|
|
|
44099
44130
|
|
|
44100
44131
|
}));
|
|
44101
|
-
},{"./core":
|
|
44132
|
+
},{"./core":111,"./evpkdf":114}],111:[function(require,module,exports){
|
|
44102
44133
|
(function (global){(function (){
|
|
44103
44134
|
;(function (root, factory) {
|
|
44104
44135
|
if (typeof exports === "object") {
|
|
@@ -44908,7 +44939,7 @@ exports.constants = {
|
|
|
44908
44939
|
|
|
44909
44940
|
}));
|
|
44910
44941
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
44911
|
-
},{"crypto":
|
|
44942
|
+
},{"crypto":55}],112:[function(require,module,exports){
|
|
44912
44943
|
;(function (root, factory) {
|
|
44913
44944
|
if (typeof exports === "object") {
|
|
44914
44945
|
// CommonJS
|
|
@@ -45045,7 +45076,7 @@ exports.constants = {
|
|
|
45045
45076
|
return CryptoJS.enc.Base64;
|
|
45046
45077
|
|
|
45047
45078
|
}));
|
|
45048
|
-
},{"./core":
|
|
45079
|
+
},{"./core":111}],113:[function(require,module,exports){
|
|
45049
45080
|
;(function (root, factory) {
|
|
45050
45081
|
if (typeof exports === "object") {
|
|
45051
45082
|
// CommonJS
|
|
@@ -45064,7 +45095,7 @@ exports.constants = {
|
|
|
45064
45095
|
return CryptoJS.enc.Utf8;
|
|
45065
45096
|
|
|
45066
45097
|
}));
|
|
45067
|
-
},{"./core":
|
|
45098
|
+
},{"./core":111}],114:[function(require,module,exports){
|
|
45068
45099
|
;(function (root, factory, undef) {
|
|
45069
45100
|
if (typeof exports === "object") {
|
|
45070
45101
|
// CommonJS
|
|
@@ -45199,7 +45230,7 @@ exports.constants = {
|
|
|
45199
45230
|
return CryptoJS.EvpKDF;
|
|
45200
45231
|
|
|
45201
45232
|
}));
|
|
45202
|
-
},{"./core":
|
|
45233
|
+
},{"./core":111,"./hmac":115,"./sha1":117}],115:[function(require,module,exports){
|
|
45203
45234
|
;(function (root, factory) {
|
|
45204
45235
|
if (typeof exports === "object") {
|
|
45205
45236
|
// CommonJS
|
|
@@ -45343,7 +45374,7 @@ exports.constants = {
|
|
|
45343
45374
|
|
|
45344
45375
|
|
|
45345
45376
|
}));
|
|
45346
|
-
},{"./core":
|
|
45377
|
+
},{"./core":111}],116:[function(require,module,exports){
|
|
45347
45378
|
;(function (root, factory) {
|
|
45348
45379
|
if (typeof exports === "object") {
|
|
45349
45380
|
// CommonJS
|
|
@@ -45612,7 +45643,7 @@ exports.constants = {
|
|
|
45612
45643
|
return CryptoJS.MD5;
|
|
45613
45644
|
|
|
45614
45645
|
}));
|
|
45615
|
-
},{"./core":
|
|
45646
|
+
},{"./core":111}],117:[function(require,module,exports){
|
|
45616
45647
|
;(function (root, factory) {
|
|
45617
45648
|
if (typeof exports === "object") {
|
|
45618
45649
|
// CommonJS
|
|
@@ -45763,7 +45794,7 @@ exports.constants = {
|
|
|
45763
45794
|
return CryptoJS.SHA1;
|
|
45764
45795
|
|
|
45765
45796
|
}));
|
|
45766
|
-
},{"./core":
|
|
45797
|
+
},{"./core":111}],118:[function(require,module,exports){
|
|
45767
45798
|
;(function (root, factory) {
|
|
45768
45799
|
if (typeof exports === "object") {
|
|
45769
45800
|
// CommonJS
|
|
@@ -45963,7 +45994,7 @@ exports.constants = {
|
|
|
45963
45994
|
return CryptoJS.SHA256;
|
|
45964
45995
|
|
|
45965
45996
|
}));
|
|
45966
|
-
},{"./core":
|
|
45997
|
+
},{"./core":111}],119:[function(require,module,exports){
|
|
45967
45998
|
;(function (root, factory, undef) {
|
|
45968
45999
|
if (typeof exports === "object") {
|
|
45969
46000
|
// CommonJS
|
|
@@ -46290,7 +46321,7 @@ exports.constants = {
|
|
|
46290
46321
|
return CryptoJS.SHA512;
|
|
46291
46322
|
|
|
46292
46323
|
}));
|
|
46293
|
-
},{"./core":
|
|
46324
|
+
},{"./core":111,"./x64-core":120}],120:[function(require,module,exports){
|
|
46294
46325
|
;(function (root, factory) {
|
|
46295
46326
|
if (typeof exports === "object") {
|
|
46296
46327
|
// CommonJS
|
|
@@ -46595,7 +46626,7 @@ exports.constants = {
|
|
|
46595
46626
|
return CryptoJS;
|
|
46596
46627
|
|
|
46597
46628
|
}));
|
|
46598
|
-
},{"./core":
|
|
46629
|
+
},{"./core":111}],121:[function(require,module,exports){
|
|
46599
46630
|
(function (Buffer){(function (){
|
|
46600
46631
|
'use strict'
|
|
46601
46632
|
|
|
@@ -46787,7 +46818,7 @@ function levelIteratorToIterator (li) {
|
|
|
46787
46818
|
module.exports = LevelDatastore
|
|
46788
46819
|
|
|
46789
46820
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
46790
|
-
},{"buffer":
|
|
46821
|
+
},{"buffer":91,"interface-datastore":213,"level":252}],122:[function(require,module,exports){
|
|
46791
46822
|
(function (process){(function (){
|
|
46792
46823
|
/* eslint-env browser */
|
|
46793
46824
|
|
|
@@ -47050,7 +47081,7 @@ formatters.j = function (v) {
|
|
|
47050
47081
|
};
|
|
47051
47082
|
|
|
47052
47083
|
}).call(this)}).call(this,require('_process'))
|
|
47053
|
-
},{"./common":
|
|
47084
|
+
},{"./common":123,"_process":322}],123:[function(require,module,exports){
|
|
47054
47085
|
|
|
47055
47086
|
/**
|
|
47056
47087
|
* This is the common logic for both the Node.js and web browser
|
|
@@ -47316,7 +47347,7 @@ function setup(env) {
|
|
|
47316
47347
|
|
|
47317
47348
|
module.exports = setup;
|
|
47318
47349
|
|
|
47319
|
-
},{"ms":
|
|
47350
|
+
},{"ms":267}],124:[function(require,module,exports){
|
|
47320
47351
|
var pSlice = Array.prototype.slice;
|
|
47321
47352
|
var objectKeys = require('./lib/keys.js');
|
|
47322
47353
|
var isArguments = require('./lib/is_arguments.js');
|
|
@@ -47412,7 +47443,7 @@ function objEquiv(a, b, opts) {
|
|
|
47412
47443
|
return typeof a === typeof b;
|
|
47413
47444
|
}
|
|
47414
47445
|
|
|
47415
|
-
},{"./lib/is_arguments.js":
|
|
47446
|
+
},{"./lib/is_arguments.js":125,"./lib/keys.js":126}],125:[function(require,module,exports){
|
|
47416
47447
|
var supportsArgumentsClass = (function(){
|
|
47417
47448
|
return Object.prototype.toString.call(arguments)
|
|
47418
47449
|
})() == '[object Arguments]';
|
|
@@ -47434,7 +47465,7 @@ function unsupported(object){
|
|
|
47434
47465
|
false;
|
|
47435
47466
|
};
|
|
47436
47467
|
|
|
47437
|
-
},{}],
|
|
47468
|
+
},{}],126:[function(require,module,exports){
|
|
47438
47469
|
exports = module.exports = typeof Object.keys === 'function'
|
|
47439
47470
|
? Object.keys : shim;
|
|
47440
47471
|
|
|
@@ -47445,7 +47476,7 @@ function shim (obj) {
|
|
|
47445
47476
|
return keys;
|
|
47446
47477
|
}
|
|
47447
47478
|
|
|
47448
|
-
},{}],
|
|
47479
|
+
},{}],127:[function(require,module,exports){
|
|
47449
47480
|
var AbstractIterator = require('abstract-leveldown').AbstractIterator
|
|
47450
47481
|
var inherits = require('inherits')
|
|
47451
47482
|
|
|
@@ -47484,7 +47515,7 @@ DeferredIterator.prototype.seek = function () {
|
|
|
47484
47515
|
|
|
47485
47516
|
module.exports = DeferredIterator
|
|
47486
47517
|
|
|
47487
|
-
},{"abstract-leveldown":
|
|
47518
|
+
},{"abstract-leveldown":132,"inherits":210}],128:[function(require,module,exports){
|
|
47488
47519
|
var AbstractLevelDOWN = require('abstract-leveldown').AbstractLevelDOWN
|
|
47489
47520
|
var inherits = require('inherits')
|
|
47490
47521
|
var DeferredIterator = require('./deferred-iterator')
|
|
@@ -47583,7 +47614,7 @@ DeferredLevelDOWN.prototype._serializeValue = function (value) {
|
|
|
47583
47614
|
module.exports = DeferredLevelDOWN
|
|
47584
47615
|
module.exports.DeferredIterator = DeferredIterator
|
|
47585
47616
|
|
|
47586
|
-
},{"./deferred-iterator":
|
|
47617
|
+
},{"./deferred-iterator":127,"abstract-leveldown":132,"inherits":210}],129:[function(require,module,exports){
|
|
47587
47618
|
var nextTick = require('./next-tick')
|
|
47588
47619
|
|
|
47589
47620
|
function AbstractChainedBatch (db) {
|
|
@@ -47671,7 +47702,7 @@ AbstractChainedBatch.prototype._nextTick = nextTick
|
|
|
47671
47702
|
|
|
47672
47703
|
module.exports = AbstractChainedBatch
|
|
47673
47704
|
|
|
47674
|
-
},{"./next-tick":
|
|
47705
|
+
},{"./next-tick":133}],130:[function(require,module,exports){
|
|
47675
47706
|
var nextTick = require('./next-tick')
|
|
47676
47707
|
|
|
47677
47708
|
function AbstractIterator (db) {
|
|
@@ -47750,7 +47781,7 @@ AbstractIterator.prototype._nextTick = nextTick
|
|
|
47750
47781
|
|
|
47751
47782
|
module.exports = AbstractIterator
|
|
47752
47783
|
|
|
47753
|
-
},{"./next-tick":
|
|
47784
|
+
},{"./next-tick":133}],131:[function(require,module,exports){
|
|
47754
47785
|
var xtend = require('xtend')
|
|
47755
47786
|
var supports = require('level-supports')
|
|
47756
47787
|
var Buffer = require('buffer').Buffer
|
|
@@ -48072,12 +48103,12 @@ AbstractLevelDOWN.prototype._nextTick = nextTick
|
|
|
48072
48103
|
|
|
48073
48104
|
module.exports = AbstractLevelDOWN
|
|
48074
48105
|
|
|
48075
|
-
},{"./abstract-chained-batch":
|
|
48076
|
-
arguments[4][
|
|
48077
|
-
},{"./abstract-chained-batch":
|
|
48106
|
+
},{"./abstract-chained-batch":129,"./abstract-iterator":130,"./next-tick":133,"buffer":91,"level-supports":251,"xtend":458}],132:[function(require,module,exports){
|
|
48107
|
+
arguments[4][8][0].apply(exports,arguments)
|
|
48108
|
+
},{"./abstract-chained-batch":129,"./abstract-iterator":130,"./abstract-leveldown":131,"dup":8}],133:[function(require,module,exports){
|
|
48078
48109
|
module.exports = require('immediate')
|
|
48079
48110
|
|
|
48080
|
-
},{"immediate":
|
|
48111
|
+
},{"immediate":204}],134:[function(require,module,exports){
|
|
48081
48112
|
|
|
48082
48113
|
/**
|
|
48083
48114
|
* Expose `Delegator`.
|
|
@@ -48200,7 +48231,7 @@ Delegator.prototype.fluent = function (name) {
|
|
|
48200
48231
|
return this;
|
|
48201
48232
|
};
|
|
48202
48233
|
|
|
48203
|
-
},{}],
|
|
48234
|
+
},{}],135:[function(require,module,exports){
|
|
48204
48235
|
/*!
|
|
48205
48236
|
* depd
|
|
48206
48237
|
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
@@ -48279,7 +48310,7 @@ function wrapproperty (obj, prop, message) {
|
|
|
48279
48310
|
}
|
|
48280
48311
|
}
|
|
48281
48312
|
|
|
48282
|
-
},{}],
|
|
48313
|
+
},{}],136:[function(require,module,exports){
|
|
48283
48314
|
'use strict';
|
|
48284
48315
|
|
|
48285
48316
|
exports.utils = require('./des/utils');
|
|
@@ -48288,7 +48319,7 @@ exports.DES = require('./des/des');
|
|
|
48288
48319
|
exports.CBC = require('./des/cbc');
|
|
48289
48320
|
exports.EDE = require('./des/ede');
|
|
48290
48321
|
|
|
48291
|
-
},{"./des/cbc":
|
|
48322
|
+
},{"./des/cbc":137,"./des/cipher":138,"./des/des":139,"./des/ede":140,"./des/utils":141}],137:[function(require,module,exports){
|
|
48292
48323
|
'use strict';
|
|
48293
48324
|
|
|
48294
48325
|
var assert = require('minimalistic-assert');
|
|
@@ -48355,7 +48386,7 @@ proto._update = function _update(inp, inOff, out, outOff) {
|
|
|
48355
48386
|
}
|
|
48356
48387
|
};
|
|
48357
48388
|
|
|
48358
|
-
},{"inherits":
|
|
48389
|
+
},{"inherits":210,"minimalistic-assert":265}],138:[function(require,module,exports){
|
|
48359
48390
|
'use strict';
|
|
48360
48391
|
|
|
48361
48392
|
var assert = require('minimalistic-assert');
|
|
@@ -48498,7 +48529,7 @@ Cipher.prototype._finalDecrypt = function _finalDecrypt() {
|
|
|
48498
48529
|
return this._unpad(out);
|
|
48499
48530
|
};
|
|
48500
48531
|
|
|
48501
|
-
},{"minimalistic-assert":
|
|
48532
|
+
},{"minimalistic-assert":265}],139:[function(require,module,exports){
|
|
48502
48533
|
'use strict';
|
|
48503
48534
|
|
|
48504
48535
|
var assert = require('minimalistic-assert');
|
|
@@ -48642,7 +48673,7 @@ DES.prototype._decrypt = function _decrypt(state, lStart, rStart, out, off) {
|
|
|
48642
48673
|
utils.rip(l, r, out, off);
|
|
48643
48674
|
};
|
|
48644
48675
|
|
|
48645
|
-
},{"./cipher":
|
|
48676
|
+
},{"./cipher":138,"./utils":141,"inherits":210,"minimalistic-assert":265}],140:[function(require,module,exports){
|
|
48646
48677
|
'use strict';
|
|
48647
48678
|
|
|
48648
48679
|
var assert = require('minimalistic-assert');
|
|
@@ -48698,7 +48729,7 @@ EDE.prototype._update = function _update(inp, inOff, out, outOff) {
|
|
|
48698
48729
|
EDE.prototype._pad = DES.prototype._pad;
|
|
48699
48730
|
EDE.prototype._unpad = DES.prototype._unpad;
|
|
48700
48731
|
|
|
48701
|
-
},{"./cipher":
|
|
48732
|
+
},{"./cipher":138,"./des":139,"inherits":210,"minimalistic-assert":265}],141:[function(require,module,exports){
|
|
48702
48733
|
'use strict';
|
|
48703
48734
|
|
|
48704
48735
|
exports.readUInt32BE = function readUInt32BE(bytes, off) {
|
|
@@ -48956,7 +48987,7 @@ exports.padSplit = function padSplit(num, size, group) {
|
|
|
48956
48987
|
return out.join(' ');
|
|
48957
48988
|
};
|
|
48958
48989
|
|
|
48959
|
-
},{}],
|
|
48990
|
+
},{}],142:[function(require,module,exports){
|
|
48960
48991
|
/*!
|
|
48961
48992
|
* destroy
|
|
48962
48993
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -49033,7 +49064,7 @@ function onOpenClose() {
|
|
|
49033
49064
|
}
|
|
49034
49065
|
}
|
|
49035
49066
|
|
|
49036
|
-
},{"fs":
|
|
49067
|
+
},{"fs":83,"stream":407}],143:[function(require,module,exports){
|
|
49037
49068
|
(function (Buffer){(function (){
|
|
49038
49069
|
var generatePrime = require('./lib/generatePrime')
|
|
49039
49070
|
var primes = require('./lib/primes.json')
|
|
@@ -49079,7 +49110,7 @@ exports.DiffieHellmanGroup = exports.createDiffieHellmanGroup = exports.getDiffi
|
|
|
49079
49110
|
exports.createDiffieHellman = exports.DiffieHellman = createDiffieHellman
|
|
49080
49111
|
|
|
49081
49112
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
49082
|
-
},{"./lib/dh":
|
|
49113
|
+
},{"./lib/dh":144,"./lib/generatePrime":145,"./lib/primes.json":146,"buffer":91}],144:[function(require,module,exports){
|
|
49083
49114
|
(function (Buffer){(function (){
|
|
49084
49115
|
var BN = require('bn.js');
|
|
49085
49116
|
var MillerRabin = require('miller-rabin');
|
|
@@ -49247,7 +49278,7 @@ function formatReturnValue(bn, enc) {
|
|
|
49247
49278
|
}
|
|
49248
49279
|
|
|
49249
49280
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
49250
|
-
},{"./generatePrime":
|
|
49281
|
+
},{"./generatePrime":145,"bn.js":147,"buffer":91,"miller-rabin":260,"randombytes":364}],145:[function(require,module,exports){
|
|
49251
49282
|
var randomBytes = require('randombytes');
|
|
49252
49283
|
module.exports = findPrime;
|
|
49253
49284
|
findPrime.simpleSieve = simpleSieve;
|
|
@@ -49354,7 +49385,7 @@ function findPrime(bits, gen) {
|
|
|
49354
49385
|
|
|
49355
49386
|
}
|
|
49356
49387
|
|
|
49357
|
-
},{"bn.js":
|
|
49388
|
+
},{"bn.js":147,"miller-rabin":260,"randombytes":364}],146:[function(require,module,exports){
|
|
49358
49389
|
module.exports={
|
|
49359
49390
|
"modp1": {
|
|
49360
49391
|
"gen": "02",
|
|
@@ -49389,9 +49420,9 @@ module.exports={
|
|
|
49389
49420
|
"prime": "ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff"
|
|
49390
49421
|
}
|
|
49391
49422
|
}
|
|
49392
|
-
},{}],
|
|
49393
|
-
arguments[4][
|
|
49394
|
-
},{"buffer":
|
|
49423
|
+
},{}],147:[function(require,module,exports){
|
|
49424
|
+
arguments[4][27][0].apply(exports,arguments)
|
|
49425
|
+
},{"buffer":55,"dup":27}],148:[function(require,module,exports){
|
|
49395
49426
|
/*!
|
|
49396
49427
|
* ee-first
|
|
49397
49428
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -49488,7 +49519,7 @@ function listener(event, done) {
|
|
|
49488
49519
|
}
|
|
49489
49520
|
}
|
|
49490
49521
|
|
|
49491
|
-
},{}],
|
|
49522
|
+
},{}],149:[function(require,module,exports){
|
|
49492
49523
|
'use strict';
|
|
49493
49524
|
|
|
49494
49525
|
var elliptic = exports;
|
|
@@ -49503,7 +49534,7 @@ elliptic.curves = require('./elliptic/curves');
|
|
|
49503
49534
|
elliptic.ec = require('./elliptic/ec');
|
|
49504
49535
|
elliptic.eddsa = require('./elliptic/eddsa');
|
|
49505
49536
|
|
|
49506
|
-
},{"../package.json":
|
|
49537
|
+
},{"../package.json":165,"./elliptic/curve":152,"./elliptic/curves":155,"./elliptic/ec":156,"./elliptic/eddsa":159,"./elliptic/utils":163,"brorand":54}],150:[function(require,module,exports){
|
|
49507
49538
|
'use strict';
|
|
49508
49539
|
|
|
49509
49540
|
var BN = require('bn.js');
|
|
@@ -49881,7 +49912,7 @@ BasePoint.prototype.dblp = function dblp(k) {
|
|
|
49881
49912
|
return r;
|
|
49882
49913
|
};
|
|
49883
49914
|
|
|
49884
|
-
},{"../utils":
|
|
49915
|
+
},{"../utils":163,"bn.js":164}],151:[function(require,module,exports){
|
|
49885
49916
|
'use strict';
|
|
49886
49917
|
|
|
49887
49918
|
var utils = require('../utils');
|
|
@@ -50315,7 +50346,7 @@ Point.prototype.eqXToP = function eqXToP(x) {
|
|
|
50315
50346
|
Point.prototype.toP = Point.prototype.normalize;
|
|
50316
50347
|
Point.prototype.mixedAdd = Point.prototype.add;
|
|
50317
50348
|
|
|
50318
|
-
},{"../utils":
|
|
50349
|
+
},{"../utils":163,"./base":150,"bn.js":164,"inherits":210}],152:[function(require,module,exports){
|
|
50319
50350
|
'use strict';
|
|
50320
50351
|
|
|
50321
50352
|
var curve = exports;
|
|
@@ -50325,7 +50356,7 @@ curve.short = require('./short');
|
|
|
50325
50356
|
curve.mont = require('./mont');
|
|
50326
50357
|
curve.edwards = require('./edwards');
|
|
50327
50358
|
|
|
50328
|
-
},{"./base":
|
|
50359
|
+
},{"./base":150,"./edwards":151,"./mont":153,"./short":154}],153:[function(require,module,exports){
|
|
50329
50360
|
'use strict';
|
|
50330
50361
|
|
|
50331
50362
|
var BN = require('bn.js');
|
|
@@ -50505,7 +50536,7 @@ Point.prototype.getX = function getX() {
|
|
|
50505
50536
|
return this.x.fromRed();
|
|
50506
50537
|
};
|
|
50507
50538
|
|
|
50508
|
-
},{"../utils":
|
|
50539
|
+
},{"../utils":163,"./base":150,"bn.js":164,"inherits":210}],154:[function(require,module,exports){
|
|
50509
50540
|
'use strict';
|
|
50510
50541
|
|
|
50511
50542
|
var utils = require('../utils');
|
|
@@ -51444,7 +51475,7 @@ JPoint.prototype.isInfinity = function isInfinity() {
|
|
|
51444
51475
|
return this.z.cmpn(0) === 0;
|
|
51445
51476
|
};
|
|
51446
51477
|
|
|
51447
|
-
},{"../utils":
|
|
51478
|
+
},{"../utils":163,"./base":150,"bn.js":164,"inherits":210}],155:[function(require,module,exports){
|
|
51448
51479
|
'use strict';
|
|
51449
51480
|
|
|
51450
51481
|
var curves = exports;
|
|
@@ -51652,7 +51683,7 @@ defineCurve('secp256k1', {
|
|
|
51652
51683
|
]
|
|
51653
51684
|
});
|
|
51654
51685
|
|
|
51655
|
-
},{"./curve":
|
|
51686
|
+
},{"./curve":152,"./precomputed/secp256k1":162,"./utils":163,"hash.js":183}],156:[function(require,module,exports){
|
|
51656
51687
|
'use strict';
|
|
51657
51688
|
|
|
51658
51689
|
var BN = require('bn.js');
|
|
@@ -51895,7 +51926,7 @@ EC.prototype.getKeyRecoveryParam = function(e, signature, Q, enc) {
|
|
|
51895
51926
|
throw new Error('Unable to find valid recovery factor');
|
|
51896
51927
|
};
|
|
51897
51928
|
|
|
51898
|
-
},{"../curves":
|
|
51929
|
+
},{"../curves":155,"../utils":163,"./key":157,"./signature":158,"bn.js":164,"brorand":54,"hmac-drbg":195}],157:[function(require,module,exports){
|
|
51899
51930
|
'use strict';
|
|
51900
51931
|
|
|
51901
51932
|
var BN = require('bn.js');
|
|
@@ -52015,7 +52046,7 @@ KeyPair.prototype.inspect = function inspect() {
|
|
|
52015
52046
|
' pub: ' + (this.pub && this.pub.inspect()) + ' >';
|
|
52016
52047
|
};
|
|
52017
52048
|
|
|
52018
|
-
},{"../utils":
|
|
52049
|
+
},{"../utils":163,"bn.js":164}],158:[function(require,module,exports){
|
|
52019
52050
|
'use strict';
|
|
52020
52051
|
|
|
52021
52052
|
var BN = require('bn.js');
|
|
@@ -52183,7 +52214,7 @@ Signature.prototype.toDER = function toDER(enc) {
|
|
|
52183
52214
|
return utils.encode(res, enc);
|
|
52184
52215
|
};
|
|
52185
52216
|
|
|
52186
|
-
},{"../utils":
|
|
52217
|
+
},{"../utils":163,"bn.js":164}],159:[function(require,module,exports){
|
|
52187
52218
|
'use strict';
|
|
52188
52219
|
|
|
52189
52220
|
var hash = require('hash.js');
|
|
@@ -52303,7 +52334,7 @@ EDDSA.prototype.isPoint = function isPoint(val) {
|
|
|
52303
52334
|
return val instanceof this.pointClass;
|
|
52304
52335
|
};
|
|
52305
52336
|
|
|
52306
|
-
},{"../curves":
|
|
52337
|
+
},{"../curves":155,"../utils":163,"./key":160,"./signature":161,"hash.js":183}],160:[function(require,module,exports){
|
|
52307
52338
|
'use strict';
|
|
52308
52339
|
|
|
52309
52340
|
var utils = require('../utils');
|
|
@@ -52400,7 +52431,7 @@ KeyPair.prototype.getPublic = function getPublic(enc) {
|
|
|
52400
52431
|
|
|
52401
52432
|
module.exports = KeyPair;
|
|
52402
52433
|
|
|
52403
|
-
},{"../utils":
|
|
52434
|
+
},{"../utils":163}],161:[function(require,module,exports){
|
|
52404
52435
|
'use strict';
|
|
52405
52436
|
|
|
52406
52437
|
var BN = require('bn.js');
|
|
@@ -52467,7 +52498,7 @@ Signature.prototype.toHex = function toHex() {
|
|
|
52467
52498
|
|
|
52468
52499
|
module.exports = Signature;
|
|
52469
52500
|
|
|
52470
|
-
},{"../utils":
|
|
52501
|
+
},{"../utils":163,"bn.js":164}],162:[function(require,module,exports){
|
|
52471
52502
|
module.exports = {
|
|
52472
52503
|
doubles: {
|
|
52473
52504
|
step: 4,
|
|
@@ -53249,7 +53280,7 @@ module.exports = {
|
|
|
53249
53280
|
}
|
|
53250
53281
|
};
|
|
53251
53282
|
|
|
53252
|
-
},{}],
|
|
53283
|
+
},{}],163:[function(require,module,exports){
|
|
53253
53284
|
'use strict';
|
|
53254
53285
|
|
|
53255
53286
|
var utils = exports;
|
|
@@ -53370,7 +53401,7 @@ function intFromLE(bytes) {
|
|
|
53370
53401
|
utils.intFromLE = intFromLE;
|
|
53371
53402
|
|
|
53372
53403
|
|
|
53373
|
-
},{"bn.js":
|
|
53404
|
+
},{"bn.js":164,"minimalistic-assert":265,"minimalistic-crypto-utils":266}],164:[function(require,module,exports){
|
|
53374
53405
|
(function (module, exports) {
|
|
53375
53406
|
'use strict';
|
|
53376
53407
|
|
|
@@ -56805,7 +56836,7 @@ utils.intFromLE = intFromLE;
|
|
|
56805
56836
|
};
|
|
56806
56837
|
})(typeof module === 'undefined' || module, this);
|
|
56807
56838
|
|
|
56808
|
-
},{"buffer":
|
|
56839
|
+
},{"buffer":55}],165:[function(require,module,exports){
|
|
56809
56840
|
module.exports={
|
|
56810
56841
|
"_from": "elliptic@^6.5.3",
|
|
56811
56842
|
"_id": "elliptic@6.5.3",
|
|
@@ -56894,7 +56925,7 @@ module.exports={
|
|
|
56894
56925
|
"version": "6.5.3"
|
|
56895
56926
|
}
|
|
56896
56927
|
|
|
56897
|
-
},{}],
|
|
56928
|
+
},{}],166:[function(require,module,exports){
|
|
56898
56929
|
/*!
|
|
56899
56930
|
* encodeurl
|
|
56900
56931
|
* Copyright(c) 2016 Douglas Christopher Wilson
|
|
@@ -56956,7 +56987,7 @@ function encodeUrl (url) {
|
|
|
56956
56987
|
.replace(ENCODE_CHARS_REGEXP, encodeURI)
|
|
56957
56988
|
}
|
|
56958
56989
|
|
|
56959
|
-
},{}],
|
|
56990
|
+
},{}],167:[function(require,module,exports){
|
|
56960
56991
|
'use strict'
|
|
56961
56992
|
|
|
56962
56993
|
var AbstractLevelDOWN = require('abstract-leveldown').AbstractLevelDOWN
|
|
@@ -57136,17 +57167,17 @@ Batch.prototype._write = function (opts, cb) {
|
|
|
57136
57167
|
this.batch.write(opts, cb)
|
|
57137
57168
|
}
|
|
57138
57169
|
|
|
57139
|
-
},{"abstract-leveldown":
|
|
57140
|
-
arguments[4][128][0].apply(exports,arguments)
|
|
57141
|
-
},{"./next-tick":171,"dup":128}],168:[function(require,module,exports){
|
|
57170
|
+
},{"abstract-leveldown":171,"inherits":210,"level-codec":241,"level-errors":243}],168:[function(require,module,exports){
|
|
57142
57171
|
arguments[4][129][0].apply(exports,arguments)
|
|
57143
|
-
},{"./next-tick":
|
|
57172
|
+
},{"./next-tick":172,"dup":129}],169:[function(require,module,exports){
|
|
57144
57173
|
arguments[4][130][0].apply(exports,arguments)
|
|
57145
|
-
},{"./
|
|
57146
|
-
arguments[4][
|
|
57147
|
-
},{"./abstract-chained-batch":
|
|
57148
|
-
arguments[4][
|
|
57149
|
-
},{"
|
|
57174
|
+
},{"./next-tick":172,"dup":130}],170:[function(require,module,exports){
|
|
57175
|
+
arguments[4][131][0].apply(exports,arguments)
|
|
57176
|
+
},{"./abstract-chained-batch":168,"./abstract-iterator":169,"./next-tick":172,"buffer":91,"dup":131,"level-supports":251,"xtend":458}],171:[function(require,module,exports){
|
|
57177
|
+
arguments[4][8][0].apply(exports,arguments)
|
|
57178
|
+
},{"./abstract-chained-batch":168,"./abstract-iterator":169,"./abstract-leveldown":170,"dup":8}],172:[function(require,module,exports){
|
|
57179
|
+
arguments[4][133][0].apply(exports,arguments)
|
|
57180
|
+
},{"dup":133,"immediate":204}],173:[function(require,module,exports){
|
|
57150
57181
|
'use strict';
|
|
57151
57182
|
|
|
57152
57183
|
function assign(obj, props) {
|
|
@@ -57195,7 +57226,7 @@ function createError(err, code, props) {
|
|
|
57195
57226
|
|
|
57196
57227
|
module.exports = createError;
|
|
57197
57228
|
|
|
57198
|
-
},{}],
|
|
57229
|
+
},{}],174:[function(require,module,exports){
|
|
57199
57230
|
var prr = require('prr')
|
|
57200
57231
|
|
|
57201
57232
|
function init (type, message, cause) {
|
|
@@ -57254,7 +57285,7 @@ module.exports = function (errno) {
|
|
|
57254
57285
|
}
|
|
57255
57286
|
}
|
|
57256
57287
|
|
|
57257
|
-
},{"prr":
|
|
57288
|
+
},{"prr":351}],175:[function(require,module,exports){
|
|
57258
57289
|
var all = module.exports.all = [
|
|
57259
57290
|
{
|
|
57260
57291
|
errno: -2,
|
|
@@ -57569,7 +57600,7 @@ all.forEach(function (error) {
|
|
|
57569
57600
|
module.exports.custom = require('./custom')(module.exports)
|
|
57570
57601
|
module.exports.create = module.exports.custom.createError
|
|
57571
57602
|
|
|
57572
|
-
},{"./custom":
|
|
57603
|
+
},{"./custom":174}],176:[function(require,module,exports){
|
|
57573
57604
|
var naiveFallback = function () {
|
|
57574
57605
|
if (typeof self === "object" && self) return self;
|
|
57575
57606
|
if (typeof window === "object" && window) return window;
|
|
@@ -57606,7 +57637,7 @@ module.exports = (function () {
|
|
|
57606
57637
|
}
|
|
57607
57638
|
})();
|
|
57608
57639
|
|
|
57609
|
-
},{}],
|
|
57640
|
+
},{}],177:[function(require,module,exports){
|
|
57610
57641
|
/*!
|
|
57611
57642
|
* escape-html
|
|
57612
57643
|
* Copyright(c) 2012-2013 TJ Holowaychuk
|
|
@@ -57686,7 +57717,7 @@ function escapeHtml(string) {
|
|
|
57686
57717
|
: html;
|
|
57687
57718
|
}
|
|
57688
57719
|
|
|
57689
|
-
},{}],
|
|
57720
|
+
},{}],178:[function(require,module,exports){
|
|
57690
57721
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
57691
57722
|
//
|
|
57692
57723
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -58211,7 +58242,7 @@ function functionBindPolyfill(context) {
|
|
|
58211
58242
|
};
|
|
58212
58243
|
}
|
|
58213
58244
|
|
|
58214
|
-
},{}],
|
|
58245
|
+
},{}],179:[function(require,module,exports){
|
|
58215
58246
|
var Buffer = require('safe-buffer').Buffer
|
|
58216
58247
|
var MD5 = require('md5.js')
|
|
58217
58248
|
|
|
@@ -58258,7 +58289,7 @@ function EVP_BytesToKey (password, salt, keyBits, ivLen) {
|
|
|
58258
58289
|
|
|
58259
58290
|
module.exports = EVP_BytesToKey
|
|
58260
58291
|
|
|
58261
|
-
},{"md5.js":
|
|
58292
|
+
},{"md5.js":258,"safe-buffer":383}],180:[function(require,module,exports){
|
|
58262
58293
|
/*!
|
|
58263
58294
|
* fresh
|
|
58264
58295
|
* Copyright(c) 2012 TJ Holowaychuk
|
|
@@ -58397,7 +58428,7 @@ function parseTokenList (str) {
|
|
|
58397
58428
|
return list
|
|
58398
58429
|
}
|
|
58399
58430
|
|
|
58400
|
-
},{}],
|
|
58431
|
+
},{}],181:[function(require,module,exports){
|
|
58401
58432
|
// originally pulled out of simple-peer
|
|
58402
58433
|
|
|
58403
58434
|
module.exports = function getBrowserRTC () {
|
|
@@ -58414,7 +58445,7 @@ module.exports = function getBrowserRTC () {
|
|
|
58414
58445
|
return wrtc
|
|
58415
58446
|
}
|
|
58416
58447
|
|
|
58417
|
-
},{}],
|
|
58448
|
+
},{}],182:[function(require,module,exports){
|
|
58418
58449
|
'use strict'
|
|
58419
58450
|
var Buffer = require('safe-buffer').Buffer
|
|
58420
58451
|
var Transform = require('readable-stream').Transform
|
|
@@ -58511,7 +58542,7 @@ HashBase.prototype._digest = function () {
|
|
|
58511
58542
|
|
|
58512
58543
|
module.exports = HashBase
|
|
58513
58544
|
|
|
58514
|
-
},{"inherits":
|
|
58545
|
+
},{"inherits":210,"readable-stream":380,"safe-buffer":383}],183:[function(require,module,exports){
|
|
58515
58546
|
var hash = exports;
|
|
58516
58547
|
|
|
58517
58548
|
hash.utils = require('./hash/utils');
|
|
@@ -58528,7 +58559,7 @@ hash.sha384 = hash.sha.sha384;
|
|
|
58528
58559
|
hash.sha512 = hash.sha.sha512;
|
|
58529
58560
|
hash.ripemd160 = hash.ripemd.ripemd160;
|
|
58530
58561
|
|
|
58531
|
-
},{"./hash/common":
|
|
58562
|
+
},{"./hash/common":184,"./hash/hmac":185,"./hash/ripemd":186,"./hash/sha":187,"./hash/utils":194}],184:[function(require,module,exports){
|
|
58532
58563
|
'use strict';
|
|
58533
58564
|
|
|
58534
58565
|
var utils = require('./utils');
|
|
@@ -58622,7 +58653,7 @@ BlockHash.prototype._pad = function pad() {
|
|
|
58622
58653
|
return res;
|
|
58623
58654
|
};
|
|
58624
58655
|
|
|
58625
|
-
},{"./utils":
|
|
58656
|
+
},{"./utils":194,"minimalistic-assert":265}],185:[function(require,module,exports){
|
|
58626
58657
|
'use strict';
|
|
58627
58658
|
|
|
58628
58659
|
var utils = require('./utils');
|
|
@@ -58671,7 +58702,7 @@ Hmac.prototype.digest = function digest(enc) {
|
|
|
58671
58702
|
return this.outer.digest(enc);
|
|
58672
58703
|
};
|
|
58673
58704
|
|
|
58674
|
-
},{"./utils":
|
|
58705
|
+
},{"./utils":194,"minimalistic-assert":265}],186:[function(require,module,exports){
|
|
58675
58706
|
'use strict';
|
|
58676
58707
|
|
|
58677
58708
|
var utils = require('./utils');
|
|
@@ -58819,7 +58850,7 @@ var sh = [
|
|
|
58819
58850
|
8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11
|
|
58820
58851
|
];
|
|
58821
58852
|
|
|
58822
|
-
},{"./common":
|
|
58853
|
+
},{"./common":184,"./utils":194}],187:[function(require,module,exports){
|
|
58823
58854
|
'use strict';
|
|
58824
58855
|
|
|
58825
58856
|
exports.sha1 = require('./sha/1');
|
|
@@ -58828,7 +58859,7 @@ exports.sha256 = require('./sha/256');
|
|
|
58828
58859
|
exports.sha384 = require('./sha/384');
|
|
58829
58860
|
exports.sha512 = require('./sha/512');
|
|
58830
58861
|
|
|
58831
|
-
},{"./sha/1":
|
|
58862
|
+
},{"./sha/1":188,"./sha/224":189,"./sha/256":190,"./sha/384":191,"./sha/512":192}],188:[function(require,module,exports){
|
|
58832
58863
|
'use strict';
|
|
58833
58864
|
|
|
58834
58865
|
var utils = require('../utils');
|
|
@@ -58904,7 +58935,7 @@ SHA1.prototype._digest = function digest(enc) {
|
|
|
58904
58935
|
return utils.split32(this.h, 'big');
|
|
58905
58936
|
};
|
|
58906
58937
|
|
|
58907
|
-
},{"../common":
|
|
58938
|
+
},{"../common":184,"../utils":194,"./common":193}],189:[function(require,module,exports){
|
|
58908
58939
|
'use strict';
|
|
58909
58940
|
|
|
58910
58941
|
var utils = require('../utils');
|
|
@@ -58936,7 +58967,7 @@ SHA224.prototype._digest = function digest(enc) {
|
|
|
58936
58967
|
};
|
|
58937
58968
|
|
|
58938
58969
|
|
|
58939
|
-
},{"../utils":
|
|
58970
|
+
},{"../utils":194,"./256":190}],190:[function(require,module,exports){
|
|
58940
58971
|
'use strict';
|
|
58941
58972
|
|
|
58942
58973
|
var utils = require('../utils');
|
|
@@ -59043,7 +59074,7 @@ SHA256.prototype._digest = function digest(enc) {
|
|
|
59043
59074
|
return utils.split32(this.h, 'big');
|
|
59044
59075
|
};
|
|
59045
59076
|
|
|
59046
|
-
},{"../common":
|
|
59077
|
+
},{"../common":184,"../utils":194,"./common":193,"minimalistic-assert":265}],191:[function(require,module,exports){
|
|
59047
59078
|
'use strict';
|
|
59048
59079
|
|
|
59049
59080
|
var utils = require('../utils');
|
|
@@ -59080,7 +59111,7 @@ SHA384.prototype._digest = function digest(enc) {
|
|
|
59080
59111
|
return utils.split32(this.h.slice(0, 12), 'big');
|
|
59081
59112
|
};
|
|
59082
59113
|
|
|
59083
|
-
},{"../utils":
|
|
59114
|
+
},{"../utils":194,"./512":192}],192:[function(require,module,exports){
|
|
59084
59115
|
'use strict';
|
|
59085
59116
|
|
|
59086
59117
|
var utils = require('../utils');
|
|
@@ -59412,7 +59443,7 @@ function g1_512_lo(xh, xl) {
|
|
|
59412
59443
|
return r;
|
|
59413
59444
|
}
|
|
59414
59445
|
|
|
59415
|
-
},{"../common":
|
|
59446
|
+
},{"../common":184,"../utils":194,"minimalistic-assert":265}],193:[function(require,module,exports){
|
|
59416
59447
|
'use strict';
|
|
59417
59448
|
|
|
59418
59449
|
var utils = require('../utils');
|
|
@@ -59463,7 +59494,7 @@ function g1_256(x) {
|
|
|
59463
59494
|
}
|
|
59464
59495
|
exports.g1_256 = g1_256;
|
|
59465
59496
|
|
|
59466
|
-
},{"../utils":
|
|
59497
|
+
},{"../utils":194}],194:[function(require,module,exports){
|
|
59467
59498
|
'use strict';
|
|
59468
59499
|
|
|
59469
59500
|
var assert = require('minimalistic-assert');
|
|
@@ -59743,7 +59774,7 @@ function shr64_lo(ah, al, num) {
|
|
|
59743
59774
|
}
|
|
59744
59775
|
exports.shr64_lo = shr64_lo;
|
|
59745
59776
|
|
|
59746
|
-
},{"inherits":
|
|
59777
|
+
},{"inherits":210,"minimalistic-assert":265}],195:[function(require,module,exports){
|
|
59747
59778
|
'use strict';
|
|
59748
59779
|
|
|
59749
59780
|
var hash = require('hash.js');
|
|
@@ -59858,7 +59889,7 @@ HmacDRBG.prototype.generate = function generate(len, enc, add, addEnc) {
|
|
|
59858
59889
|
return utils.encode(res, enc);
|
|
59859
59890
|
};
|
|
59860
59891
|
|
|
59861
|
-
},{"hash.js":
|
|
59892
|
+
},{"hash.js":183,"minimalistic-assert":265,"minimalistic-crypto-utils":266}],196:[function(require,module,exports){
|
|
59862
59893
|
var createError = require('http-errors')
|
|
59863
59894
|
var eql = require('deep-equal')
|
|
59864
59895
|
|
|
@@ -59897,9 +59928,9 @@ assert.notDeepEqual = function (a, b, status, msg, opts) {
|
|
|
59897
59928
|
assert(!eql(a, b), status, msg, opts)
|
|
59898
59929
|
}
|
|
59899
59930
|
|
|
59900
|
-
},{"deep-equal":
|
|
59901
|
-
arguments[4][
|
|
59902
|
-
},{"dup":
|
|
59931
|
+
},{"deep-equal":124,"http-errors":198}],197:[function(require,module,exports){
|
|
59932
|
+
arguments[4][135][0].apply(exports,arguments)
|
|
59933
|
+
},{"dup":135}],198:[function(require,module,exports){
|
|
59903
59934
|
/*!
|
|
59904
59935
|
* http-errors
|
|
59905
59936
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -60167,7 +60198,7 @@ function populateConstructorExports (exports, codes, HttpError) {
|
|
|
60167
60198
|
'"I\'mateapot"; use "ImATeapot" instead')
|
|
60168
60199
|
}
|
|
60169
60200
|
|
|
60170
|
-
},{"depd":
|
|
60201
|
+
},{"depd":197,"inherits":210,"setprototypeof":388,"statuses":406,"toidentifier":432}],199:[function(require,module,exports){
|
|
60171
60202
|
/*!
|
|
60172
60203
|
* http-errors
|
|
60173
60204
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -60468,9 +60499,9 @@ function toClassName (name) {
|
|
|
60468
60499
|
: name
|
|
60469
60500
|
}
|
|
60470
60501
|
|
|
60471
|
-
},{"depd":
|
|
60472
|
-
arguments[4][
|
|
60473
|
-
},{"dup":
|
|
60502
|
+
},{"depd":200,"inherits":210,"setprototypeof":201,"statuses":406,"toidentifier":432}],200:[function(require,module,exports){
|
|
60503
|
+
arguments[4][135][0].apply(exports,arguments)
|
|
60504
|
+
},{"dup":135}],201:[function(require,module,exports){
|
|
60474
60505
|
'use strict'
|
|
60475
60506
|
/* eslint no-proto: 0 */
|
|
60476
60507
|
module.exports = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array ? setProtoOf : mixinProperties)
|
|
@@ -60489,7 +60520,7 @@ function mixinProperties (obj, proto) {
|
|
|
60489
60520
|
return obj
|
|
60490
60521
|
}
|
|
60491
60522
|
|
|
60492
|
-
},{}],
|
|
60523
|
+
},{}],202:[function(require,module,exports){
|
|
60493
60524
|
var http = require('http')
|
|
60494
60525
|
var url = require('url')
|
|
60495
60526
|
|
|
@@ -60522,7 +60553,7 @@ function validateParams (params) {
|
|
|
60522
60553
|
return params
|
|
60523
60554
|
}
|
|
60524
60555
|
|
|
60525
|
-
},{"http":
|
|
60556
|
+
},{"http":423,"url":443}],203:[function(require,module,exports){
|
|
60526
60557
|
exports.read = function (buffer, offset, isLE, mLen, nBytes) {
|
|
60527
60558
|
var e, m
|
|
60528
60559
|
var eLen = (nBytes * 8) - mLen - 1
|
|
@@ -60608,7 +60639,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) {
|
|
|
60608
60639
|
buffer[offset + i - d] |= s * 128
|
|
60609
60640
|
}
|
|
60610
60641
|
|
|
60611
|
-
},{}],
|
|
60642
|
+
},{}],204:[function(require,module,exports){
|
|
60612
60643
|
'use strict';
|
|
60613
60644
|
var types = [
|
|
60614
60645
|
require('./nextTick'),
|
|
@@ -60706,7 +60737,7 @@ function immediate(task) {
|
|
|
60706
60737
|
}
|
|
60707
60738
|
}
|
|
60708
60739
|
|
|
60709
|
-
},{"./messageChannel":
|
|
60740
|
+
},{"./messageChannel":205,"./mutation.js":206,"./nextTick":207,"./stateChange":208,"./timeout":209}],205:[function(require,module,exports){
|
|
60710
60741
|
(function (global){(function (){
|
|
60711
60742
|
'use strict';
|
|
60712
60743
|
|
|
@@ -60727,7 +60758,7 @@ exports.install = function (func) {
|
|
|
60727
60758
|
};
|
|
60728
60759
|
};
|
|
60729
60760
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
60730
|
-
},{}],
|
|
60761
|
+
},{}],206:[function(require,module,exports){
|
|
60731
60762
|
(function (global){(function (){
|
|
60732
60763
|
'use strict';
|
|
60733
60764
|
//based off rsvp https://github.com/tildeio/rsvp.js
|
|
@@ -60752,7 +60783,7 @@ exports.install = function (handle) {
|
|
|
60752
60783
|
};
|
|
60753
60784
|
};
|
|
60754
60785
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
60755
|
-
},{}],
|
|
60786
|
+
},{}],207:[function(require,module,exports){
|
|
60756
60787
|
(function (process){(function (){
|
|
60757
60788
|
'use strict';
|
|
60758
60789
|
exports.test = function () {
|
|
@@ -60767,7 +60798,7 @@ exports.install = function (func) {
|
|
|
60767
60798
|
};
|
|
60768
60799
|
|
|
60769
60800
|
}).call(this)}).call(this,require('_process'))
|
|
60770
|
-
},{"_process":
|
|
60801
|
+
},{"_process":322}],208:[function(require,module,exports){
|
|
60771
60802
|
(function (global){(function (){
|
|
60772
60803
|
'use strict';
|
|
60773
60804
|
|
|
@@ -60794,7 +60825,7 @@ exports.install = function (handle) {
|
|
|
60794
60825
|
};
|
|
60795
60826
|
};
|
|
60796
60827
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
60797
|
-
},{}],
|
|
60828
|
+
},{}],209:[function(require,module,exports){
|
|
60798
60829
|
'use strict';
|
|
60799
60830
|
exports.test = function () {
|
|
60800
60831
|
return true;
|
|
@@ -60805,7 +60836,7 @@ exports.install = function (t) {
|
|
|
60805
60836
|
setTimeout(t, 0);
|
|
60806
60837
|
};
|
|
60807
60838
|
};
|
|
60808
|
-
},{}],
|
|
60839
|
+
},{}],210:[function(require,module,exports){
|
|
60809
60840
|
if (typeof Object.create === 'function') {
|
|
60810
60841
|
// implementation from standard node.js 'util' module
|
|
60811
60842
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -60834,7 +60865,7 @@ if (typeof Object.create === 'function') {
|
|
|
60834
60865
|
}
|
|
60835
60866
|
}
|
|
60836
60867
|
|
|
60837
|
-
},{}],
|
|
60868
|
+
},{}],211:[function(require,module,exports){
|
|
60838
60869
|
'use strict'
|
|
60839
60870
|
|
|
60840
60871
|
const { filter, sortAll, take, map } = require('./utils')
|
|
@@ -61011,7 +61042,7 @@ class InterfaceDatastoreAdapter {
|
|
|
61011
61042
|
|
|
61012
61043
|
module.exports = InterfaceDatastoreAdapter
|
|
61013
61044
|
|
|
61014
|
-
},{"./utils":
|
|
61045
|
+
},{"./utils":216,"it-drain":223}],212:[function(require,module,exports){
|
|
61015
61046
|
'use strict'
|
|
61016
61047
|
|
|
61017
61048
|
const errcode = require('err-code')
|
|
@@ -61041,7 +61072,7 @@ module.exports.abortedError = (err) => {
|
|
|
61041
61072
|
return errcode(err, 'ERR_ABORTED')
|
|
61042
61073
|
}
|
|
61043
61074
|
|
|
61044
|
-
},{"err-code":
|
|
61075
|
+
},{"err-code":173}],213:[function(require,module,exports){
|
|
61045
61076
|
'use strict'
|
|
61046
61077
|
|
|
61047
61078
|
const Key = require('./key')
|
|
@@ -61056,7 +61087,7 @@ exports.utils = utils
|
|
|
61056
61087
|
exports.Errors = Errors
|
|
61057
61088
|
exports.Adapter = Adapter
|
|
61058
61089
|
|
|
61059
|
-
},{"./adapter":
|
|
61090
|
+
},{"./adapter":211,"./errors":212,"./key":214,"./memory":215,"./utils":216}],214:[function(require,module,exports){
|
|
61060
61091
|
'use strict'
|
|
61061
61092
|
|
|
61062
61093
|
const { Buffer } = require('buffer')
|
|
@@ -61454,7 +61485,7 @@ const _Key = withIs(Key, { className: 'Key', symbolName: '@ipfs/interface-datast
|
|
|
61454
61485
|
|
|
61455
61486
|
module.exports = _Key
|
|
61456
61487
|
|
|
61457
|
-
},{"buffer":
|
|
61488
|
+
},{"buffer":91,"class-is":95,"nanoid":296}],215:[function(require,module,exports){
|
|
61458
61489
|
'use strict'
|
|
61459
61490
|
|
|
61460
61491
|
const Key = require('./key')
|
|
@@ -61496,7 +61527,7 @@ class MemoryDatastore extends Adapter {
|
|
|
61496
61527
|
|
|
61497
61528
|
module.exports = MemoryDatastore
|
|
61498
61529
|
|
|
61499
|
-
},{"./adapter":
|
|
61530
|
+
},{"./adapter":211,"./errors":212,"./key":214}],216:[function(require,module,exports){
|
|
61500
61531
|
'use strict'
|
|
61501
61532
|
|
|
61502
61533
|
const tempdir = require('ipfs-utils/src/temp-dir')
|
|
@@ -61549,7 +61580,7 @@ exports.replaceStartWith = function (s, r) {
|
|
|
61549
61580
|
|
|
61550
61581
|
exports.tmpdir = tempdir
|
|
61551
61582
|
|
|
61552
|
-
},{"ipfs-utils/src/temp-dir":
|
|
61583
|
+
},{"ipfs-utils/src/temp-dir":217}],217:[function(require,module,exports){
|
|
61553
61584
|
'use strict'
|
|
61554
61585
|
|
|
61555
61586
|
const fs = require('fs')
|
|
@@ -61570,7 +61601,7 @@ const tempdir = (transform = d => d) => {
|
|
|
61570
61601
|
|
|
61571
61602
|
module.exports = tempdir
|
|
61572
61603
|
|
|
61573
|
-
},{"fs":
|
|
61604
|
+
},{"fs":83,"nanoid":296,"os":306,"path":314}],218:[function(require,module,exports){
|
|
61574
61605
|
/*!
|
|
61575
61606
|
* Determine if an object is a Buffer
|
|
61576
61607
|
*
|
|
@@ -61593,7 +61624,7 @@ function isSlowBuffer (obj) {
|
|
|
61593
61624
|
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
|
|
61594
61625
|
}
|
|
61595
61626
|
|
|
61596
|
-
},{}],
|
|
61627
|
+
},{}],219:[function(require,module,exports){
|
|
61597
61628
|
'use strict';
|
|
61598
61629
|
|
|
61599
61630
|
var toStr = Object.prototype.toString;
|
|
@@ -61633,7 +61664,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
61633
61664
|
return getProto(fn) === GeneratorFunction;
|
|
61634
61665
|
};
|
|
61635
61666
|
|
|
61636
|
-
},{}],
|
|
61667
|
+
},{}],220:[function(require,module,exports){
|
|
61637
61668
|
'use strict'
|
|
61638
61669
|
|
|
61639
61670
|
var hexRegEx = /([0-9]|[a-f])/gim
|
|
@@ -61643,7 +61674,7 @@ module.exports = function (input) {
|
|
|
61643
61674
|
(input.match(hexRegEx) || []).length === input.length
|
|
61644
61675
|
}
|
|
61645
61676
|
|
|
61646
|
-
},{}],
|
|
61677
|
+
},{}],221:[function(require,module,exports){
|
|
61647
61678
|
module.exports = isTypedArray
|
|
61648
61679
|
isTypedArray.strict = isStrictTypedArray
|
|
61649
61680
|
isTypedArray.loose = isLooseTypedArray
|
|
@@ -61686,14 +61717,14 @@ function isLooseTypedArray(arr) {
|
|
|
61686
61717
|
return names[toString.call(arr)]
|
|
61687
61718
|
}
|
|
61688
61719
|
|
|
61689
|
-
},{}],
|
|
61720
|
+
},{}],222:[function(require,module,exports){
|
|
61690
61721
|
var toString = {}.toString;
|
|
61691
61722
|
|
|
61692
61723
|
module.exports = Array.isArray || function (arr) {
|
|
61693
61724
|
return toString.call(arr) == '[object Array]';
|
|
61694
61725
|
};
|
|
61695
61726
|
|
|
61696
|
-
},{}],
|
|
61727
|
+
},{}],223:[function(require,module,exports){
|
|
61697
61728
|
'use strict'
|
|
61698
61729
|
|
|
61699
61730
|
/**
|
|
@@ -61710,10 +61741,10 @@ const drain = async (source) => {
|
|
|
61710
61741
|
|
|
61711
61742
|
module.exports = drain
|
|
61712
61743
|
|
|
61713
|
-
},{}],
|
|
61744
|
+
},{}],224:[function(require,module,exports){
|
|
61714
61745
|
module.exports = require('./lib/api')(require('./lib/keccak'))
|
|
61715
61746
|
|
|
61716
|
-
},{"./lib/api":
|
|
61747
|
+
},{"./lib/api":225,"./lib/keccak":229}],225:[function(require,module,exports){
|
|
61717
61748
|
const createKeccak = require('./keccak')
|
|
61718
61749
|
const createShake = require('./shake')
|
|
61719
61750
|
|
|
@@ -61742,7 +61773,7 @@ module.exports = function (KeccakState) {
|
|
|
61742
61773
|
}
|
|
61743
61774
|
}
|
|
61744
61775
|
|
|
61745
|
-
},{"./keccak":
|
|
61776
|
+
},{"./keccak":226,"./shake":227}],226:[function(require,module,exports){
|
|
61746
61777
|
(function (Buffer){(function (){
|
|
61747
61778
|
const { Transform } = require('stream')
|
|
61748
61779
|
|
|
@@ -61823,7 +61854,7 @@ module.exports = (KeccakState) => class Keccak extends Transform {
|
|
|
61823
61854
|
}
|
|
61824
61855
|
|
|
61825
61856
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
61826
|
-
},{"buffer":
|
|
61857
|
+
},{"buffer":91,"stream":407}],227:[function(require,module,exports){
|
|
61827
61858
|
(function (Buffer){(function (){
|
|
61828
61859
|
const { Transform } = require('stream')
|
|
61829
61860
|
|
|
@@ -61895,7 +61926,7 @@ module.exports = (KeccakState) => class Shake extends Transform {
|
|
|
61895
61926
|
}
|
|
61896
61927
|
|
|
61897
61928
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
61898
|
-
},{"buffer":
|
|
61929
|
+
},{"buffer":91,"stream":407}],228:[function(require,module,exports){
|
|
61899
61930
|
const P1600_ROUND_CONSTANTS = [1, 0, 32898, 0, 32906, 2147483648, 2147516416, 2147483648, 32907, 0, 2147483649, 0, 2147516545, 2147483648, 32777, 2147483648, 138, 0, 136, 0, 2147516425, 0, 2147483658, 0, 2147516555, 0, 139, 2147483648, 32905, 2147483648, 32771, 2147483648, 32770, 2147483648, 128, 2147483648, 32778, 0, 2147483658, 2147483648, 2147516545, 2147483648, 32896, 2147483648, 2147483649, 0, 2147516424, 2147483648]
|
|
61900
61931
|
|
|
61901
61932
|
exports.p1600 = function (s) {
|
|
@@ -62083,7 +62114,7 @@ exports.p1600 = function (s) {
|
|
|
62083
62114
|
}
|
|
62084
62115
|
}
|
|
62085
62116
|
|
|
62086
|
-
},{}],
|
|
62117
|
+
},{}],229:[function(require,module,exports){
|
|
62087
62118
|
(function (Buffer){(function (){
|
|
62088
62119
|
const keccakState = require('./keccak-state-unroll')
|
|
62089
62120
|
|
|
@@ -62155,7 +62186,7 @@ Keccak.prototype.copy = function (dest) {
|
|
|
62155
62186
|
module.exports = Keccak
|
|
62156
62187
|
|
|
62157
62188
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
62158
|
-
},{"./keccak-state-unroll":
|
|
62189
|
+
},{"./keccak-state-unroll":228,"buffer":91}],230:[function(require,module,exports){
|
|
62159
62190
|
/*!
|
|
62160
62191
|
* keygrip
|
|
62161
62192
|
* Copyright(c) 2011-2014 Jed Schmidt
|
|
@@ -62208,7 +62239,7 @@ Keygrip.sign = Keygrip.verify = Keygrip.index = function() {
|
|
|
62208
62239
|
|
|
62209
62240
|
module.exports = Keygrip
|
|
62210
62241
|
|
|
62211
|
-
},{"crypto":
|
|
62242
|
+
},{"crypto":108,"tsscmp":433}],231:[function(require,module,exports){
|
|
62212
62243
|
'use strict'
|
|
62213
62244
|
|
|
62214
62245
|
/**
|
|
@@ -62258,7 +62289,7 @@ function compose (middleware) {
|
|
|
62258
62289
|
}
|
|
62259
62290
|
}
|
|
62260
62291
|
|
|
62261
|
-
},{}],
|
|
62292
|
+
},{}],232:[function(require,module,exports){
|
|
62262
62293
|
'use strict'
|
|
62263
62294
|
|
|
62264
62295
|
const co = require('co')
|
|
@@ -62320,7 +62351,7 @@ convert.back = function (mw) {
|
|
|
62320
62351
|
return converted
|
|
62321
62352
|
}
|
|
62322
62353
|
|
|
62323
|
-
},{"co":
|
|
62354
|
+
},{"co":96,"koa-compose":233}],233:[function(require,module,exports){
|
|
62324
62355
|
'use strict'
|
|
62325
62356
|
|
|
62326
62357
|
const Promise = require('any-promise')
|
|
@@ -62374,7 +62405,7 @@ function compose (middleware) {
|
|
|
62374
62405
|
}
|
|
62375
62406
|
}
|
|
62376
62407
|
|
|
62377
|
-
},{"any-promise":
|
|
62408
|
+
},{"any-promise":10}],234:[function(require,module,exports){
|
|
62378
62409
|
(function (process,Buffer){(function (){
|
|
62379
62410
|
|
|
62380
62411
|
'use strict';
|
|
@@ -62669,7 +62700,7 @@ function respond(ctx) {
|
|
|
62669
62700
|
module.exports.HttpError = HttpError;
|
|
62670
62701
|
|
|
62671
62702
|
}).call(this)}).call(this,require('_process'),require("buffer").Buffer)
|
|
62672
|
-
},{"./context":
|
|
62703
|
+
},{"./context":235,"./request":236,"./response":237,"_process":322,"buffer":91,"debug":238,"depd":135,"events":178,"http":423,"http-errors":199,"is-generator-function":219,"koa-compose":231,"koa-convert":232,"on-finished":304,"only":305,"statuses":406,"stream":407,"util":448}],235:[function(require,module,exports){
|
|
62673
62704
|
(function (Buffer){(function (){
|
|
62674
62705
|
|
|
62675
62706
|
'use strict';
|
|
@@ -62924,7 +62955,7 @@ delegate(proto, 'request')
|
|
|
62924
62955
|
.getter('ip');
|
|
62925
62956
|
|
|
62926
62957
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
62927
|
-
},{"buffer":
|
|
62958
|
+
},{"buffer":91,"cookies":100,"delegates":134,"http-assert":196,"http-errors":199,"statuses":406,"util":448}],236:[function(require,module,exports){
|
|
62928
62959
|
|
|
62929
62960
|
'use strict';
|
|
62930
62961
|
|
|
@@ -63652,7 +63683,7 @@ if (util.inspect.custom) {
|
|
|
63652
63683
|
module.exports[util.inspect.custom] = module.exports.inspect;
|
|
63653
63684
|
}
|
|
63654
63685
|
|
|
63655
|
-
},{"accepts":
|
|
63686
|
+
},{"accepts":9,"content-type":99,"fresh":180,"net":83,"only":305,"parseurl":313,"querystring":362,"type-is":434,"url":443,"util":448}],237:[function(require,module,exports){
|
|
63656
63687
|
(function (Buffer){(function (){
|
|
63657
63688
|
|
|
63658
63689
|
'use strict';
|
|
@@ -64242,7 +64273,7 @@ if (util.inspect.custom) {
|
|
|
64242
64273
|
}
|
|
64243
64274
|
|
|
64244
64275
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
64245
|
-
},{"assert":
|
|
64276
|
+
},{"assert":28,"buffer":91,"cache-content-type":93,"content-disposition":97,"destroy":142,"encodeurl":166,"escape-html":177,"on-finished":304,"only":305,"path":314,"statuses":406,"stream":407,"type-is":434,"util":448,"vary":453}],238:[function(require,module,exports){
|
|
64246
64277
|
(function (process){(function (){
|
|
64247
64278
|
/**
|
|
64248
64279
|
* This is the web browser implementation of `debug()`.
|
|
@@ -64441,7 +64472,7 @@ function localstorage() {
|
|
|
64441
64472
|
}
|
|
64442
64473
|
|
|
64443
64474
|
}).call(this)}).call(this,require('_process'))
|
|
64444
|
-
},{"./debug":
|
|
64475
|
+
},{"./debug":239,"_process":322}],239:[function(require,module,exports){
|
|
64445
64476
|
|
|
64446
64477
|
/**
|
|
64447
64478
|
* This is the common logic for both the Node.js and web browser
|
|
@@ -64668,7 +64699,7 @@ function coerce(val) {
|
|
|
64668
64699
|
return val;
|
|
64669
64700
|
}
|
|
64670
64701
|
|
|
64671
|
-
},{"ms":
|
|
64702
|
+
},{"ms":240}],240:[function(require,module,exports){
|
|
64672
64703
|
/**
|
|
64673
64704
|
* Helpers.
|
|
64674
64705
|
*/
|
|
@@ -64822,7 +64853,7 @@ function plural(ms, n, name) {
|
|
|
64822
64853
|
return Math.ceil(ms / n) + ' ' + name + 's';
|
|
64823
64854
|
}
|
|
64824
64855
|
|
|
64825
|
-
},{}],
|
|
64856
|
+
},{}],241:[function(require,module,exports){
|
|
64826
64857
|
var encodings = require('./lib/encodings')
|
|
64827
64858
|
|
|
64828
64859
|
module.exports = Codec
|
|
@@ -64931,7 +64962,7 @@ Codec.prototype.valueAsBuffer = function (opts) {
|
|
|
64931
64962
|
return this._valueEncoding(opts).buffer
|
|
64932
64963
|
}
|
|
64933
64964
|
|
|
64934
|
-
},{"./lib/encodings":
|
|
64965
|
+
},{"./lib/encodings":242}],242:[function(require,module,exports){
|
|
64935
64966
|
var Buffer = require('buffer').Buffer
|
|
64936
64967
|
|
|
64937
64968
|
exports.utf8 = exports['utf-8'] = {
|
|
@@ -64999,7 +65030,7 @@ function isBinary (data) {
|
|
|
64999
65030
|
return data === undefined || data === null || Buffer.isBuffer(data)
|
|
65000
65031
|
}
|
|
65001
65032
|
|
|
65002
|
-
},{"buffer":
|
|
65033
|
+
},{"buffer":91}],243:[function(require,module,exports){
|
|
65003
65034
|
var createError = require('errno').create
|
|
65004
65035
|
var LevelUPError = createError('LevelUPError')
|
|
65005
65036
|
var NotFoundError = createError('NotFoundError', LevelUPError)
|
|
@@ -65017,7 +65048,7 @@ module.exports = {
|
|
|
65017
65048
|
EncodingError: createError('EncodingError', LevelUPError)
|
|
65018
65049
|
}
|
|
65019
65050
|
|
|
65020
|
-
},{"errno":
|
|
65051
|
+
},{"errno":175}],244:[function(require,module,exports){
|
|
65021
65052
|
var inherits = require('inherits')
|
|
65022
65053
|
var Readable = require('readable-stream').Readable
|
|
65023
65054
|
var extend = require('xtend')
|
|
@@ -65063,7 +65094,7 @@ ReadStream.prototype._destroy = function (err, callback) {
|
|
|
65063
65094
|
})
|
|
65064
65095
|
}
|
|
65065
65096
|
|
|
65066
|
-
},{"inherits":
|
|
65097
|
+
},{"inherits":210,"readable-stream":380,"xtend":458}],245:[function(require,module,exports){
|
|
65067
65098
|
(function (Buffer){(function (){
|
|
65068
65099
|
/* global indexedDB */
|
|
65069
65100
|
|
|
@@ -65282,7 +65313,7 @@ Level.destroy = function (location, prefix, callback) {
|
|
|
65282
65313
|
}
|
|
65283
65314
|
|
|
65284
65315
|
}).call(this)}).call(this,{"isBuffer":require("../is-buffer/index.js")})
|
|
65285
|
-
},{"../is-buffer/index.js":
|
|
65316
|
+
},{"../is-buffer/index.js":218,"./iterator":246,"./util/immediate":247,"./util/mixed-to-buffer":248,"./util/support":249,"abstract-leveldown":8,"inherits":210}],246:[function(require,module,exports){
|
|
65286
65317
|
/* global IDBKeyRange */
|
|
65287
65318
|
|
|
65288
65319
|
'use strict'
|
|
@@ -65443,9 +65474,9 @@ Iterator.prototype._end = function (callback) {
|
|
|
65443
65474
|
this.onComplete = callback
|
|
65444
65475
|
}
|
|
65445
65476
|
|
|
65446
|
-
},{"./util/immediate":
|
|
65447
|
-
arguments[4][
|
|
65448
|
-
},{"dup":
|
|
65477
|
+
},{"./util/immediate":247,"./util/mixed-to-buffer":248,"abstract-leveldown":8,"inherits":210,"ltgt":257}],247:[function(require,module,exports){
|
|
65478
|
+
arguments[4][133][0].apply(exports,arguments)
|
|
65479
|
+
},{"dup":133,"immediate":204}],248:[function(require,module,exports){
|
|
65449
65480
|
(function (Buffer){(function (){
|
|
65450
65481
|
'use strict'
|
|
65451
65482
|
|
|
@@ -65458,7 +65489,7 @@ module.exports = function (value) {
|
|
|
65458
65489
|
}
|
|
65459
65490
|
|
|
65460
65491
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
65461
|
-
},{"buffer":
|
|
65492
|
+
},{"buffer":91,"typedarray-to-buffer":435}],249:[function(require,module,exports){
|
|
65462
65493
|
'use strict'
|
|
65463
65494
|
|
|
65464
65495
|
exports.test = function (key) {
|
|
@@ -65475,7 +65506,7 @@ exports.test = function (key) {
|
|
|
65475
65506
|
exports.binaryKeys = exports.test(new Uint8Array(0))
|
|
65476
65507
|
exports.arrayKeys = exports.test([1])
|
|
65477
65508
|
|
|
65478
|
-
},{}],
|
|
65509
|
+
},{}],250:[function(require,module,exports){
|
|
65479
65510
|
var levelup = require('levelup')
|
|
65480
65511
|
var encode = require('encoding-down')
|
|
65481
65512
|
|
|
@@ -65513,7 +65544,7 @@ function packager (leveldown) {
|
|
|
65513
65544
|
|
|
65514
65545
|
module.exports = packager
|
|
65515
65546
|
|
|
65516
|
-
},{"encoding-down":
|
|
65547
|
+
},{"encoding-down":167,"levelup":255}],251:[function(require,module,exports){
|
|
65517
65548
|
'use strict'
|
|
65518
65549
|
|
|
65519
65550
|
// For (old) browser support
|
|
@@ -65550,10 +65581,10 @@ module.exports = function supports () {
|
|
|
65550
65581
|
})
|
|
65551
65582
|
}
|
|
65552
65583
|
|
|
65553
|
-
},{"xtend":
|
|
65584
|
+
},{"xtend":458,"xtend/mutable":459}],252:[function(require,module,exports){
|
|
65554
65585
|
module.exports = require('level-packager')(require('level-js'))
|
|
65555
65586
|
|
|
65556
|
-
},{"level-js":
|
|
65587
|
+
},{"level-js":245,"level-packager":250}],253:[function(require,module,exports){
|
|
65557
65588
|
var WriteError = require('level-errors').WriteError
|
|
65558
65589
|
var promisify = require('./promisify')
|
|
65559
65590
|
var getCallback = require('./common').getCallback
|
|
@@ -65635,7 +65666,7 @@ Batch.prototype.write = function (options, callback) {
|
|
|
65635
65666
|
|
|
65636
65667
|
module.exports = Batch
|
|
65637
65668
|
|
|
65638
|
-
},{"./common":
|
|
65669
|
+
},{"./common":254,"./promisify":256,"level-errors":243}],254:[function(require,module,exports){
|
|
65639
65670
|
exports.getCallback = function (options, callback) {
|
|
65640
65671
|
return typeof options === 'function' ? options : callback
|
|
65641
65672
|
}
|
|
@@ -65644,7 +65675,7 @@ exports.getOptions = function (options) {
|
|
|
65644
65675
|
return typeof options === 'object' && options !== null ? options : {}
|
|
65645
65676
|
}
|
|
65646
65677
|
|
|
65647
|
-
},{}],
|
|
65678
|
+
},{}],255:[function(require,module,exports){
|
|
65648
65679
|
(function (process){(function (){
|
|
65649
65680
|
var EventEmitter = require('events').EventEmitter
|
|
65650
65681
|
var inherits = require('util').inherits
|
|
@@ -65993,7 +66024,7 @@ LevelUP.errors = errors
|
|
|
65993
66024
|
module.exports = LevelUP.default = LevelUP
|
|
65994
66025
|
|
|
65995
66026
|
}).call(this)}).call(this,require('_process'))
|
|
65996
|
-
},{"./batch":
|
|
66027
|
+
},{"./batch":253,"./common":254,"./promisify":256,"_process":322,"assert":28,"deferred-leveldown":128,"events":178,"level-errors":243,"level-iterator-stream":244,"level-supports":251,"util":448,"xtend":458}],256:[function(require,module,exports){
|
|
65997
66028
|
function promisify () {
|
|
65998
66029
|
var callback
|
|
65999
66030
|
var promise = new Promise(function (resolve, reject) {
|
|
@@ -66008,7 +66039,7 @@ function promisify () {
|
|
|
66008
66039
|
|
|
66009
66040
|
module.exports = promisify
|
|
66010
66041
|
|
|
66011
|
-
},{}],
|
|
66042
|
+
},{}],257:[function(require,module,exports){
|
|
66012
66043
|
(function (Buffer){(function (){
|
|
66013
66044
|
|
|
66014
66045
|
exports.compare = function (a, b) {
|
|
@@ -66177,7 +66208,7 @@ exports.filter = function (range, compare) {
|
|
|
66177
66208
|
|
|
66178
66209
|
|
|
66179
66210
|
}).call(this)}).call(this,{"isBuffer":require("../is-buffer/index.js")})
|
|
66180
|
-
},{"../is-buffer/index.js":
|
|
66211
|
+
},{"../is-buffer/index.js":218}],258:[function(require,module,exports){
|
|
66181
66212
|
'use strict'
|
|
66182
66213
|
var inherits = require('inherits')
|
|
66183
66214
|
var HashBase = require('hash-base')
|
|
@@ -66325,7 +66356,7 @@ function fnI (a, b, c, d, m, k, s) {
|
|
|
66325
66356
|
|
|
66326
66357
|
module.exports = MD5
|
|
66327
66358
|
|
|
66328
|
-
},{"hash-base":
|
|
66359
|
+
},{"hash-base":182,"inherits":210,"safe-buffer":383}],259:[function(require,module,exports){
|
|
66329
66360
|
/*!
|
|
66330
66361
|
* media-typer
|
|
66331
66362
|
* Copyright(c) 2014 Douglas Christopher Wilson
|
|
@@ -66597,7 +66628,7 @@ function splitType(string) {
|
|
|
66597
66628
|
return obj
|
|
66598
66629
|
}
|
|
66599
66630
|
|
|
66600
|
-
},{}],
|
|
66631
|
+
},{}],260:[function(require,module,exports){
|
|
66601
66632
|
var bn = require('bn.js');
|
|
66602
66633
|
var brorand = require('brorand');
|
|
66603
66634
|
|
|
@@ -66714,9 +66745,9 @@ MillerRabin.prototype.getDivisor = function getDivisor(n, k) {
|
|
|
66714
66745
|
return false;
|
|
66715
66746
|
};
|
|
66716
66747
|
|
|
66717
|
-
},{"bn.js":
|
|
66718
|
-
arguments[4][
|
|
66719
|
-
},{"buffer":
|
|
66748
|
+
},{"bn.js":261,"brorand":54}],261:[function(require,module,exports){
|
|
66749
|
+
arguments[4][27][0].apply(exports,arguments)
|
|
66750
|
+
},{"buffer":55,"dup":27}],262:[function(require,module,exports){
|
|
66720
66751
|
module.exports={
|
|
66721
66752
|
"application/1d-interleaved-parityfec": {
|
|
66722
66753
|
"source": "iana"
|
|
@@ -74894,7 +74925,7 @@ module.exports={
|
|
|
74894
74925
|
}
|
|
74895
74926
|
}
|
|
74896
74927
|
|
|
74897
|
-
},{}],
|
|
74928
|
+
},{}],263:[function(require,module,exports){
|
|
74898
74929
|
/*!
|
|
74899
74930
|
* mime-db
|
|
74900
74931
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -74907,7 +74938,7 @@ module.exports={
|
|
|
74907
74938
|
|
|
74908
74939
|
module.exports = require('./db.json')
|
|
74909
74940
|
|
|
74910
|
-
},{"./db.json":
|
|
74941
|
+
},{"./db.json":262}],264:[function(require,module,exports){
|
|
74911
74942
|
/*!
|
|
74912
74943
|
* mime-types
|
|
74913
74944
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -75097,7 +75128,7 @@ function populateMaps (extensions, types) {
|
|
|
75097
75128
|
})
|
|
75098
75129
|
}
|
|
75099
75130
|
|
|
75100
|
-
},{"mime-db":
|
|
75131
|
+
},{"mime-db":263,"path":314}],265:[function(require,module,exports){
|
|
75101
75132
|
module.exports = assert;
|
|
75102
75133
|
|
|
75103
75134
|
function assert(val, msg) {
|
|
@@ -75110,7 +75141,7 @@ assert.equal = function assertEqual(l, r, msg) {
|
|
|
75110
75141
|
throw new Error(msg || ('Assertion failed: ' + l + ' != ' + r));
|
|
75111
75142
|
};
|
|
75112
75143
|
|
|
75113
|
-
},{}],
|
|
75144
|
+
},{}],266:[function(require,module,exports){
|
|
75114
75145
|
'use strict';
|
|
75115
75146
|
|
|
75116
75147
|
var utils = exports;
|
|
@@ -75170,7 +75201,7 @@ utils.encode = function encode(arr, enc) {
|
|
|
75170
75201
|
return arr;
|
|
75171
75202
|
};
|
|
75172
75203
|
|
|
75173
|
-
},{}],
|
|
75204
|
+
},{}],267:[function(require,module,exports){
|
|
75174
75205
|
/**
|
|
75175
75206
|
* Helpers.
|
|
75176
75207
|
*/
|
|
@@ -75334,12 +75365,12 @@ function plural(ms, msAbs, n, name) {
|
|
|
75334
75365
|
return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : '');
|
|
75335
75366
|
}
|
|
75336
75367
|
|
|
75337
|
-
},{}],
|
|
75368
|
+
},{}],268:[function(require,module,exports){
|
|
75338
75369
|
(function (Buffer){(function (){
|
|
75339
75370
|
"use strict";function _interopDefault(e){return e&&"object"==typeof e&&"default"in e?e.default:e}var bs58=require("bs58"),bs32=_interopDefault(require("bs32")),ecc=_interopDefault(require("tiny-secp256k1")),varint=_interopDefault(require("varint"));class MultiSignature{constructor(e,t){if(void 0===e)throw ReferenceError("version undefined");if(void 0===t)throw ReferenceError("multicodec undefined");this.multiCodec=t,this.version=e}set multiSignature(e){this._multiSignature=e}get signature(){return this.decoded.signature}get multiSignature(){return this._multiSignature||this.encoded||this.encode(this.signature)}export(){return bs58.encode(this.multiSignature)}import(e){return bs58.decode(this.decode(e))}sign(e,t){if(!e||!t)throw ReferenceError(`${e?"privateKey":"hash"} undefined`);const r=ecc.sign(e,t);return this.decoded={version:this.version,multiCodec:this.multiCodec,signature:r},this.encode(r)}verifySignature(e,t,r){return ecc.verify(t,r,e)}verify(e,t,r){return e=this.decode(e),ecc.verify(t,r,e.signature)}encode(e){if(!(e=e||this.signature))throw ReferenceError("signature undefined");return this.multiSignature=Buffer.concat([Buffer.from(varint.encode(this.version)),Buffer.from(varint.encode(this.multiCodec)),e]),this.multiSignature}decode(e){if(e&&(this.multiSignature=e),!this.multiSignature)throw ReferenceError("multiSignature undefined");let t=this.multiSignature;const r=varint.decode(t);t=t.slice(varint.decode.bytes);const i=varint.decode(t),n=t.slice(varint.decode.bytes);if(r!==this.version)throw TypeError("Invalid version");if(this.multiCodec!==i)throw TypeError("Invalid multiCodec");return this.decoded={version:r,multiCodec:i,signature:n},this.decoded}toHex(){return this.multiSignature.toString("hex")}fromHex(e){return bs58.decode(Buffer.from(e,"hex"))}toBs58(){return bs58.encode(this.multiSignature)}fromBs58(e){return bs58.decode(e)}toBs32(){return bs32.encode(this.multiSignature)}fromBs32(e){return bs32.decode(e)}}module.exports=MultiSignature;
|
|
75340
75371
|
|
|
75341
75372
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
75342
|
-
},{"bs32":
|
|
75373
|
+
},{"bs32":85,"bs58":86,"buffer":91,"tiny-secp256k1":429,"varint":271}],269:[function(require,module,exports){
|
|
75343
75374
|
module.exports = read
|
|
75344
75375
|
|
|
75345
75376
|
var MSB = 0x80
|
|
@@ -75370,7 +75401,7 @@ function read(buf, offset) {
|
|
|
75370
75401
|
return res
|
|
75371
75402
|
}
|
|
75372
75403
|
|
|
75373
|
-
},{}],
|
|
75404
|
+
},{}],270:[function(require,module,exports){
|
|
75374
75405
|
module.exports = encode
|
|
75375
75406
|
|
|
75376
75407
|
var MSB = 0x80
|
|
@@ -75398,14 +75429,14 @@ function encode(num, out, offset) {
|
|
|
75398
75429
|
return out
|
|
75399
75430
|
}
|
|
75400
75431
|
|
|
75401
|
-
},{}],
|
|
75432
|
+
},{}],271:[function(require,module,exports){
|
|
75402
75433
|
module.exports = {
|
|
75403
75434
|
encode: require('./encode.js')
|
|
75404
75435
|
, decode: require('./decode.js')
|
|
75405
75436
|
, encodingLength: require('./length.js')
|
|
75406
75437
|
}
|
|
75407
75438
|
|
|
75408
|
-
},{"./decode.js":
|
|
75439
|
+
},{"./decode.js":269,"./encode.js":270,"./length.js":272}],272:[function(require,module,exports){
|
|
75409
75440
|
|
|
75410
75441
|
var N1 = Math.pow(2, 7)
|
|
75411
75442
|
var N2 = Math.pow(2, 14)
|
|
@@ -75432,7 +75463,7 @@ module.exports = function (value) {
|
|
|
75432
75463
|
)
|
|
75433
75464
|
}
|
|
75434
75465
|
|
|
75435
|
-
},{}],
|
|
75466
|
+
},{}],273:[function(require,module,exports){
|
|
75436
75467
|
'use strict';
|
|
75437
75468
|
|
|
75438
75469
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75601,7 +75632,7 @@ exports.baseX = baseX;
|
|
|
75601
75632
|
exports.from = from;
|
|
75602
75633
|
exports.rfc4648 = rfc4648;
|
|
75603
75634
|
|
|
75604
|
-
},{"../../vendor/base-x.js":
|
|
75635
|
+
},{"../../vendor/base-x.js":294,"../bytes.js":284}],274:[function(require,module,exports){
|
|
75605
75636
|
'use strict';
|
|
75606
75637
|
|
|
75607
75638
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75616,7 +75647,7 @@ const base10 = base.baseX({
|
|
|
75616
75647
|
|
|
75617
75648
|
exports.base10 = base10;
|
|
75618
75649
|
|
|
75619
|
-
},{"./base.js":
|
|
75650
|
+
},{"./base.js":273}],275:[function(require,module,exports){
|
|
75620
75651
|
'use strict';
|
|
75621
75652
|
|
|
75622
75653
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75639,7 +75670,7 @@ const base16upper = base.rfc4648({
|
|
|
75639
75670
|
exports.base16 = base16;
|
|
75640
75671
|
exports.base16upper = base16upper;
|
|
75641
75672
|
|
|
75642
|
-
},{"./base.js":
|
|
75673
|
+
},{"./base.js":273}],276:[function(require,module,exports){
|
|
75643
75674
|
'use strict';
|
|
75644
75675
|
|
|
75645
75676
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75655,7 +75686,7 @@ const base2 = base.rfc4648({
|
|
|
75655
75686
|
|
|
75656
75687
|
exports.base2 = base2;
|
|
75657
75688
|
|
|
75658
|
-
},{"./base.js":
|
|
75689
|
+
},{"./base.js":273}],277:[function(require,module,exports){
|
|
75659
75690
|
'use strict';
|
|
75660
75691
|
|
|
75661
75692
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75727,7 +75758,7 @@ exports.base32padupper = base32padupper;
|
|
|
75727
75758
|
exports.base32upper = base32upper;
|
|
75728
75759
|
exports.base32z = base32z;
|
|
75729
75760
|
|
|
75730
|
-
},{"./base.js":
|
|
75761
|
+
},{"./base.js":273}],278:[function(require,module,exports){
|
|
75731
75762
|
'use strict';
|
|
75732
75763
|
|
|
75733
75764
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75748,7 +75779,7 @@ const base36upper = base.baseX({
|
|
|
75748
75779
|
exports.base36 = base36;
|
|
75749
75780
|
exports.base36upper = base36upper;
|
|
75750
75781
|
|
|
75751
|
-
},{"./base.js":
|
|
75782
|
+
},{"./base.js":273}],279:[function(require,module,exports){
|
|
75752
75783
|
'use strict';
|
|
75753
75784
|
|
|
75754
75785
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75769,7 +75800,7 @@ const base58flickr = base.baseX({
|
|
|
75769
75800
|
exports.base58btc = base58btc;
|
|
75770
75801
|
exports.base58flickr = base58flickr;
|
|
75771
75802
|
|
|
75772
|
-
},{"./base.js":
|
|
75803
|
+
},{"./base.js":273}],280:[function(require,module,exports){
|
|
75773
75804
|
'use strict';
|
|
75774
75805
|
|
|
75775
75806
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75806,7 +75837,7 @@ exports.base64pad = base64pad;
|
|
|
75806
75837
|
exports.base64url = base64url;
|
|
75807
75838
|
exports.base64urlpad = base64urlpad;
|
|
75808
75839
|
|
|
75809
|
-
},{"./base.js":
|
|
75840
|
+
},{"./base.js":273}],281:[function(require,module,exports){
|
|
75810
75841
|
'use strict';
|
|
75811
75842
|
|
|
75812
75843
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75822,7 +75853,7 @@ const base8 = base.rfc4648({
|
|
|
75822
75853
|
|
|
75823
75854
|
exports.base8 = base8;
|
|
75824
75855
|
|
|
75825
|
-
},{"./base.js":
|
|
75856
|
+
},{"./base.js":273}],282:[function(require,module,exports){
|
|
75826
75857
|
'use strict';
|
|
75827
75858
|
|
|
75828
75859
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75839,7 +75870,7 @@ const identity = base.from({
|
|
|
75839
75870
|
|
|
75840
75871
|
exports.identity = identity;
|
|
75841
75872
|
|
|
75842
|
-
},{"../bytes.js":
|
|
75873
|
+
},{"../bytes.js":284,"./base.js":273}],283:[function(require,module,exports){
|
|
75843
75874
|
'use strict';
|
|
75844
75875
|
|
|
75845
75876
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75893,7 +75924,7 @@ exports.bases = bases;
|
|
|
75893
75924
|
exports.codecs = codecs;
|
|
75894
75925
|
exports.hashes = hashes;
|
|
75895
75926
|
|
|
75896
|
-
},{"./bases/base10.js":
|
|
75927
|
+
},{"./bases/base10.js":274,"./bases/base16.js":275,"./bases/base2.js":276,"./bases/base32.js":277,"./bases/base36.js":278,"./bases/base58.js":279,"./bases/base64.js":280,"./bases/base8.js":281,"./bases/identity.js":282,"./bytes.js":284,"./cid.js":285,"./codecs/json.js":286,"./codecs/raw.js":287,"./hashes/digest.js":288,"./hashes/hasher.js":289,"./hashes/identity.js":290,"./hashes/sha2.js":291,"./index.js":292,"./varint.js":293}],284:[function(require,module,exports){
|
|
75897
75928
|
'use strict';
|
|
75898
75929
|
|
|
75899
75930
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75940,7 +75971,7 @@ exports.isBinary = isBinary;
|
|
|
75940
75971
|
exports.toHex = toHex;
|
|
75941
75972
|
exports.toString = toString;
|
|
75942
75973
|
|
|
75943
|
-
},{}],
|
|
75974
|
+
},{}],285:[function(require,module,exports){
|
|
75944
75975
|
'use strict';
|
|
75945
75976
|
|
|
75946
75977
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76257,7 +76288,7 @@ if (cid) {
|
|
|
76257
76288
|
|
|
76258
76289
|
exports.CID = CID;
|
|
76259
76290
|
|
|
76260
|
-
},{"./bases/base32.js":
|
|
76291
|
+
},{"./bases/base32.js":277,"./bases/base58.js":279,"./bytes.js":284,"./hashes/digest.js":288,"./varint.js":293}],286:[function(require,module,exports){
|
|
76261
76292
|
'use strict';
|
|
76262
76293
|
|
|
76263
76294
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76274,7 +76305,7 @@ exports.decode = decode;
|
|
|
76274
76305
|
exports.encode = encode;
|
|
76275
76306
|
exports.name = name;
|
|
76276
76307
|
|
|
76277
|
-
},{}],
|
|
76308
|
+
},{}],287:[function(require,module,exports){
|
|
76278
76309
|
'use strict';
|
|
76279
76310
|
|
|
76280
76311
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76294,7 +76325,7 @@ exports.decode = decode;
|
|
|
76294
76325
|
exports.encode = encode;
|
|
76295
76326
|
exports.name = name;
|
|
76296
76327
|
|
|
76297
|
-
},{"../bytes.js":
|
|
76328
|
+
},{"../bytes.js":284}],288:[function(require,module,exports){
|
|
76298
76329
|
'use strict';
|
|
76299
76330
|
|
|
76300
76331
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76343,7 +76374,7 @@ exports.create = create;
|
|
|
76343
76374
|
exports.decode = decode;
|
|
76344
76375
|
exports.equals = equals;
|
|
76345
76376
|
|
|
76346
|
-
},{"../bytes.js":
|
|
76377
|
+
},{"../bytes.js":284,"../varint.js":293}],289:[function(require,module,exports){
|
|
76347
76378
|
'use strict';
|
|
76348
76379
|
|
|
76349
76380
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76370,7 +76401,7 @@ class Hasher {
|
|
|
76370
76401
|
exports.Hasher = Hasher;
|
|
76371
76402
|
exports.from = from;
|
|
76372
76403
|
|
|
76373
|
-
},{"./digest.js":
|
|
76404
|
+
},{"./digest.js":288}],290:[function(require,module,exports){
|
|
76374
76405
|
'use strict';
|
|
76375
76406
|
|
|
76376
76407
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76386,7 +76417,7 @@ const identity = hasher.from({
|
|
|
76386
76417
|
|
|
76387
76418
|
exports.identity = identity;
|
|
76388
76419
|
|
|
76389
|
-
},{"../bytes.js":
|
|
76420
|
+
},{"../bytes.js":284,"./hasher.js":289}],291:[function(require,module,exports){
|
|
76390
76421
|
'use strict';
|
|
76391
76422
|
|
|
76392
76423
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76408,7 +76439,7 @@ const sha512 = hasher.from({
|
|
|
76408
76439
|
exports.sha256 = sha256;
|
|
76409
76440
|
exports.sha512 = sha512;
|
|
76410
76441
|
|
|
76411
|
-
},{"./hasher.js":
|
|
76442
|
+
},{"./hasher.js":289}],292:[function(require,module,exports){
|
|
76412
76443
|
'use strict';
|
|
76413
76444
|
|
|
76414
76445
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76427,7 +76458,7 @@ exports.bytes = bytes;
|
|
|
76427
76458
|
exports.hasher = hasher;
|
|
76428
76459
|
exports.digest = digest;
|
|
76429
76460
|
|
|
76430
|
-
},{"./bytes.js":
|
|
76461
|
+
},{"./bytes.js":284,"./cid.js":285,"./hashes/digest.js":288,"./hashes/hasher.js":289,"./varint.js":293}],293:[function(require,module,exports){
|
|
76431
76462
|
'use strict';
|
|
76432
76463
|
|
|
76433
76464
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76453,7 +76484,7 @@ exports.decode = decode;
|
|
|
76453
76484
|
exports.encodeTo = encodeTo;
|
|
76454
76485
|
exports.encodingLength = encodingLength;
|
|
76455
76486
|
|
|
76456
|
-
},{"../vendor/varint.js":
|
|
76487
|
+
},{"../vendor/varint.js":295}],294:[function(require,module,exports){
|
|
76457
76488
|
'use strict';
|
|
76458
76489
|
|
|
76459
76490
|
function base(ALPHABET, name) {
|
|
@@ -76591,7 +76622,7 @@ var _brrp__multiformats_scope_baseX = src;
|
|
|
76591
76622
|
|
|
76592
76623
|
module.exports = _brrp__multiformats_scope_baseX;
|
|
76593
76624
|
|
|
76594
|
-
},{}],
|
|
76625
|
+
},{}],295:[function(require,module,exports){
|
|
76595
76626
|
'use strict';
|
|
76596
76627
|
|
|
76597
76628
|
var encode_1 = encode;
|
|
@@ -76649,7 +76680,7 @@ var _brrp_varint = varint;
|
|
|
76649
76680
|
|
|
76650
76681
|
module.exports = _brrp_varint;
|
|
76651
76682
|
|
|
76652
|
-
},{}],
|
|
76683
|
+
},{}],296:[function(require,module,exports){
|
|
76653
76684
|
(function (Buffer){(function (){
|
|
76654
76685
|
let crypto = require('crypto')
|
|
76655
76686
|
|
|
@@ -76733,7 +76764,7 @@ let nanoid = (size = 21) => {
|
|
|
76733
76764
|
module.exports = { nanoid, customAlphabet, customRandom, urlAlphabet, random }
|
|
76734
76765
|
|
|
76735
76766
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
76736
|
-
},{"./url-alphabet/index.cjs":
|
|
76767
|
+
},{"./url-alphabet/index.cjs":297,"buffer":91,"crypto":108}],297:[function(require,module,exports){
|
|
76737
76768
|
// This alphabet uses `A-Za-z0-9_-` symbols. The genetic algorithm helped
|
|
76738
76769
|
// optimize the gzip compression for this alphabet.
|
|
76739
76770
|
let urlAlphabet =
|
|
@@ -76741,7 +76772,7 @@ let urlAlphabet =
|
|
|
76741
76772
|
|
|
76742
76773
|
module.exports = { urlAlphabet }
|
|
76743
76774
|
|
|
76744
|
-
},{}],
|
|
76775
|
+
},{}],298:[function(require,module,exports){
|
|
76745
76776
|
/*!
|
|
76746
76777
|
* negotiator
|
|
76747
76778
|
* Copyright(c) 2012 Federico Romero
|
|
@@ -76867,7 +76898,7 @@ function loadModule(moduleName) {
|
|
|
76867
76898
|
return module;
|
|
76868
76899
|
}
|
|
76869
76900
|
|
|
76870
|
-
},{"./lib/charset":
|
|
76901
|
+
},{"./lib/charset":299,"./lib/encoding":300,"./lib/language":301,"./lib/mediaType":302}],299:[function(require,module,exports){
|
|
76871
76902
|
/**
|
|
76872
76903
|
* negotiator
|
|
76873
76904
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
|
@@ -77038,7 +77069,7 @@ function isQuality(spec) {
|
|
|
77038
77069
|
return spec.q > 0;
|
|
77039
77070
|
}
|
|
77040
77071
|
|
|
77041
|
-
},{}],
|
|
77072
|
+
},{}],300:[function(require,module,exports){
|
|
77042
77073
|
/**
|
|
77043
77074
|
* negotiator
|
|
77044
77075
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
|
@@ -77224,7 +77255,7 @@ function isQuality(spec) {
|
|
|
77224
77255
|
return spec.q > 0;
|
|
77225
77256
|
}
|
|
77226
77257
|
|
|
77227
|
-
},{}],
|
|
77258
|
+
},{}],301:[function(require,module,exports){
|
|
77228
77259
|
/**
|
|
77229
77260
|
* negotiator
|
|
77230
77261
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
|
@@ -77405,7 +77436,7 @@ function isQuality(spec) {
|
|
|
77405
77436
|
return spec.q > 0;
|
|
77406
77437
|
}
|
|
77407
77438
|
|
|
77408
|
-
},{}],
|
|
77439
|
+
},{}],302:[function(require,module,exports){
|
|
77409
77440
|
/**
|
|
77410
77441
|
* negotiator
|
|
77411
77442
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
|
@@ -77701,7 +77732,7 @@ function splitParameters(str) {
|
|
|
77701
77732
|
return parameters;
|
|
77702
77733
|
}
|
|
77703
77734
|
|
|
77704
|
-
},{}],
|
|
77735
|
+
},{}],303:[function(require,module,exports){
|
|
77705
77736
|
/*
|
|
77706
77737
|
object-assign
|
|
77707
77738
|
(c) Sindre Sorhus
|
|
@@ -77793,7 +77824,7 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) {
|
|
|
77793
77824
|
return to;
|
|
77794
77825
|
};
|
|
77795
77826
|
|
|
77796
|
-
},{}],
|
|
77827
|
+
},{}],304:[function(require,module,exports){
|
|
77797
77828
|
(function (process,setImmediate){(function (){
|
|
77798
77829
|
/*!
|
|
77799
77830
|
* on-finished
|
|
@@ -77993,7 +78024,7 @@ function patchAssignSocket(res, callback) {
|
|
|
77993
78024
|
}
|
|
77994
78025
|
|
|
77995
78026
|
}).call(this)}).call(this,require('_process'),require("timers").setImmediate)
|
|
77996
|
-
},{"_process":
|
|
78027
|
+
},{"_process":322,"ee-first":148,"timers":428}],305:[function(require,module,exports){
|
|
77997
78028
|
|
|
77998
78029
|
module.exports = function(obj, keys){
|
|
77999
78030
|
obj = obj || {};
|
|
@@ -78005,7 +78036,7 @@ module.exports = function(obj, keys){
|
|
|
78005
78036
|
}, {});
|
|
78006
78037
|
};
|
|
78007
78038
|
|
|
78008
|
-
},{}],
|
|
78039
|
+
},{}],306:[function(require,module,exports){
|
|
78009
78040
|
exports.endianness = function () { return 'LE' };
|
|
78010
78041
|
|
|
78011
78042
|
exports.hostname = function () {
|
|
@@ -78056,7 +78087,7 @@ exports.homedir = function () {
|
|
|
78056
78087
|
return '/'
|
|
78057
78088
|
};
|
|
78058
78089
|
|
|
78059
|
-
},{}],
|
|
78090
|
+
},{}],307:[function(require,module,exports){
|
|
78060
78091
|
(function (Buffer){(function (){
|
|
78061
78092
|
/**
|
|
78062
78093
|
* Peer 2 Peer WebRTC connections with WebTorrent Trackers as signalling server
|
|
@@ -78435,7 +78466,7 @@ class P2PT extends EventEmitter {
|
|
|
78435
78466
|
module.exports = P2PT
|
|
78436
78467
|
|
|
78437
78468
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
78438
|
-
},{"bittorrent-tracker/lib/client/websocket-tracker":
|
|
78469
|
+
},{"bittorrent-tracker/lib/client/websocket-tracker":50,"buffer":91,"debug":122,"events":178,"randombytes":364,"simple-sha1":403}],308:[function(require,module,exports){
|
|
78439
78470
|
module.exports={"2.16.840.1.101.3.4.1.1": "aes-128-ecb",
|
|
78440
78471
|
"2.16.840.1.101.3.4.1.2": "aes-128-cbc",
|
|
78441
78472
|
"2.16.840.1.101.3.4.1.3": "aes-128-ofb",
|
|
@@ -78449,7 +78480,7 @@ module.exports={"2.16.840.1.101.3.4.1.1": "aes-128-ecb",
|
|
|
78449
78480
|
"2.16.840.1.101.3.4.1.43": "aes-256-ofb",
|
|
78450
78481
|
"2.16.840.1.101.3.4.1.44": "aes-256-cfb"
|
|
78451
78482
|
}
|
|
78452
|
-
},{}],
|
|
78483
|
+
},{}],309:[function(require,module,exports){
|
|
78453
78484
|
// from https://github.com/indutny/self-signed/blob/gh-pages/lib/asn1.js
|
|
78454
78485
|
// Fedor, you are amazing.
|
|
78455
78486
|
'use strict'
|
|
@@ -78573,7 +78604,7 @@ exports.signature = asn1.define('signature', function () {
|
|
|
78573
78604
|
)
|
|
78574
78605
|
})
|
|
78575
78606
|
|
|
78576
|
-
},{"./certificate":
|
|
78607
|
+
},{"./certificate":310,"asn1.js":13}],310:[function(require,module,exports){
|
|
78577
78608
|
// from https://github.com/Rantanen/node-dtls/blob/25a7dc861bda38cfeac93a723500eea4f0ac2e86/Certificate.js
|
|
78578
78609
|
// thanks to @Rantanen
|
|
78579
78610
|
|
|
@@ -78664,7 +78695,7 @@ var X509Certificate = asn.define('X509Certificate', function () {
|
|
|
78664
78695
|
|
|
78665
78696
|
module.exports = X509Certificate
|
|
78666
78697
|
|
|
78667
|
-
},{"asn1.js":
|
|
78698
|
+
},{"asn1.js":13}],311:[function(require,module,exports){
|
|
78668
78699
|
// adapted from https://github.com/apatil/pemstrip
|
|
78669
78700
|
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
|
|
78670
78701
|
var startRegex = /^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----/m
|
|
@@ -78697,7 +78728,7 @@ module.exports = function (okey, password) {
|
|
|
78697
78728
|
}
|
|
78698
78729
|
}
|
|
78699
78730
|
|
|
78700
|
-
},{"browserify-aes":
|
|
78731
|
+
},{"browserify-aes":58,"evp_bytestokey":179,"safe-buffer":383}],312:[function(require,module,exports){
|
|
78701
78732
|
var asn1 = require('./asn1')
|
|
78702
78733
|
var aesid = require('./aesid.json')
|
|
78703
78734
|
var fixProc = require('./fixProc')
|
|
@@ -78806,7 +78837,7 @@ function decrypt (data, password) {
|
|
|
78806
78837
|
return Buffer.concat(out)
|
|
78807
78838
|
}
|
|
78808
78839
|
|
|
78809
|
-
},{"./aesid.json":
|
|
78840
|
+
},{"./aesid.json":308,"./asn1":309,"./fixProc":311,"browserify-aes":58,"pbkdf2":315,"safe-buffer":383}],313:[function(require,module,exports){
|
|
78810
78841
|
/*!
|
|
78811
78842
|
* parseurl
|
|
78812
78843
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -78966,7 +78997,7 @@ function fresh (url, parsedUrl) {
|
|
|
78966
78997
|
parsedUrl._raw === url
|
|
78967
78998
|
}
|
|
78968
78999
|
|
|
78969
|
-
},{"url":
|
|
79000
|
+
},{"url":443}],314:[function(require,module,exports){
|
|
78970
79001
|
(function (process){(function (){
|
|
78971
79002
|
// .dirname, .basename, and .extname methods are extracted from Node.js v8.11.1,
|
|
78972
79003
|
// backported and transplited with Babel, with backwards-compat fixes
|
|
@@ -79272,11 +79303,11 @@ var substr = 'ab'.substr(-1) === 'b'
|
|
|
79272
79303
|
;
|
|
79273
79304
|
|
|
79274
79305
|
}).call(this)}).call(this,require('_process'))
|
|
79275
|
-
},{"_process":
|
|
79306
|
+
},{"_process":322}],315:[function(require,module,exports){
|
|
79276
79307
|
exports.pbkdf2 = require('./lib/async')
|
|
79277
79308
|
exports.pbkdf2Sync = require('./lib/sync')
|
|
79278
79309
|
|
|
79279
|
-
},{"./lib/async":
|
|
79310
|
+
},{"./lib/async":316,"./lib/sync":319}],316:[function(require,module,exports){
|
|
79280
79311
|
(function (process,global){(function (){
|
|
79281
79312
|
var Buffer = require('safe-buffer').Buffer
|
|
79282
79313
|
|
|
@@ -79382,7 +79413,7 @@ module.exports = function (password, salt, iterations, keylen, digest, callback)
|
|
|
79382
79413
|
}
|
|
79383
79414
|
|
|
79384
79415
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
79385
|
-
},{"./default-encoding":
|
|
79416
|
+
},{"./default-encoding":317,"./precondition":318,"./sync":319,"./to-buffer":320,"_process":322,"safe-buffer":383}],317:[function(require,module,exports){
|
|
79386
79417
|
(function (process){(function (){
|
|
79387
79418
|
var defaultEncoding
|
|
79388
79419
|
/* istanbul ignore next */
|
|
@@ -79398,7 +79429,7 @@ if (process.browser) {
|
|
|
79398
79429
|
module.exports = defaultEncoding
|
|
79399
79430
|
|
|
79400
79431
|
}).call(this)}).call(this,require('_process'))
|
|
79401
|
-
},{"_process":
|
|
79432
|
+
},{"_process":322}],318:[function(require,module,exports){
|
|
79402
79433
|
var MAX_ALLOC = Math.pow(2, 30) - 1 // default in iojs
|
|
79403
79434
|
|
|
79404
79435
|
module.exports = function (iterations, keylen) {
|
|
@@ -79419,7 +79450,7 @@ module.exports = function (iterations, keylen) {
|
|
|
79419
79450
|
}
|
|
79420
79451
|
}
|
|
79421
79452
|
|
|
79422
|
-
},{}],
|
|
79453
|
+
},{}],319:[function(require,module,exports){
|
|
79423
79454
|
var md5 = require('create-hash/md5')
|
|
79424
79455
|
var RIPEMD160 = require('ripemd160')
|
|
79425
79456
|
var sha = require('sha.js')
|
|
@@ -79526,7 +79557,7 @@ function pbkdf2 (password, salt, iterations, keylen, digest) {
|
|
|
79526
79557
|
|
|
79527
79558
|
module.exports = pbkdf2
|
|
79528
79559
|
|
|
79529
|
-
},{"./default-encoding":
|
|
79560
|
+
},{"./default-encoding":317,"./precondition":318,"./to-buffer":320,"create-hash/md5":105,"ripemd160":381,"safe-buffer":383,"sha.js":390}],320:[function(require,module,exports){
|
|
79530
79561
|
var Buffer = require('safe-buffer').Buffer
|
|
79531
79562
|
|
|
79532
79563
|
module.exports = function (thing, encoding, name) {
|
|
@@ -79541,7 +79572,7 @@ module.exports = function (thing, encoding, name) {
|
|
|
79541
79572
|
}
|
|
79542
79573
|
}
|
|
79543
79574
|
|
|
79544
|
-
},{"safe-buffer":
|
|
79575
|
+
},{"safe-buffer":383}],321:[function(require,module,exports){
|
|
79545
79576
|
(function (process){(function (){
|
|
79546
79577
|
'use strict';
|
|
79547
79578
|
|
|
@@ -79590,7 +79621,7 @@ function nextTick(fn, arg1, arg2, arg3) {
|
|
|
79590
79621
|
|
|
79591
79622
|
|
|
79592
79623
|
}).call(this)}).call(this,require('_process'))
|
|
79593
|
-
},{"_process":
|
|
79624
|
+
},{"_process":322}],322:[function(require,module,exports){
|
|
79594
79625
|
// shim for using process in browser
|
|
79595
79626
|
var process = module.exports = {};
|
|
79596
79627
|
|
|
@@ -79776,7 +79807,7 @@ process.chdir = function (dir) {
|
|
|
79776
79807
|
};
|
|
79777
79808
|
process.umask = function() { return 0; };
|
|
79778
79809
|
|
|
79779
|
-
},{}],
|
|
79810
|
+
},{}],323:[function(require,module,exports){
|
|
79780
79811
|
var parse = require('./parse')
|
|
79781
79812
|
var stringify = require('./stringify')
|
|
79782
79813
|
|
|
@@ -79784,7 +79815,7 @@ module.exports = parse
|
|
|
79784
79815
|
module.exports.parse = parse
|
|
79785
79816
|
module.exports.stringify = stringify
|
|
79786
79817
|
|
|
79787
|
-
},{"./parse":
|
|
79818
|
+
},{"./parse":324,"./stringify":325}],324:[function(require,module,exports){
|
|
79788
79819
|
var tokenize = require('./tokenize')
|
|
79789
79820
|
var MAX_RANGE = 0x1FFFFFFF
|
|
79790
79821
|
|
|
@@ -80545,7 +80576,7 @@ var parse = function (buf) {
|
|
|
80545
80576
|
|
|
80546
80577
|
module.exports = parse
|
|
80547
80578
|
|
|
80548
|
-
},{"./tokenize":
|
|
80579
|
+
},{"./tokenize":326}],325:[function(require,module,exports){
|
|
80549
80580
|
var onfield = function (f, result) {
|
|
80550
80581
|
var prefix = f.repeated ? 'repeated' : f.required ? 'required' : 'optional'
|
|
80551
80582
|
if (f.type === 'map') prefix = 'map<' + f.map.from + ',' + f.map.to + '>'
|
|
@@ -80742,7 +80773,7 @@ module.exports = function (schema) {
|
|
|
80742
80773
|
return result.map(indent('')).join('\n')
|
|
80743
80774
|
}
|
|
80744
80775
|
|
|
80745
|
-
},{}],
|
|
80776
|
+
},{}],326:[function(require,module,exports){
|
|
80746
80777
|
module.exports = function (sch) {
|
|
80747
80778
|
var noComments = function (line) {
|
|
80748
80779
|
var i = line.indexOf('//')
|
|
@@ -80800,15 +80831,15 @@ module.exports = function (sch) {
|
|
|
80800
80831
|
.map(restoreQuotedLines(replacements))
|
|
80801
80832
|
}
|
|
80802
80833
|
|
|
80803
|
-
},{}],
|
|
80804
|
-
arguments[4][268][0].apply(exports,arguments)
|
|
80805
|
-
},{"dup":268}],327:[function(require,module,exports){
|
|
80834
|
+
},{}],327:[function(require,module,exports){
|
|
80806
80835
|
arguments[4][269][0].apply(exports,arguments)
|
|
80807
80836
|
},{"dup":269}],328:[function(require,module,exports){
|
|
80808
80837
|
arguments[4][270][0].apply(exports,arguments)
|
|
80809
|
-
},{"
|
|
80838
|
+
},{"dup":270}],329:[function(require,module,exports){
|
|
80810
80839
|
arguments[4][271][0].apply(exports,arguments)
|
|
80811
|
-
},{"dup":271}],330:[function(require,module,exports){
|
|
80840
|
+
},{"./decode.js":327,"./encode.js":328,"./length.js":330,"dup":271}],330:[function(require,module,exports){
|
|
80841
|
+
arguments[4][272][0].apply(exports,arguments)
|
|
80842
|
+
},{"dup":272}],331:[function(require,module,exports){
|
|
80812
80843
|
/* eslint max-depth: 1 */
|
|
80813
80844
|
'use strict'
|
|
80814
80845
|
|
|
@@ -81140,7 +81171,7 @@ var coerceValue = function (f, def) {
|
|
|
81140
81171
|
|
|
81141
81172
|
module.exports = compileDecode
|
|
81142
81173
|
|
|
81143
|
-
},{"./utils":
|
|
81174
|
+
},{"./utils":349,"varint":329}],332:[function(require,module,exports){
|
|
81144
81175
|
'use strict'
|
|
81145
81176
|
|
|
81146
81177
|
var defined = require('./utils').defined
|
|
@@ -81275,7 +81306,7 @@ function compileEncode (m, resolve, enc, oneofs, encodingLength) {
|
|
|
81275
81306
|
|
|
81276
81307
|
module.exports = compileEncode
|
|
81277
81308
|
|
|
81278
|
-
},{"./utils":
|
|
81309
|
+
},{"./utils":349,"varint":329}],333:[function(require,module,exports){
|
|
81279
81310
|
'use strict'
|
|
81280
81311
|
|
|
81281
81312
|
var defined = require('./utils').defined
|
|
@@ -81379,7 +81410,7 @@ function compileEncodingLength (m, enc, oneofs) {
|
|
|
81379
81410
|
|
|
81380
81411
|
module.exports = compileEncodingLength
|
|
81381
81412
|
|
|
81382
|
-
},{"./utils":
|
|
81413
|
+
},{"./utils":349,"varint":329}],334:[function(require,module,exports){
|
|
81383
81414
|
'use strict'
|
|
81384
81415
|
|
|
81385
81416
|
const encoder = require('./encoder')
|
|
@@ -81402,7 +81433,7 @@ function boolDecode (buffer, dataView, offset) {
|
|
|
81402
81433
|
|
|
81403
81434
|
module.exports = encoder(0, boolEncode, boolDecode, boolEncodingLength)
|
|
81404
81435
|
|
|
81405
|
-
},{"./encoder":
|
|
81436
|
+
},{"./encoder":337}],335:[function(require,module,exports){
|
|
81406
81437
|
'use strict'
|
|
81407
81438
|
|
|
81408
81439
|
const varint = require('varint')
|
|
@@ -81446,7 +81477,7 @@ function bytesDecode (buffer, dataView, offset) {
|
|
|
81446
81477
|
|
|
81447
81478
|
module.exports = encoder(2, bytesEncode, bytesDecode, bytesEncodingLength)
|
|
81448
81479
|
|
|
81449
|
-
},{"./encoder":
|
|
81480
|
+
},{"./encoder":337,"varint":329}],336:[function(require,module,exports){
|
|
81450
81481
|
'use strict'
|
|
81451
81482
|
|
|
81452
81483
|
const encoder = require('./encoder')
|
|
@@ -81469,7 +81500,7 @@ function doubleDecode (buffer, dataView, offset) {
|
|
|
81469
81500
|
|
|
81470
81501
|
module.exports = encoder(1, doubleEncode, doubleDecode, doubleEncodingLength)
|
|
81471
81502
|
|
|
81472
|
-
},{"./encoder":
|
|
81503
|
+
},{"./encoder":337}],337:[function(require,module,exports){
|
|
81473
81504
|
'use strict'
|
|
81474
81505
|
|
|
81475
81506
|
function encoder (type, encode, decode, encodingLength) {
|
|
@@ -81485,7 +81516,7 @@ function encoder (type, encode, decode, encodingLength) {
|
|
|
81485
81516
|
|
|
81486
81517
|
module.exports = encoder
|
|
81487
81518
|
|
|
81488
|
-
},{}],
|
|
81519
|
+
},{}],338:[function(require,module,exports){
|
|
81489
81520
|
'use strict'
|
|
81490
81521
|
|
|
81491
81522
|
const encoder = require('./encoder')
|
|
@@ -81508,7 +81539,7 @@ function fixed32Decode (buffer, dataView, offset) {
|
|
|
81508
81539
|
|
|
81509
81540
|
module.exports = encoder(5, fixed32Encode, fixed32Decode, fixed32EncodingLength)
|
|
81510
81541
|
|
|
81511
|
-
},{"./encoder":
|
|
81542
|
+
},{"./encoder":337}],339:[function(require,module,exports){
|
|
81512
81543
|
'use strict'
|
|
81513
81544
|
|
|
81514
81545
|
const encoder = require('./encoder')
|
|
@@ -81535,7 +81566,7 @@ function fixed64Decode (buffer, dataView, offset) {
|
|
|
81535
81566
|
|
|
81536
81567
|
module.exports = encoder(1, fixed64Encode, fixed64Decode, fixed64EncodingLength)
|
|
81537
81568
|
|
|
81538
|
-
},{"./encoder":
|
|
81569
|
+
},{"./encoder":337}],340:[function(require,module,exports){
|
|
81539
81570
|
'use strict'
|
|
81540
81571
|
|
|
81541
81572
|
const encoder = require('./encoder')
|
|
@@ -81558,7 +81589,7 @@ function floatDecode (buffer, dataView, offset) {
|
|
|
81558
81589
|
|
|
81559
81590
|
module.exports = encoder(5, floatEncode, floatDecode, floatEncodingLength)
|
|
81560
81591
|
|
|
81561
|
-
},{"./encoder":
|
|
81592
|
+
},{"./encoder":337}],341:[function(require,module,exports){
|
|
81562
81593
|
'use strict'
|
|
81563
81594
|
|
|
81564
81595
|
exports.make = require('./encoder')
|
|
@@ -81582,7 +81613,7 @@ exports.fixed32 = require('./fixed32')
|
|
|
81582
81613
|
exports.sfixed32 = require('./sfixed32')
|
|
81583
81614
|
exports.float = require('./float')
|
|
81584
81615
|
|
|
81585
|
-
},{"./bool":
|
|
81616
|
+
},{"./bool":334,"./bytes":335,"./double":336,"./encoder":337,"./fixed32":338,"./fixed64":339,"./float":340,"./int32":342,"./int64":343,"./sfixed32":344,"./sint64":345,"./string":346,"./varint":347}],342:[function(require,module,exports){
|
|
81586
81617
|
'use strict'
|
|
81587
81618
|
|
|
81588
81619
|
const varint = require('varint')
|
|
@@ -81606,7 +81637,7 @@ function int32EncodingLength (val) {
|
|
|
81606
81637
|
|
|
81607
81638
|
module.exports = encoder(0, in32Encode, int32Decode, int32EncodingLength)
|
|
81608
81639
|
|
|
81609
|
-
},{"./encoder":
|
|
81640
|
+
},{"./encoder":337,"varint":329}],343:[function(require,module,exports){
|
|
81610
81641
|
'use strict'
|
|
81611
81642
|
|
|
81612
81643
|
const varint = require('varint')
|
|
@@ -81657,7 +81688,7 @@ function int64EncodingLength (val) {
|
|
|
81657
81688
|
|
|
81658
81689
|
module.exports = encoder(0, int64Encode, int64Decode, int64EncodingLength)
|
|
81659
81690
|
|
|
81660
|
-
},{"./encoder":
|
|
81691
|
+
},{"./encoder":337,"varint":329}],344:[function(require,module,exports){
|
|
81661
81692
|
'use strict'
|
|
81662
81693
|
|
|
81663
81694
|
const encoder = require('./encoder')
|
|
@@ -81680,7 +81711,7 @@ function sfixed32Decode (buffer, dataView, offset) {
|
|
|
81680
81711
|
|
|
81681
81712
|
module.exports = encoder(5, sfixed32Encode, sfixed32Decode, sfixed32EncodingLength)
|
|
81682
81713
|
|
|
81683
|
-
},{"./encoder":
|
|
81714
|
+
},{"./encoder":337}],345:[function(require,module,exports){
|
|
81684
81715
|
'use strict'
|
|
81685
81716
|
|
|
81686
81717
|
const svarint = require('signed-varint')
|
|
@@ -81701,7 +81732,7 @@ function svarintDecode (buffer, dataView, offset) {
|
|
|
81701
81732
|
|
|
81702
81733
|
module.exports = encoder(0, svarintEncode, svarintDecode, svarint.encodingLength)
|
|
81703
81734
|
|
|
81704
|
-
},{"./encoder":
|
|
81735
|
+
},{"./encoder":337,"signed-varint":397}],346:[function(require,module,exports){
|
|
81705
81736
|
'use strict'
|
|
81706
81737
|
|
|
81707
81738
|
const varint = require('varint')
|
|
@@ -81744,7 +81775,7 @@ function stringDecode (buffer, dataView, offset) {
|
|
|
81744
81775
|
|
|
81745
81776
|
module.exports = encoder(2, stringEncode, stringDecode, stringEncodingLength)
|
|
81746
81777
|
|
|
81747
|
-
},{"./encoder":
|
|
81778
|
+
},{"./encoder":337,"uint8arrays/from-string":440,"uint8arrays/to-string":441,"varint":329}],347:[function(require,module,exports){
|
|
81748
81779
|
'use strict'
|
|
81749
81780
|
|
|
81750
81781
|
const varint = require('varint')
|
|
@@ -81765,7 +81796,7 @@ function varintDecode (buffer, dataView, offset) {
|
|
|
81765
81796
|
|
|
81766
81797
|
module.exports = encoder(0, varintEncode, varintDecode, varint.encodingLength)
|
|
81767
81798
|
|
|
81768
|
-
},{"./encoder":
|
|
81799
|
+
},{"./encoder":337,"varint":329}],348:[function(require,module,exports){
|
|
81769
81800
|
'use strict'
|
|
81770
81801
|
|
|
81771
81802
|
const encodings = require('./encodings')
|
|
@@ -81932,14 +81963,14 @@ module.exports = function (schema, extraEncodings) {
|
|
|
81932
81963
|
}))
|
|
81933
81964
|
}
|
|
81934
81965
|
|
|
81935
|
-
},{"./decode":
|
|
81966
|
+
},{"./decode":331,"./encode":332,"./encoding-length":333,"./encodings":341,"varint":329}],349:[function(require,module,exports){
|
|
81936
81967
|
'use strict'
|
|
81937
81968
|
|
|
81938
81969
|
exports.defined = function (val) {
|
|
81939
81970
|
return val !== null && val !== undefined && (typeof val !== 'number' || !isNaN(val))
|
|
81940
81971
|
}
|
|
81941
81972
|
|
|
81942
|
-
},{}],
|
|
81973
|
+
},{}],350:[function(require,module,exports){
|
|
81943
81974
|
'use strict'
|
|
81944
81975
|
|
|
81945
81976
|
var schema = require('protocol-buffers-schema')
|
|
@@ -81980,7 +82011,7 @@ module.exports = function (proto, opts) {
|
|
|
81980
82011
|
return new Messages()
|
|
81981
82012
|
}
|
|
81982
82013
|
|
|
81983
|
-
},{"./compile":
|
|
82014
|
+
},{"./compile":348,"protocol-buffers-schema":323}],351:[function(require,module,exports){
|
|
81984
82015
|
/*!
|
|
81985
82016
|
* prr
|
|
81986
82017
|
* (c) 2013 Rod Vagg <rod@vagg.org>
|
|
@@ -82044,7 +82075,7 @@ module.exports = function (proto, opts) {
|
|
|
82044
82075
|
|
|
82045
82076
|
return prr
|
|
82046
82077
|
})
|
|
82047
|
-
},{}],
|
|
82078
|
+
},{}],352:[function(require,module,exports){
|
|
82048
82079
|
exports.publicEncrypt = require('./publicEncrypt')
|
|
82049
82080
|
exports.privateDecrypt = require('./privateDecrypt')
|
|
82050
82081
|
|
|
@@ -82056,7 +82087,7 @@ exports.publicDecrypt = function publicDecrypt (key, buf) {
|
|
|
82056
82087
|
return exports.privateDecrypt(key, buf, true)
|
|
82057
82088
|
}
|
|
82058
82089
|
|
|
82059
|
-
},{"./privateDecrypt":
|
|
82090
|
+
},{"./privateDecrypt":355,"./publicEncrypt":356}],353:[function(require,module,exports){
|
|
82060
82091
|
var createHash = require('create-hash')
|
|
82061
82092
|
var Buffer = require('safe-buffer').Buffer
|
|
82062
82093
|
|
|
@@ -82077,9 +82108,9 @@ function i2ops (c) {
|
|
|
82077
82108
|
return out
|
|
82078
82109
|
}
|
|
82079
82110
|
|
|
82080
|
-
},{"create-hash":
|
|
82081
|
-
arguments[4][
|
|
82082
|
-
},{"buffer":
|
|
82111
|
+
},{"create-hash":104,"safe-buffer":383}],354:[function(require,module,exports){
|
|
82112
|
+
arguments[4][27][0].apply(exports,arguments)
|
|
82113
|
+
},{"buffer":55,"dup":27}],355:[function(require,module,exports){
|
|
82083
82114
|
var parseKeys = require('parse-asn1')
|
|
82084
82115
|
var mgf = require('./mgf')
|
|
82085
82116
|
var xor = require('./xor')
|
|
@@ -82186,7 +82217,7 @@ function compare (a, b) {
|
|
|
82186
82217
|
return dif
|
|
82187
82218
|
}
|
|
82188
82219
|
|
|
82189
|
-
},{"./mgf":
|
|
82220
|
+
},{"./mgf":353,"./withPublic":357,"./xor":358,"bn.js":354,"browserify-rsa":76,"create-hash":104,"parse-asn1":312,"safe-buffer":383}],356:[function(require,module,exports){
|
|
82190
82221
|
var parseKeys = require('parse-asn1')
|
|
82191
82222
|
var randomBytes = require('randombytes')
|
|
82192
82223
|
var createHash = require('create-hash')
|
|
@@ -82276,7 +82307,7 @@ function nonZero (len) {
|
|
|
82276
82307
|
return out
|
|
82277
82308
|
}
|
|
82278
82309
|
|
|
82279
|
-
},{"./mgf":
|
|
82310
|
+
},{"./mgf":353,"./withPublic":357,"./xor":358,"bn.js":354,"browserify-rsa":76,"create-hash":104,"parse-asn1":312,"randombytes":364,"safe-buffer":383}],357:[function(require,module,exports){
|
|
82280
82311
|
var BN = require('bn.js')
|
|
82281
82312
|
var Buffer = require('safe-buffer').Buffer
|
|
82282
82313
|
|
|
@@ -82290,7 +82321,7 @@ function withPublic (paddedMsg, key) {
|
|
|
82290
82321
|
|
|
82291
82322
|
module.exports = withPublic
|
|
82292
82323
|
|
|
82293
|
-
},{"bn.js":
|
|
82324
|
+
},{"bn.js":354,"safe-buffer":383}],358:[function(require,module,exports){
|
|
82294
82325
|
module.exports = function xor (a, b) {
|
|
82295
82326
|
var len = a.length
|
|
82296
82327
|
var i = -1
|
|
@@ -82300,7 +82331,7 @@ module.exports = function xor (a, b) {
|
|
|
82300
82331
|
return a
|
|
82301
82332
|
}
|
|
82302
82333
|
|
|
82303
|
-
},{}],
|
|
82334
|
+
},{}],359:[function(require,module,exports){
|
|
82304
82335
|
(function (global){(function (){
|
|
82305
82336
|
/*! https://mths.be/punycode v1.4.1 by @mathias */
|
|
82306
82337
|
;(function(root) {
|
|
@@ -82837,7 +82868,7 @@ module.exports = function xor (a, b) {
|
|
|
82837
82868
|
}(this));
|
|
82838
82869
|
|
|
82839
82870
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
82840
|
-
},{}],
|
|
82871
|
+
},{}],360:[function(require,module,exports){
|
|
82841
82872
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
82842
82873
|
//
|
|
82843
82874
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -82923,7 +82954,7 @@ var isArray = Array.isArray || function (xs) {
|
|
|
82923
82954
|
return Object.prototype.toString.call(xs) === '[object Array]';
|
|
82924
82955
|
};
|
|
82925
82956
|
|
|
82926
|
-
},{}],
|
|
82957
|
+
},{}],361:[function(require,module,exports){
|
|
82927
82958
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
82928
82959
|
//
|
|
82929
82960
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -83010,13 +83041,13 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
83010
83041
|
return res;
|
|
83011
83042
|
};
|
|
83012
83043
|
|
|
83013
|
-
},{}],
|
|
83044
|
+
},{}],362:[function(require,module,exports){
|
|
83014
83045
|
'use strict';
|
|
83015
83046
|
|
|
83016
83047
|
exports.decode = exports.parse = require('./decode');
|
|
83017
83048
|
exports.encode = exports.stringify = require('./encode');
|
|
83018
83049
|
|
|
83019
|
-
},{"./decode":
|
|
83050
|
+
},{"./decode":360,"./encode":361}],363:[function(require,module,exports){
|
|
83020
83051
|
/*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
83021
83052
|
let promise
|
|
83022
83053
|
|
|
@@ -83027,7 +83058,7 @@ module.exports = typeof queueMicrotask === 'function'
|
|
|
83027
83058
|
.then(cb)
|
|
83028
83059
|
.catch(err => setTimeout(() => { throw err }, 0))
|
|
83029
83060
|
|
|
83030
|
-
},{}],
|
|
83061
|
+
},{}],364:[function(require,module,exports){
|
|
83031
83062
|
(function (process,global){(function (){
|
|
83032
83063
|
'use strict'
|
|
83033
83064
|
|
|
@@ -83081,7 +83112,7 @@ function randomBytes (size, cb) {
|
|
|
83081
83112
|
}
|
|
83082
83113
|
|
|
83083
83114
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
83084
|
-
},{"_process":
|
|
83115
|
+
},{"_process":322,"safe-buffer":383}],365:[function(require,module,exports){
|
|
83085
83116
|
(function (process,global){(function (){
|
|
83086
83117
|
'use strict'
|
|
83087
83118
|
|
|
@@ -83193,7 +83224,7 @@ function randomFillSync (buf, offset, size) {
|
|
|
83193
83224
|
}
|
|
83194
83225
|
|
|
83195
83226
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
83196
|
-
},{"_process":
|
|
83227
|
+
},{"_process":322,"randombytes":364,"safe-buffer":383}],366:[function(require,module,exports){
|
|
83197
83228
|
'use strict';
|
|
83198
83229
|
|
|
83199
83230
|
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
|
@@ -83322,7 +83353,7 @@ createErrorType('ERR_UNKNOWN_ENCODING', function (arg) {
|
|
|
83322
83353
|
createErrorType('ERR_STREAM_UNSHIFT_AFTER_END_EVENT', 'stream.unshift() after end event');
|
|
83323
83354
|
module.exports.codes = codes;
|
|
83324
83355
|
|
|
83325
|
-
},{}],
|
|
83356
|
+
},{}],367:[function(require,module,exports){
|
|
83326
83357
|
(function (process){(function (){
|
|
83327
83358
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
83328
83359
|
//
|
|
@@ -83464,7 +83495,7 @@ Object.defineProperty(Duplex.prototype, 'destroyed', {
|
|
|
83464
83495
|
}
|
|
83465
83496
|
});
|
|
83466
83497
|
}).call(this)}).call(this,require('_process'))
|
|
83467
|
-
},{"./_stream_readable":
|
|
83498
|
+
},{"./_stream_readable":369,"./_stream_writable":371,"_process":322,"inherits":210}],368:[function(require,module,exports){
|
|
83468
83499
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
83469
83500
|
//
|
|
83470
83501
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -83504,7 +83535,7 @@ function PassThrough(options) {
|
|
|
83504
83535
|
PassThrough.prototype._transform = function (chunk, encoding, cb) {
|
|
83505
83536
|
cb(null, chunk);
|
|
83506
83537
|
};
|
|
83507
|
-
},{"./_stream_transform":
|
|
83538
|
+
},{"./_stream_transform":370,"inherits":210}],369:[function(require,module,exports){
|
|
83508
83539
|
(function (process,global){(function (){
|
|
83509
83540
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
83510
83541
|
//
|
|
@@ -84631,7 +84662,7 @@ function indexOf(xs, x) {
|
|
|
84631
84662
|
return -1;
|
|
84632
84663
|
}
|
|
84633
84664
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
84634
|
-
},{"../errors":
|
|
84665
|
+
},{"../errors":366,"./_stream_duplex":367,"./internal/streams/async_iterator":372,"./internal/streams/buffer_list":373,"./internal/streams/destroy":374,"./internal/streams/from":376,"./internal/streams/state":378,"./internal/streams/stream":379,"_process":322,"buffer":91,"events":178,"inherits":210,"string_decoder/":427,"util":55}],370:[function(require,module,exports){
|
|
84635
84666
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
84636
84667
|
//
|
|
84637
84668
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -84833,7 +84864,7 @@ function done(stream, er, data) {
|
|
|
84833
84864
|
if (stream._transformState.transforming) throw new ERR_TRANSFORM_ALREADY_TRANSFORMING();
|
|
84834
84865
|
return stream.push(null);
|
|
84835
84866
|
}
|
|
84836
|
-
},{"../errors":
|
|
84867
|
+
},{"../errors":366,"./_stream_duplex":367,"inherits":210}],371:[function(require,module,exports){
|
|
84837
84868
|
(function (process,global){(function (){
|
|
84838
84869
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
84839
84870
|
//
|
|
@@ -85533,7 +85564,7 @@ Writable.prototype._destroy = function (err, cb) {
|
|
|
85533
85564
|
cb(err);
|
|
85534
85565
|
};
|
|
85535
85566
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
85536
|
-
},{"../errors":
|
|
85567
|
+
},{"../errors":366,"./_stream_duplex":367,"./internal/streams/destroy":374,"./internal/streams/state":378,"./internal/streams/stream":379,"_process":322,"buffer":91,"inherits":210,"util-deprecate":445}],372:[function(require,module,exports){
|
|
85537
85568
|
(function (process){(function (){
|
|
85538
85569
|
'use strict';
|
|
85539
85570
|
|
|
@@ -85743,7 +85774,7 @@ var createReadableStreamAsyncIterator = function createReadableStreamAsyncIterat
|
|
|
85743
85774
|
|
|
85744
85775
|
module.exports = createReadableStreamAsyncIterator;
|
|
85745
85776
|
}).call(this)}).call(this,require('_process'))
|
|
85746
|
-
},{"./end-of-stream":
|
|
85777
|
+
},{"./end-of-stream":375,"_process":322}],373:[function(require,module,exports){
|
|
85747
85778
|
'use strict';
|
|
85748
85779
|
|
|
85749
85780
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -85954,7 +85985,7 @@ function () {
|
|
|
85954
85985
|
|
|
85955
85986
|
return BufferList;
|
|
85956
85987
|
}();
|
|
85957
|
-
},{"buffer":
|
|
85988
|
+
},{"buffer":91,"util":55}],374:[function(require,module,exports){
|
|
85958
85989
|
(function (process){(function (){
|
|
85959
85990
|
'use strict'; // undocumented cb() API, needed for core, not for public API
|
|
85960
85991
|
|
|
@@ -86062,7 +86093,7 @@ module.exports = {
|
|
|
86062
86093
|
errorOrDestroy: errorOrDestroy
|
|
86063
86094
|
};
|
|
86064
86095
|
}).call(this)}).call(this,require('_process'))
|
|
86065
|
-
},{"_process":
|
|
86096
|
+
},{"_process":322}],375:[function(require,module,exports){
|
|
86066
86097
|
// Ported from https://github.com/mafintosh/end-of-stream with
|
|
86067
86098
|
// permission from the author, Mathias Buus (@mafintosh).
|
|
86068
86099
|
'use strict';
|
|
@@ -86167,12 +86198,12 @@ function eos(stream, opts, callback) {
|
|
|
86167
86198
|
}
|
|
86168
86199
|
|
|
86169
86200
|
module.exports = eos;
|
|
86170
|
-
},{"../../../errors":
|
|
86201
|
+
},{"../../../errors":366}],376:[function(require,module,exports){
|
|
86171
86202
|
module.exports = function () {
|
|
86172
86203
|
throw new Error('Readable.from is not available in the browser')
|
|
86173
86204
|
};
|
|
86174
86205
|
|
|
86175
|
-
},{}],
|
|
86206
|
+
},{}],377:[function(require,module,exports){
|
|
86176
86207
|
// Ported from https://github.com/mafintosh/pump with
|
|
86177
86208
|
// permission from the author, Mathias Buus (@mafintosh).
|
|
86178
86209
|
'use strict';
|
|
@@ -86270,7 +86301,7 @@ function pipeline() {
|
|
|
86270
86301
|
}
|
|
86271
86302
|
|
|
86272
86303
|
module.exports = pipeline;
|
|
86273
|
-
},{"../../../errors":
|
|
86304
|
+
},{"../../../errors":366,"./end-of-stream":375}],378:[function(require,module,exports){
|
|
86274
86305
|
'use strict';
|
|
86275
86306
|
|
|
86276
86307
|
var ERR_INVALID_OPT_VALUE = require('../../../errors').codes.ERR_INVALID_OPT_VALUE;
|
|
@@ -86298,10 +86329,10 @@ function getHighWaterMark(state, options, duplexKey, isDuplex) {
|
|
|
86298
86329
|
module.exports = {
|
|
86299
86330
|
getHighWaterMark: getHighWaterMark
|
|
86300
86331
|
};
|
|
86301
|
-
},{"../../../errors":
|
|
86332
|
+
},{"../../../errors":366}],379:[function(require,module,exports){
|
|
86302
86333
|
module.exports = require('events').EventEmitter;
|
|
86303
86334
|
|
|
86304
|
-
},{"events":
|
|
86335
|
+
},{"events":178}],380:[function(require,module,exports){
|
|
86305
86336
|
exports = module.exports = require('./lib/_stream_readable.js');
|
|
86306
86337
|
exports.Stream = exports;
|
|
86307
86338
|
exports.Readable = exports;
|
|
@@ -86312,7 +86343,7 @@ exports.PassThrough = require('./lib/_stream_passthrough.js');
|
|
|
86312
86343
|
exports.finished = require('./lib/internal/streams/end-of-stream.js');
|
|
86313
86344
|
exports.pipeline = require('./lib/internal/streams/pipeline.js');
|
|
86314
86345
|
|
|
86315
|
-
},{"./lib/_stream_duplex.js":
|
|
86346
|
+
},{"./lib/_stream_duplex.js":367,"./lib/_stream_passthrough.js":368,"./lib/_stream_readable.js":369,"./lib/_stream_transform.js":370,"./lib/_stream_writable.js":371,"./lib/internal/streams/end-of-stream.js":375,"./lib/internal/streams/pipeline.js":377}],381:[function(require,module,exports){
|
|
86316
86347
|
'use strict'
|
|
86317
86348
|
var Buffer = require('buffer').Buffer
|
|
86318
86349
|
var inherits = require('inherits')
|
|
@@ -86477,7 +86508,7 @@ function fn5 (a, b, c, d, e, m, k, s) {
|
|
|
86477
86508
|
|
|
86478
86509
|
module.exports = RIPEMD160
|
|
86479
86510
|
|
|
86480
|
-
},{"buffer":
|
|
86511
|
+
},{"buffer":91,"hash-base":182,"inherits":210}],382:[function(require,module,exports){
|
|
86481
86512
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
86482
86513
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
86483
86514
|
module.exports = factory();
|
|
@@ -87406,7 +87437,7 @@ module.exports = function () {
|
|
|
87406
87437
|
/***/ })
|
|
87407
87438
|
/******/ ]);
|
|
87408
87439
|
});
|
|
87409
|
-
},{}],
|
|
87440
|
+
},{}],383:[function(require,module,exports){
|
|
87410
87441
|
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
87411
87442
|
/* eslint-disable node/no-deprecated-api */
|
|
87412
87443
|
var buffer = require('buffer')
|
|
@@ -87473,7 +87504,7 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
87473
87504
|
return buffer.SlowBuffer(size)
|
|
87474
87505
|
}
|
|
87475
87506
|
|
|
87476
|
-
},{"buffer":
|
|
87507
|
+
},{"buffer":91}],384:[function(require,module,exports){
|
|
87477
87508
|
(function (process){(function (){
|
|
87478
87509
|
/* eslint-disable node/no-deprecated-api */
|
|
87479
87510
|
|
|
@@ -87554,10 +87585,10 @@ if (!safer.constants) {
|
|
|
87554
87585
|
module.exports = safer
|
|
87555
87586
|
|
|
87556
87587
|
}).call(this)}).call(this,require('_process'))
|
|
87557
|
-
},{"_process":
|
|
87588
|
+
},{"_process":322,"buffer":91}],385:[function(require,module,exports){
|
|
87558
87589
|
module.exports = require('./lib')(require('./lib/elliptic'))
|
|
87559
87590
|
|
|
87560
|
-
},{"./lib":
|
|
87591
|
+
},{"./lib":387,"./lib/elliptic":386}],386:[function(require,module,exports){
|
|
87561
87592
|
const EC = require('elliptic').ec
|
|
87562
87593
|
|
|
87563
87594
|
const ec = new EC('secp256k1')
|
|
@@ -87961,7 +87992,7 @@ module.exports = {
|
|
|
87961
87992
|
}
|
|
87962
87993
|
}
|
|
87963
87994
|
|
|
87964
|
-
},{"elliptic":
|
|
87995
|
+
},{"elliptic":149}],387:[function(require,module,exports){
|
|
87965
87996
|
const errors = {
|
|
87966
87997
|
IMPOSSIBLE_CASE: 'Impossible case. Please create issue.',
|
|
87967
87998
|
TWEAK_ADD:
|
|
@@ -88299,7 +88330,7 @@ module.exports = (secp256k1) => {
|
|
|
88299
88330
|
}
|
|
88300
88331
|
}
|
|
88301
88332
|
|
|
88302
|
-
},{}],
|
|
88333
|
+
},{}],388:[function(require,module,exports){
|
|
88303
88334
|
'use strict'
|
|
88304
88335
|
/* eslint no-proto: 0 */
|
|
88305
88336
|
module.exports = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array ? setProtoOf : mixinProperties)
|
|
@@ -88318,7 +88349,7 @@ function mixinProperties (obj, proto) {
|
|
|
88318
88349
|
return obj
|
|
88319
88350
|
}
|
|
88320
88351
|
|
|
88321
|
-
},{}],
|
|
88352
|
+
},{}],389:[function(require,module,exports){
|
|
88322
88353
|
var Buffer = require('safe-buffer').Buffer
|
|
88323
88354
|
|
|
88324
88355
|
// prototype class for hash functions
|
|
@@ -88401,7 +88432,7 @@ Hash.prototype._update = function () {
|
|
|
88401
88432
|
|
|
88402
88433
|
module.exports = Hash
|
|
88403
88434
|
|
|
88404
|
-
},{"safe-buffer":
|
|
88435
|
+
},{"safe-buffer":383}],390:[function(require,module,exports){
|
|
88405
88436
|
var exports = module.exports = function SHA (algorithm) {
|
|
88406
88437
|
algorithm = algorithm.toLowerCase()
|
|
88407
88438
|
|
|
@@ -88418,7 +88449,7 @@ exports.sha256 = require('./sha256')
|
|
|
88418
88449
|
exports.sha384 = require('./sha384')
|
|
88419
88450
|
exports.sha512 = require('./sha512')
|
|
88420
88451
|
|
|
88421
|
-
},{"./sha":
|
|
88452
|
+
},{"./sha":391,"./sha1":392,"./sha224":393,"./sha256":394,"./sha384":395,"./sha512":396}],391:[function(require,module,exports){
|
|
88422
88453
|
/*
|
|
88423
88454
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-0, as defined
|
|
88424
88455
|
* in FIPS PUB 180-1
|
|
@@ -88514,7 +88545,7 @@ Sha.prototype._hash = function () {
|
|
|
88514
88545
|
|
|
88515
88546
|
module.exports = Sha
|
|
88516
88547
|
|
|
88517
|
-
},{"./hash":
|
|
88548
|
+
},{"./hash":389,"inherits":210,"safe-buffer":383}],392:[function(require,module,exports){
|
|
88518
88549
|
/*
|
|
88519
88550
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined
|
|
88520
88551
|
* in FIPS PUB 180-1
|
|
@@ -88615,7 +88646,7 @@ Sha1.prototype._hash = function () {
|
|
|
88615
88646
|
|
|
88616
88647
|
module.exports = Sha1
|
|
88617
88648
|
|
|
88618
|
-
},{"./hash":
|
|
88649
|
+
},{"./hash":389,"inherits":210,"safe-buffer":383}],393:[function(require,module,exports){
|
|
88619
88650
|
/**
|
|
88620
88651
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
|
|
88621
88652
|
* in FIPS 180-2
|
|
@@ -88670,7 +88701,7 @@ Sha224.prototype._hash = function () {
|
|
|
88670
88701
|
|
|
88671
88702
|
module.exports = Sha224
|
|
88672
88703
|
|
|
88673
|
-
},{"./hash":
|
|
88704
|
+
},{"./hash":389,"./sha256":394,"inherits":210,"safe-buffer":383}],394:[function(require,module,exports){
|
|
88674
88705
|
/**
|
|
88675
88706
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
|
|
88676
88707
|
* in FIPS 180-2
|
|
@@ -88807,7 +88838,7 @@ Sha256.prototype._hash = function () {
|
|
|
88807
88838
|
|
|
88808
88839
|
module.exports = Sha256
|
|
88809
88840
|
|
|
88810
|
-
},{"./hash":
|
|
88841
|
+
},{"./hash":389,"inherits":210,"safe-buffer":383}],395:[function(require,module,exports){
|
|
88811
88842
|
var inherits = require('inherits')
|
|
88812
88843
|
var SHA512 = require('./sha512')
|
|
88813
88844
|
var Hash = require('./hash')
|
|
@@ -88866,7 +88897,7 @@ Sha384.prototype._hash = function () {
|
|
|
88866
88897
|
|
|
88867
88898
|
module.exports = Sha384
|
|
88868
88899
|
|
|
88869
|
-
},{"./hash":
|
|
88900
|
+
},{"./hash":389,"./sha512":396,"inherits":210,"safe-buffer":383}],396:[function(require,module,exports){
|
|
88870
88901
|
var inherits = require('inherits')
|
|
88871
88902
|
var Hash = require('./hash')
|
|
88872
88903
|
var Buffer = require('safe-buffer').Buffer
|
|
@@ -89128,7 +89159,7 @@ Sha512.prototype._hash = function () {
|
|
|
89128
89159
|
|
|
89129
89160
|
module.exports = Sha512
|
|
89130
89161
|
|
|
89131
|
-
},{"./hash":
|
|
89162
|
+
},{"./hash":389,"inherits":210,"safe-buffer":383}],397:[function(require,module,exports){
|
|
89132
89163
|
var varint = require('varint')
|
|
89133
89164
|
exports.encode = function encode (v, b, o) {
|
|
89134
89165
|
v = v >= 0 ? v*2 : v*-2 - 1
|
|
@@ -89146,15 +89177,15 @@ exports.encodingLength = function (v) {
|
|
|
89146
89177
|
return varint.encodingLength(v >= 0 ? v*2 : v*-2 - 1)
|
|
89147
89178
|
}
|
|
89148
89179
|
|
|
89149
|
-
},{"varint":
|
|
89150
|
-
arguments[4][268][0].apply(exports,arguments)
|
|
89151
|
-
},{"dup":268}],398:[function(require,module,exports){
|
|
89180
|
+
},{"varint":400}],398:[function(require,module,exports){
|
|
89152
89181
|
arguments[4][269][0].apply(exports,arguments)
|
|
89153
89182
|
},{"dup":269}],399:[function(require,module,exports){
|
|
89154
89183
|
arguments[4][270][0].apply(exports,arguments)
|
|
89155
|
-
},{"
|
|
89184
|
+
},{"dup":270}],400:[function(require,module,exports){
|
|
89156
89185
|
arguments[4][271][0].apply(exports,arguments)
|
|
89157
|
-
},{"dup":271}],401:[function(require,module,exports){
|
|
89186
|
+
},{"./decode.js":398,"./encode.js":399,"./length.js":401,"dup":271}],401:[function(require,module,exports){
|
|
89187
|
+
arguments[4][272][0].apply(exports,arguments)
|
|
89188
|
+
},{"dup":272}],402:[function(require,module,exports){
|
|
89158
89189
|
/*! simple-peer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
89159
89190
|
const debug = require('debug')('simple-peer')
|
|
89160
89191
|
const getBrowserRTC = require('get-browser-rtc')
|
|
@@ -90180,7 +90211,7 @@ Peer.channelConfig = {}
|
|
|
90180
90211
|
|
|
90181
90212
|
module.exports = Peer
|
|
90182
90213
|
|
|
90183
|
-
},{"buffer":
|
|
90214
|
+
},{"buffer":91,"debug":122,"err-code":173,"get-browser-rtc":181,"queue-microtask":363,"randombytes":364,"readable-stream":380}],403:[function(require,module,exports){
|
|
90184
90215
|
/* global self */
|
|
90185
90216
|
|
|
90186
90217
|
var Rusha = require('rusha')
|
|
@@ -90258,7 +90289,7 @@ function hex (buf) {
|
|
|
90258
90289
|
module.exports = sha1
|
|
90259
90290
|
module.exports.sync = sha1sync
|
|
90260
90291
|
|
|
90261
|
-
},{"./rusha-worker-sha1":
|
|
90292
|
+
},{"./rusha-worker-sha1":404,"rusha":382}],404:[function(require,module,exports){
|
|
90262
90293
|
var Rusha = require('rusha')
|
|
90263
90294
|
|
|
90264
90295
|
var worker
|
|
@@ -90293,7 +90324,7 @@ function sha1 (buf, cb) {
|
|
|
90293
90324
|
|
|
90294
90325
|
module.exports = sha1
|
|
90295
90326
|
|
|
90296
|
-
},{"rusha":
|
|
90327
|
+
},{"rusha":382}],405:[function(require,module,exports){
|
|
90297
90328
|
module.exports={
|
|
90298
90329
|
"100": "Continue",
|
|
90299
90330
|
"101": "Switching Protocols",
|
|
@@ -90361,7 +90392,7 @@ module.exports={
|
|
|
90361
90392
|
"511": "Network Authentication Required"
|
|
90362
90393
|
}
|
|
90363
90394
|
|
|
90364
|
-
},{}],
|
|
90395
|
+
},{}],406:[function(require,module,exports){
|
|
90365
90396
|
/*!
|
|
90366
90397
|
* statuses
|
|
90367
90398
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -90476,7 +90507,7 @@ function status (code) {
|
|
|
90476
90507
|
return n
|
|
90477
90508
|
}
|
|
90478
90509
|
|
|
90479
|
-
},{"./codes.json":
|
|
90510
|
+
},{"./codes.json":405}],407:[function(require,module,exports){
|
|
90480
90511
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
90481
90512
|
//
|
|
90482
90513
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -90605,10 +90636,10 @@ Stream.prototype.pipe = function(dest, options) {
|
|
|
90605
90636
|
return dest;
|
|
90606
90637
|
};
|
|
90607
90638
|
|
|
90608
|
-
},{"events":
|
|
90639
|
+
},{"events":178,"inherits":210,"readable-stream/duplex.js":408,"readable-stream/passthrough.js":417,"readable-stream/readable.js":418,"readable-stream/transform.js":419,"readable-stream/writable.js":420}],408:[function(require,module,exports){
|
|
90609
90640
|
module.exports = require('./lib/_stream_duplex.js');
|
|
90610
90641
|
|
|
90611
|
-
},{"./lib/_stream_duplex.js":
|
|
90642
|
+
},{"./lib/_stream_duplex.js":409}],409:[function(require,module,exports){
|
|
90612
90643
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
90613
90644
|
//
|
|
90614
90645
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -90740,7 +90771,7 @@ Duplex.prototype._destroy = function (err, cb) {
|
|
|
90740
90771
|
|
|
90741
90772
|
pna.nextTick(cb, err);
|
|
90742
90773
|
};
|
|
90743
|
-
},{"./_stream_readable":
|
|
90774
|
+
},{"./_stream_readable":411,"./_stream_writable":413,"core-util-is":101,"inherits":210,"process-nextick-args":321}],410:[function(require,module,exports){
|
|
90744
90775
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
90745
90776
|
//
|
|
90746
90777
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -90788,7 +90819,7 @@ function PassThrough(options) {
|
|
|
90788
90819
|
PassThrough.prototype._transform = function (chunk, encoding, cb) {
|
|
90789
90820
|
cb(null, chunk);
|
|
90790
90821
|
};
|
|
90791
|
-
},{"./_stream_transform":
|
|
90822
|
+
},{"./_stream_transform":412,"core-util-is":101,"inherits":210}],411:[function(require,module,exports){
|
|
90792
90823
|
(function (process,global){(function (){
|
|
90793
90824
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
90794
90825
|
//
|
|
@@ -91810,7 +91841,7 @@ function indexOf(xs, x) {
|
|
|
91810
91841
|
return -1;
|
|
91811
91842
|
}
|
|
91812
91843
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
91813
|
-
},{"./_stream_duplex":
|
|
91844
|
+
},{"./_stream_duplex":409,"./internal/streams/BufferList":414,"./internal/streams/destroy":415,"./internal/streams/stream":416,"_process":322,"core-util-is":101,"events":178,"inherits":210,"isarray":222,"process-nextick-args":321,"safe-buffer":421,"string_decoder/":422,"util":55}],412:[function(require,module,exports){
|
|
91814
91845
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
91815
91846
|
//
|
|
91816
91847
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -92025,7 +92056,7 @@ function done(stream, er, data) {
|
|
|
92025
92056
|
|
|
92026
92057
|
return stream.push(null);
|
|
92027
92058
|
}
|
|
92028
|
-
},{"./_stream_duplex":
|
|
92059
|
+
},{"./_stream_duplex":409,"core-util-is":101,"inherits":210}],413:[function(require,module,exports){
|
|
92029
92060
|
(function (process,global,setImmediate){(function (){
|
|
92030
92061
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
92031
92062
|
//
|
|
@@ -92715,7 +92746,7 @@ Writable.prototype._destroy = function (err, cb) {
|
|
|
92715
92746
|
cb(err);
|
|
92716
92747
|
};
|
|
92717
92748
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("timers").setImmediate)
|
|
92718
|
-
},{"./_stream_duplex":
|
|
92749
|
+
},{"./_stream_duplex":409,"./internal/streams/destroy":415,"./internal/streams/stream":416,"_process":322,"core-util-is":101,"inherits":210,"process-nextick-args":321,"safe-buffer":421,"timers":428,"util-deprecate":445}],414:[function(require,module,exports){
|
|
92719
92750
|
'use strict';
|
|
92720
92751
|
|
|
92721
92752
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
@@ -92795,7 +92826,7 @@ if (util && util.inspect && util.inspect.custom) {
|
|
|
92795
92826
|
return this.constructor.name + ' ' + obj;
|
|
92796
92827
|
};
|
|
92797
92828
|
}
|
|
92798
|
-
},{"safe-buffer":
|
|
92829
|
+
},{"safe-buffer":421,"util":55}],415:[function(require,module,exports){
|
|
92799
92830
|
'use strict';
|
|
92800
92831
|
|
|
92801
92832
|
/*<replacement>*/
|
|
@@ -92870,12 +92901,12 @@ module.exports = {
|
|
|
92870
92901
|
destroy: destroy,
|
|
92871
92902
|
undestroy: undestroy
|
|
92872
92903
|
};
|
|
92873
|
-
},{"process-nextick-args":
|
|
92874
|
-
arguments[4][
|
|
92875
|
-
},{"dup":
|
|
92904
|
+
},{"process-nextick-args":321}],416:[function(require,module,exports){
|
|
92905
|
+
arguments[4][379][0].apply(exports,arguments)
|
|
92906
|
+
},{"dup":379,"events":178}],417:[function(require,module,exports){
|
|
92876
92907
|
module.exports = require('./readable').PassThrough
|
|
92877
92908
|
|
|
92878
|
-
},{"./readable":
|
|
92909
|
+
},{"./readable":418}],418:[function(require,module,exports){
|
|
92879
92910
|
exports = module.exports = require('./lib/_stream_readable.js');
|
|
92880
92911
|
exports.Stream = exports;
|
|
92881
92912
|
exports.Readable = exports;
|
|
@@ -92884,15 +92915,15 @@ exports.Duplex = require('./lib/_stream_duplex.js');
|
|
|
92884
92915
|
exports.Transform = require('./lib/_stream_transform.js');
|
|
92885
92916
|
exports.PassThrough = require('./lib/_stream_passthrough.js');
|
|
92886
92917
|
|
|
92887
|
-
},{"./lib/_stream_duplex.js":
|
|
92918
|
+
},{"./lib/_stream_duplex.js":409,"./lib/_stream_passthrough.js":410,"./lib/_stream_readable.js":411,"./lib/_stream_transform.js":412,"./lib/_stream_writable.js":413}],419:[function(require,module,exports){
|
|
92888
92919
|
module.exports = require('./readable').Transform
|
|
92889
92920
|
|
|
92890
|
-
},{"./readable":
|
|
92921
|
+
},{"./readable":418}],420:[function(require,module,exports){
|
|
92891
92922
|
module.exports = require('./lib/_stream_writable.js');
|
|
92892
92923
|
|
|
92893
|
-
},{"./lib/_stream_writable.js":
|
|
92894
|
-
arguments[4][
|
|
92895
|
-
},{"buffer":
|
|
92924
|
+
},{"./lib/_stream_writable.js":413}],421:[function(require,module,exports){
|
|
92925
|
+
arguments[4][98][0].apply(exports,arguments)
|
|
92926
|
+
},{"buffer":91,"dup":98}],422:[function(require,module,exports){
|
|
92896
92927
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
92897
92928
|
//
|
|
92898
92929
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -93189,7 +93220,7 @@ function simpleWrite(buf) {
|
|
|
93189
93220
|
function simpleEnd(buf) {
|
|
93190
93221
|
return buf && buf.length ? this.write(buf) : '';
|
|
93191
93222
|
}
|
|
93192
|
-
},{"safe-buffer":
|
|
93223
|
+
},{"safe-buffer":421}],423:[function(require,module,exports){
|
|
93193
93224
|
(function (global){(function (){
|
|
93194
93225
|
var ClientRequest = require('./lib/request')
|
|
93195
93226
|
var response = require('./lib/response')
|
|
@@ -93277,7 +93308,7 @@ http.METHODS = [
|
|
|
93277
93308
|
'UNSUBSCRIBE'
|
|
93278
93309
|
]
|
|
93279
93310
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
93280
|
-
},{"./lib/request":
|
|
93311
|
+
},{"./lib/request":425,"./lib/response":426,"builtin-status-codes":92,"url":443,"xtend":458}],424:[function(require,module,exports){
|
|
93281
93312
|
(function (global){(function (){
|
|
93282
93313
|
exports.fetch = isFunction(global.fetch) && isFunction(global.ReadableStream)
|
|
93283
93314
|
|
|
@@ -93340,7 +93371,7 @@ function isFunction (value) {
|
|
|
93340
93371
|
xhr = null // Help gc
|
|
93341
93372
|
|
|
93342
93373
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
93343
|
-
},{}],
|
|
93374
|
+
},{}],425:[function(require,module,exports){
|
|
93344
93375
|
(function (process,global,Buffer){(function (){
|
|
93345
93376
|
var capability = require('./capability')
|
|
93346
93377
|
var inherits = require('inherits')
|
|
@@ -93696,7 +93727,7 @@ var unsafeHeaders = [
|
|
|
93696
93727
|
]
|
|
93697
93728
|
|
|
93698
93729
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer)
|
|
93699
|
-
},{"./capability":
|
|
93730
|
+
},{"./capability":424,"./response":426,"_process":322,"buffer":91,"inherits":210,"readable-stream":380}],426:[function(require,module,exports){
|
|
93700
93731
|
(function (process,global,Buffer){(function (){
|
|
93701
93732
|
var capability = require('./capability')
|
|
93702
93733
|
var inherits = require('inherits')
|
|
@@ -93911,9 +93942,9 @@ IncomingMessage.prototype._onXHRProgress = function (resetTimers) {
|
|
|
93911
93942
|
}
|
|
93912
93943
|
|
|
93913
93944
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer)
|
|
93914
|
-
},{"./capability":
|
|
93915
|
-
arguments[4][
|
|
93916
|
-
},{"dup":
|
|
93945
|
+
},{"./capability":424,"_process":322,"buffer":91,"inherits":210,"readable-stream":380}],427:[function(require,module,exports){
|
|
93946
|
+
arguments[4][422][0].apply(exports,arguments)
|
|
93947
|
+
},{"dup":422,"safe-buffer":383}],428:[function(require,module,exports){
|
|
93917
93948
|
(function (setImmediate,clearImmediate){(function (){
|
|
93918
93949
|
var nextTick = require('process/browser.js').nextTick;
|
|
93919
93950
|
var apply = Function.prototype.apply;
|
|
@@ -93992,7 +94023,7 @@ exports.clearImmediate = typeof clearImmediate === "function" ? clearImmediate :
|
|
|
93992
94023
|
delete immediateIds[id];
|
|
93993
94024
|
};
|
|
93994
94025
|
}).call(this)}).call(this,require("timers").setImmediate,require("timers").clearImmediate)
|
|
93995
|
-
},{"process/browser.js":
|
|
94026
|
+
},{"process/browser.js":322,"timers":428}],429:[function(require,module,exports){
|
|
93996
94027
|
(function (Buffer){(function (){
|
|
93997
94028
|
const BN = require('bn.js')
|
|
93998
94029
|
const EC = require('elliptic').ec
|
|
@@ -94278,9 +94309,9 @@ module.exports = {
|
|
|
94278
94309
|
}
|
|
94279
94310
|
|
|
94280
94311
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
94281
|
-
},{"./rfc6979":
|
|
94282
|
-
arguments[4][
|
|
94283
|
-
},{"buffer":
|
|
94312
|
+
},{"./rfc6979":431,"bn.js":430,"buffer":91,"elliptic":149}],430:[function(require,module,exports){
|
|
94313
|
+
arguments[4][27][0].apply(exports,arguments)
|
|
94314
|
+
},{"buffer":55,"dup":27}],431:[function(require,module,exports){
|
|
94284
94315
|
(function (Buffer){(function (){
|
|
94285
94316
|
const createHmac = require('create-hmac')
|
|
94286
94317
|
|
|
@@ -94346,7 +94377,7 @@ function deterministicGenerateK (hash, x, checkSig, isPrivate, extraEntropy) {
|
|
|
94346
94377
|
module.exports = deterministicGenerateK
|
|
94347
94378
|
|
|
94348
94379
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
94349
|
-
},{"buffer":
|
|
94380
|
+
},{"buffer":91,"create-hmac":106}],432:[function(require,module,exports){
|
|
94350
94381
|
/*!
|
|
94351
94382
|
* toidentifier
|
|
94352
94383
|
* Copyright(c) 2016 Douglas Christopher Wilson
|
|
@@ -94378,7 +94409,7 @@ function toIdentifier (str) {
|
|
|
94378
94409
|
.replace(/[^ _0-9a-z]/gi, '')
|
|
94379
94410
|
}
|
|
94380
94411
|
|
|
94381
|
-
},{}],
|
|
94412
|
+
},{}],433:[function(require,module,exports){
|
|
94382
94413
|
'use strict';
|
|
94383
94414
|
|
|
94384
94415
|
// Implements Brad Hill's Double HMAC pattern from
|
|
@@ -94418,7 +94449,7 @@ function timeSafeCompare(a, b) {
|
|
|
94418
94449
|
|
|
94419
94450
|
module.exports = timeSafeCompare;
|
|
94420
94451
|
|
|
94421
|
-
},{"crypto":
|
|
94452
|
+
},{"crypto":108}],434:[function(require,module,exports){
|
|
94422
94453
|
/*!
|
|
94423
94454
|
* type-is
|
|
94424
94455
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -94686,7 +94717,7 @@ function tryNormalizeType (value) {
|
|
|
94686
94717
|
}
|
|
94687
94718
|
}
|
|
94688
94719
|
|
|
94689
|
-
},{"media-typer":
|
|
94720
|
+
},{"media-typer":259,"mime-types":264}],435:[function(require,module,exports){
|
|
94690
94721
|
(function (Buffer){(function (){
|
|
94691
94722
|
/**
|
|
94692
94723
|
* Convert a typed array to a Buffer without a copy
|
|
@@ -94715,7 +94746,7 @@ module.exports = function typedarrayToBuffer (arr) {
|
|
|
94715
94746
|
}
|
|
94716
94747
|
|
|
94717
94748
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
94718
|
-
},{"buffer":
|
|
94749
|
+
},{"buffer":91,"is-typedarray":221}],436:[function(require,module,exports){
|
|
94719
94750
|
var native = require('./native')
|
|
94720
94751
|
|
|
94721
94752
|
function getTypeName (fn) {
|
|
@@ -94827,7 +94858,7 @@ module.exports = {
|
|
|
94827
94858
|
getValueTypeName: getValueTypeName
|
|
94828
94859
|
}
|
|
94829
94860
|
|
|
94830
|
-
},{"./native":
|
|
94861
|
+
},{"./native":439}],437:[function(require,module,exports){
|
|
94831
94862
|
(function (Buffer){(function (){
|
|
94832
94863
|
var NATIVE = require('./native')
|
|
94833
94864
|
var ERRORS = require('./errors')
|
|
@@ -94922,7 +94953,7 @@ for (var typeName in types) {
|
|
|
94922
94953
|
module.exports = types
|
|
94923
94954
|
|
|
94924
94955
|
}).call(this)}).call(this,{"isBuffer":require("../is-buffer/index.js")})
|
|
94925
|
-
},{"../is-buffer/index.js":
|
|
94956
|
+
},{"../is-buffer/index.js":218,"./errors":436,"./native":439}],438:[function(require,module,exports){
|
|
94926
94957
|
var ERRORS = require('./errors')
|
|
94927
94958
|
var NATIVE = require('./native')
|
|
94928
94959
|
|
|
@@ -95184,7 +95215,7 @@ typeforce.TfPropertyTypeError = TfPropertyTypeError
|
|
|
95184
95215
|
|
|
95185
95216
|
module.exports = typeforce
|
|
95186
95217
|
|
|
95187
|
-
},{"./errors":
|
|
95218
|
+
},{"./errors":436,"./extra":437,"./native":439}],439:[function(require,module,exports){
|
|
95188
95219
|
var types = {
|
|
95189
95220
|
Array: function (value) { return value !== null && value !== undefined && value.constructor === Array },
|
|
95190
95221
|
Boolean: function (value) { return typeof value === 'boolean' },
|
|
@@ -95207,7 +95238,7 @@ for (var typeName in types) {
|
|
|
95207
95238
|
|
|
95208
95239
|
module.exports = types
|
|
95209
95240
|
|
|
95210
|
-
},{}],
|
|
95241
|
+
},{}],440:[function(require,module,exports){
|
|
95211
95242
|
'use strict'
|
|
95212
95243
|
|
|
95213
95244
|
const bases = require('./util/bases')
|
|
@@ -95240,7 +95271,7 @@ function fromString (string, encoding = 'utf8') {
|
|
|
95240
95271
|
|
|
95241
95272
|
module.exports = fromString
|
|
95242
95273
|
|
|
95243
|
-
},{"./util/bases":
|
|
95274
|
+
},{"./util/bases":442}],441:[function(require,module,exports){
|
|
95244
95275
|
'use strict'
|
|
95245
95276
|
|
|
95246
95277
|
const bases = require('./util/bases')
|
|
@@ -95273,7 +95304,7 @@ function toString (array, encoding = 'utf8') {
|
|
|
95273
95304
|
|
|
95274
95305
|
module.exports = toString
|
|
95275
95306
|
|
|
95276
|
-
},{"./util/bases":
|
|
95307
|
+
},{"./util/bases":442}],442:[function(require,module,exports){
|
|
95277
95308
|
'use strict'
|
|
95278
95309
|
|
|
95279
95310
|
const { bases } = require('multiformats/basics')
|
|
@@ -95350,7 +95381,7 @@ const BASES = {
|
|
|
95350
95381
|
|
|
95351
95382
|
module.exports = BASES
|
|
95352
95383
|
|
|
95353
|
-
},{"multiformats/basics":
|
|
95384
|
+
},{"multiformats/basics":283}],443:[function(require,module,exports){
|
|
95354
95385
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
95355
95386
|
//
|
|
95356
95387
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -96084,7 +96115,7 @@ Url.prototype.parseHost = function() {
|
|
|
96084
96115
|
if (host) this.hostname = host;
|
|
96085
96116
|
};
|
|
96086
96117
|
|
|
96087
|
-
},{"./util":
|
|
96118
|
+
},{"./util":444,"punycode":359,"querystring":362}],444:[function(require,module,exports){
|
|
96088
96119
|
'use strict';
|
|
96089
96120
|
|
|
96090
96121
|
module.exports = {
|
|
@@ -96102,7 +96133,7 @@ module.exports = {
|
|
|
96102
96133
|
}
|
|
96103
96134
|
};
|
|
96104
96135
|
|
|
96105
|
-
},{}],
|
|
96136
|
+
},{}],445:[function(require,module,exports){
|
|
96106
96137
|
(function (global){(function (){
|
|
96107
96138
|
|
|
96108
96139
|
/**
|
|
@@ -96173,13 +96204,13 @@ function config (name) {
|
|
|
96173
96204
|
}
|
|
96174
96205
|
|
|
96175
96206
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
96176
|
-
},{}],
|
|
96177
|
-
arguments[4][28][0].apply(exports,arguments)
|
|
96178
|
-
},{"dup":28}],446:[function(require,module,exports){
|
|
96207
|
+
},{}],446:[function(require,module,exports){
|
|
96179
96208
|
arguments[4][29][0].apply(exports,arguments)
|
|
96180
96209
|
},{"dup":29}],447:[function(require,module,exports){
|
|
96181
96210
|
arguments[4][30][0].apply(exports,arguments)
|
|
96182
|
-
},{"
|
|
96211
|
+
},{"dup":30}],448:[function(require,module,exports){
|
|
96212
|
+
arguments[4][31][0].apply(exports,arguments)
|
|
96213
|
+
},{"./support/isBuffer":447,"_process":322,"dup":31,"inherits":446}],449:[function(require,module,exports){
|
|
96183
96214
|
module.exports = read
|
|
96184
96215
|
|
|
96185
96216
|
var MSB = 0x80
|
|
@@ -96210,7 +96241,7 @@ function read(buf, offset) {
|
|
|
96210
96241
|
return res
|
|
96211
96242
|
}
|
|
96212
96243
|
|
|
96213
|
-
},{}],
|
|
96244
|
+
},{}],450:[function(require,module,exports){
|
|
96214
96245
|
module.exports = encode
|
|
96215
96246
|
|
|
96216
96247
|
var MSB = 0x80
|
|
@@ -96242,11 +96273,11 @@ function encode(num, out, offset) {
|
|
|
96242
96273
|
return out
|
|
96243
96274
|
}
|
|
96244
96275
|
|
|
96245
|
-
},{}],
|
|
96246
|
-
arguments[4][270][0].apply(exports,arguments)
|
|
96247
|
-
},{"./decode.js":448,"./encode.js":449,"./length.js":451,"dup":270}],451:[function(require,module,exports){
|
|
96276
|
+
},{}],451:[function(require,module,exports){
|
|
96248
96277
|
arguments[4][271][0].apply(exports,arguments)
|
|
96249
|
-
},{"dup":271}],452:[function(require,module,exports){
|
|
96278
|
+
},{"./decode.js":449,"./encode.js":450,"./length.js":452,"dup":271}],452:[function(require,module,exports){
|
|
96279
|
+
arguments[4][272][0].apply(exports,arguments)
|
|
96280
|
+
},{"dup":272}],453:[function(require,module,exports){
|
|
96250
96281
|
/*!
|
|
96251
96282
|
* vary
|
|
96252
96283
|
* Copyright(c) 2014-2017 Douglas Christopher Wilson
|
|
@@ -96397,7 +96428,7 @@ function vary (res, field) {
|
|
|
96397
96428
|
}
|
|
96398
96429
|
}
|
|
96399
96430
|
|
|
96400
|
-
},{}],
|
|
96431
|
+
},{}],454:[function(require,module,exports){
|
|
96401
96432
|
var _globalThis;
|
|
96402
96433
|
try {
|
|
96403
96434
|
_globalThis = require('es5-ext/global');
|
|
@@ -96449,10 +96480,10 @@ module.exports = {
|
|
|
96449
96480
|
'version' : websocket_version
|
|
96450
96481
|
};
|
|
96451
96482
|
|
|
96452
|
-
},{"./version":
|
|
96483
|
+
},{"./version":455,"es5-ext/global":176}],455:[function(require,module,exports){
|
|
96453
96484
|
module.exports = require('../package.json').version;
|
|
96454
96485
|
|
|
96455
|
-
},{"../package.json":
|
|
96486
|
+
},{"../package.json":456}],456:[function(require,module,exports){
|
|
96456
96487
|
module.exports={
|
|
96457
96488
|
"_from": "websocket@^1.0.31",
|
|
96458
96489
|
"_id": "websocket@1.0.32",
|
|
@@ -96549,7 +96580,7 @@ module.exports={
|
|
|
96549
96580
|
"version": "1.0.32"
|
|
96550
96581
|
}
|
|
96551
96582
|
|
|
96552
|
-
},{}],
|
|
96583
|
+
},{}],457:[function(require,module,exports){
|
|
96553
96584
|
(function (Buffer){(function (){
|
|
96554
96585
|
var bs58check = require('bs58check')
|
|
96555
96586
|
|
|
@@ -96616,7 +96647,7 @@ module.exports = {
|
|
|
96616
96647
|
}
|
|
96617
96648
|
|
|
96618
96649
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
96619
|
-
},{"bs58check":
|
|
96650
|
+
},{"bs58check":88,"buffer":91}],458:[function(require,module,exports){
|
|
96620
96651
|
module.exports = extend
|
|
96621
96652
|
|
|
96622
96653
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -96637,7 +96668,7 @@ function extend() {
|
|
|
96637
96668
|
return target
|
|
96638
96669
|
}
|
|
96639
96670
|
|
|
96640
|
-
},{}],
|
|
96671
|
+
},{}],459:[function(require,module,exports){
|
|
96641
96672
|
module.exports = extend
|
|
96642
96673
|
|
|
96643
96674
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -96656,7 +96687,7 @@ function extend(target) {
|
|
|
96656
96687
|
return target
|
|
96657
96688
|
}
|
|
96658
96689
|
|
|
96659
|
-
},{}],
|
|
96690
|
+
},{}],460:[function(require,module,exports){
|
|
96660
96691
|
'use strict';
|
|
96661
96692
|
|
|
96662
96693
|
class LRU {
|