@sassoftware/restaf 4.5.0 → 4.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.
package/dist/restaf.js CHANGED
@@ -2187,7 +2187,7 @@ eval("/* harmony import */ var _actionTypes__WEBPACK_IMPORTED_MODULE_0__ = __web
2187
2187
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
2188
2188
 
2189
2189
  "use strict";
2190
- eval("/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ \"../../../node_modules/@babel/runtime/helpers/defineProperty.js\");\n/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _actionTypes__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../actionTypes */ \"./actionTypes/index.js\");\n/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! qs */ \"../../../node_modules/qs/lib/index.js\");\n/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(qs__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var url_parse__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! url-parse */ \"../../../node_modules/url-parse/index.js\");\n/* harmony import */ var url_parse__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(url_parse__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var _keepViyaAlive__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./keepViyaAlive */ \"./store/keepViyaAlive.js\");\n/* eslint-disable no-prototype-builtins */\n\n/*\r\n * ------------------------------------------------------------------------------------\r\n * Copyright (c) SAS Institute Inc.\r\n * Licensed under the Apache License, Version 2.0 (the \"License\");\r\n * you may not use this file except in compliance with the License.\r\n * You may obtain a copy of the License at\r\n *\r\n * http://www.apache.org/licenses/LICENSE-2.0\r\n *\r\n * Unless required by applicable law or agreed to in writing, software\r\n * distributed under the License is distributed on an \"AS IS\" BASIS,\r\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n * See the License for the specific language governing permissions and\r\n * limitations under the License.\r\n * ---------------------------------------------------------------------------------------\r\n *\r\n */\n\n\n\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default()(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\n\n\n\n\n\n/**\r\n * @description logon or connect to Viya\r\n * @module logon\r\n * @category restaf/core\r\n * @param {rafLogonPayload} See type definition for details\r\n * @returns {promise} returns a text 'done' if successful\r\n * @example\r\nlet restaf = require(\"@sassoftware/restaf\");\r\n\r\nlet logonPayload = {\r\n authType: 'password',\r\n host: process.env.VIYA_SERVER,\r\n clientID: 'sas.ec',\r\n clientSecret: '',\r\n user: 'sastest1',\r\n password: 'Go4thsas'\r\n};\r\n\r\nlet store = restaf.initStore();\r\n\r\nstore.logon(logonPayload)\r\n .then ( r => console.log(r))\r\n .catch( err => console.log(err));\r\n\r\n */\n\nvar logon = function logon(store, ipayload) {\n return new Promise(function (resolve, reject) {\n var unSubscribe;\n var action;\n var implicitLogon = false;\n var urlInfo = null;\n var payload = ipayload == null ? null : _objectSpread({}, ipayload);\n\n if (store.getState().connections.get('currentConnection') >= 0) {\n resolve('ready');\n } else {\n var logonExit = function logonExit() {\n var newState = store.getState().connections;\n var runStatus = newState.get('runStatus');\n\n if (runStatus === 'ready') {\n unSubscribe();\n\n if (ipayload != null && ipayload.keepAlive != null) {\n var interval = 300;\n var timeout = 14400;\n\n if (ipayload.timers != null) {\n var timers = ipayload.timers;\n\n if (typeof timers === 'string') {\n var opts = timers.split(',');\n interval = parseInt(opts[0]);\n timeout = parseInt(opts[1]);\n } else {\n interval = timers[0];\n timeout = timers[1];\n }\n }\n\n Object(_keepViyaAlive__WEBPACK_IMPORTED_MODULE_4__[/* default */ \"a\"])(store, ipayload.keepAlive, interval, timeout, ipayload.onTimeout);\n }\n\n resolve(runStatus);\n } else if (runStatus === 'error') {\n unSubscribe();\n reject(newState.get('statusInfo').toJS());\n }\n }; //\n // check url if not password (no window) or when payload is null\n // this allows users of restaf-server|viya-appserverjs to LOGONPAYLOAD unconditionally to logon\n //\n\n\n if (payload === null || payload.authType === _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_IMPLICIT */ \"v\"]) {\n urlInfo = parseUrlNext();\n\n if (payload !== null && urlInfo !== null) {\n payload = _objectSpread(_objectSpread({}, payload), urlInfo);\n }\n }\n\n if (payload == null) {\n if (urlInfo !== null) {\n payload = urlInfo;\n } else {\n payload = {\n host: \"\".concat(window.location.protocol, \"//\").concat(window.location.host),\n authType: _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_SERVER */ \"x\"]\n };\n }\n } // persist options in payload - currently used for pup support\n\n\n store.config.options = {};\n\n if (payload.options != null) {\n store.config.options = _objectSpread({}, payload.options);\n } // now make the final decision\n\n\n switch (payload.authType) {\n case 'code':\n case _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_TOKEN */ \"y\"]:\n case _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_SERVER */ \"x\"]:\n if (payload.host == null) {\n payload.host = \"\".concat(window.location.protocol, \"//\").concat(window.location.host);\n }\n\n break;\n\n case _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_IMPLICIT */ \"v\"]:\n if (payload.hasOwnProperty('token') === false) {\n implicitLogon = true;\n getToken(payload);\n resolve('Implicit Call');\n }\n\n break;\n\n case \"LOGOFF\":\n break;\n\n default:\n break;\n }\n\n if (!implicitLogon) {\n action = {\n type: payload.authType === 'LOGOFF' ? _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGOFF */ \"r\"] : _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON */ \"t\"],\n payload: _objectSpread({}, payload)\n };\n action.payload.sslOptions = store.config.hasOwnProperty('sslOptions') ? store.config.sslOptions : null;\n unSubscribe = store.subscribe(logonExit);\n action.storeConfig = store.config;\n\n if (payload.authType === _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_SERVER */ \"x\"]) {\n /*store.config.casProxy = false; preset to this value in initStore */\n\n /* for testing casproxy vs http - looks like cas-shared-default-http now works for all scenarios */\n\n /* if (payload.hasOwnProperty('token') === true && payload.token != null) {\r\n store.config.casProxy = (store.config.forcehttp == true) ? false : true; \r\n } \r\n */\n }\n\n action.storeConfig = store.config;\n ; // action.type = VIYA_LOGON;\n\n store.dispatch(action);\n }\n }\n });\n};\n\nfunction getToken(payload) {\n var x = \"\".concat(payload.host, \"/SASLogon/oauth/authorize?response_type=token&client_id=\").concat(payload.clientID); //noinspection JSUnresolvedVariable\n\n if (payload.redirect != null) {\n //noinspection JSUnresolvedVariable\n var redirectUri = \"\".concat(window.location.protocol, \"//\").concat(window.location.host, \"/\").concat(payload.redirect, \"?host=\").concat(payload.host);\n x = \"\".concat(x, \"&redirect_uri=\").concat(redirectUri);\n }\n\n window.location.replace(x);\n}\n\nfunction parseUrlNext() {\n if (window == null) {\n return null;\n }\n\n var url = url_parse__WEBPACK_IMPORTED_MODULE_3___default()(window.location, true);\n var loc = qs__WEBPACK_IMPORTED_MODULE_2___default.a.parse(url.hash);\n var q = url.query;\n\n if (q.host == null || loc.access_token == null) {\n return null;\n }\n\n var tokenType = 'bearer';\n\n if (loc['#token_type'] != null) {\n tokenType = loc['#token_type'];\n } else if (loc['token_type'] != null) {\n tokenType = loc['token_type'];\n }\n\n var payload = {\n host: q.host,\n authType: _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_IMPLICIT */ \"v\"],\n tokenType: tokenType,\n token: loc.access_token\n };\n return payload;\n}\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (logon);\n\n//# sourceURL=webpack://restaf/./store/logon.js?");
2190
+ eval("/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ \"../../../node_modules/@babel/runtime/helpers/defineProperty.js\");\n/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _actionTypes__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../actionTypes */ \"./actionTypes/index.js\");\n/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! qs */ \"../../../node_modules/qs/lib/index.js\");\n/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(qs__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var url_parse__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! url-parse */ \"../../../node_modules/url-parse/index.js\");\n/* harmony import */ var url_parse__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(url_parse__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var _keepViyaAlive__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./keepViyaAlive */ \"./store/keepViyaAlive.js\");\n/* eslint-disable no-prototype-builtins */\n\n/*\r\n * ------------------------------------------------------------------------------------\r\n * Copyright (c) SAS Institute Inc.\r\n * Licensed under the Apache License, Version 2.0 (the \"License\");\r\n * you may not use this file except in compliance with the License.\r\n * You may obtain a copy of the License at\r\n *\r\n * http://www.apache.org/licenses/LICENSE-2.0\r\n *\r\n * Unless required by applicable law or agreed to in writing, software\r\n * distributed under the License is distributed on an \"AS IS\" BASIS,\r\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n * See the License for the specific language governing permissions and\r\n * limitations under the License.\r\n * ---------------------------------------------------------------------------------------\r\n *\r\n */\n\n\n\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default()(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\n\n\n\n\n\n/**\r\n * @description logon or connect to Viya\r\n * @module logon\r\n * @category restaf/core\r\n * @param {rafLogonPayload} See type definition for details\r\n * @returns {promise} returns a text 'done' if successful\r\n * @example\r\nlet restaf = require(\"@sassoftware/restaf\");\r\n\r\nlet logonPayload = {\r\n authType: 'password',\r\n host: process.env.VIYA_SERVER,\r\n clientID: 'sas.ec',\r\n clientSecret: '',\r\n user: 'sastest1',\r\n password: 'Go4thsas'\r\n};\r\n\r\nlet store = restaf.initStore();\r\n\r\nstore.logon(logonPayload)\r\n .then ( r => console.log(r))\r\n .catch( err => console.log(err));\r\n\r\n */\n\nvar logon = function logon(store, ipayload) {\n return new Promise(function (resolve, reject) {\n var unSubscribe;\n var action;\n var implicitLogon = false;\n var urlInfo = null;\n var payload = ipayload == null ? null : _objectSpread({}, ipayload);\n debugger;\n\n if (store.getState().connections.get('currentConnection') >= 0) {\n resolve('ready');\n } else {\n var logonExit = function logonExit() {\n var newState = store.getState().connections;\n var runStatus = newState.get('runStatus');\n\n if (runStatus === 'ready') {\n unSubscribe();\n\n if (ipayload != null && ipayload.keepAlive != null) {\n var interval = 300;\n var timeout = 14400;\n\n if (ipayload.timers != null) {\n var timers = ipayload.timers;\n\n if (typeof timers === 'string') {\n var opts = timers.split(',');\n interval = parseInt(opts[0]);\n timeout = parseInt(opts[1]);\n } else {\n interval = timers[0];\n timeout = timers[1];\n }\n }\n\n Object(_keepViyaAlive__WEBPACK_IMPORTED_MODULE_4__[/* default */ \"a\"])(store, ipayload.keepAlive, interval, timeout, ipayload.onTimeout);\n }\n\n resolve(runStatus);\n } else if (runStatus === 'error') {\n unSubscribe();\n reject(newState.get('statusInfo').toJS());\n }\n }; //\n // check url if not password (no window) or when payload is null\n // this allows users of restaf-server|viya-appserverjs to LOGONPAYLOAD unconditionally to logon\n //\n\n\n if (payload === null || payload.authType === _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_IMPLICIT */ \"v\"]) {\n urlInfo = parseUrlNext();\n\n if (payload !== null && urlInfo !== null) {\n payload = _objectSpread(_objectSpread({}, payload), urlInfo);\n }\n }\n\n if (payload == null) {\n if (urlInfo !== null) {\n payload = urlInfo;\n } else {\n payload = {\n host: \"\".concat(window.location.protocol, \"//\").concat(window.location.host),\n authType: _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_SERVER */ \"x\"]\n };\n }\n } // persist options in payload - currently used for pup support\n\n\n store.config.options = {};\n\n if (payload.options != null) {\n store.config.options = _objectSpread({}, payload.options);\n } // now make the final decision\n\n\n switch (payload.authType) {\n case 'code':\n case _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_TOKEN */ \"y\"]:\n case _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_SERVER */ \"x\"]:\n if (payload.host == null) {\n payload.host = \"\".concat(window.location.protocol, \"//\").concat(window.location.host);\n }\n\n break;\n\n case _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_IMPLICIT */ \"v\"]:\n if (payload.hasOwnProperty('token') === false) {\n implicitLogon = true;\n getToken(payload);\n resolve('Implicit Call');\n }\n\n break;\n\n case \"LOGOFF\":\n break;\n\n default:\n break;\n }\n\n if (!implicitLogon) {\n action = {\n type: payload.authType === 'LOGOFF' ? _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGOFF */ \"r\"] : _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON */ \"t\"],\n payload: _objectSpread({}, payload)\n };\n action.payload.sslOptions = store.config.hasOwnProperty('sslOptions') ? store.config.sslOptions : null;\n unSubscribe = store.subscribe(logonExit);\n action.storeConfig = store.config;\n\n if (payload.authType === _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_SERVER */ \"x\"]) {\n /*store.config.casProxy = false; preset to this value in initStore */\n\n /* for testing casproxy vs http - looks like cas-shared-default-http now works for all scenarios */\n\n /* if (payload.hasOwnProperty('token') === true && payload.token != null) {\r\n store.config.casProxy = (store.config.forcehttp == true) ? false : true; \r\n } \r\n */\n }\n\n action.storeConfig = store.config;\n ; // action.type = VIYA_LOGON;\n\n store.dispatch(action);\n }\n }\n });\n};\n\nfunction getToken(payload) {\n var x = \"\".concat(payload.host, \"/SASLogon/oauth/authorize?response_type=token&client_id=\").concat(payload.clientID); //noinspection JSUnresolvedVariable\n\n if (payload.redirect != null) {\n //noinspection JSUnresolvedVariable\n var redirectUri = \"\".concat(window.location.protocol, \"//\").concat(window.location.host, \"/\").concat(payload.redirect, \"?host=\").concat(payload.host);\n x = \"\".concat(x, \"&redirect_uri=\").concat(redirectUri);\n }\n\n window.location.replace(x);\n}\n\nfunction parseUrlNext() {\n if (window == null) {\n return null;\n }\n\n var url = url_parse__WEBPACK_IMPORTED_MODULE_3___default()(window.location, true);\n var loc = qs__WEBPACK_IMPORTED_MODULE_2___default.a.parse(url.hash);\n var q = url.query;\n\n if (q.host == null || loc.access_token == null) {\n return null;\n }\n\n var tokenType = 'bearer';\n\n if (loc['#token_type'] != null) {\n tokenType = loc['#token_type'];\n } else if (loc['token_type'] != null) {\n tokenType = loc['token_type'];\n }\n\n var payload = {\n host: q.host,\n authType: _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_IMPLICIT */ \"v\"],\n tokenType: tokenType,\n token: loc.access_token\n };\n return payload;\n}\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (logon);\n\n//# sourceURL=webpack://restaf/./store/logon.js?");
2191
2191
 
2192
2192
  /***/ }),
2193
2193
 
package/lib/restaf.js CHANGED
@@ -1825,7 +1825,7 @@ eval("/* harmony import */ var _actionTypes__WEBPACK_IMPORTED_MODULE_0__ = __web
1825
1825
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
1826
1826
 
1827
1827
  "use strict";
1828
- eval("/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ \"../../../node_modules/@babel/runtime/helpers/defineProperty.js\");\n/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _actionTypes__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../actionTypes */ \"./actionTypes/index.js\");\n/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! qs */ \"../../../node_modules/qs/lib/index.js\");\n/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(qs__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var url_parse__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! url-parse */ \"../../../node_modules/url-parse/index.js\");\n/* harmony import */ var url_parse__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(url_parse__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var _keepViyaAlive__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./keepViyaAlive */ \"./store/keepViyaAlive.js\");\n/* eslint-disable no-prototype-builtins */\n\n/*\r\n * ------------------------------------------------------------------------------------\r\n * Copyright (c) SAS Institute Inc.\r\n * Licensed under the Apache License, Version 2.0 (the \"License\");\r\n * you may not use this file except in compliance with the License.\r\n * You may obtain a copy of the License at\r\n *\r\n * http://www.apache.org/licenses/LICENSE-2.0\r\n *\r\n * Unless required by applicable law or agreed to in writing, software\r\n * distributed under the License is distributed on an \"AS IS\" BASIS,\r\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n * See the License for the specific language governing permissions and\r\n * limitations under the License.\r\n * ---------------------------------------------------------------------------------------\r\n *\r\n */\n\n\n\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default()(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\n\n\n\n\n\n/**\r\n * @description logon or connect to Viya\r\n * @module logon\r\n * @category restaf/core\r\n * @param {rafLogonPayload} See type definition for details\r\n * @returns {promise} returns a text 'done' if successful\r\n * @example\r\nlet restaf = require(\"@sassoftware/restaf\");\r\n\r\nlet logonPayload = {\r\n authType: 'password',\r\n host: process.env.VIYA_SERVER,\r\n clientID: 'sas.ec',\r\n clientSecret: '',\r\n user: 'sastest1',\r\n password: 'Go4thsas'\r\n};\r\n\r\nlet store = restaf.initStore();\r\n\r\nstore.logon(logonPayload)\r\n .then ( r => console.log(r))\r\n .catch( err => console.log(err));\r\n\r\n */\n\nvar logon = function logon(store, ipayload) {\n return new Promise(function (resolve, reject) {\n var unSubscribe;\n var action;\n var implicitLogon = false;\n var urlInfo = null;\n var payload = ipayload == null ? null : _objectSpread({}, ipayload);\n\n if (store.getState().connections.get('currentConnection') >= 0) {\n resolve('ready');\n } else {\n var logonExit = function logonExit() {\n var newState = store.getState().connections;\n var runStatus = newState.get('runStatus');\n\n if (runStatus === 'ready') {\n unSubscribe();\n\n if (ipayload != null && ipayload.keepAlive != null) {\n var interval = 300;\n var timeout = 14400;\n\n if (ipayload.timers != null) {\n var timers = ipayload.timers;\n\n if (typeof timers === 'string') {\n var opts = timers.split(',');\n interval = parseInt(opts[0]);\n timeout = parseInt(opts[1]);\n } else {\n interval = timers[0];\n timeout = timers[1];\n }\n }\n\n Object(_keepViyaAlive__WEBPACK_IMPORTED_MODULE_4__[/* default */ \"a\"])(store, ipayload.keepAlive, interval, timeout, ipayload.onTimeout);\n }\n\n resolve(runStatus);\n } else if (runStatus === 'error') {\n unSubscribe();\n reject(newState.get('statusInfo').toJS());\n }\n }; //\n // check url if not password (no window) or when payload is null\n // this allows users of restaf-server|viya-appserverjs to LOGONPAYLOAD unconditionally to logon\n //\n\n\n if (payload === null || payload.authType === _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_IMPLICIT */ \"v\"]) {\n urlInfo = parseUrlNext();\n\n if (payload !== null && urlInfo !== null) {\n payload = _objectSpread(_objectSpread({}, payload), urlInfo);\n }\n }\n\n if (payload == null) {\n if (urlInfo !== null) {\n payload = urlInfo;\n } else {\n payload = {\n host: \"\".concat(window.location.protocol, \"//\").concat(window.location.host),\n authType: _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_SERVER */ \"x\"]\n };\n }\n } // persist options in payload - currently used for pup support\n\n\n store.config.options = {};\n\n if (payload.options != null) {\n store.config.options = _objectSpread({}, payload.options);\n } // now make the final decision\n\n\n switch (payload.authType) {\n case 'code':\n case _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_TOKEN */ \"y\"]:\n case _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_SERVER */ \"x\"]:\n if (payload.host == null) {\n payload.host = \"\".concat(window.location.protocol, \"//\").concat(window.location.host);\n }\n\n break;\n\n case _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_IMPLICIT */ \"v\"]:\n if (payload.hasOwnProperty('token') === false) {\n implicitLogon = true;\n getToken(payload);\n resolve('Implicit Call');\n }\n\n break;\n\n case \"LOGOFF\":\n break;\n\n default:\n break;\n }\n\n if (!implicitLogon) {\n action = {\n type: payload.authType === 'LOGOFF' ? _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGOFF */ \"r\"] : _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON */ \"t\"],\n payload: _objectSpread({}, payload)\n };\n action.payload.sslOptions = store.config.hasOwnProperty('sslOptions') ? store.config.sslOptions : null;\n unSubscribe = store.subscribe(logonExit);\n action.storeConfig = store.config;\n\n if (payload.authType === _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_SERVER */ \"x\"]) {\n /*store.config.casProxy = false; preset to this value in initStore */\n\n /* for testing casproxy vs http - looks like cas-shared-default-http now works for all scenarios */\n\n /* if (payload.hasOwnProperty('token') === true && payload.token != null) {\r\n store.config.casProxy = (store.config.forcehttp == true) ? false : true; \r\n } \r\n */\n }\n\n action.storeConfig = store.config;\n ; // action.type = VIYA_LOGON;\n\n store.dispatch(action);\n }\n }\n });\n};\n\nfunction getToken(payload) {\n var x = \"\".concat(payload.host, \"/SASLogon/oauth/authorize?response_type=token&client_id=\").concat(payload.clientID); //noinspection JSUnresolvedVariable\n\n if (payload.redirect != null) {\n //noinspection JSUnresolvedVariable\n var redirectUri = \"\".concat(window.location.protocol, \"//\").concat(window.location.host, \"/\").concat(payload.redirect, \"?host=\").concat(payload.host);\n x = \"\".concat(x, \"&redirect_uri=\").concat(redirectUri);\n }\n\n window.location.replace(x);\n}\n\nfunction parseUrlNext() {\n if (window == null) {\n return null;\n }\n\n var url = url_parse__WEBPACK_IMPORTED_MODULE_3___default()(window.location, true);\n var loc = qs__WEBPACK_IMPORTED_MODULE_2___default.a.parse(url.hash);\n var q = url.query;\n\n if (q.host == null || loc.access_token == null) {\n return null;\n }\n\n var tokenType = 'bearer';\n\n if (loc['#token_type'] != null) {\n tokenType = loc['#token_type'];\n } else if (loc['token_type'] != null) {\n tokenType = loc['token_type'];\n }\n\n var payload = {\n host: q.host,\n authType: _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_IMPLICIT */ \"v\"],\n tokenType: tokenType,\n token: loc.access_token\n };\n return payload;\n}\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (logon);\n\n//# sourceURL=webpack://restaf/./store/logon.js?");
1828
+ eval("/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ \"../../../node_modules/@babel/runtime/helpers/defineProperty.js\");\n/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _actionTypes__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../actionTypes */ \"./actionTypes/index.js\");\n/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! qs */ \"../../../node_modules/qs/lib/index.js\");\n/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(qs__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var url_parse__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! url-parse */ \"../../../node_modules/url-parse/index.js\");\n/* harmony import */ var url_parse__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(url_parse__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var _keepViyaAlive__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./keepViyaAlive */ \"./store/keepViyaAlive.js\");\n/* eslint-disable no-prototype-builtins */\n\n/*\r\n * ------------------------------------------------------------------------------------\r\n * Copyright (c) SAS Institute Inc.\r\n * Licensed under the Apache License, Version 2.0 (the \"License\");\r\n * you may not use this file except in compliance with the License.\r\n * You may obtain a copy of the License at\r\n *\r\n * http://www.apache.org/licenses/LICENSE-2.0\r\n *\r\n * Unless required by applicable law or agreed to in writing, software\r\n * distributed under the License is distributed on an \"AS IS\" BASIS,\r\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n * See the License for the specific language governing permissions and\r\n * limitations under the License.\r\n * ---------------------------------------------------------------------------------------\r\n *\r\n */\n\n\n\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default()(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\n\n\n\n\n\n/**\r\n * @description logon or connect to Viya\r\n * @module logon\r\n * @category restaf/core\r\n * @param {rafLogonPayload} See type definition for details\r\n * @returns {promise} returns a text 'done' if successful\r\n * @example\r\nlet restaf = require(\"@sassoftware/restaf\");\r\n\r\nlet logonPayload = {\r\n authType: 'password',\r\n host: process.env.VIYA_SERVER,\r\n clientID: 'sas.ec',\r\n clientSecret: '',\r\n user: 'sastest1',\r\n password: 'Go4thsas'\r\n};\r\n\r\nlet store = restaf.initStore();\r\n\r\nstore.logon(logonPayload)\r\n .then ( r => console.log(r))\r\n .catch( err => console.log(err));\r\n\r\n */\n\nvar logon = function logon(store, ipayload) {\n return new Promise(function (resolve, reject) {\n var unSubscribe;\n var action;\n var implicitLogon = false;\n var urlInfo = null;\n var payload = ipayload == null ? null : _objectSpread({}, ipayload);\n debugger;\n\n if (store.getState().connections.get('currentConnection') >= 0) {\n resolve('ready');\n } else {\n var logonExit = function logonExit() {\n var newState = store.getState().connections;\n var runStatus = newState.get('runStatus');\n\n if (runStatus === 'ready') {\n unSubscribe();\n\n if (ipayload != null && ipayload.keepAlive != null) {\n var interval = 300;\n var timeout = 14400;\n\n if (ipayload.timers != null) {\n var timers = ipayload.timers;\n\n if (typeof timers === 'string') {\n var opts = timers.split(',');\n interval = parseInt(opts[0]);\n timeout = parseInt(opts[1]);\n } else {\n interval = timers[0];\n timeout = timers[1];\n }\n }\n\n Object(_keepViyaAlive__WEBPACK_IMPORTED_MODULE_4__[/* default */ \"a\"])(store, ipayload.keepAlive, interval, timeout, ipayload.onTimeout);\n }\n\n resolve(runStatus);\n } else if (runStatus === 'error') {\n unSubscribe();\n reject(newState.get('statusInfo').toJS());\n }\n }; //\n // check url if not password (no window) or when payload is null\n // this allows users of restaf-server|viya-appserverjs to LOGONPAYLOAD unconditionally to logon\n //\n\n\n if (payload === null || payload.authType === _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_IMPLICIT */ \"v\"]) {\n urlInfo = parseUrlNext();\n\n if (payload !== null && urlInfo !== null) {\n payload = _objectSpread(_objectSpread({}, payload), urlInfo);\n }\n }\n\n if (payload == null) {\n if (urlInfo !== null) {\n payload = urlInfo;\n } else {\n payload = {\n host: \"\".concat(window.location.protocol, \"//\").concat(window.location.host),\n authType: _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_SERVER */ \"x\"]\n };\n }\n } // persist options in payload - currently used for pup support\n\n\n store.config.options = {};\n\n if (payload.options != null) {\n store.config.options = _objectSpread({}, payload.options);\n } // now make the final decision\n\n\n switch (payload.authType) {\n case 'code':\n case _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_TOKEN */ \"y\"]:\n case _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_SERVER */ \"x\"]:\n if (payload.host == null) {\n payload.host = \"\".concat(window.location.protocol, \"//\").concat(window.location.host);\n }\n\n break;\n\n case _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_IMPLICIT */ \"v\"]:\n if (payload.hasOwnProperty('token') === false) {\n implicitLogon = true;\n getToken(payload);\n resolve('Implicit Call');\n }\n\n break;\n\n case \"LOGOFF\":\n break;\n\n default:\n break;\n }\n\n if (!implicitLogon) {\n action = {\n type: payload.authType === 'LOGOFF' ? _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGOFF */ \"r\"] : _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON */ \"t\"],\n payload: _objectSpread({}, payload)\n };\n action.payload.sslOptions = store.config.hasOwnProperty('sslOptions') ? store.config.sslOptions : null;\n unSubscribe = store.subscribe(logonExit);\n action.storeConfig = store.config;\n\n if (payload.authType === _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_SERVER */ \"x\"]) {\n /*store.config.casProxy = false; preset to this value in initStore */\n\n /* for testing casproxy vs http - looks like cas-shared-default-http now works for all scenarios */\n\n /* if (payload.hasOwnProperty('token') === true && payload.token != null) {\r\n store.config.casProxy = (store.config.forcehttp == true) ? false : true; \r\n } \r\n */\n }\n\n action.storeConfig = store.config;\n ; // action.type = VIYA_LOGON;\n\n store.dispatch(action);\n }\n }\n });\n};\n\nfunction getToken(payload) {\n var x = \"\".concat(payload.host, \"/SASLogon/oauth/authorize?response_type=token&client_id=\").concat(payload.clientID); //noinspection JSUnresolvedVariable\n\n if (payload.redirect != null) {\n //noinspection JSUnresolvedVariable\n var redirectUri = \"\".concat(window.location.protocol, \"//\").concat(window.location.host, \"/\").concat(payload.redirect, \"?host=\").concat(payload.host);\n x = \"\".concat(x, \"&redirect_uri=\").concat(redirectUri);\n }\n\n window.location.replace(x);\n}\n\nfunction parseUrlNext() {\n if (window == null) {\n return null;\n }\n\n var url = url_parse__WEBPACK_IMPORTED_MODULE_3___default()(window.location, true);\n var loc = qs__WEBPACK_IMPORTED_MODULE_2___default.a.parse(url.hash);\n var q = url.query;\n\n if (q.host == null || loc.access_token == null) {\n return null;\n }\n\n var tokenType = 'bearer';\n\n if (loc['#token_type'] != null) {\n tokenType = loc['#token_type'];\n } else if (loc['token_type'] != null) {\n tokenType = loc['token_type'];\n }\n\n var payload = {\n host: q.host,\n authType: _actionTypes__WEBPACK_IMPORTED_MODULE_1__[/* VIYA_LOGON_IMPLICIT */ \"v\"],\n tokenType: tokenType,\n token: loc.access_token\n };\n return payload;\n}\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (logon);\n\n//# sourceURL=webpack://restaf/./store/logon.js?");
1829
1829
 
1830
1830
  /***/ }),
1831
1831
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sassoftware/restaf",
3
- "version": "4.5.0",
3
+ "version": "4.5.2",
4
4
  "description": "Library for writing SAS Viya application using REST APIs",
5
5
  "author": "Deva Kumaraswamy <deva.kumar@sas.com>",
6
6
  "license": "Apache-2.0",
@@ -38,7 +38,7 @@
38
38
  ],
39
39
  "scripts": {
40
40
  "test": "node",
41
- "build": "rimraf dist && rimraf lib && webpack --env target=node p=n --config webpack.config.js && webpack --env target=web p=n --config webpack.config.js && webpack --env target=web p=y --config webpack.config.js",
41
+ "build": "rimraf dist && rimraf lib && webpack --env target=node p=n --config webpack.config.js && webpack --env target=web p=n --config webpack.config.js && webpack --env target=web p=n --config webpack.config.js",
42
42
  "babel": "babel src --out-dir jslib",
43
43
  "pub": "npm publish --tag test --access public",
44
44
  "lint": "eslint . --fix",
@@ -1,12 +0,0 @@
1
- !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define("restaf",[],e):"object"==typeof exports?exports.restaf=e():t.restaf=e()}(window,(function(){return function(t){var e={};function r(n){if(e[n])return e[n].exports;var o=e[n]={i:n,l:!1,exports:{}};return t[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}return r.m=t,r.c=e,r.d=function(t,e,n){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)r.d(n,o,function(e){return t[e]}.bind(null,o));return n},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=48)}([function(t,e,r){var n=r(49)();t.exports=n;try{regeneratorRuntime=n}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=n:Function("r","regeneratorRuntime = r")(n)}},function(t,e){t.exports=function(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t},t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e){function r(t,e,r,n,o,i,a){try{var s=t[i](a),u=s.value}catch(t){return void r(t)}s.done?e(u):Promise.resolve(u).then(n,o)}t.exports=function(t){return function(){var e=this,n=arguments;return new Promise((function(o,i){var a=t.apply(e,n);function s(t){r(a,o,i,s,u,"next",t)}function u(t){r(a,o,i,s,u,"throw",t)}s(void 0)}))}},t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e,r){"use strict";var n=r(26),o=Object.prototype.toString;function i(t){return"[object Array]"===o.call(t)}function a(t){return void 0===t}function s(t){return null!==t&&"object"==typeof t}function u(t){if("[object Object]"!==o.call(t))return!1;var e=Object.getPrototypeOf(t);return null===e||e===Object.prototype}function c(t){return"[object Function]"===o.call(t)}function f(t,e){if(null!=t)if("object"!=typeof t&&(t=[t]),i(t))for(var r=0,n=t.length;r<n;r++)e.call(null,t[r],r,t);else for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&e.call(null,t[o],o,t)}t.exports={isArray:i,isArrayBuffer:function(t){return"[object ArrayBuffer]"===o.call(t)},isBuffer:function(t){return null!==t&&!a(t)&&null!==t.constructor&&!a(t.constructor)&&"function"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)},isFormData:function(t){return"undefined"!=typeof FormData&&t instanceof FormData},isArrayBufferView:function(t){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer&&t.buffer instanceof ArrayBuffer},isString:function(t){return"string"==typeof t},isNumber:function(t){return"number"==typeof t},isObject:s,isPlainObject:u,isUndefined:a,isDate:function(t){return"[object Date]"===o.call(t)},isFile:function(t){return"[object File]"===o.call(t)},isBlob:function(t){return"[object Blob]"===o.call(t)},isFunction:c,isStream:function(t){return s(t)&&c(t.pipe)},isURLSearchParams:function(t){return"undefined"!=typeof URLSearchParams&&t instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&("undefined"!=typeof window&&"undefined"!=typeof document)},forEach:f,merge:function t(){var e={};function r(r,n){u(e[n])&&u(r)?e[n]=t(e[n],r):u(r)?e[n]=t({},r):i(r)?e[n]=r.slice():e[n]=r}for(var n=0,o=arguments.length;n<o;n++)f(arguments[n],r);return e},extend:function(t,e,r){return f(e,(function(e,o){t[o]=r&&"function"==typeof e?n(e,r):e})),t},trim:function(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")},stripBOM:function(t){return 65279===t.charCodeAt(0)&&(t=t.slice(1)),t}}},function(t,e,r){var n=r(104),o=r(105),i=r(106),a=r(107);t.exports=function(t){return n(t)||o(t)||i(t)||a()},t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e){function r(e){return t.exports=r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},t.exports.__esModule=!0,t.exports.default=t.exports,r(e)}t.exports=r,t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e,r){"use strict";(function(t){r.d(e,"c",(function(){return v})),r.d(e,"a",(function(){return O})),r.d(e,"b",(function(){return g}));var n=r(5),o=r.n(n),i=r(1),a=r.n(i),s=r(12),u=r.n(s),c=r(17),f=r.n(c),l=r(24),p=r(18),h=r.n(p);function d(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function y(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?d(Object(r),!0).forEach((function(e){a()(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):d(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function v(e){var r=e.link,n=t.from(e.clientID+":"+e.clientSecret).toString("base64");n="Basic "+n;var o=m(e,r.href),i="".concat(o).concat(r.href);return b({method:r.method,url:i,headers:{Accept:r.responseType,"Content-Type":r.type,Authorization:n},withCredentials:!1,data:{grant_type:"password",username:e.user,password:e.password},validateStatus:function(t){return t>=200&&t<300},transformResponse:function(t){return t},transformRequest:function(t){return f.a.stringify(t)}},e,e)}function g(t){var e=t.link,r=t.logonInfo,n=y({},e),i=t.hasOwnProperty("payload")?t.payload:null,a=null,s=null,u=null,c=null,f=null;null!==i&&(f=_(i,"action"),a=_(i,"qs"),s=_(i,"data"),u=_(i,"headers"),c=_(i,"xsrf"));var l=m(r,n.href),p="".concat(l).concat(n.href);"upload"===(f=null!=f?f.toLowerCase():null)&&(f="table.upload"),null!==f&&(p="".concat(p,"/").concat(f)),n.hasOwnProperty("customHandling")&&null!==f&&"table.upload"===f&&(n.method="PUT",n.type="application/octet-stream",n.responseType="application/json");var h={method:n.method,url:p,transformResponse:function(t){return t},validateStatus:function(t){return 302===t||304===t||t>=200&&t<300}};null!==r.token?h.headers={Authorization:r.tokenType+" "+r.token}:(h.headers={},h.withCredentials=null==t.withCredentials||t.withCredentials);var d=w(n.type);if(n.hasOwnProperty("responseType")?(null!==d&&(h.headers["Content-Type"]=d),h.headers.Accept=w(n.responseType)):null!==d&&(h.headers.Accept=d,"PUT"!==n.method&&"POST"!==n.method&&"PATCH"!==n.method||(h.headers["Content-Type"]=d)),null!==u)for(var v in u)"json-parameters"===v.toLowerCase()?h.headers[v]="object"===o()(u[v])?JSON.stringify(u[v]):u[v]:h.headers[v]=u[v];if(null!==c){var g=c["x-csrf-header"];h.xsrfHeaderName=g,h.headers[g]=c["x-csrf-token"]}null!==a&&(h.params=y({},a)),h.data=null===s?{}:s,h.maxContentLength=20126512;var O=t.storeConfig.httpOptions;if(null!=O)for(var S in O)h[S]=O[S];return b(h,t,r)}function m(t,e){if(null==t.ns)return t.host;var r=e.split("/")[1];return"".concat(t.protocol).concat(r,".storeConfig.ns.svc.cluster.local")}function b(t,e,r){if("https://"===r.protocol){var n=null!=r.sslOptions?r.sslOptions:{},i=new h.a.Agent(n);t.httpsAgent=i}return new Promise((function(r,n){u()(t).then((function(t){var i;(i=t.data,new Promise((function(t,e){if("object"===o()(i))t(i);else{var r=i.replace(/\r?\n|\r/g," ");try{t(JSON.parse(r))}catch(e){t(i)}}}))).then((function(o){e.data=null,t.data={results:o,iconfig:Object.assign({},e)},o.hasOwnProperty("errorCode")?(t.status=t.data.results.httpStatusCode,t.statusText="errorCode: ".concat(t.data.results.errorCode),n({response:t})):r(Object(l.a)(t))})).catch((function(){e.data=null,t.data={results:t.data,iconfig:Object.assign({},e)},r(Object(l.a)(t))}))})).catch((function(t){n(t)}))}))}function _(t,e){for(var r=0,n=Object.keys(t);r<n.length;r++){var o=n[r];if(o.toUpperCase()===e.toUpperCase())return t[o]}return null}function w(t){var e=t;return null==e?e=null:-1!==e.indexOf("application/vnd")&&-1===e.indexOf("+json")&&(e+="+json"),e}function O(t){return u()(t.payload)}u.a.interceptors.response.use((function(t){return t}),(function(t){return Promise.reject(t)}))}).call(this,r(7).Buffer)},function(t,e,r){"use strict";
2
- /*!
3
- * The buffer module from node.js, for the browser.
4
- *
5
- * @author Feross Aboukhadijeh <http://feross.org>
6
- * @license MIT
7
- */var n=r(50),o=r(51),i=r(25);function a(){return u.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function s(t,e){if(a()<e)throw new RangeError("Invalid typed array length");return u.TYPED_ARRAY_SUPPORT?(t=new Uint8Array(e)).__proto__=u.prototype:(null===t&&(t=new u(e)),t.length=e),t}function u(t,e,r){if(!(u.TYPED_ARRAY_SUPPORT||this instanceof u))return new u(t,e,r);if("number"==typeof t){if("string"==typeof e)throw new Error("If encoding is specified then the first argument must be a string");return l(this,t)}return c(this,t,e,r)}function c(t,e,r,n){if("number"==typeof e)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&e instanceof ArrayBuffer?function(t,e,r,n){if(e.byteLength,r<0||e.byteLength<r)throw new RangeError("'offset' is out of bounds");if(e.byteLength<r+(n||0))throw new RangeError("'length' is out of bounds");e=void 0===r&&void 0===n?new Uint8Array(e):void 0===n?new Uint8Array(e,r):new Uint8Array(e,r,n);u.TYPED_ARRAY_SUPPORT?(t=e).__proto__=u.prototype:t=p(t,e);return t}(t,e,r,n):"string"==typeof e?function(t,e,r){"string"==typeof r&&""!==r||(r="utf8");if(!u.isEncoding(r))throw new TypeError('"encoding" must be a valid string encoding');var n=0|d(e,r),o=(t=s(t,n)).write(e,r);o!==n&&(t=t.slice(0,o));return t}(t,e,r):function(t,e){if(u.isBuffer(e)){var r=0|h(e.length);return 0===(t=s(t,r)).length||e.copy(t,0,0,r),t}if(e){if("undefined"!=typeof ArrayBuffer&&e.buffer instanceof ArrayBuffer||"length"in e)return"number"!=typeof e.length||(n=e.length)!=n?s(t,0):p(t,e);if("Buffer"===e.type&&i(e.data))return p(t,e.data)}var n;throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}(t,e)}function f(t){if("number"!=typeof t)throw new TypeError('"size" argument must be a number');if(t<0)throw new RangeError('"size" argument must not be negative')}function l(t,e){if(f(e),t=s(t,e<0?0:0|h(e)),!u.TYPED_ARRAY_SUPPORT)for(var r=0;r<e;++r)t[r]=0;return t}function p(t,e){var r=e.length<0?0:0|h(e.length);t=s(t,r);for(var n=0;n<r;n+=1)t[n]=255&e[n];return t}function h(t){if(t>=a())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+a().toString(16)+" bytes");return 0|t}function d(t,e){if(u.isBuffer(t))return t.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(t)||t instanceof ArrayBuffer))return t.byteLength;"string"!=typeof t&&(t=""+t);var r=t.length;if(0===r)return 0;for(var n=!1;;)switch(e){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":case void 0:return q(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return z(t).length;default:if(n)return q(t).length;e=(""+e).toLowerCase(),n=!0}}function y(t,e,r){var n=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return"";if((r>>>=0)<=(e>>>=0))return"";for(t||(t="utf8");;)switch(t){case"hex":return k(this,e,r);case"utf8":case"utf-8":return x(this,e,r);case"ascii":return A(this,e,r);case"latin1":case"binary":return P(this,e,r);case"base64":return E(this,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return T(this,e,r);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=!0}}function v(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function g(t,e,r,n,o){if(0===t.length)return-1;if("string"==typeof r?(n=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),r=+r,isNaN(r)&&(r=o?0:t.length-1),r<0&&(r=t.length+r),r>=t.length){if(o)return-1;r=t.length-1}else if(r<0){if(!o)return-1;r=0}if("string"==typeof e&&(e=u.from(e,n)),u.isBuffer(e))return 0===e.length?-1:m(t,e,r,n,o);if("number"==typeof e)return e&=255,u.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(t,e,r):Uint8Array.prototype.lastIndexOf.call(t,e,r):m(t,[e],r,n,o);throw new TypeError("val must be string, number or Buffer")}function m(t,e,r,n,o){var i,a=1,s=t.length,u=e.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(t.length<2||e.length<2)return-1;a=2,s/=2,u/=2,r/=2}function c(t,e){return 1===a?t[e]:t.readUInt16BE(e*a)}if(o){var f=-1;for(i=r;i<s;i++)if(c(t,i)===c(e,-1===f?0:i-f)){if(-1===f&&(f=i),i-f+1===u)return f*a}else-1!==f&&(i-=i-f),f=-1}else for(r+u>s&&(r=s-u),i=r;i>=0;i--){for(var l=!0,p=0;p<u;p++)if(c(t,i+p)!==c(e,p)){l=!1;break}if(l)return i}return-1}function b(t,e,r,n){r=Number(r)||0;var o=t.length-r;n?(n=Number(n))>o&&(n=o):n=o;var i=e.length;if(i%2!=0)throw new TypeError("Invalid hex string");n>i/2&&(n=i/2);for(var a=0;a<n;++a){var s=parseInt(e.substr(2*a,2),16);if(isNaN(s))return a;t[r+a]=s}return a}function _(t,e,r,n){return F(q(e,t.length-r),t,r,n)}function w(t,e,r,n){return F(function(t){for(var e=[],r=0;r<t.length;++r)e.push(255&t.charCodeAt(r));return e}(e),t,r,n)}function O(t,e,r,n){return w(t,e,r,n)}function S(t,e,r,n){return F(z(e),t,r,n)}function j(t,e,r,n){return F(function(t,e){for(var r,n,o,i=[],a=0;a<t.length&&!((e-=2)<0);++a)r=t.charCodeAt(a),n=r>>8,o=r%256,i.push(o),i.push(n);return i}(e,t.length-r),t,r,n)}function E(t,e,r){return 0===e&&r===t.length?n.fromByteArray(t):n.fromByteArray(t.slice(e,r))}function x(t,e,r){r=Math.min(t.length,r);for(var n=[],o=e;o<r;){var i,a,s,u,c=t[o],f=null,l=c>239?4:c>223?3:c>191?2:1;if(o+l<=r)switch(l){case 1:c<128&&(f=c);break;case 2:128==(192&(i=t[o+1]))&&(u=(31&c)<<6|63&i)>127&&(f=u);break;case 3:i=t[o+1],a=t[o+2],128==(192&i)&&128==(192&a)&&(u=(15&c)<<12|(63&i)<<6|63&a)>2047&&(u<55296||u>57343)&&(f=u);break;case 4:i=t[o+1],a=t[o+2],s=t[o+3],128==(192&i)&&128==(192&a)&&128==(192&s)&&(u=(15&c)<<18|(63&i)<<12|(63&a)<<6|63&s)>65535&&u<1114112&&(f=u)}null===f?(f=65533,l=1):f>65535&&(f-=65536,n.push(f>>>10&1023|55296),f=56320|1023&f),n.push(f),o+=l}return function(t){var e=t.length;if(e<=4096)return String.fromCharCode.apply(String,t);var r="",n=0;for(;n<e;)r+=String.fromCharCode.apply(String,t.slice(n,n+=4096));return r}(n)}e.Buffer=u,e.SlowBuffer=function(t){+t!=t&&(t=0);return u.alloc(+t)},e.INSPECT_MAX_BYTES=50,u.TYPED_ARRAY_SUPPORT=void 0!==Object({}).TYPED_ARRAY_SUPPORT?Object({}).TYPED_ARRAY_SUPPORT:function(){try{var t=new Uint8Array(1);return t.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===t.foo()&&"function"==typeof t.subarray&&0===t.subarray(1,1).byteLength}catch(t){return!1}}(),e.kMaxLength=a(),u.poolSize=8192,u._augment=function(t){return t.__proto__=u.prototype,t},u.from=function(t,e,r){return c(null,t,e,r)},u.TYPED_ARRAY_SUPPORT&&(u.prototype.__proto__=Uint8Array.prototype,u.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&u[Symbol.species]===u&&Object.defineProperty(u,Symbol.species,{value:null,configurable:!0})),u.alloc=function(t,e,r){return function(t,e,r,n){return f(e),e<=0?s(t,e):void 0!==r?"string"==typeof n?s(t,e).fill(r,n):s(t,e).fill(r):s(t,e)}(null,t,e,r)},u.allocUnsafe=function(t){return l(null,t)},u.allocUnsafeSlow=function(t){return l(null,t)},u.isBuffer=function(t){return!(null==t||!t._isBuffer)},u.compare=function(t,e){if(!u.isBuffer(t)||!u.isBuffer(e))throw new TypeError("Arguments must be Buffers");if(t===e)return 0;for(var r=t.length,n=e.length,o=0,i=Math.min(r,n);o<i;++o)if(t[o]!==e[o]){r=t[o],n=e[o];break}return r<n?-1:n<r?1:0},u.isEncoding=function(t){switch(String(t).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},u.concat=function(t,e){if(!i(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return u.alloc(0);var r;if(void 0===e)for(e=0,r=0;r<t.length;++r)e+=t[r].length;var n=u.allocUnsafe(e),o=0;for(r=0;r<t.length;++r){var a=t[r];if(!u.isBuffer(a))throw new TypeError('"list" argument must be an Array of Buffers');a.copy(n,o),o+=a.length}return n},u.byteLength=d,u.prototype._isBuffer=!0,u.prototype.swap16=function(){var t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var e=0;e<t;e+=2)v(this,e,e+1);return this},u.prototype.swap32=function(){var t=this.length;if(t%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var e=0;e<t;e+=4)v(this,e,e+3),v(this,e+1,e+2);return this},u.prototype.swap64=function(){var t=this.length;if(t%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var e=0;e<t;e+=8)v(this,e,e+7),v(this,e+1,e+6),v(this,e+2,e+5),v(this,e+3,e+4);return this},u.prototype.toString=function(){var t=0|this.length;return 0===t?"":0===arguments.length?x(this,0,t):y.apply(this,arguments)},u.prototype.equals=function(t){if(!u.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===u.compare(this,t)},u.prototype.inspect=function(){var t="",r=e.INSPECT_MAX_BYTES;return this.length>0&&(t=this.toString("hex",0,r).match(/.{2}/g).join(" "),this.length>r&&(t+=" ... ")),"<Buffer "+t+">"},u.prototype.compare=function(t,e,r,n,o){if(!u.isBuffer(t))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===r&&(r=t?t.length:0),void 0===n&&(n=0),void 0===o&&(o=this.length),e<0||r>t.length||n<0||o>this.length)throw new RangeError("out of range index");if(n>=o&&e>=r)return 0;if(n>=o)return-1;if(e>=r)return 1;if(this===t)return 0;for(var i=(o>>>=0)-(n>>>=0),a=(r>>>=0)-(e>>>=0),s=Math.min(i,a),c=this.slice(n,o),f=t.slice(e,r),l=0;l<s;++l)if(c[l]!==f[l]){i=c[l],a=f[l];break}return i<a?-1:a<i?1:0},u.prototype.includes=function(t,e,r){return-1!==this.indexOf(t,e,r)},u.prototype.indexOf=function(t,e,r){return g(this,t,e,r,!0)},u.prototype.lastIndexOf=function(t,e,r){return g(this,t,e,r,!1)},u.prototype.write=function(t,e,r,n){if(void 0===e)n="utf8",r=this.length,e=0;else if(void 0===r&&"string"==typeof e)n=e,r=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e|=0,isFinite(r)?(r|=0,void 0===n&&(n="utf8")):(n=r,r=void 0)}var o=this.length-e;if((void 0===r||r>o)&&(r=o),t.length>0&&(r<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var i=!1;;)switch(n){case"hex":return b(this,t,e,r);case"utf8":case"utf-8":return _(this,t,e,r);case"ascii":return w(this,t,e,r);case"latin1":case"binary":return O(this,t,e,r);case"base64":return S(this,t,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return j(this,t,e,r);default:if(i)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),i=!0}},u.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function A(t,e,r){var n="";r=Math.min(t.length,r);for(var o=e;o<r;++o)n+=String.fromCharCode(127&t[o]);return n}function P(t,e,r){var n="";r=Math.min(t.length,r);for(var o=e;o<r;++o)n+=String.fromCharCode(t[o]);return n}function k(t,e,r){var n=t.length;(!e||e<0)&&(e=0),(!r||r<0||r>n)&&(r=n);for(var o="",i=e;i<r;++i)o+=B(t[i]);return o}function T(t,e,r){for(var n=t.slice(e,r),o="",i=0;i<n.length;i+=2)o+=String.fromCharCode(n[i]+256*n[i+1]);return o}function I(t,e,r){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+e>r)throw new RangeError("Trying to access beyond buffer length")}function R(t,e,r,n,o,i){if(!u.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>o||e<i)throw new RangeError('"value" argument is out of bounds');if(r+n>t.length)throw new RangeError("Index out of range")}function C(t,e,r,n){e<0&&(e=65535+e+1);for(var o=0,i=Math.min(t.length-r,2);o<i;++o)t[r+o]=(e&255<<8*(n?o:1-o))>>>8*(n?o:1-o)}function L(t,e,r,n){e<0&&(e=4294967295+e+1);for(var o=0,i=Math.min(t.length-r,4);o<i;++o)t[r+o]=e>>>8*(n?o:3-o)&255}function M(t,e,r,n,o,i){if(r+n>t.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function D(t,e,r,n,i){return i||M(t,0,r,4),o.write(t,e,r,n,23,4),r+4}function N(t,e,r,n,i){return i||M(t,0,r,8),o.write(t,e,r,n,52,8),r+8}u.prototype.slice=function(t,e){var r,n=this.length;if((t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(e=void 0===e?n:~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),e<t&&(e=t),u.TYPED_ARRAY_SUPPORT)(r=this.subarray(t,e)).__proto__=u.prototype;else{var o=e-t;r=new u(o,void 0);for(var i=0;i<o;++i)r[i]=this[i+t]}return r},u.prototype.readUIntLE=function(t,e,r){t|=0,e|=0,r||I(t,e,this.length);for(var n=this[t],o=1,i=0;++i<e&&(o*=256);)n+=this[t+i]*o;return n},u.prototype.readUIntBE=function(t,e,r){t|=0,e|=0,r||I(t,e,this.length);for(var n=this[t+--e],o=1;e>0&&(o*=256);)n+=this[t+--e]*o;return n},u.prototype.readUInt8=function(t,e){return e||I(t,1,this.length),this[t]},u.prototype.readUInt16LE=function(t,e){return e||I(t,2,this.length),this[t]|this[t+1]<<8},u.prototype.readUInt16BE=function(t,e){return e||I(t,2,this.length),this[t]<<8|this[t+1]},u.prototype.readUInt32LE=function(t,e){return e||I(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},u.prototype.readUInt32BE=function(t,e){return e||I(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},u.prototype.readIntLE=function(t,e,r){t|=0,e|=0,r||I(t,e,this.length);for(var n=this[t],o=1,i=0;++i<e&&(o*=256);)n+=this[t+i]*o;return n>=(o*=128)&&(n-=Math.pow(2,8*e)),n},u.prototype.readIntBE=function(t,e,r){t|=0,e|=0,r||I(t,e,this.length);for(var n=e,o=1,i=this[t+--n];n>0&&(o*=256);)i+=this[t+--n]*o;return i>=(o*=128)&&(i-=Math.pow(2,8*e)),i},u.prototype.readInt8=function(t,e){return e||I(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},u.prototype.readInt16LE=function(t,e){e||I(t,2,this.length);var r=this[t]|this[t+1]<<8;return 32768&r?4294901760|r:r},u.prototype.readInt16BE=function(t,e){e||I(t,2,this.length);var r=this[t+1]|this[t]<<8;return 32768&r?4294901760|r:r},u.prototype.readInt32LE=function(t,e){return e||I(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},u.prototype.readInt32BE=function(t,e){return e||I(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},u.prototype.readFloatLE=function(t,e){return e||I(t,4,this.length),o.read(this,t,!0,23,4)},u.prototype.readFloatBE=function(t,e){return e||I(t,4,this.length),o.read(this,t,!1,23,4)},u.prototype.readDoubleLE=function(t,e){return e||I(t,8,this.length),o.read(this,t,!0,52,8)},u.prototype.readDoubleBE=function(t,e){return e||I(t,8,this.length),o.read(this,t,!1,52,8)},u.prototype.writeUIntLE=function(t,e,r,n){(t=+t,e|=0,r|=0,n)||R(this,t,e,r,Math.pow(2,8*r)-1,0);var o=1,i=0;for(this[e]=255&t;++i<r&&(o*=256);)this[e+i]=t/o&255;return e+r},u.prototype.writeUIntBE=function(t,e,r,n){(t=+t,e|=0,r|=0,n)||R(this,t,e,r,Math.pow(2,8*r)-1,0);var o=r-1,i=1;for(this[e+o]=255&t;--o>=0&&(i*=256);)this[e+o]=t/i&255;return e+r},u.prototype.writeUInt8=function(t,e,r){return t=+t,e|=0,r||R(this,t,e,1,255,0),u.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},u.prototype.writeUInt16LE=function(t,e,r){return t=+t,e|=0,r||R(this,t,e,2,65535,0),u.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):C(this,t,e,!0),e+2},u.prototype.writeUInt16BE=function(t,e,r){return t=+t,e|=0,r||R(this,t,e,2,65535,0),u.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):C(this,t,e,!1),e+2},u.prototype.writeUInt32LE=function(t,e,r){return t=+t,e|=0,r||R(this,t,e,4,4294967295,0),u.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):L(this,t,e,!0),e+4},u.prototype.writeUInt32BE=function(t,e,r){return t=+t,e|=0,r||R(this,t,e,4,4294967295,0),u.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):L(this,t,e,!1),e+4},u.prototype.writeIntLE=function(t,e,r,n){if(t=+t,e|=0,!n){var o=Math.pow(2,8*r-1);R(this,t,e,r,o-1,-o)}var i=0,a=1,s=0;for(this[e]=255&t;++i<r&&(a*=256);)t<0&&0===s&&0!==this[e+i-1]&&(s=1),this[e+i]=(t/a>>0)-s&255;return e+r},u.prototype.writeIntBE=function(t,e,r,n){if(t=+t,e|=0,!n){var o=Math.pow(2,8*r-1);R(this,t,e,r,o-1,-o)}var i=r-1,a=1,s=0;for(this[e+i]=255&t;--i>=0&&(a*=256);)t<0&&0===s&&0!==this[e+i+1]&&(s=1),this[e+i]=(t/a>>0)-s&255;return e+r},u.prototype.writeInt8=function(t,e,r){return t=+t,e|=0,r||R(this,t,e,1,127,-128),u.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[e]=255&t,e+1},u.prototype.writeInt16LE=function(t,e,r){return t=+t,e|=0,r||R(this,t,e,2,32767,-32768),u.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):C(this,t,e,!0),e+2},u.prototype.writeInt16BE=function(t,e,r){return t=+t,e|=0,r||R(this,t,e,2,32767,-32768),u.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):C(this,t,e,!1),e+2},u.prototype.writeInt32LE=function(t,e,r){return t=+t,e|=0,r||R(this,t,e,4,2147483647,-2147483648),u.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):L(this,t,e,!0),e+4},u.prototype.writeInt32BE=function(t,e,r){return t=+t,e|=0,r||R(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),u.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):L(this,t,e,!1),e+4},u.prototype.writeFloatLE=function(t,e,r){return D(this,t,e,!0,r)},u.prototype.writeFloatBE=function(t,e,r){return D(this,t,e,!1,r)},u.prototype.writeDoubleLE=function(t,e,r){return N(this,t,e,!0,r)},u.prototype.writeDoubleBE=function(t,e,r){return N(this,t,e,!1,r)},u.prototype.copy=function(t,e,r,n){if(r||(r=0),n||0===n||(n=this.length),e>=t.length&&(e=t.length),e||(e=0),n>0&&n<r&&(n=r),n===r)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(r<0||r>=this.length)throw new RangeError("sourceStart out of bounds");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),t.length-e<n-r&&(n=t.length-e+r);var o,i=n-r;if(this===t&&r<e&&e<n)for(o=i-1;o>=0;--o)t[o+e]=this[o+r];else if(i<1e3||!u.TYPED_ARRAY_SUPPORT)for(o=0;o<i;++o)t[o+e]=this[o+r];else Uint8Array.prototype.set.call(t,this.subarray(r,r+i),e);return i},u.prototype.fill=function(t,e,r,n){if("string"==typeof t){if("string"==typeof e?(n=e,e=0,r=this.length):"string"==typeof r&&(n=r,r=this.length),1===t.length){var o=t.charCodeAt(0);o<256&&(t=o)}if(void 0!==n&&"string"!=typeof n)throw new TypeError("encoding must be a string");if("string"==typeof n&&!u.isEncoding(n))throw new TypeError("Unknown encoding: "+n)}else"number"==typeof t&&(t&=255);if(e<0||this.length<e||this.length<r)throw new RangeError("Out of range index");if(r<=e)return this;var i;if(e>>>=0,r=void 0===r?this.length:r>>>0,t||(t=0),"number"==typeof t)for(i=e;i<r;++i)this[i]=t;else{var a=u.isBuffer(t)?t:q(new u(t,n).toString()),s=a.length;for(i=0;i<r-e;++i)this[i+e]=a[i%s]}return this};var U=/[^+\/0-9A-Za-z-_]/g;function B(t){return t<16?"0"+t.toString(16):t.toString(16)}function q(t,e){var r;e=e||1/0;for(var n=t.length,o=null,i=[],a=0;a<n;++a){if((r=t.charCodeAt(a))>55295&&r<57344){if(!o){if(r>56319){(e-=3)>-1&&i.push(239,191,189);continue}if(a+1===n){(e-=3)>-1&&i.push(239,191,189);continue}o=r;continue}if(r<56320){(e-=3)>-1&&i.push(239,191,189),o=r;continue}r=65536+(o-55296<<10|r-56320)}else o&&(e-=3)>-1&&i.push(239,191,189);if(o=null,r<128){if((e-=1)<0)break;i.push(r)}else if(r<2048){if((e-=2)<0)break;i.push(r>>6|192,63&r|128)}else if(r<65536){if((e-=3)<0)break;i.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;i.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return i}function z(t){return n.toByteArray(function(t){if((t=function(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")}(t).replace(U,"")).length<2)return"";for(;t.length%4!=0;)t+="=";return t}(t))}function F(t,e,r,n){for(var o=0;o<n&&!(o+r>=e.length||o>=t.length);++o)e[o+r]=t[o];return o}},function(t,e){var r,n,o=t.exports={};function i(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(t){if(r===setTimeout)return setTimeout(t,0);if((r===i||!r)&&setTimeout)return r=setTimeout,setTimeout(t,0);try{return r(t,0)}catch(e){try{return r.call(null,t,0)}catch(e){return r.call(this,t,0)}}}!function(){try{r="function"==typeof setTimeout?setTimeout:i}catch(t){r=i}try{n="function"==typeof clearTimeout?clearTimeout:a}catch(t){n=a}}();var u,c=[],f=!1,l=-1;function p(){f&&u&&(f=!1,u.length?c=u.concat(c):l=-1,c.length&&h())}function h(){if(!f){var t=s(p);f=!0;for(var e=c.length;e;){for(u=c,c=[];++l<e;)u&&u[l].run();l=-1,e=c.length}u=null,f=!1,function(t){if(n===clearTimeout)return clearTimeout(t);if((n===a||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(t);try{n(t)}catch(e){try{return n.call(null,t)}catch(e){return n.call(this,t)}}}(t)}}function d(t,e){this.fun=t,this.array=e}function y(){}o.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)e[r-1]=arguments[r];c.push(new d(t,e)),1!==c.length||f||s(h)},d.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=y,o.addListener=y,o.once=y,o.off=y,o.removeListener=y,o.removeAllListeners=y,o.emit=y,o.prependListener=y,o.prependOnceListener=y,o.listeners=function(t){return[]},o.binding=function(t){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(t){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},function(t,e){"function"==typeof Object.create?t.exports=function(t,e){e&&(t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}))}:t.exports=function(t,e){if(e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}}},function(t,e,r){"use strict";r.r(e),r.d(e,"Collection",(function(){return m})),r.d(e,"Iterable",(function(){return fn})),r.d(e,"List",(function(){return Ke})),r.d(e,"Map",(function(){return je})),r.d(e,"OrderedMap",(function(){return sr})),r.d(e,"OrderedSet",(function(){return Yr})),r.d(e,"Range",(function(){return kr})),r.d(e,"Record",(function(){return Xr})),r.d(e,"Repeat",(function(){return on})),r.d(e,"Seq",(function(){return U})),r.d(e,"Set",(function(){return Or})),r.d(e,"Stack",(function(){return pr})),r.d(e,"fromJS",(function(){return an})),r.d(e,"get",(function(){return Jt})),r.d(e,"getIn",(function(){return Tr})),r.d(e,"has",(function(){return Vt})),r.d(e,"hasIn",(function(){return Rr})),r.d(e,"hash",(function(){return nt})),r.d(e,"is",(function(){return Z})),r.d(e,"isAssociative",(function(){return g})),r.d(e,"isCollection",(function(){return d})),r.d(e,"isImmutable",(function(){return j})),r.d(e,"isIndexed",(function(){return v})),r.d(e,"isKeyed",(function(){return y})),r.d(e,"isList",(function(){return Ye})),r.d(e,"isMap",(function(){return $})),r.d(e,"isOrdered",(function(){return x})),r.d(e,"isOrderedMap",(function(){return X})),r.d(e,"isOrderedSet",(function(){return mr})),r.d(e,"isPlainObject",(function(){return Gt})),r.d(e,"isRecord",(function(){return S})),r.d(e,"isSeq",(function(){return O})),r.d(e,"isSet",(function(){return gr})),r.d(e,"isStack",(function(){return lr})),r.d(e,"isValueObject",(function(){return Q})),r.d(e,"merge",(function(){return fe})),r.d(e,"mergeDeep",(function(){return pe})),r.d(e,"mergeDeepWith",(function(){return he})),r.d(e,"mergeWith",(function(){return le})),r.d(e,"remove",(function(){return Xt})),r.d(e,"removeIn",(function(){return re})),r.d(e,"set",(function(){return Qt})),r.d(e,"setIn",(function(){return te})),r.d(e,"update",(function(){return oe})),r.d(e,"updateIn",(function(){return Zt})),r.d(e,"version",(function(){return un}));var n={};function o(t){t&&(t.value=!0)}function i(){}function a(t){return void 0===t.size&&(t.size=t.__iterate(u)),t.size}function s(t,e){if("number"!=typeof e){var r=e>>>0;if(""+r!==e||4294967295===r)return NaN;e=r}return e<0?a(t)+e:e}function u(){return!0}function c(t,e,r){return(0===t&&!h(t)||void 0!==r&&t<=-r)&&(void 0===e||void 0!==r&&e>=r)}function f(t,e){return p(t,e,0)}function l(t,e){return p(t,e,e)}function p(t,e,r){return void 0===t?r:h(t)?e===1/0?e:0|Math.max(0,e+t):void 0===e||e===t?t:0|Math.min(e,t)}function h(t){return t<0||0===t&&1/t==-1/0}function d(t){return Boolean(t&&t["@@__IMMUTABLE_ITERABLE__@@"])}function y(t){return Boolean(t&&t["@@__IMMUTABLE_KEYED__@@"])}function v(t){return Boolean(t&&t["@@__IMMUTABLE_INDEXED__@@"])}function g(t){return y(t)||v(t)}var m=function(t){return d(t)?t:U(t)},b=function(t){function e(t){return y(t)?t:B(t)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(m),_=function(t){function e(t){return v(t)?t:q(t)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(m),w=function(t){function e(t){return d(t)&&!g(t)?t:z(t)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(m);m.Keyed=b,m.Indexed=_,m.Set=w;function O(t){return Boolean(t&&t["@@__IMMUTABLE_SEQ__@@"])}function S(t){return Boolean(t&&t["@@__IMMUTABLE_RECORD__@@"])}function j(t){return d(t)||S(t)}var E="@@__IMMUTABLE_ORDERED__@@";function x(t){return Boolean(t&&t[E])}var A="function"==typeof Symbol&&Symbol.iterator,P=A||"@@iterator",k=function(t){this.next=t};function T(t,e,r,n){var o=0===t?e:1===t?r:[e,r];return n?n.value=o:n={value:o,done:!1},n}function I(){return{value:void 0,done:!0}}function R(t){return!!Array.isArray(t)||!!M(t)}function C(t){return t&&"function"==typeof t.next}function L(t){var e=M(t);return e&&e.call(t)}function M(t){var e=t&&(A&&t[A]||t["@@iterator"]);if("function"==typeof e)return e}k.prototype.toString=function(){return"[Iterator]"},k.KEYS=0,k.VALUES=1,k.ENTRIES=2,k.prototype.inspect=k.prototype.toSource=function(){return this.toString()},k.prototype[P]=function(){return this};var D=Object.prototype.hasOwnProperty;function N(t){return!(!Array.isArray(t)&&"string"!=typeof t)||t&&"object"==typeof t&&Number.isInteger(t.length)&&t.length>=0&&(0===t.length?1===Object.keys(t).length:t.hasOwnProperty(t.length-1))}var U=function(t){function e(t){return null==t?Y():j(t)?t.toSeq():function(t){var e=J(t);if(e)return(n=M(r=t))&&n===r.entries?e.fromEntrySeq():function(t){var e=M(t);return e&&e===t.keys}(t)?e.toSetSeq():e;var r,n;if("object"==typeof t)return new H(t);throw new TypeError("Expected Array or collection object of values, or keyed object: "+t)}(t)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.toSeq=function(){return this},e.prototype.toString=function(){return this.__toString("Seq {","}")},e.prototype.cacheResult=function(){return!this._cache&&this.__iterateUncached&&(this._cache=this.entrySeq().toArray(),this.size=this._cache.length),this},e.prototype.__iterate=function(t,e){var r=this._cache;if(r){for(var n=r.length,o=0;o!==n;){var i=r[e?n-++o:o++];if(!1===t(i[1],i[0],this))break}return o}return this.__iterateUncached(t,e)},e.prototype.__iterator=function(t,e){var r=this._cache;if(r){var n=r.length,o=0;return new k((function(){if(o===n)return{value:void 0,done:!0};var i=r[e?n-++o:o++];return T(t,i[0],i[1])}))}return this.__iteratorUncached(t,e)},e}(m),B=function(t){function e(t){return null==t?Y().toKeyedSeq():d(t)?y(t)?t.toSeq():t.fromEntrySeq():S(t)?t.toSeq():K(t)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.toKeyedSeq=function(){return this},e}(U),q=function(t){function e(t){return null==t?Y():d(t)?y(t)?t.entrySeq():t.toIndexedSeq():S(t)?t.toSeq().entrySeq():V(t)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.of=function(){return e(arguments)},e.prototype.toIndexedSeq=function(){return this},e.prototype.toString=function(){return this.__toString("Seq [","]")},e}(U),z=function(t){function e(t){return(d(t)&&!g(t)?t:q(t)).toSetSeq()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.of=function(){return e(arguments)},e.prototype.toSetSeq=function(){return this},e}(U);U.isSeq=O,U.Keyed=B,U.Set=z,U.Indexed=q,U.prototype["@@__IMMUTABLE_SEQ__@@"]=!0;var F=function(t){function e(t){this._array=t,this.size=t.length}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t,e){return this.has(t)?this._array[s(this,t)]:e},e.prototype.__iterate=function(t,e){for(var r=this._array,n=r.length,o=0;o!==n;){var i=e?n-++o:o++;if(!1===t(r[i],i,this))break}return o},e.prototype.__iterator=function(t,e){var r=this._array,n=r.length,o=0;return new k((function(){if(o===n)return{value:void 0,done:!0};var i=e?n-++o:o++;return T(t,i,r[i])}))},e}(q),H=function(t){function e(t){var e=Object.keys(t).concat(Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(t):[]);this._object=t,this._keys=e,this.size=e.length}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t,e){return void 0===e||this.has(t)?this._object[t]:e},e.prototype.has=function(t){return D.call(this._object,t)},e.prototype.__iterate=function(t,e){for(var r=this._object,n=this._keys,o=n.length,i=0;i!==o;){var a=n[e?o-++i:i++];if(!1===t(r[a],a,this))break}return i},e.prototype.__iterator=function(t,e){var r=this._object,n=this._keys,o=n.length,i=0;return new k((function(){if(i===o)return{value:void 0,done:!0};var a=n[e?o-++i:i++];return T(t,a,r[a])}))},e}(B);H.prototype[E]=!0;var W,G=function(t){function e(t){this._collection=t,this.size=t.length||t.size}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.__iterateUncached=function(t,e){if(e)return this.cacheResult().__iterate(t,e);var r=L(this._collection),n=0;if(C(r))for(var o;!(o=r.next()).done&&!1!==t(o.value,n++,this););return n},e.prototype.__iteratorUncached=function(t,e){if(e)return this.cacheResult().__iterator(t,e);var r=L(this._collection);if(!C(r))return new k(I);var n=0;return new k((function(){var e=r.next();return e.done?e:T(t,n++,e.value)}))},e}(q);function Y(){return W||(W=new F([]))}function K(t){var e=J(t);if(e)return e.fromEntrySeq();if("object"==typeof t)return new H(t);throw new TypeError("Expected Array or collection object of [k, v] entries, or keyed object: "+t)}function V(t){var e=J(t);if(e)return e;throw new TypeError("Expected Array or collection object of values: "+t)}function J(t){return N(t)?new F(t):R(t)?new G(t):void 0}function $(t){return Boolean(t&&t["@@__IMMUTABLE_MAP__@@"])}function X(t){return $(t)&&x(t)}function Q(t){return Boolean(t&&"function"==typeof t.equals&&"function"==typeof t.hashCode)}function Z(t,e){if(t===e||t!=t&&e!=e)return!0;if(!t||!e)return!1;if("function"==typeof t.valueOf&&"function"==typeof e.valueOf){if((t=t.valueOf())===(e=e.valueOf())||t!=t&&e!=e)return!0;if(!t||!e)return!1}return!!(Q(t)&&Q(e)&&t.equals(e))}var tt="function"==typeof Math.imul&&-2===Math.imul(4294967295,2)?Math.imul:function(t,e){var r=65535&(t|=0),n=65535&(e|=0);return r*n+((t>>>16)*n+r*(e>>>16)<<16>>>0)|0};function et(t){return t>>>1&1073741824|3221225471&t}var rt=Object.prototype.valueOf;function nt(t){if(null==t)return ot(t);if("function"==typeof t.hashCode)return et(t.hashCode(t));var e,r=(e=t).valueOf!==rt&&"function"==typeof e.valueOf?e.valueOf(e):e;if(null==r)return ot(r);switch(typeof r){case"boolean":return r?1108378657:1108378656;case"number":return function(t){if(t!=t||t===1/0)return 0;var e=0|t;e!==t&&(e^=4294967295*t);for(;t>4294967295;)e^=t/=4294967295;return et(e)}(r);case"string":return r.length>dt?function(t){var e=gt[t];void 0===e&&(e=it(t),vt===yt&&(vt=0,gt={}),vt++,gt[t]=e);return e}(r):it(r);case"object":case"function":return function(t){var e;if(ft&&void 0!==(e=ct.get(t)))return e;if(void 0!==(e=t[ht]))return e;if(!st){if(void 0!==(e=t.propertyIsEnumerable&&t.propertyIsEnumerable[ht]))return e;if(void 0!==(e=function(t){if(t&&t.nodeType>0)switch(t.nodeType){case 1:return t.uniqueID;case 9:return t.documentElement&&t.documentElement.uniqueID}}(t)))return e}if(e=ut(),ft)ct.set(t,e);else{if(void 0!==at&&!1===at(t))throw new Error("Non-extensible objects are not allowed as keys.");if(st)Object.defineProperty(t,ht,{enumerable:!1,configurable:!1,writable:!1,value:e});else if(void 0!==t.propertyIsEnumerable&&t.propertyIsEnumerable===t.constructor.prototype.propertyIsEnumerable)t.propertyIsEnumerable=function(){return this.constructor.prototype.propertyIsEnumerable.apply(this,arguments)},t.propertyIsEnumerable[ht]=e;else{if(void 0===t.nodeType)throw new Error("Unable to set a non-enumerable property on object.");t[ht]=e}}return e}(r);case"symbol":return function(t){var e=lt[t];if(void 0!==e)return e;return e=ut(),lt[t]=e,e}(r);default:if("function"==typeof r.toString)return it(r.toString());throw new Error("Value type "+typeof r+" cannot be hashed.")}}function ot(t){return null===t?1108378658:1108378659}function it(t){for(var e=0,r=0;r<t.length;r++)e=31*e+t.charCodeAt(r)|0;return et(e)}var at=Object.isExtensible,st=function(){try{return Object.defineProperty({},"@",{}),!0}catch(t){return!1}}();function ut(){var t=++pt;return 1073741824&pt&&(pt=0),t}var ct,ft="function"==typeof WeakMap;ft&&(ct=new WeakMap);var lt=Object.create(null),pt=0,ht="__immutablehash__";"function"==typeof Symbol&&(ht=Symbol(ht));var dt=16,yt=255,vt=0,gt={},mt=function(t){function e(t,e){this._iter=t,this._useKeys=e,this.size=t.size}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t,e){return this._iter.get(t,e)},e.prototype.has=function(t){return this._iter.has(t)},e.prototype.valueSeq=function(){return this._iter.valueSeq()},e.prototype.reverse=function(){var t=this,e=jt(this,!0);return this._useKeys||(e.valueSeq=function(){return t._iter.toSeq().reverse()}),e},e.prototype.map=function(t,e){var r=this,n=St(this,t,e);return this._useKeys||(n.valueSeq=function(){return r._iter.toSeq().map(t,e)}),n},e.prototype.__iterate=function(t,e){var r=this;return this._iter.__iterate((function(e,n){return t(e,n,r)}),e)},e.prototype.__iterator=function(t,e){return this._iter.__iterator(t,e)},e}(B);mt.prototype[E]=!0;var bt=function(t){function e(t){this._iter=t,this.size=t.size}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.includes=function(t){return this._iter.includes(t)},e.prototype.__iterate=function(t,e){var r=this,n=0;return e&&a(this),this._iter.__iterate((function(o){return t(o,e?r.size-++n:n++,r)}),e)},e.prototype.__iterator=function(t,e){var r=this,n=this._iter.__iterator(1,e),o=0;return e&&a(this),new k((function(){var i=n.next();return i.done?i:T(t,e?r.size-++o:o++,i.value,i)}))},e}(q),_t=function(t){function e(t){this._iter=t,this.size=t.size}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.has=function(t){return this._iter.includes(t)},e.prototype.__iterate=function(t,e){var r=this;return this._iter.__iterate((function(e){return t(e,e,r)}),e)},e.prototype.__iterator=function(t,e){var r=this._iter.__iterator(1,e);return new k((function(){var e=r.next();return e.done?e:T(t,e.value,e.value,e)}))},e}(z),wt=function(t){function e(t){this._iter=t,this.size=t.size}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.entrySeq=function(){return this._iter.toSeq()},e.prototype.__iterate=function(t,e){var r=this;return this._iter.__iterate((function(e){if(e){Mt(e);var n=d(e);return t(n?e.get(1):e[1],n?e.get(0):e[0],r)}}),e)},e.prototype.__iterator=function(t,e){var r=this._iter.__iterator(1,e);return new k((function(){for(;;){var e=r.next();if(e.done)return e;var n=e.value;if(n){Mt(n);var o=d(n);return T(t,o?n.get(0):n[0],o?n.get(1):n[1],e)}}}))},e}(B);function Ot(t){var e=Nt(t);return e._iter=t,e.size=t.size,e.flip=function(){return t},e.reverse=function(){var e=t.reverse.apply(this);return e.flip=function(){return t.reverse()},e},e.has=function(e){return t.includes(e)},e.includes=function(e){return t.has(e)},e.cacheResult=Ut,e.__iterateUncached=function(e,r){var n=this;return t.__iterate((function(t,r){return!1!==e(r,t,n)}),r)},e.__iteratorUncached=function(e,r){if(2===e){var n=t.__iterator(e,r);return new k((function(){var t=n.next();if(!t.done){var e=t.value[0];t.value[0]=t.value[1],t.value[1]=e}return t}))}return t.__iterator(1===e?0:1,r)},e}function St(t,e,r){var o=Nt(t);return o.size=t.size,o.has=function(e){return t.has(e)},o.get=function(o,i){var a=t.get(o,n);return a===n?i:e.call(r,a,o,t)},o.__iterateUncached=function(n,o){var i=this;return t.__iterate((function(t,o,a){return!1!==n(e.call(r,t,o,a),o,i)}),o)},o.__iteratorUncached=function(n,o){var i=t.__iterator(2,o);return new k((function(){var o=i.next();if(o.done)return o;var a=o.value,s=a[0];return T(n,s,e.call(r,a[1],s,t),o)}))},o}function jt(t,e){var r=this,n=Nt(t);return n._iter=t,n.size=t.size,n.reverse=function(){return t},t.flip&&(n.flip=function(){var e=Ot(t);return e.reverse=function(){return t.flip()},e}),n.get=function(r,n){return t.get(e?r:-1-r,n)},n.has=function(r){return t.has(e?r:-1-r)},n.includes=function(e){return t.includes(e)},n.cacheResult=Ut,n.__iterate=function(r,n){var o=this,i=0;return n&&a(t),t.__iterate((function(t,a){return r(t,e?a:n?o.size-++i:i++,o)}),!n)},n.__iterator=function(n,o){var i=0;o&&a(t);var s=t.__iterator(2,!o);return new k((function(){var t=s.next();if(t.done)return t;var a=t.value;return T(n,e?a[0]:o?r.size-++i:i++,a[1],t)}))},n}function Et(t,e,r,o){var i=Nt(t);return o&&(i.has=function(o){var i=t.get(o,n);return i!==n&&!!e.call(r,i,o,t)},i.get=function(o,i){var a=t.get(o,n);return a!==n&&e.call(r,a,o,t)?a:i}),i.__iterateUncached=function(n,i){var a=this,s=0;return t.__iterate((function(t,i,u){if(e.call(r,t,i,u))return s++,n(t,o?i:s-1,a)}),i),s},i.__iteratorUncached=function(n,i){var a=t.__iterator(2,i),s=0;return new k((function(){for(;;){var i=a.next();if(i.done)return i;var u=i.value,c=u[0],f=u[1];if(e.call(r,f,c,t))return T(n,o?c:s++,f,i)}}))},i}function xt(t,e,r,n){var o=t.size;if(c(e,r,o))return t;var i=f(e,o),a=l(r,o);if(i!=i||a!=a)return xt(t.toSeq().cacheResult(),e,r,n);var u,p=a-i;p==p&&(u=p<0?0:p);var h=Nt(t);return h.size=0===u?u:t.size&&u||void 0,!n&&O(t)&&u>=0&&(h.get=function(e,r){return(e=s(this,e))>=0&&e<u?t.get(e+i,r):r}),h.__iterateUncached=function(e,r){var o=this;if(0===u)return 0;if(r)return this.cacheResult().__iterate(e,r);var a=0,s=!0,c=0;return t.__iterate((function(t,r){if(!s||!(s=a++<i))return c++,!1!==e(t,n?r:c-1,o)&&c!==u})),c},h.__iteratorUncached=function(e,r){if(0!==u&&r)return this.cacheResult().__iterator(e,r);if(0===u)return new k(I);var o=t.__iterator(e,r),a=0,s=0;return new k((function(){for(;a++<i;)o.next();if(++s>u)return{value:void 0,done:!0};var t=o.next();return n||1===e||t.done?t:T(e,s-1,0===e?void 0:t.value[1],t)}))},h}function At(t,e,r,n){var o=Nt(t);return o.__iterateUncached=function(o,i){var a=this;if(i)return this.cacheResult().__iterate(o,i);var s=!0,u=0;return t.__iterate((function(t,i,c){if(!s||!(s=e.call(r,t,i,c)))return u++,o(t,n?i:u-1,a)})),u},o.__iteratorUncached=function(o,i){var a=this;if(i)return this.cacheResult().__iterator(o,i);var s=t.__iterator(2,i),u=!0,c=0;return new k((function(){var t,i,f;do{if((t=s.next()).done)return n||1===o?t:T(o,c++,0===o?void 0:t.value[1],t);var l=t.value;i=l[0],f=l[1],u&&(u=e.call(r,f,i,a))}while(u);return 2===o?t:T(o,i,f,t)}))},o}function Pt(t,e){var r=y(t),n=[t].concat(e).map((function(t){return d(t)?r&&(t=b(t)):t=r?K(t):V(Array.isArray(t)?t:[t]),t})).filter((function(t){return 0!==t.size}));if(0===n.length)return t;if(1===n.length){var o=n[0];if(o===t||r&&y(o)||v(t)&&v(o))return o}var i=new F(n);return r?i=i.toKeyedSeq():v(t)||(i=i.toSetSeq()),(i=i.flatten(!0)).size=n.reduce((function(t,e){if(void 0!==t){var r=e.size;if(void 0!==r)return t+r}}),0),i}function kt(t,e,r){var n=Nt(t);return n.__iterateUncached=function(o,i){if(i)return this.cacheResult().__iterate(o,i);var a=0,s=!1;return function t(u,c){u.__iterate((function(i,u){return(!e||c<e)&&d(i)?t(i,c+1):(a++,!1===o(i,r?u:a-1,n)&&(s=!0)),!s}),i)}(t,0),a},n.__iteratorUncached=function(n,o){if(o)return this.cacheResult().__iterator(n,o);var i=t.__iterator(n,o),a=[],s=0;return new k((function(){for(;i;){var t=i.next();if(!1===t.done){var u=t.value;if(2===n&&(u=u[1]),e&&!(a.length<e)||!d(u))return r?t:T(n,s++,u,t);a.push(i),i=u.__iterator(n,o)}else i=a.pop()}return{value:void 0,done:!0}}))},n}function Tt(t,e,r){e||(e=Bt);var n=y(t),o=0,i=t.toSeq().map((function(e,n){return[n,e,o++,r?r(e,n,t):e]})).valueSeq().toArray();return i.sort((function(t,r){return e(t[3],r[3])||t[2]-r[2]})).forEach(n?function(t,e){i[e].length=2}:function(t,e){i[e]=t[1]}),n?B(i):v(t)?q(i):z(i)}function It(t,e,r){if(e||(e=Bt),r){var n=t.toSeq().map((function(e,n){return[e,r(e,n,t)]})).reduce((function(t,r){return Rt(e,t[1],r[1])?r:t}));return n&&n[0]}return t.reduce((function(t,r){return Rt(e,t,r)?r:t}))}function Rt(t,e,r){var n=t(r,e);return 0===n&&r!==e&&(null==r||r!=r)||n>0}function Ct(t,e,r,n){var o=Nt(t),i=new F(r).map((function(t){return t.size}));return o.size=n?i.max():i.min(),o.__iterate=function(t,e){for(var r,n=this.__iterator(1,e),o=0;!(r=n.next()).done&&!1!==t(r.value,o++,this););return o},o.__iteratorUncached=function(t,o){var i=r.map((function(t){return t=m(t),L(o?t.reverse():t)})),a=0,s=!1;return new k((function(){var r;return s||(r=i.map((function(t){return t.next()})),s=n?r.every((function(t){return t.done})):r.some((function(t){return t.done}))),s?{value:void 0,done:!0}:T(t,a++,e.apply(null,r.map((function(t){return t.value}))))}))},o}function Lt(t,e){return t===e?t:O(t)?e:t.constructor(e)}function Mt(t){if(t!==Object(t))throw new TypeError("Expected [K, V] tuple: "+t)}function Dt(t){return y(t)?b:v(t)?_:w}function Nt(t){return Object.create((y(t)?B:v(t)?q:z).prototype)}function Ut(){return this._iter.cacheResult?(this._iter.cacheResult(),this.size=this._iter.size,this):U.prototype.cacheResult.call(this)}function Bt(t,e){return void 0===t&&void 0===e?0:void 0===t?1:void 0===e?-1:t>e?1:t<e?-1:0}function qt(t,e){e=e||0;for(var r=Math.max(0,t.length-e),n=new Array(r),o=0;o<r;o++)n[o]=t[o+e];return n}function zt(t,e){if(!t)throw new Error(e)}function Ft(t){zt(t!==1/0,"Cannot perform this action with an infinite size.")}function Ht(t){if(N(t)&&"string"!=typeof t)return t;if(x(t))return t.toArray();throw new TypeError("Invalid keyPath: expected Ordered Collection or Array: "+t)}bt.prototype.cacheResult=mt.prototype.cacheResult=_t.prototype.cacheResult=wt.prototype.cacheResult=Ut;var Wt=Object.prototype.toString;function Gt(t){if(!t||"object"!=typeof t||"[object Object]"!==Wt.call(t))return!1;var e=Object.getPrototypeOf(t);if(null===e)return!0;for(var r=e,n=Object.getPrototypeOf(e);null!==n;)r=n,n=Object.getPrototypeOf(r);return r===e}function Yt(t){return"object"==typeof t&&(j(t)||Array.isArray(t)||Gt(t))}function Kt(t){try{return"string"==typeof t?JSON.stringify(t):String(t)}catch(e){return JSON.stringify(t)}}function Vt(t,e){return j(t)?t.has(e):Yt(t)&&D.call(t,e)}function Jt(t,e,r){return j(t)?t.get(e,r):Vt(t,e)?"function"==typeof t.get?t.get(e):t[e]:r}function $t(t){if(Array.isArray(t))return qt(t);var e={};for(var r in t)D.call(t,r)&&(e[r]=t[r]);return e}function Xt(t,e){if(!Yt(t))throw new TypeError("Cannot update non-data-structure value: "+t);if(j(t)){if(!t.remove)throw new TypeError("Cannot update immutable value without .remove() method: "+t);return t.remove(e)}if(!D.call(t,e))return t;var r=$t(t);return Array.isArray(r)?r.splice(e,1):delete r[e],r}function Qt(t,e,r){if(!Yt(t))throw new TypeError("Cannot update non-data-structure value: "+t);if(j(t)){if(!t.set)throw new TypeError("Cannot update immutable value without .set() method: "+t);return t.set(e,r)}if(D.call(t,e)&&r===t[e])return t;var n=$t(t);return n[e]=r,n}function Zt(t,e,r,o){o||(o=r,r=void 0);var i=function t(e,r,o,i,a,s){var u=r===n;if(i===o.length){var c=u?a:r,f=s(c);return f===c?r:f}if(!u&&!Yt(r))throw new TypeError("Cannot update within non-data-structure value in path ["+o.slice(0,i).map(Kt)+"]: "+r);var l=o[i],p=u?n:Jt(r,l,n),h=t(p===n?e:j(p),p,o,i+1,a,s);return h===p?r:h===n?Xt(r,l):Qt(u?e?De():{}:r,l,h)}(j(t),t,Ht(e),0,r,o);return i===n?r:i}function te(t,e,r){return Zt(t,e,n,(function(){return r}))}function ee(t,e){return te(this,t,e)}function re(t,e){return Zt(t,e,(function(){return n}))}function ne(t){return re(this,t)}function oe(t,e,r,n){return Zt(t,[e],r,n)}function ie(t,e,r){return 1===arguments.length?t(this):oe(this,t,e,r)}function ae(t,e,r){return Zt(this,t,e,r)}function se(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];return ce(this,t)}function ue(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];if("function"!=typeof t)throw new TypeError("Invalid merger function: "+t);return ce(this,e,t)}function ce(t,e,r){for(var o=[],i=0;i<e.length;i++){var a=b(e[i]);0!==a.size&&o.push(a)}return 0===o.length?t:0!==t.toSeq().size||t.__ownerID||1!==o.length?t.withMutations((function(t){for(var e=r?function(e,o){oe(t,o,n,(function(t){return t===n?e:r(t,e,o)}))}:function(e,r){t.set(r,e)},i=0;i<o.length;i++)o[i].forEach(e)})):t.constructor(o[0])}function fe(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];return ye(t,e)}function le(t,e){for(var r=[],n=arguments.length-2;n-- >0;)r[n]=arguments[n+2];return ye(e,r,t)}function pe(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];return de(t,e)}function he(t,e){for(var r=[],n=arguments.length-2;n-- >0;)r[n]=arguments[n+2];return de(e,r,t)}function de(t,e,r){return ye(t,e,function(t){return function e(r,n,o){return Yt(r)&&Yt(n)&&(i=n,a=U(r),s=U(i),v(a)===v(s)&&y(a)===y(s))?ye(r,[n],e):t?t(r,n,o):n;var i,a,s}}(r))}function ye(t,e,r){if(!Yt(t))throw new TypeError("Cannot merge into non-data-structure value: "+t);if(j(t))return"function"==typeof r&&t.mergeWith?t.mergeWith.apply(t,[r].concat(e)):t.merge?t.merge.apply(t,e):t.concat.apply(t,e);for(var n=Array.isArray(t),o=t,i=n?_:b,a=n?function(e){o===t&&(o=$t(o)),o.push(e)}:function(e,n){var i=D.call(o,n),a=i&&r?r(o[n],e,n):e;i&&a===o[n]||(o===t&&(o=$t(o)),o[n]=a)},s=0;s<e.length;s++)i(e[s]).forEach(a);return o}function ve(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];return de(this,t)}function ge(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];return de(this,e,t)}function me(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];return Zt(this,t,De(),(function(t){return ye(t,e)}))}function be(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];return Zt(this,t,De(),(function(t){return de(t,e)}))}function _e(t){var e=this.asMutable();return t(e),e.wasAltered()?e.__ensureOwner(this.__ownerID):this}function we(){return this.__ownerID?this:this.__ensureOwner(new i)}function Oe(){return this.__ensureOwner()}function Se(){return this.__altered}var je=function(t){function e(e){return null==e?De():$(e)&&!x(e)?e:De().withMutations((function(r){var n=t(e);Ft(n.size),n.forEach((function(t,e){return r.set(e,t)}))}))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.of=function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];return De().withMutations((function(e){for(var r=0;r<t.length;r+=2){if(r+1>=t.length)throw new Error("Missing value for key: "+t[r]);e.set(t[r],t[r+1])}}))},e.prototype.toString=function(){return this.__toString("Map {","}")},e.prototype.get=function(t,e){return this._root?this._root.get(0,void 0,t,e):e},e.prototype.set=function(t,e){return Ne(this,t,e)},e.prototype.remove=function(t){return Ne(this,t,n)},e.prototype.deleteAll=function(t){var e=m(t);return 0===e.size?this:this.withMutations((function(t){e.forEach((function(e){return t.remove(e)}))}))},e.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=0,this._root=null,this.__hash=void 0,this.__altered=!0,this):De()},e.prototype.sort=function(t){return sr(Tt(this,t))},e.prototype.sortBy=function(t,e){return sr(Tt(this,e,t))},e.prototype.map=function(t,e){var r=this;return this.withMutations((function(n){n.forEach((function(o,i){n.set(i,t.call(e,o,i,r))}))}))},e.prototype.__iterator=function(t,e){return new Re(this,t,e)},e.prototype.__iterate=function(t,e){var r=this,n=0;return this._root&&this._root.iterate((function(e){return n++,t(e[1],e[0],r)}),e),n},e.prototype.__ensureOwner=function(t){return t===this.__ownerID?this:t?Me(this.size,this._root,t,this.__hash):0===this.size?De():(this.__ownerID=t,this.__altered=!1,this)},e}(b);je.isMap=$;var Ee=je.prototype;Ee["@@__IMMUTABLE_MAP__@@"]=!0,Ee.delete=Ee.remove,Ee.removeAll=Ee.deleteAll,Ee.setIn=ee,Ee.removeIn=Ee.deleteIn=ne,Ee.update=ie,Ee.updateIn=ae,Ee.merge=Ee.concat=se,Ee.mergeWith=ue,Ee.mergeDeep=ve,Ee.mergeDeepWith=ge,Ee.mergeIn=me,Ee.mergeDeepIn=be,Ee.withMutations=_e,Ee.wasAltered=Se,Ee.asImmutable=Oe,Ee["@@transducer/init"]=Ee.asMutable=we,Ee["@@transducer/step"]=function(t,e){return t.set(e[0],e[1])},Ee["@@transducer/result"]=function(t){return t.asImmutable()};var xe=function(t,e){this.ownerID=t,this.entries=e};xe.prototype.get=function(t,e,r,n){for(var o=this.entries,i=0,a=o.length;i<a;i++)if(Z(r,o[i][0]))return o[i][1];return n},xe.prototype.update=function(t,e,r,a,s,u,c){for(var f=s===n,l=this.entries,p=0,h=l.length;p<h&&!Z(a,l[p][0]);p++);var d=p<h;if(d?l[p][1]===s:f)return this;if(o(c),(f||!d)&&o(u),!f||1!==l.length){if(!d&&!f&&l.length>=He)return function(t,e,r,n){t||(t=new i);for(var o=new Te(t,nt(r),[r,n]),a=0;a<e.length;a++){var s=e[a];o=o.update(t,0,void 0,s[0],s[1])}return o}(t,l,a,s);var y=t&&t===this.ownerID,v=y?l:qt(l);return d?f?p===h-1?v.pop():v[p]=v.pop():v[p]=[a,s]:v.push([a,s]),y?(this.entries=v,this):new xe(t,v)}};var Ae=function(t,e,r){this.ownerID=t,this.bitmap=e,this.nodes=r};Ae.prototype.get=function(t,e,r,n){void 0===e&&(e=nt(r));var o=1<<(31&(0===t?e:e>>>t)),i=this.bitmap;return 0==(i&o)?n:this.nodes[ze(i&o-1)].get(t+5,e,r,n)},Ae.prototype.update=function(t,e,r,o,i,a,s){void 0===r&&(r=nt(o));var u=31&(0===e?r:r>>>e),c=1<<u,f=this.bitmap,l=0!=(f&c);if(!l&&i===n)return this;var p=ze(f&c-1),h=this.nodes,d=l?h[p]:void 0,y=Ue(d,t,e+5,r,o,i,a,s);if(y===d)return this;if(!l&&y&&h.length>=We)return function(t,e,r,n,o){for(var i=0,a=new Array(32),s=0;0!==r;s++,r>>>=1)a[s]=1&r?e[i++]:void 0;return a[n]=o,new Pe(t,i+1,a)}(t,h,f,u,y);if(l&&!y&&2===h.length&&Be(h[1^p]))return h[1^p];if(l&&y&&1===h.length&&Be(y))return y;var v=t&&t===this.ownerID,g=l?y?f:f^c:f|c,m=l?y?Fe(h,p,y,v):function(t,e,r){var n=t.length-1;if(r&&e===n)return t.pop(),t;for(var o=new Array(n),i=0,a=0;a<n;a++)a===e&&(i=1),o[a]=t[a+i];return o}(h,p,v):function(t,e,r,n){var o=t.length+1;if(n&&e+1===o)return t[e]=r,t;for(var i=new Array(o),a=0,s=0;s<o;s++)s===e?(i[s]=r,a=-1):i[s]=t[s+a];return i}(h,p,y,v);return v?(this.bitmap=g,this.nodes=m,this):new Ae(t,g,m)};var Pe=function(t,e,r){this.ownerID=t,this.count=e,this.nodes=r};Pe.prototype.get=function(t,e,r,n){void 0===e&&(e=nt(r));var o=31&(0===t?e:e>>>t),i=this.nodes[o];return i?i.get(t+5,e,r,n):n},Pe.prototype.update=function(t,e,r,o,i,a,s){void 0===r&&(r=nt(o));var u=31&(0===e?r:r>>>e),c=i===n,f=this.nodes,l=f[u];if(c&&!l)return this;var p=Ue(l,t,e+5,r,o,i,a,s);if(p===l)return this;var h=this.count;if(l){if(!p&&--h<Ge)return function(t,e,r,n){for(var o=0,i=0,a=new Array(r),s=0,u=1,c=e.length;s<c;s++,u<<=1){var f=e[s];void 0!==f&&s!==n&&(o|=u,a[i++]=f)}return new Ae(t,o,a)}(t,f,h,u)}else h++;var d=t&&t===this.ownerID,y=Fe(f,u,p,d);return d?(this.count=h,this.nodes=y,this):new Pe(t,h,y)};var ke=function(t,e,r){this.ownerID=t,this.keyHash=e,this.entries=r};ke.prototype.get=function(t,e,r,n){for(var o=this.entries,i=0,a=o.length;i<a;i++)if(Z(r,o[i][0]))return o[i][1];return n},ke.prototype.update=function(t,e,r,i,a,s,u){void 0===r&&(r=nt(i));var c=a===n;if(r!==this.keyHash)return c?this:(o(u),o(s),qe(this,t,e,r,[i,a]));for(var f=this.entries,l=0,p=f.length;l<p&&!Z(i,f[l][0]);l++);var h=l<p;if(h?f[l][1]===a:c)return this;if(o(u),(c||!h)&&o(s),c&&2===p)return new Te(t,this.keyHash,f[1^l]);var d=t&&t===this.ownerID,y=d?f:qt(f);return h?c?l===p-1?y.pop():y[l]=y.pop():y[l]=[i,a]:y.push([i,a]),d?(this.entries=y,this):new ke(t,this.keyHash,y)};var Te=function(t,e,r){this.ownerID=t,this.keyHash=e,this.entry=r};Te.prototype.get=function(t,e,r,n){return Z(r,this.entry[0])?this.entry[1]:n},Te.prototype.update=function(t,e,r,i,a,s,u){var c=a===n,f=Z(i,this.entry[0]);return(f?a===this.entry[1]:c)?this:(o(u),c?void o(s):f?t&&t===this.ownerID?(this.entry[1]=a,this):new Te(t,this.keyHash,[i,a]):(o(s),qe(this,t,e,nt(i),[i,a])))},xe.prototype.iterate=ke.prototype.iterate=function(t,e){for(var r=this.entries,n=0,o=r.length-1;n<=o;n++)if(!1===t(r[e?o-n:n]))return!1},Ae.prototype.iterate=Pe.prototype.iterate=function(t,e){for(var r=this.nodes,n=0,o=r.length-1;n<=o;n++){var i=r[e?o-n:n];if(i&&!1===i.iterate(t,e))return!1}},Te.prototype.iterate=function(t,e){return t(this.entry)};var Ie,Re=function(t){function e(t,e,r){this._type=e,this._reverse=r,this._stack=t._root&&Le(t._root)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.next=function(){for(var t=this._type,e=this._stack;e;){var r=e.node,n=e.index++,o=void 0;if(r.entry){if(0===n)return Ce(t,r.entry)}else if(r.entries){if(n<=(o=r.entries.length-1))return Ce(t,r.entries[this._reverse?o-n:n])}else if(n<=(o=r.nodes.length-1)){var i=r.nodes[this._reverse?o-n:n];if(i){if(i.entry)return Ce(t,i.entry);e=this._stack=Le(i,e)}continue}e=this._stack=this._stack.__prev}return{value:void 0,done:!0}},e}(k);function Ce(t,e){return T(t,e[0],e[1])}function Le(t,e){return{node:t,index:0,__prev:e}}function Me(t,e,r,n){var o=Object.create(Ee);return o.size=t,o._root=e,o.__ownerID=r,o.__hash=n,o.__altered=!1,o}function De(){return Ie||(Ie=Me(0))}function Ne(t,e,r){var o,i;if(t._root){var a={value:!1},s={value:!1};if(o=Ue(t._root,t.__ownerID,0,void 0,e,r,a,s),!s.value)return t;i=t.size+(a.value?r===n?-1:1:0)}else{if(r===n)return t;i=1,o=new xe(t.__ownerID,[[e,r]])}return t.__ownerID?(t.size=i,t._root=o,t.__hash=void 0,t.__altered=!0,t):o?Me(i,o):De()}function Ue(t,e,r,i,a,s,u,c){return t?t.update(e,r,i,a,s,u,c):s===n?t:(o(c),o(u),new Te(e,i,[a,s]))}function Be(t){return t.constructor===Te||t.constructor===ke}function qe(t,e,r,n,o){if(t.keyHash===n)return new ke(e,n,[t.entry,o]);var i,a=31&(0===r?t.keyHash:t.keyHash>>>r),s=31&(0===r?n:n>>>r),u=a===s?[qe(t,e,r+5,n,o)]:(i=new Te(e,n,o),a<s?[t,i]:[i,t]);return new Ae(e,1<<a|1<<s,u)}function ze(t){return t=(t=(858993459&(t-=t>>1&1431655765))+(t>>2&858993459))+(t>>4)&252645135,t+=t>>8,127&(t+=t>>16)}function Fe(t,e,r,n){var o=n?t:qt(t);return o[e]=r,o}var He=8,We=16,Ge=8;function Ye(t){return Boolean(t&&t["@@__IMMUTABLE_LIST__@@"])}var Ke=function(t){function e(e){var r=tr();if(null==e)return r;if(Ye(e))return e;var n=t(e),o=n.size;return 0===o?r:(Ft(o),o>0&&o<32?Ze(0,o,5,null,new Je(n.toArray())):r.withMutations((function(t){t.setSize(o),n.forEach((function(e,r){return t.set(r,e)}))})))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.of=function(){return this(arguments)},e.prototype.toString=function(){return this.__toString("List [","]")},e.prototype.get=function(t,e){if((t=s(this,t))>=0&&t<this.size){var r=nr(this,t+=this._origin);return r&&r.array[31&t]}return e},e.prototype.set=function(t,e){return function(t,e,r){if((e=s(t,e))!=e)return t;if(e>=t.size||e<0)return t.withMutations((function(t){e<0?or(t,e).set(0,r):or(t,0,e+1).set(e,r)}));e+=t._origin;var n=t._tail,o=t._root,i={value:!1};e>=ir(t._capacity)?n=er(n,t.__ownerID,0,e,r,i):o=er(o,t.__ownerID,t._level,e,r,i);if(!i.value)return t;if(t.__ownerID)return t._root=o,t._tail=n,t.__hash=void 0,t.__altered=!0,t;return Ze(t._origin,t._capacity,t._level,o,n)}(this,t,e)},e.prototype.remove=function(t){return this.has(t)?0===t?this.shift():t===this.size-1?this.pop():this.splice(t,1):this},e.prototype.insert=function(t,e){return this.splice(t,0,e)},e.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=this._origin=this._capacity=0,this._level=5,this._root=this._tail=this.__hash=void 0,this.__altered=!0,this):tr()},e.prototype.push=function(){var t=arguments,e=this.size;return this.withMutations((function(r){or(r,0,e+t.length);for(var n=0;n<t.length;n++)r.set(e+n,t[n])}))},e.prototype.pop=function(){return or(this,0,-1)},e.prototype.unshift=function(){var t=arguments;return this.withMutations((function(e){or(e,-t.length);for(var r=0;r<t.length;r++)e.set(r,t[r])}))},e.prototype.shift=function(){return or(this,1)},e.prototype.concat=function(){for(var e=arguments,r=[],n=0;n<arguments.length;n++){var o=e[n],i=t("string"!=typeof o&&R(o)?o:[o]);0!==i.size&&r.push(i)}return 0===r.length?this:0!==this.size||this.__ownerID||1!==r.length?this.withMutations((function(t){r.forEach((function(e){return e.forEach((function(e){return t.push(e)}))}))})):this.constructor(r[0])},e.prototype.setSize=function(t){return or(this,0,t)},e.prototype.map=function(t,e){var r=this;return this.withMutations((function(n){for(var o=0;o<r.size;o++)n.set(o,t.call(e,n.get(o),o,r))}))},e.prototype.slice=function(t,e){var r=this.size;return c(t,e,r)?this:or(this,f(t,r),l(e,r))},e.prototype.__iterator=function(t,e){var r=e?this.size:0,n=Qe(this,e);return new k((function(){var o=n();return o===Xe?{value:void 0,done:!0}:T(t,e?--r:r++,o)}))},e.prototype.__iterate=function(t,e){for(var r,n=e?this.size:0,o=Qe(this,e);(r=o())!==Xe&&!1!==t(r,e?--n:n++,this););return n},e.prototype.__ensureOwner=function(t){return t===this.__ownerID?this:t?Ze(this._origin,this._capacity,this._level,this._root,this._tail,t,this.__hash):0===this.size?tr():(this.__ownerID=t,this.__altered=!1,this)},e}(_);Ke.isList=Ye;var Ve=Ke.prototype;Ve["@@__IMMUTABLE_LIST__@@"]=!0,Ve.delete=Ve.remove,Ve.merge=Ve.concat,Ve.setIn=ee,Ve.deleteIn=Ve.removeIn=ne,Ve.update=ie,Ve.updateIn=ae,Ve.mergeIn=me,Ve.mergeDeepIn=be,Ve.withMutations=_e,Ve.wasAltered=Se,Ve.asImmutable=Oe,Ve["@@transducer/init"]=Ve.asMutable=we,Ve["@@transducer/step"]=function(t,e){return t.push(e)},Ve["@@transducer/result"]=function(t){return t.asImmutable()};var Je=function(t,e){this.array=t,this.ownerID=e};Je.prototype.removeBefore=function(t,e,r){if(r===e?1<<e:0===this.array.length)return this;var n=r>>>e&31;if(n>=this.array.length)return new Je([],t);var o,i=0===n;if(e>0){var a=this.array[n];if((o=a&&a.removeBefore(t,e-5,r))===a&&i)return this}if(i&&!o)return this;var s=rr(this,t);if(!i)for(var u=0;u<n;u++)s.array[u]=void 0;return o&&(s.array[n]=o),s},Je.prototype.removeAfter=function(t,e,r){if(r===(e?1<<e:0)||0===this.array.length)return this;var n,o=r-1>>>e&31;if(o>=this.array.length)return this;if(e>0){var i=this.array[o];if((n=i&&i.removeAfter(t,e-5,r))===i&&o===this.array.length-1)return this}var a=rr(this,t);return a.array.splice(o+1),n&&(a.array[o]=n),a};var $e,Xe={};function Qe(t,e){var r=t._origin,n=t._capacity,o=ir(n),i=t._tail;return a(t._root,t._level,0);function a(t,s,u){return 0===s?function(t,a){var s=a===o?i&&i.array:t&&t.array,u=a>r?0:r-a,c=n-a;c>32&&(c=32);return function(){if(u===c)return Xe;var t=e?--c:u++;return s&&s[t]}}(t,u):function(t,o,i){var s,u=t&&t.array,c=i>r?0:r-i>>o,f=1+(n-i>>o);f>32&&(f=32);return function(){for(;;){if(s){var t=s();if(t!==Xe)return t;s=null}if(c===f)return Xe;var r=e?--f:c++;s=a(u&&u[r],o-5,i+(r<<o))}}}(t,s,u)}}function Ze(t,e,r,n,o,i,a){var s=Object.create(Ve);return s.size=e-t,s._origin=t,s._capacity=e,s._level=r,s._root=n,s._tail=o,s.__ownerID=i,s.__hash=a,s.__altered=!1,s}function tr(){return $e||($e=Ze(0,0,5))}function er(t,e,r,n,i,a){var s,u=n>>>r&31,c=t&&u<t.array.length;if(!c&&void 0===i)return t;if(r>0){var f=t&&t.array[u],l=er(f,e,r-5,n,i,a);return l===f?t:((s=rr(t,e)).array[u]=l,s)}return c&&t.array[u]===i?t:(a&&o(a),s=rr(t,e),void 0===i&&u===s.array.length-1?s.array.pop():s.array[u]=i,s)}function rr(t,e){return e&&t&&e===t.ownerID?t:new Je(t?t.array.slice():[],e)}function nr(t,e){if(e>=ir(t._capacity))return t._tail;if(e<1<<t._level+5){for(var r=t._root,n=t._level;r&&n>0;)r=r.array[e>>>n&31],n-=5;return r}}function or(t,e,r){void 0!==e&&(e|=0),void 0!==r&&(r|=0);var n=t.__ownerID||new i,o=t._origin,a=t._capacity,s=o+e,u=void 0===r?a:r<0?a+r:o+r;if(s===o&&u===a)return t;if(s>=u)return t.clear();for(var c=t._level,f=t._root,l=0;s+l<0;)f=new Je(f&&f.array.length?[void 0,f]:[],n),l+=1<<(c+=5);l&&(s+=l,o+=l,u+=l,a+=l);for(var p=ir(a),h=ir(u);h>=1<<c+5;)f=new Je(f&&f.array.length?[f]:[],n),c+=5;var d=t._tail,y=h<p?nr(t,u-1):h>p?new Je([],n):d;if(d&&h>p&&s<a&&d.array.length){for(var v=f=rr(f,n),g=c;g>5;g-=5){var m=p>>>g&31;v=v.array[m]=rr(v.array[m],n)}v.array[p>>>5&31]=d}if(u<a&&(y=y&&y.removeAfter(n,0,u)),s>=h)s-=h,u-=h,c=5,f=null,y=y&&y.removeBefore(n,0,s);else if(s>o||h<p){for(l=0;f;){var b=s>>>c&31;if(b!==h>>>c&31)break;b&&(l+=(1<<c)*b),c-=5,f=f.array[b]}f&&s>o&&(f=f.removeBefore(n,c,s-l)),f&&h<p&&(f=f.removeAfter(n,c,h-l)),l&&(s-=l,u-=l)}return t.__ownerID?(t.size=u-s,t._origin=s,t._capacity=u,t._level=c,t._root=f,t._tail=y,t.__hash=void 0,t.__altered=!0,t):Ze(s,u,c,f,y)}function ir(t){return t<32?0:t-1>>>5<<5}var ar,sr=function(t){function e(t){return null==t?cr():X(t)?t:cr().withMutations((function(e){var r=b(t);Ft(r.size),r.forEach((function(t,r){return e.set(r,t)}))}))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.of=function(){return this(arguments)},e.prototype.toString=function(){return this.__toString("OrderedMap {","}")},e.prototype.get=function(t,e){var r=this._map.get(t);return void 0!==r?this._list.get(r)[1]:e},e.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=0,this._map.clear(),this._list.clear(),this.__altered=!0,this):cr()},e.prototype.set=function(t,e){return fr(this,t,e)},e.prototype.remove=function(t){return fr(this,t,n)},e.prototype.__iterate=function(t,e){var r=this;return this._list.__iterate((function(e){return e&&t(e[1],e[0],r)}),e)},e.prototype.__iterator=function(t,e){return this._list.fromEntrySeq().__iterator(t,e)},e.prototype.__ensureOwner=function(t){if(t===this.__ownerID)return this;var e=this._map.__ensureOwner(t),r=this._list.__ensureOwner(t);return t?ur(e,r,t,this.__hash):0===this.size?cr():(this.__ownerID=t,this.__altered=!1,this._map=e,this._list=r,this)},e}(je);function ur(t,e,r,n){var o=Object.create(sr.prototype);return o.size=t?t.size:0,o._map=t,o._list=e,o.__ownerID=r,o.__hash=n,o.__altered=!1,o}function cr(){return ar||(ar=ur(De(),tr()))}function fr(t,e,r){var o,i,a=t._map,s=t._list,u=a.get(e),c=void 0!==u;if(r===n){if(!c)return t;s.size>=32&&s.size>=2*a.size?(o=(i=s.filter((function(t,e){return void 0!==t&&u!==e}))).toKeyedSeq().map((function(t){return t[0]})).flip().toMap(),t.__ownerID&&(o.__ownerID=i.__ownerID=t.__ownerID)):(o=a.remove(e),i=u===s.size-1?s.pop():s.set(u,void 0))}else if(c){if(r===s.get(u)[1])return t;o=a,i=s.set(u,[e,r])}else o=a.set(e,s.size),i=s.set(s.size,[e,r]);return t.__ownerID?(t.size=o.size,t._map=o,t._list=i,t.__hash=void 0,t.__altered=!0,t):ur(o,i)}sr.isOrderedMap=X,sr.prototype[E]=!0,sr.prototype.delete=sr.prototype.remove;function lr(t){return Boolean(t&&t["@@__IMMUTABLE_STACK__@@"])}var pr=function(t){function e(t){return null==t?vr():lr(t)?t:vr().pushAll(t)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.of=function(){return this(arguments)},e.prototype.toString=function(){return this.__toString("Stack [","]")},e.prototype.get=function(t,e){var r=this._head;for(t=s(this,t);r&&t--;)r=r.next;return r?r.value:e},e.prototype.peek=function(){return this._head&&this._head.value},e.prototype.push=function(){var t=arguments;if(0===arguments.length)return this;for(var e=this.size+arguments.length,r=this._head,n=arguments.length-1;n>=0;n--)r={value:t[n],next:r};return this.__ownerID?(this.size=e,this._head=r,this.__hash=void 0,this.__altered=!0,this):yr(e,r)},e.prototype.pushAll=function(e){if(0===(e=t(e)).size)return this;if(0===this.size&&lr(e))return e;Ft(e.size);var r=this.size,n=this._head;return e.__iterate((function(t){r++,n={value:t,next:n}}),!0),this.__ownerID?(this.size=r,this._head=n,this.__hash=void 0,this.__altered=!0,this):yr(r,n)},e.prototype.pop=function(){return this.slice(1)},e.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=0,this._head=void 0,this.__hash=void 0,this.__altered=!0,this):vr()},e.prototype.slice=function(e,r){if(c(e,r,this.size))return this;var n=f(e,this.size);if(l(r,this.size)!==this.size)return t.prototype.slice.call(this,e,r);for(var o=this.size-n,i=this._head;n--;)i=i.next;return this.__ownerID?(this.size=o,this._head=i,this.__hash=void 0,this.__altered=!0,this):yr(o,i)},e.prototype.__ensureOwner=function(t){return t===this.__ownerID?this:t?yr(this.size,this._head,t,this.__hash):0===this.size?vr():(this.__ownerID=t,this.__altered=!1,this)},e.prototype.__iterate=function(t,e){var r=this;if(e)return new F(this.toArray()).__iterate((function(e,n){return t(e,n,r)}),e);for(var n=0,o=this._head;o&&!1!==t(o.value,n++,this);)o=o.next;return n},e.prototype.__iterator=function(t,e){if(e)return new F(this.toArray()).__iterator(t,e);var r=0,n=this._head;return new k((function(){if(n){var e=n.value;return n=n.next,T(t,r++,e)}return{value:void 0,done:!0}}))},e}(_);pr.isStack=lr;var hr,dr=pr.prototype;function yr(t,e,r,n){var o=Object.create(dr);return o.size=t,o._head=e,o.__ownerID=r,o.__hash=n,o.__altered=!1,o}function vr(){return hr||(hr=yr(0))}dr["@@__IMMUTABLE_STACK__@@"]=!0,dr.shift=dr.pop,dr.unshift=dr.push,dr.unshiftAll=dr.pushAll,dr.withMutations=_e,dr.wasAltered=Se,dr.asImmutable=Oe,dr["@@transducer/init"]=dr.asMutable=we,dr["@@transducer/step"]=function(t,e){return t.unshift(e)},dr["@@transducer/result"]=function(t){return t.asImmutable()};function gr(t){return Boolean(t&&t["@@__IMMUTABLE_SET__@@"])}function mr(t){return gr(t)&&x(t)}function br(t,e){if(t===e)return!0;if(!d(e)||void 0!==t.size&&void 0!==e.size&&t.size!==e.size||void 0!==t.__hash&&void 0!==e.__hash&&t.__hash!==e.__hash||y(t)!==y(e)||v(t)!==v(e)||x(t)!==x(e))return!1;if(0===t.size&&0===e.size)return!0;var r=!g(t);if(x(t)){var o=t.entries();return e.every((function(t,e){var n=o.next().value;return n&&Z(n[1],t)&&(r||Z(n[0],e))}))&&o.next().done}var i=!1;if(void 0===t.size)if(void 0===e.size)"function"==typeof t.cacheResult&&t.cacheResult();else{i=!0;var a=t;t=e,e=a}var s=!0,u=e.__iterate((function(e,o){if(r?!t.has(e):i?!Z(e,t.get(o,n)):!Z(t.get(o,n),e))return s=!1,!1}));return s&&t.size===u}function _r(t,e){var r=function(r){t.prototype[r]=e[r]};return Object.keys(e).forEach(r),Object.getOwnPropertySymbols&&Object.getOwnPropertySymbols(e).forEach(r),t}function wr(t){if(!t||"object"!=typeof t)return t;if(!d(t)){if(!Yt(t))return t;t=U(t)}if(y(t)){var e={};return t.__iterate((function(t,r){e[r]=wr(t)})),e}var r=[];return t.__iterate((function(t){r.push(wr(t))})),r}var Or=function(t){function e(e){return null==e?Ar():gr(e)&&!x(e)?e:Ar().withMutations((function(r){var n=t(e);Ft(n.size),n.forEach((function(t){return r.add(t)}))}))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.of=function(){return this(arguments)},e.fromKeys=function(t){return this(b(t).keySeq())},e.intersect=function(t){return(t=m(t).toArray()).length?jr.intersect.apply(e(t.pop()),t):Ar()},e.union=function(t){return(t=m(t).toArray()).length?jr.union.apply(e(t.pop()),t):Ar()},e.prototype.toString=function(){return this.__toString("Set {","}")},e.prototype.has=function(t){return this._map.has(t)},e.prototype.add=function(t){return Er(this,this._map.set(t,t))},e.prototype.remove=function(t){return Er(this,this._map.remove(t))},e.prototype.clear=function(){return Er(this,this._map.clear())},e.prototype.map=function(t,e){var r=this,n=!1,o=Er(this,this._map.mapEntries((function(o){var i=o[1],a=t.call(e,i,i,r);return a!==i&&(n=!0),[a,a]}),e));return n?o:this},e.prototype.union=function(){for(var e=[],r=arguments.length;r--;)e[r]=arguments[r];return 0===(e=e.filter((function(t){return 0!==t.size}))).length?this:0!==this.size||this.__ownerID||1!==e.length?this.withMutations((function(r){for(var n=0;n<e.length;n++)t(e[n]).forEach((function(t){return r.add(t)}))})):this.constructor(e[0])},e.prototype.intersect=function(){for(var e=[],r=arguments.length;r--;)e[r]=arguments[r];if(0===e.length)return this;e=e.map((function(e){return t(e)}));var n=[];return this.forEach((function(t){e.every((function(e){return e.includes(t)}))||n.push(t)})),this.withMutations((function(t){n.forEach((function(e){t.remove(e)}))}))},e.prototype.subtract=function(){for(var e=[],r=arguments.length;r--;)e[r]=arguments[r];if(0===e.length)return this;e=e.map((function(e){return t(e)}));var n=[];return this.forEach((function(t){e.some((function(e){return e.includes(t)}))&&n.push(t)})),this.withMutations((function(t){n.forEach((function(e){t.remove(e)}))}))},e.prototype.sort=function(t){return Yr(Tt(this,t))},e.prototype.sortBy=function(t,e){return Yr(Tt(this,e,t))},e.prototype.wasAltered=function(){return this._map.wasAltered()},e.prototype.__iterate=function(t,e){var r=this;return this._map.__iterate((function(e){return t(e,e,r)}),e)},e.prototype.__iterator=function(t,e){return this._map.__iterator(t,e)},e.prototype.__ensureOwner=function(t){if(t===this.__ownerID)return this;var e=this._map.__ensureOwner(t);return t?this.__make(e,t):0===this.size?this.__empty():(this.__ownerID=t,this._map=e,this)},e}(w);Or.isSet=gr;var Sr,jr=Or.prototype;function Er(t,e){return t.__ownerID?(t.size=e.size,t._map=e,t):e===t._map?t:0===e.size?t.__empty():t.__make(e)}function xr(t,e){var r=Object.create(jr);return r.size=t?t.size:0,r._map=t,r.__ownerID=e,r}function Ar(){return Sr||(Sr=xr(De()))}jr["@@__IMMUTABLE_SET__@@"]=!0,jr.delete=jr.remove,jr.merge=jr.concat=jr.union,jr.withMutations=_e,jr.asImmutable=Oe,jr["@@transducer/init"]=jr.asMutable=we,jr["@@transducer/step"]=function(t,e){return t.add(e)},jr["@@transducer/result"]=function(t){return t.asImmutable()},jr.__empty=Ar,jr.__make=xr;var Pr,kr=function(t){function e(t,r,n){if(!(this instanceof e))return new e(t,r,n);if(zt(0!==n,"Cannot step a Range by 0"),t=t||0,void 0===r&&(r=1/0),n=void 0===n?1:Math.abs(n),r<t&&(n=-n),this._start=t,this._end=r,this._step=n,this.size=Math.max(0,Math.ceil((r-t)/n-1)+1),0===this.size){if(Pr)return Pr;Pr=this}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.toString=function(){return 0===this.size?"Range []":"Range [ "+this._start+"..."+this._end+(1!==this._step?" by "+this._step:"")+" ]"},e.prototype.get=function(t,e){return this.has(t)?this._start+s(this,t)*this._step:e},e.prototype.includes=function(t){var e=(t-this._start)/this._step;return e>=0&&e<this.size&&e===Math.floor(e)},e.prototype.slice=function(t,r){return c(t,r,this.size)?this:(t=f(t,this.size),(r=l(r,this.size))<=t?new e(0,0):new e(this.get(t,this._end),this.get(r,this._end),this._step))},e.prototype.indexOf=function(t){var e=t-this._start;if(e%this._step==0){var r=e/this._step;if(r>=0&&r<this.size)return r}return-1},e.prototype.lastIndexOf=function(t){return this.indexOf(t)},e.prototype.__iterate=function(t,e){for(var r=this.size,n=this._step,o=e?this._start+(r-1)*n:this._start,i=0;i!==r&&!1!==t(o,e?r-++i:i++,this);)o+=e?-n:n;return i},e.prototype.__iterator=function(t,e){var r=this.size,n=this._step,o=e?this._start+(r-1)*n:this._start,i=0;return new k((function(){if(i===r)return{value:void 0,done:!0};var a=o;return o+=e?-n:n,T(t,e?r-++i:i++,a)}))},e.prototype.equals=function(t){return t instanceof e?this._start===t._start&&this._end===t._end&&this._step===t._step:br(this,t)},e}(q);function Tr(t,e,r){for(var o=Ht(e),i=0;i!==o.length;)if((t=Jt(t,o[i++],n))===n)return r;return t}function Ir(t,e){return Tr(this,t,e)}function Rr(t,e){return Tr(t,e,n)!==n}function Cr(){Ft(this.size);var t={};return this.__iterate((function(e,r){t[r]=e})),t}m.isIterable=d,m.isKeyed=y,m.isIndexed=v,m.isAssociative=g,m.isOrdered=x,m.Iterator=k,_r(m,{toArray:function(){Ft(this.size);var t=new Array(this.size||0),e=y(this),r=0;return this.__iterate((function(n,o){t[r++]=e?[o,n]:n})),t},toIndexedSeq:function(){return new bt(this)},toJS:function(){return wr(this)},toKeyedSeq:function(){return new mt(this,!0)},toMap:function(){return je(this.toKeyedSeq())},toObject:Cr,toOrderedMap:function(){return sr(this.toKeyedSeq())},toOrderedSet:function(){return Yr(y(this)?this.valueSeq():this)},toSet:function(){return Or(y(this)?this.valueSeq():this)},toSetSeq:function(){return new _t(this)},toSeq:function(){return v(this)?this.toIndexedSeq():y(this)?this.toKeyedSeq():this.toSetSeq()},toStack:function(){return pr(y(this)?this.valueSeq():this)},toList:function(){return Ke(y(this)?this.valueSeq():this)},toString:function(){return"[Collection]"},__toString:function(t,e){return 0===this.size?t+e:t+" "+this.toSeq().map(this.__toStringMapper).join(", ")+" "+e},concat:function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];return Lt(this,Pt(this,t))},includes:function(t){return this.some((function(e){return Z(e,t)}))},entries:function(){return this.__iterator(2)},every:function(t,e){Ft(this.size);var r=!0;return this.__iterate((function(n,o,i){if(!t.call(e,n,o,i))return r=!1,!1})),r},filter:function(t,e){return Lt(this,Et(this,t,e,!0))},find:function(t,e,r){var n=this.findEntry(t,e);return n?n[1]:r},forEach:function(t,e){return Ft(this.size),this.__iterate(e?t.bind(e):t)},join:function(t){Ft(this.size),t=void 0!==t?""+t:",";var e="",r=!0;return this.__iterate((function(n){r?r=!1:e+=t,e+=null!=n?n.toString():""})),e},keys:function(){return this.__iterator(0)},map:function(t,e){return Lt(this,St(this,t,e))},reduce:function(t,e,r){return Ur(this,t,e,r,arguments.length<2,!1)},reduceRight:function(t,e,r){return Ur(this,t,e,r,arguments.length<2,!0)},reverse:function(){return Lt(this,jt(this,!0))},slice:function(t,e){return Lt(this,xt(this,t,e,!0))},some:function(t,e){return!this.every(zr(t),e)},sort:function(t){return Lt(this,Tt(this,t))},values:function(){return this.__iterator(1)},butLast:function(){return this.slice(0,-1)},isEmpty:function(){return void 0!==this.size?0===this.size:!this.some((function(){return!0}))},count:function(t,e){return a(t?this.toSeq().filter(t,e):this)},countBy:function(t,e){return function(t,e,r){var n=je().asMutable();return t.__iterate((function(o,i){n.update(e.call(r,o,i,t),0,(function(t){return t+1}))})),n.asImmutable()}(this,t,e)},equals:function(t){return br(this,t)},entrySeq:function(){var t=this;if(t._cache)return new F(t._cache);var e=t.toSeq().map(qr).toIndexedSeq();return e.fromEntrySeq=function(){return t.toSeq()},e},filterNot:function(t,e){return this.filter(zr(t),e)},findEntry:function(t,e,r){var n=r;return this.__iterate((function(r,o,i){if(t.call(e,r,o,i))return n=[o,r],!1})),n},findKey:function(t,e){var r=this.findEntry(t,e);return r&&r[0]},findLast:function(t,e,r){return this.toKeyedSeq().reverse().find(t,e,r)},findLastEntry:function(t,e,r){return this.toKeyedSeq().reverse().findEntry(t,e,r)},findLastKey:function(t,e){return this.toKeyedSeq().reverse().findKey(t,e)},first:function(t){return this.find(u,null,t)},flatMap:function(t,e){return Lt(this,function(t,e,r){var n=Dt(t);return t.toSeq().map((function(o,i){return n(e.call(r,o,i,t))})).flatten(!0)}(this,t,e))},flatten:function(t){return Lt(this,kt(this,t,!0))},fromEntrySeq:function(){return new wt(this)},get:function(t,e){return this.find((function(e,r){return Z(r,t)}),void 0,e)},getIn:Ir,groupBy:function(t,e){return function(t,e,r){var n=y(t),o=(x(t)?sr():je()).asMutable();t.__iterate((function(i,a){o.update(e.call(r,i,a,t),(function(t){return(t=t||[]).push(n?[a,i]:i),t}))}));var i=Dt(t);return o.map((function(e){return Lt(t,i(e))})).asImmutable()}(this,t,e)},has:function(t){return this.get(t,n)!==n},hasIn:function(t){return Rr(this,t)},isSubset:function(t){return t="function"==typeof t.includes?t:m(t),this.every((function(e){return t.includes(e)}))},isSuperset:function(t){return(t="function"==typeof t.isSubset?t:m(t)).isSubset(this)},keyOf:function(t){return this.findKey((function(e){return Z(e,t)}))},keySeq:function(){return this.toSeq().map(Br).toIndexedSeq()},last:function(t){return this.toSeq().reverse().first(t)},lastKeyOf:function(t){return this.toKeyedSeq().reverse().keyOf(t)},max:function(t){return It(this,t)},maxBy:function(t,e){return It(this,e,t)},min:function(t){return It(this,t?Fr(t):Wr)},minBy:function(t,e){return It(this,e?Fr(e):Wr,t)},rest:function(){return this.slice(1)},skip:function(t){return 0===t?this:this.slice(Math.max(0,t))},skipLast:function(t){return 0===t?this:this.slice(0,-Math.max(0,t))},skipWhile:function(t,e){return Lt(this,At(this,t,e,!0))},skipUntil:function(t,e){return this.skipWhile(zr(t),e)},sortBy:function(t,e){return Lt(this,Tt(this,e,t))},take:function(t){return this.slice(0,Math.max(0,t))},takeLast:function(t){return this.slice(-Math.max(0,t))},takeWhile:function(t,e){return Lt(this,function(t,e,r){var n=Nt(t);return n.__iterateUncached=function(n,o){var i=this;if(o)return this.cacheResult().__iterate(n,o);var a=0;return t.__iterate((function(t,o,s){return e.call(r,t,o,s)&&++a&&n(t,o,i)})),a},n.__iteratorUncached=function(n,o){var i=this;if(o)return this.cacheResult().__iterator(n,o);var a=t.__iterator(2,o),s=!0;return new k((function(){if(!s)return{value:void 0,done:!0};var t=a.next();if(t.done)return t;var o=t.value,u=o[0],c=o[1];return e.call(r,c,u,i)?2===n?t:T(n,u,c,t):(s=!1,{value:void 0,done:!0})}))},n}(this,t,e))},takeUntil:function(t,e){return this.takeWhile(zr(t),e)},update:function(t){return t(this)},valueSeq:function(){return this.toIndexedSeq()},hashCode:function(){return this.__hash||(this.__hash=function(t){if(t.size===1/0)return 0;var e=x(t),r=y(t),n=e?1:0;return function(t,e){return e=tt(e,3432918353),e=tt(e<<15|e>>>-15,461845907),e=tt(e<<13|e>>>-13,5),e=tt((e=(e+3864292196|0)^t)^e>>>16,2246822507),e=et((e=tt(e^e>>>13,3266489909))^e>>>16)}(t.__iterate(r?e?function(t,e){n=31*n+Gr(nt(t),nt(e))|0}:function(t,e){n=n+Gr(nt(t),nt(e))|0}:e?function(t){n=31*n+nt(t)|0}:function(t){n=n+nt(t)|0}),n)}(this))}});var Lr=m.prototype;Lr["@@__IMMUTABLE_ITERABLE__@@"]=!0,Lr[P]=Lr.values,Lr.toJSON=Lr.toArray,Lr.__toStringMapper=Kt,Lr.inspect=Lr.toSource=function(){return this.toString()},Lr.chain=Lr.flatMap,Lr.contains=Lr.includes,_r(b,{flip:function(){return Lt(this,Ot(this))},mapEntries:function(t,e){var r=this,n=0;return Lt(this,this.toSeq().map((function(o,i){return t.call(e,[i,o],n++,r)})).fromEntrySeq())},mapKeys:function(t,e){var r=this;return Lt(this,this.toSeq().flip().map((function(n,o){return t.call(e,n,o,r)})).flip())}});var Mr=b.prototype;Mr["@@__IMMUTABLE_KEYED__@@"]=!0,Mr[P]=Lr.entries,Mr.toJSON=Cr,Mr.__toStringMapper=function(t,e){return Kt(e)+": "+Kt(t)},_r(_,{toKeyedSeq:function(){return new mt(this,!1)},filter:function(t,e){return Lt(this,Et(this,t,e,!1))},findIndex:function(t,e){var r=this.findEntry(t,e);return r?r[0]:-1},indexOf:function(t){var e=this.keyOf(t);return void 0===e?-1:e},lastIndexOf:function(t){var e=this.lastKeyOf(t);return void 0===e?-1:e},reverse:function(){return Lt(this,jt(this,!1))},slice:function(t,e){return Lt(this,xt(this,t,e,!1))},splice:function(t,e){var r=arguments.length;if(e=Math.max(e||0,0),0===r||2===r&&!e)return this;t=f(t,t<0?this.count():this.size);var n=this.slice(0,t);return Lt(this,1===r?n:n.concat(qt(arguments,2),this.slice(t+e)))},findLastIndex:function(t,e){var r=this.findLastEntry(t,e);return r?r[0]:-1},first:function(t){return this.get(0,t)},flatten:function(t){return Lt(this,kt(this,t,!1))},get:function(t,e){return(t=s(this,t))<0||this.size===1/0||void 0!==this.size&&t>this.size?e:this.find((function(e,r){return r===t}),void 0,e)},has:function(t){return(t=s(this,t))>=0&&(void 0!==this.size?this.size===1/0||t<this.size:-1!==this.indexOf(t))},interpose:function(t){return Lt(this,function(t,e){var r=Nt(t);return r.size=t.size&&2*t.size-1,r.__iterateUncached=function(r,n){var o=this,i=0;return t.__iterate((function(t){return(!i||!1!==r(e,i++,o))&&!1!==r(t,i++,o)}),n),i},r.__iteratorUncached=function(r,n){var o,i=t.__iterator(1,n),a=0;return new k((function(){return(!o||a%2)&&(o=i.next()).done?o:a%2?T(r,a++,e):T(r,a++,o.value,o)}))},r}(this,t))},interleave:function(){var t=[this].concat(qt(arguments)),e=Ct(this.toSeq(),q.of,t),r=e.flatten(!0);return e.size&&(r.size=e.size*t.length),Lt(this,r)},keySeq:function(){return kr(0,this.size)},last:function(t){return this.get(-1,t)},skipWhile:function(t,e){return Lt(this,At(this,t,e,!1))},zip:function(){var t=[this].concat(qt(arguments));return Lt(this,Ct(this,Hr,t))},zipAll:function(){var t=[this].concat(qt(arguments));return Lt(this,Ct(this,Hr,t,!0))},zipWith:function(t){var e=qt(arguments);return e[0]=this,Lt(this,Ct(this,t,e))}});var Dr=_.prototype;Dr["@@__IMMUTABLE_INDEXED__@@"]=!0,Dr[E]=!0,_r(w,{get:function(t,e){return this.has(t)?t:e},includes:function(t){return this.has(t)},keySeq:function(){return this.valueSeq()}});var Nr=w.prototype;function Ur(t,e,r,n,o,i){return Ft(t.size),t.__iterate((function(t,i,a){o?(o=!1,r=t):r=e.call(n,r,t,i,a)}),i),r}function Br(t,e){return e}function qr(t,e){return[e,t]}function zr(t){return function(){return!t.apply(this,arguments)}}function Fr(t){return function(){return-t.apply(this,arguments)}}function Hr(){return qt(arguments)}function Wr(t,e){return t<e?1:t>e?-1:0}function Gr(t,e){return t^e+2654435769+(t<<6)+(t>>2)|0}Nr.has=Lr.includes,Nr.contains=Nr.includes,Nr.keys=Nr.values,_r(B,Mr),_r(q,Dr),_r(z,Nr);var Yr=function(t){function e(t){return null==t?$r():mr(t)?t:$r().withMutations((function(e){var r=w(t);Ft(r.size),r.forEach((function(t){return e.add(t)}))}))}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.of=function(){return this(arguments)},e.fromKeys=function(t){return this(b(t).keySeq())},e.prototype.toString=function(){return this.__toString("OrderedSet {","}")},e}(Or);Yr.isOrderedSet=mr;var Kr,Vr=Yr.prototype;function Jr(t,e){var r=Object.create(Vr);return r.size=t?t.size:0,r._map=t,r.__ownerID=e,r}function $r(){return Kr||(Kr=Jr(cr()))}Vr[E]=!0,Vr.zip=Dr.zip,Vr.zipWith=Dr.zipWith,Vr.zipAll=Dr.zipAll,Vr.__empty=$r,Vr.__make=Jr;var Xr=function(t,e){var r;!function(t){if(S(t))throw new Error("Can not call `Record` with an immutable Record as default values. Use a plain javascript object instead.");if(j(t))throw new Error("Can not call `Record` with an immutable Collection as default values. Use a plain javascript object instead.");if(null===t||"object"!=typeof t)throw new Error("Can not call `Record` with a non-object as default values. Use a plain javascript object instead.")}(t);var n=function(i){var a=this;if(i instanceof n)return i;if(!(this instanceof n))return new n(i);if(!r){r=!0;var s=Object.keys(t),u=o._indices={};o._name=e,o._keys=s,o._defaultValues=t;for(var c=0;c<s.length;c++){var f=s[c];u[f]=c,o[f]?"object"==typeof console&&console.warn&&console.warn("Cannot define "+tn(this)+' with property "'+f+'" since that property name is part of the Record API.'):rn(o,f)}}return this.__ownerID=void 0,this._values=Ke().withMutations((function(t){t.setSize(a._keys.length),b(i).forEach((function(e,r){t.set(a._indices[r],e===a._defaultValues[r]?void 0:e)}))})),this},o=n.prototype=Object.create(Qr);return o.constructor=n,e&&(n.displayName=e),n};Xr.prototype.toString=function(){for(var t,e=tn(this)+" { ",r=this._keys,n=0,o=r.length;n!==o;n++)e+=(n?", ":"")+(t=r[n])+": "+Kt(this.get(t));return e+" }"},Xr.prototype.equals=function(t){return this===t||S(t)&&en(this).equals(en(t))},Xr.prototype.hashCode=function(){return en(this).hashCode()},Xr.prototype.has=function(t){return this._indices.hasOwnProperty(t)},Xr.prototype.get=function(t,e){if(!this.has(t))return e;var r=this._indices[t],n=this._values.get(r);return void 0===n?this._defaultValues[t]:n},Xr.prototype.set=function(t,e){if(this.has(t)){var r=this._values.set(this._indices[t],e===this._defaultValues[t]?void 0:e);if(r!==this._values&&!this.__ownerID)return Zr(this,r)}return this},Xr.prototype.remove=function(t){return this.set(t)},Xr.prototype.clear=function(){var t=this._values.clear().setSize(this._keys.length);return this.__ownerID?this:Zr(this,t)},Xr.prototype.wasAltered=function(){return this._values.wasAltered()},Xr.prototype.toSeq=function(){return en(this)},Xr.prototype.toJS=function(){return wr(this)},Xr.prototype.entries=function(){return this.__iterator(2)},Xr.prototype.__iterator=function(t,e){return en(this).__iterator(t,e)},Xr.prototype.__iterate=function(t,e){return en(this).__iterate(t,e)},Xr.prototype.__ensureOwner=function(t){if(t===this.__ownerID)return this;var e=this._values.__ensureOwner(t);return t?Zr(this,e,t):(this.__ownerID=t,this._values=e,this)},Xr.isRecord=S,Xr.getDescriptiveName=tn;var Qr=Xr.prototype;function Zr(t,e,r){var n=Object.create(Object.getPrototypeOf(t));return n._values=e,n.__ownerID=r,n}function tn(t){return t.constructor.displayName||t.constructor.name||"Record"}function en(t){return K(t._keys.map((function(e){return[e,t.get(e)]})))}function rn(t,e){try{Object.defineProperty(t,e,{get:function(){return this.get(e)},set:function(t){zt(this.__ownerID,"Cannot set on an immutable record."),this.set(e,t)}})}catch(t){}}Qr["@@__IMMUTABLE_RECORD__@@"]=!0,Qr.delete=Qr.remove,Qr.deleteIn=Qr.removeIn=ne,Qr.getIn=Ir,Qr.hasIn=Lr.hasIn,Qr.merge=se,Qr.mergeWith=ue,Qr.mergeIn=me,Qr.mergeDeep=ve,Qr.mergeDeepWith=ge,Qr.mergeDeepIn=be,Qr.setIn=ee,Qr.update=ie,Qr.updateIn=ae,Qr.withMutations=_e,Qr.asMutable=we,Qr.asImmutable=Oe,Qr[P]=Qr.entries,Qr.toJSON=Qr.toObject=Lr.toObject,Qr.inspect=Qr.toSource=function(){return this.toString()};var nn,on=function(t){function e(t,r){if(!(this instanceof e))return new e(t,r);if(this._value=t,this.size=void 0===r?1/0:Math.max(0,r),0===this.size){if(nn)return nn;nn=this}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.toString=function(){return 0===this.size?"Repeat []":"Repeat [ "+this._value+" "+this.size+" times ]"},e.prototype.get=function(t,e){return this.has(t)?this._value:e},e.prototype.includes=function(t){return Z(this._value,t)},e.prototype.slice=function(t,r){var n=this.size;return c(t,r,n)?this:new e(this._value,l(r,n)-f(t,n))},e.prototype.reverse=function(){return this},e.prototype.indexOf=function(t){return Z(this._value,t)?0:-1},e.prototype.lastIndexOf=function(t){return Z(this._value,t)?this.size:-1},e.prototype.__iterate=function(t,e){for(var r=this.size,n=0;n!==r&&!1!==t(this._value,e?r-++n:n++,this););return n},e.prototype.__iterator=function(t,e){var r=this,n=this.size,o=0;return new k((function(){return o===n?{value:void 0,done:!0}:T(t,e?n-++o:o++,r._value)}))},e.prototype.equals=function(t){return t instanceof e?Z(this._value,t._value):br(t)},e}(q);function an(t,e){return function t(e,r,n,o,i,a){if("string"!=typeof n&&!j(n)&&(N(n)||R(n)||Gt(n))){if(~e.indexOf(n))throw new TypeError("Cannot convert circular structure to Immutable");e.push(n),i&&""!==o&&i.push(o);var s=r.call(a,o,U(n).map((function(o,a){return t(e,r,o,a,i,n)})),i&&i.slice());return e.pop(),i&&i.pop(),s}return n}([],e||sn,t,"",e&&e.length>2?[]:void 0,{"":t})}function sn(t,e){return v(e)?e.toList():y(e)?e.toMap():e.toSet()}var un="4.1.0",cn={version:un,Collection:m,Iterable:m,Seq:U,Map:je,OrderedMap:sr,List:Ke,Stack:pr,Set:Or,OrderedSet:Yr,Record:Xr,Range:kr,Repeat:on,is:Z,fromJS:an,hash:nt,isImmutable:j,isCollection:d,isKeyed:y,isIndexed:v,isAssociative:g,isOrdered:x,isValueObject:Q,isPlainObject:Gt,isSeq:O,isList:Ye,isMap:$,isOrderedMap:X,isStack:lr,isSet:gr,isOrderedSet:mr,isRecord:S,get:Jt,getIn:Tr,has:Vt,hasIn:Rr,merge:fe,mergeDeep:pe,mergeWith:le,mergeDeepWith:he,remove:Xt,removeIn:re,set:Qt,setIn:te,update:oe,updateIn:Zt},fn=m;e.default=cn},function(t,e,r){"use strict";var n=r(16),o=Object.keys||function(t){var e=[];for(var r in t)e.push(r);return e};t.exports=l;var i=Object.create(r(13));i.inherits=r(9);var a=r(38),s=r(42);i.inherits(l,a);for(var u=o(s.prototype),c=0;c<u.length;c++){var f=u[c];l.prototype[f]||(l.prototype[f]=s.prototype[f])}function l(t){if(!(this instanceof l))return new l(t);a.call(this,t),s.call(this,t),t&&!1===t.readable&&(this.readable=!1),t&&!1===t.writable&&(this.writable=!1),this.allowHalfOpen=!0,t&&!1===t.allowHalfOpen&&(this.allowHalfOpen=!1),this.once("end",p)}function p(){this.allowHalfOpen||this._writableState.ended||n.nextTick(h,this)}function h(t){t.end()}Object.defineProperty(l.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Object.defineProperty(l.prototype,"destroyed",{get:function(){return void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed&&this._writableState.destroyed)},set:function(t){void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed=t,this._writableState.destroyed=t)}}),l.prototype._destroy=function(t,e){this.push(null),this.end(),n.nextTick(e,t)}},function(t,e,r){t.exports=r(52)},function(t,e,r){function n(t){return Object.prototype.toString.call(t)}e.isArray=function(t){return Array.isArray?Array.isArray(t):"[object Array]"===n(t)},e.isBoolean=function(t){return"boolean"==typeof t},e.isNull=function(t){return null===t},e.isNullOrUndefined=function(t){return null==t},e.isNumber=function(t){return"number"==typeof t},e.isString=function(t){return"string"==typeof t},e.isSymbol=function(t){return"symbol"==typeof t},e.isUndefined=function(t){return void 0===t},e.isRegExp=function(t){return"[object RegExp]"===n(t)},e.isObject=function(t){return"object"==typeof t&&null!==t},e.isDate=function(t){return"[object Date]"===n(t)},e.isError=function(t){return"[object Error]"===n(t)||t instanceof Error},e.isFunction=function(t){return"function"==typeof t},e.isPrimitive=function(t){return null===t||"boolean"==typeof t||"number"==typeof t||"string"==typeof t||"symbol"==typeof t||void 0===t},e.isBuffer=r(7).Buffer.isBuffer},function(t,e,r){"use strict";(function(e){var n=r(3),o=r(57),i=r(28),a={"Content-Type":"application/x-www-form-urlencoded"};function s(t,e){!n.isUndefined(t)&&n.isUndefined(t["Content-Type"])&&(t["Content-Type"]=e)}var u,c={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:(("undefined"!=typeof XMLHttpRequest||void 0!==e&&"[object process]"===Object.prototype.toString.call(e))&&(u=r(29)),u),transformRequest:[function(t,e){return o(e,"Accept"),o(e,"Content-Type"),n.isFormData(t)||n.isArrayBuffer(t)||n.isBuffer(t)||n.isStream(t)||n.isFile(t)||n.isBlob(t)?t:n.isArrayBufferView(t)?t.buffer:n.isURLSearchParams(t)?(s(e,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):n.isObject(t)||e&&"application/json"===e["Content-Type"]?(s(e,"application/json"),function(t,e,r){if(n.isString(t))try{return(e||JSON.parse)(t),n.trim(t)}catch(t){if("SyntaxError"!==t.name)throw t}return(r||JSON.stringify)(t)}(t)):t}],transformResponse:[function(t){var e=this.transitional||c.transitional,r=e&&e.silentJSONParsing,o=e&&e.forcedJSONParsing,a=!r&&"json"===this.responseType;if(a||o&&n.isString(t)&&t.length)try{return JSON.parse(t)}catch(t){if(a){if("SyntaxError"===t.name)throw i(t,this,"E_JSON_PARSE");throw t}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};n.forEach(["delete","get","head"],(function(t){c.headers[t]={}})),n.forEach(["post","put","patch"],(function(t){c.headers[t]=n.merge(a)})),t.exports=c}).call(this,r(8))},function(t,e,r){"use strict";function n(t){this.message=t}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,t.exports=n},function(t,e,r){"use strict";(function(e){void 0===e||!e.version||0===e.version.indexOf("v0.")||0===e.version.indexOf("v1.")&&0!==e.version.indexOf("v1.8.")?t.exports={nextTick:function(t,r,n,o){if("function"!=typeof t)throw new TypeError('"callback" argument must be a function');var i,a,s=arguments.length;switch(s){case 0:case 1:return e.nextTick(t);case 2:return e.nextTick((function(){t.call(null,r)}));case 3:return e.nextTick((function(){t.call(null,r,n)}));case 4:return e.nextTick((function(){t.call(null,r,n,o)}));default:for(i=new Array(s-1),a=0;a<i.length;)i[a++]=arguments[a];return e.nextTick((function(){t.apply(null,i)}))}}}:t.exports=e}).call(this,r(8))},function(t,e,r){"use strict";var n=r(69),o=r(79),i=r(22);t.exports={formats:i,parse:o,stringify:n}},function(t,e,r){var n=r(85),o=r(45),i=t.exports;for(var a in n)n.hasOwnProperty(a)&&(i[a]=n[a]);function s(t){if("string"==typeof t&&(t=o.parse(t)),t.protocol||(t.protocol="https:"),"https:"!==t.protocol)throw new Error('Protocol "'+t.protocol+'" not supported. Expected "https:"');return t}i.request=function(t,e){return t=s(t),n.request.call(this,t,e)},i.get=function(t,e){return t=s(t),n.get.call(this,t,e)}},function(t,e,r){"use strict";e.setGoodStatus=function(t){return{status:t.status,statusText:t.statusText,detail:" ",error:!1}},e.setBadStatus=function(t){var e=0,r=" ";return t.hasOwnProperty("response")&&null!=t.response&&(e=t.response.status,r=t.response.hasOwnProperty("data")?t.response.data:t.response.statusText),{status:e,statusText:t.message,detail:r,error:!0}}},function(t,e,r){"use strict";var n=SyntaxError,o=Function,i=TypeError,a=function(t){try{return o('"use strict"; return ('+t+").constructor;")()}catch(t){}},s=Object.getOwnPropertyDescriptor;if(s)try{s({},"")}catch(t){s=null}var u=function(){throw new i},c=s?function(){try{return u}catch(t){try{return s(arguments,"callee").get}catch(t){return u}}}():u,f=r(71)(),l=Object.getPrototypeOf||function(t){return t.__proto__},p={},h="undefined"==typeof Uint8Array?void 0:l(Uint8Array),d={"%AggregateError%":"undefined"==typeof AggregateError?void 0:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?void 0:ArrayBuffer,"%ArrayIteratorPrototype%":f?l([][Symbol.iterator]()):void 0,"%AsyncFromSyncIteratorPrototype%":void 0,"%AsyncFunction%":p,"%AsyncGenerator%":p,"%AsyncGeneratorFunction%":p,"%AsyncIteratorPrototype%":p,"%Atomics%":"undefined"==typeof Atomics?void 0:Atomics,"%BigInt%":"undefined"==typeof BigInt?void 0:BigInt,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?void 0:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Error,"%eval%":eval,"%EvalError%":EvalError,"%Float32Array%":"undefined"==typeof Float32Array?void 0:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?void 0:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?void 0:FinalizationRegistry,"%Function%":o,"%GeneratorFunction%":p,"%Int8Array%":"undefined"==typeof Int8Array?void 0:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?void 0:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?void 0:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":f?l(l([][Symbol.iterator]())):void 0,"%JSON%":"object"==typeof JSON?JSON:void 0,"%Map%":"undefined"==typeof Map?void 0:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&f?l((new Map)[Symbol.iterator]()):void 0,"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?void 0:Promise,"%Proxy%":"undefined"==typeof Proxy?void 0:Proxy,"%RangeError%":RangeError,"%ReferenceError%":ReferenceError,"%Reflect%":"undefined"==typeof Reflect?void 0:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?void 0:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&f?l((new Set)[Symbol.iterator]()):void 0,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?void 0:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":f?l(""[Symbol.iterator]()):void 0,"%Symbol%":f?Symbol:void 0,"%SyntaxError%":n,"%ThrowTypeError%":c,"%TypedArray%":h,"%TypeError%":i,"%Uint8Array%":"undefined"==typeof Uint8Array?void 0:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?void 0:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?void 0:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?void 0:Uint32Array,"%URIError%":URIError,"%WeakMap%":"undefined"==typeof WeakMap?void 0:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?void 0:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?void 0:WeakSet},y={"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},v=r(21),g=r(74),m=v.call(Function.call,Array.prototype.concat),b=v.call(Function.apply,Array.prototype.splice),_=v.call(Function.call,String.prototype.replace),w=v.call(Function.call,String.prototype.slice),O=v.call(Function.call,RegExp.prototype.exec),S=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,j=/\\(\\)?/g,E=function(t){var e=w(t,0,1),r=w(t,-1);if("%"===e&&"%"!==r)throw new n("invalid intrinsic syntax, expected closing `%`");if("%"===r&&"%"!==e)throw new n("invalid intrinsic syntax, expected opening `%`");var o=[];return _(t,S,(function(t,e,r,n){o[o.length]=r?_(n,j,"$1"):e||t})),o},x=function(t,e){var r,o=t;if(g(y,o)&&(o="%"+(r=y[o])[0]+"%"),g(d,o)){var s=d[o];if(s===p&&(s=function t(e){var r;if("%AsyncFunction%"===e)r=a("async function () {}");else if("%GeneratorFunction%"===e)r=a("function* () {}");else if("%AsyncGeneratorFunction%"===e)r=a("async function* () {}");else if("%AsyncGenerator%"===e){var n=t("%AsyncGeneratorFunction%");n&&(r=n.prototype)}else if("%AsyncIteratorPrototype%"===e){var o=t("%AsyncGenerator%");o&&(r=l(o.prototype))}return d[e]=r,r}(o)),void 0===s&&!e)throw new i("intrinsic "+t+" exists, but is not available. Please file an issue!");return{alias:r,name:o,value:s}}throw new n("intrinsic "+t+" does not exist!")};t.exports=function(t,e){if("string"!=typeof t||0===t.length)throw new i("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof e)throw new i('"allowMissing" argument must be a boolean');if(null===O(/^%?[^%]*%?$/g,t))throw new n("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var r=E(t),o=r.length>0?r[0]:"",a=x("%"+o+"%",e),u=a.name,c=a.value,f=!1,l=a.alias;l&&(o=l[0],b(r,m([0,1],l)));for(var p=1,h=!0;p<r.length;p+=1){var y=r[p],v=w(y,0,1),_=w(y,-1);if(('"'===v||"'"===v||"`"===v||'"'===_||"'"===_||"`"===_)&&v!==_)throw new n("property names with quotes must have matching quotes");if("constructor"!==y&&h||(f=!0),g(d,u="%"+(o+="."+y)+"%"))c=d[u];else if(null!=c){if(!(y in c)){if(!e)throw new i("base intrinsic for "+t+" exists, but the property is not available.");return}if(s&&p+1>=r.length){var S=s(c,y);c=(h=!!S)&&"get"in S&&!("originalValue"in S.get)?S.get:c[y]}else h=g(c,y),c=c[y];h&&!f&&(d[u]=c)}}return c}},function(t,e,r){"use strict";var n=r(73);t.exports=Function.prototype.bind||n},function(t,e,r){"use strict";var n=String.prototype.replace,o=/%20/g,i="RFC1738",a="RFC3986";t.exports={default:a,formatters:{RFC1738:function(t){return n.call(t,o,"+")},RFC3986:function(t){return String(t)}},RFC1738:i,RFC3986:a}},function(t,e,r){var n=r(7),o=n.Buffer;function i(t,e){for(var r in t)e[r]=t[r]}function a(t,e,r){return o(t,e,r)}o.from&&o.alloc&&o.allocUnsafe&&o.allocUnsafeSlow?t.exports=n:(i(n,e),e.Buffer=a),i(o,a),a.from=function(t,e,r){if("number"==typeof t)throw new TypeError("Argument must not be a number");return o(t,e,r)},a.alloc=function(t,e,r){if("number"!=typeof t)throw new TypeError("Argument must be a number");var n=o(t);return void 0!==e?"string"==typeof r?n.fill(e,r):n.fill(e):n.fill(0),n},a.allocUnsafe=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return o(t)},a.allocUnsafeSlow=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return n.SlowBuffer(t)}},function(t,e,r){"use strict";var n=r(80),o=r(81),i=r(82),a=r(83),s=r(84);e.a=function(t){var e={};for(var r in t.headers){e[r.toLowerCase()]=t.headers[r]}if(t.headers=e,null==t.headers["content-type"]||"string"==typeof t.data.results)return t;var u=t.data.iconfig.link;return function(t,e){var r=!1;e.data.hasOwnProperty("iconfig")&&null!=e.data.iconfig.storeConfig&&(r=e.data.iconfig.storeConfig.casProxy);("self"===t.rel&&"application/vnd.sas.cas.session.summary"===t.type||"createSession"===t.rel&&"application/vnd.sas.cas.session"===t.responseType)&&(e.data.results.links=e.data.results.links.concat(function(t,e,r){return e.links=e.links.map((function(e){return e.casHttp=t.casHttp,e.server=t.server,e})),function(t,e,r){var n="/casProxy/servers/".concat(t.server,"/cas/sessions/").concat(e),o="/".concat(t.casHttp,"/cas/sessions/").concat(e);return i(n,o,t.casHttp,t.server,r)}(t,e.id,r).concat(e.links)}(t,e.data.results,r)),e.data.results.name2=e.data.results.name.split(":")[0]);if(t.hasOwnProperty("itemType")&&"application/vnd.sas.cas.session.summary"===t.itemType)for(var n=e.data.results.items,o="/".concat(t.casHttp,"/cas/sessions"),s=0;s<n.length;s++){var u=n[s],c="/casProxy/servers/".concat(t.server,"/cas/sessions/").concat(u.id),f="".concat(o,"/").concat(u.id);u.links=u.links.map((function(e){return e.casHttp=t.casHttp,e.server=t.server,e})),u.links=u.links.concat(i(c,f,t.casHttp,t.server,r))}t.hasOwnProperty("customHandling")&&(e.data.results=a(e.data.results),e.data.results={items:Object.assign({},e.data.results)},e.data.results.customHandling=t.customHandling);"/casManagement/"!==t.href&&"/casManagement"!==t.href||"GET"!==t.method||e.data.results.links.map((function(t){return"collection"===t.rel&&(t.title="servers",t.rel="servers",t.patch="cas"),t}));if(t.hasOwnProperty("patch")&&"servers"===t.rel)for(var l=e.data.results.items,p=function(t){var e=l[t],r=e.name,n=e.links.map((function(t){return t.casHttp="".concat(r,"-http"),t.server=r,t}));e.links=n},h=0;h<l.length;h++)p(h)}(u,t),u.href.indexOf("reportImages/jobs")>0&&n(t),"/reports/reports"===u.href&&"GET"===u.method&&o(t),"/mlPipelineAutomation/projects"===u.href.split("?")[0]&&"GET"===u.method&&s(t),t}},function(t,e){var r={}.toString;t.exports=Array.isArray||function(t){return"[object Array]"==r.call(t)}},function(t,e,r){"use strict";t.exports=function(t,e){return function(){for(var r=new Array(arguments.length),n=0;n<r.length;n++)r[n]=arguments[n];return t.apply(e,r)}}},function(t,e,r){"use strict";var n=r(3);function o(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}t.exports=function(t,e,r){if(!e)return t;var i;if(r)i=r(e);else if(n.isURLSearchParams(e))i=e.toString();else{var a=[];n.forEach(e,(function(t,e){null!=t&&(n.isArray(t)?e+="[]":t=[t],n.forEach(t,(function(t){n.isDate(t)?t=t.toISOString():n.isObject(t)&&(t=JSON.stringify(t)),a.push(o(e)+"="+o(t))})))})),i=a.join("&")}if(i){var s=t.indexOf("#");-1!==s&&(t=t.slice(0,s)),t+=(-1===t.indexOf("?")?"?":"&")+i}return t}},function(t,e,r){"use strict";t.exports=function(t,e,r,n,o){return t.config=e,r&&(t.code=r),t.request=n,t.response=o,t.isAxiosError=!0,t.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code,status:this.response&&this.response.status?this.response.status:null}},t}},function(t,e,r){"use strict";var n=r(3),o=r(58),i=r(59),a=r(27),s=r(60),u=r(63),c=r(64),f=r(30),l=r(14),p=r(15);t.exports=function(t){return new Promise((function(e,r){var h,d=t.data,y=t.headers,v=t.responseType;function g(){t.cancelToken&&t.cancelToken.unsubscribe(h),t.signal&&t.signal.removeEventListener("abort",h)}n.isFormData(d)&&delete y["Content-Type"];var m=new XMLHttpRequest;if(t.auth){var b=t.auth.username||"",_=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";y.Authorization="Basic "+btoa(b+":"+_)}var w=s(t.baseURL,t.url);function O(){if(m){var n="getAllResponseHeaders"in m?u(m.getAllResponseHeaders()):null,i={data:v&&"text"!==v&&"json"!==v?m.response:m.responseText,status:m.status,statusText:m.statusText,headers:n,config:t,request:m};o((function(t){e(t),g()}),(function(t){r(t),g()}),i),m=null}}if(m.open(t.method.toUpperCase(),a(w,t.params,t.paramsSerializer),!0),m.timeout=t.timeout,"onloadend"in m?m.onloadend=O:m.onreadystatechange=function(){m&&4===m.readyState&&(0!==m.status||m.responseURL&&0===m.responseURL.indexOf("file:"))&&setTimeout(O)},m.onabort=function(){m&&(r(f("Request aborted",t,"ECONNABORTED",m)),m=null)},m.onerror=function(){r(f("Network Error",t,null,m)),m=null},m.ontimeout=function(){var e=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded",n=t.transitional||l.transitional;t.timeoutErrorMessage&&(e=t.timeoutErrorMessage),r(f(e,t,n.clarifyTimeoutError?"ETIMEDOUT":"ECONNABORTED",m)),m=null},n.isStandardBrowserEnv()){var S=(t.withCredentials||c(w))&&t.xsrfCookieName?i.read(t.xsrfCookieName):void 0;S&&(y[t.xsrfHeaderName]=S)}"setRequestHeader"in m&&n.forEach(y,(function(t,e){void 0===d&&"content-type"===e.toLowerCase()?delete y[e]:m.setRequestHeader(e,t)})),n.isUndefined(t.withCredentials)||(m.withCredentials=!!t.withCredentials),v&&"json"!==v&&(m.responseType=t.responseType),"function"==typeof t.onDownloadProgress&&m.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&m.upload&&m.upload.addEventListener("progress",t.onUploadProgress),(t.cancelToken||t.signal)&&(h=function(t){m&&(r(!t||t&&t.type?new p("canceled"):t),m.abort(),m=null)},t.cancelToken&&t.cancelToken.subscribe(h),t.signal&&(t.signal.aborted?h():t.signal.addEventListener("abort",h))),d||(d=null),m.send(d)}))}},function(t,e,r){"use strict";var n=r(28);t.exports=function(t,e,r,o,i){var a=new Error(t);return n(a,e,r,o,i)}},function(t,e,r){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e,r){"use strict";var n=r(3);t.exports=function(t,e){e=e||{};var r={};function o(t,e){return n.isPlainObject(t)&&n.isPlainObject(e)?n.merge(t,e):n.isPlainObject(e)?n.merge({},e):n.isArray(e)?e.slice():e}function i(r){return n.isUndefined(e[r])?n.isUndefined(t[r])?void 0:o(void 0,t[r]):o(t[r],e[r])}function a(t){if(!n.isUndefined(e[t]))return o(void 0,e[t])}function s(r){return n.isUndefined(e[r])?n.isUndefined(t[r])?void 0:o(void 0,t[r]):o(void 0,e[r])}function u(r){return r in e?o(t[r],e[r]):r in t?o(void 0,t[r]):void 0}var c={url:a,method:a,data:a,baseURL:s,transformRequest:s,transformResponse:s,paramsSerializer:s,timeout:s,timeoutMessage:s,withCredentials:s,adapter:s,responseType:s,xsrfCookieName:s,xsrfHeaderName:s,onUploadProgress:s,onDownloadProgress:s,decompress:s,maxContentLength:s,maxBodyLength:s,transport:s,httpAgent:s,httpsAgent:s,cancelToken:s,socketPath:s,responseEncoding:s,validateStatus:u};return n.forEach(Object.keys(t).concat(Object.keys(e)),(function(t){var e=c[t]||i,o=e(t);n.isUndefined(o)&&e!==u||(r[t]=o)})),r}},function(t,e){t.exports={version:"0.24.0"}},function(t,e,r){"use strict";var n=r(22),o=Object.prototype.hasOwnProperty,i=Array.isArray,a=function(){for(var t=[],e=0;e<256;++e)t.push("%"+((e<16?"0":"")+e.toString(16)).toUpperCase());return t}(),s=function(t,e){for(var r=e&&e.plainObjects?Object.create(null):{},n=0;n<t.length;++n)void 0!==t[n]&&(r[n]=t[n]);return r};t.exports={arrayToObject:s,assign:function(t,e){return Object.keys(e).reduce((function(t,r){return t[r]=e[r],t}),t)},combine:function(t,e){return[].concat(t,e)},compact:function(t){for(var e=[{obj:{o:t},prop:"o"}],r=[],n=0;n<e.length;++n)for(var o=e[n],a=o.obj[o.prop],s=Object.keys(a),u=0;u<s.length;++u){var c=s[u],f=a[c];"object"==typeof f&&null!==f&&-1===r.indexOf(f)&&(e.push({obj:a,prop:c}),r.push(f))}return function(t){for(;t.length>1;){var e=t.pop(),r=e.obj[e.prop];if(i(r)){for(var n=[],o=0;o<r.length;++o)void 0!==r[o]&&n.push(r[o]);e.obj[e.prop]=n}}}(e),t},decode:function(t,e,r){var n=t.replace(/\+/g," ");if("iso-8859-1"===r)return n.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(n)}catch(t){return n}},encode:function(t,e,r,o,i){if(0===t.length)return t;var s=t;if("symbol"==typeof t?s=Symbol.prototype.toString.call(t):"string"!=typeof t&&(s=String(t)),"iso-8859-1"===r)return escape(s).replace(/%u[0-9a-f]{4}/gi,(function(t){return"%26%23"+parseInt(t.slice(2),16)+"%3B"}));for(var u="",c=0;c<s.length;++c){var f=s.charCodeAt(c);45===f||46===f||95===f||126===f||f>=48&&f<=57||f>=65&&f<=90||f>=97&&f<=122||i===n.RFC1738&&(40===f||41===f)?u+=s.charAt(c):f<128?u+=a[f]:f<2048?u+=a[192|f>>6]+a[128|63&f]:f<55296||f>=57344?u+=a[224|f>>12]+a[128|f>>6&63]+a[128|63&f]:(c+=1,f=65536+((1023&f)<<10|1023&s.charCodeAt(c)),u+=a[240|f>>18]+a[128|f>>12&63]+a[128|f>>6&63]+a[128|63&f])}return u},isBuffer:function(t){return!(!t||"object"!=typeof t)&&!!(t.constructor&&t.constructor.isBuffer&&t.constructor.isBuffer(t))},isRegExp:function(t){return"[object RegExp]"===Object.prototype.toString.call(t)},maybeMap:function(t,e){if(i(t)){for(var r=[],n=0;n<t.length;n+=1)r.push(e(t[n]));return r}return e(t)},merge:function t(e,r,n){if(!r)return e;if("object"!=typeof r){if(i(e))e.push(r);else{if(!e||"object"!=typeof e)return[e,r];(n&&(n.plainObjects||n.allowPrototypes)||!o.call(Object.prototype,r))&&(e[r]=!0)}return e}if(!e||"object"!=typeof e)return[e].concat(r);var a=e;return i(e)&&!i(r)&&(a=s(e,n)),i(e)&&i(r)?(r.forEach((function(r,i){if(o.call(e,i)){var a=e[i];a&&"object"==typeof a&&r&&"object"==typeof r?e[i]=t(a,r,n):e.push(r)}else e[i]=r})),e):Object.keys(r).reduce((function(e,i){var a=r[i];return o.call(e,i)?e[i]=t(e[i],a,n):e[i]=a,e}),a)}}},function(t,e){e.fetch=s(Object({}).fetch)&&s(Object({}).ReadableStream),e.writableStream=s(Object({}).WritableStream),e.abortController=s(Object({}).AbortController),e.blobConstructor=!1;try{new Blob([new ArrayBuffer(1)]),e.blobConstructor=!0}catch(t){}var r;function n(){if(void 0!==r)return r;if(Object({}).XMLHttpRequest){r=new Object({}).XMLHttpRequest();try{r.open("GET",Object({}).XDomainRequest?"/":"https://example.com")}catch(t){r=null}}else r=null;return r}function o(t){var e=n();if(!e)return!1;try{return e.responseType=t,e.responseType===t}catch(t){}return!1}var i=void 0!==Object({}).ArrayBuffer,a=i&&s(Object({}).ArrayBuffer.prototype.slice);function s(t){return"function"==typeof t}e.arraybuffer=e.fetch||i&&o("arraybuffer"),e.msstream=!e.fetch&&a&&o("ms-stream"),e.mozchunkedarraybuffer=!e.fetch&&i&&o("moz-chunked-arraybuffer"),e.overrideMimeType=e.fetch||!!n()&&s(n().overrideMimeType),e.vbArray=s(Object({}).VBArray),r=null},function(t,e,r){(function(t,n){var o=r(35),i=r(9),a=r(37),s=e.readyStates={UNSENT:0,OPENED:1,HEADERS_RECEIVED:2,LOADING:3,DONE:4},u=e.IncomingMessage=function(e,r,i,s){var u=this;if(a.Readable.call(u),u._mode=i,u.headers={},u.rawHeaders=[],u.trailers={},u.rawTrailers=[],u.on("end",(function(){t.nextTick((function(){u.emit("close")}))})),"fetch"===i){if(u._fetchResponse=r,u.url=r.url,u.statusCode=r.status,u.statusMessage=r.statusText,r.headers.forEach((function(t,e){u.headers[e.toLowerCase()]=t,u.rawHeaders.push(e,t)})),o.writableStream){var c=new WritableStream({write:function(t){return new Promise((function(e,r){u._destroyed?r():u.push(new n(t))?e():u._resumeFetch=e}))},close:function(){Object({}).clearTimeout(s),u._destroyed||u.push(null)},abort:function(t){u._destroyed||u.emit("error",t)}});try{return void r.body.pipeTo(c).catch((function(t){Object({}).clearTimeout(s),u._destroyed||u.emit("error",t)}))}catch(t){}}var f=r.body.getReader();!function t(){f.read().then((function(e){if(!u._destroyed){if(e.done)return Object({}).clearTimeout(s),void u.push(null);u.push(new n(e.value)),t()}})).catch((function(t){Object({}).clearTimeout(s),u._destroyed||u.emit("error",t)}))}()}else{if(u._xhr=e,u._pos=0,u.url=e.responseURL,u.statusCode=e.status,u.statusMessage=e.statusText,e.getAllResponseHeaders().split(/\r?\n/).forEach((function(t){var e=t.match(/^([^:]+):\s*(.*)/);if(e){var r=e[1].toLowerCase();"set-cookie"===r?(void 0===u.headers[r]&&(u.headers[r]=[]),u.headers[r].push(e[2])):void 0!==u.headers[r]?u.headers[r]+=", "+e[2]:u.headers[r]=e[2],u.rawHeaders.push(e[1],e[2])}})),u._charset="x-user-defined",!o.overrideMimeType){var l=u.rawHeaders["mime-type"];if(l){var p=l.match(/;\s*charset=([^;])(;|$)/);p&&(u._charset=p[1].toLowerCase())}u._charset||(u._charset="utf-8")}}};i(u,a.Readable),u.prototype._read=function(){var t=this._resumeFetch;t&&(this._resumeFetch=null,t())},u.prototype._onXHRProgress=function(){var t=this,e=t._xhr,r=null;switch(t._mode){case"text:vbarray":if(e.readyState!==s.DONE)break;try{r=new Object({}).VBArray(e.responseBody).toArray()}catch(t){}if(null!==r){t.push(new n(r));break}case"text":try{r=e.responseText}catch(e){t._mode="text:vbarray";break}if(r.length>t._pos){var o=r.substr(t._pos);if("x-user-defined"===t._charset){for(var i=new n(o.length),a=0;a<o.length;a++)i[a]=255&o.charCodeAt(a);t.push(i)}else t.push(o,t._charset);t._pos=r.length}break;case"arraybuffer":if(e.readyState!==s.DONE||!e.response)break;r=e.response,t.push(new n(new Uint8Array(r)));break;case"moz-chunked-arraybuffer":if(r=e.response,e.readyState!==s.LOADING||!r)break;t.push(new n(new Uint8Array(r)));break;case"ms-stream":if(r=e.response,e.readyState!==s.LOADING)break;var u=new Object({}).MSStreamReader();u.onprogress=function(){u.result.byteLength>t._pos&&(t.push(new n(new Uint8Array(u.result.slice(t._pos)))),t._pos=u.result.byteLength)},u.onload=function(){t.push(null)},u.readAsArrayBuffer(r)}t._xhr.readyState===s.DONE&&"ms-stream"!==t._mode&&t.push(null)}}).call(this,r(8),r(7).Buffer)},function(t,e,r){(e=t.exports=r(38)).Stream=e,e.Readable=e,e.Writable=r(42),e.Duplex=r(11),e.Transform=r(44),e.PassThrough=r(94)},function(t,e,r){"use strict";(function(e){var n=r(16);t.exports=m;var o,i=r(25);m.ReadableState=g;r(39).EventEmitter;var a=function(t,e){return t.listeners(e).length},s=r(40),u=r(23).Buffer,c=Object({}).Uint8Array||function(){};var f=Object.create(r(13));f.inherits=r(9);var l=r(87),p=void 0;p=l&&l.debuglog?l.debuglog("stream"):function(){};var h,d=r(88),y=r(41);f.inherits(m,s);var v=["error","close","destroy","pause","resume"];function g(t,e){t=t||{};var n=e instanceof(o=o||r(11));this.objectMode=!!t.objectMode,n&&(this.objectMode=this.objectMode||!!t.readableObjectMode);var i=t.highWaterMark,a=t.readableHighWaterMark,s=this.objectMode?16:16384;this.highWaterMark=i||0===i?i:n&&(a||0===a)?a:s,this.highWaterMark=Math.floor(this.highWaterMark),this.buffer=new d,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.destroyed=!1,this.defaultEncoding=t.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,t.encoding&&(h||(h=r(43).StringDecoder),this.decoder=new h(t.encoding),this.encoding=t.encoding)}function m(t){if(o=o||r(11),!(this instanceof m))return new m(t);this._readableState=new g(t,this),this.readable=!0,t&&("function"==typeof t.read&&(this._read=t.read),"function"==typeof t.destroy&&(this._destroy=t.destroy)),s.call(this)}function b(t,e,r,n,o){var i,a=t._readableState;null===e?(a.reading=!1,function(t,e){if(e.ended)return;if(e.decoder){var r=e.decoder.end();r&&r.length&&(e.buffer.push(r),e.length+=e.objectMode?1:r.length)}e.ended=!0,O(t)}(t,a)):(o||(i=function(t,e){var r;n=e,u.isBuffer(n)||n instanceof c||"string"==typeof e||void 0===e||t.objectMode||(r=new TypeError("Invalid non-string/buffer chunk"));var n;return r}(a,e)),i?t.emit("error",i):a.objectMode||e&&e.length>0?("string"==typeof e||a.objectMode||Object.getPrototypeOf(e)===u.prototype||(e=function(t){return u.from(t)}(e)),n?a.endEmitted?t.emit("error",new Error("stream.unshift() after end event")):_(t,a,e,!0):a.ended?t.emit("error",new Error("stream.push() after EOF")):(a.reading=!1,a.decoder&&!r?(e=a.decoder.write(e),a.objectMode||0!==e.length?_(t,a,e,!1):j(t,a)):_(t,a,e,!1))):n||(a.reading=!1));return function(t){return!t.ended&&(t.needReadable||t.length<t.highWaterMark||0===t.length)}(a)}function _(t,e,r,n){e.flowing&&0===e.length&&!e.sync?(t.emit("data",r),t.read(0)):(e.length+=e.objectMode?1:r.length,n?e.buffer.unshift(r):e.buffer.push(r),e.needReadable&&O(t)),j(t,e)}Object.defineProperty(m.prototype,"destroyed",{get:function(){return void 0!==this._readableState&&this._readableState.destroyed},set:function(t){this._readableState&&(this._readableState.destroyed=t)}}),m.prototype.destroy=y.destroy,m.prototype._undestroy=y.undestroy,m.prototype._destroy=function(t,e){this.push(null),e(t)},m.prototype.push=function(t,e){var r,n=this._readableState;return n.objectMode?r=!0:"string"==typeof t&&((e=e||n.defaultEncoding)!==n.encoding&&(t=u.from(t,e),e=""),r=!0),b(this,t,e,!1,r)},m.prototype.unshift=function(t){return b(this,t,null,!0,!1)},m.prototype.isPaused=function(){return!1===this._readableState.flowing},m.prototype.setEncoding=function(t){return h||(h=r(43).StringDecoder),this._readableState.decoder=new h(t),this._readableState.encoding=t,this};function w(t,e){return t<=0||0===e.length&&e.ended?0:e.objectMode?1:t!=t?e.flowing&&e.length?e.buffer.head.data.length:e.length:(t>e.highWaterMark&&(e.highWaterMark=function(t){return t>=8388608?t=8388608:(t--,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,t|=t>>>16,t++),t}(t)),t<=e.length?t:e.ended?e.length:(e.needReadable=!0,0))}function O(t){var e=t._readableState;e.needReadable=!1,e.emittedReadable||(p("emitReadable",e.flowing),e.emittedReadable=!0,e.sync?n.nextTick(S,t):S(t))}function S(t){p("emit readable"),t.emit("readable"),P(t)}function j(t,e){e.readingMore||(e.readingMore=!0,n.nextTick(E,t,e))}function E(t,e){for(var r=e.length;!e.reading&&!e.flowing&&!e.ended&&e.length<e.highWaterMark&&(p("maybeReadMore read 0"),t.read(0),r!==e.length);)r=e.length;e.readingMore=!1}function x(t){p("readable nexttick read 0"),t.read(0)}function A(t,e){e.reading||(p("resume read 0"),t.read(0)),e.resumeScheduled=!1,e.awaitDrain=0,t.emit("resume"),P(t),e.flowing&&!e.reading&&t.read(0)}function P(t){var e=t._readableState;for(p("flow",e.flowing);e.flowing&&null!==t.read(););}function k(t,e){return 0===e.length?null:(e.objectMode?r=e.buffer.shift():!t||t>=e.length?(r=e.decoder?e.buffer.join(""):1===e.buffer.length?e.buffer.head.data:e.buffer.concat(e.length),e.buffer.clear()):r=function(t,e,r){var n;t<e.head.data.length?(n=e.head.data.slice(0,t),e.head.data=e.head.data.slice(t)):n=t===e.head.data.length?e.shift():r?function(t,e){var r=e.head,n=1,o=r.data;t-=o.length;for(;r=r.next;){var i=r.data,a=t>i.length?i.length:t;if(a===i.length?o+=i:o+=i.slice(0,t),0===(t-=a)){a===i.length?(++n,r.next?e.head=r.next:e.head=e.tail=null):(e.head=r,r.data=i.slice(a));break}++n}return e.length-=n,o}(t,e):function(t,e){var r=u.allocUnsafe(t),n=e.head,o=1;n.data.copy(r),t-=n.data.length;for(;n=n.next;){var i=n.data,a=t>i.length?i.length:t;if(i.copy(r,r.length-t,0,a),0===(t-=a)){a===i.length?(++o,n.next?e.head=n.next:e.head=e.tail=null):(e.head=n,n.data=i.slice(a));break}++o}return e.length-=o,r}(t,e);return n}(t,e.buffer,e.decoder),r);var r}function T(t){var e=t._readableState;if(e.length>0)throw new Error('"endReadable()" called on non-empty stream');e.endEmitted||(e.ended=!0,n.nextTick(I,e,t))}function I(t,e){t.endEmitted||0!==t.length||(t.endEmitted=!0,e.readable=!1,e.emit("end"))}function R(t,e){for(var r=0,n=t.length;r<n;r++)if(t[r]===e)return r;return-1}m.prototype.read=function(t){p("read",t),t=parseInt(t,10);var e=this._readableState,r=t;if(0!==t&&(e.emittedReadable=!1),0===t&&e.needReadable&&(e.length>=e.highWaterMark||e.ended))return p("read: emitReadable",e.length,e.ended),0===e.length&&e.ended?T(this):O(this),null;if(0===(t=w(t,e))&&e.ended)return 0===e.length&&T(this),null;var n,o=e.needReadable;return p("need readable",o),(0===e.length||e.length-t<e.highWaterMark)&&p("length less than watermark",o=!0),e.ended||e.reading?p("reading or ended",o=!1):o&&(p("do read"),e.reading=!0,e.sync=!0,0===e.length&&(e.needReadable=!0),this._read(e.highWaterMark),e.sync=!1,e.reading||(t=w(r,e))),null===(n=t>0?k(t,e):null)?(e.needReadable=!0,t=0):e.length-=t,0===e.length&&(e.ended||(e.needReadable=!0),r!==t&&e.ended&&T(this)),null!==n&&this.emit("data",n),n},m.prototype._read=function(t){this.emit("error",new Error("_read() is not implemented"))},m.prototype.pipe=function(t,r){var o=this,s=this._readableState;switch(s.pipesCount){case 0:s.pipes=t;break;case 1:s.pipes=[s.pipes,t];break;default:s.pipes.push(t)}s.pipesCount+=1,p("pipe count=%d opts=%j",s.pipesCount,r);var u=(!r||!1!==r.end)&&t!==e.stdout&&t!==e.stderr?f:b;function c(e,r){p("onunpipe"),e===o&&r&&!1===r.hasUnpiped&&(r.hasUnpiped=!0,p("cleanup"),t.removeListener("close",g),t.removeListener("finish",m),t.removeListener("drain",l),t.removeListener("error",v),t.removeListener("unpipe",c),o.removeListener("end",f),o.removeListener("end",b),o.removeListener("data",y),h=!0,!s.awaitDrain||t._writableState&&!t._writableState.needDrain||l())}function f(){p("onend"),t.end()}s.endEmitted?n.nextTick(u):o.once("end",u),t.on("unpipe",c);var l=function(t){return function(){var e=t._readableState;p("pipeOnDrain",e.awaitDrain),e.awaitDrain&&e.awaitDrain--,0===e.awaitDrain&&a(t,"data")&&(e.flowing=!0,P(t))}}(o);t.on("drain",l);var h=!1;var d=!1;function y(e){p("ondata"),d=!1,!1!==t.write(e)||d||((1===s.pipesCount&&s.pipes===t||s.pipesCount>1&&-1!==R(s.pipes,t))&&!h&&(p("false write response, pause",o._readableState.awaitDrain),o._readableState.awaitDrain++,d=!0),o.pause())}function v(e){p("onerror",e),b(),t.removeListener("error",v),0===a(t,"error")&&t.emit("error",e)}function g(){t.removeListener("finish",m),b()}function m(){p("onfinish"),t.removeListener("close",g),b()}function b(){p("unpipe"),o.unpipe(t)}return o.on("data",y),function(t,e,r){if("function"==typeof t.prependListener)return t.prependListener(e,r);t._events&&t._events[e]?i(t._events[e])?t._events[e].unshift(r):t._events[e]=[r,t._events[e]]:t.on(e,r)}(t,"error",v),t.once("close",g),t.once("finish",m),t.emit("pipe",o),s.flowing||(p("pipe resume"),o.resume()),t},m.prototype.unpipe=function(t){var e=this._readableState,r={hasUnpiped:!1};if(0===e.pipesCount)return this;if(1===e.pipesCount)return t&&t!==e.pipes||(t||(t=e.pipes),e.pipes=null,e.pipesCount=0,e.flowing=!1,t&&t.emit("unpipe",this,r)),this;if(!t){var n=e.pipes,o=e.pipesCount;e.pipes=null,e.pipesCount=0,e.flowing=!1;for(var i=0;i<o;i++)n[i].emit("unpipe",this,r);return this}var a=R(e.pipes,t);return-1===a||(e.pipes.splice(a,1),e.pipesCount-=1,1===e.pipesCount&&(e.pipes=e.pipes[0]),t.emit("unpipe",this,r)),this},m.prototype.on=function(t,e){var r=s.prototype.on.call(this,t,e);if("data"===t)!1!==this._readableState.flowing&&this.resume();else if("readable"===t){var o=this._readableState;o.endEmitted||o.readableListening||(o.readableListening=o.needReadable=!0,o.emittedReadable=!1,o.reading?o.length&&O(this):n.nextTick(x,this))}return r},m.prototype.addListener=m.prototype.on,m.prototype.resume=function(){var t=this._readableState;return t.flowing||(p("resume"),t.flowing=!0,function(t,e){e.resumeScheduled||(e.resumeScheduled=!0,n.nextTick(A,t,e))}(this,t)),this},m.prototype.pause=function(){return p("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(p("pause"),this._readableState.flowing=!1,this.emit("pause")),this},m.prototype.wrap=function(t){var e=this,r=this._readableState,n=!1;for(var o in t.on("end",(function(){if(p("wrapped end"),r.decoder&&!r.ended){var t=r.decoder.end();t&&t.length&&e.push(t)}e.push(null)})),t.on("data",(function(o){(p("wrapped data"),r.decoder&&(o=r.decoder.write(o)),r.objectMode&&null==o)||(r.objectMode||o&&o.length)&&(e.push(o)||(n=!0,t.pause()))})),t)void 0===this[o]&&"function"==typeof t[o]&&(this[o]=function(e){return function(){return t[e].apply(t,arguments)}}(o));for(var i=0;i<v.length;i++)t.on(v[i],this.emit.bind(this,v[i]));return this._read=function(e){p("wrapped _read",e),n&&(n=!1,t.resume())},this},Object.defineProperty(m.prototype,"readableHighWaterMark",{enumerable:!1,get:function(){return this._readableState.highWaterMark}}),m._fromList=k}).call(this,r(8))},function(t,e,r){"use strict";var n,o="object"==typeof Reflect?Reflect:null,i=o&&"function"==typeof o.apply?o.apply:function(t,e,r){return Function.prototype.apply.call(t,e,r)};n=o&&"function"==typeof o.ownKeys?o.ownKeys:Object.getOwnPropertySymbols?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:function(t){return Object.getOwnPropertyNames(t)};var a=Number.isNaN||function(t){return t!=t};function s(){s.init.call(this)}t.exports=s,t.exports.once=function(t,e){return new Promise((function(r,n){function o(r){t.removeListener(e,i),n(r)}function i(){"function"==typeof t.removeListener&&t.removeListener("error",o),r([].slice.call(arguments))}g(t,e,i,{once:!0}),"error"!==e&&function(t,e,r){"function"==typeof t.on&&g(t,"error",e,r)}(t,o,{once:!0})}))},s.EventEmitter=s,s.prototype._events=void 0,s.prototype._eventsCount=0,s.prototype._maxListeners=void 0;var u=10;function c(t){if("function"!=typeof t)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}function f(t){return void 0===t._maxListeners?s.defaultMaxListeners:t._maxListeners}function l(t,e,r,n){var o,i,a,s;if(c(r),void 0===(i=t._events)?(i=t._events=Object.create(null),t._eventsCount=0):(void 0!==i.newListener&&(t.emit("newListener",e,r.listener?r.listener:r),i=t._events),a=i[e]),void 0===a)a=i[e]=r,++t._eventsCount;else if("function"==typeof a?a=i[e]=n?[r,a]:[a,r]:n?a.unshift(r):a.push(r),(o=f(t))>0&&a.length>o&&!a.warned){a.warned=!0;var u=new Error("Possible EventEmitter memory leak detected. "+a.length+" "+String(e)+" listeners added. Use emitter.setMaxListeners() to increase limit");u.name="MaxListenersExceededWarning",u.emitter=t,u.type=e,u.count=a.length,s=u,console&&console.warn&&console.warn(s)}return t}function p(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function h(t,e,r){var n={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},o=p.bind(n);return o.listener=r,n.wrapFn=o,o}function d(t,e,r){var n=t._events;if(void 0===n)return[];var o=n[e];return void 0===o?[]:"function"==typeof o?r?[o.listener||o]:[o]:r?function(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}(o):v(o,o.length)}function y(t){var e=this._events;if(void 0!==e){var r=e[t];if("function"==typeof r)return 1;if(void 0!==r)return r.length}return 0}function v(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t[n];return r}function g(t,e,r,n){if("function"==typeof t.on)n.once?t.once(e,r):t.on(e,r);else{if("function"!=typeof t.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof t);t.addEventListener(e,(function o(i){n.once&&t.removeEventListener(e,o),r(i)}))}}Object.defineProperty(s,"defaultMaxListeners",{enumerable:!0,get:function(){return u},set:function(t){if("number"!=typeof t||t<0||a(t))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+t+".");u=t}}),s.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},s.prototype.setMaxListeners=function(t){if("number"!=typeof t||t<0||a(t))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+t+".");return this._maxListeners=t,this},s.prototype.getMaxListeners=function(){return f(this)},s.prototype.emit=function(t){for(var e=[],r=1;r<arguments.length;r++)e.push(arguments[r]);var n="error"===t,o=this._events;if(void 0!==o)n=n&&void 0===o.error;else if(!n)return!1;if(n){var a;if(e.length>0&&(a=e[0]),a instanceof Error)throw a;var s=new Error("Unhandled error."+(a?" ("+a.message+")":""));throw s.context=a,s}var u=o[t];if(void 0===u)return!1;if("function"==typeof u)i(u,this,e);else{var c=u.length,f=v(u,c);for(r=0;r<c;++r)i(f[r],this,e)}return!0},s.prototype.addListener=function(t,e){return l(this,t,e,!1)},s.prototype.on=s.prototype.addListener,s.prototype.prependListener=function(t,e){return l(this,t,e,!0)},s.prototype.once=function(t,e){return c(e),this.on(t,h(this,t,e)),this},s.prototype.prependOnceListener=function(t,e){return c(e),this.prependListener(t,h(this,t,e)),this},s.prototype.removeListener=function(t,e){var r,n,o,i,a;if(c(e),void 0===(n=this._events))return this;if(void 0===(r=n[t]))return this;if(r===e||r.listener===e)0==--this._eventsCount?this._events=Object.create(null):(delete n[t],n.removeListener&&this.emit("removeListener",t,r.listener||e));else if("function"!=typeof r){for(o=-1,i=r.length-1;i>=0;i--)if(r[i]===e||r[i].listener===e){a=r[i].listener,o=i;break}if(o<0)return this;0===o?r.shift():function(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}(r,o),1===r.length&&(n[t]=r[0]),void 0!==n.removeListener&&this.emit("removeListener",t,a||e)}return this},s.prototype.off=s.prototype.removeListener,s.prototype.removeAllListeners=function(t){var e,r,n;if(void 0===(r=this._events))return this;if(void 0===r.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==r[t]&&(0==--this._eventsCount?this._events=Object.create(null):delete r[t]),this;if(0===arguments.length){var o,i=Object.keys(r);for(n=0;n<i.length;++n)"removeListener"!==(o=i[n])&&this.removeAllListeners(o);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(e=r[t]))this.removeListener(t,e);else if(void 0!==e)for(n=e.length-1;n>=0;n--)this.removeListener(t,e[n]);return this},s.prototype.listeners=function(t){return d(this,t,!0)},s.prototype.rawListeners=function(t){return d(this,t,!1)},s.listenerCount=function(t,e){return"function"==typeof t.listenerCount?t.listenerCount(e):y.call(t,e)},s.prototype.listenerCount=y,s.prototype.eventNames=function(){return this._eventsCount>0?n(this._events):[]}},function(t,e,r){t.exports=r(39).EventEmitter},function(t,e,r){"use strict";var n=r(16);function o(t,e){t.emit("error",e)}t.exports={destroy:function(t,e){var r=this,i=this._readableState&&this._readableState.destroyed,a=this._writableState&&this._writableState.destroyed;return i||a?(e?e(t):!t||this._writableState&&this._writableState.errorEmitted||n.nextTick(o,this,t),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(t||null,(function(t){!e&&t?(n.nextTick(o,r,t),r._writableState&&(r._writableState.errorEmitted=!0)):e&&e(t)})),this)},undestroy:function(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)}}},function(t,e,r){"use strict";(function(e,n){var o=r(16);function i(t){var e=this;this.next=null,this.entry=null,this.finish=function(){!function(t,e,r){var n=t.entry;t.entry=null;for(;n;){var o=n.callback;e.pendingcb--,o(r),n=n.next}e.corkedRequestsFree?e.corkedRequestsFree.next=t:e.corkedRequestsFree=t}(e,t)}}t.exports=g;var a,s=!e.browser&&["v0.10","v0.9."].indexOf(e.version.slice(0,5))>-1?n:o.nextTick;g.WritableState=v;var u=Object.create(r(13));u.inherits=r(9);var c={deprecate:r(92)},f=r(40),l=r(23).Buffer,p=Object({}).Uint8Array||function(){};var h,d=r(41);function y(){}function v(t,e){a=a||r(11),t=t||{};var n=e instanceof a;this.objectMode=!!t.objectMode,n&&(this.objectMode=this.objectMode||!!t.writableObjectMode);var u=t.highWaterMark,c=t.writableHighWaterMark,f=this.objectMode?16:16384;this.highWaterMark=u||0===u?u:n&&(c||0===c)?c:f,this.highWaterMark=Math.floor(this.highWaterMark),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var l=!1===t.decodeStrings;this.decodeStrings=!l,this.defaultEncoding=t.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(t){!function(t,e){var r=t._writableState,n=r.sync,i=r.writecb;if(function(t){t.writing=!1,t.writecb=null,t.length-=t.writelen,t.writelen=0}(r),e)!function(t,e,r,n,i){--e.pendingcb,r?(o.nextTick(i,n),o.nextTick(S,t,e),t._writableState.errorEmitted=!0,t.emit("error",n)):(i(n),t._writableState.errorEmitted=!0,t.emit("error",n),S(t,e))}(t,r,n,e,i);else{var a=w(r);a||r.corked||r.bufferProcessing||!r.bufferedRequest||_(t,r),n?s(b,t,r,a,i):b(t,r,a,i)}}(e,t)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.bufferedRequestCount=0,this.corkedRequestsFree=new i(this)}function g(t){if(a=a||r(11),!(h.call(g,this)||this instanceof a))return new g(t);this._writableState=new v(t,this),this.writable=!0,t&&("function"==typeof t.write&&(this._write=t.write),"function"==typeof t.writev&&(this._writev=t.writev),"function"==typeof t.destroy&&(this._destroy=t.destroy),"function"==typeof t.final&&(this._final=t.final)),f.call(this)}function m(t,e,r,n,o,i,a){e.writelen=n,e.writecb=a,e.writing=!0,e.sync=!0,r?t._writev(o,e.onwrite):t._write(o,i,e.onwrite),e.sync=!1}function b(t,e,r,n){r||function(t,e){0===e.length&&e.needDrain&&(e.needDrain=!1,t.emit("drain"))}(t,e),e.pendingcb--,n(),S(t,e)}function _(t,e){e.bufferProcessing=!0;var r=e.bufferedRequest;if(t._writev&&r&&r.next){var n=e.bufferedRequestCount,o=new Array(n),a=e.corkedRequestsFree;a.entry=r;for(var s=0,u=!0;r;)o[s]=r,r.isBuf||(u=!1),r=r.next,s+=1;o.allBuffers=u,m(t,e,!0,e.length,o,"",a.finish),e.pendingcb++,e.lastBufferedRequest=null,a.next?(e.corkedRequestsFree=a.next,a.next=null):e.corkedRequestsFree=new i(e),e.bufferedRequestCount=0}else{for(;r;){var c=r.chunk,f=r.encoding,l=r.callback;if(m(t,e,!1,e.objectMode?1:c.length,c,f,l),r=r.next,e.bufferedRequestCount--,e.writing)break}null===r&&(e.lastBufferedRequest=null)}e.bufferedRequest=r,e.bufferProcessing=!1}function w(t){return t.ending&&0===t.length&&null===t.bufferedRequest&&!t.finished&&!t.writing}function O(t,e){t._final((function(r){e.pendingcb--,r&&t.emit("error",r),e.prefinished=!0,t.emit("prefinish"),S(t,e)}))}function S(t,e){var r=w(e);return r&&(!function(t,e){e.prefinished||e.finalCalled||("function"==typeof t._final?(e.pendingcb++,e.finalCalled=!0,o.nextTick(O,t,e)):(e.prefinished=!0,t.emit("prefinish")))}(t,e),0===e.pendingcb&&(e.finished=!0,t.emit("finish"))),r}u.inherits(g,f),v.prototype.getBuffer=function(){for(var t=this.bufferedRequest,e=[];t;)e.push(t),t=t.next;return e},function(){try{Object.defineProperty(v.prototype,"buffer",{get:c.deprecate((function(){return this.getBuffer()}),"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(t){}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(h=Function.prototype[Symbol.hasInstance],Object.defineProperty(g,Symbol.hasInstance,{value:function(t){return!!h.call(this,t)||this===g&&(t&&t._writableState instanceof v)}})):h=function(t){return t instanceof this},g.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},g.prototype.write=function(t,e,r){var n,i=this._writableState,a=!1,s=!i.objectMode&&(n=t,l.isBuffer(n)||n instanceof p);return s&&!l.isBuffer(t)&&(t=function(t){return l.from(t)}(t)),"function"==typeof e&&(r=e,e=null),s?e="buffer":e||(e=i.defaultEncoding),"function"!=typeof r&&(r=y),i.ended?function(t,e){var r=new Error("write after end");t.emit("error",r),o.nextTick(e,r)}(this,r):(s||function(t,e,r,n){var i=!0,a=!1;return null===r?a=new TypeError("May not write null values to stream"):"string"==typeof r||void 0===r||e.objectMode||(a=new TypeError("Invalid non-string/buffer chunk")),a&&(t.emit("error",a),o.nextTick(n,a),i=!1),i}(this,i,t,r))&&(i.pendingcb++,a=function(t,e,r,n,o,i){if(!r){var a=function(t,e,r){t.objectMode||!1===t.decodeStrings||"string"!=typeof e||(e=l.from(e,r));return e}(e,n,o);n!==a&&(r=!0,o="buffer",n=a)}var s=e.objectMode?1:n.length;e.length+=s;var u=e.length<e.highWaterMark;u||(e.needDrain=!0);if(e.writing||e.corked){var c=e.lastBufferedRequest;e.lastBufferedRequest={chunk:n,encoding:o,isBuf:r,callback:i,next:null},c?c.next=e.lastBufferedRequest:e.bufferedRequest=e.lastBufferedRequest,e.bufferedRequestCount+=1}else m(t,e,!1,s,n,o,i);return u}(this,i,s,t,e,r)),a},g.prototype.cork=function(){this._writableState.corked++},g.prototype.uncork=function(){var t=this._writableState;t.corked&&(t.corked--,t.writing||t.corked||t.finished||t.bufferProcessing||!t.bufferedRequest||_(this,t))},g.prototype.setDefaultEncoding=function(t){if("string"==typeof t&&(t=t.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((t+"").toLowerCase())>-1))throw new TypeError("Unknown encoding: "+t);return this._writableState.defaultEncoding=t,this},Object.defineProperty(g.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),g.prototype._write=function(t,e,r){r(new Error("_write() is not implemented"))},g.prototype._writev=null,g.prototype.end=function(t,e,r){var n=this._writableState;"function"==typeof t?(r=t,t=null,e=null):"function"==typeof e&&(r=e,e=null),null!=t&&this.write(t,e),n.corked&&(n.corked=1,this.uncork()),n.ending||n.finished||function(t,e,r){e.ending=!0,S(t,e),r&&(e.finished?o.nextTick(r):t.once("finish",r));e.ended=!0,t.writable=!1}(this,n,r)},Object.defineProperty(g.prototype,"destroyed",{get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(t){this._writableState&&(this._writableState.destroyed=t)}}),g.prototype.destroy=d.destroy,g.prototype._undestroy=d.undestroy,g.prototype._destroy=function(t,e){this.end(),e(t)}}).call(this,r(8),r(90).setImmediate)},function(t,e,r){"use strict";var n=r(93).Buffer,o=n.isEncoding||function(t){switch((t=""+t)&&t.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function i(t){var e;switch(this.encoding=function(t){var e=function(t){if(!t)return"utf8";for(var e;;)switch(t){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return t;default:if(e)return;t=(""+t).toLowerCase(),e=!0}}(t);if("string"!=typeof e&&(n.isEncoding===o||!o(t)))throw new Error("Unknown encoding: "+t);return e||t}(t),this.encoding){case"utf16le":this.text=u,this.end=c,e=4;break;case"utf8":this.fillLast=s,e=4;break;case"base64":this.text=f,this.end=l,e=3;break;default:return this.write=p,void(this.end=h)}this.lastNeed=0,this.lastTotal=0,this.lastChar=n.allocUnsafe(e)}function a(t){return t<=127?0:t>>5==6?2:t>>4==14?3:t>>3==30?4:t>>6==2?-1:-2}function s(t){var e=this.lastTotal-this.lastNeed,r=function(t,e,r){if(128!=(192&e[0]))return t.lastNeed=0,"�";if(t.lastNeed>1&&e.length>1){if(128!=(192&e[1]))return t.lastNeed=1,"�";if(t.lastNeed>2&&e.length>2&&128!=(192&e[2]))return t.lastNeed=2,"�"}}(this,t);return void 0!==r?r:this.lastNeed<=t.length?(t.copy(this.lastChar,e,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(t.copy(this.lastChar,e,0,t.length),void(this.lastNeed-=t.length))}function u(t,e){if((t.length-e)%2==0){var r=t.toString("utf16le",e);if(r){var n=r.charCodeAt(r.length-1);if(n>=55296&&n<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1],r.slice(0,-1)}return r}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=t[t.length-1],t.toString("utf16le",e,t.length-1)}function c(t){var e=t&&t.length?this.write(t):"";if(this.lastNeed){var r=this.lastTotal-this.lastNeed;return e+this.lastChar.toString("utf16le",0,r)}return e}function f(t,e){var r=(t.length-e)%3;return 0===r?t.toString("base64",e):(this.lastNeed=3-r,this.lastTotal=3,1===r?this.lastChar[0]=t[t.length-1]:(this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1]),t.toString("base64",e,t.length-r))}function l(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+this.lastChar.toString("base64",0,3-this.lastNeed):e}function p(t){return t.toString(this.encoding)}function h(t){return t&&t.length?this.write(t):""}e.StringDecoder=i,i.prototype.write=function(t){if(0===t.length)return"";var e,r;if(this.lastNeed){if(void 0===(e=this.fillLast(t)))return"";r=this.lastNeed,this.lastNeed=0}else r=0;return r<t.length?e?e+this.text(t,r):this.text(t,r):e||""},i.prototype.end=function(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+"�":e},i.prototype.text=function(t,e){var r=function(t,e,r){var n=e.length-1;if(n<r)return 0;var o=a(e[n]);if(o>=0)return o>0&&(t.lastNeed=o-1),o;if(--n<r||-2===o)return 0;if((o=a(e[n]))>=0)return o>0&&(t.lastNeed=o-2),o;if(--n<r||-2===o)return 0;if((o=a(e[n]))>=0)return o>0&&(2===o?o=0:t.lastNeed=o-3),o;return 0}(this,t,e);if(!this.lastNeed)return t.toString("utf8",e);this.lastTotal=r;var n=t.length-(r-this.lastNeed);return t.copy(this.lastChar,0,n),t.toString("utf8",e,n)},i.prototype.fillLast=function(t){if(this.lastNeed<=t.length)return t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,t.length),this.lastNeed-=t.length}},function(t,e,r){"use strict";t.exports=a;var n=r(11),o=Object.create(r(13));function i(t,e){var r=this._transformState;r.transforming=!1;var n=r.writecb;if(!n)return this.emit("error",new Error("write callback called multiple times"));r.writechunk=null,r.writecb=null,null!=e&&this.push(e),n(t);var o=this._readableState;o.reading=!1,(o.needReadable||o.length<o.highWaterMark)&&this._read(o.highWaterMark)}function a(t){if(!(this instanceof a))return new a(t);n.call(this,t),this._transformState={afterTransform:i.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null},this._readableState.needReadable=!0,this._readableState.sync=!1,t&&("function"==typeof t.transform&&(this._transform=t.transform),"function"==typeof t.flush&&(this._flush=t.flush)),this.on("prefinish",s)}function s(){var t=this;"function"==typeof this._flush?this._flush((function(e,r){u(t,e,r)})):u(this,null,null)}function u(t,e,r){if(e)return t.emit("error",e);if(null!=r&&t.push(r),t._writableState.length)throw new Error("Calling transform done when ws.length != 0");if(t._transformState.transforming)throw new Error("Calling transform done when still transforming");return t.push(null)}o.inherits=r(9),o.inherits(a,n),a.prototype.push=function(t,e){return this._transformState.needTransform=!1,n.prototype.push.call(this,t,e)},a.prototype._transform=function(t,e,r){throw new Error("_transform() is not implemented")},a.prototype._write=function(t,e,r){var n=this._transformState;if(n.writecb=r,n.writechunk=t,n.writeencoding=e,!n.transforming){var o=this._readableState;(n.needTransform||o.needReadable||o.length<o.highWaterMark)&&this._read(o.highWaterMark)}},a.prototype._read=function(t){var e=this._transformState;null!==e.writechunk&&e.writecb&&!e.transforming?(e.transforming=!0,this._transform(e.writechunk,e.writeencoding,e.afterTransform)):e.needTransform=!0},a.prototype._destroy=function(t,e){var r=this;n.prototype._destroy.call(this,t,(function(t){e(t),r.emit("close")}))}},function(t,e,r){"use strict";var n=r(98),o=r(100);function i(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.query=null,this.pathname=null,this.path=null,this.href=null}e.parse=b,e.resolve=function(t,e){return b(t,!1,!0).resolve(e)},e.resolveObject=function(t,e){return t?b(t,!1,!0).resolveObject(e):e},e.format=function(t){o.isString(t)&&(t=b(t));return t instanceof i?t.format():i.prototype.format.call(t)},e.Url=i;var a=/^([a-z0-9.+-]+:)/i,s=/:[0-9]*$/,u=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,c=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),f=["'"].concat(c),l=["%","/","?",";","#"].concat(f),p=["/","?","#"],h=/^[+a-z0-9A-Z_-]{0,63}$/,d=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,y={javascript:!0,"javascript:":!0},v={javascript:!0,"javascript:":!0},g={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},m=r(101);function b(t,e,r){if(t&&o.isObject(t)&&t instanceof i)return t;var n=new i;return n.parse(t,e,r),n}i.prototype.parse=function(t,e,r){if(!o.isString(t))throw new TypeError("Parameter 'url' must be a string, not "+typeof t);var i=t.indexOf("?"),s=-1!==i&&i<t.indexOf("#")?"?":"#",c=t.split(s);c[0]=c[0].replace(/\\/g,"/");var b=t=c.join(s);if(b=b.trim(),!r&&1===t.split("#").length){var _=u.exec(b);if(_)return this.path=b,this.href=b,this.pathname=_[1],_[2]?(this.search=_[2],this.query=e?m.parse(this.search.substr(1)):this.search.substr(1)):e&&(this.search="",this.query={}),this}var w=a.exec(b);if(w){var O=(w=w[0]).toLowerCase();this.protocol=O,b=b.substr(w.length)}if(r||w||b.match(/^\/\/[^@\/]+@[^@\/]+/)){var S="//"===b.substr(0,2);!S||w&&v[w]||(b=b.substr(2),this.slashes=!0)}if(!v[w]&&(S||w&&!g[w])){for(var j,E,x=-1,A=0;A<p.length;A++){-1!==(P=b.indexOf(p[A]))&&(-1===x||P<x)&&(x=P)}-1!==(E=-1===x?b.lastIndexOf("@"):b.lastIndexOf("@",x))&&(j=b.slice(0,E),b=b.slice(E+1),this.auth=decodeURIComponent(j)),x=-1;for(A=0;A<l.length;A++){var P;-1!==(P=b.indexOf(l[A]))&&(-1===x||P<x)&&(x=P)}-1===x&&(x=b.length),this.host=b.slice(0,x),b=b.slice(x),this.parseHost(),this.hostname=this.hostname||"";var k="["===this.hostname[0]&&"]"===this.hostname[this.hostname.length-1];if(!k)for(var T=this.hostname.split(/\./),I=(A=0,T.length);A<I;A++){var R=T[A];if(R&&!R.match(h)){for(var C="",L=0,M=R.length;L<M;L++)R.charCodeAt(L)>127?C+="x":C+=R[L];if(!C.match(h)){var D=T.slice(0,A),N=T.slice(A+1),U=R.match(d);U&&(D.push(U[1]),N.unshift(U[2])),N.length&&(b="/"+N.join(".")+b),this.hostname=D.join(".");break}}}this.hostname.length>255?this.hostname="":this.hostname=this.hostname.toLowerCase(),k||(this.hostname=n.toASCII(this.hostname));var B=this.port?":"+this.port:"",q=this.hostname||"";this.host=q+B,this.href+=this.host,k&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),"/"!==b[0]&&(b="/"+b))}if(!y[O])for(A=0,I=f.length;A<I;A++){var z=f[A];if(-1!==b.indexOf(z)){var F=encodeURIComponent(z);F===z&&(F=escape(z)),b=b.split(z).join(F)}}var H=b.indexOf("#");-1!==H&&(this.hash=b.substr(H),b=b.slice(0,H));var W=b.indexOf("?");if(-1!==W?(this.search=b.substr(W),this.query=b.substr(W+1),e&&(this.query=m.parse(this.query)),b=b.slice(0,W)):e&&(this.search="",this.query={}),b&&(this.pathname=b),g[O]&&this.hostname&&!this.pathname&&(this.pathname="/"),this.pathname||this.search){B=this.pathname||"";var G=this.search||"";this.path=B+G}return this.href=this.format(),this},i.prototype.format=function(){var t=this.auth||"";t&&(t=(t=encodeURIComponent(t)).replace(/%3A/i,":"),t+="@");var e=this.protocol||"",r=this.pathname||"",n=this.hash||"",i=!1,a="";this.host?i=t+this.host:this.hostname&&(i=t+(-1===this.hostname.indexOf(":")?this.hostname:"["+this.hostname+"]"),this.port&&(i+=":"+this.port)),this.query&&o.isObject(this.query)&&Object.keys(this.query).length&&(a=m.stringify(this.query));var s=this.search||a&&"?"+a||"";return e&&":"!==e.substr(-1)&&(e+=":"),this.slashes||(!e||g[e])&&!1!==i?(i="//"+(i||""),r&&"/"!==r.charAt(0)&&(r="/"+r)):i||(i=""),n&&"#"!==n.charAt(0)&&(n="#"+n),s&&"?"!==s.charAt(0)&&(s="?"+s),e+i+(r=r.replace(/[?#]/g,(function(t){return encodeURIComponent(t)})))+(s=s.replace("#","%23"))+n},i.prototype.resolve=function(t){return this.resolveObject(b(t,!1,!0)).format()},i.prototype.resolveObject=function(t){if(o.isString(t)){var e=new i;e.parse(t,!1,!0),t=e}for(var r=new i,n=Object.keys(this),a=0;a<n.length;a++){var s=n[a];r[s]=this[s]}if(r.hash=t.hash,""===t.href)return r.href=r.format(),r;if(t.slashes&&!t.protocol){for(var u=Object.keys(t),c=0;c<u.length;c++){var f=u[c];"protocol"!==f&&(r[f]=t[f])}return g[r.protocol]&&r.hostname&&!r.pathname&&(r.path=r.pathname="/"),r.href=r.format(),r}if(t.protocol&&t.protocol!==r.protocol){if(!g[t.protocol]){for(var l=Object.keys(t),p=0;p<l.length;p++){var h=l[p];r[h]=t[h]}return r.href=r.format(),r}if(r.protocol=t.protocol,t.host||v[t.protocol])r.pathname=t.pathname;else{for(var d=(t.pathname||"").split("/");d.length&&!(t.host=d.shift()););t.host||(t.host=""),t.hostname||(t.hostname=""),""!==d[0]&&d.unshift(""),d.length<2&&d.unshift(""),r.pathname=d.join("/")}if(r.search=t.search,r.query=t.query,r.host=t.host||"",r.auth=t.auth,r.hostname=t.hostname||t.host,r.port=t.port,r.pathname||r.search){var y=r.pathname||"",m=r.search||"";r.path=y+m}return r.slashes=r.slashes||t.slashes,r.href=r.format(),r}var b=r.pathname&&"/"===r.pathname.charAt(0),_=t.host||t.pathname&&"/"===t.pathname.charAt(0),w=_||b||r.host&&t.pathname,O=w,S=r.pathname&&r.pathname.split("/")||[],j=(d=t.pathname&&t.pathname.split("/")||[],r.protocol&&!g[r.protocol]);if(j&&(r.hostname="",r.port=null,r.host&&(""===S[0]?S[0]=r.host:S.unshift(r.host)),r.host="",t.protocol&&(t.hostname=null,t.port=null,t.host&&(""===d[0]?d[0]=t.host:d.unshift(t.host)),t.host=null),w=w&&(""===d[0]||""===S[0])),_)r.host=t.host||""===t.host?t.host:r.host,r.hostname=t.hostname||""===t.hostname?t.hostname:r.hostname,r.search=t.search,r.query=t.query,S=d;else if(d.length)S||(S=[]),S.pop(),S=S.concat(d),r.search=t.search,r.query=t.query;else if(!o.isNullOrUndefined(t.search)){if(j)r.hostname=r.host=S.shift(),(k=!!(r.host&&r.host.indexOf("@")>0)&&r.host.split("@"))&&(r.auth=k.shift(),r.host=r.hostname=k.shift());return r.search=t.search,r.query=t.query,o.isNull(r.pathname)&&o.isNull(r.search)||(r.path=(r.pathname?r.pathname:"")+(r.search?r.search:"")),r.href=r.format(),r}if(!S.length)return r.pathname=null,r.search?r.path="/"+r.search:r.path=null,r.href=r.format(),r;for(var E=S.slice(-1)[0],x=(r.host||t.host||S.length>1)&&("."===E||".."===E)||""===E,A=0,P=S.length;P>=0;P--)"."===(E=S[P])?S.splice(P,1):".."===E?(S.splice(P,1),A++):A&&(S.splice(P,1),A--);if(!w&&!O)for(;A--;A)S.unshift("..");!w||""===S[0]||S[0]&&"/"===S[0].charAt(0)||S.unshift(""),x&&"/"!==S.join("/").substr(-1)&&S.push("");var k,T=""===S[0]||S[0]&&"/"===S[0].charAt(0);j&&(r.hostname=r.host=T?"":S.length?S.shift():"",(k=!!(r.host&&r.host.indexOf("@")>0)&&r.host.split("@"))&&(r.auth=k.shift(),r.host=r.hostname=k.shift()));return(w=w||r.host&&S.length)&&!T&&S.unshift(""),S.length?r.pathname=S.join("/"):(r.pathname=null,r.path=null),o.isNull(r.pathname)&&o.isNull(r.search)||(r.path=(r.pathname?r.pathname:"")+(r.search?r.search:"")),r.auth=t.auth||r.auth,r.slashes=r.slashes||t.slashes,r.href=r.format(),r},i.prototype.parseHost=function(){var t=this.host,e=s.exec(t);e&&(":"!==(e=e[0])&&(this.port=e.substr(1)),t=t.substr(0,t.length-e.length)),t&&(this.hostname=t)}},function(t,e){t.exports=function(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n},t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e,r){"use strict";var n=r(108),o=r(109),i=/^[\x00-\x20\u00a0\u1680\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff]+/,a=/[\n\r\t]/g,s=/^[A-Za-z][A-Za-z0-9+-.]*:\/\//,u=/:\d+$/,c=/^([a-z][a-z0-9.+-]*:)?(\/\/)?([\\/]+)?([\S\s]*)/i,f=/^[a-zA-Z]:/;function l(t){return(t||"").toString().replace(i,"")}var p=[["#","hash"],["?","query"],function(t,e){return y(e.protocol)?t.replace(/\\/g,"/"):t},["/","pathname"],["@","auth",1],[NaN,"host",void 0,1,1],[/:(\d*)$/,"port",void 0,1],[NaN,"hostname",void 0,1,1]],h={hash:1,query:1};function d(t){var e,r=("undefined"!=typeof window?window:Object({})).location||{},n={},o=typeof(t=t||r);if("blob:"===t.protocol)n=new g(unescape(t.pathname),{});else if("string"===o)for(e in n=new g(t,{}),h)delete n[e];else if("object"===o){for(e in t)e in h||(n[e]=t[e]);void 0===n.slashes&&(n.slashes=s.test(t.href))}return n}function y(t){return"file:"===t||"ftp:"===t||"http:"===t||"https:"===t||"ws:"===t||"wss:"===t}function v(t,e){t=(t=l(t)).replace(a,""),e=e||{};var r,n=c.exec(t),o=n[1]?n[1].toLowerCase():"",i=!!n[2],s=!!n[3],u=0;return i?s?(r=n[2]+n[3]+n[4],u=n[2].length+n[3].length):(r=n[2]+n[4],u=n[2].length):s?(r=n[3]+n[4],u=n[3].length):r=n[4],"file:"===o?u>=2&&(r=r.slice(2)):y(o)?r=n[4]:o?i&&(r=r.slice(2)):u>=2&&y(e.protocol)&&(r=n[4]),{protocol:o,slashes:i||y(o),slashesCount:u,rest:r}}function g(t,e,r){if(t=(t=l(t)).replace(a,""),!(this instanceof g))return new g(t,e,r);var i,s,u,c,h,m,b=p.slice(),_=typeof e,w=this,O=0;for("object"!==_&&"string"!==_&&(r=e,e=null),r&&"function"!=typeof r&&(r=o.parse),i=!(s=v(t||"",e=d(e))).protocol&&!s.slashes,w.slashes=s.slashes||i&&e.slashes,w.protocol=s.protocol||e.protocol||"",t=s.rest,("file:"===s.protocol&&(2!==s.slashesCount||f.test(t))||!s.slashes&&(s.protocol||s.slashesCount<2||!y(w.protocol)))&&(b[3]=[/(.*)/,"pathname"]);O<b.length;O++)"function"!=typeof(c=b[O])?(u=c[0],m=c[1],u!=u?w[m]=t:"string"==typeof u?~(h="@"===u?t.lastIndexOf(u):t.indexOf(u))&&("number"==typeof c[2]?(w[m]=t.slice(0,h),t=t.slice(h+c[2])):(w[m]=t.slice(h),t=t.slice(0,h))):(h=u.exec(t))&&(w[m]=h[1],t=t.slice(0,h.index)),w[m]=w[m]||i&&c[3]&&e[m]||"",c[4]&&(w[m]=w[m].toLowerCase())):t=c(t,w);r&&(w.query=r(w.query)),i&&e.slashes&&"/"!==w.pathname.charAt(0)&&(""!==w.pathname||""!==e.pathname)&&(w.pathname=function(t,e){if(""===t)return e;for(var r=(e||"/").split("/").slice(0,-1).concat(t.split("/")),n=r.length,o=r[n-1],i=!1,a=0;n--;)"."===r[n]?r.splice(n,1):".."===r[n]?(r.splice(n,1),a++):a&&(0===n&&(i=!0),r.splice(n,1),a--);return i&&r.unshift(""),"."!==o&&".."!==o||r.push(""),r.join("/")}(w.pathname,e.pathname)),"/"!==w.pathname.charAt(0)&&y(w.protocol)&&(w.pathname="/"+w.pathname),n(w.port,w.protocol)||(w.host=w.hostname,w.port=""),w.username=w.password="",w.auth&&(~(h=w.auth.indexOf(":"))?(w.username=w.auth.slice(0,h),w.username=encodeURIComponent(decodeURIComponent(w.username)),w.password=w.auth.slice(h+1),w.password=encodeURIComponent(decodeURIComponent(w.password))):w.username=encodeURIComponent(decodeURIComponent(w.auth)),w.auth=w.password?w.username+":"+w.password:w.username),w.origin="file:"!==w.protocol&&y(w.protocol)&&w.host?w.protocol+"//"+w.host:"null",w.href=w.toString()}g.prototype={set:function(t,e,r){var i=this;switch(t){case"query":"string"==typeof e&&e.length&&(e=(r||o.parse)(e)),i[t]=e;break;case"port":i[t]=e,n(e,i.protocol)?e&&(i.host=i.hostname+":"+e):(i.host=i.hostname,i[t]="");break;case"hostname":i[t]=e,i.port&&(e+=":"+i.port),i.host=e;break;case"host":i[t]=e,u.test(e)?(e=e.split(":"),i.port=e.pop(),i.hostname=e.join(":")):(i.hostname=e,i.port="");break;case"protocol":i.protocol=e.toLowerCase(),i.slashes=!r;break;case"pathname":case"hash":if(e){var a="pathname"===t?"/":"#";i[t]=e.charAt(0)!==a?a+e:e}else i[t]=e;break;case"username":case"password":i[t]=encodeURIComponent(e);break;case"auth":var s=e.indexOf(":");~s?(i.username=e.slice(0,s),i.username=encodeURIComponent(decodeURIComponent(i.username)),i.password=e.slice(s+1),i.password=encodeURIComponent(decodeURIComponent(i.password))):i.username=encodeURIComponent(decodeURIComponent(e))}for(var c=0;c<p.length;c++){var f=p[c];f[4]&&(i[f[1]]=i[f[1]].toLowerCase())}return i.auth=i.password?i.username+":"+i.password:i.username,i.origin="file:"!==i.protocol&&y(i.protocol)&&i.host?i.protocol+"//"+i.host:"null",i.href=i.toString(),i},toString:function(t){t&&"function"==typeof t||(t=o.stringify);var e,r=this,n=r.host,i=r.protocol;i&&":"!==i.charAt(i.length-1)&&(i+=":");var a=i+(r.protocol&&r.slashes||y(r.protocol)?"//":"");return r.username?(a+=r.username,r.password&&(a+=":"+r.password),a+="@"):r.password?(a+=":"+r.password,a+="@"):"file:"!==r.protocol&&y(r.protocol)&&!n&&"/"!==r.pathname&&(a+="@"),(":"===n[n.length-1]||u.test(r.hostname)&&!r.port)&&(n+=":"),a+=n+r.pathname,(e="object"==typeof r.query?t(r.query):r.query)&&(a+="?"!==e.charAt(0)?"?"+e:e),r.hash&&(a+=r.hash),a}},g.extractProtocol=v,g.location=d,g.trimLeft=l,g.qs=o,t.exports=g},function(t,e,r){t.exports=r(110)},function(t,e,r){var n=r(5).default;function o(){"use strict";
8
- /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */t.exports=o=function(){return e},t.exports.__esModule=!0,t.exports.default=t.exports;var e={},r=Object.prototype,i=r.hasOwnProperty,a="function"==typeof Symbol?Symbol:{},s=a.iterator||"@@iterator",u=a.asyncIterator||"@@asyncIterator",c=a.toStringTag||"@@toStringTag";function f(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{f({},"")}catch(t){f=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var o=e&&e.prototype instanceof d?e:d,i=Object.create(o.prototype),a=new x(n||[]);return i._invoke=function(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return P()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=S(a,r);if(s){if(s===h)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=p(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===h)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}(t,r,a),i}function p(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=l;var h={};function d(){}function y(){}function v(){}var g={};f(g,s,(function(){return this}));var m=Object.getPrototypeOf,b=m&&m(m(A([])));b&&b!==r&&i.call(b,s)&&(g=b);var _=v.prototype=d.prototype=Object.create(g);function w(t){["next","throw","return"].forEach((function(e){f(t,e,(function(t){return this._invoke(e,t)}))}))}function O(t,e){var r;this._invoke=function(o,a){function s(){return new e((function(r,s){!function r(o,a,s,u){var c=p(t[o],t,a);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"==n(l)&&i.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,s,u)}),(function(t){r("throw",t,s,u)})):e.resolve(l).then((function(t){f.value=t,s(f)}),(function(t){return r("throw",t,s,u)}))}u(c.arg)}(o,a,r,s)}))}return r=r?r.then(s,s):s()}}function S(t,e){var r=t.iterator[e.method];if(void 0===r){if(e.delegate=null,"throw"===e.method){if(t.iterator.return&&(e.method="return",e.arg=void 0,S(t,e),"throw"===e.method))return h;e.method="throw",e.arg=new TypeError("The iterator does not provide a 'throw' method")}return h}var n=p(r,t.iterator,e.arg);if("throw"===n.type)return e.method="throw",e.arg=n.arg,e.delegate=null,h;var o=n.arg;return o?o.done?(e[t.resultName]=o.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,h):o:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,h)}function j(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function E(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function x(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(j,this),this.reset(!0)}function A(t){if(t){var e=t[s];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var r=-1,n=function e(){for(;++r<t.length;)if(i.call(t,r))return e.value=t[r],e.done=!1,e;return e.value=void 0,e.done=!0,e};return n.next=n}}return{next:P}}function P(){return{value:void 0,done:!0}}return y.prototype=v,f(_,"constructor",v),f(v,"constructor",y),y.displayName=f(v,c,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===y||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,v):(t.__proto__=v,f(t,c,"GeneratorFunction")),t.prototype=Object.create(_),t},e.awrap=function(t){return{__await:t}},w(O.prototype),f(O.prototype,u,(function(){return this})),e.AsyncIterator=O,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new O(l(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},w(_),f(_,c,"Generator"),f(_,s,(function(){return this})),f(_,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=[];for(var r in t)e.push(r);return e.reverse(),function r(){for(;e.length;){var n=e.pop();if(n in t)return r.value=n,r.done=!1,r}return r.done=!0,r}},e.values=A,x.prototype={constructor:x,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(E),!t)for(var e in this)"t"===e.charAt(0)&&i.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function r(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n],a=o.completion;if("root"===o.tryLoc)return r("end");if(o.tryLoc<=this.prev){var s=i.call(o,"catchLoc"),u=i.call(o,"finallyLoc");if(s&&u){if(this.prev<o.catchLoc)return r(o.catchLoc,!0);if(this.prev<o.finallyLoc)return r(o.finallyLoc)}else if(s){if(this.prev<o.catchLoc)return r(o.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return r(o.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&i.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var o=n;break}}o&&("break"===t||"continue"===t)&&o.tryLoc<=e&&e<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=t,a.arg=e,o?(this.method="next",this.next=o.finallyLoc,h):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),h},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),E(r),h}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;E(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:A(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),h}},e}t.exports=o,t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e,r){"use strict";e.byteLength=function(t){var e=c(t),r=e[0],n=e[1];return 3*(r+n)/4-n},e.toByteArray=function(t){var e,r,n=c(t),a=n[0],s=n[1],u=new i(function(t,e,r){return 3*(e+r)/4-r}(0,a,s)),f=0,l=s>0?a-4:a;for(r=0;r<l;r+=4)e=o[t.charCodeAt(r)]<<18|o[t.charCodeAt(r+1)]<<12|o[t.charCodeAt(r+2)]<<6|o[t.charCodeAt(r+3)],u[f++]=e>>16&255,u[f++]=e>>8&255,u[f++]=255&e;2===s&&(e=o[t.charCodeAt(r)]<<2|o[t.charCodeAt(r+1)]>>4,u[f++]=255&e);1===s&&(e=o[t.charCodeAt(r)]<<10|o[t.charCodeAt(r+1)]<<4|o[t.charCodeAt(r+2)]>>2,u[f++]=e>>8&255,u[f++]=255&e);return u},e.fromByteArray=function(t){for(var e,r=t.length,o=r%3,i=[],a=0,s=r-o;a<s;a+=16383)i.push(f(t,a,a+16383>s?s:a+16383));1===o?(e=t[r-1],i.push(n[e>>2]+n[e<<4&63]+"==")):2===o&&(e=(t[r-2]<<8)+t[r-1],i.push(n[e>>10]+n[e>>4&63]+n[e<<2&63]+"="));return i.join("")};for(var n=[],o=[],i="undefined"!=typeof Uint8Array?Uint8Array:Array,a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=0,u=a.length;s<u;++s)n[s]=a[s],o[a.charCodeAt(s)]=s;function c(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var r=t.indexOf("=");return-1===r&&(r=e),[r,r===e?0:4-r%4]}function f(t,e,r){for(var o,i,a=[],s=e;s<r;s+=3)o=(t[s]<<16&16711680)+(t[s+1]<<8&65280)+(255&t[s+2]),a.push(n[(i=o)>>18&63]+n[i>>12&63]+n[i>>6&63]+n[63&i]);return a.join("")}o["-".charCodeAt(0)]=62,o["_".charCodeAt(0)]=63},function(t,e){
9
- /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
10
- e.read=function(t,e,r,n,o){var i,a,s=8*o-n-1,u=(1<<s)-1,c=u>>1,f=-7,l=r?o-1:0,p=r?-1:1,h=t[e+l];for(l+=p,i=h&(1<<-f)-1,h>>=-f,f+=s;f>0;i=256*i+t[e+l],l+=p,f-=8);for(a=i&(1<<-f)-1,i>>=-f,f+=n;f>0;a=256*a+t[e+l],l+=p,f-=8);if(0===i)i=1-c;else{if(i===u)return a?NaN:1/0*(h?-1:1);a+=Math.pow(2,n),i-=c}return(h?-1:1)*a*Math.pow(2,i-n)},e.write=function(t,e,r,n,o,i){var a,s,u,c=8*i-o-1,f=(1<<c)-1,l=f>>1,p=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,h=n?0:i-1,d=n?1:-1,y=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,a=f):(a=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-a))<1&&(a--,u*=2),(e+=a+l>=1?p/u:p*Math.pow(2,1-l))*u>=2&&(a++,u/=2),a+l>=f?(s=0,a=f):a+l>=1?(s=(e*u-1)*Math.pow(2,o),a+=l):(s=e*Math.pow(2,l-1)*Math.pow(2,o),a=0));o>=8;t[r+h]=255&s,h+=d,s/=256,o-=8);for(a=a<<o|s,c+=o;c>0;t[r+h]=255&a,h+=d,a/=256,c-=8);t[r+h-d]|=128*y}},function(t,e,r){"use strict";var n=r(3),o=r(26),i=r(53),a=r(32);var s=function t(e){var r=new i(e),s=o(i.prototype.request,r);return n.extend(s,i.prototype,r),n.extend(s,r),s.create=function(r){return t(a(e,r))},s}(r(14));s.Axios=i,s.Cancel=r(15),s.CancelToken=r(66),s.isCancel=r(31),s.VERSION=r(33).version,s.all=function(t){return Promise.all(t)},s.spread=r(67),s.isAxiosError=r(68),t.exports=s,t.exports.default=s},function(t,e,r){"use strict";var n=r(3),o=r(27),i=r(54),a=r(55),s=r(32),u=r(65),c=u.validators;function f(t){this.defaults=t,this.interceptors={request:new i,response:new i}}f.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{}).url=arguments[0]:t=t||{},(t=s(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e=t.transitional;void 0!==e&&u.assertOptions(e,{silentJSONParsing:c.transitional(c.boolean),forcedJSONParsing:c.transitional(c.boolean),clarifyTimeoutError:c.transitional(c.boolean)},!1);var r=[],n=!0;this.interceptors.request.forEach((function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(n=n&&e.synchronous,r.unshift(e.fulfilled,e.rejected))}));var o,i=[];if(this.interceptors.response.forEach((function(t){i.push(t.fulfilled,t.rejected)})),!n){var f=[a,void 0];for(Array.prototype.unshift.apply(f,r),f=f.concat(i),o=Promise.resolve(t);f.length;)o=o.then(f.shift(),f.shift());return o}for(var l=t;r.length;){var p=r.shift(),h=r.shift();try{l=p(l)}catch(t){h(t);break}}try{o=a(l)}catch(t){return Promise.reject(t)}for(;i.length;)o=o.then(i.shift(),i.shift());return o},f.prototype.getUri=function(t){return t=s(this.defaults,t),o(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},n.forEach(["delete","get","head","options"],(function(t){f.prototype[t]=function(e,r){return this.request(s(r||{},{method:t,url:e,data:(r||{}).data}))}})),n.forEach(["post","put","patch"],(function(t){f.prototype[t]=function(e,r,n){return this.request(s(n||{},{method:t,url:e,data:r}))}})),t.exports=f},function(t,e,r){"use strict";var n=r(3);function o(){this.handlers=[]}o.prototype.use=function(t,e,r){return this.handlers.push({fulfilled:t,rejected:e,synchronous:!!r&&r.synchronous,runWhen:r?r.runWhen:null}),this.handlers.length-1},o.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},o.prototype.forEach=function(t){n.forEach(this.handlers,(function(e){null!==e&&t(e)}))},t.exports=o},function(t,e,r){"use strict";var n=r(3),o=r(56),i=r(31),a=r(14),s=r(15);function u(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new s("canceled")}t.exports=function(t){return u(t),t.headers=t.headers||{},t.data=o.call(t,t.data,t.headers,t.transformRequest),t.headers=n.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),n.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete t.headers[e]})),(t.adapter||a.adapter)(t).then((function(e){return u(t),e.data=o.call(t,e.data,e.headers,t.transformResponse),e}),(function(e){return i(e)||(u(t),e&&e.response&&(e.response.data=o.call(t,e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)}))}},function(t,e,r){"use strict";var n=r(3),o=r(14);t.exports=function(t,e,r){var i=this||o;return n.forEach(r,(function(r){t=r.call(i,t,e)})),t}},function(t,e,r){"use strict";var n=r(3);t.exports=function(t,e){n.forEach(t,(function(r,n){n!==e&&n.toUpperCase()===e.toUpperCase()&&(t[e]=r,delete t[n])}))}},function(t,e,r){"use strict";var n=r(30);t.exports=function(t,e,r){var o=r.config.validateStatus;r.status&&o&&!o(r.status)?e(n("Request failed with status code "+r.status,r.config,null,r.request,r)):t(r)}},function(t,e,r){"use strict";var n=r(3);t.exports=n.isStandardBrowserEnv()?{write:function(t,e,r,o,i,a){var s=[];s.push(t+"="+encodeURIComponent(e)),n.isNumber(r)&&s.push("expires="+new Date(r).toGMTString()),n.isString(o)&&s.push("path="+o),n.isString(i)&&s.push("domain="+i),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,r){"use strict";var n=r(61),o=r(62);t.exports=function(t,e){return t&&!n(e)?o(t,e):e}},function(t,e,r){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e,r){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e,r){"use strict";var n=r(3),o=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,r,i,a={};return t?(n.forEach(t.split("\n"),(function(t){if(i=t.indexOf(":"),e=n.trim(t.substr(0,i)).toLowerCase(),r=n.trim(t.substr(i+1)),e){if(a[e]&&o.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([r]):a[e]?a[e]+", "+r:r}})),a):a}},function(t,e,r){"use strict";var n=r(3);t.exports=n.isStandardBrowserEnv()?function(){var t,e=/(msie|trident)/i.test(navigator.userAgent),r=document.createElement("a");function o(t){var n=t;return e&&(r.setAttribute("href",n),n=r.href),r.setAttribute("href",n),{href:r.href,protocol:r.protocol?r.protocol.replace(/:$/,""):"",host:r.host,search:r.search?r.search.replace(/^\?/,""):"",hash:r.hash?r.hash.replace(/^#/,""):"",hostname:r.hostname,port:r.port,pathname:"/"===r.pathname.charAt(0)?r.pathname:"/"+r.pathname}}return t=o(window.location.href),function(e){var r=n.isString(e)?o(e):e;return r.protocol===t.protocol&&r.host===t.host}}():function(){return!0}},function(t,e,r){"use strict";var n=r(33).version,o={};["object","boolean","number","function","string","symbol"].forEach((function(t,e){o[t]=function(r){return typeof r===t||"a"+(e<1?"n ":" ")+t}}));var i={};o.transitional=function(t,e,r){function o(t,e){return"[Axios v"+n+"] Transitional option '"+t+"'"+e+(r?". "+r:"")}return function(r,n,a){if(!1===t)throw new Error(o(n," has been removed"+(e?" in "+e:"")));return e&&!i[n]&&(i[n]=!0,console.warn(o(n," has been deprecated since v"+e+" and will be removed in the near future"))),!t||t(r,n,a)}},t.exports={assertOptions:function(t,e,r){if("object"!=typeof t)throw new TypeError("options must be an object");for(var n=Object.keys(t),o=n.length;o-- >0;){var i=n[o],a=e[i];if(a){var s=t[i],u=void 0===s||a(s,i,t);if(!0!==u)throw new TypeError("option "+i+" must be "+u)}else if(!0!==r)throw Error("Unknown option "+i)}},validators:o}},function(t,e,r){"use strict";var n=r(15);function o(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise((function(t){e=t}));var r=this;this.promise.then((function(t){if(r._listeners){var e,n=r._listeners.length;for(e=0;e<n;e++)r._listeners[e](t);r._listeners=null}})),this.promise.then=function(t){var e,n=new Promise((function(t){r.subscribe(t),e=t})).then(t);return n.cancel=function(){r.unsubscribe(e)},n},t((function(t){r.reason||(r.reason=new n(t),e(r.reason))}))}o.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},o.prototype.subscribe=function(t){this.reason?t(this.reason):this._listeners?this._listeners.push(t):this._listeners=[t]},o.prototype.unsubscribe=function(t){if(this._listeners){var e=this._listeners.indexOf(t);-1!==e&&this._listeners.splice(e,1)}},o.source=function(){var t;return{token:new o((function(e){t=e})),cancel:t}},t.exports=o},function(t,e,r){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},function(t,e,r){"use strict";t.exports=function(t){return"object"==typeof t&&!0===t.isAxiosError}},function(t,e,r){"use strict";var n=r(70),o=r(34),i=r(22),a=Object.prototype.hasOwnProperty,s={brackets:function(t){return t+"[]"},comma:"comma",indices:function(t,e){return t+"["+e+"]"},repeat:function(t){return t}},u=Array.isArray,c=String.prototype.split,f=Array.prototype.push,l=function(t,e){f.apply(t,u(e)?e:[e])},p=Date.prototype.toISOString,h=i.default,d={addQueryPrefix:!1,allowDots:!1,charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encoder:o.encode,encodeValuesOnly:!1,format:h,formatter:i.formatters[h],indices:!1,serializeDate:function(t){return p.call(t)},skipNulls:!1,strictNullHandling:!1},y={},v=function t(e,r,i,a,s,f,p,h,v,g,m,b,_,w,O,S){for(var j,E=e,x=S,A=0,P=!1;void 0!==(x=x.get(y))&&!P;){var k=x.get(e);if(A+=1,void 0!==k){if(k===A)throw new RangeError("Cyclic object value");P=!0}void 0===x.get(y)&&(A=0)}if("function"==typeof h?E=h(r,E):E instanceof Date?E=m(E):"comma"===i&&u(E)&&(E=o.maybeMap(E,(function(t){return t instanceof Date?m(t):t}))),null===E){if(s)return p&&!w?p(r,d.encoder,O,"key",b):r;E=""}if("string"==typeof(j=E)||"number"==typeof j||"boolean"==typeof j||"symbol"==typeof j||"bigint"==typeof j||o.isBuffer(E)){if(p){var T=w?r:p(r,d.encoder,O,"key",b);if("comma"===i&&w){for(var I=c.call(String(E),","),R="",C=0;C<I.length;++C)R+=(0===C?"":",")+_(p(I[C],d.encoder,O,"value",b));return[_(T)+(a&&u(E)&&1===I.length?"[]":"")+"="+R]}return[_(T)+"="+_(p(E,d.encoder,O,"value",b))]}return[_(r)+"="+_(String(E))]}var L,M=[];if(void 0===E)return M;if("comma"===i&&u(E))L=[{value:E.length>0?E.join(",")||null:void 0}];else if(u(h))L=h;else{var D=Object.keys(E);L=v?D.sort(v):D}for(var N=a&&u(E)&&1===E.length?r+"[]":r,U=0;U<L.length;++U){var B=L[U],q="object"==typeof B&&void 0!==B.value?B.value:E[B];if(!f||null!==q){var z=u(E)?"function"==typeof i?i(N,B):N:N+(g?"."+B:"["+B+"]");S.set(e,A);var F=n();F.set(y,S),l(M,t(q,z,i,a,s,f,p,h,v,g,m,b,_,w,O,F))}}return M};t.exports=function(t,e){var r,o=t,c=function(t){if(!t)return d;if(null!==t.encoder&&void 0!==t.encoder&&"function"!=typeof t.encoder)throw new TypeError("Encoder has to be a function.");var e=t.charset||d.charset;if(void 0!==t.charset&&"utf-8"!==t.charset&&"iso-8859-1"!==t.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var r=i.default;if(void 0!==t.format){if(!a.call(i.formatters,t.format))throw new TypeError("Unknown format option provided.");r=t.format}var n=i.formatters[r],o=d.filter;return("function"==typeof t.filter||u(t.filter))&&(o=t.filter),{addQueryPrefix:"boolean"==typeof t.addQueryPrefix?t.addQueryPrefix:d.addQueryPrefix,allowDots:void 0===t.allowDots?d.allowDots:!!t.allowDots,charset:e,charsetSentinel:"boolean"==typeof t.charsetSentinel?t.charsetSentinel:d.charsetSentinel,delimiter:void 0===t.delimiter?d.delimiter:t.delimiter,encode:"boolean"==typeof t.encode?t.encode:d.encode,encoder:"function"==typeof t.encoder?t.encoder:d.encoder,encodeValuesOnly:"boolean"==typeof t.encodeValuesOnly?t.encodeValuesOnly:d.encodeValuesOnly,filter:o,format:r,formatter:n,serializeDate:"function"==typeof t.serializeDate?t.serializeDate:d.serializeDate,skipNulls:"boolean"==typeof t.skipNulls?t.skipNulls:d.skipNulls,sort:"function"==typeof t.sort?t.sort:null,strictNullHandling:"boolean"==typeof t.strictNullHandling?t.strictNullHandling:d.strictNullHandling}}(e);"function"==typeof c.filter?o=(0,c.filter)("",o):u(c.filter)&&(r=c.filter);var f,p=[];if("object"!=typeof o||null===o)return"";f=e&&e.arrayFormat in s?e.arrayFormat:e&&"indices"in e?e.indices?"indices":"repeat":"indices";var h=s[f];if(e&&"commaRoundTrip"in e&&"boolean"!=typeof e.commaRoundTrip)throw new TypeError("`commaRoundTrip` must be a boolean, or absent");var y="comma"===h&&e&&e.commaRoundTrip;r||(r=Object.keys(o)),c.sort&&r.sort(c.sort);for(var g=n(),m=0;m<r.length;++m){var b=r[m];c.skipNulls&&null===o[b]||l(p,v(o[b],b,h,y,c.strictNullHandling,c.skipNulls,c.encode?c.encoder:null,c.filter,c.sort,c.allowDots,c.serializeDate,c.format,c.formatter,c.encodeValuesOnly,c.charset,g))}var _=p.join(c.delimiter),w=!0===c.addQueryPrefix?"?":"";return c.charsetSentinel&&("iso-8859-1"===c.charset?w+="utf8=%26%2310003%3B&":w+="utf8=%E2%9C%93&"),_.length>0?w+_:""}},function(t,e,r){"use strict";var n=r(20),o=r(75),i=r(77),a=n("%TypeError%"),s=n("%WeakMap%",!0),u=n("%Map%",!0),c=o("WeakMap.prototype.get",!0),f=o("WeakMap.prototype.set",!0),l=o("WeakMap.prototype.has",!0),p=o("Map.prototype.get",!0),h=o("Map.prototype.set",!0),d=o("Map.prototype.has",!0),y=function(t,e){for(var r,n=t;null!==(r=n.next);n=r)if(r.key===e)return n.next=r.next,r.next=t.next,t.next=r,r};t.exports=function(){var t,e,r,n={assert:function(t){if(!n.has(t))throw new a("Side channel does not contain "+i(t))},get:function(n){if(s&&n&&("object"==typeof n||"function"==typeof n)){if(t)return c(t,n)}else if(u){if(e)return p(e,n)}else if(r)return function(t,e){var r=y(t,e);return r&&r.value}(r,n)},has:function(n){if(s&&n&&("object"==typeof n||"function"==typeof n)){if(t)return l(t,n)}else if(u){if(e)return d(e,n)}else if(r)return function(t,e){return!!y(t,e)}(r,n);return!1},set:function(n,o){s&&n&&("object"==typeof n||"function"==typeof n)?(t||(t=new s),f(t,n,o)):u?(e||(e=new u),h(e,n,o)):(r||(r={key:{},next:null}),function(t,e,r){var n=y(t,e);n?n.value=r:t.next={key:e,next:t.next,value:r}}(r,n,o))}};return n}},function(t,e,r){"use strict";var n="undefined"!=typeof Symbol&&Symbol,o=r(72);t.exports=function(){return"function"==typeof n&&("function"==typeof Symbol&&("symbol"==typeof n("foo")&&("symbol"==typeof Symbol("bar")&&o())))}},function(t,e,r){"use strict";t.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var t={},e=Symbol("test"),r=Object(e);if("string"==typeof e)return!1;if("[object Symbol]"!==Object.prototype.toString.call(e))return!1;if("[object Symbol]"!==Object.prototype.toString.call(r))return!1;for(e in t[e]=42,t)return!1;if("function"==typeof Object.keys&&0!==Object.keys(t).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(t).length)return!1;var n=Object.getOwnPropertySymbols(t);if(1!==n.length||n[0]!==e)return!1;if(!Object.prototype.propertyIsEnumerable.call(t,e))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var o=Object.getOwnPropertyDescriptor(t,e);if(42!==o.value||!0!==o.enumerable)return!1}return!0}},function(t,e,r){"use strict";var n="Function.prototype.bind called on incompatible ",o=Array.prototype.slice,i=Object.prototype.toString;t.exports=function(t){var e=this;if("function"!=typeof e||"[object Function]"!==i.call(e))throw new TypeError(n+e);for(var r,a=o.call(arguments,1),s=function(){if(this instanceof r){var n=e.apply(this,a.concat(o.call(arguments)));return Object(n)===n?n:this}return e.apply(t,a.concat(o.call(arguments)))},u=Math.max(0,e.length-a.length),c=[],f=0;f<u;f++)c.push("$"+f);if(r=Function("binder","return function ("+c.join(",")+"){ return binder.apply(this,arguments); }")(s),e.prototype){var l=function(){};l.prototype=e.prototype,r.prototype=new l,l.prototype=null}return r}},function(t,e,r){"use strict";var n=r(21);t.exports=n.call(Function.call,Object.prototype.hasOwnProperty)},function(t,e,r){"use strict";var n=r(20),o=r(76),i=o(n("String.prototype.indexOf"));t.exports=function(t,e){var r=n(t,!!e);return"function"==typeof r&&i(t,".prototype.")>-1?o(r):r}},function(t,e,r){"use strict";var n=r(21),o=r(20),i=o("%Function.prototype.apply%"),a=o("%Function.prototype.call%"),s=o("%Reflect.apply%",!0)||n.call(a,i),u=o("%Object.getOwnPropertyDescriptor%",!0),c=o("%Object.defineProperty%",!0),f=o("%Math.max%");if(c)try{c({},"a",{value:1})}catch(t){c=null}t.exports=function(t){var e=s(n,a,arguments);if(u&&c){var r=u(e,"length");r.configurable&&c(e,"length",{value:1+f(0,t.length-(arguments.length-1))})}return e};var l=function(){return s(n,i,arguments)};c?c(t.exports,"apply",{value:l}):t.exports.apply=l},function(t,e,r){var n="function"==typeof Map&&Map.prototype,o=Object.getOwnPropertyDescriptor&&n?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,i=n&&o&&"function"==typeof o.get?o.get:null,a=n&&Map.prototype.forEach,s="function"==typeof Set&&Set.prototype,u=Object.getOwnPropertyDescriptor&&s?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,c=s&&u&&"function"==typeof u.get?u.get:null,f=s&&Set.prototype.forEach,l="function"==typeof WeakMap&&WeakMap.prototype?WeakMap.prototype.has:null,p="function"==typeof WeakSet&&WeakSet.prototype?WeakSet.prototype.has:null,h="function"==typeof WeakRef&&WeakRef.prototype?WeakRef.prototype.deref:null,d=Boolean.prototype.valueOf,y=Object.prototype.toString,v=Function.prototype.toString,g=String.prototype.match,m=String.prototype.slice,b=String.prototype.replace,_=String.prototype.toUpperCase,w=String.prototype.toLowerCase,O=RegExp.prototype.test,S=Array.prototype.concat,j=Array.prototype.join,E=Array.prototype.slice,x=Math.floor,A="function"==typeof BigInt?BigInt.prototype.valueOf:null,P=Object.getOwnPropertySymbols,k="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?Symbol.prototype.toString:null,T="function"==typeof Symbol&&"object"==typeof Symbol.iterator,I="function"==typeof Symbol&&Symbol.toStringTag&&(typeof Symbol.toStringTag===T||"symbol")?Symbol.toStringTag:null,R=Object.prototype.propertyIsEnumerable,C=("function"==typeof Reflect?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(t){return t.__proto__}:null);function L(t,e){if(t===1/0||t===-1/0||t!=t||t&&t>-1e3&&t<1e3||O.call(/e/,e))return e;var r=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if("number"==typeof t){var n=t<0?-x(-t):x(t);if(n!==t){var o=String(n),i=m.call(e,o.length+1);return b.call(o,r,"$&_")+"."+b.call(b.call(i,/([0-9]{3})/g,"$&_"),/_$/,"")}}return b.call(e,r,"$&_")}var M=r(78),D=M.custom,N=F(D)?D:null;function U(t,e,r){var n="double"===(r.quoteStyle||e)?'"':"'";return n+t+n}function B(t){return b.call(String(t),/"/g,"&quot;")}function q(t){return!("[object Array]"!==G(t)||I&&"object"==typeof t&&I in t)}function z(t){return!("[object RegExp]"!==G(t)||I&&"object"==typeof t&&I in t)}function F(t){if(T)return t&&"object"==typeof t&&t instanceof Symbol;if("symbol"==typeof t)return!0;if(!t||"object"!=typeof t||!k)return!1;try{return k.call(t),!0}catch(t){}return!1}t.exports=function t(e,r,n,o){var s=r||{};if(W(s,"quoteStyle")&&"single"!==s.quoteStyle&&"double"!==s.quoteStyle)throw new TypeError('option "quoteStyle" must be "single" or "double"');if(W(s,"maxStringLength")&&("number"==typeof s.maxStringLength?s.maxStringLength<0&&s.maxStringLength!==1/0:null!==s.maxStringLength))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var u=!W(s,"customInspect")||s.customInspect;if("boolean"!=typeof u&&"symbol"!==u)throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(W(s,"indent")&&null!==s.indent&&"\t"!==s.indent&&!(parseInt(s.indent,10)===s.indent&&s.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(W(s,"numericSeparator")&&"boolean"!=typeof s.numericSeparator)throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var y=s.numericSeparator;if(void 0===e)return"undefined";if(null===e)return"null";if("boolean"==typeof e)return e?"true":"false";if("string"==typeof e)return function t(e,r){if(e.length>r.maxStringLength){var n=e.length-r.maxStringLength,o="... "+n+" more character"+(n>1?"s":"");return t(m.call(e,0,r.maxStringLength),r)+o}return U(b.call(b.call(e,/(['\\])/g,"\\$1"),/[\x00-\x1f]/g,K),"single",r)}(e,s);if("number"==typeof e){if(0===e)return 1/0/e>0?"0":"-0";var _=String(e);return y?L(e,_):_}if("bigint"==typeof e){var O=String(e)+"n";return y?L(e,O):O}var x=void 0===s.depth?5:s.depth;if(void 0===n&&(n=0),n>=x&&x>0&&"object"==typeof e)return q(e)?"[Array]":"[Object]";var P=function(t,e){var r;if("\t"===t.indent)r="\t";else{if(!("number"==typeof t.indent&&t.indent>0))return null;r=j.call(Array(t.indent+1)," ")}return{base:r,prev:j.call(Array(e+1),r)}}(s,n);if(void 0===o)o=[];else if(Y(o,e)>=0)return"[Circular]";function D(e,r,i){if(r&&(o=E.call(o)).push(r),i){var a={depth:s.depth};return W(s,"quoteStyle")&&(a.quoteStyle=s.quoteStyle),t(e,a,n+1,o)}return t(e,s,n+1,o)}if("function"==typeof e&&!z(e)){var H=function(t){if(t.name)return t.name;var e=g.call(v.call(t),/^function\s*([\w$]+)/);if(e)return e[1];return null}(e),Z=Q(e,D);return"[Function"+(H?": "+H:" (anonymous)")+"]"+(Z.length>0?" { "+j.call(Z,", ")+" }":"")}if(F(e)){var tt=T?b.call(String(e),/^(Symbol\(.*\))_[^)]*$/,"$1"):k.call(e);return"object"!=typeof e||T?tt:V(tt)}if(function(t){if(!t||"object"!=typeof t)return!1;if("undefined"!=typeof HTMLElement&&t instanceof HTMLElement)return!0;return"string"==typeof t.nodeName&&"function"==typeof t.getAttribute}(e)){for(var et="<"+w.call(String(e.nodeName)),rt=e.attributes||[],nt=0;nt<rt.length;nt++)et+=" "+rt[nt].name+"="+U(B(rt[nt].value),"double",s);return et+=">",e.childNodes&&e.childNodes.length&&(et+="..."),et+="</"+w.call(String(e.nodeName))+">"}if(q(e)){if(0===e.length)return"[]";var ot=Q(e,D);return P&&!function(t){for(var e=0;e<t.length;e++)if(Y(t[e],"\n")>=0)return!1;return!0}(ot)?"["+X(ot,P)+"]":"[ "+j.call(ot,", ")+" ]"}if(function(t){return!("[object Error]"!==G(t)||I&&"object"==typeof t&&I in t)}(e)){var it=Q(e,D);return"cause"in Error.prototype||!("cause"in e)||R.call(e,"cause")?0===it.length?"["+String(e)+"]":"{ ["+String(e)+"] "+j.call(it,", ")+" }":"{ ["+String(e)+"] "+j.call(S.call("[cause]: "+D(e.cause),it),", ")+" }"}if("object"==typeof e&&u){if(N&&"function"==typeof e[N]&&M)return M(e,{depth:x-n});if("symbol"!==u&&"function"==typeof e.inspect)return e.inspect()}if(function(t){if(!i||!t||"object"!=typeof t)return!1;try{i.call(t);try{c.call(t)}catch(t){return!0}return t instanceof Map}catch(t){}return!1}(e)){var at=[];return a.call(e,(function(t,r){at.push(D(r,e,!0)+" => "+D(t,e))})),$("Map",i.call(e),at,P)}if(function(t){if(!c||!t||"object"!=typeof t)return!1;try{c.call(t);try{i.call(t)}catch(t){return!0}return t instanceof Set}catch(t){}return!1}(e)){var st=[];return f.call(e,(function(t){st.push(D(t,e))})),$("Set",c.call(e),st,P)}if(function(t){if(!l||!t||"object"!=typeof t)return!1;try{l.call(t,l);try{p.call(t,p)}catch(t){return!0}return t instanceof WeakMap}catch(t){}return!1}(e))return J("WeakMap");if(function(t){if(!p||!t||"object"!=typeof t)return!1;try{p.call(t,p);try{l.call(t,l)}catch(t){return!0}return t instanceof WeakSet}catch(t){}return!1}(e))return J("WeakSet");if(function(t){if(!h||!t||"object"!=typeof t)return!1;try{return h.call(t),!0}catch(t){}return!1}(e))return J("WeakRef");if(function(t){return!("[object Number]"!==G(t)||I&&"object"==typeof t&&I in t)}(e))return V(D(Number(e)));if(function(t){if(!t||"object"!=typeof t||!A)return!1;try{return A.call(t),!0}catch(t){}return!1}(e))return V(D(A.call(e)));if(function(t){return!("[object Boolean]"!==G(t)||I&&"object"==typeof t&&I in t)}(e))return V(d.call(e));if(function(t){return!("[object String]"!==G(t)||I&&"object"==typeof t&&I in t)}(e))return V(D(String(e)));if(!function(t){return!("[object Date]"!==G(t)||I&&"object"==typeof t&&I in t)}(e)&&!z(e)){var ut=Q(e,D),ct=C?C(e)===Object.prototype:e instanceof Object||e.constructor===Object,ft=e instanceof Object?"":"null prototype",lt=!ct&&I&&Object(e)===e&&I in e?m.call(G(e),8,-1):ft?"Object":"",pt=(ct||"function"!=typeof e.constructor?"":e.constructor.name?e.constructor.name+" ":"")+(lt||ft?"["+j.call(S.call([],lt||[],ft||[]),": ")+"] ":"");return 0===ut.length?pt+"{}":P?pt+"{"+X(ut,P)+"}":pt+"{ "+j.call(ut,", ")+" }"}return String(e)};var H=Object.prototype.hasOwnProperty||function(t){return t in this};function W(t,e){return H.call(t,e)}function G(t){return y.call(t)}function Y(t,e){if(t.indexOf)return t.indexOf(e);for(var r=0,n=t.length;r<n;r++)if(t[r]===e)return r;return-1}function K(t){var e=t.charCodeAt(0),r={8:"b",9:"t",10:"n",12:"f",13:"r"}[e];return r?"\\"+r:"\\x"+(e<16?"0":"")+_.call(e.toString(16))}function V(t){return"Object("+t+")"}function J(t){return t+" { ? }"}function $(t,e,r,n){return t+" ("+e+") {"+(n?X(r,n):j.call(r,", "))+"}"}function X(t,e){if(0===t.length)return"";var r="\n"+e.prev+e.base;return r+j.call(t,","+r)+"\n"+e.prev}function Q(t,e){var r=q(t),n=[];if(r){n.length=t.length;for(var o=0;o<t.length;o++)n[o]=W(t,o)?e(t[o],t):""}var i,a="function"==typeof P?P(t):[];if(T){i={};for(var s=0;s<a.length;s++)i["$"+a[s]]=a[s]}for(var u in t)W(t,u)&&(r&&String(Number(u))===u&&u<t.length||T&&i["$"+u]instanceof Symbol||(O.call(/[^\w$]/,u)?n.push(e(u,t)+": "+e(t[u],t)):n.push(u+": "+e(t[u],t))));if("function"==typeof P)for(var c=0;c<a.length;c++)R.call(t,a[c])&&n.push("["+e(a[c])+"]: "+e(t[a[c]],t));return n}},function(t,e){},function(t,e,r){"use strict";var n=r(34),o=Object.prototype.hasOwnProperty,i=Array.isArray,a={allowDots:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:n.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},s=function(t){return t.replace(/&#(\d+);/g,(function(t,e){return String.fromCharCode(parseInt(e,10))}))},u=function(t,e){return t&&"string"==typeof t&&e.comma&&t.indexOf(",")>-1?t.split(","):t},c=function(t,e,r,n){if(t){var i=r.allowDots?t.replace(/\.([^.[]+)/g,"[$1]"):t,a=/(\[[^[\]]*])/g,s=r.depth>0&&/(\[[^[\]]*])/.exec(i),c=s?i.slice(0,s.index):i,f=[];if(c){if(!r.plainObjects&&o.call(Object.prototype,c)&&!r.allowPrototypes)return;f.push(c)}for(var l=0;r.depth>0&&null!==(s=a.exec(i))&&l<r.depth;){if(l+=1,!r.plainObjects&&o.call(Object.prototype,s[1].slice(1,-1))&&!r.allowPrototypes)return;f.push(s[1])}return s&&f.push("["+i.slice(s.index)+"]"),function(t,e,r,n){for(var o=n?e:u(e,r),i=t.length-1;i>=0;--i){var a,s=t[i];if("[]"===s&&r.parseArrays)a=[].concat(o);else{a=r.plainObjects?Object.create(null):{};var c="["===s.charAt(0)&&"]"===s.charAt(s.length-1)?s.slice(1,-1):s,f=parseInt(c,10);r.parseArrays||""!==c?!isNaN(f)&&s!==c&&String(f)===c&&f>=0&&r.parseArrays&&f<=r.arrayLimit?(a=[])[f]=o:"__proto__"!==c&&(a[c]=o):a={0:o}}o=a}return o}(f,e,r,n)}};t.exports=function(t,e){var r=function(t){if(!t)return a;if(null!==t.decoder&&void 0!==t.decoder&&"function"!=typeof t.decoder)throw new TypeError("Decoder has to be a function.");if(void 0!==t.charset&&"utf-8"!==t.charset&&"iso-8859-1"!==t.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var e=void 0===t.charset?a.charset:t.charset;return{allowDots:void 0===t.allowDots?a.allowDots:!!t.allowDots,allowPrototypes:"boolean"==typeof t.allowPrototypes?t.allowPrototypes:a.allowPrototypes,allowSparse:"boolean"==typeof t.allowSparse?t.allowSparse:a.allowSparse,arrayLimit:"number"==typeof t.arrayLimit?t.arrayLimit:a.arrayLimit,charset:e,charsetSentinel:"boolean"==typeof t.charsetSentinel?t.charsetSentinel:a.charsetSentinel,comma:"boolean"==typeof t.comma?t.comma:a.comma,decoder:"function"==typeof t.decoder?t.decoder:a.decoder,delimiter:"string"==typeof t.delimiter||n.isRegExp(t.delimiter)?t.delimiter:a.delimiter,depth:"number"==typeof t.depth||!1===t.depth?+t.depth:a.depth,ignoreQueryPrefix:!0===t.ignoreQueryPrefix,interpretNumericEntities:"boolean"==typeof t.interpretNumericEntities?t.interpretNumericEntities:a.interpretNumericEntities,parameterLimit:"number"==typeof t.parameterLimit?t.parameterLimit:a.parameterLimit,parseArrays:!1!==t.parseArrays,plainObjects:"boolean"==typeof t.plainObjects?t.plainObjects:a.plainObjects,strictNullHandling:"boolean"==typeof t.strictNullHandling?t.strictNullHandling:a.strictNullHandling}}(e);if(""===t||null==t)return r.plainObjects?Object.create(null):{};for(var f="string"==typeof t?function(t,e){var r,c={},f=e.ignoreQueryPrefix?t.replace(/^\?/,""):t,l=e.parameterLimit===1/0?void 0:e.parameterLimit,p=f.split(e.delimiter,l),h=-1,d=e.charset;if(e.charsetSentinel)for(r=0;r<p.length;++r)0===p[r].indexOf("utf8=")&&("utf8=%E2%9C%93"===p[r]?d="utf-8":"utf8=%26%2310003%3B"===p[r]&&(d="iso-8859-1"),h=r,r=p.length);for(r=0;r<p.length;++r)if(r!==h){var y,v,g=p[r],m=g.indexOf("]="),b=-1===m?g.indexOf("="):m+1;-1===b?(y=e.decoder(g,a.decoder,d,"key"),v=e.strictNullHandling?null:""):(y=e.decoder(g.slice(0,b),a.decoder,d,"key"),v=n.maybeMap(u(g.slice(b+1),e),(function(t){return e.decoder(t,a.decoder,d,"value")}))),v&&e.interpretNumericEntities&&"iso-8859-1"===d&&(v=s(v)),g.indexOf("[]=")>-1&&(v=i(v)?[v]:v),o.call(c,y)?c[y]=n.combine(c[y],v):c[y]=v}return c}(t,r):t,l=r.plainObjects?Object.create(null):{},p=Object.keys(f),h=0;h<p.length;++h){var d=p[h],y=c(d,f[d],r,"string"==typeof t);l=n.merge(l,y,r)}return!0===r.allowSparse?l:n.compact(l)}},function(t,e,r){"use strict";t.exports=function(t){if(!0===t.data.results.hasOwnProperty("images")){var e=t.data.results.images,r=!0===Array.isArray(e)?[].concat(e):Object.assign({},e);r[0].id="image",t.data.results.items=r,delete t.data.results.images}}},function(t,e,r){"use strict";t.exports=function(t){for(var e=t.data.results.items,r=0;r<e.length;r++){var n="/SASReportViewer/?reportUri=/reports/reports/".concat(e[r].id),o={method:"GET",href:n,rel:"viewer",uri:n,type:"text/html",itemType:"text/html",title:"Report Viewer",extended:!0};e[r].links.push(o)}}},function(t,e,r){"use strict";t.exports=function(t,e,r,n,o){var i="".concat(!0===o?t:e,"/actions"),a="".concat(!0===o?t:e,"/isIdle");return[{method:"POST",href:i,rel:"execute",uri:i,responseType:"application/json",type:"application/json",itemType:"application/json",title:"Run CAS Action",customHandling:"casExecute",casHttp:r,server:n,extended:!0},{method:"GET",href:a,rel:"state",uri:a,responseType:"application/json",type:"application/json",itemType:"application/json",title:"state",customHandling:"casState",casHttp:r,server:n,extended:!0}]}},function(t,e,r){"use strict";t.exports=function(t){var e={},r={};if(!1===t.hasOwnProperty("results"))return t;for(var n in t.results){var o=t.results[n];!0===o.hasOwnProperty("_ctb")&&!0===o._ctb&&(e[n]=o,r[o.name]=o)}return t.tables=e,t.tablesByName=r,t}},function(t,e,r){"use strict";function n(t){for(var e=[],r=0;r<t.length;r++){var n=Object.assign({},t[r]);e.push(n)}return e}t.exports=function(t){try{for(var e=n(t.data.results.items),r=0;r<e.length;r++){var o=n(e[r].links);if(-1===o.findIndex((function(t){return"championModel"===t.rel}))){var i=e[r].championModel;if(null!=i&&null!=i.links&&i.links.length>0){for(var a=n(i.links),s=0;s<a.length;s++){var u=Object.assign({},a[s]),c=u.href.split("?")[0];u.uri=c,u.href=c,u.type="application/json","championModel"===u.rel&&"GET"===u.method.toUpperCase()?u.type="application/vnd.sas.analytics.ml.pipeline.automation.project.champion.model":"championModel"===u.rel&&"PUT"===u.method.toUpperCase()?u.responseType="*/*":"scoreData"===u.rel&&(u.responseType="application/json",u.type="application/vnd.sas.analytics.ml.pipeline.automation.score.data.input+json",u.responseType="application/vnd.sas.analytics.ml.pipeline.automation.score.data.output+json"),u.extended=!0,o.push(u)}e[r].links=o}}}t.data.results.items=e}catch(t){console.log(t)}}},function(t,e,r){var n=r(86),o=r(36),i=r(96),a=r(97),s=r(45),u=e;u.request=function(t,e){t="string"==typeof t?s.parse(t):i(t);var r=-1===Object({}).location.protocol.search(/^https?:$/)?"http:":"",o=t.protocol||r,a=t.hostname||t.host,u=t.port,c=t.path||"/";a&&-1!==a.indexOf(":")&&(a="["+a+"]"),t.url=(a?o+"//"+a:"")+(u?":"+u:"")+c,t.method=(t.method||"GET").toUpperCase(),t.headers=t.headers||{};var f=new n(t);return e&&f.on("response",e),f},u.get=function(t,e){var r=u.request(t,e);return r.end(),r},u.ClientRequest=n,u.IncomingMessage=o.IncomingMessage,u.Agent=function(){},u.Agent.defaultMaxSockets=4,u.globalAgent=new u.Agent,u.STATUS_CODES=a,u.METHODS=["CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REPORT","SEARCH","SUBSCRIBE","TRACE","UNLOCK","UNSUBSCRIBE"]},function(t,e,r){(function(e,n){var o=r(35),i=r(9),a=r(36),s=r(37),u=r(95),c=a.IncomingMessage,f=a.readyStates;var l=t.exports=function(t){var r,n=this;s.Writable.call(n),n._opts=t,n._body=[],n._headers={},t.auth&&n.setHeader("Authorization","Basic "+new e(t.auth).toString("base64")),Object.keys(t.headers).forEach((function(e){n.setHeader(e,t.headers[e])}));var i=!0;if("disable-fetch"===t.mode||"requestTimeout"in t&&!o.abortController)i=!1,r=!0;else if("prefer-streaming"===t.mode)r=!1;else if("allow-wrong-content-type"===t.mode)r=!o.overrideMimeType;else{if(t.mode&&"default"!==t.mode&&"prefer-fast"!==t.mode)throw new Error("Invalid value for opts.mode");r=!0}n._mode=function(t,e){return o.fetch&&e?"fetch":o.mozchunkedarraybuffer?"moz-chunked-arraybuffer":o.msstream?"ms-stream":o.arraybuffer&&t?"arraybuffer":o.vbArray&&t?"text:vbarray":"text"}(r,i),n._fetchTimer=null,n.on("finish",(function(){n._onFinish()}))};i(l,s.Writable),l.prototype.setHeader=function(t,e){var r=t.toLowerCase();-1===p.indexOf(r)&&(this._headers[r]={name:t,value:e})},l.prototype.getHeader=function(t){var e=this._headers[t.toLowerCase()];return e?e.value:null},l.prototype.removeHeader=function(t){delete this._headers[t.toLowerCase()]},l.prototype._onFinish=function(){var t=this;if(!t._destroyed){var r=t._opts,i=t._headers,a=null;"GET"!==r.method&&"HEAD"!==r.method&&(a=o.arraybuffer?u(e.concat(t._body)):o.blobConstructor?new Object({}).Blob(t._body.map((function(t){return u(t)})),{type:(i["content-type"]||{}).value||""}):e.concat(t._body).toString());var s=[];if(Object.keys(i).forEach((function(t){var e=i[t].name,r=i[t].value;Array.isArray(r)?r.forEach((function(t){s.push([e,t])})):s.push([e,r])})),"fetch"===t._mode){var c=null;if(o.abortController){var l=new AbortController;c=l.signal,t._fetchAbortController=l,"requestTimeout"in r&&0!==r.requestTimeout&&(t._fetchTimer=Object({}).setTimeout((function(){t.emit("requestTimeout"),t._fetchAbortController&&t._fetchAbortController.abort()}),r.requestTimeout))}Object({}).fetch(t._opts.url,{method:t._opts.method,headers:s,body:a||void 0,mode:"cors",credentials:r.withCredentials?"include":"same-origin",signal:c}).then((function(e){t._fetchResponse=e,t._connect()}),(function(e){Object({}).clearTimeout(t._fetchTimer),t._destroyed||t.emit("error",e)}))}else{var p=t._xhr=new Object({}).XMLHttpRequest();try{p.open(t._opts.method,t._opts.url,!0)}catch(e){return void n.nextTick((function(){t.emit("error",e)}))}"responseType"in p&&(p.responseType=t._mode.split(":")[0]),"withCredentials"in p&&(p.withCredentials=!!r.withCredentials),"text"===t._mode&&"overrideMimeType"in p&&p.overrideMimeType("text/plain; charset=x-user-defined"),"requestTimeout"in r&&(p.timeout=r.requestTimeout,p.ontimeout=function(){t.emit("requestTimeout")}),s.forEach((function(t){p.setRequestHeader(t[0],t[1])})),t._response=null,p.onreadystatechange=function(){switch(p.readyState){case f.LOADING:case f.DONE:t._onXHRProgress()}},"moz-chunked-arraybuffer"===t._mode&&(p.onprogress=function(){t._onXHRProgress()}),p.onerror=function(){t._destroyed||t.emit("error",new Error("XHR error"))};try{p.send(a)}catch(e){return void n.nextTick((function(){t.emit("error",e)}))}}}},l.prototype._onXHRProgress=function(){(function(t){try{var e=t.status;return null!==e&&0!==e}catch(t){return!1}})(this._xhr)&&!this._destroyed&&(this._response||this._connect(),this._response._onXHRProgress())},l.prototype._connect=function(){var t=this;t._destroyed||(t._response=new c(t._xhr,t._fetchResponse,t._mode,t._fetchTimer),t._response.on("error",(function(e){t.emit("error",e)})),t.emit("response",t._response))},l.prototype._write=function(t,e,r){this._body.push(t),r()},l.prototype.abort=l.prototype.destroy=function(){this._destroyed=!0,Object({}).clearTimeout(this._fetchTimer),this._response&&(this._response._destroyed=!0),this._xhr?this._xhr.abort():this._fetchAbortController&&this._fetchAbortController.abort()},l.prototype.end=function(t,e,r){"function"==typeof t&&(r=t,t=void 0),s.Writable.prototype.end.call(this,t,e,r)},l.prototype.flushHeaders=function(){},l.prototype.setTimeout=function(){},l.prototype.setNoDelay=function(){},l.prototype.setSocketKeepAlive=function(){};var p=["accept-charset","accept-encoding","access-control-request-headers","access-control-request-method","connection","content-length","cookie","cookie2","date","dnt","expect","host","keep-alive","origin","referer","te","trailer","transfer-encoding","upgrade","via"]}).call(this,r(7).Buffer,r(8))},function(t,e){},function(t,e,r){"use strict";var n=r(23).Buffer,o=r(89);t.exports=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.head=null,this.tail=null,this.length=0}return t.prototype.push=function(t){var e={data:t,next:null};this.length>0?this.tail.next=e:this.head=e,this.tail=e,++this.length},t.prototype.unshift=function(t){var e={data:t,next:this.head};0===this.length&&(this.tail=e),this.head=e,++this.length},t.prototype.shift=function(){if(0!==this.length){var t=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,t}},t.prototype.clear=function(){this.head=this.tail=null,this.length=0},t.prototype.join=function(t){if(0===this.length)return"";for(var e=this.head,r=""+e.data;e=e.next;)r+=t+e.data;return r},t.prototype.concat=function(t){if(0===this.length)return n.alloc(0);if(1===this.length)return this.head.data;for(var e,r,o,i=n.allocUnsafe(t>>>0),a=this.head,s=0;a;)e=a.data,r=i,o=s,e.copy(r,o),s+=a.data.length,a=a.next;return i},t}(),o&&o.inspect&&o.inspect.custom&&(t.exports.prototype[o.inspect.custom]=function(){var t=o.inspect({length:this.length});return this.constructor.name+" "+t})},function(t,e){},function(t,e,r){var n=Object({})||!1,o=Function.prototype.apply;function i(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new i(o.call(setTimeout,n,arguments),clearTimeout)},e.setInterval=function(){return new i(o.call(setInterval,n,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},i.prototype.unref=i.prototype.ref=function(){},i.prototype.close=function(){this._clearFn.call(n,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},r(91),e.setImmediate="undefined"!=typeof self&&self.setImmediate||Object({}).setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||Object({}).clearImmediate||this&&this.clearImmediate},function(t,e,r){(function(t){!function(e,r){"use strict";if(!e.setImmediate){var n,o,i,a,s,u=1,c={},f=!1,l=e.document,p=Object.getPrototypeOf&&Object.getPrototypeOf(e);p=p&&p.setTimeout?p:e,"[object process]"==={}.toString.call(e.process)?n=function(e){t.nextTick((function(){d(e)}))}:!function(){if(e.postMessage&&!e.importScripts){var t=!0,r=e.onmessage;return e.onmessage=function(){t=!1},e.postMessage("","*"),e.onmessage=r,t}}()?e.MessageChannel?((i=new MessageChannel).port1.onmessage=function(t){d(t.data)},n=function(t){i.port2.postMessage(t)}):l&&"onreadystatechange"in l.createElement("script")?(o=l.documentElement,n=function(t){var e=l.createElement("script");e.onreadystatechange=function(){d(t),e.onreadystatechange=null,o.removeChild(e),e=null},o.appendChild(e)}):n=function(t){setTimeout(d,0,t)}:(a="setImmediate$"+Math.random()+"$",s=function(t){t.source===e&&"string"==typeof t.data&&0===t.data.indexOf(a)&&d(+t.data.slice(a.length))},e.addEventListener?e.addEventListener("message",s,!1):e.attachEvent("onmessage",s),n=function(t){e.postMessage(a+t,"*")}),p.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),r=0;r<e.length;r++)e[r]=arguments[r+1];var o={callback:t,args:e};return c[u]=o,n(u),u++},p.clearImmediate=h}function h(t){delete c[t]}function d(t){if(f)setTimeout(d,0,t);else{var e=c[t];if(e){f=!0;try{!function(t){var e=t.callback,r=t.args;switch(r.length){case 0:e();break;case 1:e(r[0]);break;case 2:e(r[0],r[1]);break;case 3:e(r[0],r[1],r[2]);break;default:e.apply(void 0,r)}}(e)}finally{h(t),f=!1}}}}}("undefined"==typeof self?Object({}):self)}).call(this,r(8))},function(t,e){function r(t){try{if(!Object({}).localStorage)return!1}catch(t){return!1}var e=Object({}).localStorage[t];return null!=e&&"true"===String(e).toLowerCase()}t.exports=function(t,e){if(r("noDeprecation"))return t;var n=!1;return function(){if(!n){if(r("throwDeprecation"))throw new Error(e);r("traceDeprecation")?console.trace(e):console.warn(e),n=!0}return t.apply(this,arguments)}}},function(t,e,r){
11
- /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
12
- var n=r(7),o=n.Buffer;function i(t,e){for(var r in t)e[r]=t[r]}function a(t,e,r){return o(t,e,r)}o.from&&o.alloc&&o.allocUnsafe&&o.allocUnsafeSlow?t.exports=n:(i(n,e),e.Buffer=a),a.prototype=Object.create(o.prototype),i(o,a),a.from=function(t,e,r){if("number"==typeof t)throw new TypeError("Argument must not be a number");return o(t,e,r)},a.alloc=function(t,e,r){if("number"!=typeof t)throw new TypeError("Argument must be a number");var n=o(t);return void 0!==e?"string"==typeof r?n.fill(e,r):n.fill(e):n.fill(0),n},a.allocUnsafe=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return o(t)},a.allocUnsafeSlow=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return n.SlowBuffer(t)}},function(t,e,r){"use strict";t.exports=i;var n=r(44),o=Object.create(r(13));function i(t){if(!(this instanceof i))return new i(t);n.call(this,t)}o.inherits=r(9),o.inherits(i,n),i.prototype._transform=function(t,e,r){r(null,t)}},function(t,e,r){var n=r(7).Buffer;t.exports=function(t){if(t instanceof Uint8Array){if(0===t.byteOffset&&t.byteLength===t.buffer.byteLength)return t.buffer;if("function"==typeof t.buffer.slice)return t.buffer.slice(t.byteOffset,t.byteOffset+t.byteLength)}if(n.isBuffer(t)){for(var e=new Uint8Array(t.length),r=t.length,o=0;o<r;o++)e[o]=t[o];return e.buffer}throw new Error("Argument must be a Buffer")}},function(t,e){t.exports=function(){for(var t={},e=0;e<arguments.length;e++){var n=arguments[e];for(var o in n)r.call(n,o)&&(t[o]=n[o])}return t};var r=Object.prototype.hasOwnProperty},function(t,e){t.exports={100:"Continue",101:"Switching Protocols",102:"Processing",200:"OK",201:"Created",202:"Accepted",203:"Non-Authoritative Information",204:"No Content",205:"Reset Content",206:"Partial Content",207:"Multi-Status",208:"Already Reported",226:"IM Used",300:"Multiple Choices",301:"Moved Permanently",302:"Found",303:"See Other",304:"Not Modified",305:"Use Proxy",307:"Temporary Redirect",308:"Permanent Redirect",400:"Bad Request",401:"Unauthorized",402:"Payment Required",403:"Forbidden",404:"Not Found",405:"Method Not Allowed",406:"Not Acceptable",407:"Proxy Authentication Required",408:"Request Timeout",409:"Conflict",410:"Gone",411:"Length Required",412:"Precondition Failed",413:"Payload Too Large",414:"URI Too Long",415:"Unsupported Media Type",416:"Range Not Satisfiable",417:"Expectation Failed",418:"I'm a teapot",421:"Misdirected Request",422:"Unprocessable Entity",423:"Locked",424:"Failed Dependency",425:"Unordered Collection",426:"Upgrade Required",428:"Precondition Required",429:"Too Many Requests",431:"Request Header Fields Too Large",451:"Unavailable For Legal Reasons",500:"Internal Server Error",501:"Not Implemented",502:"Bad Gateway",503:"Service Unavailable",504:"Gateway Timeout",505:"HTTP Version Not Supported",506:"Variant Also Negotiates",507:"Insufficient Storage",508:"Loop Detected",509:"Bandwidth Limit Exceeded",510:"Not Extended",511:"Network Authentication Required"}},function(t,e,r){(function(t){var n;/*! https://mths.be/punycode v1.4.1 by @mathias */!function(o){e&&e.nodeType,t&&t.nodeType;var i=Object({});i.global!==i&&i.window!==i&&i.self;var a,s=2147483647,u=/^xn--/,c=/[^\x20-\x7E]/,f=/[\x2E\u3002\uFF0E\uFF61]/g,l={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},p=Math.floor,h=String.fromCharCode;function d(t){throw new RangeError(l[t])}function y(t,e){for(var r=t.length,n=[];r--;)n[r]=e(t[r]);return n}function v(t,e){var r=t.split("@"),n="";return r.length>1&&(n=r[0]+"@",t=r[1]),n+y((t=t.replace(f,".")).split("."),e).join(".")}function g(t){for(var e,r,n=[],o=0,i=t.length;o<i;)(e=t.charCodeAt(o++))>=55296&&e<=56319&&o<i?56320==(64512&(r=t.charCodeAt(o++)))?n.push(((1023&e)<<10)+(1023&r)+65536):(n.push(e),o--):n.push(e);return n}function m(t){return y(t,(function(t){var e="";return t>65535&&(e+=h((t-=65536)>>>10&1023|55296),t=56320|1023&t),e+=h(t)})).join("")}function b(t,e){return t+22+75*(t<26)-((0!=e)<<5)}function _(t,e,r){var n=0;for(t=r?p(t/700):t>>1,t+=p(t/e);t>455;n+=36)t=p(t/35);return p(n+36*t/(t+38))}function w(t){var e,r,n,o,i,a,u,c,f,l,h,y=[],v=t.length,g=0,b=128,w=72;for((r=t.lastIndexOf("-"))<0&&(r=0),n=0;n<r;++n)t.charCodeAt(n)>=128&&d("not-basic"),y.push(t.charCodeAt(n));for(o=r>0?r+1:0;o<v;){for(i=g,a=1,u=36;o>=v&&d("invalid-input"),((c=(h=t.charCodeAt(o++))-48<10?h-22:h-65<26?h-65:h-97<26?h-97:36)>=36||c>p((s-g)/a))&&d("overflow"),g+=c*a,!(c<(f=u<=w?1:u>=w+26?26:u-w));u+=36)a>p(s/(l=36-f))&&d("overflow"),a*=l;w=_(g-i,e=y.length+1,0==i),p(g/e)>s-b&&d("overflow"),b+=p(g/e),g%=e,y.splice(g++,0,b)}return m(y)}function O(t){var e,r,n,o,i,a,u,c,f,l,y,v,m,w,O,S=[];for(v=(t=g(t)).length,e=128,r=0,i=72,a=0;a<v;++a)(y=t[a])<128&&S.push(h(y));for(n=o=S.length,o&&S.push("-");n<v;){for(u=s,a=0;a<v;++a)(y=t[a])>=e&&y<u&&(u=y);for(u-e>p((s-r)/(m=n+1))&&d("overflow"),r+=(u-e)*m,e=u,a=0;a<v;++a)if((y=t[a])<e&&++r>s&&d("overflow"),y==e){for(c=r,f=36;!(c<(l=f<=i?1:f>=i+26?26:f-i));f+=36)O=c-l,w=36-l,S.push(h(b(l+O%w,0))),c=p(O/w);S.push(h(b(c,0))),i=_(r,m,n==o),r=0,++n}++r,++e}return S.join("")}a={version:"1.4.1",ucs2:{decode:g,encode:m},decode:w,encode:O,toASCII:function(t){return v(t,(function(t){return c.test(t)?"xn--"+O(t):t}))},toUnicode:function(t){return v(t,(function(t){return u.test(t)?w(t.slice(4).toLowerCase()):t}))}},void 0===(n=function(){return a}.call(e,r,e,t))||(t.exports=n)}()}).call(this,r(99)(t))},function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},function(t,e,r){"use strict";t.exports={isString:function(t){return"string"==typeof t},isObject:function(t){return"object"==typeof t&&null!==t},isNull:function(t){return null===t},isNullOrUndefined:function(t){return null==t}}},function(t,e,r){"use strict";e.decode=e.parse=r(102),e.encode=e.stringify=r(103)},function(t,e,r){"use strict";function n(t,e){return Object.prototype.hasOwnProperty.call(t,e)}t.exports=function(t,e,r,i){e=e||"&",r=r||"=";var a={};if("string"!=typeof t||0===t.length)return a;var s=/\+/g;t=t.split(e);var u=1e3;i&&"number"==typeof i.maxKeys&&(u=i.maxKeys);var c=t.length;u>0&&c>u&&(c=u);for(var f=0;f<c;++f){var l,p,h,d,y=t[f].replace(s,"%20"),v=y.indexOf(r);v>=0?(l=y.substr(0,v),p=y.substr(v+1)):(l=y,p=""),h=decodeURIComponent(l),d=decodeURIComponent(p),n(a,h)?o(a[h])?a[h].push(d):a[h]=[a[h],d]:a[h]=d}return a};var o=Array.isArray||function(t){return"[object Array]"===Object.prototype.toString.call(t)}},function(t,e,r){"use strict";var n=function(t){switch(typeof t){case"string":return t;case"boolean":return t?"true":"false";case"number":return isFinite(t)?t:"";default:return""}};t.exports=function(t,e,r,s){return e=e||"&",r=r||"=",null===t&&(t=void 0),"object"==typeof t?i(a(t),(function(a){var s=encodeURIComponent(n(a))+r;return o(t[a])?i(t[a],(function(t){return s+encodeURIComponent(n(t))})).join(e):s+encodeURIComponent(n(t[a]))})).join(e):s?encodeURIComponent(n(s))+r+encodeURIComponent(n(t)):""};var o=Array.isArray||function(t){return"[object Array]"===Object.prototype.toString.call(t)};function i(t,e){if(t.map)return t.map(e);for(var r=[],n=0;n<t.length;n++)r.push(e(t[n],n));return r}var a=Object.keys||function(t){var e=[];for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.push(r);return e}},function(t,e,r){var n=r(46);t.exports=function(t){if(Array.isArray(t))return n(t)},t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e){t.exports=function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)},t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e,r){var n=r(46);t.exports=function(t,e){if(t){if("string"==typeof t)return n(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?n(t,e):void 0}},t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e){t.exports=function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e,r){"use strict";t.exports=function(t,e){if(e=e.split(":")[0],!(t=+t))return!1;switch(e){case"http":case"ws":return 80!==t;case"https":case"wss":return 443!==t;case"ftp":return 21!==t;case"gopher":return 70!==t;case"file":return!1}return 0!==t}},function(t,e,r){"use strict";var n=Object.prototype.hasOwnProperty;function o(t){try{return decodeURIComponent(t.replace(/\+/g," "))}catch(t){return null}}function i(t){try{return encodeURIComponent(t)}catch(t){return null}}e.stringify=function(t,e){e=e||"";var r,o,a=[];for(o in"string"!=typeof e&&(e="?"),t)if(n.call(t,o)){if((r=t[o])||null!=r&&!isNaN(r)||(r=""),o=i(o),r=i(r),null===o||null===r)continue;a.push(o+"="+r)}return a.length?e+a.join("&"):""},e.parse=function(t){for(var e,r=/([^=?#&]+)=?([^&]*)/g,n={};e=r.exec(t);){var i=o(e[1]),a=o(e[2]);null===i||null===a||i in n||(n[i]=a)}return n}},function(t,e,r){"use strict";r.r(e),r.d(e,"initStore",(function(){return Zn})),r.d(e,"endStore",(function(){return Wn})),r.d(e,"restoreStore",(function(){return oo}));var n=r(1),o=r.n(n);function i(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function a(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function s(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?a(Object(r),!0).forEach((function(e){i(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):a(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function u(t){return"Minified Redux error #"+t+"; visit https://redux.js.org/Errors?code="+t+" for the full message or use the non-minified dev environment for full errors. "}var c="function"==typeof Symbol&&Symbol.observable||"@@observable",f=function(){return Math.random().toString(36).substring(7).split("").join(".")},l={INIT:"@@redux/INIT"+f(),REPLACE:"@@redux/REPLACE"+f(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+f()}};function p(t){if("object"!=typeof t||null===t)return!1;for(var e=t;null!==Object.getPrototypeOf(e);)e=Object.getPrototypeOf(e);return Object.getPrototypeOf(t)===e}function h(t,e,r){var n;if("function"==typeof e&&"function"==typeof r||"function"==typeof r&&"function"==typeof arguments[3])throw new Error(u(0));if("function"==typeof e&&void 0===r&&(r=e,e=void 0),void 0!==r){if("function"!=typeof r)throw new Error(u(1));return r(h)(t,e)}if("function"!=typeof t)throw new Error(u(2));var o=t,i=e,a=[],s=a,f=!1;function d(){s===a&&(s=a.slice())}function y(){if(f)throw new Error(u(3));return i}function v(t){if("function"!=typeof t)throw new Error(u(4));if(f)throw new Error(u(5));var e=!0;return d(),s.push(t),function(){if(e){if(f)throw new Error(u(6));e=!1,d();var r=s.indexOf(t);s.splice(r,1),a=null}}}function g(t){if(!p(t))throw new Error(u(7));if(void 0===t.type)throw new Error(u(8));if(f)throw new Error(u(9));try{f=!0,i=o(i,t)}finally{f=!1}for(var e=a=s,r=0;r<e.length;r++){(0,e[r])()}return t}function m(t){if("function"!=typeof t)throw new Error(u(10));o=t,g({type:l.REPLACE})}function b(){var t,e=v;return(t={subscribe:function(t){if("object"!=typeof t||null===t)throw new Error(u(11));function r(){t.next&&t.next(y())}return r(),{unsubscribe:e(r)}}})[c]=function(){return this},t}return g({type:l.INIT}),(n={dispatch:g,subscribe:v,getState:y,replaceReducer:m})[c]=b,n}function d(t){for(var e=Object.keys(t),r={},n=0;n<e.length;n++){var o=e[n];0,"function"==typeof t[o]&&(r[o]=t[o])}var i,a=Object.keys(r);try{!function(t){Object.keys(t).forEach((function(e){var r=t[e];if(void 0===r(void 0,{type:l.INIT}))throw new Error(u(12));if(void 0===r(void 0,{type:l.PROBE_UNKNOWN_ACTION()}))throw new Error(u(13))}))}(r)}catch(t){i=t}return function(t,e){if(void 0===t&&(t={}),i)throw i;for(var n=!1,o={},s=0;s<a.length;s++){var c=a[s],f=r[c],l=t[c],p=f(l,e);if(void 0===p){e&&e.type;throw new Error(u(14))}o[c]=p,n=n||p!==l}return(n=n||a.length!==Object.keys(t).length)?o:t}}function y(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return 0===e.length?function(t){return t}:1===e.length?e[0]:e.reduce((function(t,e){return function(){return t(e.apply(void 0,arguments))}}))}var v=function(t){return"@@redux-saga/"+t},g=v("CANCEL_PROMISE"),m=v("CHANNEL_END"),b=v("IO"),_=v("MATCH"),w=v("MULTICAST"),O=v("SAGA_ACTION"),S=v("SELF_CANCELLATION"),j=v("TASK"),E=v("TASK_CANCEL"),x=v("TERMINATE"),A=v("LOCATION");function P(){return(P=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t}).apply(this,arguments)}var k=function(t){return null==t},T=function(t){return null!=t},I=function(t){return"function"==typeof t},R=function(t){return"string"==typeof t},C=Array.isArray,L=function(t){return t&&I(t.then)},M=function(t){return t&&I(t.next)&&I(t.throw)},D=function t(e){return e&&(R(e)||B(e)||I(e)||C(e)&&e.every(t))},N=function(t){return t&&I(t.take)&&I(t.close)},U=function(t){return I(t)&&t.hasOwnProperty("toString")},B=function(t){return Boolean(t)&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype};var q=function(t,e){var r;void 0===e&&(e=!0);var n=new Promise((function(n){r=setTimeout(n,Math.min(2147483647,t),e)}));return n[g]=function(){clearTimeout(r)},n},z=function(t){return function(){return t}}(!0),F=function(){};var H=function(t){return t};"function"==typeof Symbol&&Symbol.asyncIterator&&Symbol.asyncIterator;var W=function(t,e){P(t,e),Object.getOwnPropertySymbols&&Object.getOwnPropertySymbols(e).forEach((function(r){t[r]=e[r]}))};function G(t,e){var r=t.indexOf(e);r>=0&&t.splice(r,1)}function Y(t){var e=!1;return function(){e||(e=!0,t())}}var K=function(t){throw t},V=function(t){return{value:t,done:!0}};function J(t,e,r){void 0===e&&(e=K),void 0===r&&(r="iterator");var n={meta:{name:r},next:t,throw:e,return:V,isSagaIterator:!0};return"undefined"!=typeof Symbol&&(n[Symbol.iterator]=function(){return n}),n}function $(t,e){var r=e.sagaStack;console.error(t),console.error(r)}var X=function(t){return Array.apply(null,new Array(t))},Q=function(t){return function(e){return t(Object.defineProperty(e,O,{value:!0}))}},Z=function(t){return t===x},tt=function(t){return t===E},et=function(t){return Z(t)||tt(t)};function rt(t,e){var r=Object.keys(t),n=r.length;var o,i=0,a=C(t)?X(n):{},s={};return r.forEach((function(t){var r=function(r,s){o||(s||et(r)?(e.cancel(),e(r,s)):(a[t]=r,++i===n&&(o=!0,e(a))))};r.cancel=F,s[t]=r})),e.cancel=function(){o||(o=!0,r.forEach((function(t){return s[t].cancel()})))},s}function nt(t){return{name:t.name||"anonymous",location:ot(t)}}function ot(t){return t[A]}function it(t,e){void 0===t&&(t=10);var r=new Array(t),n=0,o=0,i=0,a=function(e){r[o]=e,o=(o+1)%t,n++},s=function(){if(0!=n){var e=r[i];return r[i]=null,n--,i=(i+1)%t,e}},u=function(){for(var t=[];n;)t.push(s());return t};return{isEmpty:function(){return 0==n},put:function(s){var c;if(n<t)a(s);else switch(e){case 1:throw new Error("Channel's Buffer overflow!");case 3:r[o]=s,i=o=(o+1)%t;break;case 4:c=2*t,r=u(),n=r.length,o=r.length,i=0,r.length=c,t=c,a(s)}},take:s,flush:u}}var at=function(t){return it(t,4)},st=function(t,e){var r;return(r={})[b]=!0,r.combinator=!1,r.type=t,r.payload=e,r},ut=function(t){return st("FORK",P({},t.payload,{detached:!0}))};function ct(t,e){return void 0===t&&(t="*"),D(t)?(T(e)&&console.warn("take(pattern) takes one argument but two were provided. Consider passing an array for listening to several action types"),st("TAKE",{pattern:t})):N(r=t)&&r[w]&&T(e)&&D(e)?st("TAKE",{channel:t,pattern:e}):N(t)?(T(e)&&console.warn("take(channel) takes one argument but two were provided. Second argument is ignored."),st("TAKE",{channel:t})):void 0;var r}function ft(t,e){return k(e)&&(e=t,t=void 0),st("PUT",{channel:t,action:e})}function lt(t){var e=st("ALL",t);return e.combinator=!0,e}function pt(t,e){var r,n=null;return I(t)?r=t:(C(t)?(n=t[0],r=t[1]):(n=t.context,r=t.fn),n&&R(r)&&I(n[r])&&(r=n[r])),{context:n,fn:r,args:e}}function ht(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return st("CALL",pt(t,r))}function dt(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return st("FORK",pt(t,r))}function yt(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return ut(dt.apply(void 0,[t].concat(r)))}function vt(t){return void 0===t&&(t=S),st("CANCEL",t)}function gt(t){void 0===t&&(t=H);for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return st("SELECT",{selector:t,args:r})}var mt=ht.bind(null,q);function bt(){var t={};return t.promise=new Promise((function(e,r){t.resolve=e,t.reject=r})),t}var _t=bt,wt=[],Ot=0;function St(t){try{xt(),t()}finally{At()}}function jt(t){wt.push(t),Ot||(xt(),Pt())}function Et(t){try{return xt(),t()}finally{Pt()}}function xt(){Ot++}function At(){Ot--}function Pt(){var t;for(At();!Ot&&void 0!==(t=wt.shift());)St(t)}var kt=function(t){return function(e){return t.some((function(t){return Lt(t)(e)}))}},Tt=function(t){return function(e){return t(e)}},It=function(t){return function(e){return e.type===String(t)}},Rt=function(t){return function(e){return e.type===t}},Ct=function(){return z};function Lt(t){var e="*"===t?Ct:R(t)?It:C(t)?kt:U(t)?It:I(t)?Tt:B(t)?Rt:null;if(null===e)throw new Error("invalid pattern: "+t);return e(t)}var Mt={type:m},Dt=function(t){return t&&t.type===m};function Nt(t){void 0===t&&(t=at());var e=!1,r=[];return{take:function(n){e&&t.isEmpty()?n(Mt):t.isEmpty()?(r.push(n),n.cancel=function(){G(r,n)}):n(t.take())},put:function(n){if(!e){if(0===r.length)return t.put(n);r.shift()(n)}},flush:function(r){e&&t.isEmpty()?r(Mt):r(t.flush())},close:function(){if(!e){e=!0;var t=r;r=[];for(var n=0,o=t.length;n<o;n++){(0,t[n])(Mt)}}}}}function Ut(){var t,e,r,n,o,i,a=(e=!1,n=r=[],o=function(){n===r&&(n=r.slice())},i=function(){e=!0;var t=r=n;n=[],t.forEach((function(t){t(Mt)}))},(t={})[w]=!0,t.put=function(t){if(!e)if(Dt(t))i();else for(var o=r=n,a=0,s=o.length;a<s;a++){var u=o[a];u[_](t)&&(u.cancel(),u(t))}},t.take=function(t,r){void 0===r&&(r=Ct),e?t(Mt):(t[_]=r,o(),n.push(t),t.cancel=Y((function(){o(),G(n,t)})))},t.close=i,t),s=a.put;return a.put=function(t){t[O]?s(t):jt((function(){s(t)}))},a}function Bt(t,e){var r=t[g];I(r)&&(e.cancel=r),t.then(e,(function(t){e(t,!0)}))}var qt,zt=0,Ft=function(){return++zt};function Ht(t){t.isRunning()&&t.cancel()}var Wt=((qt={}).TAKE=function(t,e,r){var n=e.channel,o=void 0===n?t.channel:n,i=e.pattern,a=e.maybe,s=function(t){t instanceof Error?r(t,!0):!Dt(t)||a?r(t):r(x)};try{o.take(s,T(i)?Lt(i):null)}catch(t){return void r(t,!0)}r.cancel=s.cancel},qt.PUT=function(t,e,r){var n=e.channel,o=e.action,i=e.resolve;jt((function(){var e;try{e=(n?n.put:t.dispatch)(o)}catch(t){return void r(t,!0)}i&&L(e)?Bt(e,r):r(e)}))},qt.ALL=function(t,e,r,n){var o=n.digestEffect,i=zt,a=Object.keys(e);if(0!==a.length){var s=rt(e,r);a.forEach((function(t){o(e[t],i,s[t],t)}))}else r(C(e)?[]:{})},qt.RACE=function(t,e,r,n){var o=n.digestEffect,i=zt,a=Object.keys(e),s=C(e)?X(a.length):{},u={},c=!1;a.forEach((function(t){var e=function(e,n){c||(n||et(e)?(r.cancel(),r(e,n)):(r.cancel(),c=!0,s[t]=e,r(s)))};e.cancel=F,u[t]=e})),r.cancel=function(){c||(c=!0,a.forEach((function(t){return u[t].cancel()})))},a.forEach((function(t){c||o(e[t],i,u[t],t)}))},qt.CALL=function(t,e,r,n){var o=e.context,i=e.fn,a=e.args,s=n.task;try{var u=i.apply(o,a);if(L(u))return void Bt(u,r);if(M(u))return void Qt(t,u,s.context,zt,nt(i),!1,r);r(u)}catch(t){r(t,!0)}},qt.CPS=function(t,e,r){var n=e.context,o=e.fn,i=e.args;try{var a=function(t,e){k(t)?r(e):r(t,!0)};o.apply(n,i.concat(a)),a.cancel&&(r.cancel=a.cancel)}catch(t){r(t,!0)}},qt.FORK=function(t,e,r,n){var o=e.context,i=e.fn,a=e.args,s=e.detached,u=n.task,c=function(t){var e=t.context,r=t.fn,n=t.args;try{var o=r.apply(e,n);if(M(o))return o;var i=!1;return J((function(t){return i?{value:t,done:!0}:(i=!0,{value:o,done:!L(o)})}))}catch(t){return J((function(){throw t}))}}({context:o,fn:i,args:a}),f=function(t,e){return t.isSagaIterator?{name:t.meta.name}:nt(e)}(c,i);Et((function(){var e=Qt(t,c,u.context,zt,f,s,void 0);s?r(e):e.isRunning()?(u.queue.addTask(e),r(e)):e.isAborted()?u.queue.abort(e.error()):r(e)}))},qt.JOIN=function(t,e,r,n){var o=n.task,i=function(t,e){if(t.isRunning()){var r={task:o,cb:e};e.cancel=function(){t.isRunning()&&G(t.joiners,r)},t.joiners.push(r)}else t.isAborted()?e(t.error(),!0):e(t.result())};if(C(e)){if(0===e.length)return void r([]);var a=rt(e,r);e.forEach((function(t,e){i(t,a[e])}))}else i(e,r)},qt.CANCEL=function(t,e,r,n){var o=n.task;e===S?Ht(o):C(e)?e.forEach(Ht):Ht(e),r()},qt.SELECT=function(t,e,r){var n=e.selector,o=e.args;try{r(n.apply(void 0,[t.getState()].concat(o)))}catch(t){r(t,!0)}},qt.ACTION_CHANNEL=function(t,e,r){var n=e.pattern,o=Nt(e.buffer),i=Lt(n),a=function e(r){Dt(r)||t.channel.take(e,i),o.put(r)},s=o.close;o.close=function(){a.cancel(),s()},t.channel.take(a,i),r(o)},qt.CANCELLED=function(t,e,r,n){r(n.task.isCancelled())},qt.FLUSH=function(t,e,r){e.flush(r)},qt.GET_CONTEXT=function(t,e,r,n){r(n.task.context[e])},qt.SET_CONTEXT=function(t,e,r,n){var o=n.task;W(o.context,e),r()},qt);function Gt(t,e){return t+"?"+e}function Yt(t){var e=t.name,r=t.location;return r?e+" "+Gt(r.fileName,r.lineNumber):e}var Kt=null,Vt=[],Jt=function(){Kt=null,Vt.length=0},$t=function(){var t,e,r,n,o,i,a,s=Vt[0],u=Vt.slice(1),c=s.crashedEffect?(t=s.crashedEffect,(e=ot(t))?e.code+" "+Gt(e.fileName,e.lineNumber):""):null;return["The above error occurred in task "+Yt(s.meta)+(c?" \n when executing effect "+c:"")].concat(u.map((function(t){return" created by "+Yt(t.meta)})),[(r=Vt,n=function(t){return t.cancelledTasks},o=r,a=(i=[]).concat.apply(i,o.map(n)),a.length?["Tasks cancelled due to error:"].concat(a).join("\n"):"")]).join("\n")};function Xt(t,e,r,n,o,i,a){var s;void 0===a&&(a=F);var u,c,f=0,l=null,p=[],h=Object.create(r),d=function(t,e,r){var n,o=[],i=!1;function a(t){e(),u(),r(t,!0)}function s(e){o.push(e),e.cont=function(s,u){i||(G(o,e),e.cont=F,u?a(s):(e===t&&(n=s),o.length||(i=!0,r(n))))}}function u(){i||(i=!0,o.forEach((function(t){t.cont=F,t.cancel()})),o=[])}return s(t),{addTask:s,cancelAll:u,abort:a,getTasks:function(){return o}}}(e,(function(){p.push.apply(p,d.getTasks().map((function(t){return t.meta.name})))}),y);function y(e,r){if(r){if(f=2,(i={meta:o,cancelledTasks:p}).crashedEffect=Kt,Vt.push(i),v.isRoot){var n=$t();Jt(),t.onError(e,{sagaStack:n})}c=e,l&&l.reject(e)}else e===E?f=1:1!==f&&(f=3),u=e,l&&l.resolve(e);var i;v.cont(e,r),v.joiners.forEach((function(t){t.cb(e,r)})),v.joiners=null}var v=((s={})[j]=!0,s.id=n,s.meta=o,s.isRoot=i,s.context=h,s.joiners=[],s.queue=d,s.cancel=function(){0===f&&(f=1,d.cancelAll(),y(E,!1))},s.cont=a,s.end=y,s.setContext=function(t){W(h,t)},s.toPromise=function(){return l||(l=_t(),2===f?l.reject(c):0!==f&&l.resolve(u)),l.promise},s.isRunning=function(){return 0===f},s.isCancelled=function(){return 1===f||0===f&&1===e.status},s.isAborted=function(){return 2===f},s.result=function(){return u},s.error=function(){return c},s);return v}function Qt(t,e,r,n,o,i,a){var s=t.finalizeRunEffect((function(e,r,n){if(L(e))Bt(e,n);else if(M(e))Qt(t,e,c.context,r,o,!1,n);else if(e&&e[b]){(0,Wt[e.type])(t,e.payload,n,f)}else n(e)}));l.cancel=F;var u={meta:o,cancel:function(){0===u.status&&(u.status=1,l(E))},status:0},c=Xt(t,u,r,n,o,i,a),f={task:c,digestEffect:p};return a&&(a.cancel=c.cancel),l(),c;function l(t,r){try{var o;r?(o=e.throw(t),Jt()):tt(t)?(u.status=1,l.cancel(),o=I(e.return)?e.return(E):{done:!0,value:E}):o=Z(t)?I(e.return)?e.return():{done:!0}:e.next(t),o.done?(1!==u.status&&(u.status=3),u.cont(o.value)):p(o.value,n,l)}catch(t){if(1===u.status)throw t;u.status=2,u.cont(t,!0)}}function p(e,r,n,o){void 0===o&&(o="");var i,a=Ft();function u(r,o){i||(i=!0,n.cancel=F,t.sagaMonitor&&(o?t.sagaMonitor.effectRejected(a,r):t.sagaMonitor.effectResolved(a,r)),o&&function(t){Kt=t}(e),n(r,o))}t.sagaMonitor&&t.sagaMonitor.effectTriggered({effectId:a,parentEffectId:r,label:o,effect:e}),u.cancel=F,n.cancel=function(){i||(i=!0,u.cancel(),u.cancel=F,t.sagaMonitor&&t.sagaMonitor.effectCancelled(a))},s(e,a,u)}}function Zt(t,e){var r=t.channel,n=void 0===r?Ut():r,o=t.dispatch,i=t.getState,a=t.context,s=void 0===a?{}:a,u=t.sagaMonitor,c=t.effectMiddlewares,f=t.onError,l=void 0===f?$:f;for(var p=arguments.length,h=new Array(p>2?p-2:0),d=2;d<p;d++)h[d-2]=arguments[d];var v=e.apply(void 0,h);var g,m=Ft();if(u&&(u.rootSagaStarted=u.rootSagaStarted||F,u.effectTriggered=u.effectTriggered||F,u.effectResolved=u.effectResolved||F,u.effectRejected=u.effectRejected||F,u.effectCancelled=u.effectCancelled||F,u.actionDispatched=u.actionDispatched||F,u.rootSagaStarted({effectId:m,saga:e,args:h})),c){var b=y.apply(void 0,c);g=function(t){return function(e,r,n){return b((function(e){return t(e,r,n)}))(e)}}}else g=H;var _={channel:n,dispatch:Q(o),getState:i,sagaMonitor:u,onError:l,finalizeRunEffect:g};return Et((function(){var t=Qt(_,v,s,m,nt(e),!0,void 0);return u&&u.effectResolved(m,t),t}))}var te=function(t){var e,r=void 0===t?{}:t,n=r.context,o=void 0===n?{}:n,i=r.channel,a=void 0===i?Ut():i,s=r.sagaMonitor,u=function(t,e){if(null==t)return{};var r,n,o={},i=Object.keys(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||(o[r]=t[r]);return o}(r,["context","channel","sagaMonitor"]);function c(t){var r=t.getState,n=t.dispatch;return e=Zt.bind(null,P({},u,{context:o,channel:a,dispatch:n,getState:r,sagaMonitor:s})),function(t){return function(e){s&&s.actionDispatched&&s.actionDispatched(e);var r=t(e);return a.put(e),r}}}return c.run=function(){return e.apply(void 0,arguments)},c.setContext=function(t){W(o,t)},c},ee=r(0),re=r.n(ee),ne=function(t){return{done:!0,value:t}},oe={};function ie(t){return N(t)?"channel":U(t)?String(t):I(t)?t.name:String(t)}function ae(t,e,r){var n,o,i,a=e;function s(e,r){if(a===oe)return ne(e);if(r&&!o)throw a=oe,r;n&&n(e);var s=r?t[o](r):t[a]();return a=s.nextState,i=s.effect,n=s.stateUpdater,o=s.errorState,a===oe?ne(e):i}return J(s,(function(t){return s(null,t)}),r)}function se(t,e){for(var r=arguments.length,n=new Array(r>2?r-2:0),o=2;o<r;o++)n[o-2]=arguments[o];var i,a={done:!1,value:ct(t)},s=function(t){return{done:!1,value:dt.apply(void 0,[e].concat(n,[t]))}},u=function(t){return i=t};return ae({q1:function(){return{nextState:"q2",effect:a,stateUpdater:u}},q2:function(){return{nextState:"q1",effect:s(i)}}},"q1","takeEvery("+ie(t)+", "+e.name+")")}function ue(t,e){for(var r=arguments.length,n=new Array(r>2?r-2:0),o=2;o<r;o++)n[o-2]=arguments[o];var i,a,s={done:!1,value:ct(t)},u=function(t){return{done:!1,value:dt.apply(void 0,[e].concat(n,[t]))}},c=function(t){return{done:!1,value:vt(t)}},f=function(t){return i=t},l=function(t){return a=t};return ae({q1:function(){return{nextState:"q2",effect:s,stateUpdater:l}},q2:function(){return i?{nextState:"q3",effect:c(i)}:{nextState:"q1",effect:u(a),stateUpdater:f}},q3:function(){return{nextState:"q1",effect:u(a),stateUpdater:f}}},"q1","takeLatest("+ie(t)+", "+e.name+")")}function ce(t,e){for(var r=arguments.length,n=new Array(r>2?r-2:0),o=2;o<r;o++)n[o-2]=arguments[o];return dt.apply(void 0,[se,t,e].concat(n))}function fe(t,e){for(var r=arguments.length,n=new Array(r>2?r-2:0),o=2;o<r;o++)n[o-2]=arguments[o];return dt.apply(void 0,[ue,t,e].concat(n))}function le(t){var e=t.connections,r=e.get("currentConnection");return-1===r?null:e.get("connections").get(r).toJS().logonInfo}var pe=r(19),he=r(6),de="API_CALL",ye=function(t){return"password"===t||null==t?{logon:he.c,link:{href:"/SASLogon/oauth/token",method:"POST",rel:"logon",responseType:"application/json",type:"application/x-www-form-urlencoded",uri:"/SASLogon/oauth/token"}}:{keepAlive:he.a}},ve=function(){return{logoff:he.b,link:{href:"/SASLogon/logout",method:"GET",rel:"logoff",responseType:"application/json",uri:"/SASLogon/logout"}}};r(10);function ge(t,e,r){if("_appdata"===r||"_apistatus"===r||"_xsrf"===r)return{structType:r,type:r,route:r,routeList:[],userData:{}};var n={structType:e,type:e,title:t,method:"GET",iconfig:{},payload:{},statusInfo:{status:0,statusText:" ",error:!1,details:" "},runStatus:"idle",parentRoute:"",route:"",resultType:"",links:{},scrollCmds:{},paginator:!1,itemsList:[],items:[],details:{},stateEvent:null,responseHeaders:{},link:null,raw:{}};return 3===arguments.length&&(n.link={method:"GET",title:r,href:"/"+r+"/",rel:"root",type:"application/vnd.sas.api",uri:"/"+r+"/"},n.route="".concat(r,":/").concat(r),n.parentRoute=r),n}var me=re.a.mark(we);function be(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function _e(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?be(Object(r),!0).forEach((function(e){o()(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):be(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function we(){var t,e,r,n,o;return re.a.wrap((function(i){for(;;)switch(i.prev=i.next){case 0:t=!0;case 1:if(!t){i.next=30;break}return i.next=4,ct("VIYA_LOGON");case 4:return e=i.sent,i.next=7,ft({type:"BEGIN_LOGON"});case 7:return i.next=9,ht(Oe,e);case 9:return(r=i.sent).keepAlive=null==e.payload.keepAlive?null:e.payload.keepAlive,i.next=13,ft(r);case 13:if(!1!==r.error){i.next=28;break}return i.next=16,ct("VIYA_LOGOFF");case 16:return e=i.sent,i.next=19,ft({type:"BEGIN_LOGOFF"});case 19:return n=_e({},e),i.next=22,gt(le);case 22:return n.logonInfo=i.sent,i.next=25,ht(Se,n);case 25:return o=i.sent,i.next=28,ft(o);case 28:i.next=1;break;case 30:case"end":return i.stop()}}),me)}function Oe(t){var e=_e({},t.payload);if("server"===e.authType||"implicit"===e.authType)return{type:e.authType,error:!1,payload:{iconfig:e}};var r=ye(e.authType);return e.link=r.link,r.logon(e).then((function(t){return{type:"VIYA_LOGON_COMPLETE",error:!1,payload:t}})).catch((function(t){return{type:"VIYA_LOGON_COMPLETE",error:!0,payload:t}}))}function Se(t){var e=ve();return t.link=e.link,e.logoff(t).then((function(t){return{type:"VIYA_LOGOFF_COMPLETE",error:!1,payload:t}})).catch((function(t){return{type:"VIYA_LOGOFF_COMPLETE",error:!0,payload:t}}))}var je=we;function Ee(t,e,r){return{error:r,type:e.serviceName+"_"+e.type+"_COMPLETE",config:e,payload:t}}var xe=function(t){return null===t.logonInfo?Ee({error:"Please logon"},t,!0):Object(he.b)(t).then((function(e){return Ee(e,t,!1)})).catch((function(e){return Ee(e,t,!0)}))},Ae=re.a.mark(Te);function Pe(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function ke(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Pe(Object(r),!0).forEach((function(e){o()(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Pe(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Te(t){var e,r;return re.a.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return e=ke({},t),n.next=3,gt(le);case 3:return e.logonInfo=n.sent,n.next=6,ft({type:e.serviceName+"_"+t.type+"_BEGIN",config:e});case 6:if(!(t.delay>0)){n.next=9;break}return n.next=9,mt(1e3*t.delay);case 9:return n.next=11,ht(xe,e);case 11:return r=n.sent,n.next=14,ft(r);case 14:case"end":return n.stop()}}),Ae)}var Ie=Te,Re=re.a.mark(Ce);function Ce(){return re.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,ce(["ADD_SERVICE",de],Ie);case 2:case"end":return t.stop()}}),Re)}var Le=Ce;function Me(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function De(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Me(Object(r),!0).forEach((function(e){o()(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Me(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}var Ne=re.a.mark(qe),Ue=re.a.mark(ze),Be=re.a.mark(Fe);function qe(){return re.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,ce("API_PARALLEL",ze);case 2:case"end":return t.stop()}}),Ne)}function ze(t){var e,r,n,o,i,a;return re.a.wrap((function(s){for(;;)switch(s.prev=s.next){case 0:for(e={},r=t.actionArray,n=0;n<r.length;n++)o="l".concat(n),e[o]=ht(Fe,r[n]);return s.next=5,lt(e);case 5:i=s.sent,s.t0=re.a.keys(i);case 7:if((s.t1=s.t0()).done){s.next=13;break}return a=s.t1.value,s.next=11,ft(i[a]);case 11:s.next=7;break;case 13:case"end":return s.stop()}}),Ue)}function Fe(t){var e;return re.a.wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return e=De({},t),r.next=3,gt(le);case 3:return e.logonInfo=r.sent,r.next=6,ft({type:e.serviceName+"_"+e.type+"_BEGIN",config:e});case 6:return r.abrupt("return",e);case 7:case"end":return r.stop()}}),Be)}var He=qe,We=r(5),Ge=r.n(We);function Ye(t,e,r){return{error:r,type:e.serviceName+"_"+e.type+"_COMPLETE",config:e,payload:t}}var Ke=function(t){var e,r=["running","pending"];return Object(he.b)(t).then((function(n){var o=n.data.results;return"object"===Ge()(o)&&(o=!0===n.data.results.items.isIdle?"completed":"running",n.data.results.items=o),function(){if(e=!1,t.eventHandler){var r=304===n.status?"running":o,i=t.eventHandler(r,t.jobContext);"boolean"==typeof i?e=i:i!==r&&(n.data.results=i,e=!0)}}(),304===n.status&&!1===e?null:-1===r.indexOf(o)||!0===e?Ye(n,t,!1):(null!=t.payload.headers&&null!=t.payload.headers["If-None-Match"]&&null!=n.headers.etag&&(t.payload.headers["If-None-Match"]=n.headers.etag),null)})).catch((function(r){return t.eventHandler&&(e=t.eventHandler("*SystemError",t.jobContext)),Ye(r,t,!0)}))},Ve=re.a.mark(Xe);function Je(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function $e(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Je(Object(r),!0).forEach((function(e){o()(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Je(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Xe(t){var e,r;return re.a.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return e=$e({},t),r=null,n.next=4,gt(le);case 4:return e.logonInfo=n.sent,n.next=7,ft({type:e.serviceName+"_"+t.type+"_BEGIN",config:e});case 7:return n.next=9,ht(Ke,e);case 9:if(r=n.sent,!e.delay){n.next=13;break}return n.next=13,mt(1e3*e.delay);case 13:if(null===r){n.next=7;break}case 14:return n.next=16,ft(r);case 16:case"end":return n.stop()}}),Ve)}var Qe=Xe,Ze=re.a.mark(tr);function tr(){return re.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,ce(["API_POLL"],Qe);case 2:case"end":return t.stop()}}),Ze)}var er=tr,rr=re.a.mark(or),nr=re.a.mark(ir);function or(){return re.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,ce(["APP_DATA","API_STATUS","API_XSRF"],ir);case 2:case"end":return t.stop()}}),rr)}function ir(t){var e,r;return re.a.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:n.t0=t.type,n.next="APP_DATA"===n.t0?3:"API_STATUS"===n.t0?5:7;break;case 3:return e="_appdata_APP_DATA_SETSTATE",n.abrupt("break",9);case 5:return e="_apistatus_API_STATUS_SETSTATE",n.abrupt("break",9);case 7:return e="_xsrf_API_XSRF_SETSTATE",n.abrupt("break",9);case 9:return r={type:e,payload:t},n.next=12,ft(r);case 12:case"end":return n.stop()}}),nr)}var ar=or,sr=re.a.mark(cr),ur=re.a.mark(fr);function cr(){return re.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,fe("KEEP_ALIVE",fr);case 2:t.sent;case 3:case"end":return t.stop()}}),sr)}function fr(t){var e;return re.a.wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.next=2,yt(lr,t);case 2:return e=r.sent,r.abrupt("return",e);case 4:case"end":return r.stop()}}),ur)}function lr(t){return ye("keepAlive").keepAlive(t)}var pr=cr,hr=re.a.mark(dr);function dr(){return re.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,lt([je(),Le(),He(),er(),ar(),pr()]);case 2:case"end":return t.stop()}}),hr)}var yr=dr,vr=r(4),gr=r.n(vr);function mr(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(!t)return;if("string"==typeof t)return br(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return br(t,e)}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,s=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return a=t.done,t},e:function(t){s=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(s)throw i}}}}function br(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function _r(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function wr(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?_r(Object(r),!0).forEach((function(e){o()(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):_r(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Or(t,e,r){var n,o=["next","prev","first","last"];n="links"===r?t:"cmds"===r||"lcmds"===r?t.filter((function(t){return!o.includes(t.rel)})):"scrollCmds"===r?t.filter((function(t){return o.includes(t.rel)})):t,"lcmds"===r&&(r="links");var i=[].concat(gr()(e),[r]),a={};return n.map((function(t){var n=[].concat(gr()(i),[t.rel]);!1===t.hasOwnProperty("title")&&(t.title=t.rel);var s={link:wr({},t),method:t.method,route:n.join(":/"),parentRoute:gr()(e).join(":/"),paginator:o.includes(t.rel)};a[t.rel]=wr(wr({},ge(t.title,r)),s)})),a}var Sr=function(t,e){var r=null;if(!0===t.error)return(r=ge("error","error")).link=t.config.href,r.runStatus="error",r.statusInfo=Object(pe.setBadStatus)(t.payload),r;var n=t.payload.data.results,o="";if(!0===n.hasOwnProperty("accept")?o=n.accept:!0===t.payload.headers.hasOwnProperty("content-type")?o=t.payload.headers["content-type"].split(";")[0].split("+json")[0]:204===t.payload.status&&(o="No Content"),n.hasOwnProperty("items"))(r=function(t,e){var r=[],n={},o=ge(e[e.length-1],"links"),i={name:"",type:"",resultType:"",cmds:null,data:null};o.resultType=t.accept,o.details=function(t){var e=wr({},t);e.hasOwnProperty("links")&&delete e.links;e.hasOwnProperty("items")&&delete e.items;return e}(t),t.hasOwnProperty("name")&&(i.name=t.name);t.hasOwnProperty("links")&&(o.links=Or(t.links,e,"lcmds"),o.scrollCmds=Or(t.links,e,"scrollCmds"));if(!1===Array.isArray(t.items))return i.data=t.items,i.resultType=t.accept,t.items.hasOwnProperty("customHandling")?(i.type=t.items.customHandling,o.type=t.items.customHandling):(i.type="items",o.type="items"),o.items=i,o;if(0===t.items.length)return i.resultType=t.accept,i.data=[],i.type="itemsList",o.type="itemsList",o.items=i,o.itemsList=[],o;if(t.items[0].hasOwnProperty("links")){var a,s=-1,u="",c=mr(t.items);try{for(c.s();!(a=c.n()).done;){var f=a.value;s++;var l=void 0;if(l=f.hasOwnProperty("name2")?f.name2:f.hasOwnProperty("name")?f.name:f.hasOwnProperty("id")?f.id:"".concat(s),u===l){var p=!0===f.hasOwnProperty("id")?f.id:s;l="".concat(l,"_").concat(p)}else u=l;r.push(l);var h=[].concat(gr()(e),["items","data",l]),d=Or(f.links,h,"cmds"),y=wr({},f);delete y.links;var v={name:"",type:"",resultType:"",cmds:null,data:null};v.type="itemRow",v.name=l,v.resultType=!0===y.hasOwnProperty("contentType")?y.contentType:"unknown",v.cmds=d,v.data=y,n[l]=v}}catch(t){c.e(t)}finally{c.f()}i.data=n,i.resultType=t.accept,i.type="itemsList",o.itemsList=[].concat(r),o.type="itemsList"}else i.data=gr()(t.items),i.resultType=t.accept,i.type="itemsArray",o.type="itemsArray";return o.items=i,o}(n,e)).resultType=null==n.accept?o:n.accept;else if(n.hasOwnProperty("links")){r=function(t,e){var r=ge(e[e.length-1],"links");if(null===t||0===t.length)return r;return r.links=Or(t,e,"lcmds"),r.type="links",r.scrollCmds=Or(t,e,"scrollCmds"),r}(n.links,e);var i=wr({},n);for(var a in delete i.links,i)if("version"!==a){r.type="data";break}r.items={resultType:"data",data:i,cmds:null},r.resultType=o}else(r=ge("data","data")).type="data",r.resultType=o,r.items={resultType:o,data:"object"===Ge()(n)?Object.assign({},n):n,cmds:null};r.link=t.config.link.href,r.runStatus="ready",r.statusInfo=Object(pe.setGoodStatus)(t.payload);var s=t.config,u=t.payload.config,c=u.url.split("/");return r.host="".concat(c[0],"//").concat(c[2]),r.iconfig={input:{link:wr({},s.link),payload:s.hasOwnProperty("payload")?Object.assign({},s.payload):{}},http:{url:u.url,payload:{headers:[].concat(u.headers),data:null==u.data?{}:"object"===Ge()(u.data)?Object.assign({},u.data):u.data,qs:null==u.params?{}:"object"===Ge()(u.params)?Object.assign({},u.params):u.params}}},r};function jr(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Er(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?jr(Object(r),!0).forEach((function(e){o()(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):jr(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}var xr=r(10).fromJS,Ar=function(t){return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:xr(ge(t,"links",t)),r=arguments.length>1?arguments[1]:void 0;switch(r.type){case"DELETE_RAF_OBJECT":var n=r.route.split(":/"),o=n.slice(1),i=(e.getIn(o),e.deleteIn(o));return i;case t+"_ADD_SERVICE_BEGIN":return e.set("runStatus","busy").set("route",t);case t+"_ADD_SERVICE_COMPLETE":var a=Sr(r,[t]);return a.resultType="application/vnd.sas.api",a.raw=Er({},r.payload),a.responseHeaders=Er({},a.raw.headers),a.route=t,xr(a);case t+"_"+de+"_BEGIN":case t+"_API_POLL_BEGIN":var s=r.config,u=s.paginator,c=s.route.split(":/"),f=c.slice(!0===u?1:2),l=e.getIn(f);return l=l.set("runStatus","busy"),f=c.slice(1),e.setIn(f,l);case t+"_"+de+"_COMPLETE":case t+"_API_POLL_COMPLETE":var p=r.config,h=p.route.split(":/"),d=h.slice(1),y=Object.assign({},r.payload),v=Sr(r,h);v.raw=y,"links"===v.type&&null==v.resultType&&(v.resultType="application/vnd.sas.api");r.config.link.method;v.title=r.config.link.href,v.responseHeaders=Er({},y.headers),v.route=h.join(":/");var g=xr(v),m=e.setIn(d,g);return m;case t+"_APP_DATA_SETSTATE":var b=r.payload,_=b.route,w=b.payload,O=e.get("userData");return O=Array.isArray(_)?O.setIn(_,xr(w)):O.set(_,xr(w)),e.set("userData",O);case t+"_API_XSRF_SETSTATE":var S=r.payload,j=S.route,E=S.payload,x=e.get("userData");return x=Array.isArray(j)?x.setIn(j,xr(E)):x.set(j,xr(E)),e.set("userData",x);case t+"_API_STATUS_SETSTATE":var A=r.payload.payload,P=A.jobContext,k=e.get("userData"),T=e.get("routeList").push(P);return k=k.set(P,xr(A)),e.set("userData",k).set("routeList",T);default:return e}}};function Pr(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function kr(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Pr(Object(r),!0).forEach((function(e){o()(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Pr(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}var Tr=r(10),Ir=Tr.Map,Rr=Tr.fromJS,Cr=Rr({connections:[],user:"none",type:"server",currentConnection:-1,statusInfo:{status:0,statusText:" ",error:!1,details:" "},runStatus:"idle"});function Lr(t){var e=t.data,r=e.results,n=e.iconfig;return{type:"connection",id:1,user:n.user,desc:n.desc,logonInfo:{type:"trusted",host:n.host,tokenType:r.token_type,token:r.access_token,sslOptions:n.sslOptions,keepAlive:null==n.keepAlive?null:n.keepAlive},statusInfo:Object(pe.setGoodStatus)(t)}}var Mr=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Cr,e=arguments.length>1?arguments[1]:void 0;switch(e.type){case"BEGIN_LOGON":return t.set("runStatus","busy");case"server":var r=e.payload.iconfig,n={type:"server",id:1,user:"You",desc:"Server",logonInfo:{type:"server",host:r.host,protocol:-1!==r.host.indexOf("https")?"https://":"http://",ns:r.ns,tokenType:!0===r.hasOwnProperty("tokenType")?r.tokenType:null,token:!0===r.hasOwnProperty("token")?r.token:null,sslOptions:!0===r.hasOwnProperty("sslOptions")?r.sslOptions:null,pem:r.hasOwnProperty("pem")?r.pem:null,rejectUnauthorized:r.hasOwnProperty("rejectUnauthorized")?r.rejectUnauthorized:null,withCredentials:!r.hasOwnProperty("withCredentials")||r.withCredentials,keepAlive:r.hasOwnProperty("keepAlive")?r.keepAlive:null}},o={currentConnection:t.get("currentConnection")+1,runStatus:"ready",statusInfo:{},user:"You of course!",connections:[n]};return Rr(o);case"implicit":var i=e.payload.iconfig;if(!0===e.error)return t.withMutations((function(t){t.set("runStatus","error").set("statusInfo",Rr(Object(pe.setBadStatus)(e.payload)))}));var a={type:"implicit",id:1,user:"You",desc:"implicit",logonInfo:kr({},i)},s={currentConnection:t.get("currentConnection")+1,runStatus:"ready",statusInfo:{},user:"You of course!",connections:[a]};return Rr(s);case"VIYA_LOGON_COMPLETE":if(!0===e.error)return t.withMutations((function(t){t.set("runStatus","error").set("statusInfo",Rr(Object(pe.setBadStatus)(e.payload)))}));var u={currentConnection:t.get("currentConnection")+1,runStatus:"ready",statusInfo:Object(pe.setGoodStatus)(e.payload),user:e.payload.data.iconfig.user};return t.withMutations((function(t){t.set("connections",t.get("connections").push(Ir(Lr(e.payload)))).merge(Rr(u))}));case"VIYA_LOGOFF":return t;case"BEGIN_LOGOFF":return t.set("runStatus","busy");case"VIYA_LOGOFF_COMPLETE":return!0===e.error?t.withMutations((function(t){t.set("runStatus","error").set("statusInfo",Rr(Object(pe.setBadStatus)(e.payload)))})):Cr;case"KEEP_ALIVE":default:return t}};function Dr(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Nr(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Dr(Object(r),!0).forEach((function(e){o()(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Dr(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}var Ur=function(t){var e={};return e.connections=Mr,e._apistatus=Ar("_apistatus"),e._appdata=Ar("_appdata"),e._xsrf=Ar("_xsrf"),d(e=Nr(Nr({},e),t))},Br=function(t,e,r){t.asyncReducers.hasOwnProperty(e)&&delete t.asyncReducers[e],t.asyncReducers[e]=r,t.replaceReducer(Ur(t.asyncReducers))};function qr(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}var zr=function(t){var e=te(),r=h(Ur(),function(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return function(t){return function(){var r=t.apply(void 0,arguments),n=function(){throw new Error(u(15))},o={getState:r.getState,dispatch:function(){return n.apply(void 0,arguments)}},i=e.map((function(t){return t(o)}));return n=y.apply(void 0,i)(r.dispatch),s(s({},r),{},{dispatch:n})}}}(e));return r.asyncReducers={},r.injectAsyncReducers=Br,r.apiCallNo=0,r.config=function(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?qr(Object(r),!0).forEach((function(e){o()(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):qr(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}({},t),e.run(yr),r},Fr=r(10);var Hr=function(t,e,r){for(var n,o,i,a,s=[],u=[],c=arguments.length,f=new Array(c>3?c-3:0),l=3;l<c;l++)f[l-3]=arguments[l];if(null!=f&&(s=!0===Array.isArray(f[0])?f[0]:f),"string"==typeof e)i=(o=e.split(":/")).shift(),a=t.getState()[i],u=[].concat(gr()(o),gr()(s));else{if(u=s,!Fr.Iterable.isIterable(e))return null;a=e}return null==a?null:(null!==(n=u.length>0?a.getIn(u,null):a)&&!0===r&&!0===Fr.Iterable.isIterable(n)&&(n=n.keySeq()),n)};var Wr=function(t,e,r){return null!=r?Hr(t,e,!1,r):Hr(t,e)};var Gr=function(t,e,r){for(var n=null,o=arguments.length,i=new Array(o>3?o-3:0),a=3;a<o;a++)i[a-3]=arguments[a];return null!=i&&i.length>0?(n=!0===Array.isArray(i[0])?i[0]:i,null!==r&&(n=r.concat(n))):n=r,Hr(t,e,!1,n)};var Yr=function(t,e){var r,n=function(r){return function(){for(var n=arguments.length,o=new Array(n),i=0;i<n;i++)o[i]=arguments[i];return Gr(t,e,r,o)}};return{results:n(),items:n(["items","data"]),itemsCmd:(r=["items","data"],function(){for(var n=arguments.length,o=new Array(n),i=0;i<n;i++)o[i]=arguments[i];return o.splice(1,0,"cmds"),Gr(t,e,r,o)}),itemsList:n(["itemsList"]),links:n(["links"]),details:n(["details"]),scrollCmds:n(["scrollCmds"]),raw:n(["raw"]),headers:n(["responseHeaders"]),config:n(["iconfig"]),host:e.get("host"),resultType:e.get("resultType"),status:e.get("statusInfo").get("status"),statusInfo:e.get("statusInfo").toJS(),type:e.get("type"),route:e.get("route")}};var Kr=function(t){var e=t.getState();e=e._xsrf;for(var r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];var i=n.length>0?["userData"].concat(n):["userData"],a=e.getIn(i,null);return null!==a?a.toJS():null},Vr=r(10),Jr=function(t,e,r,n,o,i,a,s){var u,c,f,l,p;if("string"==typeof e?(p=Wr(t,e),c=e):c=(p=e).get("route"),null===p||!1===Vr.Iterable.isIterable(p))return null;if(u=p.get("paginator"),f=p.get("link").toJS(),u)l=(c=p.get("parentRoute")).split(":/")[0];else{var h=c.split(":/");l=h[0],h.splice(1,0,t.apiCallNo),c=h.join(":/"),t.apiCallNo++}var d={type:r,delay:null==o?0:o,paginator:u,serviceName:l,route:c,eventHandler:i,parentRoute:a,jobContext:s,storeConfig:t.config,link:f};f.href.indexOf("casProxy")>=0&&(l="casProxy");var y=Kr(t,l);return null!=n&&(d.payload=n),null!==y&&(null!=n?d.payload.xsrf=y:d.payload={xsrf:y}),d},$r=function(t,e,r,n,o,i,a,s){return new Promise((function(u,c){var f,l,p=!0,h=Jr(t,e,r,n,o,i,a,s);null===h&&c({error:"Bad route and/or rafLink",args:e}),f=h.route;l=t.subscribe((function(){if(p)p=!1;else{var e=Wr(t,f);if(e){var r=e.get("runStatus");if("error"===r)l(),c(e.get("statusInfo"));else if("ready"===r){l();var n=Yr(t,e);u(n)}}else l(),c({error:"Hmmm! Failed to resolve route in apiCall callback - should never happen. Call Programmer",route:f})}})),t.dispatch(h)}))},Xr=function(t,e,r){for(var n=arguments.length,o=new Array(n>3?n-3:0),i=3;i<n;i++)o[i-3]=arguments[i];return $r.apply(void 0,[t,e,de,r].concat(o))},Qr=function(t,e,r){return new Promise((function(n,o){var i=e.map((function(e){var n=e.rafLink,i=!0===e.hasOwnProperty("payload")?e.payload:null,a=Jr(t,n,de,i,r,null,null,null);return null===a&&o({err:"Invalid route and/or rafLink",args:JSON.stringify(e,null,4)}),a})),a=!0,s=t.subscribe((function(){if(a)a=!1;else{for(var e=[],r=0;r<i.length;r++){var u=Wr(t,i[r].route);if(null!==u){var c=u.get("runStatus");if("error"===c){s();var f={jobNo:r,detail:u.get("statusInfo")};o(f)}else"ready"===c&&e.push(Yr(t,u))}}e.length===i.length&&n(e)}}));t.dispatch({type:"API_PARALLEL",actionArray:i})}))},Zr=r(2),tn=r.n(Zr);var en=function(t,e,r,n,o,i,a){return new Promise((function(s,u){var c=e.links("state");null===c?s({completed:1,running:0,jobState:{job:e,data:"completed",statusCode:200}}):$r(t,c,!0===o?"API_POLL":de,r,n,i,e.route,a).then((function(t){var r={},n=0,o=t.items();!1===r.hasOwnProperty(o)&&(r[o]=0),r[o]=r[o]+1;var i=t.status;"running"!==o&&"pending"!==o||(n=1),s({running:n,detail:r,jobState:{job:e,data:o,statusCode:i}})})).catch((function(t){u(t)}))}))};function rn(){return(rn=tn()(re.a.mark((function t(e,r,n,o,i,a,s,u){var c,f,l,p;return re.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:c=!1,f=1,"wait"===o||"longpoll"===o?(f=1,c=!0):f=o||1;case 3:return t.next=5,en(e,r,n,i,c,a,s);case 5:if(l=t.sent,p=l.detail.hasOwnProperty("failed"),0!==l.running){t.next=16;break}if(f=0,!1!==p||1==u){t.next=15;break}return t.next=12,Xr(e,r.links("self"));case 12:l.jobState.job=t.sent,t.next=16;break;case 15:l.jobState.job=r;case 16:if(--f>0){t.next=3;break}case 17:return t.abrupt("return",l.jobState);case 18:case"end":return t.stop()}}),t)})))).apply(this,arguments)}var nn=function(t,e,r,n,o,i,a,s){return rn.apply(this,arguments)};function on(){return(on=tn()(re.a.mark((function t(e,r,n,o,i,a,s,u){var c;return re.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(c=null,null==a){t.next=7;break}return t.next=4,sn(e,r,n,o,a,s,u);case 4:c=t.sent,t.next=10;break;case 7:return t.next=9,Xr(e,r.links("execute"),n,0);case 9:c=t.sent;case 10:if(!0!==an(c)){t.next=12;break}throw JSON.stringify(c.items());case 12:return null!=i&&i(o,c),t.abrupt("return",c);case 14:case"end":return t.stop()}}),t)})))).apply(this,arguments)}function an(t){var e=t.items("disposition","statusCode"),r=t.items("disposition","severity").toLowerCase();return 0!==e||"error"===r}function sn(t,e,r,n,o,i,a){return un.apply(this,arguments)}function un(){return(un=tn()(re.a.mark((function t(e,r,n,o,i,a,s){var u,c;return re.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u=Xr(e,r.links("execute"),n,0),t.next=3,nn(e,r,null,i,a,s,o,!0);case 3:return t.sent,c=u.then((function(t){return t}),(function(t){return t})),t.abrupt("return",c);case 6:case"end":return t.stop()}}),t)})))).apply(this,arguments)}var cn=function(t,e,r,n,o,i,a,s){return on.apply(this,arguments)};function fn(){return(fn=tn()(re.a.mark((function t(e,r,n,o,i,a,s){var u,c;return re.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return s&&s("pending",i),t.next=3,$r(e,r,de,n,0,null,null,i);case 3:if(!(u=t.sent).links("state")){t.next=12;break}return t.next=7,nn(e,u,null,"wait",o,s,i);case 7:return c=t.sent,ln(e,a,c.data,c.job,i),t.abrupt("return",c.job);case 12:return ln(e,a,"unknown",u,i),t.abrupt("return",u);case 14:case"end":return t.stop()}}),t)})))).apply(this,arguments)}function ln(t,e,r,n,o){var i={data:r,job:n,httpCode:n.status};!function(t,e,r){var n={route:e.job.route,data:e.data,jobContext:r},o={type:"API_STATUS",route:r,payload:n};t.dispatch(o)}(t,i,o),e&&e(null,i,o)}var pn=function(t,e,r,n,o,i,a){return fn.apply(this,arguments)};function hn(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function dn(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?hn(Object(r),!0).forEach((function(e){o()(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):hn(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}var yn=function(t,e,r){return new Promise((function(n,o){var i=[];if(null!==r)if(!1===Array.isArray(r))for(var a=0;a<e.length;a++)i.push(r);else i=gr()(r);else for(var s=0;s<e.length;s++)i.push(null);var u=e.map((function(t,e){var r=t.links("state");return null===r&&o(" job ".concat(e," does not support state checking ")),{rafLink:r,payload:dn({},i[e])}}));Qr(t,u).then((function(t){var r={},o=0,i=t.map((function(t,n){var i=t.items(),a=t.status;return!1===r.hasOwnProperty(i)&&(r[i]=0),r[i]=r[i]+1,"running"!==i&&"pending"!==i||o++,{job:e[n],data:i,statusCode:a}}));n({running:o,detail:r,jobState:i})})).catch((function(t){o(t)}))}))};var vn=function(t,e,r,n){return new Promise((function(o,i){!function t(e,r,n,o,i){yn(e,r,n).then((function(a){a.running>0?--o<=0?i(null,a):t(e,r,n,o,i):i(null,a)})).catch((function(t){i(t)}))}(t,e,r,null!=n?n:1,(function(e,r){if(e)i(e);else if(0===r.running){var n=r.jobState.map((function(t){return{rafLink:t.job.links("self"),payload:null}}));Qr(t,n,null).then((function(t){t.forEach((function(t,e){r.jobState[e].job=t})),o(r)})).catch((function(t){i(t)}))}else o(r)}))}))},gn=r(12),mn=r.n(gn),bn=r(18),_n=r.n(bn);function wn(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function On(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?wn(Object(r),!0).forEach((function(e){o()(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):wn(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Sn(){return(Sn=tn()(re.a.mark((function t(e,r,n){var o,i,a,s,u;return re.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return o=On({},r),-1!==r.url.indexOf("https")&&(i=e.config,a={},null!=i.sslOptions&&(a=i.sslOptions),s=new _n.a.Agent(a),o.httpsAgent=s),t.next=4,mn()(o);case 4:return u=t.sent,t.abrupt("return",null==n?u:n(u));case 6:case"end":return t.stop()}}),t)})))).apply(this,arguments)}var jn=function(t,e,r){return Sn.apply(this,arguments)};var En=function(t){var e=t.getState(),r=[];for(var n in e)"connections"!==n&&r.push(n);return r},xn=function(t,e){return new Promise((function(r,n){e.forEach((function(e){Br(t,e,Ar(e))}));var o=e.map((function(e){var r={type:"ADD_SERVICE",link:{method:"GET",href:"/"+e+"/",rel:"root",type:"application/vnd.sas.api+json",responseType:"application/json, application/vnd.sas.api+json",uri:"/"+e+"/"},logonInfo:null,tLink:null,serviceName:e,route:e,storeConfig:t.config};return"compute"==e&&null!=t.config.options.computeServerId&&(r.link.href="/compute/servers/"+t.config.options.computeServerId+"/",r.link.url=r.link.href),r})),i=!0,a=t.subscribe((function(){if(i)i=!1;else{for(var s={},u={},c=0,f=0;f<o.length;f++){var l=Wr(t,o[f].route);if(null!==l){var p=l.get("runStatus");if("error"===p){a();var h={service:e[f],detail:l.get("statusInfo")};n(h)}else if("ready"===p){c++;var d=Yr(t,l);s[e[f]]=d;var y=d.headers("x-csrf-header");if(null!==y){var v={"x-csrf-header":y,"x-csrf-token":d.headers("x-csrf-token")};u[e[f]]=v}else u[e[f]]=null}}}c===o.length&&(a(),r({folders:s,xsrfTokens:u}))}}));t.dispatch({type:"API_PARALLEL",interval:-1,actionArray:o})}))};var An=function(t,e,r,n){var o={type:e,route:r,payload:n};t.dispatch(o)};var Pn=function(t,e){var r=t.getState();for(var n in r)if(n===e)return Yr(t,r[n]);return null};function kn(){return(kn=tn()(re.a.mark((function t(e){var r,n,o,i,a,s,u,c,f,l,p=arguments;return re.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:for(r=p.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=p[o];if(n.includes("casManagement")&&n.push("casProxy"),i=[],a={},n.map((function(t){a[t]=Pn(e,t),null===a[t]&&i.push(t)})),!(i.length>0)){t.next=13;break}return t.next=8,xn(e,i);case 8:for(f in s=t.sent,u=s.folders,c=s.xsrfTokens)An(e,"API_XSRF",f,c[f]);for(l in u)a[l]=u[l];case 13:return t.abrupt("return",a);case 14:case"end":return t.stop()}}),t)})))).apply(this,arguments)}var Tn=function(t){return kn.apply(this,arguments)},In=r(17),Rn=r.n(In),Cn=r(47),Ln=r.n(Cn);function Mn(){return(Mn=tn()(re.a.mark((function t(e,r,n,o,i){var a;return re.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return a=setInterval((function(){Dn(e,r)}),1e3*n),setTimeout((function(){if(console.log("Note: Stopping keepViyaAlive"),clearInterval(a),null!=i)i();else{var t=le(e.getState()).host;console.log("timeout"),window.open("".concat(t,"/SASLogon/timedout"),"Timed Out","scrollbars=no,resizable=no,status=no,location=no,toolbar=no,menubar=no,width=0,height=0,left=-1000,top=-1000")}}),1e3*o),t.abrupt("return",!0);case 3:case"end":return t.stop()}}),t)})))).apply(this,arguments)}function Dn(t,e){return Nn.apply(this,arguments)}function Nn(){return(Nn=tn()(re.a.mark((function t(e,r){var n,o,i,a,s,u,c,f,l;return re.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:null!==r&&(n={type:"KEEP_ALIVE",route:"keepAlive",payload:{url:r,method:"GET",headers:{Accept:"*/*"}}},e.dispatch(n)),o=En(e),i=le(e.getState()).host,a=0;case 4:if(!(a<o.length)){t.next=20;break}if(-1!==(s=o[a]).indexOf("_")){t.next=17;break}if(-1!==s.indexOf("cas-http")){t.next=17;break}if(null===(u=Kr(e,s))){t.next=17;break}return c=u["x-csrf-header"],(f={url:"".concat(i,"/").concat(s,"/"),Accept:"application/json, application/vnd.sas.api+json",withCredentials:!0,method:"GET",xsrfHeaderName:c,headers:{}}).headers[c]=u["x-csrf-token"],t.next=15,jn(e,f);case 15:l={type:"KEEP_ALIVE",route:"keepAlive",payload:f},e.dispatch(l);case 17:a++,t.next=4;break;case 20:return t.abrupt("return",!0);case 21:case"end":return t.stop()}}),t)})))).apply(this,arguments)}var Un=function(t,e,r,n,o){return Mn.apply(this,arguments)};function Bn(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function qn(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Bn(Object(r),!0).forEach((function(e){o()(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Bn(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}var zn,Fn=function(t,e){return new Promise((function(r,n){var o,i,a=!1,s=null,u=null==e?null:qn({},e);if(t.getState().connections.get("currentConnection")>=0)r("ready");else{switch(null!==u&&"implicit"!==u.authType||(s=function(){if(null==window)return null;var t=Ln()(window.location,!0),e=Rn.a.parse(t.hash),r=t.query;if(null==r.host||null==e.access_token)return null;var n="bearer";null!=e["#token_type"]?n=e["#token_type"]:null!=e.token_type&&(n=e.token_type);return{host:r.host,authType:"implicit",tokenType:n,token:e.access_token}}(),null!==u&&null!==s&&(u=qn(qn({},u),s))),null==u&&(u=null!==s?s:{host:"".concat(window.location.protocol,"//").concat(window.location.host),authType:"server"}),t.config.options={},null!=u.options&&(t.config.options=qn({},u.options)),u.authType){case"code":case"token":case"server":null==u.host&&(u.host="".concat(window.location.protocol,"//").concat(window.location.host));break;case"implicit":!1===u.hasOwnProperty("token")&&(a=!0,function(t){var e="".concat(t.host,"/SASLogon/oauth/authorize?response_type=token&client_id=").concat(t.clientID);if(null!=t.redirect){var r="".concat(window.location.protocol,"//").concat(window.location.host,"/").concat(t.redirect,"?host=").concat(t.host);e="".concat(e,"&redirect_uri=").concat(r)}window.location.replace(e)}(u),r("Implicit Call"))}a||((i={type:"LOGOFF"===u.authType?"VIYA_LOGOFF":"VIYA_LOGON",payload:qn({},u)}).payload.sslOptions=t.config.hasOwnProperty("sslOptions")?t.config.sslOptions:null,o=t.subscribe((function(){var i=t.getState().connections,a=i.get("runStatus");if("ready"===a){if(o(),null!=e&&null!=e.keepAlive){var s=300,u=14400;if(null!=e.timers){var c=e.timers;if("string"==typeof c){var f=c.split(",");s=parseInt(f[0]),u=parseInt(f[1])}else s=c[0],u=c[1]}Un(t,e.keepAlive,s,u,e.onTimeout)}r(a)}else"error"===a&&(o(),n(i.get("statusInfo").toJS()))})),i.storeConfig=t.config,u.authType,i.storeConfig=t.config,t.dispatch(i))}}))};var Hn=function(t){return new Promise((function(e,r){var n={type:"VIYA_LOGOFF",storeConfig:t.config,payload:{}};zn=t.subscribe((function(){var n=t.getState().connections,o=n.get("runStatus");"idle"===o?(zn(),e(o)):"error"===o&&(zn(),r(n.get("statusInfo").toJS()))})),t.dispatch(n)}))},Wn=function(t){t.dispatch(Mt)};var Gn=function(t,e){var r=e.split(":/"),n=r.shift(),o=t.getState()[n];return o=r.length>0?o.getIn(r):o,Yr(t,o)},Yn=r(10);var Kn=function(t,e){var r=null;if("string"==typeof e?r=e:!0===Yn.default.Iterable.isIterable(e)&&(r=e.get("route")),null!==e){var n={type:"DELETE_RAF_OBJECT",route:r};t.dispatch(n)}};function Vn(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Jn(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Vn(Object(r),!0).forEach((function(e){o()(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Vn(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function $n(t){return le(t.getState())}function Xn(t){for(var e=t.getState()._appdata,r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];var i=n.length>0?["userData"].concat(n):["userData"];return e.getIn(i,null)}function Qn(t,e){var r=t.getState()._apistatus,n=null;if(e){var o=r.getIn(["userData",e],null);null!==o&&((n=o.toJS()).job=Gn(t,n.route))}else n=r.get("routeList");return n}var Zn=function(t){var e={casProxy:!1};null!=t&&(e=Jn(Jn({},e),t));var r=zr(e);return{logon:Fn.bind(null,r),connect:Fn.bind(null,r),logoff:Hn.bind(null,r),disconnect:Hn.bind(null,r),connection:$n.bind(null,r),addServices:Tn.bind(null,r),getServices:En.bind(null,r),apiCall:Xr.bind(null,r),runAction:cn.bind(null,r),apiCallAll:Qr.bind(null,r),rafObject:Gn.bind(null,r),getService:Gn.bind(null,r),deleteRafObject:Kn.bind(null,r),jobState:nn.bind(null,r),jobStateAll:vn.bind(null,r),submit:pn.bind(null,r),submitStatus:Qn.bind(null,r),setAppData:An.bind(null,r,"APP_DATA"),getAppData:Xn.bind(null,r),setXsrfData:An.bind(null,r,"API_XSRF"),getXsrfData:Kr.bind(null,r),getState:r.getState,endStore:Wn.bind(null,r),store:r,config:Jn({},e),getServiceRoot:Pn.bind(null,r),request:jn.bind(null,r),keepViyaAlive:Un.bind(null,r)}};function to(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function eo(t){return le(t.getState())}function ro(t){for(var e=t.getState()._appdata,r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];var i=n.length>0?["userData"].concat(n):["userData"];return e.getIn(i,null)}function no(t,e){var r=t.getState()._apistatus,n=null;if(e){var o=r.getIn(["userData",e],null);null!==o&&((n=o.toJS()).job=Gn(t,n.route))}else n=r.get("routeList");return n}var oo=function(t){return function(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?to(Object(r),!0).forEach((function(e){o()(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):to(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}({store:t},{logon:Fn.bind(null,t),logoff:Hn.bind(null,t),connection:eo.bind(null,t),addServices:Tn.bind(null,t),getServices:En.bind(null,t),apiCall:Xr.bind(null,t),runAction:cn.bind(null,t),apiCallAll:Qr.bind(null,t),rafObject:Gn.bind(null,t),deleteRafObject:Kn.bind(null,t),jobState:nn.bind(null,t),jobStateAll:vn.bind(null,t),submit:pn.bind(null,t),submitStatus:no.bind(null,t),setAppData:An.bind(null,t,"APP_DATA"),getAppData:ro.bind(null,t),setXsrfData:An.bind(null,t,"API_XSRF"),getXsrfData:Kr.bind(null,t),getState:t.getState,endStore:Wn.bind(null,t),store:t,getServiceRoot:Pn.bind(null,t),request:jn})}}])}));