@btc-vision/bitcoin 6.4.11 → 6.5.2

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.
Files changed (105) hide show
  1. package/browser/chunks/crypto-0PweVewC.js +2033 -0
  2. package/browser/chunks/payments-CgasufRS.js +1047 -0
  3. package/browser/chunks/psbt-BIwOrKer.js +4096 -0
  4. package/browser/chunks/script-CROJPzz_.js +318 -0
  5. package/browser/chunks/transaction-DchBu35N.js +432 -0
  6. package/browser/chunks/utils-CO5kmxe9.js +761 -0
  7. package/browser/crypto/crypto.d.ts +1 -1
  8. package/browser/crypto.d.ts +1 -1
  9. package/browser/hooks/HookedSigner.d.ts +1 -1
  10. package/browser/index.d.ts +6 -4
  11. package/browser/index.js +92 -2
  12. package/browser/payments/index.d.ts +2 -2
  13. package/browser/payments/lazy.d.ts +1 -1
  14. package/browser/psbt/bip371.d.ts +5 -1
  15. package/browser/psbt.d.ts +1 -1
  16. package/browser/typeforce.d.ts +38 -0
  17. package/browser/types.d.ts +22 -20
  18. package/build/address.js +2 -2
  19. package/build/bip66.js +2 -2
  20. package/build/block.js +2 -2
  21. package/build/crypto.d.ts +1 -1
  22. package/build/crypto.js +2 -3
  23. package/build/hooks/HookedSigner.d.ts +1 -1
  24. package/build/index.d.ts +6 -4
  25. package/build/index.js +2 -2
  26. package/build/payments/bip341.js +1 -1
  27. package/build/payments/index.d.ts +2 -2
  28. package/build/payments/lazy.d.ts +1 -1
  29. package/build/payments/p2op.js +3 -3
  30. package/build/payments/p2pk.js +1 -1
  31. package/build/payments/p2pkh.js +3 -3
  32. package/build/payments/p2sh.js +3 -3
  33. package/build/payments/p2tr.js +9 -5
  34. package/build/payments/p2wpkh.js +3 -3
  35. package/build/payments/p2wsh.js +2 -2
  36. package/build/psbt/bip371.d.ts +5 -1
  37. package/build/psbt/bip371.js +10 -7
  38. package/build/psbt/psbtutils.js +5 -4
  39. package/build/psbt.d.ts +1 -1
  40. package/build/psbt.js +78 -45
  41. package/build/script.js +2 -2
  42. package/build/script_signature.js +7 -7
  43. package/build/transaction.js +22 -10
  44. package/build/tsconfig.tsbuildinfo +1 -0
  45. package/build/types.d.ts +22 -20
  46. package/build/types.js +10 -9
  47. package/package.json +37 -63
  48. package/src/address.ts +2 -2
  49. package/src/bip66.ts +2 -2
  50. package/src/block.ts +8 -5
  51. package/src/crypto.ts +3 -4
  52. package/src/ecc_lib.ts +1 -1
  53. package/src/hooks/HookedSigner.ts +1 -1
  54. package/src/index.ts +6 -6
  55. package/src/payments/bip341.ts +1 -1
  56. package/src/payments/embed.ts +1 -2
  57. package/src/payments/index.ts +4 -4
  58. package/src/payments/lazy.ts +3 -3
  59. package/src/payments/p2op.ts +4 -3
  60. package/src/payments/p2pk.ts +1 -1
  61. package/src/payments/p2pkh.ts +3 -3
  62. package/src/payments/p2sh.ts +13 -5
  63. package/src/payments/p2tr.ts +8 -9
  64. package/src/payments/p2wpkh.ts +3 -3
  65. package/src/payments/p2wsh.ts +4 -4
  66. package/src/psbt/bip371.ts +22 -13
  67. package/src/psbt/psbtutils.ts +8 -5
  68. package/src/psbt.ts +127 -80
  69. package/src/script.ts +4 -4
  70. package/src/script_signature.ts +7 -7
  71. package/src/transaction.ts +31 -18
  72. package/src/typeforce.d.ts +38 -0
  73. package/src/types.ts +34 -29
  74. package/test/address.spec.ts +12 -4
  75. package/test/bitcoin.core.spec.ts +1 -1
  76. package/test/block.spec.ts +1 -1
  77. package/test/bufferutils.spec.ts +1 -1
  78. package/test/crypto.spec.ts +3 -2
  79. package/test/fixtures/address.json +1 -1
  80. package/test/integration/addresses.spec.ts +1 -1
  81. package/test/integration/bip32.spec.ts +2 -2
  82. package/test/integration/blocks.spec.ts +1 -1
  83. package/test/integration/cltv.spec.ts +3 -3
  84. package/test/integration/csv.spec.ts +3 -3
  85. package/test/integration/payments.spec.ts +1 -1
  86. package/test/integration/taproot.spec.ts +8 -7
  87. package/test/integration/transactions.spec.ts +2 -2
  88. package/test/payments.spec.ts +4 -3
  89. package/test/psbt.spec.ts +106 -74
  90. package/test/script.spec.ts +73 -7
  91. package/test/script_number.spec.ts +1 -1
  92. package/test/script_signature.spec.ts +1 -1
  93. package/test/transaction.spec.ts +1 -1
  94. package/test/tsconfig.json +1 -1
  95. package/test/types.spec.ts +1 -1
  96. package/vite.config.browser.ts +93 -0
  97. package/vitest.config.ts +16 -0
  98. package/.babelrc +0 -4
  99. package/.mocharc.json +0 -13
  100. package/browser/index.js.LICENSE.txt +0 -14
  101. package/cjs/package.json +0 -3
  102. package/gulpfile.js +0 -42
  103. package/src/crypto/crypto-browser.js +0 -75
  104. package/test/ts-node-register.js +0 -7
  105. package/webpack.config.js +0 -79
package/build/psbt.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import { Psbt as PsbtBase } from 'bip174';
2
2
  import * as varuint from 'bip174/src/lib/converter/varint.js';
3
+ const varuintDecode = varuint.decode;
3
4
  import { checkForInput, checkForOutput } from 'bip174/src/lib/utils.js';
4
5
  import { fromOutputScript, isUnknownSegwitVersion, toOutputScript } from './address.js';
5
6
  import { cloneBuffer, reverseBuffer } from './bufferutils.js';
@@ -94,7 +95,8 @@ export class Psbt {
94
95
  return this;
95
96
  }
96
97
  clone() {
97
- return Psbt.fromBuffer(this.data.toBuffer(), JSON.parse(JSON.stringify(this.opts)));
98
+ const clonedOpts = JSON.parse(JSON.stringify(this.opts));
99
+ return Psbt.fromBuffer(this.data.toBuffer(), clonedOpts);
98
100
  }
