@waku/core 0.0.34-c41b319.0 → 0.0.34-c8128d1.0
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/bundle/{base_protocol-CCK9RCtH.js → base_protocol-Bp5a9PNG.js} +1 -1
- package/bundle/{index-Db7LxDrL.js → index-G1eRBjeI.js} +40 -45
- package/bundle/index.js +18 -25
- package/bundle/lib/base_protocol.js +2 -2
- package/bundle/lib/message/version_0.js +2 -2
- package/bundle/{version_0-ANFNAdFD.js → version_0-DJZG2fB2.js} +1 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/lib/light_push/light_push.js +5 -5
- package/dist/lib/light_push/light_push.js.map +1 -1
- package/dist/lib/light_push/utils.d.ts +0 -2
- package/dist/lib/light_push/utils.js +9 -17
- package/dist/lib/light_push/utils.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/light_push/light_push.ts +5 -5
- package/src/lib/light_push/utils.ts +13 -21
@@ -654,43 +654,24 @@ var Protocols;
|
|
654
654
|
})(Protocols || (Protocols = {}));
|
655
655
|
var ProtocolError;
|
656
656
|
(function (ProtocolError) {
|
657
|
-
|
657
|
+
//
|
658
|
+
// GENERAL ERRORS SECTION
|
659
|
+
//
|
660
|
+
/**
|
661
|
+
* Could not determine the origin of the fault. Best to check connectivity and try again
|
662
|
+
* */
|
658
663
|
ProtocolError["GENERIC_FAIL"] = "Generic error";
|
659
664
|
/**
|
660
|
-
*
|
661
|
-
*
|
665
|
+
* The remote peer rejected the message. Information provided by the remote peer
|
666
|
+
* is logged. Review message validity, or mitigation for `NO_PEER_AVAILABLE`
|
667
|
+
* or `DECODE_FAILED` can be used.
|
662
668
|
*/
|
663
|
-
ProtocolError["
|
669
|
+
ProtocolError["REMOTE_PEER_REJECTED"] = "Remote peer rejected";
|
664
670
|
/**
|
665
671
|
* Failure to protobuf decode the message. May be due to a remote peer issue,
|
666
672
|
* ensuring that messages are sent via several peer enable mitigation of this error.
|
667
673
|
*/
|
668
674
|
ProtocolError["DECODE_FAILED"] = "Failed to decode";
|
669
|
-
/**
|
670
|
-
* The message payload is empty, making the message invalid. Ensure that a non-empty
|
671
|
-
* payload is set on the outgoing message.
|
672
|
-
*/
|
673
|
-
ProtocolError["EMPTY_PAYLOAD"] = "Payload is empty";
|
674
|
-
/**
|
675
|
-
* The message size is above the maximum message size allowed on the Waku Network.
|
676
|
-
* Compressing the message or using an alternative strategy for large messages is recommended.
|
677
|
-
*/
|
678
|
-
ProtocolError["SIZE_TOO_BIG"] = "Size is too big";
|
679
|
-
/**
|
680
|
-
* The PubsubTopic passed to the send function is not configured on the Waku node.
|
681
|
-
* Please ensure that the PubsubTopic is used when initializing the Waku node.
|
682
|
-
*/
|
683
|
-
ProtocolError["TOPIC_NOT_CONFIGURED"] = "Topic not configured";
|
684
|
-
/**
|
685
|
-
* The pubsub topic configured on the decoder does not match the pubsub topic setup on the protocol.
|
686
|
-
* Ensure that the pubsub topic used for decoder creation is the same as the one used for protocol.
|
687
|
-
*/
|
688
|
-
ProtocolError["TOPIC_DECODER_MISMATCH"] = "Topic decoder mismatch";
|
689
|
-
/**
|
690
|
-
* The topics passed in the decoders do not match each other, or don't exist at all.
|
691
|
-
* Ensure that all the pubsub topics used in the decoders are valid and match each other.
|
692
|
-
*/
|
693
|
-
ProtocolError["INVALID_DECODER_TOPICS"] = "Invalid decoder topics";
|
694
675
|
/**
|
695
676
|
* Failure to find a peer with suitable protocols. This may due to a connection issue.
|
696
677
|
* Mitigation can be: retrying after a given time period, display connectivity issue
|
@@ -708,37 +689,51 @@ var ProtocolError;
|
|
708
689
|
* or `DECODE_FAILED` can be used.
|
709
690
|
*/
|
710
691
|
ProtocolError["NO_RESPONSE"] = "No response received";
|
692
|
+
//
|
693
|
+
// SEND ERRORS SECTION
|
694
|
+
//
|
711
695
|
/**
|
712
|
-
*
|
713
|
-
*
|
714
|
-
* or `DECODE_FAILED` can be used.
|
696
|
+
* Failure to protobuf encode the message. This is not recoverable and needs
|
697
|
+
* further investigation.
|
715
698
|
*/
|
716
|
-
ProtocolError["
|
699
|
+
ProtocolError["ENCODE_FAILED"] = "Failed to encode";
|
717
700
|
/**
|
718
|
-
* The
|
719
|
-
*
|
701
|
+
* The message payload is empty, making the message invalid. Ensure that a non-empty
|
702
|
+
* payload is set on the outgoing message.
|
720
703
|
*/
|
721
|
-
ProtocolError["
|
704
|
+
ProtocolError["EMPTY_PAYLOAD"] = "Payload is empty";
|
722
705
|
/**
|
723
|
-
*
|
724
|
-
*
|
706
|
+
* The message size is above the maximum message size allowed on the Waku Network.
|
707
|
+
* Compressing the message or using an alternative strategy for large messages is recommended.
|
725
708
|
*/
|
726
|
-
ProtocolError["
|
709
|
+
ProtocolError["SIZE_TOO_BIG"] = "Size is too big";
|
727
710
|
/**
|
728
|
-
*
|
729
|
-
*
|
711
|
+
* The PubsubTopic passed to the send function is not configured on the Waku node.
|
712
|
+
* Please ensure that the PubsubTopic is used when initializing the Waku node.
|
730
713
|
*/
|
731
|
-
ProtocolError["
|
714
|
+
ProtocolError["TOPIC_NOT_CONFIGURED"] = "Topic not configured";
|
732
715
|
/**
|
733
|
-
*
|
734
|
-
* nwaku: https://github.com/waku-org/nwaku/blob/c3cb06ac6c03f0f382d3941ea53b330f6a8dd127/waku/waku_rln_relay/group_manager/group_manager_base.nim#L190
|
716
|
+
* Fails when
|
735
717
|
*/
|
736
|
-
ProtocolError["
|
718
|
+
ProtocolError["STREAM_ABORTED"] = "Stream aborted";
|
737
719
|
/**
|
738
720
|
* General proof generation error message.
|
739
721
|
* nwaku: https://github.com/waku-org/nwaku/blob/c3cb06ac6c03f0f382d3941ea53b330f6a8dd127/waku/waku_rln_relay/group_manager/group_manager_base.nim#L201C19-L201C42
|
740
722
|
*/
|
741
723
|
ProtocolError["RLN_PROOF_GENERATION"] = "Proof generation failed";
|
724
|
+
//
|
725
|
+
// RECEIVE ERRORS SECTION
|
726
|
+
//
|
727
|
+
/**
|
728
|
+
* The pubsub topic configured on the decoder does not match the pubsub topic setup on the protocol.
|
729
|
+
* Ensure that the pubsub topic used for decoder creation is the same as the one used for protocol.
|
730
|
+
*/
|
731
|
+
ProtocolError["TOPIC_DECODER_MISMATCH"] = "Topic decoder mismatch";
|
732
|
+
/**
|
733
|
+
* The topics passed in the decoders do not match each other, or don't exist at all.
|
734
|
+
* Ensure that all the pubsub topics used in the decoders are valid and match each other.
|
735
|
+
*/
|
736
|
+
ProtocolError["INVALID_DECODER_TOPICS"] = "Invalid decoder topics";
|
742
737
|
})(ProtocolError || (ProtocolError = {}));
|
743
738
|
|
744
739
|
var Tags;
|
package/bundle/index.js
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
import { v as version_0, a as allocUnsafe, b as alloc, e as encodingLength$1, c as encode$2, d as decode$4, M as MessagePush, F as FilterSubscribeRequest, f as FilterSubscribeResponse$1, P as PushRpc$1, g as PushResponse, S as StoreQueryRequest$1, h as StoreQueryResponse$1, t as toString$1, i as bases, j as fromString, u as utf8ToBytes, k as createEncoder, p as pubsubTopicToSingleShardInfo, l as bytesToUtf8, s as shardInfoToPubsubTopics, W as WakuMetadataRequest, m as pubsubTopicsToShardInfo, n as WakuMetadataResponse } from './version_0-
|
2
|
-
export { o as createDecoder } from './version_0-
|
3
|
-
import { c as coerce, e as equals$2, b as base36, a as base32, d as base58btc, L as Logger, P as ProtocolError, T as Tags, E as EPeersByDiscoveryEvents, f as EConnectionStateEvents } from './index-
|
4
|
-
import { B as BaseProtocol } from './base_protocol-
|
5
|
-
export { S as StreamManager } from './base_protocol-
|
1
|
+
import { v as version_0, a as allocUnsafe, b as alloc, e as encodingLength$1, c as encode$2, d as decode$4, M as MessagePush, F as FilterSubscribeRequest, f as FilterSubscribeResponse$1, P as PushRpc$1, g as PushResponse, S as StoreQueryRequest$1, h as StoreQueryResponse$1, t as toString$1, i as bases, j as fromString, u as utf8ToBytes, k as createEncoder, p as pubsubTopicToSingleShardInfo, l as bytesToUtf8, s as shardInfoToPubsubTopics, W as WakuMetadataRequest, m as pubsubTopicsToShardInfo, n as WakuMetadataResponse } from './version_0-DJZG2fB2.js';
|
2
|
+
export { o as createDecoder } from './version_0-DJZG2fB2.js';
|
3
|
+
import { c as coerce, e as equals$2, b as base36, a as base32, d as base58btc, L as Logger, P as ProtocolError, T as Tags, E as EPeersByDiscoveryEvents, f as EConnectionStateEvents } from './index-G1eRBjeI.js';
|
4
|
+
import { B as BaseProtocol } from './base_protocol-Bp5a9PNG.js';
|
5
|
+
export { S as StreamManager } from './base_protocol-Bp5a9PNG.js';
|
6
6
|
|
7
7
|
/* eslint-disable */
|
8
8
|
var encode_1 = encode$1;
|
@@ -2362,26 +2362,19 @@ class PushRpc {
|
|
2362
2362
|
// should match nwaku
|
2363
2363
|
// https://github.com/waku-org/nwaku/blob/c3cb06ac6c03f0f382d3941ea53b330f6a8dd127/waku/waku_rln_relay/rln_relay.nim#L309
|
2364
2364
|
// https://github.com/waku-org/nwaku/blob/c3cb06ac6c03f0f382d3941ea53b330f6a8dd127/tests/waku_rln_relay/rln/waku_rln_relay_utils.nim#L20
|
2365
|
-
const RLN_GENERATION_PREFIX_ERROR = "could not generate rln
|
2365
|
+
const RLN_GENERATION_PREFIX_ERROR = "could not generate rln proof";
|
2366
|
+
const RLN_MESSAGE_ID_PREFIX_ERROR = "could not get new message id to generate an rln proof";
|
2367
|
+
// rare case on nwaku side
|
2368
|
+
// https://github.com/waku-org/nwaku/blob/a4e92a3d02448fd708857b7b6cac2a7faa7eb4f9/waku/waku_lightpush/callbacks.nim#L49
|
2369
|
+
// https://github.com/waku-org/nwaku/blob/a4e92a3d02448fd708857b7b6cac2a7faa7eb4f9/waku/node/waku_node.nim#L1117
|
2370
|
+
const RLN_REMOTE_VALIDATION = "RLN validation failed";
|
2366
2371
|
const isRLNResponseError = (info) => {
|
2367
2372
|
if (!info) {
|
2368
2373
|
return false;
|
2369
2374
|
}
|
2370
|
-
return info.includes(RLN_GENERATION_PREFIX_ERROR)
|
2371
|
-
|
2372
|
-
|
2373
|
-
const rlnErrorMap = {
|
2374
|
-
[ProtocolError.RLN_IDENTITY_MISSING]: ProtocolError.RLN_IDENTITY_MISSING,
|
2375
|
-
[ProtocolError.RLN_MEMBERSHIP_INDEX]: ProtocolError.RLN_MEMBERSHIP_INDEX,
|
2376
|
-
[ProtocolError.RLN_LIMIT_MISSING]: ProtocolError.RLN_LIMIT_MISSING
|
2377
|
-
};
|
2378
|
-
const infoLowerCase = info.toLowerCase();
|
2379
|
-
for (const errorKey in rlnErrorMap) {
|
2380
|
-
if (infoLowerCase.includes(errorKey.toLowerCase())) {
|
2381
|
-
return rlnErrorMap[errorKey];
|
2382
|
-
}
|
2383
|
-
}
|
2384
|
-
return ProtocolError.RLN_PROOF_GENERATION;
|
2375
|
+
return (info.includes(RLN_GENERATION_PREFIX_ERROR) ||
|
2376
|
+
info.includes(RLN_MESSAGE_ID_PREFIX_ERROR) ||
|
2377
|
+
info.includes(RLN_REMOTE_VALIDATION));
|
2385
2378
|
};
|
2386
2379
|
|
2387
2380
|
const log$4 = new Logger("light-push");
|
@@ -2454,11 +2447,12 @@ class LightPushCore extends BaseProtocol {
|
|
2454
2447
|
res = await pipe([query.encode()], encode, stream, decode, async (source) => await all(source));
|
2455
2448
|
}
|
2456
2449
|
catch (err) {
|
2450
|
+
// can fail only because of `stream` abortion
|
2457
2451
|
log$4.error("Failed to send waku light push request", err);
|
2458
2452
|
return {
|
2459
2453
|
success: null,
|
2460
2454
|
failure: {
|
2461
|
-
error: ProtocolError.
|
2455
|
+
error: ProtocolError.STREAM_ABORTED,
|
2462
2456
|
peerId: peerId
|
2463
2457
|
}
|
2464
2458
|
};
|
@@ -2492,12 +2486,11 @@ class LightPushCore extends BaseProtocol {
|
|
2492
2486
|
};
|
2493
2487
|
}
|
2494
2488
|
if (isRLNResponseError(response.info)) {
|
2495
|
-
|
2496
|
-
log$4.error("Remote peer rejected the message: ", rlnErrorCase);
|
2489
|
+
log$4.error("Remote peer fault: RLN generation");
|
2497
2490
|
return {
|
2498
2491
|
success: null,
|
2499
2492
|
failure: {
|
2500
|
-
error:
|
2493
|
+
error: ProtocolError.RLN_PROOF_GENERATION,
|
2501
2494
|
peerId: peerId
|
2502
2495
|
}
|
2503
2496
|
};
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export { B as BaseProtocol } from '../base_protocol-
|
2
|
-
import '../index-
|
1
|
+
export { B as BaseProtocol } from '../base_protocol-Bp5a9PNG.js';
|
2
|
+
import '../index-G1eRBjeI.js';
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export { D as DecodedMessage, r as Decoder, E as Encoder, V as Version, o as createDecoder, k as createEncoder, q as proto } from '../../version_0-
|
2
|
-
import '../../index-
|
1
|
+
export { D as DecodedMessage, r as Decoder, E as Encoder, V as Version, o as createDecoder, k as createEncoder, q as proto } from '../../version_0-DJZG2fB2.js';
|
2
|
+
import '../../index-G1eRBjeI.js';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { i as identityBase, g as base2, h as base8, j as base10, k as base16, l as base32, m as base36, n as base58, o as base64, p as base256emoji, L as Logger } from './index-
|
1
|
+
import { i as identityBase, g as base2, h as base8, j as base10, k as base16, l as base32, m as base36, n as base58, o as base64, p as base256emoji, L as Logger } from './index-G1eRBjeI.js';
|
2
2
|
|
3
3
|
/**
|
4
4
|
* Returns a `Uint8Array` of the requested size. Referenced memory will
|
package/dist/.tsbuildinfo
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/multiformats/dist/src/bases/interface.d.ts","../../../node_modules/multiformats/dist/src/block/interface.d.ts","../../../node_modules/multiformats/dist/src/hashes/interface.d.ts","../../../node_modules/multiformats/dist/src/link/interface.d.ts","../../../node_modules/multiformats/dist/src/cid.d.ts","../../../node_modules/uint8arraylist/dist/src/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/keys/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-id/index.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/protocols-table.d.ts","../../../node_modules/@multiformats/dns/dist/src/resolvers/dns-over-https.d.ts","../../../node_modules/@multiformats/dns/dist/src/resolvers/dns-json-over-https.d.ts","../../../node_modules/@multiformats/dns/dist/src/resolvers/index.d.ts","../../../node_modules/progress-events/dist/src/index.d.ts","../../../node_modules/@multiformats/dns/dist/src/index.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/resolvers/dnsaddr.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/resolvers/index.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/filter/multiaddr-filter.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/index.d.ts","../../../node_modules/it-stream-types/dist/src/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/connection/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-info/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/content-routing/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/event-target.d.ts","../../../node_modules/@libp2p/interface/dist/src/metrics/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-routing/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-store/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/startable.d.ts","../../../node_modules/@libp2p/interface/dist/src/stream-handler/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/topology/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/stream-muxer/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/transport/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/connection-encrypter/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/connection-gater/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-discovery/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-store/tags.d.ts","../../../node_modules/it-pushable/dist/src/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/pubsub/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/record/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/errors.d.ts","../../../node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/ts5.6/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/events.d.ts","../../../node_modules/@libp2p/interface/dist/src/index.d.ts","../../interfaces/dist/sharding.d.ts","../../interfaces/dist/enr.d.ts","../../interfaces/dist/connection_manager.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/message/decodeRpc.d.ts","../../../node_modules/protons-runtime/dist/src/codec.d.ts","../../../node_modules/protons-runtime/dist/src/decode.d.ts","../../../node_modules/protons-runtime/dist/src/encode.d.ts","../../../node_modules/protons-runtime/dist/src/codecs/enum.d.ts","../../../node_modules/protons-runtime/dist/src/codecs/message.d.ts","../../../node_modules/protons-runtime/dist/src/utils/reader.d.ts","../../../node_modules/protons-runtime/dist/src/utils/writer.d.ts","../../../node_modules/protons-runtime/dist/src/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/message/rpc.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/types.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/message-cache.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-score-thresholds.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/metrics.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-score-params.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/utils/set.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-stats.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/compute-score.d.ts","../../../node_modules/denque/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/message-deliveries.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-score.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/stream.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/tracer.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/config.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/address-manager/index.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/map.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/set.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/list.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/filter.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/tracked-map.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/tracked-set.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/tracked-list.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/connection-manager/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/random-walk/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/record/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/registrar/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/transport-manager/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/index.d.ts","../../../node_modules/@libp2p/identify/dist/src/index.d.ts","../../../node_modules/@libp2p/ping/dist/src/constants.d.ts","../../../node_modules/@libp2p/ping/dist/src/index.d.ts","../../../node_modules/libp2p/dist/src/address-manager/index.d.ts","../../../node_modules/multiformats/dist/src/codecs/interface.d.ts","../../../node_modules/multiformats/dist/src/codecs/json.d.ts","../../../node_modules/multiformats/dist/src/codecs/raw.d.ts","../../../node_modules/multiformats/dist/src/bytes.d.ts","../../../node_modules/multiformats/dist/src/hashes/digest.d.ts","../../../node_modules/multiformats/dist/src/hashes/hasher.d.ts","../../../node_modules/multiformats/dist/src/varint.d.ts","../../../node_modules/multiformats/dist/src/interface.d.ts","../../../node_modules/multiformats/dist/src/index.d.ts","../../../node_modules/multiformats/dist/src/bases/base.d.ts","../../../node_modules/multiformats/dist/src/basics.d.ts","../../../node_modules/uint8arrays/dist/src/util/bases.d.ts","../../../node_modules/uint8arrays/dist/src/to-string.d.ts","../../../node_modules/interface-datastore/dist/src/key.d.ts","../../../node_modules/interface-store/dist/src/errors.d.ts","../../../node_modules/interface-store/dist/src/index.d.ts","../../../node_modules/interface-datastore/dist/src/index.d.ts","../../../node_modules/libp2p/dist/src/components.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/connection-pruner.d.ts","../../../node_modules/p-defer/index.d.ts","../../../node_modules/@libp2p/utils/dist/src/queue/recipient.d.ts","../../../node_modules/@libp2p/utils/dist/src/queue/job.d.ts","../../../node_modules/@libp2p/utils/dist/src/queue/index.d.ts","../../../node_modules/@libp2p/utils/dist/src/priority-queue.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/dial-queue.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/reconnect-queue.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/index.d.ts","../../../node_modules/any-signal/dist/src/index.d.ts","../../../node_modules/@libp2p/utils/dist/src/adaptive-timeout.d.ts","../../../node_modules/libp2p/dist/src/connection-monitor.d.ts","../../../node_modules/libp2p/dist/src/transport-manager.d.ts","../../../node_modules/@libp2p/peer-store/dist/src/index.d.ts","../../../node_modules/libp2p/dist/src/index.d.ts","../../interfaces/dist/metadata.d.ts","../../interfaces/dist/libp2p.d.ts","../../interfaces/dist/store.d.ts","../../interfaces/dist/protocols.d.ts","../../interfaces/dist/misc.d.ts","../../interfaces/dist/message.d.ts","../../interfaces/dist/receiver.d.ts","../../interfaces/dist/filter.d.ts","../../interfaces/dist/sender.d.ts","../../interfaces/dist/light_push.d.ts","../../interfaces/dist/peer_exchange.d.ts","../../interfaces/dist/relay.d.ts","../../interfaces/dist/health_indicator.d.ts","../../interfaces/dist/waku.d.ts","../../interfaces/dist/dns_discovery.d.ts","../../interfaces/dist/constants.d.ts","../../interfaces/dist/local_storage.d.ts","../../interfaces/dist/index.d.ts","../../proto/dist/generated/message.d.ts","../../proto/dist/generated/filter.d.ts","../../proto/dist/generated/topic_only_message.d.ts","../../proto/dist/generated/filter_v2.d.ts","../../proto/dist/generated/light_push.d.ts","../../proto/dist/generated/store_v3.d.ts","../../proto/dist/generated/peer_exchange.d.ts","../../proto/dist/generated/metadata.d.ts","../../proto/dist/generated/sds_message.d.ts","../../proto/dist/index.d.ts","../../utils/dist/common/is_defined.d.ts","../../utils/dist/common/random_subset.d.ts","../../utils/dist/common/group_by.d.ts","../../utils/dist/common/to_async_iterator.d.ts","../../utils/dist/common/is_size_valid.d.ts","../../utils/dist/common/sharding/type_guards.d.ts","../../utils/dist/common/sharding/index.d.ts","../../utils/dist/common/push_or_init_map.d.ts","../../utils/dist/common/relay_shard_codec.d.ts","../../utils/dist/common/delay.d.ts","../../utils/dist/common/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../utils/dist/logger/index.d.ts","../../utils/dist/index.d.ts","../src/lib/message/version_0.ts","../src/lib/message/index.ts","../../../node_modules/it-all/dist/src/index.d.ts","../../../node_modules/it-length-prefixed/dist/src/encode.d.ts","../../../node_modules/it-reader/dist/src/index.d.ts","../../../node_modules/it-length-prefixed/dist/src/decode.d.ts","../../../node_modules/it-length-prefixed/dist/src/index.d.ts","../../../node_modules/it-pipe/dist/src/index.d.ts","../src/lib/stream_manager/utils.ts","../src/lib/stream_manager/stream_manager.ts","../src/lib/stream_manager/index.ts","../src/lib/base_protocol.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/uuid/index.d.mts","../src/lib/filter/filter_rpc.ts","../src/lib/filter/filter.ts","../src/lib/filter/index.ts","../src/lib/light_push/push_rpc.ts","../src/lib/light_push/utils.ts","../src/lib/light_push/light_push.ts","../src/lib/light_push/index.ts","../src/lib/to_proto_message.ts","../src/lib/store/rpc.ts","../src/lib/store/store.ts","../src/lib/store/index.ts","../../utils/dist/bytes/index.d.ts","../src/lib/connection_manager/keep_alive_manager.ts","../src/lib/connection_manager/utils.ts","../src/lib/connection_manager/connection_manager.ts","../src/lib/connection_manager/index.ts","../src/lib/metadata/metadata.ts","../src/lib/metadata/index.ts","../src/index.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"4a3605bef1a5ef29fd5a1696dd95b0b4e2259e2d07a4d88fac79f3a9765c44a2","370079895f1acdd4bb5194a403c85bf60cfbb2654bced9430a6c7210e7246be8","90240231e730deed31569f6c686766a538e4a024bbc33ea1738fe924f477ba61","552223520e823223ee13c5764e9b69b1819c985818a8bcda435d8d1dbd909bee","49b7c3ddd683c09aa437dd92681699387441f522524b14d2331ce494a9bf2f27","d35b5db21a04a45ae6323c4d4b25acc983dfe2870fc670fd05249eb19d839a5e","ae34b0761f88cf20e922e338970944f0e3abf193cfd4c5589bb03dddd3ca6fc0","51720c0374406647b50f84f24c7b623f1d01e1955f7e929da7c5c0629b4390ad","5212dd78d1d63ab33332c8846a0ea5ce248159e74033cde16de48373036b4704","954b3c04ee9f94ca1e262f3e5a6e833b0da0066514b3d4b97b92b7f0c85f8700","a2fc9ce1ae5bed7068d701d8aeebf13321de0f42c217dc2e10f1622dcaa53a7f","8e81f220cb935d551e88cff11541d5e89d3a3494a52fe6247e98016a9dbd4c2d","6b2576a04253626ba41b7dc7ec5977bec07f3b6952b16249d9fa8a3a0d79901c","9de17491f2bfbccea92500e174079d53bdedae34dbebe5d4a12a06ab09814710","e88481085a8576fa52efc913e631c1a833d16179486469b8538d8c4fab2f7381","cc8c0bbe9fa2399c83e9f5492f82c55fe184380a371dd6fa462586c6563b054b","d71577e78c7a4257074aaf82f595724175210c89e8b467ef82f949a6cbd891bc","cd06dcbbe6e48955b12865c240d5d3c58694bf042046341b9f0da6e1c5232fb1","c84146dbc9d2e5f43d2cbf15485a4eabf90219dbb66c0d481f20f12d3851bffc","323aa55bca8a32c4b48353f48683bdc02aca0d985757f86f7610bb6bcd719561","99c24f331c9f4e75a779b9a988e942442db3cf29923ceb820d3bdd4ed1edfef2","5d4e6e11d3aaba5a69a69916adf8165b1f51e6fb11e7b5fd4f5b813e231e8950","4105fa0ecfaffb578c8051c3de22e8c984191aac8de14641ee99beed9c5e5bd9","75dfa36d9a0ee14766ba9d9667a44b984966fa5b7d59d4d34ff3e6973525112e","8c92080253bac0506d82b83d555a029582595f0944abb349954ea732322baa5c","45d4c8d63a67224af62bebff18da32bb2817e306c9fd9e5d1dac6ef8d2da7ead","230eb449f719119cab1728252f20ecdd36d7a20cef659e4a51ada1a232a8aaad","2b83c561e623b28a06f15e44b02ccbc7b4ec388c8ffb8646132487a1fd7c99c4","c1c7b50665ce0b8aa4b95f3843167ac7ac25d1f724d77c2a07b597abb9cf394c","1bf687d978bdd6d5aff10b9eb0ff0695179f8594d4446946fd0182d6d25fa433","9c0cf2ad522b28f8b39ac64e93571edd60df1faceef3b34f407f8607a0366492","e0ff6a627dfbfb9d32e49f34879a763680e37758c509ddd809cb316b96f34390","2113d72680c7ddad6d3b6f70a29432a35c074c94ec6823a7c16ccd69847d965c","c8ffd61bf2db2e7bccb996dd70c9499805cb338f1b1c781987e38ba99dd5b296","0ccbc75ac044b52144323f80054d8e0ec571a4368349d10aa77c0aaf1bb50eb0","fac83d4c6898d5bf90c508cc84409ded40fdc14611cf42d7fb750fb2c7847979","d012f94950fd654771664f96132a11fcaacde6226ac421516ec5aff3ef25b449","4f1eb6b9c2b666278e09019281953fc4ecadad3b2ba2781b2602445743eaaeca","75848e9f0cfb046e64bc8610b0b07e97288d340196a2d5bc6bcbf01e595a81d9",{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"2d1319e6b5d0efd8c5eae07eb864a00102151e8b9afddd2d45db52e9aae002c4","affectsGlobalScope":true},"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"d2bc987ae352271d0d615a420dcf98cc886aa16b87fb2b569358c1fe0ca0773d","affectsGlobalScope":true},"f52e8dacc97d71dcc96af29e49584353f9c54cb916d132e3e768d8b8129c928d","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0",{"version":"53eac70430b30089a3a1959d8306b0f9cfaf0de75224b68ef25243e0b5ad1ca3","affectsGlobalScope":true},"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7",{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"86956cc2eb9dd371d6fab493d326a574afedebf76eef3fa7833b8e0d9b52d6f1","affectsGlobalScope":true},"91c1a729db5b28b2fc32bafa7a53611d417bc3f03f649278d4fd948aa4dec898","e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true},"1ff5a53a58e756d2661b73ba60ffe274231a4432d21f7a2d0d9e4f6aa99f4283","eaf9ee1d90a35d56264f0bf39842282c58b9219e112ac7d0c1bce98c6c5da672","c15c4427ae7fd1dcd7f312a8a447ac93581b0d4664ddf151ecd07de4bf2bb9d7","5135bdd72cc05a8192bd2e92f0914d7fc43ee077d1293dc622a049b7035a0afb","4f80de3a11c0d2f1329a72e92c7416b2f7eab14f67e92cac63bb4e8d01c6edc8","6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6",{"version":"c72ccc191348ac1933226cab7a814cfda8b29a827d1df5dbebfe516a6fd734a8","affectsGlobalScope":true},"8bea55446a296d289fbc762f61954a0e3e38ffbcacc06e47e0cba491030e3235","b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0",{"version":"3eb62baae4df08c9173e6903d3ca45942ccec8c3659b0565684a75f3292cffbb","affectsGlobalScope":true},{"version":"42aaa94addeed66a04b61e433c14e829c43d1efd653cf2fda480c5fb3d722ed8","affectsGlobalScope":true},"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","fab29e6d649aa074a6b91e3bdf2bff484934a46067f6ee97a30fcd9762ae2213","8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","d63ff33a2fa221b36a4da0dd5a3dad3156f3dd0fe1baf43a186e607d4ba5af99","553870e516f8c772b89f3820576152ebc70181d7994d96917bb943e37da7f8a7","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633",{"version":"745c4240220559bd340c8aeb6e3c5270a709d3565e934dc22a69c304703956bc","affectsGlobalScope":true},"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada",{"version":"9212c6e9d80cb45441a3614e95afd7235a55a18584c2ed32d6c1aca5a0c53d93","affectsGlobalScope":true},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true},"282fd2a1268a25345b830497b4b7bf5037a5e04f6a9c44c840cb605e19fea841","5360a27d3ebca11b224d7d3e38e3e2c63f8290cb1fcf6c3610401898f8e68bc3","66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4",{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true},{"version":"1f58ebc40c84046ba4c25cf7e86e1ae92c3f064fb641af6c46a5acebf0b8b20b","affectsGlobalScope":true},"f689c4237b70ae6be5f0e4180e8833f34ace40529d1acc0676ab8fb8f70457d7","ae25afbbf1ed5df63a177d67b9048bf7481067f1b8dc9c39212e59db94fc9fc6","ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a",{"version":"52a8e7e8a1454b6d1b5ad428efae3870ffc56f2c02d923467f2940c454aa9aec","affectsGlobalScope":true},"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","171fd8807643c46a9d17e843959abdf10480d57d60d38d061fb44a4c8d4a8cc4","cb25d3de15c4f5590256242ebd721e0e89bdb9a34d9c40993eba8f7aae6ccb0e","4fedd635f025844706e60d57a1bdec7223c8299e4ea2e9b9c988a6b64455f1e9","7ed48493953e1f10eb2da6f35b5e04941d3ac8bb618a9d1888da77f7ee43422c","b35182ba2344e5b4a1387b193fa7a1d3f2321f2bbeadab6ddf5c2571d0b67e44","d9b64956e2916934ce57db6322fc91224cce59b6db6e9225e9dec9178ac14268","f3d5ddc40d0a1e6ad15e9df06b1461f8ebb997c5be951e86340ae40c2d5a3ed9","6d268309f0e15dd820b2df9806234166554cb4e2fe00d11737adcb4e5489f700","58cf96187feb10cc8ad3bb080871cd30888ef63bc5db131f11458850ef8f6245","9102986ff52326a2016e8cddc1cf3092f0808ac916dcc8dc2d2c7195cd181987","fa82b7b22d9df87323e31e9e2ad75911028f3e544647fd212424b3c4452fee3f","01f20dac9dc14f0d306e5d1215c5c1c3b4d1805905e60ae92fabac4031eae7da","9ceec2a882368c0160a8a3879aa0efce0fb985751fc23ff6191006030969cfa4","cad5d6451789234434c28dd2d6a8267b0d64c479b1ad267321faa31ba90d570b","6516fc98fa10b0cb22c7e332bacea4a7ea80257e113f6cdddd924d03bfde218e","eb21fa5cfb715d2a4c5d7b272f51d98584743766c0bb113c0cf7720843f92371","6db29cf7af1d68c8194d98f1c444cea3b30a2c65deda3428452efaa05717b81d","561ef05d7e369040c28800d878d7e6461af62e459460263e911d508f319c8d5d","a1b60bd2328318dcbec30bdf529dad31a13315ff2df60c8bd71630c58a575b06","7a96769b0c709f266da221829aed0e7da9798abc0bf7c0733e918769e8518f56","8cc6a35806cd10d448b0f2ab01fe0b6194ca57fdaced2d71781b68e83c55bd88","8f364fec0ef20506aa9cf00b5cd8b620c1c0389687b11a3a32b0b5d4716ad894","5d11703e2c5d4dbe00bbe79f3bc864d178cf8d6ebccc2d1448ea29e93654f029","f4e82c91aac3b61f3ad04f11a44c5b79f724ff8a09281d0afa24a6624633ff25","ed849d616865076f44a41c87f27698f7cdf230290c44bafc71d7c2bc6919b202","7b8b9017156ef8bf3bbe42785fac8956e5c9869f4a494536d7f548a7c1c7d98a","07c34d1f83dfc5746de4229e01f0cb4d388a9f128eab6beadb4ae1621ebb87c6","763bb8df872cbb8783e29e19bd7a1dea0f88f7fd7398343af38be8509a65df82","372b3681eb9618821c0e0e10bcc775b838e45b51912b8998bc5ba035100dc9e5","c286b410193495d067668bcdbd13ea3f3a39001edff02edee248babf2652e563","87c73268165bf20f01c101ac785e8a9d1d95ff203d05d3548a6c49952597e321","1c40c2b8a8b1b592ed59535e2ccf7ce3e228879dc239e690605128e0e58de68d","63007f1618ada5041fb3b47630b64a9987d268bf740dd72334c38b5d23f5239b","3395f90467d2bb9db039a5c22ed6659ca2ff6f0b4f7ee5f223b0f77288f54ea7","20df2907d398e369d49e8906d6e0f096c465501e9ceff9d61293bf0f4e9020f1","302aa8248dab7c689c103162e542224aa7f3b0db46e29d0fb468fac721cf1c41","2dda4c8b032feaef160074bdc73cffe28516b420ec6cb697732c02ad75cd65f7","5fde0e81ce573a8774e3017c80147470dbb453cdffc861c81f466bc6ce0cb3a6","9686a908777c5aa687eb342e2764237ba8fbf6e878d51a1f258b4cf437862bfe","d8dd09519d9bea7a7c4b658cb20c459bfdf19656b250275b1bf22fa6c3f70679","fc3e226d26b00058a8a8f1823b1e66cc2e91adb9d9628d8c1803d7424bdaa0e5","da98d8109f379be48d459a6821ebd7cc728af62557e1c44f864e04360686af93","ef6e6d838cc600162626a53167046484f38e9a4bab9454e72350bed76c497228","26c9f388d17515a3d01b831708765c1cfd9a5b9e209c05c17c527087e6b4b41f","c8b50ecedc9ff1b0e83c96f0a334d022874199f7c2d00d182ca6672176b0ea9d","b66ede73039e8751e06e3cab843e5a4265c1124a3285c3d854092c37a966b1f5","927a70dc5cf9532823912643b89d1ee328f4777c9d56911fc1c207765243ee24","22a93cb3d5425e601f498416441ea181a31ff9bc7d52d0e89061938f930d35cc","fe646b7ef6d843e234cb1fe626382b91886f48be2f0cdf66def0443eedd3bc65","00e403fb8bb91449903a5add72501ac97f8aed8a7a5831288bc979b0592ccf75","25578b2e19ab0fd92fdc00543abc195d65bdfcb0b800243d5c001129c93907b5","1447d46bff9e7c5c77da14515a7456ea5e919ce6e28f5e6746edf99818e4be47","ba3f6f0ee47f46cdce55620aec5726de80e92a930982634afe9918c114c38f0b","6f38045547cdfd54ec19abcd943cace72c775fde739c5e0e1d917cf3030c16b5","929fc31f7523aaa1d19735b77e637af06e58d76007648ec088ecfbec1521cbfe","3d0e04c8ca3f41da5f3d689500d9c4aeb54a1c59764d66d58f0e579b9af720e5","a6eb23f2a83113ce0ab7203bfda2be0888720f8d694a20abaef83b9f62832061","363dca5004ac5a3d9c2bba12812b97a64461911762f0b8f9320a8856ec53bcad","557b8c7481296f4b7ed362320f3bbb40bb87404edf880c81224f365a8d1e17f3","283ed3d075bf7d3e8793f63b2a52f475ed84d95b7b6351c5d5bcc6c49d4b845b","6544dab49004fecb69a4ef775e9ad2773a6148b1f9bfd9b75508e3afa11f5d35","b499490bd2f0d602501eb24d4e91ccb2d7fdfd24acb86889d74d5f16ac15c4ca","e2dd36a524ea5b13de1ed104ede9cea79696588175c1df1940d6a29113a4aee0","a878d4c7237a7af50e96534295fcf723134d70cbb1e9bfd8365266b912aee6ec","a1f708ddf34053065f8f53682123421af299cee37ae110a86ba07851adf940da","406ad29837d74e2ec97cdd8bba6295b6c984c1793d287c77fd1bb9ac9ff105cc","749effab6d7e72df8d126868c82b8166cdde84d48453e44f65cbad42ad900b06","11705a4aad6e2e724b82ffee6c4fa271d798f0fb68806ace4b1c425c266f8d98","3630ed70bc81eb54659965fcac105c0d420e667b1d0eaf96ab243de4e81ecd68","7581ff7793084fd7c83a3cb4a0e3dc86a2441959c9a336091a2157d346f6c18b","68f02ba57c531227ef5804dd57f2e940b10c544c96dadd3c0ef958ba4b6fdbc1","d84174912accc090e9b061b36101f8401add7f486ee532f45d298fb8e550dcb8","f0e9c96fe0af329a25c943d4a19fc3f6d2430914f49a83d1666cbaace3e41a7a","9b501947b0f8f2fe3e42d3686798e17ab274a9871e1821775794dc32efee6ed0","3780b990e935be00e1d77afaaf9e80ec9b7d79ea4d1f230206c054eb6717c9d5","ef07171c3ea98f073659453e50af2434e14298aee98b9a17c7943343ce656fff","78a3221d0e04ea04623fdb6a34fc52a81b742df1aef41639d19cc8e33484b053","9da5683b5be4e55523e040965ff1435277b23a6dad53b613009af9b2529c7c70","ca027df9fd496a200d99ca0db4b0077463ce4926a6c8e05cfae522c5971ccbc0","e043a9288022e8d802117e5e9e718443296f9c69a5eab7ed89b2fb76128a0140","4d0407c72e75d3f506fe60dba4828cf65be4d086344eec72590784177d4412bc","357f2ba403c4f78a11b64df1e9ffb56e241924d6cc768a38c05c7dc7cfe70ff0","5e2fec9c89491e38ba2c78e6b4383540bc60dc24def61aa325cb726b497ebd85","a411fc0b36f8bcb1bead85af6a065eaca1f7280868c766fa7799b0186f8d56a4","5bfbc7923d86040aeed60f6729ef2f580099d8ba383399f254fc1852c773e7e4","9ab35348dfa05a141dfa8c1e2454a74b3fba256f0726142b958cf16af93b43bf","8c73134354b4285b765d57c1410817b4ce38fae8852e237fd860c7aa25f13104","521c838ae18bb6640f1c357698d97056e9be82b355d064a56e2054892e5883c6","5dbd990df344a7628e5c585def6171b1acf2a98c55347ac9b9079f7be0acbc3c","0240ed08a314c20bc76b99cf07ed283b0c238dfda466c064cfa9b86dae9e2108","ac2df65093d53e2be927e46c0dd60e087110c5864f937179cf9d56cdce7b2c69","d9a2c4f129c1f8efecb02a7423462041095ec96a1d839080d582c0d2330783f7","0060d09faed43c4d14a1e9577ce394a2dc569d25102a26ba5ede7f3c46ec3e64","5cefc4ddf67b82f35d6cee76160ff09a8ff9c1fe637f1fa0834375c6847911e2","a775a05e0b9dcc2e65e9837f3e2a198e2d8c5e64cd9167670efaeb6157f77d8c","e351b0cc89334136f2a764dea59bf961a68602d6f41346c84a13a0fe6f9c6d26","50f2721600f4688884f37f33d81efe4b277cf31738032320c0715216d957228b","d2a5ec9c90417c85db0fd9912f2855b2d399c422f731f245f78a594584a30a97","7fdb4fef9d733572da36bab73f1dddfb68936673528a301398124457b07493c7","0d41406b8c120d55a3930fbb2c98536ac5feeda78d13dc6a0a785716ee8ba825","1e9e07cdc0218f4a3fccc43ce59199cd45cc5217d7f2f5c2f3cba948905c57df","f4adb0da2920eb0b92736ddd24a0b0e664467eed1b60e410737dcbfd32a14d36","13122c2f3f51d08b986460444b9860d00fd38fee39e862ad6d61bf873525ae0a","88c836190daddad5257c0963159a2cd9ced899f7a3262271583703034caba890","ba7c356f3fa418d4486b3b4e405c01c6d529c274e1e877b98166c46dd7cc0f0d","433b9953d8e0864997b5aaf7cc102f80c98304758244731c3fd0a5d6d645033c","366563a75f042b1a7c61d504a90a8a79810c694e445f038310303f232b6dc89a","f9facf2db5c46c5524f53472e03169f3e13e4f83ee14b98d46248c76146fca14","2945b371f6e04c29e3f96b611ecbf7ed75e172f8aeb603aee5e50510b4bc68a7","1ddbb5149b9d13b2c0441835f41a1b20561339264b05c6902966fc698d7d2863","28d51f937939edd0bd0dc8c63b5d0e57cd6082381cf98d5df941d9efc485d175","3f55047f1cd741d4abdbc4c8aafec026521a2c8dcad872dc99162b6eefb4e4a6","d84450725701131933730844923a4974de4cfe0f6e1fe8d3a74e132e292b44c7","433a8fabb08be4997b99eee7863a2362b52c0aca1fcb54330fbf6567a2c92ab0","a4ae79da4d1bb7fb6196294897f1f78a70c8213d2683f750246deab0527511d2","0bbcaafb46edeaf8a72ba969c070fbe9d98459b7b3a17b8c99f79cab49121032","d713b07550ea416686316c24e88dc6245c0f0c12ef78603cae4c9a9791557fb8","5488fc14590f5aa5f96c7899401bd0274c4808c9e0f437c682d95966d3ac53e9","603c6d6d5d61f7100a198de05ab675b21fa85b7e9d4776350f1165f7a9055a5e","e8423fe31351f1ce358798b0e0d64e7b0b3396f9f8ef2cfb5713fa3b7d9020f2","4b54f90cffb36f4bc8175ed414995b6432279d6fe9c9dccb704b8472bd7d88b4","95f8beace3ed894e3e5e3ebaae46c855dfc133e2c63d37663a760c801750f7d4","74d53dbd8fe0d1124911539b879ea9b3461e93ab82bab16497945bf8d73541da","fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","d4e17b7b5dc170df915c7bd7345cd19b16b929d57aebf11e4c19226e8810f753","3762f27827fd30d8372c355e7b8739fb4bfc830c6ce33c241f236416d34924a1",{"version":"48d06f8613c93f16f91d97bcc05c4f295a5d0e7d3a61096966525d2dc0da5c0b","signature":"56d57bdc28871e254ff5b58de3a75e0fa9ab23aba8876b096adb0d401840afbd"},"910a668294831d3c13f52af7c41574e6ce7a0aa5c5b1b74e74741004d5eac010","5ccc3c7f73ef48c223635cd4506f21133560de7abc4c09c623327bb1b54386dc","f30cfcfff28ee8f87563225b47239bb07b9b11edd09dda0ea6499b18cca1a30e","0edb8a97ead1fefd337458449050857e80740e31a3f76cffa656262f4e651a50","6d2d14bb016a70a5ee1afb1cc7718d4369fb645979c725454c688f791ac7218f","8d7622e53b676dfd20828ba435649c217a5d9dee9cdc3713ee808fa2140513da","56558ae167446acf230ea2cc072a835309a37ae63d286b484308afd8c504c2d6",{"version":"b17fae18db717bc23b68f23d3eb9e643a9957cb2696b8060290051f78093a3f3","signature":"2404eb3fc76864f968f8292438cbfacea943279b62255b27cca9107e9db5afed"},{"version":"a20fdf81022c954235fbbd1c2cfe4dc771f4a3c033c3d1b17d56f91d56042b87","signature":"3aca3bcc70d5044bfa93be3e2a18f441c88f046e7d6f0970346821a997911da1"},"cce27d843905b32a33fae001b535c938c52368882c71cda19c78c4d4bb8cb3b2",{"version":"8be0749dfbc627c3d46dfb8cc823b2e84c410128f7126291427b12ac5d7d6482","signature":"aa3c76ce9c04cb0bbc0285706512ae4e984e1022dafef36cc26210e003fe63c2"},"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","cabc03949aa3e7981d8643a236d8041c18c49c9b89010202b2a547ef66dc154b",{"version":"190eb48195061f93bf0b0cecc26c3b24b391d0850049be82898ae69f472f27e3","signature":"8262c5b27126522fba11441adf15cf857a28a91e26c2062ac418d40783834a9b"},{"version":"0c37adb58483d97d8c7ae163f217351f545c8cfb6e83855c5c34b969d5ef8c3d","signature":"d3a26004d713d315b7f1ff849bde8aca54f935604318fe48fefbdaad849a2702"},"6b6d19f72b6f33dfc86bcc38754a0c831ec9d756d2c86370cf4bca1ff3f3b8a5",{"version":"37523ecdb1e5a484bc12b132e8d496d6d8120e90949010a0ae45ca04f5c6b54c","signature":"66d8a86ea8328e01704b4e9095c2cfeb57635bf4efd7be9f6ab9113251f6c1d2"},{"version":"05eb5ae500bda235e1065c25dd59fe738ea662f7752496f2d330ec07a2a0fe68","signature":"cf9deba01f16ca17a255e31aaa5cf927550382392a863f4bba66cd7d89b21976"},{"version":"873e2b410ad8925c001f2506dd6b467fb2032444c9d84a715708ebfaa1dd73b6","signature":"f96352870e8ec85fe45c0a60b184b2d5f0c2736b8926e8c7918e199029433fc9"},"fe713d94bff4e57778cbf7a47bfe965a8fd70e26459a050b69a16e22665c3613",{"version":"38b263f589769c2da0595b3b098e0d05807a2e6a9bbba2cff3ca2fe695361afa","signature":"f6a794cabca4fa5c3ad3e8d2b18d2dc8fe941539f3780f151ba4650223af894c"},{"version":"19099ba884fa4e31cbbc0892f025e4aff3cd8c3c5acb9ec4132f18aa2772d5a8","signature":"d1ce8d738924731c39ac3ec61da2a501e216997fba7d091714af8193ea2f7ffb"},{"version":"51f60f3277c25c685b668f1e7158e7a5d9a78985572a580641375a1256c9abbe","signature":"0640ca30792ccd9fe67ecffb556ed6d97557b74d9e4ea7c052ea7bf9fca15bbf"},"907d201d96095f93500b30616728a26b149a3a58393204c2b5927912953a997f","b3221b2c362171434c0452fd73c27c8a40d42e7d854f1fc85a493c3ed157bbfd",{"version":"82f05525233f40b8477594f02207f520d12e9fe88e194c4efea36873c931a17e","signature":"f129621d51fe62229702cdf6fe6ec3805a3442e5051eff391fab39b77c235d80"},{"version":"ab7fe5ad0b931c7038246a767554e4cf33bbb198d365e7c3076c58e2e552edc1","signature":"c514c50c66af093f8da50823622286ff745476f814f7a39dc485d1bed367bb05"},{"version":"c57a6e52420c246fe23f699faeda3a8947c02a35198ae95e0ce5cb2f06888a4f","signature":"07893dce3ceb24ef0f0628d784e3694b9485f735c8fd9af124138a23fc7a5d8f"},"7b8e3ed52b94a322032599950aaa48e1be1119cb24efff392eee69068bc99d19",{"version":"412be67efcb2077f42aee128343e81303579b8ed70a3d14e8fb5b0f60f25d9d0","signature":"b1b4fc21fb4c0873a3467a12584e4ffd658a4e7dca77ac81b0ef6f86e26699bd"},"032e0b5a531d0a363c532630fc9804aed8b1ab1c143b30959dde97701711009f",{"version":"c027092ce77b3c69df5c796a4c605804cd5b57c689df5de33724c4363b739805","signature":"3a5205914ecbae12d936036ce0a0a044e5446fec7ff68927ac0acc6f0ce90067"},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true}],"root":[323,324,[331,334],[337,347],[349,355]],"options":{"alwaysStrict":true,"declaration":true,"esModuleInterop":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo"},"fileIdsList":[[103,146],[103,146,198,202,211,212,213,215,223,224,225,226,241],[103,146,211,212],[64,103,146,210],[103,146,198,211,212,214],[103,146,216,218],[103,146,214,216,222],[103,146,220],[103,146,198,212,215,216,217,218,219,221],[103,146,212],[64,103,146,198],[103,146,212,215],[76,103,146,198,211],[103,146,198,241],[76,103,146],[71,76,103,146,198,235],[103,146,227,236,237,238,239,240],[103,146,198],[71,76,103,146,198],[64,66,77,78,103,146,198],[66,76,78,103,146],[64,66,76,77,103,146,198],[63,79,103,146,198],[103,146,158,196],[65,66,71,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,95,96,97,103,146,197],[61,63,64,103,146],[78,103,146],[79,81,103,146],[61,63,65,103,146],[66,76,103,146],[66,79,103,146,198],[65,66,76,103,146],[64,65,66,78,81,94,103,146],[64,65,103,146],[64,77,78,103,146,198],[66,78,103,146],[71,76,78,81,88,103,146,198],[103,146,228,229,230,231,232,233,234],[103,146,198,230],[103,146,198,228],[103,146,198,229],[76,103,146,198,263],[76,103,146,198,241,244],[103,146,198,274],[103,146,198,269],[103,146,198,267,268],[103,146,198,267,269],[103,146,266],[70,71,103,146],[70,103,146],[68,69,72,103,146],[67,72,74,75,103,146],[72,74,76,103,146],[73,76,103,146],[103,146,319],[103,143,146],[103,145,146],[103,146,151,181],[103,146,147,152,158,159,166,178,189],[103,146,147,148,158,166],[98,99,100,103,146],[103,146,149,190],[103,146,150,151,159,167],[103,146,151,178,186],[103,146,152,154,158,166],[103,145,146,153],[103,146,154,155],[103,146,158],[103,146,156,158],[103,145,146,158],[103,146,158,159,160,178,189],[103,146,158,159,160,173,178,181],[103,141,146,194],[103,141,146,154,158,161,166,178,189],[103,146,158,159,161,162,166,178,186,189],[103,146,161,163,178,186,189],[103,146,158,164],[103,146,165,189],[103,146,154,158,166,178],[103,146,167],[103,146,168],[103,145,146,169],[103,143,144,145,146,147,148,149,150,151,152,153,154,155,156,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195],[103,146,171],[103,146,172],[103,146,158,173,174],[103,146,173,175,190,192],[103,146,158,178,179,180,181],[103,146,178,180],[103,146,178,179],[103,146,181],[103,146,182],[103,143,146,178],[103,146,158,184,185],[103,146,184,185],[103,146,151,166,178,186],[103,146,187],[146],[101,102,103,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195],[103,146,166,188],[103,146,161,172,189],[103,146,151,190],[103,146,178,191],[103,146,165,192],[103,146,193],[103,146,151,158,160,169,178,189,192,194],[103,146,178,195],[103,146,335],[103,146,260,262],[103,146,259],[103,146,261],[64,77,103,146,327,329],[64,77,103,146,329],[64,103,146,326,328],[77,103,146],[64,77,103,146],[76,103,146,198,241],[72,103,146,198,241,263],[76,103,146,198,235,241],[71,72,76,103,146,198,235,241,270],[76,103,146,198,235,241,265,271,272],[103,146,198,241,275],[72,103,146,198,246,263,264,273,276,277,278],[59,103,146],[103,146,248,249,255,256],[62,63,103,146],[62,103,146],[60,103,146],[103,146,247],[61,103,146],[61,103,146,251],[63,103,146,250,251,252,253,254],[59,60,61,62,103,146,247],[59,60,61,103,146],[103,146,210],[103,146,203],[64,103,146,203],[103,146,203,204,205,206,207,208,209],[103,146,258],[103,146,255,257],[103,113,117,146,189],[103,113,146,178,189],[103,108,146],[103,110,113,146,186,189],[103,146,166,186],[103,146,196],[103,108,146,196],[103,110,113,146,166,189],[103,105,106,109,112,146,158,178,189],[103,113,120,146],[103,105,111,146],[103,113,134,135,146],[103,109,113,146,181,189,196],[103,134,146,196],[103,107,108,146,196],[103,113,146],[103,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140,146],[103,113,128,146],[103,113,120,121,146],[103,111,113,121,122,146],[103,112,146],[103,105,108,113,146],[103,113,117,121,122,146],[103,117,146],[103,111,113,116,146,189],[103,105,110,113,120,146],[103,146,178],[103,108,113,134,146,194,196],[103,146,323,324,333,339,343,347,352,354],[103,146,198,297,333],[76,103,146,198,297,322,349,350],[103,146,351],[103,146,198,297,322,323,348],[103,146,198,348],[64,103,146,198,241,297,307,322,325,329,330,334,337],[103,146,307,336],[103,146,338],[103,146,342],[64,103,146,198,297,307,322,325,329,330,334,340,341],[64,103,146,307,336],[103,146,297],[103,146,323],[103,146,297,307,322],[103,146,353],[64,103,146,198,297,307,322,325,329,330,334],[103,146,346],[64,103,146,297,307,336],[64,103,146,198,297,322,325,329,330,334,344,345],[103,146,332],[103,146,198,297,322,331],[103,146,297,307],[103,146,198,284],[103,146,199],[76,103,146,198,199],[103,146,198,283,284,285,286],[103,146,198,281],[103,146,199,200,201,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296],[103,146,198,242,243,245,279,280],[103,146,283,288],[103,146,284],[103,146,198,199,283,284],[103,146,283,285],[103,146,198,200,241,283,284],[103,146,198,199,201,281,282,284,285,287],[103,146,283,284,285],[103,146,212,242,284,286,288],[76,103,146,198,201,281,282,283,287,289,291,292],[103,146,298,299,300,301,302,303,304,305,306],[76,103,146,308,309,310,311,312,314,315,316,317],[103,146,297,313],[103,146,318,321],[103,146,320],[323,324,333,339,343,347,352,354],[198,297,333],[76,198,297],[198,297],[198],[198,297,307,334],[307],[64,307],[297],[297,307],[64,297,307],[198,297,334]],"referencedMap":[[226,1],[242,2],[213,3],[202,1],[211,4],[215,5],[219,6],[223,7],[221,8],[216,1],[214,1],[222,9],[218,10],[224,11],[225,12],[212,13],[217,1],[243,14],[227,15],[236,16],[241,17],[237,18],[238,11],[239,18],[240,19],[90,20],[91,21],[78,22],[80,23],[97,1],[81,1],[197,24],[198,25],[65,26],[82,27],[92,28],[66,29],[79,30],[83,31],[84,32],[93,1],[95,33],[96,34],[85,1],[86,27],[88,35],[87,36],[89,37],[231,18],[235,38],[230,18],[228,18],[229,18],[234,39],[232,40],[233,41],[278,42],[244,1],[245,43],[275,44],[270,45],[269,46],[268,47],[267,48],[72,49],[69,50],[68,50],[70,51],[75,15],[76,52],[67,15],[73,53],[74,54],[320,55],[356,1],[319,1],[143,56],[144,56],[145,57],[146,58],[147,59],[148,60],[98,1],[101,61],[99,1],[100,1],[149,62],[150,63],[151,64],[152,65],[153,66],[154,67],[155,67],[157,68],[156,69],[158,70],[159,71],[160,72],[142,73],[161,74],[162,75],[163,76],[164,77],[165,78],[166,79],[167,80],[168,81],[169,82],[170,83],[171,84],[172,85],[173,86],[174,86],[175,87],[176,1],[177,1],[178,88],[180,89],[179,90],[181,91],[182,92],[183,93],[184,94],[185,95],[186,96],[187,97],[103,98],[102,1],[196,99],[188,100],[189,101],[190,102],[191,103],[192,104],[193,105],[194,106],[195,107],[336,108],[335,1],[274,1],[104,1],[220,1],[263,109],[260,110],[261,1],[262,111],[325,1],[328,112],[326,113],[329,114],[330,115],[94,1],[327,116],[77,1],[246,117],[264,118],[265,119],[271,120],[273,121],[272,14],[276,122],[279,123],[277,117],[256,124],[59,1],[257,125],[60,126],[250,1],[63,127],[247,128],[248,129],[249,129],[251,130],[252,131],[61,1],[255,132],[254,133],[62,134],[253,1],[266,1],[71,1],[203,135],[206,136],[207,136],[204,137],[205,136],[210,138],[208,4],[209,135],[57,1],[58,1],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[21,1],[4,1],[22,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[37,1],[34,1],[35,1],[36,1],[38,1],[7,1],[39,1],[44,1],[45,1],[40,1],[41,1],[42,1],[43,1],[8,1],[49,1],[46,1],[47,1],[48,1],[50,1],[9,1],[51,1],[52,1],[53,1],[56,1],[54,1],[55,1],[1,1],[64,1],[259,139],[258,140],[120,141],[130,142],[119,141],[140,143],[111,144],[110,145],[139,146],[133,147],[138,148],[113,149],[127,150],[112,151],[136,152],[108,153],[107,146],[137,154],[109,155],[114,156],[115,1],[118,156],[105,1],[141,157],[131,158],[122,159],[123,160],[125,161],[121,162],[124,163],[134,146],[116,164],[117,165],[126,166],[106,167],[129,158],[128,156],[132,1],[135,168],[355,169],[334,170],[351,171],[352,172],[349,173],[350,174],[338,175],[337,176],[339,177],[343,178],[342,179],[340,180],[341,181],[324,182],[323,183],[354,184],[353,185],[347,186],[345,187],[346,188],[333,189],[332,190],[331,18],[344,191],[201,192],[295,193],[294,18],[200,194],[287,195],[292,196],[297,197],[281,198],[289,199],[296,1],[285,200],[280,201],[284,202],[290,203],[283,204],[286,205],[291,206],[288,202],[199,1],[282,202],[293,207],[299,4],[301,4],[302,4],[298,4],[305,4],[304,4],[306,4],[303,4],[300,4],[307,208],[348,1],[317,1],[310,1],[318,209],[308,1],[312,181],[315,1],[309,1],[316,181],[314,210],[313,181],[311,181],[322,211],[321,212]],"exportedModulesMap":[[226,1],[242,2],[213,3],[202,1],[211,4],[215,5],[219,6],[223,7],[221,8],[216,1],[214,1],[222,9],[218,10],[224,11],[225,12],[212,13],[217,1],[243,14],[227,15],[236,16],[241,17],[237,18],[238,11],[239,18],[240,19],[90,20],[91,21],[78,22],[80,23],[97,1],[81,1],[197,24],[198,25],[65,26],[82,27],[92,28],[66,29],[79,30],[83,31],[84,32],[93,1],[95,33],[96,34],[85,1],[86,27],[88,35],[87,36],[89,37],[231,18],[235,38],[230,18],[228,18],[229,18],[234,39],[232,40],[233,41],[278,42],[244,1],[245,43],[275,44],[270,45],[269,46],[268,47],[267,48],[72,49],[69,50],[68,50],[70,51],[75,15],[76,52],[67,15],[73,53],[74,54],[320,55],[356,1],[319,1],[143,56],[144,56],[145,57],[146,58],[147,59],[148,60],[98,1],[101,61],[99,1],[100,1],[149,62],[150,63],[151,64],[152,65],[153,66],[154,67],[155,67],[157,68],[156,69],[158,70],[159,71],[160,72],[142,73],[161,74],[162,75],[163,76],[164,77],[165,78],[166,79],[167,80],[168,81],[169,82],[170,83],[171,84],[172,85],[173,86],[174,86],[175,87],[176,1],[177,1],[178,88],[180,89],[179,90],[181,91],[182,92],[183,93],[184,94],[185,95],[186,96],[187,97],[103,98],[102,1],[196,99],[188,100],[189,101],[190,102],[191,103],[192,104],[193,105],[194,106],[195,107],[336,108],[335,1],[274,1],[104,1],[220,1],[263,109],[260,110],[261,1],[262,111],[325,1],[328,112],[326,113],[329,114],[330,115],[94,1],[327,116],[77,1],[246,117],[264,118],[265,119],[271,120],[273,121],[272,14],[276,122],[279,123],[277,117],[256,124],[59,1],[257,125],[60,126],[250,1],[63,127],[247,128],[248,129],[249,129],[251,130],[252,131],[61,1],[255,132],[254,133],[62,134],[253,1],[266,1],[71,1],[203,135],[206,136],[207,136],[204,137],[205,136],[210,138],[208,4],[209,135],[57,1],[58,1],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[21,1],[4,1],[22,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[37,1],[34,1],[35,1],[36,1],[38,1],[7,1],[39,1],[44,1],[45,1],[40,1],[41,1],[42,1],[43,1],[8,1],[49,1],[46,1],[47,1],[48,1],[50,1],[9,1],[51,1],[52,1],[53,1],[56,1],[54,1],[55,1],[1,1],[64,1],[259,139],[258,140],[120,141],[130,142],[119,141],[140,143],[111,144],[110,145],[139,146],[133,147],[138,148],[113,149],[127,150],[112,151],[136,152],[108,153],[107,146],[137,154],[109,155],[114,156],[115,1],[118,156],[105,1],[141,157],[131,158],[122,159],[123,160],[125,161],[121,162],[124,163],[134,146],[116,164],[117,165],[126,166],[106,167],[129,158],[128,156],[132,1],[135,168],[355,213],[334,214],[351,215],[352,172],[349,216],[350,217],[338,218],[337,219],[339,177],[343,178],[342,218],[340,220],[341,221],[324,182],[323,222],[354,184],[353,221],[347,186],[345,223],[346,224],[333,189],[332,216],[331,217],[344,222],[201,192],[295,193],[294,18],[200,194],[287,195],[292,196],[297,197],[281,198],[289,199],[296,1],[285,200],[280,201],[284,202],[290,203],[283,204],[286,205],[291,206],[288,202],[199,1],[282,202],[293,207],[299,4],[301,4],[302,4],[298,4],[305,4],[304,4],[306,4],[303,4],[300,4],[307,208],[348,1],[317,1],[310,1],[318,209],[308,1],[312,181],[315,1],[309,1],[316,181],[314,210],[313,181],[311,181],[322,211],[321,212]],"semanticDiagnosticsPerFile":[226,242,213,202,211,215,219,223,221,216,214,222,218,224,225,212,217,243,227,236,241,237,238,239,240,90,91,78,80,97,81,197,198,65,82,92,66,79,83,84,93,95,96,85,86,88,87,89,231,235,230,228,229,234,232,233,278,244,245,275,270,269,268,267,72,69,68,70,75,76,67,73,74,320,356,319,143,144,145,146,147,148,98,101,99,100,149,150,151,152,153,154,155,157,156,158,159,160,142,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,180,179,181,182,183,184,185,186,187,103,102,196,188,189,190,191,192,193,194,195,336,335,274,104,220,263,260,261,262,325,328,326,329,330,94,327,77,246,264,265,271,273,272,276,279,277,256,59,257,60,250,63,247,248,249,251,252,61,255,254,62,253,266,71,203,206,207,204,205,210,208,209,57,58,10,12,11,2,13,14,15,16,17,18,19,20,3,21,4,22,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,8,49,46,47,48,50,9,51,52,53,56,54,55,1,64,259,258,120,130,119,140,111,110,139,133,138,113,127,112,136,108,107,137,109,114,115,118,105,141,131,122,123,125,121,124,134,116,117,126,106,129,128,132,135,355,334,351,352,349,350,338,337,339,343,342,340,341,324,323,354,353,347,345,346,333,332,331,344,201,295,294,200,287,292,297,281,289,296,285,280,284,290,283,286,291,288,199,282,293,299,301,302,298,305,304,306,303,300,307,348,317,310,318,308,312,315,309,316,314,313,311,322,321]},"version":"5.4.5"}
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/multiformats/dist/src/bases/interface.d.ts","../../../node_modules/multiformats/dist/src/block/interface.d.ts","../../../node_modules/multiformats/dist/src/hashes/interface.d.ts","../../../node_modules/multiformats/dist/src/link/interface.d.ts","../../../node_modules/multiformats/dist/src/cid.d.ts","../../../node_modules/uint8arraylist/dist/src/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/keys/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-id/index.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/protocols-table.d.ts","../../../node_modules/@multiformats/dns/dist/src/resolvers/dns-over-https.d.ts","../../../node_modules/@multiformats/dns/dist/src/resolvers/dns-json-over-https.d.ts","../../../node_modules/@multiformats/dns/dist/src/resolvers/index.d.ts","../../../node_modules/progress-events/dist/src/index.d.ts","../../../node_modules/@multiformats/dns/dist/src/index.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/resolvers/dnsaddr.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/resolvers/index.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/filter/multiaddr-filter.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/index.d.ts","../../../node_modules/it-stream-types/dist/src/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/connection/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-info/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/content-routing/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/event-target.d.ts","../../../node_modules/@libp2p/interface/dist/src/metrics/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-routing/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-store/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/startable.d.ts","../../../node_modules/@libp2p/interface/dist/src/stream-handler/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/topology/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/stream-muxer/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/transport/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/connection-encrypter/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/connection-gater/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-discovery/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-store/tags.d.ts","../../../node_modules/it-pushable/dist/src/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/pubsub/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/record/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/errors.d.ts","../../../node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/ts5.6/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/events.d.ts","../../../node_modules/@libp2p/interface/dist/src/index.d.ts","../../interfaces/dist/sharding.d.ts","../../interfaces/dist/enr.d.ts","../../interfaces/dist/connection_manager.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/message/decodeRpc.d.ts","../../../node_modules/protons-runtime/dist/src/codec.d.ts","../../../node_modules/protons-runtime/dist/src/decode.d.ts","../../../node_modules/protons-runtime/dist/src/encode.d.ts","../../../node_modules/protons-runtime/dist/src/codecs/enum.d.ts","../../../node_modules/protons-runtime/dist/src/codecs/message.d.ts","../../../node_modules/protons-runtime/dist/src/utils/reader.d.ts","../../../node_modules/protons-runtime/dist/src/utils/writer.d.ts","../../../node_modules/protons-runtime/dist/src/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/message/rpc.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/types.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/message-cache.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-score-thresholds.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/metrics.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-score-params.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/utils/set.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-stats.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/compute-score.d.ts","../../../node_modules/denque/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/message-deliveries.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-score.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/stream.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/tracer.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/config.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/address-manager/index.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/map.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/set.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/list.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/filter.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/tracked-map.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/tracked-set.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/tracked-list.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/connection-manager/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/random-walk/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/record/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/registrar/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/transport-manager/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/index.d.ts","../../../node_modules/@libp2p/identify/dist/src/index.d.ts","../../../node_modules/@libp2p/ping/dist/src/constants.d.ts","../../../node_modules/@libp2p/ping/dist/src/index.d.ts","../../../node_modules/libp2p/dist/src/address-manager/index.d.ts","../../../node_modules/multiformats/dist/src/codecs/interface.d.ts","../../../node_modules/multiformats/dist/src/codecs/json.d.ts","../../../node_modules/multiformats/dist/src/codecs/raw.d.ts","../../../node_modules/multiformats/dist/src/bytes.d.ts","../../../node_modules/multiformats/dist/src/hashes/digest.d.ts","../../../node_modules/multiformats/dist/src/hashes/hasher.d.ts","../../../node_modules/multiformats/dist/src/varint.d.ts","../../../node_modules/multiformats/dist/src/interface.d.ts","../../../node_modules/multiformats/dist/src/index.d.ts","../../../node_modules/multiformats/dist/src/bases/base.d.ts","../../../node_modules/multiformats/dist/src/basics.d.ts","../../../node_modules/uint8arrays/dist/src/util/bases.d.ts","../../../node_modules/uint8arrays/dist/src/to-string.d.ts","../../../node_modules/interface-datastore/dist/src/key.d.ts","../../../node_modules/interface-store/dist/src/errors.d.ts","../../../node_modules/interface-store/dist/src/index.d.ts","../../../node_modules/interface-datastore/dist/src/index.d.ts","../../../node_modules/libp2p/dist/src/components.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/connection-pruner.d.ts","../../../node_modules/p-defer/index.d.ts","../../../node_modules/@libp2p/utils/dist/src/queue/recipient.d.ts","../../../node_modules/@libp2p/utils/dist/src/queue/job.d.ts","../../../node_modules/@libp2p/utils/dist/src/queue/index.d.ts","../../../node_modules/@libp2p/utils/dist/src/priority-queue.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/dial-queue.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/reconnect-queue.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/index.d.ts","../../../node_modules/any-signal/dist/src/index.d.ts","../../../node_modules/@libp2p/utils/dist/src/adaptive-timeout.d.ts","../../../node_modules/libp2p/dist/src/connection-monitor.d.ts","../../../node_modules/libp2p/dist/src/transport-manager.d.ts","../../../node_modules/@libp2p/peer-store/dist/src/index.d.ts","../../../node_modules/libp2p/dist/src/index.d.ts","../../interfaces/dist/metadata.d.ts","../../interfaces/dist/libp2p.d.ts","../../interfaces/dist/sender.d.ts","../../interfaces/dist/light_push.d.ts","../../interfaces/dist/store.d.ts","../../interfaces/dist/protocols.d.ts","../../interfaces/dist/misc.d.ts","../../interfaces/dist/message.d.ts","../../interfaces/dist/receiver.d.ts","../../interfaces/dist/filter.d.ts","../../interfaces/dist/peer_exchange.d.ts","../../interfaces/dist/relay.d.ts","../../interfaces/dist/health_indicator.d.ts","../../interfaces/dist/waku.d.ts","../../interfaces/dist/dns_discovery.d.ts","../../interfaces/dist/constants.d.ts","../../interfaces/dist/local_storage.d.ts","../../interfaces/dist/index.d.ts","../../proto/dist/generated/message.d.ts","../../proto/dist/generated/filter.d.ts","../../proto/dist/generated/topic_only_message.d.ts","../../proto/dist/generated/filter_v2.d.ts","../../proto/dist/generated/light_push.d.ts","../../proto/dist/generated/store_v3.d.ts","../../proto/dist/generated/peer_exchange.d.ts","../../proto/dist/generated/metadata.d.ts","../../proto/dist/generated/sds_message.d.ts","../../proto/dist/index.d.ts","../../utils/dist/common/is_defined.d.ts","../../utils/dist/common/random_subset.d.ts","../../utils/dist/common/group_by.d.ts","../../utils/dist/common/to_async_iterator.d.ts","../../utils/dist/common/is_size_valid.d.ts","../../utils/dist/common/sharding/type_guards.d.ts","../../utils/dist/common/sharding/index.d.ts","../../utils/dist/common/push_or_init_map.d.ts","../../utils/dist/common/relay_shard_codec.d.ts","../../utils/dist/common/delay.d.ts","../../utils/dist/common/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../utils/dist/logger/index.d.ts","../../utils/dist/index.d.ts","../src/lib/message/version_0.ts","../src/lib/message/index.ts","../../../node_modules/it-all/dist/src/index.d.ts","../../../node_modules/it-length-prefixed/dist/src/encode.d.ts","../../../node_modules/it-reader/dist/src/index.d.ts","../../../node_modules/it-length-prefixed/dist/src/decode.d.ts","../../../node_modules/it-length-prefixed/dist/src/index.d.ts","../../../node_modules/it-pipe/dist/src/index.d.ts","../src/lib/stream_manager/utils.ts","../src/lib/stream_manager/stream_manager.ts","../src/lib/stream_manager/index.ts","../src/lib/base_protocol.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/uuid/index.d.mts","../src/lib/filter/filter_rpc.ts","../src/lib/filter/filter.ts","../src/lib/filter/index.ts","../src/lib/light_push/push_rpc.ts","../src/lib/light_push/utils.ts","../src/lib/light_push/light_push.ts","../src/lib/light_push/index.ts","../src/lib/to_proto_message.ts","../src/lib/store/rpc.ts","../src/lib/store/store.ts","../src/lib/store/index.ts","../../utils/dist/bytes/index.d.ts","../src/lib/connection_manager/keep_alive_manager.ts","../src/lib/connection_manager/utils.ts","../src/lib/connection_manager/connection_manager.ts","../src/lib/connection_manager/index.ts","../src/lib/metadata/metadata.ts","../src/lib/metadata/index.ts","../src/index.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"4a3605bef1a5ef29fd5a1696dd95b0b4e2259e2d07a4d88fac79f3a9765c44a2","370079895f1acdd4bb5194a403c85bf60cfbb2654bced9430a6c7210e7246be8","90240231e730deed31569f6c686766a538e4a024bbc33ea1738fe924f477ba61","552223520e823223ee13c5764e9b69b1819c985818a8bcda435d8d1dbd909bee","49b7c3ddd683c09aa437dd92681699387441f522524b14d2331ce494a9bf2f27","d35b5db21a04a45ae6323c4d4b25acc983dfe2870fc670fd05249eb19d839a5e","ae34b0761f88cf20e922e338970944f0e3abf193cfd4c5589bb03dddd3ca6fc0","51720c0374406647b50f84f24c7b623f1d01e1955f7e929da7c5c0629b4390ad","5212dd78d1d63ab33332c8846a0ea5ce248159e74033cde16de48373036b4704","954b3c04ee9f94ca1e262f3e5a6e833b0da0066514b3d4b97b92b7f0c85f8700","a2fc9ce1ae5bed7068d701d8aeebf13321de0f42c217dc2e10f1622dcaa53a7f","8e81f220cb935d551e88cff11541d5e89d3a3494a52fe6247e98016a9dbd4c2d","6b2576a04253626ba41b7dc7ec5977bec07f3b6952b16249d9fa8a3a0d79901c","9de17491f2bfbccea92500e174079d53bdedae34dbebe5d4a12a06ab09814710","e88481085a8576fa52efc913e631c1a833d16179486469b8538d8c4fab2f7381","cc8c0bbe9fa2399c83e9f5492f82c55fe184380a371dd6fa462586c6563b054b","d71577e78c7a4257074aaf82f595724175210c89e8b467ef82f949a6cbd891bc","cd06dcbbe6e48955b12865c240d5d3c58694bf042046341b9f0da6e1c5232fb1","c84146dbc9d2e5f43d2cbf15485a4eabf90219dbb66c0d481f20f12d3851bffc","323aa55bca8a32c4b48353f48683bdc02aca0d985757f86f7610bb6bcd719561","99c24f331c9f4e75a779b9a988e942442db3cf29923ceb820d3bdd4ed1edfef2","5d4e6e11d3aaba5a69a69916adf8165b1f51e6fb11e7b5fd4f5b813e231e8950","4105fa0ecfaffb578c8051c3de22e8c984191aac8de14641ee99beed9c5e5bd9","75dfa36d9a0ee14766ba9d9667a44b984966fa5b7d59d4d34ff3e6973525112e","8c92080253bac0506d82b83d555a029582595f0944abb349954ea732322baa5c","45d4c8d63a67224af62bebff18da32bb2817e306c9fd9e5d1dac6ef8d2da7ead","230eb449f719119cab1728252f20ecdd36d7a20cef659e4a51ada1a232a8aaad","2b83c561e623b28a06f15e44b02ccbc7b4ec388c8ffb8646132487a1fd7c99c4","c1c7b50665ce0b8aa4b95f3843167ac7ac25d1f724d77c2a07b597abb9cf394c","1bf687d978bdd6d5aff10b9eb0ff0695179f8594d4446946fd0182d6d25fa433","9c0cf2ad522b28f8b39ac64e93571edd60df1faceef3b34f407f8607a0366492","e0ff6a627dfbfb9d32e49f34879a763680e37758c509ddd809cb316b96f34390","2113d72680c7ddad6d3b6f70a29432a35c074c94ec6823a7c16ccd69847d965c","c8ffd61bf2db2e7bccb996dd70c9499805cb338f1b1c781987e38ba99dd5b296","0ccbc75ac044b52144323f80054d8e0ec571a4368349d10aa77c0aaf1bb50eb0","fac83d4c6898d5bf90c508cc84409ded40fdc14611cf42d7fb750fb2c7847979","d012f94950fd654771664f96132a11fcaacde6226ac421516ec5aff3ef25b449","4f1eb6b9c2b666278e09019281953fc4ecadad3b2ba2781b2602445743eaaeca","75848e9f0cfb046e64bc8610b0b07e97288d340196a2d5bc6bcbf01e595a81d9",{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"2d1319e6b5d0efd8c5eae07eb864a00102151e8b9afddd2d45db52e9aae002c4","affectsGlobalScope":true},"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"d2bc987ae352271d0d615a420dcf98cc886aa16b87fb2b569358c1fe0ca0773d","affectsGlobalScope":true},"f52e8dacc97d71dcc96af29e49584353f9c54cb916d132e3e768d8b8129c928d","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0",{"version":"53eac70430b30089a3a1959d8306b0f9cfaf0de75224b68ef25243e0b5ad1ca3","affectsGlobalScope":true},"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7",{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"86956cc2eb9dd371d6fab493d326a574afedebf76eef3fa7833b8e0d9b52d6f1","affectsGlobalScope":true},"91c1a729db5b28b2fc32bafa7a53611d417bc3f03f649278d4fd948aa4dec898","e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true},"1ff5a53a58e756d2661b73ba60ffe274231a4432d21f7a2d0d9e4f6aa99f4283","eaf9ee1d90a35d56264f0bf39842282c58b9219e112ac7d0c1bce98c6c5da672","c15c4427ae7fd1dcd7f312a8a447ac93581b0d4664ddf151ecd07de4bf2bb9d7","5135bdd72cc05a8192bd2e92f0914d7fc43ee077d1293dc622a049b7035a0afb","4f80de3a11c0d2f1329a72e92c7416b2f7eab14f67e92cac63bb4e8d01c6edc8","6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6",{"version":"c72ccc191348ac1933226cab7a814cfda8b29a827d1df5dbebfe516a6fd734a8","affectsGlobalScope":true},"8bea55446a296d289fbc762f61954a0e3e38ffbcacc06e47e0cba491030e3235","b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0",{"version":"3eb62baae4df08c9173e6903d3ca45942ccec8c3659b0565684a75f3292cffbb","affectsGlobalScope":true},{"version":"42aaa94addeed66a04b61e433c14e829c43d1efd653cf2fda480c5fb3d722ed8","affectsGlobalScope":true},"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","fab29e6d649aa074a6b91e3bdf2bff484934a46067f6ee97a30fcd9762ae2213","8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","d63ff33a2fa221b36a4da0dd5a3dad3156f3dd0fe1baf43a186e607d4ba5af99","553870e516f8c772b89f3820576152ebc70181d7994d96917bb943e37da7f8a7","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633",{"version":"745c4240220559bd340c8aeb6e3c5270a709d3565e934dc22a69c304703956bc","affectsGlobalScope":true},"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada",{"version":"9212c6e9d80cb45441a3614e95afd7235a55a18584c2ed32d6c1aca5a0c53d93","affectsGlobalScope":true},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true},"282fd2a1268a25345b830497b4b7bf5037a5e04f6a9c44c840cb605e19fea841","5360a27d3ebca11b224d7d3e38e3e2c63f8290cb1fcf6c3610401898f8e68bc3","66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4",{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true},{"version":"1f58ebc40c84046ba4c25cf7e86e1ae92c3f064fb641af6c46a5acebf0b8b20b","affectsGlobalScope":true},"f689c4237b70ae6be5f0e4180e8833f34ace40529d1acc0676ab8fb8f70457d7","ae25afbbf1ed5df63a177d67b9048bf7481067f1b8dc9c39212e59db94fc9fc6","ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a",{"version":"52a8e7e8a1454b6d1b5ad428efae3870ffc56f2c02d923467f2940c454aa9aec","affectsGlobalScope":true},"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","171fd8807643c46a9d17e843959abdf10480d57d60d38d061fb44a4c8d4a8cc4","cb25d3de15c4f5590256242ebd721e0e89bdb9a34d9c40993eba8f7aae6ccb0e","4fedd635f025844706e60d57a1bdec7223c8299e4ea2e9b9c988a6b64455f1e9","7ed48493953e1f10eb2da6f35b5e04941d3ac8bb618a9d1888da77f7ee43422c","b35182ba2344e5b4a1387b193fa7a1d3f2321f2bbeadab6ddf5c2571d0b67e44","d9b64956e2916934ce57db6322fc91224cce59b6db6e9225e9dec9178ac14268","f3d5ddc40d0a1e6ad15e9df06b1461f8ebb997c5be951e86340ae40c2d5a3ed9","6d268309f0e15dd820b2df9806234166554cb4e2fe00d11737adcb4e5489f700","58cf96187feb10cc8ad3bb080871cd30888ef63bc5db131f11458850ef8f6245","9102986ff52326a2016e8cddc1cf3092f0808ac916dcc8dc2d2c7195cd181987","fa82b7b22d9df87323e31e9e2ad75911028f3e544647fd212424b3c4452fee3f","01f20dac9dc14f0d306e5d1215c5c1c3b4d1805905e60ae92fabac4031eae7da","9ceec2a882368c0160a8a3879aa0efce0fb985751fc23ff6191006030969cfa4","cad5d6451789234434c28dd2d6a8267b0d64c479b1ad267321faa31ba90d570b","6516fc98fa10b0cb22c7e332bacea4a7ea80257e113f6cdddd924d03bfde218e","eb21fa5cfb715d2a4c5d7b272f51d98584743766c0bb113c0cf7720843f92371","6db29cf7af1d68c8194d98f1c444cea3b30a2c65deda3428452efaa05717b81d","561ef05d7e369040c28800d878d7e6461af62e459460263e911d508f319c8d5d","a1b60bd2328318dcbec30bdf529dad31a13315ff2df60c8bd71630c58a575b06","7a96769b0c709f266da221829aed0e7da9798abc0bf7c0733e918769e8518f56","8cc6a35806cd10d448b0f2ab01fe0b6194ca57fdaced2d71781b68e83c55bd88","8f364fec0ef20506aa9cf00b5cd8b620c1c0389687b11a3a32b0b5d4716ad894","5d11703e2c5d4dbe00bbe79f3bc864d178cf8d6ebccc2d1448ea29e93654f029","f4e82c91aac3b61f3ad04f11a44c5b79f724ff8a09281d0afa24a6624633ff25","ed849d616865076f44a41c87f27698f7cdf230290c44bafc71d7c2bc6919b202","7b8b9017156ef8bf3bbe42785fac8956e5c9869f4a494536d7f548a7c1c7d98a","07c34d1f83dfc5746de4229e01f0cb4d388a9f128eab6beadb4ae1621ebb87c6","763bb8df872cbb8783e29e19bd7a1dea0f88f7fd7398343af38be8509a65df82","372b3681eb9618821c0e0e10bcc775b838e45b51912b8998bc5ba035100dc9e5","c286b410193495d067668bcdbd13ea3f3a39001edff02edee248babf2652e563","87c73268165bf20f01c101ac785e8a9d1d95ff203d05d3548a6c49952597e321","1c40c2b8a8b1b592ed59535e2ccf7ce3e228879dc239e690605128e0e58de68d","63007f1618ada5041fb3b47630b64a9987d268bf740dd72334c38b5d23f5239b","3395f90467d2bb9db039a5c22ed6659ca2ff6f0b4f7ee5f223b0f77288f54ea7","20df2907d398e369d49e8906d6e0f096c465501e9ceff9d61293bf0f4e9020f1","302aa8248dab7c689c103162e542224aa7f3b0db46e29d0fb468fac721cf1c41","2dda4c8b032feaef160074bdc73cffe28516b420ec6cb697732c02ad75cd65f7","5fde0e81ce573a8774e3017c80147470dbb453cdffc861c81f466bc6ce0cb3a6","9686a908777c5aa687eb342e2764237ba8fbf6e878d51a1f258b4cf437862bfe","d8dd09519d9bea7a7c4b658cb20c459bfdf19656b250275b1bf22fa6c3f70679","fc3e226d26b00058a8a8f1823b1e66cc2e91adb9d9628d8c1803d7424bdaa0e5","da98d8109f379be48d459a6821ebd7cc728af62557e1c44f864e04360686af93","ef6e6d838cc600162626a53167046484f38e9a4bab9454e72350bed76c497228","26c9f388d17515a3d01b831708765c1cfd9a5b9e209c05c17c527087e6b4b41f","c8b50ecedc9ff1b0e83c96f0a334d022874199f7c2d00d182ca6672176b0ea9d","b66ede73039e8751e06e3cab843e5a4265c1124a3285c3d854092c37a966b1f5","927a70dc5cf9532823912643b89d1ee328f4777c9d56911fc1c207765243ee24","22a93cb3d5425e601f498416441ea181a31ff9bc7d52d0e89061938f930d35cc","fe646b7ef6d843e234cb1fe626382b91886f48be2f0cdf66def0443eedd3bc65","00e403fb8bb91449903a5add72501ac97f8aed8a7a5831288bc979b0592ccf75","25578b2e19ab0fd92fdc00543abc195d65bdfcb0b800243d5c001129c93907b5","1447d46bff9e7c5c77da14515a7456ea5e919ce6e28f5e6746edf99818e4be47","ba3f6f0ee47f46cdce55620aec5726de80e92a930982634afe9918c114c38f0b","6f38045547cdfd54ec19abcd943cace72c775fde739c5e0e1d917cf3030c16b5","929fc31f7523aaa1d19735b77e637af06e58d76007648ec088ecfbec1521cbfe","3d0e04c8ca3f41da5f3d689500d9c4aeb54a1c59764d66d58f0e579b9af720e5","a6eb23f2a83113ce0ab7203bfda2be0888720f8d694a20abaef83b9f62832061","363dca5004ac5a3d9c2bba12812b97a64461911762f0b8f9320a8856ec53bcad","557b8c7481296f4b7ed362320f3bbb40bb87404edf880c81224f365a8d1e17f3","283ed3d075bf7d3e8793f63b2a52f475ed84d95b7b6351c5d5bcc6c49d4b845b","6544dab49004fecb69a4ef775e9ad2773a6148b1f9bfd9b75508e3afa11f5d35","b499490bd2f0d602501eb24d4e91ccb2d7fdfd24acb86889d74d5f16ac15c4ca","e2dd36a524ea5b13de1ed104ede9cea79696588175c1df1940d6a29113a4aee0","a878d4c7237a7af50e96534295fcf723134d70cbb1e9bfd8365266b912aee6ec","a1f708ddf34053065f8f53682123421af299cee37ae110a86ba07851adf940da","406ad29837d74e2ec97cdd8bba6295b6c984c1793d287c77fd1bb9ac9ff105cc","749effab6d7e72df8d126868c82b8166cdde84d48453e44f65cbad42ad900b06","11705a4aad6e2e724b82ffee6c4fa271d798f0fb68806ace4b1c425c266f8d98","3630ed70bc81eb54659965fcac105c0d420e667b1d0eaf96ab243de4e81ecd68","7581ff7793084fd7c83a3cb4a0e3dc86a2441959c9a336091a2157d346f6c18b","68f02ba57c531227ef5804dd57f2e940b10c544c96dadd3c0ef958ba4b6fdbc1","d84174912accc090e9b061b36101f8401add7f486ee532f45d298fb8e550dcb8","f0e9c96fe0af329a25c943d4a19fc3f6d2430914f49a83d1666cbaace3e41a7a","9b501947b0f8f2fe3e42d3686798e17ab274a9871e1821775794dc32efee6ed0","3780b990e935be00e1d77afaaf9e80ec9b7d79ea4d1f230206c054eb6717c9d5","ef07171c3ea98f073659453e50af2434e14298aee98b9a17c7943343ce656fff","78a3221d0e04ea04623fdb6a34fc52a81b742df1aef41639d19cc8e33484b053","9da5683b5be4e55523e040965ff1435277b23a6dad53b613009af9b2529c7c70","ca027df9fd496a200d99ca0db4b0077463ce4926a6c8e05cfae522c5971ccbc0","e043a9288022e8d802117e5e9e718443296f9c69a5eab7ed89b2fb76128a0140","4d0407c72e75d3f506fe60dba4828cf65be4d086344eec72590784177d4412bc","357f2ba403c4f78a11b64df1e9ffb56e241924d6cc768a38c05c7dc7cfe70ff0","5e2fec9c89491e38ba2c78e6b4383540bc60dc24def61aa325cb726b497ebd85","a411fc0b36f8bcb1bead85af6a065eaca1f7280868c766fa7799b0186f8d56a4","5bfbc7923d86040aeed60f6729ef2f580099d8ba383399f254fc1852c773e7e4","9ab35348dfa05a141dfa8c1e2454a74b3fba256f0726142b958cf16af93b43bf","7069dc8e3aeaa06ec52a83b4f7c645d2c13d7a71eb91c00c869dac96416954b2","07a8305050c3eac7bf75eeb0fe61b0dce6d767465e6047c7473ad97f02eabbed","8c73134354b4285b765d57c1410817b4ce38fae8852e237fd860c7aa25f13104","1808e80091b83e1c7a30dcd2edef3fdc549c47f481de99aa7dce7c84a3a0c8ad","5dbd990df344a7628e5c585def6171b1acf2a98c55347ac9b9079f7be0acbc3c","0240ed08a314c20bc76b99cf07ed283b0c238dfda466c064cfa9b86dae9e2108","ac2df65093d53e2be927e46c0dd60e087110c5864f937179cf9d56cdce7b2c69","d9a2c4f129c1f8efecb02a7423462041095ec96a1d839080d582c0d2330783f7","a775a05e0b9dcc2e65e9837f3e2a198e2d8c5e64cd9167670efaeb6157f77d8c","e351b0cc89334136f2a764dea59bf961a68602d6f41346c84a13a0fe6f9c6d26","50f2721600f4688884f37f33d81efe4b277cf31738032320c0715216d957228b","d2a5ec9c90417c85db0fd9912f2855b2d399c422f731f245f78a594584a30a97","7fdb4fef9d733572da36bab73f1dddfb68936673528a301398124457b07493c7","0d41406b8c120d55a3930fbb2c98536ac5feeda78d13dc6a0a785716ee8ba825","1e9e07cdc0218f4a3fccc43ce59199cd45cc5217d7f2f5c2f3cba948905c57df","f4adb0da2920eb0b92736ddd24a0b0e664467eed1b60e410737dcbfd32a14d36","13122c2f3f51d08b986460444b9860d00fd38fee39e862ad6d61bf873525ae0a","88c836190daddad5257c0963159a2cd9ced899f7a3262271583703034caba890","ba7c356f3fa418d4486b3b4e405c01c6d529c274e1e877b98166c46dd7cc0f0d","433b9953d8e0864997b5aaf7cc102f80c98304758244731c3fd0a5d6d645033c","366563a75f042b1a7c61d504a90a8a79810c694e445f038310303f232b6dc89a","f9facf2db5c46c5524f53472e03169f3e13e4f83ee14b98d46248c76146fca14","2945b371f6e04c29e3f96b611ecbf7ed75e172f8aeb603aee5e50510b4bc68a7","1ddbb5149b9d13b2c0441835f41a1b20561339264b05c6902966fc698d7d2863","28d51f937939edd0bd0dc8c63b5d0e57cd6082381cf98d5df941d9efc485d175","3f55047f1cd741d4abdbc4c8aafec026521a2c8dcad872dc99162b6eefb4e4a6","d84450725701131933730844923a4974de4cfe0f6e1fe8d3a74e132e292b44c7","433a8fabb08be4997b99eee7863a2362b52c0aca1fcb54330fbf6567a2c92ab0","a4ae79da4d1bb7fb6196294897f1f78a70c8213d2683f750246deab0527511d2","0bbcaafb46edeaf8a72ba969c070fbe9d98459b7b3a17b8c99f79cab49121032","d713b07550ea416686316c24e88dc6245c0f0c12ef78603cae4c9a9791557fb8","5488fc14590f5aa5f96c7899401bd0274c4808c9e0f437c682d95966d3ac53e9","603c6d6d5d61f7100a198de05ab675b21fa85b7e9d4776350f1165f7a9055a5e","e8423fe31351f1ce358798b0e0d64e7b0b3396f9f8ef2cfb5713fa3b7d9020f2","4b54f90cffb36f4bc8175ed414995b6432279d6fe9c9dccb704b8472bd7d88b4","95f8beace3ed894e3e5e3ebaae46c855dfc133e2c63d37663a760c801750f7d4","74d53dbd8fe0d1124911539b879ea9b3461e93ab82bab16497945bf8d73541da","fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","d4e17b7b5dc170df915c7bd7345cd19b16b929d57aebf11e4c19226e8810f753","3762f27827fd30d8372c355e7b8739fb4bfc830c6ce33c241f236416d34924a1",{"version":"48d06f8613c93f16f91d97bcc05c4f295a5d0e7d3a61096966525d2dc0da5c0b","signature":"56d57bdc28871e254ff5b58de3a75e0fa9ab23aba8876b096adb0d401840afbd"},"910a668294831d3c13f52af7c41574e6ce7a0aa5c5b1b74e74741004d5eac010","5ccc3c7f73ef48c223635cd4506f21133560de7abc4c09c623327bb1b54386dc","f30cfcfff28ee8f87563225b47239bb07b9b11edd09dda0ea6499b18cca1a30e","0edb8a97ead1fefd337458449050857e80740e31a3f76cffa656262f4e651a50","6d2d14bb016a70a5ee1afb1cc7718d4369fb645979c725454c688f791ac7218f","8d7622e53b676dfd20828ba435649c217a5d9dee9cdc3713ee808fa2140513da","56558ae167446acf230ea2cc072a835309a37ae63d286b484308afd8c504c2d6",{"version":"b17fae18db717bc23b68f23d3eb9e643a9957cb2696b8060290051f78093a3f3","signature":"2404eb3fc76864f968f8292438cbfacea943279b62255b27cca9107e9db5afed"},{"version":"a20fdf81022c954235fbbd1c2cfe4dc771f4a3c033c3d1b17d56f91d56042b87","signature":"3aca3bcc70d5044bfa93be3e2a18f441c88f046e7d6f0970346821a997911da1"},"cce27d843905b32a33fae001b535c938c52368882c71cda19c78c4d4bb8cb3b2",{"version":"8be0749dfbc627c3d46dfb8cc823b2e84c410128f7126291427b12ac5d7d6482","signature":"aa3c76ce9c04cb0bbc0285706512ae4e984e1022dafef36cc26210e003fe63c2"},"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","cabc03949aa3e7981d8643a236d8041c18c49c9b89010202b2a547ef66dc154b",{"version":"190eb48195061f93bf0b0cecc26c3b24b391d0850049be82898ae69f472f27e3","signature":"8262c5b27126522fba11441adf15cf857a28a91e26c2062ac418d40783834a9b"},{"version":"0c37adb58483d97d8c7ae163f217351f545c8cfb6e83855c5c34b969d5ef8c3d","signature":"d3a26004d713d315b7f1ff849bde8aca54f935604318fe48fefbdaad849a2702"},"6b6d19f72b6f33dfc86bcc38754a0c831ec9d756d2c86370cf4bca1ff3f3b8a5",{"version":"37523ecdb1e5a484bc12b132e8d496d6d8120e90949010a0ae45ca04f5c6b54c","signature":"66d8a86ea8328e01704b4e9095c2cfeb57635bf4efd7be9f6ab9113251f6c1d2"},{"version":"166c82edcb5c43a6a596479154829ab1f6f4e975534fb4ff45dcc7bf6f80509e","signature":"f50055b65a2cef6ace9d9e5cb1561710884d0373037f08beed0141209c6f73a4"},{"version":"f6e782e07dc220802b2a5bbb90258eda443dedeff949771c31981763803a8020","signature":"f96352870e8ec85fe45c0a60b184b2d5f0c2736b8926e8c7918e199029433fc9"},"fe713d94bff4e57778cbf7a47bfe965a8fd70e26459a050b69a16e22665c3613",{"version":"38b263f589769c2da0595b3b098e0d05807a2e6a9bbba2cff3ca2fe695361afa","signature":"f6a794cabca4fa5c3ad3e8d2b18d2dc8fe941539f3780f151ba4650223af894c"},{"version":"19099ba884fa4e31cbbc0892f025e4aff3cd8c3c5acb9ec4132f18aa2772d5a8","signature":"d1ce8d738924731c39ac3ec61da2a501e216997fba7d091714af8193ea2f7ffb"},{"version":"51f60f3277c25c685b668f1e7158e7a5d9a78985572a580641375a1256c9abbe","signature":"0640ca30792ccd9fe67ecffb556ed6d97557b74d9e4ea7c052ea7bf9fca15bbf"},"907d201d96095f93500b30616728a26b149a3a58393204c2b5927912953a997f","b3221b2c362171434c0452fd73c27c8a40d42e7d854f1fc85a493c3ed157bbfd",{"version":"82f05525233f40b8477594f02207f520d12e9fe88e194c4efea36873c931a17e","signature":"f129621d51fe62229702cdf6fe6ec3805a3442e5051eff391fab39b77c235d80"},{"version":"ab7fe5ad0b931c7038246a767554e4cf33bbb198d365e7c3076c58e2e552edc1","signature":"c514c50c66af093f8da50823622286ff745476f814f7a39dc485d1bed367bb05"},{"version":"c57a6e52420c246fe23f699faeda3a8947c02a35198ae95e0ce5cb2f06888a4f","signature":"07893dce3ceb24ef0f0628d784e3694b9485f735c8fd9af124138a23fc7a5d8f"},"7b8e3ed52b94a322032599950aaa48e1be1119cb24efff392eee69068bc99d19",{"version":"412be67efcb2077f42aee128343e81303579b8ed70a3d14e8fb5b0f60f25d9d0","signature":"b1b4fc21fb4c0873a3467a12584e4ffd658a4e7dca77ac81b0ef6f86e26699bd"},"032e0b5a531d0a363c532630fc9804aed8b1ab1c143b30959dde97701711009f",{"version":"c027092ce77b3c69df5c796a4c605804cd5b57c689df5de33724c4363b739805","signature":"3a5205914ecbae12d936036ce0a0a044e5446fec7ff68927ac0acc6f0ce90067"},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true}],"root":[323,324,[331,334],[337,347],[349,355]],"options":{"alwaysStrict":true,"declaration":true,"esModuleInterop":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo"},"fileIdsList":[[103,146],[103,146,198,202,211,212,213,215,223,224,225,226,241],[103,146,211,212],[64,103,146,210],[103,146,198,211,212,214],[103,146,216,218],[103,146,214,216,222],[103,146,220],[103,146,198,212,215,216,217,218,219,221],[103,146,212],[64,103,146,198],[103,146,212,215],[76,103,146,198,211],[103,146,198,241],[76,103,146],[71,76,103,146,198,235],[103,146,227,236,237,238,239,240],[103,146,198],[71,76,103,146,198],[64,66,77,78,103,146,198],[66,76,78,103,146],[64,66,76,77,103,146,198],[63,79,103,146,198],[103,146,158,196],[65,66,71,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,95,96,97,103,146,197],[61,63,64,103,146],[78,103,146],[79,81,103,146],[61,63,65,103,146],[66,76,103,146],[66,79,103,146,198],[65,66,76,103,146],[64,65,66,78,81,94,103,146],[64,65,103,146],[64,77,78,103,146,198],[66,78,103,146],[71,76,78,81,88,103,146,198],[103,146,228,229,230,231,232,233,234],[103,146,198,230],[103,146,198,228],[103,146,198,229],[76,103,146,198,263],[76,103,146,198,241,244],[103,146,198,274],[103,146,198,269],[103,146,198,267,268],[103,146,198,267,269],[103,146,266],[70,71,103,146],[70,103,146],[68,69,72,103,146],[67,72,74,75,103,146],[72,74,76,103,146],[73,76,103,146],[103,146,319],[103,143,146],[103,145,146],[103,146,151,181],[103,146,147,152,158,159,166,178,189],[103,146,147,148,158,166],[98,99,100,103,146],[103,146,149,190],[103,146,150,151,159,167],[103,146,151,178,186],[103,146,152,154,158,166],[103,145,146,153],[103,146,154,155],[103,146,158],[103,146,156,158],[103,145,146,158],[103,146,158,159,160,178,189],[103,146,158,159,160,173,178,181],[103,141,146,194],[103,141,146,154,158,161,166,178,189],[103,146,158,159,161,162,166,178,186,189],[103,146,161,163,178,186,189],[103,146,158,164],[103,146,165,189],[103,146,154,158,166,178],[103,146,167],[103,146,168],[103,145,146,169],[103,143,144,145,146,147,148,149,150,151,152,153,154,155,156,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195],[103,146,171],[103,146,172],[103,146,158,173,174],[103,146,173,175,190,192],[103,146,158,178,179,180,181],[103,146,178,180],[103,146,178,179],[103,146,181],[103,146,182],[103,143,146,178],[103,146,158,184,185],[103,146,184,185],[103,146,151,166,178,186],[103,146,187],[146],[101,102,103,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195],[103,146,166,188],[103,146,161,172,189],[103,146,151,190],[103,146,178,191],[103,146,165,192],[103,146,193],[103,146,151,158,160,169,178,189,192,194],[103,146,178,195],[103,146,335],[103,146,260,262],[103,146,259],[103,146,261],[64,77,103,146,327,329],[64,77,103,146,329],[64,103,146,326,328],[77,103,146],[64,77,103,146],[76,103,146,198,241],[72,103,146,198,241,263],[76,103,146,198,235,241],[71,72,76,103,146,198,235,241,270],[76,103,146,198,235,241,265,271,272],[103,146,198,241,275],[72,103,146,198,246,263,264,273,276,277,278],[59,103,146],[103,146,248,249,255,256],[62,63,103,146],[62,103,146],[60,103,146],[103,146,247],[61,103,146],[61,103,146,251],[63,103,146,250,251,252,253,254],[59,60,61,62,103,146,247],[59,60,61,103,146],[103,146,210],[103,146,203],[64,103,146,203],[103,146,203,204,205,206,207,208,209],[103,146,258],[103,146,255,257],[103,113,117,146,189],[103,113,146,178,189],[103,108,146],[103,110,113,146,186,189],[103,146,166,186],[103,146,196],[103,108,146,196],[103,110,113,146,166,189],[103,105,106,109,112,146,158,178,189],[103,113,120,146],[103,105,111,146],[103,113,134,135,146],[103,109,113,146,181,189,196],[103,134,146,196],[103,107,108,146,196],[103,113,146],[103,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140,146],[103,113,128,146],[103,113,120,121,146],[103,111,113,121,122,146],[103,112,146],[103,105,108,113,146],[103,113,117,121,122,146],[103,117,146],[103,111,113,116,146,189],[103,105,110,113,120,146],[103,146,178],[103,108,113,134,146,194,196],[103,146,323,324,333,339,343,347,352,354],[103,146,198,297,333],[76,103,146,198,297,322,349,350],[103,146,351],[103,146,198,297,322,323,348],[103,146,198,348],[64,103,146,198,241,297,307,322,325,329,330,334,337],[103,146,307,336],[103,146,338],[103,146,342],[64,103,146,198,297,307,322,325,329,330,334,340,341],[64,103,146,307,336],[103,146,323],[103,146,297,307,322],[103,146,353],[64,103,146,198,297,307,322,325,329,330,334],[103,146,346],[64,103,146,297,307,336],[64,103,146,198,297,322,325,329,330,334,344,345],[103,146,332],[103,146,198,297,322,331],[103,146,297,307],[103,146,198,286],[103,146,199],[76,103,146,198,199],[103,146,198,285,286,287,288],[103,146,198,281],[103,146,199,200,201,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296],[103,146,198,242,243,245,279,280],[103,146,282,285],[103,146,286],[103,146,198,199,285,286],[103,146,285,287],[103,146,198,200,241,285,286],[103,146,198,199,201,281,283,284,286,287,289],[103,146,285,286,287],[103,146,212,242,282,286,288],[76,103,146,198,201,281,283,284,285,289,291,292],[103,146,298,299,300,301,302,303,304,305,306],[76,103,146,308,309,310,311,312,314,315,316,317],[103,146,297],[103,146,297,313],[103,146,318,321],[103,146,320],[323,324,333,339,343,347,352,354],[198,297,333],[76,198,297],[198,297],[198],[198,297,307,334],[307],[64,307],[297,307],[297],[64,297,307],[198,297,334]],"referencedMap":[[226,1],[242,2],[213,3],[202,1],[211,4],[215,5],[219,6],[223,7],[221,8],[216,1],[214,1],[222,9],[218,10],[224,11],[225,12],[212,13],[217,1],[243,14],[227,15],[236,16],[241,17],[237,18],[238,11],[239,18],[240,19],[90,20],[91,21],[78,22],[80,23],[97,1],[81,1],[197,24],[198,25],[65,26],[82,27],[92,28],[66,29],[79,30],[83,31],[84,32],[93,1],[95,33],[96,34],[85,1],[86,27],[88,35],[87,36],[89,37],[231,18],[235,38],[230,18],[228,18],[229,18],[234,39],[232,40],[233,41],[278,42],[244,1],[245,43],[275,44],[270,45],[269,46],[268,47],[267,48],[72,49],[69,50],[68,50],[70,51],[75,15],[76,52],[67,15],[73,53],[74,54],[320,55],[356,1],[319,1],[143,56],[144,56],[145,57],[146,58],[147,59],[148,60],[98,1],[101,61],[99,1],[100,1],[149,62],[150,63],[151,64],[152,65],[153,66],[154,67],[155,67],[157,68],[156,69],[158,70],[159,71],[160,72],[142,73],[161,74],[162,75],[163,76],[164,77],[165,78],[166,79],[167,80],[168,81],[169,82],[170,83],[171,84],[172,85],[173,86],[174,86],[175,87],[176,1],[177,1],[178,88],[180,89],[179,90],[181,91],[182,92],[183,93],[184,94],[185,95],[186,96],[187,97],[103,98],[102,1],[196,99],[188,100],[189,101],[190,102],[191,103],[192,104],[193,105],[194,106],[195,107],[336,108],[335,1],[274,1],[104,1],[220,1],[263,109],[260,110],[261,1],[262,111],[325,1],[328,112],[326,113],[329,114],[330,115],[94,1],[327,116],[77,1],[246,117],[264,118],[265,119],[271,120],[273,121],[272,14],[276,122],[279,123],[277,117],[256,124],[59,1],[257,125],[60,126],[250,1],[63,127],[247,128],[248,129],[249,129],[251,130],[252,131],[61,1],[255,132],[254,133],[62,134],[253,1],[266,1],[71,1],[203,135],[206,136],[207,136],[204,137],[205,136],[210,138],[208,4],[209,135],[57,1],[58,1],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[21,1],[4,1],[22,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[37,1],[34,1],[35,1],[36,1],[38,1],[7,1],[39,1],[44,1],[45,1],[40,1],[41,1],[42,1],[43,1],[8,1],[49,1],[46,1],[47,1],[48,1],[50,1],[9,1],[51,1],[52,1],[53,1],[56,1],[54,1],[55,1],[1,1],[64,1],[259,139],[258,140],[120,141],[130,142],[119,141],[140,143],[111,144],[110,145],[139,146],[133,147],[138,148],[113,149],[127,150],[112,151],[136,152],[108,153],[107,146],[137,154],[109,155],[114,156],[115,1],[118,156],[105,1],[141,157],[131,158],[122,159],[123,160],[125,161],[121,162],[124,163],[134,146],[116,164],[117,165],[126,166],[106,167],[129,158],[128,156],[132,1],[135,168],[355,169],[334,170],[351,171],[352,172],[349,173],[350,174],[338,175],[337,176],[339,177],[343,178],[342,179],[340,180],[341,1],[324,181],[323,182],[354,183],[353,184],[347,185],[345,186],[346,187],[333,188],[332,189],[331,18],[344,190],[201,191],[295,192],[294,18],[200,193],[289,194],[292,195],[297,196],[281,197],[283,198],[296,1],[287,199],[280,200],[286,201],[290,202],[285,203],[288,204],[291,205],[282,201],[199,1],[284,201],[293,206],[299,4],[301,4],[302,4],[298,4],[305,4],[304,4],[306,4],[303,4],[300,4],[307,207],[348,1],[317,1],[310,1],[318,208],[308,1],[312,209],[315,1],[309,1],[316,209],[314,210],[313,209],[311,209],[322,211],[321,212]],"exportedModulesMap":[[226,1],[242,2],[213,3],[202,1],[211,4],[215,5],[219,6],[223,7],[221,8],[216,1],[214,1],[222,9],[218,10],[224,11],[225,12],[212,13],[217,1],[243,14],[227,15],[236,16],[241,17],[237,18],[238,11],[239,18],[240,19],[90,20],[91,21],[78,22],[80,23],[97,1],[81,1],[197,24],[198,25],[65,26],[82,27],[92,28],[66,29],[79,30],[83,31],[84,32],[93,1],[95,33],[96,34],[85,1],[86,27],[88,35],[87,36],[89,37],[231,18],[235,38],[230,18],[228,18],[229,18],[234,39],[232,40],[233,41],[278,42],[244,1],[245,43],[275,44],[270,45],[269,46],[268,47],[267,48],[72,49],[69,50],[68,50],[70,51],[75,15],[76,52],[67,15],[73,53],[74,54],[320,55],[356,1],[319,1],[143,56],[144,56],[145,57],[146,58],[147,59],[148,60],[98,1],[101,61],[99,1],[100,1],[149,62],[150,63],[151,64],[152,65],[153,66],[154,67],[155,67],[157,68],[156,69],[158,70],[159,71],[160,72],[142,73],[161,74],[162,75],[163,76],[164,77],[165,78],[166,79],[167,80],[168,81],[169,82],[170,83],[171,84],[172,85],[173,86],[174,86],[175,87],[176,1],[177,1],[178,88],[180,89],[179,90],[181,91],[182,92],[183,93],[184,94],[185,95],[186,96],[187,97],[103,98],[102,1],[196,99],[188,100],[189,101],[190,102],[191,103],[192,104],[193,105],[194,106],[195,107],[336,108],[335,1],[274,1],[104,1],[220,1],[263,109],[260,110],[261,1],[262,111],[325,1],[328,112],[326,113],[329,114],[330,115],[94,1],[327,116],[77,1],[246,117],[264,118],[265,119],[271,120],[273,121],[272,14],[276,122],[279,123],[277,117],[256,124],[59,1],[257,125],[60,126],[250,1],[63,127],[247,128],[248,129],[249,129],[251,130],[252,131],[61,1],[255,132],[254,133],[62,134],[253,1],[266,1],[71,1],[203,135],[206,136],[207,136],[204,137],[205,136],[210,138],[208,4],[209,135],[57,1],[58,1],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[21,1],[4,1],[22,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[37,1],[34,1],[35,1],[36,1],[38,1],[7,1],[39,1],[44,1],[45,1],[40,1],[41,1],[42,1],[43,1],[8,1],[49,1],[46,1],[47,1],[48,1],[50,1],[9,1],[51,1],[52,1],[53,1],[56,1],[54,1],[55,1],[1,1],[64,1],[259,139],[258,140],[120,141],[130,142],[119,141],[140,143],[111,144],[110,145],[139,146],[133,147],[138,148],[113,149],[127,150],[112,151],[136,152],[108,153],[107,146],[137,154],[109,155],[114,156],[115,1],[118,156],[105,1],[141,157],[131,158],[122,159],[123,160],[125,161],[121,162],[124,163],[134,146],[116,164],[117,165],[126,166],[106,167],[129,158],[128,156],[132,1],[135,168],[355,213],[334,214],[351,215],[352,172],[349,216],[350,217],[338,218],[337,219],[339,177],[343,178],[342,218],[340,220],[324,181],[323,221],[354,183],[353,222],[347,185],[345,223],[346,224],[333,188],[332,216],[331,217],[344,221],[201,191],[295,192],[294,18],[200,193],[289,194],[292,195],[297,196],[281,197],[283,198],[296,1],[287,199],[280,200],[286,201],[290,202],[285,203],[288,204],[291,205],[282,201],[199,1],[284,201],[293,206],[299,4],[301,4],[302,4],[298,4],[305,4],[304,4],[306,4],[303,4],[300,4],[307,207],[348,1],[317,1],[310,1],[318,208],[308,1],[312,209],[315,1],[309,1],[316,209],[314,210],[313,209],[311,209],[322,211],[321,212]],"semanticDiagnosticsPerFile":[226,242,213,202,211,215,219,223,221,216,214,222,218,224,225,212,217,243,227,236,241,237,238,239,240,90,91,78,80,97,81,197,198,65,82,92,66,79,83,84,93,95,96,85,86,88,87,89,231,235,230,228,229,234,232,233,278,244,245,275,270,269,268,267,72,69,68,70,75,76,67,73,74,320,356,319,143,144,145,146,147,148,98,101,99,100,149,150,151,152,153,154,155,157,156,158,159,160,142,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,180,179,181,182,183,184,185,186,187,103,102,196,188,189,190,191,192,193,194,195,336,335,274,104,220,263,260,261,262,325,328,326,329,330,94,327,77,246,264,265,271,273,272,276,279,277,256,59,257,60,250,63,247,248,249,251,252,61,255,254,62,253,266,71,203,206,207,204,205,210,208,209,57,58,10,12,11,2,13,14,15,16,17,18,19,20,3,21,4,22,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,8,49,46,47,48,50,9,51,52,53,56,54,55,1,64,259,258,120,130,119,140,111,110,139,133,138,113,127,112,136,108,107,137,109,114,115,118,105,141,131,122,123,125,121,124,134,116,117,126,106,129,128,132,135,355,334,351,352,349,350,338,337,339,343,342,340,341,324,323,354,353,347,345,346,333,332,331,344,201,295,294,200,289,292,297,281,283,296,287,280,286,290,285,288,291,282,199,284,293,299,301,302,298,305,304,306,303,300,307,348,317,310,318,308,312,315,309,316,314,313,311,322,321]},"version":"5.4.5"}
|
@@ -8,7 +8,7 @@ import { pipe } from "it-pipe";
|
|
8
8
|
import { Uint8ArrayList } from "uint8arraylist";
|
9
9
|
import { BaseProtocol } from "../base_protocol.js";
|
10
10
|
import { PushRpc } from "./push_rpc.js";
|
11
|
-
import { isRLNResponseError
|
11
|
+
import { isRLNResponseError } from "./utils.js";
|
12
12
|
const log = new Logger("light-push");
|
13
13
|
export const LightPushCodec = "/vac/waku/lightpush/2.0.0-beta1";
|
14
14
|
export { PushResponse };
|
@@ -80,11 +80,12 @@ export class LightPushCore extends BaseProtocol {
|
|
80
80
|
res = await pipe([query.encode()], lp.encode, stream, lp.decode, async (source) => await all(source));
|
81
81
|
}
|
82
82
|
catch (err) {
|
83
|
+
// can fail only because of `stream` abortion
|
83
84
|
log.error("Failed to send waku light push request", err);
|
84
85
|
return {
|
85
86
|
success: null,
|
86
87
|
failure: {
|
87
|
-
error: ProtocolError.
|
88
|
+
error: ProtocolError.STREAM_ABORTED,
|
88
89
|
peerId: peerId
|
89
90
|
}
|
90
91
|
};
|
@@ -118,12 +119,11 @@ export class LightPushCore extends BaseProtocol {
|
|
118
119
|
};
|
119
120
|
}
|
120
121
|
if (isRLNResponseError(response.info)) {
|
121
|
-
|
122
|
-
log.error("Remote peer rejected the message: ", rlnErrorCase);
|
122
|
+
log.error("Remote peer fault: RLN generation");
|
123
123
|
return {
|
124
124
|
success: null,
|
125
125
|
failure: {
|
126
|
-
error:
|
126
|
+
error: ProtocolError.RLN_PROOF_GENERATION,
|
127
127
|
peerId: peerId
|
128
128
|
}
|
129
129
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"light_push.js","sourceRoot":"","sources":["../../../src/lib/light_push/light_push.ts"],"names":[],"mappings":"AACA,OAAO,EAML,aAAa,EAGd,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAC;AACpD,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,OAAO,GAAG,MAAM,QAAQ,CAAC;AACzB,OAAO,KAAK,EAAE,MAAM,oBAAoB,CAAC;AACzC,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAC/B,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAEhD,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAEnD,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACxC,OAAO,EAAE,kBAAkB,EAAE,
|
1
|
+
{"version":3,"file":"light_push.js","sourceRoot":"","sources":["../../../src/lib/light_push/light_push.ts"],"names":[],"mappings":"AACA,OAAO,EAML,aAAa,EAGd,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAC;AACpD,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,OAAO,GAAG,MAAM,QAAQ,CAAC;AACzB,OAAO,KAAK,EAAE,MAAM,oBAAoB,CAAC;AACzC,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAC/B,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAEhD,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAEnD,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACxC,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAEhD,MAAM,GAAG,GAAG,IAAI,MAAM,CAAC,YAAY,CAAC,CAAC;AAErC,MAAM,CAAC,MAAM,cAAc,GAAG,iCAAiC,CAAC;AAChE,OAAO,EAAE,YAAY,EAAE,CAAC;AAIxB;;GAEG;AACH,MAAM,OAAO,aAAc,SAAQ,YAAY;IAE3B;IADlB,YACkB,YAA2B,EAC3C,MAAc;QAEd,KAAK,CAAC,cAAc,EAAE,MAAM,CAAC,UAAU,EAAE,YAAY,CAAC,CAAC;QAHvC,iBAAY,GAAZ,YAAY,CAAe;IAI7C,CAAC;IAEO,KAAK,CAAC,kBAAkB,CAC9B,OAAiB,EACjB,OAAiB;QAEjB,IAAI,CAAC;YACH,IAAI,CAAC,OAAO,CAAC,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;gBACrD,GAAG,CAAC,KAAK,CAAC,kDAAkD,CAAC,CAAC;gBAC9D,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,aAAa,CAAC,aAAa,EAAE,CAAC;YAC7D,CAAC;YAED,IAAI,CAAC,CAAC,MAAM,qBAAqB,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,EAAE,CAAC;gBACrD,GAAG,CAAC,KAAK,CAAC,4DAA4D,CAAC,CAAC;gBACxE,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,aAAa,CAAC,YAAY,EAAE,CAAC;YAC5D,CAAC;YAED,MAAM,YAAY,GAAG,MAAM,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;YACvD,IAAI,CAAC,YAAY,EAAE,CAAC;gBAClB,GAAG,CAAC,KAAK,CAAC,iDAAiD,CAAC,CAAC;gBAC7D,OAAO;oBACL,KAAK,EAAE,IAAI;oBACX,KAAK,EAAE,aAAa,CAAC,aAAa;iBACnC,CAAC;YACJ,CAAC;YAED,MAAM,KAAK,GAAG,OAAO,CAAC,aAAa,CAAC,YAAY,EAAE,OAAO,CAAC,WAAW,CAAC,CAAC;YACvE,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;QAChC,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,GAAG,CAAC,KAAK,CAAC,gCAAgC,EAAE,KAAK,CAAC,CAAC;YAEnD,OAAO;gBACL,KAAK,EAAE,IAAI;gBACX,KAAK,EAAE,aAAa,CAAC,YAAY;aAClC,CAAC;QACJ,CAAC;IACH,CAAC;IAEM,KAAK,CAAC,IAAI,CACf,OAAiB,EACjB,OAAiB,EACjB,MAAc;QAEd,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,gBAAgB,EAAE,GAAG,MAAM,IAAI,CAAC,kBAAkB,CACtE,OAAO,EACP,OAAO,CACR,CAAC;QAEF,IAAI,gBAAgB,IAAI,CAAC,KAAK,EAAE,CAAC;YAC/B,OAAO;gBACL,OAAO,EAAE,IAAI;gBACb,OAAO,EAAE;oBACP,KAAK,EAAE,gBAAgB;oBACvB,MAAM;iBACP;aACF,CAAC;QACJ,CAAC;QAED,IAAI,MAAc,CAAC;QACnB,IAAI,CAAC;YACH,MAAM,GAAG,MAAM,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;QACxC,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,GAAG,CAAC,KAAK,CAAC,sBAAsB,EAAE,KAAK,CAAC,CAAC;YACzC,OAAO;gBACL,OAAO,EAAE,IAAI;gBACb,OAAO,EAAE;oBACP,KAAK,EAAE,aAAa,CAAC,mBAAmB;oBACxC,MAAM,EAAE,MAAM;iBACf;aACF,CAAC;QACJ,CAAC;QAED,IAAI,GAAiC,CAAC;QACtC,IAAI,CAAC;YACH,GAAG,GAAG,MAAM,IAAI,CACd,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC,EAChB,EAAE,CAAC,MAAM,EACT,MAAM,EACN,EAAE,CAAC,MAAM,EACT,KAAK,EAAE,MAAM,EAAE,EAAE,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,CACpC,CAAC;QACJ,CAAC;QAAC,OAAO,GAAG,EAAE,CAAC;YACb,6CAA6C;YAC7C,GAAG,CAAC,KAAK,CAAC,wCAAwC,EAAE,GAAG,CAAC,CAAC;YACzD,OAAO;gBACL,OAAO,EAAE,IAAI;gBACb,OAAO,EAAE;oBACP,KAAK,EAAE,aAAa,CAAC,cAAc;oBACnC,MAAM,EAAE,MAAM;iBACf;aACF,CAAC;QACJ,CAAC;QAED,MAAM,KAAK,GAAG,IAAI,cAAc,EAAE,CAAC;QACnC,GAAG,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,EAAE;YACpB,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QACtB,CAAC,CAAC,CAAC;QAEH,IAAI,QAAkC,CAAC;QACvC,IAAI,CAAC;YACH,QAAQ,GAAG,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,QAAQ,CAAC;QAC5C,CAAC;QAAC,OAAO,GAAG,EAAE,CAAC;YACb,GAAG,CAAC,KAAK,CAAC,6BAA6B,EAAE,GAAG,CAAC,CAAC;YAC9C,OAAO;gBACL,OAAO,EAAE,IAAI;gBACb,OAAO,EAAE;oBACP,KAAK,EAAE,aAAa,CAAC,aAAa;oBAClC,MAAM,EAAE,MAAM;iBACf;aACF,CAAC;QACJ,CAAC;QAED,IAAI,CAAC,QAAQ,EAAE,CAAC;YACd,GAAG,CAAC,KAAK,CAAC,2CAA2C,CAAC,CAAC;YACvD,OAAO;gBACL,OAAO,EAAE,IAAI;gBACb,OAAO,EAAE;oBACP,KAAK,EAAE,aAAa,CAAC,WAAW;oBAChC,MAAM,EAAE,MAAM;iBACf;aACF,CAAC;QACJ,CAAC;QAED,IAAI,kBAAkB,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC;YACtC,GAAG,CAAC,KAAK,CAAC,mCAAmC,CAAC,CAAC;YAC/C,OAAO;gBACL,OAAO,EAAE,IAAI;gBACb,OAAO,EAAE;oBACP,KAAK,EAAE,aAAa,CAAC,oBAAoB;oBACzC,MAAM,EAAE,MAAM;iBACf;aACF,CAAC;QACJ,CAAC;QAED,IAAI,CAAC,QAAQ,CAAC,SAAS,EAAE,CAAC;YACxB,GAAG,CAAC,KAAK,CAAC,oCAAoC,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAC;YAC/D,OAAO;gBACL,OAAO,EAAE,IAAI;gBACb,OAAO,EAAE;oBACP,KAAK,EAAE,aAAa,CAAC,oBAAoB;oBACzC,MAAM,EAAE,MAAM;iBACf;aACF,CAAC;QACJ,CAAC;QAED,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;IAC5C,CAAC;CACF"}
|
@@ -1,26 +1,18 @@
|
|
1
|
-
import { ProtocolError } from "@waku/interfaces";
|
2
1
|
// should match nwaku
|
3
2
|
// https://github.com/waku-org/nwaku/blob/c3cb06ac6c03f0f382d3941ea53b330f6a8dd127/waku/waku_rln_relay/rln_relay.nim#L309
|
4
3
|
// https://github.com/waku-org/nwaku/blob/c3cb06ac6c03f0f382d3941ea53b330f6a8dd127/tests/waku_rln_relay/rln/waku_rln_relay_utils.nim#L20
|
5
|
-
const RLN_GENERATION_PREFIX_ERROR = "could not generate rln
|
4
|
+
const RLN_GENERATION_PREFIX_ERROR = "could not generate rln proof";
|
5
|
+
const RLN_MESSAGE_ID_PREFIX_ERROR = "could not get new message id to generate an rln proof";
|
6
|
+
// rare case on nwaku side
|
7
|
+
// https://github.com/waku-org/nwaku/blob/a4e92a3d02448fd708857b7b6cac2a7faa7eb4f9/waku/waku_lightpush/callbacks.nim#L49
|
8
|
+
// https://github.com/waku-org/nwaku/blob/a4e92a3d02448fd708857b7b6cac2a7faa7eb4f9/waku/node/waku_node.nim#L1117
|
9
|
+
const RLN_REMOTE_VALIDATION = "RLN validation failed";
|
6
10
|
export const isRLNResponseError = (info) => {
|
7
11
|
if (!info) {
|
8
12
|
return false;
|
9
13
|
}
|
10
|
-
return info.includes(RLN_GENERATION_PREFIX_ERROR)
|
11
|
-
|
12
|
-
|
13
|
-
const rlnErrorMap = {
|
14
|
-
[ProtocolError.RLN_IDENTITY_MISSING]: ProtocolError.RLN_IDENTITY_MISSING,
|
15
|
-
[ProtocolError.RLN_MEMBERSHIP_INDEX]: ProtocolError.RLN_MEMBERSHIP_INDEX,
|
16
|
-
[ProtocolError.RLN_LIMIT_MISSING]: ProtocolError.RLN_LIMIT_MISSING
|
17
|
-
};
|
18
|
-
const infoLowerCase = info.toLowerCase();
|
19
|
-
for (const errorKey in rlnErrorMap) {
|
20
|
-
if (infoLowerCase.includes(errorKey.toLowerCase())) {
|
21
|
-
return rlnErrorMap[errorKey];
|
22
|
-
}
|
23
|
-
}
|
24
|
-
return ProtocolError.RLN_PROOF_GENERATION;
|
14
|
+
return (info.includes(RLN_GENERATION_PREFIX_ERROR) ||
|
15
|
+
info.includes(RLN_MESSAGE_ID_PREFIX_ERROR) ||
|
16
|
+
info.includes(RLN_REMOTE_VALIDATION));
|
25
17
|
};
|
26
18
|
//# sourceMappingURL=utils.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../src/lib/light_push/utils.ts"],"names":[],"mappings":"AAAA,
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../src/lib/light_push/utils.ts"],"names":[],"mappings":"AAAA,qBAAqB;AACrB,yHAAyH;AACzH,wIAAwI;AACxI,MAAM,2BAA2B,GAAG,8BAA8B,CAAC;AACnE,MAAM,2BAA2B,GAC/B,uDAAuD,CAAC;AAE1D,0BAA0B;AAC1B,wHAAwH;AACxH,gHAAgH;AAChH,MAAM,qBAAqB,GAAG,uBAAuB,CAAC;AAEtD,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,IAAa,EAAW,EAAE;IAC3D,IAAI,CAAC,IAAI,EAAE,CAAC;QACV,OAAO,KAAK,CAAC;IACf,CAAC;IAED,OAAO,CACL,IAAI,CAAC,QAAQ,CAAC,2BAA2B,CAAC;QAC1C,IAAI,CAAC,QAAQ,CAAC,2BAA2B,CAAC;QAC1C,IAAI,CAAC,QAAQ,CAAC,qBAAqB,CAAC,CACrC,CAAC;AACJ,CAAC,CAAC"}
|
package/package.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"name":"@waku/core","version":"0.0.34-
|
1
|
+
{"name":"@waku/core","version":"0.0.34-c8128d1.0","description":"TypeScript implementation of the Waku v2 protocol","types":"./dist/index.d.ts","module":"./dist/index.js","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js"},"./lib/message/version_0":{"types":"./dist/lib/message/version_0.d.ts","import":"./dist/lib/message/version_0.js"},"./lib/base_protocol":{"types":"./dist/lib/base_protocol.d.ts","import":"./dist/lib/base_protocol.js"}},"typesVersions":{"*":{"lib/*":["dist/lib/*"],"constants/*":["dist/constants/*"]}},"type":"module","homepage":"https://github.com/waku-org/js-waku/tree/master/packages/core#readme","repository":{"type":"git","url":"https://github.com/waku-org/js-waku.git"},"bugs":{"url":"https://github.com/waku-org/js-waku/issues"},"license":"MIT OR Apache-2.0","keywords":["waku","decentralised","communication","web3","ethereum","dapps"],"scripts":{"build":"run-s build:**","build:esm":"tsc","build:bundle":"rollup --config rollup.config.js","fix":"run-s fix:*","fix:lint":"eslint src *.js --fix","check":"run-s check:*","check:tsc":"tsc -p tsconfig.dev.json","check:lint":"eslint src *.js","check:spelling":"cspell \"{README.md,src/**/*.ts}\"","test":"NODE_ENV=test run-s test:*","test:node":"NODE_ENV=test TS_NODE_PROJECT=./tsconfig.dev.json mocha","test:browser":"NODE_ENV=test karma start karma.conf.cjs","watch:build":"tsc -p tsconfig.json -w","watch:test":"mocha --watch","prepublish":"npm run build","reset-hard":"git clean -dfx -e .idea && git reset --hard && npm i && npm run build"},"engines":{"node":">=20"},"dependencies":{"@waku/enr":"0.0.28-c8128d1.0","@waku/interfaces":"0.0.29-c8128d1.0","@libp2p/ping":"2.0.1","@waku/proto":"0.0.9-c8128d1.0","@waku/utils":"0.0.22-c8128d1.0","debug":"^4.3.4","it-all":"^3.0.4","it-length-prefixed":"^9.0.4","it-pipe":"^3.0.1","uint8arraylist":"^2.4.3","uuid":"^9.0.0"},"devDependencies":{"@libp2p/peer-id":"^5.0.1","@libp2p/interface":"^2.1.3","@multiformats/multiaddr":"^12.0.0","@rollup/plugin-commonjs":"^25.0.7","@rollup/plugin-json":"^6.0.0","@rollup/plugin-node-resolve":"^15.2.3","@types/chai":"^4.3.11","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/uuid":"^9.0.8","@waku/build-utils":"*","chai":"^4.3.10","sinon":"^18.0.0","cspell":"^8.6.1","fast-check":"^3.19.0","ignore-loader":"^0.1.2","isomorphic-fetch":"^3.0.0","mocha":"^10.3.0","npm-run-all":"^4.1.5","process":"^0.11.10","rollup":"^4.12.0"},"peerDependencies":{"@multiformats/multiaddr":"^12.0.0","libp2p":"2.1.8"},"peerDependenciesMeta":{"@multiformats/multiaddr":{"optional":true},"libp2p":{"optional":true}},"files":["dist","bundle","src/**/*.ts","!**/*.spec.*","!**/*.json","CHANGELOG.md","LICENSE","README.md"]}
|
@@ -20,7 +20,7 @@ import { Uint8ArrayList } from "uint8arraylist";
|
|
20
20
|
import { BaseProtocol } from "../base_protocol.js";
|
21
21
|
|
22
22
|
import { PushRpc } from "./push_rpc.js";
|
23
|
-
import { isRLNResponseError
|
23
|
+
import { isRLNResponseError } from "./utils.js";
|
24
24
|
|
25
25
|
const log = new Logger("light-push");
|
26
26
|
|
@@ -120,11 +120,12 @@ export class LightPushCore extends BaseProtocol implements IBaseProtocolCore {
|
|
120
120
|
async (source) => await all(source)
|
121
121
|
);
|
122
122
|
} catch (err) {
|
123
|
+
// can fail only because of `stream` abortion
|
123
124
|
log.error("Failed to send waku light push request", err);
|
124
125
|
return {
|
125
126
|
success: null,
|
126
127
|
failure: {
|
127
|
-
error: ProtocolError.
|
128
|
+
error: ProtocolError.STREAM_ABORTED,
|
128
129
|
peerId: peerId
|
129
130
|
}
|
130
131
|
};
|
@@ -161,12 +162,11 @@ export class LightPushCore extends BaseProtocol implements IBaseProtocolCore {
|
|
161
162
|
}
|
162
163
|
|
163
164
|
if (isRLNResponseError(response.info)) {
|
164
|
-
|
165
|
-
log.error("Remote peer rejected the message: ", rlnErrorCase);
|
165
|
+
log.error("Remote peer fault: RLN generation");
|
166
166
|
return {
|
167
167
|
success: null,
|
168
168
|
failure: {
|
169
|
-
error:
|
169
|
+
error: ProtocolError.RLN_PROOF_GENERATION,
|
170
170
|
peerId: peerId
|
171
171
|
}
|
172
172
|
};
|
@@ -1,31 +1,23 @@
|
|
1
|
-
import { ProtocolError } from "@waku/interfaces";
|
2
|
-
|
3
1
|
// should match nwaku
|
4
2
|
// https://github.com/waku-org/nwaku/blob/c3cb06ac6c03f0f382d3941ea53b330f6a8dd127/waku/waku_rln_relay/rln_relay.nim#L309
|
5
3
|
// https://github.com/waku-org/nwaku/blob/c3cb06ac6c03f0f382d3941ea53b330f6a8dd127/tests/waku_rln_relay/rln/waku_rln_relay_utils.nim#L20
|
6
|
-
const RLN_GENERATION_PREFIX_ERROR = "could not generate rln
|
4
|
+
const RLN_GENERATION_PREFIX_ERROR = "could not generate rln proof";
|
5
|
+
const RLN_MESSAGE_ID_PREFIX_ERROR =
|
6
|
+
"could not get new message id to generate an rln proof";
|
7
|
+
|
8
|
+
// rare case on nwaku side
|
9
|
+
// https://github.com/waku-org/nwaku/blob/a4e92a3d02448fd708857b7b6cac2a7faa7eb4f9/waku/waku_lightpush/callbacks.nim#L49
|
10
|
+
// https://github.com/waku-org/nwaku/blob/a4e92a3d02448fd708857b7b6cac2a7faa7eb4f9/waku/node/waku_node.nim#L1117
|
11
|
+
const RLN_REMOTE_VALIDATION = "RLN validation failed";
|
7
12
|
|
8
13
|
export const isRLNResponseError = (info?: string): boolean => {
|
9
14
|
if (!info) {
|
10
15
|
return false;
|
11
16
|
}
|
12
17
|
|
13
|
-
return
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
[ProtocolError.RLN_IDENTITY_MISSING]: ProtocolError.RLN_IDENTITY_MISSING,
|
19
|
-
[ProtocolError.RLN_MEMBERSHIP_INDEX]: ProtocolError.RLN_MEMBERSHIP_INDEX,
|
20
|
-
[ProtocolError.RLN_LIMIT_MISSING]: ProtocolError.RLN_LIMIT_MISSING
|
21
|
-
};
|
22
|
-
|
23
|
-
const infoLowerCase = info.toLowerCase();
|
24
|
-
for (const errorKey in rlnErrorMap) {
|
25
|
-
if (infoLowerCase.includes(errorKey.toLowerCase())) {
|
26
|
-
return rlnErrorMap[errorKey];
|
27
|
-
}
|
28
|
-
}
|
29
|
-
|
30
|
-
return ProtocolError.RLN_PROOF_GENERATION;
|
18
|
+
return (
|
19
|
+
info.includes(RLN_GENERATION_PREFIX_ERROR) ||
|
20
|
+
info.includes(RLN_MESSAGE_ID_PREFIX_ERROR) ||
|
21
|
+
info.includes(RLN_REMOTE_VALIDATION)
|
22
|
+
);
|
31
23
|
};
|