ramda-adjunct
Advanced tools
Comparing version 0.2.0 to 0.3.0
@@ -0,9 +1,19 @@ | ||
<a name="0.3.0"></a> | ||
# [0.3.0](https://github.com/char0n/ramda-adjunct/compare/v0.2.0...v0.3.0) (2017-02-16) | ||
### Features | ||
* add isArray ([5bf4ab9](https://github.com/char0n/ramda-adjunct/commit/5bf4ab9)) | ||
* add isBoolean, isNotBoolean ([5400527](https://github.com/char0n/ramda-adjunct/commit/5400527)) | ||
* add isNotArray ([17d11c2](https://github.com/char0n/ramda-adjunct/commit/17d11c2)) | ||
* add isNotNil ([f49962a](https://github.com/char0n/ramda-adjunct/commit/f49962a)) | ||
<a name="0.2.0"></a> | ||
# [0.2.0](https://github.com/char0n/ramda-adjunct/compare/v0.1.0...v0.2.0) (2017-02-13) | ||
* **build:** add support for older node versions | ||
* **build** add various dist files | ||
* **build** make enhancements in entire infra | ||
* **test:** add tests that run in browsers | ||
<a name="0.1.0"></a> | ||
@@ -10,0 +20,0 @@ # [0.1.0](https://github.com/char0n/ramda-adjunct/compare/v0.0.1...v0.1.0) (2017-02-09) |
@@ -76,3 +76,3 @@ (function webpackUniversalModuleDefinition(root, factory) { | ||
/******/ // Load entry module and return exports | ||
/******/ return __webpack_require__(__webpack_require__.s = 5); | ||
/******/ return __webpack_require__(__webpack_require__.s = 11); | ||
/******/ }) | ||
@@ -93,3 +93,62 @@ /************************************************************************/ | ||
var isArray = __webpack_require__(10); | ||
/** | ||
* Checks if input `value` is Array | ||
* | ||
* @func isArray | ||
* @memberOf RA | ||
* @since v0.3.0 | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isNotArray|isNotArray} | ||
* @example | ||
* | ||
* RA.isArray([]); //=> true | ||
* RA.isArray(null); //=> false | ||
* RA.isArray({}); //=> false | ||
*/ | ||
module.exports = isArray; | ||
/***/ }), | ||
/* 2 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
is = _require.is; | ||
/** | ||
* Checks if input `value` is Array | ||
* | ||
* @func isBoolean | ||
* @memberOf RA | ||
* @since v0.3.0 | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isNotBoolean|isNotBoolean} | ||
* @example | ||
* | ||
* RA.isBoolean(false); //=> true | ||
* RA.isBoolean(true); //=> true | ||
* RA.isBoolean(null); //=> false | ||
*/ | ||
module.exports = is(Boolean); | ||
/***/ }), | ||
/* 3 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
equals = _require.equals; | ||
@@ -119,3 +178,3 @@ | ||
/***/ }), | ||
/* 2 */ | ||
/* 4 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -151,3 +210,3 @@ | ||
/***/ }), | ||
/* 3 */ | ||
/* 5 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -161,5 +220,102 @@ | ||
var isNull = __webpack_require__(1); | ||
var isArray = __webpack_require__(1); | ||
/** | ||
* Checks if input `value` is complement of Array | ||
* | ||
* @func isNotArray | ||
* @memberOf RA | ||
* @since v0.3.0 | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isArray|isArray} | ||
* @example | ||
* | ||
* RA.isNotArray([]); //=> false | ||
* RA.isNotArray(null); //=> true | ||
* RA.isNotArray({}); //=> true | ||
*/ | ||
module.exports = complement(isArray); | ||
/***/ }), | ||
/* 6 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
complement = _require.complement; | ||
var isBoolean = __webpack_require__(2); | ||
/** | ||
* Checks if input `value` is complement of Boolean | ||
* | ||
* @func isNotBoolean | ||
* @memberOf RA | ||
* @since v0.3.0 | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isBoolean|isBoolean} | ||
* @example | ||
* | ||
* RA.isNotBoolean(false); //=> false | ||
* RA.isNotBoolean(true); //=> false | ||
* RA.isNotBoolean(null); //=> true | ||
*/ | ||
module.exports = complement(isBoolean); | ||
/***/ }), | ||
/* 7 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
isNil = _require.isNil, | ||
complement = _require.complement; | ||
/** | ||
* Checks if input `value` is complement of `null` or `undefined` | ||
* | ||
* @func isNotNil | ||
* @memberOf RA | ||
* @since v0.3.0 | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link http://ramdajs.com/docs/#isNil|isNil} | ||
* @example | ||
* | ||
* RA.isNotNil(null); //=> false | ||
* RA.isNotNil(undefined); //=> false | ||
* RA.isNotNil(0); //=> true | ||
* RA.isNotNil([]); //=> true | ||
*/ | ||
module.exports = complement(isNil); | ||
/***/ }), | ||
/* 8 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
complement = _require.complement; | ||
var isNull = __webpack_require__(3); | ||
/** | ||
* Checks if input `value` is complement of `null` | ||
@@ -186,3 +342,3 @@ * | ||
/***/ }), | ||
/* 4 */ | ||
/* 9 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -196,3 +352,3 @@ | ||
var isUndefined = __webpack_require__(2); | ||
var isUndefined = __webpack_require__(4); | ||
@@ -219,3 +375,26 @@ /** | ||
/***/ }), | ||
/* 5 */ | ||
/* 10 */ | ||
/***/ (function(module, exports) { | ||
/** | ||
* Tests whether or not an object is an array. | ||
* | ||
* @private | ||
* @param {*} val The object to test. | ||
* @return {Boolean} `true` if `val` is an array, `false` otherwise. | ||
* @example | ||
* | ||
* _isArray([]); //=> true | ||
* _isArray(null); //=> false | ||
* _isArray({}); //=> false | ||
*/ | ||
module.exports = Array.isArray || function _isArray(val) { | ||
return (val != null && | ||
val.length >= 0 && | ||
Object.prototype.toString.call(val) === '[object Array]'); | ||
}; | ||
/***/ }), | ||
/* 11 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -226,6 +405,11 @@ | ||
var isNotUndefined = __webpack_require__(4); | ||
var isUndefined = __webpack_require__(2); | ||
var isNull = __webpack_require__(1); | ||
var isNotNull = __webpack_require__(3); | ||
var isNotUndefined = __webpack_require__(9); | ||
var isUndefined = __webpack_require__(4); | ||
var isNull = __webpack_require__(3); | ||
var isNotNull = __webpack_require__(8); | ||
var isNotNil = __webpack_require__(7); | ||
var isArray = __webpack_require__(1); | ||
var isNotArray = __webpack_require__(5); | ||
var isBoolean = __webpack_require__(2); | ||
var isNotBoolean = __webpack_require__(6); | ||
@@ -239,3 +423,8 @@ /** | ||
isNull: isNull, | ||
isNotNull: isNotNull | ||
isNotNull: isNotNull, | ||
isNotNil: isNotNil, | ||
isArray: isArray, | ||
isNotArray: isNotArray, | ||
isBoolean: isBoolean, | ||
isNotBoolean: isNotBoolean | ||
}; | ||
@@ -242,0 +431,0 @@ |
@@ -1,1 +0,1 @@ | ||
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("ramda")):"function"==typeof define&&define.amd?define(["ramda"],t):"object"==typeof exports?exports.RA=t(require("ramda")):e.RA=t(e.ramda)}(this,function(e){return function(e){function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var r={};return t.m=e,t.c=r,t.i=function(e){return e},t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=5)}([function(t,r){t.exports=e},function(e,t,r){"use strict";var n=r(0),o=n.equals;e.exports=o(null)},function(e,t,r){"use strict";var n=r(0),o=n.equals;e.exports=o(void 0)},function(e,t,r){"use strict";var n=r(0),o=n.complement,u=r(1),i=o(u);e.exports=i},function(e,t,r){"use strict";var n=r(0),o=n.complement,u=r(2);e.exports=o(u)},function(e,t,r){"use strict";var n=r(4),o=r(2),u=r(1),i=r(3);e.exports={isNotUndefined:n,isUndefined:o,isNull:u,isNotNull:i}}])}); | ||
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("ramda")):"function"==typeof define&&define.amd?define(["ramda"],e):"object"==typeof exports?exports.RA=e(require("ramda")):t.RA=e(t.ramda)}(this,function(t){return function(t){function e(o){if(r[o])return r[o].exports;var n=r[o]={i:o,l:!1,exports:{}};return t[o].call(n.exports,n,n.exports,e),n.l=!0,n.exports}var r={};return e.m=t,e.c=r,e.i=function(t){return t},e.d=function(t,r,o){e.o(t,r)||Object.defineProperty(t,r,{configurable:!1,enumerable:!0,get:o})},e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,"a",r),r},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=11)}([function(e,r){e.exports=t},function(t,e,r){"use strict";var o=r(10);t.exports=o},function(t,e,r){"use strict";var o=r(0),n=o.is;t.exports=n(Boolean)},function(t,e,r){"use strict";var o=r(0),n=o.equals;t.exports=n(null)},function(t,e,r){"use strict";var o=r(0),n=o.equals;t.exports=n(void 0)},function(t,e,r){"use strict";var o=r(0),n=o.complement,i=r(1);t.exports=n(i)},function(t,e,r){"use strict";var o=r(0),n=o.complement,i=r(2);t.exports=n(i)},function(t,e,r){"use strict";var o=r(0),n=o.isNil,i=o.complement;t.exports=i(n)},function(t,e,r){"use strict";var o=r(0),n=o.complement,i=r(3),s=n(i);t.exports=s},function(t,e,r){"use strict";var o=r(0),n=o.complement,i=r(4);t.exports=n(i)},function(t,e){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,e,r){"use strict";var o=r(9),n=r(4),i=r(3),s=r(8),u=r(7),c=r(1),a=r(5),f=r(2),p=r(6);t.exports={isNotUndefined:o,isUndefined:n,isNull:i,isNotNull:s,isNotNil:u,isArray:c,isNotArray:a,isBoolean:f,isNotBoolean:p}}])}); |
@@ -76,3 +76,3 @@ (function webpackUniversalModuleDefinition(root, factory) { | ||
/******/ // Load entry module and return exports | ||
/******/ return __webpack_require__(__webpack_require__.s = 5); | ||
/******/ return __webpack_require__(__webpack_require__.s = 11); | ||
/******/ }) | ||
@@ -93,3 +93,62 @@ /************************************************************************/ | ||
var isArray = __webpack_require__(10); | ||
/** | ||
* Checks if input `value` is Array | ||
* | ||
* @func isArray | ||
* @memberOf RA | ||
* @since v0.3.0 | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isNotArray|isNotArray} | ||
* @example | ||
* | ||
* RA.isArray([]); //=> true | ||
* RA.isArray(null); //=> false | ||
* RA.isArray({}); //=> false | ||
*/ | ||
module.exports = isArray; | ||
/***/ }), | ||
/* 2 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
is = _require.is; | ||
/** | ||
* Checks if input `value` is Array | ||
* | ||
* @func isBoolean | ||
* @memberOf RA | ||
* @since v0.3.0 | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isNotBoolean|isNotBoolean} | ||
* @example | ||
* | ||
* RA.isBoolean(false); //=> true | ||
* RA.isBoolean(true); //=> true | ||
* RA.isBoolean(null); //=> false | ||
*/ | ||
module.exports = is(Boolean); | ||
/***/ }), | ||
/* 3 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
equals = _require.equals; | ||
@@ -119,3 +178,3 @@ | ||
/***/ }), | ||
/* 2 */ | ||
/* 4 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -151,3 +210,3 @@ | ||
/***/ }), | ||
/* 3 */ | ||
/* 5 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -161,5 +220,102 @@ | ||
var isNull = __webpack_require__(1); | ||
var isArray = __webpack_require__(1); | ||
/** | ||
* Checks if input `value` is complement of Array | ||
* | ||
* @func isNotArray | ||
* @memberOf RA | ||
* @since v0.3.0 | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isArray|isArray} | ||
* @example | ||
* | ||
* RA.isNotArray([]); //=> false | ||
* RA.isNotArray(null); //=> true | ||
* RA.isNotArray({}); //=> true | ||
*/ | ||
module.exports = complement(isArray); | ||
/***/ }), | ||
/* 6 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
complement = _require.complement; | ||
var isBoolean = __webpack_require__(2); | ||
/** | ||
* Checks if input `value` is complement of Boolean | ||
* | ||
* @func isNotBoolean | ||
* @memberOf RA | ||
* @since v0.3.0 | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isBoolean|isBoolean} | ||
* @example | ||
* | ||
* RA.isNotBoolean(false); //=> false | ||
* RA.isNotBoolean(true); //=> false | ||
* RA.isNotBoolean(null); //=> true | ||
*/ | ||
module.exports = complement(isBoolean); | ||
/***/ }), | ||
/* 7 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
isNil = _require.isNil, | ||
complement = _require.complement; | ||
/** | ||
* Checks if input `value` is complement of `null` or `undefined` | ||
* | ||
* @func isNotNil | ||
* @memberOf RA | ||
* @since v0.3.0 | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link http://ramdajs.com/docs/#isNil|isNil} | ||
* @example | ||
* | ||
* RA.isNotNil(null); //=> false | ||
* RA.isNotNil(undefined); //=> false | ||
* RA.isNotNil(0); //=> true | ||
* RA.isNotNil([]); //=> true | ||
*/ | ||
module.exports = complement(isNil); | ||
/***/ }), | ||
/* 8 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
complement = _require.complement; | ||
var isNull = __webpack_require__(3); | ||
/** | ||
* Checks if input `value` is complement of `null` | ||
@@ -186,3 +342,3 @@ * | ||
/***/ }), | ||
/* 4 */ | ||
/* 9 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -196,3 +352,3 @@ | ||
var isUndefined = __webpack_require__(2); | ||
var isUndefined = __webpack_require__(4); | ||
@@ -219,3 +375,26 @@ /** | ||
/***/ }), | ||
/* 5 */ | ||
/* 10 */ | ||
/***/ (function(module, exports) { | ||
/** | ||
* Tests whether or not an object is an array. | ||
* | ||
* @private | ||
* @param {*} val The object to test. | ||
* @return {Boolean} `true` if `val` is an array, `false` otherwise. | ||
* @example | ||
* | ||
* _isArray([]); //=> true | ||
* _isArray(null); //=> false | ||
* _isArray({}); //=> false | ||
*/ | ||
module.exports = Array.isArray || function _isArray(val) { | ||
return (val != null && | ||
val.length >= 0 && | ||
Object.prototype.toString.call(val) === '[object Array]'); | ||
}; | ||
/***/ }), | ||
/* 11 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -226,6 +405,11 @@ | ||
var isNotUndefined = __webpack_require__(4); | ||
var isUndefined = __webpack_require__(2); | ||
var isNull = __webpack_require__(1); | ||
var isNotNull = __webpack_require__(3); | ||
var isNotUndefined = __webpack_require__(9); | ||
var isUndefined = __webpack_require__(4); | ||
var isNull = __webpack_require__(3); | ||
var isNotNull = __webpack_require__(8); | ||
var isNotNil = __webpack_require__(7); | ||
var isArray = __webpack_require__(1); | ||
var isNotArray = __webpack_require__(5); | ||
var isBoolean = __webpack_require__(2); | ||
var isNotBoolean = __webpack_require__(6); | ||
@@ -239,3 +423,8 @@ /** | ||
isNull: isNull, | ||
isNotNull: isNotNull | ||
isNotNull: isNotNull, | ||
isNotNil: isNotNil, | ||
isArray: isArray, | ||
isNotArray: isNotArray, | ||
isBoolean: isBoolean, | ||
isNotBoolean: isNotBoolean | ||
}; | ||
@@ -242,0 +431,0 @@ |
@@ -1,1 +0,1 @@ | ||
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("R")):"function"==typeof define&&define.amd?define(["R"],t):"object"==typeof exports?exports.RA=t(require("R")):e.RA=t(e.R)}(this,function(e){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.i=function(e){return e},t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=5)}([function(t,n){t.exports=e},function(e,t,n){"use strict";var r=n(0),o=r.equals;e.exports=o(null)},function(e,t,n){"use strict";var r=n(0),o=r.equals;e.exports=o(void 0)},function(e,t,n){"use strict";var r=n(0),o=r.complement,u=n(1),i=o(u);e.exports=i},function(e,t,n){"use strict";var r=n(0),o=r.complement,u=n(2);e.exports=o(u)},function(e,t,n){"use strict";var r=n(4),o=n(2),u=n(1),i=n(3);e.exports={isNotUndefined:r,isUndefined:o,isNull:u,isNotNull:i}}])}); | ||
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("R")):"function"==typeof define&&define.amd?define(["R"],e):"object"==typeof exports?exports.RA=e(require("R")):t.RA=e(t.R)}(this,function(t){return function(t){function e(o){if(r[o])return r[o].exports;var n=r[o]={i:o,l:!1,exports:{}};return t[o].call(n.exports,n,n.exports,e),n.l=!0,n.exports}var r={};return e.m=t,e.c=r,e.i=function(t){return t},e.d=function(t,r,o){e.o(t,r)||Object.defineProperty(t,r,{configurable:!1,enumerable:!0,get:o})},e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,"a",r),r},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=11)}([function(e,r){e.exports=t},function(t,e,r){"use strict";var o=r(10);t.exports=o},function(t,e,r){"use strict";var o=r(0),n=o.is;t.exports=n(Boolean)},function(t,e,r){"use strict";var o=r(0),n=o.equals;t.exports=n(null)},function(t,e,r){"use strict";var o=r(0),n=o.equals;t.exports=n(void 0)},function(t,e,r){"use strict";var o=r(0),n=o.complement,i=r(1);t.exports=n(i)},function(t,e,r){"use strict";var o=r(0),n=o.complement,i=r(2);t.exports=n(i)},function(t,e,r){"use strict";var o=r(0),n=o.isNil,i=o.complement;t.exports=i(n)},function(t,e,r){"use strict";var o=r(0),n=o.complement,i=r(3),s=n(i);t.exports=s},function(t,e,r){"use strict";var o=r(0),n=o.complement,i=r(4);t.exports=n(i)},function(t,e){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,e,r){"use strict";var o=r(9),n=r(4),i=r(3),s=r(8),u=r(7),c=r(1),f=r(5),p=r(2),l=r(6);t.exports={isNotUndefined:o,isUndefined:n,isNull:i,isNotNull:s,isNotNil:u,isArray:c,isNotArray:f,isBoolean:p,isNotBoolean:l}}])}); |
@@ -1,2 +0,2 @@ | ||
!function(t,n){"object"==typeof exports&&"object"==typeof module?module.exports=n():"function"==typeof define&&define.amd?define([],n):"object"==typeof exports?exports.RA=n():t.RA=n()}(this,function(){return function(t){function n(e){if(r[e])return r[e].exports;var u=r[e]={i:e,l:!1,exports:{}};return t[e].call(u.exports,u,u.exports,n),u.l=!0,u.exports}var r={};return n.m=t,n.c=r,n.i=function(t){return t},n.d=function(t,r,e){n.o(t,r)||Object.defineProperty(t,r,{configurable:!1,enumerable:!0,get:e})},n.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(r,"a",r),r},n.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},n.p="",n(n.s=313)}([function(t,n,r){var e=r(1),u=r(34);t.exports=function(t){return function n(r,o){switch(arguments.length){case 0:return n;case 1:return u(r)?n:e(function(n){return t(r,n)});default:return u(r)&&u(o)?n:u(r)?e(function(n){return t(n,o)}):u(o)?e(function(n){return t(r,n)}):t(r,o)}}}},function(t,n,r){var e=r(34);t.exports=function(t){return function n(r){return 0===arguments.length||e(r)?n:t.apply(this,arguments)}}},function(t,n,r){var e=r(1),u=r(0),o=r(34);t.exports=function(t){return function n(r,i,c){switch(arguments.length){case 0:return n;case 1:return o(r)?n:u(function(n,e){return t(r,n,e)});case 2:return o(r)&&o(i)?n:o(r)?u(function(n,r){return t(n,i,r)}):o(i)?u(function(n,e){return t(r,n,e)}):e(function(n){return t(r,i,n)});default:return o(r)&&o(i)&&o(c)?n:o(r)&&o(i)?u(function(n,r){return t(n,r,c)}):o(r)&&o(c)?u(function(n,r){return t(n,i,r)}):o(i)&&o(c)?u(function(n,e){return t(r,n,e)}):o(r)?e(function(n){return t(n,i,c)}):o(i)?e(function(n){return t(r,n,c)}):o(c)?e(function(n){return t(r,i,n)}):t(r,i,c)}}}},function(t,n,r){var e=r(14),u=r(52);t.exports=function(t,n,r){return function(){if(0===arguments.length)return r();var o=Array.prototype.slice.call(arguments,0),i=o.pop();if(!e(i)){for(var c=0;c<t.length;){if("function"==typeof i[t[c]])return i[t[c]].apply(i,o);c+=1}if(u(i)){var f=n.apply(null,o);return f(i)}}return r.apply(this,arguments)}}},function(t,n){t.exports={init:function(){return this.xf["@@transducer/init"]()},result:function(t){return this.xf["@@transducer/result"](t)}}},function(t,n,r){var e=r(11),u=r(1),o=r(0),i=r(32);t.exports=o(function(t,n){return 1===t?u(n):e(t,i(t,[],n))})},function(t,n){t.exports=function(t,n){return Object.prototype.hasOwnProperty.call(n,t)}},function(t,n,r){var e=r(0),u=r(3),o=r(36),i=r(8),c=r(206),f=r(5),s=r(12);t.exports=e(u(["map"],c,function(t,n){switch(Object.prototype.toString.call(n)){case"[object Function]":return f(n.length,function(){return t.call(this,n.apply(this,arguments))});case"[object Object]":return i(function(r,e){return r[e]=t(n[e]),r},{},s(n));default:return o(t,n)}}))},function(t,n,r){var e=r(90),u=r(65),o=r(22);t.exports=function(){function t(t,n,r){for(var e=0,u=r.length;e<u;){if(n=t["@@transducer/step"](n,r[e]),n&&n["@@transducer/reduced"]){n=n["@@transducer/value"];break}e+=1}return t["@@transducer/result"](n)}function n(t,n,r){for(var e=r.next();!e.done;){if(n=t["@@transducer/step"](n,e.value),n&&n["@@transducer/reduced"]){n=n["@@transducer/value"];break}e=r.next()}return t["@@transducer/result"](n)}function r(t,n,r){return t["@@transducer/result"](r.reduce(u(t["@@transducer/step"],t),n))}var i="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";return function(u,c,f){if("function"==typeof u&&(u=e(u)),o(f))return t(u,c,f);if("function"==typeof f.reduce)return r(u,c,f);if(null!=f[i])return n(u,c,f[i]());if("function"==typeof f.next)return n(u,c,f);throw new TypeError("reduce: list must be array or iterable")}}()},function(t,n){t.exports=function(t,n){t=t||[],n=n||[];var r,e=t.length,u=n.length,o=[];for(r=0;r<e;)o[o.length]=t[r],r+=1;for(r=0;r<u;)o[o.length]=n[r],r+=1;return o}},function(t,n,r){var e=r(0),u=r(181);t.exports=e(function(t,n){return u(t,n,[],[])})},function(t,n){t.exports=function(t,n){switch(t){case 0:return function(){return n.apply(this,arguments)};case 1:return function(t){return n.apply(this,arguments)};case 2:return function(t,r){return n.apply(this,arguments)};case 3:return function(t,r,e){return n.apply(this,arguments)};case 4:return function(t,r,e,u){return n.apply(this,arguments)};case 5:return function(t,r,e,u,o){return n.apply(this,arguments)};case 6:return function(t,r,e,u,o,i){return n.apply(this,arguments)};case 7:return function(t,r,e,u,o,i,c){return n.apply(this,arguments)};case 8:return function(t,r,e,u,o,i,c,f){return n.apply(this,arguments)};case 9:return function(t,r,e,u,o,i,c,f,s){return n.apply(this,arguments)};case 10:return function(t,r,e,u,o,i,c,f,s,a){return n.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}},function(t,n,r){var e=r(1),u=r(6),o=r(83);t.exports=function(){var t=!{toString:null}.propertyIsEnumerable("toString"),n=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],r=function(){"use strict";return arguments.propertyIsEnumerable("length")}(),i=function(t,n){for(var r=0;r<t.length;){if(t[r]===n)return!0;r+=1}return!1};return e("function"!=typeof Object.keys||r?function(e){if(Object(e)!==e)return[];var c,f,s=[],a=r&&o(e);for(c in e)!u(c,e)||a&&"length"===c||(s[s.length]=c);if(t)for(f=n.length-1;f>=0;)c=n[f],u(c,e)&&!i(s,c)&&(s[s.length]=c),f-=1;return s}:function(t){return Object(t)!==t?[]:Object.keys(t)})}()},function(t,n,r){var e=r(2),u=r(8);t.exports=e(u)},function(t,n){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return t&&t["@@transducer/reduced"]?t:{"@@transducer/value":t,"@@transducer/reduced":!0}}},function(t,n,r){var e=r(82);t.exports=function(t,n){return e(n,t,0)>=0}},function(t,n,r){var e=r(20),u=r(2);t.exports=u(e("slice",function(t,n,r){return Array.prototype.slice.call(r,t,n)}))},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(){return t}})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n>t?n:t})},function(t,n,r){var e=r(14);t.exports=function(t,n){return function(){var r=arguments.length;if(0===r)return n();var u=arguments[r-1];return e(u)||"function"!=typeof u[t]?n.apply(this,arguments):u[t].apply(u,Array.prototype.slice.call(arguments,0,r-1))}}},function(t,n,r){var e=r(0),u=r(33),o=r(5),i=r(26);t.exports=e(function(t,n){return o(t+1,function(){var r=arguments[t];if(null!=r&&u(r[n]))return r[n].apply(r,Array.prototype.slice.call(arguments,0,t));throw new TypeError(i(r)+' does not have a method named "'+n+'"')})})},function(t,n,r){var e=r(1),u=r(14),o=r(35);t.exports=e(function(t){return!!u(t)||!!t&&("object"==typeof t&&(!o(t)&&(1===t.nodeType?!!t.length:0===t.length||t.length>0&&(t.hasOwnProperty(0)&&t.hasOwnProperty(t.length-1)))))})},function(t,n,r){var e=r(0),u=r(35);t.exports=e(function(t,n){var r=t<0?n.length+t:t;return u(n)?n.charAt(r):n[r]})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=n,e=0;e<t.length;){if(null==r)return;r=r[t[e]],e+=1}return r})},function(t,n,r){var e=r(0),u=r(7),o=r(53);t.exports=e(function(t,n){return u(o(t),n)})},function(t,n,r){var e=r(1),u=r(193);t.exports=e(function(t){return u(t,[])})},function(t,n,r){t.exports={F:r(119),T:r(120),__:r(121),add:r(28),addIndex:r(122),adjust:r(60),all:r(123),allPass:r(124),always:r(18),and:r(61),any:r(62),anyPass:r(125),ap:r(43),aperture:r(126),append:r(127),apply:r(63),applySpec:r(128),ascend:r(129),assoc:r(29),assocPath:r(64),binary:r(130),bind:r(65),both:r(131),call:r(132),chain:r(44),clamp:r(133),clone:r(134),comparator:r(135),complement:r(136),compose:r(45),composeK:r(66),composeP:r(137),concat:r(46),cond:r(138),construct:r(139),constructN:r(67),contains:r(140),converge:r(68),countBy:r(141),curry:r(30),curryN:r(5),dec:r(142),descend:r(143),defaultTo:r(69),difference:r(70),differenceWith:r(71),dissoc:r(72),dissocPath:r(144),divide:r(145),drop:r(73),dropLast:r(146),dropLastWhile:r(147),dropRepeats:r(148),dropRepeatsWith:r(74),dropWhile:r(149),either:r(150),empty:r(75),eqBy:r(151),eqProps:r(152),equals:r(10),evolve:r(153),filter:r(47),find:r(154),findIndex:r(155),findLast:r(156),findLastIndex:r(157),flatten:r(158),flip:r(31),forEach:r(159),forEachObjIndexed:r(160),fromPairs:r(161),groupBy:r(162),groupWith:r(163),gt:r(164),gte:r(165),has:r(166),hasIn:r(167),head:r(168),identical:r(76),identity:r(48),ifElse:r(169),inc:r(170),indexBy:r(171),indexOf:r(172),init:r(173),insert:r(174),insertAll:r(175),intersection:r(210),intersectionWith:r(211),intersperse:r(212),into:r(213),invert:r(214),invertObj:r(215),invoker:r(21),is:r(91),isArrayLike:r(22),isEmpty:r(216),isNil:r(217),join:r(218),juxt:r(92),keys:r(12),keysIn:r(219),last:r(93),lastIndexOf:r(220),length:r(94),lens:r(37),lensIndex:r(221),lensPath:r(222),lensProp:r(223),lift:r(38),liftN:r(95),lt:r(224),lte:r(225),map:r(7),mapAccum:r(226),mapAccumRight:r(227),mapObjIndexed:r(228),match:r(229),mathMod:r(230),max:r(19),maxBy:r(231),mean:r(96),median:r(232),memoize:r(233),merge:r(234),mergeAll:r(235),mergeWith:r(236),mergeWithKey:r(97),min:r(237),minBy:r(238),modulo:r(239),multiply:r(98),nAry:r(39),negate:r(240),none:r(241),not:r(99),nth:r(23),nthArg:r(242),objOf:r(100),of:r(243),omit:r(244),once:r(245),or:r(101),over:r(102),pair:r(246),partial:r(247),partialRight:r(248),partition:r(249),path:r(24),pathEq:r(250),pathOr:r(251),pathSatisfies:r(252),pick:r(253),pickAll:r(103),pickBy:r(254),pipe:r(104),pipeK:r(255),pipeP:r(105),pluck:r(25),prepend:r(106),product:r(256),project:r(257),prop:r(53),propEq:r(258),propIs:r(259),propOr:r(260),propSatisfies:r(261),props:r(262),range:r(263),reduce:r(13),reduceBy:r(40),reduceRight:r(107),reduceWhile:r(264),reduced:r(265),reject:r(41),remove:r(266),repeat:r(267),replace:r(268),reverse:r(42),scan:r(269),sequence:r(108),set:r(270),slice:r(17),sort:r(271),sortBy:r(272),sortWith:r(273),split:r(274),splitAt:r(275),splitEvery:r(276),splitWhen:r(277),subtract:r(278),sum:r(109),symmetricDifference:r(279),symmetricDifferenceWith:r(280),tail:r(54),take:r(110),takeLast:r(281),takeLastWhile:r(282),takeWhile:r(283),tap:r(284),test:r(285),times:r(111),toLower:r(286),toPairs:r(287),toPairsIn:r(288),toString:r(26),toUpper:r(289),transduce:r(290),transpose:r(291),traverse:r(292),trim:r(293),tryCatch:r(294),type:r(55),unapply:r(295),unary:r(296),uncurryN:r(297),unfold:r(298),union:r(299),unionWith:r(300),uniq:r(56),uniqBy:r(112),uniqWith:r(57),unless:r(301),unnest:r(302),until:r(303),update:r(113),useWith:r(114),values:r(115),valuesIn:r(304),view:r(305),when:r(306),where:r(116),whereEq:r(307),without:r(308),xprod:r(309),zip:r(310),zipObj:r(311),zipWith:r(312)}},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Number(t)+Number(n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e={};for(var u in r)e[u]=r[u];return e[t]=n,e})},function(t,n,r){var e=r(1),u=r(5);t.exports=e(function(t){return u(t.length,t)})},function(t,n,r){var e=r(1),u=r(30);t.exports=e(function(t){return u(function(n,r){var e=Array.prototype.slice.call(arguments,0);return e[0]=r,e[1]=n,t.apply(this,e)})})},function(t,n,r){var e=r(11),u=r(34);t.exports=function t(n,r,o){return function(){for(var i=[],c=0,f=n,s=0;s<r.length||c<arguments.length;){var a;s<r.length&&(!u(r[s])||c>=arguments.length)?a=r[s]:(a=arguments[c],c+=1),i[s]=a,u(a)||(f-=1),s+=1}return f<=0?o.apply(this,i):e(f,t(n,i,o))}}},function(t,n){t.exports=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return null!=t&&"object"==typeof t&&t["@@functional/placeholder"]===!0}},function(t,n){t.exports=function(t){return"[object String]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length,u=Array(e);r<e;)u[r]=t(n[r]),r+=1;return u}},function(t,n,r){var e=r(0),u=r(7);t.exports=e(function(t,n){return function(r){return function(e){return u(function(t){return n(t,e)},r(t(e)))}}})},function(t,n,r){var e=r(1),u=r(95);t.exports=e(function(t){return u(t.length,t)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){switch(t){case 0:return function(){return n.call(this)};case 1:return function(t){return n.call(this,t)};case 2:return function(t,r){return n.call(this,t,r)};case 3:return function(t,r,e){return n.call(this,t,r,e)};case 4:return function(t,r,e,u){return n.call(this,t,r,e,u)};case 5:return function(t,r,e,u,o){return n.call(this,t,r,e,u,o)};case 6:return function(t,r,e,u,o,i){return n.call(this,t,r,e,u,o,i)};case 7:return function(t,r,e,u,o,i,c){return n.call(this,t,r,e,u,o,i,c)};case 8:return function(t,r,e,u,o,i,c,f){return n.call(this,t,r,e,u,o,i,c,f)};case 9:return function(t,r,e,u,o,i,c,f,s){return n.call(this,t,r,e,u,o,i,c,f,s)};case 10:return function(t,r,e,u,o,i,c,f,s,a){return n.call(this,t,r,e,u,o,i,c,f,s,a)};default:throw new Error("First argument to nAry must be a non-negative integer no greater than ten")}})},function(t,n,r){var e=r(32),u=r(3),o=r(6),i=r(8),c=r(207);t.exports=e(4,[],u([],c,function(t,n,r,e){return i(function(e,u){var i=r(u);return e[i]=t(o(i,e)?e[i]:n,u),e},{},e)}))},function(t,n,r){var e=r(79),u=r(0),o=r(47);t.exports=u(function(t,n){return o(e(t),n)})},function(t,n,r){var e=r(1),u=r(35);t.exports=e(function(t){return u(t)?t.split("").reverse().join(""):Array.prototype.slice.call(t,0).reverse()})},function(t,n,r){var e=r(9),u=r(0),o=r(8),i=r(7);t.exports=u(function(t,n){return"function"==typeof t.ap?t.ap(n):"function"==typeof t?function(r){return t(r)(n(r))}:o(function(t,r){return e(t,i(r,n))},[],t)})},function(t,n,r){var e=r(0),u=r(3),o=r(87),i=r(196),c=r(7);t.exports=e(u(["chain"],i,function(t,n){return"function"==typeof n?function(r){return t(n(r))(r)}:o(!1)(c(t,n))}))},function(t,n,r){var e=r(104),u=r(42);t.exports=function(){if(0===arguments.length)throw new Error("compose requires at least one argument");return e.apply(this,u(arguments))}},function(t,n,r){var e=r(0),u=r(14),o=r(33),i=r(26);t.exports=e(function(t,n){if(null==t||!o(t.concat))throw new TypeError(i(t)+' does not have a method named "concat"');if(u(t)&&!u(n))throw new TypeError(i(n)+" is not an array");return t.concat(n)})},function(t,n,r){var e=r(0),u=r(3),o=r(81),i=r(86),c=r(8),f=r(201),s=r(12);t.exports=e(u(["filter"],f,function(t,n){return i(n)?c(function(r,e){return t(n[e])&&(r[e]=n[e]),r},{},s(n)):o(t,n)}))},function(t,n,r){var e=r(1),u=r(51);t.exports=e(u)},function(t,n,r){var e=r(186);t.exports="function"==typeof Object.assign?Object.assign:e},function(t,n){t.exports=function(t,n,r){for(var e=0,u=r.length;e<u;){if(t(n,r[e]))return!0;e+=1}return!1}},function(t,n){t.exports=function(t){return t}},function(t,n){t.exports=function(t){return"function"==typeof t["@@transducer/step"]}},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n[t]})},function(t,n,r){var e=r(20),u=r(1),o=r(17);t.exports=u(e("tail",o(1,1/0)))},function(t,n,r){var e=r(1);t.exports=e(function(t){return null===t?"Null":void 0===t?"Undefined":Object.prototype.toString.call(t).slice(8,-1)})},function(t,n,r){var e=r(48),u=r(112);t.exports=u(e)},function(t,n,r){var e=r(50),u=r(0);t.exports=u(function(t,n){for(var r,u=0,o=n.length,i=[];u<o;)r=n[u],e(t,r,i)||(i[i.length]=r),u+=1;return i})},function(t,n,r){"use strict";var e=r(27),u=e.equals;t.exports=u(null)},function(t,n,r){"use strict";var e=r(27),u=e.equals;t.exports=u(void 0)},function(t,n,r){var e=r(9),u=r(2);t.exports=u(function(t,n,r){if(n>=r.length||n<-r.length)return r;var u=n<0?r.length:0,o=u+n,i=e(r);return i[o]=t(r[o]),i})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t&&n})},function(t,n,r){var e=r(0),u=r(3),o=r(88);t.exports=e(u(["any"],o,function(t,n){for(var r=0;r<n.length;){if(t(n[r]))return!0;r+=1}return!1}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t.apply(this,n)})},function(t,n,r){var e=r(2),u=r(6),o=r(14),i=r(84),c=r(29);t.exports=e(function t(n,r,e){if(0===n.length)return r;var f=n[0];if(n.length>1){var s=u(f,e)?e[f]:i(n[1])?[]:{};r=t(Array.prototype.slice.call(n,1),r,s)}if(i(f)&&o(e)){var a=[].concat(e);return a[f]=r,a}return c(f,r,e)})},function(t,n,r){var e=r(11),u=r(0);t.exports=u(function(t,n){return e(t.length,function(){return t.apply(n,arguments)})})},function(t,n,r){var e=r(44),u=r(45),o=r(7);t.exports=function(){if(0===arguments.length)throw new Error("composeK requires at least one argument");var t=Array.prototype.slice.call(arguments),n=t.pop();return u(u.apply(this,o(e,t)),n)}},function(t,n,r){var e=r(0),u=r(30),o=r(39);t.exports=e(function(t,n){if(t>10)throw new Error("Constructor with greater than ten arguments");return 0===t?function(){return new n}:u(o(t,function(t,r,e,u,o,i,c,f,s,a){switch(arguments.length){case 1:return new n(t);case 2:return new n(t,r);case 3:return new n(t,r,e);case 4:return new n(t,r,e,u);case 5:return new n(t,r,e,u,o);case 6:return new n(t,r,e,u,o,i);case 7:return new n(t,r,e,u,o,i,c);case 8:return new n(t,r,e,u,o,i,c,f);case 9:return new n(t,r,e,u,o,i,c,f,s);case 10:return new n(t,r,e,u,o,i,c,f,s,a)}}))})},function(t,n,r){var e=r(0),u=r(36),o=r(5),i=r(19),c=r(25),f=r(13);t.exports=e(function(t,n){return o(f(i,0,c("length",n)),function(){var r=arguments,e=this;return t.apply(e,u(function(t){return t.apply(e,r)},n))})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return null==n||n!==n?t:n})},function(t,n,r){var e=r(16),u=r(0);t.exports=u(function(t,n){for(var r=[],u=0,o=t.length;u<o;)e(t[u],n)||e(t[u],r)||(r[r.length]=t[u]),u+=1;return r})},function(t,n,r){var e=r(50),u=r(2);t.exports=u(function(t,n,r){for(var u=[],o=0,i=n.length;o<i;)e(t,n[o],r)||e(t,n[o],u)||u.push(n[o]),o+=1;return u})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};for(var e in n)r[e]=n[e];return delete r[t],r})},function(t,n,r){var e=r(0),u=r(3),o=r(197),i=r(17);t.exports=e(u(["drop"],o,function(t,n){return i(Math.max(0,t),1/0,n)}))},function(t,n,r){var e=r(0),u=r(3),o=r(89),i=r(93);t.exports=e(u([],o,function(t,n){var r=[],e=1,u=n.length;if(0!==u)for(r[0]=n[0];e<u;)t(i(r),n[e])||(r[r.length]=n[e]),e+=1;return r}))},function(t,n,r){var e=r(1),u=r(83),o=r(14),i=r(86),c=r(35);t.exports=e(function(t){return null!=t&&"function"==typeof t.empty?t.empty():null!=t&&null!=t.constructor&&"function"==typeof t.constructor.empty?t.constructor.empty():o(t)?[]:c(t)?"":i(t)?{}:u(t)?function(){return arguments}():void 0})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t===n?0!==t||1/t===1/n:t!==t&&n!==n})},function(t,n,r){var e=r(78),u=r(55);t.exports=function t(n,r,o,i){var c=function(e){for(var u=r.length,c=0;c<u;){if(n===r[c])return o[c];c+=1}r[c+1]=n,o[c+1]=e;for(var f in n)e[f]=i?t(n[f],r,o,!0):n[f];return e};switch(u(n)){case"Object":return c({});case"Array":return c([]);case"Date":return new Date(n.valueOf());case"RegExp":return e(n);default:return n}}},function(t,n){t.exports=function(t){return new RegExp(t.source,(t.global?"g":"")+(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.sticky?"y":"")+(t.unicode?"u":""))}},function(t,n){t.exports=function(t){return function(){return!t.apply(this,arguments)}}},function(t,n,r){var e=r(11),u=r(0);t.exports=function(t){return u(function(n,r){return e(Math.max(0,n.length-r.length),function(){return n.apply(this,t(r,arguments))})})}},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length,u=[];r<e;)t(n[r])&&(u[u.length]=n[r]),r+=1;return u}},function(t,n,r){var e=r(10);t.exports=function(t,n,r){var u,o;if("function"==typeof t.indexOf)switch(typeof n){case"number":if(0===n){for(u=1/n;r<t.length;){if(o=t[r],0===o&&1/o===u)return r;r+=1}return-1}if(n!==n){for(;r<t.length;){if(o=t[r],"number"==typeof o&&o!==o)return r;r+=1}return-1}return t.indexOf(n,r);case"string":case"boolean":case"function":case"undefined":return t.indexOf(n,r);case"object":if(null===n)return t.indexOf(n,r)}for(;r<t.length;){if(e(t[r],n))return r;r+=1}return-1}},function(t,n,r){var e=r(6);t.exports=function(){var t=Object.prototype.toString;return"[object Arguments]"===t.call(arguments)?function(n){return"[object Arguments]"===t.call(n)}:function(t){return e("callee",t)}}()},function(t,n){t.exports=Number.isInteger||function(t){return t<<0===t}},function(t,n){t.exports=function(t){return"[object Number]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},function(t,n,r){var e=r(22);t.exports=function(t){return function n(r){for(var u,o,i,c=[],f=0,s=r.length;f<s;){if(e(r[f]))for(u=t?n(r[f]):r[f],i=0,o=u.length;i<o;)c[c.length]=u[i],i+=1;else c[c.length]=r[f];f+=1}return c}}},function(t,n,r){var e=r(0),u=r(15),o=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.any=!1}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.any||(t=this.xf["@@transducer/step"](t,!1)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.any=!0,t=u(this.xf["@@transducer/step"](t,!0))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),u=r(4);t.exports=function(){function t(t,n){this.xf=n,this.pred=t,this.lastValue=void 0,this.seenFirstValue=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=u.result,t.prototype["@@transducer/step"]=function(t,n){var r=!1;return this.seenFirstValue?this.pred(this.lastValue,n)&&(r=!0):this.seenFirstValue=!0,this.lastValue=n,r?t:this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n){t.exports=function(){function t(t){this.f=t}return t.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},t.prototype["@@transducer/result"]=function(t){return t},t.prototype["@@transducer/step"]=function(t,n){return this.f(t,n)},function(n){return new t(n)}}()},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return null!=n&&n.constructor===t||n instanceof t})},function(t,n,r){var e=r(1),u=r(68);t.exports=e(function(t){return u(function(){return Array.prototype.slice.call(arguments,0)},t)})},function(t,n,r){var e=r(23);t.exports=e(-1)},function(t,n,r){var e=r(1),u=r(85);t.exports=e(function(t){return null!=t&&u(t.length)?t.length:NaN})},function(t,n,r){var e=r(0),u=r(8),o=r(43),i=r(5),c=r(7);t.exports=e(function(t,n){var r=i(t,n);return i(t,function(){return u(o,c(r,arguments[0]),Array.prototype.slice.call(arguments,1))})})},function(t,n,r){var e=r(1),u=r(109);t.exports=e(function(t){return u(t)/t.length})},function(t,n,r){var e=r(2),u=r(6);t.exports=e(function(t,n,r){var e,o={};for(e in n)u(e,n)&&(o[e]=u(e,r)?t(e,n[e],r[e]):n[e]);for(e in r)u(e,r)&&!u(e,o)&&(o[e]=r[e]);return o})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t*n})},function(t,n,r){var e=r(1);t.exports=e(function(t){return!t})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};return r[t]=n,r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t||n})},function(t,n,r){var e=r(2);t.exports=function(){var t=function(n){return{value:n,map:function(r){return t(r(n))}}};return e(function(n,r,e){return n(function(n){return t(r(n))})(e).value})}()},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r={},e=0,u=t.length;e<u;){var o=t[e];r[o]=n[o],e+=1}return r})},function(t,n,r){var e=r(11),u=r(188),o=r(13),i=r(54);t.exports=function(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return e(arguments[0].length,o(u,arguments[0],i(arguments)))}},function(t,n,r){var e=r(11),u=r(189),o=r(13),i=r(54);t.exports=function(){if(0===arguments.length)throw new Error("pipeP requires at least one argument");return e(arguments[0].length,o(u,arguments[0],i(arguments)))}},function(t,n,r){var e=r(9),u=r(0);t.exports=u(function(t,n){return e([t],n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r.length-1;e>=0;)n=t(r[e],n),e-=1;return n})},function(t,n,r){var e=r(0),u=r(43),o=r(7),i=r(106),c=r(107);t.exports=e(function(t,n){return"function"==typeof n.sequence?n.sequence(t):c(function(t,n){return u(o(i,t),n)},t([]),n)})},function(t,n,r){var e=r(28),u=r(13);t.exports=u(e,0)},function(t,n,r){var e=r(0),u=r(3),o=r(208),i=r(17);t.exports=e(u(["take"],o,function(t,n){return i(0,t<0?1/0:t,n)}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r,e=Number(n),u=0;if(e<0||isNaN(e))throw new RangeError("n must be a non-negative number");for(r=new Array(e);u<e;)r[u]=t(u),u+=1;return r})},function(t,n,r){var e=r(176),u=r(0);t.exports=u(function(t,n){for(var r,u,o=new e,i=[],c=0;c<n.length;)u=n[c],r=t(u),o.add(r)&&i.push(u),c+=1;return i})},function(t,n,r){var e=r(2),u=r(60),o=r(18);t.exports=e(function(t,n,r){return u(o(n),t,r)})},function(t,n,r){var e=r(0),u=r(5);t.exports=e(function(t,n){return u(n.length,function(){for(var r=[],e=0;e<n.length;)r.push(n[e].call(this,arguments[e])),e+=1;return t.apply(this,r.concat(Array.prototype.slice.call(arguments,n.length)))})})},function(t,n,r){var e=r(1),u=r(12);t.exports=e(function(t){for(var n=u(t),r=n.length,e=[],o=0;o<r;)e[o]=t[n[o]],o+=1;return e})},function(t,n,r){var e=r(0),u=r(6);t.exports=e(function(t,n){for(var r in t)if(u(r,t)&&!t[r](n[r]))return!1;return!0})},function(t,n,r){"use strict";var e=r(27),u=e.complement,o=r(58),i=u(o);t.exports=i},function(t,n,r){"use strict";var e=r(27),u=e.complement,o=r(59);t.exports=u(o)},function(t,n,r){var e=r(18);t.exports=e(!1)},function(t,n,r){var e=r(18);t.exports=e(!0)},function(t,n){t.exports={"@@functional/placeholder":!0}},function(t,n,r){var e=r(9),u=r(1),o=r(5);t.exports=u(function(t){return o(t.length,function(){var n=0,r=arguments[0],u=arguments[arguments.length-1],o=Array.prototype.slice.call(arguments,0);return o[0]=function(){var t=r.apply(this,e(arguments,[n,u]));return n+=1,t},t.apply(this,o)})})},function(t,n,r){var e=r(0),u=r(3),o=r(194);t.exports=e(u(["all"],o,function(t,n){for(var r=0;r<n.length;){if(!t(n[r]))return!1;r+=1}return!0}))},function(t,n,r){var e=r(1),u=r(5),o=r(19),i=r(25),c=r(13);t.exports=e(function(t){return u(c(o,0,i("length",t)),function(){for(var n=0,r=t.length;n<r;){if(!t[n].apply(this,arguments))return!1;n+=1}return!0})})},function(t,n,r){var e=r(1),u=r(5),o=r(19),i=r(25),c=r(13);t.exports=e(function(t){return u(c(o,0,i("length",t)),function(){for(var n=0,r=t.length;n<r;){if(t[n].apply(this,arguments))return!0;n+=1}return!1})})},function(t,n,r){var e=r(177),u=r(0),o=r(3),i=r(195);t.exports=u(o([],i,e))},function(t,n,r){var e=r(9),u=r(0);t.exports=u(function(t,n){return e(n,[t])})},function(t,n,r){var e=r(1),u=r(63),o=r(5),i=r(7),c=r(19),f=r(25),s=r(13),a=r(115);t.exports=e(function t(n){return n=i(function(n){return"function"==typeof n?n:t(n)},n),o(s(c,0,f("length",a(n))),function(){var t=arguments;return i(function(n){return u(n,t)},n)})})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=t(n),u=t(r);return e<u?-1:e>u?1:0})},function(t,n,r){var e=r(1),u=r(39);t.exports=e(function(t){return u(2,t)})},function(t,n,r){var e=r(0),u=r(33),o=r(61),i=r(38);t.exports=e(function(t,n){return u(t)?function(){return t.apply(this,arguments)&&n.apply(this,arguments)}:i(o)(t,n)})},function(t,n,r){var e=r(30);t.exports=e(function(t){return t.apply(this,Array.prototype.slice.call(arguments,1))})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){if(t>n)throw new Error("min must not be greater than max in clamp(min, max, value)");return r<t?t:r>n?n:r})},function(t,n,r){var e=r(77),u=r(1);t.exports=u(function(t){return null!=t&&"function"==typeof t.clone?t.clone():e(t,[],[],!0)})},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(n,r){return t(n,r)?-1:t(r,n)?1:0}})},function(t,n,r){var e=r(38),u=r(99);t.exports=e(u)},function(t,n,r){var e=r(105),u=r(42);t.exports=function(){if(0===arguments.length)throw new Error("composeP requires at least one argument");return e.apply(this,u(arguments))}},function(t,n,r){var e=r(11),u=r(1),o=r(7),i=r(19),c=r(13);t.exports=u(function(t){var n=c(i,0,o(function(t){return t[0].length},t));return e(n,function(){for(var n=0;n<t.length;){if(t[n][0].apply(this,arguments))return t[n][1].apply(this,arguments);n+=1}})})},function(t,n,r){var e=r(1),u=r(67);t.exports=e(function(t){return u(t.length,t)})},function(t,n,r){var e=r(16),u=r(0);t.exports=u(e)},function(t,n,r){var e=r(40);t.exports=e(function(t,n){return t+1},0)},function(t,n,r){var e=r(28);t.exports=e(-1)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=t(n),u=t(r);return e>u?-1:e<u?1:0})},function(t,n,r){var e=r(0),u=r(29),o=r(72);t.exports=e(function t(n,r){switch(n.length){case 0:return r;case 1:return o(n[0],r);default:var e=n[0],i=Array.prototype.slice.call(n,1);return null==r[e]?r:u(e,t(i,r[e]),r)}})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t/n})},function(t,n,r){var e=r(0),u=r(3),o=r(179),i=r(198);t.exports=e(u([],i,o))},function(t,n,r){var e=r(0),u=r(3),o=r(180),i=r(199);t.exports=e(u([],i,o))},function(t,n,r){var e=r(1),u=r(3),o=r(89),i=r(74),c=r(10);t.exports=e(u([],o(c),i(c)))},function(t,n,r){var e=r(0),u=r(3),o=r(200);t.exports=e(u(["dropWhile"],o,function(t,n){for(var r=0,e=n.length;r<e&&t(n[r]);)r+=1;return Array.prototype.slice.call(n,r)}))},function(t,n,r){var e=r(0),u=r(33),o=r(38),i=r(101);t.exports=e(function(t,n){return u(t)?function(){return t.apply(this,arguments)||n.apply(this,arguments)}:o(i)(t,n)})},function(t,n,r){var e=r(2),u=r(10);t.exports=e(function(t,n,r){return u(t(n),t(r))})},function(t,n,r){var e=r(2),u=r(10);t.exports=e(function(t,n,r){return u(n[t],r[t])})},function(t,n,r){var e=r(0);t.exports=e(function t(n,r){var e,u,o,i={};for(u in r)e=n[u],o=typeof e,i[u]="function"===o?e(r[u]):e&&"object"===o?t(e,r[u]):r[u];return i})},function(t,n,r){var e=r(0),u=r(3),o=r(202);t.exports=e(u(["find"],o,function(t,n){for(var r=0,e=n.length;r<e;){if(t(n[r]))return n[r];r+=1}}))},function(t,n,r){var e=r(0),u=r(3),o=r(203);t.exports=e(u([],o,function(t,n){for(var r=0,e=n.length;r<e;){if(t(n[r]))return r;r+=1}return-1}))},function(t,n,r){var e=r(0),u=r(3),o=r(204);t.exports=e(u([],o,function(t,n){for(var r=n.length-1;r>=0;){if(t(n[r]))return n[r];r-=1}}))},function(t,n,r){var e=r(0),u=r(3),o=r(205);t.exports=e(u([],o,function(t,n){for(var r=n.length-1;r>=0;){if(t(n[r]))return r;r-=1}return-1}))},function(t,n,r){var e=r(1),u=r(87);t.exports=e(u(!0))},function(t,n,r){var e=r(20),u=r(0);t.exports=u(e("forEach",function(t,n){for(var r=n.length,e=0;e<r;)t(n[e]),e+=1;return n}))},function(t,n,r){var e=r(0),u=r(12);t.exports=e(function(t,n){for(var r=u(n),e=0;e<r.length;){var o=r[e];t(n[o],o,n),e+=1}return n})},function(t,n,r){var e=r(1);t.exports=e(function(t){for(var n={},r=0;r<t.length;)n[t[r][0]]=t[r][1],r+=1;return n})},function(t,n,r){var e=r(20),u=r(0),o=r(40);t.exports=u(e("groupBy",o(function(t,n){return null==t&&(t=[]),t.push(n),t},null)))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=[],e=0,u=n.length;e<u;){for(var o=e+1;o<u&&t(n[e],n[o]);)o+=1;r.push(n.slice(e,o)),e=o}return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t>n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t>=n})},function(t,n,r){var e=r(0),u=r(6);t.exports=e(u)},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t in n})},function(t,n,r){var e=r(23);t.exports=e(0)},function(t,n,r){var e=r(2),u=r(5);t.exports=e(function(t,n,r){return u(Math.max(t.length,n.length,r.length),function(){return t.apply(this,arguments)?n.apply(this,arguments):r.apply(this,arguments)})})},function(t,n,r){var e=r(28);t.exports=e(1)},function(t,n,r){var e=r(40);t.exports=e(function(t,n){return n},null)},function(t,n,r){var e=r(0),u=r(82),o=r(14);t.exports=e(function(t,n){return"function"!=typeof n.indexOf||o(n)?u(n,t,0):n.indexOf(t)})},function(t,n,r){var e=r(17);t.exports=e(0,-1)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){t=t<r.length&&t>=0?t:r.length;var e=Array.prototype.slice.call(r,0);return e.splice(t,0,n),e})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t=t<r.length&&t>=0?t:r.length, | ||
[].concat(Array.prototype.slice.call(r,0,t),n,Array.prototype.slice.call(r,t))})},function(t,n,r){var e=r(16);t.exports=function(){function t(){this._nativeSet="function"==typeof Set?new Set:null,this._items={}}function n(t,n,r){var u,o,i=typeof t;switch(i){case"string":case"number":return 0===t&&1/t===-(1/0)?!!r._items["-0"]||(n&&(r._items["-0"]=!0),!1):null!==r._nativeSet?n?(u=r._nativeSet.size,r._nativeSet.add(t),o=r._nativeSet.size,o===u):r._nativeSet.has(t):i in r._items?t in r._items[i]||(n&&(r._items[i][t]=!0),!1):(n&&(r._items[i]={},r._items[i][t]=!0),!1);case"boolean":if(i in r._items){var c=t?1:0;return!!r._items[i][c]||(n&&(r._items[i][c]=!0),!1)}return n&&(r._items[i]=t?[!1,!0]:[!0,!1]),!1;case"function":return null!==r._nativeSet?n?(u=r._nativeSet.size,r._nativeSet.add(t),o=r._nativeSet.size,o===u):r._nativeSet.has(t):i in r._items?!!e(t,r._items[i])||(n&&r._items[i].push(t),!1):(n&&(r._items[i]=[t]),!1);case"undefined":return!!r._items[i]||(n&&(r._items[i]=!0),!1);case"object":if(null===t)return!!r._items.null||(n&&(r._items.null=!0),!1);default:return i=Object.prototype.toString.call(t),i in r._items?!!e(t,r._items[i])||(n&&r._items[i].push(t),!1):(n&&(r._items[i]=[t]),!1)}}return t.prototype.add=function(t){return!n(t,!0,this)},t.prototype.has=function(t){return n(t,!1,this)},t}()},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length-(t-1),u=new Array(e>=0?e:0);r<e;)u[r]=Array.prototype.slice.call(n,r,r+t),r+=1;return u}},function(t,n){t.exports=function(t){for(var n,r=[];!(n=t.next()).done;)r.push(n.value);return r}},function(t,n,r){var e=r(110);t.exports=function(t,n){return e(t<n.length?n.length-t:0,n)}},function(t,n){t.exports=function(t,n){for(var r=n.length-1;r>=0&&t(n[r]);)r-=1;return Array.prototype.slice.call(n,0,r+1)}},function(t,n,r){var e=r(178),u=r(184),o=r(6),i=r(76),c=r(12),f=r(55);t.exports=function t(n,r,s,a){if(i(n,r))return!0;if(f(n)!==f(r))return!1;if(null==n||null==r)return!1;if("function"==typeof n.equals||"function"==typeof r.equals)return"function"==typeof n.equals&&n.equals(r)&&"function"==typeof r.equals&&r.equals(n);switch(f(n)){case"Arguments":case"Array":case"Object":if("function"==typeof n.constructor&&"Promise"===u(n.constructor))return n===r;break;case"Boolean":case"Number":case"String":if(typeof n!=typeof r||!i(n.valueOf(),r.valueOf()))return!1;break;case"Date":if(!i(n.valueOf(),r.valueOf()))return!1;break;case"Error":return n.name===r.name&&n.message===r.message;case"RegExp":if(n.source!==r.source||n.global!==r.global||n.ignoreCase!==r.ignoreCase||n.multiline!==r.multiline||n.sticky!==r.sticky||n.unicode!==r.unicode)return!1;break;case"Map":case"Set":if(!t(e(n.entries()),e(r.entries()),s,a))return!1;break;case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":break;case"ArrayBuffer":break;default:return!1}var p=c(n);if(p.length!==c(r).length)return!1;for(var l=s.length-1;l>=0;){if(s[l]===n)return a[l]===r;l-=1}for(s.push(n),a.push(r),l=p.length-1;l>=0;){var h=p[l];if(!o(h,r)||!t(r[h],n[h],s,a))return!1;l-=1}return s.pop(),a.pop(),!0}},function(t,n,r){var e=r(183),u=r(8),o=r(4),i=r(22);t.exports=function(){var t=function(t){return{"@@transducer/init":o.init,"@@transducer/result":function(n){return t["@@transducer/result"](n)},"@@transducer/step":function(n,r){var u=t["@@transducer/step"](n,r);return u["@@transducer/reduced"]?e(u):u}}};return function(n){var r=t(n);return{"@@transducer/init":o.init,"@@transducer/result":function(t){return r["@@transducer/result"](t)},"@@transducer/step":function(t,n){return i(n)?u(r,t,n):u(r,t,[n])}}}}()},function(t,n){t.exports=function(t){return{"@@transducer/value":t,"@@transducer/reduced":!0}}},function(t,n){t.exports=function(t){var n=String(t).match(/^function (\w*)/);return null==n?"":n[1]}},function(t,n){t.exports=function(t){return"[object RegExp]"===Object.prototype.toString.call(t)}},function(t,n,r){var e=r(6);t.exports=function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var n=Object(t),r=1,u=arguments.length;r<u;){var o=arguments[r];if(null!=o)for(var i in o)e(i,o)&&(n[i]=o[i]);r+=1}return n}},function(t,n){t.exports=function(t){return[t]}},function(t,n){t.exports=function(t,n){return function(){return n.call(this,t.apply(this,arguments))}}},function(t,n){t.exports=function(t,n){return function(){var r=this;return t.apply(r,arguments).then(function(t){return n.call(r,t)})}}},function(t,n){t.exports=function(t){var n=t.replace(/\\/g,"\\\\").replace(/[\b]/g,"\\b").replace(/\f/g,"\\f").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t").replace(/\v/g,"\\v").replace(/\0/g,"\\0");return'"'+n.replace(/"/g,'\\"')+'"'}},function(t,n,r){var e=r(49),u=r(51),o=r(52),i=r(22),c=r(100);t.exports=function(){var t={"@@transducer/init":Array,"@@transducer/step":function(t,n){return t.push(n),t},"@@transducer/result":u},n={"@@transducer/init":String,"@@transducer/step":function(t,n){return t+n},"@@transducer/result":u},r={"@@transducer/init":Object,"@@transducer/step":function(t,n){return e(t,i(n)?c(n[0],n[1]):n)},"@@transducer/result":u};return function(e){if(o(e))return e;if(i(e))return t;if("string"==typeof e)return n;if("object"==typeof e)return r;throw new Error("Cannot create transformer for "+e)}}()},function(t,n){t.exports=function(){var t=function(t){return(t<10?"0":"")+t};return"function"==typeof Date.prototype.toISOString?function(t){return t.toISOString()}:function(n){return n.getUTCFullYear()+"-"+t(n.getUTCMonth()+1)+"-"+t(n.getUTCDate())+"T"+t(n.getUTCHours())+":"+t(n.getUTCMinutes())+":"+t(n.getUTCSeconds())+"."+(n.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"}}()},function(t,n,r){var e=r(16),u=r(36),o=r(190),i=r(192),c=r(12),f=r(41);t.exports=function t(n,r){var s=function(u){var o=r.concat([n]);return e(u,o)?"<Circular>":t(u,o)},a=function(t,n){return u(function(n){return o(n)+": "+s(t[n])},n.slice().sort())};switch(Object.prototype.toString.call(n)){case"[object Arguments]":return"(function() { return arguments; }("+u(s,n).join(", ")+"))";case"[object Array]":return"["+u(s,n).concat(a(n,f(function(t){return/^\d+$/.test(t)},c(n)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof n?"new Boolean("+s(n.valueOf())+")":n.toString();case"[object Date]":return"new Date("+(isNaN(n.valueOf())?s(NaN):o(i(n)))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof n?"new Number("+s(n.valueOf())+")":1/n===-(1/0)?"-0":n.toString(10);case"[object String]":return"object"==typeof n?"new String("+s(n.valueOf())+")":o(n);case"[object Undefined]":return"undefined";default:if("function"==typeof n.toString){var p=n.toString();if("[object Object]"!==p)return p}return"{"+a(n,c(n)).join(", ")+"}"}}},function(t,n,r){var e=r(0),u=r(15),o=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.all=!0}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.all&&(t=this.xf["@@transducer/step"](t,!0)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)||(this.all=!1,t=u(this.xf["@@transducer/step"](t,!1))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(9),u=r(0),o=r(4);t.exports=function(){function t(t,n){this.xf=n,this.pos=0,this.full=!1,this.acc=new Array(t)}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.acc=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.store(n),this.full?this.xf["@@transducer/step"](t,this.getCopy()):t},t.prototype.store=function(t){this.acc[this.pos]=t,this.pos+=1,this.pos===this.acc.length&&(this.pos=0,this.full=!0)},t.prototype.getCopy=function(){return e(Array.prototype.slice.call(this.acc,this.pos),Array.prototype.slice.call(this.acc,0,this.pos))},u(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),u=r(182),o=r(7);t.exports=e(function(t,n){return o(t,u(n))})},function(t,n,r){var e=r(0),u=r(4);t.exports=function(){function t(t,n){this.xf=n,this.n=t}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=u.result,t.prototype["@@transducer/step"]=function(t,n){return this.n>0?(this.n-=1,t):this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),u=r(4);t.exports=function(){function t(t,n){this.xf=n,this.pos=0,this.full=!1,this.acc=new Array(t)}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.acc=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.full&&(t=this.xf["@@transducer/step"](t,this.acc[this.pos])),this.store(n),t},t.prototype.store=function(t){this.acc[this.pos]=t,this.pos+=1,this.pos===this.acc.length&&(this.pos=0,this.full=!0)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),u=r(8),o=r(4);t.exports=function(){function t(t,n){this.f=t,this.retained=[],this.xf=n}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.retained=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.retain(t,n):this.flush(t,n)},t.prototype.flush=function(t,n){return t=u(this.xf["@@transducer/step"],t,this.retained),this.retained=[],this.xf["@@transducer/step"](t,n)},t.prototype.retain=function(t,n){return this.retained.push(n),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),u=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=u.result,t.prototype["@@transducer/step"]=function(t,n){if(this.f){if(this.f(n))return t;this.f=null}return this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),u=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=u.result,t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.xf["@@transducer/step"](t,n):t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),u=r(15),o=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.found=!1}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.found||(t=this.xf["@@transducer/step"](t,void 0)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.found=!0,t=u(this.xf["@@transducer/step"](t,n))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),u=r(15),o=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.idx=-1,this.found=!1}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.found||(t=this.xf["@@transducer/step"](t,-1)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.idx+=1,this.f(n)&&(this.found=!0,t=u(this.xf["@@transducer/step"](t,this.idx))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),u=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.xf["@@transducer/result"](this.xf["@@transducer/step"](t,this.last))},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.last=n),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),u=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.idx=-1,this.lastIdx=-1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.xf["@@transducer/result"](this.xf["@@transducer/step"](t,this.lastIdx))},t.prototype["@@transducer/step"]=function(t,n){return this.idx+=1,this.f(n)&&(this.lastIdx=this.idx),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),u=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=u.result,t.prototype["@@transducer/step"]=function(t,n){return this.xf["@@transducer/step"](t,this.f(n))},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(32),u=r(6),o=r(4);t.exports=function(){function t(t,n,r,e){this.valueFn=t,this.valueAcc=n,this.keyFn=r,this.xf=e,this.inputs={}}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){var n;for(n in this.inputs)if(u(n,this.inputs)&&(t=this.xf["@@transducer/step"](t,this.inputs[n]),t["@@transducer/reduced"])){t=t["@@transducer/value"];break}return this.inputs=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){var r=this.keyFn(n);return this.inputs[r]=this.inputs[r]||[r,this.valueAcc],this.inputs[r][1]=this.valueFn(this.inputs[r][1],n),t},e(4,[],function(n,r,e,u){return new t(n,r,e,u)})}()},function(t,n,r){var e=r(0),u=r(15),o=r(4);t.exports=function(){function t(t,n){this.xf=n,this.n=t,this.i=0}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){this.i+=1;var r=0===this.n?t:this.xf["@@transducer/step"](t,n);return this.i>=this.n?u(r):r},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),u=r(15),o=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.xf["@@transducer/step"](t,n):u(t)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(16),u=r(0),o=r(81),i=r(31),c=r(56);t.exports=u(function(t,n){var r,u;return t.length>n.length?(r=t,u=n):(r=n,u=t),c(o(i(e)(r),u))})},function(t,n,r){var e=r(50),u=r(2),o=r(57);t.exports=u(function(t,n,r){var u,i;n.length>r.length?(u=n,i=r):(u=r,i=n);for(var c=[],f=0;f<i.length;)e(t,i[f],u)&&(c[c.length]=i[f]),f+=1;return o(t,c)})},function(t,n,r){var e=r(20),u=r(0);t.exports=u(e("intersperse",function(t,n){for(var r=[],e=0,u=n.length;e<u;)e===u-1?r.push(n[e]):r.push(n[e],t),e+=1;return r}))},function(t,n,r){var e=r(77),u=r(2),o=r(52),i=r(8),c=r(191);t.exports=u(function(t,n,r){return o(t)?i(n(t),t["@@transducer/init"](),r):i(n(c(t)),e(t,[],[],!1),r)})},function(t,n,r){var e=r(1),u=r(6),o=r(12);t.exports=e(function(t){for(var n=o(t),r=n.length,e=0,i={};e<r;){var c=n[e],f=t[c],s=u(f,i)?i[f]:i[f]=[];s[s.length]=c,e+=1}return i})},function(t,n,r){var e=r(1),u=r(12);t.exports=e(function(t){for(var n=u(t),r=n.length,e=0,o={};e<r;){var i=n[e];o[t[i]]=i,e+=1}return o})},function(t,n,r){var e=r(1),u=r(75),o=r(10);t.exports=e(function(t){return null!=t&&o(t,u(t))})},function(t,n,r){var e=r(1);t.exports=e(function(t){return null==t})},function(t,n,r){var e=r(21);t.exports=e(1,"join")},function(t,n,r){var e=r(1);t.exports=e(function(t){var n,r=[];for(n in t)r[r.length]=n;return r})},function(t,n,r){var e=r(0),u=r(14),o=r(10);t.exports=e(function(t,n){if("function"!=typeof n.lastIndexOf||u(n)){for(var r=n.length-1;r>=0;){if(o(n[r],t))return r;r-=1}return-1}return n.lastIndexOf(t)})},function(t,n,r){var e=r(1),u=r(37),o=r(23),i=r(113);t.exports=e(function(t){return u(o(t),i(t))})},function(t,n,r){var e=r(1),u=r(64),o=r(37),i=r(24);t.exports=e(function(t){return o(i(t),u(t))})},function(t,n,r){var e=r(1),u=r(29),o=r(37),i=r(53);t.exports=e(function(t){return o(i(t),u(t))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t<n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t<=n})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=0,u=r.length,o=[],i=[n];e<u;)i=t(i[0],r[e]),o[e]=i[1],e+=1;return[i[0],o]})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r.length-1,u=[],o=[n];e>=0;)o=t(r[e],o[0]),u[e]=o[1],e-=1;return[u,o[0]]})},function(t,n,r){var e=r(0),u=r(8),o=r(12);t.exports=e(function(t,n){return u(function(r,e){return r[e]=t(n[e],e,n),r},{},o(n))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n.match(t)||[]})},function(t,n,r){var e=r(0),u=r(84);t.exports=e(function(t,n){return u(t)?!u(n)||n<1?NaN:(t%n+n)%n:NaN})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)>t(n)?r:n})},function(t,n,r){var e=r(1),u=r(96);t.exports=e(function(t){var n=t.length;if(0===n)return NaN;var r=2-n%2,e=(n-r)/2;return u(Array.prototype.slice.call(t,0).sort(function(t,n){return t<n?-1:t>n?1:0}).slice(e,e+r))})},function(t,n,r){var e=r(11),u=r(1),o=r(6),i=r(26);t.exports=u(function(t){var n={};return e(t.length,function(){var r=i(arguments);return o(r,n)||(n[r]=t.apply(this,arguments)),n[r]})})},function(t,n,r){var e=r(49),u=r(0);t.exports=u(function(t,n){return e({},t,n)})},function(t,n,r){var e=r(49),u=r(1);t.exports=u(function(t){return e.apply(null,[{}].concat(t))})},function(t,n,r){var e=r(2),u=r(97);t.exports=e(function(t,n,r){return u(function(n,r,e){return t(r,e)},n,r)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n<t?n:t})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)<t(n)?r:n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t%n})},function(t,n,r){var e=r(1);t.exports=e(function(t){return-t})},function(t,n,r){var e=r(79),u=r(0),o=r(3),i=r(88),c=r(62);t.exports=u(e(o(["any"],i,c)))},function(t,n,r){var e=r(1),u=r(5),o=r(23);t.exports=e(function(t){var n=t<0?1:t+1;return u(n,function(){return o(t,arguments)})})},function(t,n,r){var e=r(1),u=r(187);t.exports=e(u)},function(t,n,r){var e=r(16),u=r(0);t.exports=u(function(t,n){var r={};for(var u in n)e(u,t)||(r[u]=n[u]);return r})},function(t,n,r){var e=r(11),u=r(1);t.exports=u(function(t){var n,r=!1;return e(t.length,function(){return r?n:(r=!0,n=t.apply(this,arguments))})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return[t,n]})},function(t,n,r){var e=r(9),u=r(80);t.exports=u(e)},function(t,n,r){var e=r(9),u=r(80),o=r(31);t.exports=u(o(e))},function(t,n,r){var e=r(47),u=r(92),o=r(41);t.exports=u([e,o])},function(t,n,r){var e=r(2),u=r(10),o=r(24);t.exports=e(function(t,n,r){return u(o(t,r),n)})},function(t,n,r){var e=r(2),u=r(69),o=r(24);t.exports=e(function(t,n,r){return u(t,o(n,r))})},function(t,n,r){var e=r(2),u=r(24);t.exports=e(function(t,n,r){return n.length>0&&t(u(n,r))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r={},e=0;e<t.length;)t[e]in n&&(r[t[e]]=n[t[e]]),e+=1;return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};for(var e in n)t(n[e],e,n)&&(r[e]=n[e]);return r})},function(t,n,r){var e=r(66),u=r(42);t.exports=function(){if(0===arguments.length)throw new Error("pipeK requires at least one argument");return e.apply(this,u(arguments))}},function(t,n,r){var e=r(98),u=r(13);t.exports=u(e,1)},function(t,n,r){var e=r(36),u=r(48),o=r(103),i=r(114);t.exports=i(e,[o,u])},function(t,n,r){var e=r(2),u=r(10);t.exports=e(function(t,n,r){return u(n,r[t])})},function(t,n,r){var e=r(2),u=r(91);t.exports=e(function(t,n,r){return u(t,r[n])})},function(t,n,r){var e=r(2),u=r(6);t.exports=e(function(t,n,r){return null!=r&&u(n,r)?r[n]:t})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r[n])})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=t.length,e=[],u=0;u<r;)e[u]=n[t[u]],u+=1;return e})},function(t,n,r){var e=r(0),u=r(85);t.exports=e(function(t,n){if(!u(t)||!u(n))throw new TypeError("Both arguments to range must be numbers");for(var r=[],e=t;e<n;)r.push(e),e+=1;return r})},function(t,n,r){var e=r(32),u=r(8),o=r(15);t.exports=e(4,[],function(t,n,r,e){return u(function(r,e){return t(r,e)?n(r,e):o(r)},r,e)})},function(t,n,r){var e=r(1),u=r(15);t.exports=e(u)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=Array.prototype.slice.call(r,0);return e.splice(t,n),e})},function(t,n,r){var e=r(0),u=r(18),o=r(111);t.exports=e(function(t,n){return o(u(t),n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return r.replace(t,n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=0,u=r.length,o=[n];e<u;)n=t(n,r[e]),o[e+1]=n,e+=1;return o})},function(t,n,r){var e=r(2),u=r(18),o=r(102);t.exports=e(function(t,n,r){return o(t,u(n),r)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(t)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(function(n,r){var e=t(n),u=t(r);return e<u?-1:e>u?1:0})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(function(n,r){for(var e=0,u=0;0===e&&u<t.length;)e=t[u](n,r),u+=1;return e})})},function(t,n,r){var e=r(21);t.exports=e(1,"split")},function(t,n,r){var e=r(0),u=r(94),o=r(17);t.exports=e(function(t,n){return[o(0,t,n),o(t,u(n),n)]})},function(t,n,r){var e=r(0),u=r(17);t.exports=e(function(t,n){if(t<=0)throw new Error("First argument to splitEvery must be a positive integer");for(var r=[],e=0;e<n.length;)r.push(u(e,e+=t,n));return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=0,e=n.length,u=[];r<e&&!t(n[r]);)u.push(n[r]),r+=1;return[u,Array.prototype.slice.call(n,r)]})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Number(t)-Number(n)})},function(t,n,r){var e=r(0),u=r(46),o=r(70);t.exports=e(function(t,n){return u(o(t,n),o(n,t))})},function(t,n,r){var e=r(2),u=r(46),o=r(71);t.exports=e(function(t,n,r){return u(o(t,n,r),o(t,r,n))})},function(t,n,r){var e=r(0),u=r(73);t.exports=e(function(t,n){return u(t>=0?n.length-t:0,n)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=n.length-1;r>=0&&t(n[r]);)r-=1;return Array.prototype.slice.call(n,r+1)})},function(t,n,r){var e=r(0),u=r(3),o=r(209);t.exports=e(u(["takeWhile"],o,function(t,n){for(var r=0,e=n.length;r<e&&t(n[r]);)r+=1;return Array.prototype.slice.call(n,0,r)}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t(n),n})},function(t,n,r){var e=r(78),u=r(0),o=r(185),i=r(26);t.exports=u(function(t,n){if(!o(t))throw new TypeError("‘test’ requires a value of type RegExp as its first argument; received "+i(t));return e(t).test(n)})},function(t,n,r){var e=r(21);t.exports=e(0,"toLowerCase")},function(t,n,r){var e=r(1),u=r(6);t.exports=e(function(t){var n=[];for(var r in t)u(r,t)&&(n[n.length]=[r,t[r]]);return n})},function(t,n,r){var e=r(1);t.exports=e(function(t){var n=[];for(var r in t)n[n.length]=[r,t[r]];return n})},function(t,n,r){var e=r(21);t.exports=e(0,"toUpperCase")},function(t,n,r){var e=r(8),u=r(90),o=r(5);t.exports=o(4,function(t,n,r,o){return e(t("function"==typeof n?u(n):n),r,o)})},function(t,n,r){var e=r(1);t.exports=e(function(t){for(var n=0,r=[];n<t.length;){for(var e=t[n],u=0;u<e.length;)"undefined"==typeof r[u]&&(r[u]=[]),r[u].push(e[u]),u+=1;n+=1}return r})},function(t,n,r){var e=r(2),u=r(7),o=r(108);t.exports=e(function(t,n,r){return o(t,u(n,r))})},function(t,n,r){var e=r(1);t.exports=function(){var t="\t\n\v\f\r \u2028\u2029\ufeff",n="",r="function"==typeof String.prototype.trim;return e(r&&!t.trim()&&n.trim()?function(t){return t.trim()}:function(n){var r=new RegExp("^["+t+"]["+t+"]*"),e=new RegExp("["+t+"]["+t+"]*$");return n.replace(r,"").replace(e,"")})}()},function(t,n,r){var e=r(11),u=r(9),o=r(0);t.exports=o(function(t,n){return e(t.length,function(){try{return t.apply(this,arguments)}catch(t){return n.apply(this,u([t],arguments))}})})},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(){return t(Array.prototype.slice.call(arguments,0))}})},function(t,n,r){var e=r(1),u=r(39);t.exports=e(function(t){return u(1,t)})},function(t,n,r){var e=r(0),u=r(5);t.exports=e(function(t,n){return u(t,function(){for(var r,e=1,u=n,o=0;e<=t&&"function"==typeof u;)r=e===t?arguments.length:o+u.length,u=u.apply(this,Array.prototype.slice.call(arguments,o,r)),e+=1,o=r;return u})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=t(n),e=[];r&&r.length;)e[e.length]=r[0],r=t(r[1]);return e})},function(t,n,r){var e=r(9),u=r(0),o=r(45),i=r(56);t.exports=u(o(i,e))},function(t,n,r){var e=r(9),u=r(2),o=r(57);t.exports=u(function(t,n,r){return o(t,e(n,r))})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)?r:n(r)})},function(t,n,r){var e=r(51),u=r(44);t.exports=u(e)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r;!t(e);)e=n(e);return e})},function(t,n,r){var e=r(1);t.exports=e(function(t){var n,r=[];for(n in t)r[r.length]=t[n];return r})},function(t,n,r){var e=r(0);t.exports=function(){var t=function(t){return{value:t,map:function(){return this}}};return e(function(n,r){return n(t)(r).value})}()},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)?n(r):r})},function(t,n,r){var e=r(0),u=r(10),o=r(7),i=r(116);t.exports=e(function(t,n){return i(o(u,t),n)})},function(t,n,r){var e=r(16),u=r(0),o=r(31),i=r(41);t.exports=u(function(t,n){return i(o(e)(t),n)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r,e=0,u=t.length,o=n.length,i=[];e<u;){for(r=0;r<o;)i[i.length]=[t[e],n[r]],r+=1;e+=1}return i})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=[],e=0,u=Math.min(t.length,n.length);e<u;)r[e]=[t[e],n[e]],e+=1;return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=0,e=Math.min(t.length,n.length),u={};r<e;)u[t[r]]=n[r],r+=1;return u})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=[],u=0,o=Math.min(n.length,r.length);u<o;)e[u]=t(n[u],r[u]),u+=1;return e})},function(t,n,r){"use strict";var e=r(118),u=r(59),o=r(58),i=r(117);t.exports={isNotUndefined:e,isUndefined:u,isNull:o,isNotNull:i}}])}); | ||
!function(t,n){"object"==typeof exports&&"object"==typeof module?module.exports=n():"function"==typeof define&&define.amd?define([],n):"object"==typeof exports?exports.RA=n():t.RA=n()}(this,function(){return function(t){function n(e){if(r[e])return r[e].exports;var o=r[e]={i:e,l:!1,exports:{}};return t[e].call(o.exports,o,o.exports,n),o.l=!0,o.exports}var r={};return n.m=t,n.c=r,n.i=function(t){return t},n.d=function(t,r,e){n.o(t,r)||Object.defineProperty(t,r,{configurable:!1,enumerable:!0,get:e})},n.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(r,"a",r),r},n.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},n.p="",n(n.s=318)}([function(t,n,r){var e=r(1),o=r(34);t.exports=function(t){return function n(r,u){switch(arguments.length){case 0:return n;case 1:return o(r)?n:e(function(n){return t(r,n)});default:return o(r)&&o(u)?n:o(r)?e(function(n){return t(n,u)}):o(u)?e(function(n){return t(r,n)}):t(r,u)}}}},function(t,n,r){var e=r(34);t.exports=function(t){return function n(r){return 0===arguments.length||e(r)?n:t.apply(this,arguments)}}},function(t,n,r){var e=r(1),o=r(0),u=r(34);t.exports=function(t){return function n(r,i,c){switch(arguments.length){case 0:return n;case 1:return u(r)?n:o(function(n,e){return t(r,n,e)});case 2:return u(r)&&u(i)?n:u(r)?o(function(n,r){return t(n,i,r)}):u(i)?o(function(n,e){return t(r,n,e)}):e(function(n){return t(r,i,n)});default:return u(r)&&u(i)&&u(c)?n:u(r)&&u(i)?o(function(n,r){return t(n,r,c)}):u(r)&&u(c)?o(function(n,r){return t(n,i,r)}):u(i)&&u(c)?o(function(n,e){return t(r,n,e)}):u(r)?e(function(n){return t(n,i,c)}):u(i)?e(function(n){return t(r,n,c)}):u(c)?e(function(n){return t(r,i,n)}):t(r,i,c)}}}},function(t,n,r){var e=r(14),o=r(52);t.exports=function(t,n,r){return function(){if(0===arguments.length)return r();var u=Array.prototype.slice.call(arguments,0),i=u.pop();if(!e(i)){for(var c=0;c<t.length;){if("function"==typeof i[t[c]])return i[t[c]].apply(i,u);c+=1}if(o(i)){var s=n.apply(null,u);return s(i)}}return r.apply(this,arguments)}}},function(t,n){t.exports={init:function(){return this.xf["@@transducer/init"]()},result:function(t){return this.xf["@@transducer/result"](t)}}},function(t,n,r){var e=r(11),o=r(1),u=r(0),i=r(32);t.exports=u(function(t,n){return 1===t?o(n):e(t,i(t,[],n))})},function(t,n){t.exports=function(t,n){return Object.prototype.hasOwnProperty.call(n,t)}},function(t,n,r){var e=r(0),o=r(3),u=r(36),i=r(8),c=r(211),s=r(5),f=r(12);t.exports=e(o(["map"],c,function(t,n){switch(Object.prototype.toString.call(n)){case"[object Function]":return s(n.length,function(){return t.call(this,n.apply(this,arguments))});case"[object Object]":return i(function(r,e){return r[e]=t(n[e]),r},{},f(n));default:return u(t,n)}}))},function(t,n,r){var e=r(92),o=r(67),u=r(23);t.exports=function(){function t(t,n,r){for(var e=0,o=r.length;e<o;){if(n=t["@@transducer/step"](n,r[e]),n&&n["@@transducer/reduced"]){n=n["@@transducer/value"];break}e+=1}return t["@@transducer/result"](n)}function n(t,n,r){for(var e=r.next();!e.done;){if(n=t["@@transducer/step"](n,e.value),n&&n["@@transducer/reduced"]){n=n["@@transducer/value"];break}e=r.next()}return t["@@transducer/result"](n)}function r(t,n,r){return t["@@transducer/result"](r.reduce(o(t["@@transducer/step"],t),n))}var i="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";return function(o,c,s){if("function"==typeof o&&(o=e(o)),u(s))return t(o,c,s);if("function"==typeof s.reduce)return r(o,c,s);if(null!=s[i])return n(o,c,s[i]());if("function"==typeof s.next)return n(o,c,s);throw new TypeError("reduce: list must be array or iterable")}}()},function(t,n){t.exports=function(t,n){t=t||[],n=n||[];var r,e=t.length,o=n.length,u=[];for(r=0;r<e;)u[u.length]=t[r],r+=1;for(r=0;r<o;)u[u.length]=n[r],r+=1;return u}},function(t,n,r){var e=r(0),o=r(186);t.exports=e(function(t,n){return o(t,n,[],[])})},function(t,n){t.exports=function(t,n){switch(t){case 0:return function(){return n.apply(this,arguments)};case 1:return function(t){return n.apply(this,arguments)};case 2:return function(t,r){return n.apply(this,arguments)};case 3:return function(t,r,e){return n.apply(this,arguments)};case 4:return function(t,r,e,o){return n.apply(this,arguments)};case 5:return function(t,r,e,o,u){return n.apply(this,arguments)};case 6:return function(t,r,e,o,u,i){return n.apply(this,arguments)};case 7:return function(t,r,e,o,u,i,c){return n.apply(this,arguments)};case 8:return function(t,r,e,o,u,i,c,s){return n.apply(this,arguments)};case 9:return function(t,r,e,o,u,i,c,s,f){return n.apply(this,arguments)};case 10:return function(t,r,e,o,u,i,c,s,f,a){return n.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}},function(t,n,r){var e=r(1),o=r(6),u=r(85);t.exports=function(){var t=!{toString:null}.propertyIsEnumerable("toString"),n=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],r=function(){"use strict";return arguments.propertyIsEnumerable("length")}(),i=function(t,n){for(var r=0;r<t.length;){if(t[r]===n)return!0;r+=1}return!1};return e("function"!=typeof Object.keys||r?function(e){if(Object(e)!==e)return[];var c,s,f=[],a=r&&u(e);for(c in e)!o(c,e)||a&&"length"===c||(f[f.length]=c);if(t)for(s=n.length-1;s>=0;)c=n[s],o(c,e)&&!i(f,c)&&(f[f.length]=c),s-=1;return f}:function(t){return Object(t)!==t?[]:Object.keys(t)})}()},function(t,n,r){var e=r(2),o=r(8);t.exports=e(o)},function(t,n){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,n,r){t.exports={F:r(124),T:r(125),__:r(126),add:r(28),addIndex:r(127),adjust:r(62),all:r(128),allPass:r(129),always:r(19),and:r(63),any:r(64),anyPass:r(130),ap:r(43),aperture:r(131),append:r(132),apply:r(65),applySpec:r(133),ascend:r(134),assoc:r(29),assocPath:r(66),binary:r(135),bind:r(67),both:r(136),call:r(137),chain:r(44),clamp:r(138),clone:r(139),comparator:r(140),complement:r(141),compose:r(45),composeK:r(68),composeP:r(142),concat:r(46),cond:r(143),construct:r(144),constructN:r(69),contains:r(145),converge:r(70),countBy:r(146),curry:r(30),curryN:r(5),dec:r(147),descend:r(148),defaultTo:r(71),difference:r(72),differenceWith:r(73),dissoc:r(74),dissocPath:r(149),divide:r(150),drop:r(75),dropLast:r(151),dropLastWhile:r(152),dropRepeats:r(153),dropRepeatsWith:r(76),dropWhile:r(154),either:r(155),empty:r(77),eqBy:r(156),eqProps:r(157),equals:r(10),evolve:r(158),filter:r(47),find:r(159),findIndex:r(160),findLast:r(161),findLastIndex:r(162),flatten:r(163),flip:r(31),forEach:r(164),forEachObjIndexed:r(165),fromPairs:r(166),groupBy:r(167),groupWith:r(168),gt:r(169),gte:r(170),has:r(171),hasIn:r(172),head:r(173),identical:r(78),identity:r(48),ifElse:r(174),inc:r(175),indexBy:r(176),indexOf:r(177),init:r(178),insert:r(179),insertAll:r(180),intersection:r(215),intersectionWith:r(216),intersperse:r(217),into:r(218),invert:r(219),invertObj:r(220),invoker:r(22),is:r(93),isArrayLike:r(23),isEmpty:r(221),isNil:r(222),join:r(223),juxt:r(94),keys:r(12),keysIn:r(224),last:r(95),lastIndexOf:r(225),length:r(96),lens:r(37),lensIndex:r(226),lensPath:r(227),lensProp:r(228),lift:r(38),liftN:r(97),lt:r(229),lte:r(230),map:r(7),mapAccum:r(231),mapAccumRight:r(232),mapObjIndexed:r(233),match:r(234),mathMod:r(235),max:r(20),maxBy:r(236),mean:r(98),median:r(237),memoize:r(238),merge:r(239),mergeAll:r(240),mergeWith:r(241),mergeWithKey:r(99),min:r(242),minBy:r(243),modulo:r(244),multiply:r(100),nAry:r(39),negate:r(245),none:r(246),not:r(101),nth:r(24),nthArg:r(247),objOf:r(102),of:r(248),omit:r(249),once:r(250),or:r(103),over:r(104),pair:r(251),partial:r(252),partialRight:r(253),partition:r(254),path:r(25),pathEq:r(255),pathOr:r(256),pathSatisfies:r(257),pick:r(258),pickAll:r(105),pickBy:r(259),pipe:r(106),pipeK:r(260),pipeP:r(107),pluck:r(26),prepend:r(108),product:r(261),project:r(262),prop:r(53),propEq:r(263),propIs:r(264),propOr:r(265),propSatisfies:r(266),props:r(267),range:r(268),reduce:r(13),reduceBy:r(40),reduceRight:r(109),reduceWhile:r(269),reduced:r(270),reject:r(41),remove:r(271),repeat:r(272),replace:r(273),reverse:r(42),scan:r(274),sequence:r(110),set:r(275),slice:r(18),sort:r(276),sortBy:r(277),sortWith:r(278),split:r(279),splitAt:r(280),splitEvery:r(281),splitWhen:r(282),subtract:r(283),sum:r(111),symmetricDifference:r(284),symmetricDifferenceWith:r(285),tail:r(54),take:r(112),takeLast:r(286),takeLastWhile:r(287),takeWhile:r(288),tap:r(289),test:r(290),times:r(113),toLower:r(291),toPairs:r(292),toPairsIn:r(293),toString:r(27),toUpper:r(294),transduce:r(295),transpose:r(296),traverse:r(297),trim:r(298),tryCatch:r(299),type:r(55),unapply:r(300),unary:r(301),uncurryN:r(302),unfold:r(303),union:r(304),unionWith:r(305),uniq:r(56),uniqBy:r(114),uniqWith:r(57),unless:r(306),unnest:r(307),until:r(308),update:r(115),useWith:r(116),values:r(117),valuesIn:r(309),view:r(310),when:r(311),where:r(118),whereEq:r(312),without:r(313),xprod:r(314),zip:r(315),zipObj:r(316),zipWith:r(317)}},function(t,n){t.exports=function(t){return t&&t["@@transducer/reduced"]?t:{"@@transducer/value":t,"@@transducer/reduced":!0}}},function(t,n,r){var e=r(84);t.exports=function(t,n){return e(n,t,0)>=0}},function(t,n,r){var e=r(21),o=r(2);t.exports=o(e("slice",function(t,n,r){return Array.prototype.slice.call(r,t,n)}))},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(){return t}})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n>t?n:t})},function(t,n,r){var e=r(14);t.exports=function(t,n){return function(){var r=arguments.length;if(0===r)return n();var o=arguments[r-1];return e(o)||"function"!=typeof o[t]?n.apply(this,arguments):o[t].apply(o,Array.prototype.slice.call(arguments,0,r-1))}}},function(t,n,r){var e=r(0),o=r(33),u=r(5),i=r(27);t.exports=e(function(t,n){return u(t+1,function(){var r=arguments[t];if(null!=r&&o(r[n]))return r[n].apply(r,Array.prototype.slice.call(arguments,0,t));throw new TypeError(i(r)+' does not have a method named "'+n+'"')})})},function(t,n,r){var e=r(1),o=r(14),u=r(35);t.exports=e(function(t){return!!o(t)||!!t&&("object"==typeof t&&(!u(t)&&(1===t.nodeType?!!t.length:0===t.length||t.length>0&&(t.hasOwnProperty(0)&&t.hasOwnProperty(t.length-1)))))})},function(t,n,r){var e=r(0),o=r(35);t.exports=e(function(t,n){var r=t<0?n.length+t:t;return o(n)?n.charAt(r):n[r]})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=n,e=0;e<t.length;){if(null==r)return;r=r[t[e]],e+=1}return r})},function(t,n,r){var e=r(0),o=r(7),u=r(53);t.exports=e(function(t,n){return o(u(t),n)})},function(t,n,r){var e=r(1),o=r(198);t.exports=e(function(t){return o(t,[])})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Number(t)+Number(n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e={};for(var o in r)e[o]=r[o];return e[t]=n,e})},function(t,n,r){var e=r(1),o=r(5);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(1),o=r(30);t.exports=e(function(t){return o(function(n,r){var e=Array.prototype.slice.call(arguments,0);return e[0]=r,e[1]=n,t.apply(this,e)})})},function(t,n,r){var e=r(11),o=r(34);t.exports=function t(n,r,u){return function(){for(var i=[],c=0,s=n,f=0;f<r.length||c<arguments.length;){var a;f<r.length&&(!o(r[f])||c>=arguments.length)?a=r[f]:(a=arguments[c],c+=1),i[f]=a,o(a)||(s-=1),f+=1}return s<=0?u.apply(this,i):e(s,t(n,i,u))}}},function(t,n){t.exports=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return null!=t&&"object"==typeof t&&t["@@functional/placeholder"]===!0}},function(t,n){t.exports=function(t){return"[object String]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length,o=Array(e);r<e;)o[r]=t(n[r]),r+=1;return o}},function(t,n,r){var e=r(0),o=r(7);t.exports=e(function(t,n){return function(r){return function(e){return o(function(t){return n(t,e)},r(t(e)))}}})},function(t,n,r){var e=r(1),o=r(97);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){switch(t){case 0:return function(){return n.call(this)};case 1:return function(t){return n.call(this,t)};case 2:return function(t,r){return n.call(this,t,r)};case 3:return function(t,r,e){return n.call(this,t,r,e)};case 4:return function(t,r,e,o){return n.call(this,t,r,e,o)};case 5:return function(t,r,e,o,u){return n.call(this,t,r,e,o,u)};case 6:return function(t,r,e,o,u,i){return n.call(this,t,r,e,o,u,i)};case 7:return function(t,r,e,o,u,i,c){return n.call(this,t,r,e,o,u,i,c)};case 8:return function(t,r,e,o,u,i,c,s){return n.call(this,t,r,e,o,u,i,c,s)};case 9:return function(t,r,e,o,u,i,c,s,f){return n.call(this,t,r,e,o,u,i,c,s,f)};case 10:return function(t,r,e,o,u,i,c,s,f,a){return n.call(this,t,r,e,o,u,i,c,s,f,a)};default:throw new Error("First argument to nAry must be a non-negative integer no greater than ten")}})},function(t,n,r){var e=r(32),o=r(3),u=r(6),i=r(8),c=r(212);t.exports=e(4,[],o([],c,function(t,n,r,e){return i(function(e,o){var i=r(o);return e[i]=t(u(i,e)?e[i]:n,o),e},{},e)}))},function(t,n,r){var e=r(81),o=r(0),u=r(47);t.exports=o(function(t,n){return u(e(t),n)})},function(t,n,r){var e=r(1),o=r(35);t.exports=e(function(t){return o(t)?t.split("").reverse().join(""):Array.prototype.slice.call(t,0).reverse()})},function(t,n,r){var e=r(9),o=r(0),u=r(8),i=r(7);t.exports=o(function(t,n){return"function"==typeof t.ap?t.ap(n):"function"==typeof t?function(r){return t(r)(n(r))}:u(function(t,r){return e(t,i(r,n))},[],t)})},function(t,n,r){var e=r(0),o=r(3),u=r(89),i=r(201),c=r(7);t.exports=e(o(["chain"],i,function(t,n){return"function"==typeof n?function(r){return t(n(r))(r)}:u(!1)(c(t,n))}))},function(t,n,r){var e=r(106),o=r(42);t.exports=function(){if(0===arguments.length)throw new Error("compose requires at least one argument");return e.apply(this,o(arguments))}},function(t,n,r){var e=r(0),o=r(14),u=r(33),i=r(27);t.exports=e(function(t,n){if(null==t||!u(t.concat))throw new TypeError(i(t)+' does not have a method named "concat"');if(o(t)&&!o(n))throw new TypeError(i(n)+" is not an array");return t.concat(n)})},function(t,n,r){var e=r(0),o=r(3),u=r(83),i=r(88),c=r(8),s=r(206),f=r(12);t.exports=e(o(["filter"],s,function(t,n){return i(n)?c(function(r,e){return t(n[e])&&(r[e]=n[e]),r},{},f(n)):u(t,n)}))},function(t,n,r){var e=r(1),o=r(51);t.exports=e(o)},function(t,n,r){var e=r(191);t.exports="function"==typeof Object.assign?Object.assign:e},function(t,n){t.exports=function(t,n,r){for(var e=0,o=r.length;e<o;){if(t(n,r[e]))return!0;e+=1}return!1}},function(t,n){t.exports=function(t){return t}},function(t,n){t.exports=function(t){return"function"==typeof t["@@transducer/step"]}},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n[t]})},function(t,n,r){var e=r(21),o=r(1),u=r(18);t.exports=o(e("tail",u(1,1/0)))},function(t,n,r){var e=r(1);t.exports=e(function(t){return null===t?"Null":void 0===t?"Undefined":Object.prototype.toString.call(t).slice(8,-1)})},function(t,n,r){var e=r(48),o=r(114);t.exports=o(e)},function(t,n,r){var e=r(50),o=r(0);t.exports=o(function(t,n){for(var r,o=0,u=n.length,i=[];o<u;)r=n[o],e(t,r,i)||(i[i.length]=r),o+=1;return i})},function(t,n,r){"use strict";var e=r(14);t.exports=e},function(t,n,r){"use strict";var e=r(15),o=e.is;t.exports=o(Boolean)},function(t,n,r){"use strict";var e=r(15),o=e.equals;t.exports=o(null)},function(t,n,r){"use strict";var e=r(15),o=e.equals;t.exports=o(void 0)},function(t,n,r){var e=r(9),o=r(2);t.exports=o(function(t,n,r){if(n>=r.length||n<-r.length)return r;var o=n<0?r.length:0,u=o+n,i=e(r);return i[u]=t(r[u]),i})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t&&n})},function(t,n,r){var e=r(0),o=r(3),u=r(90);t.exports=e(o(["any"],u,function(t,n){for(var r=0;r<n.length;){if(t(n[r]))return!0;r+=1}return!1}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t.apply(this,n)})},function(t,n,r){var e=r(2),o=r(6),u=r(14),i=r(86),c=r(29);t.exports=e(function t(n,r,e){if(0===n.length)return r;var s=n[0];if(n.length>1){var f=o(s,e)?e[s]:i(n[1])?[]:{};r=t(Array.prototype.slice.call(n,1),r,f)}if(i(s)&&u(e)){var a=[].concat(e);return a[s]=r,a}return c(s,r,e)})},function(t,n,r){var e=r(11),o=r(0);t.exports=o(function(t,n){return e(t.length,function(){return t.apply(n,arguments)})})},function(t,n,r){var e=r(44),o=r(45),u=r(7);t.exports=function(){if(0===arguments.length)throw new Error("composeK requires at least one argument");var t=Array.prototype.slice.call(arguments),n=t.pop();return o(o.apply(this,u(e,t)),n)}},function(t,n,r){var e=r(0),o=r(30),u=r(39);t.exports=e(function(t,n){if(t>10)throw new Error("Constructor with greater than ten arguments");return 0===t?function(){return new n}:o(u(t,function(t,r,e,o,u,i,c,s,f,a){switch(arguments.length){case 1:return new n(t);case 2:return new n(t,r);case 3:return new n(t,r,e);case 4:return new n(t,r,e,o);case 5:return new n(t,r,e,o,u);case 6:return new n(t,r,e,o,u,i);case 7:return new n(t,r,e,o,u,i,c);case 8:return new n(t,r,e,o,u,i,c,s);case 9:return new n(t,r,e,o,u,i,c,s,f);case 10:return new n(t,r,e,o,u,i,c,s,f,a)}}))})},function(t,n,r){var e=r(0),o=r(36),u=r(5),i=r(20),c=r(26),s=r(13);t.exports=e(function(t,n){return u(s(i,0,c("length",n)),function(){var r=arguments,e=this;return t.apply(e,o(function(t){return t.apply(e,r)},n))})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return null==n||n!==n?t:n})},function(t,n,r){var e=r(17),o=r(0);t.exports=o(function(t,n){for(var r=[],o=0,u=t.length;o<u;)e(t[o],n)||e(t[o],r)||(r[r.length]=t[o]),o+=1;return r})},function(t,n,r){var e=r(50),o=r(2);t.exports=o(function(t,n,r){for(var o=[],u=0,i=n.length;u<i;)e(t,n[u],r)||e(t,n[u],o)||o.push(n[u]),u+=1;return o})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};for(var e in n)r[e]=n[e];return delete r[t],r})},function(t,n,r){var e=r(0),o=r(3),u=r(202),i=r(18);t.exports=e(o(["drop"],u,function(t,n){return i(Math.max(0,t),1/0,n)}))},function(t,n,r){var e=r(0),o=r(3),u=r(91),i=r(95);t.exports=e(o([],u,function(t,n){var r=[],e=1,o=n.length;if(0!==o)for(r[0]=n[0];e<o;)t(i(r),n[e])||(r[r.length]=n[e]),e+=1;return r}))},function(t,n,r){var e=r(1),o=r(85),u=r(14),i=r(88),c=r(35);t.exports=e(function(t){return null!=t&&"function"==typeof t.empty?t.empty():null!=t&&null!=t.constructor&&"function"==typeof t.constructor.empty?t.constructor.empty():u(t)?[]:c(t)?"":i(t)?{}:o(t)?function(){return arguments}():void 0})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t===n?0!==t||1/t===1/n:t!==t&&n!==n})},function(t,n,r){var e=r(80),o=r(55);t.exports=function t(n,r,u,i){var c=function(e){for(var o=r.length,c=0;c<o;){if(n===r[c])return u[c];c+=1}r[c+1]=n,u[c+1]=e;for(var s in n)e[s]=i?t(n[s],r,u,!0):n[s];return e};switch(o(n)){case"Object":return c({});case"Array":return c([]);case"Date":return new Date(n.valueOf());case"RegExp":return e(n);default:return n}}},function(t,n){t.exports=function(t){return new RegExp(t.source,(t.global?"g":"")+(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.sticky?"y":"")+(t.unicode?"u":""))}},function(t,n){t.exports=function(t){return function(){return!t.apply(this,arguments)}}},function(t,n,r){var e=r(11),o=r(0);t.exports=function(t){return o(function(n,r){return e(Math.max(0,n.length-r.length),function(){return n.apply(this,t(r,arguments))})})}},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length,o=[];r<e;)t(n[r])&&(o[o.length]=n[r]),r+=1;return o}},function(t,n,r){var e=r(10);t.exports=function(t,n,r){var o,u;if("function"==typeof t.indexOf)switch(typeof n){case"number":if(0===n){for(o=1/n;r<t.length;){if(u=t[r],0===u&&1/u===o)return r;r+=1}return-1}if(n!==n){for(;r<t.length;){if(u=t[r],"number"==typeof u&&u!==u)return r;r+=1}return-1}return t.indexOf(n,r);case"string":case"boolean":case"function":case"undefined":return t.indexOf(n,r);case"object":if(null===n)return t.indexOf(n,r)}for(;r<t.length;){if(e(t[r],n))return r;r+=1}return-1}},function(t,n,r){var e=r(6);t.exports=function(){var t=Object.prototype.toString;return"[object Arguments]"===t.call(arguments)?function(n){return"[object Arguments]"===t.call(n)}:function(t){return e("callee",t)}}()},function(t,n){t.exports=Number.isInteger||function(t){return t<<0===t}},function(t,n){t.exports=function(t){return"[object Number]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},function(t,n,r){var e=r(23);t.exports=function(t){return function n(r){for(var o,u,i,c=[],s=0,f=r.length;s<f;){if(e(r[s]))for(o=t?n(r[s]):r[s],i=0,u=o.length;i<u;)c[c.length]=o[i],i+=1;else c[c.length]=r[s];s+=1}return c}}},function(t,n,r){var e=r(0),o=r(16),u=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.any=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.any||(t=this.xf["@@transducer/step"](t,!1)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.any=!0,t=o(this.xf["@@transducer/step"](t,!0))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(4);t.exports=function(){function t(t,n){this.xf=n,this.pred=t,this.lastValue=void 0,this.seenFirstValue=!1}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){var r=!1;return this.seenFirstValue?this.pred(this.lastValue,n)&&(r=!0):this.seenFirstValue=!0,this.lastValue=n,r?t:this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n){t.exports=function(){function t(t){this.f=t}return t.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},t.prototype["@@transducer/result"]=function(t){return t},t.prototype["@@transducer/step"]=function(t,n){return this.f(t,n)},function(n){return new t(n)}}()},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return null!=n&&n.constructor===t||n instanceof t})},function(t,n,r){var e=r(1),o=r(70);t.exports=e(function(t){return o(function(){return Array.prototype.slice.call(arguments,0)},t)})},function(t,n,r){var e=r(24);t.exports=e(-1)},function(t,n,r){var e=r(1),o=r(87);t.exports=e(function(t){return null!=t&&o(t.length)?t.length:NaN})},function(t,n,r){var e=r(0),o=r(8),u=r(43),i=r(5),c=r(7);t.exports=e(function(t,n){var r=i(t,n);return i(t,function(){return o(u,c(r,arguments[0]),Array.prototype.slice.call(arguments,1))})})},function(t,n,r){var e=r(1),o=r(111);t.exports=e(function(t){return o(t)/t.length})},function(t,n,r){var e=r(2),o=r(6);t.exports=e(function(t,n,r){var e,u={};for(e in n)o(e,n)&&(u[e]=o(e,r)?t(e,n[e],r[e]):n[e]);for(e in r)o(e,r)&&!o(e,u)&&(u[e]=r[e]);return u})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t*n})},function(t,n,r){var e=r(1);t.exports=e(function(t){return!t})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};return r[t]=n,r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t||n})},function(t,n,r){var e=r(2);t.exports=function(){var t=function(n){return{value:n,map:function(r){return t(r(n))}}};return e(function(n,r,e){return n(function(n){return t(r(n))})(e).value})}()},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r={},e=0,o=t.length;e<o;){var u=t[e];r[u]=n[u],e+=1}return r})},function(t,n,r){var e=r(11),o=r(193),u=r(13),i=r(54);t.exports=function(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return e(arguments[0].length,u(o,arguments[0],i(arguments)))}},function(t,n,r){var e=r(11),o=r(194),u=r(13),i=r(54);t.exports=function(){if(0===arguments.length)throw new Error("pipeP requires at least one argument");return e(arguments[0].length,u(o,arguments[0],i(arguments)))}},function(t,n,r){var e=r(9),o=r(0);t.exports=o(function(t,n){return e([t],n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r.length-1;e>=0;)n=t(r[e],n),e-=1;return n})},function(t,n,r){var e=r(0),o=r(43),u=r(7),i=r(108),c=r(109);t.exports=e(function(t,n){return"function"==typeof n.sequence?n.sequence(t):c(function(t,n){return o(u(i,t),n)},t([]),n)})},function(t,n,r){var e=r(28),o=r(13);t.exports=o(e,0)},function(t,n,r){var e=r(0),o=r(3),u=r(213),i=r(18);t.exports=e(o(["take"],u,function(t,n){return i(0,t<0?1/0:t,n)}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r,e=Number(n),o=0;if(e<0||isNaN(e))throw new RangeError("n must be a non-negative number");for(r=new Array(e);o<e;)r[o]=t(o),o+=1;return r})},function(t,n,r){var e=r(181),o=r(0);t.exports=o(function(t,n){for(var r,o,u=new e,i=[],c=0;c<n.length;)o=n[c],r=t(o),u.add(r)&&i.push(o),c+=1;return i})},function(t,n,r){var e=r(2),o=r(62),u=r(19);t.exports=e(function(t,n,r){return o(u(n),t,r)})},function(t,n,r){var e=r(0),o=r(5);t.exports=e(function(t,n){return o(n.length,function(){for(var r=[],e=0;e<n.length;)r.push(n[e].call(this,arguments[e])),e+=1;return t.apply(this,r.concat(Array.prototype.slice.call(arguments,n.length)))})})},function(t,n,r){var e=r(1),o=r(12);t.exports=e(function(t){for(var n=o(t),r=n.length,e=[],u=0;u<r;)e[u]=t[n[u]],u+=1;return e})},function(t,n,r){var e=r(0),o=r(6);t.exports=e(function(t,n){for(var r in t)if(o(r,t)&&!t[r](n[r]))return!1;return!0})},function(t,n,r){"use strict";var e=r(15),o=e.complement,u=r(58);t.exports=o(u)},function(t,n,r){"use strict";var e=r(15),o=e.complement,u=r(59);t.exports=o(u)},function(t,n,r){"use strict";var e=r(15),o=e.isNil,u=e.complement;t.exports=u(o)},function(t,n,r){"use strict";var e=r(15),o=e.complement,u=r(60),i=o(u);t.exports=i},function(t,n,r){"use strict";var e=r(15),o=e.complement,u=r(61);t.exports=o(u)},function(t,n,r){var e=r(19);t.exports=e(!1)},function(t,n,r){var e=r(19);t.exports=e(!0)},function(t,n){t.exports={"@@functional/placeholder":!0}},function(t,n,r){var e=r(9),o=r(1),u=r(5);t.exports=o(function(t){return u(t.length,function(){var n=0,r=arguments[0],o=arguments[arguments.length-1],u=Array.prototype.slice.call(arguments,0);return u[0]=function(){var t=r.apply(this,e(arguments,[n,o]));return n+=1,t},t.apply(this,u)})})},function(t,n,r){var e=r(0),o=r(3),u=r(199);t.exports=e(o(["all"],u,function(t,n){for(var r=0;r<n.length;){if(!t(n[r]))return!1;r+=1}return!0}))},function(t,n,r){var e=r(1),o=r(5),u=r(20),i=r(26),c=r(13);t.exports=e(function(t){return o(c(u,0,i("length",t)),function(){for(var n=0,r=t.length;n<r;){if(!t[n].apply(this,arguments))return!1;n+=1}return!0})})},function(t,n,r){var e=r(1),o=r(5),u=r(20),i=r(26),c=r(13);t.exports=e(function(t){return o(c(u,0,i("length",t)),function(){for(var n=0,r=t.length;n<r;){if(t[n].apply(this,arguments))return!0;n+=1}return!1})})},function(t,n,r){var e=r(182),o=r(0),u=r(3),i=r(200);t.exports=o(u([],i,e))},function(t,n,r){var e=r(9),o=r(0);t.exports=o(function(t,n){return e(n,[t])})},function(t,n,r){var e=r(1),o=r(65),u=r(5),i=r(7),c=r(20),s=r(26),f=r(13),a=r(117);t.exports=e(function t(n){return n=i(function(n){return"function"==typeof n?n:t(n)},n),u(f(c,0,s("length",a(n))),function(){var t=arguments;return i(function(n){return o(n,t)},n)})})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=t(n),o=t(r);return e<o?-1:e>o?1:0})},function(t,n,r){var e=r(1),o=r(39);t.exports=e(function(t){return o(2,t)})},function(t,n,r){var e=r(0),o=r(33),u=r(63),i=r(38);t.exports=e(function(t,n){return o(t)?function(){return t.apply(this,arguments)&&n.apply(this,arguments)}:i(u)(t,n)})},function(t,n,r){var e=r(30);t.exports=e(function(t){return t.apply(this,Array.prototype.slice.call(arguments,1))})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){if(t>n)throw new Error("min must not be greater than max in clamp(min, max, value)");return r<t?t:r>n?n:r})},function(t,n,r){var e=r(79),o=r(1);t.exports=o(function(t){return null!=t&&"function"==typeof t.clone?t.clone():e(t,[],[],!0)})},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(n,r){return t(n,r)?-1:t(r,n)?1:0}})},function(t,n,r){var e=r(38),o=r(101);t.exports=e(o)},function(t,n,r){var e=r(107),o=r(42);t.exports=function(){if(0===arguments.length)throw new Error("composeP requires at least one argument");return e.apply(this,o(arguments))}},function(t,n,r){var e=r(11),o=r(1),u=r(7),i=r(20),c=r(13);t.exports=o(function(t){var n=c(i,0,u(function(t){return t[0].length},t));return e(n,function(){for(var n=0;n<t.length;){if(t[n][0].apply(this,arguments))return t[n][1].apply(this,arguments);n+=1}})})},function(t,n,r){var e=r(1),o=r(69);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(17),o=r(0);t.exports=o(e)},function(t,n,r){var e=r(40);t.exports=e(function(t,n){return t+1},0)},function(t,n,r){var e=r(28);t.exports=e(-1)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=t(n),o=t(r);return e>o?-1:e<o?1:0})},function(t,n,r){var e=r(0),o=r(29),u=r(74);t.exports=e(function t(n,r){switch(n.length){case 0:return r;case 1:return u(n[0],r);default:var e=n[0],i=Array.prototype.slice.call(n,1);return null==r[e]?r:o(e,t(i,r[e]),r)}})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t/n})},function(t,n,r){var e=r(0),o=r(3),u=r(184),i=r(203);t.exports=e(o([],i,u))},function(t,n,r){var e=r(0),o=r(3),u=r(185),i=r(204);t.exports=e(o([],i,u))},function(t,n,r){var e=r(1),o=r(3),u=r(91),i=r(76),c=r(10);t.exports=e(o([],u(c),i(c)))},function(t,n,r){var e=r(0),o=r(3),u=r(205);t.exports=e(o(["dropWhile"],u,function(t,n){for(var r=0,e=n.length;r<e&&t(n[r]);)r+=1;return Array.prototype.slice.call(n,r)}))},function(t,n,r){var e=r(0),o=r(33),u=r(38),i=r(103);t.exports=e(function(t,n){return o(t)?function(){return t.apply(this,arguments)||n.apply(this,arguments)}:u(i)(t,n)})},function(t,n,r){var e=r(2),o=r(10);t.exports=e(function(t,n,r){return o(t(n),t(r))})},function(t,n,r){var e=r(2),o=r(10);t.exports=e(function(t,n,r){return o(n[t],r[t])})},function(t,n,r){var e=r(0);t.exports=e(function t(n,r){var e,o,u,i={};for(o in r)e=n[o],u=typeof e,i[o]="function"===u?e(r[o]):e&&"object"===u?t(e,r[o]):r[o];return i})},function(t,n,r){var e=r(0),o=r(3),u=r(207);t.exports=e(o(["find"],u,function(t,n){for(var r=0,e=n.length;r<e;){if(t(n[r]))return n[r];r+=1}}))},function(t,n,r){var e=r(0),o=r(3),u=r(208);t.exports=e(o([],u,function(t,n){for(var r=0,e=n.length;r<e;){if(t(n[r]))return r;r+=1}return-1}))},function(t,n,r){var e=r(0),o=r(3),u=r(209);t.exports=e(o([],u,function(t,n){for(var r=n.length-1;r>=0;){if(t(n[r]))return n[r];r-=1}}))},function(t,n,r){var e=r(0),o=r(3),u=r(210);t.exports=e(o([],u,function(t,n){for(var r=n.length-1;r>=0;){if(t(n[r]))return r;r-=1}return-1}))},function(t,n,r){var e=r(1),o=r(89);t.exports=e(o(!0))},function(t,n,r){var e=r(21),o=r(0);t.exports=o(e("forEach",function(t,n){for(var r=n.length,e=0;e<r;)t(n[e]),e+=1;return n}))},function(t,n,r){var e=r(0),o=r(12);t.exports=e(function(t,n){for(var r=o(n),e=0;e<r.length;){var u=r[e];t(n[u],u,n),e+=1}return n})},function(t,n,r){var e=r(1);t.exports=e(function(t){for(var n={},r=0;r<t.length;)n[t[r][0]]=t[r][1],r+=1;return n})},function(t,n,r){var e=r(21),o=r(0),u=r(40);t.exports=o(e("groupBy",u(function(t,n){return null==t&&(t=[]),t.push(n),t},null)))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=[],e=0,o=n.length;e<o;){for(var u=e+1;u<o&&t(n[e],n[u]);)u+=1;r.push(n.slice(e,u)),e=u}return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t>n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t>=n})},function(t,n,r){var e=r(0),o=r(6);t.exports=e(o)},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t in n})},function(t,n,r){var e=r(24);t.exports=e(0)},function(t,n,r){var e=r(2),o=r(5);t.exports=e(function(t,n,r){return o(Math.max(t.length,n.length,r.length),function(){return t.apply(this,arguments)?n.apply(this,arguments):r.apply(this,arguments)})})},function(t,n,r){var e=r(28);t.exports=e(1)},function(t,n,r){var e=r(40);t.exports=e(function(t,n){return n},null)},function(t,n,r){var e=r(0),o=r(84),u=r(14);t.exports=e(function(t,n){ | ||
return"function"!=typeof n.indexOf||u(n)?o(n,t,0):n.indexOf(t)})},function(t,n,r){var e=r(18);t.exports=e(0,-1)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){t=t<r.length&&t>=0?t:r.length;var e=Array.prototype.slice.call(r,0);return e.splice(t,0,n),e})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t=t<r.length&&t>=0?t:r.length,[].concat(Array.prototype.slice.call(r,0,t),n,Array.prototype.slice.call(r,t))})},function(t,n,r){var e=r(17);t.exports=function(){function t(){this._nativeSet="function"==typeof Set?new Set:null,this._items={}}function n(t,n,r){var o,u,i=typeof t;switch(i){case"string":case"number":return 0===t&&1/t===-(1/0)?!!r._items["-0"]||(n&&(r._items["-0"]=!0),!1):null!==r._nativeSet?n?(o=r._nativeSet.size,r._nativeSet.add(t),u=r._nativeSet.size,u===o):r._nativeSet.has(t):i in r._items?t in r._items[i]||(n&&(r._items[i][t]=!0),!1):(n&&(r._items[i]={},r._items[i][t]=!0),!1);case"boolean":if(i in r._items){var c=t?1:0;return!!r._items[i][c]||(n&&(r._items[i][c]=!0),!1)}return n&&(r._items[i]=t?[!1,!0]:[!0,!1]),!1;case"function":return null!==r._nativeSet?n?(o=r._nativeSet.size,r._nativeSet.add(t),u=r._nativeSet.size,u===o):r._nativeSet.has(t):i in r._items?!!e(t,r._items[i])||(n&&r._items[i].push(t),!1):(n&&(r._items[i]=[t]),!1);case"undefined":return!!r._items[i]||(n&&(r._items[i]=!0),!1);case"object":if(null===t)return!!r._items.null||(n&&(r._items.null=!0),!1);default:return i=Object.prototype.toString.call(t),i in r._items?!!e(t,r._items[i])||(n&&r._items[i].push(t),!1):(n&&(r._items[i]=[t]),!1)}}return t.prototype.add=function(t){return!n(t,!0,this)},t.prototype.has=function(t){return n(t,!1,this)},t}()},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length-(t-1),o=new Array(e>=0?e:0);r<e;)o[r]=Array.prototype.slice.call(n,r,r+t),r+=1;return o}},function(t,n){t.exports=function(t){for(var n,r=[];!(n=t.next()).done;)r.push(n.value);return r}},function(t,n,r){var e=r(112);t.exports=function(t,n){return e(t<n.length?n.length-t:0,n)}},function(t,n){t.exports=function(t,n){for(var r=n.length-1;r>=0&&t(n[r]);)r-=1;return Array.prototype.slice.call(n,0,r+1)}},function(t,n,r){var e=r(183),o=r(189),u=r(6),i=r(78),c=r(12),s=r(55);t.exports=function t(n,r,f,a){if(i(n,r))return!0;if(s(n)!==s(r))return!1;if(null==n||null==r)return!1;if("function"==typeof n.equals||"function"==typeof r.equals)return"function"==typeof n.equals&&n.equals(r)&&"function"==typeof r.equals&&r.equals(n);switch(s(n)){case"Arguments":case"Array":case"Object":if("function"==typeof n.constructor&&"Promise"===o(n.constructor))return n===r;break;case"Boolean":case"Number":case"String":if(typeof n!=typeof r||!i(n.valueOf(),r.valueOf()))return!1;break;case"Date":if(!i(n.valueOf(),r.valueOf()))return!1;break;case"Error":return n.name===r.name&&n.message===r.message;case"RegExp":if(n.source!==r.source||n.global!==r.global||n.ignoreCase!==r.ignoreCase||n.multiline!==r.multiline||n.sticky!==r.sticky||n.unicode!==r.unicode)return!1;break;case"Map":case"Set":if(!t(e(n.entries()),e(r.entries()),f,a))return!1;break;case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":break;case"ArrayBuffer":break;default:return!1}var p=c(n);if(p.length!==c(r).length)return!1;for(var l=f.length-1;l>=0;){if(f[l]===n)return a[l]===r;l-=1}for(f.push(n),a.push(r),l=p.length-1;l>=0;){var h=p[l];if(!u(h,r)||!t(r[h],n[h],f,a))return!1;l-=1}return f.pop(),a.pop(),!0}},function(t,n,r){var e=r(188),o=r(8),u=r(4),i=r(23);t.exports=function(){var t=function(t){return{"@@transducer/init":u.init,"@@transducer/result":function(n){return t["@@transducer/result"](n)},"@@transducer/step":function(n,r){var o=t["@@transducer/step"](n,r);return o["@@transducer/reduced"]?e(o):o}}};return function(n){var r=t(n);return{"@@transducer/init":u.init,"@@transducer/result":function(t){return r["@@transducer/result"](t)},"@@transducer/step":function(t,n){return i(n)?o(r,t,n):o(r,t,[n])}}}}()},function(t,n){t.exports=function(t){return{"@@transducer/value":t,"@@transducer/reduced":!0}}},function(t,n){t.exports=function(t){var n=String(t).match(/^function (\w*)/);return null==n?"":n[1]}},function(t,n){t.exports=function(t){return"[object RegExp]"===Object.prototype.toString.call(t)}},function(t,n,r){var e=r(6);t.exports=function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var n=Object(t),r=1,o=arguments.length;r<o;){var u=arguments[r];if(null!=u)for(var i in u)e(i,u)&&(n[i]=u[i]);r+=1}return n}},function(t,n){t.exports=function(t){return[t]}},function(t,n){t.exports=function(t,n){return function(){return n.call(this,t.apply(this,arguments))}}},function(t,n){t.exports=function(t,n){return function(){var r=this;return t.apply(r,arguments).then(function(t){return n.call(r,t)})}}},function(t,n){t.exports=function(t){var n=t.replace(/\\/g,"\\\\").replace(/[\b]/g,"\\b").replace(/\f/g,"\\f").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t").replace(/\v/g,"\\v").replace(/\0/g,"\\0");return'"'+n.replace(/"/g,'\\"')+'"'}},function(t,n,r){var e=r(49),o=r(51),u=r(52),i=r(23),c=r(102);t.exports=function(){var t={"@@transducer/init":Array,"@@transducer/step":function(t,n){return t.push(n),t},"@@transducer/result":o},n={"@@transducer/init":String,"@@transducer/step":function(t,n){return t+n},"@@transducer/result":o},r={"@@transducer/init":Object,"@@transducer/step":function(t,n){return e(t,i(n)?c(n[0],n[1]):n)},"@@transducer/result":o};return function(e){if(u(e))return e;if(i(e))return t;if("string"==typeof e)return n;if("object"==typeof e)return r;throw new Error("Cannot create transformer for "+e)}}()},function(t,n){t.exports=function(){var t=function(t){return(t<10?"0":"")+t};return"function"==typeof Date.prototype.toISOString?function(t){return t.toISOString()}:function(n){return n.getUTCFullYear()+"-"+t(n.getUTCMonth()+1)+"-"+t(n.getUTCDate())+"T"+t(n.getUTCHours())+":"+t(n.getUTCMinutes())+":"+t(n.getUTCSeconds())+"."+(n.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"}}()},function(t,n,r){var e=r(17),o=r(36),u=r(195),i=r(197),c=r(12),s=r(41);t.exports=function t(n,r){var f=function(o){var u=r.concat([n]);return e(o,u)?"<Circular>":t(o,u)},a=function(t,n){return o(function(n){return u(n)+": "+f(t[n])},n.slice().sort())};switch(Object.prototype.toString.call(n)){case"[object Arguments]":return"(function() { return arguments; }("+o(f,n).join(", ")+"))";case"[object Array]":return"["+o(f,n).concat(a(n,s(function(t){return/^\d+$/.test(t)},c(n)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof n?"new Boolean("+f(n.valueOf())+")":n.toString();case"[object Date]":return"new Date("+(isNaN(n.valueOf())?f(NaN):u(i(n)))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof n?"new Number("+f(n.valueOf())+")":1/n===-(1/0)?"-0":n.toString(10);case"[object String]":return"object"==typeof n?"new String("+f(n.valueOf())+")":u(n);case"[object Undefined]":return"undefined";default:if("function"==typeof n.toString){var p=n.toString();if("[object Object]"!==p)return p}return"{"+a(n,c(n)).join(", ")+"}"}}},function(t,n,r){var e=r(0),o=r(16),u=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.all=!0}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.all&&(t=this.xf["@@transducer/step"](t,!0)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)||(this.all=!1,t=o(this.xf["@@transducer/step"](t,!1))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(9),o=r(0),u=r(4);t.exports=function(){function t(t,n){this.xf=n,this.pos=0,this.full=!1,this.acc=new Array(t)}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.acc=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.store(n),this.full?this.xf["@@transducer/step"](t,this.getCopy()):t},t.prototype.store=function(t){this.acc[this.pos]=t,this.pos+=1,this.pos===this.acc.length&&(this.pos=0,this.full=!0)},t.prototype.getCopy=function(){return e(Array.prototype.slice.call(this.acc,this.pos),Array.prototype.slice.call(this.acc,0,this.pos))},o(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(187),u=r(7);t.exports=e(function(t,n){return u(t,o(n))})},function(t,n,r){var e=r(0),o=r(4);t.exports=function(){function t(t,n){this.xf=n,this.n=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.n>0?(this.n-=1,t):this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(4);t.exports=function(){function t(t,n){this.xf=n,this.pos=0,this.full=!1,this.acc=new Array(t)}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.acc=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.full&&(t=this.xf["@@transducer/step"](t,this.acc[this.pos])),this.store(n),t},t.prototype.store=function(t){this.acc[this.pos]=t,this.pos+=1,this.pos===this.acc.length&&(this.pos=0,this.full=!0)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(8),u=r(4);t.exports=function(){function t(t,n){this.f=t,this.retained=[],this.xf=n}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.retained=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.retain(t,n):this.flush(t,n)},t.prototype.flush=function(t,n){return t=o(this.xf["@@transducer/step"],t,this.retained),this.retained=[],this.xf["@@transducer/step"](t,n)},t.prototype.retain=function(t,n){return this.retained.push(n),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){if(this.f){if(this.f(n))return t;this.f=null}return this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.xf["@@transducer/step"](t,n):t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.found=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.found||(t=this.xf["@@transducer/step"](t,void 0)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.found=!0,t=o(this.xf["@@transducer/step"](t,n))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.idx=-1,this.found=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.found||(t=this.xf["@@transducer/step"](t,-1)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.idx+=1,this.f(n)&&(this.found=!0,t=o(this.xf["@@transducer/step"](t,this.idx))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.xf["@@transducer/result"](this.xf["@@transducer/step"](t,this.last))},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.last=n),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.idx=-1,this.lastIdx=-1}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.xf["@@transducer/result"](this.xf["@@transducer/step"](t,this.lastIdx))},t.prototype["@@transducer/step"]=function(t,n){return this.idx+=1,this.f(n)&&(this.lastIdx=this.idx),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.xf["@@transducer/step"](t,this.f(n))},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(32),o=r(6),u=r(4);t.exports=function(){function t(t,n,r,e){this.valueFn=t,this.valueAcc=n,this.keyFn=r,this.xf=e,this.inputs={}}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){var n;for(n in this.inputs)if(o(n,this.inputs)&&(t=this.xf["@@transducer/step"](t,this.inputs[n]),t["@@transducer/reduced"])){t=t["@@transducer/value"];break}return this.inputs=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){var r=this.keyFn(n);return this.inputs[r]=this.inputs[r]||[r,this.valueAcc],this.inputs[r][1]=this.valueFn(this.inputs[r][1],n),t},e(4,[],function(n,r,e,o){return new t(n,r,e,o)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(4);t.exports=function(){function t(t,n){this.xf=n,this.n=t,this.i=0}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=u.result,t.prototype["@@transducer/step"]=function(t,n){this.i+=1;var r=0===this.n?t:this.xf["@@transducer/step"](t,n);return this.i>=this.n?o(r):r},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(4);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=u.result,t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.xf["@@transducer/step"](t,n):o(t)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(17),o=r(0),u=r(83),i=r(31),c=r(56);t.exports=o(function(t,n){var r,o;return t.length>n.length?(r=t,o=n):(r=n,o=t),c(u(i(e)(r),o))})},function(t,n,r){var e=r(50),o=r(2),u=r(57);t.exports=o(function(t,n,r){var o,i;n.length>r.length?(o=n,i=r):(o=r,i=n);for(var c=[],s=0;s<i.length;)e(t,i[s],o)&&(c[c.length]=i[s]),s+=1;return u(t,c)})},function(t,n,r){var e=r(21),o=r(0);t.exports=o(e("intersperse",function(t,n){for(var r=[],e=0,o=n.length;e<o;)e===o-1?r.push(n[e]):r.push(n[e],t),e+=1;return r}))},function(t,n,r){var e=r(79),o=r(2),u=r(52),i=r(8),c=r(196);t.exports=o(function(t,n,r){return u(t)?i(n(t),t["@@transducer/init"](),r):i(n(c(t)),e(t,[],[],!1),r)})},function(t,n,r){var e=r(1),o=r(6),u=r(12);t.exports=e(function(t){for(var n=u(t),r=n.length,e=0,i={};e<r;){var c=n[e],s=t[c],f=o(s,i)?i[s]:i[s]=[];f[f.length]=c,e+=1}return i})},function(t,n,r){var e=r(1),o=r(12);t.exports=e(function(t){for(var n=o(t),r=n.length,e=0,u={};e<r;){var i=n[e];u[t[i]]=i,e+=1}return u})},function(t,n,r){var e=r(1),o=r(77),u=r(10);t.exports=e(function(t){return null!=t&&u(t,o(t))})},function(t,n,r){var e=r(1);t.exports=e(function(t){return null==t})},function(t,n,r){var e=r(22);t.exports=e(1,"join")},function(t,n,r){var e=r(1);t.exports=e(function(t){var n,r=[];for(n in t)r[r.length]=n;return r})},function(t,n,r){var e=r(0),o=r(14),u=r(10);t.exports=e(function(t,n){if("function"!=typeof n.lastIndexOf||o(n)){for(var r=n.length-1;r>=0;){if(u(n[r],t))return r;r-=1}return-1}return n.lastIndexOf(t)})},function(t,n,r){var e=r(1),o=r(37),u=r(24),i=r(115);t.exports=e(function(t){return o(u(t),i(t))})},function(t,n,r){var e=r(1),o=r(66),u=r(37),i=r(25);t.exports=e(function(t){return u(i(t),o(t))})},function(t,n,r){var e=r(1),o=r(29),u=r(37),i=r(53);t.exports=e(function(t){return u(i(t),o(t))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t<n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t<=n})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=0,o=r.length,u=[],i=[n];e<o;)i=t(i[0],r[e]),u[e]=i[1],e+=1;return[i[0],u]})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r.length-1,o=[],u=[n];e>=0;)u=t(r[e],u[0]),o[e]=u[1],e-=1;return[o,u[0]]})},function(t,n,r){var e=r(0),o=r(8),u=r(12);t.exports=e(function(t,n){return o(function(r,e){return r[e]=t(n[e],e,n),r},{},u(n))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n.match(t)||[]})},function(t,n,r){var e=r(0),o=r(86);t.exports=e(function(t,n){return o(t)?!o(n)||n<1?NaN:(t%n+n)%n:NaN})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)>t(n)?r:n})},function(t,n,r){var e=r(1),o=r(98);t.exports=e(function(t){var n=t.length;if(0===n)return NaN;var r=2-n%2,e=(n-r)/2;return o(Array.prototype.slice.call(t,0).sort(function(t,n){return t<n?-1:t>n?1:0}).slice(e,e+r))})},function(t,n,r){var e=r(11),o=r(1),u=r(6),i=r(27);t.exports=o(function(t){var n={};return e(t.length,function(){var r=i(arguments);return u(r,n)||(n[r]=t.apply(this,arguments)),n[r]})})},function(t,n,r){var e=r(49),o=r(0);t.exports=o(function(t,n){return e({},t,n)})},function(t,n,r){var e=r(49),o=r(1);t.exports=o(function(t){return e.apply(null,[{}].concat(t))})},function(t,n,r){var e=r(2),o=r(99);t.exports=e(function(t,n,r){return o(function(n,r,e){return t(r,e)},n,r)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n<t?n:t})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)<t(n)?r:n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t%n})},function(t,n,r){var e=r(1);t.exports=e(function(t){return-t})},function(t,n,r){var e=r(81),o=r(0),u=r(3),i=r(90),c=r(64);t.exports=o(e(u(["any"],i,c)))},function(t,n,r){var e=r(1),o=r(5),u=r(24);t.exports=e(function(t){var n=t<0?1:t+1;return o(n,function(){return u(t,arguments)})})},function(t,n,r){var e=r(1),o=r(192);t.exports=e(o)},function(t,n,r){var e=r(17),o=r(0);t.exports=o(function(t,n){var r={};for(var o in n)e(o,t)||(r[o]=n[o]);return r})},function(t,n,r){var e=r(11),o=r(1);t.exports=o(function(t){var n,r=!1;return e(t.length,function(){return r?n:(r=!0,n=t.apply(this,arguments))})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return[t,n]})},function(t,n,r){var e=r(9),o=r(82);t.exports=o(e)},function(t,n,r){var e=r(9),o=r(82),u=r(31);t.exports=o(u(e))},function(t,n,r){var e=r(47),o=r(94),u=r(41);t.exports=o([e,u])},function(t,n,r){var e=r(2),o=r(10),u=r(25);t.exports=e(function(t,n,r){return o(u(t,r),n)})},function(t,n,r){var e=r(2),o=r(71),u=r(25);t.exports=e(function(t,n,r){return o(t,u(n,r))})},function(t,n,r){var e=r(2),o=r(25);t.exports=e(function(t,n,r){return n.length>0&&t(o(n,r))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r={},e=0;e<t.length;)t[e]in n&&(r[t[e]]=n[t[e]]),e+=1;return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};for(var e in n)t(n[e],e,n)&&(r[e]=n[e]);return r})},function(t,n,r){var e=r(68),o=r(42);t.exports=function(){if(0===arguments.length)throw new Error("pipeK requires at least one argument");return e.apply(this,o(arguments))}},function(t,n,r){var e=r(100),o=r(13);t.exports=o(e,1)},function(t,n,r){var e=r(36),o=r(48),u=r(105),i=r(116);t.exports=i(e,[u,o])},function(t,n,r){var e=r(2),o=r(10);t.exports=e(function(t,n,r){return o(n,r[t])})},function(t,n,r){var e=r(2),o=r(93);t.exports=e(function(t,n,r){return o(t,r[n])})},function(t,n,r){var e=r(2),o=r(6);t.exports=e(function(t,n,r){return null!=r&&o(n,r)?r[n]:t})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r[n])})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=t.length,e=[],o=0;o<r;)e[o]=n[t[o]],o+=1;return e})},function(t,n,r){var e=r(0),o=r(87);t.exports=e(function(t,n){if(!o(t)||!o(n))throw new TypeError("Both arguments to range must be numbers");for(var r=[],e=t;e<n;)r.push(e),e+=1;return r})},function(t,n,r){var e=r(32),o=r(8),u=r(16);t.exports=e(4,[],function(t,n,r,e){return o(function(r,e){return t(r,e)?n(r,e):u(r)},r,e)})},function(t,n,r){var e=r(1),o=r(16);t.exports=e(o)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=Array.prototype.slice.call(r,0);return e.splice(t,n),e})},function(t,n,r){var e=r(0),o=r(19),u=r(113);t.exports=e(function(t,n){return u(o(t),n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return r.replace(t,n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=0,o=r.length,u=[n];e<o;)n=t(n,r[e]),u[e+1]=n,e+=1;return u})},function(t,n,r){var e=r(2),o=r(19),u=r(104);t.exports=e(function(t,n,r){return u(t,o(n),r)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(t)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(function(n,r){var e=t(n),o=t(r);return e<o?-1:e>o?1:0})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(function(n,r){for(var e=0,o=0;0===e&&o<t.length;)e=t[o](n,r),o+=1;return e})})},function(t,n,r){var e=r(22);t.exports=e(1,"split")},function(t,n,r){var e=r(0),o=r(96),u=r(18);t.exports=e(function(t,n){return[u(0,t,n),u(t,o(n),n)]})},function(t,n,r){var e=r(0),o=r(18);t.exports=e(function(t,n){if(t<=0)throw new Error("First argument to splitEvery must be a positive integer");for(var r=[],e=0;e<n.length;)r.push(o(e,e+=t,n));return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=0,e=n.length,o=[];r<e&&!t(n[r]);)o.push(n[r]),r+=1;return[o,Array.prototype.slice.call(n,r)]})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Number(t)-Number(n)})},function(t,n,r){var e=r(0),o=r(46),u=r(72);t.exports=e(function(t,n){return o(u(t,n),u(n,t))})},function(t,n,r){var e=r(2),o=r(46),u=r(73);t.exports=e(function(t,n,r){return o(u(t,n,r),u(t,r,n))})},function(t,n,r){var e=r(0),o=r(75);t.exports=e(function(t,n){return o(t>=0?n.length-t:0,n)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=n.length-1;r>=0&&t(n[r]);)r-=1;return Array.prototype.slice.call(n,r+1)})},function(t,n,r){var e=r(0),o=r(3),u=r(214);t.exports=e(o(["takeWhile"],u,function(t,n){for(var r=0,e=n.length;r<e&&t(n[r]);)r+=1;return Array.prototype.slice.call(n,0,r)}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t(n),n})},function(t,n,r){var e=r(80),o=r(0),u=r(190),i=r(27);t.exports=o(function(t,n){if(!u(t))throw new TypeError("‘test’ requires a value of type RegExp as its first argument; received "+i(t));return e(t).test(n)})},function(t,n,r){var e=r(22);t.exports=e(0,"toLowerCase")},function(t,n,r){var e=r(1),o=r(6);t.exports=e(function(t){var n=[];for(var r in t)o(r,t)&&(n[n.length]=[r,t[r]]);return n})},function(t,n,r){var e=r(1);t.exports=e(function(t){var n=[];for(var r in t)n[n.length]=[r,t[r]];return n})},function(t,n,r){var e=r(22);t.exports=e(0,"toUpperCase")},function(t,n,r){var e=r(8),o=r(92),u=r(5);t.exports=u(4,function(t,n,r,u){return e(t("function"==typeof n?o(n):n),r,u)})},function(t,n,r){var e=r(1);t.exports=e(function(t){for(var n=0,r=[];n<t.length;){for(var e=t[n],o=0;o<e.length;)"undefined"==typeof r[o]&&(r[o]=[]),r[o].push(e[o]),o+=1;n+=1}return r})},function(t,n,r){var e=r(2),o=r(7),u=r(110);t.exports=e(function(t,n,r){return u(t,o(n,r))})},function(t,n,r){var e=r(1);t.exports=function(){var t="\t\n\v\f\r \u2028\u2029\ufeff",n="",r="function"==typeof String.prototype.trim;return e(r&&!t.trim()&&n.trim()?function(t){return t.trim()}:function(n){var r=new RegExp("^["+t+"]["+t+"]*"),e=new RegExp("["+t+"]["+t+"]*$");return n.replace(r,"").replace(e,"")})}()},function(t,n,r){var e=r(11),o=r(9),u=r(0);t.exports=u(function(t,n){return e(t.length,function(){try{return t.apply(this,arguments)}catch(t){return n.apply(this,o([t],arguments))}})})},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(){return t(Array.prototype.slice.call(arguments,0))}})},function(t,n,r){var e=r(1),o=r(39);t.exports=e(function(t){return o(1,t)})},function(t,n,r){var e=r(0),o=r(5);t.exports=e(function(t,n){return o(t,function(){for(var r,e=1,o=n,u=0;e<=t&&"function"==typeof o;)r=e===t?arguments.length:u+o.length,o=o.apply(this,Array.prototype.slice.call(arguments,u,r)),e+=1,u=r;return o})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=t(n),e=[];r&&r.length;)e[e.length]=r[0],r=t(r[1]);return e})},function(t,n,r){var e=r(9),o=r(0),u=r(45),i=r(56);t.exports=o(u(i,e))},function(t,n,r){var e=r(9),o=r(2),u=r(57);t.exports=o(function(t,n,r){return u(t,e(n,r))})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)?r:n(r)})},function(t,n,r){var e=r(51),o=r(44);t.exports=o(e)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r;!t(e);)e=n(e);return e})},function(t,n,r){var e=r(1);t.exports=e(function(t){var n,r=[];for(n in t)r[r.length]=t[n];return r})},function(t,n,r){var e=r(0);t.exports=function(){var t=function(t){return{value:t,map:function(){return this}}};return e(function(n,r){return n(t)(r).value})}()},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)?n(r):r})},function(t,n,r){var e=r(0),o=r(10),u=r(7),i=r(118);t.exports=e(function(t,n){return i(u(o,t),n)})},function(t,n,r){var e=r(17),o=r(0),u=r(31),i=r(41);t.exports=o(function(t,n){return i(u(e)(t),n)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r,e=0,o=t.length,u=n.length,i=[];e<o;){for(r=0;r<u;)i[i.length]=[t[e],n[r]],r+=1;e+=1}return i})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=[],e=0,o=Math.min(t.length,n.length);e<o;)r[e]=[t[e],n[e]],e+=1;return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=0,e=Math.min(t.length,n.length),o={};r<e;)o[t[r]]=n[r],r+=1;return o})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=[],o=0,u=Math.min(n.length,r.length);o<u;)e[o]=t(n[o],r[o]),o+=1;return e})},function(t,n,r){"use strict";var e=r(123),o=r(61),u=r(60),i=r(122),c=r(121),s=r(58),f=r(119),a=r(59),p=r(120);t.exports={isNotUndefined:e,isUndefined:o,isNull:u,isNotNull:i,isNotNil:c,isArray:s,isNotArray:f,isBoolean:a,isNotBoolean:p}}])}); |
@@ -7,3 +7,3 @@ { | ||
"keywords": "ramda extensions addons cookbook adjunct", | ||
"version": "0.2.0", | ||
"version": "0.3.0", | ||
"homepage": "https://github.com/char0n/ramda-adjunct", | ||
@@ -10,0 +10,0 @@ "license": "SEE LICENSE IN LICENSE.md", |
@@ -5,4 +5,4 @@ [![CircleCI](https://circleci.com/gh/char0n/ramda-adjunct.svg?style=svg)](https://circleci.com/gh/char0n/ramda-adjunct) | ||
[![npm version](https://badge.fury.io/js/ramda-adjunct.svg)](https://www.npmjs.com/package/ramda-adjunct) | ||
[![npm](https://img.shields.io/npm/dm/ramda-adjunct.svg)]() | ||
[![David](https://img.shields.io/david/peer/char0n/ramda-adjunct.svg)]() | ||
[![npm](https://img.shields.io/npm/dm/ramda-adjunct.svg)](https://www.npmjs.com/package/ramda-adjunct) | ||
[![peerDependencies Status](https://david-dm.org/char0n/ramda-adjunct/peer-status.svg)](https://david-dm.org/char0n/ramda-adjunct?type=peer) | ||
[![Join the chat at https://gitter.im/ramda-adjunct/Lobby](https://badges.gitter.im/ramda-adjunct/Lobby.svg)](https://gitter.im/ramda-adjunct/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | ||
@@ -59,3 +59,5 @@ | ||
- [0.0.1](https://char0n.github.io/ramda-adjunct/0.0.1) | ||
- [0.1.0](https://char0n.github.io/ramda-adjunct/0.0.1) | ||
- [0.1.0](https://char0n.github.io/ramda-adjunct/0.1.0) | ||
- [0.2.0](https://char0n.github.io/ramda-adjunct/0.2.0) | ||
- [0.3.0](https://char0n.github.io/ramda-adjunct/0.3.0) | ||
- Latest: https://char0n.github.io/ramda-adjunct | ||
@@ -99,5 +101,36 @@ | ||
You can always find fresh build files in circle-ci [artifacts](https://circleci.com/gh/char0n/ramda-adjunct). | ||
## Usage | ||
### Web browser | ||
```html | ||
<script src="RA.web.js"></script> | ||
``` | ||
or | ||
```html | ||
<script src="RA.web.standalone.js"></script> | ||
``` | ||
Including Ramda Adjunct into HTML document exposes global variable **RA** on `window` object. | ||
```javascript | ||
RA.isArray([]); | ||
``` | ||
### Node | ||
```javascript | ||
const RA = require('ramda-adjunct'); | ||
RA.isArray([]); | ||
``` | ||
or | ||
```javascript | ||
const { isArray } = require('ramda-adjunct'); | ||
isArray([]); | ||
``` | ||
## Author | ||
@@ -104,0 +137,0 @@ |
@@ -7,2 +7,7 @@ 'use strict'; | ||
const isNotNull = require('./isNotNull'); | ||
const isNotNil = require('./isNotNil'); | ||
const isArray = require('./isArray'); | ||
const isNotArray = require('./isNotArray'); | ||
const isBoolean = require('./isBoolean'); | ||
const isNotBoolean = require('./isNotBoolean'); | ||
@@ -17,2 +22,7 @@ /** | ||
isNotNull, | ||
isNotNil, | ||
isArray, | ||
isNotArray, | ||
isBoolean, | ||
isNotBoolean, | ||
}; |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
424702
21
11366
140
0