99
101
  setMaximumFeeRate(satoshiPerByte) {
100
102
  check32Bit(satoshiPerByte);
@@ -164,16 +166,18 @@ export class Psbt {
164
166
  return this;
165
167
  }
166
168
  addOutput(outputData) {
169
+ const hasAddress = 'address' in outputData;
170
+ const hasScript = 'script' in outputData;
167
171
  if (arguments.length > 1 ||
168
172
  !outputData ||
169
173
  outputData.value === undefined ||
170
- (outputData.address === undefined && outputData.script === undefined)) {
174
+ (!hasAddress && !hasScript)) {
171
175
  throw new Error(`Invalid arguments for Psbt.addOutput. ` +
172
176
  `Requires single object with at least [script or address] and [value]`);
173
177
  }
174
178
  checkInputsForPartialSig(this.data.inputs, 'addOutput');
175
- const { address } = outputData;
176
- if (typeof address === 'string') {
179
+ if (hasAddress) {
180
+ const { address } = outputData;
177
181
  const { network } = this.opts;
178
182
  const script = toOutputScript(address, network);
179
183
  outputData = Object.assign({}, outputData, { script });
@@ -255,7 +259,7 @@ export class Psbt {
255
259
  validateSignaturesOfAllInputs(validator) {
256
260
  checkForInput(this.data.inputs, 0);
257
261
  const results = range(this.data.inputs.length).map((idx) => this.validateSignaturesOfInput(idx, validator));
258
- return results.reduce((final, res) => res === true && final, true);
262
+ return results.reduce((final, res) => res && final, true);
259
263
  }
260
264
  validateSignaturesOfInput(inputIndex, validator, pubkey) {
261
265
  const input = this.data.inputs[inputIndex];
@@ -277,7 +281,7 @@ export class Psbt {
277
281
  results.push(false);
278
282
  }
279
283
  }
280
- if (results.every((v) => v === false)) {
284
+ if (results.every((v) => !v)) {
281
285
  throw new Error('No inputs were signed');
282
286
  }
283
287
  return this;
@@ -297,7 +301,7 @@ export class Psbt {
297
301
  }));
298
302
  }
299
303
  return Promise.all(promises).then(() => {
300
- if (results.every((v) => v === false)) {
304
+ if (results.every((v) => !v)) {
301
305
  return reject(new Error('No inputs were signed'));
302
306
  }
303
307
  resolve();
@@ -339,7 +343,7 @@ export class Psbt {
339
343
  results.push(false);
340
344
  }
341
345
  }
342
- if (results.every((v) => v === false)) {
346
+ if (results.every((v) => !v)) {
343
347
  throw new Error('No inputs were signed');
344
348
  }
345
349
  return this;
@@ -358,7 +362,7 @@ export class Psbt {
358
362
  }));
359
363
  }
360
364
  return Promise.all(promises).then(() => {
361
- if (results.every((v) => v === false)) {
365
+ if (results.every((v) => !v)) {
362
366
  return reject(new Error('No inputs were signed'));
363
367
  }
364
368
  resolve();
@@ -456,9 +460,12 @@ export class Psbt {
456
460
  checkTaprootHashesForSig(inputIndex, input, keyPair, tapLeafHashToSign, allowedSighashTypes) {
457
461
  if (typeof keyPair.signSchnorr !== 'function')
458
462
  throw new Error(`Need Schnorr Signer to sign taproot input #${inputIndex}.`);
459
- const hashesForSig = getTaprootHashesForSig(inputIndex, input, this.data.inputs, keyPair.publicKey, this.__CACHE, tapLeafHashToSign, allowedSighashTypes);
463
+ const pubkey = Buffer.isBuffer(keyPair.publicKey)
464
+ ? keyPair.publicKey
465
+ : Buffer.from(keyPair.publicKey);
466
+ const hashesForSig = getTaprootHashesForSig(inputIndex, input, this.data.inputs, pubkey, this.__CACHE, tapLeafHashToSign, allowedSighashTypes);
460
467
  if (!hashesForSig || !hashesForSig.length)
461
- throw new Error(`Can not sign for input #${inputIndex} with the key ${keyPair.publicKey.toString('hex')}`);
468
+ throw new Error(`Can not sign for input #${inputIndex} with the key ${pubkey.toString('hex')}`);
462
469
  return hashesForSig;
463
470
  }
464
471
  _finalizeInput(inputIndex, input, finalScriptsFunc = getFinalScripts, canRunChecks = true) {
@@ -484,6 +491,8 @@ export class Psbt {
484
491
  output: input.witnessUtxo.script,
485
492
  signature: input.tapKeySig,
486
493
  });
494
+ if (!payment.witness)
495
+ throw new Error('Cannot finalize taproot key spend');
487
496
  const finalScriptWitness = witnessStackToScriptWitness(payment.witness);
488
497
  this.data.updateInput(inputIndex, { finalScriptWitness });
489
498
  }
@@ -510,7 +519,7 @@ export class Psbt {
510
519
  let sighashCache;
511
520
  for (const pSig of mySigs) {
512
521
  const sig = bscript.signature.decode(pSig.signature);
513
- const { hash, script } = sighashCache !== sig.hashType
522
+ const { hash, script } = sighashCache !== sig.hashType || !hashCache || !scriptCache
514
523
  ? getHashForSig(inputIndex, Object.assign({}, input, {
515
524
  sighashType: sig.hashType,
516
525
  }), this.__CACHE, true)
@@ -521,7 +530,7 @@ export class Psbt {
521
530
  checkScriptForPubkey(pSig.pubkey, script, 'verify');
522
531
  results.push(validator(pSig.pubkey, hash, sig.signature));
523
532
  }
524
- return results.every((res) => res === true);
533
+ return results.every((res) => res);
525
534
  }
526
535
  validateSignaturesOfTaprootInput(inputIndex, validator, pubkey) {
527
536
  const input = this.data.inputs[inputIndex];
@@ -559,26 +568,35 @@ export class Psbt {
559
568
  return validationResultCount > 0;
560
569
  }
561
570
  _signInput(inputIndex, keyPair, sighashTypes = [Transaction.SIGHASH_ALL]) {
562
- const { hash, sighashType } = getHashAndSighashType(this.data.inputs, inputIndex, keyPair.publicKey, this.__CACHE, sighashTypes);
571
+ const pubkey = Buffer.isBuffer(keyPair.publicKey)
572
+ ? keyPair.publicKey
573
+ : Buffer.from(keyPair.publicKey);
574
+ const { hash, sighashType } = getHashAndSighashType(this.data.inputs, inputIndex, pubkey, this.__CACHE, sighashTypes);
575
+ const sig = keyPair.sign(hash);
563
576
  const partialSig = [
564
577
  {
565
- pubkey: keyPair.publicKey,
566
- signature: bscript.signature.encode(keyPair.sign(hash), sighashType),
578
+ pubkey,
579
+ signature: bscript.signature.encode(Buffer.isBuffer(sig) ? sig : Buffer.from(sig), sighashType),
567
580
  },
568
581
  ];
569
582
  this.data.updateInput(inputIndex, { partialSig });
570
583
  return this;
571
584
  }
572
585
  _signTaprootInput(inputIndex, input, keyPair, tapLeafHashToSign, allowedSighashTypes = [Transaction.SIGHASH_DEFAULT]) {
586
+ const pubkey = Buffer.isBuffer(keyPair.publicKey)
587
+ ? keyPair.publicKey
588
+ : Buffer.from(keyPair.publicKey);
573
589
  const hashesForSig = this.checkTaprootHashesForSig(inputIndex, input, keyPair, tapLeafHashToSign, allowedSighashTypes);
590
+ const signSchnorr = keyPair.signSchnorr.bind(keyPair);
591
+ const toBuffer = (data) => Buffer.isBuffer(data) ? data : Buffer.from(data);
574
592
  const tapKeySig = hashesForSig
575
593
  .filter((h) => !h.leafHash)
576
- .map((h) => serializeTaprootSignature(keyPair.signSchnorr(h.hash), input.sighashType))[0];
594
+ .map((h) => serializeTaprootSignature(toBuffer(signSchnorr(h.hash)), input.sighashType))[0];
577
595
  const tapScriptSig = hashesForSig
578
596
  .filter((h) => !!h.leafHash)
579
597
  .map((h) => ({
580
- pubkey: toXOnly(keyPair.publicKey),
581
- signature: serializeTaprootSignature(keyPair.signSchnorr(h.hash), input.sighashType),
598
+ pubkey: toXOnly(pubkey),
599
+ signature: serializeTaprootSignature(toBuffer(signSchnorr(h.hash)), input.sighashType),
582
600
  leafHash: h.leafHash,
583
601
  }));
584
602
  if (tapKeySig) {
@@ -590,25 +608,34 @@ export class Psbt {
590
608
  return this;
591
609
  }
592
610
  _signInputAsync(inputIndex, keyPair, sighashTypes = [Transaction.SIGHASH_ALL]) {
593
- const { hash, sighashType } = getHashAndSighashType(this.data.inputs, inputIndex, keyPair.publicKey, this.__CACHE, sighashTypes);
611
+ const pubkey = Buffer.isBuffer(keyPair.publicKey)
612
+ ? keyPair.publicKey
613
+ : Buffer.from(keyPair.publicKey);
614
+ const { hash, sighashType } = getHashAndSighashType(this.data.inputs, inputIndex, pubkey, this.__CACHE, sighashTypes);
594
615
  return Promise.resolve(keyPair.sign(hash)).then((signature) => {
616
+ const sig = Buffer.isBuffer(signature) ? signature : Buffer.from(signature);
595
617
  const partialSig = [
596
618
  {
597
- pubkey: keyPair.publicKey,
598
- signature: bscript.signature.encode(signature, sighashType),
619
+ pubkey,
620
+ signature: bscript.signature.encode(sig, sighashType),
599
621
  },
600
622
  ];
601
623
  this.data.updateInput(inputIndex, { partialSig });
602
624
  });
603
625
  }
604
626
  async _signTaprootInputAsync(inputIndex, input, keyPair, tapLeafHash, sighashTypes = [Transaction.SIGHASH_DEFAULT]) {
627
+ const pubkey = Buffer.isBuffer(keyPair.publicKey)
628
+ ? keyPair.publicKey
629
+ : Buffer.from(keyPair.publicKey);
605
630
  const hashesForSig = this.checkTaprootHashesForSig(inputIndex, input, keyPair, tapLeafHash, sighashTypes);
631
+ const signSchnorr = keyPair.signSchnorr.bind(keyPair);
632
+ const toBuffer = (data) => Buffer.isBuffer(data) ? data : Buffer.from(data);
606
633
  const signaturePromises = [];
607
634
  const tapKeyHash = hashesForSig.filter((h) => !h.leafHash)[0];
608
635
  if (tapKeyHash) {
609
- const tapKeySigPromise = Promise.resolve(keyPair.signSchnorr(tapKeyHash.hash)).then((sig) => {
636
+ const tapKeySigPromise = Promise.resolve(signSchnorr(tapKeyHash.hash)).then((sig) => {
610
637
  return {
611
- tapKeySig: serializeTaprootSignature(sig, input.sighashType),
638
+ tapKeySig: serializeTaprootSignature(toBuffer(sig), input.sighashType),
612
639
  };
613
640
  });
614
641
  signaturePromises.push(tapKeySigPromise);
@@ -616,11 +643,11 @@ export class Psbt {
616
643
  const tapScriptHashes = hashesForSig.filter((h) => !!h.leafHash);
617
644
  if (tapScriptHashes.length) {
618
645
  const tapScriptSigPromises = tapScriptHashes.map(async (tsh) => {
619
- const signature = await keyPair.signSchnorr(tsh.hash);
646
+ const signature = await signSchnorr(tsh.hash);
620
647
  const tapScriptSig = [
621
648
  {
622
- pubkey: toXOnly(keyPair.publicKey),
623
- signature: serializeTaprootSignature(signature, input.sighashType),
649
+ pubkey: toXOnly(pubkey),
650
+ signature: serializeTaprootSignature(toBuffer(signature), input.sighashType),
624
651
  leafHash: tsh.leafHash,
625
652
  },
626
653
  ];
@@ -681,11 +708,12 @@ function canFinalize(input, script, scriptType) {
681
708
  case 'pubkeyhash':
682
709
  case 'witnesspubkeyhash':
683
710
  return hasSigs(1, input.partialSig);
684
- case 'multisig':
711
+ case 'multisig': {
685
712
  const p2ms = payments.p2ms({
686
713
  output: script,
687
714
  });
688
715
  return hasSigs(p2ms.m, input.partialSig, p2ms.pubkeys);
716
+ }
689
717
  case 'nonstandard':
690
718
  return true;
691
719
  default:
@@ -693,7 +721,7 @@ function canFinalize(input, script, scriptType) {
693
721
  }
694
722
  }
695
723
  function checkCache(cache) {
696
- if (cache.__UNSAFE_SIGN_NONSEGWIT !== false) {
724
+ if (cache.__UNSAFE_SIGN_NONSEGWIT) {
697
725
  throw new Error('Not BIP174 compliant, can not export');
698
726
  }
699
727
  }
@@ -721,9 +749,14 @@ function isFinalized(input) {
721
749
  }
722
750
  function bip32DerivationIsMine(root) {
723
751
  return (d) => {
724
- if (!d.masterFingerprint.equals(root.fingerprint))
752
+ const fingerprint = Buffer.isBuffer(root.fingerprint)
753
+ ? root.fingerprint
754
+ : Buffer.from(root.fingerprint);
755
+ if (!d.masterFingerprint.equals(fingerprint))
725
756
  return false;
726
- if (!root.derivePath(d.path).publicKey.equals(d.pubkey))
757
+ const derivedPubkey = root.derivePath(d.path).publicKey;
758
+ const pubkey = Buffer.isBuffer(derivedPubkey) ? derivedPubkey : Buffer.from(derivedPubkey);
759
+ if (!pubkey.equals(d.pubkey))
727
760
  return false;
728
761
  return true;
729
762
  };
@@ -785,7 +818,7 @@ function checkTxForDupeIns(tx, cache) {
785
818
  });
786
819
  }
787
820
  function checkTxInputCache(cache, input) {
788
- const key = reverseBuffer(Buffer.from(input.hash)).toString('hex') + ':' + input.index;
821
+ const key = `${reverseBuffer(Buffer.from(input.hash)).toString('hex')}:${input.index}`;
789
822
  if (cache.__TX_IN_CACHE[key])
790
823
  throw new Error('Duplicate input detected.');
791
824
  cache.__TX_IN_CACHE[key] = 1;
@@ -819,10 +852,10 @@ function getTxCacheValue(key, name, inputs, c, disableOutputChecks = false) {
819
852
  tx = c.__TX.clone();
820
853
  }
821
854
  inputFinalizeGetAmts(inputs, tx, c, mustFinalize, disableOutputChecks);
822
- if (key === '__FEE_RATE')
823
- return c.__FEE_RATE;
824
- else if (key === '__FEE')
825
- return c.__FEE;
855
+ const value = key === '__FEE_RATE' ? c.__FEE_RATE : c.__FEE;
856
+ if (value === undefined)
857
+ throw new Error(`Failed to calculate ${name}`);
858
+ return value;
826
859
  }
827
860
  export function getFinalScripts(inputIndex, input, script, isSegwit, isP2SH, isP2WSH, canRunChecks = true, solution) {
828
861
  const scriptType = classifyScript(script);
@@ -907,15 +940,15 @@ function getHashForSig(inputIndex, input, cache, forValidate, sighashTypes) {
907
940
  }
908
941
  else if (isP2WPKH(meaningfulScript)) {
909
942
  const signingScript = payments.p2pkh({
910
- hash: meaningfulScript.slice(2),
943
+ hash: meaningfulScript.subarray(2),
911
944
  }).output;
912
945
  hash = unsignedTx.hashForWitnessV0(inputIndex, signingScript, prevout.value, sighashType);
913
946
  }
914
947
  else {
915
- if (input.nonWitnessUtxo === undefined && cache.__UNSAFE_SIGN_NONSEGWIT === false)
948
+ if (input.nonWitnessUtxo === undefined && !cache.__UNSAFE_SIGN_NONSEGWIT)
916
949
  throw new Error(`Input #${inputIndex} has witnessUtxo but non-segwit script: ` +
917
- `${meaningfulScript.toString('hex')}`);
918
- if (!forValidate && cache.__UNSAFE_SIGN_NONSEGWIT !== false)
950
+ meaningfulScript.toString('hex'));
951
+ if (!forValidate && cache.__UNSAFE_SIGN_NONSEGWIT)
919
952
  console.warn('Warning: Signing non-segwit inputs without the full parent transaction ' +
920
953
  'means there is a chance that a miner could feed you incorrect information ' +
921
954
  "to trick you into paying large fees. This behavior is the same as Psbt's predecessor " +
@@ -1109,11 +1142,11 @@ function scriptWitnessToWitnessStack(buffer) {
1109
1142
  let offset = 0;
1110
1143
  function readSlice(n) {
1111
1144
  offset += n;
1112
- return buffer.slice(offset - n, offset);
1145
+ return buffer.subarray(offset - n, offset);
1113
1146
  }
1114
1147
  function readVarInt() {
1115
- const vi = varuint.decode(buffer, offset);
1116
- offset += varuint.decode.bytes;
1148
+ const vi = varuintDecode(buffer, offset);
1149
+ offset += varuintDecode.bytes;
1117
1150
  return vi;
1118
1151
  }
1119
1152
  function readVarSlice() {
@@ -1265,11 +1298,11 @@ function redeemFromFinalWitnessScript(finalScript) {
1265
1298
  function compressPubkey(pubkey) {
1266
1299
  if (pubkey.length === 65) {
1267
1300
  const parity = pubkey[64] & 1;
1268
- const newKey = pubkey.slice(0, 33);
1301
+ const newKey = Buffer.from(pubkey.subarray(0, 33));
1269
1302
  newKey[0] = 2 | parity;
1270
1303
  return newKey;
1271
1304
  }
1272
- return pubkey.slice();
1305
+ return Buffer.from(pubkey);
1273
1306
  }
1274
1307
  function isPubkeyLike(buf) {
1275
1308
  return buf.length === 33 && bscript.isCanonicalPubKey(buf);
package/build/script.js CHANGED
@@ -92,7 +92,7 @@ export function decompile(buffer) {
92
92
  i += d.size;
93
93
  if (i + d.number > buffer.length)
94
94
  return null;
95
- const data = buffer.slice(i, i + d.number);
95
+ const data = buffer.subarray(i, i + d.number);
96
96
  i += d.number;
97
97
  const op = asMinimalOP(data);
98
98
  if (op !== undefined) {
@@ -161,7 +161,7 @@ export function isCanonicalScriptSignature(buffer) {
161
161
  return false;
162
162
  if (!isDefinedHashType(buffer[buffer.length - 1]))
163
163
  return false;
164
- return bip66.check(buffer.slice(0, -1));
164
+ return bip66.check(buffer.subarray(0, -1));
165
165
  }
166
166
  export const number = scriptNumber;
167
167
  export const signature = scriptSignature;
@@ -9,14 +9,14 @@ function toDER(x) {
9
9
  ++i;
10
10
  if (i === x.length)
11
11
  return ZERO;
12
- x = x.slice(i);
12
+ x = x.subarray(i);
13
13
  if (x[0] & 0x80)
14
14
  return Buffer.concat([ZERO, x], 1 + x.length);
15
15
  return x;
16
16
  }
17
17
  function fromDER(x) {
18
18
  if (x[0] === 0x00)
19
- x = x.slice(1);
19
+ x = x.subarray(1);
20
20
  const buffer = Buffer.alloc(32, 0);
21
21
  const bstart = Math.max(0, 32 - x.length);
22
22
  x.copy(buffer, bstart);
@@ -25,9 +25,9 @@ function fromDER(x) {
25
25
  export function decode(buffer) {
26
26
  const hashType = buffer.readUInt8(buffer.length - 1);
27
27
  if (!isDefinedHashType(hashType)) {
28
- throw new Error('Invalid hashType ' + hashType);
28
+ throw new Error(`Invalid hashType ${hashType}`);
29
29
  }
30
- const decoded = bip66.decode(buffer.slice(0, -1));
30
+ const decoded = bip66.decode(buffer.subarray(0, -1));
31
31
  const r = fromDER(decoded.r);
32
32
  const s = fromDER(decoded.s);
33
33
  const signature = Buffer.concat([r, s], 64);
@@ -39,11 +39,11 @@ export function encode(signature, hashType) {
39
39
  hashType: types.UInt8,
40
40
  }, { signature, hashType });
41
41
  if (!isDefinedHashType(hashType)) {
42
- throw new Error('Invalid hashType ' + hashType);
42
+ throw new Error(`Invalid hashType ${hashType}`);
43
43
  }
44
44
  const hashTypeBuffer = Buffer.allocUnsafe(1);
45
45
  hashTypeBuffer.writeUInt8(hashType, 0);
46
- const r = toDER(signature.slice(0, 32));
47
- const s = toDER(signature.slice(32, 64));
46
+ const r = toDER(signature.subarray(0, 32));
47
+ const s = toDER(signature.subarray(32, 64));
48
48
  return Buffer.concat([bip66.encode(r, s), hashTypeBuffer]);
49
49
  }
@@ -25,7 +25,7 @@ const BLANK_OUTPUT = {
25
25
  valueBuffer: VALUE_UINT64_MAX,
26
26
  };
27
27
  function isOutput(out) {
28
- return out.value !== undefined;
28
+ return 'value' in out;
29
29
  }
30
30
  export class Transaction {
31
31
  constructor() {
@@ -98,7 +98,7 @@ export class Transaction {
98
98
  return this.ins.length === 1 && Transaction.isCoinbaseHash(this.ins[0].hash);
99
99
  }
100
100
  addInput(hash, index, sequence, scriptSig) {
101
- typeforce(types.tuple(types.Hash256bit, types.UInt32, types.maybe(types.UInt32), types.maybe(types.Buffer)), arguments);
101
+ typeforce(types.tuple(types.Hash256bit, types.UInt32, types.maybe(types.UInt32), types.maybe(types.Buffer)), [hash, index, sequence, scriptSig]);
102
102
  if (types.Null(sequence)) {
103
103
  sequence = Transaction.DEFAULT_SEQUENCE;
104
104
  }
@@ -111,7 +111,7 @@ export class Transaction {
111
111
  }) - 1);
112
112
  }
113
113
  addOutput(scriptPubKey, value) {
114
- typeforce(types.tuple(types.Buffer, types.Satoshi), arguments);
114
+ typeforce(types.tuple(types.Buffer, types.Satoshi), [scriptPubKey, value]);
115
115
  return (this.outs.push({
116
116
  script: scriptPubKey,
117
117
  value,
@@ -169,10 +169,17 @@ export class Transaction {
169
169
  return newTx;
170
170
  }
171
171
  hashForSignature(inIndex, prevOutScript, hashType) {
172
- typeforce(types.tuple(types.UInt32, types.Buffer, types.Number), arguments);
172
+ typeforce(types.tuple(types.UInt32, types.Buffer, types.Number), [
173
+ inIndex,
174
+ prevOutScript,
175
+ hashType,
176
+ ]);
173
177
  if (inIndex >= this.ins.length)
174
178
  return ONE;
175
- const ourScript = bscript.compile(bscript.decompile(prevOutScript).filter((x) => {
179
+ const decompiled = bscript.decompile(prevOutScript);
180
+ if (!decompiled)
181
+ throw new Error('Could not decompile prevOutScript');
182
+ const ourScript = bscript.compile(decompiled.filter((x) => {
176
183
  return x !== opcodes.OP_CODESEPARATOR;
177
184
  }));
178
185
  const txTmp = this.clone();
@@ -213,7 +220,7 @@ export class Transaction {
213
220
  return bcrypto.hash256(buffer);
214
221
  }
215
222
  hashForWitnessV1(inIndex, prevOutScripts, values, hashType, leafHash, annex) {
216
- typeforce(types.tuple(types.UInt32, typeforce.arrayOf(types.Buffer), typeforce.arrayOf(types.Satoshi), types.UInt32), arguments);
223
+ typeforce(types.tuple(types.UInt32, typeforce.arrayOf(types.Buffer), typeforce.arrayOf(types.Satoshi), types.UInt32), [inIndex, prevOutScripts, values, hashType]);
217
224
  if (values.length !== this.ins.length || prevOutScripts.length !== this.ins.length) {
218
225
  throw new Error('Must supply prevout script and value for all inputs');
219
226
  }
@@ -311,7 +318,12 @@ export class Transaction {
311
318
  return bcrypto.taggedHash('TapSighash', Buffer.concat([Buffer.from([0x00]), sigMsgWriter.end()]));
312
319
  }
313
320
  hashForWitnessV0(inIndex, prevOutScript, value, hashType) {
314
- typeforce(types.tuple(types.UInt32, types.Buffer, types.Satoshi, types.UInt32), arguments);
321
+ typeforce(types.tuple(types.UInt32, types.Buffer, types.Satoshi, types.UInt32), [
322
+ inIndex,
323
+ prevOutScript,
324
+ value,
325
+ hashType,
326
+ ]);
315
327
  let tbuffer = Buffer.from([]);
316
328
  let bufferWriter;
317
329
  let hashOutputs = ZERO;
@@ -388,11 +400,11 @@ export class Transaction {
388
400
  return this.toBuffer(undefined, undefined).toString('hex');
389
401
  }
390
402
  setInputScript(index, scriptSig) {
391
- typeforce(types.tuple(types.Number, types.Buffer), arguments);
403
+ typeforce(types.tuple(types.Number, types.Buffer), [index, scriptSig]);
392
404
  this.ins[index].script = scriptSig;
393
405
  }
394
406
  setWitness(index, witness) {
395
- typeforce(types.tuple(types.Number, [types.Buffer]), arguments);
407
+ typeforce(types.tuple(types.Number, [types.Buffer]), [index, witness]);
396
408
  this.ins[index].witness = witness;
397
409
  }
398
410
  __toBuffer(buffer, initialOffset, _ALLOW_WITNESS = false) {
@@ -429,7 +441,7 @@ export class Transaction {
429
441
  }
430
442
  bufferWriter.writeUInt32(this.locktime);
431
443
  if (initialOffset !== undefined)
432
- return buffer.slice(initialOffset, bufferWriter.offset);
444
+ return buffer.subarray(initialOffset, bufferWriter.offset);
433
445
  return buffer;
434
446
  }
435
447
  }
@@ -0,0 +1 @@
1
+ {"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.es2023.d.ts","../node_modules/typescript/lib/lib.es2024.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.webworker.d.ts","../node_modules/typescript/lib/lib.scripthost.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.arraybuffer.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.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.esnext.error.d.ts","../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/bech32/dist/index.d.ts","../node_modules/bs58check/src/cjs/index.d.ts","../src/networks.ts","../src/bip66.ts","../src/opcodes.ts","../node_modules/buffer/index.d.ts","../src/types.ts","../node_modules/@noble/hashes/utils.d.ts","../node_modules/@noble/hashes/_md.d.ts","../node_modules/@noble/hashes/legacy.d.ts","../node_modules/@noble/hashes/sha2.d.ts","../src/crypto.ts","../src/ecc_lib.ts","../node_modules/varuint-bitcoin/src/cjs/index.d.ts","../src/bufferutils.ts","../src/payments/bip341.ts","../src/payments/lazy.ts","../src/payments/embed.ts","../src/payments/p2ms.ts","../src/payments/p2pk.ts","../node_modules/@noble/secp256k1/index.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/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/events.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/web-globals/fetch.d.ts","../node_modules/@types/node/web-globals/navigator.d.ts","../node_modules/@types/node/web-globals/storage.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/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/inspector.generated.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/index.d.ts","../node_modules/bip174/src/lib/converter/varint.d.ts","../node_modules/bip174/src/lib/interfaces.d.ts","../src/payments/p2sh.ts","../src/payments/p2tr.ts","../src/payments/p2wpkh.ts","../src/payments/p2wsh.ts","../src/transaction.ts","../src/psbt/bip371.ts","../src/payments/p2op.ts","../src/psbt/psbtutils.ts","../src/payments/p2pkh.ts","../src/payments/index.ts","../src/push_data.ts","../src/script_number.ts","../src/script_signature.ts","../src/script.ts","../src/merkle.ts","../src/block.ts","../node_modules/bip174/src/lib/psbt.d.ts","../node_modules/bip174/src/lib/utils.d.ts","../node_modules/@btc-vision/bip32/src/cjs/Buffer.d.ts","../node_modules/@btc-vision/bip32/src/cjs/bip32.d.ts","../node_modules/valibot/dist/index.d.mts","../node_modules/@btc-vision/bip32/src/cjs/types.d.ts","../node_modules/@btc-vision/bip32/src/cjs/networks.d.ts","../node_modules/@btc-vision/post-quantum/utils.d.ts","../node_modules/@btc-vision/post-quantum/ml-dsa.d.ts","../node_modules/@btc-vision/bip32/src/cjs/quantum/config.d.ts","../node_modules/@btc-vision/bip32/src/cjs/quantum/types.d.ts","../node_modules/@btc-vision/bip32/src/cjs/quantum/mldsa.d.ts","../node_modules/@btc-vision/bip32/src/cjs/derivation-paths.d.ts","../node_modules/@btc-vision/bip32/src/cjs/quantum/index.d.ts","../node_modules/@btc-vision/bip32/src/cjs/index.d.ts","../node_modules/ecpair/src/networks.d.ts","../node_modules/ecpair/src/ecpair.d.ts","../node_modules/ecpair/src/index.d.ts","../src/psbt.ts","../src/index.ts","../src/address.ts","../src/typeforce.d.ts","../src/crypto/crypto.ts","../src/hooks/AdvancedSignatureManager.ts","../src/hooks/SignatureManager.ts","../src/hooks/HookedSigner.ts","../node_modules/@types/argparse/index.d.ts","../node_modules/@types/bs58check/index.d.ts","../node_modules/@types/deep-eql/index.d.ts","../node_modules/assertion-error/index.d.ts","../node_modules/@types/chai/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/eslint/use-at-your-own-risk.d.ts","../node_modules/@types/eslint/index.d.ts","../node_modules/@eslint/core/dist/esm/types.d.ts","../node_modules/eslint/lib/types/use-at-your-own-risk.d.ts","../node_modules/eslint/lib/types/index.d.ts","../node_modules/@types/eslint-scope/index.d.ts","../node_modules/@types/unist/index.d.ts","../node_modules/@types/hast/index.d.ts","../node_modules/@types/randombytes/index.d.ts"],"fileIdsList":[[110,158,175,176],[110,158,175,176,229],[110,158,175,176,230,232,233,239,240],[110,158,175,176,232],[110,158,175,176,232,235],[110,158,175,176,236,237,238,239],[110,158,175,176,237],[110,158,175,176,229,232,236],[110,158,175,176,231],[110,158,175,176,234],[91,110,158,175,176],[110,158,175,176,259],[91,92,110,158,175,176],[110,158,175,176,208],[110,158,175,176,255,256],[110,158,175,176,258,264],[110,158,175,176,258,259,260],[110,158,175,176,261],[110,158,175,176,266],[110,155,156,158,175,176],[110,157,158,175,176],[158,175,176],[110,158,163,175,176,193],[110,158,159,164,169,175,176,178,190,201],[110,158,159,160,169,175,176,178],[105,106,107,110,158,175,176],[110,158,161,175,176,202],[110,158,162,163,170,175,176,179],[110,158,163,175,176,190,198],[110,158,164,166,169,175,176,178],[110,157,158,165,175,176],[110,158,166,167,175,176],[110,158,168,169,175,176],[110,157,158,169,175,176],[110,158,169,170,171,175,176,190,201],[110,158,169,170,171,175,176,185,190,193],[110,151,158,166,169,172,175,176,178,190,201],[110,158,169,170,172,173,175,176,178,190,198,201],[110,158,172,174,175,176,190,198,201],[108,109,110,111,112,113,114,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,196,197,198,199,200,201,202,203,204,205,206,207],[110,158,169,175,176],[110,158,175,176,177,201],[110,158,166,169,175,176,178,190],[110,158,175,176,179],[110,158,175,176,180],[110,157,158,175,176,181],[110,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,196,197,198,199,200,201,202,203,204,205,206,207],[110,158,175,176,183],[110,158,175,176,184],[110,158,169,175,176,185,186],[110,158,175,176,185,187,202,204],[110,158,170,175,176],[110,158,169,175,176,190,191,193],[110,158,175,176,192,193],[110,158,175,176,190,191],[110,158,175,176,193],[110,158,175,176,194],[110,155,158,175,176,190,195],[110,158,169,175,176,196,197],[110,158,175,176,196,197],[110,158,163,175,176,178,190,198],[110,158,175,176,199],[110,158,175,176,178,200],[110,158,172,175,176,184,201],[110,158,163,175,176,202],[110,158,175,176,190,203],[110,158,175,176,177,204],[110,158,175,176,205],[110,151,158,175,176],[110,151,158,169,171,175,176,181,190,193,201,203,204,206],[110,158,175,176,190,207],[110,158,163,175,176,208],[110,158,175,176,208,210],[110,158,175,176,208,242],[110,158,175,176,243],[110,158,175,176,258,262,263],[110,158,175,176,264],[110,123,127,158,175,176,201],[110,123,158,175,176,190,201],[110,118,158,175,176],[110,120,123,158,175,176,198,201],[110,158,175,176,178,198],[110,118,158,175,176,208],[110,120,123,158,175,176,178,201],[110,115,116,119,122,158,169,175,176,190,201],[110,123,130,158,175,176],[110,115,121,158,175,176],[110,123,144,145,158,175,176],[110,119,123,158,175,176,193,201,208],[110,144,158,175,176,208],[110,117,118,158,175,176,208],[110,123,158,175,176],[110,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,158,175,176],[110,123,138,158,175,176],[110,123,130,131,158,175,176],[110,121,123,131,132,158,175,176],[110,122,158,175,176],[110,115,118,123,158,175,176],[110,123,127,131,132,158,175,176],[110,127,158,175,176],[110,121,123,126,158,175,176,201],[110,115,120,123,130,158,175,176],[110,158,175,176,190],[110,118,123,144,158,175,176,206,208],[84,85,86,90,110,158,175,176,224,246],[90,95,98,110,158,175,176,215,225],[90,97,110,158,175,176],[93,94,110,158,175,176],[110,158,163,175,176],[90,110,158,175,176],[110,158,175,176,241,244,245,250,251],[86,88,90,95,96,98,99,110,158,175,176,210,215,216,218,220,224,226,245,247],[90,95,96,98,110,158,175,176],[86,90,100,110,158,175,176,220,224],[86,90,99,100,101,102,103,110,158,175,176,211,212,213,214,217,219],[84,86,90,100,110,158,175,176,220,224,247],[85,86,90,95,100,110,158,175,176,218,220,224],[85,86,90,95,100,110,158,175,176,220,224],[84,86,90,96,99,100,110,158,175,176,220,224,247],[84,86,90,95,100,110,158,175,176,220,224],[86,98,99,110,158,175,176,209,210,215,216,218,220,224,227,228,241,244,246,247],[90,99,110,158,175,176,210,212,215,218],[95,102,103,104,110,158,175,176,209,210,211,212,213,214,215,216,217,219,224],[88,110,158,175,176],[87,88,90,110,158,175,176,220,221,222,223],[87,90,110,158,175,176,224],[90,95,98,110,158,175,176,224],[110,158,175,176,248]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d08cde2bfb6ff909efbf7cb7d6d55be412cf4b9f48fd0430185986973fa91f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a7a74b55a74b69119990ec09675e3f7c484cea5e7fc21639d7aafe26225b118f","impliedFormat":1},{"version":"c04b9e02babfe014899d8ec8cb3671c1fccc2cee9490a3de1ac3839422c56570","impliedFormat":99},{"version":"527843eef0d904f78bacb15e0037c198dbf2d269634d49b0cfe405adf7aac694","signature":"676ac34925fd963a3afccfe3bad7429acfefcbb5e2a0bd97f707372cbc5a9055"},{"version":"fa5f3e6ed3c0338c529b53cb8e3678c45df00cfa4eaadf89a336bb5dd9aff841","signature":"ce6129ebb3e344098fd0e1acfe0ce473117ad85e0dc788a01f2d3e9091051cf3"},{"version":"6fa928fe1a0f74526b042fbe9949272d2c0c0fd2e2e2e493178e481cfcfce1e7","signature":"58dea9fac30f7ef24ab4c3def7bbd44a526f8f8e1aaf70724c6efd47e262b615"},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"3e11cb6c76a28ea3ab152cd815a14bdf1656af4d9a51dc2b9056169e9cf2054e","signature":"88eab174224fed35fb19a535646000808f0cd690adf6883c8f9a3497506c0ff8"},{"version":"79766c737b0a94c9d47424412054f0193d78dbfd3b71cfe2ec4f5efce419c081","impliedFormat":99},{"version":"c207c3e805c2fca690f1a0628623766aba3e21cde58fab152cdb10beea1a178e","impliedFormat":99},{"version":"90b85afca1a71ee7a5d3ffb87d41f691a9c735e6aa4e3c4a852aec09594e9811","impliedFormat":99},{"version":"3918416335105bf8ad5e12d03f896348439f837088a6fe91536fab5e1753b18c","impliedFormat":99},{"version":"f5272b8999964aeefea71f5d72424f3e701bc4ce06766f2420b52ca4ccb66f8c","signature":"80e9bc615a9b462102bc991415da1a9854c93c72c9306aeb9455c1b14ae5f2f1"},{"version":"fc029a7dc7a4c90523e4ef8cb1ed0ac2558228284eb72b4edb54c259577b4759","signature":"a5bf486e2de5ca9d3ed6726c334d399c26d3f3b7c56915ce6e98bdb7575b6ac8"},{"version":"5bafb461827a790a03845727dfb4db4c9aec62812fbd5477c7e0f9716c1bce0f","impliedFormat":99},{"version":"e241a86faaaf0c3171a9a93f3e886e692ec0fa62599a977476ae96f888989408","signature":"c0af9a4cddda94430c25023144fefa8269e220daaab7b2d2c7faea928566d293"},{"version":"fd96fadaf3e685abcef07beeff68405d8d88561dab96b17c14e70bc0e9c879e2","signature":"fe20b059115b2d3e669f095d8da4ac9d6437665250ae2f82c3bffb0ae734a28a"},{"version":"ad172d598d6c73e41e648b13800014ffa34a8e962ddf7d26b0413a0a9d343298","signature":"a50ca7ab58c225828a352d452513b9e6f8f9aa12f69c89e26e9f3ca7856a6a8e"},{"version":"1bbeed327dc4238b6b62fd1ddbdd9d41b2fc0e53d359bbac0b242e7e4c4f28e5","signature":"d22b1af1fbdb93a833435c10ad8294cf7ccbf8b617c256a2182104eba36d95b6"},{"version":"4142cca4806912a2c8d56f2f20d51b050f2e0126c968b7e49675fb43f8410071","signature":"2e8c80272172539e4b946caf0bb3fd92a24b156dfda0aa33c62ca40cdb4d3d95"},{"version":"e0dc868c8210e0b5b7b038a783808245fbd11f9a935406b49e1c2d863012b396","signature":"8a02d7b71c63b78224c1c5f78edd614b14d8e8b54ac4a3a05f124c153de83f93"},{"version":"5a060780f26b7aaacb114b3c248f3254cf147793cfa5df4898c144df2cd3b3b5","impliedFormat":99},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"bb45cd435da536500f1d9692a9b49d0c570b763ccbf00473248b777f5c1f353b","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac39df6dfb9e284bb0c205b15f4d9a2b260f5bab5c85bf2fb97d0cdd509c06ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c959a391a75be9789b43c8468f71e3fa06488b4d691d5729dde1416dcd38225b","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"5ebe6f4cc3b803cbfc962bae0d954f9c80e5078ca41eb3f1de41d92e7193ef37","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f663c2f91127ef7024e8ca4b3b4383ff2770e5f826696005de382282794b127","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1},{"version":"c9283b5de25cbc5364a6e0339c78829b6f22eb4b29f9bd052f1877dfa00a5ba2","impliedFormat":1},{"version":"b6c3995be1adb84b6f81cbf9dfdecaa0da5cc71c5a61b5fc0e4a5a31765d8257","impliedFormat":1},{"version":"c30f772ae4030bb12eb36a8f62df9b7752bb37b0a7ba67b00762ad0c6d208f78","signature":"ef24de5c60c6f3cb1a9dd5645abe0d46e85cc81aa2850d0097b3d747c81cfd42"},{"version":"d89e96ff31f459c83d3585fa8e5e9c06840249e4fb5cd6fb67a3ead82eab794a","signature":"19c7f95a04ccb35d32f1ec66fccbc64bc57073f0b46328366acdaa41152a8c44"},{"version":"34b62cff1a9c244b8188e28a2004fc50b004603ed07096ebbcb5da7073aad027","signature":"52ebaca9062f5de3c26612fd1365462fe80dfbdce192125c0e1c889cdfcfdf25"},{"version":"283442af2e531278e4de475e8e08ab9fc12a660b7df15379c1ce052d18ff0342","signature":"49ddda2074e0d97ad8756b7bf7f6381910df94adbba6762b43d52acf4c13aada"},{"version":"1e9c517e6c88f7ad879f4e5a3d41fe5bda48bcf62b06444df2855620ff3445d0","signature":"b2e77990181ec068ef49850197f8863350f1d81013125724d35f075b64d9b111"},{"version":"3d4d2c88a8cefebd9c91406488db7881724003c1f6db7952094268080f3d3e08","signature":"20d8eb7e7c9647244f86c9b89417ed75485350482c2327f69e7f2c1b475dc8be"},{"version":"48ffe5e22d109233ebd5640e7d5a9625a8cfbfd64aeaa3b40e52ac37ebeac9b0","signature":"cc1a30e49936015aeb043fab72532d53d82f576c4ea6f906e3c0171a8fec4add"},{"version":"f78451ab0b28697b1227ef723d53c5f30a3a8996368a6d2b85f0d9c9f4566a2d","signature":"cc54e2e0789fc0a9b8415a28cf04e2fa3421511fcc4bf6f9dd15a9d373db18a7"},{"version":"1fca4a012712e0a065ec8ee154e9a9498f2176dafd0c1fad4172a03b8ad953d5","signature":"966eccf005d1269c191528f7d4338ce0b773652fc2f6f00b9dabbf1a12d64ec9"},{"version":"f49c72ddd110aea25bc9fa0da0d394f322def71ce1da4ae0d9bf32decb213e93","signature":"0889cf37ffc777e0a8bbce4f26815300e0e0a7b17944e0af9e49130c17cc8fc4"},{"version":"d9ca52fdbe03a8ef8e0e10648e7e20729838df0a20fed4b6288d618029499b19","signature":"4a0981cbe1ab8adf2752f1b5cb87e7d62212deee2fac899b3e2bd98942f14a8d"},{"version":"ae5504f0dd46dbe83919214159adb542d4717db114bff15327316a7c3e936c1a","signature":"9384949ebf7b17e40865b829c4ecd400993c33841f9f81ba5a1257637f6c3a2c"},{"version":"ab1748132d71a195a4bf991eee7d8d488d6056d16f47d2982f89cbc00743aa30","signature":"4c4e60ad56dbda374239e8530567e2172497663cf3cd3c580278c4a805951fcc"},{"version":"4649b01280589d78cc2a7c17339b13be88987ec446334416471b545e320c2f72","signature":"053594cd316e23c26c6afa2416d1093cbdaa78503bb760878fcc337670bf144d"},{"version":"5168a7abe4fb427f36c98991ebdeb984b82bd2668f25867ef5bfc67842236947","signature":"d252c24dd61fbe9a185ba6eefac9613f42a3563a2401c5cc03edbbdcd2646f42"},{"version":"6f1b2d4a293e606bbdb332854f8317929db81789d0d18587387f668a1f048827","signature":"86067ebd0159d2389984955f0e55fa2a5ede3a897309bb8ac23766dc25e629c1"},{"version":"3da723823982206178406b7c2b8570152c6347a047fa7e59fa46011d10ac26b6","impliedFormat":1},{"version":"d1f9daa39970a78c6430cd6f5114bedd974de356c52a749b99640fb37ce9d399","impliedFormat":1},{"version":"9e8547790373b6bf99faaefdbde050b9cf54b496087b97f61cfcc7ea367ff946","impliedFormat":99},{"version":"8108ad71705b755016e8f5cc407b021814ae95290061231bc0f6a70b3603ea88","impliedFormat":99},{"version":"1a86d5d23dfb656002bc90facad9d11ccc3310ec1c3df2ec236e7cf55d13cc8b","impliedFormat":99},{"version":"b6f0355ec6671f32cb16f62b821f585cce937f559dedac1ff84c7e823c3bc6c0","impliedFormat":99},{"version":"bce96cd222cdd954a8d359df09a51c87357dacf6278b96720b1bf62378662b4d","impliedFormat":99},{"version":"932651adcabacf9201322edc6ad4ff4bd5ae80aaa01b2349568b871fe974309d","impliedFormat":99},{"version":"2556cdc20cd28b566f54e9912f802380174abe3beaa6b45e962f0d81b0449812","impliedFormat":99},{"version":"86d586710bb4580277f2136d0ec9f18656497bc8448dc13fac46b258dd8ce1ca","impliedFormat":99},{"version":"70f9b3b2ac51291d615e9ad9f753fa076417560ca110dc75830a4b1db0fd1ecf","impliedFormat":99},{"version":"356b728321cf4a7529450dc2a9ca0c3152e4795596fd5c91a9f3e19cd26ea69a","impliedFormat":99},{"version":"6ab4597432425958df8af75735ae3c9783b00401f287be4554b8e9f0cfea49a6","impliedFormat":99},{"version":"e3c22edc29c935463f2ea5ece1914e08396f37df85f5c1c892baedeeeeaf4264","impliedFormat":99},{"version":"d42645400fcd608c16ab6ee905c167777d1d19d92191139eb812e82c60c4da6d","impliedFormat":99},{"version":"27b68a2ade07610435252159b312e3faebd27f2cff4a9c2c6e46669ed0c807ad","impliedFormat":1},{"version":"c2b96b0689637cff5f67318289e6daf9aa7b4d7b1186abdbf75c042fdeb577bf","impliedFormat":1},{"version":"22efdd0b3d0d96510bb03ffc515cf533e0ba710dcad568dee1cf66df28a69125","impliedFormat":1},{"version":"7ac9e6f6ae83c6ac1751cf75d98bd8bbc6fe4daeb69306e38f451478b37e8997","signature":"4127b27c674cf4a1e2860a2a2793c66d995b9d77a1379697b8517a63a7696d3d"},{"version":"274cea6185555a0ff4049f6fdb7227caeae0da9774b9d991e1e5970ba263aaa9","signature":"187b66be5066a3355af446fce9b5bfeeca4592fe4504ad6424c94f1ca7b294ca"},{"version":"8c81f8e9178479cb790bdd25d1a03e4de64b9169c51f42fdb1e8124486b38c0c","signature":"b9d30f5f1630acd10c1b0a3f906aad2964a7d4a2cb31581f6b421ee843b98fd1"},{"version":"6879aaf7aee88b461fe7b23cf562e8df59617849c70780456cb8b9a97d9b74bf","affectsGlobalScope":true},"c36a6d99b79d5182464a411a91969db3d05bdb50fff71e0d64413a1a673f3b34",{"version":"6ac459a7cf776b2138bb4f629c2daea946fe50ba5008512915b62bdc1218968e","signature":"0466fd8d358c34827363becfae8586c8dfcc7875c1d1f5785174564d2537651b"},{"version":"90e65f9808f88e96ae88ffe1335051c7012c1895bdbfe14e92b387d4aba8f99b","signature":"ad09472002d6be6c39b965bd798543d000cf91aeb2a3af37a2be05ec05ba9186"},{"version":"206ed13422c1030b3105fe450b85290eec218d414ed997164e164e693121c575","signature":"51dee49162e6d5885cd6f91cbe6d5129b3838d610693218cdfcba59e859de0bf"},{"version":"dc3b172ee27054dbcedcf5007b78c256021db936f6313a9ce9a3ecbb503fd646","impliedFormat":1},{"version":"90ff207f5a37183fef55b9c155c9e5d650cbf743ee36417d3e3fa273d3cb638a","impliedFormat":1},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"a4a39b5714adfcadd3bbea6698ca2e942606d833bde62ad5fb6ec55f5e438ff8","impliedFormat":1},{"version":"bbc1d029093135d7d9bfa4b38cbf8761db505026cc458b5e9c8b74f4000e5e75","impliedFormat":1},{"version":"ac450542cbfd50a4d7bf0f3ec8aeedb9e95791ecc6f2b2b19367696bd303e8c6","impliedFormat":99},{"version":"8a190298d0ff502ad1c7294ba6b0abb3a290fc905b3a00603016a97c363a4c7a","impliedFormat":1},{"version":"5ba4a4a1f9fae0550de86889fb06cd997c8406795d85647cbcd992245625680c","impliedFormat":1},{"version":"1f68ab0e055994eb337b67aa87d2a15e0200951e9664959b3866ee6f6b11a0fe","impliedFormat":1},{"version":"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","impliedFormat":1},{"version":"79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","impliedFormat":1},{"version":"cc6bdeb756593c9c914204f158057b328ed53c898f176a0706a8dafcc108b49e","impliedFormat":1}],"root":[[86,88],90,95,96,[98,103],[211,226],[245,252]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":99,"noImplicitAny":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":false,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"suppressImplicitAnyIndexErrors":false,"target":7},"referencedMap":[[229,1],[230,2],[239,1],[241,3],[233,4],[236,5],[240,6],[238,7],[237,8],[232,9],[235,10],[234,11],[262,12],[92,11],[93,13],[94,13],[91,1],[104,1],[253,1],[254,14],[257,15],[255,1],[265,16],[261,17],[260,18],[258,1],[267,19],[259,1],[155,20],[156,20],[157,21],[110,22],[158,23],[159,24],[160,25],[105,1],[108,26],[106,1],[107,1],[161,27],[162,28],[163,29],[164,30],[165,31],[166,32],[167,32],[168,33],[169,34],[170,35],[171,36],[111,1],[109,1],[172,37],[173,38],[174,39],[208,40],[175,41],[176,1],[177,42],[178,43],[179,44],[180,45],[181,46],[182,47],[183,48],[184,49],[185,50],[186,50],[187,51],[188,1],[189,52],[190,53],[192,54],[191,55],[193,56],[194,57],[195,58],[196,59],[197,60],[198,61],[199,62],[200,63],[201,64],[202,65],[203,66],[204,67],[205,68],[112,1],[113,1],[114,1],[152,69],[153,1],[154,1],[206,70],[207,71],[268,72],[266,1],[256,1],[84,1],[209,14],[210,14],[227,73],[228,73],[85,1],[89,1],[243,74],[244,75],[242,1],[264,76],[263,77],[82,1],[83,1],[13,1],[17,1],[16,1],[2,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[25,1],[3,1],[26,1],[27,1],[4,1],[28,1],[32,1],[29,1],[30,1],[31,1],[33,1],[34,1],[35,1],[5,1],[36,1],[37,1],[38,1],[39,1],[6,1],[43,1],[40,1],[41,1],[42,1],[44,1],[7,1],[45,1],[50,1],[51,1],[46,1],[47,1],[48,1],[49,1],[8,1],[55,1],[52,1],[53,1],[54,1],[56,1],[9,1],[57,1],[58,1],[59,1],[61,1],[60,1],[62,1],[63,1],[10,1],[64,1],[65,1],[66,1],[11,1],[67,1],[68,1],[69,1],[70,1],[71,1],[1,1],[72,1],[73,1],[12,1],[77,1],[75,1],[80,1],[79,1],[74,1],[78,1],[76,1],[81,1],[15,1],[14,1],[130,78],[140,79],[129,78],[150,80],[121,81],[120,82],[149,14],[143,83],[148,84],[123,85],[137,86],[122,87],[146,88],[118,89],[117,14],[147,90],[119,91],[124,92],[125,1],[128,92],[115,1],[151,93],[141,94],[132,95],[133,96],[135,97],[131,98],[134,99],[144,14],[126,100],[127,101],[136,102],[116,103],[139,94],[138,92],[142,1],[145,104],[231,1],[97,1],[247,105],[87,1],[226,106],[98,107],[95,108],[249,109],[96,110],[250,1],[252,111],[251,1],[246,112],[225,1],[86,1],[88,1],[99,113],[101,114],[220,115],[100,1],[102,114],[217,116],[103,114],[219,117],[211,118],[212,119],[213,120],[214,120],[245,121],[216,122],[218,123],[221,124],[224,125],[222,1],[223,126],[215,127],[248,1],[90,128]],"version":"5.9.3"}