react-free-carousel
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -1,2 +0,2 @@ | ||
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("react")):"function"==typeof define&&define.amd?define(["react"],e):"object"==typeof exports?exports.ReactFreeCarousel=e(require("react")):t.ReactFreeCarousel=e(t.React)}(this,function(t){return function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=2)}([function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}return Array.from(t)}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function u(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0}),e.ReactFreeCarouselTile=void 0;var s=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),f=n(19),l=r(f),c=n(14),p=r(c),h=n(12),d=r(h),g=n(11),y=r(g),v=n(18),A=r(v),w=function(t){return t instanceof Array?t:[t]},b=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return"string"==typeof t?t.includes("%")&&e?Math.floor(parseInt(t,10)/100*e)-n+"px":e||0===n?t:"calc("+t+" - "+n+"px)":"number"==typeof t?t-n+"px":"100%"},m=function(t){function e(t){i(this,e);var n=a(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t));return n.state={page:n.props.page||0,pages:0},n.gotoPage=n.gotoPage.bind(n),n.reRender=n.reRender.bind(n),n}return u(e,t),s(e,[{key:"componentDidMount",value:function(){var t=this;this.debouncingRender=(0,d.default)(this.reRender,600),setTimeout(function(){var e=t.calculateTotalPages();t.setState({pages:e}),t.playCarousel(),t.props.slide>0?t.gotoTile(t.props.slide):t.props.page>0&&t.gotoPage(t.props.page),window.addEventListener("resize",t.debouncingRender),window.addEventListener("orientationchange",t.debouncingRender)},100)}},{key:"componentWillReceiveProps",value:function(t){var e=this;w(t.children).length!==w(this.props.children).length?setTimeout(function(){e.reRender(!1)},200):t.autoplay!==this.props.autoplay&&setTimeout(function(){e.playCarousel()},210)}},{key:"componentWillUnmount",value:function(){this.stopCarousel(),window.removeEventListener("resize",this.debouncingRender),window.removeEventListener("orientationchange",this.debouncingRender)}},{key:"reRender",value:function(){var t=this,e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.stopCarousel();var n=this.calculateTotalPages(),r=e&&this.state.pages!==n?0:this.state.page;r>n&&(r=n),0===r&&this.container&&(this.container.style.transition="none",this.container.style.marginLeft="0px",this.container.style.transition="margin-left "+this.props.transitionSpeed+"ms"),setTimeout(function(){t.setState({page:r,pages:n},function(){t.gotoPage(r),t.playCarousel()})},this.props.transitionSpeed+50)}},{key:"stopCarousel",value:function(){this.slidingInterval&&clearInterval(this.slidingInterval)}},{key:"playCarousel",value:function(){var t=this;this.stopCarousel(),this.state.pages>0&&this.props.autoplay&&this.props.interval&&(this.slidingInterval=setInterval(function(){var e=t.state.page===t.state.pages?0:t.state.page+1;t.gotoPage(e)},this.props.interval))}},{key:"gotoPage",value:function(t){var e=this,n=t>this.state.pages?0:t;this.stopCarousel(),this.setState({page:n},function(){e.playCarousel()}),this.container.style.marginLeft="-"+this.pageToOffset(n)+"px"}},{key:"gotoTile",value:function(t){var e=this.container.children[t];e&&this.gotoPage(Number(e.getAttribute("data-page")))}},{key:"pageToOffset",value:function(t){var e=this.container.querySelector('[data-page="'+t+'"]');return e&&"true"===e.getAttribute("data-first")?parseInt(e.getAttribute("data-offset"),10):0}},{key:"renderTile",value:function(t){return t}},{key:"calculateTotalPages",value:function(){var t=this,e=this.wrapper?this.wrapper.clientWidth:0,n=new Map,r=new Map,o=0;return this.container.children.length&&Array.from(this.container.children).forEach(function(i,a){var u=i.offsetLeft-t.container.offsetLeft-parseInt(window.getComputedStyle(i).marginLeft,10),s=i.clientWidth;if(n.has(u))i.setAttribute("data-first","false"),i.setAttribute("data-page",""+n.get(u)),i.setAttribute("data-offset",""+u);else{var f=r.get(o)||0;u>=f&&u+s<=f+e?0===a&&i.setAttribute("data-first","true"):(o+=1,i.setAttribute("data-first","true")),i.setAttribute("data-page",""+o),i.setAttribute("data-offset",""+u),n.set(u,o),r.has(o)||r.set(o,u)}}),o}},{key:"renderPagination",value:function(){var t=this;return l.default.createElement("div",{className:this.props.paginationClass||A.default.defaultPaginationClass,ref:function(e){t.pagination=e},role:"navigation"},[].concat(o(Array(this.state.pages+1))).map(function(e,n){return l.default.createElement("button",{"aria-label":"Goto Page "+(n+1),className:"\n "+t.props.paginationDotClass+"\n "+(n===t.state.page?t.props.paginationDotActiveClass:""),"data-active":n===t.state.page?"true":"false",key:n,onClick:function(){t.gotoPage(n)}},n+1)}))}},{key:"renderArrows",value:function(t){var e=this,n=function(t){return"next"===t&&e.state.page<e.state.pages?e.state.page+1:"prev"===t&&e.state.page>0?e.state.page-1:null}(t),r=(0,y.default)(t)+"Class";return l.default.createElement("button",{className:this.props["arrow"+r]||A.default["defaultArrow"+r],disabled:null===n,onClick:function(){e.gotoPage(n)},role:"button",type:"button"})}},{key:"render",value:function(){var t=this,e=this.props,n=e.children,r=e.className,o=e.width,i=e.height,a=e.transitionSpeed,u=e.showPagination,s=e.minPagesToShowPagination,f=e.arrows,c=e.tileMargin,p=l.default.Children.map(Array.from(w(n)),function(e){return e.type===E?l.default.cloneElement(e,{parent:t,tileMargin:c,parentWidth:t.wrapper&&t.wrapper.clientWidth+c,updateParent:t.reRender}):e}),h={position:"relative",width:b(o,null),height:b(i,null)},d={position:"relative",overflow:"hidden",width:"calc(100% + "+b(c)+")",height:"calc(100% + "+b(c)+")"},g={overflow:"hidden",position:"static",alignContent:"flex-start",display:"flex",flexDirection:"column",flexWrap:"wrap",height:"100%",transform:"translate(-"+b(c)+", -"+b(c)+")",transition:"margin-left "+a+"ms"};return l.default.createElement("div",{className:r,ref:function(e){t.wrapper=e},style:h},l.default.createElement("div",{style:d},l.default.createElement("div",{ref:function(e){t.container=e},style:g},p&&p.map(this.renderTile))),f&&this.renderArrows("prev"),u&&this.state.pages+1>=s&&this.renderPagination(),f&&this.renderArrows("next"))}}]),e}(l.default.Component);e.default=m,m.propTypes={children:l.default.PropTypes.oneOfType([l.default.PropTypes.arrayOf(l.default.PropTypes.node),l.default.PropTypes.node]),className:p.default.string,height:p.default.oneOfType([p.default.string,p.default.number]),width:p.default.oneOfType([p.default.string,p.default.number]),tileMargin:p.default.oneOfType([p.default.string,p.default.number]),interval:p.default.number,autoplay:p.default.bool,showPagination:p.default.bool,transitionSpeed:p.default.number,page:p.default.number,slide:p.default.number,minPagesToShowPagination:p.default.number,paginationClass:p.default.string,paginationDotClass:p.default.string,paginationDotActiveClass:p.default.string,arrows:p.default.bool,arrowPrevClass:p.default.string,arrowNextClass:p.default.string},m.defaultProps={className:null,interval:5e3,transitionSpeed:500,height:"100%",width:"100%",autoplay:!0,showPagination:!0,page:0,tileMargin:0,slide:null,minPagesToShowPagination:2,paginationClass:"",paginationDotClass:"",paginationDotActiveClass:"",arrows:!1,arrowPrevClass:"",arrowNextClass:""};var E=e.ReactFreeCarouselTile=function(t){function e(t){i(this,e);var n=a(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t));return n.state={parentWidth:null},n}return u(e,t),s(e,[{key:"componentWillReceiveProps",value:function(t){var e=this;t.parentWidth!==this.props.parentWidth&&setTimeout(function(){e.props.updateParent()},0)}},{key:"render",value:function(){var t=this,e=this.props,n=e.parentWidth,r=e.height,o=e.width,i=e.tileMargin,a={height:b(r,null,i),width:b(o,n,i),marginTop:""+b(i),marginLeft:""+b(i)};return l.default.createElement("div",{className:this.props.className||A.default.defaultTile,ref:function(e){t.tile=e},style:a},this.props.children)}}]),e}(l.default.Component);E.propTypes={children:l.default.PropTypes.oneOfType([l.default.PropTypes.arrayOf(l.default.PropTypes.node),l.default.PropTypes.node]),updateParent:p.default.func.isRequired,parentWidth:p.default.number,className:p.default.string,tileMargin:p.default.oneOfType([p.default.string,p.default.number]),height:p.default.oneOfType([p.default.string,p.default.number]),width:p.default.oneOfType([p.default.string,p.default.number])},E.defaultProps={className:null,tileMargin:0,width:"100%",height:"100%"}},function(t,e,n){"use strict";var r=n(1).default;t.exports=r},function(t,e,n){"use strict";function r(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");return"="===t[e-2]?2:"="===t[e-1]?1:0}function o(t){return 3*t.length/4-r(t)}function i(t){var e,n,o,i,a,u=t.length;i=r(t),a=new c(3*u/4-i),n=i>0?u-4:u;var s=0;for(e=0;e<n;e+=4)o=l[t.charCodeAt(e)]<<18|l[t.charCodeAt(e+1)]<<12|l[t.charCodeAt(e+2)]<<6|l[t.charCodeAt(e+3)],a[s++]=o>>16&255,a[s++]=o>>8&255,a[s++]=255&o;return 2===i?(o=l[t.charCodeAt(e)]<<2|l[t.charCodeAt(e+1)]>>4,a[s++]=255&o):1===i&&(o=l[t.charCodeAt(e)]<<10|l[t.charCodeAt(e+1)]<<4|l[t.charCodeAt(e+2)]>>2,a[s++]=o>>8&255,a[s++]=255&o),a}function a(t){return f[t>>18&63]+f[t>>12&63]+f[t>>6&63]+f[63&t]}function u(t,e,n){for(var r,o=[],i=e;i<n;i+=3)r=(t[i]<<16)+(t[i+1]<<8)+t[i+2],o.push(a(r));return o.join("")}function s(t){for(var e,n=t.length,r=n%3,o="",i=[],a=0,s=n-r;a<s;a+=16383)i.push(u(t,a,a+16383>s?s:a+16383));return 1===r?(e=t[n-1],o+=f[e>>2],o+=f[e<<4&63],o+="=="):2===r&&(e=(t[n-2]<<8)+t[n-1],o+=f[e>>10],o+=f[e>>4&63],o+=f[e<<2&63],o+="="),i.push(o),i.join("")}e.byteLength=o,e.toByteArray=i,e.fromByteArray=s;for(var f=[],l=[],c="undefined"!=typeof Uint8Array?Uint8Array:Array,p="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",h=0,d=p.length;h<d;++h)f[h]=p[h],l[p.charCodeAt(h)]=h;l["-".charCodeAt(0)]=62,l["_".charCodeAt(0)]=63},function(t,e,n){"use strict";(function(t){function r(){return i.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function o(t,e){if(r()<e)throw new RangeError("Invalid typed array length");return i.TYPED_ARRAY_SUPPORT?(t=new Uint8Array(e),t.__proto__=i.prototype):(null===t&&(t=new i(e)),t.length=e),t}function i(t,e,n){if(!(i.TYPED_ARRAY_SUPPORT||this instanceof i))return new i(t,e,n);if("number"==typeof t){if("string"==typeof e)throw new Error("If encoding is specified then the first argument must be a string");return f(this,t)}return a(this,t,e,n)}function a(t,e,n,r){if("number"==typeof e)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&e instanceof ArrayBuffer?p(t,e,n,r):"string"==typeof e?l(t,e,n):h(t,e)}function u(t){if("number"!=typeof t)throw new TypeError('"size" argument must be a number');if(t<0)throw new RangeError('"size" argument must not be negative')}function s(t,e,n,r){return u(e),e<=0?o(t,e):void 0!==n?"string"==typeof r?o(t,e).fill(n,r):o(t,e).fill(n):o(t,e)}function f(t,e){if(u(e),t=o(t,e<0?0:0|d(e)),!i.TYPED_ARRAY_SUPPORT)for(var n=0;n<e;++n)t[n]=0;return t}function l(t,e,n){if("string"==typeof n&&""!==n||(n="utf8"),!i.isEncoding(n))throw new TypeError('"encoding" must be a valid string encoding');var r=0|y(e,n);t=o(t,r);var a=t.write(e,n);return a!==r&&(t=t.slice(0,a)),t}function c(t,e){var n=e.length<0?0:0|d(e.length);t=o(t,n);for(var r=0;r<n;r+=1)t[r]=255&e[r];return t}function p(t,e,n,r){if(e.byteLength,n<0||e.byteLength<n)throw new RangeError("'offset' is out of bounds");if(e.byteLength<n+(r||0))throw new RangeError("'length' is out of bounds");return e=void 0===n&&void 0===r?new Uint8Array(e):void 0===r?new Uint8Array(e,n):new Uint8Array(e,n,r),i.TYPED_ARRAY_SUPPORT?(t=e,t.__proto__=i.prototype):t=c(t,e),t}function h(t,e){if(i.isBuffer(e)){var n=0|d(e.length);return t=o(t,n),0===t.length?t:(e.copy(t,0,0,n),t)}if(e){if("undefined"!=typeof ArrayBuffer&&e.buffer instanceof ArrayBuffer||"length"in e)return"number"!=typeof e.length||G(e.length)?o(t,0):c(t,e);if("Buffer"===e.type&&K(e.data))return c(t,e.data)}throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}function d(t){if(t>=r())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+r().toString(16)+" bytes");return 0|t}function g(t){return+t!=t&&(t=0),i.alloc(+t)}function y(t,e){if(i.isBuffer(t))return t.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(t)||t instanceof ArrayBuffer))return t.byteLength;"string"!=typeof t&&(t=""+t);var n=t.length;if(0===n)return 0;for(var r=!1;;)switch(e){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return q(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return X(t).length;default:if(r)return q(t).length;e=(""+e).toLowerCase(),r=!0}}function v(t,e,n){var r=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if(n>>>=0,e>>>=0,n<=e)return"";for(t||(t="utf8");;)switch(t){case"hex":return U(this,e,n);case"utf8":case"utf-8":return x(this,e,n);case"ascii":return S(this,e,n);case"latin1":case"binary":return O(this,e,n);case"base64":return B(this,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return I(this,e,n);default:if(r)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),r=!0}}function A(t,e,n){var r=t[e];t[e]=t[n],t[n]=r}function w(t,e,n,r,o){if(0===t.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=o?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(o)return-1;n=t.length-1}else if(n<0){if(!o)return-1;n=0}if("string"==typeof e&&(e=i.from(e,r)),i.isBuffer(e))return 0===e.length?-1:b(t,e,n,r,o);if("number"==typeof e)return e&=255,i.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(t,e,n):Uint8Array.prototype.lastIndexOf.call(t,e,n):b(t,[e],n,r,o);throw new TypeError("val must be string, number or Buffer")}function b(t,e,n,r,o){function i(t,e){return 1===a?t[e]:t.readUInt16BE(e*a)}var a=1,u=t.length,s=e.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(t.length<2||e.length<2)return-1;a=2,u/=2,s/=2,n/=2}var f;if(o){var l=-1;for(f=n;f<u;f++)if(i(t,f)===i(e,-1===l?0:f-l)){if(-1===l&&(l=f),f-l+1===s)return l*a}else-1!==l&&(f-=f-l),l=-1}else for(n+s>u&&(n=u-s),f=n;f>=0;f--){for(var c=!0,p=0;p<s;p++)if(i(t,f+p)!==i(e,p)){c=!1;break}if(c)return f}return-1}function m(t,e,n,r){n=Number(n)||0;var o=t.length-n;r?(r=Number(r))>o&&(r=o):r=o;var i=e.length;if(i%2!=0)throw new TypeError("Invalid hex string");r>i/2&&(r=i/2);for(var a=0;a<r;++a){var u=parseInt(e.substr(2*a,2),16);if(isNaN(u))return a;t[n+a]=u}return a}function E(t,e,n,r){return Z(q(e,t.length-n),t,n,r)}function C(t,e,n,r){return Z($(e),t,n,r)}function P(t,e,n,r){return C(t,e,n,r)}function T(t,e,n,r){return Z(X(e),t,n,r)}function R(t,e,n,r){return Z(V(e,t.length-n),t,n,r)}function B(t,e,n){return 0===e&&n===t.length?J.fromByteArray(t):J.fromByteArray(t.slice(e,n))}function x(t,e,n){n=Math.min(t.length,n);for(var r=[],o=e;o<n;){var i=t[o],a=null,u=i>239?4:i>223?3:i>191?2:1;if(o+u<=n){var s,f,l,c;switch(u){case 1:i<128&&(a=i);break;case 2:s=t[o+1],128==(192&s)&&(c=(31&i)<<6|63&s)>127&&(a=c);break;case 3:s=t[o+1],f=t[o+2],128==(192&s)&&128==(192&f)&&(c=(15&i)<<12|(63&s)<<6|63&f)>2047&&(c<55296||c>57343)&&(a=c);break;case 4:s=t[o+1],f=t[o+2],l=t[o+3],128==(192&s)&&128==(192&f)&&128==(192&l)&&(c=(15&i)<<18|(63&s)<<12|(63&f)<<6|63&l)>65535&&c<1114112&&(a=c)}}null===a?(a=65533,u=1):a>65535&&(a-=65536,r.push(a>>>10&1023|55296),a=56320|1023&a),r.push(a),o+=u}return _(r)}function _(t){var e=t.length;if(e<=Q)return String.fromCharCode.apply(String,t);for(var n="",r=0;r<e;)n+=String.fromCharCode.apply(String,t.slice(r,r+=Q));return n}function S(t,e,n){var r="";n=Math.min(t.length,n);for(var o=e;o<n;++o)r+=String.fromCharCode(127&t[o]);return r}function O(t,e,n){var r="";n=Math.min(t.length,n);for(var o=e;o<n;++o)r+=String.fromCharCode(t[o]);return r}function U(t,e,n){var r=t.length;(!e||e<0)&&(e=0),(!n||n<0||n>r)&&(n=r);for(var o="",i=e;i<n;++i)o+=z(t[i]);return o}function I(t,e,n){for(var r=t.slice(e,n),o="",i=0;i<r.length;i+=2)o+=String.fromCharCode(r[i]+256*r[i+1]);return o}function j(t,e,n){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+e>n)throw new RangeError("Trying to access beyond buffer length")}function L(t,e,n,r,o,a){if(!i.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>o||e<a)throw new RangeError('"value" argument is out of bounds');if(n+r>t.length)throw new RangeError("Index out of range")}function M(t,e,n,r){e<0&&(e=65535+e+1);for(var o=0,i=Math.min(t.length-n,2);o<i;++o)t[n+o]=(e&255<<8*(r?o:1-o))>>>8*(r?o:1-o)}function Y(t,e,n,r){e<0&&(e=4294967295+e+1);for(var o=0,i=Math.min(t.length-n,4);o<i;++o)t[n+o]=e>>>8*(r?o:3-o)&255}function k(t,e,n,r,o,i){if(n+r>t.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function N(t,e,n,r,o){return o||k(t,e,n,4,3.4028234663852886e38,-3.4028234663852886e38),H.write(t,e,n,r,23,4),n+4}function D(t,e,n,r,o){return o||k(t,e,n,8,1.7976931348623157e308,-1.7976931348623157e308),H.write(t,e,n,r,52,8),n+8}function W(t){if(t=F(t).replace(tt,""),t.length<2)return"";for(;t.length%4!=0;)t+="=";return t}function F(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")}function z(t){return t<16?"0"+t.toString(16):t.toString(16)}function q(t,e){e=e||1/0;for(var n,r=t.length,o=null,i=[],a=0;a<r;++a){if((n=t.charCodeAt(a))>55295&&n<57344){if(!o){if(n>56319){(e-=3)>-1&&i.push(239,191,189);continue}if(a+1===r){(e-=3)>-1&&i.push(239,191,189);continue}o=n;continue}if(n<56320){(e-=3)>-1&&i.push(239,191,189),o=n;continue}n=65536+(o-55296<<10|n-56320)}else o&&(e-=3)>-1&&i.push(239,191,189);if(o=null,n<128){if((e-=1)<0)break;i.push(n)}else if(n<2048){if((e-=2)<0)break;i.push(n>>6|192,63&n|128)}else if(n<65536){if((e-=3)<0)break;i.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;i.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return i}function $(t){for(var e=[],n=0;n<t.length;++n)e.push(255&t.charCodeAt(n));return e}function V(t,e){for(var n,r,o,i=[],a=0;a<t.length&&!((e-=2)<0);++a)n=t.charCodeAt(a),r=n>>8,o=n%256,i.push(o),i.push(r);return i}function X(t){return J.toByteArray(W(t))}function Z(t,e,n,r){for(var o=0;o<r&&!(o+n>=e.length||o>=t.length);++o)e[o+n]=t[o];return o}function G(t){return t!==t}/*! | ||
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("react")):"function"==typeof define&&define.amd?define(["react"],e):"object"==typeof exports?exports.ReactFreeCarousel=e(require("react")):t.ReactFreeCarousel=e(t.React)}(this,function(t){return function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=2)}([function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}return Array.from(t)}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function u(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0}),e.ReactFreeCarouselTile=void 0;var s=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),f=n(19),l=r(f),c=n(14),h=r(c),p=n(12),d=r(p),g=n(11),y=r(g),v=n(18),A=r(v),w=function(t){return t instanceof Array?t:[t]},b=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return"string"==typeof t?t.includes("%")&&e?Math.floor(parseInt(t,10)/100*e)-n+"px":e||0===n?t:"calc("+t+" - "+n+"px)":"number"==typeof t?t-n+"px":"100%"},m=function(t){function e(t){i(this,e);var n=a(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t));return n.state={page:n.props.page||0,pages:0},n.gotoPage=n.gotoPage.bind(n),n.reRender=n.reRender.bind(n),n}return u(e,t),s(e,[{key:"componentDidMount",value:function(){var t=this;this.debouncingRender=(0,d.default)(this.reRender,600),setTimeout(function(){var e=t.calculateTotalPages();t.setState({pages:e}),t.playCarousel(),t.props.slide>0?t.gotoTile(t.props.slide):t.props.page>0&&t.gotoPage(t.props.page),window.addEventListener("resize",t.debouncingRender),window.addEventListener("orientationchange",t.debouncingRender)},100)}},{key:"componentWillReceiveProps",value:function(t){var e=this;w(t.children).length!==w(this.props.children).length?setTimeout(function(){e.reRender(!1)},200):t.autoplay!==this.props.autoplay&&setTimeout(function(){e.playCarousel()},210)}},{key:"componentWillUnmount",value:function(){this.stopCarousel(),window.removeEventListener("resize",this.debouncingRender),window.removeEventListener("orientationchange",this.debouncingRender)}},{key:"reRender",value:function(){var t=this,e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.stopCarousel();var n=this.calculateTotalPages(),r=e&&this.state.pages!==n?0:this.state.page;r>n&&(r=n),0===r&&this.container&&(this.container.style.transition="none",this.container.style.marginLeft="0px",this.container.style.transition="margin-left "+this.props.transitionSpeed+"ms"),setTimeout(function(){t.setState({page:r,pages:n},function(){t.gotoPage(r),t.playCarousel()})},this.props.transitionSpeed+50)}},{key:"stopCarousel",value:function(){this.slidingInterval&&clearInterval(this.slidingInterval)}},{key:"playCarousel",value:function(){var t=this;this.stopCarousel(),this.state.pages>0&&this.props.autoplay&&this.props.interval&&(this.slidingInterval=setInterval(function(){var e=t.state.page===t.state.pages?0:t.state.page+1;t.gotoPage(e)},this.props.interval))}},{key:"gotoPage",value:function(t){var e=this,n=t>this.state.pages?0:t;this.stopCarousel(),this.setState({page:n},function(){e.playCarousel()}),this.container.style.marginLeft="-"+this.pageToOffset(n)+"px"}},{key:"gotoTile",value:function(t){var e=this.container.children[t];e&&this.gotoPage(Number(e.getAttribute("data-page")))}},{key:"pageToOffset",value:function(t){var e=this.container.querySelector('[data-page="'+t+'"]');return e&&"true"===e.getAttribute("data-first")?parseInt(e.getAttribute("data-offset"),10):0}},{key:"renderTile",value:function(t){return t}},{key:"calculateTotalPages",value:function(){var t=this,e=this.wrapper?this.wrapper.clientWidth:0,n=new Map,r=new Map,o=0;return this.container.children.length&&Array.from(this.container.children).forEach(function(i,a){var u=i.offsetLeft-t.container.offsetLeft-parseInt(window.getComputedStyle(i).marginLeft,10),s=i.clientWidth;if(n.has(u))i.setAttribute("data-first","false"),i.setAttribute("data-page",""+n.get(u)),i.setAttribute("data-offset",""+u);else{var f=r.get(o)||0;u>=f&&u+s<=f+e?0===a&&i.setAttribute("data-first","true"):(o+=1,i.setAttribute("data-first","true")),i.setAttribute("data-page",""+o),i.setAttribute("data-offset",""+u),n.set(u,o),r.has(o)||r.set(o,u)}}),o}},{key:"renderPagination",value:function(){var t=this;return l.default.createElement("div",{className:this.props.paginationClass||A.default.defaultPaginationClass,ref:function(e){t.pagination=e},role:"navigation"},[].concat(o(Array(this.state.pages+1))).map(function(e,n){return l.default.createElement("button",{"aria-label":"Goto Page "+(n+1),className:"\n "+t.props.paginationDotClass+"\n "+(n===t.state.page?t.props.paginationDotActiveClass:""),"data-active":n===t.state.page?"true":"false",key:n,onClick:function(){t.gotoPage(n)}},n+1)}))}},{key:"renderArrows",value:function(t){var e=this,n=function(t){return"next"===t&&e.state.page<e.state.pages?e.state.page+1:"prev"===t&&e.state.page>0?e.state.page-1:null}(t),r=(0,y.default)(t)+"Class";return l.default.createElement("button",{className:this.props["arrow"+r]||A.default["defaultArrow"+r],disabled:null===n,onClick:function(){e.gotoPage(n)},role:"button",type:"button"})}},{key:"render",value:function(){var t=this,e=this.props,n=e.children,r=e.className,o=e.width,i=e.height,a=e.transitionSpeed,u=e.showPagination,s=e.minPagesToShowPagination,f=e.arrows,c=e.tileMargin,h=l.default.Children.map(Array.from(w(n)),function(e){return e.type===E?l.default.cloneElement(e,{parent:t,tileMargin:c,parentWidth:t.wrapper&&t.wrapper.clientWidth+c,updateParent:t.reRender}):e}),p={position:"relative",width:b(o,null),height:b(i,null)},d={position:"relative",overflow:"hidden",width:"calc(100% + "+b(c)+")",height:"calc(100% + "+b(c)+")"},g={overflow:"hidden",position:"static",alignContent:"flex-start",display:"flex",flexDirection:"column",flexWrap:"wrap",height:"100%",transform:"translate(-"+b(c)+", -"+b(c)+")",transition:"margin-left "+a+"ms"};return l.default.createElement("div",{className:r,ref:function(e){t.wrapper=e},style:p},l.default.createElement("div",{style:d},l.default.createElement("div",{ref:function(e){t.container=e},style:g},h&&h.map(this.renderTile))),f&&this.renderArrows("prev"),u&&this.state.pages+1>=s&&this.renderPagination(),f&&this.renderArrows("next"))}}]),e}(l.default.Component);e.default=m,m.propTypes={children:l.default.PropTypes.oneOfType([l.default.PropTypes.arrayOf(l.default.PropTypes.node),l.default.PropTypes.node]),className:h.default.string,height:h.default.oneOfType([h.default.string,h.default.number]),width:h.default.oneOfType([h.default.string,h.default.number]),tileMargin:h.default.oneOfType([h.default.string,h.default.number]),interval:h.default.number,autoplay:h.default.bool,showPagination:h.default.bool,transitionSpeed:h.default.number,page:h.default.number,slide:h.default.number,minPagesToShowPagination:h.default.number,paginationClass:h.default.string,paginationDotClass:h.default.string,paginationDotActiveClass:h.default.string,arrows:h.default.bool,arrowPrevClass:h.default.string,arrowNextClass:h.default.string},m.defaultProps={className:null,interval:5e3,transitionSpeed:500,height:"100%",width:"100%",autoplay:!0,showPagination:!0,page:0,tileMargin:0,slide:null,minPagesToShowPagination:2,paginationClass:"",paginationDotClass:"",paginationDotActiveClass:"",arrows:!1,arrowPrevClass:"",arrowNextClass:""};var E=e.ReactFreeCarouselTile=function(t){function e(t){i(this,e);var n=a(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t));return n.state={parentWidth:null},n}return u(e,t),s(e,[{key:"componentWillReceiveProps",value:function(t){var e=this;t.parentWidth!==this.props.parentWidth&&setTimeout(function(){e.props.updateParent()},0)}},{key:"render",value:function(){var t=this,e=this.props,n=e.parentWidth,r=e.height,o=e.width,i=e.tileMargin,a={height:b(r,null,i),width:b(o,n,i),marginTop:""+b(i),marginLeft:""+b(i)};return l.default.createElement("div",{className:this.props.className||A.default.defaultTile,ref:function(e){t.tile=e},style:a},this.props.children)}}]),e}(l.default.Component);E.propTypes={children:l.default.PropTypes.oneOfType([l.default.PropTypes.arrayOf(l.default.PropTypes.node),l.default.PropTypes.node]),updateParent:h.default.func.isRequired,parentWidth:h.default.number,className:h.default.string,tileMargin:h.default.oneOfType([h.default.string,h.default.number]),height:h.default.oneOfType([h.default.string,h.default.number]),width:h.default.oneOfType([h.default.string,h.default.number])},E.defaultProps={className:null,tileMargin:0,width:"100%",height:"100%"}},function(t,e,n){"use strict";var r=n(1).default;t.exports=r},function(t,e,n){"use strict";function r(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");return"="===t[e-2]?2:"="===t[e-1]?1:0}function o(t){return 3*t.length/4-r(t)}function i(t){var e,n,o,i,a,u=t.length;i=r(t),a=new c(3*u/4-i),n=i>0?u-4:u;var s=0;for(e=0;e<n;e+=4)o=l[t.charCodeAt(e)]<<18|l[t.charCodeAt(e+1)]<<12|l[t.charCodeAt(e+2)]<<6|l[t.charCodeAt(e+3)],a[s++]=o>>16&255,a[s++]=o>>8&255,a[s++]=255&o;return 2===i?(o=l[t.charCodeAt(e)]<<2|l[t.charCodeAt(e+1)]>>4,a[s++]=255&o):1===i&&(o=l[t.charCodeAt(e)]<<10|l[t.charCodeAt(e+1)]<<4|l[t.charCodeAt(e+2)]>>2,a[s++]=o>>8&255,a[s++]=255&o),a}function a(t){return f[t>>18&63]+f[t>>12&63]+f[t>>6&63]+f[63&t]}function u(t,e,n){for(var r,o=[],i=e;i<n;i+=3)r=(t[i]<<16)+(t[i+1]<<8)+t[i+2],o.push(a(r));return o.join("")}function s(t){for(var e,n=t.length,r=n%3,o="",i=[],a=0,s=n-r;a<s;a+=16383)i.push(u(t,a,a+16383>s?s:a+16383));return 1===r?(e=t[n-1],o+=f[e>>2],o+=f[e<<4&63],o+="=="):2===r&&(e=(t[n-2]<<8)+t[n-1],o+=f[e>>10],o+=f[e>>4&63],o+=f[e<<2&63],o+="="),i.push(o),i.join("")}e.byteLength=o,e.toByteArray=i,e.fromByteArray=s;for(var f=[],l=[],c="undefined"!=typeof Uint8Array?Uint8Array:Array,h="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",p=0,d=h.length;p<d;++p)f[p]=h[p],l[h.charCodeAt(p)]=p;l["-".charCodeAt(0)]=62,l["_".charCodeAt(0)]=63},function(t,e,n){"use strict";(function(t){function r(){return i.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function o(t,e){if(r()<e)throw new RangeError("Invalid typed array length");return i.TYPED_ARRAY_SUPPORT?(t=new Uint8Array(e),t.__proto__=i.prototype):(null===t&&(t=new i(e)),t.length=e),t}function i(t,e,n){if(!(i.TYPED_ARRAY_SUPPORT||this instanceof i))return new i(t,e,n);if("number"==typeof t){if("string"==typeof e)throw new Error("If encoding is specified then the first argument must be a string");return f(this,t)}return a(this,t,e,n)}function a(t,e,n,r){if("number"==typeof e)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&e instanceof ArrayBuffer?h(t,e,n,r):"string"==typeof e?l(t,e,n):p(t,e)}function u(t){if("number"!=typeof t)throw new TypeError('"size" argument must be a number');if(t<0)throw new RangeError('"size" argument must not be negative')}function s(t,e,n,r){return u(e),e<=0?o(t,e):void 0!==n?"string"==typeof r?o(t,e).fill(n,r):o(t,e).fill(n):o(t,e)}function f(t,e){if(u(e),t=o(t,e<0?0:0|d(e)),!i.TYPED_ARRAY_SUPPORT)for(var n=0;n<e;++n)t[n]=0;return t}function l(t,e,n){if("string"==typeof n&&""!==n||(n="utf8"),!i.isEncoding(n))throw new TypeError('"encoding" must be a valid string encoding');var r=0|y(e,n);t=o(t,r);var a=t.write(e,n);return a!==r&&(t=t.slice(0,a)),t}function c(t,e){var n=e.length<0?0:0|d(e.length);t=o(t,n);for(var r=0;r<n;r+=1)t[r]=255&e[r];return t}function h(t,e,n,r){if(e.byteLength,n<0||e.byteLength<n)throw new RangeError("'offset' is out of bounds");if(e.byteLength<n+(r||0))throw new RangeError("'length' is out of bounds");return e=void 0===n&&void 0===r?new Uint8Array(e):void 0===r?new Uint8Array(e,n):new Uint8Array(e,n,r),i.TYPED_ARRAY_SUPPORT?(t=e,t.__proto__=i.prototype):t=c(t,e),t}function p(t,e){if(i.isBuffer(e)){var n=0|d(e.length);return t=o(t,n),0===t.length?t:(e.copy(t,0,0,n),t)}if(e){if("undefined"!=typeof ArrayBuffer&&e.buffer instanceof ArrayBuffer||"length"in e)return"number"!=typeof e.length||G(e.length)?o(t,0):c(t,e);if("Buffer"===e.type&&K(e.data))return c(t,e.data)}throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}function d(t){if(t>=r())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+r().toString(16)+" bytes");return 0|t}function g(t){return+t!=t&&(t=0),i.alloc(+t)}function y(t,e){if(i.isBuffer(t))return t.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(t)||t instanceof ArrayBuffer))return t.byteLength;"string"!=typeof t&&(t=""+t);var n=t.length;if(0===n)return 0;for(var r=!1;;)switch(e){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return q(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return X(t).length;default:if(r)return q(t).length;e=(""+e).toLowerCase(),r=!0}}function v(t,e,n){var r=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if(n>>>=0,e>>>=0,n<=e)return"";for(t||(t="utf8");;)switch(t){case"hex":return U(this,e,n);case"utf8":case"utf-8":return x(this,e,n);case"ascii":return S(this,e,n);case"latin1":case"binary":return O(this,e,n);case"base64":return B(this,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return I(this,e,n);default:if(r)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),r=!0}}function A(t,e,n){var r=t[e];t[e]=t[n],t[n]=r}function w(t,e,n,r,o){if(0===t.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=o?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(o)return-1;n=t.length-1}else if(n<0){if(!o)return-1;n=0}if("string"==typeof e&&(e=i.from(e,r)),i.isBuffer(e))return 0===e.length?-1:b(t,e,n,r,o);if("number"==typeof e)return e&=255,i.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(t,e,n):Uint8Array.prototype.lastIndexOf.call(t,e,n):b(t,[e],n,r,o);throw new TypeError("val must be string, number or Buffer")}function b(t,e,n,r,o){function i(t,e){return 1===a?t[e]:t.readUInt16BE(e*a)}var a=1,u=t.length,s=e.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(t.length<2||e.length<2)return-1;a=2,u/=2,s/=2,n/=2}var f;if(o){var l=-1;for(f=n;f<u;f++)if(i(t,f)===i(e,-1===l?0:f-l)){if(-1===l&&(l=f),f-l+1===s)return l*a}else-1!==l&&(f-=f-l),l=-1}else for(n+s>u&&(n=u-s),f=n;f>=0;f--){for(var c=!0,h=0;h<s;h++)if(i(t,f+h)!==i(e,h)){c=!1;break}if(c)return f}return-1}function m(t,e,n,r){n=Number(n)||0;var o=t.length-n;r?(r=Number(r))>o&&(r=o):r=o;var i=e.length;if(i%2!=0)throw new TypeError("Invalid hex string");r>i/2&&(r=i/2);for(var a=0;a<r;++a){var u=parseInt(e.substr(2*a,2),16);if(isNaN(u))return a;t[n+a]=u}return a}function E(t,e,n,r){return Z(q(e,t.length-n),t,n,r)}function C(t,e,n,r){return Z($(e),t,n,r)}function P(t,e,n,r){return C(t,e,n,r)}function T(t,e,n,r){return Z(X(e),t,n,r)}function R(t,e,n,r){return Z(V(e,t.length-n),t,n,r)}function B(t,e,n){return 0===e&&n===t.length?J.fromByteArray(t):J.fromByteArray(t.slice(e,n))}function x(t,e,n){n=Math.min(t.length,n);for(var r=[],o=e;o<n;){var i=t[o],a=null,u=i>239?4:i>223?3:i>191?2:1;if(o+u<=n){var s,f,l,c;switch(u){case 1:i<128&&(a=i);break;case 2:s=t[o+1],128==(192&s)&&(c=(31&i)<<6|63&s)>127&&(a=c);break;case 3:s=t[o+1],f=t[o+2],128==(192&s)&&128==(192&f)&&(c=(15&i)<<12|(63&s)<<6|63&f)>2047&&(c<55296||c>57343)&&(a=c);break;case 4:s=t[o+1],f=t[o+2],l=t[o+3],128==(192&s)&&128==(192&f)&&128==(192&l)&&(c=(15&i)<<18|(63&s)<<12|(63&f)<<6|63&l)>65535&&c<1114112&&(a=c)}}null===a?(a=65533,u=1):a>65535&&(a-=65536,r.push(a>>>10&1023|55296),a=56320|1023&a),r.push(a),o+=u}return _(r)}function _(t){var e=t.length;if(e<=Q)return String.fromCharCode.apply(String,t);for(var n="",r=0;r<e;)n+=String.fromCharCode.apply(String,t.slice(r,r+=Q));return n}function S(t,e,n){var r="";n=Math.min(t.length,n);for(var o=e;o<n;++o)r+=String.fromCharCode(127&t[o]);return r}function O(t,e,n){var r="";n=Math.min(t.length,n);for(var o=e;o<n;++o)r+=String.fromCharCode(t[o]);return r}function U(t,e,n){var r=t.length;(!e||e<0)&&(e=0),(!n||n<0||n>r)&&(n=r);for(var o="",i=e;i<n;++i)o+=z(t[i]);return o}function I(t,e,n){for(var r=t.slice(e,n),o="",i=0;i<r.length;i+=2)o+=String.fromCharCode(r[i]+256*r[i+1]);return o}function j(t,e,n){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+e>n)throw new RangeError("Trying to access beyond buffer length")}function L(t,e,n,r,o,a){if(!i.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>o||e<a)throw new RangeError('"value" argument is out of bounds');if(n+r>t.length)throw new RangeError("Index out of range")}function M(t,e,n,r){e<0&&(e=65535+e+1);for(var o=0,i=Math.min(t.length-n,2);o<i;++o)t[n+o]=(e&255<<8*(r?o:1-o))>>>8*(r?o:1-o)}function Y(t,e,n,r){e<0&&(e=4294967295+e+1);for(var o=0,i=Math.min(t.length-n,4);o<i;++o)t[n+o]=e>>>8*(r?o:3-o)&255}function k(t,e,n,r,o,i){if(n+r>t.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function N(t,e,n,r,o){return o||k(t,e,n,4,3.4028234663852886e38,-3.4028234663852886e38),H.write(t,e,n,r,23,4),n+4}function D(t,e,n,r,o){return o||k(t,e,n,8,1.7976931348623157e308,-1.7976931348623157e308),H.write(t,e,n,r,52,8),n+8}function W(t){if(t=F(t).replace(tt,""),t.length<2)return"";for(;t.length%4!=0;)t+="=";return t}function F(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")}function z(t){return t<16?"0"+t.toString(16):t.toString(16)}function q(t,e){e=e||1/0;for(var n,r=t.length,o=null,i=[],a=0;a<r;++a){if((n=t.charCodeAt(a))>55295&&n<57344){if(!o){if(n>56319){(e-=3)>-1&&i.push(239,191,189);continue}if(a+1===r){(e-=3)>-1&&i.push(239,191,189);continue}o=n;continue}if(n<56320){(e-=3)>-1&&i.push(239,191,189),o=n;continue}n=65536+(o-55296<<10|n-56320)}else o&&(e-=3)>-1&&i.push(239,191,189);if(o=null,n<128){if((e-=1)<0)break;i.push(n)}else if(n<2048){if((e-=2)<0)break;i.push(n>>6|192,63&n|128)}else if(n<65536){if((e-=3)<0)break;i.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;i.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return i}function $(t){for(var e=[],n=0;n<t.length;++n)e.push(255&t.charCodeAt(n));return e}function V(t,e){for(var n,r,o,i=[],a=0;a<t.length&&!((e-=2)<0);++a)n=t.charCodeAt(a),r=n>>8,o=n%256,i.push(o),i.push(r);return i}function X(t){return J.toByteArray(W(t))}function Z(t,e,n,r){for(var o=0;o<r&&!(o+n>=e.length||o>=t.length);++o)e[o+n]=t[o];return o}function G(t){return t!==t}/*! | ||
* The buffer module from node.js, for the browser. | ||
@@ -7,2 +7,2 @@ * | ||
*/ | ||
var J=n(3),H=n(9),K=n(10);e.Buffer=i,e.SlowBuffer=g,e.INSPECT_MAX_BYTES=50,i.TYPED_ARRAY_SUPPORT=void 0!==t.TYPED_ARRAY_SUPPORT?t.TYPED_ARRAY_SUPPORT:function(){try{var t=new Uint8Array(1);return t.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===t.foo()&&"function"==typeof t.subarray&&0===t.subarray(1,1).byteLength}catch(t){return!1}}(),e.kMaxLength=r(),i.poolSize=8192,i._augment=function(t){return t.__proto__=i.prototype,t},i.from=function(t,e,n){return a(null,t,e,n)},i.TYPED_ARRAY_SUPPORT&&(i.prototype.__proto__=Uint8Array.prototype,i.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&i[Symbol.species]===i&&Object.defineProperty(i,Symbol.species,{value:null,configurable:!0})),i.alloc=function(t,e,n){return s(null,t,e,n)},i.allocUnsafe=function(t){return f(null,t)},i.allocUnsafeSlow=function(t){return f(null,t)},i.isBuffer=function(t){return!(null==t||!t._isBuffer)},i.compare=function(t,e){if(!i.isBuffer(t)||!i.isBuffer(e))throw new TypeError("Arguments must be Buffers");if(t===e)return 0;for(var n=t.length,r=e.length,o=0,a=Math.min(n,r);o<a;++o)if(t[o]!==e[o]){n=t[o],r=e[o];break}return n<r?-1:r<n?1:0},i.isEncoding=function(t){switch(String(t).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},i.concat=function(t,e){if(!K(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return i.alloc(0);var n;if(void 0===e)for(e=0,n=0;n<t.length;++n)e+=t[n].length;var r=i.allocUnsafe(e),o=0;for(n=0;n<t.length;++n){var a=t[n];if(!i.isBuffer(a))throw new TypeError('"list" argument must be an Array of Buffers');a.copy(r,o),o+=a.length}return r},i.byteLength=y,i.prototype._isBuffer=!0,i.prototype.swap16=function(){var t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var e=0;e<t;e+=2)A(this,e,e+1);return this},i.prototype.swap32=function(){var t=this.length;if(t%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var e=0;e<t;e+=4)A(this,e,e+3),A(this,e+1,e+2);return this},i.prototype.swap64=function(){var t=this.length;if(t%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var e=0;e<t;e+=8)A(this,e,e+7),A(this,e+1,e+6),A(this,e+2,e+5),A(this,e+3,e+4);return this},i.prototype.toString=function(){var t=0|this.length;return 0===t?"":0===arguments.length?x(this,0,t):v.apply(this,arguments)},i.prototype.equals=function(t){if(!i.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===i.compare(this,t)},i.prototype.inspect=function(){var t="",n=e.INSPECT_MAX_BYTES;return this.length>0&&(t=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(t+=" ... ")),"<Buffer "+t+">"},i.prototype.compare=function(t,e,n,r,o){if(!i.isBuffer(t))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===n&&(n=t?t.length:0),void 0===r&&(r=0),void 0===o&&(o=this.length),e<0||n>t.length||r<0||o>this.length)throw new RangeError("out of range index");if(r>=o&&e>=n)return 0;if(r>=o)return-1;if(e>=n)return 1;if(e>>>=0,n>>>=0,r>>>=0,o>>>=0,this===t)return 0;for(var a=o-r,u=n-e,s=Math.min(a,u),f=this.slice(r,o),l=t.slice(e,n),c=0;c<s;++c)if(f[c]!==l[c]){a=f[c],u=l[c];break}return a<u?-1:u<a?1:0},i.prototype.includes=function(t,e,n){return-1!==this.indexOf(t,e,n)},i.prototype.indexOf=function(t,e,n){return w(this,t,e,n,!0)},i.prototype.lastIndexOf=function(t,e,n){return w(this,t,e,n,!1)},i.prototype.write=function(t,e,n,r){if(void 0===e)r="utf8",n=this.length,e=0;else if(void 0===n&&"string"==typeof e)r=e,n=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e|=0,isFinite(n)?(n|=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var o=this.length-e;if((void 0===n||n>o)&&(n=o),t.length>0&&(n<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var i=!1;;)switch(r){case"hex":return m(this,t,e,n);case"utf8":case"utf-8":return E(this,t,e,n);case"ascii":return C(this,t,e,n);case"latin1":case"binary":return P(this,t,e,n);case"base64":return T(this,t,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return R(this,t,e,n);default:if(i)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),i=!0}},i.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var Q=4096;i.prototype.slice=function(t,e){var n=this.length;t=~~t,e=void 0===e?n:~~e,t<0?(t+=n)<0&&(t=0):t>n&&(t=n),e<0?(e+=n)<0&&(e=0):e>n&&(e=n),e<t&&(e=t);var r;if(i.TYPED_ARRAY_SUPPORT)r=this.subarray(t,e),r.__proto__=i.prototype;else{var o=e-t;r=new i(o,void 0);for(var a=0;a<o;++a)r[a]=this[a+t]}return r},i.prototype.readUIntLE=function(t,e,n){t|=0,e|=0,n||j(t,e,this.length);for(var r=this[t],o=1,i=0;++i<e&&(o*=256);)r+=this[t+i]*o;return r},i.prototype.readUIntBE=function(t,e,n){t|=0,e|=0,n||j(t,e,this.length);for(var r=this[t+--e],o=1;e>0&&(o*=256);)r+=this[t+--e]*o;return r},i.prototype.readUInt8=function(t,e){return e||j(t,1,this.length),this[t]},i.prototype.readUInt16LE=function(t,e){return e||j(t,2,this.length),this[t]|this[t+1]<<8},i.prototype.readUInt16BE=function(t,e){return e||j(t,2,this.length),this[t]<<8|this[t+1]},i.prototype.readUInt32LE=function(t,e){return e||j(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},i.prototype.readUInt32BE=function(t,e){return e||j(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},i.prototype.readIntLE=function(t,e,n){t|=0,e|=0,n||j(t,e,this.length);for(var r=this[t],o=1,i=0;++i<e&&(o*=256);)r+=this[t+i]*o;return o*=128,r>=o&&(r-=Math.pow(2,8*e)),r},i.prototype.readIntBE=function(t,e,n){t|=0,e|=0,n||j(t,e,this.length);for(var r=e,o=1,i=this[t+--r];r>0&&(o*=256);)i+=this[t+--r]*o;return o*=128,i>=o&&(i-=Math.pow(2,8*e)),i},i.prototype.readInt8=function(t,e){return e||j(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},i.prototype.readInt16LE=function(t,e){e||j(t,2,this.length);var n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},i.prototype.readInt16BE=function(t,e){e||j(t,2,this.length);var n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},i.prototype.readInt32LE=function(t,e){return e||j(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},i.prototype.readInt32BE=function(t,e){return e||j(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},i.prototype.readFloatLE=function(t,e){return e||j(t,4,this.length),H.read(this,t,!0,23,4)},i.prototype.readFloatBE=function(t,e){return e||j(t,4,this.length),H.read(this,t,!1,23,4)},i.prototype.readDoubleLE=function(t,e){return e||j(t,8,this.length),H.read(this,t,!0,52,8)},i.prototype.readDoubleBE=function(t,e){return e||j(t,8,this.length),H.read(this,t,!1,52,8)},i.prototype.writeUIntLE=function(t,e,n,r){if(t=+t,e|=0,n|=0,!r){L(this,t,e,n,Math.pow(2,8*n)-1,0)}var o=1,i=0;for(this[e]=255&t;++i<n&&(o*=256);)this[e+i]=t/o&255;return e+n},i.prototype.writeUIntBE=function(t,e,n,r){if(t=+t,e|=0,n|=0,!r){L(this,t,e,n,Math.pow(2,8*n)-1,0)}var o=n-1,i=1;for(this[e+o]=255&t;--o>=0&&(i*=256);)this[e+o]=t/i&255;return e+n},i.prototype.writeUInt8=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,1,255,0),i.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},i.prototype.writeUInt16LE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,2,65535,0),i.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):M(this,t,e,!0),e+2},i.prototype.writeUInt16BE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,2,65535,0),i.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):M(this,t,e,!1),e+2},i.prototype.writeUInt32LE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,4,4294967295,0),i.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):Y(this,t,e,!0),e+4},i.prototype.writeUInt32BE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,4,4294967295,0),i.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):Y(this,t,e,!1),e+4},i.prototype.writeIntLE=function(t,e,n,r){if(t=+t,e|=0,!r){var o=Math.pow(2,8*n-1);L(this,t,e,n,o-1,-o)}var i=0,a=1,u=0;for(this[e]=255&t;++i<n&&(a*=256);)t<0&&0===u&&0!==this[e+i-1]&&(u=1),this[e+i]=(t/a>>0)-u&255;return e+n},i.prototype.writeIntBE=function(t,e,n,r){if(t=+t,e|=0,!r){var o=Math.pow(2,8*n-1);L(this,t,e,n,o-1,-o)}var i=n-1,a=1,u=0;for(this[e+i]=255&t;--i>=0&&(a*=256);)t<0&&0===u&&0!==this[e+i+1]&&(u=1),this[e+i]=(t/a>>0)-u&255;return e+n},i.prototype.writeInt8=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,1,127,-128),i.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[e]=255&t,e+1},i.prototype.writeInt16LE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,2,32767,-32768),i.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):M(this,t,e,!0),e+2},i.prototype.writeInt16BE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,2,32767,-32768),i.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):M(this,t,e,!1),e+2},i.prototype.writeInt32LE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,4,2147483647,-2147483648),i.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):Y(this,t,e,!0),e+4},i.prototype.writeInt32BE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),i.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):Y(this,t,e,!1),e+4},i.prototype.writeFloatLE=function(t,e,n){return N(this,t,e,!0,n)},i.prototype.writeFloatBE=function(t,e,n){return N(this,t,e,!1,n)},i.prototype.writeDoubleLE=function(t,e,n){return D(this,t,e,!0,n)},i.prototype.writeDoubleBE=function(t,e,n){return D(this,t,e,!1,n)},i.prototype.copy=function(t,e,n,r){if(n||(n=0),r||0===r||(r=this.length),e>=t.length&&(e=t.length),e||(e=0),r>0&&r<n&&(r=n),r===n)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),t.length-e<r-n&&(r=t.length-e+n);var o,a=r-n;if(this===t&&n<e&&e<r)for(o=a-1;o>=0;--o)t[o+e]=this[o+n];else if(a<1e3||!i.TYPED_ARRAY_SUPPORT)for(o=0;o<a;++o)t[o+e]=this[o+n];else Uint8Array.prototype.set.call(t,this.subarray(n,n+a),e);return a},i.prototype.fill=function(t,e,n,r){if("string"==typeof t){if("string"==typeof e?(r=e,e=0,n=this.length):"string"==typeof n&&(r=n,n=this.length),1===t.length){var o=t.charCodeAt(0);o<256&&(t=o)}if(void 0!==r&&"string"!=typeof r)throw new TypeError("encoding must be a string");if("string"==typeof r&&!i.isEncoding(r))throw new TypeError("Unknown encoding: "+r)}else"number"==typeof t&&(t&=255);if(e<0||this.length<e||this.length<n)throw new RangeError("Out of range index");if(n<=e)return this;e>>>=0,n=void 0===n?this.length:n>>>0,t||(t=0);var a;if("number"==typeof t)for(a=e;a<n;++a)this[a]=t;else{var u=i.isBuffer(t)?t:q(new i(t,r).toString()),s=u.length;for(a=0;a<n-e;++a)this[a+e]=u[a%s]}return this};var tt=/[^+\/0-9A-Za-z-_]/g}).call(e,n(0))},function(t,e,n){e=t.exports=n(6)(!0),e.push([t.i,'.src-example-defaultStyles---defaultTile {\n position: relative;\n}\n\n.src-example-defaultStyles---defaultPaginationClass[role="navigation"] {\n position: absolute;\n text-align: center;\n left: 10px;\n right: 10px;\n bottom: 0px;\n}\n\n.src-example-defaultStyles---defaultPaginationClass[role="navigation"] button {\n display: inline-block;\n border: 0;\n border-radius: 50%;\n width: 12px;\n height: 12px;\n background: white;\n margin: 0 2px;\n text-indent: 1000px;\n overflow: hidden;\n cursor: pointer;\n outline: none;\n transition: all .3s;\n}\n\n.src-example-defaultStyles---defaultPaginationClass[role="navigation"] button[data-active=\'true\'] {\n background: orange;\n}\n\n.src-example-defaultStyles---defaultArrowPrevClass,\n.src-example-defaultStyles---defaultArrowNextClass {\n position: absolute;\n font-size: 16px;\n border: 0;\n outline: none;\n top: 45%;\n cursor: pointer;\n transition: all .3s;\n padding: 0;\n color: orange;\n font-family: Arial;\n background: none;\n}\n\n\n.src-example-defaultStyles---defaultArrowPrevClass:disabled,\n.src-example-defaultStyles---defaultArrowNextClass:disabled {\n opacity: .2;\n cursor: default;\n}\n\n.src-example-defaultStyles---defaultArrowPrevClass {\n left: 5px;\n}\n.src-example-defaultStyles---defaultArrowPrevClass::before {\n content: "\\25C0";\n}\n\n.src-example-defaultStyles---defaultArrowNextClass {\n right: 5px;\n}\n.src-example-defaultStyles---defaultArrowNextClass::before {\n content: "\\25B6";\n}\n',"",{version:3,sources:["C:/_PET/react-free-carousel/src/example/defaultStyles.css"],names:[],mappings:"AAAA;EACE,mBAAmB;CACpB;;AAED;EACE,mBAAmB;EACnB,mBAAmB;EACnB,WAAW;EACX,YAAY;EACZ,YAAY;CACb;;AAED;EACE,sBAAsB;EACtB,UAAU;EACV,mBAAmB;EACnB,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,cAAc;EACd,oBAAoB;EACpB,iBAAiB;EACjB,gBAAgB;EAChB,cAAc;EACd,oBAAoB;CACrB;;AAED;EACE,mBAAmB;CACpB;;AAED;;EAEE,mBAAmB;EACnB,gBAAgB;EAChB,UAAU;EACV,cAAc;EACd,SAAS;EACT,gBAAgB;EAChB,oBAAoB;EACpB,WAAW;EACX,cAAc;EACd,mBAAmB;EACnB,iBAAiB;CAClB;;;AAGD;;EAEE,YAAY;EACZ,gBAAgB;CACjB;;AAED;EACE,UAAU;CACX;AACD;EACE,iBAAiB;CAClB;;AAED;EACE,WAAW;CACZ;AACD;EACE,iBAAiB;CAClB",file:"defaultStyles.css",sourcesContent:['.defaultTile {\n position: relative;\n}\n\n.defaultPaginationClass[role="navigation"] {\n position: absolute;\n text-align: center;\n left: 10px;\n right: 10px;\n bottom: 0px;\n}\n\n.defaultPaginationClass[role="navigation"] button {\n display: inline-block;\n border: 0;\n border-radius: 50%;\n width: 12px;\n height: 12px;\n background: white;\n margin: 0 2px;\n text-indent: 1000px;\n overflow: hidden;\n cursor: pointer;\n outline: none;\n transition: all .3s;\n}\n\n.defaultPaginationClass[role="navigation"] button[data-active=\'true\'] {\n background: orange;\n}\n\n.defaultArrowPrevClass,\n.defaultArrowNextClass {\n position: absolute;\n font-size: 16px;\n border: 0;\n outline: none;\n top: 45%;\n cursor: pointer;\n transition: all .3s;\n padding: 0;\n color: orange;\n font-family: Arial;\n background: none;\n}\n\n\n.defaultArrowPrevClass:disabled,\n.defaultArrowNextClass:disabled {\n opacity: .2;\n cursor: default;\n}\n\n.defaultArrowPrevClass {\n left: 5px;\n}\n.defaultArrowPrevClass::before {\n content: "\\25C0";\n}\n\n.defaultArrowNextClass {\n right: 5px;\n}\n.defaultArrowNextClass::before {\n content: "\\25b6";\n}\n'],sourceRoot:""}]),e.locals={defaultTile:"src-example-defaultStyles---defaultTile",defaultPaginationClass:"src-example-defaultStyles---defaultPaginationClass",defaultArrowPrevClass:"src-example-defaultStyles---defaultArrowPrevClass",defaultArrowNextClass:"src-example-defaultStyles---defaultArrowNextClass"}},function(t,e,n){(function(e){function n(t,e){var n=t[1]||"",o=t[3];if(!o)return n;if(e){var i=r(o);return[n].concat(o.sources.map(function(t){return"/*# sourceURL="+o.sourceRoot+t+" */"})).concat([i]).join("\n")}return[n].join("\n")}function r(t){return"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+new e(JSON.stringify(t)).toString("base64")+" */"}t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var r=n(e,t);return e[2]?"@media "+e[2]+"{"+r+"}":r}).join("")},e.i=function(t,n){"string"==typeof t&&(t=[[null,t,""]]);for(var r={},o=0;o<this.length;o++){var i=this[o][0];"number"==typeof i&&(r[i]=!0)}for(o=0;o<t.length;o++){var a=t[o];"number"==typeof a[0]&&r[a[0]]||(n&&!a[2]?a[2]=n:n&&(a[2]="("+a[2]+") and ("+n+")"),e.push(a))}},e}}).call(e,n(4).Buffer)},function(t,e,n){"use strict";function r(t){return function(){return t}}var o=function(){};o.thatReturns=r,o.thatReturnsFalse=r(!1),o.thatReturnsTrue=r(!0),o.thatReturnsNull=r(null),o.thatReturnsThis=function(){return this},o.thatReturnsArgument=function(t){return t},t.exports=o},function(t,e,n){"use strict";function r(t,e,n,r,i,a,u,s){if(o(e),!t){var f;if(void 0===e)f=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,i,a,u,s],c=0;f=new Error(e.replace(/%s/g,function(){return l[c++]})),f.name="Invariant Violation"}throw f.framesToPop=1,f}}var o=function(t){};t.exports=r},function(t,e){e.read=function(t,e,n,r,o){var i,a,u=8*o-r-1,s=(1<<u)-1,f=s>>1,l=-7,c=n?o-1:0,p=n?-1:1,h=t[e+c];for(c+=p,i=h&(1<<-l)-1,h>>=-l,l+=u;l>0;i=256*i+t[e+c],c+=p,l-=8);for(a=i&(1<<-l)-1,i>>=-l,l+=r;l>0;a=256*a+t[e+c],c+=p,l-=8);if(0===i)i=1-f;else{if(i===s)return a?NaN:1/0*(h?-1:1);a+=Math.pow(2,r),i-=f}return(h?-1:1)*a*Math.pow(2,i-r)},e.write=function(t,e,n,r,o,i){var a,u,s,f=8*i-o-1,l=(1<<f)-1,c=l>>1,p=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,h=r?0:i-1,d=r?1:-1,g=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(u=isNaN(e)?1:0,a=l):(a=Math.floor(Math.log(e)/Math.LN2),e*(s=Math.pow(2,-a))<1&&(a--,s*=2),e+=a+c>=1?p/s:p*Math.pow(2,1-c),e*s>=2&&(a++,s/=2),a+c>=l?(u=0,a=l):a+c>=1?(u=(e*s-1)*Math.pow(2,o),a+=c):(u=e*Math.pow(2,c-1)*Math.pow(2,o),a=0));o>=8;t[n+h]=255&u,h+=d,u/=256,o-=8);for(a=a<<o|u,f+=o;f>0;t[n+h]=255&a,h+=d,a/=256,f-=8);t[n+h-d]|=128*g}},function(t,e){var n={}.toString;t.exports=Array.isArray||function(t){return"[object Array]"==n.call(t)}},function(t,e,n){(function(e){function n(t){return t.split("")}function r(t){return P.test(t)}function o(t){return r(t)?i(t):n(t)}function i(t){return t.match(C)||[]}function a(t,e,n){var r=-1,o=t.length;e<0&&(e=-e>o?0:o+e),n=n>o?o:n,n<0&&(n+=o),o=e>n?0:n-e>>>0,e>>>=0;for(var i=Array(o);++r<o;)i[r]=t[r+e];return i}function u(t){if("string"==typeof t)return t;if(l(t))return U?U.call(t):"";var e=t+"";return"0"==e&&1/t==-h?"-0":e}function s(t,e,n){var r=t.length;return n=void 0===n?r:n,!e&&n>=r?t:a(t,e,n)}function f(t){return!!t&&"object"==typeof t}function l(t){return"symbol"==typeof t||f(t)&&_.call(t)==d}function c(t){return null==t?"":u(t)}function p(t){return I(c(t).toLowerCase())}var h=1/0,d="[object Symbol]",g="[\\u0300-\\u036f\\ufe20-\\ufe23\\u20d0-\\u20f0]",y="\\ud83c[\\udffb-\\udfff]",v="(?:\\ud83c[\\udde6-\\uddff]){2}",A="[\\ud800-\\udbff][\\udc00-\\udfff]",w="(?:[\\u0300-\\u036f\\ufe20-\\ufe23\\u20d0-\\u20f0]|\\ud83c[\\udffb-\\udfff])?",b="(?:\\u200d(?:"+["[^\\ud800-\\udfff]",v,A].join("|")+")[\\ufe0e\\ufe0f]?"+w+")*",m="[\\ufe0e\\ufe0f]?"+w+b,E="(?:"+["[^\\ud800-\\udfff]"+g+"?",g,v,A,"[\\ud800-\\udfff]"].join("|")+")",C=RegExp(y+"(?="+y+")|"+E+m,"g"),P=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe23\\u20d0-\\u20f0\\ufe0e\\ufe0f]"),T="object"==typeof e&&e&&e.Object===Object&&e,R="object"==typeof self&&self&&self.Object===Object&&self,B=T||R||Function("return this")(),x=Object.prototype,_=x.toString,S=B.Symbol,O=S?S.prototype:void 0,U=O?O.toString:void 0,I=function(t){return function(e){e=c(e);var n=r(e)?o(e):void 0,i=n?n[0]:e.charAt(0),a=n?s(n,1).join(""):e.slice(1);return i[t]()+a}}("toUpperCase");t.exports=p}).call(e,n(0))},function(t,e,n){(function(e){function n(t,e,n){function o(e){var n=g,r=y;return g=y=void 0,P=e,A=t.apply(r,n)}function i(t){return P=t,w=setTimeout(l,e),T?o(t):A}function s(t){var n=t-C,r=t-P,o=e-n;return R?m(o,v-r):o}function f(t){var n=t-C,r=t-P;return void 0===C||n>=e||n<0||R&&r>=v}function l(){var t=E();if(f(t))return c(t);w=setTimeout(l,s(t))}function c(t){return w=void 0,B&&g?o(t):(g=y=void 0,A)}function p(){void 0!==w&&clearTimeout(w),P=0,g=C=y=w=void 0}function h(){return void 0===w?A:c(E())}function d(){var t=E(),n=f(t);if(g=arguments,y=this,C=t,n){if(void 0===w)return i(C);if(R)return w=setTimeout(l,e),o(C)}return void 0===w&&(w=setTimeout(l,e)),A}var g,y,v,A,w,C,P=0,T=!1,R=!1,B=!0;if("function"!=typeof t)throw new TypeError(u);return e=a(e)||0,r(n)&&(T=!!n.leading,R="maxWait"in n,v=R?b(a(n.maxWait)||0,e):v,B="trailing"in n?!!n.trailing:B),d.cancel=p,d.flush=h,d}function r(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function o(t){return!!t&&"object"==typeof t}function i(t){return"symbol"==typeof t||o(t)&&w.call(t)==f}function a(t){if("number"==typeof t)return t;if(i(t))return s;if(r(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=r(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=t.replace(l,"");var n=p.test(t);return n||h.test(t)?d(t.slice(2),n?2:8):c.test(t)?s:+t}var u="Expected a function",s=NaN,f="[object Symbol]",l=/^\s+|\s+$/g,c=/^[-+]0x[0-9a-f]+$/i,p=/^0b[01]+$/i,h=/^0o[0-7]+$/i,d=parseInt,g="object"==typeof e&&e&&e.Object===Object&&e,y="object"==typeof self&&self&&self.Object===Object&&self,v=g||y||Function("return this")(),A=Object.prototype,w=A.toString,b=Math.max,m=Math.min,E=function(){return v.Date.now()};t.exports=n}).call(e,n(0))},function(t,e,n){"use strict";var r=n(7),o=n(8),i=n(15);t.exports=function(){function t(t,e,n,r,a,u){u!==i&&o(!1,"Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types")}function e(){return t}t.isRequired=t;var n={array:t,bool:t,func:t,number:t,object:t,string:t,symbol:t,any:t,arrayOf:e,element:t,instanceOf:e,node:t,objectOf:e,oneOf:e,oneOfType:e,shape:e};return n.checkPropTypes=r,n.PropTypes=n,n}},function(t,e,n){t.exports=n(13)()},function(t,e,n){"use strict";t.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(t,e,n){function r(t,e){for(var n=0;n<t.length;n++){var r=t[n],o=d[r.id];if(o){o.refs++;for(var i=0;i<o.parts.length;i++)o.parts[i](r.parts[i]);for(;i<r.parts.length;i++)o.parts.push(l(r.parts[i],e))}else{for(var a=[],i=0;i<r.parts.length;i++)a.push(l(r.parts[i],e));d[r.id]={id:r.id,refs:1,parts:a}}}}function o(t){for(var e=[],n={},r=0;r<t.length;r++){var o=t[r],i=o[0],a=o[1],u=o[2],s=o[3],f={css:a,media:u,sourceMap:s};n[i]?n[i].parts.push(f):e.push(n[i]={id:i,parts:[f]})}return e}function i(t,e){var n=y(t.insertInto);if(!n)throw new Error("Couldn't find a style target. This probably means that the value for the 'insertInto' parameter is invalid.");var r=w[w.length-1];if("top"===t.insertAt)r?r.nextSibling?n.insertBefore(e,r.nextSibling):n.appendChild(e):n.insertBefore(e,n.firstChild),w.push(e);else{if("bottom"!==t.insertAt)throw new Error("Invalid value for parameter 'insertAt'. Must be 'top' or 'bottom'.");n.appendChild(e)}}function a(t){t.parentNode.removeChild(t);var e=w.indexOf(t);e>=0&&w.splice(e,1)}function u(t){var e=document.createElement("style");return t.attrs.type="text/css",f(e,t.attrs),i(t,e),e}function s(t){var e=document.createElement("link");return t.attrs.type="text/css",t.attrs.rel="stylesheet",f(e,t.attrs),i(t,e),e}function f(t,e){Object.keys(e).forEach(function(n){t.setAttribute(n,e[n])})}function l(t,e){var n,r,o;if(e.singleton){var i=A++;n=v||(v=u(e)),r=c.bind(null,n,i,!1),o=c.bind(null,n,i,!0)}else t.sourceMap&&"function"==typeof URL&&"function"==typeof URL.createObjectURL&&"function"==typeof URL.revokeObjectURL&&"function"==typeof Blob&&"function"==typeof btoa?(n=s(e),r=h.bind(null,n,e),o=function(){a(n),n.href&&URL.revokeObjectURL(n.href)}):(n=u(e),r=p.bind(null,n),o=function(){a(n)});return r(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap)return;r(t=e)}else o()}}function c(t,e,n,r){var o=n?"":r.css;if(t.styleSheet)t.styleSheet.cssText=m(e,o);else{var i=document.createTextNode(o),a=t.childNodes;a[e]&&t.removeChild(a[e]),a.length?t.insertBefore(i,a[e]):t.appendChild(i)}}function p(t,e){var n=e.css,r=e.media;if(r&&t.setAttribute("media",r),t.styleSheet)t.styleSheet.cssText=n;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}function h(t,e,n){var r=n.css,o=n.sourceMap,i=void 0===e.convertToAbsoluteUrls&&o;(e.convertToAbsoluteUrls||i)&&(r=b(r)),o&&(r+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(o))))+" */");var a=new Blob([r],{type:"text/css"}),u=t.href;t.href=URL.createObjectURL(a),u&&URL.revokeObjectURL(u)}var d={},g=function(t){var e;return function(){return void 0===e&&(e=t.apply(this,arguments)),e}}(function(){return window&&document&&document.all&&!window.atob}),y=function(t){var e={};return function(n){return void 0===e[n]&&(e[n]=t.call(this,n)),e[n]}}(function(t){return document.querySelector(t)}),v=null,A=0,w=[],b=n(17);t.exports=function(t,e){if("undefined"!=typeof DEBUG&&DEBUG&&"object"!=typeof document)throw new Error("The style-loader cannot be used in a non-browser environment");e=e||{},e.attrs="object"==typeof e.attrs?e.attrs:{},void 0===e.singleton&&(e.singleton=g()),void 0===e.insertInto&&(e.insertInto="head"),void 0===e.insertAt&&(e.insertAt="bottom");var n=o(t);return r(n,e),function(t){for(var i=[],a=0;a<n.length;a++){var u=n[a],s=d[u.id];s.refs--,i.push(s)}if(t){r(o(t),e)}for(var a=0;a<i.length;a++){var s=i[a];if(0===s.refs){for(var f=0;f<s.parts.length;f++)s.parts[f]();delete d[s.id]}}}};var m=function(){var t=[];return function(e,n){return t[e]=n,t.filter(Boolean).join("\n")}}()},function(t,e){t.exports=function(t){var e="undefined"!=typeof window&&window.location;if(!e)throw new Error("fixUrls requires window.location");if(!t||"string"!=typeof t)return t;var n=e.protocol+"//"+e.host,r=n+e.pathname.replace(/\/[^\/]*$/,"/");return t.replace(/url\s*\(((?:[^)(]|\((?:[^)(]+|\([^)(]*\))*\))*)\)/gi,function(t,e){var o=e.trim().replace(/^"(.*)"$/,function(t,e){return e}).replace(/^'(.*)'$/,function(t,e){return e});if(/^(#|data:|http:\/\/|https:\/\/|file:\/\/\/)/i.test(o))return t;var i;return i=0===o.indexOf("//")?o:0===o.indexOf("/")?n+o:r+o.replace(/^\.\//,""),"url("+JSON.stringify(i)+")"})}},function(t,e,n){var r=n(5);"string"==typeof r&&(r=[[t.i,r,""]]);n(16)(r,{});r.locals&&(t.exports=r.locals)},function(e,n){e.exports=t}])}); | ||
var J=n(3),H=n(9),K=n(10);e.Buffer=i,e.SlowBuffer=g,e.INSPECT_MAX_BYTES=50,i.TYPED_ARRAY_SUPPORT=void 0!==t.TYPED_ARRAY_SUPPORT?t.TYPED_ARRAY_SUPPORT:function(){try{var t=new Uint8Array(1);return t.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===t.foo()&&"function"==typeof t.subarray&&0===t.subarray(1,1).byteLength}catch(t){return!1}}(),e.kMaxLength=r(),i.poolSize=8192,i._augment=function(t){return t.__proto__=i.prototype,t},i.from=function(t,e,n){return a(null,t,e,n)},i.TYPED_ARRAY_SUPPORT&&(i.prototype.__proto__=Uint8Array.prototype,i.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&i[Symbol.species]===i&&Object.defineProperty(i,Symbol.species,{value:null,configurable:!0})),i.alloc=function(t,e,n){return s(null,t,e,n)},i.allocUnsafe=function(t){return f(null,t)},i.allocUnsafeSlow=function(t){return f(null,t)},i.isBuffer=function(t){return!(null==t||!t._isBuffer)},i.compare=function(t,e){if(!i.isBuffer(t)||!i.isBuffer(e))throw new TypeError("Arguments must be Buffers");if(t===e)return 0;for(var n=t.length,r=e.length,o=0,a=Math.min(n,r);o<a;++o)if(t[o]!==e[o]){n=t[o],r=e[o];break}return n<r?-1:r<n?1:0},i.isEncoding=function(t){switch(String(t).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},i.concat=function(t,e){if(!K(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return i.alloc(0);var n;if(void 0===e)for(e=0,n=0;n<t.length;++n)e+=t[n].length;var r=i.allocUnsafe(e),o=0;for(n=0;n<t.length;++n){var a=t[n];if(!i.isBuffer(a))throw new TypeError('"list" argument must be an Array of Buffers');a.copy(r,o),o+=a.length}return r},i.byteLength=y,i.prototype._isBuffer=!0,i.prototype.swap16=function(){var t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var e=0;e<t;e+=2)A(this,e,e+1);return this},i.prototype.swap32=function(){var t=this.length;if(t%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var e=0;e<t;e+=4)A(this,e,e+3),A(this,e+1,e+2);return this},i.prototype.swap64=function(){var t=this.length;if(t%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var e=0;e<t;e+=8)A(this,e,e+7),A(this,e+1,e+6),A(this,e+2,e+5),A(this,e+3,e+4);return this},i.prototype.toString=function(){var t=0|this.length;return 0===t?"":0===arguments.length?x(this,0,t):v.apply(this,arguments)},i.prototype.equals=function(t){if(!i.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===i.compare(this,t)},i.prototype.inspect=function(){var t="",n=e.INSPECT_MAX_BYTES;return this.length>0&&(t=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(t+=" ... ")),"<Buffer "+t+">"},i.prototype.compare=function(t,e,n,r,o){if(!i.isBuffer(t))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===n&&(n=t?t.length:0),void 0===r&&(r=0),void 0===o&&(o=this.length),e<0||n>t.length||r<0||o>this.length)throw new RangeError("out of range index");if(r>=o&&e>=n)return 0;if(r>=o)return-1;if(e>=n)return 1;if(e>>>=0,n>>>=0,r>>>=0,o>>>=0,this===t)return 0;for(var a=o-r,u=n-e,s=Math.min(a,u),f=this.slice(r,o),l=t.slice(e,n),c=0;c<s;++c)if(f[c]!==l[c]){a=f[c],u=l[c];break}return a<u?-1:u<a?1:0},i.prototype.includes=function(t,e,n){return-1!==this.indexOf(t,e,n)},i.prototype.indexOf=function(t,e,n){return w(this,t,e,n,!0)},i.prototype.lastIndexOf=function(t,e,n){return w(this,t,e,n,!1)},i.prototype.write=function(t,e,n,r){if(void 0===e)r="utf8",n=this.length,e=0;else if(void 0===n&&"string"==typeof e)r=e,n=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e|=0,isFinite(n)?(n|=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var o=this.length-e;if((void 0===n||n>o)&&(n=o),t.length>0&&(n<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var i=!1;;)switch(r){case"hex":return m(this,t,e,n);case"utf8":case"utf-8":return E(this,t,e,n);case"ascii":return C(this,t,e,n);case"latin1":case"binary":return P(this,t,e,n);case"base64":return T(this,t,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return R(this,t,e,n);default:if(i)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),i=!0}},i.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var Q=4096;i.prototype.slice=function(t,e){var n=this.length;t=~~t,e=void 0===e?n:~~e,t<0?(t+=n)<0&&(t=0):t>n&&(t=n),e<0?(e+=n)<0&&(e=0):e>n&&(e=n),e<t&&(e=t);var r;if(i.TYPED_ARRAY_SUPPORT)r=this.subarray(t,e),r.__proto__=i.prototype;else{var o=e-t;r=new i(o,void 0);for(var a=0;a<o;++a)r[a]=this[a+t]}return r},i.prototype.readUIntLE=function(t,e,n){t|=0,e|=0,n||j(t,e,this.length);for(var r=this[t],o=1,i=0;++i<e&&(o*=256);)r+=this[t+i]*o;return r},i.prototype.readUIntBE=function(t,e,n){t|=0,e|=0,n||j(t,e,this.length);for(var r=this[t+--e],o=1;e>0&&(o*=256);)r+=this[t+--e]*o;return r},i.prototype.readUInt8=function(t,e){return e||j(t,1,this.length),this[t]},i.prototype.readUInt16LE=function(t,e){return e||j(t,2,this.length),this[t]|this[t+1]<<8},i.prototype.readUInt16BE=function(t,e){return e||j(t,2,this.length),this[t]<<8|this[t+1]},i.prototype.readUInt32LE=function(t,e){return e||j(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},i.prototype.readUInt32BE=function(t,e){return e||j(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},i.prototype.readIntLE=function(t,e,n){t|=0,e|=0,n||j(t,e,this.length);for(var r=this[t],o=1,i=0;++i<e&&(o*=256);)r+=this[t+i]*o;return o*=128,r>=o&&(r-=Math.pow(2,8*e)),r},i.prototype.readIntBE=function(t,e,n){t|=0,e|=0,n||j(t,e,this.length);for(var r=e,o=1,i=this[t+--r];r>0&&(o*=256);)i+=this[t+--r]*o;return o*=128,i>=o&&(i-=Math.pow(2,8*e)),i},i.prototype.readInt8=function(t,e){return e||j(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},i.prototype.readInt16LE=function(t,e){e||j(t,2,this.length);var n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},i.prototype.readInt16BE=function(t,e){e||j(t,2,this.length);var n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},i.prototype.readInt32LE=function(t,e){return e||j(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},i.prototype.readInt32BE=function(t,e){return e||j(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},i.prototype.readFloatLE=function(t,e){return e||j(t,4,this.length),H.read(this,t,!0,23,4)},i.prototype.readFloatBE=function(t,e){return e||j(t,4,this.length),H.read(this,t,!1,23,4)},i.prototype.readDoubleLE=function(t,e){return e||j(t,8,this.length),H.read(this,t,!0,52,8)},i.prototype.readDoubleBE=function(t,e){return e||j(t,8,this.length),H.read(this,t,!1,52,8)},i.prototype.writeUIntLE=function(t,e,n,r){if(t=+t,e|=0,n|=0,!r){L(this,t,e,n,Math.pow(2,8*n)-1,0)}var o=1,i=0;for(this[e]=255&t;++i<n&&(o*=256);)this[e+i]=t/o&255;return e+n},i.prototype.writeUIntBE=function(t,e,n,r){if(t=+t,e|=0,n|=0,!r){L(this,t,e,n,Math.pow(2,8*n)-1,0)}var o=n-1,i=1;for(this[e+o]=255&t;--o>=0&&(i*=256);)this[e+o]=t/i&255;return e+n},i.prototype.writeUInt8=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,1,255,0),i.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},i.prototype.writeUInt16LE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,2,65535,0),i.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):M(this,t,e,!0),e+2},i.prototype.writeUInt16BE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,2,65535,0),i.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):M(this,t,e,!1),e+2},i.prototype.writeUInt32LE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,4,4294967295,0),i.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):Y(this,t,e,!0),e+4},i.prototype.writeUInt32BE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,4,4294967295,0),i.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):Y(this,t,e,!1),e+4},i.prototype.writeIntLE=function(t,e,n,r){if(t=+t,e|=0,!r){var o=Math.pow(2,8*n-1);L(this,t,e,n,o-1,-o)}var i=0,a=1,u=0;for(this[e]=255&t;++i<n&&(a*=256);)t<0&&0===u&&0!==this[e+i-1]&&(u=1),this[e+i]=(t/a>>0)-u&255;return e+n},i.prototype.writeIntBE=function(t,e,n,r){if(t=+t,e|=0,!r){var o=Math.pow(2,8*n-1);L(this,t,e,n,o-1,-o)}var i=n-1,a=1,u=0;for(this[e+i]=255&t;--i>=0&&(a*=256);)t<0&&0===u&&0!==this[e+i+1]&&(u=1),this[e+i]=(t/a>>0)-u&255;return e+n},i.prototype.writeInt8=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,1,127,-128),i.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[e]=255&t,e+1},i.prototype.writeInt16LE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,2,32767,-32768),i.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):M(this,t,e,!0),e+2},i.prototype.writeInt16BE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,2,32767,-32768),i.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):M(this,t,e,!1),e+2},i.prototype.writeInt32LE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,4,2147483647,-2147483648),i.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):Y(this,t,e,!0),e+4},i.prototype.writeInt32BE=function(t,e,n){return t=+t,e|=0,n||L(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),i.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):Y(this,t,e,!1),e+4},i.prototype.writeFloatLE=function(t,e,n){return N(this,t,e,!0,n)},i.prototype.writeFloatBE=function(t,e,n){return N(this,t,e,!1,n)},i.prototype.writeDoubleLE=function(t,e,n){return D(this,t,e,!0,n)},i.prototype.writeDoubleBE=function(t,e,n){return D(this,t,e,!1,n)},i.prototype.copy=function(t,e,n,r){if(n||(n=0),r||0===r||(r=this.length),e>=t.length&&(e=t.length),e||(e=0),r>0&&r<n&&(r=n),r===n)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),t.length-e<r-n&&(r=t.length-e+n);var o,a=r-n;if(this===t&&n<e&&e<r)for(o=a-1;o>=0;--o)t[o+e]=this[o+n];else if(a<1e3||!i.TYPED_ARRAY_SUPPORT)for(o=0;o<a;++o)t[o+e]=this[o+n];else Uint8Array.prototype.set.call(t,this.subarray(n,n+a),e);return a},i.prototype.fill=function(t,e,n,r){if("string"==typeof t){if("string"==typeof e?(r=e,e=0,n=this.length):"string"==typeof n&&(r=n,n=this.length),1===t.length){var o=t.charCodeAt(0);o<256&&(t=o)}if(void 0!==r&&"string"!=typeof r)throw new TypeError("encoding must be a string");if("string"==typeof r&&!i.isEncoding(r))throw new TypeError("Unknown encoding: "+r)}else"number"==typeof t&&(t&=255);if(e<0||this.length<e||this.length<n)throw new RangeError("Out of range index");if(n<=e)return this;e>>>=0,n=void 0===n?this.length:n>>>0,t||(t=0);var a;if("number"==typeof t)for(a=e;a<n;++a)this[a]=t;else{var u=i.isBuffer(t)?t:q(new i(t,r).toString()),s=u.length;for(a=0;a<n-e;++a)this[a+e]=u[a%s]}return this};var tt=/[^+\/0-9A-Za-z-_]/g}).call(e,n(0))},function(t,e,n){e=t.exports=n(6)(!0),e.push([t.i,'.src-defaultStyles---defaultTile {\n position: relative;\n}\n\n.src-defaultStyles---defaultPaginationClass[role="navigation"] {\n position: absolute;\n text-align: center;\n left: 10px;\n right: 10px;\n bottom: 0px;\n}\n\n.src-defaultStyles---defaultPaginationClass[role="navigation"] button {\n display: inline-block;\n border: 0;\n border-radius: 50%;\n width: 12px;\n height: 12px;\n background: white;\n margin: 0 2px;\n text-indent: 1000px;\n overflow: hidden;\n cursor: pointer;\n outline: none;\n transition: all .3s;\n}\n\n.src-defaultStyles---defaultPaginationClass[role="navigation"] button[data-active=\'true\'] {\n background: orange;\n}\n\n.src-defaultStyles---defaultArrowPrevClass,\n.src-defaultStyles---defaultArrowNextClass {\n position: absolute;\n font-size: 16px;\n border: 0;\n outline: none;\n top: 45%;\n cursor: pointer;\n transition: all .3s;\n padding: 0;\n color: orange;\n font-family: Arial;\n background: none;\n}\n\n\n.src-defaultStyles---defaultArrowPrevClass:disabled,\n.src-defaultStyles---defaultArrowNextClass:disabled {\n opacity: .2;\n cursor: default;\n}\n\n.src-defaultStyles---defaultArrowPrevClass {\n left: 5px;\n}\n.src-defaultStyles---defaultArrowPrevClass::before {\n content: "\\25C0";\n}\n\n.src-defaultStyles---defaultArrowNextClass {\n right: 5px;\n}\n.src-defaultStyles---defaultArrowNextClass::before {\n content: "\\25B6";\n}\n',"",{version:3,sources:["C:/_PET/react-free-carousel/src/defaultStyles.css"],names:[],mappings:"AAAA;EACE,mBAAmB;CACpB;;AAED;EACE,mBAAmB;EACnB,mBAAmB;EACnB,WAAW;EACX,YAAY;EACZ,YAAY;CACb;;AAED;EACE,sBAAsB;EACtB,UAAU;EACV,mBAAmB;EACnB,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,cAAc;EACd,oBAAoB;EACpB,iBAAiB;EACjB,gBAAgB;EAChB,cAAc;EACd,oBAAoB;CACrB;;AAED;EACE,mBAAmB;CACpB;;AAED;;EAEE,mBAAmB;EACnB,gBAAgB;EAChB,UAAU;EACV,cAAc;EACd,SAAS;EACT,gBAAgB;EAChB,oBAAoB;EACpB,WAAW;EACX,cAAc;EACd,mBAAmB;EACnB,iBAAiB;CAClB;;;AAGD;;EAEE,YAAY;EACZ,gBAAgB;CACjB;;AAED;EACE,UAAU;CACX;AACD;EACE,iBAAiB;CAClB;;AAED;EACE,WAAW;CACZ;AACD;EACE,iBAAiB;CAClB",file:"defaultStyles.css",sourcesContent:['.defaultTile {\n position: relative;\n}\n\n.defaultPaginationClass[role="navigation"] {\n position: absolute;\n text-align: center;\n left: 10px;\n right: 10px;\n bottom: 0px;\n}\n\n.defaultPaginationClass[role="navigation"] button {\n display: inline-block;\n border: 0;\n border-radius: 50%;\n width: 12px;\n height: 12px;\n background: white;\n margin: 0 2px;\n text-indent: 1000px;\n overflow: hidden;\n cursor: pointer;\n outline: none;\n transition: all .3s;\n}\n\n.defaultPaginationClass[role="navigation"] button[data-active=\'true\'] {\n background: orange;\n}\n\n.defaultArrowPrevClass,\n.defaultArrowNextClass {\n position: absolute;\n font-size: 16px;\n border: 0;\n outline: none;\n top: 45%;\n cursor: pointer;\n transition: all .3s;\n padding: 0;\n color: orange;\n font-family: Arial;\n background: none;\n}\n\n\n.defaultArrowPrevClass:disabled,\n.defaultArrowNextClass:disabled {\n opacity: .2;\n cursor: default;\n}\n\n.defaultArrowPrevClass {\n left: 5px;\n}\n.defaultArrowPrevClass::before {\n content: "\\25C0";\n}\n\n.defaultArrowNextClass {\n right: 5px;\n}\n.defaultArrowNextClass::before {\n content: "\\25b6";\n}\n'],sourceRoot:""}]),e.locals={defaultTile:"src-defaultStyles---defaultTile",defaultPaginationClass:"src-defaultStyles---defaultPaginationClass",defaultArrowPrevClass:"src-defaultStyles---defaultArrowPrevClass",defaultArrowNextClass:"src-defaultStyles---defaultArrowNextClass"}},function(t,e,n){(function(e){function n(t,e){var n=t[1]||"",o=t[3];if(!o)return n;if(e){var i=r(o);return[n].concat(o.sources.map(function(t){return"/*# sourceURL="+o.sourceRoot+t+" */"})).concat([i]).join("\n")}return[n].join("\n")}function r(t){return"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+new e(JSON.stringify(t)).toString("base64")+" */"}t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var r=n(e,t);return e[2]?"@media "+e[2]+"{"+r+"}":r}).join("")},e.i=function(t,n){"string"==typeof t&&(t=[[null,t,""]]);for(var r={},o=0;o<this.length;o++){var i=this[o][0];"number"==typeof i&&(r[i]=!0)}for(o=0;o<t.length;o++){var a=t[o];"number"==typeof a[0]&&r[a[0]]||(n&&!a[2]?a[2]=n:n&&(a[2]="("+a[2]+") and ("+n+")"),e.push(a))}},e}}).call(e,n(4).Buffer)},function(t,e,n){"use strict";function r(t){return function(){return t}}var o=function(){};o.thatReturns=r,o.thatReturnsFalse=r(!1),o.thatReturnsTrue=r(!0),o.thatReturnsNull=r(null),o.thatReturnsThis=function(){return this},o.thatReturnsArgument=function(t){return t},t.exports=o},function(t,e,n){"use strict";function r(t,e,n,r,i,a,u,s){if(o(e),!t){var f;if(void 0===e)f=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,i,a,u,s],c=0;f=new Error(e.replace(/%s/g,function(){return l[c++]})),f.name="Invariant Violation"}throw f.framesToPop=1,f}}var o=function(t){};t.exports=r},function(t,e){e.read=function(t,e,n,r,o){var i,a,u=8*o-r-1,s=(1<<u)-1,f=s>>1,l=-7,c=n?o-1:0,h=n?-1:1,p=t[e+c];for(c+=h,i=p&(1<<-l)-1,p>>=-l,l+=u;l>0;i=256*i+t[e+c],c+=h,l-=8);for(a=i&(1<<-l)-1,i>>=-l,l+=r;l>0;a=256*a+t[e+c],c+=h,l-=8);if(0===i)i=1-f;else{if(i===s)return a?NaN:1/0*(p?-1:1);a+=Math.pow(2,r),i-=f}return(p?-1:1)*a*Math.pow(2,i-r)},e.write=function(t,e,n,r,o,i){var a,u,s,f=8*i-o-1,l=(1<<f)-1,c=l>>1,h=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,p=r?0:i-1,d=r?1:-1,g=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(u=isNaN(e)?1:0,a=l):(a=Math.floor(Math.log(e)/Math.LN2),e*(s=Math.pow(2,-a))<1&&(a--,s*=2),e+=a+c>=1?h/s:h*Math.pow(2,1-c),e*s>=2&&(a++,s/=2),a+c>=l?(u=0,a=l):a+c>=1?(u=(e*s-1)*Math.pow(2,o),a+=c):(u=e*Math.pow(2,c-1)*Math.pow(2,o),a=0));o>=8;t[n+p]=255&u,p+=d,u/=256,o-=8);for(a=a<<o|u,f+=o;f>0;t[n+p]=255&a,p+=d,a/=256,f-=8);t[n+p-d]|=128*g}},function(t,e){var n={}.toString;t.exports=Array.isArray||function(t){return"[object Array]"==n.call(t)}},function(t,e,n){(function(e){function n(t){return t.split("")}function r(t){return P.test(t)}function o(t){return r(t)?i(t):n(t)}function i(t){return t.match(C)||[]}function a(t,e,n){var r=-1,o=t.length;e<0&&(e=-e>o?0:o+e),n=n>o?o:n,n<0&&(n+=o),o=e>n?0:n-e>>>0,e>>>=0;for(var i=Array(o);++r<o;)i[r]=t[r+e];return i}function u(t){if("string"==typeof t)return t;if(l(t))return U?U.call(t):"";var e=t+"";return"0"==e&&1/t==-p?"-0":e}function s(t,e,n){var r=t.length;return n=void 0===n?r:n,!e&&n>=r?t:a(t,e,n)}function f(t){return!!t&&"object"==typeof t}function l(t){return"symbol"==typeof t||f(t)&&_.call(t)==d}function c(t){return null==t?"":u(t)}function h(t){return I(c(t).toLowerCase())}var p=1/0,d="[object Symbol]",g="[\\u0300-\\u036f\\ufe20-\\ufe23\\u20d0-\\u20f0]",y="\\ud83c[\\udffb-\\udfff]",v="(?:\\ud83c[\\udde6-\\uddff]){2}",A="[\\ud800-\\udbff][\\udc00-\\udfff]",w="(?:[\\u0300-\\u036f\\ufe20-\\ufe23\\u20d0-\\u20f0]|\\ud83c[\\udffb-\\udfff])?",b="(?:\\u200d(?:"+["[^\\ud800-\\udfff]",v,A].join("|")+")[\\ufe0e\\ufe0f]?"+w+")*",m="[\\ufe0e\\ufe0f]?"+w+b,E="(?:"+["[^\\ud800-\\udfff]"+g+"?",g,v,A,"[\\ud800-\\udfff]"].join("|")+")",C=RegExp(y+"(?="+y+")|"+E+m,"g"),P=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe23\\u20d0-\\u20f0\\ufe0e\\ufe0f]"),T="object"==typeof e&&e&&e.Object===Object&&e,R="object"==typeof self&&self&&self.Object===Object&&self,B=T||R||Function("return this")(),x=Object.prototype,_=x.toString,S=B.Symbol,O=S?S.prototype:void 0,U=O?O.toString:void 0,I=function(t){return function(e){e=c(e);var n=r(e)?o(e):void 0,i=n?n[0]:e.charAt(0),a=n?s(n,1).join(""):e.slice(1);return i[t]()+a}}("toUpperCase");t.exports=h}).call(e,n(0))},function(t,e,n){(function(e){function n(t,e,n){function o(e){var n=g,r=y;return g=y=void 0,P=e,A=t.apply(r,n)}function i(t){return P=t,w=setTimeout(l,e),T?o(t):A}function s(t){var n=t-C,r=t-P,o=e-n;return R?m(o,v-r):o}function f(t){var n=t-C,r=t-P;return void 0===C||n>=e||n<0||R&&r>=v}function l(){var t=E();if(f(t))return c(t);w=setTimeout(l,s(t))}function c(t){return w=void 0,B&&g?o(t):(g=y=void 0,A)}function h(){void 0!==w&&clearTimeout(w),P=0,g=C=y=w=void 0}function p(){return void 0===w?A:c(E())}function d(){var t=E(),n=f(t);if(g=arguments,y=this,C=t,n){if(void 0===w)return i(C);if(R)return w=setTimeout(l,e),o(C)}return void 0===w&&(w=setTimeout(l,e)),A}var g,y,v,A,w,C,P=0,T=!1,R=!1,B=!0;if("function"!=typeof t)throw new TypeError(u);return e=a(e)||0,r(n)&&(T=!!n.leading,R="maxWait"in n,v=R?b(a(n.maxWait)||0,e):v,B="trailing"in n?!!n.trailing:B),d.cancel=h,d.flush=p,d}function r(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function o(t){return!!t&&"object"==typeof t}function i(t){return"symbol"==typeof t||o(t)&&w.call(t)==f}function a(t){if("number"==typeof t)return t;if(i(t))return s;if(r(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=r(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=t.replace(l,"");var n=h.test(t);return n||p.test(t)?d(t.slice(2),n?2:8):c.test(t)?s:+t}var u="Expected a function",s=NaN,f="[object Symbol]",l=/^\s+|\s+$/g,c=/^[-+]0x[0-9a-f]+$/i,h=/^0b[01]+$/i,p=/^0o[0-7]+$/i,d=parseInt,g="object"==typeof e&&e&&e.Object===Object&&e,y="object"==typeof self&&self&&self.Object===Object&&self,v=g||y||Function("return this")(),A=Object.prototype,w=A.toString,b=Math.max,m=Math.min,E=function(){return v.Date.now()};t.exports=n}).call(e,n(0))},function(t,e,n){"use strict";var r=n(7),o=n(8),i=n(15);t.exports=function(){function t(t,e,n,r,a,u){u!==i&&o(!1,"Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types")}function e(){return t}t.isRequired=t;var n={array:t,bool:t,func:t,number:t,object:t,string:t,symbol:t,any:t,arrayOf:e,element:t,instanceOf:e,node:t,objectOf:e,oneOf:e,oneOfType:e,shape:e};return n.checkPropTypes=r,n.PropTypes=n,n}},function(t,e,n){t.exports=n(13)()},function(t,e,n){"use strict";t.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(t,e,n){function r(t,e){for(var n=0;n<t.length;n++){var r=t[n],o=d[r.id];if(o){o.refs++;for(var i=0;i<o.parts.length;i++)o.parts[i](r.parts[i]);for(;i<r.parts.length;i++)o.parts.push(l(r.parts[i],e))}else{for(var a=[],i=0;i<r.parts.length;i++)a.push(l(r.parts[i],e));d[r.id]={id:r.id,refs:1,parts:a}}}}function o(t){for(var e=[],n={},r=0;r<t.length;r++){var o=t[r],i=o[0],a=o[1],u=o[2],s=o[3],f={css:a,media:u,sourceMap:s};n[i]?n[i].parts.push(f):e.push(n[i]={id:i,parts:[f]})}return e}function i(t,e){var n=y(t.insertInto);if(!n)throw new Error("Couldn't find a style target. This probably means that the value for the 'insertInto' parameter is invalid.");var r=w[w.length-1];if("top"===t.insertAt)r?r.nextSibling?n.insertBefore(e,r.nextSibling):n.appendChild(e):n.insertBefore(e,n.firstChild),w.push(e);else{if("bottom"!==t.insertAt)throw new Error("Invalid value for parameter 'insertAt'. Must be 'top' or 'bottom'.");n.appendChild(e)}}function a(t){t.parentNode.removeChild(t);var e=w.indexOf(t);e>=0&&w.splice(e,1)}function u(t){var e=document.createElement("style");return t.attrs.type="text/css",f(e,t.attrs),i(t,e),e}function s(t){var e=document.createElement("link");return t.attrs.type="text/css",t.attrs.rel="stylesheet",f(e,t.attrs),i(t,e),e}function f(t,e){Object.keys(e).forEach(function(n){t.setAttribute(n,e[n])})}function l(t,e){var n,r,o;if(e.singleton){var i=A++;n=v||(v=u(e)),r=c.bind(null,n,i,!1),o=c.bind(null,n,i,!0)}else t.sourceMap&&"function"==typeof URL&&"function"==typeof URL.createObjectURL&&"function"==typeof URL.revokeObjectURL&&"function"==typeof Blob&&"function"==typeof btoa?(n=s(e),r=p.bind(null,n,e),o=function(){a(n),n.href&&URL.revokeObjectURL(n.href)}):(n=u(e),r=h.bind(null,n),o=function(){a(n)});return r(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap)return;r(t=e)}else o()}}function c(t,e,n,r){var o=n?"":r.css;if(t.styleSheet)t.styleSheet.cssText=m(e,o);else{var i=document.createTextNode(o),a=t.childNodes;a[e]&&t.removeChild(a[e]),a.length?t.insertBefore(i,a[e]):t.appendChild(i)}}function h(t,e){var n=e.css,r=e.media;if(r&&t.setAttribute("media",r),t.styleSheet)t.styleSheet.cssText=n;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}function p(t,e,n){var r=n.css,o=n.sourceMap,i=void 0===e.convertToAbsoluteUrls&&o;(e.convertToAbsoluteUrls||i)&&(r=b(r)),o&&(r+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(o))))+" */");var a=new Blob([r],{type:"text/css"}),u=t.href;t.href=URL.createObjectURL(a),u&&URL.revokeObjectURL(u)}var d={},g=function(t){var e;return function(){return void 0===e&&(e=t.apply(this,arguments)),e}}(function(){return window&&document&&document.all&&!window.atob}),y=function(t){var e={};return function(n){return void 0===e[n]&&(e[n]=t.call(this,n)),e[n]}}(function(t){return document.querySelector(t)}),v=null,A=0,w=[],b=n(17);t.exports=function(t,e){if("undefined"!=typeof DEBUG&&DEBUG&&"object"!=typeof document)throw new Error("The style-loader cannot be used in a non-browser environment");e=e||{},e.attrs="object"==typeof e.attrs?e.attrs:{},void 0===e.singleton&&(e.singleton=g()),void 0===e.insertInto&&(e.insertInto="head"),void 0===e.insertAt&&(e.insertAt="bottom");var n=o(t);return r(n,e),function(t){for(var i=[],a=0;a<n.length;a++){var u=n[a],s=d[u.id];s.refs--,i.push(s)}if(t){r(o(t),e)}for(var a=0;a<i.length;a++){var s=i[a];if(0===s.refs){for(var f=0;f<s.parts.length;f++)s.parts[f]();delete d[s.id]}}}};var m=function(){var t=[];return function(e,n){return t[e]=n,t.filter(Boolean).join("\n")}}()},function(t,e){t.exports=function(t){var e="undefined"!=typeof window&&window.location;if(!e)throw new Error("fixUrls requires window.location");if(!t||"string"!=typeof t)return t;var n=e.protocol+"//"+e.host,r=n+e.pathname.replace(/\/[^\/]*$/,"/");return t.replace(/url\s*\(((?:[^)(]|\((?:[^)(]+|\([^)(]*\))*\))*)\)/gi,function(t,e){var o=e.trim().replace(/^"(.*)"$/,function(t,e){return e}).replace(/^'(.*)'$/,function(t,e){return e});if(/^(#|data:|http:\/\/|https:\/\/|file:\/\/\/)/i.test(o))return t;var i;return i=0===o.indexOf("//")?o:0===o.indexOf("/")?n+o:r+o.replace(/^\.\//,""),"url("+JSON.stringify(i)+")"})}},function(t,e,n){var r=n(5);"string"==typeof r&&(r=[[t.i,r,""]]);n(16)(r,{});r.locals&&(t.exports=r.locals)},function(e,n){e.exports=t}])}); |
@@ -26,3 +26,3 @@ 'use strict'; | ||
var _defaultStyles = require('./example/defaultStyles.css'); | ||
var _defaultStyles = require('./defaultStyles.css'); | ||
@@ -29,0 +29,0 @@ var _defaultStyles2 = _interopRequireDefault(_defaultStyles); |
{ | ||
"name": "react-free-carousel", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Carousel component for free flex-box layout built with React.", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -6,3 +6,3 @@ import React from 'react'; | ||
import styles from './example/defaultStyles.css'; | ||
import styles from './defaultStyles.css'; | ||
@@ -9,0 +9,0 @@ const RENDER_DEBOUNCING_TIMEOUT = 600; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
360214
14
4568