diff --git a/README.md b/README.md
index 149e749..57284a0 100644
--- a/README.md
+++ b/README.md
@@ -33,6 +33,12 @@ In the terminal, enter the following:
$ npm run build
```
+## npm scripts
+
+- npm test - Run ESLint
+- npm run build - Build development and production version of scripts.
+- npm run dev - Build development version of script watch for changes.
+
This will create a namespaced, unminified build of dat.GUI at `build/dat.gui.js`
## Thanks
diff --git a/build/dat.gui.js b/build/dat.gui.js
index 08beb8b..ad49d20 100644
--- a/build/dat.gui.js
+++ b/build/dat.gui.js
@@ -54,48 +54,4848 @@ return /******/ (function(modules) { // webpackBootstrap
/* 0 */
/***/ function(module, exports, __webpack_require__) {
+ /**
+ * dat-gui JavaScript Controller Library
+ * http://code.google.com/p/dat-gui
+ *
+ * Copyright 2011 Data Arts Team, Google Creative Lab
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ */
+
'use strict';
- module.exports = __webpack_require__(1);
+ exports.__esModule = true;
+ __webpack_require__(1);
+
+ exports['default'] = __webpack_require__(169);
+ module.exports = exports['default'];
/***/ },
/* 1 */
/***/ function(module, exports, __webpack_require__) {
- 'use strict';
-
- module.exports = {
- color: {
- Color: __webpack_require__(2),
- math: __webpack_require__(6),
- interpret: __webpack_require__(3)
- },
-
- controllers: {
- Controller: __webpack_require__(7),
- BooleanController: __webpack_require__(8),
- OptionController: __webpack_require__(10),
- StringController: __webpack_require__(11),
- NumberController: __webpack_require__(12),
- NumberControllerBox: __webpack_require__(13),
- NumberControllerSlider: __webpack_require__(14),
- FunctionController: __webpack_require__(20),
- ColorController: __webpack_require__(21)
- },
-
- dom: {
- dom: __webpack_require__(9)
- },
-
- gui: {
- GUI: __webpack_require__(22)
- },
-
- GUI: __webpack_require__(22)
- };
+ module.exports = __webpack_require__(2);
+
/***/ },
/* 2 */
+/***/ function(module, exports, __webpack_require__) {
+
+ module.exports = __webpack_require__(3);
+
+
+/***/ },
+/* 3 */
+/***/ function(module, exports, __webpack_require__) {
+
+ /* WEBPACK VAR INJECTION */(function(global) {"use strict";
+
+ __webpack_require__(4);
+
+ __webpack_require__(167);
+
+ if (global._babelPolyfill) {
+ throw new Error("only one instance of babel/polyfill is allowed");
+ }
+ global._babelPolyfill = true;
+ /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
+
+/***/ },
+/* 4 */
+/***/ function(module, exports, __webpack_require__) {
+
+ __webpack_require__(5);
+ __webpack_require__(34);
+ __webpack_require__(42);
+ __webpack_require__(44);
+ __webpack_require__(46);
+ __webpack_require__(48);
+ __webpack_require__(50);
+ __webpack_require__(51);
+ __webpack_require__(52);
+ __webpack_require__(53);
+ __webpack_require__(54);
+ __webpack_require__(55);
+ __webpack_require__(56);
+ __webpack_require__(58);
+ __webpack_require__(59);
+ __webpack_require__(60);
+ __webpack_require__(61);
+ __webpack_require__(62);
+ __webpack_require__(63);
+ __webpack_require__(64);
+ __webpack_require__(65);
+ __webpack_require__(66);
+ __webpack_require__(67);
+ __webpack_require__(69);
+ __webpack_require__(70);
+ __webpack_require__(71);
+ __webpack_require__(73);
+ __webpack_require__(74);
+ __webpack_require__(75);
+ __webpack_require__(76);
+ __webpack_require__(77);
+ __webpack_require__(78);
+ __webpack_require__(79);
+ __webpack_require__(80);
+ __webpack_require__(81);
+ __webpack_require__(82);
+ __webpack_require__(83);
+ __webpack_require__(84);
+ __webpack_require__(85);
+ __webpack_require__(91);
+ __webpack_require__(92);
+ __webpack_require__(94);
+ __webpack_require__(95);
+ __webpack_require__(97);
+ __webpack_require__(98);
+ __webpack_require__(103);
+ __webpack_require__(104);
+ __webpack_require__(107);
+ __webpack_require__(109);
+ __webpack_require__(110);
+ __webpack_require__(111);
+ __webpack_require__(112);
+ __webpack_require__(113);
+ __webpack_require__(115);
+ __webpack_require__(116);
+ __webpack_require__(118);
+ __webpack_require__(119);
+ __webpack_require__(120);
+ __webpack_require__(121);
+ __webpack_require__(126);
+ __webpack_require__(129);
+ __webpack_require__(130);
+ __webpack_require__(132);
+ __webpack_require__(133);
+ __webpack_require__(134);
+ __webpack_require__(135);
+ __webpack_require__(136);
+ __webpack_require__(137);
+ __webpack_require__(138);
+ __webpack_require__(139);
+ __webpack_require__(140);
+ __webpack_require__(141);
+ __webpack_require__(142);
+ __webpack_require__(143);
+ __webpack_require__(145);
+ __webpack_require__(146);
+ __webpack_require__(147);
+ __webpack_require__(148);
+ __webpack_require__(149);
+ __webpack_require__(150);
+ __webpack_require__(152);
+ __webpack_require__(153);
+ __webpack_require__(154);
+ __webpack_require__(155);
+ __webpack_require__(157);
+ __webpack_require__(158);
+ __webpack_require__(160);
+ __webpack_require__(161);
+ __webpack_require__(162);
+ __webpack_require__(165);
+ __webpack_require__(166);
+ module.exports = __webpack_require__(16);
+
+/***/ },
+/* 5 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $ = __webpack_require__(6)
+ , SUPPORT_DESC = __webpack_require__(7)
+ , createDesc = __webpack_require__(8)
+ , html = __webpack_require__(9)
+ , cel = __webpack_require__(11)
+ , has = __webpack_require__(13)
+ , cof = __webpack_require__(14)
+ , $def = __webpack_require__(15)
+ , invoke = __webpack_require__(20)
+ , arrayMethod = __webpack_require__(21)
+ , IE_PROTO = __webpack_require__(19)('__proto__')
+ , isObject = __webpack_require__(12)
+ , anObject = __webpack_require__(29)
+ , aFunction = __webpack_require__(26)
+ , toObject = __webpack_require__(22)
+ , toInteger = __webpack_require__(28)
+ , toIndex = __webpack_require__(30)
+ , toLength = __webpack_require__(27)
+ , ES5Object = __webpack_require__(23)
+ , ObjectProto = Object.prototype
+ , A = []
+ , _slice = A.slice
+ , _join = A.join
+ , defineProperty = $.setDesc
+ , getOwnDescriptor = $.getDesc
+ , defineProperties = $.setDescs
+ , IE8_DOM_DEFINE = false
+ , $indexOf = __webpack_require__(31)(false)
+ , $forEach = arrayMethod(0)
+ , $map = arrayMethod(1)
+ , $filter = arrayMethod(2)
+ , $some = arrayMethod(3)
+ , $every = arrayMethod(4)
+ , factories = {}
+ , $trim = __webpack_require__(32)(/^\s*([\s\S]*\S)?\s*$/, '$1');
+
+ if(!SUPPORT_DESC){
+ try {
+ IE8_DOM_DEFINE = defineProperty(cel('div'), 'x',
+ {get: function(){ return 8; }}
+ ).x == 8;
+ } catch(e){ /* empty */ }
+ $.setDesc = function(O, P, Attributes){
+ if(IE8_DOM_DEFINE)try {
+ return defineProperty(O, P, Attributes);
+ } catch(e){ /* empty */ }
+ if('get' in Attributes || 'set' in Attributes)throw TypeError('Accessors not supported!');
+ if('value' in Attributes)anObject(O)[P] = Attributes.value;
+ return O;
+ };
+ $.getDesc = function(O, P){
+ if(IE8_DOM_DEFINE)try {
+ return getOwnDescriptor(O, P);
+ } catch(e){ /* empty */ }
+ if(has(O, P))return createDesc(!ObjectProto.propertyIsEnumerable.call(O, P), O[P]);
+ };
+ $.setDescs = defineProperties = function(O, Properties){
+ anObject(O);
+ var keys = $.getKeys(Properties)
+ , length = keys.length
+ , i = 0
+ , P;
+ while(length > i)$.setDesc(O, P = keys[i++], Properties[P]);
+ return O;
+ };
+ }
+ $def($def.S + $def.F * !SUPPORT_DESC, 'Object', {
+ // 19.1.2.6 / 15.2.3.3 Object.getOwnPropertyDescriptor(O, P)
+ getOwnPropertyDescriptor: $.getDesc,
+ // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
+ defineProperty: $.setDesc,
+ // 19.1.2.3 / 15.2.3.7 Object.defineProperties(O, Properties)
+ defineProperties: defineProperties
+ });
+
+ // IE 8- don't enum bug keys
+ var keys1 = ('constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,' +
+ 'toLocaleString,toString,valueOf').split(',')
+ // Additional keys for getOwnPropertyNames
+ , keys2 = keys1.concat('length', 'prototype')
+ , keysLen1 = keys1.length;
+
+ // Create object with `null` prototype: use iframe Object with cleared prototype
+ var createDict = function(){
+ // Thrash, waste and sodomy: IE GC bug
+ var iframe = cel('iframe')
+ , i = keysLen1
+ , gt = '>'
+ , iframeDocument;
+ iframe.style.display = 'none';
+ html.appendChild(iframe);
+ iframe.src = 'javascript:'; // eslint-disable-line no-script-url
+ // createDict = iframe.contentWindow.Object;
+ // html.removeChild(iframe);
+ iframeDocument = iframe.contentWindow.document;
+ iframeDocument.open();
+ iframeDocument.write(' i)if(has(O, key = names[i++])){
+ ~$indexOf(result, key) || result.push(key);
+ }
+ return result;
+ };
+ }
+ function Empty(){}
+ $def($def.S, 'Object', {
+ // 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)
+ getPrototypeOf: $.getProto = $.getProto || function(O){
+ O = toObject(O, true);
+ if(has(O, IE_PROTO))return O[IE_PROTO];
+ if(typeof O.constructor == 'function' && O instanceof O.constructor){
+ return O.constructor.prototype;
+ } return O instanceof Object ? ObjectProto : null;
+ },
+ // 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)
+ getOwnPropertyNames: $.getNames = $.getNames || createGetKeys(keys2, keys2.length, true),
+ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
+ create: $.create = $.create || function(O, /*?*/Properties){
+ var result;
+ if(O !== null){
+ Empty.prototype = anObject(O);
+ result = new Empty();
+ Empty.prototype = null;
+ // add "__proto__" for Object.getPrototypeOf shim
+ result[IE_PROTO] = O;
+ } else result = createDict();
+ return Properties === undefined ? result : defineProperties(result, Properties);
+ },
+ // 19.1.2.14 / 15.2.3.14 Object.keys(O)
+ keys: $.getKeys = $.getKeys || createGetKeys(keys1, keysLen1, false),
+ // 19.1.2.17 / 15.2.3.8 Object.seal(O)
+ seal: function seal(it){
+ return it; // <- cap
+ },
+ // 19.1.2.5 / 15.2.3.9 Object.freeze(O)
+ freeze: function freeze(it){
+ return it; // <- cap
+ },
+ // 19.1.2.15 / 15.2.3.10 Object.preventExtensions(O)
+ preventExtensions: function preventExtensions(it){
+ return it; // <- cap
+ },
+ // 19.1.2.13 / 15.2.3.11 Object.isSealed(O)
+ isSealed: function isSealed(it){
+ return !isObject(it); // <- cap
+ },
+ // 19.1.2.12 / 15.2.3.12 Object.isFrozen(O)
+ isFrozen: function isFrozen(it){
+ return !isObject(it); // <- cap
+ },
+ // 19.1.2.11 / 15.2.3.13 Object.isExtensible(O)
+ isExtensible: function isExtensible(it){
+ return isObject(it); // <- cap
+ }
+ });
+
+ function construct(F, len, args){
+ if(!(len in factories)){
+ for(var n = [], i = 0; i < len; i++)n[i] = 'a[' + i + ']';
+ factories[len] = Function('F,a', 'return new F(' + n.join(',') + ')');
+ }
+ return factories[len](F, args);
+ }
+
+ // 19.2.3.2 / 15.3.4.5 Function.prototype.bind(thisArg, args...)
+ $def($def.P, 'Function', {
+ bind: function(that /*, args... */){
+ var fn = aFunction(this)
+ , partArgs = _slice.call(arguments, 1);
+ function bound(/* args... */){
+ var args = partArgs.concat(_slice.call(arguments));
+ return this instanceof bound ? construct(fn, args.length, args) : invoke(fn, args, that);
+ }
+ if(isObject(fn.prototype))bound.prototype = fn.prototype;
+ return bound;
+ }
+ });
+
+ // fallback for not array-like ES3 strings and DOM objects
+ var buggySlice = true;
+ try {
+ if(html)_slice.call(html);
+ buggySlice = false;
+ } catch(e){ /* empty */ }
+
+ $def($def.P + $def.F * buggySlice, 'Array', {
+ slice: function slice(begin, end){
+ var len = toLength(this.length)
+ , klass = cof(this);
+ end = end === undefined ? len : end;
+ if(klass == 'Array')return _slice.call(this, begin, end);
+ var start = toIndex(begin, len)
+ , upTo = toIndex(end, len)
+ , size = toLength(upTo - start)
+ , cloned = Array(size)
+ , i = 0;
+ for(; i < size; i++)cloned[i] = klass == 'String'
+ ? this.charAt(start + i)
+ : this[start + i];
+ return cloned;
+ }
+ });
+ $def($def.P + $def.F * (ES5Object != Object), 'Array', {
+ join: function join(){
+ return _join.apply(ES5Object(this), arguments);
+ }
+ });
+
+ // 22.1.2.2 / 15.4.3.2 Array.isArray(arg)
+ $def($def.S, 'Array', {isArray: function(arg){ return cof(arg) == 'Array'; }});
+
+ function createArrayReduce(isRight){
+ return function(callbackfn, memo){
+ aFunction(callbackfn);
+ var O = toObject(this)
+ , length = toLength(O.length)
+ , index = isRight ? length - 1 : 0
+ , i = isRight ? -1 : 1;
+ if(arguments.length < 2)for(;;){
+ if(index in O){
+ memo = O[index];
+ index += i;
+ break;
+ }
+ index += i;
+ if(isRight ? index < 0 : length <= index){
+ throw TypeError('Reduce of empty array with no initial value');
+ }
+ }
+ for(;isRight ? index >= 0 : length > index; index += i)if(index in O){
+ memo = callbackfn(memo, O[index], index, this);
+ }
+ return memo;
+ };
+ }
+ $def($def.P, 'Array', {
+ // 22.1.3.10 / 15.4.4.18 Array.prototype.forEach(callbackfn [, thisArg])
+ forEach: $.each = $.each || function forEach(callbackfn/*, that = undefined */){
+ return $forEach(this, callbackfn, arguments[1]);
+ },
+ // 22.1.3.15 / 15.4.4.19 Array.prototype.map(callbackfn [, thisArg])
+ map: function map(callbackfn/*, that = undefined */){
+ return $map(this, callbackfn, arguments[1]);
+ },
+ // 22.1.3.7 / 15.4.4.20 Array.prototype.filter(callbackfn [, thisArg])
+ filter: function filter(callbackfn/*, that = undefined */){
+ return $filter(this, callbackfn, arguments[1]);
+ },
+ // 22.1.3.23 / 15.4.4.17 Array.prototype.some(callbackfn [, thisArg])
+ some: function some(callbackfn/*, that = undefined */){
+ return $some(this, callbackfn, arguments[1]);
+ },
+ // 22.1.3.5 / 15.4.4.16 Array.prototype.every(callbackfn [, thisArg])
+ every: function every(callbackfn/*, that = undefined */){
+ return $every(this, callbackfn, arguments[1]);
+ },
+ // 22.1.3.18 / 15.4.4.21 Array.prototype.reduce(callbackfn [, initialValue])
+ reduce: createArrayReduce(false),
+ // 22.1.3.19 / 15.4.4.22 Array.prototype.reduceRight(callbackfn [, initialValue])
+ reduceRight: createArrayReduce(true),
+ // 22.1.3.11 / 15.4.4.14 Array.prototype.indexOf(searchElement [, fromIndex])
+ indexOf: function indexOf(el /*, fromIndex = 0 */){
+ return $indexOf(this, el, arguments[1]);
+ },
+ // 22.1.3.14 / 15.4.4.15 Array.prototype.lastIndexOf(searchElement [, fromIndex])
+ lastIndexOf: function lastIndexOf(el, fromIndex /* = @[*-1] */){
+ var O = toObject(this)
+ , length = toLength(O.length)
+ , index = length - 1;
+ if(arguments.length > 1)index = Math.min(index, toInteger(fromIndex));
+ if(index < 0)index = toLength(length + index);
+ for(;index >= 0; index--)if(index in O)if(O[index] === el)return index;
+ return -1;
+ }
+ });
+
+ // 21.1.3.25 / 15.5.4.20 String.prototype.trim()
+ $def($def.P, 'String', {trim: function trim(){ return $trim(this); }});
+
+ // 20.3.3.1 / 15.9.4.4 Date.now()
+ $def($def.S, 'Date', {now: function now(){ return +new Date; }});
+
+ function lz(num){
+ return num > 9 ? num : '0' + num;
+ }
+
+ // 20.3.4.36 / 15.9.5.43 Date.prototype.toISOString()
+ // PhantomJS and old webkit had a broken Date implementation.
+ var date = new Date(-5e13 - 1)
+ , brokenDate = !(date.toISOString && date.toISOString() == '0385-07-25T07:06:39.999Z'
+ && __webpack_require__(33)(function(){ new Date(NaN).toISOString(); }));
+ $def($def.P + $def.F * brokenDate, 'Date', {
+ toISOString: function toISOString(){
+ if(!isFinite(this))throw RangeError('Invalid time value');
+ var d = this
+ , y = d.getUTCFullYear()
+ , m = d.getUTCMilliseconds()
+ , s = y < 0 ? '-' : y > 9999 ? '+' : '';
+ return s + ('00000' + Math.abs(y)).slice(s ? -6 : -4) +
+ '-' + lz(d.getUTCMonth() + 1) + '-' + lz(d.getUTCDate()) +
+ 'T' + lz(d.getUTCHours()) + ':' + lz(d.getUTCMinutes()) +
+ ':' + lz(d.getUTCSeconds()) + '.' + (m > 99 ? m : '0' + lz(m)) + 'Z';
+ }
+ });
+
+/***/ },
+/* 6 */
+/***/ function(module, exports) {
+
+ var $Object = Object;
+ module.exports = {
+ create: $Object.create,
+ getProto: $Object.getPrototypeOf,
+ isEnum: {}.propertyIsEnumerable,
+ getDesc: $Object.getOwnPropertyDescriptor,
+ setDesc: $Object.defineProperty,
+ setDescs: $Object.defineProperties,
+ getKeys: $Object.keys,
+ getNames: $Object.getOwnPropertyNames,
+ getSymbols: $Object.getOwnPropertySymbols,
+ each: [].forEach
+ };
+
+/***/ },
+/* 7 */
+/***/ function(module, exports) {
+
+ // Thank's IE8 for his funny defineProperty
+ module.exports = !!function(){
+ try {
+ return Object.defineProperty({}, 'a', {get: function(){ return 2; }}).a == 2;
+ } catch(e){ /* empty */ }
+ }();
+
+/***/ },
+/* 8 */
+/***/ function(module, exports) {
+
+ module.exports = function(bitmap, value){
+ return {
+ enumerable : !(bitmap & 1),
+ configurable: !(bitmap & 2),
+ writable : !(bitmap & 4),
+ value : value
+ };
+ };
+
+/***/ },
+/* 9 */
+/***/ function(module, exports, __webpack_require__) {
+
+ module.exports = __webpack_require__(10).document && document.documentElement;
+
+/***/ },
+/* 10 */
+/***/ function(module, exports) {
+
+ var global = typeof self != 'undefined' && self.Math == Math ? self : Function('return this')();
+ module.exports = global;
+ if(typeof __g == 'number')__g = global; // eslint-disable-line no-undef
+
+/***/ },
+/* 11 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var isObject = __webpack_require__(12)
+ , document = __webpack_require__(10).document
+ // in old IE typeof document.createElement is 'object'
+ , is = isObject(document) && isObject(document.createElement);
+ module.exports = function(it){
+ return is ? document.createElement(it) : {};
+ };
+
+/***/ },
+/* 12 */
+/***/ function(module, exports) {
+
+ // http://jsperf.com/core-js-isobject
+ module.exports = function(it){
+ return it !== null && (typeof it == 'object' || typeof it == 'function');
+ };
+
+/***/ },
+/* 13 */
+/***/ function(module, exports) {
+
+ var hasOwnProperty = {}.hasOwnProperty;
+ module.exports = function(it, key){
+ return hasOwnProperty.call(it, key);
+ };
+
+/***/ },
+/* 14 */
+/***/ function(module, exports) {
+
+ var toString = {}.toString;
+
+ module.exports = function(it){
+ return toString.call(it).slice(8, -1);
+ };
+
+/***/ },
+/* 15 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var global = __webpack_require__(10)
+ , core = __webpack_require__(16)
+ , hide = __webpack_require__(17)
+ , $redef = __webpack_require__(18)
+ , PROTOTYPE = 'prototype';
+ function ctx(fn, that){
+ return function(){
+ return fn.apply(that, arguments);
+ };
+ }
+ global.core = core;
+ // type bitmap
+ $def.F = 1; // forced
+ $def.G = 2; // global
+ $def.S = 4; // static
+ $def.P = 8; // proto
+ $def.B = 16; // bind
+ $def.W = 32; // wrap
+ function $def(type, name, source){
+ var key, own, out, exp
+ , isGlobal = type & $def.G
+ , isProto = type & $def.P
+ , target = isGlobal ? global : type & $def.S
+ ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE]
+ , exports = isGlobal ? core : core[name] || (core[name] = {});
+ if(isGlobal)source = name;
+ for(key in source){
+ // contains in native
+ own = !(type & $def.F) && target && key in target;
+ // export native or passed
+ out = (own ? target : source)[key];
+ // bind timers to global for call from export context
+ if(type & $def.B && own)exp = ctx(out, global);
+ else exp = isProto && typeof out == 'function' ? ctx(Function.call, out) : out;
+ // extend global
+ if(target && !own)$redef(target, key, out);
+ // export
+ if(exports[key] != out)hide(exports, key, exp);
+ if(isProto)(exports[PROTOTYPE] || (exports[PROTOTYPE] = {}))[key] = out;
+ }
+ }
+ module.exports = $def;
+
+/***/ },
+/* 16 */
+/***/ function(module, exports) {
+
+ var core = module.exports = {};
+ if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef
+
+/***/ },
+/* 17 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $ = __webpack_require__(6)
+ , createDesc = __webpack_require__(8);
+ module.exports = __webpack_require__(7) ? function(object, key, value){
+ return $.setDesc(object, key, createDesc(1, value));
+ } : function(object, key, value){
+ object[key] = value;
+ return object;
+ };
+
+/***/ },
+/* 18 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var global = __webpack_require__(10)
+ , has = __webpack_require__(13)
+ , hide = __webpack_require__(17)
+ , tpl = String({}.hasOwnProperty)
+ , SRC = __webpack_require__(19)('src')
+ , _toString = Function.toString;
+
+ function $redef(O, key, val, safe){
+ if(typeof val == 'function'){
+ var base = O[key];
+ hide(val, SRC, base ? String(base) : tpl.replace(/hasOwnProperty/, String(key)));
+ if(!('name' in val))val.name = key;
+ }
+ if(O === global){
+ O[key] = val;
+ } else {
+ if(!safe)delete O[key];
+ hide(O, key, val);
+ }
+ }
+
+ // add fake Function#toString for correct work wrapped methods / constructors
+ // with methods similar to LoDash isNative
+ $redef(Function.prototype, 'toString', function toString(){
+ return has(this, SRC) ? this[SRC] : _toString.call(this);
+ });
+
+ __webpack_require__(16).inspectSource = function(it){
+ return _toString.call(it);
+ };
+
+ module.exports = $redef;
+
+/***/ },
+/* 19 */
+/***/ function(module, exports) {
+
+ var id = 0
+ , px = Math.random();
+ module.exports = function(key){
+ return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
+ };
+
+/***/ },
+/* 20 */
+/***/ function(module, exports) {
+
+ // Fast apply
+ // http://jsperf.lnkit.com/fast-apply/5
+ module.exports = function(fn, args, that){
+ var un = that === undefined;
+ switch(args.length){
+ case 0: return un ? fn()
+ : fn.call(that);
+ case 1: return un ? fn(args[0])
+ : fn.call(that, args[0]);
+ case 2: return un ? fn(args[0], args[1])
+ : fn.call(that, args[0], args[1]);
+ case 3: return un ? fn(args[0], args[1], args[2])
+ : fn.call(that, args[0], args[1], args[2]);
+ case 4: return un ? fn(args[0], args[1], args[2], args[3])
+ : fn.call(that, args[0], args[1], args[2], args[3]);
+ case 5: return un ? fn(args[0], args[1], args[2], args[3], args[4])
+ : fn.call(that, args[0], args[1], args[2], args[3], args[4]);
+ } return fn.apply(that, args);
+ };
+
+/***/ },
+/* 21 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 0 -> Array#forEach
+ // 1 -> Array#map
+ // 2 -> Array#filter
+ // 3 -> Array#some
+ // 4 -> Array#every
+ // 5 -> Array#find
+ // 6 -> Array#findIndex
+ var toObject = __webpack_require__(22)
+ , ES5Object = __webpack_require__(23)
+ , ctx = __webpack_require__(25)
+ , toLength = __webpack_require__(27);
+ module.exports = function(TYPE){
+ var IS_MAP = TYPE == 1
+ , IS_FILTER = TYPE == 2
+ , IS_SOME = TYPE == 3
+ , IS_EVERY = TYPE == 4
+ , IS_FIND_INDEX = TYPE == 6
+ , NO_HOLES = TYPE == 5 || IS_FIND_INDEX;
+ return function($this, callbackfn, that){
+ var O = toObject($this, true)
+ , self = ES5Object(O)
+ , f = ctx(callbackfn, that, 3)
+ , length = toLength(self.length)
+ , index = 0
+ , result = IS_MAP ? Array(length) : IS_FILTER ? [] : undefined
+ , val, res;
+ for(;length > index; index++)if(NO_HOLES || index in self){
+ val = self[index];
+ res = f(val, index, O);
+ if(TYPE){
+ if(IS_MAP)result[index] = res; // map
+ else if(res)switch(TYPE){
+ case 3: return true; // some
+ case 5: return val; // find
+ case 6: return index; // findIndex
+ case 2: result.push(val); // filter
+ } else if(IS_EVERY)return false; // every
+ }
+ }
+ return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result;
+ };
+ };
+
+/***/ },
+/* 22 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var ES5Object = __webpack_require__(23)
+ , defined = __webpack_require__(24);
+ module.exports = function(it, realString){
+ return (realString ? Object : ES5Object)(defined(it));
+ };
+
+/***/ },
+/* 23 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // fallback for not array-like ES3 strings
+ var cof = __webpack_require__(14)
+ , $Object = Object;
+ module.exports = 0 in $Object('z') ? $Object : function(it){
+ return cof(it) == 'String' ? it.split('') : $Object(it);
+ };
+
+/***/ },
+/* 24 */
+/***/ function(module, exports) {
+
+ module.exports = function(it){
+ if(it == undefined)throw TypeError("Can't call method on " + it);
+ return it;
+ };
+
+/***/ },
+/* 25 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // Optional / simple context binding
+ var aFunction = __webpack_require__(26);
+ module.exports = function(fn, that, length){
+ aFunction(fn);
+ if(~length && that === undefined)return fn;
+ switch(length){
+ case 1: return function(a){
+ return fn.call(that, a);
+ };
+ case 2: return function(a, b){
+ return fn.call(that, a, b);
+ };
+ case 3: return function(a, b, c){
+ return fn.call(that, a, b, c);
+ };
+ } return function(/* ...args */){
+ return fn.apply(that, arguments);
+ };
+ };
+
+/***/ },
+/* 26 */
+/***/ function(module, exports) {
+
+ module.exports = function(it){
+ if(typeof it != 'function')throw TypeError(it + ' is not a function!');
+ return it;
+ };
+
+/***/ },
+/* 27 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 7.1.15 ToLength
+ var toInteger = __webpack_require__(28)
+ , min = Math.min;
+ module.exports = function(it){
+ return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991
+ };
+
+/***/ },
+/* 28 */
+/***/ function(module, exports) {
+
+ // 7.1.4 ToInteger
+ var ceil = Math.ceil
+ , floor = Math.floor;
+ module.exports = function(it){
+ return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);
+ };
+
+/***/ },
+/* 29 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var isObject = __webpack_require__(12);
+ module.exports = function(it){
+ if(!isObject(it))throw TypeError(it + ' is not an object!');
+ return it;
+ };
+
+/***/ },
+/* 30 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var toInteger = __webpack_require__(28)
+ , max = Math.max
+ , min = Math.min;
+ module.exports = function(index, length){
+ index = toInteger(index);
+ return index < 0 ? max(index + length, 0) : min(index, length);
+ };
+
+/***/ },
+/* 31 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // false -> Array#indexOf
+ // true -> Array#includes
+ var toObject = __webpack_require__(22)
+ , toLength = __webpack_require__(27)
+ , toIndex = __webpack_require__(30);
+ module.exports = function(IS_INCLUDES){
+ return function($this, el, fromIndex){
+ var O = toObject($this)
+ , length = toLength(O.length)
+ , index = toIndex(fromIndex, length)
+ , value;
+ if(IS_INCLUDES && el != el)while(length > index){
+ value = O[index++];
+ if(value != value)return true;
+ } else for(;length > index; index++)if(IS_INCLUDES || index in O){
+ if(O[index] === el)return IS_INCLUDES || index;
+ } return !IS_INCLUDES && -1;
+ };
+ };
+
+/***/ },
+/* 32 */
+/***/ function(module, exports) {
+
+ module.exports = function(regExp, replace){
+ var replacer = replace === Object(replace) ? function(part){
+ return replace[part];
+ } : replace;
+ return function(it){
+ return String(it).replace(regExp, replacer);
+ };
+ };
+
+/***/ },
+/* 33 */
+/***/ function(module, exports) {
+
+ module.exports = function(exec){
+ try {
+ exec();
+ return false;
+ } catch(e){
+ return true;
+ }
+ };
+
+/***/ },
+/* 34 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ // ECMAScript 6 symbols shim
+ var $ = __webpack_require__(6)
+ , global = __webpack_require__(10)
+ , has = __webpack_require__(13)
+ , SUPPORT_DESC = __webpack_require__(7)
+ , $def = __webpack_require__(15)
+ , $redef = __webpack_require__(18)
+ , shared = __webpack_require__(35)
+ , setTag = __webpack_require__(36)
+ , uid = __webpack_require__(19)
+ , wks = __webpack_require__(37)
+ , keyOf = __webpack_require__(38)
+ , $names = __webpack_require__(39)
+ , enumKeys = __webpack_require__(40)
+ , anObject = __webpack_require__(29)
+ , toObject = __webpack_require__(22)
+ , createDesc = __webpack_require__(8)
+ , getDesc = $.getDesc
+ , setDesc = $.setDesc
+ , $create = $.create
+ , getNames = $names.get
+ , $Symbol = global.Symbol
+ , setter = false
+ , HIDDEN = wks('_hidden')
+ , isEnum = $.isEnum
+ , SymbolRegistry = shared('symbol-registry')
+ , AllSymbols = shared('symbols')
+ , useNative = typeof $Symbol == 'function'
+ , ObjectProto = Object.prototype;
+
+ var setSymbolDesc = SUPPORT_DESC ? function(){ // fallback for old Android
+ try {
+ return $create(setDesc({}, HIDDEN, {
+ get: function(){
+ return setDesc(this, HIDDEN, {value: false})[HIDDEN];
+ }
+ }))[HIDDEN] || setDesc;
+ } catch(e){
+ return function(it, key, D){
+ var protoDesc = getDesc(ObjectProto, key);
+ if(protoDesc)delete ObjectProto[key];
+ setDesc(it, key, D);
+ if(protoDesc && it !== ObjectProto)setDesc(ObjectProto, key, protoDesc);
+ };
+ }
+ }() : setDesc;
+
+ function wrap(tag){
+ var sym = AllSymbols[tag] = $create($Symbol.prototype);
+ sym._k = tag;
+ SUPPORT_DESC && setter && setSymbolDesc(ObjectProto, tag, {
+ configurable: true,
+ set: function(value){
+ if(has(this, HIDDEN) && has(this[HIDDEN], tag))this[HIDDEN][tag] = false;
+ setSymbolDesc(this, tag, createDesc(1, value));
+ }
+ });
+ return sym;
+ }
+
+ function defineProperty(it, key, D){
+ if(D && has(AllSymbols, key)){
+ if(!D.enumerable){
+ if(!has(it, HIDDEN))setDesc(it, HIDDEN, createDesc(1, {}));
+ it[HIDDEN][key] = true;
+ } else {
+ if(has(it, HIDDEN) && it[HIDDEN][key])it[HIDDEN][key] = false;
+ D = $create(D, {enumerable: createDesc(0, false)});
+ } return setSymbolDesc(it, key, D);
+ } return setDesc(it, key, D);
+ }
+ function defineProperties(it, P){
+ anObject(it);
+ var keys = enumKeys(P = toObject(P))
+ , i = 0
+ , l = keys.length
+ , key;
+ while(l > i)defineProperty(it, key = keys[i++], P[key]);
+ return it;
+ }
+ function create(it, P){
+ return P === undefined ? $create(it) : defineProperties($create(it), P);
+ }
+ function propertyIsEnumerable(key){
+ var E = isEnum.call(this, key);
+ return E || !has(this, key) || !has(AllSymbols, key) || has(this, HIDDEN) && this[HIDDEN][key]
+ ? E : true;
+ }
+ function getOwnPropertyDescriptor(it, key){
+ var D = getDesc(it = toObject(it), key);
+ if(D && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key]))D.enumerable = true;
+ return D;
+ }
+ function getOwnPropertyNames(it){
+ var names = getNames(toObject(it))
+ , result = []
+ , i = 0
+ , key;
+ while(names.length > i)if(!has(AllSymbols, key = names[i++]) && key != HIDDEN)result.push(key);
+ return result;
+ }
+ function getOwnPropertySymbols(it){
+ var names = getNames(toObject(it))
+ , result = []
+ , i = 0
+ , key;
+ while(names.length > i)if(has(AllSymbols, key = names[i++]))result.push(AllSymbols[key]);
+ return result;
+ }
+
+ // 19.4.1.1 Symbol([description])
+ if(!useNative){
+ $Symbol = function Symbol(){
+ if(this instanceof $Symbol)throw TypeError('Symbol is not a constructor');
+ return wrap(uid(arguments[0]));
+ };
+ $redef($Symbol.prototype, 'toString', function(){
+ return this._k;
+ });
+
+ $.create = create;
+ $.isEnum = propertyIsEnumerable;
+ $.getDesc = getOwnPropertyDescriptor;
+ $.setDesc = defineProperty;
+ $.setDescs = defineProperties;
+ $.getNames = $names.get = getOwnPropertyNames;
+ $.getSymbols = getOwnPropertySymbols;
+
+ if(SUPPORT_DESC && !__webpack_require__(41)){
+ $redef(ObjectProto, 'propertyIsEnumerable', propertyIsEnumerable, true);
+ }
+ }
+
+ var symbolStatics = {
+ // 19.4.2.1 Symbol.for(key)
+ 'for': function(key){
+ return has(SymbolRegistry, key += '')
+ ? SymbolRegistry[key]
+ : SymbolRegistry[key] = $Symbol(key);
+ },
+ // 19.4.2.5 Symbol.keyFor(sym)
+ keyFor: function keyFor(key){
+ return keyOf(SymbolRegistry, key);
+ },
+ useSetter: function(){ setter = true; },
+ useSimple: function(){ setter = false; }
+ };
+ // 19.4.2.2 Symbol.hasInstance
+ // 19.4.2.3 Symbol.isConcatSpreadable
+ // 19.4.2.4 Symbol.iterator
+ // 19.4.2.6 Symbol.match
+ // 19.4.2.8 Symbol.replace
+ // 19.4.2.9 Symbol.search
+ // 19.4.2.10 Symbol.species
+ // 19.4.2.11 Symbol.split
+ // 19.4.2.12 Symbol.toPrimitive
+ // 19.4.2.13 Symbol.toStringTag
+ // 19.4.2.14 Symbol.unscopables
+ $.each.call((
+ 'hasInstance,isConcatSpreadable,iterator,match,replace,search,' +
+ 'species,split,toPrimitive,toStringTag,unscopables'
+ ).split(','), function(it){
+ var sym = wks(it);
+ symbolStatics[it] = useNative ? sym : wrap(sym);
+ }
+ );
+
+ setter = true;
+
+ $def($def.G + $def.W, {Symbol: $Symbol});
+
+ $def($def.S, 'Symbol', symbolStatics);
+
+ $def($def.S + $def.F * !useNative, 'Object', {
+ // 19.1.2.2 Object.create(O [, Properties])
+ create: create,
+ // 19.1.2.4 Object.defineProperty(O, P, Attributes)
+ defineProperty: defineProperty,
+ // 19.1.2.3 Object.defineProperties(O, Properties)
+ defineProperties: defineProperties,
+ // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)
+ getOwnPropertyDescriptor: getOwnPropertyDescriptor,
+ // 19.1.2.7 Object.getOwnPropertyNames(O)
+ getOwnPropertyNames: getOwnPropertyNames,
+ // 19.1.2.8 Object.getOwnPropertySymbols(O)
+ getOwnPropertySymbols: getOwnPropertySymbols
+ });
+
+ // 19.4.3.5 Symbol.prototype[@@toStringTag]
+ setTag($Symbol, 'Symbol');
+ // 20.2.1.9 Math[@@toStringTag]
+ setTag(Math, 'Math', true);
+ // 24.3.3 JSON[@@toStringTag]
+ setTag(global.JSON, 'JSON', true);
+
+/***/ },
+/* 35 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var global = __webpack_require__(10)
+ , SHARED = '__core-js_shared__'
+ , store = global[SHARED] || (global[SHARED] = {});
+ module.exports = function(key){
+ return store[key] || (store[key] = {});
+ };
+
+/***/ },
+/* 36 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var has = __webpack_require__(13)
+ , hide = __webpack_require__(17)
+ , TAG = __webpack_require__(37)('toStringTag');
+
+ module.exports = function(it, tag, stat){
+ if(it && !has(it = stat ? it : it.prototype, TAG))hide(it, TAG, tag);
+ };
+
+/***/ },
+/* 37 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var store = __webpack_require__(35)('wks')
+ , Symbol = __webpack_require__(10).Symbol;
+ module.exports = function(name){
+ return store[name] || (store[name] =
+ Symbol && Symbol[name] || (Symbol || __webpack_require__(19))('Symbol.' + name));
+ };
+
+/***/ },
+/* 38 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $ = __webpack_require__(6)
+ , toObject = __webpack_require__(22);
+ module.exports = function(object, el){
+ var O = toObject(object)
+ , keys = $.getKeys(O)
+ , length = keys.length
+ , index = 0
+ , key;
+ while(length > index)if(O[key = keys[index++]] === el)return key;
+ };
+
+/***/ },
+/* 39 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
+ var toString = {}.toString
+ , toObject = __webpack_require__(22)
+ , getNames = __webpack_require__(6).getNames;
+
+ var windowNames = typeof window == 'object' && Object.getOwnPropertyNames
+ ? Object.getOwnPropertyNames(window) : [];
+
+ function getWindowNames(it){
+ try {
+ return getNames(it);
+ } catch(e){
+ return windowNames.slice();
+ }
+ }
+
+ module.exports.get = function getOwnPropertyNames(it){
+ if(windowNames && toString.call(it) == '[object Window]')return getWindowNames(it);
+ return getNames(toObject(it));
+ };
+
+/***/ },
+/* 40 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $ = __webpack_require__(6);
+ module.exports = function(it){
+ var keys = $.getKeys(it)
+ , isEnum = $.isEnum
+ , getSymbols = $.getSymbols;
+ if(getSymbols)for(var symbols = getSymbols(it), i = 0, key; symbols.length > i; ){
+ if(isEnum.call(it, key = symbols[i++]))keys.push(key);
+ }
+ return keys;
+ };
+
+/***/ },
+/* 41 */
+/***/ function(module, exports) {
+
+ module.exports = false;
+
+/***/ },
+/* 42 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 19.1.3.1 Object.assign(target, source)
+ var $def = __webpack_require__(15);
+ $def($def.S, 'Object', {assign: __webpack_require__(43)});
+
+/***/ },
+/* 43 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var toObject = __webpack_require__(22)
+ , ES5Object = __webpack_require__(23)
+ , enumKeys = __webpack_require__(40);
+ // 19.1.2.1 Object.assign(target, source, ...)
+ /* eslint-disable no-unused-vars */
+ module.exports = Object.assign || function assign(target, source){
+ /* eslint-enable no-unused-vars */
+ var T = toObject(target, true)
+ , l = arguments.length
+ , i = 1;
+ while(l > i){
+ var S = ES5Object(arguments[i++])
+ , keys = enumKeys(S)
+ , length = keys.length
+ , j = 0
+ , key;
+ while(length > j)T[key = keys[j++]] = S[key];
+ }
+ return T;
+ };
+
+/***/ },
+/* 44 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 19.1.3.10 Object.is(value1, value2)
+ var $def = __webpack_require__(15);
+ $def($def.S, 'Object', {
+ is: __webpack_require__(45)
+ });
+
+/***/ },
+/* 45 */
+/***/ function(module, exports) {
+
+ module.exports = Object.is || function is(x, y){
+ return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
+ };
+
+/***/ },
+/* 46 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 19.1.3.19 Object.setPrototypeOf(O, proto)
+ var $def = __webpack_require__(15);
+ $def($def.S, 'Object', {setPrototypeOf: __webpack_require__(47).set});
+
+/***/ },
+/* 47 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // Works with __proto__ only. Old v8 can't work with null proto objects.
+ /* eslint-disable no-proto */
+ var getDesc = __webpack_require__(6).getDesc
+ , isObject = __webpack_require__(12)
+ , anObject = __webpack_require__(29);
+ function check(O, proto){
+ anObject(O);
+ if(!isObject(proto) && proto !== null)throw TypeError(proto + ": can't set as prototype!");
+ }
+ module.exports = {
+ set: Object.setPrototypeOf || ('__proto__' in {} // eslint-disable-line
+ ? function(buggy, set){
+ try {
+ set = __webpack_require__(25)(Function.call, getDesc(Object.prototype, '__proto__').set, 2);
+ set({}, []);
+ } catch(e){ buggy = true; }
+ return function setPrototypeOf(O, proto){
+ check(O, proto);
+ if(buggy)O.__proto__ = proto;
+ else set(O, proto);
+ return O;
+ };
+ }()
+ : undefined),
+ check: check
+ };
+
+/***/ },
+/* 48 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ // 19.1.3.6 Object.prototype.toString()
+ var classof = __webpack_require__(49)
+ , test = {};
+ test[__webpack_require__(37)('toStringTag')] = 'z';
+ if(test + '' != '[object z]'){
+ __webpack_require__(18)(Object.prototype, 'toString', function toString(){
+ return '[object ' + classof(this) + ']';
+ }, true);
+ }
+
+/***/ },
+/* 49 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var cof = __webpack_require__(14)
+ , TAG = __webpack_require__(37)('toStringTag')
+ // ES3 wrong here
+ , ARG = cof(function(){ return arguments; }()) == 'Arguments';
+
+ module.exports = function(it){
+ var O, T, B;
+ return it === undefined ? 'Undefined' : it === null ? 'Null'
+ // @@toStringTag case
+ : typeof (T = (O = Object(it))[TAG]) == 'string' ? T
+ // builtinTag case
+ : ARG ? cof(O)
+ // ES3 arguments fallback
+ : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;
+ };
+
+/***/ },
+/* 50 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $ = __webpack_require__(6)
+ , core = __webpack_require__(16)
+ , $def = __webpack_require__(15)
+ , toObject = __webpack_require__(22)
+ , isObject = __webpack_require__(12);
+ $.each.call(('freeze,seal,preventExtensions,isFrozen,isSealed,isExtensible,' +
+ 'getOwnPropertyDescriptor,getPrototypeOf,keys,getOwnPropertyNames').split(',')
+ , function(KEY, ID){
+ var fn = (core.Object || {})[KEY] || Object[KEY]
+ , forced = 0
+ , method = {};
+ method[KEY] = ID == 0 ? function freeze(it){
+ return isObject(it) ? fn(it) : it;
+ } : ID == 1 ? function seal(it){
+ return isObject(it) ? fn(it) : it;
+ } : ID == 2 ? function preventExtensions(it){
+ return isObject(it) ? fn(it) : it;
+ } : ID == 3 ? function isFrozen(it){
+ return isObject(it) ? fn(it) : true;
+ } : ID == 4 ? function isSealed(it){
+ return isObject(it) ? fn(it) : true;
+ } : ID == 5 ? function isExtensible(it){
+ return isObject(it) ? fn(it) : false;
+ } : ID == 6 ? function getOwnPropertyDescriptor(it, key){
+ return fn(toObject(it), key);
+ } : ID == 7 ? function getPrototypeOf(it){
+ return fn(toObject(it, true));
+ } : ID == 8 ? function keys(it){
+ return fn(toObject(it));
+ } : __webpack_require__(39).get;
+ try {
+ fn('z');
+ } catch(e){
+ forced = 1;
+ }
+ $def($def.S + $def.F * forced, 'Object', method);
+ });
+
+/***/ },
+/* 51 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var $ = __webpack_require__(6)
+ , has = __webpack_require__(13)
+ , createDesc = __webpack_require__(8)
+ , setDesc = $.setDesc
+ , FunctionProto = Function.prototype
+ , NAME = 'name';
+ // 19.2.4.2 name
+ NAME in FunctionProto || __webpack_require__(7) && setDesc(FunctionProto, NAME, {
+ configurable: true,
+ get: function(){
+ var match = String(this).match(/^\s*function ([^ (]*)/)
+ , name = match ? match[1] : '';
+ has(this, NAME) || setDesc(this, NAME, createDesc(5, name));
+ return name;
+ },
+ set: function(value){
+ has(this, NAME) || setDesc(this, NAME, createDesc(0, value));
+ }
+ });
+
+/***/ },
+/* 52 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $ = __webpack_require__(6)
+ , isObject = __webpack_require__(12)
+ , HAS_INSTANCE = __webpack_require__(37)('hasInstance')
+ , FunctionProto = Function.prototype;
+ // 19.2.3.6 Function.prototype[@@hasInstance](V)
+ if(!(HAS_INSTANCE in FunctionProto))$.setDesc(FunctionProto, HAS_INSTANCE, {value: function(O){
+ if(typeof this != 'function' || !isObject(O))return false;
+ if(!isObject(this.prototype))return O instanceof this;
+ // for environment w/o native `@@hasInstance` logic enough `instanceof`, but add this:
+ while(O = $.getProto(O))if(this.prototype === O)return true;
+ return false;
+ }});
+
+/***/ },
+/* 53 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var $ = __webpack_require__(6)
+ , global = __webpack_require__(10)
+ , has = __webpack_require__(13)
+ , cof = __webpack_require__(14)
+ , isObject = __webpack_require__(12)
+ , NUMBER = 'Number'
+ , $Number = global[NUMBER]
+ , Base = $Number
+ , proto = $Number.prototype
+ // Opera ~12 has broken Object#toString
+ , fakeNumber = cof($.create(proto)) == NUMBER
+ ? function(it){ try { proto.valueOf.call(it); return false; } catch(e){ return true; } }
+ : function(it){ return cof(it) != NUMBER; };
+ function toPrimitive(it){
+ var fn, val;
+ if(typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it)))return val;
+ if(typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it)))return val;
+ throw TypeError("Can't convert object to number");
+ }
+ function toNumber(it){
+ if(isObject(it))it = toPrimitive(it);
+ if(typeof it == 'string' && it.length > 2 && it.charCodeAt(0) == 48){
+ var binary = false;
+ switch(it.charCodeAt(1)){
+ case 66 : case 98 : binary = true;
+ case 79 : case 111 : return parseInt(it.slice(2), binary ? 2 : 8);
+ }
+ } return +it;
+ }
+ if(!($Number('0o1') && $Number('0b1'))){
+ $Number = function Number(it){
+ return this instanceof $Number && fakeNumber(this) ? new Base(toNumber(it)) : toNumber(it);
+ };
+ $.each.call(__webpack_require__(7) ? $.getNames(Base) : (
+ // ES3:
+ 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +
+ // ES6 (in case, if modules with ES6 Number statics required before):
+ 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +
+ 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger'
+ ).split(','), function(key){
+ if(has(Base, key) && !has($Number, key)){
+ $.setDesc($Number, key, $.getDesc(Base, key));
+ }
+ }
+ );
+ $Number.prototype = proto;
+ proto.constructor = $Number;
+ __webpack_require__(18)(global, NUMBER, $Number);
+ }
+
+/***/ },
+/* 54 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.1.2.1 Number.EPSILON
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Number', {EPSILON: Math.pow(2, -52)});
+
+/***/ },
+/* 55 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.1.2.2 Number.isFinite(number)
+ var $def = __webpack_require__(15)
+ , _isFinite = __webpack_require__(10).isFinite;
+
+ $def($def.S, 'Number', {
+ isFinite: function isFinite(it){
+ return typeof it == 'number' && _isFinite(it);
+ }
+ });
+
+/***/ },
+/* 56 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.1.2.3 Number.isInteger(number)
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Number', {isInteger: __webpack_require__(57)});
+
+/***/ },
+/* 57 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.1.2.3 Number.isInteger(number)
+ var isObject = __webpack_require__(12)
+ , floor = Math.floor;
+ module.exports = function isInteger(it){
+ return !isObject(it) && isFinite(it) && floor(it) === it;
+ };
+
+/***/ },
+/* 58 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.1.2.4 Number.isNaN(number)
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Number', {
+ isNaN: function isNaN(number){
+ return number != number;
+ }
+ });
+
+/***/ },
+/* 59 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.1.2.5 Number.isSafeInteger(number)
+ var $def = __webpack_require__(15)
+ , isInteger = __webpack_require__(57)
+ , abs = Math.abs;
+
+ $def($def.S, 'Number', {
+ isSafeInteger: function isSafeInteger(number){
+ return isInteger(number) && abs(number) <= 0x1fffffffffffff;
+ }
+ });
+
+/***/ },
+/* 60 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.1.2.6 Number.MAX_SAFE_INTEGER
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Number', {MAX_SAFE_INTEGER: 0x1fffffffffffff});
+
+/***/ },
+/* 61 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.1.2.10 Number.MIN_SAFE_INTEGER
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Number', {MIN_SAFE_INTEGER: -0x1fffffffffffff});
+
+/***/ },
+/* 62 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.1.2.12 Number.parseFloat(string)
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Number', {parseFloat: parseFloat});
+
+/***/ },
+/* 63 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.1.2.13 Number.parseInt(string, radix)
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Number', {parseInt: parseInt});
+
+/***/ },
+/* 64 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.3 Math.acosh(x)
+ var $def = __webpack_require__(15)
+ , E = Math.E
+ , sqrt = Math.sqrt;
+
+ $def($def.S, 'Math', {
+ acosh: function acosh(x){
+ return (x = +x) < 1 ? NaN : isFinite(x)
+ ? Math.log(x / E + sqrt(x + 1) * sqrt(x - 1) / E) + 1 : x;
+ }
+ });
+
+/***/ },
+/* 65 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.5 Math.asinh(x)
+ var $def = __webpack_require__(15);
+
+ function asinh(x){
+ return !isFinite(x = +x) || x == 0 ? x : x < 0 ? -asinh(-x) : Math.log(x + Math.sqrt(x * x + 1));
+ }
+
+ $def($def.S, 'Math', {asinh: asinh});
+
+/***/ },
+/* 66 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.7 Math.atanh(x)
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Math', {
+ atanh: function atanh(x){
+ return (x = +x) == 0 ? x : Math.log((1 + x) / (1 - x)) / 2;
+ }
+ });
+
+/***/ },
+/* 67 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.9 Math.cbrt(x)
+ var $def = __webpack_require__(15)
+ , sign = __webpack_require__(68);
+
+ $def($def.S, 'Math', {
+ cbrt: function cbrt(x){
+ return sign(x = +x) * Math.pow(Math.abs(x), 1 / 3);
+ }
+ });
+
+/***/ },
+/* 68 */
+/***/ function(module, exports) {
+
+ // 20.2.2.28 Math.sign(x)
+ module.exports = Math.sign || function sign(x){
+ return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1;
+ };
+
+/***/ },
+/* 69 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.11 Math.clz32(x)
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Math', {
+ clz32: function clz32(x){
+ return (x >>>= 0) ? 31 - Math.floor(Math.log(x + 0.5) * Math.LOG2E) : 32;
+ }
+ });
+
+/***/ },
+/* 70 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.12 Math.cosh(x)
+ var $def = __webpack_require__(15)
+ , exp = Math.exp;
+
+ $def($def.S, 'Math', {
+ cosh: function cosh(x){
+ return (exp(x = +x) + exp(-x)) / 2;
+ }
+ });
+
+/***/ },
+/* 71 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.14 Math.expm1(x)
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Math', {expm1: __webpack_require__(72)});
+
+/***/ },
+/* 72 */
+/***/ function(module, exports) {
+
+ // 20.2.2.14 Math.expm1(x)
+ module.exports = Math.expm1 || function expm1(x){
+ return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : Math.exp(x) - 1;
+ };
+
+/***/ },
+/* 73 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.16 Math.fround(x)
+ var $def = __webpack_require__(15)
+ , sign = __webpack_require__(68)
+ , pow = Math.pow
+ , EPSILON = pow(2, -52)
+ , EPSILON32 = pow(2, -23)
+ , MAX32 = pow(2, 127) * (2 - EPSILON32)
+ , MIN32 = pow(2, -126);
+
+ function roundTiesToEven(n){
+ return n + 1 / EPSILON - 1 / EPSILON;
+ }
+
+
+ $def($def.S, 'Math', {
+ fround: function fround(x){
+ var $abs = Math.abs(x)
+ , $sign = sign(x)
+ , a, result;
+ if($abs < MIN32)return $sign * roundTiesToEven($abs / MIN32 / EPSILON32) * MIN32 * EPSILON32;
+ a = (1 + EPSILON32 / EPSILON) * $abs;
+ result = a - (a - $abs);
+ if(result > MAX32 || result != result)return $sign * Infinity;
+ return $sign * result;
+ }
+ });
+
+/***/ },
+/* 74 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.17 Math.hypot([value1[, value2[, … ]]])
+ var $def = __webpack_require__(15)
+ , abs = Math.abs;
+
+ $def($def.S, 'Math', {
+ hypot: function hypot(value1, value2){ // eslint-disable-line no-unused-vars
+ var sum = 0
+ , i = 0
+ , len = arguments.length
+ , larg = 0
+ , arg, div;
+ while(i < len){
+ arg = abs(arguments[i++]);
+ if(larg < arg){
+ div = larg / arg;
+ sum = sum * div * div + 1;
+ larg = arg;
+ } else if(arg > 0){
+ div = arg / larg;
+ sum += div * div;
+ } else sum += arg;
+ }
+ return larg === Infinity ? Infinity : larg * Math.sqrt(sum);
+ }
+ });
+
+/***/ },
+/* 75 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.18 Math.imul(x, y)
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Math', {
+ imul: function imul(x, y){
+ var UINT16 = 0xffff
+ , xn = +x
+ , yn = +y
+ , xl = UINT16 & xn
+ , yl = UINT16 & yn;
+ return 0 | xl * yl + ((UINT16 & xn >>> 16) * yl + xl * (UINT16 & yn >>> 16) << 16 >>> 0);
+ }
+ });
+
+/***/ },
+/* 76 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.21 Math.log10(x)
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Math', {
+ log10: function log10(x){
+ return Math.log(x) / Math.LN10;
+ }
+ });
+
+/***/ },
+/* 77 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.20 Math.log1p(x)
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Math', {
+ log1p: function log1p(x){
+ return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x);
+ }
+ });
+
+/***/ },
+/* 78 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.22 Math.log2(x)
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Math', {
+ log2: function log2(x){
+ return Math.log(x) / Math.LN2;
+ }
+ });
+
+/***/ },
+/* 79 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.28 Math.sign(x)
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Math', {sign: __webpack_require__(68)});
+
+/***/ },
+/* 80 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.30 Math.sinh(x)
+ var $def = __webpack_require__(15)
+ , expm1 = __webpack_require__(72)
+ , exp = Math.exp;
+
+ $def($def.S, 'Math', {
+ sinh: function sinh(x){
+ return Math.abs(x = +x) < 1
+ ? (expm1(x) - expm1(-x)) / 2
+ : (exp(x - 1) - exp(-x - 1)) * (Math.E / 2);
+ }
+ });
+
+/***/ },
+/* 81 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.33 Math.tanh(x)
+ var $def = __webpack_require__(15)
+ , expm1 = __webpack_require__(72)
+ , exp = Math.exp;
+
+ $def($def.S, 'Math', {
+ tanh: function tanh(x){
+ var a = expm1(x = +x)
+ , b = expm1(-x);
+ return a == Infinity ? 1 : b == Infinity ? -1 : (a - b) / (exp(x) + exp(-x));
+ }
+ });
+
+/***/ },
+/* 82 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 20.2.2.34 Math.trunc(x)
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Math', {
+ trunc: function trunc(it){
+ return (it > 0 ? Math.floor : Math.ceil)(it);
+ }
+ });
+
+/***/ },
+/* 83 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $def = __webpack_require__(15)
+ , toIndex = __webpack_require__(30)
+ , fromCharCode = String.fromCharCode
+ , $fromCodePoint = String.fromCodePoint;
+
+ // length should be 1, old FF problem
+ $def($def.S + $def.F * (!!$fromCodePoint && $fromCodePoint.length != 1), 'String', {
+ // 21.1.2.2 String.fromCodePoint(...codePoints)
+ fromCodePoint: function fromCodePoint(x){ // eslint-disable-line no-unused-vars
+ var res = []
+ , len = arguments.length
+ , i = 0
+ , code;
+ while(len > i){
+ code = +arguments[i++];
+ if(toIndex(code, 0x10ffff) !== code)throw RangeError(code + ' is not a valid code point');
+ res.push(code < 0x10000
+ ? fromCharCode(code)
+ : fromCharCode(((code -= 0x10000) >> 10) + 0xd800, code % 0x400 + 0xdc00)
+ );
+ } return res.join('');
+ }
+ });
+
+/***/ },
+/* 84 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $def = __webpack_require__(15)
+ , toObject = __webpack_require__(22)
+ , toLength = __webpack_require__(27);
+
+ $def($def.S, 'String', {
+ // 21.1.2.4 String.raw(callSite, ...substitutions)
+ raw: function raw(callSite){
+ var tpl = toObject(callSite.raw)
+ , len = toLength(tpl.length)
+ , sln = arguments.length
+ , res = []
+ , i = 0;
+ while(len > i){
+ res.push(String(tpl[i++]));
+ if(i < sln)res.push(String(arguments[i]));
+ } return res.join('');
+ }
+ });
+
+/***/ },
+/* 85 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $at = __webpack_require__(86)(true);
+
+ // 21.1.3.27 String.prototype[@@iterator]()
+ __webpack_require__(87)(String, 'String', function(iterated){
+ this._t = String(iterated); // target
+ this._i = 0; // next index
+ // 21.1.5.2.1 %StringIteratorPrototype%.next()
+ }, function(){
+ var O = this._t
+ , index = this._i
+ , point;
+ if(index >= O.length)return {value: undefined, done: true};
+ point = $at(O, index);
+ this._i += point.length;
+ return {value: point, done: false};
+ });
+
+/***/ },
+/* 86 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // true -> String#at
+ // false -> String#codePointAt
+ var toInteger = __webpack_require__(28)
+ , defined = __webpack_require__(24);
+ module.exports = function(TO_STRING){
+ return function(that, pos){
+ var s = String(defined(that))
+ , i = toInteger(pos)
+ , l = s.length
+ , a, b;
+ if(i < 0 || i >= l)return TO_STRING ? '' : undefined;
+ a = s.charCodeAt(i);
+ return a < 0xd800 || a > 0xdbff || i + 1 === l
+ || (b = s.charCodeAt(i + 1)) < 0xdc00 || b > 0xdfff
+ ? TO_STRING ? s.charAt(i) : a
+ : TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;
+ };
+ };
+
+/***/ },
+/* 87 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var LIBRARY = __webpack_require__(41)
+ , $def = __webpack_require__(15)
+ , $redef = __webpack_require__(18)
+ , hide = __webpack_require__(17)
+ , has = __webpack_require__(13)
+ , SYMBOL_ITERATOR = __webpack_require__(37)('iterator')
+ , Iterators = __webpack_require__(88)
+ , FF_ITERATOR = '@@iterator'
+ , KEYS = 'keys'
+ , VALUES = 'values';
+ function returnThis(){ return this; }
+ module.exports = function(Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE){
+ __webpack_require__(89)(Constructor, NAME, next);
+ function createMethod(kind){
+ switch(kind){
+ case KEYS: return function keys(){ return new Constructor(this, kind); };
+ case VALUES: return function values(){ return new Constructor(this, kind); };
+ } return function entries(){ return new Constructor(this, kind); };
+ }
+ var TAG = NAME + ' Iterator'
+ , proto = Base.prototype
+ , _native = proto[SYMBOL_ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT]
+ , _default = _native || createMethod(DEFAULT)
+ , methods, key;
+ // Fix native
+ if(_native){
+ var IteratorPrototype = __webpack_require__(6).getProto(_default.call(new Base));
+ // Set @@toStringTag to native iterators
+ __webpack_require__(36)(IteratorPrototype, TAG, true);
+ // FF fix
+ if(!LIBRARY && has(proto, FF_ITERATOR))hide(IteratorPrototype, SYMBOL_ITERATOR, returnThis);
+ }
+ // Define iterator
+ if(!LIBRARY || FORCE)hide(proto, SYMBOL_ITERATOR, _default);
+ // Plug for library
+ Iterators[NAME] = _default;
+ Iterators[TAG] = returnThis;
+ if(DEFAULT){
+ methods = {
+ keys: IS_SET ? _default : createMethod(KEYS),
+ values: DEFAULT == VALUES ? _default : createMethod(VALUES),
+ entries: DEFAULT != VALUES ? _default : createMethod('entries')
+ };
+ if(FORCE)for(key in methods){
+ if(!(key in proto))$redef(proto, key, methods[key]);
+ } else $def($def.P + $def.F * __webpack_require__(90), NAME, methods);
+ }
+ };
+
+/***/ },
+/* 88 */
+/***/ function(module, exports) {
+
+ module.exports = {};
+
+/***/ },
+/* 89 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var $ = __webpack_require__(6)
+ , IteratorPrototype = {};
+
+ // 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
+ __webpack_require__(17)(IteratorPrototype, __webpack_require__(37)('iterator'), function(){ return this; });
+
+ module.exports = function(Constructor, NAME, next){
+ Constructor.prototype = $.create(IteratorPrototype, {next: __webpack_require__(8)(1,next)});
+ __webpack_require__(36)(Constructor, NAME + ' Iterator');
+ };
+
+/***/ },
+/* 90 */
+/***/ function(module, exports) {
+
+ // Safari has buggy iterators w/o `next`
+ module.exports = 'keys' in [] && !('next' in [].keys());
+
+/***/ },
+/* 91 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var $def = __webpack_require__(15)
+ , $at = __webpack_require__(86)(false);
+ $def($def.P, 'String', {
+ // 21.1.3.3 String.prototype.codePointAt(pos)
+ codePointAt: function codePointAt(pos){
+ return $at(this, pos);
+ }
+ });
+
+/***/ },
+/* 92 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var $def = __webpack_require__(15)
+ , toLength = __webpack_require__(27)
+ , context = __webpack_require__(93);
+
+ // should throw error on regex
+ $def($def.P + $def.F * !__webpack_require__(33)(function(){ 'q'.endsWith(/./); }), 'String', {
+ // 21.1.3.6 String.prototype.endsWith(searchString [, endPosition])
+ endsWith: function endsWith(searchString /*, endPosition = @length */){
+ var that = context(this, searchString, 'endsWith')
+ , endPosition = arguments[1]
+ , len = toLength(that.length)
+ , end = endPosition === undefined ? len : Math.min(toLength(endPosition), len)
+ , search = String(searchString);
+ return that.slice(end - search.length, end) === search;
+ }
+ });
+
+/***/ },
+/* 93 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // helper for String#{startsWith, endsWith, includes}
+ var defined = __webpack_require__(24)
+ , cof = __webpack_require__(14);
+
+ module.exports = function(that, searchString, NAME){
+ if(cof(searchString) == 'RegExp')throw TypeError('String#' + NAME + " doesn't accept regex!");
+ return String(defined(that));
+ };
+
+/***/ },
+/* 94 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var $def = __webpack_require__(15)
+ , context = __webpack_require__(93);
+
+ $def($def.P, 'String', {
+ // 21.1.3.7 String.prototype.includes(searchString, position = 0)
+ includes: function includes(searchString /*, position = 0 */){
+ return !!~context(this, searchString, 'includes').indexOf(searchString, arguments[1]);
+ }
+ });
+
+/***/ },
+/* 95 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $def = __webpack_require__(15);
+
+ $def($def.P, 'String', {
+ // 21.1.3.13 String.prototype.repeat(count)
+ repeat: __webpack_require__(96)
+ });
+
+/***/ },
+/* 96 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var toInteger = __webpack_require__(28)
+ , defined = __webpack_require__(24);
+
+ module.exports = function repeat(count){
+ var str = String(defined(this))
+ , res = ''
+ , n = toInteger(count);
+ if(n < 0 || n == Infinity)throw RangeError("Count can't be negative");
+ for(;n > 0; (n >>>= 1) && (str += str))if(n & 1)res += str;
+ return res;
+ };
+
+/***/ },
+/* 97 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var $def = __webpack_require__(15)
+ , toLength = __webpack_require__(27)
+ , context = __webpack_require__(93);
+
+ // should throw error on regex
+ $def($def.P + $def.F * !__webpack_require__(33)(function(){ 'q'.startsWith(/./); }), 'String', {
+ // 21.1.3.18 String.prototype.startsWith(searchString [, position ])
+ startsWith: function startsWith(searchString /*, position = 0 */){
+ var that = context(this, searchString, 'startsWith')
+ , index = toLength(Math.min(arguments[1], that.length))
+ , search = String(searchString);
+ return that.slice(index, index + search.length) === search;
+ }
+ });
+
+/***/ },
+/* 98 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var ctx = __webpack_require__(25)
+ , $def = __webpack_require__(15)
+ , toObject = __webpack_require__(22)
+ , call = __webpack_require__(99)
+ , isArrayIter = __webpack_require__(100)
+ , toLength = __webpack_require__(27)
+ , getIterFn = __webpack_require__(101);
+ $def($def.S + $def.F * !__webpack_require__(102)(function(iter){ Array.from(iter); }), 'Array', {
+ // 22.1.2.1 Array.from(arrayLike, mapfn = undefined, thisArg = undefined)
+ from: function from(arrayLike/*, mapfn = undefined, thisArg = undefined*/){
+ var O = toObject(arrayLike, true)
+ , C = typeof this == 'function' ? this : Array
+ , mapfn = arguments[1]
+ , mapping = mapfn !== undefined
+ , index = 0
+ , iterFn = getIterFn(O)
+ , length, result, step, iterator;
+ if(mapping)mapfn = ctx(mapfn, arguments[2], 2);
+ // if object isn't iterable or it's array with default iterator - use simple case
+ if(iterFn != undefined && !(C == Array && isArrayIter(iterFn))){
+ for(iterator = iterFn.call(O), result = new C; !(step = iterator.next()).done; index++){
+ result[index] = mapping ? call(iterator, mapfn, [step.value, index], true) : step.value;
+ }
+ } else {
+ for(result = new C(length = toLength(O.length)); length > index; index++){
+ result[index] = mapping ? mapfn(O[index], index) : O[index];
+ }
+ }
+ result.length = index;
+ return result;
+ }
+ });
+
+/***/ },
+/* 99 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var anObject = __webpack_require__(29);
+ function close(iterator){
+ var ret = iterator['return'];
+ if(ret !== undefined)anObject(ret.call(iterator));
+ }
+ module.exports = function(iterator, fn, value, entries){
+ try {
+ return entries ? fn(anObject(value)[0], value[1]) : fn(value);
+ } catch(e){
+ close(iterator);
+ throw e;
+ }
+ };
+
+/***/ },
+/* 100 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var Iterators = __webpack_require__(88)
+ , ITERATOR = __webpack_require__(37)('iterator');
+ module.exports = function(it){
+ return ('Array' in Iterators ? Iterators.Array : Array.prototype[ITERATOR]) === it;
+ };
+
+/***/ },
+/* 101 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var global = __webpack_require__(10)
+ , classof = __webpack_require__(49)
+ , ITERATOR = __webpack_require__(37)('iterator')
+ , Iterators = __webpack_require__(88);
+ module.exports = __webpack_require__(16).getIteratorMethod = function(it){
+ var Symbol = global.Symbol;
+ if(it != undefined){
+ return it[Symbol && Symbol.iterator || '@@iterator']
+ || it[ITERATOR]
+ || Iterators[classof(it)];
+ }
+ };
+
+/***/ },
+/* 102 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var SYMBOL_ITERATOR = __webpack_require__(37)('iterator')
+ , SAFE_CLOSING = false;
+ try {
+ var riter = [7][SYMBOL_ITERATOR]();
+ riter['return'] = function(){ SAFE_CLOSING = true; };
+ Array.from(riter, function(){ throw 2; });
+ } catch(e){ /* empty */ }
+ module.exports = function(exec){
+ if(!SAFE_CLOSING)return false;
+ var safe = false;
+ try {
+ var arr = [7]
+ , iter = arr[SYMBOL_ITERATOR]();
+ iter.next = function(){ safe = true; };
+ arr[SYMBOL_ITERATOR] = function(){ return iter; };
+ exec(arr);
+ } catch(e){ /* empty */ }
+ return safe;
+ };
+
+/***/ },
+/* 103 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $def = __webpack_require__(15);
+ $def($def.S, 'Array', {
+ // 22.1.2.3 Array.of( ...items)
+ of: function of(/* ...args */){
+ var index = 0
+ , length = arguments.length
+ , result = new (typeof this == 'function' ? this : Array)(length);
+ while(length > index)result[index] = arguments[index++];
+ result.length = length;
+ return result;
+ }
+ });
+
+/***/ },
+/* 104 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var setUnscope = __webpack_require__(105)
+ , step = __webpack_require__(106)
+ , Iterators = __webpack_require__(88)
+ , toObject = __webpack_require__(22);
+
+ // 22.1.3.4 Array.prototype.entries()
+ // 22.1.3.13 Array.prototype.keys()
+ // 22.1.3.29 Array.prototype.values()
+ // 22.1.3.30 Array.prototype[@@iterator]()
+ __webpack_require__(87)(Array, 'Array', function(iterated, kind){
+ this._t = toObject(iterated); // target
+ this._i = 0; // next index
+ this._k = kind; // kind
+ // 22.1.5.2.1 %ArrayIteratorPrototype%.next()
+ }, function(){
+ var O = this._t
+ , kind = this._k
+ , index = this._i++;
+ if(!O || index >= O.length){
+ this._t = undefined;
+ return step(1);
+ }
+ if(kind == 'keys' )return step(0, index);
+ if(kind == 'values')return step(0, O[index]);
+ return step(0, [index, O[index]]);
+ }, 'values');
+
+ // argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)
+ Iterators.Arguments = Iterators.Array;
+
+ setUnscope('keys');
+ setUnscope('values');
+ setUnscope('entries');
+
+/***/ },
+/* 105 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 22.1.3.31 Array.prototype[@@unscopables]
+ var UNSCOPABLES = __webpack_require__(37)('unscopables');
+ if(!(UNSCOPABLES in []))__webpack_require__(17)(Array.prototype, UNSCOPABLES, {});
+ module.exports = function(key){
+ [][UNSCOPABLES][key] = true;
+ };
+
+/***/ },
+/* 106 */
+/***/ function(module, exports) {
+
+ module.exports = function(done, value){
+ return {value: value, done: !!done};
+ };
+
+/***/ },
+/* 107 */
+/***/ function(module, exports, __webpack_require__) {
+
+ __webpack_require__(108)(Array);
+
+/***/ },
+/* 108 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $ = __webpack_require__(6)
+ , SPECIES = __webpack_require__(37)('species');
+ module.exports = function(C){
+ if(__webpack_require__(7) && !(SPECIES in C))$.setDesc(C, SPECIES, {
+ configurable: true,
+ get: function(){ return this; }
+ });
+ };
+
+/***/ },
+/* 109 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var $def = __webpack_require__(15)
+ , toObject = __webpack_require__(22)
+ , toIndex = __webpack_require__(30)
+ , toLength = __webpack_require__(27);
+ $def($def.P, 'Array', {
+ // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length)
+ copyWithin: function copyWithin(target/* = 0 */, start /* = 0, end = @length */){
+ var O = toObject(this, true)
+ , len = toLength(O.length)
+ , to = toIndex(target, len)
+ , from = toIndex(start, len)
+ , end = arguments[2]
+ , fin = end === undefined ? len : toIndex(end, len)
+ , count = Math.min(fin - from, len - to)
+ , inc = 1;
+ if(from < to && to < from + count){
+ inc = -1;
+ from = from + count - 1;
+ to = to + count - 1;
+ }
+ while(count-- > 0){
+ if(from in O)O[to] = O[from];
+ else delete O[to];
+ to += inc;
+ from += inc;
+ } return O;
+ }
+ });
+ __webpack_require__(105)('copyWithin');
+
+/***/ },
+/* 110 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var $def = __webpack_require__(15)
+ , toObject = __webpack_require__(22)
+ , toIndex = __webpack_require__(30)
+ , toLength = __webpack_require__(27);
+ $def($def.P, 'Array', {
+ // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length)
+ fill: function fill(value /*, start = 0, end = @length */){
+ var O = toObject(this, true)
+ , length = toLength(O.length)
+ , index = toIndex(arguments[1], length)
+ , end = arguments[2]
+ , endPos = end === undefined ? length : toIndex(end, length);
+ while(endPos > index)O[index++] = value;
+ return O;
+ }
+ });
+ __webpack_require__(105)('fill');
+
+/***/ },
+/* 111 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ // 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined)
+ var KEY = 'find'
+ , $def = __webpack_require__(15)
+ , forced = true
+ , $find = __webpack_require__(21)(5);
+ // Shouldn't skip holes
+ if(KEY in [])Array(1)[KEY](function(){ forced = false; });
+ $def($def.P + $def.F * forced, 'Array', {
+ find: function find(callbackfn/*, that = undefined */){
+ return $find(this, callbackfn, arguments[1]);
+ }
+ });
+ __webpack_require__(105)(KEY);
+
+/***/ },
+/* 112 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ // 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined)
+ var KEY = 'findIndex'
+ , $def = __webpack_require__(15)
+ , forced = true
+ , $find = __webpack_require__(21)(6);
+ // Shouldn't skip holes
+ if(KEY in [])Array(1)[KEY](function(){ forced = false; });
+ $def($def.P + $def.F * forced, 'Array', {
+ findIndex: function findIndex(callbackfn/*, that = undefined */){
+ return $find(this, callbackfn, arguments[1]);
+ }
+ });
+ __webpack_require__(105)(KEY);
+
+/***/ },
+/* 113 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $ = __webpack_require__(6)
+ , global = __webpack_require__(10)
+ , cof = __webpack_require__(14)
+ , $flags = __webpack_require__(114)
+ , $RegExp = global.RegExp
+ , Base = $RegExp
+ , proto = $RegExp.prototype
+ , re = /a/g
+ // "new" creates a new object
+ , CORRECT_NEW = new $RegExp(re) !== re
+ // RegExp allows a regex with flags as the pattern
+ , ALLOWS_RE_WITH_FLAGS = function(){
+ try {
+ return $RegExp(re, 'i') == '/a/i';
+ } catch(e){ /* empty */ }
+ }();
+
+ if(__webpack_require__(7)){
+ if(!CORRECT_NEW || !ALLOWS_RE_WITH_FLAGS){
+ $RegExp = function RegExp(pattern, flags){
+ var patternIsRegExp = cof(pattern) == 'RegExp'
+ , flagsIsUndefined = flags === undefined;
+ if(!(this instanceof $RegExp) && patternIsRegExp && flagsIsUndefined)return pattern;
+ return CORRECT_NEW
+ ? new Base(patternIsRegExp && !flagsIsUndefined ? pattern.source : pattern, flags)
+ : new Base(patternIsRegExp ? pattern.source : pattern
+ , patternIsRegExp && flagsIsUndefined ? $flags.call(pattern) : flags);
+ };
+ $.each.call($.getNames(Base), function(key){
+ key in $RegExp || $.setDesc($RegExp, key, {
+ configurable: true,
+ get: function(){ return Base[key]; },
+ set: function(it){ Base[key] = it; }
+ });
+ });
+ proto.constructor = $RegExp;
+ $RegExp.prototype = proto;
+ __webpack_require__(18)(global, 'RegExp', $RegExp);
+ }
+ }
+
+ __webpack_require__(108)($RegExp);
+
+/***/ },
+/* 114 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var anObject = __webpack_require__(29);
+ module.exports = function flags(){
+ var that = anObject(this)
+ , result = '';
+ if(that.global)result += 'g';
+ if(that.ignoreCase)result += 'i';
+ if(that.multiline)result += 'm';
+ if(that.unicode)result += 'u';
+ if(that.sticky)result += 'y';
+ return result;
+ };
+
+/***/ },
+/* 115 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 21.2.5.3 get RegExp.prototype.flags()
+ var $ = __webpack_require__(6);
+ if(__webpack_require__(7) && /./g.flags != 'g')$.setDesc(RegExp.prototype, 'flags', {
+ configurable: true,
+ get: __webpack_require__(114)
+ });
+
+/***/ },
+/* 116 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // @@match logic
+ __webpack_require__(117)('match', 1, function(MATCH){
+ // 21.1.3.11 String.prototype.match(regexp)
+ return function match(regexp){
+ 'use strict';
+ var str = String(this)
+ , fn = regexp == undefined ? undefined : regexp[MATCH];
+ return fn !== undefined ? fn.call(regexp, str) : new RegExp(regexp)[MATCH](str);
+ };
+ });
+
+/***/ },
+/* 117 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ module.exports = function(KEY, length, exec){
+ var SYMBOL = __webpack_require__(37)(KEY)
+ , original = ''[KEY];
+ if(function(){
+ try {
+ var O = {};
+ O[SYMBOL] = function(){ return 7; };
+ return ''[KEY](O) != 7;
+ } catch(e){
+ return true;
+ }
+ }()){
+ __webpack_require__(18)(String.prototype, KEY, exec(SYMBOL, original));
+ __webpack_require__(17)(RegExp.prototype, SYMBOL, length == 2
+ // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)
+ // 21.2.5.11 RegExp.prototype[@@split](string, limit)
+ ? function(string, arg){ return original.call(string, this, arg); }
+ // 21.2.5.6 RegExp.prototype[@@match](string)
+ // 21.2.5.9 RegExp.prototype[@@search](string)
+ : function(string){ return original.call(string, this); }
+ );
+ }
+ };
+
+/***/ },
+/* 118 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // @@replace logic
+ __webpack_require__(117)('replace', 2, function(REPLACE, $replace){
+ // 21.1.3.14 String.prototype.replace(searchValue, replaceValue)
+ return function replace(searchValue, replaceValue){
+ 'use strict';
+ var str = String(this)
+ , fn = searchValue == undefined ? undefined : searchValue[REPLACE];
+ return fn !== undefined
+ ? fn.call(searchValue, str, replaceValue)
+ : $replace.call(str, searchValue, replaceValue);
+ };
+ });
+
+/***/ },
+/* 119 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // @@search logic
+ __webpack_require__(117)('search', 1, function(SEARCH){
+ // 21.1.3.15 String.prototype.search(regexp)
+ return function search(regexp){
+ 'use strict';
+ var str = String(this)
+ , fn = regexp == undefined ? undefined : regexp[SEARCH];
+ return fn !== undefined ? fn.call(regexp, str) : new RegExp(regexp)[SEARCH](str);
+ };
+ });
+
+/***/ },
+/* 120 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // @@split logic
+ __webpack_require__(117)('split', 2, function(SPLIT, $split){
+ // 21.1.3.17 String.prototype.split(separator, limit)
+ return function split(separator, limit){
+ 'use strict';
+ var str = String(this)
+ , fn = separator == undefined ? undefined : separator[SPLIT];
+ return fn !== undefined ? fn.call(separator, str, limit) : $split.call(str, separator, limit);
+ };
+ });
+
+/***/ },
+/* 121 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var $ = __webpack_require__(6)
+ , LIBRARY = __webpack_require__(41)
+ , global = __webpack_require__(10)
+ , ctx = __webpack_require__(25)
+ , classof = __webpack_require__(49)
+ , $def = __webpack_require__(15)
+ , isObject = __webpack_require__(12)
+ , anObject = __webpack_require__(29)
+ , aFunction = __webpack_require__(26)
+ , strictNew = __webpack_require__(122)
+ , forOf = __webpack_require__(123)
+ , setProto = __webpack_require__(47).set
+ , same = __webpack_require__(45)
+ , species = __webpack_require__(108)
+ , SPECIES = __webpack_require__(37)('species')
+ , RECORD = __webpack_require__(19)('record')
+ , PROMISE = 'Promise'
+ , process = global.process
+ , isNode = classof(process) == 'process'
+ , asap = process && process.nextTick || __webpack_require__(124).set
+ , P = global[PROMISE]
+ , Wrapper;
+
+ function testResolve(sub){
+ var test = new P(function(){});
+ if(sub)test.constructor = Object;
+ return P.resolve(test) === test;
+ }
+
+ var useNative = function(){
+ var works = false;
+ function P2(x){
+ var self = new P(x);
+ setProto(self, P2.prototype);
+ return self;
+ }
+ try {
+ works = P && P.resolve && testResolve();
+ setProto(P2, P);
+ P2.prototype = $.create(P.prototype, {constructor: {value: P2}});
+ // actual Firefox has broken subclass support, test that
+ if(!(P2.resolve(5).then(function(){}) instanceof P2)){
+ works = false;
+ }
+ // actual V8 bug, https://code.google.com/p/v8/issues/detail?id=4162
+ if(works && __webpack_require__(7)){
+ var thenableThenGotten = false;
+ P.resolve($.setDesc({}, 'then', {
+ get: function(){ thenableThenGotten = true; }
+ }));
+ works = thenableThenGotten;
+ }
+ } catch(e){ works = false; }
+ return works;
+ }();
+
+ // helpers
+ function isPromise(it){
+ return isObject(it) && (useNative ? classof(it) == 'Promise' : RECORD in it);
+ }
+ function sameConstructor(a, b){
+ // library wrapper special case
+ if(LIBRARY && a === P && b === Wrapper)return true;
+ return same(a, b);
+ }
+ function getConstructor(C){
+ var S = anObject(C)[SPECIES];
+ return S != undefined ? S : C;
+ }
+ function isThenable(it){
+ var then;
+ return isObject(it) && typeof (then = it.then) == 'function' ? then : false;
+ }
+ function notify(record, isReject){
+ if(record.n)return;
+ record.n = true;
+ var chain = record.c;
+ // strange IE + webpack dev server bug - use .call(global)
+ asap.call(global, function(){
+ var value = record.v
+ , ok = record.s == 1
+ , i = 0;
+ function run(react){
+ var cb = ok ? react.ok : react.fail
+ , ret, then;
+ try {
+ if(cb){
+ if(!ok)record.h = true;
+ ret = cb === true ? value : cb(value);
+ if(ret === react.P){
+ react.rej(TypeError('Promise-chain cycle'));
+ } else if(then = isThenable(ret)){
+ then.call(ret, react.res, react.rej);
+ } else react.res(ret);
+ } else react.rej(value);
+ } catch(err){
+ react.rej(err);
+ }
+ }
+ while(chain.length > i)run(chain[i++]); // variable length - can't use forEach
+ chain.length = 0;
+ record.n = false;
+ if(isReject)setTimeout(function(){
+ // strange IE + webpack dev server bug - use .call(global)
+ asap.call(global, function(){
+ if(isUnhandled(record.p)){
+ if(isNode){
+ process.emit('unhandledRejection', value, record.p);
+ } else if(global.console && console.error){
+ console.error('Unhandled promise rejection', value);
+ }
+ }
+ record.a = undefined;
+ });
+ }, 1);
+ });
+ }
+ function isUnhandled(promise){
+ var record = promise[RECORD]
+ , chain = record.a || record.c
+ , i = 0
+ , react;
+ if(record.h)return false;
+ while(chain.length > i){
+ react = chain[i++];
+ if(react.fail || !isUnhandled(react.P))return false;
+ } return true;
+ }
+ function $reject(value){
+ var record = this;
+ if(record.d)return;
+ record.d = true;
+ record = record.r || record; // unwrap
+ record.v = value;
+ record.s = 2;
+ record.a = record.c.slice();
+ notify(record, true);
+ }
+ function $resolve(value){
+ var record = this
+ , then;
+ if(record.d)return;
+ record.d = true;
+ record = record.r || record; // unwrap
+ try {
+ if(then = isThenable(value)){
+ // strange IE + webpack dev server bug - use .call(global)
+ asap.call(global, function(){
+ var wrapper = {r: record, d: false}; // wrap
+ try {
+ then.call(value, ctx($resolve, wrapper, 1), ctx($reject, wrapper, 1));
+ } catch(e){
+ $reject.call(wrapper, e);
+ }
+ });
+ } else {
+ record.v = value;
+ record.s = 1;
+ notify(record, false);
+ }
+ } catch(e){
+ $reject.call({r: record, d: false}, e); // wrap
+ }
+ }
+
+ // constructor polyfill
+ if(!useNative){
+ // 25.4.3.1 Promise(executor)
+ P = function Promise(executor){
+ aFunction(executor);
+ var record = {
+ p: strictNew(this, P, PROMISE), // <- promise
+ c: [], // <- awaiting reactions
+ a: undefined, // <- checked in isUnhandled reactions
+ s: 0, // <- state
+ d: false, // <- done
+ v: undefined, // <- value
+ h: false, // <- handled rejection
+ n: false // <- notify
+ };
+ this[RECORD] = record;
+ try {
+ executor(ctx($resolve, record, 1), ctx($reject, record, 1));
+ } catch(err){
+ $reject.call(record, err);
+ }
+ };
+ __webpack_require__(125)(P.prototype, {
+ // 25.4.5.3 Promise.prototype.then(onFulfilled, onRejected)
+ then: function then(onFulfilled, onRejected){
+ var S = anObject(anObject(this).constructor)[SPECIES];
+ var react = {
+ ok: typeof onFulfilled == 'function' ? onFulfilled : true,
+ fail: typeof onRejected == 'function' ? onRejected : false
+ };
+ var promise = react.P = new (S != undefined ? S : P)(function(res, rej){
+ react.res = aFunction(res);
+ react.rej = aFunction(rej);
+ });
+ var record = this[RECORD];
+ record.c.push(react);
+ if(record.a)record.a.push(react);
+ if(record.s)notify(record, false);
+ return promise;
+ },
+ // 25.4.5.1 Promise.prototype.catch(onRejected)
+ 'catch': function(onRejected){
+ return this.then(undefined, onRejected);
+ }
+ });
+ }
+
+ // export
+ $def($def.G + $def.W + $def.F * !useNative, {Promise: P});
+ __webpack_require__(36)(P, PROMISE);
+ species(P);
+ species(Wrapper = __webpack_require__(16)[PROMISE]);
+
+ // statics
+ $def($def.S + $def.F * !useNative, PROMISE, {
+ // 25.4.4.5 Promise.reject(r)
+ reject: function reject(r){
+ return new this(function(res, rej){ rej(r); });
+ }
+ });
+ $def($def.S + $def.F * (!useNative || testResolve(true)), PROMISE, {
+ // 25.4.4.6 Promise.resolve(x)
+ resolve: function resolve(x){
+ return isPromise(x) && sameConstructor(x.constructor, this)
+ ? x : new this(function(res){ res(x); });
+ }
+ });
+ $def($def.S + $def.F * !(useNative && __webpack_require__(102)(function(iter){
+ P.all(iter)['catch'](function(){});
+ })), PROMISE, {
+ // 25.4.4.1 Promise.all(iterable)
+ all: function all(iterable){
+ var C = getConstructor(this)
+ , values = [];
+ return new C(function(res, rej){
+ forOf(iterable, false, values.push, values);
+ var remaining = values.length
+ , results = Array(remaining);
+ if(remaining)$.each.call(values, function(promise, index){
+ C.resolve(promise).then(function(value){
+ results[index] = value;
+ --remaining || res(results);
+ }, rej);
+ });
+ else res(results);
+ });
+ },
+ // 25.4.4.4 Promise.race(iterable)
+ race: function race(iterable){
+ var C = getConstructor(this);
+ return new C(function(res, rej){
+ forOf(iterable, false, function(promise){
+ C.resolve(promise).then(res, rej);
+ });
+ });
+ }
+ });
+
+/***/ },
+/* 122 */
+/***/ function(module, exports) {
+
+ module.exports = function(it, Constructor, name){
+ if(!(it instanceof Constructor))throw TypeError(name + ": use the 'new' operator!");
+ return it;
+ };
+
+/***/ },
+/* 123 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var ctx = __webpack_require__(25)
+ , call = __webpack_require__(99)
+ , isArrayIter = __webpack_require__(100)
+ , anObject = __webpack_require__(29)
+ , toLength = __webpack_require__(27)
+ , getIterFn = __webpack_require__(101);
+ module.exports = function(iterable, entries, fn, that){
+ var iterFn = getIterFn(iterable)
+ , f = ctx(fn, that, entries ? 2 : 1)
+ , index = 0
+ , length, step, iterator;
+ if(typeof iterFn != 'function')throw TypeError(iterable + ' is not iterable!');
+ // fast case for arrays with default iterator
+ if(isArrayIter(iterFn))for(length = toLength(iterable.length); length > index; index++){
+ entries ? f(anObject(step = iterable[index])[0], step[1]) : f(iterable[index]);
+ } else for(iterator = iterFn.call(iterable); !(step = iterator.next()).done; ){
+ call(iterator, f, step.value, entries);
+ }
+ };
+
+/***/ },
+/* 124 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var ctx = __webpack_require__(25)
+ , invoke = __webpack_require__(20)
+ , html = __webpack_require__(9)
+ , cel = __webpack_require__(11)
+ , global = __webpack_require__(10)
+ , process = global.process
+ , setTask = global.setImmediate
+ , clearTask = global.clearImmediate
+ , MessageChannel = global.MessageChannel
+ , counter = 0
+ , queue = {}
+ , ONREADYSTATECHANGE = 'onreadystatechange'
+ , defer, channel, port;
+ function run(){
+ var id = +this;
+ if(queue.hasOwnProperty(id)){
+ var fn = queue[id];
+ delete queue[id];
+ fn();
+ }
+ }
+ function listner(event){
+ run.call(event.data);
+ }
+ // Node.js 0.9+ & IE10+ has setImmediate, otherwise:
+ if(!setTask || !clearTask){
+ setTask = function setImmediate(fn){
+ var args = [], i = 1;
+ while(arguments.length > i)args.push(arguments[i++]);
+ queue[++counter] = function(){
+ invoke(typeof fn == 'function' ? fn : Function(fn), args);
+ };
+ defer(counter);
+ return counter;
+ };
+ clearTask = function clearImmediate(id){
+ delete queue[id];
+ };
+ // Node.js 0.8-
+ if(__webpack_require__(14)(process) == 'process'){
+ defer = function(id){
+ process.nextTick(ctx(run, id, 1));
+ };
+ // Modern browsers, skip implementation for WebWorkers
+ // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
+ } else if(global.addEventListener && typeof postMessage == 'function' && !global.importScripts){
+ defer = function(id){
+ global.postMessage(id, '*');
+ };
+ global.addEventListener('message', listner, false);
+ // WebWorkers
+ } else if(MessageChannel){
+ channel = new MessageChannel;
+ port = channel.port2;
+ channel.port1.onmessage = listner;
+ defer = ctx(port.postMessage, port, 1);
+ // IE8-
+ } else if(ONREADYSTATECHANGE in cel('script')){
+ defer = function(id){
+ html.appendChild(cel('script'))[ONREADYSTATECHANGE] = function(){
+ html.removeChild(this);
+ run.call(id);
+ };
+ };
+ // Rest old browsers
+ } else {
+ defer = function(id){
+ setTimeout(ctx(run, id, 1), 0);
+ };
+ }
+ }
+ module.exports = {
+ set: setTask,
+ clear: clearTask
+ };
+
+/***/ },
+/* 125 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $redef = __webpack_require__(18);
+ module.exports = function(target, src){
+ for(var key in src)$redef(target, key, src[key]);
+ return target;
+ };
+
+/***/ },
+/* 126 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var strong = __webpack_require__(127);
+
+ // 23.1 Map Objects
+ __webpack_require__(128)('Map', function(get){
+ return function Map(){ return get(this, arguments[0]); };
+ }, {
+ // 23.1.3.6 Map.prototype.get(key)
+ get: function get(key){
+ var entry = strong.getEntry(this, key);
+ return entry && entry.v;
+ },
+ // 23.1.3.9 Map.prototype.set(key, value)
+ set: function set(key, value){
+ return strong.def(this, key === 0 ? 0 : key, value);
+ }
+ }, strong, true);
+
+/***/ },
+/* 127 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var $ = __webpack_require__(6)
+ , hide = __webpack_require__(17)
+ , ctx = __webpack_require__(25)
+ , species = __webpack_require__(108)
+ , strictNew = __webpack_require__(122)
+ , defined = __webpack_require__(24)
+ , forOf = __webpack_require__(123)
+ , step = __webpack_require__(106)
+ , ID = __webpack_require__(19)('id')
+ , $has = __webpack_require__(13)
+ , isObject = __webpack_require__(12)
+ , isExtensible = Object.isExtensible || isObject
+ , SUPPORT_DESC = __webpack_require__(7)
+ , SIZE = SUPPORT_DESC ? '_s' : 'size'
+ , id = 0;
+
+ function fastKey(it, create){
+ // return primitive with prefix
+ if(!isObject(it))return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;
+ if(!$has(it, ID)){
+ // can't set id to frozen object
+ if(!isExtensible(it))return 'F';
+ // not necessary to add id
+ if(!create)return 'E';
+ // add missing object id
+ hide(it, ID, ++id);
+ // return object id with prefix
+ } return 'O' + it[ID];
+ }
+
+ function getEntry(that, key){
+ // fast case
+ var index = fastKey(key), entry;
+ if(index !== 'F')return that._i[index];
+ // frozen object case
+ for(entry = that._f; entry; entry = entry.n){
+ if(entry.k == key)return entry;
+ }
+ }
+
+ module.exports = {
+ getConstructor: function(wrapper, NAME, IS_MAP, ADDER){
+ var C = wrapper(function(that, iterable){
+ strictNew(that, C, NAME);
+ that._i = $.create(null); // index
+ that._f = undefined; // first entry
+ that._l = undefined; // last entry
+ that[SIZE] = 0; // size
+ if(iterable != undefined)forOf(iterable, IS_MAP, that[ADDER], that);
+ });
+ __webpack_require__(125)(C.prototype, {
+ // 23.1.3.1 Map.prototype.clear()
+ // 23.2.3.2 Set.prototype.clear()
+ clear: function clear(){
+ for(var that = this, data = that._i, entry = that._f; entry; entry = entry.n){
+ entry.r = true;
+ if(entry.p)entry.p = entry.p.n = undefined;
+ delete data[entry.i];
+ }
+ that._f = that._l = undefined;
+ that[SIZE] = 0;
+ },
+ // 23.1.3.3 Map.prototype.delete(key)
+ // 23.2.3.4 Set.prototype.delete(value)
+ 'delete': function(key){
+ var that = this
+ , entry = getEntry(that, key);
+ if(entry){
+ var next = entry.n
+ , prev = entry.p;
+ delete that._i[entry.i];
+ entry.r = true;
+ if(prev)prev.n = next;
+ if(next)next.p = prev;
+ if(that._f == entry)that._f = next;
+ if(that._l == entry)that._l = prev;
+ that[SIZE]--;
+ } return !!entry;
+ },
+ // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)
+ // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)
+ forEach: function forEach(callbackfn /*, that = undefined */){
+ var f = ctx(callbackfn, arguments[1], 3)
+ , entry;
+ while(entry = entry ? entry.n : this._f){
+ f(entry.v, entry.k, this);
+ // revert to the last existing entry
+ while(entry && entry.r)entry = entry.p;
+ }
+ },
+ // 23.1.3.7 Map.prototype.has(key)
+ // 23.2.3.7 Set.prototype.has(value)
+ has: function has(key){
+ return !!getEntry(this, key);
+ }
+ });
+ if(SUPPORT_DESC)$.setDesc(C.prototype, 'size', {
+ get: function(){
+ return defined(this[SIZE]);
+ }
+ });
+ return C;
+ },
+ def: function(that, key, value){
+ var entry = getEntry(that, key)
+ , prev, index;
+ // change existing entry
+ if(entry){
+ entry.v = value;
+ // create new entry
+ } else {
+ that._l = entry = {
+ i: index = fastKey(key, true), // <- index
+ k: key, // <- key
+ v: value, // <- value
+ p: prev = that._l, // <- previous entry
+ n: undefined, // <- next entry
+ r: false // <- removed
+ };
+ if(!that._f)that._f = entry;
+ if(prev)prev.n = entry;
+ that[SIZE]++;
+ // add to index
+ if(index !== 'F')that._i[index] = entry;
+ } return that;
+ },
+ getEntry: getEntry,
+ setStrong: function(C, NAME, IS_MAP){
+ // add .keys, .values, .entries, [@@iterator]
+ // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11
+ __webpack_require__(87)(C, NAME, function(iterated, kind){
+ this._t = iterated; // target
+ this._k = kind; // kind
+ this._l = undefined; // previous
+ }, function(){
+ var that = this
+ , kind = that._k
+ , entry = that._l;
+ // revert to the last existing entry
+ while(entry && entry.r)entry = entry.p;
+ // get next entry
+ if(!that._t || !(that._l = entry = entry ? entry.n : that._t._f)){
+ // or finish the iteration
+ that._t = undefined;
+ return step(1);
+ }
+ // return step by kind
+ if(kind == 'keys' )return step(0, entry.k);
+ if(kind == 'values')return step(0, entry.v);
+ return step(0, [entry.k, entry.v]);
+ }, IS_MAP ? 'entries' : 'values' , !IS_MAP, true);
+
+ // add [@@species], 23.1.2.2, 23.2.2.2
+ species(C);
+ species(__webpack_require__(16)[NAME]); // for wrapper
+ }
+ };
+
+/***/ },
+/* 128 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var global = __webpack_require__(10)
+ , $def = __webpack_require__(15)
+ , BUGGY = __webpack_require__(90)
+ , forOf = __webpack_require__(123)
+ , strictNew = __webpack_require__(122);
+
+ module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){
+ var Base = global[NAME]
+ , C = Base
+ , ADDER = IS_MAP ? 'set' : 'add'
+ , proto = C && C.prototype
+ , O = {};
+ function fixMethod(KEY){
+ var fn = proto[KEY];
+ __webpack_require__(18)(proto, KEY,
+ KEY == 'delete' ? function(a){ return fn.call(this, a === 0 ? 0 : a); }
+ : KEY == 'has' ? function has(a){ return fn.call(this, a === 0 ? 0 : a); }
+ : KEY == 'get' ? function get(a){ return fn.call(this, a === 0 ? 0 : a); }
+ : KEY == 'add' ? function add(a){ fn.call(this, a === 0 ? 0 : a); return this; }
+ : function set(a, b){ fn.call(this, a === 0 ? 0 : a, b); return this; }
+ );
+ }
+ if(typeof C != 'function' || !(IS_WEAK || !BUGGY && proto.forEach && proto.entries)){
+ // create collection constructor
+ C = common.getConstructor(wrapper, NAME, IS_MAP, ADDER);
+ __webpack_require__(125)(C.prototype, methods);
+ } else {
+ var inst = new C
+ , chain = inst[ADDER](IS_WEAK ? {} : -0, 1)
+ , buggyZero;
+ // wrap for init collections from iterable
+ if(!__webpack_require__(102)(function(iter){ new C(iter); })){ // eslint-disable-line no-new
+ C = wrapper(function(target, iterable){
+ strictNew(target, C, NAME);
+ var that = new Base;
+ if(iterable != undefined)forOf(iterable, IS_MAP, that[ADDER], that);
+ return that;
+ });
+ C.prototype = proto;
+ proto.constructor = C;
+ }
+ IS_WEAK || inst.forEach(function(val, key){
+ buggyZero = 1 / key === -Infinity;
+ });
+ // fix converting -0 key to +0
+ if(buggyZero){
+ fixMethod('delete');
+ fixMethod('has');
+ IS_MAP && fixMethod('get');
+ }
+ // + fix .add & .set for chaining
+ if(buggyZero || chain !== inst)fixMethod(ADDER);
+ // weak collections should not contains .clear method
+ if(IS_WEAK && proto.clear)delete proto.clear;
+ }
+
+ __webpack_require__(36)(C, NAME);
+
+ O[NAME] = C;
+ $def($def.G + $def.W + $def.F * (C != Base), O);
+
+ if(!IS_WEAK)common.setStrong(C, NAME, IS_MAP);
+
+ return C;
+ };
+
+/***/ },
+/* 129 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var strong = __webpack_require__(127);
+
+ // 23.2 Set Objects
+ __webpack_require__(128)('Set', function(get){
+ return function Set(){ return get(this, arguments[0]); };
+ }, {
+ // 23.2.3.1 Set.prototype.add(value)
+ add: function add(value){
+ return strong.def(this, value = value === 0 ? 0 : value, value);
+ }
+ }, strong);
+
+/***/ },
+/* 130 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var $ = __webpack_require__(6)
+ , weak = __webpack_require__(131)
+ , isObject = __webpack_require__(12)
+ , has = __webpack_require__(13)
+ , frozenStore = weak.frozenStore
+ , WEAK = weak.WEAK
+ , isExtensible = Object.isExtensible || isObject
+ , tmp = {};
+
+ // 23.3 WeakMap Objects
+ var $WeakMap = __webpack_require__(128)('WeakMap', function(get){
+ return function WeakMap(){ return get(this, arguments[0]); };
+ }, {
+ // 23.3.3.3 WeakMap.prototype.get(key)
+ get: function get(key){
+ if(isObject(key)){
+ if(!isExtensible(key))return frozenStore(this).get(key);
+ if(has(key, WEAK))return key[WEAK][this._i];
+ }
+ },
+ // 23.3.3.5 WeakMap.prototype.set(key, value)
+ set: function set(key, value){
+ return weak.def(this, key, value);
+ }
+ }, weak, true, true);
+
+ // IE11 WeakMap frozen keys fix
+ if(new $WeakMap().set((Object.freeze || Object)(tmp), 7).get(tmp) != 7){
+ $.each.call(['delete', 'has', 'get', 'set'], function(key){
+ var proto = $WeakMap.prototype
+ , method = proto[key];
+ __webpack_require__(18)(proto, key, function(a, b){
+ // store frozen objects on leaky map
+ if(isObject(a) && !isExtensible(a)){
+ var result = frozenStore(this)[key](a, b);
+ return key == 'set' ? this : result;
+ // store all the rest on native weakmap
+ } return method.call(this, a, b);
+ });
+ });
+ }
+
+/***/ },
+/* 131 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var hide = __webpack_require__(17)
+ , anObject = __webpack_require__(29)
+ , strictNew = __webpack_require__(122)
+ , forOf = __webpack_require__(123)
+ , method = __webpack_require__(21)
+ , WEAK = __webpack_require__(19)('weak')
+ , isObject = __webpack_require__(12)
+ , $has = __webpack_require__(13)
+ , isExtensible = Object.isExtensible || isObject
+ , find = method(5)
+ , findIndex = method(6)
+ , id = 0;
+
+ // fallback for frozen keys
+ function frozenStore(that){
+ return that._l || (that._l = new FrozenStore);
+ }
+ function FrozenStore(){
+ this.a = [];
+ }
+ FrozenStore.prototype = {
+ get: function(key){
+ var entry = findFrozen(this, key);
+ if(entry)return entry[1];
+ },
+ has: function(key){
+ return !!findFrozen(this, key);
+ },
+ set: function(key, value){
+ var entry = findFrozen(this, key);
+ if(entry)entry[1] = value;
+ else this.a.push([key, value]);
+ },
+ 'delete': function(key){
+ var index = findIndex(this.a, function(it){
+ return it[0] === key;
+ });
+ if(~index)this.a.splice(index, 1);
+ return !!~index;
+ }
+ };
+ function findFrozen(store, key){
+ return find(store.a, function(it){
+ return it[0] === key;
+ });
+ }
+
+ module.exports = {
+ getConstructor: function(wrapper, NAME, IS_MAP, ADDER){
+ var C = wrapper(function(that, iterable){
+ strictNew(that, C, NAME);
+ that._i = id++; // collection id
+ that._l = undefined; // leak store for frozen objects
+ if(iterable != undefined)forOf(iterable, IS_MAP, that[ADDER], that);
+ });
+ __webpack_require__(125)(C.prototype, {
+ // 23.3.3.2 WeakMap.prototype.delete(key)
+ // 23.4.3.3 WeakSet.prototype.delete(value)
+ 'delete': function(key){
+ if(!isObject(key))return false;
+ if(!isExtensible(key))return frozenStore(this)['delete'](key);
+ return $has(key, WEAK) && $has(key[WEAK], this._i) && delete key[WEAK][this._i];
+ },
+ // 23.3.3.4 WeakMap.prototype.has(key)
+ // 23.4.3.4 WeakSet.prototype.has(value)
+ has: function has(key){
+ if(!isObject(key))return false;
+ if(!isExtensible(key))return frozenStore(this).has(key);
+ return $has(key, WEAK) && $has(key[WEAK], this._i);
+ }
+ });
+ return C;
+ },
+ def: function(that, key, value){
+ if(!isExtensible(anObject(key))){
+ frozenStore(that).set(key, value);
+ } else {
+ $has(key, WEAK) || hide(key, WEAK, {});
+ key[WEAK][that._i] = value;
+ } return that;
+ },
+ frozenStore: frozenStore,
+ WEAK: WEAK
+ };
+
+/***/ },
+/* 132 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var weak = __webpack_require__(131);
+
+ // 23.4 WeakSet Objects
+ __webpack_require__(128)('WeakSet', function(get){
+ return function WeakSet(){ return get(this, arguments[0]); };
+ }, {
+ // 23.4.3.1 WeakSet.prototype.add(value)
+ add: function add(value){
+ return weak.def(this, value, true);
+ }
+ }, weak, false, true);
+
+/***/ },
+/* 133 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 26.1.1 Reflect.apply(target, thisArgument, argumentsList)
+ var $def = __webpack_require__(15)
+ , _apply = Function.apply;
+
+ $def($def.S, 'Reflect', {
+ apply: function apply(target, thisArgument, argumentsList){
+ return _apply.call(target, thisArgument, argumentsList);
+ }
+ });
+
+/***/ },
+/* 134 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 26.1.2 Reflect.construct(target, argumentsList [, newTarget])
+ var $ = __webpack_require__(6)
+ , $def = __webpack_require__(15)
+ , aFunction = __webpack_require__(26)
+ , isObject = __webpack_require__(12)
+ , apply = Function.apply
+ , bind = Function.bind || __webpack_require__(16).Function.prototype.bind;
+
+ $def($def.S, 'Reflect', {
+ construct: function construct(target, argumentsList /*, newTarget*/){
+ if(arguments.length < 3)return new (bind.apply(target, [null].concat(argumentsList)))();
+ var proto = aFunction(arguments[2]).prototype
+ , instance = $.create(isObject(proto) ? proto : Object.prototype)
+ , result = apply.call(target, instance, argumentsList);
+ return isObject(result) ? result : instance;
+ }
+ });
+
+/***/ },
+/* 135 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 26.1.3 Reflect.defineProperty(target, propertyKey, attributes)
+ var $ = __webpack_require__(6)
+ , $def = __webpack_require__(15)
+ , anObject = __webpack_require__(29);
+
+ // MS Edge has broken Reflect.defineProperty - throwing instead of returning false
+ $def($def.S + $def.F * __webpack_require__(33)(function(){
+ Reflect.defineProperty($.setDesc({}, 1, {value: 1}), 1, {value: 2});
+ }), 'Reflect', {
+ defineProperty: function defineProperty(target, propertyKey, attributes){
+ anObject(target);
+ try {
+ $.setDesc(target, propertyKey, attributes);
+ return true;
+ } catch(e){
+ return false;
+ }
+ }
+ });
+
+/***/ },
+/* 136 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 26.1.4 Reflect.deleteProperty(target, propertyKey)
+ var $def = __webpack_require__(15)
+ , getDesc = __webpack_require__(6).getDesc
+ , anObject = __webpack_require__(29);
+
+ $def($def.S, 'Reflect', {
+ deleteProperty: function deleteProperty(target, propertyKey){
+ var desc = getDesc(anObject(target), propertyKey);
+ return desc && !desc.configurable ? false : delete target[propertyKey];
+ }
+ });
+
+/***/ },
+/* 137 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 26.1.5 Reflect.enumerate(target)
+ var $def = __webpack_require__(15)
+ , anObject = __webpack_require__(29);
+
+ function Enumerate(iterated){
+ this._t = anObject(iterated); // target
+ this._k = undefined; // keys
+ this._i = 0; // next index
+ }
+ __webpack_require__(89)(Enumerate, 'Object', function(){
+ var that = this
+ , keys = that._k
+ , key;
+ if(keys == undefined){
+ that._k = keys = [];
+ for(key in that._t)keys.push(key);
+ }
+ do {
+ if(that._i >= keys.length)return {value: undefined, done: true};
+ } while(!((key = keys[that._i++]) in that._t));
+ return {value: key, done: false};
+ });
+
+ $def($def.S, 'Reflect', {
+ enumerate: function enumerate(target){
+ return new Enumerate(target);
+ }
+ });
+
+/***/ },
+/* 138 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 26.1.6 Reflect.get(target, propertyKey [, receiver])
+ var $ = __webpack_require__(6)
+ , has = __webpack_require__(13)
+ , $def = __webpack_require__(15)
+ , isObject = __webpack_require__(12)
+ , anObject = __webpack_require__(29);
+
+ function get(target, propertyKey/*, receiver*/){
+ var receiver = arguments.length < 3 ? target : arguments[2]
+ , desc, proto;
+ if(anObject(target) === receiver)return target[propertyKey];
+ if(desc = $.getDesc(target, propertyKey))return has(desc, 'value')
+ ? desc.value
+ : desc.get !== undefined
+ ? desc.get.call(receiver)
+ : undefined;
+ if(isObject(proto = $.getProto(target)))return get(proto, propertyKey, receiver);
+ }
+
+ $def($def.S, 'Reflect', {get: get});
+
+/***/ },
+/* 139 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 26.1.7 Reflect.getOwnPropertyDescriptor(target, propertyKey)
+ var $ = __webpack_require__(6)
+ , $def = __webpack_require__(15)
+ , anObject = __webpack_require__(29);
+
+ $def($def.S, 'Reflect', {
+ getOwnPropertyDescriptor: function getOwnPropertyDescriptor(target, propertyKey){
+ return $.getDesc(anObject(target), propertyKey);
+ }
+ });
+
+/***/ },
+/* 140 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 26.1.8 Reflect.getPrototypeOf(target)
+ var $def = __webpack_require__(15)
+ , getProto = __webpack_require__(6).getProto
+ , anObject = __webpack_require__(29);
+
+ $def($def.S, 'Reflect', {
+ getPrototypeOf: function getPrototypeOf(target){
+ return getProto(anObject(target));
+ }
+ });
+
+/***/ },
+/* 141 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 26.1.9 Reflect.has(target, propertyKey)
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Reflect', {
+ has: function has(target, propertyKey){
+ return propertyKey in target;
+ }
+ });
+
+/***/ },
+/* 142 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 26.1.10 Reflect.isExtensible(target)
+ var $def = __webpack_require__(15)
+ , anObject = __webpack_require__(29)
+ , _isExtensible = Object.isExtensible || __webpack_require__(12);
+
+ $def($def.S, 'Reflect', {
+ isExtensible: function isExtensible(target){
+ return _isExtensible(anObject(target));
+ }
+ });
+
+/***/ },
+/* 143 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 26.1.11 Reflect.ownKeys(target)
+ var $def = __webpack_require__(15);
+
+ $def($def.S, 'Reflect', {ownKeys: __webpack_require__(144)});
+
+/***/ },
+/* 144 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $ = __webpack_require__(6)
+ , anObject = __webpack_require__(29);
+ module.exports = function ownKeys(it){
+ var keys = $.getNames(anObject(it))
+ , getSymbols = $.getSymbols;
+ return getSymbols ? keys.concat(getSymbols(it)) : keys;
+ };
+
+/***/ },
+/* 145 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 26.1.12 Reflect.preventExtensions(target)
+ var $def = __webpack_require__(15)
+ , anObject = __webpack_require__(29)
+ , _preventExtensions = Object.preventExtensions;
+
+ $def($def.S, 'Reflect', {
+ preventExtensions: function preventExtensions(target){
+ anObject(target);
+ try {
+ if(_preventExtensions)_preventExtensions(target);
+ return true;
+ } catch(e){
+ return false;
+ }
+ }
+ });
+
+/***/ },
+/* 146 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 26.1.13 Reflect.set(target, propertyKey, V [, receiver])
+ var $ = __webpack_require__(6)
+ , has = __webpack_require__(13)
+ , $def = __webpack_require__(15)
+ , createDesc = __webpack_require__(8)
+ , anObject = __webpack_require__(29)
+ , isObject = __webpack_require__(12);
+
+ function set(target, propertyKey, V/*, receiver*/){
+ var receiver = arguments.length < 4 ? target : arguments[3]
+ , ownDesc = $.getDesc(anObject(target), propertyKey)
+ , existingDescriptor, proto;
+ if(!ownDesc){
+ if(isObject(proto = $.getProto(target))){
+ return set(proto, propertyKey, V, receiver);
+ }
+ ownDesc = createDesc(0);
+ }
+ if(has(ownDesc, 'value')){
+ if(ownDesc.writable === false || !isObject(receiver))return false;
+ existingDescriptor = $.getDesc(receiver, propertyKey) || createDesc(0);
+ existingDescriptor.value = V;
+ $.setDesc(receiver, propertyKey, existingDescriptor);
+ return true;
+ }
+ return ownDesc.set === undefined ? false : (ownDesc.set.call(receiver, V), true);
+ }
+
+ $def($def.S, 'Reflect', {set: set});
+
+/***/ },
+/* 147 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // 26.1.14 Reflect.setPrototypeOf(target, proto)
+ var $def = __webpack_require__(15)
+ , setProto = __webpack_require__(47);
+
+ if(setProto)$def($def.S, 'Reflect', {
+ setPrototypeOf: function setPrototypeOf(target, proto){
+ setProto.check(target, proto);
+ try {
+ setProto.set(target, proto);
+ return true;
+ } catch(e){
+ return false;
+ }
+ }
+ });
+
+/***/ },
+/* 148 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var $def = __webpack_require__(15)
+ , $includes = __webpack_require__(31)(true);
+ $def($def.P, 'Array', {
+ // https://github.com/domenic/Array.prototype.includes
+ includes: function includes(el /*, fromIndex = 0 */){
+ return $includes(this, el, arguments[1]);
+ }
+ });
+ __webpack_require__(105)('includes');
+
+/***/ },
+/* 149 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // https://github.com/mathiasbynens/String.prototype.at
+ 'use strict';
+ var $def = __webpack_require__(15)
+ , $at = __webpack_require__(86)(true);
+ $def($def.P, 'String', {
+ at: function at(pos){
+ return $at(this, pos);
+ }
+ });
+
+/***/ },
+/* 150 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var $def = __webpack_require__(15)
+ , $pad = __webpack_require__(151);
+ $def($def.P, 'String', {
+ lpad: function lpad(n){
+ return $pad(this, n, arguments[1], true);
+ }
+ });
+
+/***/ },
+/* 151 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // http://wiki.ecmascript.org/doku.php?id=strawman:string_padding
+ var toInteger = __webpack_require__(28)
+ , repeat = __webpack_require__(96)
+ , defined = __webpack_require__(24);
+
+ module.exports = function(that, minLength, fillChar, left){
+ // 1. Let O be CheckObjectCoercible(this value).
+ // 2. Let S be ToString(O).
+ var S = String(defined(that));
+ // 4. If intMinLength is undefined, return S.
+ if(minLength === undefined)return S;
+ // 4. Let intMinLength be ToInteger(minLength).
+ var intMinLength = toInteger(minLength);
+ // 5. Let fillLen be the number of characters in S minus intMinLength.
+ var fillLen = intMinLength - S.length;
+ // 6. If fillLen < 0, then throw a RangeError exception.
+ // 7. If fillLen is +∞, then throw a RangeError exception.
+ if(fillLen < 0 || fillLen === Infinity){
+ throw new RangeError('Cannot satisfy string length ' + minLength + ' for string: ' + S);
+ }
+ // 8. Let sFillStr be the string represented by fillStr.
+ // 9. If sFillStr is undefined, let sFillStr be a space character.
+ var sFillStr = fillChar === undefined ? ' ' : String(fillChar);
+ // 10. Let sFillVal be a String made of sFillStr, repeated until fillLen is met.
+ var sFillVal = repeat.call(sFillStr, Math.ceil(fillLen / sFillStr.length));
+ // truncate if we overflowed
+ if(sFillVal.length > fillLen)sFillVal = left
+ ? sFillVal.slice(sFillVal.length - fillLen)
+ : sFillVal.slice(0, fillLen);
+ // 11. Return a string made from sFillVal, followed by S.
+ // 11. Return a String made from S, followed by sFillVal.
+ return left ? sFillVal.concat(S) : S.concat(sFillVal);
+ };
+
+/***/ },
+/* 152 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var $def = __webpack_require__(15)
+ , $pad = __webpack_require__(151);
+ $def($def.P, 'String', {
+ rpad: function rpad(n){
+ return $pad(this, n, arguments[1], false);
+ }
+ });
+
+/***/ },
+/* 153 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // https://github.com/benjamingr/RexExp.escape
+ var $def = __webpack_require__(15)
+ , $re = __webpack_require__(32)(/[\\^$*+?.()|[\]{}]/g, '\\$&');
+ $def($def.S, 'RegExp', {escape: function escape(it){ return $re(it); }});
+
+
+/***/ },
+/* 154 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // https://gist.github.com/WebReflection/9353781
+ var $ = __webpack_require__(6)
+ , $def = __webpack_require__(15)
+ , ownKeys = __webpack_require__(144)
+ , toObject = __webpack_require__(22)
+ , createDesc = __webpack_require__(8);
+
+ $def($def.S, 'Object', {
+ getOwnPropertyDescriptors: function getOwnPropertyDescriptors(object){
+ var O = toObject(object)
+ , setDesc = $.setDesc
+ , getDesc = $.getDesc
+ , keys = ownKeys(O)
+ , result = {}
+ , i = 0
+ , key, D;
+ while(keys.length > i){
+ D = getDesc(O, key = keys[i++]);
+ if(key in result)setDesc(result, key, createDesc(0, D));
+ else result[key] = D;
+ } return result;
+ }
+ });
+
+/***/ },
+/* 155 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // http://goo.gl/XkBrjD
+ var $def = __webpack_require__(15)
+ , $values = __webpack_require__(156)(false);
+
+ $def($def.S, 'Object', {
+ values: function values(it){
+ return $values(it);
+ }
+ });
+
+/***/ },
+/* 156 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $ = __webpack_require__(6)
+ , toObject = __webpack_require__(22);
+ module.exports = function(isEntries){
+ return function(it){
+ var O = toObject(it)
+ , keys = $.getKeys(O)
+ , length = keys.length
+ , i = 0
+ , result = Array(length)
+ , key;
+ if(isEntries)while(length > i)result[i] = [key = keys[i++], O[key]];
+ else while(length > i)result[i] = O[keys[i++]];
+ return result;
+ };
+ };
+
+/***/ },
+/* 157 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // http://goo.gl/XkBrjD
+ var $def = __webpack_require__(15)
+ , $entries = __webpack_require__(156)(true);
+
+ $def($def.S, 'Object', {
+ entries: function entries(it){
+ return $entries(it);
+ }
+ });
+
+/***/ },
+/* 158 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // https://github.com/DavidBruant/Map-Set.prototype.toJSON
+ var $def = __webpack_require__(15);
+
+ $def($def.P, 'Map', {toJSON: __webpack_require__(159)('Map')});
+
+/***/ },
+/* 159 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // https://github.com/DavidBruant/Map-Set.prototype.toJSON
+ var forOf = __webpack_require__(123)
+ , classof = __webpack_require__(49);
+ module.exports = function(NAME){
+ return function toJSON(){
+ if(classof(this) != NAME)throw TypeError(NAME + "#toJSON isn't generic");
+ var arr = [];
+ forOf(this, false, arr.push, arr);
+ return arr;
+ };
+ };
+
+/***/ },
+/* 160 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // https://github.com/DavidBruant/Map-Set.prototype.toJSON
+ var $def = __webpack_require__(15);
+
+ $def($def.P, 'Set', {toJSON: __webpack_require__(159)('Set')});
+
+/***/ },
+/* 161 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // JavaScript 1.6 / Strawman array statics shim
+ var $ = __webpack_require__(6)
+ , $def = __webpack_require__(15)
+ , $Array = __webpack_require__(16).Array || Array
+ , statics = {};
+ function setStatics(keys, length){
+ $.each.call(keys.split(','), function(key){
+ if(length == undefined && key in $Array)statics[key] = $Array[key];
+ else if(key in [])statics[key] = __webpack_require__(25)(Function.call, [][key], length);
+ });
+ }
+ setStatics('pop,reverse,shift,keys,values,entries', 1);
+ setStatics('indexOf,every,some,forEach,map,filter,find,findIndex,includes', 3);
+ setStatics('join,slice,concat,push,splice,unshift,sort,lastIndexOf,' +
+ 'reduce,reduceRight,copyWithin,fill');
+ $def($def.S, 'Array', statics);
+
+/***/ },
+/* 162 */
+/***/ function(module, exports, __webpack_require__) {
+
+ // ie9- setTimeout & setInterval additional parameters fix
+ var global = __webpack_require__(10)
+ , $def = __webpack_require__(15)
+ , invoke = __webpack_require__(20)
+ , partial = __webpack_require__(163)
+ , navigator = global.navigator
+ , MSIE = !!navigator && /MSIE .\./.test(navigator.userAgent); // <- dirty ie9- check
+ function wrap(set){
+ return MSIE ? function(fn, time /*, ...args */){
+ return set(invoke(
+ partial,
+ [].slice.call(arguments, 2),
+ typeof fn == 'function' ? fn : Function(fn)
+ ), time);
+ } : set;
+ }
+ $def($def.G + $def.B + $def.F * MSIE, {
+ setTimeout: wrap(global.setTimeout),
+ setInterval: wrap(global.setInterval)
+ });
+
+/***/ },
+/* 163 */
+/***/ function(module, exports, __webpack_require__) {
+
+ 'use strict';
+ var path = __webpack_require__(164)
+ , invoke = __webpack_require__(20)
+ , aFunction = __webpack_require__(26);
+ module.exports = function(/* ...pargs */){
+ var fn = aFunction(this)
+ , length = arguments.length
+ , pargs = Array(length)
+ , i = 0
+ , _ = path._
+ , holder = false;
+ while(length > i)if((pargs[i] = arguments[i++]) === _)holder = true;
+ return function(/* ...args */){
+ var that = this
+ , _length = arguments.length
+ , j = 0, k = 0, args;
+ if(!holder && !_length)return invoke(fn, pargs, that);
+ args = pargs.slice();
+ if(holder)for(;length > j; j++)if(args[j] === _)args[j] = arguments[k++];
+ while(_length > k)args.push(arguments[k++]);
+ return invoke(fn, args, that);
+ };
+ };
+
+/***/ },
+/* 164 */
+/***/ function(module, exports, __webpack_require__) {
+
+ module.exports = __webpack_require__(10);
+
+/***/ },
+/* 165 */
+/***/ function(module, exports, __webpack_require__) {
+
+ var $def = __webpack_require__(15)
+ , $task = __webpack_require__(124);
+ $def($def.G + $def.B, {
+ setImmediate: $task.set,
+ clearImmediate: $task.clear
+ });
+
+/***/ },
+/* 166 */
+/***/ function(module, exports, __webpack_require__) {
+
+ __webpack_require__(104);
+ var global = __webpack_require__(10)
+ , hide = __webpack_require__(17)
+ , Iterators = __webpack_require__(88)
+ , ITERATOR = __webpack_require__(37)('iterator')
+ , NL = global.NodeList
+ , HTC = global.HTMLCollection
+ , NLProto = NL && NL.prototype
+ , HTCProto = HTC && HTC.prototype
+ , ArrayValues = Iterators.NodeList = Iterators.HTMLCollection = Iterators.Array;
+ if(NL && !(ITERATOR in NLProto))hide(NLProto, ITERATOR, ArrayValues);
+ if(HTC && !(ITERATOR in HTCProto))hide(HTCProto, ITERATOR, ArrayValues);
+
+/***/ },
+/* 167 */
+/***/ function(module, exports, __webpack_require__) {
+
+ /* WEBPACK VAR INJECTION */(function(global, process) {/**
+ * Copyright (c) 2014, Facebook, Inc.
+ * All rights reserved.
+ *
+ * This source code is licensed under the BSD-style license found in the
+ * https://raw.github.com/facebook/regenerator/master/LICENSE file. An
+ * additional grant of patent rights can be found in the PATENTS file in
+ * the same directory.
+ */
+
+ !(function(global) {
+ "use strict";
+
+ var hasOwn = Object.prototype.hasOwnProperty;
+ var undefined; // More compressible than void 0.
+ var iteratorSymbol =
+ typeof Symbol === "function" && Symbol.iterator || "@@iterator";
+
+ var inModule = typeof module === "object";
+ var runtime = global.regeneratorRuntime;
+ if (runtime) {
+ if (inModule) {
+ // If regeneratorRuntime is defined globally and we're in a module,
+ // make the exports object identical to regeneratorRuntime.
+ module.exports = runtime;
+ }
+ // Don't bother evaluating the rest of this file if the runtime was
+ // already defined globally.
+ return;
+ }
+
+ // Define the runtime globally (as expected by generated code) as either
+ // module.exports (if we're in a module) or a new, empty object.
+ runtime = global.regeneratorRuntime = inModule ? module.exports : {};
+
+ function wrap(innerFn, outerFn, self, tryLocsList) {
+ // If outerFn provided, then outerFn.prototype instanceof Generator.
+ var generator = Object.create((outerFn || Generator).prototype);
+
+ generator._invoke = makeInvokeMethod(
+ innerFn, self || null,
+ new Context(tryLocsList || [])
+ );
+
+ return generator;
+ }
+ runtime.wrap = wrap;
+
+ // Try/catch helper to minimize deoptimizations. Returns a completion
+ // record like context.tryEntries[i].completion. This interface could
+ // have been (and was previously) designed to take a closure to be
+ // invoked without arguments, but in all the cases we care about we
+ // already have an existing method we want to call, so there's no need
+ // to create a new function object. We can even get away with assuming
+ // the method takes exactly one argument, since that happens to be true
+ // in every case, so we don't have to touch the arguments object. The
+ // only additional allocation required is the completion record, which
+ // has a stable shape and so hopefully should be cheap to allocate.
+ function tryCatch(fn, obj, arg) {
+ try {
+ return { type: "normal", arg: fn.call(obj, arg) };
+ } catch (err) {
+ return { type: "throw", arg: err };
+ }
+ }
+
+ var GenStateSuspendedStart = "suspendedStart";
+ var GenStateSuspendedYield = "suspendedYield";
+ var GenStateExecuting = "executing";
+ var GenStateCompleted = "completed";
+
+ // Returning this object from the innerFn has the same effect as
+ // breaking out of the dispatch switch statement.
+ var ContinueSentinel = {};
+
+ // Dummy constructor functions that we use as the .constructor and
+ // .constructor.prototype properties for functions that return Generator
+ // objects. For full spec compliance, you may wish to configure your
+ // minifier not to mangle the names of these two functions.
+ function Generator() {}
+ function GeneratorFunction() {}
+ function GeneratorFunctionPrototype() {}
+
+ var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype;
+ GeneratorFunction.prototype = Gp.constructor = GeneratorFunctionPrototype;
+ GeneratorFunctionPrototype.constructor = GeneratorFunction;
+ GeneratorFunction.displayName = "GeneratorFunction";
+
+ // Helper for defining the .next, .throw, and .return methods of the
+ // Iterator interface in terms of a single ._invoke method.
+ function defineIteratorMethods(prototype) {
+ ["next", "throw", "return"].forEach(function(method) {
+ prototype[method] = function(arg) {
+ return this._invoke(method, arg);
+ };
+ });
+ }
+
+ runtime.isGeneratorFunction = function(genFun) {
+ var ctor = typeof genFun === "function" && genFun.constructor;
+ return ctor
+ ? ctor === GeneratorFunction ||
+ // For the native GeneratorFunction constructor, the best we can
+ // do is to check its .name property.
+ (ctor.displayName || ctor.name) === "GeneratorFunction"
+ : false;
+ };
+
+ runtime.mark = function(genFun) {
+ genFun.__proto__ = GeneratorFunctionPrototype;
+ genFun.prototype = Object.create(Gp);
+ return genFun;
+ };
+
+ // Within the body of any async function, `await x` is transformed to
+ // `yield regeneratorRuntime.awrap(x)`, so that the runtime can test
+ // `value instanceof AwaitArgument` to determine if the yielded value is
+ // meant to be awaited. Some may consider the name of this method too
+ // cutesy, but they are curmudgeons.
+ runtime.awrap = function(arg) {
+ return new AwaitArgument(arg);
+ };
+
+ function AwaitArgument(arg) {
+ this.arg = arg;
+ }
+
+ function AsyncIterator(generator) {
+ // This invoke function is written in a style that assumes some
+ // calling function (or Promise) will handle exceptions.
+ function invoke(method, arg) {
+ var result = generator[method](arg);
+ var value = result.value;
+ return value instanceof AwaitArgument
+ ? Promise.resolve(value.arg).then(invokeNext, invokeThrow)
+ : Promise.resolve(value).then(function(unwrapped) {
+ // When a yielded Promise is resolved, its final value becomes
+ // the .value of the Promise<{value,done}> result for the
+ // current iteration. If the Promise is rejected, however, the
+ // result for this iteration will be rejected with the same
+ // reason. Note that rejections of yielded Promises are not
+ // thrown back into the generator function, as is the case
+ // when an awaited Promise is rejected. This difference in
+ // behavior between yield and await is important, because it
+ // allows the consumer to decide what to do with the yielded
+ // rejection (swallow it and continue, manually .throw it back
+ // into the generator, abandon iteration, whatever). With
+ // await, by contrast, there is no opportunity to examine the
+ // rejection reason outside the generator function, so the
+ // only option is to throw it from the await expression, and
+ // let the generator function handle the exception.
+ result.value = unwrapped;
+ return result;
+ });
+ }
+
+ if (typeof process === "object" && process.domain) {
+ invoke = process.domain.bind(invoke);
+ }
+
+ var invokeNext = invoke.bind(generator, "next");
+ var invokeThrow = invoke.bind(generator, "throw");
+ var invokeReturn = invoke.bind(generator, "return");
+ var previousPromise;
+
+ function enqueue(method, arg) {
+ var enqueueResult =
+ // If enqueue has been called before, then we want to wait until
+ // all previous Promises have been resolved before calling invoke,
+ // so that results are always delivered in the correct order. If
+ // enqueue has not been called before, then it is important to
+ // call invoke immediately, without waiting on a callback to fire,
+ // so that the async generator function has the opportunity to do
+ // any necessary setup in a predictable way. This predictability
+ // is why the Promise constructor synchronously invokes its
+ // executor callback, and why async functions synchronously
+ // execute code before the first await. Since we implement simple
+ // async functions in terms of async generators, it is especially
+ // important to get this right, even though it requires care.
+ previousPromise ? previousPromise.then(function() {
+ return invoke(method, arg);
+ }) : new Promise(function(resolve) {
+ resolve(invoke(method, arg));
+ });
+
+ // Avoid propagating enqueueResult failures to Promises returned by
+ // later invocations of the iterator.
+ previousPromise = enqueueResult["catch"](function(ignored){});
+
+ return enqueueResult;
+ }
+
+ // Define the unified helper method that is used to implement .next,
+ // .throw, and .return (see defineIteratorMethods).
+ this._invoke = enqueue;
+ }
+
+ defineIteratorMethods(AsyncIterator.prototype);
+
+ // Note that simple async functions are implemented on top of
+ // AsyncIterator objects; they just return a Promise for the value of
+ // the final result produced by the iterator.
+ runtime.async = function(innerFn, outerFn, self, tryLocsList) {
+ var iter = new AsyncIterator(
+ wrap(innerFn, outerFn, self, tryLocsList)
+ );
+
+ return runtime.isGeneratorFunction(outerFn)
+ ? iter // If outerFn is a generator, return the full iterator.
+ : iter.next().then(function(result) {
+ return result.done ? result.value : iter.next();
+ });
+ };
+
+ function makeInvokeMethod(innerFn, self, context) {
+ var state = GenStateSuspendedStart;
+
+ return function invoke(method, arg) {
+ if (state === GenStateExecuting) {
+ throw new Error("Generator is already running");
+ }
+
+ if (state === GenStateCompleted) {
+ if (method === "throw") {
+ throw arg;
+ }
+
+ // Be forgiving, per 25.3.3.3.3 of the spec:
+ // https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume
+ return doneResult();
+ }
+
+ while (true) {
+ var delegate = context.delegate;
+ if (delegate) {
+ if (method === "return" ||
+ (method === "throw" && delegate.iterator[method] === undefined)) {
+ // A return or throw (when the delegate iterator has no throw
+ // method) always terminates the yield* loop.
+ context.delegate = null;
+
+ // If the delegate iterator has a return method, give it a
+ // chance to clean up.
+ var returnMethod = delegate.iterator["return"];
+ if (returnMethod) {
+ var record = tryCatch(returnMethod, delegate.iterator, arg);
+ if (record.type === "throw") {
+ // If the return method threw an exception, let that
+ // exception prevail over the original return or throw.
+ method = "throw";
+ arg = record.arg;
+ continue;
+ }
+ }
+
+ if (method === "return") {
+ // Continue with the outer return, now that the delegate
+ // iterator has been terminated.
+ continue;
+ }
+ }
+
+ var record = tryCatch(
+ delegate.iterator[method],
+ delegate.iterator,
+ arg
+ );
+
+ if (record.type === "throw") {
+ context.delegate = null;
+
+ // Like returning generator.throw(uncaught), but without the
+ // overhead of an extra function call.
+ method = "throw";
+ arg = record.arg;
+ continue;
+ }
+
+ // Delegate generator ran and handled its own exceptions so
+ // regardless of what the method was, we continue as if it is
+ // "next" with an undefined arg.
+ method = "next";
+ arg = undefined;
+
+ var info = record.arg;
+ if (info.done) {
+ context[delegate.resultName] = info.value;
+ context.next = delegate.nextLoc;
+ } else {
+ state = GenStateSuspendedYield;
+ return info;
+ }
+
+ context.delegate = null;
+ }
+
+ if (method === "next") {
+ if (state === GenStateSuspendedYield) {
+ context.sent = arg;
+ } else {
+ context.sent = undefined;
+ }
+
+ } else if (method === "throw") {
+ if (state === GenStateSuspendedStart) {
+ state = GenStateCompleted;
+ throw arg;
+ }
+
+ if (context.dispatchException(arg)) {
+ // If the dispatched exception was caught by a catch block,
+ // then let that catch block handle the exception normally.
+ method = "next";
+ arg = undefined;
+ }
+
+ } else if (method === "return") {
+ context.abrupt("return", arg);
+ }
+
+ state = GenStateExecuting;
+
+ var record = tryCatch(innerFn, self, context);
+ if (record.type === "normal") {
+ // If an exception is thrown from innerFn, we leave state ===
+ // GenStateExecuting and loop back for another invocation.
+ state = context.done
+ ? GenStateCompleted
+ : GenStateSuspendedYield;
+
+ var info = {
+ value: record.arg,
+ done: context.done
+ };
+
+ if (record.arg === ContinueSentinel) {
+ if (context.delegate && method === "next") {
+ // Deliberately forget the last sent value so that we don't
+ // accidentally pass it on to the delegate.
+ arg = undefined;
+ }
+ } else {
+ return info;
+ }
+
+ } else if (record.type === "throw") {
+ state = GenStateCompleted;
+ // Dispatch the exception by looping back around to the
+ // context.dispatchException(arg) call above.
+ method = "throw";
+ arg = record.arg;
+ }
+ }
+ };
+ }
+
+ // Define Generator.prototype.{next,throw,return} in terms of the
+ // unified ._invoke helper method.
+ defineIteratorMethods(Gp);
+
+ Gp[iteratorSymbol] = function() {
+ return this;
+ };
+
+ Gp.toString = function() {
+ return "[object Generator]";
+ };
+
+ function pushTryEntry(locs) {
+ var entry = { tryLoc: locs[0] };
+
+ if (1 in locs) {
+ entry.catchLoc = locs[1];
+ }
+
+ if (2 in locs) {
+ entry.finallyLoc = locs[2];
+ entry.afterLoc = locs[3];
+ }
+
+ this.tryEntries.push(entry);
+ }
+
+ function resetTryEntry(entry) {
+ var record = entry.completion || {};
+ record.type = "normal";
+ delete record.arg;
+ entry.completion = record;
+ }
+
+ function Context(tryLocsList) {
+ // The root entry object (effectively a try statement without a catch
+ // or a finally block) gives us a place to store values thrown from
+ // locations where there is no enclosing try statement.
+ this.tryEntries = [{ tryLoc: "root" }];
+ tryLocsList.forEach(pushTryEntry, this);
+ this.reset(true);
+ }
+
+ runtime.keys = function(object) {
+ var keys = [];
+ for (var key in object) {
+ keys.push(key);
+ }
+ keys.reverse();
+
+ // Rather than returning an object with a next method, we keep
+ // things simple and return the next function itself.
+ return function next() {
+ while (keys.length) {
+ var key = keys.pop();
+ if (key in object) {
+ next.value = key;
+ next.done = false;
+ return next;
+ }
+ }
+
+ // To avoid creating an additional object, we just hang the .value
+ // and .done properties off the next function object itself. This
+ // also ensures that the minifier will not anonymize the function.
+ next.done = true;
+ return next;
+ };
+ };
+
+ function values(iterable) {
+ if (iterable) {
+ var iteratorMethod = iterable[iteratorSymbol];
+ if (iteratorMethod) {
+ return iteratorMethod.call(iterable);
+ }
+
+ if (typeof iterable.next === "function") {
+ return iterable;
+ }
+
+ if (!isNaN(iterable.length)) {
+ var i = -1, next = function next() {
+ while (++i < iterable.length) {
+ if (hasOwn.call(iterable, i)) {
+ next.value = iterable[i];
+ next.done = false;
+ return next;
+ }
+ }
+
+ next.value = undefined;
+ next.done = true;
+
+ return next;
+ };
+
+ return next.next = next;
+ }
+ }
+
+ // Return an iterator with no values.
+ return { next: doneResult };
+ }
+ runtime.values = values;
+
+ function doneResult() {
+ return { value: undefined, done: true };
+ }
+
+ Context.prototype = {
+ constructor: Context,
+
+ reset: function(skipTempReset) {
+ this.prev = 0;
+ this.next = 0;
+ this.sent = undefined;
+ this.done = false;
+ this.delegate = null;
+
+ this.tryEntries.forEach(resetTryEntry);
+
+ if (!skipTempReset) {
+ for (var name in this) {
+ // Not sure about the optimal order of these conditions:
+ if (name.charAt(0) === "t" &&
+ hasOwn.call(this, name) &&
+ !isNaN(+name.slice(1))) {
+ this[name] = undefined;
+ }
+ }
+ }
+ },
+
+ stop: function() {
+ this.done = true;
+
+ var rootEntry = this.tryEntries[0];
+ var rootRecord = rootEntry.completion;
+ if (rootRecord.type === "throw") {
+ throw rootRecord.arg;
+ }
+
+ return this.rval;
+ },
+
+ dispatchException: function(exception) {
+ if (this.done) {
+ throw exception;
+ }
+
+ var context = this;
+ function handle(loc, caught) {
+ record.type = "throw";
+ record.arg = exception;
+ context.next = loc;
+ return !!caught;
+ }
+
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
+ var entry = this.tryEntries[i];
+ var record = entry.completion;
+
+ if (entry.tryLoc === "root") {
+ // Exception thrown outside of any try block that could handle
+ // it, so set the completion value of the entire function to
+ // throw the exception.
+ return handle("end");
+ }
+
+ if (entry.tryLoc <= this.prev) {
+ var hasCatch = hasOwn.call(entry, "catchLoc");
+ var hasFinally = hasOwn.call(entry, "finallyLoc");
+
+ if (hasCatch && hasFinally) {
+ if (this.prev < entry.catchLoc) {
+ return handle(entry.catchLoc, true);
+ } else if (this.prev < entry.finallyLoc) {
+ return handle(entry.finallyLoc);
+ }
+
+ } else if (hasCatch) {
+ if (this.prev < entry.catchLoc) {
+ return handle(entry.catchLoc, true);
+ }
+
+ } else if (hasFinally) {
+ if (this.prev < entry.finallyLoc) {
+ return handle(entry.finallyLoc);
+ }
+
+ } else {
+ throw new Error("try statement without catch or finally");
+ }
+ }
+ }
+ },
+
+ abrupt: function(type, arg) {
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
+ var entry = this.tryEntries[i];
+ if (entry.tryLoc <= this.prev &&
+ hasOwn.call(entry, "finallyLoc") &&
+ this.prev < entry.finallyLoc) {
+ var finallyEntry = entry;
+ break;
+ }
+ }
+
+ if (finallyEntry &&
+ (type === "break" ||
+ type === "continue") &&
+ finallyEntry.tryLoc <= arg &&
+ arg <= finallyEntry.finallyLoc) {
+ // Ignore the finally entry if control is not jumping to a
+ // location outside the try/catch block.
+ finallyEntry = null;
+ }
+
+ var record = finallyEntry ? finallyEntry.completion : {};
+ record.type = type;
+ record.arg = arg;
+
+ if (finallyEntry) {
+ this.next = finallyEntry.finallyLoc;
+ } else {
+ this.complete(record);
+ }
+
+ return ContinueSentinel;
+ },
+
+ complete: function(record, afterLoc) {
+ if (record.type === "throw") {
+ throw record.arg;
+ }
+
+ if (record.type === "break" ||
+ record.type === "continue") {
+ this.next = record.arg;
+ } else if (record.type === "return") {
+ this.rval = record.arg;
+ this.next = "end";
+ } else if (record.type === "normal" && afterLoc) {
+ this.next = afterLoc;
+ }
+ },
+
+ finish: function(finallyLoc) {
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
+ var entry = this.tryEntries[i];
+ if (entry.finallyLoc === finallyLoc) {
+ this.complete(entry.completion, entry.afterLoc);
+ resetTryEntry(entry);
+ return ContinueSentinel;
+ }
+ }
+ },
+
+ "catch": function(tryLoc) {
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
+ var entry = this.tryEntries[i];
+ if (entry.tryLoc === tryLoc) {
+ var record = entry.completion;
+ if (record.type === "throw") {
+ var thrown = record.arg;
+ resetTryEntry(entry);
+ }
+ return thrown;
+ }
+ }
+
+ // The context.catch method must only be called with a location
+ // argument that corresponds to a known catch block.
+ throw new Error("illegal catch attempt");
+ },
+
+ delegateYield: function(iterable, resultName, nextLoc) {
+ this.delegate = {
+ iterator: values(iterable),
+ resultName: resultName,
+ nextLoc: nextLoc
+ };
+
+ return ContinueSentinel;
+ }
+ };
+ })(
+ // Among the various tricks for obtaining a reference to the global
+ // object, this seems to be the most reliable technique that does not
+ // use indirect eval (which violates Content Security Policy).
+ typeof global === "object" ? global :
+ typeof window === "object" ? window :
+ typeof self === "object" ? self : this
+ );
+
+ /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()), __webpack_require__(168)))
+
+/***/ },
+/* 168 */
+/***/ function(module, exports) {
+
+ // shim for using process in browser
+
+ var process = module.exports = {};
+ var queue = [];
+ var draining = false;
+ var currentQueue;
+ var queueIndex = -1;
+
+ function cleanUpNextTick() {
+ draining = false;
+ if (currentQueue.length) {
+ queue = currentQueue.concat(queue);
+ } else {
+ queueIndex = -1;
+ }
+ if (queue.length) {
+ drainQueue();
+ }
+ }
+
+ function drainQueue() {
+ if (draining) {
+ return;
+ }
+ var timeout = setTimeout(cleanUpNextTick);
+ draining = true;
+
+ var len = queue.length;
+ while(len) {
+ currentQueue = queue;
+ queue = [];
+ while (++queueIndex < len) {
+ currentQueue[queueIndex].run();
+ }
+ queueIndex = -1;
+ len = queue.length;
+ }
+ currentQueue = null;
+ draining = false;
+ clearTimeout(timeout);
+ }
+
+ process.nextTick = function (fun) {
+ var args = new Array(arguments.length - 1);
+ if (arguments.length > 1) {
+ for (var i = 1; i < arguments.length; i++) {
+ args[i - 1] = arguments[i];
+ }
+ }
+ queue.push(new Item(fun, args));
+ if (queue.length === 1 && !draining) {
+ setTimeout(drainQueue, 0);
+ }
+ };
+
+ // v8 likes predictible objects
+ function Item(fun, array) {
+ this.fun = fun;
+ this.array = array;
+ }
+ Item.prototype.run = function () {
+ this.fun.apply(null, this.array);
+ };
+ process.title = 'browser';
+ process.browser = true;
+ process.env = {};
+ process.argv = [];
+ process.version = ''; // empty string to avoid regexp issues
+ process.versions = {};
+
+ function noop() {}
+
+ process.on = noop;
+ process.addListener = noop;
+ process.once = noop;
+ process.off = noop;
+ process.removeListener = noop;
+ process.removeAllListeners = noop;
+ process.emit = noop;
+
+ process.binding = function (name) {
+ throw new Error('process.binding is not supported');
+ };
+
+ // TODO(shtylman)
+ process.cwd = function () { return '/' };
+ process.chdir = function (dir) {
+ throw new Error('process.chdir is not supported');
+ };
+ process.umask = function() { return 0; };
+
+
+/***/ },
+/* 169 */
+/***/ function(module, exports, __webpack_require__) {
+
+ /**
+ * dat-gui JavaScript Controller Library
+ * http://code.google.com/p/dat-gui
+ *
+ * Copyright 2011 Data Arts Team, Google Creative Lab
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ */
+
+ 'use strict';
+
+ exports.__esModule = true;
+ exports['default'] = {
+ color: {
+ Color: __webpack_require__(170),
+ math: __webpack_require__(174),
+ interpret: __webpack_require__(171)
+ },
+
+ controllers: {
+ Controller: __webpack_require__(175),
+ BooleanController: __webpack_require__(176),
+ OptionController: __webpack_require__(178),
+ StringController: __webpack_require__(179),
+ NumberController: __webpack_require__(180),
+ NumberControllerBox: __webpack_require__(181),
+ NumberControllerSlider: __webpack_require__(182),
+ FunctionController: __webpack_require__(188),
+ ColorController: __webpack_require__(189)
+ },
+
+ dom: {
+ dom: __webpack_require__(177)
+ },
+
+ gui: {
+ GUI: __webpack_require__(190)
+ },
+
+ GUI: __webpack_require__(190)
+ };
+ module.exports = exports['default'];
+
+/***/ },
+/* 170 */
/***/ function(module, exports, __webpack_require__) {
/**
@@ -119,19 +4919,19 @@ return /******/ (function(modules) { // webpackBootstrap
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
- var _interpret = __webpack_require__(3);
+ var _interpret = __webpack_require__(171);
var _interpret2 = _interopRequireDefault(_interpret);
- var _math = __webpack_require__(6);
+ var _math = __webpack_require__(174);
var _math2 = _interopRequireDefault(_math);
- var _toString = __webpack_require__(4);
+ var _toString = __webpack_require__(172);
var _toString2 = _interopRequireDefault(_toString);
- var _utilsCommon = __webpack_require__(5);
+ var _utilsCommon = __webpack_require__(173);
var _utilsCommon2 = _interopRequireDefault(_utilsCommon);
@@ -159,6 +4959,52 @@ return /******/ (function(modules) { // webpackBootstrap
return Color;
})();
+ function defineRGBComponent(target, component, componentHexIndex) {
+ Object.defineProperty(target, component, {
+ get: function get() {
+ if (this.__state.space === 'RGB') {
+ return this.__state[component];
+ }
+
+ Color.recalculateRGB(this, component, componentHexIndex);
+
+ return this.__state[component];
+ },
+
+ set: function set(v) {
+ if (this.__state.space !== 'RGB') {
+ Color.recalculateRGB(this, component, componentHexIndex);
+ this.__state.space = 'RGB';
+ }
+
+ this.__state[component] = v;
+ }
+ });
+ }
+
+ function defineHSVComponent(target, component) {
+ Object.defineProperty(target, component, {
+ get: function get() {
+ if (this.__state.space === 'HSV') {
+ return this.__state[component];
+ }
+
+ Color.recalculateHSV(this);
+
+ return this.__state[component];
+ },
+
+ set: function set(v) {
+ if (this.__state.space !== 'HSV') {
+ Color.recalculateHSV(this);
+ this.__state.space = 'HSV';
+ }
+
+ this.__state[component] = v;
+ }
+ });
+ }
+
Color.recalculateRGB = function (color, component, componentHexIndex) {
if (color.__state.space === 'HEX') {
color.__state[component] = _math2['default'].component_from_hex(color.__state.hex, componentHexIndex);
@@ -219,57 +5065,11 @@ return /******/ (function(modules) { // webpackBootstrap
}
});
- function defineRGBComponent(target, component, componentHexIndex) {
- Object.defineProperty(target, component, {
- get: function get() {
- if (this.__state.space === 'RGB') {
- return this.__state[component];
- }
-
- Color.recalculateRGB(this, component, componentHexIndex);
-
- return this.__state[component];
- },
-
- set: function set(v) {
- if (this.__state.space !== 'RGB') {
- Color.recalculateRGB(this, component, componentHexIndex);
- this.__state.space = 'RGB';
- }
-
- this.__state[component] = v;
- }
- });
- }
-
- function defineHSVComponent(target, component) {
- Object.defineProperty(target, component, {
- get: function get() {
- if (this.__state.space === 'HSV') {
- return this.__state[component];
- }
-
- Color.recalculateHSV(this);
-
- return this.__state[component];
- },
-
- set: function set(v) {
- if (this.__state.space !== 'HSV') {
- Color.recalculateHSV(this);
- this.__state.space = 'HSV';
- }
-
- this.__state[component] = v;
- }
- });
- }
-
exports['default'] = Color;
module.exports = exports['default'];
/***/ },
-/* 3 */
+/* 171 */
/***/ function(module, exports, __webpack_require__) {
/**
@@ -291,11 +5091,11 @@ return /******/ (function(modules) { // webpackBootstrap
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
- var _toString = __webpack_require__(4);
+ var _toString = __webpack_require__(172);
var _toString2 = _interopRequireDefault(_toString);
- var _utilsCommon = __webpack_require__(5);
+ var _utilsCommon = __webpack_require__(173);
var _utilsCommon2 = _interopRequireDefault(_utilsCommon);
@@ -571,7 +5371,7 @@ return /******/ (function(modules) { // webpackBootstrap
module.exports = exports['default'];
/***/ },
-/* 4 */
+/* 172 */
/***/ function(module, exports, __webpack_require__) {
/**
@@ -593,7 +5393,7 @@ return /******/ (function(modules) { // webpackBootstrap
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
- var _utilsCommon = __webpack_require__(5);
+ var _utilsCommon = __webpack_require__(173);
var _utilsCommon2 = _interopRequireDefault(_utilsCommon);
@@ -612,7 +5412,7 @@ return /******/ (function(modules) { // webpackBootstrap
module.exports = exports['default'];
/***/ },
-/* 5 */
+/* 173 */
/***/ function(module, exports) {
/**
@@ -764,7 +5564,7 @@ return /******/ (function(modules) { // webpackBootstrap
module.exports = exports['default'];
/***/ },
-/* 6 */
+/* 174 */
/***/ function(module, exports) {
/**
@@ -859,7 +5659,7 @@ return /******/ (function(modules) { // webpackBootstrap
module.exports = exports["default"];
/***/ },
-/* 7 */
+/* 175 */
/***/ function(module, exports) {
/**
@@ -1008,7 +5808,7 @@ return /******/ (function(modules) { // webpackBootstrap
module.exports = exports['default'];
/***/ },
-/* 8 */
+/* 176 */
/***/ function(module, exports, __webpack_require__) {
/**
@@ -1034,11 +5834,11 @@ return /******/ (function(modules) { // webpackBootstrap
function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
- var _Controller2 = __webpack_require__(7);
+ var _Controller2 = __webpack_require__(175);
var _Controller3 = _interopRequireDefault(_Controller2);
- var _domDom = __webpack_require__(9);
+ var _domDom = __webpack_require__(177);
var _domDom2 = _interopRequireDefault(_domDom);
@@ -1105,7 +5905,7 @@ return /******/ (function(modules) { // webpackBootstrap
module.exports = exports['default'];
/***/ },
-/* 9 */
+/* 177 */
/***/ function(module, exports, __webpack_require__) {
/**
@@ -1127,7 +5927,7 @@ return /******/ (function(modules) { // webpackBootstrap
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
- var _utilsCommon = __webpack_require__(5);
+ var _utilsCommon = __webpack_require__(173);
var _utilsCommon2 = _interopRequireDefault(_utilsCommon);
@@ -1396,7 +6196,7 @@ return /******/ (function(modules) { // webpackBootstrap
module.exports = exports['default'];
/***/ },
-/* 10 */
+/* 178 */
/***/ function(module, exports, __webpack_require__) {
/**
@@ -1422,15 +6222,15 @@ return /******/ (function(modules) { // webpackBootstrap
function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
- var _Controller2 = __webpack_require__(7);
+ var _Controller2 = __webpack_require__(175);
var _Controller3 = _interopRequireDefault(_Controller2);
- var _domDom = __webpack_require__(9);
+ var _domDom = __webpack_require__(177);
var _domDom2 = _interopRequireDefault(_domDom);
- var _utilsCommon = __webpack_require__(5);
+ var _utilsCommon = __webpack_require__(173);
var _utilsCommon2 = _interopRequireDefault(_utilsCommon);
@@ -1515,7 +6315,7 @@ return /******/ (function(modules) { // webpackBootstrap
module.exports = exports['default'];
/***/ },
-/* 11 */
+/* 179 */
/***/ function(module, exports, __webpack_require__) {
/**
@@ -1541,11 +6341,11 @@ return /******/ (function(modules) { // webpackBootstrap
function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
- var _Controller2 = __webpack_require__(7);
+ var _Controller2 = __webpack_require__(175);
var _Controller3 = _interopRequireDefault(_Controller2);
- var _domDom = __webpack_require__(9);
+ var _domDom = __webpack_require__(177);
var _domDom2 = _interopRequireDefault(_domDom);
@@ -1570,6 +6370,16 @@ return /******/ (function(modules) { // webpackBootstrap
var _this = this;
+ function onChange() {
+ _this.setValue(_this.__input.value);
+ }
+
+ function onBlur() {
+ if (_this.__onFinishChange) {
+ _this.__onFinishChange.call(_this, _this.getValue());
+ }
+ }
+
this.__input = document.createElement('input');
this.__input.setAttribute('type', 'text');
@@ -1582,16 +6392,6 @@ return /******/ (function(modules) { // webpackBootstrap
}
});
- function onChange() {
- _this.setValue(_this.__input.value);
- }
-
- function onBlur() {
- if (_this.__onFinishChange) {
- _this.__onFinishChange.call(_this, _this.getValue());
- }
- }
-
this.updateDisplay();
this.domElement.appendChild(this.__input);
@@ -1613,7 +6413,7 @@ return /******/ (function(modules) { // webpackBootstrap
module.exports = exports['default'];
/***/ },
-/* 12 */
+/* 180 */
/***/ function(module, exports, __webpack_require__) {
/**
@@ -1639,11 +6439,11 @@ return /******/ (function(modules) { // webpackBootstrap
function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
- var _Controller2 = __webpack_require__(7);
+ var _Controller2 = __webpack_require__(175);
var _Controller3 = _interopRequireDefault(_Controller2);
- var _utilsCommon = __webpack_require__(5);
+ var _utilsCommon = __webpack_require__(173);
var _utilsCommon2 = _interopRequireDefault(_utilsCommon);
@@ -1766,7 +6566,7 @@ return /******/ (function(modules) { // webpackBootstrap
module.exports = exports['default'];
/***/ },
-/* 13 */
+/* 181 */
/***/ function(module, exports, __webpack_require__) {
/**
@@ -1792,15 +6592,15 @@ return /******/ (function(modules) { // webpackBootstrap
function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
- var _NumberController2 = __webpack_require__(12);
+ var _NumberController2 = __webpack_require__(180);
var _NumberController3 = _interopRequireDefault(_NumberController2);
- var _domDom = __webpack_require__(9);
+ var _domDom = __webpack_require__(177);
var _domDom2 = _interopRequireDefault(_domDom);
- var _utilsCommon = __webpack_require__(5);
+ var _utilsCommon = __webpack_require__(173);
var _utilsCommon2 = _interopRequireDefault(_utilsCommon);
@@ -1844,6 +6644,38 @@ return /******/ (function(modules) { // webpackBootstrap
*/
var prevY = undefined;
+ function onChange() {
+ var attempted = parseFloat(_this.__input.value);
+ if (!_utilsCommon2['default'].isNaN(attempted)) {
+ _this.setValue(attempted);
+ }
+ }
+
+ function onBlur() {
+ onChange();
+ if (_this.__onFinishChange) {
+ _this.__onFinishChange.call(_this, _this.getValue());
+ }
+ }
+
+ function onMouseDrag(e) {
+ var diff = prevY - e.clientY;
+ _this.setValue(_this.getValue() + diff * _this.__impliedStep);
+
+ prevY = e.clientY;
+ }
+
+ function onMouseUp() {
+ _domDom2['default'].unbind(window, 'mousemove', onMouseDrag);
+ _domDom2['default'].unbind(window, 'mouseup', onMouseUp);
+ }
+
+ function onMouseDown(e) {
+ _domDom2['default'].bind(window, 'mousemove', onMouseDrag);
+ _domDom2['default'].bind(window, 'mouseup', onMouseUp);
+ prevY = e.clientY;
+ }
+
this.__input = document.createElement('input');
this.__input.setAttribute('type', 'text');
@@ -1861,38 +6693,6 @@ return /******/ (function(modules) { // webpackBootstrap
}
});
- function onChange() {
- var attempted = parseFloat(_this.__input.value);
- if (!_utilsCommon2['default'].isNaN(attempted)) {
- _this.setValue(attempted);
- }
- }
-
- function onBlur() {
- onChange();
- if (_this.__onFinishChange) {
- _this.__onFinishChange.call(_this, _this.getValue());
- }
- }
-
- function onMouseDown(e) {
- _domDom2['default'].bind(window, 'mousemove', onMouseDrag);
- _domDom2['default'].bind(window, 'mouseup', onMouseUp);
- prevY = e.clientY;
- }
-
- function onMouseDrag(e) {
- var diff = prevY - e.clientY;
- _this.setValue(_this.getValue() + diff * _this.__impliedStep);
-
- prevY = e.clientY;
- }
-
- function onMouseUp() {
- _domDom2['default'].unbind(window, 'mousemove', onMouseDrag);
- _domDom2['default'].unbind(window, 'mouseup', onMouseUp);
- }
-
this.updateDisplay();
this.domElement.appendChild(this.__input);
@@ -1910,7 +6710,7 @@ return /******/ (function(modules) { // webpackBootstrap
module.exports = exports['default'];
/***/ },
-/* 14 */
+/* 182 */
/***/ function(module, exports, __webpack_require__) {
/**
@@ -1936,19 +6736,19 @@ return /******/ (function(modules) { // webpackBootstrap
function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
- var _NumberController2 = __webpack_require__(12);
+ var _NumberController2 = __webpack_require__(180);
var _NumberController3 = _interopRequireDefault(_NumberController2);
- var _domDom = __webpack_require__(9);
+ var _domDom = __webpack_require__(177);
var _domDom2 = _interopRequireDefault(_domDom);
- var _utilsCss = __webpack_require__(15);
+ var _utilsCss = __webpack_require__(183);
var _utilsCss2 = _interopRequireDefault(_utilsCss);
- var _styleCssSassNumberControllerSliderScss = __webpack_require__(16);
+ var _styleCssSassNumberControllerSliderScss = __webpack_require__(184);
var _styleCssSassNumberControllerSliderScss2 = _interopRequireDefault(_styleCssSassNumberControllerSliderScss);
@@ -2046,7 +6846,7 @@ return /******/ (function(modules) { // webpackBootstrap
module.exports = exports['default'];
/***/ },
-/* 15 */
+/* 183 */
/***/ function(module, exports) {
/**
@@ -2084,16 +6884,16 @@ return /******/ (function(modules) { // webpackBootstrap
};
/***/ },
-/* 16 */
+/* 184 */
/***/ function(module, exports, __webpack_require__) {
// style-loader: Adds some css to the DOM by adding a