slnodejs 6.1.822 → 6.1.853

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.
@@ -29456,6 +29456,9 @@ EDDSA.prototype.sign = function sign(message, secret) {
29456
29456
  EDDSA.prototype.verify = function verify(message, sig, pub) {
29457
29457
  message = parseBytes(message);
29458
29458
  sig = this.makeSignature(sig);
29459
+ if (sig.S().gte(sig.eddsa.curve.n) || sig.S().isNeg()) {
29460
+ return false;
29461
+ }
29459
29462
  var key = this.keyFromPublic(pub);
29460
29463
  var h = this.hashInt(sig.Rencoded(), key.pubBytes(), message);
29461
29464
  var SG = this.g.mul(sig.S());
@@ -30596,9 +30599,9 @@ arguments[4][171][0].apply(exports,arguments)
30596
30599
  },{"buffer":176,"dup":171}],254:[function(require,module,exports){
30597
30600
  module.exports={
30598
30601
  "_from": "elliptic@^6.5.5",
30599
- "_id": "elliptic@6.5.5",
30602
+ "_id": "elliptic@6.5.6",
30600
30603
  "_inBundle": false,
30601
- "_integrity": "sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==",
30604
+ "_integrity": "sha512-mpzdtpeCLuS3BmE3pO3Cpp5bbjlOPY2Q0PgoF+Od1XZrHLYI28Xe3ossCmYCQt11FQKEYd9+PF8jymTvtWJSHQ==",
30602
30605
  "_location": "/elliptic",
30603
30606
  "_phantomChildren": {},
30604
30607
  "_requested": {
@@ -30615,8 +30618,8 @@ module.exports={
30615
30618
  "/browserify-sign",
30616
30619
  "/create-ecdh"
30617
30620
  ],
30618
- "_resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.5.tgz",
30619
- "_shasum": "c715e09f78b6923977610d4c2346d6ce22e6dded",
30621
+ "_resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.6.tgz",
30622
+ "_shasum": "ee5f7c3a00b98a2144ac84d67d01f04d438fa53e",
30620
30623
  "_spec": "elliptic@^6.5.5",
30621
30624
  "_where": "/var/lib/jenkins/workspace/.OnPremise.Agent.JavaScript_main/browser-agent/node_modules/browserify-sign",
30622
30625
  "author": {
@@ -30677,7 +30680,7 @@ module.exports={
30677
30680
  "unit": "istanbul test _mocha --reporter=spec test/index.js",
30678
30681
  "version": "grunt dist && git add dist/"
30679
30682
  },
30680
- "version": "6.5.5"
30683
+ "version": "6.5.6"
30681
30684
  }
30682
30685
 
30683
30686
  },{}],255:[function(require,module,exports){
@@ -57138,7 +57141,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57138
57141
  "use strict";
57139
57142
  Object.defineProperty(exports, "__esModule", { value: true });
57140
57143
  exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
57141
- exports.SL_AGENT_VERSION = '6.1.822';
57144
+ exports.SL_AGENT_VERSION = '6.1.853';
57142
57145
  exports.SL_AGENT_TYPE = 'browser';
57143
57146
  });
57144
57147
 
@@ -60433,6 +60436,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60433
60436
  exports.AgentInstanceInfoBuilder = void 0;
60434
60437
  const sensitive_data_filter_1 = require("./sensitive-data-filter");
60435
60438
  const SEALIGHTS_ENV_VAR_PREFIX = 'SL_';
60439
+ const SEALIGHTS_CYPRESS_ENV_VAR_PREFIX = 'CYPRESS_SL_';
60436
60440
  const CI_ENV_VARS = new Set([
60437
60441
  'build_number',
60438
60442
  'build_id',
@@ -60615,7 +60619,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
60615
60619
  extractSealightsEnvVars() {
60616
60620
  const slEnvVars = {};
60617
60621
  Object.keys(process.env).forEach(key => {
60618
- if (key.indexOf(SEALIGHTS_ENV_VAR_PREFIX) === 0 || key === 'NODE_OPTIONS' || key === 'PATH' || CI_ENV_VARS.has(key.toLowerCase())) {
60622
+ if (key.indexOf(SEALIGHTS_ENV_VAR_PREFIX) === 0 || key.indexOf(SEALIGHTS_CYPRESS_ENV_VAR_PREFIX) === 0 || key === 'NODE_OPTIONS' || key === 'PATH' || CI_ENV_VARS.has(key.toLowerCase())) {
60619
60623
  slEnvVars[key] = (0, sensitive_data_filter_1.isSensitive)(key, process.env[key], this.logger) ?
60620
60624
  AgentInstanceInfoBuilder.SECRET_VALUE_PLACEHOLDER : process.env[key];
60621
60625
  }
@@ -61302,7 +61306,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61302
61306
  });
61303
61307
 
61304
61308
  }).call(this)}).call(this,require('_process'))
61305
- },{"../../cli-parse/contracts":475,"../constants/sl-env-vars":497,"./config":493,"./config-system":492,"_process":347,"fs":211,"jwt-decode":633}],492:[function(require,module,exports){
61309
+ },{"../../cli-parse/contracts":475,"../constants/sl-env-vars":497,"./config":493,"./config-system":492,"_process":347,"fs":211,"jwt-decode":634}],492:[function(require,module,exports){
61306
61310
  (function (process){(function (){
61307
61311
  (function (factory) {
61308
61312
  if (typeof module === "object" && typeof module.exports === "object") {
@@ -61779,7 +61783,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
61779
61783
  exports.ConfigProcess = ConfigProcess;
61780
61784
  });
61781
61785
 
61782
- },{"./config-system":492,"events":263,"jwt-decode":633,"object-assign":315}],495:[function(require,module,exports){
61786
+ },{"./config-system":492,"events":263,"jwt-decode":634,"object-assign":315}],495:[function(require,module,exports){
61783
61787
  (function (factory) {
61784
61788
  if (typeof module === "object" && typeof module.exports === "object") {
61785
61789
  var v = factory(require, exports);
@@ -64783,7 +64787,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
64783
64787
  });
64784
64788
 
64785
64789
  }).call(this)}).call(this,require('_process'),require("buffer").Buffer)
64786
- },{"../../common/system-date":527,"../utils/validation-utils":532,"./contracts":518,"./http-verb":521,"_process":347,"buffer":213,"sl-request":651,"zlib":210}],521:[function(require,module,exports){
64790
+ },{"../../common/system-date":527,"../utils/validation-utils":532,"./contracts":518,"./http-verb":521,"_process":347,"buffer":213,"sl-request":652,"zlib":210}],521:[function(require,module,exports){
64787
64791
  (function (factory) {
64788
64792
  if (typeof module === "object" && typeof module.exports === "object") {
64789
64793
  var v = factory(require, exports);
@@ -67263,7 +67267,7 @@ function resolveIds(schema) {
67263
67267
  return localRefs;
67264
67268
  }
67265
67269
 
67266
- },{"./schema_obj":542,"./util":544,"fast-deep-equal":597,"json-schema-traverse":629,"uri-js":705}],541:[function(require,module,exports){
67270
+ },{"./schema_obj":542,"./util":544,"fast-deep-equal":597,"json-schema-traverse":630,"uri-js":705}],541:[function(require,module,exports){
67267
67271
  'use strict';
67268
67272
 
67269
67273
  var ruleModules = require('../dotjs')
@@ -71800,7 +71804,7 @@ Reader.prototype._readTag = function (tag) {
71800
71804
 
71801
71805
  module.exports = Reader;
71802
71806
 
71803
- },{"./errors":577,"./types":580,"assert":172,"safer-buffer":650}],580:[function(require,module,exports){
71807
+ },{"./errors":577,"./types":580,"assert":172,"safer-buffer":651}],580:[function(require,module,exports){
71804
71808
  // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
71805
71809
 
71806
71810
 
@@ -72157,7 +72161,7 @@ Writer.prototype._ensure = function (len) {
72157
72161
 
72158
72162
  module.exports = Writer;
72159
72163
 
72160
- },{"./errors":577,"./types":580,"assert":172,"safer-buffer":650}],582:[function(require,module,exports){
72164
+ },{"./errors":577,"./types":580,"assert":172,"safer-buffer":651}],582:[function(require,module,exports){
72161
72165
  // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
72162
72166
 
72163
72167
  // If you have no idea what ASN.1 or BER is, see this:
@@ -74210,7 +74214,7 @@ exports.ECKey = function(curve, key, isPublic)
74210
74214
  }
74211
74215
 
74212
74216
 
74213
- },{"./lib/ec.js":593,"./lib/sec.js":594,"crypto":225,"jsbn":628,"safer-buffer":650}],593:[function(require,module,exports){
74217
+ },{"./lib/ec.js":593,"./lib/sec.js":594,"crypto":225,"jsbn":629,"safer-buffer":651}],593:[function(require,module,exports){
74214
74218
  // Basic Javascript Elliptic Curve implementation
74215
74219
  // Ported loosely from BouncyCastle's Java EC code
74216
74220
  // Only Fp curves implemented for now
@@ -74773,7 +74777,7 @@ var exports = {
74773
74777
 
74774
74778
  module.exports = exports
74775
74779
 
74776
- },{"jsbn":628}],594:[function(require,module,exports){
74780
+ },{"jsbn":629}],594:[function(require,module,exports){
74777
74781
  // Named EC curves
74778
74782
 
74779
74783
  // Requires ec.js, jsbn.js, and jsbn2.js
@@ -74945,7 +74949,7 @@ module.exports = {
74945
74949
  "secp256r1":secp256r1
74946
74950
  }
74947
74951
 
74948
- },{"./ec.js":593,"jsbn":628}],595:[function(require,module,exports){
74952
+ },{"./ec.js":593,"jsbn":629}],595:[function(require,module,exports){
74949
74953
  'use strict';
74950
74954
 
74951
74955
  var hasOwn = Object.prototype.hasOwnProperty;
@@ -75501,6 +75505,10 @@ function createConnectionSSL (port, host, options) {
75501
75505
  }
75502
75506
 
75503
75507
  },{"http":406,"https":304,"net":211,"tls":211,"util":418}],600:[function(require,module,exports){
75508
+ /* eslint-env browser */
75509
+ module.exports = typeof self == 'object' ? self.FormData : window.FormData;
75510
+
75511
+ },{}],601:[function(require,module,exports){
75504
75512
  module.exports={
75505
75513
  "$id": "afterRequest.json#",
75506
75514
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -75532,7 +75540,7 @@ module.exports={
75532
75540
  }
75533
75541
  }
75534
75542
 
75535
- },{}],601:[function(require,module,exports){
75543
+ },{}],602:[function(require,module,exports){
75536
75544
  module.exports={
75537
75545
  "$id": "beforeRequest.json#",
75538
75546
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -75564,7 +75572,7 @@ module.exports={
75564
75572
  }
75565
75573
  }
75566
75574
 
75567
- },{}],602:[function(require,module,exports){
75575
+ },{}],603:[function(require,module,exports){
75568
75576
  module.exports={
75569
75577
  "$id": "browser.json#",
75570
75578
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -75586,7 +75594,7 @@ module.exports={
75586
75594
  }
75587
75595
  }
75588
75596
 
75589
- },{}],603:[function(require,module,exports){
75597
+ },{}],604:[function(require,module,exports){
75590
75598
  module.exports={
75591
75599
  "$id": "cache.json#",
75592
75600
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -75609,7 +75617,7 @@ module.exports={
75609
75617
  }
75610
75618
  }
75611
75619
 
75612
- },{}],604:[function(require,module,exports){
75620
+ },{}],605:[function(require,module,exports){
75613
75621
  module.exports={
75614
75622
  "$id": "content.json#",
75615
75623
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -75640,7 +75648,7 @@ module.exports={
75640
75648
  }
75641
75649
  }
75642
75650
 
75643
- },{}],605:[function(require,module,exports){
75651
+ },{}],606:[function(require,module,exports){
75644
75652
  module.exports={
75645
75653
  "$id": "cookie.json#",
75646
75654
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -75678,7 +75686,7 @@ module.exports={
75678
75686
  }
75679
75687
  }
75680
75688
 
75681
- },{}],606:[function(require,module,exports){
75689
+ },{}],607:[function(require,module,exports){
75682
75690
  module.exports={
75683
75691
  "$id": "creator.json#",
75684
75692
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -75700,7 +75708,7 @@ module.exports={
75700
75708
  }
75701
75709
  }
75702
75710
 
75703
- },{}],607:[function(require,module,exports){
75711
+ },{}],608:[function(require,module,exports){
75704
75712
  module.exports={
75705
75713
  "$id": "entry.json#",
75706
75714
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -75755,7 +75763,7 @@ module.exports={
75755
75763
  }
75756
75764
  }
75757
75765
 
75758
- },{}],608:[function(require,module,exports){
75766
+ },{}],609:[function(require,module,exports){
75759
75767
  module.exports={
75760
75768
  "$id": "har.json#",
75761
75769
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -75770,7 +75778,7 @@ module.exports={
75770
75778
  }
75771
75779
  }
75772
75780
 
75773
- },{}],609:[function(require,module,exports){
75781
+ },{}],610:[function(require,module,exports){
75774
75782
  module.exports={
75775
75783
  "$id": "header.json#",
75776
75784
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -75792,7 +75800,7 @@ module.exports={
75792
75800
  }
75793
75801
  }
75794
75802
 
75795
- },{}],610:[function(require,module,exports){
75803
+ },{}],611:[function(require,module,exports){
75796
75804
  'use strict'
75797
75805
 
75798
75806
  module.exports = {
@@ -75816,7 +75824,7 @@ module.exports = {
75816
75824
  timings: require('./timings.json')
75817
75825
  }
75818
75826
 
75819
- },{"./afterRequest.json":600,"./beforeRequest.json":601,"./browser.json":602,"./cache.json":603,"./content.json":604,"./cookie.json":605,"./creator.json":606,"./entry.json":607,"./har.json":608,"./header.json":609,"./log.json":611,"./page.json":612,"./pageTimings.json":613,"./postData.json":614,"./query.json":615,"./request.json":616,"./response.json":617,"./timings.json":618}],611:[function(require,module,exports){
75827
+ },{"./afterRequest.json":601,"./beforeRequest.json":602,"./browser.json":603,"./cache.json":604,"./content.json":605,"./cookie.json":606,"./creator.json":607,"./entry.json":608,"./har.json":609,"./header.json":610,"./log.json":612,"./page.json":613,"./pageTimings.json":614,"./postData.json":615,"./query.json":616,"./request.json":617,"./response.json":618,"./timings.json":619}],612:[function(require,module,exports){
75820
75828
  module.exports={
75821
75829
  "$id": "log.json#",
75822
75830
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -75854,7 +75862,7 @@ module.exports={
75854
75862
  }
75855
75863
  }
75856
75864
 
75857
- },{}],612:[function(require,module,exports){
75865
+ },{}],613:[function(require,module,exports){
75858
75866
  module.exports={
75859
75867
  "$id": "page.json#",
75860
75868
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -75888,7 +75896,7 @@ module.exports={
75888
75896
  }
75889
75897
  }
75890
75898
 
75891
- },{}],613:[function(require,module,exports){
75899
+ },{}],614:[function(require,module,exports){
75892
75900
  module.exports={
75893
75901
  "$id": "pageTimings.json#",
75894
75902
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -75908,7 +75916,7 @@ module.exports={
75908
75916
  }
75909
75917
  }
75910
75918
 
75911
- },{}],614:[function(require,module,exports){
75919
+ },{}],615:[function(require,module,exports){
75912
75920
  module.exports={
75913
75921
  "$id": "postData.json#",
75914
75922
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -75953,7 +75961,7 @@ module.exports={
75953
75961
  }
75954
75962
  }
75955
75963
 
75956
- },{}],615:[function(require,module,exports){
75964
+ },{}],616:[function(require,module,exports){
75957
75965
  module.exports={
75958
75966
  "$id": "query.json#",
75959
75967
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -75975,7 +75983,7 @@ module.exports={
75975
75983
  }
75976
75984
  }
75977
75985
 
75978
- },{}],616:[function(require,module,exports){
75986
+ },{}],617:[function(require,module,exports){
75979
75987
  module.exports={
75980
75988
  "$id": "request.json#",
75981
75989
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -76034,7 +76042,7 @@ module.exports={
76034
76042
  }
76035
76043
  }
76036
76044
 
76037
- },{}],617:[function(require,module,exports){
76045
+ },{}],618:[function(require,module,exports){
76038
76046
  module.exports={
76039
76047
  "$id": "response.json#",
76040
76048
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -76090,7 +76098,7 @@ module.exports={
76090
76098
  }
76091
76099
  }
76092
76100
 
76093
- },{}],618:[function(require,module,exports){
76101
+ },{}],619:[function(require,module,exports){
76094
76102
  module.exports={
76095
76103
  "$id": "timings.json#",
76096
76104
  "$schema": "http://json-schema.org/draft-06/schema#",
@@ -76134,7 +76142,7 @@ module.exports={
76134
76142
  }
76135
76143
  }
76136
76144
 
76137
- },{}],619:[function(require,module,exports){
76145
+ },{}],620:[function(require,module,exports){
76138
76146
  function HARError (errors) {
76139
76147
  var message = 'validation failed'
76140
76148
 
@@ -76153,7 +76161,7 @@ HARError.prototype = Error.prototype
76153
76161
 
76154
76162
  module.exports = HARError
76155
76163
 
76156
- },{}],620:[function(require,module,exports){
76164
+ },{}],621:[function(require,module,exports){
76157
76165
  var Ajv = require('ajv')
76158
76166
  var HARError = require('./error')
76159
76167
  var schemas = require('har-schema')
@@ -76257,7 +76265,7 @@ exports.timings = function (data) {
76257
76265
  return validate('timings', data)
76258
76266
  }
76259
76267
 
76260
- },{"./error":619,"ajv":534,"ajv/lib/refs/json-schema-draft-06.json":575,"har-schema":610}],621:[function(require,module,exports){
76268
+ },{"./error":620,"ajv":534,"ajv/lib/refs/json-schema-draft-06.json":575,"har-schema":611}],622:[function(require,module,exports){
76261
76269
  // Copyright 2015 Joyent, Inc.
76262
76270
 
76263
76271
  var parser = require('./parser');
@@ -76288,7 +76296,7 @@ module.exports = {
76288
76296
  verifyHMAC: verify.verifyHMAC
76289
76297
  };
76290
76298
 
76291
- },{"./parser":622,"./signer":623,"./utils":624,"./verify":625}],622:[function(require,module,exports){
76299
+ },{"./parser":623,"./signer":624,"./utils":625,"./verify":626}],623:[function(require,module,exports){
76292
76300
  // Copyright 2012 Joyent, Inc. All rights reserved.
76293
76301
 
76294
76302
  var assert = require('assert-plus');
@@ -76605,7 +76613,7 @@ module.exports = {
76605
76613
 
76606
76614
  };
76607
76615
 
76608
- },{"./utils":624,"assert-plus":583,"util":418}],623:[function(require,module,exports){
76616
+ },{"./utils":625,"assert-plus":583,"util":418}],624:[function(require,module,exports){
76609
76617
  (function (Buffer){(function (){
76610
76618
  // Copyright 2012 Joyent, Inc. All rights reserved.
76611
76619
 
@@ -77010,7 +77018,7 @@ module.exports = {
77010
77018
  };
77011
77019
 
77012
77020
  }).call(this)}).call(this,{"isBuffer":require("../../../browser-agent/node_modules/is-buffer/index.js")})
77013
- },{"../../../browser-agent/node_modules/is-buffer/index.js":308,"./utils":624,"assert-plus":583,"crypto":225,"http":406,"jsprim":632,"sshpk":687,"util":418}],624:[function(require,module,exports){
77021
+ },{"../../../browser-agent/node_modules/is-buffer/index.js":308,"./utils":625,"assert-plus":583,"crypto":225,"http":406,"jsprim":633,"sshpk":687,"util":418}],625:[function(require,module,exports){
77014
77022
  // Copyright 2012 Joyent, Inc. All rights reserved.
77015
77023
 
77016
77024
  var assert = require('assert-plus');
@@ -77124,7 +77132,7 @@ module.exports = {
77124
77132
  }
77125
77133
  };
77126
77134
 
77127
- },{"assert-plus":583,"sshpk":687,"util":418}],625:[function(require,module,exports){
77135
+ },{"assert-plus":583,"sshpk":687,"util":418}],626:[function(require,module,exports){
77128
77136
  (function (Buffer){(function (){
77129
77137
  // Copyright 2015 Joyent, Inc.
77130
77138
 
@@ -77216,7 +77224,7 @@ module.exports = {
77216
77224
  };
77217
77225
 
77218
77226
  }).call(this)}).call(this,require("buffer").Buffer)
77219
- },{"./utils":624,"assert-plus":583,"buffer":213,"crypto":225,"sshpk":687}],626:[function(require,module,exports){
77227
+ },{"./utils":625,"assert-plus":583,"buffer":213,"crypto":225,"sshpk":687}],627:[function(require,module,exports){
77220
77228
  module.exports = isTypedArray
77221
77229
  isTypedArray.strict = isStrictTypedArray
77222
77230
  isTypedArray.loose = isLooseTypedArray
@@ -77259,7 +77267,7 @@ function isLooseTypedArray(arr) {
77259
77267
  return names[toString.call(arr)]
77260
77268
  }
77261
77269
 
77262
- },{}],627:[function(require,module,exports){
77270
+ },{}],628:[function(require,module,exports){
77263
77271
  var stream = require('stream')
77264
77272
 
77265
77273
 
@@ -77288,7 +77296,7 @@ module.exports.isReadable = isReadable
77288
77296
  module.exports.isWritable = isWritable
77289
77297
  module.exports.isDuplex = isDuplex
77290
77298
 
77291
- },{"stream":405}],628:[function(require,module,exports){
77299
+ },{"stream":405}],629:[function(require,module,exports){
77292
77300
  (function(){
77293
77301
 
77294
77302
  // Copyright (c) 2005 Tom Wu
@@ -78647,7 +78655,7 @@ module.exports.isDuplex = isDuplex
78647
78655
 
78648
78656
  }).call(this);
78649
78657
 
78650
- },{}],629:[function(require,module,exports){
78658
+ },{}],630:[function(require,module,exports){
78651
78659
  'use strict';
78652
78660
 
78653
78661
  var traverse = module.exports = function (schema, opts, cb) {
@@ -78738,7 +78746,7 @@ function escapeJsonPtr(str) {
78738
78746
  return str.replace(/~/g, '~0').replace(/\//g, '~1');
78739
78747
  }
78740
78748
 
78741
- },{}],630:[function(require,module,exports){
78749
+ },{}],631:[function(require,module,exports){
78742
78750
  /**
78743
78751
  * JSONSchema Validator - Validates JavaScript objects using JSON Schemas
78744
78752
  * (http://www.json.com/json-schema-proposal/)
@@ -79011,7 +79019,7 @@ exports.mustBeValid = function(result){
79011
79019
  return exports;
79012
79020
  }));
79013
79021
 
79014
- },{}],631:[function(require,module,exports){
79022
+ },{}],632:[function(require,module,exports){
79015
79023
  exports = module.exports = stringify
79016
79024
  exports.getSerialize = serializer
79017
79025
 
@@ -79040,7 +79048,7 @@ function serializer(replacer, cycleReplacer) {
79040
79048
  }
79041
79049
  }
79042
79050
 
79043
- },{}],632:[function(require,module,exports){
79051
+ },{}],633:[function(require,module,exports){
79044
79052
  /*
79045
79053
  * lib/jsprim.js: utilities for primitive JavaScript types
79046
79054
  */
@@ -79777,11 +79785,11 @@ function mergeObjects(provided, overrides, defaults)
79777
79785
  return (rv);
79778
79786
  }
79779
79787
 
79780
- },{"assert-plus":583,"extsprintf":596,"json-schema":630,"util":418,"verror":712}],633:[function(require,module,exports){
79788
+ },{"assert-plus":583,"extsprintf":596,"json-schema":631,"util":418,"verror":712}],634:[function(require,module,exports){
79781
79789
  "use strict";function e(e){this.message=e}e.prototype=new Error,e.prototype.name="InvalidCharacterError";var r="undefined"!=typeof window&&window.atob&&window.atob.bind(window)||function(r){var t=String(r).replace(/=+$/,"");if(t.length%4==1)throw new e("'atob' failed: The string to be decoded is not correctly encoded.");for(var n,o,a=0,i=0,c="";o=t.charAt(i++);~o&&(n=a%4?64*n+o:o,a++%4)?c+=String.fromCharCode(255&n>>(-2*a&6)):0)o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(o);return c};function t(e){var t=e.replace(/-/g,"+").replace(/_/g,"/");switch(t.length%4){case 0:break;case 2:t+="==";break;case 3:t+="=";break;default:throw"Illegal base64url string!"}try{return function(e){return decodeURIComponent(r(e).replace(/(.)/g,(function(e,r){var t=r.charCodeAt(0).toString(16).toUpperCase();return t.length<2&&(t="0"+t),"%"+t})))}(t)}catch(e){return r(t)}}function n(e){this.message=e}function o(e,r){if("string"!=typeof e)throw new n("Invalid token specified");var o=!0===(r=r||{}).header?0:1;try{return JSON.parse(t(e.split(".")[o]))}catch(e){throw new n("Invalid token specified: "+e.message)}}n.prototype=new Error,n.prototype.name="InvalidTokenError";const a=o;a.default=o,a.InvalidTokenError=n,module.exports=a;
79782
79790
 
79783
79791
 
79784
- },{}],634:[function(require,module,exports){
79792
+ },{}],635:[function(require,module,exports){
79785
79793
  module.exports={
79786
79794
  "application/1d-interleaved-parityfec": {
79787
79795
  "source": "iana"
@@ -88302,7 +88310,7 @@ module.exports={
88302
88310
  }
88303
88311
  }
88304
88312
 
88305
- },{}],635:[function(require,module,exports){
88313
+ },{}],636:[function(require,module,exports){
88306
88314
  /*!
88307
88315
  * mime-db
88308
88316
  * Copyright(c) 2014 Jonathan Ong
@@ -88316,7 +88324,7 @@ module.exports={
88316
88324
 
88317
88325
  module.exports = require('./db.json')
88318
88326
 
88319
- },{"./db.json":634}],636:[function(require,module,exports){
88327
+ },{"./db.json":635}],637:[function(require,module,exports){
88320
88328
  /*!
88321
88329
  * mime-types
88322
88330
  * Copyright(c) 2014 Jonathan Ong
@@ -88506,7 +88514,7 @@ function populateMaps (extensions, types) {
88506
88514
  })
88507
88515
  }
88508
88516
 
88509
- },{"mime-db":635,"path":339}],637:[function(require,module,exports){
88517
+ },{"mime-db":636,"path":339}],638:[function(require,module,exports){
88510
88518
  var crypto = require('crypto')
88511
88519
 
88512
88520
  function sha (key, body, algorithm) {
@@ -88653,7 +88661,7 @@ exports.plaintext = plaintext
88653
88661
  exports.sign = sign
88654
88662
  exports.rfc3986 = rfc3986
88655
88663
  exports.generateBase = generateBase
88656
- },{"crypto":225}],638:[function(require,module,exports){
88664
+ },{"crypto":225}],639:[function(require,module,exports){
88657
88665
  (function (process){(function (){
88658
88666
  // Generated by CoffeeScript 1.12.2
88659
88667
  (function() {
@@ -88693,7 +88701,7 @@ exports.generateBase = generateBase
88693
88701
 
88694
88702
 
88695
88703
  }).call(this)}).call(this,require('_process'))
88696
- },{"_process":347}],639:[function(require,module,exports){
88704
+ },{"_process":347}],640:[function(require,module,exports){
88697
88705
  module.exports=[
88698
88706
  "ac",
88699
88707
  "com.ac",
@@ -98070,7 +98078,7 @@ module.exports=[
98070
98078
  "virtualserver.io",
98071
98079
  "enterprisecloud.nu"
98072
98080
  ]
98073
- },{}],640:[function(require,module,exports){
98081
+ },{}],641:[function(require,module,exports){
98074
98082
  /*eslint no-var:0, prefer-arrow-callback: 0, object-shorthand: 0 */
98075
98083
  'use strict';
98076
98084
 
@@ -98341,7 +98349,7 @@ exports.isValid = function (domain) {
98341
98349
  return Boolean(parsed.domain && parsed.listed);
98342
98350
  };
98343
98351
 
98344
- },{"./data/rules.json":639,"punycode":355}],641:[function(require,module,exports){
98352
+ },{"./data/rules.json":640,"punycode":355}],642:[function(require,module,exports){
98345
98353
  'use strict';
98346
98354
 
98347
98355
  /** Highest positive signed 32-bit float value */
@@ -98786,7 +98794,7 @@ const punycode = {
98786
98794
 
98787
98795
  module.exports = punycode;
98788
98796
 
98789
- },{}],642:[function(require,module,exports){
98797
+ },{}],643:[function(require,module,exports){
98790
98798
  'use strict';
98791
98799
 
98792
98800
  var replace = String.prototype.replace;
@@ -98806,9 +98814,9 @@ module.exports = {
98806
98814
  RFC3986: 'RFC3986'
98807
98815
  };
98808
98816
 
98809
- },{}],643:[function(require,module,exports){
98817
+ },{}],644:[function(require,module,exports){
98810
98818
  arguments[4][357][0].apply(exports,arguments)
98811
- },{"./formats":642,"./parse":644,"./stringify":645,"dup":357}],644:[function(require,module,exports){
98819
+ },{"./formats":643,"./parse":645,"./stringify":646,"dup":357}],645:[function(require,module,exports){
98812
98820
  'use strict';
98813
98821
 
98814
98822
  var utils = require('./utils');
@@ -98985,7 +98993,7 @@ module.exports = function (str, opts) {
98985
98993
  return utils.compact(obj);
98986
98994
  };
98987
98995
 
98988
- },{"./utils":646}],645:[function(require,module,exports){
98996
+ },{"./utils":647}],646:[function(require,module,exports){
98989
98997
  'use strict';
98990
98998
 
98991
98999
  var utils = require('./utils');
@@ -99204,7 +99212,7 @@ module.exports = function (object, opts) {
99204
99212
  return joined.length > 0 ? prefix + joined : '';
99205
99213
  };
99206
99214
 
99207
- },{"./formats":642,"./utils":646}],646:[function(require,module,exports){
99215
+ },{"./formats":643,"./utils":647}],647:[function(require,module,exports){
99208
99216
  'use strict';
99209
99217
 
99210
99218
  var has = Object.prototype.hasOwnProperty;
@@ -99421,7 +99429,7 @@ module.exports = {
99421
99429
  merge: merge
99422
99430
  };
99423
99431
 
99424
- },{}],647:[function(require,module,exports){
99432
+ },{}],648:[function(require,module,exports){
99425
99433
  'use strict';
99426
99434
 
99427
99435
  var has = Object.prototype.hasOwnProperty
@@ -99541,7 +99549,7 @@ function querystringify(obj, prefix) {
99541
99549
  exports.stringify = querystringify;
99542
99550
  exports.parse = querystring;
99543
99551
 
99544
- },{}],648:[function(require,module,exports){
99552
+ },{}],649:[function(require,module,exports){
99545
99553
  'use strict';
99546
99554
 
99547
99555
  /**
@@ -99581,9 +99589,9 @@ module.exports = function required(port, protocol) {
99581
99589
  return port !== 0;
99582
99590
  };
99583
99591
 
99584
- },{}],649:[function(require,module,exports){
99592
+ },{}],650:[function(require,module,exports){
99585
99593
  arguments[4][375][0].apply(exports,arguments)
99586
- },{"buffer":213,"dup":375}],650:[function(require,module,exports){
99594
+ },{"buffer":213,"dup":375}],651:[function(require,module,exports){
99587
99595
  (function (process){(function (){
99588
99596
  /* eslint-disable node/no-deprecated-api */
99589
99597
 
@@ -99664,7 +99672,7 @@ if (!safer.constants) {
99664
99672
  module.exports = safer
99665
99673
 
99666
99674
  }).call(this)}).call(this,require('_process'))
99667
- },{"_process":347,"buffer":213}],651:[function(require,module,exports){
99675
+ },{"_process":347,"buffer":213}],652:[function(require,module,exports){
99668
99676
  // Copyright 2010-2012 Mikeal Rogers
99669
99677
  //
99670
99678
  // Licensed under the Apache License, Version 2.0 (the "License");
@@ -99821,7 +99829,7 @@ Object.defineProperty(request, 'debug', {
99821
99829
  }
99822
99830
  })
99823
99831
 
99824
- },{"./lib/cookies":653,"./lib/helpers":657,"./request":667,"extend":595}],652:[function(require,module,exports){
99832
+ },{"./lib/cookies":654,"./lib/helpers":658,"./request":667,"extend":595}],653:[function(require,module,exports){
99825
99833
  'use strict'
99826
99834
 
99827
99835
  var caseless = require('caseless')
@@ -99990,7 +99998,7 @@ Auth.prototype.onResponse = function (response) {
99990
99998
 
99991
99999
  exports.Auth = Auth
99992
100000
 
99993
- },{"./helpers":657,"caseless":588,"uuid/v4":666}],653:[function(require,module,exports){
100001
+ },{"./helpers":658,"caseless":588,"uuid/v4":666}],654:[function(require,module,exports){
99994
100002
  'use strict'
99995
100003
 
99996
100004
  var tough = require('tough-cookie')
@@ -100030,7 +100038,7 @@ exports.jar = function (store) {
100030
100038
  return new RequestJar(store)
100031
100039
  }
100032
100040
 
100033
- },{"tough-cookie":693}],654:[function(require,module,exports){
100041
+ },{"tough-cookie":693}],655:[function(require,module,exports){
100034
100042
  (function (process){(function (){
100035
100043
  'use strict'
100036
100044
 
@@ -100113,7 +100121,7 @@ function getProxyFromURI (uri) {
100113
100121
  module.exports = getProxyFromURI
100114
100122
 
100115
100123
  }).call(this)}).call(this,require('_process'))
100116
- },{"_process":347}],655:[function(require,module,exports){
100124
+ },{"_process":347}],656:[function(require,module,exports){
100117
100125
  'use strict'
100118
100126
 
100119
100127
  var fs = require('fs')
@@ -100320,7 +100328,7 @@ Har.prototype.options = function (options) {
100320
100328
 
100321
100329
  exports.Har = Har
100322
100330
 
100323
- },{"extend":595,"fs":211,"har-validator":620,"querystring":363}],656:[function(require,module,exports){
100331
+ },{"extend":595,"fs":211,"har-validator":621,"querystring":363}],657:[function(require,module,exports){
100324
100332
  'use strict'
100325
100333
 
100326
100334
  var crypto = require('crypto')
@@ -100411,7 +100419,7 @@ exports.header = function (uri, method, opts) {
100411
100419
  return header
100412
100420
  }
100413
100421
 
100414
- },{"crypto":225}],657:[function(require,module,exports){
100422
+ },{"crypto":225}],658:[function(require,module,exports){
100415
100423
  (function (process,setImmediate){(function (){
100416
100424
  'use strict'
100417
100425
 
@@ -100481,7 +100489,7 @@ exports.version = version
100481
100489
  exports.defer = defer
100482
100490
 
100483
100491
  }).call(this)}).call(this,require('_process'),require("timers").setImmediate)
100484
- },{"_process":347,"crypto":225,"json-stringify-safe":631,"safe-buffer":649,"timers":412}],658:[function(require,module,exports){
100492
+ },{"_process":347,"crypto":225,"json-stringify-safe":632,"safe-buffer":650,"timers":412}],659:[function(require,module,exports){
100485
100493
  'use strict'
100486
100494
 
100487
100495
  var uuid = require('uuid/v4')
@@ -100595,7 +100603,7 @@ Multipart.prototype.onRequest = function (options) {
100595
100603
 
100596
100604
  exports.Multipart = Multipart
100597
100605
 
100598
- },{"combined-stream":589,"isstream":627,"safe-buffer":649,"uuid/v4":666}],659:[function(require,module,exports){
100606
+ },{"combined-stream":589,"isstream":628,"safe-buffer":650,"uuid/v4":666}],660:[function(require,module,exports){
100599
100607
  'use strict'
100600
100608
 
100601
100609
  var url = require('url')
@@ -100745,7 +100753,7 @@ OAuth.prototype.onRequest = function (_oauth) {
100745
100753
 
100746
100754
  exports.OAuth = OAuth
100747
100755
 
100748
- },{"caseless":588,"crypto":225,"oauth-sign":637,"qs":643,"safe-buffer":649,"url":414,"uuid/v4":666}],660:[function(require,module,exports){
100756
+ },{"caseless":588,"crypto":225,"oauth-sign":638,"qs":644,"safe-buffer":650,"url":414,"uuid/v4":666}],661:[function(require,module,exports){
100749
100757
  'use strict'
100750
100758
 
100751
100759
  var qs = require('qs')
@@ -100797,7 +100805,7 @@ Querystring.prototype.unescape = querystring.unescape
100797
100805
 
100798
100806
  exports.Querystring = Querystring
100799
100807
 
100800
- },{"qs":643,"querystring":363}],661:[function(require,module,exports){
100808
+ },{"qs":644,"querystring":363}],662:[function(require,module,exports){
100801
100809
  'use strict'
100802
100810
 
100803
100811
  var url = require('url')
@@ -100953,7 +100961,7 @@ Redirect.prototype.onResponse = function (response) {
100953
100961
 
100954
100962
  exports.Redirect = Redirect
100955
100963
 
100956
- },{"url":414}],662:[function(require,module,exports){
100964
+ },{"url":414}],663:[function(require,module,exports){
100957
100965
  'use strict'
100958
100966
 
100959
100967
  var url = require('url')
@@ -101130,11 +101138,7 @@ Tunnel.defaultProxyHeaderWhiteList = defaultProxyHeaderWhiteList
101130
101138
  Tunnel.defaultProxyHeaderExclusiveList = defaultProxyHeaderExclusiveList
101131
101139
  exports.Tunnel = Tunnel
101132
101140
 
101133
- },{"tunnel-agent":702,"url":414}],663:[function(require,module,exports){
101134
- /* eslint-env browser */
101135
- module.exports = typeof self == 'object' ? self.FormData : window.FormData;
101136
-
101137
- },{}],664:[function(require,module,exports){
101141
+ },{"tunnel-agent":702,"url":414}],664:[function(require,module,exports){
101138
101142
  /**
101139
101143
  * Convert array of 16 byte values to UUID string format of the form:
101140
101144
  * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
@@ -102786,7 +102790,7 @@ Request.prototype.toJSON = requestToJSON
102786
102790
  module.exports = Request
102787
102791
 
102788
102792
  }).call(this)}).call(this,require('_process'))
102789
- },{"./lib/auth":652,"./lib/cookies":653,"./lib/getProxyFromURI":654,"./lib/har":655,"./lib/hawk":656,"./lib/helpers":657,"./lib/multipart":658,"./lib/oauth":659,"./lib/querystring":660,"./lib/redirect":661,"./lib/tunnel":662,"_process":347,"aws-sign2":584,"aws4":585,"caseless":588,"extend":595,"forever-agent":599,"form-data":663,"http":406,"http-signature":621,"https":304,"is-typedarray":626,"isstream":627,"mime-types":636,"performance-now":638,"safe-buffer":649,"stream":405,"url":414,"util":418,"zlib":210}],668:[function(require,module,exports){
102793
+ },{"./lib/auth":653,"./lib/cookies":654,"./lib/getProxyFromURI":655,"./lib/har":656,"./lib/hawk":657,"./lib/helpers":658,"./lib/multipart":659,"./lib/oauth":660,"./lib/querystring":661,"./lib/redirect":662,"./lib/tunnel":663,"_process":347,"aws-sign2":584,"aws4":585,"caseless":588,"extend":595,"forever-agent":599,"form-data":600,"http":406,"http-signature":622,"https":304,"is-typedarray":627,"isstream":628,"mime-types":637,"performance-now":639,"safe-buffer":650,"stream":405,"url":414,"util":418,"zlib":210}],668:[function(require,module,exports){
102790
102794
  // Copyright 2015 Joyent, Inc.
102791
102795
 
102792
102796
  var Buffer = require('safer-buffer').Buffer;
@@ -102956,7 +102960,7 @@ module.exports = {
102956
102960
  curves: curves
102957
102961
  };
102958
102962
 
102959
- },{"safer-buffer":650}],669:[function(require,module,exports){
102963
+ },{"safer-buffer":651}],669:[function(require,module,exports){
102960
102964
  // Copyright 2016 Joyent, Inc.
102961
102965
 
102962
102966
  module.exports = Certificate;
@@ -103368,7 +103372,7 @@ Certificate._oldVersionDetect = function (obj) {
103368
103372
  return ([1, 0]);
103369
103373
  };
103370
103374
 
103371
- },{"./algs":668,"./errors":672,"./fingerprint":673,"./formats/openssh-cert":676,"./formats/x509":685,"./formats/x509-pem":684,"./identity":686,"./key":688,"./private-key":689,"./signature":690,"./utils":692,"assert-plus":583,"crypto":225,"safer-buffer":650,"util":418}],670:[function(require,module,exports){
103375
+ },{"./algs":668,"./errors":672,"./fingerprint":673,"./formats/openssh-cert":676,"./formats/x509":685,"./formats/x509-pem":684,"./identity":686,"./key":688,"./private-key":689,"./signature":690,"./utils":692,"assert-plus":583,"crypto":225,"safer-buffer":651,"util":418}],670:[function(require,module,exports){
103372
103376
  // Copyright 2017 Joyent, Inc.
103373
103377
 
103374
103378
  module.exports = {
@@ -103767,7 +103771,7 @@ function generateECDSA(curve) {
103767
103771
  }
103768
103772
  }
103769
103773
 
103770
- },{"./algs":668,"./key":688,"./private-key":689,"./utils":692,"assert-plus":583,"crypto":225,"ecc-jsbn":592,"ecc-jsbn/lib/ec":593,"jsbn":628,"safer-buffer":650,"tweetnacl":703}],671:[function(require,module,exports){
103774
+ },{"./algs":668,"./key":688,"./private-key":689,"./utils":692,"assert-plus":583,"crypto":225,"ecc-jsbn":592,"ecc-jsbn/lib/ec":593,"jsbn":629,"safer-buffer":651,"tweetnacl":703}],671:[function(require,module,exports){
103771
103775
  // Copyright 2015 Joyent, Inc.
103772
103776
 
103773
103777
  module.exports = {
@@ -103861,7 +103865,7 @@ Signer.prototype.sign = function () {
103861
103865
  return (sigObj);
103862
103866
  };
103863
103867
 
103864
- },{"./signature":690,"assert-plus":583,"safer-buffer":650,"stream":405,"tweetnacl":703,"util":418}],672:[function(require,module,exports){
103868
+ },{"./signature":690,"assert-plus":583,"safer-buffer":651,"stream":405,"tweetnacl":703,"util":418}],672:[function(require,module,exports){
103865
103869
  // Copyright 2015 Joyent, Inc.
103866
103870
 
103867
103871
  var assert = require('assert-plus');
@@ -104169,7 +104173,7 @@ Fingerprint._oldVersionDetect = function (obj) {
104169
104173
  return ([1, 0]);
104170
104174
  };
104171
104175
 
104172
- },{"./algs":668,"./certificate":669,"./errors":672,"./key":688,"./private-key":689,"./utils":692,"assert-plus":583,"crypto":225,"safer-buffer":650}],674:[function(require,module,exports){
104176
+ },{"./algs":668,"./certificate":669,"./errors":672,"./key":688,"./private-key":689,"./utils":692,"assert-plus":583,"crypto":225,"safer-buffer":651}],674:[function(require,module,exports){
104173
104177
  // Copyright 2018 Joyent, Inc.
104174
104178
 
104175
104179
  module.exports = {
@@ -104295,7 +104299,7 @@ function write(key, options) {
104295
104299
  throw (new Error('"auto" format cannot be used for writing'));
104296
104300
  }
104297
104301
 
104298
- },{"../key":688,"../private-key":689,"../utils":692,"./dnssec":675,"./pem":677,"./putty":680,"./rfc4253":681,"./ssh":683,"assert-plus":583,"safer-buffer":650}],675:[function(require,module,exports){
104302
+ },{"../key":688,"../private-key":689,"../utils":692,"./dnssec":675,"./pem":677,"./putty":680,"./rfc4253":681,"./ssh":683,"assert-plus":583,"safer-buffer":651}],675:[function(require,module,exports){
104299
104303
  // Copyright 2017 Joyent, Inc.
104300
104304
 
104301
104305
  module.exports = {
@@ -104584,7 +104588,7 @@ function write(key, options) {
104584
104588
  }
104585
104589
  }
104586
104590
 
104587
- },{"../dhe":670,"../key":688,"../private-key":689,"../ssh-buffer":691,"../utils":692,"assert-plus":583,"safer-buffer":650}],676:[function(require,module,exports){
104591
+ },{"../dhe":670,"../key":688,"../private-key":689,"../ssh-buffer":691,"../utils":692,"assert-plus":583,"safer-buffer":651}],676:[function(require,module,exports){
104588
104592
  // Copyright 2017 Joyent, Inc.
104589
104593
 
104590
104594
  module.exports = {
@@ -104938,7 +104942,7 @@ function getCertType(key) {
104938
104942
  throw (new Error('Unsupported key type ' + key.type));
104939
104943
  }
104940
104944
 
104941
- },{"../algs":668,"../certificate":669,"../identity":686,"../key":688,"../private-key":689,"../signature":690,"../ssh-buffer":691,"../utils":692,"./rfc4253":681,"assert-plus":583,"crypto":225,"safer-buffer":650}],677:[function(require,module,exports){
104945
+ },{"../algs":668,"../certificate":669,"../identity":686,"../key":688,"../private-key":689,"../signature":690,"../ssh-buffer":691,"../utils":692,"./rfc4253":681,"assert-plus":583,"crypto":225,"safer-buffer":651}],677:[function(require,module,exports){
104942
104946
  // Copyright 2018 Joyent, Inc.
104943
104947
 
104944
104948
  module.exports = {
@@ -105230,7 +105234,7 @@ function write(key, options, type) {
105230
105234
  return (buf.slice(0, o));
105231
105235
  }
105232
105236
 
105233
- },{"../algs":668,"../errors":672,"../key":688,"../private-key":689,"../utils":692,"./pkcs1":678,"./pkcs8":679,"./rfc4253":681,"./ssh-private":682,"asn1":582,"assert-plus":583,"crypto":225,"safer-buffer":650}],678:[function(require,module,exports){
105237
+ },{"../algs":668,"../errors":672,"../key":688,"../private-key":689,"../utils":692,"./pkcs1":678,"./pkcs8":679,"./rfc4253":681,"./ssh-private":682,"asn1":582,"assert-plus":583,"crypto":225,"safer-buffer":651}],678:[function(require,module,exports){
105234
105238
  // Copyright 2015 Joyent, Inc.
105235
105239
 
105236
105240
  module.exports = {
@@ -105605,7 +105609,7 @@ function writePkcs1EdDSAPublic(der, key) {
105605
105609
  throw (new Error('Public keys are not supported for EdDSA PKCS#1'));
105606
105610
  }
105607
105611
 
105608
- },{"../algs":668,"../key":688,"../private-key":689,"../utils":692,"./pem":677,"./pkcs8":679,"asn1":582,"assert-plus":583,"safer-buffer":650}],679:[function(require,module,exports){
105612
+ },{"../algs":668,"../key":688,"../private-key":689,"../utils":692,"./pem":677,"./pkcs8":679,"asn1":582,"assert-plus":583,"safer-buffer":651}],679:[function(require,module,exports){
105609
105613
  // Copyright 2018 Joyent, Inc.
105610
105614
 
105611
105615
  module.exports = {
@@ -106250,7 +106254,7 @@ function writePkcs8EdDSAPrivate(key, der) {
106250
106254
  utils.writeBitString(der, key.part.A.data, asn1.Ber.Context | 1);
106251
106255
  }
106252
106256
 
106253
- },{"../algs":668,"../key":688,"../private-key":689,"../utils":692,"./pem":677,"asn1":582,"assert-plus":583,"safer-buffer":650}],680:[function(require,module,exports){
106257
+ },{"../algs":668,"../key":688,"../private-key":689,"../utils":692,"./pem":677,"asn1":582,"assert-plus":583,"safer-buffer":651}],680:[function(require,module,exports){
106254
106258
  // Copyright 2018 Joyent, Inc.
106255
106259
 
106256
106260
  module.exports = {
@@ -106446,7 +106450,7 @@ function wrap(txt, len) {
106446
106450
  return (lines);
106447
106451
  }
106448
106452
 
106449
- },{"../errors":672,"../key":688,"../private-key":689,"../ssh-buffer":691,"./rfc4253":681,"assert-plus":583,"crypto":225,"safer-buffer":650}],681:[function(require,module,exports){
106453
+ },{"../errors":672,"../key":688,"../private-key":689,"../ssh-buffer":691,"./rfc4253":681,"assert-plus":583,"crypto":225,"safer-buffer":651}],681:[function(require,module,exports){
106450
106454
  // Copyright 2015 Joyent, Inc.
106451
106455
 
106452
106456
  module.exports = {
@@ -106614,7 +106618,7 @@ function write(key, options) {
106614
106618
  return (buf.toBuffer());
106615
106619
  }
106616
106620
 
106617
- },{"../algs":668,"../key":688,"../private-key":689,"../ssh-buffer":691,"../utils":692,"assert-plus":583,"safer-buffer":650}],682:[function(require,module,exports){
106621
+ },{"../algs":668,"../key":688,"../private-key":689,"../ssh-buffer":691,"../utils":692,"assert-plus":583,"safer-buffer":651}],682:[function(require,module,exports){
106618
106622
  // Copyright 2015 Joyent, Inc.
106619
106623
 
106620
106624
  module.exports = {
@@ -106878,7 +106882,7 @@ function write(key, options) {
106878
106882
  return (buf.slice(0, o));
106879
106883
  }
106880
106884
 
106881
- },{"../algs":668,"../errors":672,"../key":688,"../private-key":689,"../ssh-buffer":691,"../utils":692,"./pem":677,"./rfc4253":681,"asn1":582,"assert-plus":583,"bcrypt-pbkdf":587,"crypto":225,"safer-buffer":650}],683:[function(require,module,exports){
106885
+ },{"../algs":668,"../errors":672,"../key":688,"../private-key":689,"../ssh-buffer":691,"../utils":692,"./pem":677,"./rfc4253":681,"asn1":582,"assert-plus":583,"bcrypt-pbkdf":587,"crypto":225,"safer-buffer":651}],683:[function(require,module,exports){
106882
106886
  // Copyright 2015 Joyent, Inc.
106883
106887
 
106884
106888
  module.exports = {
@@ -106995,7 +106999,7 @@ function write(key, options) {
106995
106999
  return (Buffer.from(parts.join(' ')));
106996
107000
  }
106997
107001
 
106998
- },{"../key":688,"../private-key":689,"../utils":692,"./rfc4253":681,"./ssh-private":682,"assert-plus":583,"safer-buffer":650}],684:[function(require,module,exports){
107002
+ },{"../key":688,"../private-key":689,"../utils":692,"./rfc4253":681,"./ssh-private":682,"assert-plus":583,"safer-buffer":651}],684:[function(require,module,exports){
106999
107003
  // Copyright 2016 Joyent, Inc.
107000
107004
 
107001
107005
  var x509 = require('./x509');
@@ -107085,7 +107089,7 @@ function write(cert, options) {
107085
107089
  return (buf.slice(0, o));
107086
107090
  }
107087
107091
 
107088
- },{"../algs":668,"../certificate":669,"../identity":686,"../key":688,"../private-key":689,"../signature":690,"../utils":692,"./pem":677,"./x509":685,"asn1":582,"assert-plus":583,"safer-buffer":650}],685:[function(require,module,exports){
107092
+ },{"../algs":668,"../certificate":669,"../identity":686,"../key":688,"../private-key":689,"../signature":690,"../utils":692,"./pem":677,"./x509":685,"asn1":582,"assert-plus":583,"safer-buffer":651}],685:[function(require,module,exports){
107089
107093
  // Copyright 2017 Joyent, Inc.
107090
107094
 
107091
107095
  module.exports = {
@@ -107839,7 +107843,7 @@ function writeBitField(setBits, bitIndex) {
107839
107843
  return (bits);
107840
107844
  }
107841
107845
 
107842
- },{"../algs":668,"../certificate":669,"../identity":686,"../key":688,"../private-key":689,"../signature":690,"../utils":692,"./pem":677,"./pkcs8":679,"asn1":582,"assert-plus":583,"safer-buffer":650}],686:[function(require,module,exports){
107846
+ },{"../algs":668,"../certificate":669,"../identity":686,"../key":688,"../private-key":689,"../signature":690,"../utils":692,"./pem":677,"./pkcs8":679,"asn1":582,"assert-plus":583,"safer-buffer":651}],686:[function(require,module,exports){
107843
107847
  // Copyright 2017 Joyent, Inc.
107844
107848
 
107845
107849
  module.exports = Identity;
@@ -108214,7 +108218,7 @@ Identity._oldVersionDetect = function (obj) {
108214
108218
  return ([1, 0]);
108215
108219
  };
108216
108220
 
108217
- },{"./algs":668,"./errors":672,"./fingerprint":673,"./signature":690,"./utils":692,"asn1":582,"assert-plus":583,"crypto":225,"safer-buffer":650,"util":418}],687:[function(require,module,exports){
108221
+ },{"./algs":668,"./errors":672,"./fingerprint":673,"./signature":690,"./utils":692,"asn1":582,"assert-plus":583,"crypto":225,"safer-buffer":651,"util":418}],687:[function(require,module,exports){
108218
108222
  // Copyright 2015 Joyent, Inc.
108219
108223
 
108220
108224
  var Key = require('./key');
@@ -108803,7 +108807,7 @@ PrivateKey._oldVersionDetect = function (obj) {
108803
108807
  return ([1, 0]);
108804
108808
  };
108805
108809
 
108806
- },{"./algs":668,"./dhe":670,"./ed-compat":671,"./errors":672,"./fingerprint":673,"./formats/auto":674,"./formats/dnssec":675,"./formats/pem":677,"./formats/pkcs1":678,"./formats/pkcs8":679,"./formats/putty":680,"./formats/rfc4253":681,"./formats/ssh-private":682,"./key":688,"./signature":690,"./utils":692,"assert-plus":583,"crypto":225,"safer-buffer":650,"tweetnacl":703,"util":418}],690:[function(require,module,exports){
108810
+ },{"./algs":668,"./dhe":670,"./ed-compat":671,"./errors":672,"./fingerprint":673,"./formats/auto":674,"./formats/dnssec":675,"./formats/pem":677,"./formats/pkcs1":678,"./formats/pkcs8":679,"./formats/putty":680,"./formats/rfc4253":681,"./formats/ssh-private":682,"./key":688,"./signature":690,"./utils":692,"assert-plus":583,"crypto":225,"safer-buffer":651,"tweetnacl":703,"util":418}],690:[function(require,module,exports){
108807
108811
  // Copyright 2015 Joyent, Inc.
108808
108812
 
108809
108813
  module.exports = Signature;
@@ -109119,7 +109123,7 @@ Signature._oldVersionDetect = function (obj) {
109119
109123
  return ([1, 0]);
109120
109124
  };
109121
109125
 
109122
- },{"./algs":668,"./errors":672,"./ssh-buffer":691,"./utils":692,"asn1":582,"assert-plus":583,"crypto":225,"safer-buffer":650}],691:[function(require,module,exports){
109126
+ },{"./algs":668,"./errors":672,"./ssh-buffer":691,"./utils":692,"asn1":582,"assert-plus":583,"crypto":225,"safer-buffer":651}],691:[function(require,module,exports){
109123
109127
  // Copyright 2015 Joyent, Inc.
109124
109128
 
109125
109129
  module.exports = SSHBuffer;
@@ -109270,7 +109274,7 @@ SSHBuffer.prototype.write = function (buf) {
109270
109274
  this._offset += buf.length;
109271
109275
  };
109272
109276
 
109273
- },{"assert-plus":583,"safer-buffer":650}],692:[function(require,module,exports){
109277
+ },{"assert-plus":583,"safer-buffer":651}],692:[function(require,module,exports){
109274
109278
  // Copyright 2015 Joyent, Inc.
109275
109279
 
109276
109280
  module.exports = {
@@ -109676,7 +109680,7 @@ function opensshCipherInfo(cipher) {
109676
109680
  return (inf);
109677
109681
  }
109678
109682
 
109679
- },{"./algs":668,"./key":688,"./private-key":689,"asn1":582,"assert-plus":583,"crypto":225,"ecc-jsbn/lib/ec":593,"jsbn":628,"safer-buffer":650,"tweetnacl":703}],693:[function(require,module,exports){
109683
+ },{"./algs":668,"./key":688,"./private-key":689,"asn1":582,"assert-plus":583,"crypto":225,"ecc-jsbn/lib/ec":593,"jsbn":629,"safer-buffer":651,"tweetnacl":703}],693:[function(require,module,exports){
109680
109684
  /*!
109681
109685
  * Copyright (c) 2015-2020, Salesforce.com, Inc.
109682
109686
  * All rights reserved.
@@ -111434,7 +111438,7 @@ exports.canonicalDomain = canonicalDomain;
111434
111438
  exports.PrefixSecurityEnum = PrefixSecurityEnum;
111435
111439
  exports.ParameterError = validators.ParameterError;
111436
111440
 
111437
- },{"./memstore":694,"./pathMatch":695,"./permuteDomain":696,"./pubsuffix-psl":697,"./store":698,"./utilHelper":699,"./validators.js":700,"./version":701,"punycode/":641,"universalify":704,"url-parse":706}],694:[function(require,module,exports){
111441
+ },{"./memstore":694,"./pathMatch":695,"./permuteDomain":696,"./pubsuffix-psl":697,"./store":698,"./utilHelper":699,"./validators.js":700,"./version":701,"punycode/":642,"universalify":704,"url-parse":706}],694:[function(require,module,exports){
111438
111442
  /*!
111439
111443
  * Copyright (c) 2015, Salesforce.com, Inc.
111440
111444
  * All rights reserved.
@@ -111883,7 +111887,7 @@ function getPublicSuffix(domain, options = {}) {
111883
111887
 
111884
111888
  exports.getPublicSuffix = getPublicSuffix;
111885
111889
 
111886
- },{"psl":640}],698:[function(require,module,exports){
111890
+ },{"psl":641}],698:[function(require,module,exports){
111887
111891
  /*!
111888
111892
  * Copyright (c) 2015, Salesforce.com, Inc.
111889
111893
  * All rights reserved.
@@ -112351,7 +112355,7 @@ if (process.env.NODE_DEBUG && /\btunnel\b/.test(process.env.NODE_DEBUG)) {
112351
112355
  exports.debug = debug // for test
112352
112356
 
112353
112357
  }).call(this)}).call(this,require('_process'))
112354
- },{"_process":347,"assert":172,"events":263,"http":406,"https":304,"net":211,"safe-buffer":649,"tls":211,"util":418}],703:[function(require,module,exports){
112358
+ },{"_process":347,"assert":172,"events":263,"http":406,"https":304,"net":211,"safe-buffer":650,"tls":211,"util":418}],703:[function(require,module,exports){
112355
112359
  (function(nacl) {
112356
112360
  'use strict';
112357
112361
 
@@ -116810,7 +116814,7 @@ Url.qs = qs;
116810
116814
  module.exports = Url;
116811
116815
 
116812
116816
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
116813
- },{"querystringify":647,"requires-port":648}],707:[function(require,module,exports){
116817
+ },{"querystringify":648,"requires-port":649}],707:[function(require,module,exports){
116814
116818
  var v1 = require('./v1');
116815
116819
  var v4 = require('./v4');
116816
116820