hci-theme 0.1.4 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cd7b66c964b37d95700e4218bdedb160cacce43360f14f14a9ee0a70976023f9
4
- data.tar.gz: aaa023200c23ce98d19acaffb982da13bad42f29d62e3939faee2b4144f114c9
3
+ metadata.gz: 2af2a9b3378ace3d44b983b6b941972578fa487cdddcbbb89856b6f9833f3d54
4
+ data.tar.gz: d80462a8508da093eee39741091c7c50681e34458d4f23e5c09df4b37ddff659
5
5
  SHA512:
6
- metadata.gz: c99b3945cc7dd74ed9dc3989e9c722eec1afa50d22e70ae8296f9ec0825ef1a720ebbedc4c3b66b4de5bb6bd44a17013d140f7b99fed3c857cb6946f0e0d071e
7
- data.tar.gz: 265a6c05795877e016f8b86a583fdb019bd1ab3a7e3345a5603128613d656221a8a85d352813803a6ee1133c72b65fd3ce3ed81c827b960ad73341b33c20de23
6
+ metadata.gz: bc057ec8dc3ba2cfc686ee21b650fffc58848cdd678dc9d44aa3197ad698069c4290afe514312ab08cff793edf1d23aa4eaecb21b7999020d21b49db13638193
7
+ data.tar.gz: d68a8a196e43b7198e5935532db0fb879f52274b94e67202e1149ddac758b5434a178fb0464228e741eb3aa37b93862edae65062be768d9e39a48cb8512bc3a6
@@ -0,0 +1,3 @@
1
+ sass:
2
+ load_paths:
3
+ - _sass
@@ -0,0 +1,194 @@
1
+ @charset "UTF-8";
2
+
3
+ // Default Variables
4
+
5
+ // Slick icon entity codes outputs the following
6
+ // "\2190" outputs ascii character "←"
7
+ // "\2192" outputs ascii character "→"
8
+ // "\2022" outputs ascii character "•"
9
+
10
+ $slick-font-path: "./fonts/" !default;
11
+ $slick-font-family: "slick" !default;
12
+ $slick-loader-path: "./" !default;
13
+ $slick-arrow-color: white !default;
14
+ $slick-dot-color: black !default;
15
+ $slick-dot-color-active: $slick-dot-color !default;
16
+ $slick-prev-character: "\2190" !default;
17
+ $slick-next-character: "\2192" !default;
18
+ $slick-dot-character: "\2022" !default;
19
+ $slick-dot-size: 6px !default;
20
+ $slick-opacity-default: 0.75 !default;
21
+ $slick-opacity-on-hover: 1 !default;
22
+ $slick-opacity-not-active: 0.25 !default;
23
+
24
+ @function slick-image-url($url) {
25
+ @if function-exists(image-url) {
26
+ @return image-url($url);
27
+ }
28
+ @else {
29
+ @return url($slick-loader-path + $url);
30
+ }
31
+ }
32
+
33
+ @function slick-font-url($url) {
34
+ @if function-exists(font-url) {
35
+ @return font-url($url);
36
+ }
37
+ @else {
38
+ @return url($slick-font-path + $url);
39
+ }
40
+ }
41
+
42
+ /* Slider */
43
+
44
+ .slick-list {
45
+ .slick-loading & {
46
+ background: #fff slick-image-url("ajax-loader.gif") center center no-repeat;
47
+ }
48
+ }
49
+
50
+ /* Icons */
51
+ @if $slick-font-family == "slick" {
52
+ @font-face {
53
+ font-family: "slick";
54
+ src: slick-font-url("slick.eot");
55
+ src: slick-font-url("slick.eot?#iefix") format("embedded-opentype"), slick-font-url("slick.woff") format("woff"), slick-font-url("slick.ttf") format("truetype"), slick-font-url("slick.svg#slick") format("svg");
56
+ font-weight: normal;
57
+ font-style: normal;
58
+ }
59
+ }
60
+
61
+ /* Arrows */
62
+
63
+ .slick-prev,
64
+ .slick-next {
65
+ position: absolute;
66
+ display: block;
67
+ height: 20px;
68
+ width: 20px;
69
+ line-height: 0px;
70
+ font-size: 0px;
71
+ cursor: pointer;
72
+ background: transparent;
73
+ color: transparent;
74
+ top: 50%;
75
+ -webkit-transform: translate(0, -50%);
76
+ -ms-transform: translate(0, -50%);
77
+ transform: translate(0, -50%);
78
+ padding: 0;
79
+ border: none;
80
+ outline: none;
81
+ &:hover, &:focus {
82
+ outline: none;
83
+ background: transparent;
84
+ color: transparent;
85
+ &:before {
86
+ opacity: $slick-opacity-on-hover;
87
+ }
88
+ }
89
+ &.slick-disabled:before {
90
+ opacity: $slick-opacity-not-active;
91
+ }
92
+ &:before {
93
+ font-family: $slick-font-family;
94
+ font-size: 20px;
95
+ line-height: 1;
96
+ color: $slick-arrow-color;
97
+ opacity: $slick-opacity-default;
98
+ -webkit-font-smoothing: antialiased;
99
+ -moz-osx-font-smoothing: grayscale;
100
+ }
101
+ }
102
+
103
+ .slick-prev {
104
+ left: -25px;
105
+ [dir="rtl"] & {
106
+ left: auto;
107
+ right: -25px;
108
+ }
109
+ &:before {
110
+ content: $slick-prev-character;
111
+ [dir="rtl"] & {
112
+ content: $slick-next-character;
113
+ }
114
+ }
115
+ }
116
+
117
+ .slick-next {
118
+ right: -25px;
119
+ [dir="rtl"] & {
120
+ left: -25px;
121
+ right: auto;
122
+ }
123
+ &:before {
124
+ content: $slick-next-character;
125
+ [dir="rtl"] & {
126
+ content: $slick-prev-character;
127
+ }
128
+ }
129
+ }
130
+
131
+ /* Dots */
132
+
133
+ .slick-dotted.slick-slider {
134
+ margin-bottom: 30px;
135
+ }
136
+
137
+ .slick-dots {
138
+ position: absolute;
139
+ bottom: -25px;
140
+ list-style: none;
141
+ display: block;
142
+ text-align: center;
143
+ padding: 0;
144
+ margin: 0;
145
+ width: 100%;
146
+ li {
147
+ position: relative;
148
+ display: inline-block;
149
+ height: 20px;
150
+ width: 20px;
151
+ margin: 0 5px;
152
+ padding: 0;
153
+ cursor: pointer;
154
+ button {
155
+ border: 0;
156
+ background: transparent;
157
+ display: block;
158
+ height: 20px;
159
+ width: 20px;
160
+ outline: none;
161
+ line-height: 0px;
162
+ font-size: 0px;
163
+ color: transparent;
164
+ padding: 5px;
165
+ cursor: pointer;
166
+ &:hover, &:focus {
167
+ outline: none;
168
+ &:before {
169
+ opacity: $slick-opacity-on-hover;
170
+ }
171
+ }
172
+ &:before {
173
+ position: absolute;
174
+ top: 0;
175
+ left: 0;
176
+ content: $slick-dot-character;
177
+ width: 20px;
178
+ height: 20px;
179
+ font-family: $slick-font-family;
180
+ font-size: $slick-dot-size;
181
+ line-height: 20px;
182
+ text-align: center;
183
+ color: $slick-dot-color;
184
+ opacity: $slick-opacity-not-active;
185
+ -webkit-font-smoothing: antialiased;
186
+ -moz-osx-font-smoothing: grayscale;
187
+ }
188
+ }
189
+ &.slick-active button:before {
190
+ color: $slick-dot-color-active;
191
+ opacity: $slick-opacity-default;
192
+ }
193
+ }
194
+ }
@@ -0,0 +1,100 @@
1
+ /* Slider */
2
+
3
+ .slick-slider {
4
+ position: relative;
5
+ display: block;
6
+ box-sizing: border-box;
7
+ -webkit-touch-callout: none;
8
+ -webkit-user-select: none;
9
+ -khtml-user-select: none;
10
+ -moz-user-select: none;
11
+ -ms-user-select: none;
12
+ user-select: none;
13
+ -ms-touch-action: pan-y;
14
+ touch-action: pan-y;
15
+ -webkit-tap-highlight-color: transparent;
16
+ }
17
+ .slick-list {
18
+ position: relative;
19
+ overflow: hidden;
20
+ display: block;
21
+ margin: 0;
22
+ padding: 0;
23
+
24
+ &:focus {
25
+ outline: none;
26
+ }
27
+
28
+ &.dragging {
29
+ cursor: pointer;
30
+ cursor: hand;
31
+ }
32
+ }
33
+ .slick-slider .slick-track,
34
+ .slick-slider .slick-list {
35
+ -webkit-transform: translate3d(0, 0, 0);
36
+ -moz-transform: translate3d(0, 0, 0);
37
+ -ms-transform: translate3d(0, 0, 0);
38
+ -o-transform: translate3d(0, 0, 0);
39
+ transform: translate3d(0, 0, 0);
40
+ }
41
+
42
+ .slick-track {
43
+ position: relative;
44
+ left: 0;
45
+ top: 0;
46
+ display: block;
47
+ margin-left: auto;
48
+ margin-right: auto;
49
+
50
+ &:before,
51
+ &:after {
52
+ content: "";
53
+ display: table;
54
+ }
55
+
56
+ &:after {
57
+ clear: both;
58
+ }
59
+
60
+ .slick-loading & {
61
+ visibility: hidden;
62
+ }
63
+ }
64
+ .slick-slide {
65
+ float: left;
66
+ height: 100%;
67
+ min-height: 1px;
68
+ [dir="rtl"] & {
69
+ float: right;
70
+ }
71
+ img {
72
+ display: block;
73
+ }
74
+ &.slick-loading img {
75
+ display: none;
76
+ }
77
+
78
+ display: none;
79
+
80
+ &.dragging img {
81
+ pointer-events: none;
82
+ }
83
+
84
+ .slick-initialized & {
85
+ display: block;
86
+ }
87
+
88
+ .slick-loading & {
89
+ visibility: hidden;
90
+ }
91
+
92
+ .slick-vertical & {
93
+ display: block;
94
+ height: auto;
95
+ border: 1px solid transparent;
96
+ }
97
+ }
98
+ .slick-arrow.slick-hidden {
99
+ display: none;
100
+ }
@@ -0,0 +1,54 @@
1
+ !function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=10)}([function(e,t,n){(function(e){var n;function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}
2
+ /*!
3
+ * jQuery JavaScript Library v3.4.1
4
+ * https://jquery.com/
5
+ *
6
+ * Includes Sizzle.js
7
+ * https://sizzlejs.com/
8
+ *
9
+ * Copyright JS Foundation and other contributors
10
+ * Released under the MIT license
11
+ * https://jquery.org/license
12
+ *
13
+ * Date: 2019-05-01T21:04Z
14
+ */!function(t,n){"use strict";"object"===r(e)&&"object"===r(e.exports)?e.exports=t.document?n(t,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return n(e)}:n(t)}("undefined"!=typeof window?window:this,(function(i,o){"use strict";var a=[],l=i.document,s=Object.getPrototypeOf,u=a.slice,c=a.concat,d=a.push,f=a.indexOf,p={},h=p.toString,m=p.hasOwnProperty,v=m.toString,y=v.call(Object),g={},b=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},w=function(e){return null!=e&&e===e.window},k={type:!0,src:!0,nonce:!0,noModule:!0};function x(e,t,n){var r,i,o=(n=n||l).createElement("script");if(o.text=e,t)for(r in k)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function T(e){return null==e?e+"":"object"===r(e)||"function"==typeof e?p[h.call(e)]||"object":r(e)}var S=function e(t,n){return new e.fn.init(t,n)},C=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function E(e){var t=!!e&&"length"in e&&e.length,n=T(e);return!b(e)&&!w(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}S.fn=S.prototype={jquery:"3.4.1",constructor:S,length:0,toArray:function(){return u.call(this)},get:function(e){return null==e?u.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=S.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return S.each(this,e)},map:function(e){return this.pushStack(S.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(u.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:d,sort:a.sort,splice:a.splice},S.extend=S.fn.extend=function(){var e,t,n,i,o,a,l=arguments[0]||{},s=1,u=arguments.length,c=!1;for("boolean"==typeof l&&(c=l,l=arguments[s]||{},s++),"object"===r(l)||b(l)||(l={}),s===u&&(l=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)i=e[t],"__proto__"!==t&&l!==i&&(c&&i&&(S.isPlainObject(i)||(o=Array.isArray(i)))?(n=l[t],a=o&&!Array.isArray(n)?[]:o||S.isPlainObject(n)?n:{},o=!1,l[t]=S.extend(c,a,i)):void 0!==i&&(l[t]=i));return l},S.extend({expando:"jQuery"+("3.4.1"+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==h.call(e))&&(!(t=s(e))||"function"==typeof(n=m.call(t,"constructor")&&t.constructor)&&v.call(n)===y)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t){x(e,{nonce:t&&t.nonce})},each:function(e,t){var n,r=0;if(E(e))for(n=e.length;r<n&&!1!==t.call(e[r],r,e[r]);r++);else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},trim:function(e){return null==e?"":(e+"").replace(C,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(E(Object(e))?S.merge(n,"string"==typeof e?[e]:e):d.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:f.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(E(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return c.apply([],a)},guid:1,support:g}),"function"==typeof Symbol&&(S.fn[Symbol.iterator]=a[Symbol.iterator]),S.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),(function(e,t){p["[object "+t+"]"]=t.toLowerCase()}));var P=
15
+ /*!
16
+ * Sizzle CSS Selector Engine v2.3.4
17
+ * https://sizzlejs.com/
18
+ *
19
+ * Copyright JS Foundation and other contributors
20
+ * Released under the MIT license
21
+ * https://js.foundation/
22
+ *
23
+ * Date: 2019-04-08
24
+ */
25
+ function(e){var t,n,r,i,o,a,l,s,u,c,d,f,p,h,m,v,y,g,b,w="sizzle"+1*new Date,k=e.document,x=0,T=0,S=se(),C=se(),E=se(),P=se(),N=function(e,t){return e===t&&(d=!0),0},A={}.hasOwnProperty,$=[],O=$.pop,_=$.push,L=$.push,D=$.slice,M=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},I="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",j="[\\x20\\t\\r\\n\\f]",z="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",H="\\["+j+"*("+z+")(?:"+j+"*([*^$|!~]?=)"+j+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+z+"))|)"+j+"*\\]",R=":("+z+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+H+")*)|.*)\\)|)",F=new RegExp(j+"+","g"),U=new RegExp("^"+j+"+|((?:^|[^\\\\])(?:\\\\.)*)"+j+"+$","g"),q=new RegExp("^"+j+"*,"+j+"*"),W=new RegExp("^"+j+"*([>+~]|"+j+")"+j+"*"),B=new RegExp(j+"|>"),V=new RegExp(R),X=new RegExp("^"+z+"$"),Q={ID:new RegExp("^#("+z+")"),CLASS:new RegExp("^\\.("+z+")"),TAG:new RegExp("^("+z+"|[*])"),ATTR:new RegExp("^"+H),PSEUDO:new RegExp("^"+R),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+j+"*(even|odd|(([+-]|)(\\d*)n|)"+j+"*(?:([+-]|)"+j+"*(\\d+)|))"+j+"*\\)|)","i"),bool:new RegExp("^(?:"+I+")$","i"),needsContext:new RegExp("^"+j+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+j+"*((?:-\\d)?\\d*)"+j+"*\\)|)(?=[^-]|$)","i")},K=/HTML$/i,Y=/^(?:input|select|textarea|button)$/i,G=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+j+"?|("+j+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){f()},ae=we((function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{L.apply($=D.call(k.childNodes),k.childNodes),$[k.childNodes.length].nodeType}catch(e){L={apply:$.length?function(e,t){_.apply(e,D.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function le(e,t,r,i){var o,l,u,c,d,h,y,g=t&&t.ownerDocument,x=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==x&&9!==x&&11!==x)return r;if(!i&&((t?t.ownerDocument||t:k)!==p&&f(t),t=t||p,m)){if(11!==x&&(d=Z.exec(e)))if(o=d[1]){if(9===x){if(!(u=t.getElementById(o)))return r;if(u.id===o)return r.push(u),r}else if(g&&(u=g.getElementById(o))&&b(t,u)&&u.id===o)return r.push(u),r}else{if(d[2])return L.apply(r,t.getElementsByTagName(e)),r;if((o=d[3])&&n.getElementsByClassName&&t.getElementsByClassName)return L.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!P[e+" "]&&(!v||!v.test(e))&&(1!==x||"object"!==t.nodeName.toLowerCase())){if(y=e,g=t,1===x&&B.test(e)){for((c=t.getAttribute("id"))?c=c.replace(re,ie):t.setAttribute("id",c=w),l=(h=a(e)).length;l--;)h[l]="#"+c+" "+be(h[l]);y=h.join(","),g=ee.test(e)&&ye(t.parentNode)||t}try{return L.apply(r,g.querySelectorAll(y)),r}catch(t){P(e,!0)}finally{c===w&&t.removeAttribute("id")}}}return s(e.replace(U,"$1"),t,r,i)}function se(){var e=[];return function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}}function ue(e){return e[w]=!0,e}function ce(e){var t=p.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function de(e,t){for(var n=e.split("|"),i=n.length;i--;)r.attrHandle[n[i]]=t}function fe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function pe(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function he(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function me(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function ve(e){return ue((function(t){return t=+t,ue((function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function ye(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=le.support={},o=le.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!K.test(t||n&&n.nodeName||"HTML")},f=le.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:k;return a!==p&&9===a.nodeType&&a.documentElement?(h=(p=a).documentElement,m=!o(p),k!==p&&(i=p.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",oe,!1):i.attachEvent&&i.attachEvent("onunload",oe)),n.attributes=ce((function(e){return e.className="i",!e.getAttribute("className")})),n.getElementsByTagName=ce((function(e){return e.appendChild(p.createComment("")),!e.getElementsByTagName("*").length})),n.getElementsByClassName=J.test(p.getElementsByClassName),n.getById=ce((function(e){return h.appendChild(e).id=w,!p.getElementsByName||!p.getElementsByName(w).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&m){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&m){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&m)return t.getElementsByClassName(e)},y=[],v=[],(n.qsa=J.test(p.querySelectorAll))&&(ce((function(e){h.appendChild(e).innerHTML="<a id='"+w+"'></a><select id='"+w+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+j+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+j+"*(?:value|"+I+")"),e.querySelectorAll("[id~="+w+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+w+"+*").length||v.push(".#.+[+~]")})),ce((function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=p.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+j+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")}))),(n.matchesSelector=J.test(g=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ce((function(e){n.disconnectedMatch=g.call(e,"*"),g.call(e,"[s!='']:x"),y.push("!=",R)})),v=v.length&&new RegExp(v.join("|")),y=y.length&&new RegExp(y.join("|")),t=J.test(h.compareDocumentPosition),b=t||J.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},N=t?function(e,t){if(e===t)return d=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===p||e.ownerDocument===k&&b(k,e)?-1:t===p||t.ownerDocument===k&&b(k,t)?1:c?M(c,e)-M(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return d=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],l=[t];if(!i||!o)return e===p?-1:t===p?1:i?-1:o?1:c?M(c,e)-M(c,t):0;if(i===o)return fe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)l.unshift(n);for(;a[r]===l[r];)r++;return r?fe(a[r],l[r]):a[r]===k?-1:l[r]===k?1:0},p):p},le.matches=function(e,t){return le(e,null,null,t)},le.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&f(e),n.matchesSelector&&m&&!P[t+" "]&&(!y||!y.test(t))&&(!v||!v.test(t)))try{var r=g.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){P(t,!0)}return le(t,p,null,[e]).length>0},le.contains=function(e,t){return(e.ownerDocument||e)!==p&&f(e),b(e,t)},le.attr=function(e,t){(e.ownerDocument||e)!==p&&f(e);var i=r.attrHandle[t.toLowerCase()],o=i&&A.call(r.attrHandle,t.toLowerCase())?i(e,t,!m):void 0;return void 0!==o?o:n.attributes||!m?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},le.escape=function(e){return(e+"").replace(re,ie)},le.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},le.uniqueSort=function(e){var t,r=[],i=0,o=0;if(d=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(N),d){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i--;)e.splice(r[i],1)}return c=null,e},i=le.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},(r=le.selectors={cacheLength:50,createPseudo:ue,match:Q,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||le.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&le.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&V.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=S[e+" "];return t||(t=new RegExp("(^|"+j+")"+e+"("+j+"|$)"))&&S(e,(function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")}))},ATTR:function(e,t,n){return function(r){var i=le.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace(F," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),l="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,s){var u,c,d,f,p,h,m=o!==a?"nextSibling":"previousSibling",v=t.parentNode,y=l&&t.nodeName.toLowerCase(),g=!s&&!l,b=!1;if(v){if(o){for(;m;){for(f=t;f=f[m];)if(l?f.nodeName.toLowerCase()===y:1===f.nodeType)return!1;h=m="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?v.firstChild:v.lastChild],a&&g){for(b=(p=(u=(c=(d=(f=v)[w]||(f[w]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]||[])[0]===x&&u[1])&&u[2],f=p&&v.childNodes[p];f=++p&&f&&f[m]||(b=p=0)||h.pop();)if(1===f.nodeType&&++b&&f===t){c[e]=[x,p,b];break}}else if(g&&(b=p=(u=(c=(d=(f=t)[w]||(f[w]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]||[])[0]===x&&u[1]),!1===b)for(;(f=++p&&f&&f[m]||(b=p=0)||h.pop())&&((l?f.nodeName.toLowerCase()!==y:1!==f.nodeType)||!++b||(g&&((c=(d=f[w]||(f[w]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]=[x,b]),f!==t)););return(b-=i)===r||b%r==0&&b/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||le.error("unsupported pseudo: "+e);return i[w]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?ue((function(e,n){for(var r,o=i(e,t),a=o.length;a--;)e[r=M(e,o[a])]=!(n[r]=o[a])})):function(e){return i(e,0,n)}):i}},pseudos:{not:ue((function(e){var t=[],n=[],r=l(e.replace(U,"$1"));return r[w]?ue((function(e,t,n,i){for(var o,a=r(e,null,i,[]),l=e.length;l--;)(o=a[l])&&(e[l]=!(t[l]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),has:ue((function(e){return function(t){return le(e,t).length>0}})),contains:ue((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||i(t)).indexOf(e)>-1}})),lang:ue((function(e){return X.test(e||"")||le.error("unsupported lang: "+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=m?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:me(!1),disabled:me(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return G.test(e.nodeName)},input:function(e){return Y.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve((function(){return[0]})),last:ve((function(e,t){return[t-1]})),eq:ve((function(e,t,n){return[n<0?n+t:n]})),even:ve((function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e})),odd:ve((function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e})),lt:ve((function(e,t,n){for(var r=n<0?n+t:n>t?t:n;--r>=0;)e.push(r);return e})),gt:ve((function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e}))}}).pseudos.nth=r.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})r.pseudos[t]=pe(t);for(t in{submit:!0,reset:!0})r.pseudos[t]=he(t);function ge(){}function be(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function we(e,t,n){var r=t.dir,i=t.next,o=i||r,a=n&&"parentNode"===o,l=T++;return t.first?function(t,n,i){for(;t=t[r];)if(1===t.nodeType||a)return e(t,n,i);return!1}:function(t,n,s){var u,c,d,f=[x,l];if(s){for(;t=t[r];)if((1===t.nodeType||a)&&e(t,n,s))return!0}else for(;t=t[r];)if(1===t.nodeType||a)if(c=(d=t[w]||(t[w]={}))[t.uniqueID]||(d[t.uniqueID]={}),i&&i===t.nodeName.toLowerCase())t=t[r]||t;else{if((u=c[o])&&u[0]===x&&u[1]===l)return f[2]=u[2];if(c[o]=f,f[2]=e(t,n,s))return!0}return!1}}function ke(e){return e.length>1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xe(e,t,n,r,i){for(var o,a=[],l=0,s=e.length,u=null!=t;l<s;l++)(o=e[l])&&(n&&!n(o,r,i)||(a.push(o),u&&t.push(l)));return a}function Te(e,t,n,r,i,o){return r&&!r[w]&&(r=Te(r)),i&&!i[w]&&(i=Te(i,o)),ue((function(o,a,l,s){var u,c,d,f=[],p=[],h=a.length,m=o||function(e,t,n){for(var r=0,i=t.length;r<i;r++)le(e,t[r],n);return n}(t||"*",l.nodeType?[l]:l,[]),v=!e||!o&&t?m:xe(m,f,e,l,s),y=n?i||(o?e:h||r)?[]:a:v;if(n&&n(v,y,l,s),r)for(u=xe(y,p),r(u,[],l,s),c=u.length;c--;)(d=u[c])&&(y[p[c]]=!(v[p[c]]=d));if(o){if(i||e){if(i){for(u=[],c=y.length;c--;)(d=y[c])&&u.push(v[c]=d);i(null,y=[],u,s)}for(c=y.length;c--;)(d=y[c])&&(u=i?M(o,d):f[c])>-1&&(o[u]=!(a[u]=d))}}else y=xe(y===a?y.splice(h,y.length):y),i?i(null,a,y,s):L.apply(a,y)}))}function Se(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],l=a||r.relative[" "],s=a?1:0,c=we((function(e){return e===t}),l,!0),d=we((function(e){return M(t,e)>-1}),l,!0),f=[function(e,n,r){var i=!a&&(r||n!==u)||((t=n).nodeType?c(e,n,r):d(e,n,r));return t=null,i}];s<o;s++)if(n=r.relative[e[s].type])f=[we(ke(f),n)];else{if((n=r.filter[e[s].type].apply(null,e[s].matches))[w]){for(i=++s;i<o&&!r.relative[e[i].type];i++);return Te(s>1&&ke(f),s>1&&be(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(U,"$1"),n,s<i&&Se(e.slice(s,i)),i<o&&Se(e=e.slice(i)),i<o&&be(e))}f.push(n)}return ke(f)}return ge.prototype=r.filters=r.pseudos,r.setFilters=new ge,a=le.tokenize=function(e,t){var n,i,o,a,l,s,u,c=C[e+" "];if(c)return t?0:c.slice(0);for(l=e,s=[],u=r.preFilter;l;){for(a in n&&!(i=q.exec(l))||(i&&(l=l.slice(i[0].length)||l),s.push(o=[])),n=!1,(i=W.exec(l))&&(n=i.shift(),o.push({value:n,type:i[0].replace(U," ")}),l=l.slice(n.length)),r.filter)!(i=Q[a].exec(l))||u[a]&&!(i=u[a](i))||(n=i.shift(),o.push({value:n,type:a,matches:i}),l=l.slice(n.length));if(!n)break}return t?l.length:l?le.error(e):C(e,s).slice(0)},l=le.compile=function(e,t){var n,i=[],o=[],l=E[e+" "];if(!l){for(t||(t=a(e)),n=t.length;n--;)(l=Se(t[n]))[w]?i.push(l):o.push(l);(l=E(e,function(e,t){var n=t.length>0,i=e.length>0,o=function(o,a,l,s,c){var d,h,v,y=0,g="0",b=o&&[],w=[],k=u,T=o||i&&r.find.TAG("*",c),S=x+=null==k?1:Math.random()||.1,C=T.length;for(c&&(u=a===p||a||c);g!==C&&null!=(d=T[g]);g++){if(i&&d){for(h=0,a||d.ownerDocument===p||(f(d),l=!m);v=e[h++];)if(v(d,a||p,l)){s.push(d);break}c&&(x=S)}n&&((d=!v&&d)&&y--,o&&b.push(d))}if(y+=g,n&&g!==y){for(h=0;v=t[h++];)v(b,w,a,l);if(o){if(y>0)for(;g--;)b[g]||w[g]||(w[g]=O.call(s));w=xe(w)}L.apply(s,w),c&&!o&&w.length>0&&y+t.length>1&&le.uniqueSort(s)}return c&&(x=S,u=k),b};return n?ue(o):o}(o,i))).selector=e}return l},s=le.select=function(e,t,n,i){var o,s,u,c,d,f="function"==typeof e&&e,p=!i&&a(e=f.selector||e);if(n=n||[],1===p.length){if((s=p[0]=p[0].slice(0)).length>2&&"ID"===(u=s[0]).type&&9===t.nodeType&&m&&r.relative[s[1].type]){if(!(t=(r.find.ID(u.matches[0].replace(te,ne),t)||[])[0]))return n;f&&(t=t.parentNode),e=e.slice(s.shift().value.length)}for(o=Q.needsContext.test(e)?0:s.length;o--&&(u=s[o],!r.relative[c=u.type]);)if((d=r.find[c])&&(i=d(u.matches[0].replace(te,ne),ee.test(s[0].type)&&ye(t.parentNode)||t))){if(s.splice(o,1),!(e=i.length&&be(s)))return L.apply(n,i),n;break}}return(f||l(e,p))(i,t,!m,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},n.sortStable=w.split("").sort(N).join("")===w,n.detectDuplicates=!!d,f(),n.sortDetached=ce((function(e){return 1&e.compareDocumentPosition(p.createElement("fieldset"))})),ce((function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")}))||de("type|href|height|width",(function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)})),n.attributes&&ce((function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}))||de("value",(function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue})),ce((function(e){return null==e.getAttribute("disabled")}))||de(I,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),le}(i);S.find=P,S.expr=P.selectors,S.expr[":"]=S.expr.pseudos,S.uniqueSort=S.unique=P.uniqueSort,S.text=P.getText,S.isXMLDoc=P.isXML,S.contains=P.contains,S.escapeSelector=P.escape;var N=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&S(e).is(n))break;r.push(e)}return r},A=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},$=S.expr.match.needsContext;function O(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var _=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function L(e,t,n){return b(t)?S.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?S.grep(e,(function(e){return e===t!==n})):"string"!=typeof t?S.grep(e,(function(e){return f.call(t,e)>-1!==n})):S.filter(t,e,n)}S.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?S.find.matchesSelector(r,e)?[r]:[]:S.find.matches(e,S.grep(t,(function(e){return 1===e.nodeType})))},S.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(S(e).filter((function(){for(t=0;t<r;t++)if(S.contains(i[t],this))return!0})));for(n=this.pushStack([]),t=0;t<r;t++)S.find(e,i[t],n);return r>1?S.uniqueSort(n):n},filter:function(e){return this.pushStack(L(this,e||[],!1))},not:function(e){return this.pushStack(L(this,e||[],!0))},is:function(e){return!!L(this,"string"==typeof e&&$.test(e)?S(e):e||[],!1).length}});var D,M=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:M.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:l,!0)),_.test(r[1])&&S.isPlainObject(t))for(r in t)b(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=l.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):b(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(l);var I=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function z(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter((function(){for(var e=0;e<n;e++)if(S.contains(this,t[e]))return!0}))},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&S(e);if(!$.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?a.index(n)>-1:1===n.nodeType&&S.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?S.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?f.call(S(e),this[0]):f.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(S.uniqueSort(S.merge(this.get(),S(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),S.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return N(e,"parentNode")},parentsUntil:function(e,t,n){return N(e,"parentNode",n)},next:function(e){return z(e,"nextSibling")},prev:function(e){return z(e,"previousSibling")},nextAll:function(e){return N(e,"nextSibling")},prevAll:function(e){return N(e,"previousSibling")},nextUntil:function(e,t,n){return N(e,"nextSibling",n)},prevUntil:function(e,t,n){return N(e,"previousSibling",n)},siblings:function(e){return A((e.parentNode||{}).firstChild,e)},children:function(e){return A(e.firstChild)},contents:function(e){return void 0!==e.contentDocument?e.contentDocument:(O(e,"template")&&(e=e.content||e),S.merge([],e.childNodes))}},(function(e,t){S.fn[e]=function(n,r){var i=S.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=S.filter(r,i)),this.length>1&&(j[e]||S.uniqueSort(i),I.test(e)&&i.reverse()),this.pushStack(i)}}));var H=/[^\x20\t\r\n\f]+/g;function R(e){return e}function F(e){throw e}function U(e,t,n,r){var i;try{e&&b(i=e.promise)?i.call(e).done(t).fail(n):e&&b(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}S.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return S.each(e.match(H)||[],(function(e,n){t[n]=!0})),t}(e):S.extend({},e);var t,n,r,i,o=[],a=[],l=-1,s=function(){for(i=i||e.once,r=t=!0;a.length;l=-1)for(n=a.shift();++l<o.length;)!1===o[l].apply(n[0],n[1])&&e.stopOnFalse&&(l=o.length,n=!1);e.memory||(n=!1),t=!1,i&&(o=n?[]:"")},u={add:function(){return o&&(n&&!t&&(l=o.length-1,a.push(n)),function t(n){S.each(n,(function(n,r){b(r)?e.unique&&u.has(r)||o.push(r):r&&r.length&&"string"!==T(r)&&t(r)}))}(arguments),n&&!t&&s()),this},remove:function(){return S.each(arguments,(function(e,t){for(var n;(n=S.inArray(t,o,n))>-1;)o.splice(n,1),n<=l&&l--})),this},has:function(e){return e?S.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||s()),this},fire:function(){return u.fireWith(this,arguments),this},fired:function(){return!!r}};return u},S.extend({Deferred:function(e){var t=[["notify","progress",S.Callbacks("memory"),S.Callbacks("memory"),2],["resolve","done",S.Callbacks("once memory"),S.Callbacks("once memory"),0,"resolved"],["reject","fail",S.Callbacks("once memory"),S.Callbacks("once memory"),1,"rejected"]],n="pending",o={state:function(){return n},always:function(){return a.done(arguments).fail(arguments),this},catch:function(e){return o.then(null,e)},pipe:function(){var e=arguments;return S.Deferred((function(n){S.each(t,(function(t,r){var i=b(e[r[4]])&&e[r[4]];a[r[1]]((function(){var e=i&&i.apply(this,arguments);e&&b(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[r[0]+"With"](this,i?[e]:arguments)}))})),e=null})).promise()},then:function(e,n,o){var a=0;function l(e,t,n,o){return function(){var s=this,u=arguments,c=function(){var i,c;if(!(e<a)){if((i=n.apply(s,u))===t.promise())throw new TypeError("Thenable self-resolution");c=i&&("object"===r(i)||"function"==typeof i)&&i.then,b(c)?o?c.call(i,l(a,t,R,o),l(a,t,F,o)):(a++,c.call(i,l(a,t,R,o),l(a,t,F,o),l(a,t,R,t.notifyWith))):(n!==R&&(s=void 0,u=[i]),(o||t.resolveWith)(s,u))}},d=o?c:function(){try{c()}catch(r){S.Deferred.exceptionHook&&S.Deferred.exceptionHook(r,d.stackTrace),e+1>=a&&(n!==F&&(s=void 0,u=[r]),t.rejectWith(s,u))}};e?d():(S.Deferred.getStackHook&&(d.stackTrace=S.Deferred.getStackHook()),i.setTimeout(d))}}return S.Deferred((function(r){t[0][3].add(l(0,r,b(o)?o:R,r.notifyWith)),t[1][3].add(l(0,r,b(e)?e:R)),t[2][3].add(l(0,r,b(n)?n:F))})).promise()},promise:function(e){return null!=e?S.extend(e,o):o}},a={};return S.each(t,(function(e,r){var i=r[2],l=r[5];o[r[1]]=i.add,l&&i.add((function(){n=l}),t[3-e][2].disable,t[3-e][3].disable,t[0][2].lock,t[0][3].lock),i.add(r[3].fire),a[r[0]]=function(){return a[r[0]+"With"](this===a?void 0:this,arguments),this},a[r[0]+"With"]=i.fireWith})),o.promise(a),e&&e.call(a,a),a},when:function(e){var t=arguments.length,n=t,r=Array(n),i=u.call(arguments),o=S.Deferred(),a=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?u.call(arguments):n,--t||o.resolveWith(r,i)}};if(t<=1&&(U(e,o.done(a(n)).resolve,o.reject,!t),"pending"===o.state()||b(i[n]&&i[n].then)))return o.then();for(;n--;)U(i[n],a(n),o.reject);return o.promise()}});var q=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;S.Deferred.exceptionHook=function(e,t){i.console&&i.console.warn&&e&&q.test(e.name)&&i.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},S.readyException=function(e){i.setTimeout((function(){throw e}))};var W=S.Deferred();function B(){l.removeEventListener("DOMContentLoaded",B),i.removeEventListener("load",B),S.ready()}S.fn.ready=function(e){return W.then(e).catch((function(e){S.readyException(e)})),this},S.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--S.readyWait:S.isReady)||(S.isReady=!0,!0!==e&&--S.readyWait>0||W.resolveWith(l,[S]))}}),S.ready.then=W.then,"complete"===l.readyState||"loading"!==l.readyState&&!l.documentElement.doScroll?i.setTimeout(S.ready):(l.addEventListener("DOMContentLoaded",B),i.addEventListener("load",B));var V=function e(t,n,r,i,o,a,l){var s=0,u=t.length,c=null==r;if("object"===T(r))for(s in o=!0,r)e(t,n,s,r[s],!0,a,l);else if(void 0!==i&&(o=!0,b(i)||(l=!0),c&&(l?(n.call(t,i),n=null):(c=n,n=function(e,t,n){return c.call(S(e),n)})),n))for(;s<u;s++)n(t[s],r,l?i:i.call(t[s],s,n(t[s],r)));return o?t:c?n.call(t):u?n(t[0],r):a},X=/^-ms-/,Q=/-([a-z])/g;function K(e,t){return t.toUpperCase()}function Y(e){return e.replace(X,"ms-").replace(Q,K)}var G=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function J(){this.expando=S.expando+J.uid++}J.uid=1,J.prototype={cache:function(e){var t=e[this.expando];return t||(t={},G(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[Y(t)]=n;else for(r in t)i[Y(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][Y(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(Y):(t=Y(t))in r?[t]:t.match(H)||[]).length;for(;n--;)delete r[t[n]]}(void 0===t||S.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!S.isEmptyObject(t)}};var Z=new J,ee=new J,te=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,ne=/[A-Z]/g;function re(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(ne,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n=function(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:te.test(e)?JSON.parse(e):e)}(n)}catch(e){}ee.set(e,t,n)}else n=void 0;return n}S.extend({hasData:function(e){return ee.hasData(e)||Z.hasData(e)},data:function(e,t,n){return ee.access(e,t,n)},removeData:function(e,t){ee.remove(e,t)},_data:function(e,t,n){return Z.access(e,t,n)},_removeData:function(e,t){Z.remove(e,t)}}),S.fn.extend({data:function(e,t){var n,i,o,a=this[0],l=a&&a.attributes;if(void 0===e){if(this.length&&(o=ee.get(a),1===a.nodeType&&!Z.get(a,"hasDataAttrs"))){for(n=l.length;n--;)l[n]&&0===(i=l[n].name).indexOf("data-")&&(i=Y(i.slice(5)),re(a,i,o[i]));Z.set(a,"hasDataAttrs",!0)}return o}return"object"===r(e)?this.each((function(){ee.set(this,e)})):V(this,(function(t){var n;if(a&&void 0===t)return void 0!==(n=ee.get(a,e))?n:void 0!==(n=re(a,e))?n:void 0;this.each((function(){ee.set(this,e,t)}))}),null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each((function(){ee.remove(this,e)}))}}),S.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Z.get(e,t),n&&(!r||Array.isArray(n)?r=Z.access(e,t,S.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=S.queue(e,t),r=n.length,i=n.shift(),o=S._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,(function(){S.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Z.get(e,n)||Z.access(e,n,{empty:S.Callbacks("once memory").add((function(){Z.remove(e,[t+"queue",n])}))})}}),S.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length<n?S.queue(this[0],e):void 0===t?this:this.each((function(){var n=S.queue(this,e,t);S._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&S.dequeue(this,e)}))},dequeue:function(e){return this.each((function(){S.dequeue(this,e)}))},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=S.Deferred(),o=this,a=this.length,l=function(){--r||i.resolveWith(o,[o])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";a--;)(n=Z.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(l));return l(),i.promise(t)}});var ie=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,oe=new RegExp("^(?:([+-])=|)("+ie+")([a-z%]*)$","i"),ae=["Top","Right","Bottom","Left"],le=l.documentElement,se=function(e){return S.contains(e.ownerDocument,e)},ue={composed:!0};le.getRootNode&&(se=function(e){return S.contains(e.ownerDocument,e)||e.getRootNode(ue)===e.ownerDocument});var ce=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&se(e)&&"none"===S.css(e,"display")},de=function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];for(o in i=n.apply(e,r||[]),t)e.style[o]=a[o];return i};function fe(e,t,n,r){var i,o,a=20,l=r?function(){return r.cur()}:function(){return S.css(e,t,"")},s=l(),u=n&&n[3]||(S.cssNumber[t]?"":"px"),c=e.nodeType&&(S.cssNumber[t]||"px"!==u&&+s)&&oe.exec(S.css(e,t));if(c&&c[3]!==u){for(s/=2,u=u||c[3],c=+s||1;a--;)S.style(e,t,c+u),(1-o)*(1-(o=l()/s||.5))<=0&&(a=0),c/=o;c*=2,S.style(e,t,c+u),n=n||[]}return n&&(c=+c||+s||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=u,r.start=c,r.end=i)),i}var pe={};function he(e){var t,n=e.ownerDocument,r=e.nodeName,i=pe[r];return i||(t=n.body.appendChild(n.createElement(r)),i=S.css(t,"display"),t.parentNode.removeChild(t),"none"===i&&(i="block"),pe[r]=i,i)}function me(e,t){for(var n,r,i=[],o=0,a=e.length;o<a;o++)(r=e[o]).style&&(n=r.style.display,t?("none"===n&&(i[o]=Z.get(r,"display")||null,i[o]||(r.style.display="")),""===r.style.display&&ce(r)&&(i[o]=he(r))):"none"!==n&&(i[o]="none",Z.set(r,"display",n)));for(o=0;o<a;o++)null!=i[o]&&(e[o].style.display=i[o]);return e}S.fn.extend({show:function(){return me(this,!0)},hide:function(){return me(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each((function(){ce(this)?S(this).show():S(this).hide()}))}});var ve=/^(?:checkbox|radio)$/i,ye=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,ge=/^$|^module$|\/(?:java|ecma)script/i,be={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function we(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&O(e,t)?S.merge([e],n):n}function ke(e,t){for(var n=0,r=e.length;n<r;n++)Z.set(e[n],"globalEval",!t||Z.get(t[n],"globalEval"))}be.optgroup=be.option,be.tbody=be.tfoot=be.colgroup=be.caption=be.thead,be.th=be.td;var xe,Te,Se=/<|&#?\w+;/;function Ce(e,t,n,r,i){for(var o,a,l,s,u,c,d=t.createDocumentFragment(),f=[],p=0,h=e.length;p<h;p++)if((o=e[p])||0===o)if("object"===T(o))S.merge(f,o.nodeType?[o]:o);else if(Se.test(o)){for(a=a||d.appendChild(t.createElement("div")),l=(ye.exec(o)||["",""])[1].toLowerCase(),s=be[l]||be._default,a.innerHTML=s[1]+S.htmlPrefilter(o)+s[2],c=s[0];c--;)a=a.lastChild;S.merge(f,a.childNodes),(a=d.firstChild).textContent=""}else f.push(t.createTextNode(o));for(d.textContent="",p=0;o=f[p++];)if(r&&S.inArray(o,r)>-1)i&&i.push(o);else if(u=se(o),a=we(d.appendChild(o),"script"),u&&ke(a),n)for(c=0;o=a[c++];)ge.test(o.type||"")&&n.push(o);return d}xe=l.createDocumentFragment().appendChild(l.createElement("div")),(Te=l.createElement("input")).setAttribute("type","radio"),Te.setAttribute("checked","checked"),Te.setAttribute("name","t"),xe.appendChild(Te),g.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="<textarea>x</textarea>",g.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue;var Ee=/^key/,Pe=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ne=/^([^.]*)(?:\.(.+)|)/;function Ae(){return!0}function $e(){return!1}function Oe(e,t){return e===function(){try{return l.activeElement}catch(e){}}()==("focus"===t)}function _e(e,t,n,i,o,a){var l,s;if("object"===r(t)){for(s in"string"!=typeof n&&(i=i||n,n=void 0),t)_e(e,s,n,i,t[s],a);return e}if(null==i&&null==o?(o=n,i=n=void 0):null==o&&("string"==typeof n?(o=i,i=void 0):(o=i,i=n,n=void 0)),!1===o)o=$e;else if(!o)return e;return 1===a&&(l=o,(o=function(e){return S().off(e),l.apply(this,arguments)}).guid=l.guid||(l.guid=S.guid++)),e.each((function(){S.event.add(this,t,o,i,n)}))}function Le(e,t,n){n?(Z.set(e,t,!1),S.event.add(e,t,{namespace:!1,handler:function(e){var r,i,o=Z.get(this,t);if(1&e.isTrigger&&this[t]){if(o.length)(S.event.special[t]||{}).delegateType&&e.stopPropagation();else if(o=u.call(arguments),Z.set(this,t,o),r=n(this,t),this[t](),o!==(i=Z.get(this,t))||r?Z.set(this,t,!1):i={},o!==i)return e.stopImmediatePropagation(),e.preventDefault(),i.value}else o.length&&(Z.set(this,t,{value:S.event.trigger(S.extend(o[0],S.Event.prototype),o.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Z.get(e,t)&&S.event.add(e,t,Ae)}S.event={global:{},add:function(e,t,n,r,i){var o,a,l,s,u,c,d,f,p,h,m,v=Z.get(e);if(v)for(n.handler&&(n=(o=n).handler,i=o.selector),i&&S.find.matchesSelector(le,i),n.guid||(n.guid=S.guid++),(s=v.events)||(s=v.events={}),(a=v.handle)||(a=v.handle=function(t){return void 0!==S&&S.event.triggered!==t.type?S.event.dispatch.apply(e,arguments):void 0}),u=(t=(t||"").match(H)||[""]).length;u--;)p=m=(l=Ne.exec(t[u])||[])[1],h=(l[2]||"").split(".").sort(),p&&(d=S.event.special[p]||{},p=(i?d.delegateType:d.bindType)||p,d=S.event.special[p]||{},c=S.extend({type:p,origType:m,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&S.expr.match.needsContext.test(i),namespace:h.join(".")},o),(f=s[p])||((f=s[p]=[]).delegateCount=0,d.setup&&!1!==d.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(p,a)),d.add&&(d.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?f.splice(f.delegateCount++,0,c):f.push(c),S.event.global[p]=!0)},remove:function(e,t,n,r,i){var o,a,l,s,u,c,d,f,p,h,m,v=Z.hasData(e)&&Z.get(e);if(v&&(s=v.events)){for(u=(t=(t||"").match(H)||[""]).length;u--;)if(p=m=(l=Ne.exec(t[u])||[])[1],h=(l[2]||"").split(".").sort(),p){for(d=S.event.special[p]||{},f=s[p=(r?d.delegateType:d.bindType)||p]||[],l=l[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=f.length;o--;)c=f[o],!i&&m!==c.origType||n&&n.guid!==c.guid||l&&!l.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(f.splice(o,1),c.selector&&f.delegateCount--,d.remove&&d.remove.call(e,c));a&&!f.length&&(d.teardown&&!1!==d.teardown.call(e,h,v.handle)||S.removeEvent(e,p,v.handle),delete s[p])}else for(p in s)S.event.remove(e,p+t[u],n,r,!0);S.isEmptyObject(s)&&Z.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,l=S.event.fix(e),s=new Array(arguments.length),u=(Z.get(this,"events")||{})[l.type]||[],c=S.event.special[l.type]||{};for(s[0]=l,t=1;t<arguments.length;t++)s[t]=arguments[t];if(l.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,l)){for(a=S.event.handlers.call(this,l,u),t=0;(i=a[t++])&&!l.isPropagationStopped();)for(l.currentTarget=i.elem,n=0;(o=i.handlers[n++])&&!l.isImmediatePropagationStopped();)l.rnamespace&&!1!==o.namespace&&!l.rnamespace.test(o.namespace)||(l.handleObj=o,l.data=o.data,void 0!==(r=((S.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(l.result=r)&&(l.preventDefault(),l.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,l),l.result}},handlers:function(e,t){var n,r,i,o,a,l=[],s=t.delegateCount,u=e.target;if(s&&u.nodeType&&!("click"===e.type&&e.button>=1))for(;u!==this;u=u.parentNode||this)if(1===u.nodeType&&("click"!==e.type||!0!==u.disabled)){for(o=[],a={},n=0;n<s;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?S(i,this).index(u)>-1:S.find(i,this,null,[u]).length),a[i]&&o.push(r);o.length&&l.push({elem:u,handlers:o})}return u=this,s<t.length&&l.push({elem:u,handlers:t.slice(s)}),l},addProp:function(e,t){Object.defineProperty(S.Event.prototype,e,{enumerable:!0,configurable:!0,get:b(t)?function(){if(this.originalEvent)return t(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(t){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:t})}})},fix:function(e){return e[S.expando]?e:new S.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return ve.test(t.type)&&t.click&&O(t,"input")&&Le(t,"click",Ae),!1},trigger:function(e){var t=this||e;return ve.test(t.type)&&t.click&&O(t,"input")&&Le(t,"click"),!0},_default:function(e){var t=e.target;return ve.test(t.type)&&t.click&&O(t,"input")&&Z.get(t,"click")||O(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},S.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},S.Event=function(e,t){if(!(this instanceof S.Event))return new S.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?Ae:$e,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&S.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[S.expando]=!0},S.Event.prototype={constructor:S.Event,isDefaultPrevented:$e,isPropagationStopped:$e,isImmediatePropagationStopped:$e,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=Ae,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=Ae,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=Ae,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},S.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&Ee.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&Pe.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},S.event.addProp),S.each({focus:"focusin",blur:"focusout"},(function(e,t){S.event.special[e]={setup:function(){return Le(this,e,Oe),!1},trigger:function(){return Le(this,e),!0},delegateType:t}})),S.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},(function(e,t){S.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return i&&(i===r||S.contains(r,i))||(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}})),S.fn.extend({on:function(e,t,n,r){return _e(this,e,t,n,r)},one:function(e,t,n,r){return _e(this,e,t,n,r,1)},off:function(e,t,n){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,S(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"===r(e)){for(o in e)this.off(o,t,e[o]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=$e),this.each((function(){S.event.remove(this,e,n,t)}))}});var De=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,Me=/<script|<style|<link/i,Ie=/checked\s*(?:[^=]|=\s*.checked.)/i,je=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function ze(e,t){return O(e,"table")&&O(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function He(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,l,s,u;if(1===t.nodeType){if(Z.hasData(e)&&(o=Z.access(e),a=Z.set(t,o),u=o.events))for(i in delete a.handle,a.events={},u)for(n=0,r=u[i].length;n<r;n++)S.event.add(t,i,u[i][n]);ee.hasData(e)&&(l=ee.access(e),s=S.extend({},l),ee.set(t,s))}}function Ue(e,t){var n=t.nodeName.toLowerCase();"input"===n&&ve.test(e.type)?t.checked=e.checked:"input"!==n&&"textarea"!==n||(t.defaultValue=e.defaultValue)}function qe(e,t,n,r){t=c.apply([],t);var i,o,a,l,s,u,d=0,f=e.length,p=f-1,h=t[0],m=b(h);if(m||f>1&&"string"==typeof h&&!g.checkClone&&Ie.test(h))return e.each((function(i){var o=e.eq(i);m&&(t[0]=h.call(this,i,o.html())),qe(o,t,n,r)}));if(f&&(o=(i=Ce(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=o),o||r)){for(l=(a=S.map(we(i,"script"),He)).length;d<f;d++)s=i,d!==p&&(s=S.clone(s,!0,!0),l&&S.merge(a,we(s,"script"))),n.call(e[d],s,d);if(l)for(u=a[a.length-1].ownerDocument,S.map(a,Re),d=0;d<l;d++)s=a[d],ge.test(s.type||"")&&!Z.access(s,"globalEval")&&S.contains(u,s)&&(s.src&&"module"!==(s.type||"").toLowerCase()?S._evalUrl&&!s.noModule&&S._evalUrl(s.src,{nonce:s.nonce||s.getAttribute("nonce")}):x(s.textContent.replace(je,""),s,u))}return e}function We(e,t,n){for(var r,i=t?S.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||S.cleanData(we(r)),r.parentNode&&(n&&se(r)&&ke(we(r,"script")),r.parentNode.removeChild(r));return e}S.extend({htmlPrefilter:function(e){return e.replace(De,"<$1></$2>")},clone:function(e,t,n){var r,i,o,a,l=e.cloneNode(!0),s=se(e);if(!(g.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||S.isXMLDoc(e)))for(a=we(l),r=0,i=(o=we(e)).length;r<i;r++)Ue(o[r],a[r]);if(t)if(n)for(o=o||we(e),a=a||we(l),r=0,i=o.length;r<i;r++)Fe(o[r],a[r]);else Fe(e,l);return(a=we(l,"script")).length>0&&ke(a,!s&&we(e,"script")),l},cleanData:function(e){for(var t,n,r,i=S.event.special,o=0;void 0!==(n=e[o]);o++)if(G(n)){if(t=n[Z.expando]){if(t.events)for(r in t.events)i[r]?S.event.remove(n,r):S.removeEvent(n,r,t.handle);n[Z.expando]=void 0}n[ee.expando]&&(n[ee.expando]=void 0)}}}),S.fn.extend({detach:function(e){return We(this,e,!0)},remove:function(e){return We(this,e)},text:function(e){return V(this,(function(e){return void 0===e?S.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return qe(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||ze(this,e).appendChild(e)}))},prepend:function(){return qe(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=ze(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return qe(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return qe(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(S.cleanData(we(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return S.clone(this,e,t)}))},html:function(e){return V(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Me.test(e)&&!be[(ye.exec(e)||["",""])[1].toLowerCase()]){e=S.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(S.cleanData(we(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)}),null,e,arguments.length)},replaceWith:function(){var e=[];return qe(this,arguments,(function(t){var n=this.parentNode;S.inArray(this,e)<0&&(S.cleanData(we(this)),n&&n.replaceChild(t,this))}),e)}}),S.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},(function(e,t){S.fn[e]=function(e){for(var n,r=[],i=S(e),o=i.length-1,a=0;a<=o;a++)n=a===o?this:this.clone(!0),S(i[a])[t](n),d.apply(r,n.get());return this.pushStack(r)}}));var Be=new RegExp("^("+ie+")(?!px)[a-z%]+$","i"),Ve=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=i),t.getComputedStyle(e)},Xe=new RegExp(ae.join("|"),"i");function Qe(e,t,n){var r,i,o,a,l=e.style;return(n=n||Ve(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||se(e)||(a=S.style(e,t)),!g.pixelBoxStyles()&&Be.test(a)&&Xe.test(t)&&(r=l.width,i=l.minWidth,o=l.maxWidth,l.minWidth=l.maxWidth=l.width=a,a=n.width,l.width=r,l.minWidth=i,l.maxWidth=o)),void 0!==a?a+"":a}function Ke(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(c){u.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",c.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",le.appendChild(u).appendChild(c);var e=i.getComputedStyle(c);n="1%"!==e.top,s=12===t(e.marginLeft),c.style.right="60%",a=36===t(e.right),r=36===t(e.width),c.style.position="absolute",o=12===t(c.offsetWidth/3),le.removeChild(u),c=null}}function t(e){return Math.round(parseFloat(e))}var n,r,o,a,s,u=l.createElement("div"),c=l.createElement("div");c.style&&(c.style.backgroundClip="content-box",c.cloneNode(!0).style.backgroundClip="",g.clearCloneStyle="content-box"===c.style.backgroundClip,S.extend(g,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),a},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),s},scrollboxSize:function(){return e(),o}}))}();var Ye=["Webkit","Moz","ms"],Ge=l.createElement("div").style,Je={};function Ze(e){var t=S.cssProps[e]||Je[e];return t||(e in Ge?e:Je[e]=function(e){for(var t=e[0].toUpperCase()+e.slice(1),n=Ye.length;n--;)if((e=Ye[n]+t)in Ge)return e}(e)||e)}var et=/^(none|table(?!-c[ea]).+)/,tt=/^--/,nt={position:"absolute",visibility:"hidden",display:"block"},rt={letterSpacing:"0",fontWeight:"400"};function it(e,t,n){var r=oe.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function ot(e,t,n,r,i,o){var a="width"===t?1:0,l=0,s=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(s+=S.css(e,n+ae[a],!0,i)),r?("content"===n&&(s-=S.css(e,"padding"+ae[a],!0,i)),"margin"!==n&&(s-=S.css(e,"border"+ae[a]+"Width",!0,i))):(s+=S.css(e,"padding"+ae[a],!0,i),"padding"!==n?s+=S.css(e,"border"+ae[a]+"Width",!0,i):l+=S.css(e,"border"+ae[a]+"Width",!0,i));return!r&&o>=0&&(s+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-s-l-.5))||0),s}function at(e,t,n){var r=Ve(e),i=(!g.boxSizingReliable()||n)&&"border-box"===S.css(e,"boxSizing",!1,r),o=i,a=Qe(e,t,r),l="offset"+t[0].toUpperCase()+t.slice(1);if(Be.test(a)){if(!n)return a;a="auto"}return(!g.boxSizingReliable()&&i||"auto"===a||!parseFloat(a)&&"inline"===S.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===S.css(e,"boxSizing",!1,r),(o=l in e)&&(a=e[l])),(a=parseFloat(a)||0)+ot(e,t,n||(i?"border":"content"),o,r,a)+"px"}function lt(e,t,n,r,i){return new lt.prototype.init(e,t,n,r,i)}S.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Qe(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,l,s=Y(t),u=tt.test(t),c=e.style;if(u||(t=Ze(s)),l=S.cssHooks[t]||S.cssHooks[s],void 0===n)return l&&"get"in l&&void 0!==(o=l.get(e,!1,i))?o:c[t];"string"===(a=r(n))&&(o=oe.exec(n))&&o[1]&&(n=fe(e,t,o),a="number"),null!=n&&n==n&&("number"!==a||u||(n+=o&&o[3]||(S.cssNumber[s]?"":"px")),g.clearCloneStyle||""!==n||0!==t.indexOf("background")||(c[t]="inherit"),l&&"set"in l&&void 0===(n=l.set(e,n,i))||(u?c.setProperty(t,n):c[t]=n))}},css:function(e,t,n,r){var i,o,a,l=Y(t);return tt.test(t)||(t=Ze(l)),(a=S.cssHooks[t]||S.cssHooks[l])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Qe(e,t,r)),"normal"===i&&t in rt&&(i=rt[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),S.each(["height","width"],(function(e,t){S.cssHooks[t]={get:function(e,n,r){if(n)return!et.test(S.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?at(e,t,r):de(e,nt,(function(){return at(e,t,r)}))},set:function(e,n,r){var i,o=Ve(e),a=!g.scrollboxSize()&&"absolute"===o.position,l=(a||r)&&"border-box"===S.css(e,"boxSizing",!1,o),s=r?ot(e,t,r,l,o):0;return l&&a&&(s-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-ot(e,t,"border",!1,o)-.5)),s&&(i=oe.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=S.css(e,t)),it(0,n,s)}}})),S.cssHooks.marginLeft=Ke(g.reliableMarginLeft,(function(e,t){if(t)return(parseFloat(Qe(e,"marginLeft"))||e.getBoundingClientRect().left-de(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+"px"})),S.each({margin:"",padding:"",border:"Width"},(function(e,t){S.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+ae[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(S.cssHooks[e+t].set=it)})),S.fn.extend({css:function(e,t){return V(this,(function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Ve(e),i=t.length;a<i;a++)o[t[a]]=S.css(e,t[a],!1,r);return o}return void 0!==n?S.style(e,t,n):S.css(e,t)}),e,t,arguments.length>1)}}),S.Tween=lt,lt.prototype={constructor:lt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||S.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(S.cssNumber[n]?"":"px")},cur:function(){var e=lt.propHooks[this.prop];return e&&e.get?e.get(this):lt.propHooks._default.get(this)},run:function(e){var t,n=lt.propHooks[this.prop];return this.options.duration?this.pos=t=S.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):lt.propHooks._default.set(this),this}},lt.prototype.init.prototype=lt.prototype,lt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=S.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){S.fx.step[e.prop]?S.fx.step[e.prop](e):1!==e.elem.nodeType||!S.cssHooks[e.prop]&&null==e.elem.style[Ze(e.prop)]?e.elem[e.prop]=e.now:S.style(e.elem,e.prop,e.now+e.unit)}}},lt.propHooks.scrollTop=lt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},S.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},S.fx=lt.prototype.init,S.fx.step={};var st,ut,ct=/^(?:toggle|show|hide)$/,dt=/queueHooks$/;function ft(){ut&&(!1===l.hidden&&i.requestAnimationFrame?i.requestAnimationFrame(ft):i.setTimeout(ft,S.fx.interval),S.fx.tick())}function pt(){return i.setTimeout((function(){st=void 0})),st=Date.now()}function ht(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=ae[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function mt(e,t,n){for(var r,i=(vt.tweeners[t]||[]).concat(vt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function vt(e,t,n){var r,i,o=0,a=vt.prefilters.length,l=S.Deferred().always((function(){delete s.elem})),s=function(){if(i)return!1;for(var t=st||pt(),n=Math.max(0,u.startTime+u.duration-t),r=1-(n/u.duration||0),o=0,a=u.tweens.length;o<a;o++)u.tweens[o].run(r);return l.notifyWith(e,[u,r,n]),r<1&&a?n:(a||l.notifyWith(e,[u,1,0]),l.resolveWith(e,[u]),!1)},u=l.promise({elem:e,props:S.extend({},t),opts:S.extend(!0,{specialEasing:{},easing:S.easing._default},n),originalProperties:t,originalOptions:n,startTime:st||pt(),duration:n.duration,tweens:[],createTween:function(t,n){var r=S.Tween(e,u.opts,t,n,u.opts.specialEasing[t]||u.opts.easing);return u.tweens.push(r),r},stop:function(t){var n=0,r=t?u.tweens.length:0;if(i)return this;for(i=!0;n<r;n++)u.tweens[n].run(1);return t?(l.notifyWith(e,[u,1,0]),l.resolveWith(e,[u,t])):l.rejectWith(e,[u,t]),this}}),c=u.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=Y(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=S.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,u.opts.specialEasing);o<a;o++)if(r=vt.prefilters[o].call(u,e,c,u.opts))return b(r.stop)&&(S._queueHooks(u.elem,u.opts.queue).stop=r.stop.bind(r)),r;return S.map(c,mt,u),b(u.opts.start)&&u.opts.start.call(e,u),u.progress(u.opts.progress).done(u.opts.done,u.opts.complete).fail(u.opts.fail).always(u.opts.always),S.fx.timer(S.extend(s,{elem:e,anim:u,queue:u.opts.queue})),u}S.Animation=S.extend(vt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return fe(n.elem,e,oe.exec(t),n),n}]},tweener:function(e,t){b(e)?(t=e,e=["*"]):e=e.match(H);for(var n,r=0,i=e.length;r<i;r++)n=e[r],vt.tweeners[n]=vt.tweeners[n]||[],vt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,l,s,u,c,d="width"in t||"height"in t,f=this,p={},h=e.style,m=e.nodeType&&ce(e),v=Z.get(e,"fxshow");for(r in n.queue||(null==(a=S._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,l=a.empty.fire,a.empty.fire=function(){a.unqueued||l()}),a.unqueued++,f.always((function(){f.always((function(){a.unqueued--,S.queue(e,"fx").length||a.empty.fire()}))}))),t)if(i=t[r],ct.test(i)){if(delete t[r],o=o||"toggle"===i,i===(m?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;m=!0}p[r]=v&&v[r]||S.style(e,r)}if((s=!S.isEmptyObject(t))||!S.isEmptyObject(p))for(r in d&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(u=v&&v.display)&&(u=Z.get(e,"display")),"none"===(c=S.css(e,"display"))&&(u?c=u:(me([e],!0),u=e.style.display||u,c=S.css(e,"display"),me([e]))),("inline"===c||"inline-block"===c&&null!=u)&&"none"===S.css(e,"float")&&(s||(f.done((function(){h.display=u})),null==u&&(c=h.display,u="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",f.always((function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]}))),s=!1,p)s||(v?"hidden"in v&&(m=v.hidden):v=Z.access(e,"fxshow",{display:u}),o&&(v.hidden=!m),m&&me([e],!0),f.done((function(){for(r in m||me([e]),Z.remove(e,"fxshow"),p)S.style(e,r,p[r])}))),s=mt(m?v[r]:0,r,f),r in v||(v[r]=s.start,m&&(s.end=s.start,s.start=0))}],prefilter:function(e,t){t?vt.prefilters.unshift(e):vt.prefilters.push(e)}}),S.speed=function(e,t,n){var i=e&&"object"===r(e)?S.extend({},e):{complete:n||!n&&t||b(e)&&e,duration:e,easing:n&&t||t&&!b(t)&&t};return S.fx.off?i.duration=0:"number"!=typeof i.duration&&(i.duration in S.fx.speeds?i.duration=S.fx.speeds[i.duration]:i.duration=S.fx.speeds._default),null!=i.queue&&!0!==i.queue||(i.queue="fx"),i.old=i.complete,i.complete=function(){b(i.old)&&i.old.call(this),i.queue&&S.dequeue(this,i.queue)},i},S.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ce).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=S.isEmptyObject(e),o=S.speed(t,n,r),a=function(){var t=vt(this,S.extend({},e),o);(i||Z.get(this,"finish"))&&t.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&!1!==e&&this.queue(e||"fx",[]),this.each((function(){var t=!0,i=null!=e&&e+"queueHooks",o=S.timers,a=Z.get(this);if(i)a[i]&&a[i].stop&&r(a[i]);else for(i in a)a[i]&&a[i].stop&&dt.test(i)&&r(a[i]);for(i=o.length;i--;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));!t&&n||S.dequeue(this,e)}))},finish:function(e){return!1!==e&&(e=e||"fx"),this.each((function(){var t,n=Z.get(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=S.timers,a=r?r.length:0;for(n.finish=!0,S.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;t<a;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish}))}}),S.each(["toggle","show","hide"],(function(e,t){var n=S.fn[t];S.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ht(t,!0),e,r,i)}})),S.each({slideDown:ht("show"),slideUp:ht("hide"),slideToggle:ht("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},(function(e,t){S.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}})),S.timers=[],S.fx.tick=function(){var e,t=0,n=S.timers;for(st=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||S.fx.stop(),st=void 0},S.fx.timer=function(e){S.timers.push(e),S.fx.start()},S.fx.interval=13,S.fx.start=function(){ut||(ut=!0,ft())},S.fx.stop=function(){ut=null},S.fx.speeds={slow:600,fast:200,_default:400},S.fn.delay=function(e,t){return e=S.fx&&S.fx.speeds[e]||e,t=t||"fx",this.queue(t,(function(t,n){var r=i.setTimeout(t,e);n.stop=function(){i.clearTimeout(r)}}))},function(){var e=l.createElement("input"),t=l.createElement("select").appendChild(l.createElement("option"));e.type="checkbox",g.checkOn=""!==e.value,g.optSelected=t.selected,(e=l.createElement("input")).value="t",e.type="radio",g.radioValue="t"===e.value}();var yt,gt=S.expr.attrHandle;S.fn.extend({attr:function(e,t){return V(this,S.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each((function(){S.removeAttr(this,e)}))}}),S.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?S.prop(e,t,n):(1===o&&S.isXMLDoc(e)||(i=S.attrHooks[t.toLowerCase()]||(S.expr.match.bool.test(t)?yt:void 0)),void 0!==n?null===n?void S.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=S.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!g.radioValue&&"radio"===t&&O(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(H);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),yt={set:function(e,t,n){return!1===t?S.removeAttr(e,n):e.setAttribute(n,n),n}},S.each(S.expr.match.bool.source.match(/\w+/g),(function(e,t){var n=gt[t]||S.find.attr;gt[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=gt[a],gt[a]=i,i=null!=n(e,t,r)?a:null,gt[a]=o),i}}));var bt=/^(?:input|select|textarea|button)$/i,wt=/^(?:a|area)$/i;function kt(e){return(e.match(H)||[]).join(" ")}function xt(e){return e.getAttribute&&e.getAttribute("class")||""}function Tt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(H)||[]}S.fn.extend({prop:function(e,t){return V(this,S.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[S.propFix[e]||e]}))}}),S.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&S.isXMLDoc(e)||(t=S.propFix[t]||t,i=S.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=S.find.attr(e,"tabindex");return t?parseInt(t,10):bt.test(e.nodeName)||wt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),g.optSelected||(S.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),S.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){S.propFix[this.toLowerCase()]=this})),S.fn.extend({addClass:function(e){var t,n,r,i,o,a,l,s=0;if(b(e))return this.each((function(t){S(this).addClass(e.call(this,t,xt(this)))}));if((t=Tt(e)).length)for(;n=this[s++];)if(i=xt(n),r=1===n.nodeType&&" "+kt(i)+" "){for(a=0;o=t[a++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(l=kt(r))&&n.setAttribute("class",l)}return this},removeClass:function(e){var t,n,r,i,o,a,l,s=0;if(b(e))return this.each((function(t){S(this).removeClass(e.call(this,t,xt(this)))}));if(!arguments.length)return this.attr("class","");if((t=Tt(e)).length)for(;n=this[s++];)if(i=xt(n),r=1===n.nodeType&&" "+kt(i)+" "){for(a=0;o=t[a++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(l=kt(r))&&n.setAttribute("class",l)}return this},toggleClass:function(e,t){var n=r(e),i="string"===n||Array.isArray(e);return"boolean"==typeof t&&i?t?this.addClass(e):this.removeClass(e):b(e)?this.each((function(n){S(this).toggleClass(e.call(this,n,xt(this),t),t)})):this.each((function(){var t,r,o,a;if(i)for(r=0,o=S(this),a=Tt(e);t=a[r++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&"boolean"!==n||((t=xt(this))&&Z.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":Z.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+kt(xt(n))+" ").indexOf(t)>-1)return!0;return!1}});var St=/\r/g;S.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=b(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,S(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=S.map(i,(function(e){return null==e?"":e+""}))),(t=S.valHooks[this.type]||S.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))}))):i?(t=S.valHooks[i.type]||S.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(St,""):null==n?"":n:void 0}}),S.extend({valHooks:{option:{get:function(e){var t=S.find.attr(e,"value");return null!=t?t:kt(S.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,l=a?null:[],s=a?o+1:i.length;for(r=o<0?s:a?o:0;r<s;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!O(n.parentNode,"optgroup"))){if(t=S(n).val(),a)return t;l.push(t)}return l},set:function(e,t){for(var n,r,i=e.options,o=S.makeArray(t),a=i.length;a--;)((r=i[a]).selected=S.inArray(S.valHooks.option.get(r),o)>-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),S.each(["radio","checkbox"],(function(){S.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=S.inArray(S(e).val(),t)>-1}},g.checkOn||(S.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})})),g.focusin="onfocusin"in i;var Ct=/^(?:focusinfocus|focusoutblur)$/,Et=function(e){e.stopPropagation()};S.extend(S.event,{trigger:function(e,t,n,o){var a,s,u,c,d,f,p,h,v=[n||l],y=m.call(e,"type")?e.type:e,g=m.call(e,"namespace")?e.namespace.split("."):[];if(s=h=u=n=n||l,3!==n.nodeType&&8!==n.nodeType&&!Ct.test(y+S.event.triggered)&&(y.indexOf(".")>-1&&(g=y.split("."),y=g.shift(),g.sort()),d=y.indexOf(":")<0&&"on"+y,(e=e[S.expando]?e:new S.Event(y,"object"===r(e)&&e)).isTrigger=o?2:3,e.namespace=g.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+g.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:S.makeArray(t,[e]),p=S.event.special[y]||{},o||!p.trigger||!1!==p.trigger.apply(n,t))){if(!o&&!p.noBubble&&!w(n)){for(c=p.delegateType||y,Ct.test(c+y)||(s=s.parentNode);s;s=s.parentNode)v.push(s),u=s;u===(n.ownerDocument||l)&&v.push(u.defaultView||u.parentWindow||i)}for(a=0;(s=v[a++])&&!e.isPropagationStopped();)h=s,e.type=a>1?c:p.bindType||y,(f=(Z.get(s,"events")||{})[e.type]&&Z.get(s,"handle"))&&f.apply(s,t),(f=d&&s[d])&&f.apply&&G(s)&&(e.result=f.apply(s,t),!1===e.result&&e.preventDefault());return e.type=y,o||e.isDefaultPrevented()||p._default&&!1!==p._default.apply(v.pop(),t)||!G(n)||d&&b(n[y])&&!w(n)&&((u=n[d])&&(n[d]=null),S.event.triggered=y,e.isPropagationStopped()&&h.addEventListener(y,Et),n[y](),e.isPropagationStopped()&&h.removeEventListener(y,Et),S.event.triggered=void 0,u&&(n[d]=u)),e.result}},simulate:function(e,t,n){var r=S.extend(new S.Event,n,{type:e,isSimulated:!0});S.event.trigger(r,null,t)}}),S.fn.extend({trigger:function(e,t){return this.each((function(){S.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return S.event.trigger(e,t,n,!0)}}),g.focusin||S.each({focus:"focusin",blur:"focusout"},(function(e,t){var n=function(e){S.event.simulate(t,e.target,S.event.fix(e))};S.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=Z.access(r,t);i||r.addEventListener(e,n,!0),Z.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=Z.access(r,t)-1;i?Z.access(r,t,i):(r.removeEventListener(e,n,!0),Z.remove(r,t))}}}));var Pt=i.location,Nt=Date.now(),At=/\?/;S.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new i.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||S.error("Invalid XML: "+e),t};var $t=/\[\]$/,Ot=/\r?\n/g,_t=/^(?:submit|button|image|reset|file)$/i,Lt=/^(?:input|select|textarea|keygen)/i;function Dt(e,t,n,i){var o;if(Array.isArray(t))S.each(t,(function(t,o){n||$t.test(e)?i(e,o):Dt(e+"["+("object"===r(o)&&null!=o?t:"")+"]",o,n,i)}));else if(n||"object"!==T(t))i(e,t);else for(o in t)Dt(e+"["+o+"]",t[o],n,i)}S.param=function(e,t){var n,r=[],i=function(e,t){var n=b(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!S.isPlainObject(e))S.each(e,(function(){i(this.name,this.value)}));else for(n in e)Dt(n,e[n],t,i);return r.join("&")},S.fn.extend({serialize:function(){return S.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=S.prop(this,"elements");return e?S.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!S(this).is(":disabled")&&Lt.test(this.nodeName)&&!_t.test(e)&&(this.checked||!ve.test(e))})).map((function(e,t){var n=S(this).val();return null==n?null:Array.isArray(n)?S.map(n,(function(e){return{name:t.name,value:e.replace(Ot,"\r\n")}})):{name:t.name,value:n.replace(Ot,"\r\n")}})).get()}});var Mt=/%20/g,It=/#.*$/,jt=/([?&])_=[^&]*/,zt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ht=/^(?:GET|HEAD)$/,Rt=/^\/\//,Ft={},Ut={},qt="*/".concat("*"),Wt=l.createElement("a");function Bt(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(H)||[];if(b(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function Vt(e,t,n,r){var i={},o=e===Ut;function a(l){var s;return i[l]=!0,S.each(e[l]||[],(function(e,l){var u=l(t,n,r);return"string"!=typeof u||o||i[u]?o?!(s=u):void 0:(t.dataTypes.unshift(u),a(u),!1)})),s}return a(t.dataTypes[0])||!i["*"]&&a("*")}function Xt(e,t){var n,r,i=S.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&S.extend(!0,e,r),e}Wt.href=Pt.href,S.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Pt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Pt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":qt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":S.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Xt(Xt(e,S.ajaxSettings),t):Xt(S.ajaxSettings,e)},ajaxPrefilter:Bt(Ft),ajaxTransport:Bt(Ut),ajax:function(e,t){"object"===r(e)&&(t=e,e=void 0),t=t||{};var n,o,a,s,u,c,d,f,p,h,m=S.ajaxSetup({},t),v=m.context||m,y=m.context&&(v.nodeType||v.jquery)?S(v):S.event,g=S.Deferred(),b=S.Callbacks("once memory"),w=m.statusCode||{},k={},x={},T="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(d){if(!s)for(s={};t=zt.exec(a);)s[t[1].toLowerCase()+" "]=(s[t[1].toLowerCase()+" "]||[]).concat(t[2]);t=s[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return d?a:null},setRequestHeader:function(e,t){return null==d&&(e=x[e.toLowerCase()]=x[e.toLowerCase()]||e,k[e]=t),this},overrideMimeType:function(e){return null==d&&(m.mimeType=e),this},statusCode:function(e){var t;if(e)if(d)C.always(e[C.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||T;return n&&n.abort(t),E(0,t),this}};if(g.promise(C),m.url=((e||m.url||Pt.href)+"").replace(Rt,Pt.protocol+"//"),m.type=t.method||t.type||m.method||m.type,m.dataTypes=(m.dataType||"*").toLowerCase().match(H)||[""],null==m.crossDomain){c=l.createElement("a");try{c.href=m.url,c.href=c.href,m.crossDomain=Wt.protocol+"//"+Wt.host!=c.protocol+"//"+c.host}catch(e){m.crossDomain=!0}}if(m.data&&m.processData&&"string"!=typeof m.data&&(m.data=S.param(m.data,m.traditional)),Vt(Ft,m,t,C),d)return C;for(p in(f=S.event&&m.global)&&0==S.active++&&S.event.trigger("ajaxStart"),m.type=m.type.toUpperCase(),m.hasContent=!Ht.test(m.type),o=m.url.replace(It,""),m.hasContent?m.data&&m.processData&&0===(m.contentType||"").indexOf("application/x-www-form-urlencoded")&&(m.data=m.data.replace(Mt,"+")):(h=m.url.slice(o.length),m.data&&(m.processData||"string"==typeof m.data)&&(o+=(At.test(o)?"&":"?")+m.data,delete m.data),!1===m.cache&&(o=o.replace(jt,"$1"),h=(At.test(o)?"&":"?")+"_="+Nt+++h),m.url=o+h),m.ifModified&&(S.lastModified[o]&&C.setRequestHeader("If-Modified-Since",S.lastModified[o]),S.etag[o]&&C.setRequestHeader("If-None-Match",S.etag[o])),(m.data&&m.hasContent&&!1!==m.contentType||t.contentType)&&C.setRequestHeader("Content-Type",m.contentType),C.setRequestHeader("Accept",m.dataTypes[0]&&m.accepts[m.dataTypes[0]]?m.accepts[m.dataTypes[0]]+("*"!==m.dataTypes[0]?", "+qt+"; q=0.01":""):m.accepts["*"]),m.headers)C.setRequestHeader(p,m.headers[p]);if(m.beforeSend&&(!1===m.beforeSend.call(v,C,m)||d))return C.abort();if(T="abort",b.add(m.complete),C.done(m.success),C.fail(m.error),n=Vt(Ut,m,t,C)){if(C.readyState=1,f&&y.trigger("ajaxSend",[C,m]),d)return C;m.async&&m.timeout>0&&(u=i.setTimeout((function(){C.abort("timeout")}),m.timeout));try{d=!1,n.send(k,E)}catch(e){if(d)throw e;E(-1,e)}}else E(-1,"No Transport");function E(e,t,r,l){var s,c,p,h,k,x=t;d||(d=!0,u&&i.clearTimeout(u),n=void 0,a=l||"",C.readyState=e>0?4:0,s=e>=200&&e<300||304===e,r&&(h=function(e,t,n){for(var r,i,o,a,l=e.contents,s=e.dataTypes;"*"===s[0];)s.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in l)if(l[i]&&l[i].test(r)){s.unshift(i);break}if(s[0]in n)o=s[0];else{for(i in n){if(!s[0]||e.converters[i+" "+s[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==s[0]&&s.unshift(o),n[o]}(m,C,r)),h=function(e,t,n,r){var i,o,a,l,s,u={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)u[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!s&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),s=o,o=c.shift())if("*"===o)o=s;else if("*"!==s&&s!==o){if(!(a=u[s+" "+o]||u["* "+o]))for(i in u)if((l=i.split(" "))[1]===o&&(a=u[s+" "+l[0]]||u["* "+l[0]])){!0===a?a=u[i]:!0!==u[i]&&(o=l[0],c.unshift(l[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+s+" to "+o}}}return{state:"success",data:t}}(m,h,C,s),s?(m.ifModified&&((k=C.getResponseHeader("Last-Modified"))&&(S.lastModified[o]=k),(k=C.getResponseHeader("etag"))&&(S.etag[o]=k)),204===e||"HEAD"===m.type?x="nocontent":304===e?x="notmodified":(x=h.state,c=h.data,s=!(p=h.error))):(p=x,!e&&x||(x="error",e<0&&(e=0))),C.status=e,C.statusText=(t||x)+"",s?g.resolveWith(v,[c,x,C]):g.rejectWith(v,[C,x,p]),C.statusCode(w),w=void 0,f&&y.trigger(s?"ajaxSuccess":"ajaxError",[C,m,s?c:p]),b.fireWith(v,[C,x]),f&&(y.trigger("ajaxComplete",[C,m]),--S.active||S.event.trigger("ajaxStop")))}return C},getJSON:function(e,t,n){return S.get(e,t,n,"json")},getScript:function(e,t){return S.get(e,void 0,t,"script")}}),S.each(["get","post"],(function(e,t){S[t]=function(e,n,r,i){return b(n)&&(i=i||r,r=n,n=void 0),S.ajax(S.extend({url:e,type:t,dataType:i,data:n,success:r},S.isPlainObject(e)&&e))}})),S._evalUrl=function(e,t){return S.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){S.globalEval(e,t)}})},S.fn.extend({wrapAll:function(e){var t;return this[0]&&(b(e)&&(e=e.call(this[0])),t=S(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return b(e)?this.each((function(t){S(this).wrapInner(e.call(this,t))})):this.each((function(){var t=S(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=b(e);return this.each((function(n){S(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not("body").each((function(){S(this).replaceWith(this.childNodes)})),this}}),S.expr.pseudos.hidden=function(e){return!S.expr.pseudos.visible(e)},S.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},S.ajaxSettings.xhr=function(){try{return new i.XMLHttpRequest}catch(e){}};var Qt={0:200,1223:204},Kt=S.ajaxSettings.xhr();g.cors=!!Kt&&"withCredentials"in Kt,g.ajax=Kt=!!Kt,S.ajaxTransport((function(e){var t,n;if(g.cors||Kt&&!e.crossDomain)return{send:function(r,o){var a,l=e.xhr();if(l.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(a in e.xhrFields)l[a]=e.xhrFields[a];for(a in e.mimeType&&l.overrideMimeType&&l.overrideMimeType(e.mimeType),e.crossDomain||r["X-Requested-With"]||(r["X-Requested-With"]="XMLHttpRequest"),r)l.setRequestHeader(a,r[a]);t=function(e){return function(){t&&(t=n=l.onload=l.onerror=l.onabort=l.ontimeout=l.onreadystatechange=null,"abort"===e?l.abort():"error"===e?"number"!=typeof l.status?o(0,"error"):o(l.status,l.statusText):o(Qt[l.status]||l.status,l.statusText,"text"!==(l.responseType||"text")||"string"!=typeof l.responseText?{binary:l.response}:{text:l.responseText},l.getAllResponseHeaders()))}},l.onload=t(),n=l.onerror=l.ontimeout=t("error"),void 0!==l.onabort?l.onabort=n:l.onreadystatechange=function(){4===l.readyState&&i.setTimeout((function(){t&&n()}))},t=t("abort");try{l.send(e.hasContent&&e.data||null)}catch(e){if(t)throw e}},abort:function(){t&&t()}}})),S.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),S.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return S.globalEval(e),e}}}),S.ajaxPrefilter("script",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")})),S.ajaxTransport("script",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,i){t=S("<script>").attr(e.scriptAttrs||{}).prop({charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&i("error"===e.type?404:200,e.type)}),l.head.appendChild(t[0])},abort:function(){n&&n()}}}));var Yt,Gt=[],Jt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||S.expando+"_"+Nt++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",(function(e,t,n){var r,o,a,l=!1!==e.jsonp&&(Jt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Jt.test(e.data)&&"data");if(l||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=b(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,l?e[l]=e[l].replace(Jt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return a||S.error(r+" was not called"),a[0]},e.dataTypes[0]="json",o=i[r],i[r]=function(){a=arguments},n.always((function(){void 0===o?S(i).removeProp(r):i[r]=o,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),a&&b(o)&&o(a[0]),a=o=void 0})),"script"})),g.createHTMLDocument=((Yt=l.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===Yt.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(g.createHTMLDocument?((r=(t=l.implementation.createHTMLDocument("")).createElement("base")).href=l.location.href,t.head.appendChild(r)):t=l),o=!n&&[],(i=_.exec(e))?[t.createElement(i[1])]:(i=Ce([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var i,o,a,l=this,s=e.indexOf(" ");return s>-1&&(i=kt(e.slice(s)),e=e.slice(0,s)),b(t)?(n=t,t=void 0):t&&"object"===r(t)&&(o="POST"),l.length>0&&S.ajax({url:e,type:o||"GET",dataType:"html",data:t}).done((function(e){a=arguments,l.html(i?S("<div>").append(S.parseHTML(e)).find(i):e)})).always(n&&function(e,t){l.each((function(){n.apply(this,a||[e.responseText,t,e])}))}),this},S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],(function(e,t){S.fn[t]=function(e){return this.on(t,e)}})),S.expr.pseudos.animated=function(e){return S.grep(S.timers,(function(t){return e===t.elem})).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,l,s,u=S.css(e,"position"),c=S(e),d={};"static"===u&&(e.style.position="relative"),l=c.offset(),o=S.css(e,"top"),s=S.css(e,"left"),("absolute"===u||"fixed"===u)&&(o+s).indexOf("auto")>-1?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(s)||0),b(t)&&(t=t.call(e,n,S.extend({},l))),null!=t.top&&(d.top=t.top-l.top+a),null!=t.left&&(d.left=t.left-l.left+i),"using"in t?t.using.call(e,d):c.css(d)}},S.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each((function(t){S.offset.setOffset(this,e,t)}));var t,n,r=this[0];return r?r.getClientRects().length?(t=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:t.top+n.pageYOffset,left:t.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{for(t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position");)e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map((function(){for(var e=this.offsetParent;e&&"static"===S.css(e,"position");)e=e.offsetParent;return e||le}))}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},(function(e,t){var n="pageYOffset"===t;S.fn[e]=function(r){return V(this,(function(e,r,i){var o;if(w(e)?o=e:9===e.nodeType&&(o=e.defaultView),void 0===i)return o?o[t]:e[r];o?o.scrollTo(n?o.pageXOffset:i,n?i:o.pageYOffset):e[r]=i}),e,r,arguments.length)}})),S.each(["top","left"],(function(e,t){S.cssHooks[t]=Ke(g.pixelPosition,(function(e,n){if(n)return n=Qe(e,t),Be.test(n)?S(e).position()[t]+"px":n}))})),S.each({Height:"height",Width:"width"},(function(e,t){S.each({padding:"inner"+e,content:t,"":"outer"+e},(function(n,r){S.fn[r]=function(i,o){var a=arguments.length&&(n||"boolean"!=typeof i),l=n||(!0===i||!0===o?"margin":"border");return V(this,(function(t,n,i){var o;return w(t)?0===r.indexOf("outer")?t["inner"+e]:t.document.documentElement["client"+e]:9===t.nodeType?(o=t.documentElement,Math.max(t.body["scroll"+e],o["scroll"+e],t.body["offset"+e],o["offset"+e],o["client"+e])):void 0===i?S.css(t,n,l):S.style(t,n,i,l)}),t,a?i:void 0,a)}}))})),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),(function(e,t){S.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}})),S.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),S.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),b(e))return r=u.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(u.call(arguments)))}).guid=e.guid=e.guid||S.guid++,i},S.holdReady=function(e){e?S.readyWait++:S.ready(!0)},S.isArray=Array.isArray,S.parseJSON=JSON.parse,S.nodeName=O,S.isFunction=b,S.isWindow=w,S.camelCase=Y,S.type=T,S.now=Date.now,S.isNumeric=function(e){var t=S.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},void 0===(n=function(){return S}.apply(t,[]))||(e.exports=n);var Zt=i.jQuery,en=i.$;return S.noConflict=function(e){return i.$===S&&(i.$=en),e&&i.jQuery===S&&(i.jQuery=Zt),S},o||(i.jQuery=i.$=S),S}))}).call(this,n(4)(e))},function(e,t,n){"use strict";e.exports=n(7)},function(e,t,n){"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE){0;try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}}(),e.exports=n(6)},function(e,t,n){"use strict";
26
+ /*
27
+ object-assign
28
+ (c) Sindre Sorhus
29
+ @license MIT
30
+ */var r=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,l,s=a(e),u=1;u<arguments.length;u++){for(var c in n=Object(arguments[u]))i.call(n,c)&&(s[c]=n[c]);if(r){l=r(n);for(var d=0;d<l.length;d++)o.call(n,l[d])&&(s[l[d]]=n[l[d]])}}return s}},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t,n){var r,i,o;function a(e){return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}!function(l){"use strict";i=[n(0)],void 0===(o="function"==typeof(r=function(e){var t=window.Slick||{};(n=0,t=function(t,r){var i,o=this;o.defaults={accessibility:!0,adaptiveHeight:!1,appendArrows:e(t),appendDots:e(t),arrows:!0,asNavFor:null,prevArrow:'<button class="slick-prev" aria-label="Previous" type="button">Previous</button>',nextArrow:'<button class="slick-next" aria-label="Next" type="button">Next</button>',autoplay:!1,autoplaySpeed:3e3,centerMode:!1,centerPadding:"50px",cssEase:"ease",customPaging:function(t,n){return e('<button type="button" />').text(n+1)},dots:!1,dotsClass:"slick-dots",draggable:!0,easing:"linear",edgeFriction:.35,fade:!1,focusOnSelect:!1,focusOnChange:!1,infinite:!0,initialSlide:0,lazyLoad:"ondemand",mobileFirst:!1,pauseOnHover:!0,pauseOnFocus:!0,pauseOnDotsHover:!1,respondTo:"window",responsive:null,rows:1,rtl:!1,slide:"",slidesPerRow:1,slidesToShow:1,slidesToScroll:1,speed:500,swipe:!0,swipeToSlide:!1,touchMove:!0,touchThreshold:5,useCSS:!0,useTransform:!0,variableWidth:!1,vertical:!1,verticalSwiping:!1,waitForAnimate:!0,zIndex:1e3},o.initials={animating:!1,dragging:!1,autoPlayTimer:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,$dots:null,listWidth:null,listHeight:null,loadIndex:0,$nextArrow:null,$prevArrow:null,scrolling:!1,slideCount:null,slideWidth:null,$slideTrack:null,$slides:null,sliding:!1,slideOffset:0,swipeLeft:null,swiping:!1,$list:null,touchObject:{},transformsEnabled:!1,unslicked:!1},e.extend(o,o.initials),o.activeBreakpoint=null,o.animType=null,o.animProp=null,o.breakpoints=[],o.breakpointSettings=[],o.cssTransitions=!1,o.focussed=!1,o.interrupted=!1,o.hidden="hidden",o.paused=!0,o.positionProp=null,o.respondTo=null,o.rowCount=1,o.shouldClick=!0,o.$slider=e(t),o.$slidesCache=null,o.transformType=null,o.transitionType=null,o.visibilityChange="visibilitychange",o.windowWidth=0,o.windowTimer=null,i=e(t).data("slick")||{},o.options=e.extend({},o.defaults,r,i),o.currentSlide=o.options.initialSlide,o.originalSettings=o.options,void 0!==document.mozHidden?(o.hidden="mozHidden",o.visibilityChange="mozvisibilitychange"):void 0!==document.webkitHidden&&(o.hidden="webkitHidden",o.visibilityChange="webkitvisibilitychange"),o.autoPlay=e.proxy(o.autoPlay,o),o.autoPlayClear=e.proxy(o.autoPlayClear,o),o.autoPlayIterator=e.proxy(o.autoPlayIterator,o),o.changeSlide=e.proxy(o.changeSlide,o),o.clickHandler=e.proxy(o.clickHandler,o),o.selectHandler=e.proxy(o.selectHandler,o),o.setPosition=e.proxy(o.setPosition,o),o.swipeHandler=e.proxy(o.swipeHandler,o),o.dragHandler=e.proxy(o.dragHandler,o),o.keyHandler=e.proxy(o.keyHandler,o),o.instanceUid=n++,o.htmlExpr=/^(?:\s*(<[\w\W]+>)[^>]*)$/,o.registerBreakpoints(),o.init(!0)}).prototype.activateADA=function(){this.$slideTrack.find(".slick-active").attr({"aria-hidden":"false"}).find("a, input, button, select").attr({tabindex:"0"})},t.prototype.addSlide=t.prototype.slickAdd=function(t,n,r){var i=this;if("boolean"==typeof n)r=n,n=null;else if(n<0||n>=i.slideCount)return!1;i.unload(),"number"==typeof n?0===n&&0===i.$slides.length?e(t).appendTo(i.$slideTrack):r?e(t).insertBefore(i.$slides.eq(n)):e(t).insertAfter(i.$slides.eq(n)):!0===r?e(t).prependTo(i.$slideTrack):e(t).appendTo(i.$slideTrack),i.$slides=i.$slideTrack.children(this.options.slide),i.$slideTrack.children(this.options.slide).detach(),i.$slideTrack.append(i.$slides),i.$slides.each((function(t,n){e(n).attr("data-slick-index",t)})),i.$slidesCache=i.$slides,i.reinit()},t.prototype.animateHeight=function(){var e=this;if(1===e.options.slidesToShow&&!0===e.options.adaptiveHeight&&!1===e.options.vertical){var t=e.$slides.eq(e.currentSlide).outerHeight(!0);e.$list.animate({height:t},e.options.speed)}},t.prototype.animateSlide=function(t,n){var r={},i=this;i.animateHeight(),!0===i.options.rtl&&!1===i.options.vertical&&(t=-t),!1===i.transformsEnabled?!1===i.options.vertical?i.$slideTrack.animate({left:t},i.options.speed,i.options.easing,n):i.$slideTrack.animate({top:t},i.options.speed,i.options.easing,n):!1===i.cssTransitions?(!0===i.options.rtl&&(i.currentLeft=-i.currentLeft),e({animStart:i.currentLeft}).animate({animStart:t},{duration:i.options.speed,easing:i.options.easing,step:function(e){e=Math.ceil(e),!1===i.options.vertical?(r[i.animType]="translate("+e+"px, 0px)",i.$slideTrack.css(r)):(r[i.animType]="translate(0px,"+e+"px)",i.$slideTrack.css(r))},complete:function(){n&&n.call()}})):(i.applyTransition(),t=Math.ceil(t),!1===i.options.vertical?r[i.animType]="translate3d("+t+"px, 0px, 0px)":r[i.animType]="translate3d(0px,"+t+"px, 0px)",i.$slideTrack.css(r),n&&setTimeout((function(){i.disableTransition(),n.call()}),i.options.speed))},t.prototype.getNavTarget=function(){var t=this.options.asNavFor;return t&&null!==t&&(t=e(t).not(this.$slider)),t},t.prototype.asNavFor=function(t){var n=this.getNavTarget();null!==n&&"object"===a(n)&&n.each((function(){var n=e(this).slick("getSlick");n.unslicked||n.slideHandler(t,!0)}))},t.prototype.applyTransition=function(e){var t=this,n={};!1===t.options.fade?n[t.transitionType]=t.transformType+" "+t.options.speed+"ms "+t.options.cssEase:n[t.transitionType]="opacity "+t.options.speed+"ms "+t.options.cssEase,!1===t.options.fade?t.$slideTrack.css(n):t.$slides.eq(e).css(n)},t.prototype.autoPlay=function(){var e=this;e.autoPlayClear(),e.slideCount>e.options.slidesToShow&&(e.autoPlayTimer=setInterval(e.autoPlayIterator,e.options.autoplaySpeed))},t.prototype.autoPlayClear=function(){this.autoPlayTimer&&clearInterval(this.autoPlayTimer)},t.prototype.autoPlayIterator=function(){var e=this,t=e.currentSlide+e.options.slidesToScroll;e.paused||e.interrupted||e.focussed||(!1===e.options.infinite&&(1===e.direction&&e.currentSlide+1===e.slideCount-1?e.direction=0:0===e.direction&&(t=e.currentSlide-e.options.slidesToScroll,e.currentSlide-1==0&&(e.direction=1))),e.slideHandler(t))},t.prototype.buildArrows=function(){var t=this;!0===t.options.arrows&&(t.$prevArrow=e(t.options.prevArrow).addClass("slick-arrow"),t.$nextArrow=e(t.options.nextArrow).addClass("slick-arrow"),t.slideCount>t.options.slidesToShow?(t.$prevArrow.removeClass("slick-hidden").removeAttr("aria-hidden tabindex"),t.$nextArrow.removeClass("slick-hidden").removeAttr("aria-hidden tabindex"),t.htmlExpr.test(t.options.prevArrow)&&t.$prevArrow.prependTo(t.options.appendArrows),t.htmlExpr.test(t.options.nextArrow)&&t.$nextArrow.appendTo(t.options.appendArrows),!0!==t.options.infinite&&t.$prevArrow.addClass("slick-disabled").attr("aria-disabled","true")):t.$prevArrow.add(t.$nextArrow).addClass("slick-hidden").attr({"aria-disabled":"true",tabindex:"-1"}))},t.prototype.buildDots=function(){var t,n,r=this;if(!0===r.options.dots&&r.slideCount>r.options.slidesToShow){for(r.$slider.addClass("slick-dotted"),n=e("<ul />").addClass(r.options.dotsClass),t=0;t<=r.getDotCount();t+=1)n.append(e("<li />").append(r.options.customPaging.call(this,r,t)));r.$dots=n.appendTo(r.options.appendDots),r.$dots.find("li").first().addClass("slick-active")}},t.prototype.buildOut=function(){var t=this;t.$slides=t.$slider.children(t.options.slide+":not(.slick-cloned)").addClass("slick-slide"),t.slideCount=t.$slides.length,t.$slides.each((function(t,n){e(n).attr("data-slick-index",t).data("originalStyling",e(n).attr("style")||"")})),t.$slider.addClass("slick-slider"),t.$slideTrack=0===t.slideCount?e('<div class="slick-track"/>').appendTo(t.$slider):t.$slides.wrapAll('<div class="slick-track"/>').parent(),t.$list=t.$slideTrack.wrap('<div class="slick-list"/>').parent(),t.$slideTrack.css("opacity",0),!0!==t.options.centerMode&&!0!==t.options.swipeToSlide||(t.options.slidesToScroll=1),e("img[data-lazy]",t.$slider).not("[src]").addClass("slick-loading"),t.setupInfinite(),t.buildArrows(),t.buildDots(),t.updateDots(),t.setSlideClasses("number"==typeof t.currentSlide?t.currentSlide:0),!0===t.options.draggable&&t.$list.addClass("draggable")},t.prototype.buildRows=function(){var e,t,n,r,i,o,a,l=this;if(r=document.createDocumentFragment(),o=l.$slider.children(),l.options.rows>0){for(a=l.options.slidesPerRow*l.options.rows,i=Math.ceil(o.length/a),e=0;e<i;e++){var s=document.createElement("div");for(t=0;t<l.options.rows;t++){var u=document.createElement("div");for(n=0;n<l.options.slidesPerRow;n++){var c=e*a+(t*l.options.slidesPerRow+n);o.get(c)&&u.appendChild(o.get(c))}s.appendChild(u)}r.appendChild(s)}l.$slider.empty().append(r),l.$slider.children().children().children().css({width:100/l.options.slidesPerRow+"%",display:"inline-block"})}},t.prototype.checkResponsive=function(t,n){var r,i,o,a=this,l=!1,s=a.$slider.width(),u=window.innerWidth||e(window).width();if("window"===a.respondTo?o=u:"slider"===a.respondTo?o=s:"min"===a.respondTo&&(o=Math.min(u,s)),a.options.responsive&&a.options.responsive.length&&null!==a.options.responsive){for(r in i=null,a.breakpoints)a.breakpoints.hasOwnProperty(r)&&(!1===a.originalSettings.mobileFirst?o<a.breakpoints[r]&&(i=a.breakpoints[r]):o>a.breakpoints[r]&&(i=a.breakpoints[r]));null!==i?null!==a.activeBreakpoint?(i!==a.activeBreakpoint||n)&&(a.activeBreakpoint=i,"unslick"===a.breakpointSettings[i]?a.unslick(i):(a.options=e.extend({},a.originalSettings,a.breakpointSettings[i]),!0===t&&(a.currentSlide=a.options.initialSlide),a.refresh(t)),l=i):(a.activeBreakpoint=i,"unslick"===a.breakpointSettings[i]?a.unslick(i):(a.options=e.extend({},a.originalSettings,a.breakpointSettings[i]),!0===t&&(a.currentSlide=a.options.initialSlide),a.refresh(t)),l=i):null!==a.activeBreakpoint&&(a.activeBreakpoint=null,a.options=a.originalSettings,!0===t&&(a.currentSlide=a.options.initialSlide),a.refresh(t),l=i),t||!1===l||a.$slider.trigger("breakpoint",[a,l])}},t.prototype.changeSlide=function(t,n){var r,i,o=this,a=e(t.currentTarget);switch(a.is("a")&&t.preventDefault(),a.is("li")||(a=a.closest("li")),r=o.slideCount%o.options.slidesToScroll!=0?0:(o.slideCount-o.currentSlide)%o.options.slidesToScroll,t.data.message){case"previous":i=0===r?o.options.slidesToScroll:o.options.slidesToShow-r,o.slideCount>o.options.slidesToShow&&o.slideHandler(o.currentSlide-i,!1,n);break;case"next":i=0===r?o.options.slidesToScroll:r,o.slideCount>o.options.slidesToShow&&o.slideHandler(o.currentSlide+i,!1,n);break;case"index":var l=0===t.data.index?0:t.data.index||a.index()*o.options.slidesToScroll;o.slideHandler(o.checkNavigable(l),!1,n),a.children().trigger("focus");break;default:return}},t.prototype.checkNavigable=function(e){var t,n;if(n=0,e>(t=this.getNavigableIndexes())[t.length-1])e=t[t.length-1];else for(var r in t){if(e<t[r]){e=n;break}n=t[r]}return e},t.prototype.cleanUpEvents=function(){var t=this;t.options.dots&&null!==t.$dots&&(e("li",t.$dots).off("click.slick",t.changeSlide).off("mouseenter.slick",e.proxy(t.interrupt,t,!0)).off("mouseleave.slick",e.proxy(t.interrupt,t,!1)),!0===t.options.accessibility&&t.$dots.off("keydown.slick",t.keyHandler)),t.$slider.off("focus.slick blur.slick"),!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow&&t.$prevArrow.off("click.slick",t.changeSlide),t.$nextArrow&&t.$nextArrow.off("click.slick",t.changeSlide),!0===t.options.accessibility&&(t.$prevArrow&&t.$prevArrow.off("keydown.slick",t.keyHandler),t.$nextArrow&&t.$nextArrow.off("keydown.slick",t.keyHandler))),t.$list.off("touchstart.slick mousedown.slick",t.swipeHandler),t.$list.off("touchmove.slick mousemove.slick",t.swipeHandler),t.$list.off("touchend.slick mouseup.slick",t.swipeHandler),t.$list.off("touchcancel.slick mouseleave.slick",t.swipeHandler),t.$list.off("click.slick",t.clickHandler),e(document).off(t.visibilityChange,t.visibility),t.cleanUpSlideEvents(),!0===t.options.accessibility&&t.$list.off("keydown.slick",t.keyHandler),!0===t.options.focusOnSelect&&e(t.$slideTrack).children().off("click.slick",t.selectHandler),e(window).off("orientationchange.slick.slick-"+t.instanceUid,t.orientationChange),e(window).off("resize.slick.slick-"+t.instanceUid,t.resize),e("[draggable!=true]",t.$slideTrack).off("dragstart",t.preventDefault),e(window).off("load.slick.slick-"+t.instanceUid,t.setPosition)},t.prototype.cleanUpSlideEvents=function(){var t=this;t.$list.off("mouseenter.slick",e.proxy(t.interrupt,t,!0)),t.$list.off("mouseleave.slick",e.proxy(t.interrupt,t,!1))},t.prototype.cleanUpRows=function(){var e,t=this;t.options.rows>0&&((e=t.$slides.children().children()).removeAttr("style"),t.$slider.empty().append(e))},t.prototype.clickHandler=function(e){!1===this.shouldClick&&(e.stopImmediatePropagation(),e.stopPropagation(),e.preventDefault())},t.prototype.destroy=function(t){var n=this;n.autoPlayClear(),n.touchObject={},n.cleanUpEvents(),e(".slick-cloned",n.$slider).detach(),n.$dots&&n.$dots.remove(),n.$prevArrow&&n.$prevArrow.length&&(n.$prevArrow.removeClass("slick-disabled slick-arrow slick-hidden").removeAttr("aria-hidden aria-disabled tabindex").css("display",""),n.htmlExpr.test(n.options.prevArrow)&&n.$prevArrow.remove()),n.$nextArrow&&n.$nextArrow.length&&(n.$nextArrow.removeClass("slick-disabled slick-arrow slick-hidden").removeAttr("aria-hidden aria-disabled tabindex").css("display",""),n.htmlExpr.test(n.options.nextArrow)&&n.$nextArrow.remove()),n.$slides&&(n.$slides.removeClass("slick-slide slick-active slick-center slick-visible slick-current").removeAttr("aria-hidden").removeAttr("data-slick-index").each((function(){e(this).attr("style",e(this).data("originalStyling"))})),n.$slideTrack.children(this.options.slide).detach(),n.$slideTrack.detach(),n.$list.detach(),n.$slider.append(n.$slides)),n.cleanUpRows(),n.$slider.removeClass("slick-slider"),n.$slider.removeClass("slick-initialized"),n.$slider.removeClass("slick-dotted"),n.unslicked=!0,t||n.$slider.trigger("destroy",[n])},t.prototype.disableTransition=function(e){var t=this,n={};n[t.transitionType]="",!1===t.options.fade?t.$slideTrack.css(n):t.$slides.eq(e).css(n)},t.prototype.fadeSlide=function(e,t){var n=this;!1===n.cssTransitions?(n.$slides.eq(e).css({zIndex:n.options.zIndex}),n.$slides.eq(e).animate({opacity:1},n.options.speed,n.options.easing,t)):(n.applyTransition(e),n.$slides.eq(e).css({opacity:1,zIndex:n.options.zIndex}),t&&setTimeout((function(){n.disableTransition(e),t.call()}),n.options.speed))},t.prototype.fadeSlideOut=function(e){var t=this;!1===t.cssTransitions?t.$slides.eq(e).animate({opacity:0,zIndex:t.options.zIndex-2},t.options.speed,t.options.easing):(t.applyTransition(e),t.$slides.eq(e).css({opacity:0,zIndex:t.options.zIndex-2}))},t.prototype.filterSlides=t.prototype.slickFilter=function(e){var t=this;null!==e&&(t.$slidesCache=t.$slides,t.unload(),t.$slideTrack.children(this.options.slide).detach(),t.$slidesCache.filter(e).appendTo(t.$slideTrack),t.reinit())},t.prototype.focusHandler=function(){var t=this;t.$slider.off("focus.slick blur.slick").on("focus.slick blur.slick","*",(function(n){n.stopImmediatePropagation();var r=e(this);setTimeout((function(){t.options.pauseOnFocus&&(t.focussed=r.is(":focus"),t.autoPlay())}),0)}))},t.prototype.getCurrent=t.prototype.slickCurrentSlide=function(){return this.currentSlide},t.prototype.getDotCount=function(){var e=this,t=0,n=0,r=0;if(!0===e.options.infinite)if(e.slideCount<=e.options.slidesToShow)++r;else for(;t<e.slideCount;)++r,t=n+e.options.slidesToScroll,n+=e.options.slidesToScroll<=e.options.slidesToShow?e.options.slidesToScroll:e.options.slidesToShow;else if(!0===e.options.centerMode)r=e.slideCount;else if(e.options.asNavFor)for(;t<e.slideCount;)++r,t=n+e.options.slidesToScroll,n+=e.options.slidesToScroll<=e.options.slidesToShow?e.options.slidesToScroll:e.options.slidesToShow;else r=1+Math.ceil((e.slideCount-e.options.slidesToShow)/e.options.slidesToScroll);return r-1},t.prototype.getLeft=function(e){var t,n,r,i,o=this,a=0;return o.slideOffset=0,n=o.$slides.first().outerHeight(!0),!0===o.options.infinite?(o.slideCount>o.options.slidesToShow&&(o.slideOffset=o.slideWidth*o.options.slidesToShow*-1,i=-1,!0===o.options.vertical&&!0===o.options.centerMode&&(2===o.options.slidesToShow?i=-1.5:1===o.options.slidesToShow&&(i=-2)),a=n*o.options.slidesToShow*i),o.slideCount%o.options.slidesToScroll!=0&&e+o.options.slidesToScroll>o.slideCount&&o.slideCount>o.options.slidesToShow&&(e>o.slideCount?(o.slideOffset=(o.options.slidesToShow-(e-o.slideCount))*o.slideWidth*-1,a=(o.options.slidesToShow-(e-o.slideCount))*n*-1):(o.slideOffset=o.slideCount%o.options.slidesToScroll*o.slideWidth*-1,a=o.slideCount%o.options.slidesToScroll*n*-1))):e+o.options.slidesToShow>o.slideCount&&(o.slideOffset=(e+o.options.slidesToShow-o.slideCount)*o.slideWidth,a=(e+o.options.slidesToShow-o.slideCount)*n),o.slideCount<=o.options.slidesToShow&&(o.slideOffset=0,a=0),!0===o.options.centerMode&&o.slideCount<=o.options.slidesToShow?o.slideOffset=o.slideWidth*Math.floor(o.options.slidesToShow)/2-o.slideWidth*o.slideCount/2:!0===o.options.centerMode&&!0===o.options.infinite?o.slideOffset+=o.slideWidth*Math.floor(o.options.slidesToShow/2)-o.slideWidth:!0===o.options.centerMode&&(o.slideOffset=0,o.slideOffset+=o.slideWidth*Math.floor(o.options.slidesToShow/2)),t=!1===o.options.vertical?e*o.slideWidth*-1+o.slideOffset:e*n*-1+a,!0===o.options.variableWidth&&(r=o.slideCount<=o.options.slidesToShow||!1===o.options.infinite?o.$slideTrack.children(".slick-slide").eq(e):o.$slideTrack.children(".slick-slide").eq(e+o.options.slidesToShow),t=!0===o.options.rtl?r[0]?-1*(o.$slideTrack.width()-r[0].offsetLeft-r.width()):0:r[0]?-1*r[0].offsetLeft:0,!0===o.options.centerMode&&(r=o.slideCount<=o.options.slidesToShow||!1===o.options.infinite?o.$slideTrack.children(".slick-slide").eq(e):o.$slideTrack.children(".slick-slide").eq(e+o.options.slidesToShow+1),t=!0===o.options.rtl?r[0]?-1*(o.$slideTrack.width()-r[0].offsetLeft-r.width()):0:r[0]?-1*r[0].offsetLeft:0,t+=(o.$list.width()-r.outerWidth())/2)),t},t.prototype.getOption=t.prototype.slickGetOption=function(e){return this.options[e]},t.prototype.getNavigableIndexes=function(){var e,t=this,n=0,r=0,i=[];for(!1===t.options.infinite?e=t.slideCount:(n=-1*t.options.slidesToScroll,r=-1*t.options.slidesToScroll,e=2*t.slideCount);n<e;)i.push(n),n=r+t.options.slidesToScroll,r+=t.options.slidesToScroll<=t.options.slidesToShow?t.options.slidesToScroll:t.options.slidesToShow;return i},t.prototype.getSlick=function(){return this},t.prototype.getSlideCount=function(){var t,n,r=this;return n=!0===r.options.centerMode?r.slideWidth*Math.floor(r.options.slidesToShow/2):0,!0===r.options.swipeToSlide?(r.$slideTrack.find(".slick-slide").each((function(i,o){if(o.offsetLeft-n+e(o).outerWidth()/2>-1*r.swipeLeft)return t=o,!1})),Math.abs(e(t).attr("data-slick-index")-r.currentSlide)||1):r.options.slidesToScroll},t.prototype.goTo=t.prototype.slickGoTo=function(e,t){this.changeSlide({data:{message:"index",index:parseInt(e)}},t)},t.prototype.init=function(t){var n=this;e(n.$slider).hasClass("slick-initialized")||(e(n.$slider).addClass("slick-initialized"),n.buildRows(),n.buildOut(),n.setProps(),n.startLoad(),n.loadSlider(),n.initializeEvents(),n.updateArrows(),n.updateDots(),n.checkResponsive(!0),n.focusHandler()),t&&n.$slider.trigger("init",[n]),!0===n.options.accessibility&&n.initADA(),n.options.autoplay&&(n.paused=!1,n.autoPlay())},t.prototype.initADA=function(){var t=this,n=Math.ceil(t.slideCount/t.options.slidesToShow),r=t.getNavigableIndexes().filter((function(e){return e>=0&&e<t.slideCount}));t.$slides.add(t.$slideTrack.find(".slick-cloned")).attr({"aria-hidden":"true",tabindex:"-1"}).find("a, input, button, select").attr({tabindex:"-1"}),null!==t.$dots&&(t.$slides.not(t.$slideTrack.find(".slick-cloned")).each((function(n){var i=r.indexOf(n);if(e(this).attr({role:"tabpanel",id:"slick-slide"+t.instanceUid+n,tabindex:-1}),-1!==i){var o="slick-slide-control"+t.instanceUid+i;e("#"+o).length&&e(this).attr({"aria-describedby":o})}})),t.$dots.attr("role","tablist").find("li").each((function(i){var o=r[i];e(this).attr({role:"presentation"}),e(this).find("button").first().attr({role:"tab",id:"slick-slide-control"+t.instanceUid+i,"aria-controls":"slick-slide"+t.instanceUid+o,"aria-label":i+1+" of "+n,"aria-selected":null,tabindex:"-1"})})).eq(t.currentSlide).find("button").attr({"aria-selected":"true",tabindex:"0"}).end());for(var i=t.currentSlide,o=i+t.options.slidesToShow;i<o;i++)t.options.focusOnChange?t.$slides.eq(i).attr({tabindex:"0"}):t.$slides.eq(i).removeAttr("tabindex");t.activateADA()},t.prototype.initArrowEvents=function(){var e=this;!0===e.options.arrows&&e.slideCount>e.options.slidesToShow&&(e.$prevArrow.off("click.slick").on("click.slick",{message:"previous"},e.changeSlide),e.$nextArrow.off("click.slick").on("click.slick",{message:"next"},e.changeSlide),!0===e.options.accessibility&&(e.$prevArrow.on("keydown.slick",e.keyHandler),e.$nextArrow.on("keydown.slick",e.keyHandler)))},t.prototype.initDotEvents=function(){var t=this;!0===t.options.dots&&t.slideCount>t.options.slidesToShow&&(e("li",t.$dots).on("click.slick",{message:"index"},t.changeSlide),!0===t.options.accessibility&&t.$dots.on("keydown.slick",t.keyHandler)),!0===t.options.dots&&!0===t.options.pauseOnDotsHover&&t.slideCount>t.options.slidesToShow&&e("li",t.$dots).on("mouseenter.slick",e.proxy(t.interrupt,t,!0)).on("mouseleave.slick",e.proxy(t.interrupt,t,!1))},t.prototype.initSlideEvents=function(){var t=this;t.options.pauseOnHover&&(t.$list.on("mouseenter.slick",e.proxy(t.interrupt,t,!0)),t.$list.on("mouseleave.slick",e.proxy(t.interrupt,t,!1)))},t.prototype.initializeEvents=function(){var t=this;t.initArrowEvents(),t.initDotEvents(),t.initSlideEvents(),t.$list.on("touchstart.slick mousedown.slick",{action:"start"},t.swipeHandler),t.$list.on("touchmove.slick mousemove.slick",{action:"move"},t.swipeHandler),t.$list.on("touchend.slick mouseup.slick",{action:"end"},t.swipeHandler),t.$list.on("touchcancel.slick mouseleave.slick",{action:"end"},t.swipeHandler),t.$list.on("click.slick",t.clickHandler),e(document).on(t.visibilityChange,e.proxy(t.visibility,t)),!0===t.options.accessibility&&t.$list.on("keydown.slick",t.keyHandler),!0===t.options.focusOnSelect&&e(t.$slideTrack).children().on("click.slick",t.selectHandler),e(window).on("orientationchange.slick.slick-"+t.instanceUid,e.proxy(t.orientationChange,t)),e(window).on("resize.slick.slick-"+t.instanceUid,e.proxy(t.resize,t)),e("[draggable!=true]",t.$slideTrack).on("dragstart",t.preventDefault),e(window).on("load.slick.slick-"+t.instanceUid,t.setPosition),e(t.setPosition)},t.prototype.initUI=function(){var e=this;!0===e.options.arrows&&e.slideCount>e.options.slidesToShow&&(e.$prevArrow.show(),e.$nextArrow.show()),!0===e.options.dots&&e.slideCount>e.options.slidesToShow&&e.$dots.show()},t.prototype.keyHandler=function(e){var t=this;e.target.tagName.match("TEXTAREA|INPUT|SELECT")||(37===e.keyCode&&!0===t.options.accessibility?t.changeSlide({data:{message:!0===t.options.rtl?"next":"previous"}}):39===e.keyCode&&!0===t.options.accessibility&&t.changeSlide({data:{message:!0===t.options.rtl?"previous":"next"}}))},t.prototype.lazyLoad=function(){var t,n,r,i=this;function o(t){e("img[data-lazy]",t).each((function(){var t=e(this),n=e(this).attr("data-lazy"),r=e(this).attr("data-srcset"),o=e(this).attr("data-sizes")||i.$slider.attr("data-sizes"),a=document.createElement("img");a.onload=function(){t.animate({opacity:0},100,(function(){r&&(t.attr("srcset",r),o&&t.attr("sizes",o)),t.attr("src",n).animate({opacity:1},200,(function(){t.removeAttr("data-lazy data-srcset data-sizes").removeClass("slick-loading")})),i.$slider.trigger("lazyLoaded",[i,t,n])}))},a.onerror=function(){t.removeAttr("data-lazy").removeClass("slick-loading").addClass("slick-lazyload-error"),i.$slider.trigger("lazyLoadError",[i,t,n])},a.src=n}))}if(!0===i.options.centerMode?!0===i.options.infinite?r=(n=i.currentSlide+(i.options.slidesToShow/2+1))+i.options.slidesToShow+2:(n=Math.max(0,i.currentSlide-(i.options.slidesToShow/2+1)),r=i.options.slidesToShow/2+1+2+i.currentSlide):(n=i.options.infinite?i.options.slidesToShow+i.currentSlide:i.currentSlide,r=Math.ceil(n+i.options.slidesToShow),!0===i.options.fade&&(n>0&&n--,r<=i.slideCount&&r++)),t=i.$slider.find(".slick-slide").slice(n,r),"anticipated"===i.options.lazyLoad)for(var a=n-1,l=r,s=i.$slider.find(".slick-slide"),u=0;u<i.options.slidesToScroll;u++)a<0&&(a=i.slideCount-1),t=(t=t.add(s.eq(a))).add(s.eq(l)),a--,l++;o(t),i.slideCount<=i.options.slidesToShow?o(i.$slider.find(".slick-slide")):i.currentSlide>=i.slideCount-i.options.slidesToShow?o(i.$slider.find(".slick-cloned").slice(0,i.options.slidesToShow)):0===i.currentSlide&&o(i.$slider.find(".slick-cloned").slice(-1*i.options.slidesToShow))},t.prototype.loadSlider=function(){var e=this;e.setPosition(),e.$slideTrack.css({opacity:1}),e.$slider.removeClass("slick-loading"),e.initUI(),"progressive"===e.options.lazyLoad&&e.progressiveLazyLoad()},t.prototype.next=t.prototype.slickNext=function(){this.changeSlide({data:{message:"next"}})},t.prototype.orientationChange=function(){this.checkResponsive(),this.setPosition()},t.prototype.pause=t.prototype.slickPause=function(){this.autoPlayClear(),this.paused=!0},t.prototype.play=t.prototype.slickPlay=function(){var e=this;e.autoPlay(),e.options.autoplay=!0,e.paused=!1,e.focussed=!1,e.interrupted=!1},t.prototype.postSlide=function(t){var n=this;n.unslicked||(n.$slider.trigger("afterChange",[n,t]),n.animating=!1,n.slideCount>n.options.slidesToShow&&n.setPosition(),n.swipeLeft=null,n.options.autoplay&&n.autoPlay(),!0===n.options.accessibility&&(n.initADA(),n.options.focusOnChange&&e(n.$slides.get(n.currentSlide)).attr("tabindex",0).focus()))},t.prototype.prev=t.prototype.slickPrev=function(){this.changeSlide({data:{message:"previous"}})},t.prototype.preventDefault=function(e){e.preventDefault()},t.prototype.progressiveLazyLoad=function(t){t=t||1;var n,r,i,o,a,l=this,s=e("img[data-lazy]",l.$slider);s.length?(n=s.first(),r=n.attr("data-lazy"),i=n.attr("data-srcset"),o=n.attr("data-sizes")||l.$slider.attr("data-sizes"),(a=document.createElement("img")).onload=function(){i&&(n.attr("srcset",i),o&&n.attr("sizes",o)),n.attr("src",r).removeAttr("data-lazy data-srcset data-sizes").removeClass("slick-loading"),!0===l.options.adaptiveHeight&&l.setPosition(),l.$slider.trigger("lazyLoaded",[l,n,r]),l.progressiveLazyLoad()},a.onerror=function(){t<3?setTimeout((function(){l.progressiveLazyLoad(t+1)}),500):(n.removeAttr("data-lazy").removeClass("slick-loading").addClass("slick-lazyload-error"),l.$slider.trigger("lazyLoadError",[l,n,r]),l.progressiveLazyLoad())},a.src=r):l.$slider.trigger("allImagesLoaded",[l])},t.prototype.refresh=function(t){var n,r,i=this;r=i.slideCount-i.options.slidesToShow,!i.options.infinite&&i.currentSlide>r&&(i.currentSlide=r),i.slideCount<=i.options.slidesToShow&&(i.currentSlide=0),n=i.currentSlide,i.destroy(!0),e.extend(i,i.initials,{currentSlide:n}),i.init(),t||i.changeSlide({data:{message:"index",index:n}},!1)},t.prototype.registerBreakpoints=function(){var t,n,r,i=this,o=i.options.responsive||null;if("array"===e.type(o)&&o.length){for(t in i.respondTo=i.options.respondTo||"window",o)if(r=i.breakpoints.length-1,o.hasOwnProperty(t)){for(n=o[t].breakpoint;r>=0;)i.breakpoints[r]&&i.breakpoints[r]===n&&i.breakpoints.splice(r,1),r--;i.breakpoints.push(n),i.breakpointSettings[n]=o[t].settings}i.breakpoints.sort((function(e,t){return i.options.mobileFirst?e-t:t-e}))}},t.prototype.reinit=function(){var t=this;t.$slides=t.$slideTrack.children(t.options.slide).addClass("slick-slide"),t.slideCount=t.$slides.length,t.currentSlide>=t.slideCount&&0!==t.currentSlide&&(t.currentSlide=t.currentSlide-t.options.slidesToScroll),t.slideCount<=t.options.slidesToShow&&(t.currentSlide=0),t.registerBreakpoints(),t.setProps(),t.setupInfinite(),t.buildArrows(),t.updateArrows(),t.initArrowEvents(),t.buildDots(),t.updateDots(),t.initDotEvents(),t.cleanUpSlideEvents(),t.initSlideEvents(),t.checkResponsive(!1,!0),!0===t.options.focusOnSelect&&e(t.$slideTrack).children().on("click.slick",t.selectHandler),t.setSlideClasses("number"==typeof t.currentSlide?t.currentSlide:0),t.setPosition(),t.focusHandler(),t.paused=!t.options.autoplay,t.autoPlay(),t.$slider.trigger("reInit",[t])},t.prototype.resize=function(){var t=this;e(window).width()!==t.windowWidth&&(clearTimeout(t.windowDelay),t.windowDelay=window.setTimeout((function(){t.windowWidth=e(window).width(),t.checkResponsive(),t.unslicked||t.setPosition()}),50))},t.prototype.removeSlide=t.prototype.slickRemove=function(e,t,n){var r=this;if(e="boolean"==typeof e?!0===(t=e)?0:r.slideCount-1:!0===t?--e:e,r.slideCount<1||e<0||e>r.slideCount-1)return!1;r.unload(),!0===n?r.$slideTrack.children().remove():r.$slideTrack.children(this.options.slide).eq(e).remove(),r.$slides=r.$slideTrack.children(this.options.slide),r.$slideTrack.children(this.options.slide).detach(),r.$slideTrack.append(r.$slides),r.$slidesCache=r.$slides,r.reinit()},t.prototype.setCSS=function(e){var t,n,r=this,i={};!0===r.options.rtl&&(e=-e),t="left"==r.positionProp?Math.ceil(e)+"px":"0px",n="top"==r.positionProp?Math.ceil(e)+"px":"0px",i[r.positionProp]=e,!1===r.transformsEnabled?r.$slideTrack.css(i):(i={},!1===r.cssTransitions?(i[r.animType]="translate("+t+", "+n+")",r.$slideTrack.css(i)):(i[r.animType]="translate3d("+t+", "+n+", 0px)",r.$slideTrack.css(i)))},t.prototype.setDimensions=function(){var e=this;!1===e.options.vertical?!0===e.options.centerMode&&e.$list.css({padding:"0px "+e.options.centerPadding}):(e.$list.height(e.$slides.first().outerHeight(!0)*e.options.slidesToShow),!0===e.options.centerMode&&e.$list.css({padding:e.options.centerPadding+" 0px"})),e.listWidth=e.$list.width(),e.listHeight=e.$list.height(),!1===e.options.vertical&&!1===e.options.variableWidth?(e.slideWidth=Math.ceil(e.listWidth/e.options.slidesToShow),e.$slideTrack.width(Math.ceil(e.slideWidth*e.$slideTrack.children(".slick-slide").length))):!0===e.options.variableWidth?e.$slideTrack.width(5e3*e.slideCount):(e.slideWidth=Math.ceil(e.listWidth),e.$slideTrack.height(Math.ceil(e.$slides.first().outerHeight(!0)*e.$slideTrack.children(".slick-slide").length)));var t=e.$slides.first().outerWidth(!0)-e.$slides.first().width();!1===e.options.variableWidth&&e.$slideTrack.children(".slick-slide").width(e.slideWidth-t)},t.prototype.setFade=function(){var t,n=this;n.$slides.each((function(r,i){t=n.slideWidth*r*-1,!0===n.options.rtl?e(i).css({position:"relative",right:t,top:0,zIndex:n.options.zIndex-2,opacity:0}):e(i).css({position:"relative",left:t,top:0,zIndex:n.options.zIndex-2,opacity:0})})),n.$slides.eq(n.currentSlide).css({zIndex:n.options.zIndex-1,opacity:1})},t.prototype.setHeight=function(){var e=this;if(1===e.options.slidesToShow&&!0===e.options.adaptiveHeight&&!1===e.options.vertical){var t=e.$slides.eq(e.currentSlide).outerHeight(!0);e.$list.css("height",t)}},t.prototype.setOption=t.prototype.slickSetOption=function(){var t,n,r,i,o,a=this,l=!1;if("object"===e.type(arguments[0])?(r=arguments[0],l=arguments[1],o="multiple"):"string"===e.type(arguments[0])&&(r=arguments[0],i=arguments[1],l=arguments[2],"responsive"===arguments[0]&&"array"===e.type(arguments[1])?o="responsive":void 0!==arguments[1]&&(o="single")),"single"===o)a.options[r]=i;else if("multiple"===o)e.each(r,(function(e,t){a.options[e]=t}));else if("responsive"===o)for(n in i)if("array"!==e.type(a.options.responsive))a.options.responsive=[i[n]];else{for(t=a.options.responsive.length-1;t>=0;)a.options.responsive[t].breakpoint===i[n].breakpoint&&a.options.responsive.splice(t,1),t--;a.options.responsive.push(i[n])}l&&(a.unload(),a.reinit())},t.prototype.setPosition=function(){var e=this;e.setDimensions(),e.setHeight(),!1===e.options.fade?e.setCSS(e.getLeft(e.currentSlide)):e.setFade(),e.$slider.trigger("setPosition",[e])},t.prototype.setProps=function(){var e=this,t=document.body.style;e.positionProp=!0===e.options.vertical?"top":"left","top"===e.positionProp?e.$slider.addClass("slick-vertical"):e.$slider.removeClass("slick-vertical"),void 0===t.WebkitTransition&&void 0===t.MozTransition&&void 0===t.msTransition||!0===e.options.useCSS&&(e.cssTransitions=!0),e.options.fade&&("number"==typeof e.options.zIndex?e.options.zIndex<3&&(e.options.zIndex=3):e.options.zIndex=e.defaults.zIndex),void 0!==t.OTransform&&(e.animType="OTransform",e.transformType="-o-transform",e.transitionType="OTransition",void 0===t.perspectiveProperty&&void 0===t.webkitPerspective&&(e.animType=!1)),void 0!==t.MozTransform&&(e.animType="MozTransform",e.transformType="-moz-transform",e.transitionType="MozTransition",void 0===t.perspectiveProperty&&void 0===t.MozPerspective&&(e.animType=!1)),void 0!==t.webkitTransform&&(e.animType="webkitTransform",e.transformType="-webkit-transform",e.transitionType="webkitTransition",void 0===t.perspectiveProperty&&void 0===t.webkitPerspective&&(e.animType=!1)),void 0!==t.msTransform&&(e.animType="msTransform",e.transformType="-ms-transform",e.transitionType="msTransition",void 0===t.msTransform&&(e.animType=!1)),void 0!==t.transform&&!1!==e.animType&&(e.animType="transform",e.transformType="transform",e.transitionType="transition"),e.transformsEnabled=e.options.useTransform&&null!==e.animType&&!1!==e.animType},t.prototype.setSlideClasses=function(e){var t,n,r,i,o=this;if(n=o.$slider.find(".slick-slide").removeClass("slick-active slick-center slick-current").attr("aria-hidden","true"),o.$slides.eq(e).addClass("slick-current"),!0===o.options.centerMode){var a=o.options.slidesToShow%2==0?1:0;t=Math.floor(o.options.slidesToShow/2),!0===o.options.infinite&&(e>=t&&e<=o.slideCount-1-t?o.$slides.slice(e-t+a,e+t+1).addClass("slick-active").attr("aria-hidden","false"):(r=o.options.slidesToShow+e,n.slice(r-t+1+a,r+t+2).addClass("slick-active").attr("aria-hidden","false")),0===e?n.eq(n.length-1-o.options.slidesToShow).addClass("slick-center"):e===o.slideCount-1&&n.eq(o.options.slidesToShow).addClass("slick-center")),o.$slides.eq(e).addClass("slick-center")}else e>=0&&e<=o.slideCount-o.options.slidesToShow?o.$slides.slice(e,e+o.options.slidesToShow).addClass("slick-active").attr("aria-hidden","false"):n.length<=o.options.slidesToShow?n.addClass("slick-active").attr("aria-hidden","false"):(i=o.slideCount%o.options.slidesToShow,r=!0===o.options.infinite?o.options.slidesToShow+e:e,o.options.slidesToShow==o.options.slidesToScroll&&o.slideCount-e<o.options.slidesToShow?n.slice(r-(o.options.slidesToShow-i),r+i).addClass("slick-active").attr("aria-hidden","false"):n.slice(r,r+o.options.slidesToShow).addClass("slick-active").attr("aria-hidden","false"));"ondemand"!==o.options.lazyLoad&&"anticipated"!==o.options.lazyLoad||o.lazyLoad()},t.prototype.setupInfinite=function(){var t,n,r,i=this;if(!0===i.options.fade&&(i.options.centerMode=!1),!0===i.options.infinite&&!1===i.options.fade&&(n=null,i.slideCount>i.options.slidesToShow)){for(r=!0===i.options.centerMode?i.options.slidesToShow+1:i.options.slidesToShow,t=i.slideCount;t>i.slideCount-r;t-=1)n=t-1,e(i.$slides[n]).clone(!0).attr("id","").attr("data-slick-index",n-i.slideCount).prependTo(i.$slideTrack).addClass("slick-cloned");for(t=0;t<r+i.slideCount;t+=1)n=t,e(i.$slides[n]).clone(!0).attr("id","").attr("data-slick-index",n+i.slideCount).appendTo(i.$slideTrack).addClass("slick-cloned");i.$slideTrack.find(".slick-cloned").find("[id]").each((function(){e(this).attr("id","")}))}},t.prototype.interrupt=function(e){e||this.autoPlay(),this.interrupted=e},t.prototype.selectHandler=function(t){var n=this,r=e(t.target).is(".slick-slide")?e(t.target):e(t.target).parents(".slick-slide"),i=parseInt(r.attr("data-slick-index"));i||(i=0),n.slideCount<=n.options.slidesToShow?n.slideHandler(i,!1,!0):n.slideHandler(i)},t.prototype.slideHandler=function(e,t,n){var r,i,o,a,l,s,u=this;if(t=t||!1,!(!0===u.animating&&!0===u.options.waitForAnimate||!0===u.options.fade&&u.currentSlide===e))if(!1===t&&u.asNavFor(e),r=e,l=u.getLeft(r),a=u.getLeft(u.currentSlide),u.currentLeft=null===u.swipeLeft?a:u.swipeLeft,!1===u.options.infinite&&!1===u.options.centerMode&&(e<0||e>u.getDotCount()*u.options.slidesToScroll))!1===u.options.fade&&(r=u.currentSlide,!0!==n&&u.slideCount>u.options.slidesToShow?u.animateSlide(a,(function(){u.postSlide(r)})):u.postSlide(r));else if(!1===u.options.infinite&&!0===u.options.centerMode&&(e<0||e>u.slideCount-u.options.slidesToScroll))!1===u.options.fade&&(r=u.currentSlide,!0!==n&&u.slideCount>u.options.slidesToShow?u.animateSlide(a,(function(){u.postSlide(r)})):u.postSlide(r));else{if(u.options.autoplay&&clearInterval(u.autoPlayTimer),i=r<0?u.slideCount%u.options.slidesToScroll!=0?u.slideCount-u.slideCount%u.options.slidesToScroll:u.slideCount+r:r>=u.slideCount?u.slideCount%u.options.slidesToScroll!=0?0:r-u.slideCount:r,u.animating=!0,u.$slider.trigger("beforeChange",[u,u.currentSlide,i]),o=u.currentSlide,u.currentSlide=i,u.setSlideClasses(u.currentSlide),u.options.asNavFor&&(s=(s=u.getNavTarget()).slick("getSlick")).slideCount<=s.options.slidesToShow&&s.setSlideClasses(u.currentSlide),u.updateDots(),u.updateArrows(),!0===u.options.fade)return!0!==n?(u.fadeSlideOut(o),u.fadeSlide(i,(function(){u.postSlide(i)}))):u.postSlide(i),void u.animateHeight();!0!==n&&u.slideCount>u.options.slidesToShow?u.animateSlide(l,(function(){u.postSlide(i)})):u.postSlide(i)}},t.prototype.startLoad=function(){var e=this;!0===e.options.arrows&&e.slideCount>e.options.slidesToShow&&(e.$prevArrow.hide(),e.$nextArrow.hide()),!0===e.options.dots&&e.slideCount>e.options.slidesToShow&&e.$dots.hide(),e.$slider.addClass("slick-loading")},t.prototype.swipeDirection=function(){var e,t,n,r,i=this;return e=i.touchObject.startX-i.touchObject.curX,t=i.touchObject.startY-i.touchObject.curY,n=Math.atan2(t,e),(r=Math.round(180*n/Math.PI))<0&&(r=360-Math.abs(r)),r<=45&&r>=0?!1===i.options.rtl?"left":"right":r<=360&&r>=315?!1===i.options.rtl?"left":"right":r>=135&&r<=225?!1===i.options.rtl?"right":"left":!0===i.options.verticalSwiping?r>=35&&r<=135?"down":"up":"vertical"},t.prototype.swipeEnd=function(e){var t,n,r=this;if(r.dragging=!1,r.swiping=!1,r.scrolling)return r.scrolling=!1,!1;if(r.interrupted=!1,r.shouldClick=!(r.touchObject.swipeLength>10),void 0===r.touchObject.curX)return!1;if(!0===r.touchObject.edgeHit&&r.$slider.trigger("edge",[r,r.swipeDirection()]),r.touchObject.swipeLength>=r.touchObject.minSwipe){switch(n=r.swipeDirection()){case"left":case"down":t=r.options.swipeToSlide?r.checkNavigable(r.currentSlide+r.getSlideCount()):r.currentSlide+r.getSlideCount(),r.currentDirection=0;break;case"right":case"up":t=r.options.swipeToSlide?r.checkNavigable(r.currentSlide-r.getSlideCount()):r.currentSlide-r.getSlideCount(),r.currentDirection=1}"vertical"!=n&&(r.slideHandler(t),r.touchObject={},r.$slider.trigger("swipe",[r,n]))}else r.touchObject.startX!==r.touchObject.curX&&(r.slideHandler(r.currentSlide),r.touchObject={})},t.prototype.swipeHandler=function(e){var t=this;if(!(!1===t.options.swipe||"ontouchend"in document&&!1===t.options.swipe||!1===t.options.draggable&&-1!==e.type.indexOf("mouse")))switch(t.touchObject.fingerCount=e.originalEvent&&void 0!==e.originalEvent.touches?e.originalEvent.touches.length:1,t.touchObject.minSwipe=t.listWidth/t.options.touchThreshold,!0===t.options.verticalSwiping&&(t.touchObject.minSwipe=t.listHeight/t.options.touchThreshold),e.data.action){case"start":t.swipeStart(e);break;case"move":t.swipeMove(e);break;case"end":t.swipeEnd(e)}},t.prototype.swipeMove=function(e){var t,n,r,i,o,a,l=this;return o=void 0!==e.originalEvent?e.originalEvent.touches:null,!(!l.dragging||l.scrolling||o&&1!==o.length)&&(t=l.getLeft(l.currentSlide),l.touchObject.curX=void 0!==o?o[0].pageX:e.clientX,l.touchObject.curY=void 0!==o?o[0].pageY:e.clientY,l.touchObject.swipeLength=Math.round(Math.sqrt(Math.pow(l.touchObject.curX-l.touchObject.startX,2))),a=Math.round(Math.sqrt(Math.pow(l.touchObject.curY-l.touchObject.startY,2))),!l.options.verticalSwiping&&!l.swiping&&a>4?(l.scrolling=!0,!1):(!0===l.options.verticalSwiping&&(l.touchObject.swipeLength=a),n=l.swipeDirection(),void 0!==e.originalEvent&&l.touchObject.swipeLength>4&&(l.swiping=!0,e.preventDefault()),i=(!1===l.options.rtl?1:-1)*(l.touchObject.curX>l.touchObject.startX?1:-1),!0===l.options.verticalSwiping&&(i=l.touchObject.curY>l.touchObject.startY?1:-1),r=l.touchObject.swipeLength,l.touchObject.edgeHit=!1,!1===l.options.infinite&&(0===l.currentSlide&&"right"===n||l.currentSlide>=l.getDotCount()&&"left"===n)&&(r=l.touchObject.swipeLength*l.options.edgeFriction,l.touchObject.edgeHit=!0),!1===l.options.vertical?l.swipeLeft=t+r*i:l.swipeLeft=t+r*(l.$list.height()/l.listWidth)*i,!0===l.options.verticalSwiping&&(l.swipeLeft=t+r*i),!0!==l.options.fade&&!1!==l.options.touchMove&&(!0===l.animating?(l.swipeLeft=null,!1):void l.setCSS(l.swipeLeft))))},t.prototype.swipeStart=function(e){var t,n=this;if(n.interrupted=!0,1!==n.touchObject.fingerCount||n.slideCount<=n.options.slidesToShow)return n.touchObject={},!1;void 0!==e.originalEvent&&void 0!==e.originalEvent.touches&&(t=e.originalEvent.touches[0]),n.touchObject.startX=n.touchObject.curX=void 0!==t?t.pageX:e.clientX,n.touchObject.startY=n.touchObject.curY=void 0!==t?t.pageY:e.clientY,n.dragging=!0},t.prototype.unfilterSlides=t.prototype.slickUnfilter=function(){var e=this;null!==e.$slidesCache&&(e.unload(),e.$slideTrack.children(this.options.slide).detach(),e.$slidesCache.appendTo(e.$slideTrack),e.reinit())},t.prototype.unload=function(){var t=this;e(".slick-cloned",t.$slider).remove(),t.$dots&&t.$dots.remove(),t.$prevArrow&&t.htmlExpr.test(t.options.prevArrow)&&t.$prevArrow.remove(),t.$nextArrow&&t.htmlExpr.test(t.options.nextArrow)&&t.$nextArrow.remove(),t.$slides.removeClass("slick-slide slick-active slick-visible slick-current").attr("aria-hidden","true").css("width","")},t.prototype.unslick=function(e){var t=this;t.$slider.trigger("unslick",[t,e]),t.destroy()},t.prototype.updateArrows=function(){var e=this;Math.floor(e.options.slidesToShow/2),!0===e.options.arrows&&e.slideCount>e.options.slidesToShow&&!e.options.infinite&&(e.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false"),e.$nextArrow.removeClass("slick-disabled").attr("aria-disabled","false"),0===e.currentSlide?(e.$prevArrow.addClass("slick-disabled").attr("aria-disabled","true"),e.$nextArrow.removeClass("slick-disabled").attr("aria-disabled","false")):e.currentSlide>=e.slideCount-e.options.slidesToShow&&!1===e.options.centerMode?(e.$nextArrow.addClass("slick-disabled").attr("aria-disabled","true"),e.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false")):e.currentSlide>=e.slideCount-1&&!0===e.options.centerMode&&(e.$nextArrow.addClass("slick-disabled").attr("aria-disabled","true"),e.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false")))},t.prototype.updateDots=function(){var e=this;null!==e.$dots&&(e.$dots.find("li").removeClass("slick-active").end(),e.$dots.find("li").eq(Math.floor(e.currentSlide/e.options.slidesToScroll)).addClass("slick-active"))},t.prototype.visibility=function(){var e=this;e.options.autoplay&&(document[e.hidden]?e.interrupted=!0:e.interrupted=!1)},e.fn.slick=function(){var e,n,r=this,i=arguments[0],o=Array.prototype.slice.call(arguments,1),l=r.length;for(e=0;e<l;e++)if("object"==a(i)||void 0===i?r[e].slick=new t(r[e],i):n=r[e].slick[i].apply(r[e].slick,o),void 0!==n)return n;return r};var n})?r.apply(t,i):r)||(e.exports=o)}()},function(e,t,n){"use strict";
31
+ /** @license React v16.12.0
32
+ * react-dom.production.min.js
33
+ *
34
+ * Copyright (c) Facebook, Inc. and its affiliates.
35
+ *
36
+ * This source code is licensed under the MIT license found in the
37
+ * LICENSE file in the root directory of this source tree.
38
+ */function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var i=n(1),o=n(3),a=n(8);function l(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}if(!i)throw Error(l(227));var s=null,u={};function c(){if(s)for(var e in u){var t=u[e],n=s.indexOf(e);if(!(-1<n))throw Error(l(96,e));if(!f[n]){if(!t.extractEvents)throw Error(l(97,e));for(var r in f[n]=t,n=t.eventTypes){var i=void 0,o=n[r],a=t,c=r;if(p.hasOwnProperty(c))throw Error(l(99,c));p[c]=o;var h=o.phasedRegistrationNames;if(h){for(i in h)h.hasOwnProperty(i)&&d(h[i],a,c);i=!0}else o.registrationName?(d(o.registrationName,a,c),i=!0):i=!1;if(!i)throw Error(l(98,r,e))}}}}function d(e,t,n){if(h[e])throw Error(l(100,e));h[e]=t,m[e]=t.eventTypes[n].dependencies}var f=[],p={},h={},m={};function v(e,t,n,r,i,o,a,l,s){var u=Array.prototype.slice.call(arguments,3);try{t.apply(n,u)}catch(e){this.onError(e)}}var y=!1,g=null,b=!1,w=null,k={onError:function(e){y=!0,g=e}};function x(e,t,n,r,i,o,a,l,s){y=!1,g=null,v.apply(k,arguments)}var T=null,S=null,C=null;function E(e,t,n){var r=e.type||"unknown-event";e.currentTarget=C(n),function(e,t,n,r,i,o,a,s,u){if(x.apply(this,arguments),y){if(!y)throw Error(l(198));var c=g;y=!1,g=null,b||(b=!0,w=c)}}(r,t,void 0,e),e.currentTarget=null}function P(e,t){if(null==t)throw Error(l(30));return null==e?t:Array.isArray(e)?Array.isArray(t)?(e.push.apply(e,t),e):(e.push(t),e):Array.isArray(t)?[e].concat(t):[e,t]}function N(e,t,n){Array.isArray(e)?e.forEach(t,n):e&&t.call(n,e)}var A=null;function $(e){if(e){var t=e._dispatchListeners,n=e._dispatchInstances;if(Array.isArray(t))for(var r=0;r<t.length&&!e.isPropagationStopped();r++)E(e,t[r],n[r]);else t&&E(e,t,n);e._dispatchListeners=null,e._dispatchInstances=null,e.isPersistent()||e.constructor.release(e)}}function O(e){if(null!==e&&(A=P(A,e)),e=A,A=null,e){if(N(e,$),A)throw Error(l(95));if(b)throw e=w,b=!1,w=null,e}}var _={injectEventPluginOrder:function(e){if(s)throw Error(l(101));s=Array.prototype.slice.call(e),c()},injectEventPluginsByName:function(e){var t,n=!1;for(t in e)if(e.hasOwnProperty(t)){var r=e[t];if(!u.hasOwnProperty(t)||u[t]!==r){if(u[t])throw Error(l(102,t));u[t]=r,n=!0}}n&&c()}};function L(e,t){var n=e.stateNode;if(!n)return null;var i=T(n);if(!i)return null;n=i[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":(i=!i.disabled)||(i=!("button"===(e=e.type)||"input"===e||"select"===e||"textarea"===e)),e=!i;break e;default:e=!1}if(e)return null;if(n&&"function"!=typeof n)throw Error(l(231,t,r(n)));return n}var D=i.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;D.hasOwnProperty("ReactCurrentDispatcher")||(D.ReactCurrentDispatcher={current:null}),D.hasOwnProperty("ReactCurrentBatchConfig")||(D.ReactCurrentBatchConfig={suspense:null});var M=/^(.*)[\\\/]/,I="function"==typeof Symbol&&Symbol.for,j=I?Symbol.for("react.element"):60103,z=I?Symbol.for("react.portal"):60106,H=I?Symbol.for("react.fragment"):60107,R=I?Symbol.for("react.strict_mode"):60108,F=I?Symbol.for("react.profiler"):60114,U=I?Symbol.for("react.provider"):60109,q=I?Symbol.for("react.context"):60110,W=I?Symbol.for("react.concurrent_mode"):60111,B=I?Symbol.for("react.forward_ref"):60112,V=I?Symbol.for("react.suspense"):60113,X=I?Symbol.for("react.suspense_list"):60120,Q=I?Symbol.for("react.memo"):60115,K=I?Symbol.for("react.lazy"):60116;I&&Symbol.for("react.fundamental"),I&&Symbol.for("react.responder"),I&&Symbol.for("react.scope");var Y="function"==typeof Symbol&&Symbol.iterator;function G(e){return null===e||"object"!==r(e)?null:"function"==typeof(e=Y&&e[Y]||e["@@iterator"])?e:null}function J(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case H:return"Fragment";case z:return"Portal";case F:return"Profiler";case R:return"StrictMode";case V:return"Suspense";case X:return"SuspenseList"}if("object"===r(e))switch(e.$$typeof){case q:return"Context.Consumer";case U:return"Context.Provider";case B:var t=e.render;return t=t.displayName||t.name||"",e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case Q:return J(e.type);case K:if(e=1===e._status?e._result:null)return J(e)}return null}function Z(e){var t="";do{e:switch(e.tag){case 3:case 4:case 6:case 7:case 10:case 9:var n="";break e;default:var r=e._debugOwner,i=e._debugSource,o=J(e.type);n=null,r&&(n=J(r.type)),r=o,o="",i?o=" (at "+i.fileName.replace(M,"")+":"+i.lineNumber+")":n&&(o=" (created by "+n+")"),n="\n in "+(r||"Unknown")+o}t+=n,e=e.return}while(e);return t}var ee=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),te=null,ne=null,re=null;function ie(e){if(e=S(e)){if("function"!=typeof te)throw Error(l(280));var t=T(e.stateNode);te(e.stateNode,e.type,t)}}function oe(e){ne?re?re.push(e):re=[e]:ne=e}function ae(){if(ne){var e=ne,t=re;if(re=ne=null,ie(e),t)for(e=0;e<t.length;e++)ie(t[e])}}function le(e,t){return e(t)}function se(e,t,n,r){return e(t,n,r)}function ue(){}var ce=le,de=!1,fe=!1;function pe(){null===ne&&null===re||(ue(),ae())}new Map;var he=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,me=Object.prototype.hasOwnProperty,ve={},ye={};function ge(e,t,n,i){if(null==t||function(e,t,n,i){if(null!==n&&0===n.type)return!1;switch(r(t)){case"function":case"symbol":return!0;case"boolean":return!i&&(null!==n?!n.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}(e,t,n,i))return!0;if(i)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function be(e,t,n,r,i,o){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=i,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o}var we={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){we[e]=new be(e,0,!1,e,null,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var t=e[0];we[t]=new be(t,1,!1,e[1],null,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){we[e]=new be(e,2,!1,e.toLowerCase(),null,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){we[e]=new be(e,2,!1,e,null,!1)})),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach((function(e){we[e]=new be(e,3,!1,e.toLowerCase(),null,!1)})),["checked","multiple","muted","selected"].forEach((function(e){we[e]=new be(e,3,!0,e,null,!1)})),["capture","download"].forEach((function(e){we[e]=new be(e,4,!1,e,null,!1)})),["cols","rows","size","span"].forEach((function(e){we[e]=new be(e,6,!1,e,null,!1)})),["rowSpan","start"].forEach((function(e){we[e]=new be(e,5,!1,e.toLowerCase(),null,!1)}));var ke=/[\-:]([a-z])/g;function xe(e){return e[1].toUpperCase()}function Te(e){switch(r(e)){case"boolean":case"number":case"object":case"string":case"undefined":return e;default:return""}}function Se(e,t,n,r){var i=we.hasOwnProperty(t)?we[t]:null;(null!==i?0===i.type:!r&&(2<t.length&&("o"===t[0]||"O"===t[0])&&("n"===t[1]||"N"===t[1])))||(ge(t,n,i,r)&&(n=null),r||null===i?function(e){return!!me.call(ye,e)||!me.call(ve,e)&&(he.test(e)?ye[e]=!0:(ve[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n)):i.mustUseProperty?e[i.propertyName]=null===n?3!==i.type&&"":n:(t=i.attributeName,r=i.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(i=i.type)||4===i&&!0===n?"":""+n,r?e.setAttributeNS(r,t,n):e.setAttribute(t,n))))}function Ce(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function Ee(e){e._valueTracker||(e._valueTracker=function(e){var t=Ce(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&"function"==typeof n.get&&"function"==typeof n.set){var i=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return i.call(this)},set:function(e){r=""+e,o.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(e){r=""+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function Pe(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=Ce(e)?e.checked?"true":"false":e.value),(e=r)!==n&&(t.setValue(e),!0)}function Ne(e,t){var n=t.checked;return o({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function Ae(e,t){var n=null==t.defaultValue?"":t.defaultValue,r=null!=t.checked?t.checked:t.defaultChecked;n=Te(null!=t.value?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function $e(e,t){null!=(t=t.checked)&&Se(e,"checked",t,!1)}function Oe(e,t){$e(e,t);var n=Te(t.value),r=t.type;if(null!=n)"number"===r?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===r||"reset"===r)return void e.removeAttribute("value");t.hasOwnProperty("value")?Le(e,t.type,n):t.hasOwnProperty("defaultValue")&&Le(e,t.type,Te(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function _e(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!("submit"!==r&&"reset"!==r||void 0!==t.value&&null!==t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}""!==(n=e.name)&&(e.name=""),e.defaultChecked=!e.defaultChecked,e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function Le(e,t,n){"number"===t&&e.ownerDocument.activeElement===e||(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}function De(e,t){return e=o({children:void 0},t),(t=function(e){var t="";return i.Children.forEach(e,(function(e){null!=e&&(t+=e)})),t}(t.children))&&(e.children=t),e}function Me(e,t,n,r){if(e=e.options,t){t={};for(var i=0;i<n.length;i++)t["$"+n[i]]=!0;for(n=0;n<e.length;n++)i=t.hasOwnProperty("$"+e[n].value),e[n].selected!==i&&(e[n].selected=i),i&&r&&(e[n].defaultSelected=!0)}else{for(n=""+Te(n),t=null,i=0;i<e.length;i++){if(e[i].value===n)return e[i].selected=!0,void(r&&(e[i].defaultSelected=!0));null!==t||e[i].disabled||(t=e[i])}null!==t&&(t.selected=!0)}}function Ie(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(l(91));return o({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function je(e,t){var n=t.value;if(null==n){if(n=t.defaultValue,null!=(t=t.children)){if(null!=n)throw Error(l(92));if(Array.isArray(t)){if(!(1>=t.length))throw Error(l(93));t=t[0]}n=t}null==n&&(n="")}e._wrapperState={initialValue:Te(n)}}function ze(e,t){var n=Te(t.value),r=Te(t.defaultValue);null!=n&&((n=""+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=r&&(e.defaultValue=""+r)}function He(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach((function(e){var t=e.replace(ke,xe);we[t]=new be(t,1,!1,e,null,!1)})),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach((function(e){var t=e.replace(ke,xe);we[t]=new be(t,1,!1,e,"http://www.w3.org/1999/xlink",!1)})),["xml:base","xml:lang","xml:space"].forEach((function(e){var t=e.replace(ke,xe);we[t]=new be(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1)})),["tabIndex","crossOrigin"].forEach((function(e){we[e]=new be(e,1,!1,e.toLowerCase(),null,!1)})),we.xlinkHref=new be("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0),["src","href","action","formAction"].forEach((function(e){we[e]=new be(e,1,!1,e.toLowerCase(),null,!0)}));var Re={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"};function Fe(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function Ue(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?Fe(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var qe,We=function(e){return"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(t,n,r,i){MSApp.execUnsafeLocalFunction((function(){return e(t,n)}))}:e}((function(e,t){if(e.namespaceURI!==Re.svg||"innerHTML"in e)e.innerHTML=t;else{for((qe=qe||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=qe.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}}));function Be(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}function Ve(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var Xe={animationend:Ve("Animation","AnimationEnd"),animationiteration:Ve("Animation","AnimationIteration"),animationstart:Ve("Animation","AnimationStart"),transitionend:Ve("Transition","TransitionEnd")},Qe={},Ke={};function Ye(e){if(Qe[e])return Qe[e];if(!Xe[e])return e;var t,n=Xe[e];for(t in n)if(n.hasOwnProperty(t)&&t in Ke)return Qe[e]=n[t];return e}ee&&(Ke=document.createElement("div").style,"AnimationEvent"in window||(delete Xe.animationend.animation,delete Xe.animationiteration.animation,delete Xe.animationstart.animation),"TransitionEvent"in window||delete Xe.transitionend.transition);var Ge=Ye("animationend"),Je=Ye("animationiteration"),Ze=Ye("animationstart"),et=Ye("transitionend"),tt="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" ");function nt(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026&(t=e).effectTag)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function rt(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&(null!==(e=e.alternate)&&(t=e.memoizedState)),null!==t)return t.dehydrated}return null}function it(e){if(nt(e)!==e)throw Error(l(188))}function ot(e){if(!(e=function(e){var t=e.alternate;if(!t){if(null===(t=nt(e)))throw Error(l(188));return t!==e?null:e}for(var n=e,r=t;;){var i=n.return;if(null===i)break;var o=i.alternate;if(null===o){if(null!==(r=i.return)){n=r;continue}break}if(i.child===o.child){for(o=i.child;o;){if(o===n)return it(i),e;if(o===r)return it(i),t;o=o.sibling}throw Error(l(188))}if(n.return!==r.return)n=i,r=o;else{for(var a=!1,s=i.child;s;){if(s===n){a=!0,n=i,r=o;break}if(s===r){a=!0,r=i,n=o;break}s=s.sibling}if(!a){for(s=o.child;s;){if(s===n){a=!0,n=o,r=i;break}if(s===r){a=!0,r=o,n=i;break}s=s.sibling}if(!a)throw Error(l(189))}}if(n.alternate!==r)throw Error(l(190))}if(3!==n.tag)throw Error(l(188));return n.stateNode.current===n?e:t}(e)))return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}var at,lt,st,ut=!1,ct=[],dt=null,ft=null,pt=null,ht=new Map,mt=new Map,vt=[],yt="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput close cancel copy cut paste click change contextmenu reset submit".split(" "),gt="focus blur dragenter dragleave mouseover mouseout pointerover pointerout gotpointercapture lostpointercapture".split(" ");function bt(e,t,n,r){return{blockedOn:e,topLevelType:t,eventSystemFlags:32|n,nativeEvent:r}}function wt(e,t){switch(e){case"focus":case"blur":dt=null;break;case"dragenter":case"dragleave":ft=null;break;case"mouseover":case"mouseout":pt=null;break;case"pointerover":case"pointerout":ht.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":mt.delete(t.pointerId)}}function kt(e,t,n,r,i){return null===e||e.nativeEvent!==i?(e=bt(t,n,r,i),null!==t&&(null!==(t=mr(t))&&lt(t)),e):(e.eventSystemFlags|=r,e)}function xt(e){var t=hr(e.target);if(null!==t){var n=nt(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=rt(n)))return e.blockedOn=t,void a.unstable_runWithPriority(e.priority,(function(){st(n)}))}else if(3===t&&n.stateNode.hydrate)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function Tt(e){if(null!==e.blockedOn)return!1;var t=Ln(e.topLevelType,e.eventSystemFlags,e.nativeEvent);if(null!==t){var n=mr(t);return null!==n&&lt(n),e.blockedOn=t,!1}return!0}function St(e,t,n){Tt(e)&&n.delete(t)}function Ct(){for(ut=!1;0<ct.length;){var e=ct[0];if(null!==e.blockedOn){null!==(e=mr(e.blockedOn))&&at(e);break}var t=Ln(e.topLevelType,e.eventSystemFlags,e.nativeEvent);null!==t?e.blockedOn=t:ct.shift()}null!==dt&&Tt(dt)&&(dt=null),null!==ft&&Tt(ft)&&(ft=null),null!==pt&&Tt(pt)&&(pt=null),ht.forEach(St),mt.forEach(St)}function Et(e,t){e.blockedOn===t&&(e.blockedOn=null,ut||(ut=!0,a.unstable_scheduleCallback(a.unstable_NormalPriority,Ct)))}function Pt(e){function t(t){return Et(t,e)}if(0<ct.length){Et(ct[0],e);for(var n=1;n<ct.length;n++){var r=ct[n];r.blockedOn===e&&(r.blockedOn=null)}}for(null!==dt&&Et(dt,e),null!==ft&&Et(ft,e),null!==pt&&Et(pt,e),ht.forEach(t),mt.forEach(t),n=0;n<vt.length;n++)(r=vt[n]).blockedOn===e&&(r.blockedOn=null);for(;0<vt.length&&null===(n=vt[0]).blockedOn;)xt(n),null===n.blockedOn&&vt.shift()}function Nt(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}function At(e){do{e=e.return}while(e&&5!==e.tag);return e||null}function $t(e,t,n){(t=L(e,n.dispatchConfig.phasedRegistrationNames[t]))&&(n._dispatchListeners=P(n._dispatchListeners,t),n._dispatchInstances=P(n._dispatchInstances,e))}function Ot(e){if(e&&e.dispatchConfig.phasedRegistrationNames){for(var t=e._targetInst,n=[];t;)n.push(t),t=At(t);for(t=n.length;0<t--;)$t(n[t],"captured",e);for(t=0;t<n.length;t++)$t(n[t],"bubbled",e)}}function _t(e,t,n){e&&n&&n.dispatchConfig.registrationName&&(t=L(e,n.dispatchConfig.registrationName))&&(n._dispatchListeners=P(n._dispatchListeners,t),n._dispatchInstances=P(n._dispatchInstances,e))}function Lt(e){e&&e.dispatchConfig.registrationName&&_t(e._targetInst,null,e)}function Dt(e){N(e,Ot)}function Mt(){return!0}function It(){return!1}function jt(e,t,n,r){for(var i in this.dispatchConfig=e,this._targetInst=t,this.nativeEvent=n,e=this.constructor.Interface)e.hasOwnProperty(i)&&((t=e[i])?this[i]=t(n):"target"===i?this.target=r:this[i]=n[i]);return this.isDefaultPrevented=(null!=n.defaultPrevented?n.defaultPrevented:!1===n.returnValue)?Mt:It,this.isPropagationStopped=It,this}function zt(e,t,n,r){if(this.eventPool.length){var i=this.eventPool.pop();return this.call(i,e,t,n,r),i}return new this(e,t,n,r)}function Ht(e){if(!(e instanceof this))throw Error(l(279));e.destructor(),10>this.eventPool.length&&this.eventPool.push(e)}function Rt(e){e.eventPool=[],e.getPooled=zt,e.release=Ht}o(jt.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=Mt)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=Mt)},persist:function(){this.isPersistent=Mt},isPersistent:It,destructor:function(){var e,t=this.constructor.Interface;for(e in t)this[e]=null;this.nativeEvent=this._targetInst=this.dispatchConfig=null,this.isPropagationStopped=this.isDefaultPrevented=It,this._dispatchInstances=this._dispatchListeners=null}}),jt.Interface={type:null,target:null,currentTarget:function(){return null},eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null},jt.extend=function(e){function t(){}function n(){return r.apply(this,arguments)}var r=this;t.prototype=r.prototype;var i=new t;return o(i,n.prototype),n.prototype=i,n.prototype.constructor=n,n.Interface=o({},r.Interface,e),n.extend=r.extend,Rt(n),n},Rt(jt);var Ft=jt.extend({animationName:null,elapsedTime:null,pseudoElement:null}),Ut=jt.extend({clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),qt=jt.extend({view:null,detail:null}),Wt=qt.extend({relatedTarget:null});function Bt(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}var Vt={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Xt={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Qt={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function Kt(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Qt[e])&&!!t[e]}function Yt(){return Kt}for(var Gt=qt.extend({key:function(e){if(e.key){var t=Vt[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=Bt(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?Xt[e.keyCode]||"Unidentified":""},location:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,repeat:null,locale:null,getModifierState:Yt,charCode:function(e){return"keypress"===e.type?Bt(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?Bt(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),Jt=0,Zt=0,en=!1,tn=!1,nn=qt.extend({screenX:null,screenY:null,clientX:null,clientY:null,pageX:null,pageY:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,getModifierState:Yt,button:null,buttons:null,relatedTarget:function(e){return e.relatedTarget||(e.fromElement===e.srcElement?e.toElement:e.fromElement)},movementX:function(e){if("movementX"in e)return e.movementX;var t=Jt;return Jt=e.screenX,en?"mousemove"===e.type?e.screenX-t:0:(en=!0,0)},movementY:function(e){if("movementY"in e)return e.movementY;var t=Zt;return Zt=e.screenY,tn?"mousemove"===e.type?e.screenY-t:0:(tn=!0,0)}}),rn=nn.extend({pointerId:null,width:null,height:null,pressure:null,tangentialPressure:null,tiltX:null,tiltY:null,twist:null,pointerType:null,isPrimary:null}),on=nn.extend({dataTransfer:null}),an=qt.extend({touches:null,targetTouches:null,changedTouches:null,altKey:null,metaKey:null,ctrlKey:null,shiftKey:null,getModifierState:Yt}),ln=jt.extend({propertyName:null,elapsedTime:null,pseudoElement:null}),sn=nn.extend({deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:null,deltaMode:null}),un=[["blur","blur",0],["cancel","cancel",0],["click","click",0],["close","close",0],["contextmenu","contextMenu",0],["copy","copy",0],["cut","cut",0],["auxclick","auxClick",0],["dblclick","doubleClick",0],["dragend","dragEnd",0],["dragstart","dragStart",0],["drop","drop",0],["focus","focus",0],["input","input",0],["invalid","invalid",0],["keydown","keyDown",0],["keypress","keyPress",0],["keyup","keyUp",0],["mousedown","mouseDown",0],["mouseup","mouseUp",0],["paste","paste",0],["pause","pause",0],["play","play",0],["pointercancel","pointerCancel",0],["pointerdown","pointerDown",0],["pointerup","pointerUp",0],["ratechange","rateChange",0],["reset","reset",0],["seeked","seeked",0],["submit","submit",0],["touchcancel","touchCancel",0],["touchend","touchEnd",0],["touchstart","touchStart",0],["volumechange","volumeChange",0],["drag","drag",1],["dragenter","dragEnter",1],["dragexit","dragExit",1],["dragleave","dragLeave",1],["dragover","dragOver",1],["mousemove","mouseMove",1],["mouseout","mouseOut",1],["mouseover","mouseOver",1],["pointermove","pointerMove",1],["pointerout","pointerOut",1],["pointerover","pointerOver",1],["scroll","scroll",1],["toggle","toggle",1],["touchmove","touchMove",1],["wheel","wheel",1],["abort","abort",2],[Ge,"animationEnd",2],[Je,"animationIteration",2],[Ze,"animationStart",2],["canplay","canPlay",2],["canplaythrough","canPlayThrough",2],["durationchange","durationChange",2],["emptied","emptied",2],["encrypted","encrypted",2],["ended","ended",2],["error","error",2],["gotpointercapture","gotPointerCapture",2],["load","load",2],["loadeddata","loadedData",2],["loadedmetadata","loadedMetadata",2],["loadstart","loadStart",2],["lostpointercapture","lostPointerCapture",2],["playing","playing",2],["progress","progress",2],["seeking","seeking",2],["stalled","stalled",2],["suspend","suspend",2],["timeupdate","timeUpdate",2],[et,"transitionEnd",2],["waiting","waiting",2]],cn={},dn={},fn=0;fn<un.length;fn++){var pn=un[fn],hn=pn[0],mn=pn[1],vn=pn[2],yn="on"+(mn[0].toUpperCase()+mn.slice(1)),gn={phasedRegistrationNames:{bubbled:yn,captured:yn+"Capture"},dependencies:[hn],eventPriority:vn};cn[mn]=gn,dn[hn]=gn}var bn={eventTypes:cn,getEventPriority:function(e){return void 0!==(e=dn[e])?e.eventPriority:2},extractEvents:function(e,t,n,r){var i=dn[e];if(!i)return null;switch(e){case"keypress":if(0===Bt(n))return null;case"keydown":case"keyup":e=Gt;break;case"blur":case"focus":e=Wt;break;case"click":if(2===n.button)return null;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":e=nn;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":e=on;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":e=an;break;case Ge:case Je:case Ze:e=Ft;break;case et:e=ln;break;case"scroll":e=qt;break;case"wheel":e=sn;break;case"copy":case"cut":case"paste":e=Ut;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":e=rn;break;default:e=jt}return Dt(t=e.getPooled(i,t,n,r)),t}},wn=a.unstable_UserBlockingPriority,kn=a.unstable_runWithPriority,xn=bn.getEventPriority,Tn=10,Sn=[];function Cn(e){var t=e.targetInst,n=t;do{if(!n){e.ancestors.push(n);break}var r=n;if(3===r.tag)r=r.stateNode.containerInfo;else{for(;r.return;)r=r.return;r=3!==r.tag?null:r.stateNode.containerInfo}if(!r)break;5!==(t=n.tag)&&6!==t||e.ancestors.push(n),n=hr(r)}while(n);for(n=0;n<e.ancestors.length;n++){t=e.ancestors[n];var i=Nt(e.nativeEvent);r=e.topLevelType;for(var o=e.nativeEvent,a=e.eventSystemFlags,l=null,s=0;s<f.length;s++){var u=f[s];u&&(u=u.extractEvents(r,t,o,i,a))&&(l=P(l,u))}O(l)}}var En=!0;function Pn(e,t){Nn(t,e,!1)}function Nn(e,t,n){switch(xn(t)){case 0:var r=An.bind(null,t,1);break;case 1:r=$n.bind(null,t,1);break;default:r=_n.bind(null,t,1)}n?e.addEventListener(t,r,!0):e.addEventListener(t,r,!1)}function An(e,t,n){de||ue();var r=_n,i=de;de=!0;try{se(r,e,t,n)}finally{(de=i)||pe()}}function $n(e,t,n){kn(wn,_n.bind(null,e,t,n))}function On(e,t,n,r){if(Sn.length){var i=Sn.pop();i.topLevelType=e,i.eventSystemFlags=t,i.nativeEvent=n,i.targetInst=r,e=i}else e={topLevelType:e,eventSystemFlags:t,nativeEvent:n,targetInst:r,ancestors:[]};try{if(t=Cn,n=e,fe)t(n,void 0);else{fe=!0;try{ce(t,n,void 0)}finally{fe=!1,pe()}}}finally{e.topLevelType=null,e.nativeEvent=null,e.targetInst=null,e.ancestors.length=0,Sn.length<Tn&&Sn.push(e)}}function _n(e,t,n){if(En)if(0<ct.length&&-1<yt.indexOf(e))e=bt(null,e,t,n),ct.push(e);else{var r=Ln(e,t,n);null===r?wt(e,n):-1<yt.indexOf(e)?(e=bt(r,e,t,n),ct.push(e)):function(e,t,n,r){switch(t){case"focus":return dt=kt(dt,e,t,n,r),!0;case"dragenter":return ft=kt(ft,e,t,n,r),!0;case"mouseover":return pt=kt(pt,e,t,n,r),!0;case"pointerover":var i=r.pointerId;return ht.set(i,kt(ht.get(i)||null,e,t,n,r)),!0;case"gotpointercapture":return i=r.pointerId,mt.set(i,kt(mt.get(i)||null,e,t,n,r)),!0}return!1}(r,e,t,n)||(wt(e,n),On(e,t,n,null))}}function Ln(e,t,n){var r=Nt(n);if(null!==(r=hr(r))){var i=nt(r);if(null===i)r=null;else{var o=i.tag;if(13===o){if(null!==(r=rt(i)))return r;r=null}else if(3===o){if(i.stateNode.hydrate)return 3===i.tag?i.stateNode.containerInfo:null;r=null}else i!==r&&(r=null)}}return On(e,t,n,r),null}function Dn(e){if(!ee)return!1;var t=(e="on"+e)in document;return t||((t=document.createElement("div")).setAttribute(e,"return;"),t="function"==typeof t[e]),t}var Mn=new("function"==typeof WeakMap?WeakMap:Map);function In(e){var t=Mn.get(e);return void 0===t&&(t=new Set,Mn.set(e,t)),t}function jn(e,t,n){if(!n.has(e)){switch(e){case"scroll":Nn(t,"scroll",!0);break;case"focus":case"blur":Nn(t,"focus",!0),Nn(t,"blur",!0),n.add("blur"),n.add("focus");break;case"cancel":case"close":Dn(e)&&Nn(t,e,!0);break;case"invalid":case"submit":case"reset":break;default:-1===tt.indexOf(e)&&Pn(e,t)}n.add(e)}}var zn={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Hn=["Webkit","ms","Moz","O"];function Rn(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||zn.hasOwnProperty(e)&&zn[e]?(""+t).trim():t+"px"}function Fn(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var r=0===n.indexOf("--"),i=Rn(n,t[n],r);"float"===n&&(n="cssFloat"),r?e.setProperty(n,i):e[n]=i}}Object.keys(zn).forEach((function(e){Hn.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),zn[t]=zn[e]}))}));var Un=o({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function qn(e,t){if(t){if(Un[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(l(137,e,""));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(l(60));if(!("object"===r(t.dangerouslySetInnerHTML)&&"__html"in t.dangerouslySetInnerHTML))throw Error(l(61))}if(null!=t.style&&"object"!==r(t.style))throw Error(l(62,""))}}function Wn(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}function Bn(e,t){var n=In(e=9===e.nodeType||11===e.nodeType?e:e.ownerDocument);t=m[t];for(var r=0;r<t.length;r++)jn(t[r],e,n)}function Vn(){}function Xn(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function Qn(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function Kn(e,t){var n,r=Qn(e);for(e=0;r;){if(3===r.nodeType){if(n=e+r.textContent.length,e<=t&&n>=t)return{node:r,offset:t-e};e=n}e:{for(;r;){if(r.nextSibling){r=r.nextSibling;break e}r=r.parentNode}r=void 0}r=Qn(r)}}function Yn(){for(var e=window,t=Xn();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=Xn((e=t.contentWindow).document)}return t}function Gn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}var Jn="$",Zn="/$",er="$?",tr="$!",nr=null,rr=null;function ir(e,t){switch(e){case"button":case"input":case"select":case"textarea":return!!t.autoFocus}return!1}function or(e,t){return"textarea"===e||"option"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"===r(t.dangerouslySetInnerHTML)&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var ar="function"==typeof setTimeout?setTimeout:void 0,lr="function"==typeof clearTimeout?clearTimeout:void 0;function sr(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function ur(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if(n===Jn||n===tr||n===er){if(0===t)return e;t--}else n===Zn&&t++}e=e.previousSibling}return null}var cr=Math.random().toString(36).slice(2),dr="__reactInternalInstance$"+cr,fr="__reactEventHandlers$"+cr,pr="__reactContainere$"+cr;function hr(e){var t=e[dr];if(t)return t;for(var n=e.parentNode;n;){if(t=n[pr]||n[dr]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=ur(e);null!==e;){if(n=e[dr])return n;e=ur(e)}return t}n=(e=n).parentNode}return null}function mr(e){return!(e=e[dr]||e[pr])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function vr(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(l(33))}function yr(e){return e[fr]||null}var gr=null,br=null,wr=null;function kr(){if(wr)return wr;var e,t,n=br,r=n.length,i="value"in gr?gr.value:gr.textContent,o=i.length;for(e=0;e<r&&n[e]===i[e];e++);var a=r-e;for(t=1;t<=a&&n[r-t]===i[o-t];t++);return wr=i.slice(e,1<t?1-t:void 0)}var xr=jt.extend({data:null}),Tr=jt.extend({data:null}),Sr=[9,13,27,32],Cr=ee&&"CompositionEvent"in window,Er=null;ee&&"documentMode"in document&&(Er=document.documentMode);var Pr=ee&&"TextEvent"in window&&!Er,Nr=ee&&(!Cr||Er&&8<Er&&11>=Er),Ar=String.fromCharCode(32),$r={beforeInput:{phasedRegistrationNames:{bubbled:"onBeforeInput",captured:"onBeforeInputCapture"},dependencies:["compositionend","keypress","textInput","paste"]},compositionEnd:{phasedRegistrationNames:{bubbled:"onCompositionEnd",captured:"onCompositionEndCapture"},dependencies:"blur compositionend keydown keypress keyup mousedown".split(" ")},compositionStart:{phasedRegistrationNames:{bubbled:"onCompositionStart",captured:"onCompositionStartCapture"},dependencies:"blur compositionstart keydown keypress keyup mousedown".split(" ")},compositionUpdate:{phasedRegistrationNames:{bubbled:"onCompositionUpdate",captured:"onCompositionUpdateCapture"},dependencies:"blur compositionupdate keydown keypress keyup mousedown".split(" ")}},Or=!1;function _r(e,t){switch(e){case"keyup":return-1!==Sr.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"blur":return!0;default:return!1}}function Lr(e){return"object"===r(e=e.detail)&&"data"in e?e.data:null}var Dr=!1;var Mr={eventTypes:$r,extractEvents:function(e,t,n,r){var i;if(Cr)e:{switch(e){case"compositionstart":var o=$r.compositionStart;break e;case"compositionend":o=$r.compositionEnd;break e;case"compositionupdate":o=$r.compositionUpdate;break e}o=void 0}else Dr?_r(e,n)&&(o=$r.compositionEnd):"keydown"===e&&229===n.keyCode&&(o=$r.compositionStart);return o?(Nr&&"ko"!==n.locale&&(Dr||o!==$r.compositionStart?o===$r.compositionEnd&&Dr&&(i=kr()):(br="value"in(gr=r)?gr.value:gr.textContent,Dr=!0)),o=xr.getPooled(o,t,n,r),i?o.data=i:null!==(i=Lr(n))&&(o.data=i),Dt(o),i=o):i=null,(e=Pr?function(e,t){switch(e){case"compositionend":return Lr(t);case"keypress":return 32!==t.which?null:(Or=!0,Ar);case"textInput":return(e=t.data)===Ar&&Or?null:e;default:return null}}(e,n):function(e,t){if(Dr)return"compositionend"===e||!Cr&&_r(e,t)?(e=kr(),wr=br=gr=null,Dr=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return Nr&&"ko"!==t.locale?null:t.data;default:return null}}(e,n))?((t=Tr.getPooled($r.beforeInput,t,n,r)).data=e,Dt(t)):t=null,null===i?t:null===t?i:[i,t]}},Ir={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function jr(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!Ir[e.type]:"textarea"===t}var zr={change:{phasedRegistrationNames:{bubbled:"onChange",captured:"onChangeCapture"},dependencies:"blur change click focus input keydown keyup selectionchange".split(" ")}};function Hr(e,t,n){return(e=jt.getPooled(zr.change,e,t,n)).type="change",oe(n),Dt(e),e}var Rr=null,Fr=null;function Ur(e){O(e)}function qr(e){if(Pe(vr(e)))return e}function Wr(e,t){if("change"===e)return t}var Br=!1;function Vr(){Rr&&(Rr.detachEvent("onpropertychange",Xr),Fr=Rr=null)}function Xr(e){if("value"===e.propertyName&&qr(Fr))if(e=Hr(Fr,e,Nt(e)),de)O(e);else{de=!0;try{le(Ur,e)}finally{de=!1,pe()}}}function Qr(e,t,n){"focus"===e?(Vr(),Fr=n,(Rr=t).attachEvent("onpropertychange",Xr)):"blur"===e&&Vr()}function Kr(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return qr(Fr)}function Yr(e,t){if("click"===e)return qr(t)}function Gr(e,t){if("input"===e||"change"===e)return qr(t)}ee&&(Br=Dn("input")&&(!document.documentMode||9<document.documentMode));var Jr,Zr={eventTypes:zr,_isInputEventSupported:Br,extractEvents:function(e,t,n,r){var i=t?vr(t):window,o=i.nodeName&&i.nodeName.toLowerCase();if("select"===o||"input"===o&&"file"===i.type)var a=Wr;else if(jr(i))if(Br)a=Gr;else{a=Kr;var l=Qr}else(o=i.nodeName)&&"input"===o.toLowerCase()&&("checkbox"===i.type||"radio"===i.type)&&(a=Yr);if(a&&(a=a(e,t)))return Hr(a,n,r);l&&l(e,i,t),"blur"===e&&(e=i._wrapperState)&&e.controlled&&"number"===i.type&&Le(i,"number",i.value)}},ei={mouseEnter:{registrationName:"onMouseEnter",dependencies:["mouseout","mouseover"]},mouseLeave:{registrationName:"onMouseLeave",dependencies:["mouseout","mouseover"]},pointerEnter:{registrationName:"onPointerEnter",dependencies:["pointerout","pointerover"]},pointerLeave:{registrationName:"onPointerLeave",dependencies:["pointerout","pointerover"]}},ti={eventTypes:ei,extractEvents:function(e,t,n,r,i){var o="mouseover"===e||"pointerover"===e,a="mouseout"===e||"pointerout"===e;if(o&&0==(32&i)&&(n.relatedTarget||n.fromElement)||!a&&!o)return null;if(i=r.window===r?r:(i=r.ownerDocument)?i.defaultView||i.parentWindow:window,a?(a=t,null!==(t=(t=n.relatedTarget||n.toElement)?hr(t):null)&&(t!==(o=nt(t))||5!==t.tag&&6!==t.tag)&&(t=null)):a=null,a===t)return null;if("mouseout"===e||"mouseover"===e)var l=nn,s=ei.mouseLeave,u=ei.mouseEnter,c="mouse";else"pointerout"!==e&&"pointerover"!==e||(l=rn,s=ei.pointerLeave,u=ei.pointerEnter,c="pointer");if(e=null==a?i:vr(a),i=null==t?i:vr(t),(s=l.getPooled(s,a,n,r)).type=c+"leave",s.target=e,s.relatedTarget=i,(r=l.getPooled(u,t,n,r)).type=c+"enter",r.target=i,r.relatedTarget=e,c=t,(l=a)&&c)e:{for(e=c,a=0,t=u=l;t;t=At(t))a++;for(t=0,i=e;i;i=At(i))t++;for(;0<a-t;)u=At(u),a--;for(;0<t-a;)e=At(e),t--;for(;a--;){if(u===e||u===e.alternate)break e;u=At(u),e=At(e)}u=null}else u=null;for(e=u,u=[];l&&l!==e&&(null===(a=l.alternate)||a!==e);)u.push(l),l=At(l);for(l=[];c&&c!==e&&(null===(a=c.alternate)||a!==e);)l.push(c),c=At(c);for(c=0;c<u.length;c++)_t(u[c],"bubbled",s);for(c=l.length;0<c--;)_t(l[c],"captured",r);return n===Jr?(Jr=null,[s]):(Jr=n,[s,r])}};var ni="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},ri=Object.prototype.hasOwnProperty;function ii(e,t){if(ni(e,t))return!0;if("object"!==r(e)||null===e||"object"!==r(t)||null===t)return!1;var n=Object.keys(e),i=Object.keys(t);if(n.length!==i.length)return!1;for(i=0;i<n.length;i++)if(!ri.call(t,n[i])||!ni(e[n[i]],t[n[i]]))return!1;return!0}var oi=ee&&"documentMode"in document&&11>=document.documentMode,ai={select:{phasedRegistrationNames:{bubbled:"onSelect",captured:"onSelectCapture"},dependencies:"blur contextmenu dragend focus keydown keyup mousedown mouseup selectionchange".split(" ")}},li=null,si=null,ui=null,ci=!1;function di(e,t){var n=t.window===t?t.document:9===t.nodeType?t:t.ownerDocument;return ci||null==li||li!==Xn(n)?null:("selectionStart"in(n=li)&&Gn(n)?n={start:n.selectionStart,end:n.selectionEnd}:n={anchorNode:(n=(n.ownerDocument&&n.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:n.anchorOffset,focusNode:n.focusNode,focusOffset:n.focusOffset},ui&&ii(ui,n)?null:(ui=n,(e=jt.getPooled(ai.select,si,e,t)).type="select",e.target=li,Dt(e),e))}var fi={eventTypes:ai,extractEvents:function(e,t,n,r){var i,o=r.window===r?r.document:9===r.nodeType?r:r.ownerDocument;if(!(i=!o)){e:{o=In(o),i=m.onSelect;for(var a=0;a<i.length;a++)if(!o.has(i[a])){o=!1;break e}o=!0}i=!o}if(i)return null;switch(o=t?vr(t):window,e){case"focus":(jr(o)||"true"===o.contentEditable)&&(li=o,si=t,ui=null);break;case"blur":ui=si=li=null;break;case"mousedown":ci=!0;break;case"contextmenu":case"mouseup":case"dragend":return ci=!1,di(n,r);case"selectionchange":if(oi)break;case"keydown":case"keyup":return di(n,r)}return null}};_.injectEventPluginOrder("ResponderEventPlugin SimpleEventPlugin EnterLeaveEventPlugin ChangeEventPlugin SelectEventPlugin BeforeInputEventPlugin".split(" ")),T=yr,S=mr,C=vr,_.injectEventPluginsByName({SimpleEventPlugin:bn,EnterLeaveEventPlugin:ti,ChangeEventPlugin:Zr,SelectEventPlugin:fi,BeforeInputEventPlugin:Mr}),new Set;var pi=[],hi=-1;function mi(e){0>hi||(e.current=pi[hi],pi[hi]=null,hi--)}function vi(e,t){hi++,pi[hi]=e.current,e.current=t}var yi={},gi={current:yi},bi={current:!1},wi=yi;function ki(e,t){var n=e.type.contextTypes;if(!n)return yi;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var i,o={};for(i in n)o[i]=t[i];return r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function xi(e){return null!=(e=e.childContextTypes)}function Ti(e){mi(bi),mi(gi)}function Si(e){mi(bi),mi(gi)}function Ci(e,t,n){if(gi.current!==yi)throw Error(l(168));vi(gi,t),vi(bi,n)}function Ei(e,t,n){var r=e.stateNode;if(e=t.childContextTypes,"function"!=typeof r.getChildContext)return n;for(var i in r=r.getChildContext())if(!(i in e))throw Error(l(108,J(t)||"Unknown",i));return o({},n,{},r)}function Pi(e){var t=e.stateNode;return t=t&&t.__reactInternalMemoizedMergedChildContext||yi,wi=gi.current,vi(gi,t),vi(bi,bi.current),!0}function Ni(e,t,n){var r=e.stateNode;if(!r)throw Error(l(169));n?(t=Ei(e,t,wi),r.__reactInternalMemoizedMergedChildContext=t,mi(bi),mi(gi),vi(gi,t)):mi(bi),vi(bi,n)}var Ai=a.unstable_runWithPriority,$i=a.unstable_scheduleCallback,Oi=a.unstable_cancelCallback,_i=a.unstable_shouldYield,Li=a.unstable_requestPaint,Di=a.unstable_now,Mi=a.unstable_getCurrentPriorityLevel,Ii=a.unstable_ImmediatePriority,ji=a.unstable_UserBlockingPriority,zi=a.unstable_NormalPriority,Hi=a.unstable_LowPriority,Ri=a.unstable_IdlePriority,Fi={},Ui=void 0!==Li?Li:function(){},qi=null,Wi=null,Bi=!1,Vi=Di(),Xi=1e4>Vi?Di:function(){return Di()-Vi};function Qi(){switch(Mi()){case Ii:return 99;case ji:return 98;case zi:return 97;case Hi:return 96;case Ri:return 95;default:throw Error(l(332))}}function Ki(e){switch(e){case 99:return Ii;case 98:return ji;case 97:return zi;case 96:return Hi;case 95:return Ri;default:throw Error(l(332))}}function Yi(e,t){return e=Ki(e),Ai(e,t)}function Gi(e,t,n){return e=Ki(e),$i(e,t,n)}function Ji(e){return null===qi?(qi=[e],Wi=$i(Ii,eo)):qi.push(e),Fi}function Zi(){if(null!==Wi){var e=Wi;Wi=null,Oi(e)}eo()}function eo(){if(!Bi&&null!==qi){Bi=!0;var e=0;try{var t=qi;Yi(99,(function(){for(;e<t.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}})),qi=null}catch(t){throw null!==qi&&(qi=qi.slice(e+1)),$i(Ii,Zi),t}finally{Bi=!1}}}var to=3;function no(e,t,n){return 1073741821-(1+((1073741821-e+t/10)/(n/=10)|0))*n}function ro(e,t){if(e&&e.defaultProps)for(var n in t=o({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}var io={current:null},oo=null,ao=null,lo=null;function so(){lo=ao=oo=null}function uo(e,t){var n=e.type._context;vi(io,n._currentValue),n._currentValue=t}function co(e){var t=io.current;mi(io),e.type._context._currentValue=t}function fo(e,t){for(;null!==e;){var n=e.alternate;if(e.childExpirationTime<t)e.childExpirationTime=t,null!==n&&n.childExpirationTime<t&&(n.childExpirationTime=t);else{if(!(null!==n&&n.childExpirationTime<t))break;n.childExpirationTime=t}e=e.return}}function po(e,t){oo=e,lo=ao=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(e.expirationTime>=t&&(Xa=!0),e.firstContext=null)}function ho(e,t){if(lo!==e&&!1!==t&&0!==t)if("number"==typeof t&&1073741823!==t||(lo=e,t=1073741823),t={context:e,observedBits:t,next:null},null===ao){if(null===oo)throw Error(l(308));ao=t,oo.dependencies={expirationTime:0,firstContext:t,responders:null}}else ao=ao.next=t;return e._currentValue}var mo=!1;function vo(e){return{baseState:e,firstUpdate:null,lastUpdate:null,firstCapturedUpdate:null,lastCapturedUpdate:null,firstEffect:null,lastEffect:null,firstCapturedEffect:null,lastCapturedEffect:null}}function yo(e){return{baseState:e.baseState,firstUpdate:e.firstUpdate,lastUpdate:e.lastUpdate,firstCapturedUpdate:null,lastCapturedUpdate:null,firstEffect:null,lastEffect:null,firstCapturedEffect:null,lastCapturedEffect:null}}function go(e,t){return{expirationTime:e,suspenseConfig:t,tag:0,payload:null,callback:null,next:null,nextEffect:null}}function bo(e,t){null===e.lastUpdate?e.firstUpdate=e.lastUpdate=t:(e.lastUpdate.next=t,e.lastUpdate=t)}function wo(e,t){var n=e.alternate;if(null===n){var r=e.updateQueue,i=null;null===r&&(r=e.updateQueue=vo(e.memoizedState))}else r=e.updateQueue,i=n.updateQueue,null===r?null===i?(r=e.updateQueue=vo(e.memoizedState),i=n.updateQueue=vo(n.memoizedState)):r=e.updateQueue=yo(i):null===i&&(i=n.updateQueue=yo(r));null===i||r===i?bo(r,t):null===r.lastUpdate||null===i.lastUpdate?(bo(r,t),bo(i,t)):(bo(r,t),i.lastUpdate=t)}function ko(e,t){var n=e.updateQueue;null===(n=null===n?e.updateQueue=vo(e.memoizedState):xo(e,n)).lastCapturedUpdate?n.firstCapturedUpdate=n.lastCapturedUpdate=t:(n.lastCapturedUpdate.next=t,n.lastCapturedUpdate=t)}function xo(e,t){var n=e.alternate;return null!==n&&t===n.updateQueue&&(t=e.updateQueue=yo(t)),t}function To(e,t,n,r,i,a){switch(n.tag){case 1:return"function"==typeof(e=n.payload)?e.call(a,r,i):e;case 3:e.effectTag=-4097&e.effectTag|64;case 0:if(null==(i="function"==typeof(e=n.payload)?e.call(a,r,i):e))break;return o({},r,i);case 2:mo=!0}return r}function So(e,t,n,r,i){mo=!1;for(var o=(t=xo(e,t)).baseState,a=null,l=0,s=t.firstUpdate,u=o;null!==s;){var c=s.expirationTime;c<i?(null===a&&(a=s,o=u),l<c&&(l=c)):(As(c,s.suspenseConfig),u=To(e,0,s,u,n,r),null!==s.callback&&(e.effectTag|=32,s.nextEffect=null,null===t.lastEffect?t.firstEffect=t.lastEffect=s:(t.lastEffect.nextEffect=s,t.lastEffect=s))),s=s.next}for(c=null,s=t.firstCapturedUpdate;null!==s;){var d=s.expirationTime;d<i?(null===c&&(c=s,null===a&&(o=u)),l<d&&(l=d)):(u=To(e,0,s,u,n,r),null!==s.callback&&(e.effectTag|=32,s.nextEffect=null,null===t.lastCapturedEffect?t.firstCapturedEffect=t.lastCapturedEffect=s:(t.lastCapturedEffect.nextEffect=s,t.lastCapturedEffect=s))),s=s.next}null===a&&(t.lastUpdate=null),null===c?t.lastCapturedUpdate=null:e.effectTag|=32,null===a&&null===c&&(o=u),t.baseState=o,t.firstUpdate=a,t.firstCapturedUpdate=c,$s(l),e.expirationTime=l,e.memoizedState=u}function Co(e,t,n){null!==t.firstCapturedUpdate&&(null!==t.lastUpdate&&(t.lastUpdate.next=t.firstCapturedUpdate,t.lastUpdate=t.lastCapturedUpdate),t.firstCapturedUpdate=t.lastCapturedUpdate=null),Eo(t.firstEffect,n),t.firstEffect=t.lastEffect=null,Eo(t.firstCapturedEffect,n),t.firstCapturedEffect=t.lastCapturedEffect=null}function Eo(e,t){for(;null!==e;){var n=e.callback;if(null!==n){e.callback=null;var r=t;if("function"!=typeof n)throw Error(l(191,n));n.call(r)}e=e.nextEffect}}var Po=D.ReactCurrentBatchConfig,No=(new i.Component).refs;function Ao(e,t,n,r){n=null==(n=n(r,t=e.memoizedState))?t:o({},t,n),e.memoizedState=n,null!==(r=e.updateQueue)&&0===e.expirationTime&&(r.baseState=n)}var $o={isMounted:function(e){return!!(e=e._reactInternalFiber)&&nt(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternalFiber;var r=vs(),i=Po.suspense;(i=go(r=ys(r,e,i),i)).payload=t,null!=n&&(i.callback=n),wo(e,i),gs(e,r)},enqueueReplaceState:function(e,t,n){e=e._reactInternalFiber;var r=vs(),i=Po.suspense;(i=go(r=ys(r,e,i),i)).tag=1,i.payload=t,null!=n&&(i.callback=n),wo(e,i),gs(e,r)},enqueueForceUpdate:function(e,t){e=e._reactInternalFiber;var n=vs(),r=Po.suspense;(r=go(n=ys(n,e,r),r)).tag=2,null!=t&&(r.callback=t),wo(e,r),gs(e,n)}};function Oo(e,t,n,r,i,o,a){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(r,o,a):!t.prototype||!t.prototype.isPureReactComponent||(!ii(n,r)||!ii(i,o))}function _o(e,t,n){var i=!1,o=yi,a=t.contextType;return"object"===r(a)&&null!==a?a=ho(a):(o=xi(t)?wi:gi.current,a=(i=null!=(i=t.contextTypes))?ki(e,o):yi),t=new t(n,a),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=$o,e.stateNode=t,t._reactInternalFiber=e,i&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=o,e.__reactInternalMemoizedMaskedChildContext=a),t}function Lo(e,t,n,r){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,r),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&$o.enqueueReplaceState(t,t.state,null)}function Do(e,t,n,i){var o=e.stateNode;o.props=n,o.state=e.memoizedState,o.refs=No;var a=t.contextType;"object"===r(a)&&null!==a?o.context=ho(a):(a=xi(t)?wi:gi.current,o.context=ki(e,a)),null!==(a=e.updateQueue)&&(So(e,a,n,o,i),o.state=e.memoizedState),"function"==typeof(a=t.getDerivedStateFromProps)&&(Ao(e,t,a,n),o.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof o.getSnapshotBeforeUpdate||"function"!=typeof o.UNSAFE_componentWillMount&&"function"!=typeof o.componentWillMount||(t=o.state,"function"==typeof o.componentWillMount&&o.componentWillMount(),"function"==typeof o.UNSAFE_componentWillMount&&o.UNSAFE_componentWillMount(),t!==o.state&&$o.enqueueReplaceState(o,o.state,null),null!==(a=e.updateQueue)&&(So(e,a,n,o,i),o.state=e.memoizedState)),"function"==typeof o.componentDidMount&&(e.effectTag|=4)}var Mo=Array.isArray;function Io(e,t,n){if(null!==(e=n.ref)&&"function"!=typeof e&&"object"!==r(e)){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(l(309));var i=n.stateNode}if(!i)throw Error(l(147,e));var o=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===o?t.ref:((t=function(e){var t=i.refs;t===No&&(t=i.refs={}),null===e?delete t[o]:t[o]=e})._stringRef=o,t)}if("string"!=typeof e)throw Error(l(284));if(!n._owner)throw Error(l(290,e))}return e}function jo(e,t){if("textarea"!==e.type)throw Error(l(31,"[object Object]"===Object.prototype.toString.call(t)?"object with keys {"+Object.keys(t).join(", ")+"}":t,""))}function zo(e){function t(t,n){if(e){var r=t.lastEffect;null!==r?(r.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.effectTag=8}}function n(n,r){if(!e)return null;for(;null!==r;)t(n,r),r=r.sibling;return null}function i(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function o(e,t,n){return(e=Ys(e,t)).index=0,e.sibling=null,e}function a(t,n,r){return t.index=r,e?null!==(r=t.alternate)?(r=r.index)<n?(t.effectTag=2,n):r:(t.effectTag=2,n):n}function s(t){return e&&null===t.alternate&&(t.effectTag=2),t}function u(e,t,n,r){return null===t||6!==t.tag?((t=Zs(n,e.mode,r)).return=e,t):((t=o(t,n)).return=e,t)}function c(e,t,n,r){return null!==t&&t.elementType===n.type?((r=o(t,n.props)).ref=Io(e,t,n),r.return=e,r):((r=Gs(n.type,n.key,n.props,null,e.mode,r)).ref=Io(e,t,n),r.return=e,r)}function d(e,t,n,r){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?((t=eu(n,e.mode,r)).return=e,t):((t=o(t,n.children||[])).return=e,t)}function f(e,t,n,r,i){return null===t||7!==t.tag?((t=Js(n,e.mode,r,i)).return=e,t):((t=o(t,n)).return=e,t)}function p(e,t,n){if("string"==typeof t||"number"==typeof t)return(t=Zs(""+t,e.mode,n)).return=e,t;if("object"===r(t)&&null!==t){switch(t.$$typeof){case j:return(n=Gs(t.type,t.key,t.props,null,e.mode,n)).ref=Io(e,null,t),n.return=e,n;case z:return(t=eu(t,e.mode,n)).return=e,t}if(Mo(t)||G(t))return(t=Js(t,e.mode,n,null)).return=e,t;jo(e,t)}return null}function h(e,t,n,i){var o=null!==t?t.key:null;if("string"==typeof n||"number"==typeof n)return null!==o?null:u(e,t,""+n,i);if("object"===r(n)&&null!==n){switch(n.$$typeof){case j:return n.key===o?n.type===H?f(e,t,n.props.children,i,o):c(e,t,n,i):null;case z:return n.key===o?d(e,t,n,i):null}if(Mo(n)||G(n))return null!==o?null:f(e,t,n,i,null);jo(e,n)}return null}function m(e,t,n,i,o){if("string"==typeof i||"number"==typeof i)return u(t,e=e.get(n)||null,""+i,o);if("object"===r(i)&&null!==i){switch(i.$$typeof){case j:return e=e.get(null===i.key?n:i.key)||null,i.type===H?f(t,e,i.props.children,o,i.key):c(t,e,i,o);case z:return d(t,e=e.get(null===i.key?n:i.key)||null,i,o)}if(Mo(i)||G(i))return f(t,e=e.get(n)||null,i,o,null);jo(t,i)}return null}function v(r,o,l,s){for(var u=null,c=null,d=o,f=o=0,v=null;null!==d&&f<l.length;f++){d.index>f?(v=d,d=null):v=d.sibling;var y=h(r,d,l[f],s);if(null===y){null===d&&(d=v);break}e&&d&&null===y.alternate&&t(r,d),o=a(y,o,f),null===c?u=y:c.sibling=y,c=y,d=v}if(f===l.length)return n(r,d),u;if(null===d){for(;f<l.length;f++)null!==(d=p(r,l[f],s))&&(o=a(d,o,f),null===c?u=d:c.sibling=d,c=d);return u}for(d=i(r,d);f<l.length;f++)null!==(v=m(d,r,f,l[f],s))&&(e&&null!==v.alternate&&d.delete(null===v.key?f:v.key),o=a(v,o,f),null===c?u=v:c.sibling=v,c=v);return e&&d.forEach((function(e){return t(r,e)})),u}function y(r,o,s,u){var c=G(s);if("function"!=typeof c)throw Error(l(150));if(null==(s=c.call(s)))throw Error(l(151));for(var d=c=null,f=o,v=o=0,y=null,g=s.next();null!==f&&!g.done;v++,g=s.next()){f.index>v?(y=f,f=null):y=f.sibling;var b=h(r,f,g.value,u);if(null===b){null===f&&(f=y);break}e&&f&&null===b.alternate&&t(r,f),o=a(b,o,v),null===d?c=b:d.sibling=b,d=b,f=y}if(g.done)return n(r,f),c;if(null===f){for(;!g.done;v++,g=s.next())null!==(g=p(r,g.value,u))&&(o=a(g,o,v),null===d?c=g:d.sibling=g,d=g);return c}for(f=i(r,f);!g.done;v++,g=s.next())null!==(g=m(f,r,v,g.value,u))&&(e&&null!==g.alternate&&f.delete(null===g.key?v:g.key),o=a(g,o,v),null===d?c=g:d.sibling=g,d=g);return e&&f.forEach((function(e){return t(r,e)})),c}return function(e,i,a,u){var c="object"===r(a)&&null!==a&&a.type===H&&null===a.key;c&&(a=a.props.children);var d="object"===r(a)&&null!==a;if(d)switch(a.$$typeof){case j:e:{for(d=a.key,c=i;null!==c;){if(c.key===d){if(7===c.tag?a.type===H:c.elementType===a.type){n(e,c.sibling),(i=o(c,a.type===H?a.props.children:a.props)).ref=Io(e,c,a),i.return=e,e=i;break e}n(e,c);break}t(e,c),c=c.sibling}a.type===H?((i=Js(a.props.children,e.mode,u,a.key)).return=e,e=i):((u=Gs(a.type,a.key,a.props,null,e.mode,u)).ref=Io(e,i,a),u.return=e,e=u)}return s(e);case z:e:{for(c=a.key;null!==i;){if(i.key===c){if(4===i.tag&&i.stateNode.containerInfo===a.containerInfo&&i.stateNode.implementation===a.implementation){n(e,i.sibling),(i=o(i,a.children||[])).return=e,e=i;break e}n(e,i);break}t(e,i),i=i.sibling}(i=eu(a,e.mode,u)).return=e,e=i}return s(e)}if("string"==typeof a||"number"==typeof a)return a=""+a,null!==i&&6===i.tag?(n(e,i.sibling),(i=o(i,a)).return=e,e=i):(n(e,i),(i=Zs(a,e.mode,u)).return=e,e=i),s(e);if(Mo(a))return v(e,i,a,u);if(G(a))return y(e,i,a,u);if(d&&jo(e,a),void 0===a&&!c)switch(e.tag){case 1:case 0:throw e=e.type,Error(l(152,e.displayName||e.name||"Component"))}return n(e,i)}}var Ho=zo(!0),Ro=zo(!1),Fo={},Uo={current:Fo},qo={current:Fo},Wo={current:Fo};function Bo(e){if(e===Fo)throw Error(l(174));return e}function Vo(e,t){vi(Wo,t),vi(qo,e),vi(Uo,Fo);var n=t.nodeType;switch(n){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:Ue(null,"");break;default:t=Ue(t=(n=8===n?t.parentNode:t).namespaceURI||null,n=n.tagName)}mi(Uo),vi(Uo,t)}function Xo(e){mi(Uo),mi(qo),mi(Wo)}function Qo(e){Bo(Wo.current);var t=Bo(Uo.current),n=Ue(t,e.type);t!==n&&(vi(qo,e),vi(Uo,n))}function Ko(e){qo.current===e&&(mi(Uo),mi(qo))}var Yo={current:0};function Go(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||n.data===er||n.data===tr))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(64&t.effectTag))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}function Jo(e,t){return{responder:e,props:t}}var Zo=D.ReactCurrentDispatcher,ea=D.ReactCurrentBatchConfig,ta=0,na=null,ra=null,ia=null,oa=null,aa=null,la=null,sa=0,ua=null,ca=0,da=!1,fa=null,pa=0;function ha(){throw Error(l(321))}function ma(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!ni(e[n],t[n]))return!1;return!0}function va(e,t,n,r,i,o){if(ta=o,na=t,ia=null!==e?e.memoizedState:null,Zo.current=null===ia?Ma:Ia,t=n(r,i),da){do{da=!1,pa+=1,ia=null!==e?e.memoizedState:null,la=oa,ua=aa=ra=null,Zo.current=Ia,t=n(r,i)}while(da);fa=null,pa=0}if(Zo.current=Da,(e=na).memoizedState=oa,e.expirationTime=sa,e.updateQueue=ua,e.effectTag|=ca,e=null!==ra&&null!==ra.next,ta=0,la=aa=oa=ia=ra=na=null,sa=0,ua=null,ca=0,e)throw Error(l(300));return t}function ya(){Zo.current=Da,ta=0,la=aa=oa=ia=ra=na=null,sa=0,ua=null,ca=0,da=!1,fa=null,pa=0}function ga(){var e={memoizedState:null,baseState:null,queue:null,baseUpdate:null,next:null};return null===aa?oa=aa=e:aa=aa.next=e,aa}function ba(){if(null!==la)la=(aa=la).next,ia=null!==(ra=ia)?ra.next:null;else{if(null===ia)throw Error(l(310));var e={memoizedState:(ra=ia).memoizedState,baseState:ra.baseState,queue:ra.queue,baseUpdate:ra.baseUpdate,next:null};aa=null===aa?oa=e:aa.next=e,ia=ra.next}return aa}function wa(e,t){return"function"==typeof t?t(e):t}function ka(e){var t=ba(),n=t.queue;if(null===n)throw Error(l(311));if(n.lastRenderedReducer=e,0<pa){var r=n.dispatch;if(null!==fa){var i=fa.get(n);if(void 0!==i){fa.delete(n);var o=t.memoizedState;do{o=e(o,i.action),i=i.next}while(null!==i);return ni(o,t.memoizedState)||(Xa=!0),t.memoizedState=o,t.baseUpdate===n.last&&(t.baseState=o),n.lastRenderedState=o,[o,r]}}return[t.memoizedState,r]}r=n.last;var a=t.baseUpdate;if(o=t.baseState,null!==a?(null!==r&&(r.next=null),r=a.next):r=null!==r?r.next:null,null!==r){var s=i=null,u=r,c=!1;do{var d=u.expirationTime;d<ta?(c||(c=!0,s=a,i=o),d>sa&&$s(sa=d)):(As(d,u.suspenseConfig),o=u.eagerReducer===e?u.eagerState:e(o,u.action)),a=u,u=u.next}while(null!==u&&u!==r);c||(s=a,i=o),ni(o,t.memoizedState)||(Xa=!0),t.memoizedState=o,t.baseUpdate=s,t.baseState=i,n.lastRenderedState=o}return[t.memoizedState,n.dispatch]}function xa(e){var t=ga();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={last:null,dispatch:null,lastRenderedReducer:wa,lastRenderedState:e}).dispatch=La.bind(null,na,e),[t.memoizedState,e]}function Ta(e){return ka(wa)}function Sa(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},null===ua?(ua={lastEffect:null}).lastEffect=e.next=e:null===(t=ua.lastEffect)?ua.lastEffect=e.next=e:(n=t.next,t.next=e,e.next=n,ua.lastEffect=e),e}function Ca(e,t,n,r){var i=ga();ca|=e,i.memoizedState=Sa(t,n,void 0,void 0===r?null:r)}function Ea(e,t,n,r){var i=ba();r=void 0===r?null:r;var o=void 0;if(null!==ra){var a=ra.memoizedState;if(o=a.destroy,null!==r&&ma(r,a.deps))return void Sa(0,n,o,r)}ca|=e,i.memoizedState=Sa(t,n,o,r)}function Pa(e,t){return Ca(516,192,e,t)}function Na(e,t){return Ea(516,192,e,t)}function Aa(e,t){return"function"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function $a(){}function Oa(e,t){return ga().memoizedState=[e,void 0===t?null:t],e}function _a(e,t){var n=ba();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&ma(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function La(e,t,n){if(!(25>pa))throw Error(l(301));var r=e.alternate;if(e===na||null!==r&&r===na)if(da=!0,e={expirationTime:ta,suspenseConfig:null,action:n,eagerReducer:null,eagerState:null,next:null},null===fa&&(fa=new Map),void 0===(n=fa.get(t)))fa.set(t,e);else{for(t=n;null!==t.next;)t=t.next;t.next=e}else{var i=vs(),o=Po.suspense;o={expirationTime:i=ys(i,e,o),suspenseConfig:o,action:n,eagerReducer:null,eagerState:null,next:null};var a=t.last;if(null===a)o.next=o;else{var s=a.next;null!==s&&(o.next=s),a.next=o}if(t.last=o,0===e.expirationTime&&(null===r||0===r.expirationTime)&&null!==(r=t.lastRenderedReducer))try{var u=t.lastRenderedState,c=r(u,n);if(o.eagerReducer=r,o.eagerState=c,ni(c,u))return}catch(e){}gs(e,i)}}var Da={readContext:ho,useCallback:ha,useContext:ha,useEffect:ha,useImperativeHandle:ha,useLayoutEffect:ha,useMemo:ha,useReducer:ha,useRef:ha,useState:ha,useDebugValue:ha,useResponder:ha,useDeferredValue:ha,useTransition:ha},Ma={readContext:ho,useCallback:Oa,useContext:ho,useEffect:Pa,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,Ca(4,36,Aa.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Ca(4,36,e,t)},useMemo:function(e,t){var n=ga();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=ga();return t=void 0!==n?n(t):t,r.memoizedState=r.baseState=t,e=(e=r.queue={last:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=La.bind(null,na,e),[r.memoizedState,e]},useRef:function(e){return e={current:e},ga().memoizedState=e},useState:xa,useDebugValue:$a,useResponder:Jo,useDeferredValue:function(e,t){var n=xa(e),r=n[0],i=n[1];return Pa((function(){a.unstable_next((function(){var n=ea.suspense;ea.suspense=void 0===t?null:t;try{i(e)}finally{ea.suspense=n}}))}),[e,t]),r},useTransition:function(e){var t=xa(!1),n=t[0],r=t[1];return[Oa((function(t){r(!0),a.unstable_next((function(){var n=ea.suspense;ea.suspense=void 0===e?null:e;try{r(!1),t()}finally{ea.suspense=n}}))}),[e,n]),n]}},Ia={readContext:ho,useCallback:_a,useContext:ho,useEffect:Na,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,Ea(4,36,Aa.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Ea(4,36,e,t)},useMemo:function(e,t){var n=ba();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&ma(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)},useReducer:ka,useRef:function(){return ba().memoizedState},useState:Ta,useDebugValue:$a,useResponder:Jo,useDeferredValue:function(e,t){var n=Ta(),r=n[0],i=n[1];return Na((function(){a.unstable_next((function(){var n=ea.suspense;ea.suspense=void 0===t?null:t;try{i(e)}finally{ea.suspense=n}}))}),[e,t]),r},useTransition:function(e){var t=Ta(),n=t[0],r=t[1];return[_a((function(t){r(!0),a.unstable_next((function(){var n=ea.suspense;ea.suspense=void 0===e?null:e;try{r(!1),t()}finally{ea.suspense=n}}))}),[e,n]),n]}},ja=null,za=null,Ha=!1;function Ra(e,t){var n=Qs(5,null,null,0);n.elementType="DELETED",n.type="DELETED",n.stateNode=t,n.return=e,n.effectTag=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Fa(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,!0);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,!0);case 13:default:return!1}}function Ua(e){if(Ha){var t=za;if(t){var n=t;if(!Fa(e,t)){if(!(t=sr(n.nextSibling))||!Fa(e,t))return e.effectTag=-1025&e.effectTag|2,Ha=!1,void(ja=e);Ra(ja,n)}ja=e,za=sr(t.firstChild)}else e.effectTag=-1025&e.effectTag|2,Ha=!1,ja=e}}function qa(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;ja=e}function Wa(e){if(e!==ja)return!1;if(!Ha)return qa(e),Ha=!0,!1;var t=e.type;if(5!==e.tag||"head"!==t&&"body"!==t&&!or(t,e.memoizedProps))for(t=za;t;)Ra(e,t),t=sr(t.nextSibling);if(qa(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(l(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if(n===Zn){if(0===t){za=sr(e.nextSibling);break e}t--}else n!==Jn&&n!==tr&&n!==er||t++}e=e.nextSibling}za=null}}else za=ja?sr(e.stateNode.nextSibling):null;return!0}function Ba(){za=ja=null,Ha=!1}var Va=D.ReactCurrentOwner,Xa=!1;function Qa(e,t,n,r){t.child=null===e?Ro(t,null,n,r):Ho(t,e.child,n,r)}function Ka(e,t,n,r,i){n=n.render;var o=t.ref;return po(t,i),r=va(e,t,n,r,o,i),null===e||Xa?(t.effectTag|=1,Qa(e,t,r,i),t.child):(t.updateQueue=e.updateQueue,t.effectTag&=-517,e.expirationTime<=i&&(e.expirationTime=0),fl(e,t,i))}function Ya(e,t,n,r,i,o){if(null===e){var a=n.type;return"function"!=typeof a||Ks(a)||void 0!==a.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=Gs(n.type,null,r,null,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=a,Ga(e,t,a,r,i,o))}return a=e.child,i<o&&(i=a.memoizedProps,(n=null!==(n=n.compare)?n:ii)(i,r)&&e.ref===t.ref)?fl(e,t,o):(t.effectTag|=1,(e=Ys(a,r)).ref=t.ref,e.return=t,t.child=e)}function Ga(e,t,n,r,i,o){return null!==e&&ii(e.memoizedProps,r)&&e.ref===t.ref&&(Xa=!1,i<o)?fl(e,t,o):Za(e,t,n,r,o)}function Ja(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.effectTag|=128)}function Za(e,t,n,r,i){var o=xi(n)?wi:gi.current;return o=ki(t,o),po(t,i),n=va(e,t,n,r,o,i),null===e||Xa?(t.effectTag|=1,Qa(e,t,n,i),t.child):(t.updateQueue=e.updateQueue,t.effectTag&=-517,e.expirationTime<=i&&(e.expirationTime=0),fl(e,t,i))}function el(e,t,n,i,o){if(xi(n)){var a=!0;Pi(t)}else a=!1;if(po(t,o),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),_o(t,n,i),Do(t,n,i,o),i=!0;else if(null===e){var l=t.stateNode,s=t.memoizedProps;l.props=s;var u=l.context,c=n.contextType;"object"===r(c)&&null!==c?c=ho(c):c=ki(t,c=xi(n)?wi:gi.current);var d=n.getDerivedStateFromProps,f="function"==typeof d||"function"==typeof l.getSnapshotBeforeUpdate;f||"function"!=typeof l.UNSAFE_componentWillReceiveProps&&"function"!=typeof l.componentWillReceiveProps||(s!==i||u!==c)&&Lo(t,l,i,c),mo=!1;var p=t.memoizedState;u=l.state=p;var h=t.updateQueue;null!==h&&(So(t,h,i,l,o),u=t.memoizedState),s!==i||p!==u||bi.current||mo?("function"==typeof d&&(Ao(t,n,d,i),u=t.memoizedState),(s=mo||Oo(t,n,s,i,p,u,c))?(f||"function"!=typeof l.UNSAFE_componentWillMount&&"function"!=typeof l.componentWillMount||("function"==typeof l.componentWillMount&&l.componentWillMount(),"function"==typeof l.UNSAFE_componentWillMount&&l.UNSAFE_componentWillMount()),"function"==typeof l.componentDidMount&&(t.effectTag|=4)):("function"==typeof l.componentDidMount&&(t.effectTag|=4),t.memoizedProps=i,t.memoizedState=u),l.props=i,l.state=u,l.context=c,i=s):("function"==typeof l.componentDidMount&&(t.effectTag|=4),i=!1)}else l=t.stateNode,s=t.memoizedProps,l.props=t.type===t.elementType?s:ro(t.type,s),u=l.context,"object"===r(c=n.contextType)&&null!==c?c=ho(c):c=ki(t,c=xi(n)?wi:gi.current),(f="function"==typeof(d=n.getDerivedStateFromProps)||"function"==typeof l.getSnapshotBeforeUpdate)||"function"!=typeof l.UNSAFE_componentWillReceiveProps&&"function"!=typeof l.componentWillReceiveProps||(s!==i||u!==c)&&Lo(t,l,i,c),mo=!1,u=t.memoizedState,p=l.state=u,null!==(h=t.updateQueue)&&(So(t,h,i,l,o),p=t.memoizedState),s!==i||u!==p||bi.current||mo?("function"==typeof d&&(Ao(t,n,d,i),p=t.memoizedState),(d=mo||Oo(t,n,s,i,u,p,c))?(f||"function"!=typeof l.UNSAFE_componentWillUpdate&&"function"!=typeof l.componentWillUpdate||("function"==typeof l.componentWillUpdate&&l.componentWillUpdate(i,p,c),"function"==typeof l.UNSAFE_componentWillUpdate&&l.UNSAFE_componentWillUpdate(i,p,c)),"function"==typeof l.componentDidUpdate&&(t.effectTag|=4),"function"==typeof l.getSnapshotBeforeUpdate&&(t.effectTag|=256)):("function"!=typeof l.componentDidUpdate||s===e.memoizedProps&&u===e.memoizedState||(t.effectTag|=4),"function"!=typeof l.getSnapshotBeforeUpdate||s===e.memoizedProps&&u===e.memoizedState||(t.effectTag|=256),t.memoizedProps=i,t.memoizedState=p),l.props=i,l.state=p,l.context=c,i=d):("function"!=typeof l.componentDidUpdate||s===e.memoizedProps&&u===e.memoizedState||(t.effectTag|=4),"function"!=typeof l.getSnapshotBeforeUpdate||s===e.memoizedProps&&u===e.memoizedState||(t.effectTag|=256),i=!1);return tl(e,t,n,i,a,o)}function tl(e,t,n,r,i,o){Ja(e,t);var a=0!=(64&t.effectTag);if(!r&&!a)return i&&Ni(t,n,!1),fl(e,t,o);r=t.stateNode,Va.current=t;var l=a&&"function"!=typeof n.getDerivedStateFromError?null:r.render();return t.effectTag|=1,null!==e&&a?(t.child=Ho(t,e.child,null,o),t.child=Ho(t,null,l,o)):Qa(e,t,l,o),t.memoizedState=r.state,i&&Ni(t,n,!0),t.child}function nl(e){var t=e.stateNode;t.pendingContext?Ci(0,t.pendingContext,t.pendingContext!==t.context):t.context&&Ci(0,t.context,!1),Vo(e,t.containerInfo)}var rl,il,ol,al,ll={dehydrated:null,retryTime:0};function sl(e,t,n){var r,i=t.mode,o=t.pendingProps,a=Yo.current,l=!1;if((r=0!=(64&t.effectTag))||(r=0!=(2&a)&&(null===e||null!==e.memoizedState)),r?(l=!0,t.effectTag&=-65):null!==e&&null===e.memoizedState||void 0===o.fallback||!0===o.unstable_avoidThisFallback||(a|=1),vi(Yo,1&a),null===e){if(void 0!==o.fallback&&Ua(t),l){if(l=o.fallback,(o=Js(null,i,0,null)).return=t,0==(2&t.mode))for(e=null!==t.memoizedState?t.child.child:t.child,o.child=e;null!==e;)e.return=o,e=e.sibling;return(n=Js(l,i,n,null)).return=t,o.sibling=n,t.memoizedState=ll,t.child=o,n}return i=o.children,t.memoizedState=null,t.child=Ro(t,null,i,n)}if(null!==e.memoizedState){if(i=(e=e.child).sibling,l){if(o=o.fallback,(n=Ys(e,e.pendingProps)).return=t,0==(2&t.mode)&&(l=null!==t.memoizedState?t.child.child:t.child)!==e.child)for(n.child=l;null!==l;)l.return=n,l=l.sibling;return(i=Ys(i,o,i.expirationTime)).return=t,n.sibling=i,n.childExpirationTime=0,t.memoizedState=ll,t.child=n,i}return n=Ho(t,e.child,o.children,n),t.memoizedState=null,t.child=n}if(e=e.child,l){if(l=o.fallback,(o=Js(null,i,0,null)).return=t,o.child=e,null!==e&&(e.return=o),0==(2&t.mode))for(e=null!==t.memoizedState?t.child.child:t.child,o.child=e;null!==e;)e.return=o,e=e.sibling;return(n=Js(l,i,n,null)).return=t,o.sibling=n,n.effectTag|=2,o.childExpirationTime=0,t.memoizedState=ll,t.child=o,n}return t.memoizedState=null,t.child=Ho(t,e,o.children,n)}function ul(e,t){e.expirationTime<t&&(e.expirationTime=t);var n=e.alternate;null!==n&&n.expirationTime<t&&(n.expirationTime=t),fo(e.return,t)}function cl(e,t,n,r,i,o){var a=e.memoizedState;null===a?e.memoizedState={isBackwards:t,rendering:null,last:r,tail:n,tailExpiration:0,tailMode:i,lastEffect:o}:(a.isBackwards=t,a.rendering=null,a.last=r,a.tail=n,a.tailExpiration=0,a.tailMode=i,a.lastEffect=o)}function dl(e,t,n){var r=t.pendingProps,i=r.revealOrder,o=r.tail;if(Qa(e,t,r.children,n),0!=(2&(r=Yo.current)))r=1&r|2,t.effectTag|=64;else{if(null!==e&&0!=(64&e.effectTag))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&ul(e,n);else if(19===e.tag)ul(e,n);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}r&=1}if(vi(Yo,r),0==(2&t.mode))t.memoizedState=null;else switch(i){case"forwards":for(n=t.child,i=null;null!==n;)null!==(e=n.alternate)&&null===Go(e)&&(i=n),n=n.sibling;null===(n=i)?(i=t.child,t.child=null):(i=n.sibling,n.sibling=null),cl(t,!1,i,n,o,t.lastEffect);break;case"backwards":for(n=null,i=t.child,t.child=null;null!==i;){if(null!==(e=i.alternate)&&null===Go(e)){t.child=i;break}e=i.sibling,i.sibling=n,n=i,i=e}cl(t,!0,n,null,o,t.lastEffect);break;case"together":cl(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function fl(e,t,n){null!==e&&(t.dependencies=e.dependencies);var r=t.expirationTime;if(0!==r&&$s(r),t.childExpirationTime<n)return null;if(null!==e&&t.child!==e.child)throw Error(l(153));if(null!==t.child){for(n=Ys(e=t.child,e.pendingProps,e.expirationTime),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Ys(e,e.pendingProps,e.expirationTime)).return=t;n.sibling=null}return t.child}function pl(e){e.effectTag|=4}function hl(e,t){switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var r=null;null!==n;)null!==n.alternate&&(r=n),n=n.sibling;null===r?t||null===e.tail?e.tail=null:e.tail.sibling=null:r.sibling=null}}function ml(e){switch(e.tag){case 1:xi(e.type)&&Ti();var t=e.effectTag;return 4096&t?(e.effectTag=-4097&t|64,e):null;case 3:if(Xo(),Si(),0!=(64&(t=e.effectTag)))throw Error(l(285));return e.effectTag=-4097&t|64,e;case 5:return Ko(e),null;case 13:return mi(Yo),4096&(t=e.effectTag)?(e.effectTag=-4097&t|64,e):null;case 19:return mi(Yo),null;case 4:return Xo(),null;case 10:return co(e),null;default:return null}}function vl(e,t){return{value:e,source:t,stack:Z(t)}}rl=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},il=function(){},ol=function(e,t,n,r,i){var a=e.memoizedProps;if(a!==r){var l,s,u=t.stateNode;switch(Bo(Uo.current),e=null,n){case"input":a=Ne(u,a),r=Ne(u,r),e=[];break;case"option":a=De(u,a),r=De(u,r),e=[];break;case"select":a=o({},a,{value:void 0}),r=o({},r,{value:void 0}),e=[];break;case"textarea":a=Ie(u,a),r=Ie(u,r),e=[];break;default:"function"!=typeof a.onClick&&"function"==typeof r.onClick&&(u.onclick=Vn)}for(l in qn(n,r),n=null,a)if(!r.hasOwnProperty(l)&&a.hasOwnProperty(l)&&null!=a[l])if("style"===l)for(s in u=a[l])u.hasOwnProperty(s)&&(n||(n={}),n[s]="");else"dangerouslySetInnerHTML"!==l&&"children"!==l&&"suppressContentEditableWarning"!==l&&"suppressHydrationWarning"!==l&&"autoFocus"!==l&&(h.hasOwnProperty(l)?e||(e=[]):(e=e||[]).push(l,null));for(l in r){var c=r[l];if(u=null!=a?a[l]:void 0,r.hasOwnProperty(l)&&c!==u&&(null!=c||null!=u))if("style"===l)if(u){for(s in u)!u.hasOwnProperty(s)||c&&c.hasOwnProperty(s)||(n||(n={}),n[s]="");for(s in c)c.hasOwnProperty(s)&&u[s]!==c[s]&&(n||(n={}),n[s]=c[s])}else n||(e||(e=[]),e.push(l,n)),n=c;else"dangerouslySetInnerHTML"===l?(c=c?c.__html:void 0,u=u?u.__html:void 0,null!=c&&u!==c&&(e=e||[]).push(l,""+c)):"children"===l?u===c||"string"!=typeof c&&"number"!=typeof c||(e=e||[]).push(l,""+c):"suppressContentEditableWarning"!==l&&"suppressHydrationWarning"!==l&&(h.hasOwnProperty(l)?(null!=c&&Bn(i,l),e||u===c||(e=[])):(e=e||[]).push(l,c))}n&&(e=e||[]).push("style",n),i=e,(t.updateQueue=i)&&pl(t)}},al=function(e,t,n,r){n!==r&&pl(t)};var yl="function"==typeof WeakSet?WeakSet:Set;function gl(e,t){var n=t.source,r=t.stack;null===r&&null!==n&&(r=Z(n)),null!==n&&J(n.type),t=t.value,null!==e&&1===e.tag&&J(e.type);try{console.error(t)}catch(e){setTimeout((function(){throw e}))}}function bl(e){var t=e.ref;if(null!==t)if("function"==typeof t)try{t(null)}catch(t){Us(e,t)}else t.current=null}function wl(e,t){switch(t.tag){case 0:case 11:case 15:kl(2,0,t);break;case 1:if(256&t.effectTag&&null!==e){var n=e.memoizedProps,r=e.memoizedState;t=(e=t.stateNode).getSnapshotBeforeUpdate(t.elementType===t.type?n:ro(t.type,n),r),e.__reactInternalSnapshotBeforeUpdate=t}break;case 3:case 5:case 6:case 4:case 17:break;default:throw Error(l(163))}}function kl(e,t,n){if(null!==(n=null!==(n=n.updateQueue)?n.lastEffect:null)){var r=n=n.next;do{if(0!=(r.tag&e)){var i=r.destroy;r.destroy=void 0,void 0!==i&&i()}0!=(r.tag&t)&&(i=r.create,r.destroy=i()),r=r.next}while(r!==n)}}function xl(e,t,n){switch("function"==typeof Vs&&Vs(t),t.tag){case 0:case 11:case 14:case 15:if(null!==(e=t.updateQueue)&&null!==(e=e.lastEffect)){var r=e.next;Yi(97<n?97:n,(function(){var e=r;do{var n=e.destroy;if(void 0!==n){var i=t;try{n()}catch(e){Us(i,e)}}e=e.next}while(e!==r)}))}break;case 1:bl(t),"function"==typeof(n=t.stateNode).componentWillUnmount&&function(e,t){try{t.props=e.memoizedProps,t.state=e.memoizedState,t.componentWillUnmount()}catch(t){Us(e,t)}}(t,n);break;case 5:bl(t);break;case 4:El(e,t,n)}}function Tl(e){var t=e.alternate;e.return=null,e.child=null,e.memoizedState=null,e.updateQueue=null,e.dependencies=null,e.alternate=null,e.firstEffect=null,e.lastEffect=null,e.pendingProps=null,e.memoizedProps=null,null!==t&&Tl(t)}function Sl(e){return 5===e.tag||3===e.tag||4===e.tag}function Cl(e){e:{for(var t=e.return;null!==t;){if(Sl(t)){var n=t;break e}t=t.return}throw Error(l(160))}switch(t=n.stateNode,n.tag){case 5:var r=!1;break;case 3:case 4:t=t.containerInfo,r=!0;break;default:throw Error(l(161))}16&n.effectTag&&(Be(t,""),n.effectTag&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||Sl(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag&&18!==n.tag;){if(2&n.effectTag)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.effectTag)){n=n.stateNode;break e}}for(var i=e;;){var o=5===i.tag||6===i.tag;if(o){var a=o?i.stateNode:i.stateNode.instance;if(n)if(r){var s=a;a=n,8===(o=t).nodeType?o.parentNode.insertBefore(s,a):o.insertBefore(s,a)}else t.insertBefore(a,n);else r?(8===(s=t).nodeType?(o=s.parentNode).insertBefore(a,s):(o=s).appendChild(a),null!=(s=s._reactRootContainer)||null!==o.onclick||(o.onclick=Vn)):t.appendChild(a)}else if(4!==i.tag&&null!==i.child){i.child.return=i,i=i.child;continue}if(i===e)break;for(;null===i.sibling;){if(null===i.return||i.return===e)return;i=i.return}i.sibling.return=i.return,i=i.sibling}}function El(e,t,n){for(var r,i,o=t,a=!1;;){if(!a){a=o.return;e:for(;;){if(null===a)throw Error(l(160));switch(r=a.stateNode,a.tag){case 5:i=!1;break e;case 3:case 4:r=r.containerInfo,i=!0;break e}a=a.return}a=!0}if(5===o.tag||6===o.tag){e:for(var s=e,u=o,c=n,d=u;;)if(xl(s,d,c),null!==d.child&&4!==d.tag)d.child.return=d,d=d.child;else{if(d===u)break;for(;null===d.sibling;){if(null===d.return||d.return===u)break e;d=d.return}d.sibling.return=d.return,d=d.sibling}i?(s=r,u=o.stateNode,8===s.nodeType?s.parentNode.removeChild(u):s.removeChild(u)):r.removeChild(o.stateNode)}else if(4===o.tag){if(null!==o.child){r=o.stateNode.containerInfo,i=!0,o.child.return=o,o=o.child;continue}}else if(xl(e,o,n),null!==o.child){o.child.return=o,o=o.child;continue}if(o===t)break;for(;null===o.sibling;){if(null===o.return||o.return===t)return;4===(o=o.return).tag&&(a=!1)}o.sibling.return=o.return,o=o.sibling}}function Pl(e,t){switch(t.tag){case 0:case 11:case 14:case 15:kl(4,8,t);break;case 1:break;case 5:var n=t.stateNode;if(null!=n){var r=t.memoizedProps,i=null!==e?e.memoizedProps:r;e=t.type;var o=t.updateQueue;if(t.updateQueue=null,null!==o){for(n[fr]=r,"input"===e&&"radio"===r.type&&null!=r.name&&$e(n,r),Wn(e,i),t=Wn(e,r),i=0;i<o.length;i+=2){var a=o[i],s=o[i+1];"style"===a?Fn(n,s):"dangerouslySetInnerHTML"===a?We(n,s):"children"===a?Be(n,s):Se(n,a,s,t)}switch(e){case"input":Oe(n,r);break;case"textarea":ze(n,r);break;case"select":t=n._wrapperState.wasMultiple,n._wrapperState.wasMultiple=!!r.multiple,null!=(e=r.value)?Me(n,!!r.multiple,e,!1):t!==!!r.multiple&&(null!=r.defaultValue?Me(n,!!r.multiple,r.defaultValue,!0):Me(n,!!r.multiple,r.multiple?[]:"",!1))}}}break;case 6:if(null===t.stateNode)throw Error(l(162));t.stateNode.nodeValue=t.memoizedProps;break;case 3:(t=t.stateNode).hydrate&&(t.hydrate=!1,Pt(t.containerInfo));break;case 12:break;case 13:if(n=t,null===t.memoizedState?r=!1:(r=!0,n=t.child,rs=Xi()),null!==n)e:for(e=n;;){if(5===e.tag)o=e.stateNode,r?"function"==typeof(o=o.style).setProperty?o.setProperty("display","none","important"):o.display="none":(o=e.stateNode,i=null!=(i=e.memoizedProps.style)&&i.hasOwnProperty("display")?i.display:null,o.style.display=Rn("display",i));else if(6===e.tag)e.stateNode.nodeValue=r?"":e.memoizedProps;else{if(13===e.tag&&null!==e.memoizedState&&null===e.memoizedState.dehydrated){(o=e.child.sibling).return=e,e=o;continue}if(null!==e.child){e.child.return=e,e=e.child;continue}}if(e===n)break e;for(;null===e.sibling;){if(null===e.return||e.return===n)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}Nl(t);break;case 19:Nl(t);break;case 17:case 20:case 21:break;default:throw Error(l(163))}}function Nl(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new yl),t.forEach((function(t){var r=Ws.bind(null,e,t);n.has(t)||(n.add(t),t.then(r,r))}))}}var Al="function"==typeof WeakMap?WeakMap:Map;function $l(e,t,n){(n=go(n,null)).tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){as||(as=!0,ls=r),gl(e,t)},n}function Ol(e,t,n){(n=go(n,null)).tag=3;var r=e.type.getDerivedStateFromError;if("function"==typeof r){var i=t.value;n.payload=function(){return gl(e,t),r(i)}}var o=e.stateNode;return null!==o&&"function"==typeof o.componentDidCatch&&(n.callback=function(){"function"!=typeof r&&(null===ss?ss=new Set([this]):ss.add(this),gl(e,t));var n=t.stack;this.componentDidCatch(t.value,{componentStack:null!==n?n:""})}),n}var _l,Ll=Math.ceil,Dl=D.ReactCurrentDispatcher,Ml=D.ReactCurrentOwner,Il=0,jl=8,zl=16,Hl=32,Rl=0,Fl=1,Ul=2,ql=3,Wl=4,Bl=5,Vl=Il,Xl=null,Ql=null,Kl=0,Yl=Rl,Gl=null,Jl=1073741823,Zl=1073741823,es=null,ts=0,ns=!1,rs=0,is=500,os=null,as=!1,ls=null,ss=null,us=!1,cs=null,ds=90,fs=null,ps=0,hs=null,ms=0;function vs(){return(Vl&(zl|Hl))!==Il?1073741821-(Xi()/10|0):0!==ms?ms:ms=1073741821-(Xi()/10|0)}function ys(e,t,n){if(0==(2&(t=t.mode)))return 1073741823;var r=Qi();if(0==(4&t))return 99===r?1073741823:1073741822;if((Vl&zl)!==Il)return Kl;if(null!==n)e=no(e,0|n.timeoutMs||5e3,250);else switch(r){case 99:e=1073741823;break;case 98:e=no(e,150,100);break;case 97:case 96:e=no(e,5e3,250);break;case 95:e=2;break;default:throw Error(l(326))}return null!==Xl&&e===Kl&&--e,e}function gs(e,t){if(50<ps)throw ps=0,hs=null,Error(l(185));if(null!==(e=bs(e,t))){var n=Qi();1073741823===t?(Vl&jl)!==Il&&(Vl&(zl|Hl))===Il?Ts(e):(ks(e),Vl===Il&&Zi()):ks(e),(4&Vl)===Il||98!==n&&99!==n||(null===fs?fs=new Map([[e,t]]):(void 0===(n=fs.get(e))||n>t)&&fs.set(e,t))}}function bs(e,t){e.expirationTime<t&&(e.expirationTime=t);var n=e.alternate;null!==n&&n.expirationTime<t&&(n.expirationTime=t);var r=e.return,i=null;if(null===r&&3===e.tag)i=e.stateNode;else for(;null!==r;){if(n=r.alternate,r.childExpirationTime<t&&(r.childExpirationTime=t),null!==n&&n.childExpirationTime<t&&(n.childExpirationTime=t),null===r.return&&3===r.tag){i=r.stateNode;break}r=r.return}return null!==i&&(Xl===i&&($s(t),Yl===Wl&&ru(i,Kl)),iu(i,t)),i}function ws(e){var t=e.lastExpiredTime;return 0!==t?t:nu(e,t=e.firstPendingTime)?(t=e.lastPingedTime)>(e=e.nextKnownPendingLevel)?t:e:t}function ks(e){if(0!==e.lastExpiredTime)e.callbackExpirationTime=1073741823,e.callbackPriority=99,e.callbackNode=Ji(Ts.bind(null,e));else{var t=ws(e),n=e.callbackNode;if(0===t)null!==n&&(e.callbackNode=null,e.callbackExpirationTime=0,e.callbackPriority=90);else{var r=vs();if(1073741823===t?r=99:1===t||2===t?r=95:r=0>=(r=10*(1073741821-t)-10*(1073741821-r))?99:250>=r?98:5250>=r?97:95,null!==n){var i=e.callbackPriority;if(e.callbackExpirationTime===t&&i>=r)return;n!==Fi&&Oi(n)}e.callbackExpirationTime=t,e.callbackPriority=r,t=1073741823===t?Ji(Ts.bind(null,e)):Gi(r,xs.bind(null,e),{timeout:10*(1073741821-t)-Xi()}),e.callbackNode=t}}}function xs(e,t){if(ms=0,t)return ou(e,t=vs()),ks(e),null;var n=ws(e);if(0!==n){if(t=e.callbackNode,(Vl&(zl|Hl))!==Il)throw Error(l(327));if(Hs(),e===Xl&&n===Kl||Es(e,n),null!==Ql){var r=Vl;Vl|=zl;for(var i=Ns();;)try{_s();break}catch(t){Ps(e,t)}if(so(),Vl=r,Dl.current=i,Yl===Fl)throw t=Gl,Es(e,n),ru(e,n),ks(e),t;if(null===Ql)switch(i=e.finishedWork=e.current.alternate,e.finishedExpirationTime=n,r=Yl,Xl=null,r){case Rl:case Fl:throw Error(l(345));case Ul:ou(e,2<n?2:n);break;case ql:if(ru(e,n),n===(r=e.lastSuspendedTime)&&(e.nextKnownPendingLevel=Ms(i)),1073741823===Jl&&10<(i=rs+is-Xi())){if(ns){var o=e.lastPingedTime;if(0===o||o>=n){e.lastPingedTime=n,Es(e,n);break}}if(0!==(o=ws(e))&&o!==n)break;if(0!==r&&r!==n){e.lastPingedTime=r;break}e.timeoutHandle=ar(Is.bind(null,e),i);break}Is(e);break;case Wl:if(ru(e,n),n===(r=e.lastSuspendedTime)&&(e.nextKnownPendingLevel=Ms(i)),ns&&(0===(i=e.lastPingedTime)||i>=n)){e.lastPingedTime=n,Es(e,n);break}if(0!==(i=ws(e))&&i!==n)break;if(0!==r&&r!==n){e.lastPingedTime=r;break}if(1073741823!==Zl?r=10*(1073741821-Zl)-Xi():1073741823===Jl?r=0:(r=10*(1073741821-Jl)-5e3,0>(r=(i=Xi())-r)&&(r=0),(n=10*(1073741821-n)-i)<(r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*Ll(r/1960))-r)&&(r=n)),10<r){e.timeoutHandle=ar(Is.bind(null,e),r);break}Is(e);break;case Bl:if(1073741823!==Jl&&null!==es){o=Jl;var a=es;if(0>=(r=0|a.busyMinDurationMs)?r=0:(i=0|a.busyDelayMs,r=(o=Xi()-(10*(1073741821-o)-(0|a.timeoutMs||5e3)))<=i?0:i+r-o),10<r){ru(e,n),e.timeoutHandle=ar(Is.bind(null,e),r);break}}Is(e);break;default:throw Error(l(329))}if(ks(e),e.callbackNode===t)return xs.bind(null,e)}}return null}function Ts(e){var t=e.lastExpiredTime;if(t=0!==t?t:1073741823,e.finishedExpirationTime===t)Is(e);else{if((Vl&(zl|Hl))!==Il)throw Error(l(327));if(Hs(),e===Xl&&t===Kl||Es(e,t),null!==Ql){var n=Vl;Vl|=zl;for(var r=Ns();;)try{Os();break}catch(t){Ps(e,t)}if(so(),Vl=n,Dl.current=r,Yl===Fl)throw n=Gl,Es(e,t),ru(e,t),ks(e),n;if(null!==Ql)throw Error(l(261));e.finishedWork=e.current.alternate,e.finishedExpirationTime=t,Xl=null,Is(e),ks(e)}}return null}function Ss(e,t){var n=Vl;Vl|=1;try{return e(t)}finally{(Vl=n)===Il&&Zi()}}function Cs(e,t){var n=Vl;Vl&=-2,Vl|=jl;try{return e(t)}finally{(Vl=n)===Il&&Zi()}}function Es(e,t){e.finishedWork=null,e.finishedExpirationTime=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,lr(n)),null!==Ql)for(n=Ql.return;null!==n;){var r=n;switch(r.tag){case 1:var i=r.type.childContextTypes;null!=i&&Ti();break;case 3:Xo(),Si();break;case 5:Ko(r);break;case 4:Xo();break;case 13:case 19:mi(Yo);break;case 10:co(r)}n=n.return}Xl=e,Ql=Ys(e.current,null),Kl=t,Yl=Rl,Gl=null,Zl=Jl=1073741823,es=null,ts=0,ns=!1}function Ps(e,t){for(;;){try{if(so(),ya(),null===Ql||null===Ql.return)return Yl=Fl,Gl=t,null;e:{var n=e,i=Ql.return,o=Ql,a=t;if(t=Kl,o.effectTag|=2048,o.firstEffect=o.lastEffect=null,null!==a&&"object"===r(a)&&"function"==typeof a.then){var l=a,s=0!=(1&Yo.current),u=i;do{var c;if(c=13===u.tag){var d=u.memoizedState;if(null!==d)c=null!==d.dehydrated;else{var f=u.memoizedProps;c=void 0!==f.fallback&&(!0!==f.unstable_avoidThisFallback||!s)}}if(c){var p=u.updateQueue;if(null===p){var h=new Set;h.add(l),u.updateQueue=h}else p.add(l);if(0==(2&u.mode)){if(u.effectTag|=64,o.effectTag&=-2981,1===o.tag)if(null===o.alternate)o.tag=17;else{var m=go(1073741823,null);m.tag=2,wo(o,m)}o.expirationTime=1073741823;break e}a=void 0,o=t;var v=n.pingCache;if(null===v?(v=n.pingCache=new Al,a=new Set,v.set(l,a)):void 0===(a=v.get(l))&&(a=new Set,v.set(l,a)),!a.has(o)){a.add(o);var y=qs.bind(null,n,l,o);l.then(y,y)}u.effectTag|=4096,u.expirationTime=t;break e}u=u.return}while(null!==u);a=Error((J(o.type)||"A React component")+" suspended while rendering, but no fallback UI was specified.\n\nAdd a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display."+Z(o))}Yl!==Bl&&(Yl=Ul),a=vl(a,o),u=i;do{switch(u.tag){case 3:l=a,u.effectTag|=4096,u.expirationTime=t,ko(u,$l(u,l,t));break e;case 1:l=a;var g=u.type,b=u.stateNode;if(0==(64&u.effectTag)&&("function"==typeof g.getDerivedStateFromError||null!==b&&"function"==typeof b.componentDidCatch&&(null===ss||!ss.has(b)))){u.effectTag|=4096,u.expirationTime=t,ko(u,Ol(u,l,t));break e}}u=u.return}while(null!==u)}Ql=Ds(Ql)}catch(e){t=e;continue}break}}function Ns(){var e=Dl.current;return Dl.current=Da,null===e?Da:e}function As(e,t){e<Jl&&2<e&&(Jl=e),null!==t&&e<Zl&&2<e&&(Zl=e,es=t)}function $s(e){e>ts&&(ts=e)}function Os(){for(;null!==Ql;)Ql=Ls(Ql)}function _s(){for(;null!==Ql&&!_i();)Ql=Ls(Ql)}function Ls(e){var t=_l(e.alternate,e,Kl);return e.memoizedProps=e.pendingProps,null===t&&(t=Ds(e)),Ml.current=null,t}function Ds(e){Ql=e;do{var t=Ql.alternate;if(e=Ql.return,0==(2048&Ql.effectTag)){e:{var n=t,r=Kl,i=(t=Ql).pendingProps;switch(t.tag){case 2:case 16:break;case 15:case 0:break;case 1:xi(t.type)&&Ti();break;case 3:Xo(),Si(),(i=t.stateNode).pendingContext&&(i.context=i.pendingContext,i.pendingContext=null),(null===n||null===n.child)&&Wa(t)&&pl(t),il(t);break;case 5:Ko(t),r=Bo(Wo.current);var a=t.type;if(null!==n&&null!=t.stateNode)ol(n,t,a,i,r),n.ref!==t.ref&&(t.effectTag|=128);else if(i){var s=Bo(Uo.current);if(Wa(t)){var u=(i=t).stateNode;n=i.type;var c=i.memoizedProps,d=r;switch(u[dr]=i,u[fr]=c,a=void 0,r=u,n){case"iframe":case"object":case"embed":Pn("load",r);break;case"video":case"audio":for(u=0;u<tt.length;u++)Pn(tt[u],r);break;case"source":Pn("error",r);break;case"img":case"image":case"link":Pn("error",r),Pn("load",r);break;case"form":Pn("reset",r),Pn("submit",r);break;case"details":Pn("toggle",r);break;case"input":Ae(r,c),Pn("invalid",r),Bn(d,"onChange");break;case"select":r._wrapperState={wasMultiple:!!c.multiple},Pn("invalid",r),Bn(d,"onChange");break;case"textarea":je(r,c),Pn("invalid",r),Bn(d,"onChange")}for(a in qn(n,c),u=null,c)c.hasOwnProperty(a)&&(s=c[a],"children"===a?"string"==typeof s?r.textContent!==s&&(u=["children",s]):"number"==typeof s&&r.textContent!==""+s&&(u=["children",""+s]):h.hasOwnProperty(a)&&null!=s&&Bn(d,a));switch(n){case"input":Ee(r),_e(r,c,!0);break;case"textarea":Ee(r),He(r);break;case"select":case"option":break;default:"function"==typeof c.onClick&&(r.onclick=Vn)}a=u,i.updateQueue=a,(i=null!==a)&&pl(t)}else{n=t,d=a,c=i,u=9===r.nodeType?r:r.ownerDocument,s===Re.html&&(s=Fe(d)),s===Re.html?"script"===d?((c=u.createElement("div")).innerHTML="<script><\/script>",u=c.removeChild(c.firstChild)):"string"==typeof c.is?u=u.createElement(d,{is:c.is}):(u=u.createElement(d),"select"===d&&(d=u,c.multiple?d.multiple=!0:c.size&&(d.size=c.size))):u=u.createElementNS(s,d),(c=u)[dr]=n,c[fr]=i,rl(c,t,!1,!1),t.stateNode=c;var f=r,p=Wn(d=a,n=i);switch(d){case"iframe":case"object":case"embed":Pn("load",c),r=n;break;case"video":case"audio":for(r=0;r<tt.length;r++)Pn(tt[r],c);r=n;break;case"source":Pn("error",c),r=n;break;case"img":case"image":case"link":Pn("error",c),Pn("load",c),r=n;break;case"form":Pn("reset",c),Pn("submit",c),r=n;break;case"details":Pn("toggle",c),r=n;break;case"input":Ae(c,n),r=Ne(c,n),Pn("invalid",c),Bn(f,"onChange");break;case"option":r=De(c,n);break;case"select":c._wrapperState={wasMultiple:!!n.multiple},r=o({},n,{value:void 0}),Pn("invalid",c),Bn(f,"onChange");break;case"textarea":je(c,n),r=Ie(c,n),Pn("invalid",c),Bn(f,"onChange");break;default:r=n}qn(d,r),u=void 0,s=d;var m=c,v=r;for(u in v)if(v.hasOwnProperty(u)){var y=v[u];"style"===u?Fn(m,y):"dangerouslySetInnerHTML"===u?null!=(y=y?y.__html:void 0)&&We(m,y):"children"===u?"string"==typeof y?("textarea"!==s||""!==y)&&Be(m,y):"number"==typeof y&&Be(m,""+y):"suppressContentEditableWarning"!==u&&"suppressHydrationWarning"!==u&&"autoFocus"!==u&&(h.hasOwnProperty(u)?null!=y&&Bn(f,u):null!=y&&Se(m,u,y,p))}switch(d){case"input":Ee(c),_e(c,n,!1);break;case"textarea":Ee(c),He(c);break;case"option":null!=n.value&&c.setAttribute("value",""+Te(n.value));break;case"select":(r=c).multiple=!!n.multiple,null!=(c=n.value)?Me(r,!!n.multiple,c,!1):null!=n.defaultValue&&Me(r,!!n.multiple,n.defaultValue,!0);break;default:"function"==typeof r.onClick&&(c.onclick=Vn)}(i=ir(a,i))&&pl(t)}null!==t.ref&&(t.effectTag|=128)}else if(null===t.stateNode)throw Error(l(166));break;case 6:if(n&&null!=t.stateNode)al(n,t,n.memoizedProps,i);else{if("string"!=typeof i&&null===t.stateNode)throw Error(l(166));r=Bo(Wo.current),Bo(Uo.current),Wa(t)?(a=(i=t).stateNode,r=i.memoizedProps,a[dr]=i,(i=a.nodeValue!==r)&&pl(t)):(a=t,(i=(9===r.nodeType?r:r.ownerDocument).createTextNode(i))[dr]=a,t.stateNode=i)}break;case 11:break;case 13:if(mi(Yo),i=t.memoizedState,0!=(64&t.effectTag)){t.expirationTime=r;break e}i=null!==i,a=!1,null===n?void 0!==t.memoizedProps.fallback&&Wa(t):(a=null!==(r=n.memoizedState),i||null===r||null!==(r=n.child.sibling)&&(null!==(c=t.firstEffect)?(t.firstEffect=r,r.nextEffect=c):(t.firstEffect=t.lastEffect=r,r.nextEffect=null),r.effectTag=8)),i&&!a&&0!=(2&t.mode)&&(null===n&&!0!==t.memoizedProps.unstable_avoidThisFallback||0!=(1&Yo.current)?Yl===Rl&&(Yl=ql):(Yl!==Rl&&Yl!==ql||(Yl=Wl),0!==ts&&null!==Xl&&(ru(Xl,Kl),iu(Xl,ts)))),(i||a)&&(t.effectTag|=4);break;case 7:case 8:case 12:break;case 4:Xo(),il(t);break;case 10:co(t);break;case 9:case 14:break;case 17:xi(t.type)&&Ti();break;case 19:if(mi(Yo),null===(i=t.memoizedState))break;if(a=0!=(64&t.effectTag),null===(c=i.rendering)){if(a)hl(i,!1);else if(Yl!==Rl||null!==n&&0!=(64&n.effectTag))for(n=t.child;null!==n;){if(null!==(c=Go(n))){for(t.effectTag|=64,hl(i,!1),null!==(a=c.updateQueue)&&(t.updateQueue=a,t.effectTag|=4),null===i.lastEffect&&(t.firstEffect=null),t.lastEffect=i.lastEffect,i=r,a=t.child;null!==a;)n=i,(r=a).effectTag&=2,r.nextEffect=null,r.firstEffect=null,r.lastEffect=null,null===(c=r.alternate)?(r.childExpirationTime=0,r.expirationTime=n,r.child=null,r.memoizedProps=null,r.memoizedState=null,r.updateQueue=null,r.dependencies=null):(r.childExpirationTime=c.childExpirationTime,r.expirationTime=c.expirationTime,r.child=c.child,r.memoizedProps=c.memoizedProps,r.memoizedState=c.memoizedState,r.updateQueue=c.updateQueue,n=c.dependencies,r.dependencies=null===n?null:{expirationTime:n.expirationTime,firstContext:n.firstContext,responders:n.responders}),a=a.sibling;vi(Yo,1&Yo.current|2),t=t.child;break e}n=n.sibling}}else{if(!a)if(null!==(n=Go(c))){if(t.effectTag|=64,a=!0,null!==(r=n.updateQueue)&&(t.updateQueue=r,t.effectTag|=4),hl(i,!0),null===i.tail&&"hidden"===i.tailMode&&!c.alternate){null!==(t=t.lastEffect=i.lastEffect)&&(t.nextEffect=null);break}}else Xi()>i.tailExpiration&&1<r&&(t.effectTag|=64,a=!0,hl(i,!1),t.expirationTime=t.childExpirationTime=r-1);i.isBackwards?(c.sibling=t.child,t.child=c):(null!==(r=i.last)?r.sibling=c:t.child=c,i.last=c)}if(null!==i.tail){0===i.tailExpiration&&(i.tailExpiration=Xi()+500),r=i.tail,i.rendering=r,i.tail=r.sibling,i.lastEffect=t.lastEffect,r.sibling=null,i=Yo.current,vi(Yo,i=a?1&i|2:1&i),t=r;break e}break;case 20:case 21:break;default:throw Error(l(156,t.tag))}t=null}if(i=Ql,1===Kl||1!==i.childExpirationTime){for(a=0,r=i.child;null!==r;)(n=r.expirationTime)>a&&(a=n),(c=r.childExpirationTime)>a&&(a=c),r=r.sibling;i.childExpirationTime=a}if(null!==t)return t;null!==e&&0==(2048&e.effectTag)&&(null===e.firstEffect&&(e.firstEffect=Ql.firstEffect),null!==Ql.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=Ql.firstEffect),e.lastEffect=Ql.lastEffect),1<Ql.effectTag&&(null!==e.lastEffect?e.lastEffect.nextEffect=Ql:e.firstEffect=Ql,e.lastEffect=Ql))}else{if(null!==(t=ml(Ql)))return t.effectTag&=2047,t;null!==e&&(e.firstEffect=e.lastEffect=null,e.effectTag|=2048)}if(null!==(t=Ql.sibling))return t;Ql=e}while(null!==Ql);return Yl===Rl&&(Yl=Bl),null}function Ms(e){var t=e.expirationTime;return t>(e=e.childExpirationTime)?t:e}function Is(e){var t=Qi();return Yi(99,js.bind(null,e,t)),null}function js(e,t){do{Hs()}while(null!==cs);if((Vl&(zl|Hl))!==Il)throw Error(l(327));var n=e.finishedWork,r=e.finishedExpirationTime;if(null===n)return null;if(e.finishedWork=null,e.finishedExpirationTime=0,n===e.current)throw Error(l(177));e.callbackNode=null,e.callbackExpirationTime=0,e.callbackPriority=90,e.nextKnownPendingLevel=0;var i=Ms(n);if(e.firstPendingTime=i,r<=e.lastSuspendedTime?e.firstSuspendedTime=e.lastSuspendedTime=e.nextKnownPendingLevel=0:r<=e.firstSuspendedTime&&(e.firstSuspendedTime=r-1),r<=e.lastPingedTime&&(e.lastPingedTime=0),r<=e.lastExpiredTime&&(e.lastExpiredTime=0),e===Xl&&(Ql=Xl=null,Kl=0),1<n.effectTag?null!==n.lastEffect?(n.lastEffect.nextEffect=n,i=n.firstEffect):i=n:i=n.firstEffect,null!==i){var o=Vl;Vl|=Hl,Ml.current=null,nr=En;var a=Yn();if(Gn(a)){if("selectionStart"in a)var s={start:a.selectionStart,end:a.selectionEnd};else e:{var u=(s=(s=a.ownerDocument)&&s.defaultView||window).getSelection&&s.getSelection();if(u&&0!==u.rangeCount){s=u.anchorNode;var c=u.anchorOffset,d=u.focusNode;u=u.focusOffset;try{s.nodeType,d.nodeType}catch(e){s=null;break e}var f=0,p=-1,h=-1,m=0,v=0,y=a,g=null;t:for(;;){for(var b;y!==s||0!==c&&3!==y.nodeType||(p=f+c),y!==d||0!==u&&3!==y.nodeType||(h=f+u),3===y.nodeType&&(f+=y.nodeValue.length),null!==(b=y.firstChild);)g=y,y=b;for(;;){if(y===a)break t;if(g===s&&++m===c&&(p=f),g===d&&++v===u&&(h=f),null!==(b=y.nextSibling))break;g=(y=g).parentNode}y=b}s=-1===p||-1===h?null:{start:p,end:h}}else s=null}s=s||{start:0,end:0}}else s=null;rr={focusedElem:a,selectionRange:s},En=!1,os=i;do{try{zs()}catch(e){if(null===os)throw Error(l(330));Us(os,e),os=os.nextEffect}}while(null!==os);os=i;do{try{for(a=e,s=t;null!==os;){var w=os.effectTag;if(16&w&&Be(os.stateNode,""),128&w){var k=os.alternate;if(null!==k){var x=k.ref;null!==x&&("function"==typeof x?x(null):x.current=null)}}switch(1038&w){case 2:Cl(os),os.effectTag&=-3;break;case 6:Cl(os),os.effectTag&=-3,Pl(os.alternate,os);break;case 1024:os.effectTag&=-1025;break;case 1028:os.effectTag&=-1025,Pl(os.alternate,os);break;case 4:Pl(os.alternate,os);break;case 8:El(a,c=os,s),Tl(c)}os=os.nextEffect}}catch(e){if(null===os)throw Error(l(330));Us(os,e),os=os.nextEffect}}while(null!==os);if(x=rr,k=Yn(),w=x.focusedElem,s=x.selectionRange,k!==w&&w&&w.ownerDocument&&function e(t,n){return!(!t||!n)&&(t===n||(!t||3!==t.nodeType)&&(n&&3===n.nodeType?e(t,n.parentNode):"contains"in t?t.contains(n):!!t.compareDocumentPosition&&!!(16&t.compareDocumentPosition(n))))}(w.ownerDocument.documentElement,w)){null!==s&&Gn(w)&&(k=s.start,void 0===(x=s.end)&&(x=k),"selectionStart"in w?(w.selectionStart=k,w.selectionEnd=Math.min(x,w.value.length)):(x=(k=w.ownerDocument||document)&&k.defaultView||window).getSelection&&(x=x.getSelection(),c=w.textContent.length,a=Math.min(s.start,c),s=void 0===s.end?a:Math.min(s.end,c),!x.extend&&a>s&&(c=s,s=a,a=c),c=Kn(w,a),d=Kn(w,s),c&&d&&(1!==x.rangeCount||x.anchorNode!==c.node||x.anchorOffset!==c.offset||x.focusNode!==d.node||x.focusOffset!==d.offset)&&((k=k.createRange()).setStart(c.node,c.offset),x.removeAllRanges(),a>s?(x.addRange(k),x.extend(d.node,d.offset)):(k.setEnd(d.node,d.offset),x.addRange(k))))),k=[];for(x=w;x=x.parentNode;)1===x.nodeType&&k.push({element:x,left:x.scrollLeft,top:x.scrollTop});for("function"==typeof w.focus&&w.focus(),w=0;w<k.length;w++)(x=k[w]).element.scrollLeft=x.left,x.element.scrollTop=x.top}rr=null,En=!!nr,nr=null,e.current=n,os=i;do{try{for(w=r;null!==os;){var T=os.effectTag;if(36&T){var S=os.alternate;switch(x=w,(k=os).tag){case 0:case 11:case 15:kl(16,32,k);break;case 1:var C=k.stateNode;if(4&k.effectTag)if(null===S)C.componentDidMount();else{var E=k.elementType===k.type?S.memoizedProps:ro(k.type,S.memoizedProps);C.componentDidUpdate(E,S.memoizedState,C.__reactInternalSnapshotBeforeUpdate)}var P=k.updateQueue;null!==P&&Co(0,P,C);break;case 3:var N=k.updateQueue;if(null!==N){if(a=null,null!==k.child)switch(k.child.tag){case 5:a=k.child.stateNode;break;case 1:a=k.child.stateNode}Co(0,N,a)}break;case 5:var A=k.stateNode;null===S&&4&k.effectTag&&ir(k.type,k.memoizedProps)&&A.focus();break;case 6:case 4:case 12:break;case 13:if(null===k.memoizedState){var $=k.alternate;if(null!==$){var O=$.memoizedState;if(null!==O){var _=O.dehydrated;null!==_&&Pt(_)}}}break;case 19:case 17:case 20:case 21:break;default:throw Error(l(163))}}if(128&T){k=void 0;var L=os.ref;if(null!==L){var D=os.stateNode;switch(os.tag){case 5:k=D;break;default:k=D}"function"==typeof L?L(k):L.current=k}}os=os.nextEffect}}catch(e){if(null===os)throw Error(l(330));Us(os,e),os=os.nextEffect}}while(null!==os);os=null,Ui(),Vl=o}else e.current=n;if(us)us=!1,cs=e,ds=t;else for(os=i;null!==os;)t=os.nextEffect,os.nextEffect=null,os=t;if(0===(t=e.firstPendingTime)&&(ss=null),1073741823===t?e===hs?ps++:(ps=0,hs=e):ps=0,"function"==typeof Bs&&Bs(n.stateNode,r),ks(e),as)throw as=!1,e=ls,ls=null,e;return(Vl&jl)!==Il?null:(Zi(),null)}function zs(){for(;null!==os;){var e=os.effectTag;0!=(256&e)&&wl(os.alternate,os),0==(512&e)||us||(us=!0,Gi(97,(function(){return Hs(),null}))),os=os.nextEffect}}function Hs(){if(90!==ds){var e=97<ds?97:ds;return ds=90,Yi(e,Rs)}}function Rs(){if(null===cs)return!1;var e=cs;if(cs=null,(Vl&(zl|Hl))!==Il)throw Error(l(331));var t=Vl;for(Vl|=Hl,e=e.current.firstEffect;null!==e;){try{var n=e;if(0!=(512&n.effectTag))switch(n.tag){case 0:case 11:case 15:kl(128,0,n),kl(0,64,n)}}catch(t){if(null===e)throw Error(l(330));Us(e,t)}n=e.nextEffect,e.nextEffect=null,e=n}return Vl=t,Zi(),!0}function Fs(e,t,n){wo(e,t=$l(e,t=vl(n,t),1073741823)),null!==(e=bs(e,1073741823))&&ks(e)}function Us(e,t){if(3===e.tag)Fs(e,e,t);else for(var n=e.return;null!==n;){if(3===n.tag){Fs(n,e,t);break}if(1===n.tag){var r=n.stateNode;if("function"==typeof n.type.getDerivedStateFromError||"function"==typeof r.componentDidCatch&&(null===ss||!ss.has(r))){wo(n,e=Ol(n,e=vl(t,e),1073741823)),null!==(n=bs(n,1073741823))&&ks(n);break}}n=n.return}}function qs(e,t,n){var r=e.pingCache;null!==r&&r.delete(t),Xl===e&&Kl===n?Yl===Wl||Yl===ql&&1073741823===Jl&&Xi()-rs<is?Es(e,Kl):ns=!0:nu(e,n)&&(0!==(t=e.lastPingedTime)&&t<n||(e.lastPingedTime=n,e.finishedExpirationTime===n&&(e.finishedExpirationTime=0,e.finishedWork=null),ks(e)))}function Ws(e,t){var n=e.stateNode;null!==n&&n.delete(t),0===(t=0)&&(t=ys(t=vs(),e,null)),null!==(e=bs(e,t))&&ks(e)}_l=function(e,t,n){var i=t.expirationTime;if(null!==e){var o=t.pendingProps;if(e.memoizedProps!==o||bi.current)Xa=!0;else{if(i<n){switch(Xa=!1,t.tag){case 3:nl(t),Ba();break;case 5:if(Qo(t),4&t.mode&&1!==n&&o.hidden)return t.expirationTime=t.childExpirationTime=1,null;break;case 1:xi(t.type)&&Pi(t);break;case 4:Vo(t,t.stateNode.containerInfo);break;case 10:uo(t,t.memoizedProps.value);break;case 13:if(null!==t.memoizedState)return 0!==(i=t.child.childExpirationTime)&&i>=n?sl(e,t,n):(vi(Yo,1&Yo.current),null!==(t=fl(e,t,n))?t.sibling:null);vi(Yo,1&Yo.current);break;case 19:if(i=t.childExpirationTime>=n,0!=(64&e.effectTag)){if(i)return dl(e,t,n);t.effectTag|=64}if(null!==(o=t.memoizedState)&&(o.rendering=null,o.tail=null),vi(Yo,Yo.current),!i)return null}return fl(e,t,n)}Xa=!1}}else Xa=!1;switch(t.expirationTime=0,t.tag){case 2:if(i=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),e=t.pendingProps,o=ki(t,gi.current),po(t,n),o=va(null,t,i,e,o,n),t.effectTag|=1,"object"===r(o)&&null!==o&&"function"==typeof o.render&&void 0===o.$$typeof){if(t.tag=1,ya(),xi(i)){var a=!0;Pi(t)}else a=!1;t.memoizedState=null!==o.state&&void 0!==o.state?o.state:null;var s=i.getDerivedStateFromProps;"function"==typeof s&&Ao(t,i,s,e),o.updater=$o,t.stateNode=o,o._reactInternalFiber=t,Do(t,i,e,n),t=tl(null,t,i,!0,a,n)}else t.tag=0,Qa(null,t,o,n),t=t.child;return t;case 16:if(o=t.elementType,null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),e=t.pendingProps,function(e){if(-1===e._status){e._status=0;var t=e._ctor;t=t(),e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}}(o),1!==o._status)throw o._result;switch(o=o._result,t.type=o,a=t.tag=function(e){if("function"==typeof e)return Ks(e)?1:0;if(null!=e){if((e=e.$$typeof)===B)return 11;if(e===Q)return 14}return 2}(o),e=ro(o,e),a){case 0:t=Za(null,t,o,e,n);break;case 1:t=el(null,t,o,e,n);break;case 11:t=Ka(null,t,o,e,n);break;case 14:t=Ya(null,t,o,ro(o.type,e),i,n);break;default:throw Error(l(306,o,""))}return t;case 0:return i=t.type,o=t.pendingProps,Za(e,t,i,o=t.elementType===i?o:ro(i,o),n);case 1:return i=t.type,o=t.pendingProps,el(e,t,i,o=t.elementType===i?o:ro(i,o),n);case 3:if(nl(t),null===(i=t.updateQueue))throw Error(l(282));if(o=null!==(o=t.memoizedState)?o.element:null,So(t,i,t.pendingProps,null,n),(i=t.memoizedState.element)===o)Ba(),t=fl(e,t,n);else{if((o=t.stateNode.hydrate)&&(za=sr(t.stateNode.containerInfo.firstChild),ja=t,o=Ha=!0),o)for(n=Ro(t,null,i,n),t.child=n;n;)n.effectTag=-3&n.effectTag|1024,n=n.sibling;else Qa(e,t,i,n),Ba();t=t.child}return t;case 5:return Qo(t),null===e&&Ua(t),i=t.type,o=t.pendingProps,a=null!==e?e.memoizedProps:null,s=o.children,or(i,o)?s=null:null!==a&&or(i,a)&&(t.effectTag|=16),Ja(e,t),4&t.mode&&1!==n&&o.hidden?(t.expirationTime=t.childExpirationTime=1,t=null):(Qa(e,t,s,n),t=t.child),t;case 6:return null===e&&Ua(t),null;case 13:return sl(e,t,n);case 4:return Vo(t,t.stateNode.containerInfo),i=t.pendingProps,null===e?t.child=Ho(t,null,i,n):Qa(e,t,i,n),t.child;case 11:return i=t.type,o=t.pendingProps,Ka(e,t,i,o=t.elementType===i?o:ro(i,o),n);case 7:return Qa(e,t,t.pendingProps,n),t.child;case 8:case 12:return Qa(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(i=t.type._context,o=t.pendingProps,s=t.memoizedProps,uo(t,a=o.value),null!==s){var u=s.value;if(0===(a=ni(u,a)?0:0|("function"==typeof i._calculateChangedBits?i._calculateChangedBits(u,a):1073741823))){if(s.children===o.children&&!bi.current){t=fl(e,t,n);break e}}else for(null!==(u=t.child)&&(u.return=t);null!==u;){var c=u.dependencies;if(null!==c){s=u.child;for(var d=c.firstContext;null!==d;){if(d.context===i&&0!=(d.observedBits&a)){1===u.tag&&((d=go(n,null)).tag=2,wo(u,d)),u.expirationTime<n&&(u.expirationTime=n),null!==(d=u.alternate)&&d.expirationTime<n&&(d.expirationTime=n),fo(u.return,n),c.expirationTime<n&&(c.expirationTime=n);break}d=d.next}}else s=10===u.tag&&u.type===t.type?null:u.child;if(null!==s)s.return=u;else for(s=u;null!==s;){if(s===t){s=null;break}if(null!==(u=s.sibling)){u.return=s.return,s=u;break}s=s.return}u=s}}Qa(e,t,o.children,n),t=t.child}return t;case 9:return o=t.type,i=(a=t.pendingProps).children,po(t,n),i=i(o=ho(o,a.unstable_observedBits)),t.effectTag|=1,Qa(e,t,i,n),t.child;case 14:return a=ro(o=t.type,t.pendingProps),Ya(e,t,o,a=ro(o.type,a),i,n);case 15:return Ga(e,t,t.type,t.pendingProps,i,n);case 17:return i=t.type,o=t.pendingProps,o=t.elementType===i?o:ro(i,o),null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),t.tag=1,xi(i)?(e=!0,Pi(t)):e=!1,po(t,n),_o(t,i,o),Do(t,i,o,n),tl(null,t,i,!0,e,n);case 19:return dl(e,t,n)}throw Error(l(156,t.tag))};var Bs=null,Vs=null;function Xs(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.effectTag=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childExpirationTime=this.expirationTime=0,this.alternate=null}function Qs(e,t,n,r){return new Xs(e,t,n,r)}function Ks(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Ys(e,t){var n=e.alternate;return null===n?((n=Qs(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.effectTag=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childExpirationTime=e.childExpirationTime,n.expirationTime=e.expirationTime,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{expirationTime:t.expirationTime,firstContext:t.firstContext,responders:t.responders},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Gs(e,t,n,i,o,a){var s=2;if(i=e,"function"==typeof e)Ks(e)&&(s=1);else if("string"==typeof e)s=5;else e:switch(e){case H:return Js(n.children,o,a,t);case W:s=8,o|=7;break;case R:s=8,o|=1;break;case F:return(e=Qs(12,n,t,8|o)).elementType=F,e.type=F,e.expirationTime=a,e;case V:return(e=Qs(13,n,t,o)).type=V,e.elementType=V,e.expirationTime=a,e;case X:return(e=Qs(19,n,t,o)).elementType=X,e.expirationTime=a,e;default:if("object"===r(e)&&null!==e)switch(e.$$typeof){case U:s=10;break e;case q:s=9;break e;case B:s=11;break e;case Q:s=14;break e;case K:s=16,i=null;break e}throw Error(l(130,null==e?e:r(e),""))}return(t=Qs(s,n,t,o)).elementType=e,t.type=i,t.expirationTime=a,t}function Js(e,t,n,r){return(e=Qs(7,e,r,t)).expirationTime=n,e}function Zs(e,t,n){return(e=Qs(6,e,null,t)).expirationTime=n,e}function eu(e,t,n){return(t=Qs(4,null!==e.children?e.children:[],e.key,t)).expirationTime=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function tu(e,t,n){this.tag=t,this.current=null,this.containerInfo=e,this.pingCache=this.pendingChildren=null,this.finishedExpirationTime=0,this.finishedWork=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=90,this.lastExpiredTime=this.lastPingedTime=this.nextKnownPendingLevel=this.lastSuspendedTime=this.firstSuspendedTime=this.firstPendingTime=0}function nu(e,t){var n=e.firstSuspendedTime;return e=e.lastSuspendedTime,0!==n&&n>=t&&e<=t}function ru(e,t){var n=e.firstSuspendedTime,r=e.lastSuspendedTime;n<t&&(e.firstSuspendedTime=t),(r>t||0===n)&&(e.lastSuspendedTime=t),t<=e.lastPingedTime&&(e.lastPingedTime=0),t<=e.lastExpiredTime&&(e.lastExpiredTime=0)}function iu(e,t){t>e.firstPendingTime&&(e.firstPendingTime=t);var n=e.firstSuspendedTime;0!==n&&(t>=n?e.firstSuspendedTime=e.lastSuspendedTime=e.nextKnownPendingLevel=0:t>=e.lastSuspendedTime&&(e.lastSuspendedTime=t+1),t>e.nextKnownPendingLevel&&(e.nextKnownPendingLevel=t))}function ou(e,t){var n=e.lastExpiredTime;(0===n||n>t)&&(e.lastExpiredTime=t)}function au(e,t,n,r){var i=t.current,o=vs(),a=Po.suspense;o=ys(o,i,a);e:if(n){t:{if(nt(n=n._reactInternalFiber)!==n||1!==n.tag)throw Error(l(170));var s=n;do{switch(s.tag){case 3:s=s.stateNode.context;break t;case 1:if(xi(s.type)){s=s.stateNode.__reactInternalMemoizedMergedChildContext;break t}}s=s.return}while(null!==s);throw Error(l(171))}if(1===n.tag){var u=n.type;if(xi(u)){n=Ei(n,u,s);break e}}n=s}else n=yi;return null===t.context?t.context=n:t.pendingContext=n,(t=go(o,a)).payload={element:e},null!==(r=void 0===r?null:r)&&(t.callback=r),wo(i,t),gs(i,o),o}function lu(e){if(!(e=e.current).child)return null;switch(e.child.tag){case 5:default:return e.child.stateNode}}function su(e,t){null!==(e=e.memoizedState)&&null!==e.dehydrated&&e.retryTime<t&&(e.retryTime=t)}function uu(e,t){su(e,t),(e=e.alternate)&&su(e,t)}function cu(e,t,n){var r=new tu(e,t,n=null!=n&&!0===n.hydrate),i=Qs(3,null,null,2===t?7:1===t?3:0);r.current=i,i.stateNode=r,e[pr]=r.current,n&&0!==t&&function(e){var t=In(e);yt.forEach((function(n){jn(n,e,t)})),gt.forEach((function(n){jn(n,e,t)}))}(9===e.nodeType?e:e.ownerDocument),this._internalRoot=r}function du(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function fu(e,t,n,r,i){var o=n._reactRootContainer;if(o){var a=o._internalRoot;if("function"==typeof i){var l=i;i=function(){var e=lu(a);l.call(e)}}au(t,a,e,i)}else{if(o=n._reactRootContainer=function(e,t){if(t||(t=!(!(t=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==t.nodeType||!t.hasAttribute("data-reactroot"))),!t)for(var n;n=e.lastChild;)e.removeChild(n);return new cu(e,0,t?{hydrate:!0}:void 0)}(n,r),a=o._internalRoot,"function"==typeof i){var s=i;i=function(){var e=lu(a);s.call(e)}}Cs((function(){au(t,a,e,i)}))}return lu(a)}function pu(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!du(t))throw Error(l(200));return function(e,t,n){var r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:z,key:null==r?null:""+r,children:e,containerInfo:t,implementation:n}}(e,t,null,n)}cu.prototype.render=function(e,t){au(e,this._internalRoot,null,void 0===t?null:t)},cu.prototype.unmount=function(e){var t=this._internalRoot,n=void 0===e?null:e,r=t.containerInfo;au(null,t,null,(function(){r[pr]=null,null!==n&&n()}))},at=function(e){if(13===e.tag){var t=no(vs(),150,100);gs(e,t),uu(e,t)}},lt=function(e){if(13===e.tag){vs();var t=to++;gs(e,t),uu(e,t)}},st=function(e){if(13===e.tag){var t=vs();gs(e,t=ys(t,e,null)),uu(e,t)}},te=function(e,t,n){switch(t){case"input":if(Oe(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var i=yr(r);if(!i)throw Error(l(90));Pe(r),Oe(r,i)}}}break;case"textarea":ze(e,n);break;case"select":null!=(t=n.value)&&Me(e,!!n.multiple,t,!1)}},le=Ss,se=function(e,t,n,r){var i=Vl;Vl|=4;try{return Yi(98,e.bind(null,t,n,r))}finally{(Vl=i)===Il&&Zi()}},ue=function(){(Vl&(1|zl|Hl))===Il&&(function(){if(null!==fs){var e=fs;fs=null,e.forEach((function(e,t){ou(t,e),ks(t)})),Zi()}}(),Hs())},ce=function(e,t){var n=Vl;Vl|=2;try{return e(t)}finally{(Vl=n)===Il&&Zi()}};var hu,mu,vu={createPortal:pu,findDOMNode:function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternalFiber;if(void 0===t){if("function"==typeof e.render)throw Error(l(188));throw Error(l(268,Object.keys(e)))}return e=null===(e=ot(t))?null:e.stateNode},hydrate:function(e,t,n){if(!du(t))throw Error(l(200));return fu(null,e,t,!0,n)},render:function(e,t,n){if(!du(t))throw Error(l(200));return fu(null,e,t,!1,n)},unstable_renderSubtreeIntoContainer:function(e,t,n,r){if(!du(n))throw Error(l(200));if(null==e||void 0===e._reactInternalFiber)throw Error(l(38));return fu(e,t,n,!1,r)},unmountComponentAtNode:function(e){if(!du(e))throw Error(l(40));return!!e._reactRootContainer&&(Cs((function(){fu(null,null,e,!1,(function(){e._reactRootContainer=null,e[pr]=null}))})),!0)},unstable_createPortal:function(){return pu.apply(void 0,arguments)},unstable_batchedUpdates:Ss,flushSync:function(e,t){if((Vl&(zl|Hl))!==Il)throw Error(l(187));var n=Vl;Vl|=1;try{return Yi(99,e.bind(null,t))}finally{Vl=n,Zi()}},__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:{Events:[mr,vr,yr,_.injectEventPluginsByName,p,Dt,function(e){N(e,Lt)},oe,ae,_n,O,Hs,{current:!1}]}};mu=(hu={findFiberByHostInstance:hr,bundleType:0,version:"16.12.0",rendererPackageName:"react-dom"}).findFiberByHostInstance,function(e){if("undefined"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)return!1;var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled||!t.supportsFiber)return!0;try{var n=t.inject(e);Bs=function(e){try{t.onCommitFiberRoot(n,e,void 0,64==(64&e.current.effectTag))}catch(e){}},Vs=function(e){try{t.onCommitFiberUnmount(n,e)}catch(e){}}}catch(e){}}(o({},hu,{overrideHookState:null,overrideProps:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:D.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=ot(e))?null:e.stateNode},findFiberByHostInstance:function(e){return mu?mu(e):null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null}));var yu={default:vu},gu=yu&&vu||yu;e.exports=gu.default||gu},function(e,t,n){"use strict";
39
+ /** @license React v16.12.0
40
+ * react.production.min.js
41
+ *
42
+ * Copyright (c) Facebook, Inc. and its affiliates.
43
+ *
44
+ * This source code is licensed under the MIT license found in the
45
+ * LICENSE file in the root directory of this source tree.
46
+ */function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var i=n(3),o="function"==typeof Symbol&&Symbol.for,a=o?Symbol.for("react.element"):60103,l=o?Symbol.for("react.portal"):60106,s=o?Symbol.for("react.fragment"):60107,u=o?Symbol.for("react.strict_mode"):60108,c=o?Symbol.for("react.profiler"):60114,d=o?Symbol.for("react.provider"):60109,f=o?Symbol.for("react.context"):60110,p=o?Symbol.for("react.forward_ref"):60112,h=o?Symbol.for("react.suspense"):60113;o&&Symbol.for("react.suspense_list");var m=o?Symbol.for("react.memo"):60115,v=o?Symbol.for("react.lazy"):60116;o&&Symbol.for("react.fundamental"),o&&Symbol.for("react.responder"),o&&Symbol.for("react.scope");var y="function"==typeof Symbol&&Symbol.iterator;function g(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var b={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},w={};function k(e,t,n){this.props=e,this.context=t,this.refs=w,this.updater=n||b}function x(){}function T(e,t,n){this.props=e,this.context=t,this.refs=w,this.updater=n||b}k.prototype.isReactComponent={},k.prototype.setState=function(e,t){if("object"!==r(e)&&"function"!=typeof e&&null!=e)throw Error(g(85));this.updater.enqueueSetState(this,e,t,"setState")},k.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},x.prototype=k.prototype;var S=T.prototype=new x;S.constructor=T,i(S,k.prototype),S.isPureReactComponent=!0;var C={current:null},E={current:null},P=Object.prototype.hasOwnProperty,N={key:!0,ref:!0,__self:!0,__source:!0};function A(e,t,n){var r,i={},o=null,l=null;if(null!=t)for(r in void 0!==t.ref&&(l=t.ref),void 0!==t.key&&(o=""+t.key),t)P.call(t,r)&&!N.hasOwnProperty(r)&&(i[r]=t[r]);var s=arguments.length-2;if(1===s)i.children=n;else if(1<s){for(var u=Array(s),c=0;c<s;c++)u[c]=arguments[c+2];i.children=u}if(e&&e.defaultProps)for(r in s=e.defaultProps)void 0===i[r]&&(i[r]=s[r]);return{$$typeof:a,type:e,key:o,ref:l,props:i,_owner:E.current}}function $(e){return"object"===r(e)&&null!==e&&e.$$typeof===a}var O=/\/+/g,_=[];function L(e,t,n,r){if(_.length){var i=_.pop();return i.result=e,i.keyPrefix=t,i.func=n,i.context=r,i.count=0,i}return{result:e,keyPrefix:t,func:n,context:r,count:0}}function D(e){e.result=null,e.keyPrefix=null,e.func=null,e.context=null,e.count=0,10>_.length&&_.push(e)}function M(e,t,n){return null==e?0:function e(t,n,i,o){var s=r(t);"undefined"!==s&&"boolean"!==s||(t=null);var u=!1;if(null===t)u=!0;else switch(s){case"string":case"number":u=!0;break;case"object":switch(t.$$typeof){case a:case l:u=!0}}if(u)return i(o,t,""===n?"."+I(t,0):n),1;if(u=0,n=""===n?".":n+":",Array.isArray(t))for(var c=0;c<t.length;c++){var d=n+I(s=t[c],c);u+=e(s,d,i,o)}else if(null===t||"object"!==r(t)?d=null:d="function"==typeof(d=y&&t[y]||t["@@iterator"])?d:null,"function"==typeof d)for(t=d.call(t),c=0;!(s=t.next()).done;)u+=e(s=s.value,d=n+I(s,c++),i,o);else if("object"===s)throw i=""+t,Error(g(31,"[object Object]"===i?"object with keys {"+Object.keys(t).join(", ")+"}":i,""));return u}(e,"",t,n)}function I(e,t){return"object"===r(e)&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,(function(e){return t[e]}))}(e.key):t.toString(36)}function j(e,t){e.func.call(e.context,t,e.count++)}function z(e,t,n){var r=e.result,i=e.keyPrefix;e=e.func.call(e.context,t,e.count++),Array.isArray(e)?H(e,r,n,(function(e){return e})):null!=e&&($(e)&&(e=function(e,t){return{$$typeof:a,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(e,i+(!e.key||t&&t.key===e.key?"":(""+e.key).replace(O,"$&/")+"/")+n)),r.push(e))}function H(e,t,n,r,i){var o="";null!=n&&(o=(""+n).replace(O,"$&/")+"/"),M(e,z,t=L(t,o,r,i)),D(t)}function R(){var e=C.current;if(null===e)throw Error(g(321));return e}var F={Children:{map:function(e,t,n){if(null==e)return e;var r=[];return H(e,r,null,t,n),r},forEach:function(e,t,n){if(null==e)return e;M(e,j,t=L(null,null,t,n)),D(t)},count:function(e){return M(e,(function(){return null}),null)},toArray:function(e){var t=[];return H(e,t,null,(function(e){return e})),t},only:function(e){if(!$(e))throw Error(g(143));return e}},createRef:function(){return{current:null}},Component:k,PureComponent:T,createContext:function(e,t){return void 0===t&&(t=null),(e={$$typeof:f,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:d,_context:e},e.Consumer=e},forwardRef:function(e){return{$$typeof:p,render:e}},lazy:function(e){return{$$typeof:v,_ctor:e,_status:-1,_result:null}},memo:function(e,t){return{$$typeof:m,type:e,compare:void 0===t?null:t}},useCallback:function(e,t){return R().useCallback(e,t)},useContext:function(e,t){return R().useContext(e,t)},useEffect:function(e,t){return R().useEffect(e,t)},useImperativeHandle:function(e,t,n){return R().useImperativeHandle(e,t,n)},useDebugValue:function(){},useLayoutEffect:function(e,t){return R().useLayoutEffect(e,t)},useMemo:function(e,t){return R().useMemo(e,t)},useReducer:function(e,t,n){return R().useReducer(e,t,n)},useRef:function(e){return R().useRef(e)},useState:function(e){return R().useState(e)},Fragment:s,Profiler:c,StrictMode:u,Suspense:h,createElement:A,cloneElement:function(e,t,n){if(null==e)throw Error(g(267,e));var r=i({},e.props),o=e.key,l=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(l=t.ref,s=E.current),void 0!==t.key&&(o=""+t.key),e.type&&e.type.defaultProps)var u=e.type.defaultProps;for(c in t)P.call(t,c)&&!N.hasOwnProperty(c)&&(r[c]=void 0===t[c]&&void 0!==u?u[c]:t[c])}var c=arguments.length-2;if(1===c)r.children=n;else if(1<c){u=Array(c);for(var d=0;d<c;d++)u[d]=arguments[d+2];r.children=u}return{$$typeof:a,type:e.type,key:o,ref:l,props:r,_owner:s}},createFactory:function(e){var t=A.bind(null,e);return t.type=e,t},isValidElement:$,version:"16.12.0",__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:{ReactCurrentDispatcher:C,ReactCurrentBatchConfig:{suspense:null},ReactCurrentOwner:E,IsSomeRendererActing:{current:!1},assign:i}},U={default:F},q=U&&F||U;e.exports=q.default||q},function(e,t,n){"use strict";e.exports=n(9)},function(e,t,n){"use strict";
47
+ /** @license React v0.18.0
48
+ * scheduler.production.min.js
49
+ *
50
+ * Copyright (c) Facebook, Inc. and its affiliates.
51
+ *
52
+ * This source code is licensed under the MIT license found in the
53
+ * LICENSE file in the root directory of this source tree.
54
+ */function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var i,o,a,l,s;if(Object.defineProperty(t,"__esModule",{value:!0}),"undefined"==typeof window||"function"!=typeof MessageChannel){var u=null,c=null,d=function e(){if(null!==u)try{var n=t.unstable_now();u(!0,n),u=null}catch(t){throw setTimeout(e,0),t}},f=Date.now();t.unstable_now=function(){return Date.now()-f},i=function(e){null!==u?setTimeout(i,0,e):(u=e,setTimeout(d,0))},o=function(e,t){c=setTimeout(e,t)},a=function(){clearTimeout(c)},l=function(){return!1},s=t.unstable_forceFrameRate=function(){}}else{var p=window.performance,h=window.Date,m=window.setTimeout,v=window.clearTimeout;if("undefined"!=typeof console){var y=window.cancelAnimationFrame;"function"!=typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills"),"function"!=typeof y&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills")}if("object"===r(p)&&"function"==typeof p.now)t.unstable_now=function(){return p.now()};else{var g=h.now();t.unstable_now=function(){return h.now()-g}}var b=!1,w=null,k=-1,x=5,T=0;l=function(){return t.unstable_now()>=T},s=function(){},t.unstable_forceFrameRate=function(e){0>e||125<e?console.error("forceFrameRate takes a positive int between 0 and 125, forcing framerates higher than 125 fps is not unsupported"):x=0<e?Math.floor(1e3/e):5};var S=new MessageChannel,C=S.port2;S.port1.onmessage=function(){if(null!==w){var e=t.unstable_now();T=e+x;try{w(!0,e)?C.postMessage(null):(b=!1,w=null)}catch(e){throw C.postMessage(null),e}}else b=!1},i=function(e){w=e,b||(b=!0,C.postMessage(null))},o=function(e,n){k=m((function(){e(t.unstable_now())}),n)},a=function(){v(k),k=-1}}function E(e,t){var n=e.length;e.push(t);e:for(;;){var r=Math.floor((n-1)/2),i=e[r];if(!(void 0!==i&&0<A(i,t)))break e;e[r]=t,e[n]=i,n=r}}function P(e){return void 0===(e=e[0])?null:e}function N(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var r=0,i=e.length;r<i;){var o=2*(r+1)-1,a=e[o],l=o+1,s=e[l];if(void 0!==a&&0>A(a,n))void 0!==s&&0>A(s,a)?(e[r]=s,e[l]=n,r=l):(e[r]=a,e[o]=n,r=o);else{if(!(void 0!==s&&0>A(s,n)))break e;e[r]=s,e[l]=n,r=l}}}return t}return null}function A(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var $=[],O=[],_=1,L=null,D=3,M=!1,I=!1,j=!1;function z(e){for(var t=P(O);null!==t;){if(null===t.callback)N(O);else{if(!(t.startTime<=e))break;N(O),t.sortIndex=t.expirationTime,E($,t)}t=P(O)}}function H(e){if(j=!1,z(e),!I)if(null!==P($))I=!0,i(R);else{var t=P(O);null!==t&&o(H,t.startTime-e)}}function R(e,n){I=!1,j&&(j=!1,a()),M=!0;var r=D;try{for(z(n),L=P($);null!==L&&(!(L.expirationTime>n)||e&&!l());){var i=L.callback;if(null!==i){L.callback=null,D=L.priorityLevel;var s=i(L.expirationTime<=n);n=t.unstable_now(),"function"==typeof s?L.callback=s:L===P($)&&N($),z(n)}else N($);L=P($)}if(null!==L)var u=!0;else{var c=P(O);null!==c&&o(H,c.startTime-n),u=!1}return u}finally{L=null,D=r,M=!1}}function F(e){switch(e){case 1:return-1;case 2:return 250;case 5:return 1073741823;case 4:return 1e4;default:return 5e3}}var U=s;t.unstable_ImmediatePriority=1,t.unstable_UserBlockingPriority=2,t.unstable_NormalPriority=3,t.unstable_IdlePriority=5,t.unstable_LowPriority=4,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=D;D=e;try{return t()}finally{D=n}},t.unstable_next=function(e){switch(D){case 1:case 2:case 3:var t=3;break;default:t=D}var n=D;D=t;try{return e()}finally{D=n}},t.unstable_scheduleCallback=function(e,n,l){var s=t.unstable_now();if("object"===r(l)&&null!==l){var u=l.delay;u="number"==typeof u&&0<u?s+u:s,l="number"==typeof l.timeout?l.timeout:F(e)}else l=F(e),u=s;return e={id:_++,callback:n,priorityLevel:e,startTime:u,expirationTime:l=u+l,sortIndex:-1},u>s?(e.sortIndex=u,E(O,e),null===P($)&&e===P(O)&&(j?a():j=!0,o(H,u-s))):(e.sortIndex=l,E($,e),I||M||(I=!0,i(R))),e},t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_wrapCallback=function(e){var t=D;return function(){var n=D;D=t;try{return e.apply(this,arguments)}finally{D=n}}},t.unstable_getCurrentPriorityLevel=function(){return D},t.unstable_shouldYield=function(){var e=t.unstable_now();z(e);var n=P($);return n!==L&&null!==L&&null!==n&&null!==n.callback&&n.startTime<=e&&n.expirationTime<L.expirationTime||l()},t.unstable_requestPaint=U,t.unstable_continueExecution=function(){I||M||(I=!0,i(R))},t.unstable_pauseExecution=function(){},t.unstable_getFirstCallbackNode=function(){return P($)},t.unstable_Profiling=null},function(e,t,n){"use strict";n.r(t);var r=n(0),i=n.n(r),o=(n(5),n(2)),a=n.n(o),l=n(1),s=n.n(l);function u(e){for(var t="",n=[],r=location.search.substr(1).split("&"),i=0;i<r.length;i++)(n=r[i].split("="))[0]===e&&(t=decodeURIComponent(n[1]));return t}var c=!1,d=new Array,f=new Array,p=new Object;function h(e,t){if(f[e]){var n=d[e];i()("input[type='checkbox'][bibType='filter']").each((function(){i()(this).attr("bibsonomyUrl")==e&&i()(this).prop("checked")&&(i()(this).attr("filter")&&(n=w(n,i()(this).attr("filter"))),i()(this).attr("filterTag")&&(n=g(n,i()(this).attr("filterTag"))),i()(this).attr("filterTags")&&(n=b(n,i()(this).attr("filterTags"))))})),f[e]&&"date"==f[e].attr("sortBy")&&(n=n.sort(A)),parseInt(f[e].attr("count"))&&(n=n.slice(0,parseInt(f[e].attr("count")))),t&&(n=w(n,t)),function(e,t){i()("[bibType='info']").each((function(){i()(this).attr("bibsonomyUrl")==e&&(void 0!==t&&t<d[e].length?i()(this).html(t+" / "+d[e].length+" entries"):i()(this).html(d[e].length+" entries"))}))}(e,n.length),function(e,t){t.height("");for(var n=0,r=0;r<e.length;r++){if(n!=e[r].year&&!parseInt(t.attr("count"))){n=e[r].year;var i=document.createElement("H3");i.innerHTML=n,i.className="bib-year",t.get(0).appendChild(i)}t.get(0).appendChild(e[r].div_element)}}(n,f[e].empty())}}function m(e,t,n){f[e]=t;var r=function(e){for(var t=e.items.sort(N),n=(new Array,0);n<t.length;n++)t[n].bibtex=y(t[n]),t[n].div_element=v(t[n]);return t}(n);t.attr("filter")&&(r=w(r,t.attr("filter"))),t.attr("filterTag")&&(r=g(r,t.attr("filterTag"))),t.attr("filterTags")&&(r=b(r,t.attr("filterTags"))),d[e]=r;var i=u("query");""!=i?h(e,i):h(e)}function v(e){var t,n=(t=e.id,t.toString().replace(/https:\/\/www\.bibsonomy\.org\/*/,"").toString().replace(/\//g,"-")+"-"+Math.random().toString().replace("0.","")),r=document.createElement("DIV");if(r.className="item","Bookmark"==e.type){(s=document.createElement("SPAN")).innerHTML=" "+e.label,s.className="pubtitle",r.appendChild(s);var i=document.createElement("SPAN");i.innerHTML=e.url,i.className="puburl",r.appendChild(document.createTextNode(", ")),r.appendChild(i);var o=document.createElement("SPAN");o.innerHTML=e.date.split(" ")[0],o.className="pubdate",r.appendChild(document.createTextNode(", ")),r.appendChild(o)}else{if(e.editors){var a=document.createElement("SPAN");a.innerHTML=P(e.editors),a.className="pubeditors"}if(e.authors){var l=document.createElement("SPAN");l.innerHTML=E(e.authors),l.className="pubauthors"}var s;if(l?(r.appendChild(l),r.appendChild(document.createTextNode(", "))):a&&r.appendChild(a),e.label)(s=document.createElement("SPAN")).innerHTML=e.label,s.className="pubtitle",r.appendChild(s);if(e.booktitle){var u=document.createElement("SPAN");u.innerHTML=e.booktitle,u.className="pubbooktitle",r.appendChild(document.createTextNode(", In "))}if(e.journal){var c=document.createElement("SPAN");c.innerHTML=e.journal,c.className="pubjournal",r.appendChild(document.createTextNode(", In "))}if(l&&a&&r.appendChild(a),u&&r.appendChild(u),c&&r.appendChild(c),e.volume){var d=document.createElement("SPAN");d.innerHTML=e.volume,d.className="pubvolume",r.appendChild(document.createTextNode(", Vol. ")),r.appendChild(d)}if(e.number){var f=document.createElement("SPAN");f.innerHTML=e.number,f.className="pubnumber",r.appendChild(document.createTextNode(" (")),r.appendChild(f),r.appendChild(document.createTextNode(")"))}if(e.pages){var p=document.createElement("SPAN");p.innerHTML=", "+function(e){return k(e,"-")?"pp. "+e.replace("--","-").replace(/ /g,""):"p. "+e}(e.pages),p.className="pubpages",r.appendChild(p)}if(r.appendChild(document.createTextNode(". ")),e.address){var h=document.createElement("SPAN");h.innerHTML=e.address,h.className="pubaddress",r.appendChild(h)}if(e.publisher){e.address&&r.appendChild(document.createTextNode(": "));var m=document.createElement("SPAN");m.innerHTML=e.publisher,m.className="pubpublisher",r.appendChild(m)}if(e.year){var v=document.createElement("SPAN");e.publisher&&(v.innerHTML=", "),v.innerHTML=v.innerHTML+e.year+".",v.className="year",r.appendChild(v)}if(e.note){var y=document.createElement("SPAN");y.innerHTML=" "+e.note,y.className="note",r.appendChild(y)}}return function(e,t,n){e.appendChild(document.createElement("BR"));var r=document.createElement("A");if(r.className="bibtexLink",r.innerHTML="[BibTeX]",r.id="bibtex_"+n,r.onclick=function(){return function(e){"none"==document.getElementById("bibtexDIV_"+e).style.display?document.getElementById("bibtexDIV_"+e).style.display="block":document.getElementById("bibtexDIV_"+e).style.display="none"}(n)},e.appendChild(r),t.abstract){var i=document.createElement("A");i.className="abstractLink",i.innerHTML="[Abstract]",i.onclick=function(){return function(e){"none"==document.getElementById("abstractDIV_"+e).style.display?document.getElementById("abstractDIV_"+e).style.display="block":document.getElementById("abstractDIV_"+e).style.display="none"}(n)},i.id="abstract_"+n,e.appendChild(i)}if(t.url){var o,a=document.createElement("A"),l=t.url.toLowerCase().indexOf("dl.acm.org/authorize")>=0;if(a.href=t.url,a.className="fileLink",a.innerHTML="[Download]",l)if(0!=window.location.href.toLowerCase().indexOf("http://www.hci.uni-wuerzburg.de/publications"))a.innerHTML="[Download page]",a.className+=" acmUnAuthorized",a.href="http://www.hci.uni-wuerzburg.de/publications/?query="+encodeURIComponent(t.label),(o=document.createElement("span")).innerHTML="This ACM Author-Izer link allows to obtain the definitive version of the article from the ACM Digital Library at no charge. However, the link is only authorized if it is clicked on our main publications page: <i>http://<b>www</b>.hci.uni-wuerzburg.de/publications/</i>.",a.appendChild(o);else a.className+=" acmAuthorized",(o=document.createElement("span")).innerHTML="This ACM Author-Izer link allows to obtain the definitive version of the article from the ACM Digital Library at no charge.",a.appendChild(o);e.appendChild(a)}var s=document.createElement("A");s.href=t.id,s.className="bibsonomyLink",s.innerHTML="[BibSonomy]",e.appendChild(s);var u=document.createElement("DIV");if(u.id="bibtexDIV_"+n,u.style.display="none",u.className="bibtex",u.innerHTML=t.bibtex,e.appendChild(u),t.abstract){var c=document.createElement("DIV");c.id="abstractDIV_"+n,c.style.display="none",c.innerHTML="<strong>Abstract:</strong> "+t.abstract,c.className="abstract",e.appendChild(c)}return e}(r,e,n)}function y(e){var t=e["pub-type"],n=p[t],r="@"+t+"{"+e.bibtexKey+",\n title"+C("title")+" = {"+e.label+"}";for(var i in n){var o=n[i];if(e[o])if(r+=",\n "+o+C(o),"author"!=o&&"editor"!=o)r+=" = {"+e[o]+"}";else{var a=[];"author"==o&&(a=e.authors),"editor"==o&&(a=e.editors),r+=" = {"+a[0].last+", "+a[0].first;for(i=1;i<a.length;i++)r+=" and "+a[i].last+", "+a[i].first;r+="}"}}return r+"\n}"}function g(e,t){if(""==t)return e;for(var n=new Array,r=0;r<e.length;r++)T(e[r],t)&&n.push(e[r]);return n}function b(e,t){if(""==t)return e;for(var n=new Array,r=0;r<e.length;r++)S(e[r],t.split("|"))&&n.push(e[r]);return n}function w(e,t){if(""==t)return e;for(var n=new Array,r=0;r<e.length;r++)x(e[r],t)&&n.push(e[r]);return n}function k(e,t){return-1!=e.toLowerCase().indexOf(t.toLowerCase())}function x(e,t){return e.label&&k(e.label,t)||e.authors&&k(E(e.authors),t)||e.editors&&k(P(e.editors),t)||e.booktitle&&k(e.booktitle,t)||e.journal&&k(e.journal,t)||e.publisher&&k(e.publisher,t)||e.year&&k(e.year,t)||c&&e.abstract&&k(e.abstract,t)||c&&e.bibtex&&k(e.bibtex,t)}function T(e,t){return!!e.tags&&-1!=i.a.inArray(t,e.tags)}function S(e,t){for(var n=0;n<t.length;n++)if(T(e,t[n]))return!0;return!1}function C(e){var t=0;for(var n in p.allKeys)t=p.allKeys[n].length>t?p.allKeys[n].length:t;var r="";for(n=0;n<t-e.length;n++)r+=" ";return r}function E(e){if(!e)return"";for(var t=" "+e[0].first+" "+e[0].last,n=1;n<e.length;n++)t+=", "+e[n].first+" "+e[n].last;return t}function P(e){if(!e)return"";for(var t=" "+e[0].first+" "+e[0].last,n=1;n<e.length;n++)t+=", "+e[n].first+" "+e[n].last;return t+(1==e.length?" (Ed.), ":" (Eds.), ")}function N(e,t){var n="0";e.year&&(n=e.year.toLowerCase());var r="0";return t.year&&(r=t.year.toLowerCase()),n!=r?n>r?-1:1:e.label&&t.label?e.label.toLowerCase()<t.label.toLowerCase()?-1:1:0}function A(e,t){return e.date&&t.date&&e.date.toLowerCase()!=t.date.toLowerCase()?e.date.toLowerCase()>t.date.toLowerCase()?-1:1:e.label&&t.label?e.label.toLowerCase()<t.label.toLowerCase()?-1:1:0}p.allKeys=new Array("address","annote","author","booktitle","chapter","crossref","edition","editor","eprint","howpublished","institution","journal","key","month","note","number","organization","pages","publisher","school","series","title","type","url","volume","year"),p.article=new Array("author","title","journal","year","volume","number","pages","month","note","key"),p.book=new Array("author","editor","title","publisher","year","volume","number","series","address","edition","month","note","key"),p.booklet=new Array("title","author","howpublished","address","month","year","note","key"),p.conference=new Array("author","title","booktitle","year","editor","volume","number","series","pages","address","month","organization","publisher","note","key"),p.inbook=new Array("author","editor","title","chapter","pages","publisher","year","volume","number","series","type","address","edition","month","note","key"),p.incollection=new Array("author","title","booktitle","publisher","year","editor","volume","number","series","type","chapter","pages","address","edition","month","note","key"),p.inproceedings=new Array("author","title","booktitle","year","editor","volume","number","series","pages","address","month","organization","publisher","note","key"),p.manual=new Array("title","author","organization","address","edition","month","year","note","key"),p.masterthesis=new Array("author","title","school","year","type","address","month","note","key"),p.misc=new Array("author","title","howpublished","month","year","note","key"),p.phdthesis=new Array("author","title","school","year","type","address","month","note","key"),p.proceedings=new Array("title","year","editor","volume","number","series","address","month","publisher","organization","note","key"),p.techreport=new Array("author","title","institution","year","type","number","address","month","note","key"),p.unpublished=new Array("author","title","note","month","year","key"),Function.prototype.partial=function(){var e=this,t=Array.prototype.slice.call(arguments);return function(){for(var n=0,r=0;r<t.length&&n<arguments.length;r++)void 0===t[r]&&(t[r]=arguments[n++]);return e.apply(this,t)}};var $=function(){i()("div[bibType='ref-list']").each((function(){var e,t;e=i()(this),t=i()(this).attr("bibsonomyUrl"),e.height("100px"),e.html("Loading..."),i.a.getJSON("https://bibsonomy.org/json/"+t+"?items=1000&callback=?",m.partial(t,e,void 0))})),i()("#react-placeholder-filterInput[bibType='filter'] > div > input").keyup((function(e){h(i()("#react-placeholder-filterInput[bibType='filter']").attr("bibsonomyUrl"),e.target.value)})),i()("input[type='text'][bibType='filter']").keyup((function(e){h(i()(e.target).attr("bibsonomyUrl"),e.target.value)})),i()("input[type='checkbox'][bibType='filter']").change((function(e){h(i()(e.target).attr("bibsonomyUrl"))}));var e=u("query");""!=e&&i()("input[type='text'][bibType='filter']").val(e)};function O(e){return(O="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function _(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function L(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function D(e,t,n){return t&&L(e.prototype,t),n&&L(e,n),e}function M(e,t){return!t||"object"!==O(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function I(e){return(I=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function j(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&z(e,t)}function z(e,t){return(z=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var H=function(e){function t(e){var n;_(this,t),(n=M(this,I(t).call(this,e))).isTouchDevice="ontouchstart"in window||navigator.maxTouchPoints;var r=function(){return Math.max(document.documentElement.clientWidth,window.innerWidth||0)};return window.onresize=function(){return n.setState({width:r()})},n.state={activeIndex:void 0,width:r(),mobileMenuActive:!1},n}return j(t,e),D(t,[{key:"render",value:function(){var e=this,t=this.isTouchDevice&&this.state.width<=980||this.state.width<=980;return s.a.createElement("nav",{className:"navigation"+(t?" is-touch":""),role:"navigation"},t?s.a.createElement("div",{className:"navigation-header-mobile",onClick:function(){return e.setState({mobileMenuActive:!e.state.mobileMenuActive})}},s.a.createElement("i",{className:"icon-menu"})):"",!t||t&&this.state.mobileMenuActive?s.a.createElement("div",{className:"navigation-header"},window.menu.map((function(n,r){return s.a.createElement("div",{onMouseEnter:t?void 0:function(){return e.setState({activeIndex:r})},onMouseLeave:t?void 0:function(){return e.setState({activeIndex:void 0})},key:r},s.a.createElement("div",{className:"category-title"},t?void 0!==n.items?s.a.createElement("i",{className:"toggle-button "+(e.state.activeIndex===r?"icon-minus-circled":"icon-plus-circled"),onClick:function(){return e.setState({activeIndex:e.state.activeIndex===r?void 0:r})}}):s.a.createElement("span",{className:"toggle-button-placeholder"}):"",s.a.createElement("a",{href:n.href,className:e.state.activeIndex===r?"active":""},n.title)),void 0!==n.items&&e.state.activeIndex===r?s.a.createElement("div",{className:"navigation-submenu"},n.items.map((function(e,t){return s.a.createElement("div",{className:"navigation-submenu-column",key:t},s.a.createElement("a",{className:"navigation-submenu-column-header",href:e.href},s.a.createElement("i",{className:"icon-right-open-top-item"}),e.title),void 0!==e.items?e.items.map((function(e,t){return s.a.createElement("a",{className:"navigation-submenu-column-sub",href:e.href,key:t},s.a.createElement("i",{className:"icon-right-open"}),e.title)})):"")}))):"")}))):"")}}]),t}(s.a.Component);a.a.render(s.a.createElement(H,null),document.getElementById("react-placeholder-navigation"));if(a.a.render(s.a.createElement((function(){var e,t,n=document.getElementById("react-placeholder-breadcrumb").getAttribute("url").replace(/\/$/,""),r=(e=void 0,(t=Object.assign({},menu[0])).title="Home",menu.map((function(r){r.href.replace(/\/$/,"")===n?r!==menu[0]&&(e=[t,r]):r.items&&r.items.map((function(i){i.href.replace(/\/$/,"")===n?e=[t,r,i]:i.items&&i.items.map((function(o){o.href.replace(/\/$/,"")===n&&(e=[t,r,i,o])}))}))})),e);return s.a.createElement("div",null,r?r.map((function(e,t){return t!==r.length-1?s.a.createElement("span",{key:t},s.a.createElement("a",{href:e.href},e.title)," / "):s.a.createElement("span",{key:t},e.title)})):"")}),null),document.getElementById("react-placeholder-breadcrumb")),null!==document.getElementById("react-placeholder-toggleVisibility")){var R=function(e){function t(e){var n;return _(this,t),(n=M(this,I(t).call(this,e))).state={visible:!1,language:document.getElementById("react-placeholder-toggleVisibility").getAttribute("language")},n}return j(t,e),D(t,[{key:"render",value:function(){var e=this;console.log(this.state.language);var t="DE"===this.state.language?"Weniger anzeigen":"Show less",n="DE"===this.state.language?"Mehr anzeigen":"Show more";return s.a.createElement("div",{className:"u-cursor-pointer",onClick:function(){return e.setState({visible:!e.state.visible},e.state.visible?function(){return i()(".toggle-visibility").addClass("hide")}:function(){return i()(".toggle-visibility").removeClass("hide")})}},this.state.visible?t:n)}}]),t}(s.a.Component);a.a.render(s.a.createElement(R,null),document.getElementById("react-placeholder-toggleVisibility"))}if(null!==document.getElementById("react-placeholder-filterInput")){var F=function(e){function t(e){var n;return _(this,t),(n=M(this,I(t).call(this,e))).state={visible:!1},n}return j(t,e),D(t,[{key:"render",value:function(){i.a.extend(i.a.expr[":"],{containsIN:function(e,t,n,r){return(e.textContent||e.innerText||"").toLowerCase().indexOf((n[3]||"").toLowerCase())>=0}});return s.a.createElement("div",{className:"filterInput"},s.a.createElement("i",{className:"icon-search"}),s.a.createElement("input",{type:"text",onChange:function(e){var t=e.target.value,n=i()(".filterInput-targetElement");""==t?n.show():(n.hide(),n.filter((function(){var e=this;return!t.split(" ").map((function(t){return i()(e).is(":containsIN('"+t+"')")})).includes(!1)})).show())},placeholder:"Filter..."}))}}]),t}(s.a.Component);a.a.render(s.a.createElement(F,null),document.getElementById("react-placeholder-filterInput"))}if(i()(document).ready((function(){i()(".slick-element").slick({dots:!0,autoplay:!0,fade:!0,autoplaySpeed:6e3,speed:1e3}),i()(".slick-element > div").removeClass("hide")})),i()(document).ready((function(){i()(".bibsonomy").length&&$()})),null!==document.getElementById("react-placeholder-topicSelector")){var U=function(e){function t(e){var n;return _(this,t),(n=M(this,I(t).call(this,e))).typeClasses=["type-mcsp","type-mcst","type-hcip","type-hcit","type-csbt","type-csmp","type-csmt","type-gebt","type-ind","type-indcoop","type-phd"],n.typeStrings=["MCS Bachelor Project","MCS Bachelor Thesis","HCI Master Project","HCI Master Thesis","Computer Science Bachelor Thesis","Computer Science Master Project","Computer Science Master Thesis","Games Engineering Bachelor Thesis","Industry Project","Industry Cooperation","PhD Project"],n.state={selected:0},n}return j(t,e),D(t,[{key:"updateTopics",value:function(){0!==this.state.selected?(i()(".topic."+this.typeClasses[this.state.selected-1]).show(),i()(".topic:not(."+this.typeClasses[this.state.selected-1]+")").hide()):i()(".topic").show()}},{key:"render",value:function(){var e=this;return s.a.createElement("div",{className:"column-layout"},["Show all"].concat(this.typeStrings).map((function(t,n){return s.a.createElement("div",{key:n},s.a.createElement("input",{type:"radio",value:n,checked:e.state.selected===n,onChange:function(){return e.setState({selected:n},e.updateTopics)}}),t)})))}}]),t}(s.a.Component);a.a.render(s.a.createElement(U,null),document.getElementById("react-placeholder-topicSelector"))}}]);
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hci-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan-Philipp Stauffert
@@ -70,10 +70,10 @@ description:
70
70
  email:
71
71
  - jan-philipp.stauffert@uni-wuerzburg.de
72
72
  executables: []
73
- extensions:
74
- - extconf.rb
73
+ extensions: []
75
74
  extra_rdoc_files: []
76
75
  files:
76
+ - _config.yml
77
77
  - _includes/block
78
78
  - _includes/faq
79
79
  - _includes/footer
@@ -88,11 +88,17 @@ files:
88
88
  - _sass/_icons.scss
89
89
  - _sass/_main.scss
90
90
  - _sass/_utilities.scss
91
+ - _sass/slick-carousel/slick/slick-theme.scss
92
+ - _sass/slick-carousel/slick/slick.scss
93
+ - assets/bundle.js
94
+ - assets/css/ajax-loader.gif
91
95
  - assets/css/fonts/fontello.eot
92
96
  - assets/css/fonts/fontello.svg
93
97
  - assets/css/fonts/fontello.ttf
94
98
  - assets/css/fonts/fontello.woff
95
99
  - assets/css/fonts/fontello.woff2
100
+ - assets/css/fonts/slick.ttf
101
+ - assets/css/fonts/slick.woff
96
102
  - assets/css/hci-style.scss
97
103
  - assets/images/facebook.png
98
104
  - assets/images/twitter.png
@@ -100,15 +106,13 @@ files:
100
106
  - assets/images/uni-wuerzburg-logo.svg
101
107
  - assets/images/youtube.svg
102
108
  - bibsonomy.js
103
- - entry.jsx
104
- - extconf.rb
105
109
  - package.json
106
110
  - webpack.config.js
107
111
  homepage: https://gitlab2.informatik.uni-wuerzburg.de/hci-development/hci-theme
108
112
  licenses:
109
113
  - Apache-2.0
110
114
  metadata: {}
111
- post_install_message: HCI-Theme installed!
115
+ post_install_message:
112
116
  rdoc_options: []
113
117
  require_paths:
114
118
  - lib
data/entry.jsx DELETED
@@ -1,353 +0,0 @@
1
- import $ from "jquery";
2
- import "slick-carousel";
3
- import ReactDOM from "react-dom";
4
- import React from "react";
5
-
6
- // const path = require("path");
7
- // const YAML = require('yamljs');
8
- // const widths = YAML.load(path.join(__dirname, "../menu.yml")).widths;
9
- // console.log(widths);
10
-
11
- // ////////////////////////////////////////////////////////////////////////////
12
- // Load scss files (mind ordering)
13
- // ////////////////////////////////////////////////////////////////////////////
14
- // import "slick-carousel/slick/slick.scss";
15
- // import "slick-carousel/slick/slick-theme.scss";
16
- // import "./scss/_main.scss";
17
-
18
- // ////////////////////////////////////////////////////////////////////////////
19
- // Render responsive menu
20
- // ////////////////////////////////////////////////////////////////////////////
21
- // import menu from "../menu.js";
22
-
23
- const Nav = class extends React.Component {
24
- constructor(props) {
25
- super(props);
26
- this.isTouchDevice = "ontouchstart" in window || navigator.maxTouchPoints; // See: https://stackoverflow.com/questions/4817029/whats-the-best-way-to-detect-a-touch-screen-device-using-javascript/4819886#4819886
27
- const getWidth = () => Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
28
- window.onresize = () => this.setState({ width: getWidth() });
29
- this.state = {
30
- activeIndex: undefined,
31
- width: getWidth(),
32
- mobileMenuActive: false
33
- };
34
- }
35
-
36
- render() {
37
- const mobileMenu = (this.isTouchDevice && this.state.width <= 980) || this.state.width <= 980;
38
- return (
39
- <nav className={"navigation" + (mobileMenu ? " is-touch" : "")} role="navigation">
40
- {
41
- mobileMenu ? (
42
- <div className="navigation-header-mobile" onClick={() => this.setState({ mobileMenuActive: !this.state.mobileMenuActive })}>
43
- <i className="icon-menu"></i>
44
- </div>
45
- ) : ""
46
- }
47
- {
48
- (!mobileMenu || (mobileMenu && this.state.mobileMenuActive)) ? (
49
- <div className="navigation-header">
50
- {
51
- window.menu.map((item, index) => (
52
- <div
53
- onMouseEnter={!mobileMenu ? () => this.setState({ activeIndex: index }) : undefined}
54
- onMouseLeave={!mobileMenu ? () => this.setState({ activeIndex: undefined }) : undefined}
55
- key={index}>
56
- <div className="category-title">
57
- {
58
- mobileMenu ? (
59
- (item.items !== undefined) ? (
60
- <i className={"toggle-button " + (this.state.activeIndex === index ? "icon-minus-circled" : "icon-plus-circled")} onClick={() => this.setState({ activeIndex: this.state.activeIndex === index ? undefined : index })}></i>
61
- ) : (
62
- <span className="toggle-button-placeholder"></span>
63
- )
64
- ) : ""
65
- }
66
- <a
67
- href={item.href}
68
- className={(this.state.activeIndex === index) ? "active" : ""}
69
- >{item.title}</a>
70
- </div>
71
- {
72
- (item.items !== undefined && (this.state.activeIndex === index)) ? (
73
- <div className="navigation-submenu">
74
- {
75
- item.items.map((subItem, index) => (
76
- <div className="navigation-submenu-column" key={index}>
77
- <a className="navigation-submenu-column-header" href={subItem.href}>
78
- <i className="icon-right-open-top-item"></i>
79
- {subItem.title}
80
- </a>
81
- {
82
- (subItem.items !== undefined) ? (
83
- subItem.items.map((subSubItem, index) => (
84
- <a className="navigation-submenu-column-sub" href={subSubItem.href} key={index}>
85
- <i className="icon-right-open"></i>
86
- {subSubItem.title}
87
- </a>
88
- ))
89
- ) : ""
90
- }
91
- </div>
92
- ))
93
- }
94
- </div>
95
- ) : ""
96
- }
97
- </div>
98
- ))
99
- }
100
- </div>
101
- ) : ""
102
- }
103
- </nav>
104
- );
105
- }
106
- };
107
-
108
- ReactDOM.render(<Nav />, document.getElementById("react-placeholder-navigation"));
109
-
110
- // ////////////////////////////////////////////////////////////////////////////
111
- // Render breadcrumb navigation
112
- // ////////////////////////////////////////////////////////////////////////////
113
- const Breadcrumb = () => {
114
- const breadcrumbPlaceholder = document.getElementById("react-placeholder-breadcrumb");
115
- const url = breadcrumbPlaceholder.getAttribute("url").replace(/\/$/, "");
116
-
117
- const getBreadcrombItems = () => {
118
- let result = undefined;
119
-
120
- const home = Object.assign({}, menu[0]);
121
- home.title = "Home";
122
-
123
- menu.map(item1 => {
124
- if (item1.href.replace(/\/$/, "") === url) {
125
- if (item1 !== menu[0]) {
126
- result = [home, item1];
127
- }
128
- }
129
- else if (item1.items) {
130
- item1.items.map(item2 => {
131
- if (item2.href.replace(/\/$/, "") === url) {
132
- result = [home, item1, item2];
133
- }
134
- else if (item2.items) {
135
- item2.items.map(item3 => {
136
- if (item3.href.replace(/\/$/, "") === url) {
137
- result = [home, item1, item2, item3];
138
- }
139
- });
140
- }
141
- });
142
- }
143
- });
144
- return result;
145
- };
146
-
147
- const items = getBreadcrombItems();
148
- return (
149
- <div>
150
- {
151
- items ? (
152
- items.map((item, index) => (
153
- (index !== items.length - 1) ? (
154
- <span key={index}><a href={item.href}>{item.title}</a> / </span>
155
- ) : (
156
- <span key={index}>{item.title}</span>
157
- )
158
- ))
159
- ) : ""
160
- }
161
- </div>
162
- );
163
- };
164
-
165
- ReactDOM.render(<Breadcrumb />, document.getElementById("react-placeholder-breadcrumb"));
166
-
167
- // ////////////////////////////////////////////////////////////////////////////
168
- // Render toggle visibility button
169
- // ////////////////////////////////////////////////////////////////////////////
170
-
171
- if (document.getElementById("react-placeholder-toggleVisibility") !== null) {
172
- const ToggleVisibility = class extends React.Component {
173
- constructor(props) {
174
- super(props);
175
- this.state = {
176
- visible: false,
177
- language: document.getElementById("react-placeholder-toggleVisibility").getAttribute("language") // null if not set
178
- };
179
- }
180
-
181
- render() {
182
- console.log(this.state.language);
183
- const stringShowLess = this.state.language === "DE" ? "Weniger anzeigen" : "Show less";
184
- const stringShowMore = this.state.language === "DE" ? "Mehr anzeigen" : "Show more";
185
-
186
- const toggle = () => this.setState({ visible: !this.state.visible },
187
- (this.state.visible) ? (
188
- () => $(".toggle-visibility").addClass("hide")
189
- ) : (
190
- () => $(".toggle-visibility").removeClass("hide")
191
- )
192
- );
193
-
194
- return (
195
- <div className="u-cursor-pointer" onClick={toggle}>
196
- {
197
- (this.state.visible) ? (
198
- stringShowLess
199
- ) : (
200
- stringShowMore
201
- )
202
- }
203
- </div>
204
- );
205
- }
206
- };
207
-
208
- ReactDOM.render(<ToggleVisibility />, document.getElementById("react-placeholder-toggleVisibility"));
209
- }
210
-
211
- // ////////////////////////////////////////////////////////////////////////////
212
- // Render filter input
213
- // ////////////////////////////////////////////////////////////////////////////
214
-
215
- if (document.getElementById("react-placeholder-filterInput") !== null) {
216
- const FilterInput = class extends React.Component {
217
- constructor(props) {
218
- super(props);
219
- this.state = {
220
- visible: false
221
- };
222
- }
223
-
224
- render() {
225
- // Define case insensitive selector (https://stackoverflow.com/questions/187537/is-there-a-case-insensitive-jquery-contains-selector/187557)
226
- $.extend($.expr[":"], {
227
- "containsIN": function (elem, i, match, array) {
228
- return (elem.textContent || elem.innerText || "").toLowerCase().indexOf((match[3] || "").toLowerCase()) >= 0;
229
- }
230
- });
231
-
232
- const onChange = (event) => {
233
- const searchString = event.target.value;
234
- const targetElements = $(".filterInput-targetElement");
235
- if (searchString == "") {
236
- targetElements.show();
237
- }
238
- else {
239
- targetElements.hide();
240
- targetElements.filter(function () {
241
- return !searchString.split(" ").map(word => $(this).is(":containsIN('" + word + "')")).includes(false);
242
- }).show();
243
- }
244
- };
245
-
246
- return (
247
- <div className="filterInput">
248
- <i className="icon-search"></i>
249
- <input type="text" onChange={onChange} placeholder="Filter..." />
250
- </div>
251
- );
252
- }
253
- };
254
-
255
- ReactDOM.render(<FilterInput />, document.getElementById("react-placeholder-filterInput"));
256
- }
257
-
258
- // ////////////////////////////////////////////////////////////////////////////
259
- // Activate carousel
260
- // ////////////////////////////////////////////////////////////////////////////
261
-
262
- $(document).ready(function () {
263
- $(".slick-element").slick({
264
- dots: true,
265
- autoplay: true,
266
- fade: true,
267
- autoplaySpeed: 6000,
268
- speed: 1000
269
- });
270
-
271
- $(".slick-element > div").removeClass("hide");
272
- });
273
-
274
-
275
- // ////////////////////////////////////////////////////////////////////////////
276
- // Render bibsonomy
277
- // ////////////////////////////////////////////////////////////////////////////
278
- import initBibsonomy from "./bibsonomy.js";
279
- $(document).ready(function () {
280
- if ($(".bibsonomy").length) {
281
- initBibsonomy();
282
- }
283
- });
284
-
285
-
286
- // ////////////////////////////////////////////////////////////////////////////
287
- // Render topic selector
288
- // ////////////////////////////////////////////////////////////////////////////
289
- const element = document.getElementById("react-placeholder-topicSelector");
290
- if (element !== null) {
291
- const TopicSelector = class extends React.Component {
292
- constructor(props) {
293
- super(props);
294
- this.typeClasses = [
295
- "type-mcsp",
296
- "type-mcst",
297
- "type-hcip",
298
- "type-hcit",
299
- "type-csbt",
300
- "type-csmp",
301
- "type-csmt",
302
- "type-gebt",
303
- "type-ind",
304
- "type-indcoop",
305
- "type-phd"
306
-
307
- ];
308
- this.typeStrings = [
309
- "MCS Bachelor Project",
310
- "MCS Bachelor Thesis",
311
- "HCI Master Project",
312
- "HCI Master Thesis",
313
- "Computer Science Bachelor Thesis",
314
- "Computer Science Master Project",
315
- "Computer Science Master Thesis",
316
- "Games Engineering Bachelor Thesis",
317
- "Industry Project",
318
- "Industry Cooperation",
319
- "PhD Project"
320
- ];
321
- this.state = {
322
- selected: 0
323
- };
324
- }
325
-
326
- updateTopics() {
327
- if (this.state.selected !== 0) {
328
- $(".topic." + this.typeClasses[this.state.selected - 1]).show();
329
- $(".topic:not(." + this.typeClasses[this.state.selected - 1] + ")").hide();
330
- }
331
- else {
332
- $(".topic").show();
333
- }
334
- }
335
-
336
- render() {
337
- return (
338
- <div className="column-layout">
339
- {
340
- ["Show all"].concat(this.typeStrings).map((string, index) => (
341
- <div key={index}>
342
- <input type="radio" value={index} checked={this.state.selected === index} onChange={() => this.setState({ selected: index }, this.updateTopics)} />
343
- {string}
344
- </div>
345
- ))
346
- }
347
- </div>
348
- );
349
- }
350
- };
351
-
352
- ReactDOM.render(<TopicSelector />, document.getElementById("react-placeholder-topicSelector"));
353
- }