@nocobase/plugin-theme-editor 2.0.0-alpha.2 → 2.0.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,44 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+
10
+ (self.webpackChunk_nocobase_plugin_theme_editor=self.webpackChunk_nocobase_plugin_theme_editor||[]).push([["572"],{3722:function(e,t,r){"use strict";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 n(e,t,r){var n;return(n=function(e,t){if("object"!=o(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!=o(n))return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==o(n)?n:n+"")in e)?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}r.d(t,{t:function(){return s}});let i=Math.round;function a(e,t){let r=e.replace(/^[^(]*\((.*)/,"$1").replace(/\).*/,"").match(/\d*\.?\d+%?/g)||[],o=r.map(e=>parseFloat(e));for(let e=0;e<3;e+=1)o[e]=t(o[e]||0,r[e]||"",e);return r[3]?o[3]=r[3].includes("%")?o[3]/100:o[3]:o[3]=1,o}let l=(e,t,r)=>0===r?e:e/100;function c(e,t){let r=t||255;return e>r?r:e<0?0:e}class s{constructor(e){function t(t){return t[0]in e&&t[1]in e&&t[2]in e}if(n(this,"isValid",!0),n(this,"r",0),n(this,"g",0),n(this,"b",0),n(this,"a",1),n(this,"_h",void 0),n(this,"_s",void 0),n(this,"_l",void 0),n(this,"_v",void 0),n(this,"_max",void 0),n(this,"_min",void 0),n(this,"_brightness",void 0),e)if("string"==typeof e){let t=e.trim();function r(e){return t.startsWith(e)}/^#?[A-F\d]{3,8}$/i.test(t)?this.fromHexString(t):r("rgb")?this.fromRgbString(t):r("hsl")?this.fromHslString(t):(r("hsv")||r("hsb"))&&this.fromHsvString(t)}else if(e instanceof s)this.r=e.r,this.g=e.g,this.b=e.b,this.a=e.a,this._h=e._h,this._s=e._s,this._l=e._l,this._v=e._v;else if(t("rgb"))this.r=c(e.r),this.g=c(e.g),this.b=c(e.b),this.a="number"==typeof e.a?c(e.a,1):1;else if(t("hsl"))this.fromHsl(e);else if(t("hsv"))this.fromHsv(e);else throw Error("@ant-design/fast-color: unsupported input "+JSON.stringify(e))}setR(e){return this._sc("r",e)}setG(e){return this._sc("g",e)}setB(e){return this._sc("b",e)}setA(e){return this._sc("a",e,1)}setHue(e){let t=this.toHsv();return t.h=e,this._c(t)}getLuminance(){function e(e){let t=e/255;return t<=.03928?t/12.92:Math.pow((t+.055)/1.055,2.4)}let t=e(this.r);return .2126*t+.7152*e(this.g)+.0722*e(this.b)}getHue(){if(void 0===this._h){let e=this.getMax()-this.getMin();0===e?this._h=0:this._h=i(60*(this.r===this.getMax()?(this.g-this.b)/e+6*(this.g<this.b):this.g===this.getMax()?(this.b-this.r)/e+2:(this.r-this.g)/e+4))}return this._h}getSaturation(){if(void 0===this._s){let e=this.getMax()-this.getMin();0===e?this._s=0:this._s=e/this.getMax()}return this._s}getLightness(){return void 0===this._l&&(this._l=(this.getMax()+this.getMin())/510),this._l}getValue(){return void 0===this._v&&(this._v=this.getMax()/255),this._v}getBrightness(){return void 0===this._brightness&&(this._brightness=(299*this.r+587*this.g+114*this.b)/1e3),this._brightness}darken(e=10){let t=this.getHue(),r=this.getSaturation(),o=this.getLightness()-e/100;return o<0&&(o=0),this._c({h:t,s:r,l:o,a:this.a})}lighten(e=10){let t=this.getHue(),r=this.getSaturation(),o=this.getLightness()+e/100;return o>1&&(o=1),this._c({h:t,s:r,l:o,a:this.a})}mix(e,t=50){let r=this._c(e),o=t/100,n=e=>(r[e]-this[e])*o+this[e],a={r:i(n("r")),g:i(n("g")),b:i(n("b")),a:i(100*n("a"))/100};return this._c(a)}tint(e=10){return this.mix({r:255,g:255,b:255,a:1},e)}shade(e=10){return this.mix({r:0,g:0,b:0,a:1},e)}onBackground(e){let t=this._c(e),r=this.a+t.a*(1-this.a),o=e=>i((this[e]*this.a+t[e]*t.a*(1-this.a))/r);return this._c({r:o("r"),g:o("g"),b:o("b"),a:r})}isDark(){return 128>this.getBrightness()}isLight(){return this.getBrightness()>=128}equals(e){return this.r===e.r&&this.g===e.g&&this.b===e.b&&this.a===e.a}clone(){return this._c(this)}toHexString(){let e="#",t=(this.r||0).toString(16);e+=2===t.length?t:"0"+t;let r=(this.g||0).toString(16);e+=2===r.length?r:"0"+r;let o=(this.b||0).toString(16);if(e+=2===o.length?o:"0"+o,"number"==typeof this.a&&this.a>=0&&this.a<1){let t=i(255*this.a).toString(16);e+=2===t.length?t:"0"+t}return e}toHsl(){return{h:this.getHue(),s:this.getSaturation(),l:this.getLightness(),a:this.a}}toHslString(){let e=this.getHue(),t=i(100*this.getSaturation()),r=i(100*this.getLightness());return 1!==this.a?`hsla(${e},${t}%,${r}%,${this.a})`:`hsl(${e},${t}%,${r}%)`}toHsv(){return{h:this.getHue(),s:this.getSaturation(),v:this.getValue(),a:this.a}}toRgb(){return{r:this.r,g:this.g,b:this.b,a:this.a}}toRgbString(){return 1!==this.a?`rgba(${this.r},${this.g},${this.b},${this.a})`:`rgb(${this.r},${this.g},${this.b})`}toString(){return this.toRgbString()}_sc(e,t,r){let o=this.clone();return o[e]=c(t,r),o}_c(e){return new this.constructor(e)}getMax(){return void 0===this._max&&(this._max=Math.max(this.r,this.g,this.b)),this._max}getMin(){return void 0===this._min&&(this._min=Math.min(this.r,this.g,this.b)),this._min}fromHexString(e){let t=e.replace("#","");function r(e,r){return parseInt(t[e]+t[r||e],16)}t.length<6?(this.r=r(0),this.g=r(1),this.b=r(2),this.a=t[3]?r(3)/255:1):(this.r=r(0,1),this.g=r(2,3),this.b=r(4,5),this.a=t[6]?r(6,7)/255:1)}fromHsl({h:e,s:t,l:r,a:o}){if(this._h=e%360,this._s=t,this._l=r,this.a="number"==typeof o?o:1,t<=0){let e=i(255*r);this.r=e,this.g=e,this.b=e}let n=0,a=0,l=0,c=e/60,s=(1-Math.abs(2*r-1))*t,d=s*(1-Math.abs(c%2-1));c>=0&&c<1?(n=s,a=d):c>=1&&c<2?(n=d,a=s):c>=2&&c<3?(a=s,l=d):c>=3&&c<4?(a=d,l=s):c>=4&&c<5?(n=d,l=s):c>=5&&c<6&&(n=s,l=d);let f=r-s/2;this.r=i((n+f)*255),this.g=i((a+f)*255),this.b=i((l+f)*255)}fromHsv({h:e,s:t,v:r,a:o}){this._h=e%360,this._s=t,this._v=r,this.a="number"==typeof o?o:1;let n=i(255*r);if(this.r=n,this.g=n,this.b=n,t<=0)return;let a=e/60,l=Math.floor(a),c=a-l,s=i(r*(1-t)*255),d=i(r*(1-t*c)*255),f=i(r*(1-t*(1-c))*255);switch(l){case 0:this.g=f,this.b=s;break;case 1:this.r=d,this.b=s;break;case 2:this.r=s,this.b=f;break;case 3:this.r=s,this.g=d;break;case 4:this.r=f,this.g=s;break;default:this.g=s,this.b=d}}fromHsvString(e){let t=a(e,l);this.fromHsv({h:t[0],s:t[1],v:t[2],a:t[3]})}fromHslString(e){let t=a(e,l);this.fromHsl({h:t[0],s:t[1],l:t[2],a:t[3]})}fromRgbString(e){let t=a(e,(e,t)=>t.includes("%")?i(e/100*255):e);this.r=t[0],this.g=t[1],this.b=t[2],this.a=t[3]}}},8582:function(e,t,r){"use strict";r.d(t,{D:function(){return eE}});var o,n,i,a,l,c,s,d=r(9665),f=r(8156),u=r.n(f),g=r(2298),h=r.n(g),p=function(e){function t(e,t,o){var n=t.trim().split(h);t=n;var i=n.length,a=e.length;switch(a){case 0:case 1:var l=0;for(e=0===a?"":e[0]+" ";l<i;++l)t[l]=r(e,t[l],o).trim();break;default:var c=l=0;for(t=[];l<i;++l)for(var s=0;s<a;++s)t[c++]=r(e[s]+" ",n[l],o).trim()}return t}function r(e,t,r){var o=t.charCodeAt(0);switch(33>o&&(o=(t=t.trim()).charCodeAt(0)),o){case 38:return t.replace(p,"$1"+e.trim());case 58:return e.trim()+t.replace(p,"$1"+e.trim());default:if(0<+r&&0<t.indexOf("\f"))return t.replace(p,(58===e.charCodeAt(0)?"":"$1")+e.trim())}return e+t}function o(e,t,r,i){var a=e+";",l=2*t+3*r+4*i;if(944===l){e=a.indexOf(":",9)+1;var c=a.substring(e,a.length-1).trim();return c=a.substring(0,e).trim()+c+";",1===T||2===T&&n(c,1)?"-webkit-"+c+c:c}if(0===T||2===T&&!n(a,1))return a;switch(l){case 1015:return 97===a.charCodeAt(10)?"-webkit-"+a+a:a;case 951:return 116===a.charCodeAt(3)?"-webkit-"+a+a:a;case 963:return 110===a.charCodeAt(5)?"-webkit-"+a+a:a;case 1009:if(100!==a.charCodeAt(4))break;case 969:case 942:return"-webkit-"+a+a;case 978:return"-webkit-"+a+"-moz-"+a+a;case 1019:case 983:return"-webkit-"+a+"-moz-"+a+"-ms-"+a+a;case 883:if(45===a.charCodeAt(8))return"-webkit-"+a+a;if(0<a.indexOf("image-set(",11))return a.replace(w,"$1-webkit-$2")+a;break;case 932:if(45===a.charCodeAt(4))switch(a.charCodeAt(5)){case 103:return"-webkit-box-"+a.replace("-grow","")+"-webkit-"+a+"-ms-"+a.replace("grow","positive")+a;case 115:return"-webkit-"+a+"-ms-"+a.replace("shrink","negative")+a;case 98:return"-webkit-"+a+"-ms-"+a.replace("basis","preferred-size")+a}return"-webkit-"+a+"-ms-"+a+a;case 964:return"-webkit-"+a+"-ms-flex-"+a+a;case 1023:if(99!==a.charCodeAt(8))break;return"-webkit-box-pack"+(c=a.substring(a.indexOf(":",15)).replace("flex-","").replace("space-between","justify"))+"-webkit-"+a+"-ms-flex-pack"+c+a;case 1005:return u.test(a)?a.replace(f,":-webkit-")+a.replace(f,":-moz-")+a:a;case 1e3:switch(t=(c=a.substring(13).trim()).indexOf("-")+1,c.charCodeAt(0)+c.charCodeAt(t)){case 226:c=a.replace(v,"tb");break;case 232:c=a.replace(v,"tb-rl");break;case 220:c=a.replace(v,"lr");break;default:return a}return"-webkit-"+a+"-ms-"+c+a;case 1017:if(-1===a.indexOf("sticky",9))break;case 975:switch(t=(a=e).length-10,l=(c=(33===a.charCodeAt(t)?a.substring(0,t):a).substring(e.indexOf(":",7)+1).trim()).charCodeAt(0)+(0|c.charCodeAt(7))){case 203:if(111>c.charCodeAt(8))break;case 115:a=a.replace(c,"-webkit-"+c)+";"+a;break;case 207:case 102:a=a.replace(c,"-webkit-"+(102<l?"inline-":"")+"box")+";"+a.replace(c,"-webkit-"+c)+";"+a.replace(c,"-ms-"+c+"box")+";"+a}return a+";";case 938:if(45===a.charCodeAt(5))switch(a.charCodeAt(6)){case 105:return c=a.replace("-items",""),"-webkit-"+a+"-webkit-box-"+c+"-ms-flex-"+c+a;case 115:return"-webkit-"+a+"-ms-flex-item-"+a.replace(M,"")+a;default:return"-webkit-"+a+"-ms-flex-line-pack"+a.replace("align-content","").replace(M,"")+a}break;case 973:case 989:if(45!==a.charCodeAt(3)||122===a.charCodeAt(4))break;case 931:case 953:if(!0===H.test(e))return 115===(c=e.substring(e.indexOf(":")+1)).charCodeAt(0)?o(e.replace("stretch","fill-available"),t,r,i).replace(":fill-available",":stretch"):a.replace(c,"-webkit-"+c)+a.replace(c,"-moz-"+c.replace("fill-",""))+a;break;case 962:if(a="-webkit-"+a+(102===a.charCodeAt(5)?"-ms-"+a:"")+a,211===r+i&&105===a.charCodeAt(13)&&0<a.indexOf("transform",10))return a.substring(0,a.indexOf(";",27)+1).replace(g,"$1-webkit-$2")+a}return a}function n(e,t){var r=e.indexOf(1===t?":":"{"),o=e.substring(0,3!==t?r:10);return r=e.substring(r+1,e.length-1),P(2!==t?o:o.replace(B,"$1"),r,t)}function i(e,t){var r=o(t,t.charCodeAt(0),t.charCodeAt(1),t.charCodeAt(2));return r!==t+";"?r.replace(x," or ($1)").substring(4):"("+t+")"}function a(e,t,r,o,n,i,a,l,s,d){for(var f,u=0,g=t;u<_;++u)switch(f=z[u].call(c,e,g,r,o,n,i,a,l,s,d)){case void 0:case!1:case!0:case null:break;default:g=f}if(g!==t)return g}function l(e){return void 0!==(e=e.prefix)&&(P=null,e?"function"!=typeof e?T=1:(T=2,P=e):T=0),l}function c(e,r){var l=e;if(33>l.charCodeAt(0)&&(l=l.trim()),l=[l],0<_){var c=a(-1,r,l,l,k,C,0,0,0,0);void 0!==c&&"string"==typeof c&&(r=c)}var f=function e(r,l,c,f,u){for(var g,h,p,v,x,M=0,B=0,H=0,w=0,z=0,P=0,E=p=g=0,D=0,F=0,R=0,O=0,W=c.length,X=W-1,G="",j="",$="",N="";D<W;){if(h=c.charCodeAt(D),D===X&&0!==B+w+H+M&&(0!==B&&(h=47===B?10:47),w=H=M=0,W++,X++),0===B+w+H+M){if(D===X&&(0<F&&(G=G.replace(d,"")),0<G.trim().length)){switch(h){case 32:case 9:case 59:case 13:case 10:break;default:G+=c.charAt(D)}h=59}switch(h){case 123:for(g=(G=G.trim()).charCodeAt(0),p=1,O=++D;D<W;){switch(h=c.charCodeAt(D)){case 123:p++;break;case 125:p--;break;case 47:switch(h=c.charCodeAt(D+1)){case 42:case 47:e:{for(E=D+1;E<X;++E)switch(c.charCodeAt(E)){case 47:if(42===h&&42===c.charCodeAt(E-1)&&D+2!==E){D=E+1;break e}break;case 10:if(47===h){D=E+1;break e}}D=E}}break;case 91:h++;case 40:h++;case 34:case 39:for(;D++<X&&c.charCodeAt(D)!==h;);}if(0===p)break;D++}if(p=c.substring(O,D),0===g&&(g=(G=G.replace(s,"").trim()).charCodeAt(0)),64===g){switch(0<F&&(G=G.replace(d,"")),h=G.charCodeAt(1)){case 100:case 109:case 115:case 45:F=l;break;default:F=A}if(O=(p=e(l,F,p,h,u+1)).length,0<_&&(x=a(3,p,F=t(A,G,R),l,k,C,O,h,u,f),G=F.join(""),void 0!==x&&0===(O=(p=x.trim()).length)&&(h=0,p="")),0<O)switch(h){case 115:G=G.replace(y,i);case 100:case 109:case 45:p=G+"{"+p+"}";break;case 107:p=(G=G.replace(m,"$1 $2"))+"{"+p+"}",p=1===T||2===T&&n("@"+p,3)?"@-webkit-"+p+"@"+p:"@"+p;break;default:p=G+p,112===f&&(j+=p,p="")}else p=""}else p=e(l,t(l,G,R),p,f,u+1);$+=p,p=R=F=E=g=0,G="",h=c.charCodeAt(++D);break;case 125:case 59:if(1<(O=(G=(0<F?G.replace(d,""):G).trim()).length))switch(0===E&&(45===(g=G.charCodeAt(0))||96<g&&123>g)&&(O=(G=G.replace(" ",":")).length),0<_&&void 0!==(x=a(1,G,l,r,k,C,j.length,f,u,f))&&0===(O=(G=x.trim()).length)&&(G="\0\0"),g=G.charCodeAt(0),h=G.charCodeAt(1),g){case 0:break;case 64:if(105===h||99===h){N+=G+c.charAt(D);break}default:58!==G.charCodeAt(O-1)&&(j+=o(G,g,h,G.charCodeAt(2)))}R=F=E=g=0,G="",h=c.charCodeAt(++D)}}switch(h){case 13:case 10:47===B?B=0:0===1+g&&107!==f&&0<G.length&&(F=1,G+="\0"),0<_*L&&a(0,G,l,r,k,C,j.length,f,u,f),C=1,k++;break;case 59:case 125:if(0===B+w+H+M){C++;break}default:switch(C++,v=c.charAt(D),h){case 9:case 32:if(0===w+M+B)switch(z){case 44:case 58:case 9:case 32:v="";break;default:32!==h&&(v=" ")}break;case 0:v="\\0";break;case 12:v="\\f";break;case 11:v="\\v";break;case 38:0===w+B+M&&(F=R=1,v="\f"+v);break;case 108:if(0===w+B+M+I&&0<E)switch(D-E){case 2:112===z&&58===c.charCodeAt(D-3)&&(I=z);case 8:111===P&&(I=P)}break;case 58:0===w+B+M&&(E=D);break;case 44:0===B+H+w+M&&(F=1,v+="\r");break;case 34:case 39:0===B&&(w=w===h?0:0===w?h:w);break;case 91:0===w+B+H&&M++;break;case 93:0===w+B+H&&M--;break;case 41:0===w+B+M&&H--;break;case 40:0===w+B+M&&(0===g&&(2*z+3*P==533||(g=1)),H++);break;case 64:0===B+H+w+M+E+p&&(p=1);break;case 42:case 47:if(!(0<w+M+H))switch(B){case 0:switch(2*h+3*c.charCodeAt(D+1)){case 235:B=47;break;case 220:O=D,B=42}break;case 42:47===h&&42===z&&O+2!==D&&(33===c.charCodeAt(O+2)&&(j+=c.substring(O,D+1)),v="",B=0)}}0===B&&(G+=v)}P=z,z=h,D++}if(0<(O=j.length)){if(F=l,0<_&&void 0!==(x=a(2,j,F,r,k,C,O,f,u,f))&&0===(j=x).length)return N+j+$;if(j=F.join(",")+"{"+j+"}",0!=T*I){switch(2!==T||n(j,2)||(I=0),I){case 111:j=j.replace(S,":-moz-$1")+j;break;case 112:j=j.replace(b,"::-webkit-input-$1")+j.replace(b,"::-moz-$1")+j.replace(b,":-ms-input-$1")+j}I=0}}return N+j+$}(A,l,r,0,0);return 0<_&&void 0!==(c=a(-2,f,l,l,k,C,f.length,0,0,0))&&(f=c),I=0,C=k=1,f}var s=/^\0+/g,d=/[\0\r\f]/g,f=/: */g,u=/zoo|gra/,g=/([,: ])(transform)/g,h=/,\r+?/g,p=/([\t\r\n ])*\f?&/g,m=/@(k\w+)\s*(\S*)\s*/,b=/::(place)/g,S=/:(read-only)/g,v=/[svh]\w+-[tblr]{2}/,y=/\(\s*(.*)\s*\)/g,x=/([\s\S]*?);/g,M=/-self|flex-/g,B=/[^]*?(:[rp][el]a[\w-]+)[^]*/,H=/stretch|:\s*\w+\-(?:conte|avail)/,w=/([^-])(image-set\()/,C=1,k=1,I=0,T=1,A=[],z=[],_=0,P=null,L=0,E="";return c.use=function e(t){switch(t){case void 0:case null:_=z.length=0;break;default:if("function"==typeof t)z[_++]=t;else if("object"==typeof t)for(var r=0,o=t.length;r<o;++r)e(t[r]);else L=0|!!t}return e},c.set=l,void 0!==e&&l(e),c},m={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},b=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,S=(o=function(e){return b.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&91>e.charCodeAt(2)},n=Object.create(null),function(e){return void 0===n[e]&&(n[e]=o(e)),n[e]}),v=r(6905),y=r.n(v);function x(){return(x=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e}).apply(this,arguments)}var M=function(e,t){for(var r=[e[0]],o=0,n=t.length;o<n;o+=1)r.push(t[o],e[o+1]);return r},B=function(e){return null!==e&&"object"==typeof e&&"[object Object]"===(e.toString?e.toString():Object.prototype.toString.call(e))&&!(0,d.typeOf)(e)},H=Object.freeze([]),w=Object.freeze({});function C(e){return"function"==typeof e}function k(e){return e.displayName||e.name||"Component"}function I(e){return e&&"string"==typeof e.styledComponentId}var T="undefined"!=typeof process&&void 0!==process.env&&(process.env.REACT_APP_SC_ATTR||process.env.SC_ATTR)||"data-styled",A="undefined"!=typeof window&&"HTMLElement"in window,z=!!("boolean"==typeof SC_DISABLE_SPEEDY?SC_DISABLE_SPEEDY:"undefined"!=typeof process&&void 0!==process.env&&(void 0!==process.env.REACT_APP_SC_DISABLE_SPEEDY&&""!==process.env.REACT_APP_SC_DISABLE_SPEEDY?"false"!==process.env.REACT_APP_SC_DISABLE_SPEEDY&&process.env.REACT_APP_SC_DISABLE_SPEEDY:void 0!==process.env.SC_DISABLE_SPEEDY&&""!==process.env.SC_DISABLE_SPEEDY&&"false"!==process.env.SC_DISABLE_SPEEDY&&process.env.SC_DISABLE_SPEEDY));function _(e){for(var t=arguments.length,r=Array(t>1?t-1:0),o=1;o<t;o++)r[o-1]=arguments[o];throw Error("An error occurred. See https://git.io/JUIaE#"+e+" for more information."+(r.length>0?" Args: "+r.join(", "):""))}var P=function(){function e(e){this.groupSizes=new Uint32Array(512),this.length=512,this.tag=e}var t=e.prototype;return t.indexOfGroup=function(e){for(var t=0,r=0;r<e;r++)t+=this.groupSizes[r];return t},t.insertRules=function(e,t){if(e>=this.groupSizes.length){for(var r=this.groupSizes,o=r.length,n=o;e>=n;)(n<<=1)<0&&_(16,""+e);this.groupSizes=new Uint32Array(n),this.groupSizes.set(r),this.length=n;for(var i=o;i<n;i++)this.groupSizes[i]=0}for(var a=this.indexOfGroup(e+1),l=0,c=t.length;l<c;l++)this.tag.insertRule(a,t[l])&&(this.groupSizes[e]++,a++)},t.clearGroup=function(e){if(e<this.length){var t=this.groupSizes[e],r=this.indexOfGroup(e),o=r+t;this.groupSizes[e]=0;for(var n=r;n<o;n++)this.tag.deleteRule(r)}},t.getGroup=function(e){var t="";if(e>=this.length||0===this.groupSizes[e])return t;for(var r=this.groupSizes[e],o=this.indexOfGroup(e),n=o+r,i=o;i<n;i++)t+=this.tag.getRule(i)+"/*!sc*/\n";return t},e}(),L=new Map,E=new Map,D=1,F=function(e){if(L.has(e))return L.get(e);for(;E.has(D);)D++;var t=D++;return L.set(e,t),E.set(t,e),t},R=function(e,t){t>=D&&(D=t+1),L.set(e,t),E.set(t,e)},O="style["+T+'][data-styled-version="5.3.11"]',W=RegExp("^"+T+'\\.g(\\d+)\\[id="([\\w\\d-]+)"\\].*?"([^"]*)'),X=function(e,t,r){for(var o,n=r.split(","),i=0,a=n.length;i<a;i++)(o=n[i])&&e.registerName(t,o)},G=function(e,t){for(var r=(t.textContent||"").split("/*!sc*/\n"),o=[],n=0,i=r.length;n<i;n++){var a=r[n].trim();if(a){var l=a.match(W);if(l){var c=0|parseInt(l[1],10),s=l[2];0!==c&&(R(s,c),X(e,s,l[3]),e.getTag().insertRules(c,o)),o.length=0}else o.push(a)}}},j=function(){return r.nc},$=function(e){var t=document.head,r=e||t,o=document.createElement("style"),n=function(e){for(var t=e.childNodes,r=t.length;r>=0;r--){var o=t[r];if(o&&1===o.nodeType&&o.hasAttribute(T))return o}}(r),i=void 0!==n?n.nextSibling:null;o.setAttribute(T,"active"),o.setAttribute("data-styled-version","5.3.11");var a=j();return a&&o.setAttribute("nonce",a),r.insertBefore(o,i),o},N=function(){function e(e){var t=this.element=$(e);t.appendChild(document.createTextNode("")),this.sheet=function(e){if(e.sheet)return e.sheet;for(var t=document.styleSheets,r=0,o=t.length;r<o;r++){var n=t[r];if(n.ownerNode===e)return n}_(17)}(t),this.length=0}var t=e.prototype;return t.insertRule=function(e,t){try{return this.sheet.insertRule(t,e),this.length++,!0}catch(e){return!1}},t.deleteRule=function(e){this.sheet.deleteRule(e),this.length--},t.getRule=function(e){var t=this.sheet.cssRules[e];return void 0!==t&&"string"==typeof t.cssText?t.cssText:""},e}(),q=function(){function e(e){var t=this.element=$(e);this.nodes=t.childNodes,this.length=0}var t=e.prototype;return t.insertRule=function(e,t){if(e<=this.length&&e>=0){var r=document.createTextNode(t),o=this.nodes[e];return this.element.insertBefore(r,o||null),this.length++,!0}return!1},t.deleteRule=function(e){this.element.removeChild(this.nodes[e]),this.length--},t.getRule=function(e){return e<this.length?this.nodes[e].textContent:""},e}(),U=function(){function e(e){this.rules=[],this.length=0}var t=e.prototype;return t.insertRule=function(e,t){return e<=this.length&&(this.rules.splice(e,0,t),this.length++,!0)},t.deleteRule=function(e){this.rules.splice(e,1),this.length--},t.getRule=function(e){return e<this.length?this.rules[e]:""},e}(),V=A,Q={isServer:!A,useCSSOMInjection:!z},Y=function(){function e(e,t,r){void 0===e&&(e=w),void 0===t&&(t={}),this.options=x({},Q,{},e),this.gs=t,this.names=new Map(r),this.server=!!e.isServer,!this.server&&A&&V&&(V=!1,function(e){for(var t=document.querySelectorAll(O),r=0,o=t.length;r<o;r++){var n=t[r];n&&"active"!==n.getAttribute(T)&&(G(e,n),n.parentNode&&n.parentNode.removeChild(n))}}(this))}e.registerId=function(e){return F(e)};var t=e.prototype;return t.reconstructWithOptions=function(t,r){return void 0===r&&(r=!0),new e(x({},this.options,{},t),this.gs,r&&this.names||void 0)},t.allocateGSInstance=function(e){return this.gs[e]=(this.gs[e]||0)+1},t.getTag=function(){var e,t,r,o;return this.tag||(this.tag=(t=(e=this.options).isServer,r=e.useCSSOMInjection,o=e.target,new P(t?new U(o):r?new N(o):new q(o))))},t.hasNameForId=function(e,t){return this.names.has(e)&&this.names.get(e).has(t)},t.registerName=function(e,t){if(F(e),this.names.has(e))this.names.get(e).add(t);else{var r=new Set;r.add(t),this.names.set(e,r)}},t.insertRules=function(e,t,r){this.registerName(e,t),this.getTag().insertRules(F(e),r)},t.clearNames=function(e){this.names.has(e)&&this.names.get(e).clear()},t.clearRules=function(e){this.getTag().clearGroup(F(e)),this.clearNames(e)},t.clearTag=function(){this.tag=void 0},t.toString=function(){return function(e){for(var t=e.getTag(),r=t.length,o="",n=0;n<r;n++){var i,a=(i=n,E.get(i));if(void 0!==a){var l=e.names.get(a),c=t.getGroup(n);if(l&&c&&l.size){var s=T+".g"+n+'[id="'+a+'"]',d="";void 0!==l&&l.forEach(function(e){e.length>0&&(d+=e+",")}),o+=""+c+s+'{content:"'+d+'"}/*!sc*/\n'}}}return o}(this)},e}(),Z=/(a)(d)/gi,K=function(e){return String.fromCharCode(e+(e>25?39:97))};function J(e){var t,r="";for(t=Math.abs(e);t>52;t=t/52|0)r=K(t%52)+r;return(K(t%52)+r).replace(Z,"$1-$2")}var ee=function(e,t){for(var r=t.length;r;)e=33*e^t.charCodeAt(--r);return e},et=function(e){return ee(5381,e)};function er(e){for(var t=0;t<e.length;t+=1){var r=e[t];if(C(r)&&!I(r))return!1}return!0}var eo=et("5.3.11"),en=function(){function e(e,t,r){this.rules=e,this.staticRulesId="",this.isStatic=(void 0===r||r.isStatic)&&er(e),this.componentId=t,this.baseHash=ee(eo,t),this.baseStyle=r,Y.registerId(t)}return e.prototype.generateAndInjectStyles=function(e,t,r){var o=this.componentId,n=[];if(this.baseStyle&&n.push(this.baseStyle.generateAndInjectStyles(e,t,r)),this.isStatic&&!r.hash)if(this.staticRulesId&&t.hasNameForId(o,this.staticRulesId))n.push(this.staticRulesId);else{var i=ex(this.rules,e,t,r).join(""),a=J(ee(this.baseHash,i)>>>0);if(!t.hasNameForId(o,a)){var l=r(i,"."+a,void 0,o);t.insertRules(o,a,l)}n.push(a),this.staticRulesId=a}else{for(var c=this.rules.length,s=ee(this.baseHash,r.hash),d="",f=0;f<c;f++){var u=this.rules[f];if("string"==typeof u)d+=u;else if(u){var g=ex(u,e,t,r),h=Array.isArray(g)?g.join(""):g;s=ee(s,h+f),d+=h}}if(d){var p=J(s>>>0);if(!t.hasNameForId(o,p)){var m=r(d,"."+p,void 0,o);t.insertRules(o,p,m)}n.push(p)}}return n.join(" ")},e}(),ei=/^\s*\/\/.*$/gm,ea=[":","[",".","#"];function el(e){var t,r,o,n,i=void 0===e?w:e,a=i.options,l=void 0===a?w:a,c=i.plugins,s=void 0===c?H:c,d=new p(l),f=[],u=function(e){function t(t){if(t)try{e(t+"}")}catch(e){}}return function(r,o,n,i,a,l,c,s,d,f){switch(r){case 1:if(0===d&&64===o.charCodeAt(0))return e(o+";"),"";break;case 2:if(0===s)return o+"/*|*/";break;case 3:switch(s){case 102:case 112:return e(n[0]+o),"";default:return o+(0===f?"/*|*/":"")}case -2:o.split("/*|*/}").forEach(t)}}}(function(e){f.push(e)}),g=function(e,o,i){return 0===o&&-1!==ea.indexOf(i[r.length])||i.match(n)?e:"."+t};function h(e,i,a,l){void 0===l&&(l="&");var c=e.replace(ei,""),s=i&&a?a+" "+i+" { "+c+" }":c;return t=l,o=RegExp("\\"+(r=i)+"\\b","g"),n=RegExp("(\\"+r+"\\b){2,}"),d(a||!i?"":i,s)}return d.use([].concat(s,[function(e,t,n){2===e&&n.length&&n[0].lastIndexOf(r)>0&&(n[0]=n[0].replace(o,g))},u,function(e){if(-2===e){var t=f;return f=[],t}}])),h.hash=s.length?s.reduce(function(e,t){return t.name||_(15),ee(e,t.name)},5381).toString():"",h}var ec=u().createContext(),es=(ec.Consumer,u().createContext()),ed=(es.Consumer,new Y),ef=el();function eu(){return(0,f.useContext)(ec)||ed}function eg(e){var t=(0,f.useState)(e.stylisPlugins),r=t[0],o=t[1],n=eu(),i=(0,f.useMemo)(function(){var t=n;return e.sheet?t=e.sheet:e.target&&(t=t.reconstructWithOptions({target:e.target},!1)),e.disableCSSOMInjection&&(t=t.reconstructWithOptions({useCSSOMInjection:!1})),t},[e.disableCSSOMInjection,e.sheet,e.target]),a=(0,f.useMemo)(function(){return el({options:{prefix:!e.disableVendorPrefixes},plugins:r})},[e.disableVendorPrefixes,r]);return(0,f.useEffect)(function(){h()(r,e.stylisPlugins)||o(e.stylisPlugins)},[e.stylisPlugins]),u().createElement(ec.Provider,{value:i},u().createElement(es.Provider,{value:a},e.children))}var eh=function(){function e(e,t){var r=this;this.inject=function(e,t){void 0===t&&(t=ef);var o=r.name+t.hash;e.hasNameForId(r.id,o)||e.insertRules(r.id,o,t(r.rules,o,"@keyframes"))},this.toString=function(){return _(12,String(r.name))},this.name=e,this.id="sc-keyframes-"+e,this.rules=t}return e.prototype.getName=function(e){return void 0===e&&(e=ef),this.name+e.hash},e}(),ep=/([A-Z])/,em=/([A-Z])/g,eb=/^ms-/,eS=function(e){return"-"+e.toLowerCase()};function ev(e){return ep.test(e)?e.replace(em,eS).replace(eb,"-ms-"):e}var ey=function(e){return null==e||!1===e||""===e};function ex(e,t,r,o){if(Array.isArray(e)){for(var n,i=[],a=0,l=e.length;a<l;a+=1)""!==(n=ex(e[a],t,r,o))&&(Array.isArray(n)?i.push.apply(i,n):i.push(n));return i}return ey(e)?"":I(e)?"."+e.styledComponentId:C(e)?"function"!=typeof e||e.prototype&&e.prototype.isReactComponent||!t?e:ex(e(t),t,r,o):e instanceof eh?r?(e.inject(r,o),e.getName(o)):e:B(e)?function e(t,r){var o,n=[];for(var i in t)t.hasOwnProperty(i)&&!ey(t[i])&&(Array.isArray(t[i])&&t[i].isCss||C(t[i])?n.push(ev(i)+":",t[i],";"):B(t[i])?n.push.apply(n,e(t[i],i)):n.push(ev(i)+": "+(null==(o=t[i])||"boolean"==typeof o||""===o?"":"number"!=typeof o||0===o||i in m||i.startsWith("--")?String(o).trim():o+"px")+";"));return r?[r+" {"].concat(n,["}"]):n}(e):e.toString()}var eM=function(e){return Array.isArray(e)&&(e.isCss=!0),e};function eB(e){for(var t=arguments.length,r=Array(t>1?t-1:0),o=1;o<t;o++)r[o-1]=arguments[o];return C(e)||B(e)?eM(ex(M(H,[e].concat(r)))):0===r.length&&1===e.length&&"string"==typeof e[0]?e:eM(ex(M(e,r)))}var eH=/[!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~-]+/g,ew=/(^-|-$)/g;function eC(e){return e.replace(eH,"-").replace(ew,"")}function ek(e){return"string"==typeof e}var eI=function(e){return"function"==typeof e||"object"==typeof e&&null!==e&&!Array.isArray(e)},eT=u().createContext();eT.Consumer;var eA={},ez=function(e){return function e(t,r,o){if(void 0===o&&(o=w),!(0,d.isValidElementType)(r))return _(1,String(r));var n=function(){return t(r,o,eB.apply(void 0,arguments))};return n.withConfig=function(n){return e(t,r,x({},o,{},n))},n.attrs=function(n){return e(t,r,x({},o,{attrs:Array.prototype.concat(o.attrs,n).filter(Boolean)}))},n}(function e(t,r,o){var n=I(t),i=!ek(t),a=r.attrs,l=void 0===a?H:a,c=r.componentId,s=void 0===c?(b=r.displayName,v=r.parentComponentId,eA[M="string"!=typeof b?"sc":eC(b)]=(eA[M]||0)+1,B=M+"-"+J(et("5.3.11"+M+eA[M])>>>0),v?v+"-"+B:B):c,d=r.displayName,g=void 0===d?ek(t)?"styled."+t:"Styled("+k(t)+")":d,h=r.displayName&&r.componentId?eC(r.displayName)+"-"+r.componentId:r.componentId||s,p=n&&t.attrs?Array.prototype.concat(t.attrs,l).filter(Boolean):l,m=r.shouldForwardProp;n&&t.shouldForwardProp&&(m=r.shouldForwardProp?function(e,o,n){return t.shouldForwardProp(e,o,n)&&r.shouldForwardProp(e,o,n)}:t.shouldForwardProp);var b,v,M,B,T,A=new en(o,h,n?t.componentStyle:void 0),z=A.isStatic&&0===l.length,_=function(e,t){return function(e,t,r,o){var n,i,a,l,c,s,d,u=e.attrs,g=e.componentStyle,h=e.defaultProps,p=e.foldedComponentIds,m=e.shouldForwardProp,b=e.styledComponentId,v=e.target,y=(n=(0,f.useContext)(eT),void 0===(i=h)&&(i=w),a=t.theme!==i.theme&&t.theme||n||i.theme||w,void 0===a&&(a=w),l=x({},t,{theme:a}),c={},u.forEach(function(e){var t,r,o,n=e;for(t in C(n)&&(n=n(l)),n)l[t]=c[t]="className"===t?(r=c[t],o=n[t],r&&o?r+" "+o:r||o):n[t]}),[l,c]),M=y[0],B=y[1],H=(s=eu(),d=(0,f.useContext)(es)||ef,o?g.generateAndInjectStyles(w,s,d):g.generateAndInjectStyles(M,s,d)),k=B.$as||t.$as||B.as||t.as||v,I=ek(k),T=B!==t?x({},t,{},B):t,A={};for(var z in T)"$"!==z[0]&&"as"!==z&&("forwardedAs"===z?A.as=T[z]:(m?m(z,S,k):!I||S(z))&&(A[z]=T[z]));return t.style&&B.style!==t.style&&(A.style=x({},t.style,{},B.style)),A.className=Array.prototype.concat(p,b,H!==b?H:null,t.className,B.className).filter(Boolean).join(" "),A.ref=r,(0,f.createElement)(k,A)}(T,e,t,z)};return _.displayName=g,(T=u().forwardRef(_)).attrs=p,T.componentStyle=A,T.displayName=g,T.shouldForwardProp=m,T.foldedComponentIds=n?Array.prototype.concat(t.foldedComponentIds,t.styledComponentId):H,T.styledComponentId=h,T.target=n?t.target:t,T.withComponent=function(t){var n=r.componentId,i=function(e,t){if(null==e)return{};var r,o,n={},i=Object.keys(e);for(o=0;o<i.length;o++)t.indexOf(r=i[o])>=0||(n[r]=e[r]);return n}(r,["componentId"]),a=n&&n+"-"+(ek(t)?t:eC(k(t)));return e(t,x({},i,{attrs:p,componentId:a}),o)},Object.defineProperty(T,"defaultProps",{get:function(){return this._foldedDefaultProps},set:function(e){this._foldedDefaultProps=n?function e(t){for(var r=arguments.length,o=Array(r>1?r-1:0),n=1;n<r;n++)o[n-1]=arguments[n];for(var i=0;i<o.length;i++){var a=o[i];if(eI(a))for(var l in a)"__proto__"!==l&&"constructor"!==l&&"prototype"!==l&&function(t,r,o){var n=t[o];eI(r)&&eI(n)?e(n,r):t[o]=r}(t,a[l],l)}return t}({},t.defaultProps,e):e}}),Object.defineProperty(T,"toString",{value:function(){return"."+T.styledComponentId}}),i&&y()(T,t,{attrs:!0,componentStyle:!0,displayName:!0,foldedComponentIds:!0,shouldForwardProp:!0,styledComponentId:!0,target:!0,withComponent:!0}),T},e)};["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","marquee","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","marker","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","textPath","tspan"].forEach(function(e){ez[e]=ez(e)}),(i=(function(e,t){this.rules=e,this.componentId=t,this.isStatic=er(e),Y.registerId(this.componentId+1)}).prototype).createStyles=function(e,t,r,o){var n=o(ex(this.rules,t,r,o).join(""),""),i=this.componentId+e;r.insertRules(i,i,n)},i.removeStyles=function(e,t){t.clearRules(this.componentId+e)},i.renderStyles=function(e,t,r,o){e>2&&Y.registerId(this.componentId+e),this.removeStyles(e,r),this.createStyles(e,t,r,o)},(a=(function(){var e=this;this._emitSheetCSS=function(){var t=e.instance.toString();if(!t)return"";var r=j();return"<style "+[r&&'nonce="'+r+'"',T+'="true"','data-styled-version="5.3.11"'].filter(Boolean).join(" ")+">"+t+"</style>"},this.getStyleTags=function(){return e.sealed?_(2):e._emitSheetCSS()},this.getStyleElement=function(){if(e.sealed)return _(2);var t,r=((t={})[T]="",t["data-styled-version"]="5.3.11",t.dangerouslySetInnerHTML={__html:e.instance.toString()},t),o=j();return o&&(r.nonce=o),[u().createElement("style",x({},r,{key:"sc-0-0"}))]},this.seal=function(){e.sealed=!0},this.instance=new Y({isServer:!0}),this.sealed=!1}).prototype).collectStyles=function(e){return this.sealed?_(2):u().createElement(eg,{sheet:this.instance},e)},a.interleaveWithNodeStream=function(e){return _(3)};var e_=function(e,t){if(t)return"row";switch(e){case"horizontal":return"row";case"horizontal-reverse":return"row-reverse";case"vertical":default:return"column";case"vertical-reverse":return"column-reverse"}},eP=function(e,t){return"row"===e_(e,t)},eL=function(e){return"number"==typeof e?"".concat(e,"px"):e},eE=ez.div.attrs(function(){return{className:"layoutkit-flexbox"}})(s||(l=["\n // 是否显示\n display: ",";\n\n flex: ",";\n\n flex-direction: ",";\n justify-content: ",";\n align-items: ",";\n\n width: ",";\n height: ",";\n\n padding: ",";\n\n > *:not(:last-child) {\n margin-right: ",";\n margin-bottom: ",";\n }\n"],c||(c=l.slice(0)),s=Object.freeze(Object.defineProperties(l,{raw:{value:Object.freeze(c)}}))),function(e){return e.hidden?"none":"flex"},function(e){return e.flex},function(e){return e_(e.direction,e.horizontal)},function(e){return e.distribution},function(e){return e.align},function(e){return eP(e.direction,e.horizontal)&&!e.width&&["space-between","space-around","space-evenly"].includes(e.distribution)?"100%":eL(e.width)},function(e){return eL(e.height)},function(e){return eL(e.padding)},function(e){return eP(e.direction,e.horizontal)&&eL(e.gap)},function(e){return"column"===e_(e.direction,e.horizontal)&&eL(e.gap)});r(3704)},2182:function(e,t,r){"use strict";function o(e,t){"string"==typeof(r=e)&&-1!==r.indexOf(".")&&1===parseFloat(r)&&(e="100%");var r,o,n="string"==typeof(o=e)&&-1!==o.indexOf("%");return(e=360===t?e:Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(String(e*t),10)/100),1e-6>Math.abs(e-t))?1:e=360===t?(e<0?e%t+t:e%t)/parseFloat(String(t)):e%t/parseFloat(String(t))}function n(e){return Math.min(1,Math.max(0,e))}function i(e){return(isNaN(e=parseFloat(e))||e<0||e>1)&&(e=1),e}function a(e){return e<=1?"".concat(100*Number(e),"%"):e}function l(e){return 1===e.length?"0"+e:String(e)}function c(e,t,r){e=o(e,255);var n=Math.max(e,t=o(t,255),r=o(r,255)),i=Math.min(e,t,r),a=0,l=0,c=(n+i)/2;if(n===i)l=0,a=0;else{var s=n-i;switch(l=c>.5?s/(2-n-i):s/(n+i),n){case e:a=(t-r)/s+6*(t<r);break;case t:a=(r-e)/s+2;break;case r:a=(e-t)/s+4}a/=6}return{h:a,s:l,l:c}}function s(e,t,r){return(r<0&&(r+=1),r>1&&(r-=1),r<1/6)?e+6*r*(t-e):r<.5?t:r<2/3?e+(t-e)*(2/3-r)*6:e}function d(e,t,r){e=o(e,255);var n=Math.max(e,t=o(t,255),r=o(r,255)),i=Math.min(e,t,r),a=0,l=n-i;if(n===i)a=0;else{switch(n){case e:a=(t-r)/l+6*(t<r);break;case t:a=(r-e)/l+2;break;case r:a=(e-t)/l+4}a/=6}return{h:a,s:0===n?0:l/n,v:n}}function f(e,t,r,o){var n=[l(Math.round(e).toString(16)),l(Math.round(t).toString(16)),l(Math.round(r).toString(16))];return o&&n[0].startsWith(n[0].charAt(1))&&n[1].startsWith(n[1].charAt(1))&&n[2].startsWith(n[2].charAt(1))?n[0].charAt(0)+n[1].charAt(0)+n[2].charAt(0):n.join("")}r.d(t,{C:function(){return v}});function u(e){return parseInt(e,16)}var g={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"},h="(?:".concat("[-\\+]?\\d*\\.\\d+%?",")|(?:").concat("[-\\+]?\\d+%?",")"),p="[\\s|\\(]+(".concat(h,")[,|\\s]+(").concat(h,")[,|\\s]+(").concat(h,")\\s*\\)?"),m="[\\s|\\(]+(".concat(h,")[,|\\s]+(").concat(h,")[,|\\s]+(").concat(h,")[,|\\s]+(").concat(h,")\\s*\\)?"),b={CSS_UNIT:new RegExp(h),rgb:RegExp("rgb"+p),rgba:RegExp("rgba"+m),hsl:RegExp("hsl"+p),hsla:RegExp("hsla"+m),hsv:RegExp("hsv"+p),hsva:RegExp("hsva"+m),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function S(e){return!!b.CSS_UNIT.exec(String(e))}var v=function(){function e(t,r){if(void 0===t&&(t=""),void 0===r&&(r={}),t instanceof e)return t;"number"==typeof t&&(t={r:(z=t)>>16,g:(65280&z)>>8,b:255&z}),this.originalInput=t;var n,l,c,d,f,h,p,m,v,y,x,M,B,H,w,C,k,I,T,A,z,_,P=(H={r:0,g:0,b:0},w=1,C=null,k=null,I=null,T=!1,A=!1,"string"==typeof(n=t)&&(n=function(e){if(0===(e=e.trim().toLowerCase()).length)return!1;var t=!1;if(g[e])e=g[e],t=!0;else if("transparent"===e)return{r:0,g:0,b:0,a:0,format:"name"};var r=b.rgb.exec(e);return r?{r:r[1],g:r[2],b:r[3]}:(r=b.rgba.exec(e))?{r:r[1],g:r[2],b:r[3],a:r[4]}:(r=b.hsl.exec(e))?{h:r[1],s:r[2],l:r[3]}:(r=b.hsla.exec(e))?{h:r[1],s:r[2],l:r[3],a:r[4]}:(r=b.hsv.exec(e))?{h:r[1],s:r[2],v:r[3]}:(r=b.hsva.exec(e))?{h:r[1],s:r[2],v:r[3],a:r[4]}:(r=b.hex8.exec(e))?{r:u(r[1]),g:u(r[2]),b:u(r[3]),a:u(r[4])/255,format:t?"name":"hex8"}:(r=b.hex6.exec(e))?{r:u(r[1]),g:u(r[2]),b:u(r[3]),format:t?"name":"hex"}:(r=b.hex4.exec(e))?{r:u(r[1]+r[1]),g:u(r[2]+r[2]),b:u(r[3]+r[3]),a:u(r[4]+r[4])/255,format:t?"name":"hex8"}:!!(r=b.hex3.exec(e))&&{r:u(r[1]+r[1]),g:u(r[2]+r[2]),b:u(r[3]+r[3]),format:t?"name":"hex"}}(n)),"object"==typeof n&&(S(n.r)&&S(n.g)&&S(n.b)?(l=n.r,c=n.g,d=n.b,H={r:255*o(l,255),g:255*o(c,255),b:255*o(d,255)},T=!0,A="%"===String(n.r).substr(-1)?"prgb":"rgb"):S(n.h)&&S(n.s)&&S(n.v)?(C=a(n.s),k=a(n.v),f=n.h,h=C,p=k,f=6*o(f,360),h=o(h,100),p=o(p,100),m=Math.floor(f),v=f-m,y=p*(1-h),x=p*(1-v*h),M=p*(1-(1-v)*h),H={r:255*[p,x,y,y,M,p][B=m%6],g:255*[M,p,p,x,y,y][B],b:255*[y,y,M,p,p,x][B]},T=!0,A="hsv"):S(n.h)&&S(n.s)&&S(n.l)&&(C=a(n.s),I=a(n.l),H=function(e,t,r){if(e=o(e,360),t=o(t,100),r=o(r,100),0===t)i=r,a=r,n=r;else{var n,i,a,l=r<.5?r*(1+t):r+t-r*t,c=2*r-l;n=s(c,l,e+1/3),i=s(c,l,e),a=s(c,l,e-1/3)}return{r:255*n,g:255*i,b:255*a}}(n.h,C,I),T=!0,A="hsl"),Object.prototype.hasOwnProperty.call(n,"a")&&(w=n.a)),w=i(w),{ok:T,format:n.format||A,r:Math.min(255,Math.max(H.r,0)),g:Math.min(255,Math.max(H.g,0)),b:Math.min(255,Math.max(H.b,0)),a:w});this.originalInput=t,this.r=P.r,this.g=P.g,this.b=P.b,this.a=P.a,this.roundA=Math.round(100*this.a)/100,this.format=null!=(_=r.format)?_:P.format,this.gradientType=r.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=P.ok}return e.prototype.isDark=function(){return 128>this.getBrightness()},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},e.prototype.getLuminance=function(){var e,t,r,o=this.toRgb(),n=o.r/255,i=o.g/255,a=o.b/255;return .2126*(n<=.03928?n/12.92:Math.pow((n+.055)/1.055,2.4))+.7152*(i<=.03928?i/12.92:Math.pow((i+.055)/1.055,2.4))+.0722*(a<=.03928?a/12.92:Math.pow((a+.055)/1.055,2.4))},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(e){return this.a=i(e),this.roundA=Math.round(100*this.a)/100,this},e.prototype.isMonochrome=function(){return 0===this.toHsl().s},e.prototype.toHsv=function(){var e=d(this.r,this.g,this.b);return{h:360*e.h,s:e.s,v:e.v,a:this.a}},e.prototype.toHsvString=function(){var e=d(this.r,this.g,this.b),t=Math.round(360*e.h),r=Math.round(100*e.s),o=Math.round(100*e.v);return 1===this.a?"hsv(".concat(t,", ").concat(r,"%, ").concat(o,"%)"):"hsva(".concat(t,", ").concat(r,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var e=c(this.r,this.g,this.b);return{h:360*e.h,s:e.s,l:e.l,a:this.a}},e.prototype.toHslString=function(){var e=c(this.r,this.g,this.b),t=Math.round(360*e.h),r=Math.round(100*e.s),o=Math.round(100*e.l);return 1===this.a?"hsl(".concat(t,", ").concat(r,"%, ").concat(o,"%)"):"hsla(".concat(t,", ").concat(r,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(e){return void 0===e&&(e=!1),f(this.r,this.g,this.b,e)},e.prototype.toHexString=function(e){return void 0===e&&(e=!1),"#"+this.toHex(e)},e.prototype.toHex8=function(e){var t,r,o,n,i,a;return void 0===e&&(e=!1),t=this.r,r=this.g,o=this.b,n=this.a,i=e,a=[l(Math.round(t).toString(16)),l(Math.round(r).toString(16)),l(Math.round(o).toString(16)),l(Math.round(255*parseFloat(n)).toString(16))],i&&a[0].startsWith(a[0].charAt(1))&&a[1].startsWith(a[1].charAt(1))&&a[2].startsWith(a[2].charAt(1))&&a[3].startsWith(a[3].charAt(1))?a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0)+a[3].charAt(0):a.join("")},e.prototype.toHex8String=function(e){return void 0===e&&(e=!1),"#"+this.toHex8(e)},e.prototype.toHexShortString=function(e){return void 0===e&&(e=!1),1===this.a?this.toHexString(e):this.toHex8String(e)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var e=Math.round(this.r),t=Math.round(this.g),r=Math.round(this.b);return 1===this.a?"rgb(".concat(e,", ").concat(t,", ").concat(r,")"):"rgba(".concat(e,", ").concat(t,", ").concat(r,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var e=function(e){return"".concat(Math.round(100*o(e,255)),"%")};return{r:e(this.r),g:e(this.g),b:e(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var e=function(e){return Math.round(100*o(e,255))};return 1===this.a?"rgb(".concat(e(this.r),"%, ").concat(e(this.g),"%, ").concat(e(this.b),"%)"):"rgba(".concat(e(this.r),"%, ").concat(e(this.g),"%, ").concat(e(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(0===this.a)return"transparent";if(this.a<1)return!1;for(var e="#"+f(this.r,this.g,this.b,!1),t=0,r=Object.entries(g);t<r.length;t++){var o=r[t],n=o[0];if(e===o[1])return n}return!1},e.prototype.toString=function(e){var t=!!e;e=null!=e?e:this.format;var r=!1,o=this.a<1&&this.a>=0;return!t&&o&&(e.startsWith("hex")||"name"===e)?"name"===e&&0===this.a?this.toName():this.toRgbString():("rgb"===e&&(r=this.toRgbString()),"prgb"===e&&(r=this.toPercentageRgbString()),("hex"===e||"hex6"===e)&&(r=this.toHexString()),"hex3"===e&&(r=this.toHexString(!0)),"hex4"===e&&(r=this.toHex8String(!0)),"hex8"===e&&(r=this.toHex8String()),"name"===e&&(r=this.toName()),"hsl"===e&&(r=this.toHslString()),"hsv"===e&&(r=this.toHsvString()),r||this.toHexString())},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){void 0===t&&(t=10);var r=this.toHsl();return r.l+=t/100,r.l=n(r.l),new e(r)},e.prototype.brighten=function(t){void 0===t&&(t=10);var r=this.toRgb();return r.r=Math.max(0,Math.min(255,r.r-Math.round(-(t/100*255)))),r.g=Math.max(0,Math.min(255,r.g-Math.round(-(t/100*255)))),r.b=Math.max(0,Math.min(255,r.b-Math.round(-(t/100*255)))),new e(r)},e.prototype.darken=function(t){void 0===t&&(t=10);var r=this.toHsl();return r.l-=t/100,r.l=n(r.l),new e(r)},e.prototype.tint=function(e){return void 0===e&&(e=10),this.mix("white",e)},e.prototype.shade=function(e){return void 0===e&&(e=10),this.mix("black",e)},e.prototype.desaturate=function(t){void 0===t&&(t=10);var r=this.toHsl();return r.s-=t/100,r.s=n(r.s),new e(r)},e.prototype.saturate=function(t){void 0===t&&(t=10);var r=this.toHsl();return r.s+=t/100,r.s=n(r.s),new e(r)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var r=this.toHsl(),o=(r.h+t)%360;return r.h=o<0?360+o:o,new e(r)},e.prototype.mix=function(t,r){void 0===r&&(r=50);var o=this.toRgb(),n=new e(t).toRgb(),i=r/100;return new e({r:(n.r-o.r)*i+o.r,g:(n.g-o.g)*i+o.g,b:(n.b-o.b)*i+o.b,a:(n.a-o.a)*i+o.a})},e.prototype.analogous=function(t,r){void 0===t&&(t=6),void 0===r&&(r=30);var o=this.toHsl(),n=360/r,i=[this];for(o.h=(o.h-(n*t>>1)+720)%360;--t;)o.h=(o.h+n)%360,i.push(new e(o));return i},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){void 0===t&&(t=6);for(var r=this.toHsv(),o=r.h,n=r.s,i=r.v,a=[],l=1/t;t--;)a.push(new e({h:o,s:n,v:i})),i=(i+l)%1;return a},e.prototype.splitcomplement=function(){var t=this.toHsl(),r=t.h;return[this,new e({h:(r+72)%360,s:t.s,l:t.l}),new e({h:(r+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var r=this.toRgb(),o=new e(t).toRgb(),n=r.a+o.a*(1-r.a);return new e({r:(r.r*r.a+o.r*o.a*(1-r.a))/n,g:(r.g*r.a+o.g*o.a*(1-r.a))/n,b:(r.b*r.a+o.b*o.a*(1-r.a))/n,a:n})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var r=this.toHsl(),o=r.h,n=[this],i=360/t,a=1;a<t;a++)n.push(new e({h:(o+a*i)%360,s:r.s,l:r.l}));return n},e.prototype.equals=function(t){return this.toRgbString()===new e(t).toRgbString()},e}()},9366:function(e,t,r){"use strict";r.d(t,{Z:function(){return N}});var o=r(3722),n=[{index:7,amount:15},{index:6,amount:25},{index:5,amount:30},{index:5,amount:45},{index:5,amount:65},{index:5,amount:85},{index:4,amount:90},{index:3,amount:95},{index:2,amount:97},{index:1,amount:98}];function i(e,t,r){var o;return(o=Math.round(e.h)>=60&&240>=Math.round(e.h)?r?Math.round(e.h)-2*t:Math.round(e.h)+2*t:r?Math.round(e.h)+2*t:Math.round(e.h)-2*t)<0?o+=360:o>=360&&(o-=360),o}function a(e,t,r){var o;return 0===e.h&&0===e.s?e.s:((o=r?e.s-.16*t:4===t?e.s+.16:e.s+.05*t)>1&&(o=1),r&&5===t&&o>.1&&(o=.1),o<.06&&(o=.06),Math.round(100*o)/100)}function l(e,t,r){var o;return Math.round(100*Math.max(0,Math.min(1,r?e.v+.05*t:e.v-.15*t)))/100}function c(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=[],c=new o.t(e),s=c.toHsv(),d=5;d>0;d-=1){var f=new o.t({h:i(s,d,!0),s:a(s,d,!0),v:l(s,d,!0)});r.push(f)}r.push(c);for(var u=1;u<=4;u+=1){var g=new o.t({h:i(s,u),s:a(s,u),v:l(s,u)});r.push(g)}return"dark"===t.theme?n.map(function(e){var n=e.index,i=e.amount;return new o.t(t.backgroundColor||"#141414").mix(r[n],i).toHexString()}):r.map(function(e){return e.toHexString()})}var s={red:"#F5222D",volcano:"#FA541C",orange:"#FA8C16",gold:"#FAAD14",yellow:"#FADB14",lime:"#A0D911",green:"#52C41A",cyan:"#13C2C2",blue:"#1677FF",geekblue:"#2F54EB",purple:"#722ED1",magenta:"#EB2F96",grey:"#666666"},d=["#fff1f0","#ffccc7","#ffa39e","#ff7875","#ff4d4f","#f5222d","#cf1322","#a8071a","#820014","#5c0011"];d.primary=d[5];var f=["#fff2e8","#ffd8bf","#ffbb96","#ff9c6e","#ff7a45","#fa541c","#d4380d","#ad2102","#871400","#610b00"];f.primary=f[5];var u=["#fff7e6","#ffe7ba","#ffd591","#ffc069","#ffa940","#fa8c16","#d46b08","#ad4e00","#873800","#612500"];u.primary=u[5];var g=["#fffbe6","#fff1b8","#ffe58f","#ffd666","#ffc53d","#faad14","#d48806","#ad6800","#874d00","#613400"];g.primary=g[5];var h=["#feffe6","#ffffb8","#fffb8f","#fff566","#ffec3d","#fadb14","#d4b106","#ad8b00","#876800","#614700"];h.primary=h[5];var p=["#fcffe6","#f4ffb8","#eaff8f","#d3f261","#bae637","#a0d911","#7cb305","#5b8c00","#3f6600","#254000"];p.primary=p[5];var m=["#f6ffed","#d9f7be","#b7eb8f","#95de64","#73d13d","#52c41a","#389e0d","#237804","#135200","#092b00"];m.primary=m[5];var b=["#e6fffb","#b5f5ec","#87e8de","#5cdbd3","#36cfc9","#13c2c2","#08979c","#006d75","#00474f","#002329"];b.primary=b[5];var S=["#e6f4ff","#bae0ff","#91caff","#69b1ff","#4096ff","#1677ff","#0958d9","#003eb3","#002c8c","#001d66"];S.primary=S[5];var v=["#f0f5ff","#d6e4ff","#adc6ff","#85a5ff","#597ef7","#2f54eb","#1d39c4","#10239e","#061178","#030852"];v.primary=v[5];var y=["#f9f0ff","#efdbff","#d3adf7","#b37feb","#9254de","#722ed1","#531dab","#391085","#22075e","#120338"];y.primary=y[5];var x=["#fff0f6","#ffd6e7","#ffadd2","#ff85c0","#f759ab","#eb2f96","#c41d7f","#9e1068","#780650","#520339"];x.primary=x[5];var M=["#a6a6a6","#999999","#8c8c8c","#808080","#737373","#666666","#404040","#1a1a1a","#000000","#000000"];M.primary=M[5];var B={red:d,volcano:f,orange:u,gold:g,yellow:h,lime:p,green:m,cyan:b,blue:S,geekblue:v,purple:y,magenta:x,grey:M},H=["#2a1215","#431418","#58181c","#791a1f","#a61d24","#d32029","#e84749","#f37370","#f89f9a","#fac8c3"];H.primary=H[5];var w=["#2b1611","#441d12","#592716","#7c3118","#aa3e19","#d84a1b","#e87040","#f3956a","#f8b692","#fad4bc"];w.primary=w[5];var C=["#2b1d11","#442a11","#593815","#7c4a15","#aa6215","#d87a16","#e89a3c","#f3b765","#f8cf8d","#fae3b7"];C.primary=C[5];var k=["#2b2111","#443111","#594214","#7c5914","#aa7714","#d89614","#e8b339","#f3cc62","#f8df8b","#faedb5"];k.primary=k[5];var I=["#2b2611","#443b11","#595014","#7c6e14","#aa9514","#d8bd14","#e8d639","#f3ea62","#f8f48b","#fafab5"];I.primary=I[5];var T=["#1f2611","#2e3c10","#3e4f13","#536d13","#6f9412","#8bbb11","#a9d134","#c9e75d","#e4f88b","#f0fab5"];T.primary=T[5];var A=["#162312","#1d3712","#274916","#306317","#3c8618","#49aa19","#6abe39","#8fd460","#b2e58b","#d5f2bb"];A.primary=A[5];var z=["#112123","#113536","#144848","#146262","#138585","#13a8a8","#33bcb7","#58d1c9","#84e2d8","#b2f1e8"];z.primary=z[5];var _=["#111a2c","#112545","#15325b","#15417e","#1554ad","#1668dc","#3c89e8","#65a9f3","#8dc5f8","#b7dcfa"];_.primary=_[5];var P=["#131629","#161d40","#1c2755","#203175","#263ea0","#2b4acb","#5273e0","#7f9ef3","#a8c1f8","#d2e0fa"];P.primary=P[5];var L=["#1a1325","#24163a","#301c4d","#3e2069","#51258f","#642ab5","#854eca","#ab7ae0","#cda8f0","#ebd7fa"];L.primary=L[5];var E=["#291321","#40162f","#551c3b","#75204f","#a02669","#cb2b83","#e0529c","#f37fb7","#f8a8cc","#fad2e3"];E.primary=E[5];var D=["#151515","#1f1f1f","#2d2d2d","#393939","#494949","#5a5a5a","#6a6a6a","#7b7b7b","#888888","#969696"];D.primary=D[5];var F=r(6013),R=e=>{let t=e,r=e,o=e,n=e;return e<6&&e>=5?t=e+1:e<16&&e>=6?t=e+2:e>=16&&(t=16),e<7&&e>=5?r=4:e<8&&e>=7?r=5:e<14&&e>=8?r=6:e<16&&e>=14?r=7:e>=16&&(r=8),e<6&&e>=2?o=1:e>=6&&(o=2),e>4&&e<8?n=4:e>=8&&(n=6),{borderRadius:e,borderRadiusXS:o,borderRadiusSM:r,borderRadiusLG:t,borderRadiusOuter:n}},O=e=>{let{controlHeight:t}=e;return{controlHeightSM:.75*t,controlHeightXS:.5*t,controlHeightLG:1.25*t}},W=e=>{let t=function(e){let t=Array.from({length:10}).map((t,r)=>{let o=e*Math.pow(Math.E,(r-1)/5);return 2*Math.floor((r>1?Math.floor(o):Math.ceil(o))/2)});return t[1]=e,t.map(e=>({size:e,lineHeight:(e+8)/e}))}(e),r=t.map(e=>e.size),o=t.map(e=>e.lineHeight),n=r[1],i=r[0],a=r[2],l=o[1],c=o[0],s=o[2];return{fontSizeSM:i,fontSize:n,fontSizeLG:a,fontSizeXL:r[3],fontSizeHeading1:r[6],fontSizeHeading2:r[5],fontSizeHeading3:r[4],fontSizeHeading4:r[3],fontSizeHeading5:r[2],lineHeight:l,lineHeightLG:s,lineHeightSM:c,fontHeight:Math.round(l*n),fontHeightLG:Math.round(s*a),fontHeightSM:Math.round(c*i),lineHeightHeading1:o[6],lineHeightHeading2:o[5],lineHeightHeading3:o[4],lineHeightHeading4:o[3],lineHeightHeading5:o[2]}};let X=(e,t)=>new o.t(e).setA(t).toRgbString(),G=(e,t)=>new o.t(e).darken(t).toHexString(),j=e=>{let t=c(e);return{1:t[0],2:t[1],3:t[2],4:t[3],5:t[4],6:t[5],7:t[6],8:t[4],9:t[5],10:t[6]}},$=(e,t)=>{let r=e||"#fff",o=t||"#000";return{colorBgBase:r,colorTextBase:o,colorText:X(o,.88),colorTextSecondary:X(o,.65),colorTextTertiary:X(o,.45),colorTextQuaternary:X(o,.25),colorFill:X(o,.15),colorFillSecondary:X(o,.06),colorFillTertiary:X(o,.04),colorFillQuaternary:X(o,.02),colorBgSolid:X(o,1),colorBgSolidHover:X(o,.75),colorBgSolidActive:X(o,.95),colorBgLayout:G(r,4),colorBgContainer:G(r,0),colorBgElevated:G(r,0),colorBgSpotlight:X(o,.85),colorBgBlur:"transparent",colorBorder:G(r,15),colorBorderSecondary:G(r,6)}};function N(e){s.pink=s.magenta,B.pink=B.magenta;let t=Object.keys(F.M).map(t=>{let r=e[t]===s[t]?B[t]:c(e[t]);return Array.from({length:10},()=>1).reduce((e,o,n)=>(e[`${t}-${n+1}`]=r[n],e[`${t}${n+1}`]=r[n],e),{})}).reduce((e,t)=>e=Object.assign(Object.assign({},e),t),{});return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},e),t),function(e,t){let{generateColorPalettes:r,generateNeutralColorPalettes:n}=t,{colorSuccess:i,colorWarning:a,colorError:l,colorInfo:c,colorPrimary:s,colorBgBase:d,colorTextBase:f}=e,u=r(s),g=r(i),h=r(a),p=r(l),m=r(c),b=n(d,f),S=r(e.colorLink||e.colorInfo),v=new o.t(p[1]).mix(new o.t(p[3]),50).toHexString();return Object.assign(Object.assign({},b),{colorPrimaryBg:u[1],colorPrimaryBgHover:u[2],colorPrimaryBorder:u[3],colorPrimaryBorderHover:u[4],colorPrimaryHover:u[5],colorPrimary:u[6],colorPrimaryActive:u[7],colorPrimaryTextHover:u[8],colorPrimaryText:u[9],colorPrimaryTextActive:u[10],colorSuccessBg:g[1],colorSuccessBgHover:g[2],colorSuccessBorder:g[3],colorSuccessBorderHover:g[4],colorSuccessHover:g[4],colorSuccess:g[6],colorSuccessActive:g[7],colorSuccessTextHover:g[8],colorSuccessText:g[9],colorSuccessTextActive:g[10],colorErrorBg:p[1],colorErrorBgHover:p[2],colorErrorBgFilledHover:v,colorErrorBgActive:p[3],colorErrorBorder:p[3],colorErrorBorderHover:p[4],colorErrorHover:p[5],colorError:p[6],colorErrorActive:p[7],colorErrorTextHover:p[8],colorErrorText:p[9],colorErrorTextActive:p[10],colorWarningBg:h[1],colorWarningBgHover:h[2],colorWarningBorder:h[3],colorWarningBorderHover:h[4],colorWarningHover:h[4],colorWarning:h[6],colorWarningActive:h[7],colorWarningTextHover:h[8],colorWarningText:h[9],colorWarningTextActive:h[10],colorInfoBg:m[1],colorInfoBgHover:m[2],colorInfoBorder:m[3],colorInfoBorderHover:m[4],colorInfoHover:m[4],colorInfo:m[6],colorInfoActive:m[7],colorInfoTextHover:m[8],colorInfoText:m[9],colorInfoTextActive:m[10],colorLinkHover:S[4],colorLink:S[6],colorLinkActive:S[7],colorBgMask:new o.t("#000").setA(.45).toRgbString(),colorWhite:"#fff"})}(e,{generateColorPalettes:j,generateNeutralColorPalettes:$})),W(e.fontSize)),function(e){let{sizeUnit:t,sizeStep:r}=e;return{sizeXXL:t*(r+8),sizeXL:t*(r+4),sizeLG:t*(r+2),sizeMD:t*(r+1),sizeMS:t*r,size:t*r,sizeSM:t*(r-1),sizeXS:t*(r-2),sizeXXS:t*(r-3)}}(e)),O(e)),function(e){let{motionUnit:t,motionBase:r,borderRadius:o,lineWidth:n}=e;return Object.assign({motionDurationFast:`${(r+t).toFixed(1)}s`,motionDurationMid:`${(r+2*t).toFixed(1)}s`,motionDurationSlow:`${(r+3*t).toFixed(1)}s`,lineWidthBold:n+1},R(o))}(e))}},6013:function(e,t,r){"use strict";r.d(t,{M:function(){return o}});let o={blue:"#1677FF",purple:"#722ED1",cyan:"#13C2C2",green:"#52C41A",magenta:"#EB2F96",pink:"#EB2F96",red:"#F5222D",orange:"#FA8C16",yellow:"#FADB14",volcano:"#FA541C",geekblue:"#2F54EB",gold:"#FAAD14",lime:"#A0D911"};t.Z=Object.assign(Object.assign({},o),{colorPrimary:"#1677ff",colorSuccess:"#52c41a",colorWarning:"#faad14",colorError:"#ff4d4f",colorInfo:"#1677ff",colorLink:"",colorTextBase:"",colorBgBase:"",fontFamily:`-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
11
+ 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
12
+ 'Noto Color Emoji'`,fontFamilyCode:"'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace",fontSize:14,lineWidth:1,lineType:"solid",motionUnit:.1,motionBase:0,motionEaseOutCirc:"cubic-bezier(0.08, 0.82, 0.17, 1)",motionEaseInOutCirc:"cubic-bezier(0.78, 0.14, 0.15, 0.86)",motionEaseOut:"cubic-bezier(0.215, 0.61, 0.355, 1)",motionEaseInOut:"cubic-bezier(0.645, 0.045, 0.355, 1)",motionEaseOutBack:"cubic-bezier(0.12, 0.4, 0.29, 1.46)",motionEaseInBack:"cubic-bezier(0.71, -0.46, 0.88, 0.6)",motionEaseInQuint:"cubic-bezier(0.755, 0.05, 0.855, 0.06)",motionEaseOutQuint:"cubic-bezier(0.23, 1, 0.32, 1)",borderRadius:6,sizeUnit:4,sizeStep:4,sizePopupArrow:16,controlHeight:32,zIndexBase:0,zIndexPopupBase:1e3,opacityImage:1,wireframe:!1,motion:!0})},9615:function(e,t,r){"use strict";r.d(t,{Z:function(){return c}});var o=r(3722),n=r(6013);function i(e){return e>=0&&e<=255}var a=function(e,t){let{r:r,g:n,b:a,a:l}=new o.t(e).toRgb();if(l<1)return e;let{r:c,g:s,b:d}=new o.t(t).toRgb();for(let e=.01;e<=1;e+=.01){let t=Math.round((r-c*(1-e))/e),l=Math.round((n-s*(1-e))/e),f=Math.round((a-d*(1-e))/e);if(i(t)&&i(l)&&i(f))return new o.t({r:t,g:l,b:f,a:Math.round(100*e)/100}).toRgbString()}return new o.t({r:r,g:n,b:a,a:1}).toRgbString()},l=function(e,t){var r={};for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&0>t.indexOf(o)&&(r[o]=e[o]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var n=0,o=Object.getOwnPropertySymbols(e);n<o.length;n++)0>t.indexOf(o[n])&&Object.prototype.propertyIsEnumerable.call(e,o[n])&&(r[o[n]]=e[o[n]]);return r};function c(e){let{override:t}=e,r=l(e,["override"]),i=Object.assign({},t);Object.keys(n.Z).forEach(e=>{delete i[e]});let c=Object.assign(Object.assign({},r),i);return!1===c.motion&&(c.motionDurationFast="0s",c.motionDurationMid="0s",c.motionDurationSlow="0s"),Object.assign(Object.assign(Object.assign({},c),{colorFillContent:c.colorFillSecondary,colorFillContentHover:c.colorFill,colorFillAlter:c.colorFillQuaternary,colorBgContainerDisabled:c.colorFillTertiary,colorBorderBg:c.colorBgContainer,colorSplit:a(c.colorBorderSecondary,c.colorBgContainer),colorTextPlaceholder:c.colorTextQuaternary,colorTextDisabled:c.colorTextQuaternary,colorTextHeading:c.colorText,colorTextLabel:c.colorTextSecondary,colorTextDescription:c.colorTextTertiary,colorTextLightSolid:c.colorWhite,colorHighlight:c.colorError,colorBgTextHover:c.colorFillSecondary,colorBgTextActive:c.colorFill,colorIcon:c.colorTextTertiary,colorIconHover:c.colorText,colorErrorOutline:a(c.colorErrorBg,c.colorBgContainer),colorWarningOutline:a(c.colorWarningBg,c.colorBgContainer),fontSizeIcon:c.fontSizeSM,lineWidthFocus:3*c.lineWidth,lineWidth:c.lineWidth,controlOutlineWidth:2*c.lineWidth,controlInteractiveSize:c.controlHeight/2,controlItemBgHover:c.colorFillTertiary,controlItemBgActive:c.colorPrimaryBg,controlItemBgActiveHover:c.colorPrimaryBgHover,controlItemBgActiveDisabled:c.colorFill,controlTmpOutline:c.colorFillQuaternary,controlOutline:a(c.colorPrimaryBg,c.colorBgContainer),lineType:c.lineType,borderRadius:c.borderRadius,borderRadiusXS:c.borderRadiusXS,borderRadiusSM:c.borderRadiusSM,borderRadiusLG:c.borderRadiusLG,fontWeightStrong:600,opacityLoading:.65,linkDecoration:"none",linkHoverDecoration:"none",linkFocusDecoration:"none",controlPaddingHorizontal:12,controlPaddingHorizontalSM:8,paddingXXS:c.sizeXXS,paddingXS:c.sizeXS,paddingSM:c.sizeSM,padding:c.size,paddingMD:c.sizeMD,paddingLG:c.sizeLG,paddingXL:c.sizeXL,paddingContentHorizontalLG:c.sizeLG,paddingContentVerticalLG:c.sizeMS,paddingContentHorizontal:c.sizeMS,paddingContentVertical:c.sizeSM,paddingContentHorizontalSM:c.size,paddingContentVerticalSM:c.sizeXS,marginXXS:c.sizeXXS,marginXS:c.sizeXS,marginSM:c.sizeSM,margin:c.size,marginMD:c.sizeMD,marginLG:c.sizeLG,marginXL:c.sizeXL,marginXXL:c.sizeXXL,boxShadow:`
13
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08),
14
+ 0 3px 6px -4px rgba(0, 0, 0, 0.12),
15
+ 0 9px 28px 8px rgba(0, 0, 0, 0.05)
16
+ `,boxShadowSecondary:`
17
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08),
18
+ 0 3px 6px -4px rgba(0, 0, 0, 0.12),
19
+ 0 9px 28px 8px rgba(0, 0, 0, 0.05)
20
+ `,boxShadowTertiary:`
21
+ 0 1px 2px 0 rgba(0, 0, 0, 0.03),
22
+ 0 1px 6px -1px rgba(0, 0, 0, 0.02),
23
+ 0 2px 4px 0 rgba(0, 0, 0, 0.02)
24
+ `,screenXS:480,screenXSMin:480,screenXSMax:575,screenSM:576,screenSMMin:576,screenSMMax:767,screenMD:768,screenMDMin:768,screenMDMax:991,screenLG:992,screenLGMin:992,screenLGMax:1199,screenXL:1200,screenXLMin:1200,screenXLMax:1599,screenXXL:1600,screenXXLMin:1600,boxShadowPopoverArrow:"2px 2px 5px rgba(0, 0, 0, 0.05)",boxShadowCard:`
25
+ 0 1px 2px -2px ${new o.t("rgba(0, 0, 0, 0.16)").toRgbString()},
26
+ 0 3px 6px 0 ${new o.t("rgba(0, 0, 0, 0.12)").toRgbString()},
27
+ 0 5px 12px 4px ${new o.t("rgba(0, 0, 0, 0.09)").toRgbString()}
28
+ `,boxShadowDrawerRight:`
29
+ -6px 0 16px 0 rgba(0, 0, 0, 0.08),
30
+ -3px 0 6px -4px rgba(0, 0, 0, 0.12),
31
+ -9px 0 28px 8px rgba(0, 0, 0, 0.05)
32
+ `,boxShadowDrawerLeft:`
33
+ 6px 0 16px 0 rgba(0, 0, 0, 0.08),
34
+ 3px 0 6px -4px rgba(0, 0, 0, 0.12),
35
+ 9px 0 28px 8px rgba(0, 0, 0, 0.05)
36
+ `,boxShadowDrawerUp:`
37
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08),
38
+ 0 3px 6px -4px rgba(0, 0, 0, 0.12),
39
+ 0 9px 28px 8px rgba(0, 0, 0, 0.05)
40
+ `,boxShadowDrawerDown:`
41
+ 0 -6px 16px 0 rgba(0, 0, 0, 0.08),
42
+ 0 -3px 6px -4px rgba(0, 0, 0, 0.12),
43
+ 0 -9px 28px 8px rgba(0, 0, 0, 0.05)
44
+ `,boxShadowTabsOverflowLeft:"inset 10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowRight:"inset -10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowTop:"inset 0 10px 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowBottom:"inset 0 -10px 8px -8px rgba(0, 0, 0, 0.08)"}),i)}},6905:function(e,t,r){"use strict";var o=r(2855),n={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},i={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},a={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},l={};function c(e){return o.isMemo(e)?a:l[e.$$typeof]||n}l[o.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},l[o.Memo]=a;var s=Object.defineProperty,d=Object.getOwnPropertyNames,f=Object.getOwnPropertySymbols,u=Object.getOwnPropertyDescriptor,g=Object.getPrototypeOf,h=Object.prototype;e.exports=function e(t,r,o){if("string"!=typeof r){if(h){var n=g(r);n&&n!==h&&e(t,n,o)}var a=d(r);f&&(a=a.concat(f(r)));for(var l=c(t),p=c(r),m=0;m<a.length;++m){var b=a[m];if(!i[b]&&!(o&&o[b])&&!(p&&p[b])&&!(l&&l[b])){var S=u(r,b);try{s(t,b,S)}catch(e){}}}}return t}},2058:function(e,t){"use strict";var r="function"==typeof Symbol&&Symbol.for,o=r?Symbol.for("react.element"):60103,n=r?Symbol.for("react.portal"):60106,i=r?Symbol.for("react.fragment"):60107,a=r?Symbol.for("react.strict_mode"):60108,l=r?Symbol.for("react.profiler"):60114,c=r?Symbol.for("react.provider"):60109,s=r?Symbol.for("react.context"):60110,d=r?Symbol.for("react.async_mode"):60111,f=r?Symbol.for("react.concurrent_mode"):60111,u=r?Symbol.for("react.forward_ref"):60112,g=r?Symbol.for("react.suspense"):60113,h=r?Symbol.for("react.suspense_list"):60120,p=r?Symbol.for("react.memo"):60115,m=r?Symbol.for("react.lazy"):60116,b=r?Symbol.for("react.block"):60121,S=r?Symbol.for("react.fundamental"):60117,v=r?Symbol.for("react.responder"):60118,y=r?Symbol.for("react.scope"):60119;function x(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case o:switch(e=e.type){case d:case f:case i:case l:case a:case g:return e;default:switch(e=e&&e.$$typeof){case s:case u:case m:case p:case c:return e;default:return t}}case n:return t}}}function M(e){return x(e)===f}t.AsyncMode=d,t.ConcurrentMode=f,t.ContextConsumer=s,t.ContextProvider=c,t.Element=o,t.ForwardRef=u,t.Fragment=i,t.Lazy=m,t.Memo=p,t.Portal=n,t.Profiler=l,t.StrictMode=a,t.Suspense=g,t.isAsyncMode=function(e){return M(e)||x(e)===d},t.isConcurrentMode=M,t.isContextConsumer=function(e){return x(e)===s},t.isContextProvider=function(e){return x(e)===c},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===o},t.isForwardRef=function(e){return x(e)===u},t.isFragment=function(e){return x(e)===i},t.isLazy=function(e){return x(e)===m},t.isMemo=function(e){return x(e)===p},t.isPortal=function(e){return x(e)===n},t.isProfiler=function(e){return x(e)===l},t.isStrictMode=function(e){return x(e)===a},t.isSuspense=function(e){return x(e)===g},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===i||e===f||e===l||e===a||e===g||e===h||"object"==typeof e&&null!==e&&(e.$$typeof===m||e.$$typeof===p||e.$$typeof===c||e.$$typeof===s||e.$$typeof===u||e.$$typeof===S||e.$$typeof===v||e.$$typeof===y||e.$$typeof===b)},t.typeOf=x},2855:function(e,t,r){"use strict";e.exports=r(2058)},3013:function(e,t,r){"use strict";function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);r<t;r++)o[r]=e[r];return o}function n(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,n,i,a,l=[],c=!0,s=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=i.call(r)).done)&&(l.push(o.value),l.length!==t);c=!0);}catch(e){s=!0,n=e}finally{try{if(!c&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(s)throw n}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return o(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?o(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}r.d(t,{Z:function(){return u}});var i=r(8156);function a(e){var t=i.useRef();return t.current=e,i.useCallback(function(){for(var e,r=arguments.length,o=Array(r),n=0;n<r;n++)o[n]=arguments[n];return null==(e=t.current)?void 0:e.call.apply(e,[t].concat(o))},[])}var l="undefined"!=typeof window&&window.document&&window.document.createElement?i.useLayoutEffect:i.useEffect,c=function(e,t){var r=i.useRef(!0);l(function(){return e(r.current)},t),l(function(){return r.current=!1,function(){r.current=!0}},[])},s=function(e,t){c(function(t){if(!t)return e()},t)};function d(e){var t=i.useRef(!1),r=n(i.useState(e),2),o=r[0],a=r[1];return i.useEffect(function(){return t.current=!1,function(){t.current=!0}},[]),[o,function(e,r){r&&t.current||a(e)}]}function f(e){return void 0!==e}function u(e,t){var r=t||{},o=r.defaultValue,i=r.value,l=r.onChange,c=r.postState,u=n(d(function(){return f(i)?i:f(o)?"function"==typeof o?o():o:"function"==typeof e?e():e}),2),g=u[0],h=u[1],p=void 0!==i?i:g,m=c?c(p):p,b=a(l),S=n(d([p]),2),v=S[0],y=S[1];return s(function(){var e=v[0];g!==e&&b(g,e)},[v]),s(function(){f(i)||h(i)},[i]),[m,a(function(e,t){h(e,t),y([p],t)})]}},7655:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(){return!!("undefined"!=typeof window&&window.document&&window.document.createElement)}},5849:function(e,t,r){"use strict";var o=r(561).default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var t=n.useRef();return t.current=e,n.useCallback(function(){for(var e,r=arguments.length,o=Array(r),n=0;n<r;n++)o[n]=arguments[n];return null==(e=t.current)?void 0:e.call.apply(e,[t].concat(o))},[])};var n=o(r(8156))},1217:function(e,t,r){"use strict";var o=r(5605).default,n=r(561).default;Object.defineProperty(t,"__esModule",{value:!0}),t.useLayoutUpdateEffect=t.default=void 0;var i=n(r(8156)),a=(0,o(r(7655)).default)()?i.useLayoutEffect:i.useEffect,l=function(e,t){var r=i.useRef(!0);a(function(){return e(r.current)},t),a(function(){return r.current=!1,function(){r.current=!0}},[])};t.useLayoutUpdateEffect=function(e,t){l(function(t){if(!t)return e()},t)},t.default=l},2075:function(e,t,r){"use strict";var o=r(5605).default;o(r(7254)),o(r(5849)),r(1217),o(r(7620))},7620:function(e,t,r){"use strict";var o=r(561).default,n=r(5605).default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var t=a.useRef(!1),r=a.useState(e),o=(0,i.default)(r,2),n=o[0],l=o[1];return a.useEffect(function(){return t.current=!1,function(){t.current=!0}},[]),[n,function(e,r){r&&t.current||l(e)}]};var i=n(r(7254)),a=o(r(8156))},8092:function(e,t){"use strict";var r,o=Symbol.for("react.element"),n=Symbol.for("react.portal"),i=Symbol.for("react.fragment"),a=Symbol.for("react.strict_mode"),l=Symbol.for("react.profiler"),c=Symbol.for("react.provider"),s=Symbol.for("react.context"),d=Symbol.for("react.server_context"),f=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),g=Symbol.for("react.suspense_list"),h=Symbol.for("react.memo"),p=Symbol.for("react.lazy"),m=Symbol.for("react.offscreen");r=Symbol.for("react.module.reference"),t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===i||e===l||e===a||e===u||e===g||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===p||e.$$typeof===h||e.$$typeof===c||e.$$typeof===s||e.$$typeof===f||e.$$typeof===r||void 0!==e.getModuleId)||!1},t.typeOf=function(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case o:switch(e=e.type){case i:case l:case a:case u:case g:return e;default:switch(e=e&&e.$$typeof){case d:case s:case f:case p:case h:case c:return e;default:return t}}case n:return t}}}},9665:function(e,t,r){"use strict";e.exports=r(8092)},1801:function(e,t,r){"use strict";var o=r(8156),n=Symbol.for("react.element"),i=(Symbol.for("react.fragment"),Object.prototype.hasOwnProperty),a=o.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,l={key:!0,ref:!0,__self:!0,__source:!0}},3704:function(e,t,r){"use strict";r(1801)},2298:function(e){e.exports=function(e,t,r,o){var n=r?r.call(o,e,t):void 0;if(void 0!==n)return!!n;if(e===t)return!0;if("object"!=typeof e||!e||"object"!=typeof t||!t)return!1;var i=Object.keys(e),a=Object.keys(t);if(i.length!==a.length)return!1;for(var l=Object.prototype.hasOwnProperty.bind(t),c=0;c<i.length;c++){var s=i[c];if(!l(s))return!1;var d=e[s],f=t[s];if(!1===(n=r?r.call(o,d,f,s):void 0)||void 0===n&&d!==f)return!1}return!0}},4176:function(e,t,r){"use strict";r.d(t,{S:function(){return n}});var o=r(8156);let n=(e,t=0)=>{let r=(0,o.useRef)(0),n=(0,o.useCallback)((...o)=>{cancelAnimationFrame(r.current);let n=performance.now(),i=a=>{a-n<t?r.current=requestAnimationFrame(i):e(...o)};r.current=requestAnimationFrame(i)},[e,t]);return(0,o.useEffect)(()=>()=>cancelAnimationFrame(r.current),[]),n}},4439:function(e){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);r<t;r++)o[r]=e[r];return o},e.exports.__esModule=!0,e.exports.default=e.exports},4221:function(e){e.exports=function(e){if(Array.isArray(e))return e},e.exports.__esModule=!0,e.exports.default=e.exports},5605:function(e){e.exports=function(e){return e&&e.__esModule?e:{default:e}},e.exports.__esModule=!0,e.exports.default=e.exports},561:function(e,t,r){var o=r(3265).default;function n(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,r=new WeakMap;return(n=function(e){return e?r:t})(e)}e.exports=function(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!=o(e)&&"function"!=typeof e)return{default:e};var r=n(t);if(r&&r.has(e))return r.get(e);var i={__proto__:null},a=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var l in e)if("default"!==l&&({}).hasOwnProperty.call(e,l)){var c=a?Object.getOwnPropertyDescriptor(e,l):null;c&&(c.get||c.set)?Object.defineProperty(i,l,c):i[l]=e[l]}return i.default=e,r&&r.set(e,i),i},e.exports.__esModule=!0,e.exports.default=e.exports},7062:function(e){e.exports=function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,n,i,a,l=[],c=!0,s=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=i.call(r)).done)&&(l.push(o.value),l.length!==t);c=!0);}catch(e){s=!0,n=e}finally{try{if(!c&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(s)throw n}}return l}},e.exports.__esModule=!0,e.exports.default=e.exports},9460:function(e){e.exports=function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.__esModule=!0,e.exports.default=e.exports},7254:function(e,t,r){var o=r(4221),n=r(7062),i=r(9048),a=r(9460);e.exports=function(e,t){return o(e)||n(e,t)||i(e,t)||a()},e.exports.__esModule=!0,e.exports.default=e.exports},3265:function(e){function t(r){return e.exports=t="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.exports.__esModule=!0,e.exports.default=e.exports,t(r)}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},9048:function(e,t,r){var o=r(4439);e.exports=function(e,t){if(e){if("string"==typeof e)return o(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?o(e,t):void 0}},e.exports.__esModule=!0,e.exports.default=e.exports},9527:function(e,t){var r;!function(){"use strict";var o={}.hasOwnProperty;function n(){for(var e="",t=0;t<arguments.length;t++){var r=arguments[t];r&&(e=i(e,function(e){if("string"==typeof e||"number"==typeof e)return e;if("object"!=typeof e)return"";if(Array.isArray(e))return n.apply(null,e);if(e.toString!==Object.prototype.toString&&!e.toString.toString().includes("[native code]"))return e.toString();var t="";for(var r in e)o.call(e,r)&&e[r]&&(t=i(t,r));return t}(r)))}return e}function i(e,t){return t?e?e+" "+t:e+t:e}e.exports?(n.default=n,e.exports=n):void 0===(r=(function(){return n}).apply(t,[]))||(e.exports=r)}()},1507:function(e,t,r){"use strict";r.d(t,{Jg:function(){return R},gW:function(){return L}});var o=r(8156);function n(){return(n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e}).apply(this,arguments)}function i(e,t){if(null==e)return{};var r,o,n={},i=Object.keys(e);for(o=0;o<i.length;o++)t.indexOf(r=i[o])>=0||(n[r]=e[r]);return n}function a(e){var t=(0,o.useRef)(e),r=(0,o.useRef)(function(e){t.current&&t.current(e)});return t.current=e,r.current}var l=function(e,t,r){return void 0===t&&(t=0),void 0===r&&(r=1),e>r?r:e<t?t:e},c=function(e){return"touches"in e},s=function(e){return e&&e.ownerDocument.defaultView||self},d=function(e,t,r){var o=e.getBoundingClientRect(),n=c(t)?function(e,t){for(var r=0;r<e.length;r++)if(e[r].identifier===t)return e[r];return e[0]}(t.touches,r):t;return{left:l((n.pageX-(o.left+s(e).pageXOffset))/o.width),top:l((n.pageY-(o.top+s(e).pageYOffset))/o.height)}},f=function(e){c(e)||e.preventDefault()},u=o.memo(function(e){var t=e.onMove,r=e.onKey,l=i(e,["onMove","onKey"]),u=(0,o.useRef)(null),g=a(t),h=a(r),p=(0,o.useRef)(null),m=(0,o.useRef)(!1),b=(0,o.useMemo)(function(){var e=function(e){f(e),(c(e)?e.touches.length>0:e.buttons>0)&&u.current?g(d(u.current,e,p.current)):r(!1)},t=function(){return r(!1)};function r(r){var o=m.current,n=s(u.current),i=r?n.addEventListener:n.removeEventListener;i(o?"touchmove":"mousemove",e),i(o?"touchend":"mouseup",t)}return[function(e){var t=e.nativeEvent,o=u.current;if(o&&(f(t),(!m.current||c(t))&&o)){if(c(t)){m.current=!0;var n=t.changedTouches||[];n.length&&(p.current=n[0].identifier)}o.focus(),g(d(o,t,p.current)),r(!0)}},function(e){var t=e.which||e.keyCode;t<37||t>40||(e.preventDefault(),h({left:39===t?.05:37===t?-.05:0,top:40===t?.05:38===t?-.05:0}))},r]},[h,g]),S=b[0],v=b[1],y=b[2];return(0,o.useEffect)(function(){return y},[y]),o.createElement("div",n({},l,{onTouchStart:S,onMouseDown:S,className:"react-colorful__interactive",ref:u,onKeyDown:v,tabIndex:0,role:"slider"}))}),g=function(e){return e.filter(Boolean).join(" ")},h=function(e){var t=e.color,r=e.left,n=e.top,i=g(["react-colorful__pointer",e.className]);return o.createElement("div",{className:i,style:{top:100*(void 0===n?.5:n)+"%",left:100*r+"%"}},o.createElement("div",{className:"react-colorful__pointer-fill",style:{backgroundColor:t}}))},p=function(e,t,r){return void 0===t&&(t=0),void 0===r&&(r=Math.pow(10,t)),Math.round(r*e)/r},m=function(e){return"#"===e[0]&&(e=e.substring(1)),e.length<6?{r:parseInt(e[0]+e[0],16),g:parseInt(e[1]+e[1],16),b:parseInt(e[2]+e[2],16),a:4===e.length?p(parseInt(e[3]+e[3],16)/255,2):1}:{r:parseInt(e.substring(0,2),16),g:parseInt(e.substring(2,4),16),b:parseInt(e.substring(4,6),16),a:8===e.length?p(parseInt(e.substring(6,8),16)/255,2):1}},b=function(e){var t=e.s,r=e.v,o=e.a,n=(200-t)*r/100;return{h:p(e.h),s:p(n>0&&n<200?t*r/100/(n<=100?n:200-n)*100:0),l:p(n/2),a:p(o,2)}},S=function(e){var t=b(e);return"hsl("+t.h+", "+t.s+"%, "+t.l+"%)"},v=function(e){var t=b(e);return"hsla("+t.h+", "+t.s+"%, "+t.l+"%, "+t.a+")"},y=function(e){var t=e.h,r=e.s,o=e.v,n=e.a;t=t/360*6,r/=100,o/=100;var i=Math.floor(t),a=o*(1-r),l=o*(1-(t-i)*r),c=o*(1-(1-t+i)*r),s=i%6;return{r:p(255*[o,l,a,a,c,o][s]),g:p(255*[c,o,o,l,a,a][s]),b:p(255*[a,a,c,o,o,l][s]),a:p(n,2)}},x=function(e){var t=e.toString(16);return t.length<2?"0"+t:t},M=function(e){var t=e.r,r=e.g,o=e.b,n=e.a,i=n<1?x(p(255*n)):"";return"#"+x(t)+x(r)+x(o)+i},B=function(e){var t=e.r,r=e.g,o=e.b,n=e.a,i=Math.max(t,r,o),a=i-Math.min(t,r,o),l=a?i===t?(r-o)/a:i===r?2+(o-t)/a:4+(t-r)/a:0;return{h:p(60*(l<0?l+6:l)),s:p(i?a/i*100:0),v:p(i/255*100),a:n}},H=o.memo(function(e){var t=e.hue,r=e.onChange,n=g(["react-colorful__hue",e.className]);return o.createElement("div",{className:n},o.createElement(u,{onMove:function(e){r({h:360*e.left})},onKey:function(e){r({h:l(t+360*e.left,0,360)})},"aria-label":"Hue","aria-valuenow":p(t),"aria-valuemax":"360","aria-valuemin":"0"},o.createElement(h,{className:"react-colorful__hue-pointer",left:t/360,color:S({h:t,s:100,v:100,a:1})})))}),w=o.memo(function(e){var t=e.hsva,r=e.onChange,n={backgroundColor:S({h:t.h,s:100,v:100,a:1})};return o.createElement("div",{className:"react-colorful__saturation",style:n},o.createElement(u,{onMove:function(e){r({s:100*e.left,v:100-100*e.top})},onKey:function(e){r({s:l(t.s+100*e.left,0,100),v:l(t.v-100*e.top,0,100)})},"aria-label":"Color","aria-valuetext":"Saturation "+p(t.s)+"%, Brightness "+p(t.v)+"%"},o.createElement(h,{className:"react-colorful__saturation-pointer",top:1-t.v/100,left:t.s/100,color:S(t)})))}),C=function(e,t){if(e===t)return!0;for(var r in e)if(e[r]!==t[r])return!1;return!0};function k(e,t,r){var n=a(r),i=(0,o.useState)(function(){return e.toHsva(t)}),l=i[0],c=i[1],s=(0,o.useRef)({color:t,hsva:l});return(0,o.useEffect)(function(){if(!e.equal(t,s.current.color)){var r=e.toHsva(t);s.current={hsva:r,color:t},c(r)}},[t,e]),(0,o.useEffect)(function(){var t;C(l,s.current.hsva)||e.equal(t=e.fromHsva(l),s.current.color)||(s.current={hsva:l,color:t},n(t))},[l,e,n]),[l,(0,o.useCallback)(function(e){c(function(t){return Object.assign({},t,e)})},[])]}var I,T="undefined"!=typeof window?o.useLayoutEffect:o.useEffect,A=new Map,z=function(e){T(function(){var t=e.current?e.current.ownerDocument:document;if(void 0!==t&&!A.has(t)){var o=t.createElement("style");o.innerHTML='.react-colorful{position:relative;display:flex;flex-direction:column;width:200px;height:200px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.react-colorful__saturation{position:relative;flex-grow:1;border-color:transparent;border-bottom:12px solid #000;border-radius:8px 8px 0 0;background-image:linear-gradient(0deg,#000,transparent),linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.react-colorful__alpha-gradient,.react-colorful__pointer-fill{content:"";position:absolute;left:0;top:0;right:0;bottom:0;pointer-events:none;border-radius:inherit}.react-colorful__alpha-gradient,.react-colorful__saturation{box-shadow:inset 0 0 0 1px rgba(0,0,0,.05)}.react-colorful__alpha,.react-colorful__hue{position:relative;height:24px}.react-colorful__hue{background:linear-gradient(90deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.react-colorful__last-control{border-radius:0 0 8px 8px}.react-colorful__interactive{position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;outline:none;touch-action:none}.react-colorful__pointer{position:absolute;z-index:1;box-sizing:border-box;width:28px;height:28px;transform:translate(-50%,-50%);background-color:#fff;border:2px solid #fff;border-radius:50%;box-shadow:0 2px 4px rgba(0,0,0,.2)}.react-colorful__interactive:focus .react-colorful__pointer{transform:translate(-50%,-50%) scale(1.1)}.react-colorful__alpha,.react-colorful__alpha-pointer{background-color:#fff;background-image:url(\'data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill-opacity=".05"><path d="M8 0h8v8H8zM0 8h8v8H0z"/></svg>\')}.react-colorful__saturation-pointer{z-index:3}.react-colorful__hue-pointer{z-index:2}',A.set(t,o);var n=I||r.nc;n&&o.setAttribute("nonce",n),t.head.appendChild(o)}},[])},_=function(e){var t=e.className,r=e.colorModel,a=e.color,l=void 0===a?r.defaultColor:a,c=e.onChange,s=i(e,["className","colorModel","color","onChange"]),d=(0,o.useRef)(null);z(d);var f=k(r,l,c),u=f[0],h=f[1],p=g(["react-colorful",t]);return o.createElement("div",n({},s,{ref:d,className:p}),o.createElement(w,{hsva:u,onChange:h}),o.createElement(H,{hue:u.h,onChange:h,className:"react-colorful__last-control"}))},P={defaultColor:"000",toHsva:function(e){return B(m(e))},fromHsva:function(e){return M(y({h:e.h,s:e.s,v:e.v,a:1}))},equal:function(e,t){return e.toLowerCase()===t.toLowerCase()||C(m(e),m(t))}},L=function(e){return o.createElement(_,n({},e,{colorModel:P}))},E=function(e){var t=e.className,r=e.hsva,n=e.onChange,i={backgroundImage:"linear-gradient(90deg, "+v(Object.assign({},r,{a:0}))+", "+v(Object.assign({},r,{a:1}))+")"},a=g(["react-colorful__alpha",t]),c=p(100*r.a);return o.createElement("div",{className:a},o.createElement("div",{className:"react-colorful__alpha-gradient",style:i}),o.createElement(u,{onMove:function(e){n({a:e.left})},onKey:function(e){n({a:l(r.a+e.left)})},"aria-label":"Alpha","aria-valuetext":c+"%","aria-valuenow":c,"aria-valuemin":"0","aria-valuemax":"100"},o.createElement(h,{className:"react-colorful__alpha-pointer",left:r.a,color:v(r)})))},D=function(e){var t=e.className,r=e.colorModel,a=e.color,l=void 0===a?r.defaultColor:a,c=e.onChange,s=i(e,["className","colorModel","color","onChange"]),d=(0,o.useRef)(null);z(d);var f=k(r,l,c),u=f[0],h=f[1],p=g(["react-colorful",t]);return o.createElement("div",n({},s,{ref:d,className:p}),o.createElement(w,{hsva:u,onChange:h}),o.createElement(H,{hue:u.h,onChange:h}),o.createElement(E,{hsva:u,onChange:h,className:"react-colorful__last-control"}))},F={defaultColor:{r:0,g:0,b:0,a:1},toHsva:B,fromHsva:y,equal:C},R=function(e){return o.createElement(D,n({},e,{colorModel:F}))}},9057:function(e,t,r){"use strict";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)}r.d(t,{Z:function(){return s}});var n,i,a,l=/^\s+/,c=/\s+$/;function s(e,t){if(t=t||{},(e=e||"")instanceof s)return e;if(!(this instanceof s))return new s(e,t);var r,n,i,a,d,f,u,g,h,p,m,b,S,v,y,x,M,B,H,w,k=(n={r:0,g:0,b:0},i=1,a=null,d=null,f=null,u=!1,g=!1,"string"==typeof(r=e)&&(r=function(e){e=e.replace(l,"").replace(c,"").toLowerCase();var t,r=!1;if(C[e])e=C[e],r=!0;else if("transparent"==e)return{r:0,g:0,b:0,a:0,format:"name"};return(t=E.rgb.exec(e))?{r:t[1],g:t[2],b:t[3]}:(t=E.rgba.exec(e))?{r:t[1],g:t[2],b:t[3],a:t[4]}:(t=E.hsl.exec(e))?{h:t[1],s:t[2],l:t[3]}:(t=E.hsla.exec(e))?{h:t[1],s:t[2],l:t[3],a:t[4]}:(t=E.hsv.exec(e))?{h:t[1],s:t[2],v:t[3]}:(t=E.hsva.exec(e))?{h:t[1],s:t[2],v:t[3],a:t[4]}:(t=E.hex8.exec(e))?{r:z(t[1]),g:z(t[2]),b:z(t[3]),a:z(t[4])/255,format:r?"name":"hex8"}:(t=E.hex6.exec(e))?{r:z(t[1]),g:z(t[2]),b:z(t[3]),format:r?"name":"hex"}:(t=E.hex4.exec(e))?{r:z(t[1]+""+t[1]),g:z(t[2]+""+t[2]),b:z(t[3]+""+t[3]),a:z(t[4]+""+t[4])/255,format:r?"name":"hex8"}:!!(t=E.hex3.exec(e))&&{r:z(t[1]+""+t[1]),g:z(t[2]+""+t[2]),b:z(t[3]+""+t[3]),format:r?"name":"hex"}}(r)),"object"==o(r)&&(D(r.r)&&D(r.g)&&D(r.b)?(h=r.r,p=r.g,m=r.b,n={r:255*T(h,255),g:255*T(p,255),b:255*T(m,255)},u=!0,g="%"===String(r.r).substr(-1)?"prgb":"rgb"):D(r.h)&&D(r.s)&&D(r.v)?(a=P(r.s),d=P(r.v),b=r.h,S=a,v=d,b=6*T(b,360),S=T(S,100),v=T(v,100),y=Math.floor(b),x=b-y,M=v*(1-S),B=v*(1-x*S),H=v*(1-(1-x)*S),n={r:255*[v,B,M,M,H,v][w=y%6],g:255*[H,v,v,B,M,M][w],b:255*[M,M,H,v,v,B][w]},u=!0,g="hsv"):D(r.h)&&D(r.s)&&D(r.l)&&(a=P(r.s),f=P(r.l),n=function(e,t,r){var o,n,i;function a(e,t,r){return(r<0&&(r+=1),r>1&&(r-=1),r<1/6)?e+(t-e)*6*r:r<.5?t:r<2/3?e+(t-e)*(2/3-r)*6:e}if(e=T(e,360),t=T(t,100),r=T(r,100),0===t)o=n=i=r;else{var l=r<.5?r*(1+t):r+t-r*t,c=2*r-l;o=a(c,l,e+1/3),n=a(c,l,e),i=a(c,l,e-1/3)}return{r:255*o,g:255*n,b:255*i}}(r.h,a,f),u=!0,g="hsl"),r.hasOwnProperty("a")&&(i=r.a)),i=I(i),{ok:u,format:r.format||g,r:Math.min(255,Math.max(n.r,0)),g:Math.min(255,Math.max(n.g,0)),b:Math.min(255,Math.max(n.b,0)),a:i});this._originalInput=e,this._r=k.r,this._g=k.g,this._b=k.b,this._a=k.a,this._roundA=Math.round(100*this._a)/100,this._format=t.format||k.format,this._gradientType=t.gradientType,this._r<1&&(this._r=Math.round(this._r)),this._g<1&&(this._g=Math.round(this._g)),this._b<1&&(this._b=Math.round(this._b)),this._ok=k.ok}function d(e,t,r){e=T(e,255);var o,n,i=Math.max(e,t=T(t,255),r=T(r,255)),a=Math.min(e,t,r),l=(i+a)/2;if(i==a)o=n=0;else{var c=i-a;switch(n=l>.5?c/(2-i-a):c/(i+a),i){case e:o=(t-r)/c+6*(t<r);break;case t:o=(r-e)/c+2;break;case r:o=(e-t)/c+4}o/=6}return{h:o,s:n,l:l}}function f(e,t,r){e=T(e,255);var o,n=Math.max(e,t=T(t,255),r=T(r,255)),i=Math.min(e,t,r),a=n-i;if(n==i)o=0;else{switch(n){case e:o=(t-r)/a+6*(t<r);break;case t:o=(r-e)/a+2;break;case r:o=(e-t)/a+4}o/=6}return{h:o,s:0===n?0:a/n,v:n}}function u(e,t,r,o){var n=[_(Math.round(e).toString(16)),_(Math.round(t).toString(16)),_(Math.round(r).toString(16))];return o&&n[0].charAt(0)==n[0].charAt(1)&&n[1].charAt(0)==n[1].charAt(1)&&n[2].charAt(0)==n[2].charAt(1)?n[0].charAt(0)+n[1].charAt(0)+n[2].charAt(0):n.join("")}function g(e,t,r,o){return[_(L(o)),_(Math.round(e).toString(16)),_(Math.round(t).toString(16)),_(Math.round(r).toString(16))].join("")}function h(e,t){t=0===t?0:t||10;var r=s(e).toHsl();return r.s-=t/100,r.s=A(r.s),s(r)}function p(e,t){t=0===t?0:t||10;var r=s(e).toHsl();return r.s+=t/100,r.s=A(r.s),s(r)}function m(e){return s(e).desaturate(100)}function b(e,t){t=0===t?0:t||10;var r=s(e).toHsl();return r.l+=t/100,r.l=A(r.l),s(r)}function S(e,t){t=0===t?0:t||10;var r=s(e).toRgb();return r.r=Math.max(0,Math.min(255,r.r-Math.round(-(t/100*255)))),r.g=Math.max(0,Math.min(255,r.g-Math.round(-(t/100*255)))),r.b=Math.max(0,Math.min(255,r.b-Math.round(-(t/100*255)))),s(r)}function v(e,t){t=0===t?0:t||10;var r=s(e).toHsl();return r.l-=t/100,r.l=A(r.l),s(r)}function y(e,t){var r=s(e).toHsl(),o=(r.h+t)%360;return r.h=o<0?360+o:o,s(r)}function x(e){var t=s(e).toHsl();return t.h=(t.h+180)%360,s(t)}function M(e,t){if(isNaN(t)||t<=0)throw Error("Argument to polyad must be a positive number");for(var r=s(e).toHsl(),o=[s(e)],n=360/t,i=1;i<t;i++)o.push(s({h:(r.h+i*n)%360,s:r.s,l:r.l}));return o}function B(e){var t=s(e).toHsl(),r=t.h;return[s(e),s({h:(r+72)%360,s:t.s,l:t.l}),s({h:(r+216)%360,s:t.s,l:t.l})]}function H(e,t,r){t=t||6,r=r||30;var o=s(e).toHsl(),n=360/r,i=[s(e)];for(o.h=(o.h-(n*t>>1)+720)%360;--t;)o.h=(o.h+n)%360,i.push(s(o));return i}function w(e,t){t=t||6;for(var r=s(e).toHsv(),o=r.h,n=r.s,i=r.v,a=[],l=1/t;t--;)a.push(s({h:o,s:n,v:i})),i=(i+l)%1;return a}s.prototype={isDark:function(){return 128>this.getBrightness()},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},getLuminance:function(){var e,t,r,o,n,i,a=this.toRgb();return e=a.r/255,t=a.g/255,.2126*(e<=.03928?e/12.92:Math.pow((e+.055)/1.055,2.4))+.7152*(t<=.03928?t/12.92:Math.pow((t+.055)/1.055,2.4))+.0722*((r=a.b/255)<=.03928?r/12.92:Math.pow((r+.055)/1.055,2.4))},setAlpha:function(e){return this._a=I(e),this._roundA=Math.round(100*this._a)/100,this},toHsv:function(){var e=f(this._r,this._g,this._b);return{h:360*e.h,s:e.s,v:e.v,a:this._a}},toHsvString:function(){var e=f(this._r,this._g,this._b),t=Math.round(360*e.h),r=Math.round(100*e.s),o=Math.round(100*e.v);return 1==this._a?"hsv("+t+", "+r+"%, "+o+"%)":"hsva("+t+", "+r+"%, "+o+"%, "+this._roundA+")"},toHsl:function(){var e=d(this._r,this._g,this._b);return{h:360*e.h,s:e.s,l:e.l,a:this._a}},toHslString:function(){var e=d(this._r,this._g,this._b),t=Math.round(360*e.h),r=Math.round(100*e.s),o=Math.round(100*e.l);return 1==this._a?"hsl("+t+", "+r+"%, "+o+"%)":"hsla("+t+", "+r+"%, "+o+"%, "+this._roundA+")"},toHex:function(e){return u(this._r,this._g,this._b,e)},toHexString:function(e){return"#"+this.toHex(e)},toHex8:function(e){var t,r,o,n,i,a;return t=this._r,r=this._g,o=this._b,n=this._a,i=e,a=[_(Math.round(t).toString(16)),_(Math.round(r).toString(16)),_(Math.round(o).toString(16)),_(L(n))],i&&a[0].charAt(0)==a[0].charAt(1)&&a[1].charAt(0)==a[1].charAt(1)&&a[2].charAt(0)==a[2].charAt(1)&&a[3].charAt(0)==a[3].charAt(1)?a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0)+a[3].charAt(0):a.join("")},toHex8String:function(e){return"#"+this.toHex8(e)},toRgb:function(){return{r:Math.round(this._r),g:Math.round(this._g),b:Math.round(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+Math.round(this._r)+", "+Math.round(this._g)+", "+Math.round(this._b)+")":"rgba("+Math.round(this._r)+", "+Math.round(this._g)+", "+Math.round(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:Math.round(100*T(this._r,255))+"%",g:Math.round(100*T(this._g,255))+"%",b:Math.round(100*T(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+Math.round(100*T(this._r,255))+"%, "+Math.round(100*T(this._g,255))+"%, "+Math.round(100*T(this._b,255))+"%)":"rgba("+Math.round(100*T(this._r,255))+"%, "+Math.round(100*T(this._g,255))+"%, "+Math.round(100*T(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":!(this._a<1)&&(k[u(this._r,this._g,this._b,!0)]||!1)},toFilter:function(e){var t="#"+g(this._r,this._g,this._b,this._a),r=t,o=this._gradientType?"GradientType = 1, ":"";if(e){var n=s(e);r="#"+g(n._r,n._g,n._b,n._a)}return"progid:DXImageTransform.Microsoft.gradient("+o+"startColorstr="+t+",endColorstr="+r+")"},toString:function(e){var t=!!e;e=e||this._format;var r=!1,o=this._a<1&&this._a>=0;return!t&&o&&("hex"===e||"hex6"===e||"hex3"===e||"hex4"===e||"hex8"===e||"name"===e)?"name"===e&&0===this._a?this.toName():this.toRgbString():("rgb"===e&&(r=this.toRgbString()),"prgb"===e&&(r=this.toPercentageRgbString()),("hex"===e||"hex6"===e)&&(r=this.toHexString()),"hex3"===e&&(r=this.toHexString(!0)),"hex4"===e&&(r=this.toHex8String(!0)),"hex8"===e&&(r=this.toHex8String()),"name"===e&&(r=this.toName()),"hsl"===e&&(r=this.toHslString()),"hsv"===e&&(r=this.toHsvString()),r||this.toHexString())},clone:function(){return s(this.toString())},_applyModification:function(e,t){var r=e.apply(null,[this].concat([].slice.call(t)));return this._r=r._r,this._g=r._g,this._b=r._b,this.setAlpha(r._a),this},lighten:function(){return this._applyModification(b,arguments)},brighten:function(){return this._applyModification(S,arguments)},darken:function(){return this._applyModification(v,arguments)},desaturate:function(){return this._applyModification(h,arguments)},saturate:function(){return this._applyModification(p,arguments)},greyscale:function(){return this._applyModification(m,arguments)},spin:function(){return this._applyModification(y,arguments)},_applyCombination:function(e,t){return e.apply(null,[this].concat([].slice.call(t)))},analogous:function(){return this._applyCombination(H,arguments)},complement:function(){return this._applyCombination(x,arguments)},monochromatic:function(){return this._applyCombination(w,arguments)},splitcomplement:function(){return this._applyCombination(B,arguments)},triad:function(){return this._applyCombination(M,[3])},tetrad:function(){return this._applyCombination(M,[4])}},s.fromRatio=function(e,t){if("object"==o(e)){var r={};for(var n in e)e.hasOwnProperty(n)&&("a"===n?r[n]=e[n]:r[n]=P(e[n]));e=r}return s(e,t)},s.equals=function(e,t){return!!e&&!!t&&s(e).toRgbString()==s(t).toRgbString()},s.random=function(){return s.fromRatio({r:Math.random(),g:Math.random(),b:Math.random()})},s.mix=function(e,t,r){r=0===r?0:r||50;var o=s(e).toRgb(),n=s(t).toRgb(),i=r/100;return s({r:(n.r-o.r)*i+o.r,g:(n.g-o.g)*i+o.g,b:(n.b-o.b)*i+o.b,a:(n.a-o.a)*i+o.a})},s.readability=function(e,t){var r=s(e),o=s(t);return(Math.max(r.getLuminance(),o.getLuminance())+.05)/(Math.min(r.getLuminance(),o.getLuminance())+.05)},s.isReadable=function(e,t,r){var o,n,i,a,l,c=s.readability(e,t);switch(l=!1,(n=((o=(o=r)||{level:"AA",size:"small"}).level||"AA").toUpperCase(),i=(o.size||"small").toLowerCase(),"AA"!==n&&"AAA"!==n&&(n="AA"),"small"!==i&&"large"!==i&&(i="small"),a={level:n,size:i}).level+a.size){case"AAsmall":case"AAAlarge":l=c>=4.5;break;case"AAlarge":l=c>=3;break;case"AAAsmall":l=c>=7}return l},s.mostReadable=function(e,t,r){var o,n,i,a,l=null,c=0;n=(r=r||{}).includeFallbackColors,i=r.level,a=r.size;for(var d=0;d<t.length;d++)(o=s.readability(e,t[d]))>c&&(c=o,l=s(t[d]));return s.isReadable(e,l,{level:i,size:a})||!n?l:(r.includeFallbackColors=!1,s.mostReadable(e,["#fff","#000"],r))};var C=s.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},k=s.hexNames=function(e){var t={};for(var r in e)e.hasOwnProperty(r)&&(t[e[r]]=r);return t}(C);function I(e){return(isNaN(e=parseFloat(e))||e<0||e>1)&&(e=1),e}function T(e,t){"string"==typeof(r=e)&&-1!=r.indexOf(".")&&1===parseFloat(r)&&(e="100%");var r,o,n="string"==typeof(o=e)&&-1!=o.indexOf("%");return(e=Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(e*t,10)/100),1e-6>Math.abs(e-t))?1:e%t/parseFloat(t)}function A(e){return Math.min(1,Math.max(0,e))}function z(e){return parseInt(e,16)}function _(e){return 1==e.length?"0"+e:""+e}function P(e){return e<=1&&(e=100*e+"%"),e}function L(e){return Math.round(255*parseFloat(e)).toString(16)}var E=(i="[\\s|\\(]+("+(n="(?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?)")+")[,|\\s]+("+n+")[,|\\s]+("+n+")\\s*\\)?",a="[\\s|\\(]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")\\s*\\)?",{CSS_UNIT:new RegExp(n),rgb:RegExp("rgb"+i),rgba:RegExp("rgba"+a),hsl:RegExp("hsl"+i),hsla:RegExp("hsla"+a),hsv:RegExp("hsv"+i),hsva:RegExp("hsva"+a),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/});function D(e){return!!E.CSS_UNIT.exec(e)}},2017:function(e){"use strict";e.exports=JSON.parse('{"Upload":{"global":["fontSizeHeading3","fontHeight","lineWidth","controlHeightLG","colorTextDisabled","colorText","fontSize","lineHeight","fontFamily","colorFillAlter","colorBorder","borderRadiusLG","motionDurationSlow","padding","lineWidthFocus","colorPrimaryBorder","colorPrimaryHover","margin","colorPrimary","marginXXS","colorTextHeading","fontSizeLG","colorTextDescription","paddingXS","lineType","paddingSM","fontSizeHeading2","colorError","colorErrorBg","colorTextLightSolid","marginXS","colorBgMask","marginXL","borderRadiusSM","controlItemBgHover","motionEaseInOutCirc","motionDurationMid","motionEaseInOut"],"component":{"actionsColor":"rgba(0,0,0,0.45)"}},"TreeSelect":{"global":["colorBgElevated","paddingXS","colorTextQuaternary","controlItemBgActiveDisabled","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","colorPrimary","colorTextDisabled","controlItemBgHover","controlInteractiveSize","colorBgTextHover","colorBorder","motionDurationMid","lineWidthBold","marginXS","borderRadiusSM","colorBgContainer","lineWidth","lineType","colorWhite","motionDurationFast","motionEaseInBack","colorPrimaryHover","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled"],"component":{"titleHeight":24,"indentSize":24,"nodeHoverBg":"rgba(0,0,0,0.04)","nodeHoverColor":"rgba(0,0,0,0.88)","nodeSelectedBg":"#e6f4ff","nodeSelectedColor":"rgba(0,0,0,0.88)"}},"Tree":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled","colorTextQuaternary","controlItemBgActiveDisabled","borderRadius","controlItemBgHover","colorBgTextHover","motionEaseInOut"],"component":{"titleHeight":24,"indentSize":24,"nodeHoverBg":"rgba(0,0,0,0.04)","nodeHoverColor":"rgba(0,0,0,0.88)","nodeSelectedBg":"#e6f4ff","nodeSelectedColor":"rgba(0,0,0,0.88)","directoryNodeSelectedColor":"#fff","directoryNodeSelectedBg":"#1677ff"}},"Transfer":{"global":["marginXS","marginXXS","fontSizeIcon","colorBgContainerDisabled","colorText","fontSize","lineHeight","fontFamily","colorBorder","colorSplit","lineWidth","controlItemBgActive","colorTextDisabled","colorTextSecondary","paddingSM","lineType","motionDurationSlow","controlItemBgHover","borderRadiusLG","colorBgContainer","controlItemBgActiveHover","colorLink","linkDecoration","lineWidthFocus","colorPrimaryBorder","colorLinkHover","colorLinkActive","paddingXS","controlHeightLG","colorError","colorWarning"],"component":{"listWidth":180,"listHeight":200,"listWidthLG":250,"headerHeight":40,"itemHeight":32,"itemPaddingBlock":5,"transferHeaderVerticalPadding":9}},"Tour":{"global":["borderRadiusLG","padding","paddingXS","borderRadius","borderRadiusXS","colorPrimary","colorFill","boxShadowTertiary","colorBgElevated","fontWeightStrong","marginXS","colorTextLightSolid","colorWhite","motionDurationSlow","colorText","fontSize","lineHeight","fontFamily","colorIcon","borderRadiusSM","motionDurationMid","colorIconHover","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","boxShadowPopoverArrow","sizePopupArrow"],"component":{"zIndexPopup":1070,"closeBtnSize":22,"primaryPrevBtnBg":"rgba(255,255,255,0.15)","primaryNextBtnHoverBg":"rgb(240,240,240)","arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path(\'M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z\')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Tooltip":{"global":["borderRadius","colorTextLightSolid","colorBgSpotlight","controlHeight","boxShadowSecondary","paddingSM","paddingXS","sizePopupArrow","colorText","fontSize","lineHeight","fontFamily","blue1","blue3","blue6","blue7","purple1","purple3","purple6","purple7","cyan1","cyan3","cyan6","cyan7","green1","green3","green6","green7","magenta1","magenta3","magenta6","magenta7","pink1","pink3","pink6","pink7","red1","red3","red6","red7","orange1","orange3","orange6","orange7","yellow1","yellow3","yellow6","yellow7","volcano1","volcano3","volcano6","volcano7","geekblue1","geekblue3","geekblue6","geekblue7","lime1","lime3","lime6","lime7","gold1","gold3","gold6","gold7","boxShadowPopoverArrow","borderRadiusXS","motionDurationFast","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1070,"arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path(\'M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z\')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Timeline":{"global":["paddingXXS","colorText","fontSize","lineHeight","fontFamily","lineType","fontSizeSM","colorPrimary","colorError","colorSuccess","colorTextDisabled","lineWidth","margin","controlHeightLG","marginXXS","marginSM","marginXS"],"component":{"tailColor":"rgba(5,5,5,0.06)","tailWidth":2,"dotBorderWidth":2,"dotBg":"#ffffff","itemPaddingBottom":20}},"Tag":{"global":["lineWidth","fontSizeIcon","fontSizeSM","lineHeightSM","paddingXXS","colorText","fontSize","lineHeight","fontFamily","marginXS","lineType","colorBorder","borderRadiusSM","motionDurationMid","colorTextDescription","colorTextHeading","colorTextLightSolid","colorPrimary","colorFillSecondary","colorPrimaryHover","colorPrimaryActive"],"component":{"defaultBg":"#fafafa","defaultColor":"rgba(0,0,0,0.88)"}},"Table":{"global":["colorTextHeading","colorSplit","colorBgContainer","controlInteractiveSize","padding","fontWeightStrong","lineWidth","lineType","motionDurationMid","colorText","fontSize","lineHeight","fontFamily","margin","paddingXS","marginXXS","fontSizeIcon","motionDurationSlow","colorPrimary","paddingXXS","fontSizeSM","borderRadius","colorTextDescription","colorTextDisabled","controlItemBgHover","controlItemBgActive","boxShadowSecondary","colorLink","linkDecoration","lineWidthFocus","colorPrimaryBorder","colorLinkHover","colorLinkActive","opacityLoading"],"component":{"headerBg":"#fafafa","headerColor":"rgba(0,0,0,0.88)","headerSortActiveBg":"#f0f0f0","headerSortHoverBg":"#f0f0f0","bodySortBg":"#fafafa","rowHoverBg":"#fafafa","rowSelectedBg":"#e6f4ff","rowSelectedHoverBg":"#bae0ff","rowExpandedBg":"rgba(0,0,0,0.02)","cellPaddingBlock":16,"cellPaddingInline":16,"cellPaddingBlockMD":12,"cellPaddingInlineMD":8,"cellPaddingBlockSM":8,"cellPaddingInlineSM":8,"borderColor":"#f0f0f0","headerBorderRadius":8,"footerBg":"#fafafa","footerColor":"rgba(0,0,0,0.88)","cellFontSize":14,"cellFontSizeMD":14,"cellFontSizeSM":14,"headerSplitColor":"#f0f0f0","fixedHeaderSortActiveBg":"#f0f0f0","headerFilterHoverBg":"rgba(0,0,0,0.06)","filterDropdownMenuBg":"#ffffff","filterDropdownBg":"#ffffff","expandIconBg":"#ffffff","selectionColumnWidth":32,"stickyScrollBarBg":"rgba(0,0,0,0.25)","stickyScrollBarBorderRadius":100,"expandIconMarginTop":2.5,"headerIconColor":"rgba(0,0,0,0.29250000000000004)","headerIconHoverColor":"rgba(0,0,0,0.5720000000000001)","expandIconHalfInner":7,"expandIconSize":17,"expandIconScale":0.9411764705882353}},"Switch":{"global":["motionDurationMid","colorPrimary","opacityLoading","fontSizeIcon","colorText","fontSize","lineHeight","fontFamily","colorTextQuaternary","colorTextTertiary","lineWidthFocus","colorPrimaryBorder","colorPrimaryHover","colorTextLightSolid","fontSizeSM","marginXXS"],"component":{"trackHeight":22,"trackHeightSM":16,"trackMinWidth":44,"trackMinWidthSM":28,"trackPadding":2,"handleBg":"#fff","handleSize":18,"handleSizeSM":12,"handleShadow":"0 2px 4px 0 rgba(0,35,11,0.2)","innerMinMargin":9,"innerMaxMargin":24,"innerMinMarginSM":6,"innerMaxMarginSM":18}},"Steps":{"global":["colorTextDisabled","controlHeightLG","colorTextLightSolid","colorText","colorPrimary","colorTextDescription","colorTextQuaternary","colorError","colorBorderSecondary","colorSplit","fontSize","lineHeight","fontFamily","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","marginXS","lineWidth","lineType","padding","fontSizeLG","fontWeightStrong","fontSizeSM","paddingSM","paddingXXS","margin","controlHeight","marginXXS","paddingLG","marginSM","paddingXS","controlHeightSM","fontSizeIcon","lineWidthBold","marginLG","borderRadiusSM","motionDurationMid","controlItemBgHover","lineHeightSM","colorBorderBg"],"component":{"titleLineHeight":32,"customIconSize":32,"customIconTop":0,"customIconFontSize":24,"iconSize":32,"iconTop":-0.5,"iconFontSize":14,"iconSizeSM":24,"dotSize":8,"dotCurrentSize":10,"navArrowColor":"rgba(0,0,0,0.25)","navContentMaxWidth":"auto","descriptionMaxWidth":140,"waitIconColor":"rgba(0,0,0,0.25)","waitIconBgColor":"#ffffff","waitIconBorderColor":"rgba(0,0,0,0.25)","finishIconBgColor":"#ffffff","finishIconBorderColor":"#1677ff"}},"Statistic":{"global":["marginXXS","padding","colorTextDescription","colorTextHeading","fontFamily","colorText","fontSize","lineHeight"],"component":{"titleFontSize":14,"contentFontSize":24}},"Splitter":{"global":["colorFill","controlItemBgHover","controlItemBgActive","controlItemBgActiveHover","colorPrimary","colorText","fontSize","lineHeight","fontFamily","zIndexPopupBase","fontSizeSM","borderRadiusXS","controlHeightSM"],"component":{"splitBarSize":2,"splitTriggerSize":6,"splitBarDraggableSize":20,"resizeSpinnerSize":20}},"Spin":{"global":["colorTextDescription","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionEaseInOutCirc","colorBgMask","zIndexPopupBase","motionDurationMid","colorWhite","colorTextLightSolid","colorBgContainer","marginXXS","colorFillSecondary"],"component":{"contentHeight":400,"dotSize":20,"dotSizeSM":14,"dotSizeLG":32}},"Space":{"global":["paddingXS","padding","paddingLG"],"component":{}},"Slider":{"global":["controlHeight","controlHeightLG","colorFillContentHover","motionDurationMid","colorText","fontSize","lineHeight","fontFamily","borderRadiusXS","colorPrimaryBorderHover","colorBgElevated","colorTextDescription","motionDurationSlow"],"component":{"controlSize":10,"railSize":4,"handleSize":10,"handleSizeHover":12,"dotSize":8,"handleLineWidth":2,"handleLineWidthHover":2.5,"railBg":"rgba(0,0,0,0.04)","railHoverBg":"rgba(0,0,0,0.06)","trackBg":"#91caff","trackHoverBg":"#69b1ff","handleColor":"#91caff","handleActiveColor":"#1677ff","handleActiveOutlineColor":"rgba(22,119,255,0.2)","handleColorDisabled":"#bfbfbf","dotBorderColor":"#f0f0f0","dotActiveBorderColor":"#91caff","trackBgDisabled":"rgba(0,0,0,0.04)"}},"Skeleton":{"global":["controlHeight","controlHeightLG","controlHeightSM","padding","marginSM","controlHeightXS","borderRadiusSM"],"component":{"color":"rgba(0,0,0,0.06)","colorGradientEnd":"rgba(0,0,0,0.15)","gradientFromColor":"rgba(0,0,0,0.06)","gradientToColor":"rgba(0,0,0,0.15)","titleHeight":16,"blockRadius":4,"paragraphMarginTop":28,"paragraphLiHeight":16}},"Tabs":{"global":["paddingXXS","borderRadius","marginSM","marginXS","marginXXS","margin","colorBorderSecondary","lineWidth","lineType","lineWidthBold","motionDurationSlow","controlHeight","boxShadowTabsOverflowLeft","boxShadowTabsOverflowRight","boxShadowTabsOverflowTop","boxShadowTabsOverflowBottom","colorBorder","paddingLG","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","borderRadiusLG","boxShadowSecondary","paddingSM","colorTextDescription","fontSizeSM","controlItemBgHover","colorTextDisabled","motionEaseInOut","lineWidthFocus","colorPrimaryBorder","controlHeightLG","paddingXS","colorTextHeading","motionDurationMid","motionEaseOutQuint","motionEaseInQuint"],"component":{"zIndexPopup":1050,"cardBg":"rgba(0,0,0,0.02)","cardHeight":40,"cardPadding":"8px 16px","cardPaddingSM":"6px 16px","cardPaddingLG":"8px 16px 6px","titleFontSize":14,"titleFontSizeLG":16,"titleFontSizeSM":14,"inkBarColor":"#1677ff","horizontalMargin":"0 0 16px 0","horizontalItemGutter":32,"horizontalItemMargin":"","horizontalItemMarginRTL":"","horizontalItemPadding":"12px 0","horizontalItemPaddingSM":"8px 0","horizontalItemPaddingLG":"16px 0","verticalItemPadding":"8px 24px","verticalItemMargin":"16px 0 0 0","itemColor":"rgba(0,0,0,0.88)","itemSelectedColor":"#1677ff","itemHoverColor":"#4096ff","itemActiveColor":"#0958d9","cardGutter":2}},"Typography":{"global":["colorText","lineHeight","colorTextDescription","colorSuccess","colorWarning","colorError","colorErrorActive","colorErrorHover","colorTextDisabled","fontSizeHeading1","lineHeightHeading1","colorTextHeading","fontWeightStrong","fontSizeHeading2","lineHeightHeading2","fontSizeHeading3","lineHeightHeading3","fontSizeHeading4","lineHeightHeading4","fontSizeHeading5","lineHeightHeading5","fontFamilyCode","colorLink","linkDecoration","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","colorLinkHover","colorLinkActive","marginXXS","paddingSM","marginXS","fontSize"],"component":{"titleMarginTop":"1.2em","titleMarginBottom":"0.5em"}},"Pagination":{"global":["marginXXS","controlHeightLG","marginSM","paddingXXS","colorText","fontSize","lineHeight","fontFamily","marginXS","lineWidth","lineType","borderRadius","motionDurationMid","colorBgTextHover","colorBgTextActive","fontWeightStrong","colorPrimary","colorPrimaryHover","fontSizeSM","colorTextDisabled","margin","controlHeight","colorTextPlaceholder","motionDurationSlow","lineHeightLG","borderRadiusLG","borderRadiusSM","colorBorder","colorBgContainer","colorBgContainerDisabled","controlOutlineWidth","controlOutline","controlHeightSM","screenLG","screenSM","lineWidthFocus","colorPrimaryBorder"],"component":{"itemBg":"#ffffff","itemSize":32,"itemSizeSM":24,"itemActiveBg":"#ffffff","itemLinkBg":"#ffffff","itemActiveColorDisabled":"rgba(0,0,0,0.25)","itemActiveBgDisabled":"rgba(0,0,0,0.15)","itemInputBg":"#ffffff","miniOptionsSizeChangerTop":0,"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0,0,0,0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5,145,255,0.1)","errorActiveShadow":"0 0 0 2px rgba(255,38,5,0.06)","warningActiveShadow":"0 0 0 2px rgba(255,215,5,0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14}},"Notification":{"global":["paddingMD","paddingLG","colorBgElevated","fontSizeLG","lineHeightLG","controlHeightLG","margin","paddingContentHorizontalLG","marginLG","colorPrimaryBorderHover","colorPrimary","motionDurationMid","motionEaseInOut","colorText","fontSize","lineHeight","fontFamily","boxShadow","borderRadiusLG","colorSuccess","colorInfo","colorWarning","colorError","colorTextHeading","marginXS","marginSM","colorIcon","borderRadiusSM","colorIconHover","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","motionDurationSlow","colorBgBlur"],"component":{"zIndexPopup":2050,"width":384}},"Modal":{"global":["padding","fontSizeHeading5","lineHeightHeading5","colorSplit","lineType","lineWidth","colorIcon","colorIconHover","controlHeight","fontHeight","screenSMMax","marginXS","colorText","fontSize","lineHeight","fontFamily","margin","paddingLG","fontWeightStrong","borderRadiusLG","boxShadow","zIndexPopupBase","borderRadiusSM","motionDurationMid","fontSizeLG","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","motionDurationSlow","colorBgMask","motionEaseOutCirc","motionEaseInOutCirc","screenXSMin","screenSMMin","screenMDMin","screenLGMin","screenXLMin","screenXXLMin"],"component":{"footerBg":"transparent","headerBg":"#ffffff","titleLineHeight":1.5,"titleFontSize":16,"contentBg":"#ffffff","titleColor":"rgba(0,0,0,0.88)","contentPadding":0,"headerPadding":"16px 24px","headerBorderBottom":"1px solid rgba(5,5,5,0.06)","headerMarginBottom":0,"bodyPadding":24,"footerPadding":"8px 16px","footerBorderTop":"1px solid rgba(5,5,5,0.06)","footerBorderRadius":"0 0 8px 8px","footerMarginTop":0,"confirmBodyPadding":"32px 32px 24px","confirmIconMarginInlineEnd":16,"confirmBtnsMarginTop":24}},"ColorPicker":{"global":["colorTextQuaternary","marginSM","colorPrimary","motionDurationMid","colorBgElevated","colorTextDisabled","colorText","colorBgContainerDisabled","borderRadius","marginXS","controlHeight","controlHeightSM","colorBgTextActive","lineWidth","colorBorder","paddingXXS","fontSize","colorPrimaryHover","controlOutline","controlHeightLG","borderRadiusSM","colorFillSecondary","lineWidthBold","colorPrimaryActive","fontSizeSM","lineHeightSM","marginXXS","fontSizeIcon","paddingXS","colorTextPlaceholder","colorFill","colorWhite","fontHeightSM","motionEaseInBack","motionDurationFast","motionEaseOutBack","colorSplit","red6","controlOutlineWidth","colorError","colorWarning","colorErrorHover","colorWarningHover","colorErrorOutline","colorWarningOutline","controlHeightXS","borderRadiusXS","borderRadiusLG","fontSizeLG"],"component":{}},"Collapse":{"global":["paddingXS","paddingSM","padding","paddingLG","borderRadiusLG","lineWidth","lineType","colorBorder","colorText","colorTextHeading","colorTextDisabled","fontSizeLG","lineHeight","lineHeightLG","marginSM","motionDurationSlow","fontSizeIcon","fontHeight","fontHeightLG","fontSize","fontFamily","lineWidthFocus","colorPrimaryBorder","paddingXXS","motionDurationMid","motionEaseInOut"],"component":{"headerPadding":"12px 16px","headerBg":"rgba(0,0,0,0.02)","contentPadding":"16px 16px","contentBg":"#ffffff"}},"Checkbox":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled"],"component":{}},"Form":{"global":["colorText","fontSize","lineHeight","fontFamily","marginLG","colorTextDescription","fontSizeLG","lineWidth","lineType","colorBorder","controlOutlineWidth","controlOutline","paddingSM","controlHeightSM","controlHeightLG","colorError","colorWarning","marginXXS","controlHeight","motionDurationMid","motionEaseOut","motionEaseOutBack","colorSuccess","colorPrimary","motionDurationFast","motionEaseInOut","margin","screenXSMax","screenSMMax","screenMDMax","screenLGMax"],"component":{"labelRequiredMarkColor":"#ff4d4f","labelColor":"rgba(0,0,0,0.88)","labelFontSize":14,"labelHeight":32,"labelColonMarginInlineStart":2,"labelColonMarginInlineEnd":8,"itemMarginBottom":24,"verticalLabelPadding":"0 0 8px","verticalLabelMargin":0,"inlineItemMarginBottom":0}},"Button":{"global":["opacityLoading","motionDurationSlow","motionEaseInOut","marginXS","lineWidth","lineType","motionDurationMid","colorText","lineWidthFocus","colorPrimaryBorder","controlHeight","borderRadius","controlHeightSM","paddingXS","borderRadiusSM","controlHeightLG","borderRadiusLG","colorBgSolid","colorBgSolidHover","colorBgSolidActive","colorTextDisabled","colorBgContainerDisabled","colorFillTertiary","colorFillSecondary","colorFill","colorBorder","colorLinkHover","colorLinkActive","colorPrimary","colorBgContainer","colorPrimaryTextHover","colorPrimaryHover","colorPrimaryTextActive","colorPrimaryActive","colorPrimaryBg","colorPrimaryBgHover","colorPrimaryText","colorError","colorErrorHover","colorErrorActive","colorErrorBorderHover","colorErrorBg","colorErrorBgFilledHover","colorErrorBgActive","colorLink","colorInfo","colorInfoHover","colorInfoActive","blue6","blue1","blue5","blue2","blue3","blue7","colorTextLightSolid","purple6","purple1","purple5","purple2","purple3","purple7","cyan6","cyan1","cyan5","cyan2","cyan3","cyan7","green6","green1","green5","green2","green3","green7","magenta6","magenta1","magenta5","magenta2","magenta3","magenta7","pink6","pink1","pink5","pink2","pink3","pink7","red6","red1","red5","red2","red3","red7","orange6","orange1","orange5","orange2","orange3","orange7","yellow6","yellow1","yellow5","yellow2","yellow3","yellow7","volcano6","volcano1","volcano5","volcano2","volcano3","volcano7","geekblue6","geekblue1","geekblue5","geekblue2","geekblue3","geekblue7","lime6","lime1","lime5","lime2","lime3","lime7","gold6","gold1","gold5","gold2","gold3","gold7","colorBgTextActive","fontSize"],"component":{"blueShadowColor":"0 2px 0 rgba(5,145,255,0.1)","purpleShadowColor":"0 2px 0 rgba(155,5,255,0.06)","cyanShadowColor":"0 2px 0 rgba(5,255,215,0.1)","greenShadowColor":"0 2px 0 rgba(142,255,30,0.08)","magentaShadowColor":"0 2px 0 rgba(255,5,105,0.06)","pinkShadowColor":"0 2px 0 rgba(255,5,105,0.06)","redShadowColor":"0 2px 0 rgba(255,22,5,0.06)","orangeShadowColor":"0 2px 0 rgba(255,175,5,0.1)","yellowShadowColor":"0 2px 0 rgba(245,255,5,0.1)","volcanoShadowColor":"0 2px 0 rgba(255,125,25,0.1)","geekblueShadowColor":"0 2px 0 rgba(5,88,255,0.06)","limeShadowColor":"0 2px 0 rgba(225,255,5,0.1)","goldShadowColor":"0 2px 0 rgba(255,215,5,0.1)","fontWeight":400,"defaultShadow":"0 2px 0 rgba(0,0,0,0.02)","primaryShadow":"0 2px 0 rgba(5,145,255,0.1)","dangerShadow":"0 2px 0 rgba(255,38,5,0.06)","primaryColor":"#fff","dangerColor":"#fff","borderColorDisabled":"#d9d9d9","defaultGhostColor":"#ffffff","ghostBg":"transparent","defaultGhostBorderColor":"#ffffff","paddingInline":15,"paddingInlineLG":15,"paddingInlineSM":7,"onlyIconSize":"inherit","onlyIconSizeSM":"inherit","onlyIconSizeLG":"inherit","groupBorderColor":"#4096ff","linkHoverBg":"transparent","textTextColor":"rgba(0,0,0,0.88)","textTextHoverColor":"rgba(0,0,0,0.88)","textTextActiveColor":"rgba(0,0,0,0.88)","textHoverBg":"rgba(0,0,0,0.04)","defaultColor":"rgba(0,0,0,0.88)","defaultBg":"#ffffff","defaultBorderColor":"#d9d9d9","defaultBorderColorDisabled":"#d9d9d9","defaultHoverBg":"#ffffff","defaultHoverColor":"#4096ff","defaultHoverBorderColor":"#4096ff","defaultActiveBg":"#ffffff","defaultActiveColor":"#0958d9","defaultActiveBorderColor":"#0958d9","solidTextColor":"#fff","contentFontSize":14,"contentFontSizeSM":14,"contentFontSizeLG":16,"contentLineHeight":1.5714285714285714,"contentLineHeightSM":1.5714285714285714,"contentLineHeightLG":1.5,"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7}},"Breadcrumb":{"global":["colorText","fontSize","lineHeight","fontFamily","motionDurationMid","paddingXXS","borderRadiusSM","fontHeight","marginXXS","colorBgTextHover","lineWidthFocus","colorPrimaryBorder","fontSizeIcon"],"component":{"itemColor":"rgba(0,0,0,0.45)","lastItemColor":"rgba(0,0,0,0.88)","iconFontSize":14,"linkColor":"rgba(0,0,0,0.45)","linkHoverColor":"rgba(0,0,0,0.88)","separatorColor":"rgba(0,0,0,0.45)","separatorMargin":8}},"DatePicker":{"global":["paddingXXS","controlHeightLG","padding","paddingSM","controlHeight","lineWidth","colorPrimary","colorPrimaryBorder","lineType","colorSplit","colorTextDisabled","colorBorder","borderRadius","motionDurationMid","colorTextPlaceholder","fontSizeLG","controlHeightSM","paddingXS","marginXS","colorTextDescription","lineWidthBold","motionDurationSlow","sizePopupArrow","colorBgElevated","borderRadiusLG","boxShadowSecondary","borderRadiusSM","boxShadowPopoverArrow","fontHeight","fontHeightLG","lineHeightLG","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","colorTextHeading","colorIcon","colorIconHover","fontWeightStrong","colorTextLightSolid","controlItemBgActive","marginXXS","colorFillSecondary","colorTextTertiary","borderRadiusXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0,0,0,0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5,145,255,0.1)","errorActiveShadow":"0 0 0 2px rgba(255,38,5,0.06)","warningActiveShadow":"0 0 0 2px rgba(255,215,5,0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"INTERNAL_FIXED_ITEM_MARGIN":2,"cellHoverBg":"rgba(0,0,0,0.04)","cellActiveWithRangeBg":"#e6f4ff","cellHoverWithRangeBg":"#cbe0fd","cellRangeBorderColor":"#82b4f9","cellBgDisabled":"rgba(0,0,0,0.04)","timeColumnWidth":56,"timeColumnHeight":224,"timeCellHeight":28,"cellWidth":36,"cellHeight":24,"textHeight":40,"withoutTimeCellHeight":66,"multipleItemBg":"rgba(0,0,0,0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0,0,0,0.04)","multipleItemColorDisabled":"rgba(0,0,0,0.25)","multipleItemBorderColorDisabled":"transparent","arrowShadowWidth":8.970562748477143,"arrowPath":"path(\'M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z\')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)","presetsWidth":120,"presetsMaxWidth":200,"zIndexPopup":1050}},"Anchor":{"global":["fontSize","fontSizeLG","paddingXXS","motionDurationSlow","lineWidthBold","colorPrimary","lineType","colorSplit","colorText","lineHeight","fontFamily","lineWidth"],"component":{"linkPaddingBlock":4,"linkPaddingInlineStart":16}},"Alert":{"global":["motionDurationSlow","marginXS","marginSM","fontSize","fontSizeLG","lineHeight","borderRadiusLG","motionEaseInOutCirc","colorText","colorTextHeading","fontFamily","colorSuccess","colorSuccessBorder","colorSuccessBg","colorWarning","colorWarningBorder","colorWarningBg","colorError","colorErrorBorder","colorErrorBg","colorInfo","colorInfoBorder","colorInfoBg","lineWidth","lineType","motionDurationMid","fontSizeIcon","colorIcon","colorIconHover"],"component":{"withDescriptionIconSize":24,"defaultPadding":"8px 12px","withDescriptionPadding":"20px 24px"}},"Affix":{"global":[],"component":{"zIndexPopup":10}},"Select":{"global":["paddingSM","controlHeight","colorText","fontSize","lineHeight","fontFamily","motionDurationMid","motionEaseInOut","colorTextPlaceholder","fontSizeIcon","colorTextQuaternary","motionDurationSlow","colorTextTertiary","colorBgBase","paddingXS","controlPaddingHorizontalSM","lineWidth","borderRadius","controlHeightSM","borderRadiusSM","fontSizeLG","borderRadiusLG","borderRadiusXS","controlHeightLG","controlPaddingHorizontal","paddingXXS","colorIcon","colorIconHover","colorBgElevated","boxShadowSecondary","colorTextDescription","fontSizeSM","colorPrimary","colorBgContainerDisabled","colorTextDisabled","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorBorder","controlOutlineWidth","lineType","colorError","colorErrorHover","colorErrorOutline","colorWarning","colorWarningHover","colorWarningOutline","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorWarningBg","colorWarningBgHover","colorBgContainer","colorSplit"],"component":{"INTERNAL_FIXED_ITEM_MARGIN":2,"zIndexPopup":1050,"optionSelectedColor":"rgba(0,0,0,0.88)","optionSelectedFontWeight":600,"optionSelectedBg":"#e6f4ff","optionActiveBg":"rgba(0,0,0,0.04)","optionPadding":"5px 12px","optionFontSize":14,"optionLineHeight":1.5714285714285714,"optionHeight":32,"selectorBg":"#ffffff","clearBg":"#ffffff","singleItemHeightLG":40,"multipleItemBg":"rgba(0,0,0,0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0,0,0,0.04)","multipleItemColorDisabled":"rgba(0,0,0,0.25)","multipleItemBorderColorDisabled":"transparent","showArrowPaddingInlineEnd":18,"hoverBorderColor":"#4096ff","activeBorderColor":"#1677ff","activeOutlineColor":"rgba(5,145,255,0.1)","selectAffixPadding":4}},"Segmented":{"global":["lineWidth","controlPaddingHorizontal","controlPaddingHorizontalSM","controlHeight","controlHeightLG","controlHeightSM","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","motionEaseInOut","lineWidthFocus","colorPrimaryBorder","paddingXXS","borderRadiusSM","boxShadowTertiary","marginSM","motionDurationSlow","borderRadiusLG","fontSizeLG","borderRadiusXS","colorTextDisabled"],"component":{"trackPadding":2,"trackBg":"#f5f5f5","itemColor":"rgba(0,0,0,0.65)","itemHoverColor":"rgba(0,0,0,0.88)","itemHoverBg":"rgba(0,0,0,0.06)","itemSelectedBg":"#ffffff","itemActiveBg":"rgba(0,0,0,0.15)","itemSelectedColor":"rgba(0,0,0,0.88)"}},"Result":{"global":["colorInfo","colorError","colorSuccess","colorWarning","lineHeightHeading3","padding","paddingXL","paddingXS","paddingLG","marginXS","lineHeight","colorTextHeading","colorTextDescription","colorFillAlter"],"component":{"titleFontSize":24,"subtitleFontSize":14,"iconFontSize":72,"extraMargin":"24px 0 0 0"}},"Rate":{"global":["colorText","fontSize","lineHeight","fontFamily","marginXS","motionDurationMid","lineWidth"],"component":{"starColor":"#fadb14","starSize":20,"starHoverScale":"scale(1.1)","starBg":"rgba(0,0,0,0.06)"}},"Radio":{"global":["controlOutline","controlOutlineWidth","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionDurationMid","motionEaseInOutCirc","colorBgContainer","colorBorder","lineWidth","colorBgContainerDisabled","colorTextDisabled","paddingXS","lineType","lineWidthFocus","colorPrimaryBorder","controlHeight","fontSizeLG","controlHeightLG","controlHeightSM","borderRadius","borderRadiusSM","borderRadiusLG","colorPrimaryHover","colorPrimaryActive"],"component":{"radioSize":16,"dotSize":8,"dotColorDisabled":"rgba(0,0,0,0.25)","buttonSolidCheckedColor":"#fff","buttonSolidCheckedBg":"#1677ff","buttonSolidCheckedHoverBg":"#4096ff","buttonSolidCheckedActiveBg":"#0958d9","buttonBg":"#ffffff","buttonCheckedBg":"#ffffff","buttonColor":"rgba(0,0,0,0.88)","buttonCheckedBgDisabled":"rgba(0,0,0,0.15)","buttonCheckedColorDisabled":"rgba(0,0,0,0.25)","buttonPaddingInline":15,"wrapperMarginInlineEnd":8,"radioColor":"#1677ff","radioBgColor":"#ffffff"}},"Message":{"global":["boxShadow","colorText","colorSuccess","colorError","colorWarning","colorInfo","fontSizeLG","motionEaseInOutCirc","motionDurationSlow","marginXS","paddingXS","borderRadiusLG","fontSize","lineHeight","fontFamily"],"component":{"zIndexPopup":2010,"contentBg":"#ffffff","contentPadding":"9px 12px"}},"QRCode":{"global":["colorText","lineWidth","lineType","colorSplit","fontSize","lineHeight","fontFamily","paddingSM","colorWhite","borderRadiusLG","marginXS","controlHeight"],"component":{"QRCodeMaskBackgroundColor":"rgba(255,255,255,0.96)"}},"FloatButton":{"global":["colorTextLightSolid","colorBgElevated","controlHeightLG","marginXXL","marginLG","fontSize","fontSizeIcon","controlItemBgHover","paddingXXS","margin","borderRadiusLG","borderRadiusSM","zIndexPopupBase","colorText","lineHeight","fontFamily","lineWidth","lineType","colorSplit","boxShadowSecondary","motionDurationMid","colorFillContent","fontSizeLG","fontSizeSM","colorPrimary","colorPrimaryHover","motionDurationSlow","motionEaseInOutCirc"],"component":{"dotOffsetInCircle":5.857864376269049,"dotOffsetInSquare":2.3431457505076194}},"Flex":{"global":["paddingXS","padding","paddingLG"],"component":{}},"Empty":{"global":["controlHeightLG","margin","marginXS","marginXL","fontSize","lineHeight","opacityImage","colorTextDescription"],"component":{}},"Popover":{"global":["colorBgElevated","colorText","fontWeightStrong","boxShadowSecondary","colorTextHeading","borderRadiusLG","fontSize","lineHeight","fontFamily","boxShadowPopoverArrow","sizePopupArrow","borderRadiusXS","blue6","purple6","cyan6","green6","magenta6","pink6","red6","orange6","yellow6","volcano6","geekblue6","lime6","gold6","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"titleMinWidth":177,"zIndexPopup":1030,"arrowShadowWidth":8.970562748477143,"arrowPath":"path(\'M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z\')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)","arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"innerPadding":0,"titleMarginBottom":0,"titlePadding":"5px 16px 4px","titleBorderBottom":"1px solid rgba(5,5,5,0.06)","innerContentPadding":"12px 16px"}},"Popconfirm":{"global":["colorText","colorWarning","marginXXS","marginXS","fontSize","fontWeightStrong","colorTextHeading"],"component":{"zIndexPopup":1060}},"Menu":{"global":["colorBgElevated","controlHeightLG","fontSize","motionDurationSlow","motionDurationMid","motionEaseInOut","paddingXS","padding","colorSplit","lineWidth","borderRadiusLG","lineType","colorText","lineHeight","fontFamily","motionEaseOut","borderRadius","margin","colorTextLightSolid","paddingXL","fontSizeLG","motionDurationFast","boxShadowSecondary","marginXS","lineWidthFocus","colorPrimaryBorder","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"dropdownWidth":160,"zIndexPopup":1050,"radiusItem":8,"itemBorderRadius":8,"radiusSubMenuItem":4,"subMenuItemBorderRadius":4,"colorItemText":"rgba(0,0,0,0.88)","itemColor":"rgba(0,0,0,0.88)","colorItemTextHover":"rgba(0,0,0,0.88)","itemHoverColor":"rgba(0,0,0,0.88)","colorItemTextHoverHorizontal":"#1677ff","horizontalItemHoverColor":"#1677ff","colorGroupTitle":"rgba(0,0,0,0.45)","groupTitleColor":"rgba(0,0,0,0.45)","colorItemTextSelected":"#1677ff","itemSelectedColor":"#1677ff","subMenuItemSelectedColor":"#1677ff","colorItemTextSelectedHorizontal":"#1677ff","horizontalItemSelectedColor":"#1677ff","colorItemBg":"#ffffff","itemBg":"#ffffff","colorItemBgHover":"rgba(0,0,0,0.06)","itemHoverBg":"rgba(0,0,0,0.06)","colorItemBgActive":"rgba(0,0,0,0.06)","itemActiveBg":"#e6f4ff","colorSubItemBg":"rgba(0,0,0,0.02)","subMenuItemBg":"rgba(0,0,0,0.02)","colorItemBgSelected":"#e6f4ff","itemSelectedBg":"#e6f4ff","colorItemBgSelectedHorizontal":"transparent","horizontalItemSelectedBg":"transparent","colorActiveBarWidth":0,"activeBarWidth":0,"colorActiveBarHeight":2,"activeBarHeight":2,"colorActiveBarBorderSize":1,"activeBarBorderWidth":1,"colorItemTextDisabled":"rgba(0,0,0,0.25)","itemDisabledColor":"rgba(0,0,0,0.25)","colorDangerItemText":"#ff4d4f","dangerItemColor":"#ff4d4f","colorDangerItemTextHover":"#ff4d4f","dangerItemHoverColor":"#ff4d4f","colorDangerItemTextSelected":"#ff4d4f","dangerItemSelectedColor":"#ff4d4f","colorDangerItemBgActive":"#fff2f0","dangerItemActiveBg":"#fff2f0","colorDangerItemBgSelected":"#fff2f0","dangerItemSelectedBg":"#fff2f0","itemMarginInline":4,"horizontalItemBorderRadius":0,"horizontalItemHoverBg":"transparent","itemHeight":40,"groupTitleLineHeight":1.5714285714285714,"collapsedWidth":80,"popupBg":"#ffffff","itemMarginBlock":4,"itemPaddingInline":16,"horizontalLineHeight":"46px","iconSize":14,"iconMarginInlineEnd":10,"collapsedIconSize":16,"groupTitleFontSize":14,"darkItemDisabledColor":"rgba(255,255,255,0.25)","darkItemColor":"rgba(255,255,255,0.65)","darkDangerItemColor":"#ff4d4f","darkItemBg":"#001529","darkPopupBg":"#001529","darkSubMenuItemBg":"#000c17","darkItemSelectedColor":"#fff","darkItemSelectedBg":"#1677ff","darkDangerItemSelectedBg":"#ff4d4f","darkItemHoverBg":"transparent","darkGroupTitleColor":"rgba(255,255,255,0.65)","darkItemHoverColor":"#fff","darkDangerItemHoverColor":"#ff7875","darkDangerItemSelectedColor":"#fff","darkDangerItemActiveBg":"#ff4d4f","itemWidth":"calc(100% - 8px)"}},"Mentions":{"global":["paddingXXS","colorTextDisabled","controlItemBgHover","controlPaddingHorizontal","colorText","motionDurationSlow","lineHeight","controlHeight","fontSize","fontSizeIcon","colorTextTertiary","colorTextQuaternary","colorBgElevated","paddingLG","borderRadius","borderRadiusLG","boxShadowSecondary","fontFamily","motionDurationMid","colorTextPlaceholder","lineHeightLG","borderRadiusSM","colorBorder","colorBgContainer","lineWidth","lineType","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","fontWeightStrong"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0,0,0,0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5,145,255,0.1)","errorActiveShadow":"0 0 0 2px rgba(255,38,5,0.06)","warningActiveShadow":"0 0 0 2px rgba(255,215,5,0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"dropdownHeight":250,"controlItemWidth":100,"zIndexPopup":1050,"itemPaddingVertical":5}},"List":{"global":["controlHeightLG","controlHeight","paddingSM","marginLG","padding","colorPrimary","paddingXS","margin","colorText","colorTextDescription","motionDurationSlow","lineWidth","fontSize","lineHeight","fontFamily","marginXXS","marginXXL","fontHeight","colorSplit","fontSizeSM","colorTextDisabled","fontSizeLG","lineHeightLG","lineType","paddingLG","borderRadiusLG","colorBorder","screenSM","screenMD","marginSM"],"component":{"contentWidth":220,"itemPadding":"12px 0","itemPaddingSM":"8px 16px","itemPaddingLG":"16px 24px","headerBg":"transparent","footerBg":"transparent","emptyTextPadding":16,"metaMarginBottom":16,"avatarMarginRight":16,"titleMarginBottom":12,"descriptionFontSize":14}},"Layout":{"global":["colorText","fontSize"],"component":{"colorBgHeader":"#001529","colorBgBody":"#f5f5f5","colorBgTrigger":"#002140","bodyBg":"#f5f5f5","headerBg":"#001529","headerHeight":64,"headerPadding":"0 50px","headerColor":"rgba(0,0,0,0.88)","footerPadding":"24px 50px","footerBg":"#f5f5f5","siderBg":"#001529","triggerHeight":48,"triggerBg":"#002140","triggerColor":"#fff","zeroTriggerWidth":40,"zeroTriggerHeight":40,"lightSiderBg":"#ffffff","lightTriggerBg":"#ffffff","lightTriggerColor":"rgba(0,0,0,0.88)"}},"InputNumber":{"global":["paddingXXS","lineWidth","lineType","borderRadius","controlHeightLG","controlHeightSM","colorError","colorTextDescription","motionDurationMid","colorTextDisabled","borderRadiusSM","borderRadiusLG","lineHeightLG","colorText","fontSize","lineHeight","fontFamily","colorTextPlaceholder","controlHeight","motionDurationSlow","colorBorder","colorBgContainer","colorBgContainerDisabled","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","paddingXS","fontSizeLG","colorSplit"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0,0,0,0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5,145,255,0.1)","errorActiveShadow":"0 0 0 2px rgba(255,38,5,0.06)","warningActiveShadow":"0 0 0 2px rgba(255,215,5,0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"controlWidth":90,"handleWidth":22,"handleFontSize":7,"handleVisible":"auto","handleActiveBg":"rgba(0,0,0,0.02)","handleBg":"#ffffff","filledHandleBg":"#f0f0f0","handleHoverColor":"#1677ff","handleBorderColor":"#d9d9d9","handleOpacity":0,"handleVisibleWidth":0}},"Input":{"global":["paddingXXS","borderRadiusLG","borderRadiusSM","colorText","fontSize","lineHeight","fontFamily","paddingXS","lineHeightLG","controlHeightLG","controlHeightSM","borderRadius","motionDurationSlow","lineWidth","lineType","colorBorder","colorError","colorErrorText","colorWarning","colorWarningText","colorTextDisabled","colorBgContainerDisabled","colorFillTertiary","colorSplit","colorErrorBg","colorWarningBg","colorPrimaryHover","controlHeight","colorTextDescription","colorPrimaryActive"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0,0,0,0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5,145,255,0.1)","errorActiveShadow":"0 0 0 2px rgba(255,38,5,0.06)","warningActiveShadow":"0 0 0 2px rgba(255,215,5,0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14}},"Image":{"global":["controlHeightLG","colorBgContainerDisabled","motionDurationSlow","paddingXXS","marginXXS","colorTextLightSolid","motionEaseOut","paddingSM","marginXL","margin","paddingLG","marginSM","zIndexPopupBase","colorBgMask","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1080,"previewOperationColor":"rgba(255,255,255,0.65)","previewOperationHoverColor":"rgba(255,255,255,0.85)","previewOperationColorDisabled":"rgba(255,255,255,0.25)","previewOperationSize":18}},"Dropdown":{"global":["marginXXS","sizePopupArrow","paddingXXS","motionDurationMid","fontSize","colorTextDisabled","fontSizeIcon","controlPaddingHorizontal","colorBgElevated","boxShadowPopoverArrow","borderRadiusXS","colorText","lineHeight","fontFamily","borderRadiusLG","boxShadowSecondary","lineWidthFocus","colorPrimaryBorder","colorTextDescription","marginXS","fontSizeSM","padding","borderRadiusSM","controlItemBgHover","colorPrimary","controlItemBgActive","controlItemBgActiveHover","colorSplit","paddingXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorError","colorTextLightSolid"],"component":{"zIndexPopup":1050,"paddingBlock":5,"arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path(\'M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z\')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Drawer":{"global":["borderRadiusSM","colorBgMask","colorBgElevated","motionDurationSlow","motionDurationMid","paddingXS","padding","paddingLG","fontSizeLG","lineHeightLG","lineWidth","lineType","colorSplit","marginXS","colorIcon","colorIconHover","colorBgTextHover","colorBgTextActive","colorText","fontWeightStrong","boxShadowDrawerLeft","boxShadowDrawerRight","boxShadowDrawerUp","boxShadowDrawerDown","lineWidthFocus","colorPrimaryBorder"],"component":{"zIndexPopup":1000,"footerPaddingBlock":8,"footerPaddingInline":16}},"Divider":{"global":["margin","marginLG","colorSplit","lineWidth","colorText","fontSize","lineHeight","fontFamily","colorTextHeading","fontSizeLG"],"component":{"textPaddingInline":"1em","orientationMargin":0.05,"verticalMarginInline":8}},"Descriptions":{"global":["colorText","fontSize","lineHeight","fontFamily","lineWidth","lineType","colorSplit","padding","paddingLG","colorTextSecondary","paddingSM","paddingXS","fontWeightStrong","fontSizeLG","lineHeightLG","borderRadiusLG"],"component":{"labelBg":"rgba(0,0,0,0.02)","labelColor":"rgba(0,0,0,0.45)","titleColor":"rgba(0,0,0,0.88)","titleMarginBottom":20,"itemPaddingBottom":16,"itemPaddingEnd":16,"colonMarginRight":8,"colonMarginLeft":2,"contentColor":"rgba(0,0,0,0.88)","extraColor":"rgba(0,0,0,0.88)"}},"Grid":{"global":[],"component":{}},"Cascader":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled","colorSplit","controlItemBgHover","paddingXXS","colorTextDescription","fontSizeIcon","colorHighlight"],"component":{"controlWidth":184,"controlItemWidth":111,"dropdownHeight":180,"optionSelectedBg":"#e6f4ff","optionSelectedFontWeight":600,"optionPadding":"5px 12px","menuPadding":4,"optionSelectedColor":"rgba(0,0,0,0.88)"}},"Carousel":{"global":["colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","colorBgContainer","marginXXS"],"component":{"arrowSize":16,"arrowOffset":8,"dotWidth":16,"dotHeight":3,"dotGap":4,"dotOffset":12,"dotWidthActive":24,"dotActiveWidth":24}},"Card":{"global":["boxShadowCard","padding","paddingLG","fontSize","colorBorderSecondary","boxShadowTertiary","colorText","lineHeight","fontFamily","colorBgContainer","borderRadiusLG","colorTextHeading","fontWeightStrong","lineWidth","lineType","motionDurationMid","colorTextDescription","colorPrimary","fontHeight","marginXXS","marginXS","fontSizeLG","colorFillAlter"],"component":{"headerBg":"transparent","headerFontSize":16,"headerFontSizeSM":14,"headerHeight":56,"headerHeightSM":38,"actionsBg":"#ffffff","actionsLiMargin":"12px 0","tabsMarginBottom":-17,"extraColor":"rgba(0,0,0,0.88)","bodyPaddingSM":12,"headerPaddingSM":12,"bodyPadding":24,"headerPadding":24}},"Calendar":{"global":["controlHeightLG","paddingXXS","padding","controlHeightSM","fontHeightSM","marginXS","lineWidth","paddingSM","paddingXS","colorBgContainer","lineType","borderRadiusLG","colorPrimary","colorTextHeading","colorSplit","colorIcon","motionDurationMid","colorIconHover","fontWeightStrong","colorTextDisabled","colorText","fontSize","motionDurationSlow","borderRadiusSM","colorTextLightSolid","controlItemBgActive","marginXXS","colorFillSecondary","colorTextTertiary","lineHeight","fontFamily","lineWidthBold","controlItemBgHover","screenXS"],"component":{"fullBg":"#ffffff","fullPanelBg":"#ffffff","itemActiveBg":"#e6f4ff","yearControlWidth":80,"monthControlWidth":70,"miniContentHeight":256,"INTERNAL_FIXED_ITEM_MARGIN":2,"cellHoverBg":"rgba(0,0,0,0.04)","cellActiveWithRangeBg":"#e6f4ff","cellHoverWithRangeBg":"#cbe0fd","cellRangeBorderColor":"#82b4f9","cellBgDisabled":"rgba(0,0,0,0.04)","timeColumnWidth":56,"timeColumnHeight":224,"timeCellHeight":28,"cellWidth":36,"cellHeight":24,"textHeight":40,"withoutTimeCellHeight":66,"multipleItemBg":"rgba(0,0,0,0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0,0,0,0.04)","multipleItemColorDisabled":"rgba(0,0,0,0.25)","multipleItemBorderColorDisabled":"transparent"}},"Progress":{"global":["marginXXS","colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","motionEaseInOutCirc","colorWhite","colorSuccess","marginXS","paddingXXS","colorBgContainer","motionEaseOutQuint","colorError","fontSizeSM"],"component":{"circleTextColor":"rgba(0,0,0,0.88)","defaultColor":"#1677ff","remainingColor":"rgba(0,0,0,0.06)","lineBorderRadius":100,"circleTextFontSize":"1em","circleIconFontSize":"1.1666666666666667em"}},"Badge":{"global":["fontHeight","lineWidth","marginXS","colorBorderBg","colorTextLightSolid","colorError","colorErrorHover","blue1","blue3","blue6","blue7","purple1","purple3","purple6","purple7","cyan1","cyan3","cyan6","cyan7","green1","green3","green6","green7","magenta1","magenta3","magenta6","magenta7","pink1","pink3","pink6","pink7","red1","red3","red6","red7","orange1","orange3","orange6","orange7","yellow1","yellow3","yellow6","yellow7","volcano1","volcano3","volcano6","volcano7","geekblue1","geekblue3","geekblue6","geekblue7","lime1","lime3","lime6","lime7","gold1","gold3","gold6","gold7","colorText","fontSize","lineHeight","fontFamily","motionDurationMid","paddingXS","colorSuccess","colorInfo","colorTextPlaceholder","colorWarning","motionDurationSlow","motionEaseOutBack"],"component":{"indicatorZIndex":"auto","indicatorHeight":20,"indicatorHeightSM":14,"dotSize":6,"textFontSize":12,"textFontSizeSM":12,"textFontWeight":"normal","statusSize":6}},"BackTop":{"global":["fontSizeHeading3","colorTextDescription","colorTextLightSolid","colorText","controlHeightLG","fontSize","lineHeight","fontFamily","motionDurationMid","screenMD","screenXS"],"component":{"zIndexPopup":10}},"Avatar":{"global":["colorTextLightSolid","colorTextPlaceholder","borderRadius","borderRadiusLG","borderRadiusSM","lineWidth","lineType","colorText","fontSize","lineHeight","fontFamily"],"component":{"containerSize":32,"containerSizeLG":40,"containerSizeSM":24,"textFontSize":18,"textFontSizeLG":24,"textFontSizeSM":14,"groupSpace":4,"groupOverlapping":-8,"groupBorderColor":"#ffffff"}},"App":{"global":["colorText","fontSize","lineHeight","fontFamily"],"component":{}}}')}}]);
@@ -7,4 +7,4 @@
7
7
  * For more information, please refer to: https://www.nocobase.com/agreement.
8
8
  */
9
9
 
10
- !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("@nocobase/client"),require("react"),require("@ant-design/cssinjs"),require("@emotion/css"),require("lodash"),require("antd"),require("@nocobase/utils/client"),require("@ant-design/icons"),require("react-i18next")):"function"==typeof define&&define.amd?define("@nocobase/plugin-theme-editor",["@nocobase/client","react","@ant-design/cssinjs","@emotion/css","lodash","antd","@nocobase/utils/client","@ant-design/icons","react-i18next"],t):"object"==typeof exports?exports["@nocobase/plugin-theme-editor"]=t(require("@nocobase/client"),require("react"),require("@ant-design/cssinjs"),require("@emotion/css"),require("lodash"),require("antd"),require("@nocobase/utils/client"),require("@ant-design/icons"),require("react-i18next")):e["@nocobase/plugin-theme-editor"]=t(e["@nocobase/client"],e.react,e["@ant-design/cssinjs"],e["@emotion/css"],e.lodash,e.antd,e["@nocobase/utils/client"],e["@ant-design/icons"],e["react-i18next"])}(self,function(e,t,n,r,o,i,u,a,c){return function(){var l,s,f,d,p,m,h={8290:function(e,t,n){"use strict";n.r(t),n.d(t,{useThemeId:function(){return f}});var r=n(3772),o=n(7584),i=n(8156),u=n.n(i),a=n(9649),c=n(9181),l=n(9204),s=u().createContext({}),f=function(){return u().useContext(s)},d=function(e){var t,n,f,d=e.children,p=(0,r.useCurrentUserContext)(),m=(0,r.useGlobalTheme)().setTheme,h=(0,l.useThemeListContext)(),b=h.run,y=h.data,v=h.loading,g=(0,i.useMemo)(function(){return null==y?void 0:y.find(function(e){return e.default})},[y]),w=(0,i.useRef)(null),O=(0,r.useAPIClient)();(0,i.useEffect)(function(){var e=O.auth.getOption("theme");if(e)try{m((0,c.w)(JSON.parse(e)).config)}catch(e){(0,o.error)(e)}},[]),(0,i.useEffect)(function(){if(!y)return b();var e,t,n,o,i=null==p||null==(n=p.data)||null==(t=n.data)||null==(e=t.systemSettings)?void 0:e.themeId;null!=i&&(o=y.find(function(e){return e.id===i})),o||(o=g),o?(w.current=o.id,m(o.config),O.auth.setOption("theme",JSON.stringify(Object.assign(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r;r=n[t],t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r})}return e}({},o),{config:(0,a.i)(o.config)})))):(m(r.defaultTheme),O.auth.setOption("theme",null))},[O.auth,null==p||null==(f=p.data)||null==(n=f.data)||null==(t=n.systemSettings)?void 0:t.themeId,y,b,m,g]);var j=v&&!y||p.loading?{}:{currentThemeId:w.current,defaultThemeId:null==g?void 0:g.id};return u().createElement(s.Provider,{value:j},d)};d.displayName="InitializeTheme",t.default=d},9204:function(e,t,n){"use strict";n.r(t),n.d(t,{ThemeListProvider:function(){return s},useThemeListContext:function(){return l}});var r=n(3772),o=n(7584),i=n(8156),u=n.n(i),a=n(9181),c=(0,i.createContext)(null);c.displayName="ThemeListContext";var l=function(){return u().useContext(c)},s=function(e){var t=e.children,n=(0,r.useRequest)({url:"themeConfig:list",params:{sort:"id",paginate:!1}},{manual:!0}),l=n.data,s=n.error,f=n.run,d=n.refresh,p=n.loading,m=(0,i.useMemo)(function(){var e;return null==l||null==(e=l.data)?void 0:e.map(function(e){return(0,a.w)(e)})},[l]);return s&&(0,o.error)(s),u().createElement(c.Provider,{value:{data:m,error:s,run:f,refresh:d,loading:p}},t)};s.displayName="ThemeListProvider"},4936:function(e,t,n){"use strict";n.d(t,{Y:function(){return l}});var r=n(3772),o=n(7584),i=n(8156);function u(e,t,n,r,o,i,u){try{var a=e[i](u),c=a.value}catch(e){n(e);return}a.done?t(c):Promise.resolve(c).then(r,o)}function a(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r;r=n[t],t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r})}return e}function c(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function l(){var e,t,n=(0,r.useAPIClient)(),l=(0,r.useCurrentUserContext)();return{updateUserThemeSettings:(0,i.useCallback)((e=function(e){var t;return function(e,t){var n,r,o,i,u={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){var c=[i,a];if(n)throw TypeError("Generator is already executing.");for(;u;)try{if(n=1,r&&(o=2&c[0]?r.return:c[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,c[1])).done)return o;switch(r=0,o&&(c=[2&c[0],o.value]),c[0]){case 0:case 1:o=c;break;case 4:return u.label++,{value:c[1],done:!1};case 5:u.label++,r=c[1],c=[0];continue;case 7:c=u.ops.pop(),u.trys.pop();continue;default:if(!(o=(o=u.trys).length>0&&o[o.length-1])&&(6===c[0]||2===c[0])){u=0;continue}if(3===c[0]&&(!o||c[1]>o[0]&&c[1]<o[3])){u.label=c[1];break}if(6===c[0]&&u.label<o[1]){u.label=o[1],o=c;break}if(o&&u.label<o[2]){u.label=o[2],u.ops.push(c);break}o[2]&&u.ops.pop(),u.trys.pop();continue}c=t.call(e,u)}catch(e){c=[6,e],r=0}finally{n=o=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}}(this,function(r){switch(r.label){case 0:return r.trys.push([0,2,,3]),[4,n.resource("users").updateTheme({values:{themeId:e}})];case 1:return r.sent(),l.mutate({data:c(a({},l.data.data),{systemSettings:c(a({},l.data.data.systemSettings||{}),{themeId:e})})}),[3,3];case 2:return t=r.sent(),console.log(o.error),(0,o.error)(t),[3,3];case 3:return[2]}})},t=function(){var t=this,n=arguments;return new Promise(function(r,o){var i=e.apply(t,n);function a(e){u(i,r,o,a,c,"next",e)}function c(e){u(i,r,o,a,c,"throw",e)}a(void 0)})},function(e){return t.apply(this,arguments)}),[n,l])}}},9649:function(e,t,n){"use strict";n.d(t,{i:function(){return u}});var r=n(2721),o=n(467),i=n.n(o);function u(e){return(e=i().cloneDeep(e)).algorithm&&(Array.isArray(e.algorithm)?e.algorithm=e.algorithm.map(function(e){return a(e)}).filter(Boolean):e.algorithm=a(e.algorithm),i().isEmpty(e.algorithm)&&delete e.algorithm),e}function a(e){return"string"==typeof e?e:e.toString()===r.theme.darkAlgorithm.toString()?"darkAlgorithm":e.toString()===r.theme.compactAlgorithm.toString()?"compactAlgorithm":void 0}},9181:function(e,t,n){"use strict";n.d(t,{w:function(){return u}});var r=n(2721),o=n(467),i=n.n(o);function u(e){var t;return e=i().cloneDeep(e),i().isString(e.config.algorithm)&&(e.config.algorithm=r.theme[e.config.algorithm]),Array.isArray(null==(t=e.config)?void 0:t.algorithm)&&(e.config.algorithm=e.config.algorithm.map(function(e){return i().isString(e)?r.theme[e]:e})),e}},8551:function(e,t,n){"use strict";n.d(t,{$:function(){return i},A:function(){return o}});var r=n(3238),o="theme-editor";function i(){return(0,r.useTranslation)([o,"client"],{nsMode:"fallback"})}},3581:function(e){e.exports=function(e,t){return"undefined"!=typeof __deoptimization_sideEffect__&&__deoptimization_sideEffect__(e,t),t}},1143:function(e){"use strict";e.exports=n},482:function(e){"use strict";e.exports=a},4964:function(e){"use strict";e.exports=r},3772:function(t){"use strict";t.exports=e},7584:function(e){"use strict";e.exports=u},2721:function(e){"use strict";e.exports=i},467:function(e){"use strict";e.exports=o},8156:function(e){"use strict";e.exports=t},3238:function(e){"use strict";e.exports=c}},b={};function y(e){var t=b[e];if(void 0!==t)return t.exports;var n=b[e]={exports:{}};return h[e](n,n.exports,y),n.exports}y.m=h,y.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return y.d(t,{a:t}),t},y.d=function(e,t){for(var n in t)y.o(t,n)&&!y.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},y.f={},y.e=function(e){return Promise.all(Object.keys(y.f).reduce(function(t,n){return y.f[n](e,t),t},[]))},y.u=function(e){return""+({327:"4acfe66b1504e9e2",39:"1a8ca1e21b09091e",572:"9f56d6363d65244d",595:"717f252ea7b0f951",793:"56efc5f384c11f3a"})[e]+".js"},y.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}}(),y.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},l={},s="@nocobase/plugin-theme-editor:",y.l=function(e,t,n,r){if(l[e])return void l[e].push(t);if(void 0!==n)for(var o,i,u=document.getElementsByTagName("script"),a=0;a<u.length;a++){var c=u[a];if(c.getAttribute("src")==e||c.getAttribute("data-webpack")==s+n){o=c;break}}o||(i=!0,(o=document.createElement("script")).charset="utf-8",o.timeout=120,y.nc&&o.setAttribute("nonce",y.nc),o.setAttribute("data-webpack",s+n),o.src=e),l[e]=[t];var f=function(t,n){o.onerror=o.onload=null,clearTimeout(d);var r=l[e];if(delete l[e],o.parentNode&&o.parentNode.removeChild(o),r&&r.forEach(function(e){return e(n)}),t)return t(n)},d=setTimeout(f.bind(null,void 0,{type:"timeout",target:o}),12e4);o.onerror=f.bind(null,o.onerror),o.onload=f.bind(null,o.onload),i&&document.head.appendChild(o)},y.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},y.nc=void 0,(f=window.__nocobase_public_path__||"/").endsWith("/")||(f+="/"),y.p=f+"static/plugins/@nocobase/plugin-theme-editor/dist/client/",d={909:0},y.f.j=function(e,t){var n=y.o(d,e)?d[e]:void 0;if(0!==n)if(n)t.push(n[2]);else{var r=new Promise(function(t,r){n=d[e]=[t,r]});t.push(n[2]=r);var o=y.p+y.u(e),i=Error();y.l(o,function(t){if(y.o(d,e)&&(0!==(n=d[e])&&(d[e]=void 0),n)){var r=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src;i.message="Loading chunk "+e+" failed.\n("+r+": "+o+")",i.name="ChunkLoadError",i.type=r,i.request=o,n[1](i)}},"chunk-"+e,e)}},p=function(e,t){var n,r,o=t[0],i=t[1],u=t[2],a=0;if(o.some(function(e){return 0!==d[e]})){for(n in i)y.o(i,n)&&(y.m[n]=i[n]);u&&u(y)}for(e&&e(t);a<o.length;a++)r=o[a],y.o(d,r)&&d[r]&&d[r][0](),d[r]=0},(m=self.webpackChunk_nocobase_plugin_theme_editor=self.webpackChunk_nocobase_plugin_theme_editor||[]).forEach(p.bind(null,0)),m.push=p.bind(null,m.push.bind(m));var v={};return!function(){"use strict";y.r(v),y.d(v,{PluginThemeEditorClient:function(){return C},default:function(){return A}});var e=y(3772),t=y(2721),n=y(467),r=y.n(n),o=y(8156),i=y.n(o),u=y(7584),a=y(8290),c=y(9204),l=y(8551),s=y(4936),f=function(){var t=(0,l.$)().t,n=(0,c.useThemeListContext)(),r=n.run,f=n.error,d=n.data,p=(0,s.Y)().updateUserThemeSettings,m=(0,a.useThemeId)().currentThemeId,h=(0,o.useMemo)(function(){return null==d?void 0:d.filter(function(e){return e.optional}).map(function(e){return{label:t(e.config.name),value:e.id}})},[d,t]);return((0,o.useEffect)(function(){d||r()},[]),f)?((0,u.error)(f),null):i().createElement(e.SchemaSettingsSelectItem,{title:t("Theme"),options:h,value:m,onChange:function(e){p(e)}})},d=y(3581);function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function m(e,t,n,r,o,i,u){try{var a=e[i](u),c=a.value}catch(e){n(e);return}a.done?t(c):Promise.resolve(c).then(r,o)}function h(e,t,n){return(h=O()?Reflect.construct:function(e,t,n){var r=[null];r.push.apply(r,t);var o=new(Function.bind.apply(e,r));return n&&g(o,n.prototype),o}).apply(null,arguments)}function b(e){return(b=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function g(e,t){return(g=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function w(e){var t="function"==typeof Map?new Map:void 0;return(w=function(e){if(null===e||-1===Function.toString.call(e).indexOf("[native code]"))return e;if("function"!=typeof e)throw TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,n)}function n(){return h(e,arguments,b(this).constructor)}return n.prototype=Object.create(e.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),g(n,e)})(e)}function O(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return(O=function(){return!!e})()}function j(){var e,t,n=(e=["\n overflow: hidden;\n border-left: 1px solid ",";\n animation: 0.1s ease-out 0s 1 slideInFromRight;\n @keyframes slideInFromRight {\n 0% {\n transform: translateX(100%);\n }\n 100% {\n transform: translateX(0);\n }\n }\n "],t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}})));return j=function(){return n},n}var x=(0,e.lazy)(function(){return d("imported_-1bkn1ue_component",Promise.resolve().then(y.bind(y,8290)))}),P=(0,e.lazy)(function(){return d("imported_-16ae68t_component",y.e("793").then(y.bind(y,3546)))},"ThemeEditorProvider").ThemeEditorProvider,S=(0,e.lazy)(function(){return d("imported_-19lv318_component",Promise.all([y.e("572"),y.e("595"),y.e("39")]).then(y.bind(y,8524)))}),_=(0,e.lazy)(function(){return d("imported_-ofsaik_component",Promise.resolve().then(y.bind(y,9204)))},"ThemeListProvider").ThemeListProvider,T=(0,e.lazy)(function(){return d("imported_-1mfft73_component",Promise.all([y.e("572"),y.e("595"),y.e("327")]).then(y.bind(y,9598)))}),E=(0,e.createStyles)(function(e){var t=e.css,n=e.token;return{editor:t(j(),n.colorBorderSecondary)}}),k=i().memo(function(n){var u,a,c=(u=i().useState(!1),function(e){if(Array.isArray(e))return e}(u)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var i=[],u=!0,a=!1;try{for(o=o.call(e);!(u=(n=o.next()).done)&&(i.push(n.value),i.length!==t);u=!0);}catch(e){a=!0,r=e}finally{try{u||null==o.return||o.return()}finally{if(a)throw r}}return i}}(u,2)||function(e,t){if(e){if("string"==typeof e)return p(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return p(e,t)}}(u,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),l=c[0],s=c[1],f=(0,e.useGlobalTheme)(),d=f.theme,m=f.setTheme,h=E().styles,b=(0,o.useMemo)(function(){return l?{transform:"rotate(0)",flexGrow:1,width:0,height:"100%"}:{flexGrow:1,width:0,height:"100%"}},[l]),y=i().createElement("div",{style:{display:"flex",overflow:"hidden",height:"100%"}},i().createElement("div",{style:b},n.children),l?i().createElement("div",{className:h.editor},i().createElement(T,{onThemeChange:m})):null);return(null==d||null==(a=d.token)?void 0:a.motionUnit)||r().set(d,"token.motionUnit",e.defaultTheme.token.motionUnit),i().createElement(t.ConfigProvider,{theme:d},i().createElement(_,null,i().createElement(x,null,i().createElement(P,{open:l,setOpen:s},y))))});k.displayName="CustomThemeProvider";var C=function(t){var n;if("function"!=typeof t&&null!==t)throw TypeError("Super expression must either be null or a function");function r(){var e,t;if(!(this instanceof r))throw TypeError("Cannot call a class as a function");return e=r,t=arguments,e=b(e),function(e,t){var n;if(t&&("object"==((n=t)&&"undefined"!=typeof Symbol&&n.constructor===Symbol?"symbol":typeof n)||"function"==typeof t))return t;if(void 0===e)throw ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(this,O()?Reflect.construct(e,t||[],b(this).constructor):e.apply(this,t))}return r.prototype=Object.create(t&&t.prototype,{constructor:{value:r,writable:!0,configurable:!0}}),t&&g(r,t),n=[{key:"load",value:function(){var t,n=this;return(t=function(){return function(e,t){var n,r,o,i,u={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){var c=[i,a];if(n)throw TypeError("Generator is already executing.");for(;u;)try{if(n=1,r&&(o=2&c[0]?r.return:c[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,c[1])).done)return o;switch(r=0,o&&(c=[2&c[0],o.value]),c[0]){case 0:case 1:o=c;break;case 4:return u.label++,{value:c[1],done:!1};case 5:u.label++,r=c[1],c=[0];continue;case 7:c=u.ops.pop(),u.trys.pop();continue;default:if(!(o=(o=u.trys).length>0&&o[o.length-1])&&(6===c[0]||2===c[0])){u=0;continue}if(3===c[0]&&(!o||c[1]>o[0]&&c[1]<o[3])){u.label=c[1];break}if(6===c[0]&&u.label<o[1]){u.label=o[1],o=c;break}if(o&&u.label<o[2]){u.label=o[2],u.ops.push(c);break}o[2]&&u.ops.pop(),u.trys.pop();continue}c=t.call(e,u)}catch(e){c=[6,e],r=0}finally{n=o=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}}(this,function(t){return n.app.use(k),n.app.pluginSettingsManager.add(l.A,{title:'{{t("Theme editor", {ns:"'.concat(l.A,'"})}}'),icon:"BgColorsOutlined",Component:S,aclSnippet:"pm.theme-editor.themes"}),n.app.addUserCenterSettingsItem({name:"theme",sort:310,Component:f,useVisible:function(){return!((0,e.useOpenModeContext)()||{}).isMobile}}),[2]})},function(){var e=this,n=arguments;return new Promise(function(r,o){var i=t.apply(e,n);function u(e){m(i,r,o,u,a,"next",e)}function a(e){m(i,r,o,u,a,"throw",e)}u(void 0)})})()}}],function(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)}}(r.prototype,n),r}(w(e.Plugin)),A=C}(),v}()});
10
+ !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("@nocobase/client"),require("react"),require("@ant-design/cssinjs"),require("@emotion/css"),require("lodash"),require("antd"),require("@nocobase/utils/client"),require("@ant-design/icons"),require("react-i18next")):"function"==typeof define&&define.amd?define("@nocobase/plugin-theme-editor",["@nocobase/client","react","@ant-design/cssinjs","@emotion/css","lodash","antd","@nocobase/utils/client","@ant-design/icons","react-i18next"],t):"object"==typeof exports?exports["@nocobase/plugin-theme-editor"]=t(require("@nocobase/client"),require("react"),require("@ant-design/cssinjs"),require("@emotion/css"),require("lodash"),require("antd"),require("@nocobase/utils/client"),require("@ant-design/icons"),require("react-i18next")):e["@nocobase/plugin-theme-editor"]=t(e["@nocobase/client"],e.react,e["@ant-design/cssinjs"],e["@emotion/css"],e.lodash,e.antd,e["@nocobase/utils/client"],e["@ant-design/icons"],e["react-i18next"])}(self,function(e,t,n,r,o,i,u,a,c){return function(){var l,s,f,d,p,m,h={8290:function(e,t,n){"use strict";n.r(t),n.d(t,{useThemeId:function(){return f}});var r=n(3772),o=n(7584),i=n(8156),u=n.n(i),a=n(9649),c=n(9181),l=n(9204),s=u().createContext({}),f=function(){return u().useContext(s)},d=function(e){var t,n,f,d=e.children,p=(0,r.useCurrentUserContext)(),m=(0,r.useGlobalTheme)().setTheme,h=(0,l.useThemeListContext)(),b=h.run,y=h.data,v=h.loading,g=(0,i.useMemo)(function(){return null==y?void 0:y.find(function(e){return e.default})},[y]),w=(0,i.useRef)(null),O=(0,r.useAPIClient)();(0,i.useEffect)(function(){var e=O.auth.getOption("theme");if(e)try{m((0,c.w)(JSON.parse(e)).config)}catch(e){(0,o.error)(e)}},[]),(0,i.useEffect)(function(){if(!y)return b();var e,t,n,o,i=null==p||null==(n=p.data)||null==(t=n.data)||null==(e=t.systemSettings)?void 0:e.themeId;null!=i&&(o=y.find(function(e){return e.id===i})),o||(o=g),o?(w.current=o.id,m(o.config),O.auth.setOption("theme",JSON.stringify(Object.assign(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r;r=n[t],t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r})}return e}({},o),{config:(0,a.i)(o.config)})))):(m(r.defaultTheme),O.auth.setOption("theme",null))},[O.auth,null==p||null==(f=p.data)||null==(n=f.data)||null==(t=n.systemSettings)?void 0:t.themeId,y,b,m,g]);var j=v&&!y||p.loading?{}:{currentThemeId:w.current,defaultThemeId:null==g?void 0:g.id};return u().createElement(s.Provider,{value:j},d)};d.displayName="InitializeTheme",t.default=d},9204:function(e,t,n){"use strict";n.r(t),n.d(t,{ThemeListProvider:function(){return s},useThemeListContext:function(){return l}});var r=n(3772),o=n(7584),i=n(8156),u=n.n(i),a=n(9181),c=(0,i.createContext)(null);c.displayName="ThemeListContext";var l=function(){return u().useContext(c)},s=function(e){var t=e.children,n=(0,r.useRequest)({url:"themeConfig:list",params:{sort:"id",paginate:!1}},{manual:!0}),l=n.data,s=n.error,f=n.run,d=n.refresh,p=n.loading,m=(0,i.useMemo)(function(){var e;return null==l||null==(e=l.data)?void 0:e.map(function(e){return(0,a.w)(e)})},[l]);return s&&(0,o.error)(s),u().createElement(c.Provider,{value:{data:m,error:s,run:f,refresh:d,loading:p}},t)};s.displayName="ThemeListProvider"},4936:function(e,t,n){"use strict";n.d(t,{Y:function(){return l}});var r=n(3772),o=n(7584),i=n(8156);function u(e,t,n,r,o,i,u){try{var a=e[i](u),c=a.value}catch(e){n(e);return}a.done?t(c):Promise.resolve(c).then(r,o)}function a(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r;r=n[t],t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r})}return e}function c(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function l(){var e,t,n=(0,r.useAPIClient)(),l=(0,r.useCurrentUserContext)();return{updateUserThemeSettings:(0,i.useCallback)((e=function(e){var t;return function(e,t){var n,r,o,i,u={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){var c=[i,a];if(n)throw TypeError("Generator is already executing.");for(;u;)try{if(n=1,r&&(o=2&c[0]?r.return:c[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,c[1])).done)return o;switch(r=0,o&&(c=[2&c[0],o.value]),c[0]){case 0:case 1:o=c;break;case 4:return u.label++,{value:c[1],done:!1};case 5:u.label++,r=c[1],c=[0];continue;case 7:c=u.ops.pop(),u.trys.pop();continue;default:if(!(o=(o=u.trys).length>0&&o[o.length-1])&&(6===c[0]||2===c[0])){u=0;continue}if(3===c[0]&&(!o||c[1]>o[0]&&c[1]<o[3])){u.label=c[1];break}if(6===c[0]&&u.label<o[1]){u.label=o[1],o=c;break}if(o&&u.label<o[2]){u.label=o[2],u.ops.push(c);break}o[2]&&u.ops.pop(),u.trys.pop();continue}c=t.call(e,u)}catch(e){c=[6,e],r=0}finally{n=o=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}}(this,function(r){switch(r.label){case 0:return r.trys.push([0,2,,3]),[4,n.resource("users").updateTheme({values:{themeId:e}})];case 1:return r.sent(),l.mutate({data:c(a({},l.data.data),{systemSettings:c(a({},l.data.data.systemSettings||{}),{themeId:e})})}),[3,3];case 2:return t=r.sent(),console.log(o.error),(0,o.error)(t),[3,3];case 3:return[2]}})},t=function(){var t=this,n=arguments;return new Promise(function(r,o){var i=e.apply(t,n);function a(e){u(i,r,o,a,c,"next",e)}function c(e){u(i,r,o,a,c,"throw",e)}a(void 0)})},function(e){return t.apply(this,arguments)}),[n,l])}}},9649:function(e,t,n){"use strict";n.d(t,{i:function(){return u}});var r=n(2721),o=n(467),i=n.n(o);function u(e){return(e=i().cloneDeep(e)).algorithm&&(Array.isArray(e.algorithm)?e.algorithm=e.algorithm.map(function(e){return a(e)}).filter(Boolean):e.algorithm=a(e.algorithm),i().isEmpty(e.algorithm)&&delete e.algorithm),e}function a(e){return"string"==typeof e?e:e.toString()===r.theme.darkAlgorithm.toString()?"darkAlgorithm":e.toString()===r.theme.compactAlgorithm.toString()?"compactAlgorithm":void 0}},9181:function(e,t,n){"use strict";n.d(t,{w:function(){return u}});var r=n(2721),o=n(467),i=n.n(o);function u(e){var t;return e=i().cloneDeep(e),i().isString(e.config.algorithm)&&(e.config.algorithm=r.theme[e.config.algorithm]),Array.isArray(null==(t=e.config)?void 0:t.algorithm)&&(e.config.algorithm=e.config.algorithm.map(function(e){return i().isString(e)?r.theme[e]:e})),e}},8551:function(e,t,n){"use strict";n.d(t,{$:function(){return i},A:function(){return o}});var r=n(3238),o="theme-editor";function i(){return(0,r.useTranslation)([o,"client"],{nsMode:"fallback"})}},3581:function(e){e.exports=function(e,t){return"undefined"!=typeof __deoptimization_sideEffect__&&__deoptimization_sideEffect__(e,t),t}},1143:function(e){"use strict";e.exports=n},482:function(e){"use strict";e.exports=a},4964:function(e){"use strict";e.exports=r},3772:function(t){"use strict";t.exports=e},7584:function(e){"use strict";e.exports=u},2721:function(e){"use strict";e.exports=i},467:function(e){"use strict";e.exports=o},8156:function(e){"use strict";e.exports=t},3238:function(e){"use strict";e.exports=c}},b={};function y(e){var t=b[e];if(void 0!==t)return t.exports;var n=b[e]={exports:{}};return h[e](n,n.exports,y),n.exports}y.m=h,y.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return y.d(t,{a:t}),t},y.d=function(e,t){for(var n in t)y.o(t,n)&&!y.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},y.f={},y.e=function(e){return Promise.all(Object.keys(y.f).reduce(function(t,n){return y.f[n](e,t),t},[]))},y.u=function(e){return""+({327:"4acfe66b1504e9e2",39:"1a8ca1e21b09091e",572:"e285e1915ec4e08b",595:"717f252ea7b0f951",793:"56efc5f384c11f3a"})[e]+".js"},y.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}}(),y.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},l={},s="@nocobase/plugin-theme-editor:",y.l=function(e,t,n,r){if(l[e])return void l[e].push(t);if(void 0!==n)for(var o,i,u=document.getElementsByTagName("script"),a=0;a<u.length;a++){var c=u[a];if(c.getAttribute("src")==e||c.getAttribute("data-webpack")==s+n){o=c;break}}o||(i=!0,(o=document.createElement("script")).charset="utf-8",o.timeout=120,y.nc&&o.setAttribute("nonce",y.nc),o.setAttribute("data-webpack",s+n),o.src=e),l[e]=[t];var f=function(t,n){o.onerror=o.onload=null,clearTimeout(d);var r=l[e];if(delete l[e],o.parentNode&&o.parentNode.removeChild(o),r&&r.forEach(function(e){return e(n)}),t)return t(n)},d=setTimeout(f.bind(null,void 0,{type:"timeout",target:o}),12e4);o.onerror=f.bind(null,o.onerror),o.onload=f.bind(null,o.onload),i&&document.head.appendChild(o)},y.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},y.nc=void 0,(f=window.__nocobase_public_path__||"/").endsWith("/")||(f+="/"),y.p=f+"static/plugins/@nocobase/plugin-theme-editor/dist/client/",d={909:0},y.f.j=function(e,t){var n=y.o(d,e)?d[e]:void 0;if(0!==n)if(n)t.push(n[2]);else{var r=new Promise(function(t,r){n=d[e]=[t,r]});t.push(n[2]=r);var o=y.p+y.u(e),i=Error();y.l(o,function(t){if(y.o(d,e)&&(0!==(n=d[e])&&(d[e]=void 0),n)){var r=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src;i.message="Loading chunk "+e+" failed.\n("+r+": "+o+")",i.name="ChunkLoadError",i.type=r,i.request=o,n[1](i)}},"chunk-"+e,e)}},p=function(e,t){var n,r,o=t[0],i=t[1],u=t[2],a=0;if(o.some(function(e){return 0!==d[e]})){for(n in i)y.o(i,n)&&(y.m[n]=i[n]);u&&u(y)}for(e&&e(t);a<o.length;a++)r=o[a],y.o(d,r)&&d[r]&&d[r][0](),d[r]=0},(m=self.webpackChunk_nocobase_plugin_theme_editor=self.webpackChunk_nocobase_plugin_theme_editor||[]).forEach(p.bind(null,0)),m.push=p.bind(null,m.push.bind(m));var v={};return!function(){"use strict";y.r(v),y.d(v,{PluginThemeEditorClient:function(){return C},default:function(){return A}});var e=y(3772),t=y(2721),n=y(467),r=y.n(n),o=y(8156),i=y.n(o),u=y(7584),a=y(8290),c=y(9204),l=y(8551),s=y(4936),f=function(){var t=(0,l.$)().t,n=(0,c.useThemeListContext)(),r=n.run,f=n.error,d=n.data,p=(0,s.Y)().updateUserThemeSettings,m=(0,a.useThemeId)().currentThemeId,h=(0,o.useMemo)(function(){return null==d?void 0:d.filter(function(e){return e.optional}).map(function(e){return{label:t(e.config.name),value:e.id}})},[d,t]);return((0,o.useEffect)(function(){d||r()},[]),f)?((0,u.error)(f),null):i().createElement(e.SchemaSettingsSelectItem,{title:t("Theme"),options:h,value:m,onChange:function(e){p(e)}})},d=y(3581);function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function m(e,t,n,r,o,i,u){try{var a=e[i](u),c=a.value}catch(e){n(e);return}a.done?t(c):Promise.resolve(c).then(r,o)}function h(e,t,n){return(h=O()?Reflect.construct:function(e,t,n){var r=[null];r.push.apply(r,t);var o=new(Function.bind.apply(e,r));return n&&g(o,n.prototype),o}).apply(null,arguments)}function b(e){return(b=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function g(e,t){return(g=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function w(e){var t="function"==typeof Map?new Map:void 0;return(w=function(e){if(null===e||-1===Function.toString.call(e).indexOf("[native code]"))return e;if("function"!=typeof e)throw TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,n)}function n(){return h(e,arguments,b(this).constructor)}return n.prototype=Object.create(e.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),g(n,e)})(e)}function O(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return(O=function(){return!!e})()}function j(){var e,t,n=(e=["\n overflow: hidden;\n border-left: 1px solid ",";\n animation: 0.1s ease-out 0s 1 slideInFromRight;\n @keyframes slideInFromRight {\n 0% {\n transform: translateX(100%);\n }\n 100% {\n transform: translateX(0);\n }\n }\n "],t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}})));return j=function(){return n},n}var x=(0,e.lazy)(function(){return d("imported_-1bkn1ue_component",Promise.resolve().then(y.bind(y,8290)))}),P=(0,e.lazy)(function(){return d("imported_-16ae68t_component",y.e("793").then(y.bind(y,3546)))},"ThemeEditorProvider").ThemeEditorProvider,S=(0,e.lazy)(function(){return d("imported_-19lv318_component",Promise.all([y.e("572"),y.e("595"),y.e("39")]).then(y.bind(y,8524)))}),_=(0,e.lazy)(function(){return d("imported_-ofsaik_component",Promise.resolve().then(y.bind(y,9204)))},"ThemeListProvider").ThemeListProvider,T=(0,e.lazy)(function(){return d("imported_-1mfft73_component",Promise.all([y.e("572"),y.e("595"),y.e("327")]).then(y.bind(y,9598)))}),E=(0,e.createStyles)(function(e){var t=e.css,n=e.token;return{editor:t(j(),n.colorBorderSecondary)}}),k=i().memo(function(n){var u,a,c=(u=i().useState(!1),function(e){if(Array.isArray(e))return e}(u)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var i=[],u=!0,a=!1;try{for(o=o.call(e);!(u=(n=o.next()).done)&&(i.push(n.value),i.length!==t);u=!0);}catch(e){a=!0,r=e}finally{try{u||null==o.return||o.return()}finally{if(a)throw r}}return i}}(u,2)||function(e,t){if(e){if("string"==typeof e)return p(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return p(e,t)}}(u,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),l=c[0],s=c[1],f=(0,e.useGlobalTheme)(),d=f.theme,m=f.setTheme,h=E().styles,b=(0,o.useMemo)(function(){return l?{transform:"rotate(0)",flexGrow:1,width:0,height:"100%"}:{flexGrow:1,width:0,height:"100%"}},[l]),y=i().createElement("div",{style:{display:"flex",overflow:"hidden",height:"100%"}},i().createElement("div",{style:b},n.children),l?i().createElement("div",{className:h.editor},i().createElement(T,{onThemeChange:m})):null);return(null==d||null==(a=d.token)?void 0:a.motionUnit)||r().set(d,"token.motionUnit",e.defaultTheme.token.motionUnit),i().createElement(t.ConfigProvider,{theme:d},i().createElement(_,null,i().createElement(x,null,i().createElement(P,{open:l,setOpen:s},y))))});k.displayName="CustomThemeProvider";var C=function(t){var n;if("function"!=typeof t&&null!==t)throw TypeError("Super expression must either be null or a function");function r(){var e,t;if(!(this instanceof r))throw TypeError("Cannot call a class as a function");return e=r,t=arguments,e=b(e),function(e,t){var n;if(t&&("object"==((n=t)&&"undefined"!=typeof Symbol&&n.constructor===Symbol?"symbol":typeof n)||"function"==typeof t))return t;if(void 0===e)throw ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(this,O()?Reflect.construct(e,t||[],b(this).constructor):e.apply(this,t))}return r.prototype=Object.create(t&&t.prototype,{constructor:{value:r,writable:!0,configurable:!0}}),t&&g(r,t),n=[{key:"load",value:function(){var t,n=this;return(t=function(){return function(e,t){var n,r,o,i,u={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){var c=[i,a];if(n)throw TypeError("Generator is already executing.");for(;u;)try{if(n=1,r&&(o=2&c[0]?r.return:c[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,c[1])).done)return o;switch(r=0,o&&(c=[2&c[0],o.value]),c[0]){case 0:case 1:o=c;break;case 4:return u.label++,{value:c[1],done:!1};case 5:u.label++,r=c[1],c=[0];continue;case 7:c=u.ops.pop(),u.trys.pop();continue;default:if(!(o=(o=u.trys).length>0&&o[o.length-1])&&(6===c[0]||2===c[0])){u=0;continue}if(3===c[0]&&(!o||c[1]>o[0]&&c[1]<o[3])){u.label=c[1];break}if(6===c[0]&&u.label<o[1]){u.label=o[1],o=c;break}if(o&&u.label<o[2]){u.label=o[2],u.ops.push(c);break}o[2]&&u.ops.pop(),u.trys.pop();continue}c=t.call(e,u)}catch(e){c=[6,e],r=0}finally{n=o=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}}(this,function(t){return n.app.use(k),n.app.pluginSettingsManager.add(l.A,{title:'{{t("Theme editor", {ns:"'.concat(l.A,'"})}}'),icon:"BgColorsOutlined",Component:S,aclSnippet:"pm.theme-editor.themes"}),n.app.addUserCenterSettingsItem({name:"theme",sort:310,Component:f,useVisible:function(){return!((0,e.useOpenModeContext)()||{}).isMobile}}),[2]})},function(){var e=this,n=arguments;return new Promise(function(r,o){var i=t.apply(e,n);function u(e){m(i,r,o,u,a,"next",e)}function a(e){m(i,r,o,u,a,"throw",e)}u(void 0)})})()}}],function(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)}}(r.prototype,n),r}(w(e.Plugin)),A=C}(),v}()});
@@ -8,16 +8,16 @@
8
8
  */
9
9
 
10
10
  module.exports = {
11
- "@nocobase/client": "2.0.0-alpha.2",
11
+ "@nocobase/client": "2.0.0-alpha.3",
12
12
  "react": "18.2.0",
13
13
  "antd": "5.24.2",
14
14
  "lodash": "4.17.21",
15
- "@nocobase/server": "2.0.0-alpha.2",
15
+ "@nocobase/server": "2.0.0-alpha.3",
16
16
  "@ant-design/cssinjs": "1.21.1",
17
17
  "@ant-design/icons": "5.6.1",
18
- "@nocobase/utils": "2.0.0-alpha.2",
18
+ "@nocobase/utils": "2.0.0-alpha.3",
19
19
  "react-i18next": "11.18.6",
20
- "@nocobase/actions": "2.0.0-alpha.2",
21
- "@nocobase/database": "2.0.0-alpha.2",
20
+ "@nocobase/actions": "2.0.0-alpha.3",
21
+ "@nocobase/database": "2.0.0-alpha.3",
22
22
  "@emotion/css": "11.13.0"
23
23
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nocobase/plugin-theme-editor",
3
- "version": "2.0.0-alpha.2",
3
+ "version": "2.0.0-alpha.3",
4
4
  "main": "dist/server/index.js",
5
5
  "homepage": "https://docs.nocobase.com/handbook/theme-editor",
6
6
  "homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/theme-editor",
@@ -32,7 +32,7 @@
32
32
  "@nocobase/test": "2.x",
33
33
  "@nocobase/utils": "2.x"
34
34
  },
35
- "gitHead": "1322f486b248bef53ed8c8f42f0a39dfd02125fd",
35
+ "gitHead": "8efc23aa78058d871e98a91419f3c4a61762cc15",
36
36
  "keywords": [
37
37
  "System management"
38
38
  ]
@@ -1,44 +0,0 @@
1
- /**
2
- * This file is part of the NocoBase (R) project.
3
- * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
- * Authors: NocoBase Team.
5
- *
6
- * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
- * For more information, please refer to: https://www.nocobase.com/agreement.
8
- */
9
-
10
- (self.webpackChunk_nocobase_plugin_theme_editor=self.webpackChunk_nocobase_plugin_theme_editor||[]).push([["572"],{3722:function(e,t,r){"use strict";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 n(e,t,r){var n;return(n=function(e,t){if("object"!=o(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!=o(n))return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==o(n)?n:n+"")in e)?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}r.d(t,{t:function(){return s}});let i=Math.round;function a(e,t){let r=e.replace(/^[^(]*\((.*)/,"$1").replace(/\).*/,"").match(/\d*\.?\d+%?/g)||[],o=r.map(e=>parseFloat(e));for(let e=0;e<3;e+=1)o[e]=t(o[e]||0,r[e]||"",e);return r[3]?o[3]=r[3].includes("%")?o[3]/100:o[3]:o[3]=1,o}let l=(e,t,r)=>0===r?e:e/100;function c(e,t){let r=t||255;return e>r?r:e<0?0:e}class s{constructor(e){function t(t){return t[0]in e&&t[1]in e&&t[2]in e}if(n(this,"isValid",!0),n(this,"r",0),n(this,"g",0),n(this,"b",0),n(this,"a",1),n(this,"_h",void 0),n(this,"_s",void 0),n(this,"_l",void 0),n(this,"_v",void 0),n(this,"_max",void 0),n(this,"_min",void 0),n(this,"_brightness",void 0),e)if("string"==typeof e){let t=e.trim();function r(e){return t.startsWith(e)}/^#?[A-F\d]{3,8}$/i.test(t)?this.fromHexString(t):r("rgb")?this.fromRgbString(t):r("hsl")?this.fromHslString(t):(r("hsv")||r("hsb"))&&this.fromHsvString(t)}else if(e instanceof s)this.r=e.r,this.g=e.g,this.b=e.b,this.a=e.a,this._h=e._h,this._s=e._s,this._l=e._l,this._v=e._v;else if(t("rgb"))this.r=c(e.r),this.g=c(e.g),this.b=c(e.b),this.a="number"==typeof e.a?c(e.a,1):1;else if(t("hsl"))this.fromHsl(e);else if(t("hsv"))this.fromHsv(e);else throw Error("@ant-design/fast-color: unsupported input "+JSON.stringify(e))}setR(e){return this._sc("r",e)}setG(e){return this._sc("g",e)}setB(e){return this._sc("b",e)}setA(e){return this._sc("a",e,1)}setHue(e){let t=this.toHsv();return t.h=e,this._c(t)}getLuminance(){function e(e){let t=e/255;return t<=.03928?t/12.92:Math.pow((t+.055)/1.055,2.4)}let t=e(this.r);return .2126*t+.7152*e(this.g)+.0722*e(this.b)}getHue(){if(void 0===this._h){let e=this.getMax()-this.getMin();0===e?this._h=0:this._h=i(60*(this.r===this.getMax()?(this.g-this.b)/e+6*(this.g<this.b):this.g===this.getMax()?(this.b-this.r)/e+2:(this.r-this.g)/e+4))}return this._h}getSaturation(){if(void 0===this._s){let e=this.getMax()-this.getMin();0===e?this._s=0:this._s=e/this.getMax()}return this._s}getLightness(){return void 0===this._l&&(this._l=(this.getMax()+this.getMin())/510),this._l}getValue(){return void 0===this._v&&(this._v=this.getMax()/255),this._v}getBrightness(){return void 0===this._brightness&&(this._brightness=(299*this.r+587*this.g+114*this.b)/1e3),this._brightness}darken(e=10){let t=this.getHue(),r=this.getSaturation(),o=this.getLightness()-e/100;return o<0&&(o=0),this._c({h:t,s:r,l:o,a:this.a})}lighten(e=10){let t=this.getHue(),r=this.getSaturation(),o=this.getLightness()+e/100;return o>1&&(o=1),this._c({h:t,s:r,l:o,a:this.a})}mix(e,t=50){let r=this._c(e),o=t/100,n=e=>(r[e]-this[e])*o+this[e],a={r:i(n("r")),g:i(n("g")),b:i(n("b")),a:i(100*n("a"))/100};return this._c(a)}tint(e=10){return this.mix({r:255,g:255,b:255,a:1},e)}shade(e=10){return this.mix({r:0,g:0,b:0,a:1},e)}onBackground(e){let t=this._c(e),r=this.a+t.a*(1-this.a),o=e=>i((this[e]*this.a+t[e]*t.a*(1-this.a))/r);return this._c({r:o("r"),g:o("g"),b:o("b"),a:r})}isDark(){return 128>this.getBrightness()}isLight(){return this.getBrightness()>=128}equals(e){return this.r===e.r&&this.g===e.g&&this.b===e.b&&this.a===e.a}clone(){return this._c(this)}toHexString(){let e="#",t=(this.r||0).toString(16);e+=2===t.length?t:"0"+t;let r=(this.g||0).toString(16);e+=2===r.length?r:"0"+r;let o=(this.b||0).toString(16);if(e+=2===o.length?o:"0"+o,"number"==typeof this.a&&this.a>=0&&this.a<1){let t=i(255*this.a).toString(16);e+=2===t.length?t:"0"+t}return e}toHsl(){return{h:this.getHue(),s:this.getSaturation(),l:this.getLightness(),a:this.a}}toHslString(){let e=this.getHue(),t=i(100*this.getSaturation()),r=i(100*this.getLightness());return 1!==this.a?`hsla(${e},${t}%,${r}%,${this.a})`:`hsl(${e},${t}%,${r}%)`}toHsv(){return{h:this.getHue(),s:this.getSaturation(),v:this.getValue(),a:this.a}}toRgb(){return{r:this.r,g:this.g,b:this.b,a:this.a}}toRgbString(){return 1!==this.a?`rgba(${this.r},${this.g},${this.b},${this.a})`:`rgb(${this.r},${this.g},${this.b})`}toString(){return this.toRgbString()}_sc(e,t,r){let o=this.clone();return o[e]=c(t,r),o}_c(e){return new this.constructor(e)}getMax(){return void 0===this._max&&(this._max=Math.max(this.r,this.g,this.b)),this._max}getMin(){return void 0===this._min&&(this._min=Math.min(this.r,this.g,this.b)),this._min}fromHexString(e){let t=e.replace("#","");function r(e,r){return parseInt(t[e]+t[r||e],16)}t.length<6?(this.r=r(0),this.g=r(1),this.b=r(2),this.a=t[3]?r(3)/255:1):(this.r=r(0,1),this.g=r(2,3),this.b=r(4,5),this.a=t[6]?r(6,7)/255:1)}fromHsl({h:e,s:t,l:r,a:o}){if(this._h=e%360,this._s=t,this._l=r,this.a="number"==typeof o?o:1,t<=0){let e=i(255*r);this.r=e,this.g=e,this.b=e}let n=0,a=0,l=0,c=e/60,s=(1-Math.abs(2*r-1))*t,d=s*(1-Math.abs(c%2-1));c>=0&&c<1?(n=s,a=d):c>=1&&c<2?(n=d,a=s):c>=2&&c<3?(a=s,l=d):c>=3&&c<4?(a=d,l=s):c>=4&&c<5?(n=d,l=s):c>=5&&c<6&&(n=s,l=d);let f=r-s/2;this.r=i((n+f)*255),this.g=i((a+f)*255),this.b=i((l+f)*255)}fromHsv({h:e,s:t,v:r,a:o}){this._h=e%360,this._s=t,this._v=r,this.a="number"==typeof o?o:1;let n=i(255*r);if(this.r=n,this.g=n,this.b=n,t<=0)return;let a=e/60,l=Math.floor(a),c=a-l,s=i(r*(1-t)*255),d=i(r*(1-t*c)*255),f=i(r*(1-t*(1-c))*255);switch(l){case 0:this.g=f,this.b=s;break;case 1:this.r=d,this.b=s;break;case 2:this.r=s,this.b=f;break;case 3:this.r=s,this.g=d;break;case 4:this.r=f,this.g=s;break;default:this.g=s,this.b=d}}fromHsvString(e){let t=a(e,l);this.fromHsv({h:t[0],s:t[1],v:t[2],a:t[3]})}fromHslString(e){let t=a(e,l);this.fromHsl({h:t[0],s:t[1],l:t[2],a:t[3]})}fromRgbString(e){let t=a(e,(e,t)=>t.includes("%")?i(e/100*255):e);this.r=t[0],this.g=t[1],this.b=t[2],this.a=t[3]}}},8582:function(e,t,r){"use strict";r.d(t,{D:function(){return eE}});var o,n,i,a,l,c,s,d=r(9665),f=r(8156),u=r.n(f),g=r(2298),h=r.n(g),p=function(e){function t(e,t,o){var n=t.trim().split(h);t=n;var i=n.length,a=e.length;switch(a){case 0:case 1:var l=0;for(e=0===a?"":e[0]+" ";l<i;++l)t[l]=r(e,t[l],o).trim();break;default:var c=l=0;for(t=[];l<i;++l)for(var s=0;s<a;++s)t[c++]=r(e[s]+" ",n[l],o).trim()}return t}function r(e,t,r){var o=t.charCodeAt(0);switch(33>o&&(o=(t=t.trim()).charCodeAt(0)),o){case 38:return t.replace(p,"$1"+e.trim());case 58:return e.trim()+t.replace(p,"$1"+e.trim());default:if(0<+r&&0<t.indexOf("\f"))return t.replace(p,(58===e.charCodeAt(0)?"":"$1")+e.trim())}return e+t}function o(e,t,r,i){var a=e+";",l=2*t+3*r+4*i;if(944===l){e=a.indexOf(":",9)+1;var c=a.substring(e,a.length-1).trim();return c=a.substring(0,e).trim()+c+";",1===T||2===T&&n(c,1)?"-webkit-"+c+c:c}if(0===T||2===T&&!n(a,1))return a;switch(l){case 1015:return 97===a.charCodeAt(10)?"-webkit-"+a+a:a;case 951:return 116===a.charCodeAt(3)?"-webkit-"+a+a:a;case 963:return 110===a.charCodeAt(5)?"-webkit-"+a+a:a;case 1009:if(100!==a.charCodeAt(4))break;case 969:case 942:return"-webkit-"+a+a;case 978:return"-webkit-"+a+"-moz-"+a+a;case 1019:case 983:return"-webkit-"+a+"-moz-"+a+"-ms-"+a+a;case 883:if(45===a.charCodeAt(8))return"-webkit-"+a+a;if(0<a.indexOf("image-set(",11))return a.replace(w,"$1-webkit-$2")+a;break;case 932:if(45===a.charCodeAt(4))switch(a.charCodeAt(5)){case 103:return"-webkit-box-"+a.replace("-grow","")+"-webkit-"+a+"-ms-"+a.replace("grow","positive")+a;case 115:return"-webkit-"+a+"-ms-"+a.replace("shrink","negative")+a;case 98:return"-webkit-"+a+"-ms-"+a.replace("basis","preferred-size")+a}return"-webkit-"+a+"-ms-"+a+a;case 964:return"-webkit-"+a+"-ms-flex-"+a+a;case 1023:if(99!==a.charCodeAt(8))break;return"-webkit-box-pack"+(c=a.substring(a.indexOf(":",15)).replace("flex-","").replace("space-between","justify"))+"-webkit-"+a+"-ms-flex-pack"+c+a;case 1005:return u.test(a)?a.replace(f,":-webkit-")+a.replace(f,":-moz-")+a:a;case 1e3:switch(t=(c=a.substring(13).trim()).indexOf("-")+1,c.charCodeAt(0)+c.charCodeAt(t)){case 226:c=a.replace(v,"tb");break;case 232:c=a.replace(v,"tb-rl");break;case 220:c=a.replace(v,"lr");break;default:return a}return"-webkit-"+a+"-ms-"+c+a;case 1017:if(-1===a.indexOf("sticky",9))break;case 975:switch(t=(a=e).length-10,l=(c=(33===a.charCodeAt(t)?a.substring(0,t):a).substring(e.indexOf(":",7)+1).trim()).charCodeAt(0)+(0|c.charCodeAt(7))){case 203:if(111>c.charCodeAt(8))break;case 115:a=a.replace(c,"-webkit-"+c)+";"+a;break;case 207:case 102:a=a.replace(c,"-webkit-"+(102<l?"inline-":"")+"box")+";"+a.replace(c,"-webkit-"+c)+";"+a.replace(c,"-ms-"+c+"box")+";"+a}return a+";";case 938:if(45===a.charCodeAt(5))switch(a.charCodeAt(6)){case 105:return c=a.replace("-items",""),"-webkit-"+a+"-webkit-box-"+c+"-ms-flex-"+c+a;case 115:return"-webkit-"+a+"-ms-flex-item-"+a.replace(M,"")+a;default:return"-webkit-"+a+"-ms-flex-line-pack"+a.replace("align-content","").replace(M,"")+a}break;case 973:case 989:if(45!==a.charCodeAt(3)||122===a.charCodeAt(4))break;case 931:case 953:if(!0===H.test(e))return 115===(c=e.substring(e.indexOf(":")+1)).charCodeAt(0)?o(e.replace("stretch","fill-available"),t,r,i).replace(":fill-available",":stretch"):a.replace(c,"-webkit-"+c)+a.replace(c,"-moz-"+c.replace("fill-",""))+a;break;case 962:if(a="-webkit-"+a+(102===a.charCodeAt(5)?"-ms-"+a:"")+a,211===r+i&&105===a.charCodeAt(13)&&0<a.indexOf("transform",10))return a.substring(0,a.indexOf(";",27)+1).replace(g,"$1-webkit-$2")+a}return a}function n(e,t){var r=e.indexOf(1===t?":":"{"),o=e.substring(0,3!==t?r:10);return r=e.substring(r+1,e.length-1),P(2!==t?o:o.replace(B,"$1"),r,t)}function i(e,t){var r=o(t,t.charCodeAt(0),t.charCodeAt(1),t.charCodeAt(2));return r!==t+";"?r.replace(x," or ($1)").substring(4):"("+t+")"}function a(e,t,r,o,n,i,a,l,s,d){for(var f,u=0,g=t;u<_;++u)switch(f=z[u].call(c,e,g,r,o,n,i,a,l,s,d)){case void 0:case!1:case!0:case null:break;default:g=f}if(g!==t)return g}function l(e){return void 0!==(e=e.prefix)&&(P=null,e?"function"!=typeof e?T=1:(T=2,P=e):T=0),l}function c(e,r){var l=e;if(33>l.charCodeAt(0)&&(l=l.trim()),l=[l],0<_){var c=a(-1,r,l,l,k,C,0,0,0,0);void 0!==c&&"string"==typeof c&&(r=c)}var f=function e(r,l,c,f,u){for(var g,h,p,v,x,M=0,B=0,H=0,w=0,z=0,P=0,E=p=g=0,D=0,F=0,R=0,O=0,W=c.length,X=W-1,G="",j="",N="",$="";D<W;){if(h=c.charCodeAt(D),D===X&&0!==B+w+H+M&&(0!==B&&(h=47===B?10:47),w=H=M=0,W++,X++),0===B+w+H+M){if(D===X&&(0<F&&(G=G.replace(d,"")),0<G.trim().length)){switch(h){case 32:case 9:case 59:case 13:case 10:break;default:G+=c.charAt(D)}h=59}switch(h){case 123:for(g=(G=G.trim()).charCodeAt(0),p=1,O=++D;D<W;){switch(h=c.charCodeAt(D)){case 123:p++;break;case 125:p--;break;case 47:switch(h=c.charCodeAt(D+1)){case 42:case 47:e:{for(E=D+1;E<X;++E)switch(c.charCodeAt(E)){case 47:if(42===h&&42===c.charCodeAt(E-1)&&D+2!==E){D=E+1;break e}break;case 10:if(47===h){D=E+1;break e}}D=E}}break;case 91:h++;case 40:h++;case 34:case 39:for(;D++<X&&c.charCodeAt(D)!==h;);}if(0===p)break;D++}if(p=c.substring(O,D),0===g&&(g=(G=G.replace(s,"").trim()).charCodeAt(0)),64===g){switch(0<F&&(G=G.replace(d,"")),h=G.charCodeAt(1)){case 100:case 109:case 115:case 45:F=l;break;default:F=A}if(O=(p=e(l,F,p,h,u+1)).length,0<_&&(x=a(3,p,F=t(A,G,R),l,k,C,O,h,u,f),G=F.join(""),void 0!==x&&0===(O=(p=x.trim()).length)&&(h=0,p="")),0<O)switch(h){case 115:G=G.replace(y,i);case 100:case 109:case 45:p=G+"{"+p+"}";break;case 107:p=(G=G.replace(m,"$1 $2"))+"{"+p+"}",p=1===T||2===T&&n("@"+p,3)?"@-webkit-"+p+"@"+p:"@"+p;break;default:p=G+p,112===f&&(j+=p,p="")}else p=""}else p=e(l,t(l,G,R),p,f,u+1);N+=p,p=R=F=E=g=0,G="",h=c.charCodeAt(++D);break;case 125:case 59:if(1<(O=(G=(0<F?G.replace(d,""):G).trim()).length))switch(0===E&&(45===(g=G.charCodeAt(0))||96<g&&123>g)&&(O=(G=G.replace(" ",":")).length),0<_&&void 0!==(x=a(1,G,l,r,k,C,j.length,f,u,f))&&0===(O=(G=x.trim()).length)&&(G="\0\0"),g=G.charCodeAt(0),h=G.charCodeAt(1),g){case 0:break;case 64:if(105===h||99===h){$+=G+c.charAt(D);break}default:58!==G.charCodeAt(O-1)&&(j+=o(G,g,h,G.charCodeAt(2)))}R=F=E=g=0,G="",h=c.charCodeAt(++D)}}switch(h){case 13:case 10:47===B?B=0:0===1+g&&107!==f&&0<G.length&&(F=1,G+="\0"),0<_*L&&a(0,G,l,r,k,C,j.length,f,u,f),C=1,k++;break;case 59:case 125:if(0===B+w+H+M){C++;break}default:switch(C++,v=c.charAt(D),h){case 9:case 32:if(0===w+M+B)switch(z){case 44:case 58:case 9:case 32:v="";break;default:32!==h&&(v=" ")}break;case 0:v="\\0";break;case 12:v="\\f";break;case 11:v="\\v";break;case 38:0===w+B+M&&(F=R=1,v="\f"+v);break;case 108:if(0===w+B+M+I&&0<E)switch(D-E){case 2:112===z&&58===c.charCodeAt(D-3)&&(I=z);case 8:111===P&&(I=P)}break;case 58:0===w+B+M&&(E=D);break;case 44:0===B+H+w+M&&(F=1,v+="\r");break;case 34:case 39:0===B&&(w=w===h?0:0===w?h:w);break;case 91:0===w+B+H&&M++;break;case 93:0===w+B+H&&M--;break;case 41:0===w+B+M&&H--;break;case 40:0===w+B+M&&(0===g&&(2*z+3*P==533||(g=1)),H++);break;case 64:0===B+H+w+M+E+p&&(p=1);break;case 42:case 47:if(!(0<w+M+H))switch(B){case 0:switch(2*h+3*c.charCodeAt(D+1)){case 235:B=47;break;case 220:O=D,B=42}break;case 42:47===h&&42===z&&O+2!==D&&(33===c.charCodeAt(O+2)&&(j+=c.substring(O,D+1)),v="",B=0)}}0===B&&(G+=v)}P=z,z=h,D++}if(0<(O=j.length)){if(F=l,0<_&&void 0!==(x=a(2,j,F,r,k,C,O,f,u,f))&&0===(j=x).length)return $+j+N;if(j=F.join(",")+"{"+j+"}",0!=T*I){switch(2!==T||n(j,2)||(I=0),I){case 111:j=j.replace(S,":-moz-$1")+j;break;case 112:j=j.replace(b,"::-webkit-input-$1")+j.replace(b,"::-moz-$1")+j.replace(b,":-ms-input-$1")+j}I=0}}return $+j+N}(A,l,r,0,0);return 0<_&&void 0!==(c=a(-2,f,l,l,k,C,f.length,0,0,0))&&(f=c),I=0,C=k=1,f}var s=/^\0+/g,d=/[\0\r\f]/g,f=/: */g,u=/zoo|gra/,g=/([,: ])(transform)/g,h=/,\r+?/g,p=/([\t\r\n ])*\f?&/g,m=/@(k\w+)\s*(\S*)\s*/,b=/::(place)/g,S=/:(read-only)/g,v=/[svh]\w+-[tblr]{2}/,y=/\(\s*(.*)\s*\)/g,x=/([\s\S]*?);/g,M=/-self|flex-/g,B=/[^]*?(:[rp][el]a[\w-]+)[^]*/,H=/stretch|:\s*\w+\-(?:conte|avail)/,w=/([^-])(image-set\()/,C=1,k=1,I=0,T=1,A=[],z=[],_=0,P=null,L=0,E="";return c.use=function e(t){switch(t){case void 0:case null:_=z.length=0;break;default:if("function"==typeof t)z[_++]=t;else if("object"==typeof t)for(var r=0,o=t.length;r<o;++r)e(t[r]);else L=0|!!t}return e},c.set=l,void 0!==e&&l(e),c},m={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},b=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,S=(o=function(e){return b.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&91>e.charCodeAt(2)},n=Object.create(null),function(e){return void 0===n[e]&&(n[e]=o(e)),n[e]}),v=r(6905),y=r.n(v);function x(){return(x=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e}).apply(this,arguments)}var M=function(e,t){for(var r=[e[0]],o=0,n=t.length;o<n;o+=1)r.push(t[o],e[o+1]);return r},B=function(e){return null!==e&&"object"==typeof e&&"[object Object]"===(e.toString?e.toString():Object.prototype.toString.call(e))&&!(0,d.typeOf)(e)},H=Object.freeze([]),w=Object.freeze({});function C(e){return"function"==typeof e}function k(e){return e.displayName||e.name||"Component"}function I(e){return e&&"string"==typeof e.styledComponentId}var T="undefined"!=typeof process&&void 0!==process.env&&(process.env.REACT_APP_SC_ATTR||process.env.SC_ATTR)||"data-styled",A="undefined"!=typeof window&&"HTMLElement"in window,z=!!("boolean"==typeof SC_DISABLE_SPEEDY?SC_DISABLE_SPEEDY:"undefined"!=typeof process&&void 0!==process.env&&(void 0!==process.env.REACT_APP_SC_DISABLE_SPEEDY&&""!==process.env.REACT_APP_SC_DISABLE_SPEEDY?"false"!==process.env.REACT_APP_SC_DISABLE_SPEEDY&&process.env.REACT_APP_SC_DISABLE_SPEEDY:void 0!==process.env.SC_DISABLE_SPEEDY&&""!==process.env.SC_DISABLE_SPEEDY&&"false"!==process.env.SC_DISABLE_SPEEDY&&process.env.SC_DISABLE_SPEEDY));function _(e){for(var t=arguments.length,r=Array(t>1?t-1:0),o=1;o<t;o++)r[o-1]=arguments[o];throw Error("An error occurred. See https://git.io/JUIaE#"+e+" for more information."+(r.length>0?" Args: "+r.join(", "):""))}var P=function(){function e(e){this.groupSizes=new Uint32Array(512),this.length=512,this.tag=e}var t=e.prototype;return t.indexOfGroup=function(e){for(var t=0,r=0;r<e;r++)t+=this.groupSizes[r];return t},t.insertRules=function(e,t){if(e>=this.groupSizes.length){for(var r=this.groupSizes,o=r.length,n=o;e>=n;)(n<<=1)<0&&_(16,""+e);this.groupSizes=new Uint32Array(n),this.groupSizes.set(r),this.length=n;for(var i=o;i<n;i++)this.groupSizes[i]=0}for(var a=this.indexOfGroup(e+1),l=0,c=t.length;l<c;l++)this.tag.insertRule(a,t[l])&&(this.groupSizes[e]++,a++)},t.clearGroup=function(e){if(e<this.length){var t=this.groupSizes[e],r=this.indexOfGroup(e),o=r+t;this.groupSizes[e]=0;for(var n=r;n<o;n++)this.tag.deleteRule(r)}},t.getGroup=function(e){var t="";if(e>=this.length||0===this.groupSizes[e])return t;for(var r=this.groupSizes[e],o=this.indexOfGroup(e),n=o+r,i=o;i<n;i++)t+=this.tag.getRule(i)+"/*!sc*/\n";return t},e}(),L=new Map,E=new Map,D=1,F=function(e){if(L.has(e))return L.get(e);for(;E.has(D);)D++;var t=D++;return L.set(e,t),E.set(t,e),t},R=function(e,t){t>=D&&(D=t+1),L.set(e,t),E.set(t,e)},O="style["+T+'][data-styled-version="5.3.11"]',W=RegExp("^"+T+'\\.g(\\d+)\\[id="([\\w\\d-]+)"\\].*?"([^"]*)'),X=function(e,t,r){for(var o,n=r.split(","),i=0,a=n.length;i<a;i++)(o=n[i])&&e.registerName(t,o)},G=function(e,t){for(var r=(t.textContent||"").split("/*!sc*/\n"),o=[],n=0,i=r.length;n<i;n++){var a=r[n].trim();if(a){var l=a.match(W);if(l){var c=0|parseInt(l[1],10),s=l[2];0!==c&&(R(s,c),X(e,s,l[3]),e.getTag().insertRules(c,o)),o.length=0}else o.push(a)}}},j=function(){return r.nc},N=function(e){var t=document.head,r=e||t,o=document.createElement("style"),n=function(e){for(var t=e.childNodes,r=t.length;r>=0;r--){var o=t[r];if(o&&1===o.nodeType&&o.hasAttribute(T))return o}}(r),i=void 0!==n?n.nextSibling:null;o.setAttribute(T,"active"),o.setAttribute("data-styled-version","5.3.11");var a=j();return a&&o.setAttribute("nonce",a),r.insertBefore(o,i),o},$=function(){function e(e){var t=this.element=N(e);t.appendChild(document.createTextNode("")),this.sheet=function(e){if(e.sheet)return e.sheet;for(var t=document.styleSheets,r=0,o=t.length;r<o;r++){var n=t[r];if(n.ownerNode===e)return n}_(17)}(t),this.length=0}var t=e.prototype;return t.insertRule=function(e,t){try{return this.sheet.insertRule(t,e),this.length++,!0}catch(e){return!1}},t.deleteRule=function(e){this.sheet.deleteRule(e),this.length--},t.getRule=function(e){var t=this.sheet.cssRules[e];return void 0!==t&&"string"==typeof t.cssText?t.cssText:""},e}(),q=function(){function e(e){var t=this.element=N(e);this.nodes=t.childNodes,this.length=0}var t=e.prototype;return t.insertRule=function(e,t){if(e<=this.length&&e>=0){var r=document.createTextNode(t),o=this.nodes[e];return this.element.insertBefore(r,o||null),this.length++,!0}return!1},t.deleteRule=function(e){this.element.removeChild(this.nodes[e]),this.length--},t.getRule=function(e){return e<this.length?this.nodes[e].textContent:""},e}(),U=function(){function e(e){this.rules=[],this.length=0}var t=e.prototype;return t.insertRule=function(e,t){return e<=this.length&&(this.rules.splice(e,0,t),this.length++,!0)},t.deleteRule=function(e){this.rules.splice(e,1),this.length--},t.getRule=function(e){return e<this.length?this.rules[e]:""},e}(),Q=A,V={isServer:!A,useCSSOMInjection:!z},Y=function(){function e(e,t,r){void 0===e&&(e=w),void 0===t&&(t={}),this.options=x({},V,{},e),this.gs=t,this.names=new Map(r),this.server=!!e.isServer,!this.server&&A&&Q&&(Q=!1,function(e){for(var t=document.querySelectorAll(O),r=0,o=t.length;r<o;r++){var n=t[r];n&&"active"!==n.getAttribute(T)&&(G(e,n),n.parentNode&&n.parentNode.removeChild(n))}}(this))}e.registerId=function(e){return F(e)};var t=e.prototype;return t.reconstructWithOptions=function(t,r){return void 0===r&&(r=!0),new e(x({},this.options,{},t),this.gs,r&&this.names||void 0)},t.allocateGSInstance=function(e){return this.gs[e]=(this.gs[e]||0)+1},t.getTag=function(){var e,t,r,o;return this.tag||(this.tag=(t=(e=this.options).isServer,r=e.useCSSOMInjection,o=e.target,new P(t?new U(o):r?new $(o):new q(o))))},t.hasNameForId=function(e,t){return this.names.has(e)&&this.names.get(e).has(t)},t.registerName=function(e,t){if(F(e),this.names.has(e))this.names.get(e).add(t);else{var r=new Set;r.add(t),this.names.set(e,r)}},t.insertRules=function(e,t,r){this.registerName(e,t),this.getTag().insertRules(F(e),r)},t.clearNames=function(e){this.names.has(e)&&this.names.get(e).clear()},t.clearRules=function(e){this.getTag().clearGroup(F(e)),this.clearNames(e)},t.clearTag=function(){this.tag=void 0},t.toString=function(){return function(e){for(var t=e.getTag(),r=t.length,o="",n=0;n<r;n++){var i,a=(i=n,E.get(i));if(void 0!==a){var l=e.names.get(a),c=t.getGroup(n);if(l&&c&&l.size){var s=T+".g"+n+'[id="'+a+'"]',d="";void 0!==l&&l.forEach(function(e){e.length>0&&(d+=e+",")}),o+=""+c+s+'{content:"'+d+'"}/*!sc*/\n'}}}return o}(this)},e}(),Z=/(a)(d)/gi,K=function(e){return String.fromCharCode(e+(e>25?39:97))};function J(e){var t,r="";for(t=Math.abs(e);t>52;t=t/52|0)r=K(t%52)+r;return(K(t%52)+r).replace(Z,"$1-$2")}var ee=function(e,t){for(var r=t.length;r;)e=33*e^t.charCodeAt(--r);return e},et=function(e){return ee(5381,e)};function er(e){for(var t=0;t<e.length;t+=1){var r=e[t];if(C(r)&&!I(r))return!1}return!0}var eo=et("5.3.11"),en=function(){function e(e,t,r){this.rules=e,this.staticRulesId="",this.isStatic=(void 0===r||r.isStatic)&&er(e),this.componentId=t,this.baseHash=ee(eo,t),this.baseStyle=r,Y.registerId(t)}return e.prototype.generateAndInjectStyles=function(e,t,r){var o=this.componentId,n=[];if(this.baseStyle&&n.push(this.baseStyle.generateAndInjectStyles(e,t,r)),this.isStatic&&!r.hash)if(this.staticRulesId&&t.hasNameForId(o,this.staticRulesId))n.push(this.staticRulesId);else{var i=ex(this.rules,e,t,r).join(""),a=J(ee(this.baseHash,i)>>>0);if(!t.hasNameForId(o,a)){var l=r(i,"."+a,void 0,o);t.insertRules(o,a,l)}n.push(a),this.staticRulesId=a}else{for(var c=this.rules.length,s=ee(this.baseHash,r.hash),d="",f=0;f<c;f++){var u=this.rules[f];if("string"==typeof u)d+=u;else if(u){var g=ex(u,e,t,r),h=Array.isArray(g)?g.join(""):g;s=ee(s,h+f),d+=h}}if(d){var p=J(s>>>0);if(!t.hasNameForId(o,p)){var m=r(d,"."+p,void 0,o);t.insertRules(o,p,m)}n.push(p)}}return n.join(" ")},e}(),ei=/^\s*\/\/.*$/gm,ea=[":","[",".","#"];function el(e){var t,r,o,n,i=void 0===e?w:e,a=i.options,l=void 0===a?w:a,c=i.plugins,s=void 0===c?H:c,d=new p(l),f=[],u=function(e){function t(t){if(t)try{e(t+"}")}catch(e){}}return function(r,o,n,i,a,l,c,s,d,f){switch(r){case 1:if(0===d&&64===o.charCodeAt(0))return e(o+";"),"";break;case 2:if(0===s)return o+"/*|*/";break;case 3:switch(s){case 102:case 112:return e(n[0]+o),"";default:return o+(0===f?"/*|*/":"")}case -2:o.split("/*|*/}").forEach(t)}}}(function(e){f.push(e)}),g=function(e,o,i){return 0===o&&-1!==ea.indexOf(i[r.length])||i.match(n)?e:"."+t};function h(e,i,a,l){void 0===l&&(l="&");var c=e.replace(ei,""),s=i&&a?a+" "+i+" { "+c+" }":c;return t=l,o=RegExp("\\"+(r=i)+"\\b","g"),n=RegExp("(\\"+r+"\\b){2,}"),d(a||!i?"":i,s)}return d.use([].concat(s,[function(e,t,n){2===e&&n.length&&n[0].lastIndexOf(r)>0&&(n[0]=n[0].replace(o,g))},u,function(e){if(-2===e){var t=f;return f=[],t}}])),h.hash=s.length?s.reduce(function(e,t){return t.name||_(15),ee(e,t.name)},5381).toString():"",h}var ec=u().createContext(),es=(ec.Consumer,u().createContext()),ed=(es.Consumer,new Y),ef=el();function eu(){return(0,f.useContext)(ec)||ed}function eg(e){var t=(0,f.useState)(e.stylisPlugins),r=t[0],o=t[1],n=eu(),i=(0,f.useMemo)(function(){var t=n;return e.sheet?t=e.sheet:e.target&&(t=t.reconstructWithOptions({target:e.target},!1)),e.disableCSSOMInjection&&(t=t.reconstructWithOptions({useCSSOMInjection:!1})),t},[e.disableCSSOMInjection,e.sheet,e.target]),a=(0,f.useMemo)(function(){return el({options:{prefix:!e.disableVendorPrefixes},plugins:r})},[e.disableVendorPrefixes,r]);return(0,f.useEffect)(function(){h()(r,e.stylisPlugins)||o(e.stylisPlugins)},[e.stylisPlugins]),u().createElement(ec.Provider,{value:i},u().createElement(es.Provider,{value:a},e.children))}var eh=function(){function e(e,t){var r=this;this.inject=function(e,t){void 0===t&&(t=ef);var o=r.name+t.hash;e.hasNameForId(r.id,o)||e.insertRules(r.id,o,t(r.rules,o,"@keyframes"))},this.toString=function(){return _(12,String(r.name))},this.name=e,this.id="sc-keyframes-"+e,this.rules=t}return e.prototype.getName=function(e){return void 0===e&&(e=ef),this.name+e.hash},e}(),ep=/([A-Z])/,em=/([A-Z])/g,eb=/^ms-/,eS=function(e){return"-"+e.toLowerCase()};function ev(e){return ep.test(e)?e.replace(em,eS).replace(eb,"-ms-"):e}var ey=function(e){return null==e||!1===e||""===e};function ex(e,t,r,o){if(Array.isArray(e)){for(var n,i=[],a=0,l=e.length;a<l;a+=1)""!==(n=ex(e[a],t,r,o))&&(Array.isArray(n)?i.push.apply(i,n):i.push(n));return i}return ey(e)?"":I(e)?"."+e.styledComponentId:C(e)?"function"!=typeof e||e.prototype&&e.prototype.isReactComponent||!t?e:ex(e(t),t,r,o):e instanceof eh?r?(e.inject(r,o),e.getName(o)):e:B(e)?function e(t,r){var o,n=[];for(var i in t)t.hasOwnProperty(i)&&!ey(t[i])&&(Array.isArray(t[i])&&t[i].isCss||C(t[i])?n.push(ev(i)+":",t[i],";"):B(t[i])?n.push.apply(n,e(t[i],i)):n.push(ev(i)+": "+(null==(o=t[i])||"boolean"==typeof o||""===o?"":"number"!=typeof o||0===o||i in m||i.startsWith("--")?String(o).trim():o+"px")+";"));return r?[r+" {"].concat(n,["}"]):n}(e):e.toString()}var eM=function(e){return Array.isArray(e)&&(e.isCss=!0),e};function eB(e){for(var t=arguments.length,r=Array(t>1?t-1:0),o=1;o<t;o++)r[o-1]=arguments[o];return C(e)||B(e)?eM(ex(M(H,[e].concat(r)))):0===r.length&&1===e.length&&"string"==typeof e[0]?e:eM(ex(M(e,r)))}var eH=/[!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~-]+/g,ew=/(^-|-$)/g;function eC(e){return e.replace(eH,"-").replace(ew,"")}function ek(e){return"string"==typeof e}var eI=function(e){return"function"==typeof e||"object"==typeof e&&null!==e&&!Array.isArray(e)},eT=u().createContext();eT.Consumer;var eA={},ez=function(e){return function e(t,r,o){if(void 0===o&&(o=w),!(0,d.isValidElementType)(r))return _(1,String(r));var n=function(){return t(r,o,eB.apply(void 0,arguments))};return n.withConfig=function(n){return e(t,r,x({},o,{},n))},n.attrs=function(n){return e(t,r,x({},o,{attrs:Array.prototype.concat(o.attrs,n).filter(Boolean)}))},n}(function e(t,r,o){var n=I(t),i=!ek(t),a=r.attrs,l=void 0===a?H:a,c=r.componentId,s=void 0===c?(b=r.displayName,v=r.parentComponentId,eA[M="string"!=typeof b?"sc":eC(b)]=(eA[M]||0)+1,B=M+"-"+J(et("5.3.11"+M+eA[M])>>>0),v?v+"-"+B:B):c,d=r.displayName,g=void 0===d?ek(t)?"styled."+t:"Styled("+k(t)+")":d,h=r.displayName&&r.componentId?eC(r.displayName)+"-"+r.componentId:r.componentId||s,p=n&&t.attrs?Array.prototype.concat(t.attrs,l).filter(Boolean):l,m=r.shouldForwardProp;n&&t.shouldForwardProp&&(m=r.shouldForwardProp?function(e,o,n){return t.shouldForwardProp(e,o,n)&&r.shouldForwardProp(e,o,n)}:t.shouldForwardProp);var b,v,M,B,T,A=new en(o,h,n?t.componentStyle:void 0),z=A.isStatic&&0===l.length,_=function(e,t){return function(e,t,r,o){var n,i,a,l,c,s,d,u=e.attrs,g=e.componentStyle,h=e.defaultProps,p=e.foldedComponentIds,m=e.shouldForwardProp,b=e.styledComponentId,v=e.target,y=(n=(0,f.useContext)(eT),void 0===(i=h)&&(i=w),a=t.theme!==i.theme&&t.theme||n||i.theme||w,void 0===a&&(a=w),l=x({},t,{theme:a}),c={},u.forEach(function(e){var t,r,o,n=e;for(t in C(n)&&(n=n(l)),n)l[t]=c[t]="className"===t?(r=c[t],o=n[t],r&&o?r+" "+o:r||o):n[t]}),[l,c]),M=y[0],B=y[1],H=(s=eu(),d=(0,f.useContext)(es)||ef,o?g.generateAndInjectStyles(w,s,d):g.generateAndInjectStyles(M,s,d)),k=B.$as||t.$as||B.as||t.as||v,I=ek(k),T=B!==t?x({},t,{},B):t,A={};for(var z in T)"$"!==z[0]&&"as"!==z&&("forwardedAs"===z?A.as=T[z]:(m?m(z,S,k):!I||S(z))&&(A[z]=T[z]));return t.style&&B.style!==t.style&&(A.style=x({},t.style,{},B.style)),A.className=Array.prototype.concat(p,b,H!==b?H:null,t.className,B.className).filter(Boolean).join(" "),A.ref=r,(0,f.createElement)(k,A)}(T,e,t,z)};return _.displayName=g,(T=u().forwardRef(_)).attrs=p,T.componentStyle=A,T.displayName=g,T.shouldForwardProp=m,T.foldedComponentIds=n?Array.prototype.concat(t.foldedComponentIds,t.styledComponentId):H,T.styledComponentId=h,T.target=n?t.target:t,T.withComponent=function(t){var n=r.componentId,i=function(e,t){if(null==e)return{};var r,o,n={},i=Object.keys(e);for(o=0;o<i.length;o++)t.indexOf(r=i[o])>=0||(n[r]=e[r]);return n}(r,["componentId"]),a=n&&n+"-"+(ek(t)?t:eC(k(t)));return e(t,x({},i,{attrs:p,componentId:a}),o)},Object.defineProperty(T,"defaultProps",{get:function(){return this._foldedDefaultProps},set:function(e){this._foldedDefaultProps=n?function e(t){for(var r=arguments.length,o=Array(r>1?r-1:0),n=1;n<r;n++)o[n-1]=arguments[n];for(var i=0;i<o.length;i++){var a=o[i];if(eI(a))for(var l in a)"__proto__"!==l&&"constructor"!==l&&"prototype"!==l&&function(t,r,o){var n=t[o];eI(r)&&eI(n)?e(n,r):t[o]=r}(t,a[l],l)}return t}({},t.defaultProps,e):e}}),Object.defineProperty(T,"toString",{value:function(){return"."+T.styledComponentId}}),i&&y()(T,t,{attrs:!0,componentStyle:!0,displayName:!0,foldedComponentIds:!0,shouldForwardProp:!0,styledComponentId:!0,target:!0,withComponent:!0}),T},e)};["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","marquee","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","marker","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","textPath","tspan"].forEach(function(e){ez[e]=ez(e)}),(i=(function(e,t){this.rules=e,this.componentId=t,this.isStatic=er(e),Y.registerId(this.componentId+1)}).prototype).createStyles=function(e,t,r,o){var n=o(ex(this.rules,t,r,o).join(""),""),i=this.componentId+e;r.insertRules(i,i,n)},i.removeStyles=function(e,t){t.clearRules(this.componentId+e)},i.renderStyles=function(e,t,r,o){e>2&&Y.registerId(this.componentId+e),this.removeStyles(e,r),this.createStyles(e,t,r,o)},(a=(function(){var e=this;this._emitSheetCSS=function(){var t=e.instance.toString();if(!t)return"";var r=j();return"<style "+[r&&'nonce="'+r+'"',T+'="true"','data-styled-version="5.3.11"'].filter(Boolean).join(" ")+">"+t+"</style>"},this.getStyleTags=function(){return e.sealed?_(2):e._emitSheetCSS()},this.getStyleElement=function(){if(e.sealed)return _(2);var t,r=((t={})[T]="",t["data-styled-version"]="5.3.11",t.dangerouslySetInnerHTML={__html:e.instance.toString()},t),o=j();return o&&(r.nonce=o),[u().createElement("style",x({},r,{key:"sc-0-0"}))]},this.seal=function(){e.sealed=!0},this.instance=new Y({isServer:!0}),this.sealed=!1}).prototype).collectStyles=function(e){return this.sealed?_(2):u().createElement(eg,{sheet:this.instance},e)},a.interleaveWithNodeStream=function(e){return _(3)};var e_=function(e,t){if(t)return"row";switch(e){case"horizontal":return"row";case"horizontal-reverse":return"row-reverse";case"vertical":default:return"column";case"vertical-reverse":return"column-reverse"}},eP=function(e,t){return"row"===e_(e,t)},eL=function(e){return"number"==typeof e?"".concat(e,"px"):e},eE=ez.div.attrs(function(){return{className:"layoutkit-flexbox"}})(s||(l=["\n // 是否显示\n display: ",";\n\n flex: ",";\n\n flex-direction: ",";\n justify-content: ",";\n align-items: ",";\n\n width: ",";\n height: ",";\n\n padding: ",";\n\n > *:not(:last-child) {\n margin-right: ",";\n margin-bottom: ",";\n }\n"],c||(c=l.slice(0)),s=Object.freeze(Object.defineProperties(l,{raw:{value:Object.freeze(c)}}))),function(e){return e.hidden?"none":"flex"},function(e){return e.flex},function(e){return e_(e.direction,e.horizontal)},function(e){return e.distribution},function(e){return e.align},function(e){return eP(e.direction,e.horizontal)&&!e.width&&["space-between","space-around","space-evenly"].includes(e.distribution)?"100%":eL(e.width)},function(e){return eL(e.height)},function(e){return eL(e.padding)},function(e){return eP(e.direction,e.horizontal)&&eL(e.gap)},function(e){return"column"===e_(e.direction,e.horizontal)&&eL(e.gap)});r(3704)},2182:function(e,t,r){"use strict";function o(e,t){"string"==typeof(r=e)&&-1!==r.indexOf(".")&&1===parseFloat(r)&&(e="100%");var r,o,n="string"==typeof(o=e)&&-1!==o.indexOf("%");return(e=360===t?e:Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(String(e*t),10)/100),1e-6>Math.abs(e-t))?1:e=360===t?(e<0?e%t+t:e%t)/parseFloat(String(t)):e%t/parseFloat(String(t))}function n(e){return Math.min(1,Math.max(0,e))}function i(e){return(isNaN(e=parseFloat(e))||e<0||e>1)&&(e=1),e}function a(e){return e<=1?"".concat(100*Number(e),"%"):e}function l(e){return 1===e.length?"0"+e:String(e)}function c(e,t,r){e=o(e,255);var n=Math.max(e,t=o(t,255),r=o(r,255)),i=Math.min(e,t,r),a=0,l=0,c=(n+i)/2;if(n===i)l=0,a=0;else{var s=n-i;switch(l=c>.5?s/(2-n-i):s/(n+i),n){case e:a=(t-r)/s+6*(t<r);break;case t:a=(r-e)/s+2;break;case r:a=(e-t)/s+4}a/=6}return{h:a,s:l,l:c}}function s(e,t,r){return(r<0&&(r+=1),r>1&&(r-=1),r<1/6)?e+6*r*(t-e):r<.5?t:r<2/3?e+(t-e)*(2/3-r)*6:e}function d(e,t,r){e=o(e,255);var n=Math.max(e,t=o(t,255),r=o(r,255)),i=Math.min(e,t,r),a=0,l=n-i;if(n===i)a=0;else{switch(n){case e:a=(t-r)/l+6*(t<r);break;case t:a=(r-e)/l+2;break;case r:a=(e-t)/l+4}a/=6}return{h:a,s:0===n?0:l/n,v:n}}function f(e,t,r,o){var n=[l(Math.round(e).toString(16)),l(Math.round(t).toString(16)),l(Math.round(r).toString(16))];return o&&n[0].startsWith(n[0].charAt(1))&&n[1].startsWith(n[1].charAt(1))&&n[2].startsWith(n[2].charAt(1))?n[0].charAt(0)+n[1].charAt(0)+n[2].charAt(0):n.join("")}r.d(t,{C:function(){return v}});function u(e){return parseInt(e,16)}var g={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"},h="(?:".concat("[-\\+]?\\d*\\.\\d+%?",")|(?:").concat("[-\\+]?\\d+%?",")"),p="[\\s|\\(]+(".concat(h,")[,|\\s]+(").concat(h,")[,|\\s]+(").concat(h,")\\s*\\)?"),m="[\\s|\\(]+(".concat(h,")[,|\\s]+(").concat(h,")[,|\\s]+(").concat(h,")[,|\\s]+(").concat(h,")\\s*\\)?"),b={CSS_UNIT:new RegExp(h),rgb:RegExp("rgb"+p),rgba:RegExp("rgba"+m),hsl:RegExp("hsl"+p),hsla:RegExp("hsla"+m),hsv:RegExp("hsv"+p),hsva:RegExp("hsva"+m),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function S(e){return!!b.CSS_UNIT.exec(String(e))}var v=function(){function e(t,r){if(void 0===t&&(t=""),void 0===r&&(r={}),t instanceof e)return t;"number"==typeof t&&(t={r:(z=t)>>16,g:(65280&z)>>8,b:255&z}),this.originalInput=t;var n,l,c,d,f,h,p,m,v,y,x,M,B,H,w,C,k,I,T,A,z,_,P=(H={r:0,g:0,b:0},w=1,C=null,k=null,I=null,T=!1,A=!1,"string"==typeof(n=t)&&(n=function(e){if(0===(e=e.trim().toLowerCase()).length)return!1;var t=!1;if(g[e])e=g[e],t=!0;else if("transparent"===e)return{r:0,g:0,b:0,a:0,format:"name"};var r=b.rgb.exec(e);return r?{r:r[1],g:r[2],b:r[3]}:(r=b.rgba.exec(e))?{r:r[1],g:r[2],b:r[3],a:r[4]}:(r=b.hsl.exec(e))?{h:r[1],s:r[2],l:r[3]}:(r=b.hsla.exec(e))?{h:r[1],s:r[2],l:r[3],a:r[4]}:(r=b.hsv.exec(e))?{h:r[1],s:r[2],v:r[3]}:(r=b.hsva.exec(e))?{h:r[1],s:r[2],v:r[3],a:r[4]}:(r=b.hex8.exec(e))?{r:u(r[1]),g:u(r[2]),b:u(r[3]),a:u(r[4])/255,format:t?"name":"hex8"}:(r=b.hex6.exec(e))?{r:u(r[1]),g:u(r[2]),b:u(r[3]),format:t?"name":"hex"}:(r=b.hex4.exec(e))?{r:u(r[1]+r[1]),g:u(r[2]+r[2]),b:u(r[3]+r[3]),a:u(r[4]+r[4])/255,format:t?"name":"hex8"}:!!(r=b.hex3.exec(e))&&{r:u(r[1]+r[1]),g:u(r[2]+r[2]),b:u(r[3]+r[3]),format:t?"name":"hex"}}(n)),"object"==typeof n&&(S(n.r)&&S(n.g)&&S(n.b)?(l=n.r,c=n.g,d=n.b,H={r:255*o(l,255),g:255*o(c,255),b:255*o(d,255)},T=!0,A="%"===String(n.r).substr(-1)?"prgb":"rgb"):S(n.h)&&S(n.s)&&S(n.v)?(C=a(n.s),k=a(n.v),f=n.h,h=C,p=k,f=6*o(f,360),h=o(h,100),p=o(p,100),m=Math.floor(f),v=f-m,y=p*(1-h),x=p*(1-v*h),M=p*(1-(1-v)*h),H={r:255*[p,x,y,y,M,p][B=m%6],g:255*[M,p,p,x,y,y][B],b:255*[y,y,M,p,p,x][B]},T=!0,A="hsv"):S(n.h)&&S(n.s)&&S(n.l)&&(C=a(n.s),I=a(n.l),H=function(e,t,r){if(e=o(e,360),t=o(t,100),r=o(r,100),0===t)i=r,a=r,n=r;else{var n,i,a,l=r<.5?r*(1+t):r+t-r*t,c=2*r-l;n=s(c,l,e+1/3),i=s(c,l,e),a=s(c,l,e-1/3)}return{r:255*n,g:255*i,b:255*a}}(n.h,C,I),T=!0,A="hsl"),Object.prototype.hasOwnProperty.call(n,"a")&&(w=n.a)),w=i(w),{ok:T,format:n.format||A,r:Math.min(255,Math.max(H.r,0)),g:Math.min(255,Math.max(H.g,0)),b:Math.min(255,Math.max(H.b,0)),a:w});this.originalInput=t,this.r=P.r,this.g=P.g,this.b=P.b,this.a=P.a,this.roundA=Math.round(100*this.a)/100,this.format=null!=(_=r.format)?_:P.format,this.gradientType=r.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=P.ok}return e.prototype.isDark=function(){return 128>this.getBrightness()},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},e.prototype.getLuminance=function(){var e,t,r,o=this.toRgb(),n=o.r/255,i=o.g/255,a=o.b/255;return .2126*(n<=.03928?n/12.92:Math.pow((n+.055)/1.055,2.4))+.7152*(i<=.03928?i/12.92:Math.pow((i+.055)/1.055,2.4))+.0722*(a<=.03928?a/12.92:Math.pow((a+.055)/1.055,2.4))},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(e){return this.a=i(e),this.roundA=Math.round(100*this.a)/100,this},e.prototype.isMonochrome=function(){return 0===this.toHsl().s},e.prototype.toHsv=function(){var e=d(this.r,this.g,this.b);return{h:360*e.h,s:e.s,v:e.v,a:this.a}},e.prototype.toHsvString=function(){var e=d(this.r,this.g,this.b),t=Math.round(360*e.h),r=Math.round(100*e.s),o=Math.round(100*e.v);return 1===this.a?"hsv(".concat(t,", ").concat(r,"%, ").concat(o,"%)"):"hsva(".concat(t,", ").concat(r,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var e=c(this.r,this.g,this.b);return{h:360*e.h,s:e.s,l:e.l,a:this.a}},e.prototype.toHslString=function(){var e=c(this.r,this.g,this.b),t=Math.round(360*e.h),r=Math.round(100*e.s),o=Math.round(100*e.l);return 1===this.a?"hsl(".concat(t,", ").concat(r,"%, ").concat(o,"%)"):"hsla(".concat(t,", ").concat(r,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(e){return void 0===e&&(e=!1),f(this.r,this.g,this.b,e)},e.prototype.toHexString=function(e){return void 0===e&&(e=!1),"#"+this.toHex(e)},e.prototype.toHex8=function(e){var t,r,o,n,i,a;return void 0===e&&(e=!1),t=this.r,r=this.g,o=this.b,n=this.a,i=e,a=[l(Math.round(t).toString(16)),l(Math.round(r).toString(16)),l(Math.round(o).toString(16)),l(Math.round(255*parseFloat(n)).toString(16))],i&&a[0].startsWith(a[0].charAt(1))&&a[1].startsWith(a[1].charAt(1))&&a[2].startsWith(a[2].charAt(1))&&a[3].startsWith(a[3].charAt(1))?a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0)+a[3].charAt(0):a.join("")},e.prototype.toHex8String=function(e){return void 0===e&&(e=!1),"#"+this.toHex8(e)},e.prototype.toHexShortString=function(e){return void 0===e&&(e=!1),1===this.a?this.toHexString(e):this.toHex8String(e)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var e=Math.round(this.r),t=Math.round(this.g),r=Math.round(this.b);return 1===this.a?"rgb(".concat(e,", ").concat(t,", ").concat(r,")"):"rgba(".concat(e,", ").concat(t,", ").concat(r,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var e=function(e){return"".concat(Math.round(100*o(e,255)),"%")};return{r:e(this.r),g:e(this.g),b:e(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var e=function(e){return Math.round(100*o(e,255))};return 1===this.a?"rgb(".concat(e(this.r),"%, ").concat(e(this.g),"%, ").concat(e(this.b),"%)"):"rgba(".concat(e(this.r),"%, ").concat(e(this.g),"%, ").concat(e(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(0===this.a)return"transparent";if(this.a<1)return!1;for(var e="#"+f(this.r,this.g,this.b,!1),t=0,r=Object.entries(g);t<r.length;t++){var o=r[t],n=o[0];if(e===o[1])return n}return!1},e.prototype.toString=function(e){var t=!!e;e=null!=e?e:this.format;var r=!1,o=this.a<1&&this.a>=0;return!t&&o&&(e.startsWith("hex")||"name"===e)?"name"===e&&0===this.a?this.toName():this.toRgbString():("rgb"===e&&(r=this.toRgbString()),"prgb"===e&&(r=this.toPercentageRgbString()),("hex"===e||"hex6"===e)&&(r=this.toHexString()),"hex3"===e&&(r=this.toHexString(!0)),"hex4"===e&&(r=this.toHex8String(!0)),"hex8"===e&&(r=this.toHex8String()),"name"===e&&(r=this.toName()),"hsl"===e&&(r=this.toHslString()),"hsv"===e&&(r=this.toHsvString()),r||this.toHexString())},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){void 0===t&&(t=10);var r=this.toHsl();return r.l+=t/100,r.l=n(r.l),new e(r)},e.prototype.brighten=function(t){void 0===t&&(t=10);var r=this.toRgb();return r.r=Math.max(0,Math.min(255,r.r-Math.round(-(t/100*255)))),r.g=Math.max(0,Math.min(255,r.g-Math.round(-(t/100*255)))),r.b=Math.max(0,Math.min(255,r.b-Math.round(-(t/100*255)))),new e(r)},e.prototype.darken=function(t){void 0===t&&(t=10);var r=this.toHsl();return r.l-=t/100,r.l=n(r.l),new e(r)},e.prototype.tint=function(e){return void 0===e&&(e=10),this.mix("white",e)},e.prototype.shade=function(e){return void 0===e&&(e=10),this.mix("black",e)},e.prototype.desaturate=function(t){void 0===t&&(t=10);var r=this.toHsl();return r.s-=t/100,r.s=n(r.s),new e(r)},e.prototype.saturate=function(t){void 0===t&&(t=10);var r=this.toHsl();return r.s+=t/100,r.s=n(r.s),new e(r)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var r=this.toHsl(),o=(r.h+t)%360;return r.h=o<0?360+o:o,new e(r)},e.prototype.mix=function(t,r){void 0===r&&(r=50);var o=this.toRgb(),n=new e(t).toRgb(),i=r/100;return new e({r:(n.r-o.r)*i+o.r,g:(n.g-o.g)*i+o.g,b:(n.b-o.b)*i+o.b,a:(n.a-o.a)*i+o.a})},e.prototype.analogous=function(t,r){void 0===t&&(t=6),void 0===r&&(r=30);var o=this.toHsl(),n=360/r,i=[this];for(o.h=(o.h-(n*t>>1)+720)%360;--t;)o.h=(o.h+n)%360,i.push(new e(o));return i},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){void 0===t&&(t=6);for(var r=this.toHsv(),o=r.h,n=r.s,i=r.v,a=[],l=1/t;t--;)a.push(new e({h:o,s:n,v:i})),i=(i+l)%1;return a},e.prototype.splitcomplement=function(){var t=this.toHsl(),r=t.h;return[this,new e({h:(r+72)%360,s:t.s,l:t.l}),new e({h:(r+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var r=this.toRgb(),o=new e(t).toRgb(),n=r.a+o.a*(1-r.a);return new e({r:(r.r*r.a+o.r*o.a*(1-r.a))/n,g:(r.g*r.a+o.g*o.a*(1-r.a))/n,b:(r.b*r.a+o.b*o.a*(1-r.a))/n,a:n})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var r=this.toHsl(),o=r.h,n=[this],i=360/t,a=1;a<t;a++)n.push(new e({h:(o+a*i)%360,s:r.s,l:r.l}));return n},e.prototype.equals=function(t){return this.toRgbString()===new e(t).toRgbString()},e}()},9366:function(e,t,r){"use strict";r.d(t,{Z:function(){return $}});var o=r(3722),n=[{index:7,amount:15},{index:6,amount:25},{index:5,amount:30},{index:5,amount:45},{index:5,amount:65},{index:5,amount:85},{index:4,amount:90},{index:3,amount:95},{index:2,amount:97},{index:1,amount:98}];function i(e,t,r){var o;return(o=Math.round(e.h)>=60&&240>=Math.round(e.h)?r?Math.round(e.h)-2*t:Math.round(e.h)+2*t:r?Math.round(e.h)+2*t:Math.round(e.h)-2*t)<0?o+=360:o>=360&&(o-=360),o}function a(e,t,r){var o;return 0===e.h&&0===e.s?e.s:((o=r?e.s-.16*t:4===t?e.s+.16:e.s+.05*t)>1&&(o=1),r&&5===t&&o>.1&&(o=.1),o<.06&&(o=.06),Math.round(100*o)/100)}function l(e,t,r){var o;return Math.round(100*Math.max(0,Math.min(1,r?e.v+.05*t:e.v-.15*t)))/100}function c(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=[],c=new o.t(e),s=c.toHsv(),d=5;d>0;d-=1){var f=new o.t({h:i(s,d,!0),s:a(s,d,!0),v:l(s,d,!0)});r.push(f)}r.push(c);for(var u=1;u<=4;u+=1){var g=new o.t({h:i(s,u),s:a(s,u),v:l(s,u)});r.push(g)}return"dark"===t.theme?n.map(function(e){var n=e.index,i=e.amount;return new o.t(t.backgroundColor||"#141414").mix(r[n],i).toHexString()}):r.map(function(e){return e.toHexString()})}var s={red:"#F5222D",volcano:"#FA541C",orange:"#FA8C16",gold:"#FAAD14",yellow:"#FADB14",lime:"#A0D911",green:"#52C41A",cyan:"#13C2C2",blue:"#1677FF",geekblue:"#2F54EB",purple:"#722ED1",magenta:"#EB2F96",grey:"#666666"},d=["#fff1f0","#ffccc7","#ffa39e","#ff7875","#ff4d4f","#f5222d","#cf1322","#a8071a","#820014","#5c0011"];d.primary=d[5];var f=["#fff2e8","#ffd8bf","#ffbb96","#ff9c6e","#ff7a45","#fa541c","#d4380d","#ad2102","#871400","#610b00"];f.primary=f[5];var u=["#fff7e6","#ffe7ba","#ffd591","#ffc069","#ffa940","#fa8c16","#d46b08","#ad4e00","#873800","#612500"];u.primary=u[5];var g=["#fffbe6","#fff1b8","#ffe58f","#ffd666","#ffc53d","#faad14","#d48806","#ad6800","#874d00","#613400"];g.primary=g[5];var h=["#feffe6","#ffffb8","#fffb8f","#fff566","#ffec3d","#fadb14","#d4b106","#ad8b00","#876800","#614700"];h.primary=h[5];var p=["#fcffe6","#f4ffb8","#eaff8f","#d3f261","#bae637","#a0d911","#7cb305","#5b8c00","#3f6600","#254000"];p.primary=p[5];var m=["#f6ffed","#d9f7be","#b7eb8f","#95de64","#73d13d","#52c41a","#389e0d","#237804","#135200","#092b00"];m.primary=m[5];var b=["#e6fffb","#b5f5ec","#87e8de","#5cdbd3","#36cfc9","#13c2c2","#08979c","#006d75","#00474f","#002329"];b.primary=b[5];var S=["#e6f4ff","#bae0ff","#91caff","#69b1ff","#4096ff","#1677ff","#0958d9","#003eb3","#002c8c","#001d66"];S.primary=S[5];var v=["#f0f5ff","#d6e4ff","#adc6ff","#85a5ff","#597ef7","#2f54eb","#1d39c4","#10239e","#061178","#030852"];v.primary=v[5];var y=["#f9f0ff","#efdbff","#d3adf7","#b37feb","#9254de","#722ed1","#531dab","#391085","#22075e","#120338"];y.primary=y[5];var x=["#fff0f6","#ffd6e7","#ffadd2","#ff85c0","#f759ab","#eb2f96","#c41d7f","#9e1068","#780650","#520339"];x.primary=x[5];var M=["#a6a6a6","#999999","#8c8c8c","#808080","#737373","#666666","#404040","#1a1a1a","#000000","#000000"];M.primary=M[5];var B={red:d,volcano:f,orange:u,gold:g,yellow:h,lime:p,green:m,cyan:b,blue:S,geekblue:v,purple:y,magenta:x,grey:M},H=["#2a1215","#431418","#58181c","#791a1f","#a61d24","#d32029","#e84749","#f37370","#f89f9a","#fac8c3"];H.primary=H[5];var w=["#2b1611","#441d12","#592716","#7c3118","#aa3e19","#d84a1b","#e87040","#f3956a","#f8b692","#fad4bc"];w.primary=w[5];var C=["#2b1d11","#442a11","#593815","#7c4a15","#aa6215","#d87a16","#e89a3c","#f3b765","#f8cf8d","#fae3b7"];C.primary=C[5];var k=["#2b2111","#443111","#594214","#7c5914","#aa7714","#d89614","#e8b339","#f3cc62","#f8df8b","#faedb5"];k.primary=k[5];var I=["#2b2611","#443b11","#595014","#7c6e14","#aa9514","#d8bd14","#e8d639","#f3ea62","#f8f48b","#fafab5"];I.primary=I[5];var T=["#1f2611","#2e3c10","#3e4f13","#536d13","#6f9412","#8bbb11","#a9d134","#c9e75d","#e4f88b","#f0fab5"];T.primary=T[5];var A=["#162312","#1d3712","#274916","#306317","#3c8618","#49aa19","#6abe39","#8fd460","#b2e58b","#d5f2bb"];A.primary=A[5];var z=["#112123","#113536","#144848","#146262","#138585","#13a8a8","#33bcb7","#58d1c9","#84e2d8","#b2f1e8"];z.primary=z[5];var _=["#111a2c","#112545","#15325b","#15417e","#1554ad","#1668dc","#3c89e8","#65a9f3","#8dc5f8","#b7dcfa"];_.primary=_[5];var P=["#131629","#161d40","#1c2755","#203175","#263ea0","#2b4acb","#5273e0","#7f9ef3","#a8c1f8","#d2e0fa"];P.primary=P[5];var L=["#1a1325","#24163a","#301c4d","#3e2069","#51258f","#642ab5","#854eca","#ab7ae0","#cda8f0","#ebd7fa"];L.primary=L[5];var E=["#291321","#40162f","#551c3b","#75204f","#a02669","#cb2b83","#e0529c","#f37fb7","#f8a8cc","#fad2e3"];E.primary=E[5];var D=["#151515","#1f1f1f","#2d2d2d","#393939","#494949","#5a5a5a","#6a6a6a","#7b7b7b","#888888","#969696"];D.primary=D[5];var F=r(6013),R=e=>{let t=e,r=e,o=e,n=e;return e<6&&e>=5?t=e+1:e<16&&e>=6?t=e+2:e>=16&&(t=16),e<7&&e>=5?r=4:e<8&&e>=7?r=5:e<14&&e>=8?r=6:e<16&&e>=14?r=7:e>=16&&(r=8),e<6&&e>=2?o=1:e>=6&&(o=2),e>4&&e<8?n=4:e>=8&&(n=6),{borderRadius:e,borderRadiusXS:o,borderRadiusSM:r,borderRadiusLG:t,borderRadiusOuter:n}},O=e=>{let{controlHeight:t}=e;return{controlHeightSM:.75*t,controlHeightXS:.5*t,controlHeightLG:1.25*t}},W=e=>{let t=function(e){let t=Array.from({length:10}).map((t,r)=>{let o=e*Math.pow(Math.E,(r-1)/5);return 2*Math.floor((r>1?Math.floor(o):Math.ceil(o))/2)});return t[1]=e,t.map(e=>({size:e,lineHeight:(e+8)/e}))}(e),r=t.map(e=>e.size),o=t.map(e=>e.lineHeight),n=r[1],i=r[0],a=r[2],l=o[1],c=o[0],s=o[2];return{fontSizeSM:i,fontSize:n,fontSizeLG:a,fontSizeXL:r[3],fontSizeHeading1:r[6],fontSizeHeading2:r[5],fontSizeHeading3:r[4],fontSizeHeading4:r[3],fontSizeHeading5:r[2],lineHeight:l,lineHeightLG:s,lineHeightSM:c,fontHeight:Math.round(l*n),fontHeightLG:Math.round(s*a),fontHeightSM:Math.round(c*i),lineHeightHeading1:o[6],lineHeightHeading2:o[5],lineHeightHeading3:o[4],lineHeightHeading4:o[3],lineHeightHeading5:o[2]}};let X=(e,t)=>new o.t(e).setA(t).toRgbString(),G=(e,t)=>new o.t(e).darken(t).toHexString(),j=e=>{let t=c(e);return{1:t[0],2:t[1],3:t[2],4:t[3],5:t[4],6:t[5],7:t[6],8:t[4],9:t[5],10:t[6]}},N=(e,t)=>{let r=e||"#fff",o=t||"#000";return{colorBgBase:r,colorTextBase:o,colorText:X(o,.88),colorTextSecondary:X(o,.65),colorTextTertiary:X(o,.45),colorTextQuaternary:X(o,.25),colorFill:X(o,.15),colorFillSecondary:X(o,.06),colorFillTertiary:X(o,.04),colorFillQuaternary:X(o,.02),colorBgSolid:X(o,1),colorBgSolidHover:X(o,.75),colorBgSolidActive:X(o,.95),colorBgLayout:G(r,4),colorBgContainer:G(r,0),colorBgElevated:G(r,0),colorBgSpotlight:X(o,.85),colorBgBlur:"transparent",colorBorder:G(r,15),colorBorderSecondary:G(r,6)}};function $(e){s.pink=s.magenta,B.pink=B.magenta;let t=Object.keys(F.M).map(t=>{let r=e[t]===s[t]?B[t]:c(e[t]);return Array.from({length:10},()=>1).reduce((e,o,n)=>(e[`${t}-${n+1}`]=r[n],e[`${t}${n+1}`]=r[n],e),{})}).reduce((e,t)=>e=Object.assign(Object.assign({},e),t),{});return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},e),t),function(e,t){let{generateColorPalettes:r,generateNeutralColorPalettes:n}=t,{colorSuccess:i,colorWarning:a,colorError:l,colorInfo:c,colorPrimary:s,colorBgBase:d,colorTextBase:f}=e,u=r(s),g=r(i),h=r(a),p=r(l),m=r(c),b=n(d,f),S=r(e.colorLink||e.colorInfo),v=new o.t(p[1]).mix(new o.t(p[3]),50).toHexString();return Object.assign(Object.assign({},b),{colorPrimaryBg:u[1],colorPrimaryBgHover:u[2],colorPrimaryBorder:u[3],colorPrimaryBorderHover:u[4],colorPrimaryHover:u[5],colorPrimary:u[6],colorPrimaryActive:u[7],colorPrimaryTextHover:u[8],colorPrimaryText:u[9],colorPrimaryTextActive:u[10],colorSuccessBg:g[1],colorSuccessBgHover:g[2],colorSuccessBorder:g[3],colorSuccessBorderHover:g[4],colorSuccessHover:g[4],colorSuccess:g[6],colorSuccessActive:g[7],colorSuccessTextHover:g[8],colorSuccessText:g[9],colorSuccessTextActive:g[10],colorErrorBg:p[1],colorErrorBgHover:p[2],colorErrorBgFilledHover:v,colorErrorBgActive:p[3],colorErrorBorder:p[3],colorErrorBorderHover:p[4],colorErrorHover:p[5],colorError:p[6],colorErrorActive:p[7],colorErrorTextHover:p[8],colorErrorText:p[9],colorErrorTextActive:p[10],colorWarningBg:h[1],colorWarningBgHover:h[2],colorWarningBorder:h[3],colorWarningBorderHover:h[4],colorWarningHover:h[4],colorWarning:h[6],colorWarningActive:h[7],colorWarningTextHover:h[8],colorWarningText:h[9],colorWarningTextActive:h[10],colorInfoBg:m[1],colorInfoBgHover:m[2],colorInfoBorder:m[3],colorInfoBorderHover:m[4],colorInfoHover:m[4],colorInfo:m[6],colorInfoActive:m[7],colorInfoTextHover:m[8],colorInfoText:m[9],colorInfoTextActive:m[10],colorLinkHover:S[4],colorLink:S[6],colorLinkActive:S[7],colorBgMask:new o.t("#000").setA(.45).toRgbString(),colorWhite:"#fff"})}(e,{generateColorPalettes:j,generateNeutralColorPalettes:N})),W(e.fontSize)),function(e){let{sizeUnit:t,sizeStep:r}=e;return{sizeXXL:t*(r+8),sizeXL:t*(r+4),sizeLG:t*(r+2),sizeMD:t*(r+1),sizeMS:t*r,size:t*r,sizeSM:t*(r-1),sizeXS:t*(r-2),sizeXXS:t*(r-3)}}(e)),O(e)),function(e){let{motionUnit:t,motionBase:r,borderRadius:o,lineWidth:n}=e;return Object.assign({motionDurationFast:`${(r+t).toFixed(1)}s`,motionDurationMid:`${(r+2*t).toFixed(1)}s`,motionDurationSlow:`${(r+3*t).toFixed(1)}s`,lineWidthBold:n+1},R(o))}(e))}},6013:function(e,t,r){"use strict";r.d(t,{M:function(){return o}});let o={blue:"#1677FF",purple:"#722ED1",cyan:"#13C2C2",green:"#52C41A",magenta:"#EB2F96",pink:"#EB2F96",red:"#F5222D",orange:"#FA8C16",yellow:"#FADB14",volcano:"#FA541C",geekblue:"#2F54EB",gold:"#FAAD14",lime:"#A0D911"};t.Z=Object.assign(Object.assign({},o),{colorPrimary:"#1677ff",colorSuccess:"#52c41a",colorWarning:"#faad14",colorError:"#ff4d4f",colorInfo:"#1677ff",colorLink:"",colorTextBase:"",colorBgBase:"",fontFamily:`-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
11
- 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
12
- 'Noto Color Emoji'`,fontFamilyCode:"'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace",fontSize:14,lineWidth:1,lineType:"solid",motionUnit:.1,motionBase:0,motionEaseOutCirc:"cubic-bezier(0.08, 0.82, 0.17, 1)",motionEaseInOutCirc:"cubic-bezier(0.78, 0.14, 0.15, 0.86)",motionEaseOut:"cubic-bezier(0.215, 0.61, 0.355, 1)",motionEaseInOut:"cubic-bezier(0.645, 0.045, 0.355, 1)",motionEaseOutBack:"cubic-bezier(0.12, 0.4, 0.29, 1.46)",motionEaseInBack:"cubic-bezier(0.71, -0.46, 0.88, 0.6)",motionEaseInQuint:"cubic-bezier(0.755, 0.05, 0.855, 0.06)",motionEaseOutQuint:"cubic-bezier(0.23, 1, 0.32, 1)",borderRadius:6,sizeUnit:4,sizeStep:4,sizePopupArrow:16,controlHeight:32,zIndexBase:0,zIndexPopupBase:1e3,opacityImage:1,wireframe:!1,motion:!0})},9615:function(e,t,r){"use strict";r.d(t,{Z:function(){return c}});var o=r(3722),n=r(6013);function i(e){return e>=0&&e<=255}var a=function(e,t){let{r:r,g:n,b:a,a:l}=new o.t(e).toRgb();if(l<1)return e;let{r:c,g:s,b:d}=new o.t(t).toRgb();for(let e=.01;e<=1;e+=.01){let t=Math.round((r-c*(1-e))/e),l=Math.round((n-s*(1-e))/e),f=Math.round((a-d*(1-e))/e);if(i(t)&&i(l)&&i(f))return new o.t({r:t,g:l,b:f,a:Math.round(100*e)/100}).toRgbString()}return new o.t({r:r,g:n,b:a,a:1}).toRgbString()},l=function(e,t){var r={};for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&0>t.indexOf(o)&&(r[o]=e[o]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var n=0,o=Object.getOwnPropertySymbols(e);n<o.length;n++)0>t.indexOf(o[n])&&Object.prototype.propertyIsEnumerable.call(e,o[n])&&(r[o[n]]=e[o[n]]);return r};function c(e){let{override:t}=e,r=l(e,["override"]),i=Object.assign({},t);Object.keys(n.Z).forEach(e=>{delete i[e]});let c=Object.assign(Object.assign({},r),i);return!1===c.motion&&(c.motionDurationFast="0s",c.motionDurationMid="0s",c.motionDurationSlow="0s"),Object.assign(Object.assign(Object.assign({},c),{colorFillContent:c.colorFillSecondary,colorFillContentHover:c.colorFill,colorFillAlter:c.colorFillQuaternary,colorBgContainerDisabled:c.colorFillTertiary,colorBorderBg:c.colorBgContainer,colorSplit:a(c.colorBorderSecondary,c.colorBgContainer),colorTextPlaceholder:c.colorTextQuaternary,colorTextDisabled:c.colorTextQuaternary,colorTextHeading:c.colorText,colorTextLabel:c.colorTextSecondary,colorTextDescription:c.colorTextTertiary,colorTextLightSolid:c.colorWhite,colorHighlight:c.colorError,colorBgTextHover:c.colorFillSecondary,colorBgTextActive:c.colorFill,colorIcon:c.colorTextTertiary,colorIconHover:c.colorText,colorErrorOutline:a(c.colorErrorBg,c.colorBgContainer),colorWarningOutline:a(c.colorWarningBg,c.colorBgContainer),fontSizeIcon:c.fontSizeSM,lineWidthFocus:3*c.lineWidth,lineWidth:c.lineWidth,controlOutlineWidth:2*c.lineWidth,controlInteractiveSize:c.controlHeight/2,controlItemBgHover:c.colorFillTertiary,controlItemBgActive:c.colorPrimaryBg,controlItemBgActiveHover:c.colorPrimaryBgHover,controlItemBgActiveDisabled:c.colorFill,controlTmpOutline:c.colorFillQuaternary,controlOutline:a(c.colorPrimaryBg,c.colorBgContainer),lineType:c.lineType,borderRadius:c.borderRadius,borderRadiusXS:c.borderRadiusXS,borderRadiusSM:c.borderRadiusSM,borderRadiusLG:c.borderRadiusLG,fontWeightStrong:600,opacityLoading:.65,linkDecoration:"none",linkHoverDecoration:"none",linkFocusDecoration:"none",controlPaddingHorizontal:12,controlPaddingHorizontalSM:8,paddingXXS:c.sizeXXS,paddingXS:c.sizeXS,paddingSM:c.sizeSM,padding:c.size,paddingMD:c.sizeMD,paddingLG:c.sizeLG,paddingXL:c.sizeXL,paddingContentHorizontalLG:c.sizeLG,paddingContentVerticalLG:c.sizeMS,paddingContentHorizontal:c.sizeMS,paddingContentVertical:c.sizeSM,paddingContentHorizontalSM:c.size,paddingContentVerticalSM:c.sizeXS,marginXXS:c.sizeXXS,marginXS:c.sizeXS,marginSM:c.sizeSM,margin:c.size,marginMD:c.sizeMD,marginLG:c.sizeLG,marginXL:c.sizeXL,marginXXL:c.sizeXXL,boxShadow:`
13
- 0 6px 16px 0 rgba(0, 0, 0, 0.08),
14
- 0 3px 6px -4px rgba(0, 0, 0, 0.12),
15
- 0 9px 28px 8px rgba(0, 0, 0, 0.05)
16
- `,boxShadowSecondary:`
17
- 0 6px 16px 0 rgba(0, 0, 0, 0.08),
18
- 0 3px 6px -4px rgba(0, 0, 0, 0.12),
19
- 0 9px 28px 8px rgba(0, 0, 0, 0.05)
20
- `,boxShadowTertiary:`
21
- 0 1px 2px 0 rgba(0, 0, 0, 0.03),
22
- 0 1px 6px -1px rgba(0, 0, 0, 0.02),
23
- 0 2px 4px 0 rgba(0, 0, 0, 0.02)
24
- `,screenXS:480,screenXSMin:480,screenXSMax:575,screenSM:576,screenSMMin:576,screenSMMax:767,screenMD:768,screenMDMin:768,screenMDMax:991,screenLG:992,screenLGMin:992,screenLGMax:1199,screenXL:1200,screenXLMin:1200,screenXLMax:1599,screenXXL:1600,screenXXLMin:1600,boxShadowPopoverArrow:"2px 2px 5px rgba(0, 0, 0, 0.05)",boxShadowCard:`
25
- 0 1px 2px -2px ${new o.t("rgba(0, 0, 0, 0.16)").toRgbString()},
26
- 0 3px 6px 0 ${new o.t("rgba(0, 0, 0, 0.12)").toRgbString()},
27
- 0 5px 12px 4px ${new o.t("rgba(0, 0, 0, 0.09)").toRgbString()}
28
- `,boxShadowDrawerRight:`
29
- -6px 0 16px 0 rgba(0, 0, 0, 0.08),
30
- -3px 0 6px -4px rgba(0, 0, 0, 0.12),
31
- -9px 0 28px 8px rgba(0, 0, 0, 0.05)
32
- `,boxShadowDrawerLeft:`
33
- 6px 0 16px 0 rgba(0, 0, 0, 0.08),
34
- 3px 0 6px -4px rgba(0, 0, 0, 0.12),
35
- 9px 0 28px 8px rgba(0, 0, 0, 0.05)
36
- `,boxShadowDrawerUp:`
37
- 0 6px 16px 0 rgba(0, 0, 0, 0.08),
38
- 0 3px 6px -4px rgba(0, 0, 0, 0.12),
39
- 0 9px 28px 8px rgba(0, 0, 0, 0.05)
40
- `,boxShadowDrawerDown:`
41
- 0 -6px 16px 0 rgba(0, 0, 0, 0.08),
42
- 0 -3px 6px -4px rgba(0, 0, 0, 0.12),
43
- 0 -9px 28px 8px rgba(0, 0, 0, 0.05)
44
- `,boxShadowTabsOverflowLeft:"inset 10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowRight:"inset -10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowTop:"inset 0 10px 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowBottom:"inset 0 -10px 8px -8px rgba(0, 0, 0, 0.08)"}),i)}},6905:function(e,t,r){"use strict";var o=r(9665),n={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},i={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},a={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},l={};function c(e){return o.isMemo(e)?a:l[e.$$typeof]||n}l[o.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},l[o.Memo]=a;var s=Object.defineProperty,d=Object.getOwnPropertyNames,f=Object.getOwnPropertySymbols,u=Object.getOwnPropertyDescriptor,g=Object.getPrototypeOf,h=Object.prototype;e.exports=function e(t,r,o){if("string"!=typeof r){if(h){var n=g(r);n&&n!==h&&e(t,n,o)}var a=d(r);f&&(a=a.concat(f(r)));for(var l=c(t),p=c(r),m=0;m<a.length;++m){var b=a[m];if(!i[b]&&!(o&&o[b])&&!(p&&p[b])&&!(l&&l[b])){var S=u(r,b);try{s(t,b,S)}catch(e){}}}}return t}},3013:function(e,t,r){"use strict";function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);r<t;r++)o[r]=e[r];return o}function n(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,n,i,a,l=[],c=!0,s=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=i.call(r)).done)&&(l.push(o.value),l.length!==t);c=!0);}catch(e){s=!0,n=e}finally{try{if(!c&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(s)throw n}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return o(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?o(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}r.d(t,{Z:function(){return u}});var i=r(8156);function a(e){var t=i.useRef();return t.current=e,i.useCallback(function(){for(var e,r=arguments.length,o=Array(r),n=0;n<r;n++)o[n]=arguments[n];return null==(e=t.current)?void 0:e.call.apply(e,[t].concat(o))},[])}var l="undefined"!=typeof window&&window.document&&window.document.createElement?i.useLayoutEffect:i.useEffect,c=function(e,t){var r=i.useRef(!0);l(function(){return e(r.current)},t),l(function(){return r.current=!1,function(){r.current=!0}},[])},s=function(e,t){c(function(t){if(!t)return e()},t)};function d(e){var t=i.useRef(!1),r=n(i.useState(e),2),o=r[0],a=r[1];return i.useEffect(function(){return t.current=!1,function(){t.current=!0}},[]),[o,function(e,r){r&&t.current||a(e)}]}function f(e){return void 0!==e}function u(e,t){var r=t||{},o=r.defaultValue,i=r.value,l=r.onChange,c=r.postState,u=n(d(function(){return f(i)?i:f(o)?"function"==typeof o?o():o:"function"==typeof e?e():e}),2),g=u[0],h=u[1],p=void 0!==i?i:g,m=c?c(p):p,b=a(l),S=n(d([p]),2),v=S[0],y=S[1];return s(function(){var e=v[0];g!==e&&b(g,e)},[v]),s(function(){f(i)||h(i)},[i]),[m,a(function(e,t){h(e,t),y([p],t)})]}},7655:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(){return!!("undefined"!=typeof window&&window.document&&window.document.createElement)}},5849:function(e,t,r){"use strict";var o=r(561).default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var t=n.useRef();return t.current=e,n.useCallback(function(){for(var e,r=arguments.length,o=Array(r),n=0;n<r;n++)o[n]=arguments[n];return null==(e=t.current)?void 0:e.call.apply(e,[t].concat(o))},[])};var n=o(r(8156))},1217:function(e,t,r){"use strict";var o=r(5605).default,n=r(561).default;Object.defineProperty(t,"__esModule",{value:!0}),t.useLayoutUpdateEffect=t.default=void 0;var i=n(r(8156)),a=(0,o(r(7655)).default)()?i.useLayoutEffect:i.useEffect,l=function(e,t){var r=i.useRef(!0);a(function(){return e(r.current)},t),a(function(){return r.current=!1,function(){r.current=!0}},[])};t.useLayoutUpdateEffect=function(e,t){l(function(t){if(!t)return e()},t)},t.default=l},2075:function(e,t,r){"use strict";var o=r(5605).default;o(r(7254)),o(r(5849)),r(1217),o(r(7620))},7620:function(e,t,r){"use strict";var o=r(561).default,n=r(5605).default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var t=a.useRef(!1),r=a.useState(e),o=(0,i.default)(r,2),n=o[0],l=o[1];return a.useEffect(function(){return t.current=!1,function(){t.current=!0}},[]),[n,function(e,r){r&&t.current||l(e)}]};var i=n(r(7254)),a=o(r(8156))},8092:function(e,t){"use strict";var r="function"==typeof Symbol&&Symbol.for,o=r?Symbol.for("react.element"):60103,n=r?Symbol.for("react.portal"):60106,i=r?Symbol.for("react.fragment"):60107,a=r?Symbol.for("react.strict_mode"):60108,l=r?Symbol.for("react.profiler"):60114,c=r?Symbol.for("react.provider"):60109,s=r?Symbol.for("react.context"):60110,d=r?Symbol.for("react.async_mode"):60111,f=r?Symbol.for("react.concurrent_mode"):60111,u=r?Symbol.for("react.forward_ref"):60112,g=r?Symbol.for("react.suspense"):60113,h=r?Symbol.for("react.suspense_list"):60120,p=r?Symbol.for("react.memo"):60115,m=r?Symbol.for("react.lazy"):60116,b=r?Symbol.for("react.block"):60121,S=r?Symbol.for("react.fundamental"):60117,v=r?Symbol.for("react.responder"):60118,y=r?Symbol.for("react.scope"):60119;function x(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case o:switch(e=e.type){case d:case f:case i:case l:case a:case g:return e;default:switch(e=e&&e.$$typeof){case s:case u:case m:case p:case c:return e;default:return t}}case n:return t}}}function M(e){return x(e)===f}t.AsyncMode=d,t.ConcurrentMode=f,t.ContextConsumer=s,t.ContextProvider=c,t.Element=o,t.ForwardRef=u,t.Fragment=i,t.Lazy=m,t.Memo=p,t.Portal=n,t.Profiler=l,t.StrictMode=a,t.Suspense=g,t.isAsyncMode=function(e){return M(e)||x(e)===d},t.isConcurrentMode=M,t.isContextConsumer=function(e){return x(e)===s},t.isContextProvider=function(e){return x(e)===c},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===o},t.isForwardRef=function(e){return x(e)===u},t.isFragment=function(e){return x(e)===i},t.isLazy=function(e){return x(e)===m},t.isMemo=function(e){return x(e)===p},t.isPortal=function(e){return x(e)===n},t.isProfiler=function(e){return x(e)===l},t.isStrictMode=function(e){return x(e)===a},t.isSuspense=function(e){return x(e)===g},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===i||e===f||e===l||e===a||e===g||e===h||"object"==typeof e&&null!==e&&(e.$$typeof===m||e.$$typeof===p||e.$$typeof===c||e.$$typeof===s||e.$$typeof===u||e.$$typeof===S||e.$$typeof===v||e.$$typeof===y||e.$$typeof===b)},t.typeOf=x},9665:function(e,t,r){"use strict";e.exports=r(8092)},1801:function(e,t,r){"use strict";var o=r(8156),n=Symbol.for("react.element"),i=(Symbol.for("react.fragment"),Object.prototype.hasOwnProperty),a=o.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,l={key:!0,ref:!0,__self:!0,__source:!0}},3704:function(e,t,r){"use strict";r(1801)},2298:function(e){e.exports=function(e,t,r,o){var n=r?r.call(o,e,t):void 0;if(void 0!==n)return!!n;if(e===t)return!0;if("object"!=typeof e||!e||"object"!=typeof t||!t)return!1;var i=Object.keys(e),a=Object.keys(t);if(i.length!==a.length)return!1;for(var l=Object.prototype.hasOwnProperty.bind(t),c=0;c<i.length;c++){var s=i[c];if(!l(s))return!1;var d=e[s],f=t[s];if(!1===(n=r?r.call(o,d,f,s):void 0)||void 0===n&&d!==f)return!1}return!0}},4176:function(e,t,r){"use strict";r.d(t,{S:function(){return n}});var o=r(8156);let n=(e,t=0)=>{let r=(0,o.useRef)(0),n=(0,o.useCallback)((...o)=>{cancelAnimationFrame(r.current);let n=performance.now(),i=a=>{a-n<t?r.current=requestAnimationFrame(i):e(...o)};r.current=requestAnimationFrame(i)},[e,t]);return(0,o.useEffect)(()=>()=>cancelAnimationFrame(r.current),[]),n}},4439:function(e){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=Array(t);r<t;r++)o[r]=e[r];return o},e.exports.__esModule=!0,e.exports.default=e.exports},4221:function(e){e.exports=function(e){if(Array.isArray(e))return e},e.exports.__esModule=!0,e.exports.default=e.exports},5605:function(e){e.exports=function(e){return e&&e.__esModule?e:{default:e}},e.exports.__esModule=!0,e.exports.default=e.exports},561:function(e,t,r){var o=r(3265).default;function n(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,r=new WeakMap;return(n=function(e){return e?r:t})(e)}e.exports=function(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!=o(e)&&"function"!=typeof e)return{default:e};var r=n(t);if(r&&r.has(e))return r.get(e);var i={__proto__:null},a=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var l in e)if("default"!==l&&({}).hasOwnProperty.call(e,l)){var c=a?Object.getOwnPropertyDescriptor(e,l):null;c&&(c.get||c.set)?Object.defineProperty(i,l,c):i[l]=e[l]}return i.default=e,r&&r.set(e,i),i},e.exports.__esModule=!0,e.exports.default=e.exports},7062:function(e){e.exports=function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var o,n,i,a,l=[],c=!0,s=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(o=i.call(r)).done)&&(l.push(o.value),l.length!==t);c=!0);}catch(e){s=!0,n=e}finally{try{if(!c&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(s)throw n}}return l}},e.exports.__esModule=!0,e.exports.default=e.exports},9460:function(e){e.exports=function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.__esModule=!0,e.exports.default=e.exports},7254:function(e,t,r){var o=r(4221),n=r(7062),i=r(9048),a=r(9460);e.exports=function(e,t){return o(e)||n(e,t)||i(e,t)||a()},e.exports.__esModule=!0,e.exports.default=e.exports},3265:function(e){function t(r){return e.exports=t="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.exports.__esModule=!0,e.exports.default=e.exports,t(r)}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},9048:function(e,t,r){var o=r(4439);e.exports=function(e,t){if(e){if("string"==typeof e)return o(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?o(e,t):void 0}},e.exports.__esModule=!0,e.exports.default=e.exports},9527:function(e,t){var r;!function(){"use strict";var o={}.hasOwnProperty;function n(){for(var e="",t=0;t<arguments.length;t++){var r=arguments[t];r&&(e=i(e,function(e){if("string"==typeof e||"number"==typeof e)return e;if("object"!=typeof e)return"";if(Array.isArray(e))return n.apply(null,e);if(e.toString!==Object.prototype.toString&&!e.toString.toString().includes("[native code]"))return e.toString();var t="";for(var r in e)o.call(e,r)&&e[r]&&(t=i(t,r));return t}(r)))}return e}function i(e,t){return t?e?e+" "+t:e+t:e}e.exports?(n.default=n,e.exports=n):void 0===(r=(function(){return n}).apply(t,[]))||(e.exports=r)}()},1507:function(e,t,r){"use strict";r.d(t,{Jg:function(){return R},gW:function(){return L}});var o=r(8156);function n(){return(n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e}).apply(this,arguments)}function i(e,t){if(null==e)return{};var r,o,n={},i=Object.keys(e);for(o=0;o<i.length;o++)t.indexOf(r=i[o])>=0||(n[r]=e[r]);return n}function a(e){var t=(0,o.useRef)(e),r=(0,o.useRef)(function(e){t.current&&t.current(e)});return t.current=e,r.current}var l=function(e,t,r){return void 0===t&&(t=0),void 0===r&&(r=1),e>r?r:e<t?t:e},c=function(e){return"touches"in e},s=function(e){return e&&e.ownerDocument.defaultView||self},d=function(e,t,r){var o=e.getBoundingClientRect(),n=c(t)?function(e,t){for(var r=0;r<e.length;r++)if(e[r].identifier===t)return e[r];return e[0]}(t.touches,r):t;return{left:l((n.pageX-(o.left+s(e).pageXOffset))/o.width),top:l((n.pageY-(o.top+s(e).pageYOffset))/o.height)}},f=function(e){c(e)||e.preventDefault()},u=o.memo(function(e){var t=e.onMove,r=e.onKey,l=i(e,["onMove","onKey"]),u=(0,o.useRef)(null),g=a(t),h=a(r),p=(0,o.useRef)(null),m=(0,o.useRef)(!1),b=(0,o.useMemo)(function(){var e=function(e){f(e),(c(e)?e.touches.length>0:e.buttons>0)&&u.current?g(d(u.current,e,p.current)):r(!1)},t=function(){return r(!1)};function r(r){var o=m.current,n=s(u.current),i=r?n.addEventListener:n.removeEventListener;i(o?"touchmove":"mousemove",e),i(o?"touchend":"mouseup",t)}return[function(e){var t=e.nativeEvent,o=u.current;if(o&&(f(t),(!m.current||c(t))&&o)){if(c(t)){m.current=!0;var n=t.changedTouches||[];n.length&&(p.current=n[0].identifier)}o.focus(),g(d(o,t,p.current)),r(!0)}},function(e){var t=e.which||e.keyCode;t<37||t>40||(e.preventDefault(),h({left:39===t?.05:37===t?-.05:0,top:40===t?.05:38===t?-.05:0}))},r]},[h,g]),S=b[0],v=b[1],y=b[2];return(0,o.useEffect)(function(){return y},[y]),o.createElement("div",n({},l,{onTouchStart:S,onMouseDown:S,className:"react-colorful__interactive",ref:u,onKeyDown:v,tabIndex:0,role:"slider"}))}),g=function(e){return e.filter(Boolean).join(" ")},h=function(e){var t=e.color,r=e.left,n=e.top,i=g(["react-colorful__pointer",e.className]);return o.createElement("div",{className:i,style:{top:100*(void 0===n?.5:n)+"%",left:100*r+"%"}},o.createElement("div",{className:"react-colorful__pointer-fill",style:{backgroundColor:t}}))},p=function(e,t,r){return void 0===t&&(t=0),void 0===r&&(r=Math.pow(10,t)),Math.round(r*e)/r},m=function(e){return"#"===e[0]&&(e=e.substring(1)),e.length<6?{r:parseInt(e[0]+e[0],16),g:parseInt(e[1]+e[1],16),b:parseInt(e[2]+e[2],16),a:4===e.length?p(parseInt(e[3]+e[3],16)/255,2):1}:{r:parseInt(e.substring(0,2),16),g:parseInt(e.substring(2,4),16),b:parseInt(e.substring(4,6),16),a:8===e.length?p(parseInt(e.substring(6,8),16)/255,2):1}},b=function(e){var t=e.s,r=e.v,o=e.a,n=(200-t)*r/100;return{h:p(e.h),s:p(n>0&&n<200?t*r/100/(n<=100?n:200-n)*100:0),l:p(n/2),a:p(o,2)}},S=function(e){var t=b(e);return"hsl("+t.h+", "+t.s+"%, "+t.l+"%)"},v=function(e){var t=b(e);return"hsla("+t.h+", "+t.s+"%, "+t.l+"%, "+t.a+")"},y=function(e){var t=e.h,r=e.s,o=e.v,n=e.a;t=t/360*6,r/=100,o/=100;var i=Math.floor(t),a=o*(1-r),l=o*(1-(t-i)*r),c=o*(1-(1-t+i)*r),s=i%6;return{r:p(255*[o,l,a,a,c,o][s]),g:p(255*[c,o,o,l,a,a][s]),b:p(255*[a,a,c,o,o,l][s]),a:p(n,2)}},x=function(e){var t=e.toString(16);return t.length<2?"0"+t:t},M=function(e){var t=e.r,r=e.g,o=e.b,n=e.a,i=n<1?x(p(255*n)):"";return"#"+x(t)+x(r)+x(o)+i},B=function(e){var t=e.r,r=e.g,o=e.b,n=e.a,i=Math.max(t,r,o),a=i-Math.min(t,r,o),l=a?i===t?(r-o)/a:i===r?2+(o-t)/a:4+(t-r)/a:0;return{h:p(60*(l<0?l+6:l)),s:p(i?a/i*100:0),v:p(i/255*100),a:n}},H=o.memo(function(e){var t=e.hue,r=e.onChange,n=g(["react-colorful__hue",e.className]);return o.createElement("div",{className:n},o.createElement(u,{onMove:function(e){r({h:360*e.left})},onKey:function(e){r({h:l(t+360*e.left,0,360)})},"aria-label":"Hue","aria-valuenow":p(t),"aria-valuemax":"360","aria-valuemin":"0"},o.createElement(h,{className:"react-colorful__hue-pointer",left:t/360,color:S({h:t,s:100,v:100,a:1})})))}),w=o.memo(function(e){var t=e.hsva,r=e.onChange,n={backgroundColor:S({h:t.h,s:100,v:100,a:1})};return o.createElement("div",{className:"react-colorful__saturation",style:n},o.createElement(u,{onMove:function(e){r({s:100*e.left,v:100-100*e.top})},onKey:function(e){r({s:l(t.s+100*e.left,0,100),v:l(t.v-100*e.top,0,100)})},"aria-label":"Color","aria-valuetext":"Saturation "+p(t.s)+"%, Brightness "+p(t.v)+"%"},o.createElement(h,{className:"react-colorful__saturation-pointer",top:1-t.v/100,left:t.s/100,color:S(t)})))}),C=function(e,t){if(e===t)return!0;for(var r in e)if(e[r]!==t[r])return!1;return!0};function k(e,t,r){var n=a(r),i=(0,o.useState)(function(){return e.toHsva(t)}),l=i[0],c=i[1],s=(0,o.useRef)({color:t,hsva:l});return(0,o.useEffect)(function(){if(!e.equal(t,s.current.color)){var r=e.toHsva(t);s.current={hsva:r,color:t},c(r)}},[t,e]),(0,o.useEffect)(function(){var t;C(l,s.current.hsva)||e.equal(t=e.fromHsva(l),s.current.color)||(s.current={hsva:l,color:t},n(t))},[l,e,n]),[l,(0,o.useCallback)(function(e){c(function(t){return Object.assign({},t,e)})},[])]}var I,T="undefined"!=typeof window?o.useLayoutEffect:o.useEffect,A=new Map,z=function(e){T(function(){var t=e.current?e.current.ownerDocument:document;if(void 0!==t&&!A.has(t)){var o=t.createElement("style");o.innerHTML='.react-colorful{position:relative;display:flex;flex-direction:column;width:200px;height:200px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.react-colorful__saturation{position:relative;flex-grow:1;border-color:transparent;border-bottom:12px solid #000;border-radius:8px 8px 0 0;background-image:linear-gradient(0deg,#000,transparent),linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.react-colorful__alpha-gradient,.react-colorful__pointer-fill{content:"";position:absolute;left:0;top:0;right:0;bottom:0;pointer-events:none;border-radius:inherit}.react-colorful__alpha-gradient,.react-colorful__saturation{box-shadow:inset 0 0 0 1px rgba(0,0,0,.05)}.react-colorful__alpha,.react-colorful__hue{position:relative;height:24px}.react-colorful__hue{background:linear-gradient(90deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.react-colorful__last-control{border-radius:0 0 8px 8px}.react-colorful__interactive{position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;outline:none;touch-action:none}.react-colorful__pointer{position:absolute;z-index:1;box-sizing:border-box;width:28px;height:28px;transform:translate(-50%,-50%);background-color:#fff;border:2px solid #fff;border-radius:50%;box-shadow:0 2px 4px rgba(0,0,0,.2)}.react-colorful__interactive:focus .react-colorful__pointer{transform:translate(-50%,-50%) scale(1.1)}.react-colorful__alpha,.react-colorful__alpha-pointer{background-color:#fff;background-image:url(\'data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill-opacity=".05"><path d="M8 0h8v8H8zM0 8h8v8H0z"/></svg>\')}.react-colorful__saturation-pointer{z-index:3}.react-colorful__hue-pointer{z-index:2}',A.set(t,o);var n=I||r.nc;n&&o.setAttribute("nonce",n),t.head.appendChild(o)}},[])},_=function(e){var t=e.className,r=e.colorModel,a=e.color,l=void 0===a?r.defaultColor:a,c=e.onChange,s=i(e,["className","colorModel","color","onChange"]),d=(0,o.useRef)(null);z(d);var f=k(r,l,c),u=f[0],h=f[1],p=g(["react-colorful",t]);return o.createElement("div",n({},s,{ref:d,className:p}),o.createElement(w,{hsva:u,onChange:h}),o.createElement(H,{hue:u.h,onChange:h,className:"react-colorful__last-control"}))},P={defaultColor:"000",toHsva:function(e){return B(m(e))},fromHsva:function(e){return M(y({h:e.h,s:e.s,v:e.v,a:1}))},equal:function(e,t){return e.toLowerCase()===t.toLowerCase()||C(m(e),m(t))}},L=function(e){return o.createElement(_,n({},e,{colorModel:P}))},E=function(e){var t=e.className,r=e.hsva,n=e.onChange,i={backgroundImage:"linear-gradient(90deg, "+v(Object.assign({},r,{a:0}))+", "+v(Object.assign({},r,{a:1}))+")"},a=g(["react-colorful__alpha",t]),c=p(100*r.a);return o.createElement("div",{className:a},o.createElement("div",{className:"react-colorful__alpha-gradient",style:i}),o.createElement(u,{onMove:function(e){n({a:e.left})},onKey:function(e){n({a:l(r.a+e.left)})},"aria-label":"Alpha","aria-valuetext":c+"%","aria-valuenow":c,"aria-valuemin":"0","aria-valuemax":"100"},o.createElement(h,{className:"react-colorful__alpha-pointer",left:r.a,color:v(r)})))},D=function(e){var t=e.className,r=e.colorModel,a=e.color,l=void 0===a?r.defaultColor:a,c=e.onChange,s=i(e,["className","colorModel","color","onChange"]),d=(0,o.useRef)(null);z(d);var f=k(r,l,c),u=f[0],h=f[1],p=g(["react-colorful",t]);return o.createElement("div",n({},s,{ref:d,className:p}),o.createElement(w,{hsva:u,onChange:h}),o.createElement(H,{hue:u.h,onChange:h}),o.createElement(E,{hsva:u,onChange:h,className:"react-colorful__last-control"}))},F={defaultColor:{r:0,g:0,b:0,a:1},toHsva:B,fromHsva:y,equal:C},R=function(e){return o.createElement(D,n({},e,{colorModel:F}))}},9057:function(e,t,r){"use strict";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)}r.d(t,{Z:function(){return s}});var n,i,a,l=/^\s+/,c=/\s+$/;function s(e,t){if(t=t||{},(e=e||"")instanceof s)return e;if(!(this instanceof s))return new s(e,t);var r,n,i,a,d,f,u,g,h,p,m,b,S,v,y,x,M,B,H,w,k=(n={r:0,g:0,b:0},i=1,a=null,d=null,f=null,u=!1,g=!1,"string"==typeof(r=e)&&(r=function(e){e=e.replace(l,"").replace(c,"").toLowerCase();var t,r=!1;if(C[e])e=C[e],r=!0;else if("transparent"==e)return{r:0,g:0,b:0,a:0,format:"name"};return(t=E.rgb.exec(e))?{r:t[1],g:t[2],b:t[3]}:(t=E.rgba.exec(e))?{r:t[1],g:t[2],b:t[3],a:t[4]}:(t=E.hsl.exec(e))?{h:t[1],s:t[2],l:t[3]}:(t=E.hsla.exec(e))?{h:t[1],s:t[2],l:t[3],a:t[4]}:(t=E.hsv.exec(e))?{h:t[1],s:t[2],v:t[3]}:(t=E.hsva.exec(e))?{h:t[1],s:t[2],v:t[3],a:t[4]}:(t=E.hex8.exec(e))?{r:z(t[1]),g:z(t[2]),b:z(t[3]),a:z(t[4])/255,format:r?"name":"hex8"}:(t=E.hex6.exec(e))?{r:z(t[1]),g:z(t[2]),b:z(t[3]),format:r?"name":"hex"}:(t=E.hex4.exec(e))?{r:z(t[1]+""+t[1]),g:z(t[2]+""+t[2]),b:z(t[3]+""+t[3]),a:z(t[4]+""+t[4])/255,format:r?"name":"hex8"}:!!(t=E.hex3.exec(e))&&{r:z(t[1]+""+t[1]),g:z(t[2]+""+t[2]),b:z(t[3]+""+t[3]),format:r?"name":"hex"}}(r)),"object"==o(r)&&(D(r.r)&&D(r.g)&&D(r.b)?(h=r.r,p=r.g,m=r.b,n={r:255*T(h,255),g:255*T(p,255),b:255*T(m,255)},u=!0,g="%"===String(r.r).substr(-1)?"prgb":"rgb"):D(r.h)&&D(r.s)&&D(r.v)?(a=P(r.s),d=P(r.v),b=r.h,S=a,v=d,b=6*T(b,360),S=T(S,100),v=T(v,100),y=Math.floor(b),x=b-y,M=v*(1-S),B=v*(1-x*S),H=v*(1-(1-x)*S),n={r:255*[v,B,M,M,H,v][w=y%6],g:255*[H,v,v,B,M,M][w],b:255*[M,M,H,v,v,B][w]},u=!0,g="hsv"):D(r.h)&&D(r.s)&&D(r.l)&&(a=P(r.s),f=P(r.l),n=function(e,t,r){var o,n,i;function a(e,t,r){return(r<0&&(r+=1),r>1&&(r-=1),r<1/6)?e+(t-e)*6*r:r<.5?t:r<2/3?e+(t-e)*(2/3-r)*6:e}if(e=T(e,360),t=T(t,100),r=T(r,100),0===t)o=n=i=r;else{var l=r<.5?r*(1+t):r+t-r*t,c=2*r-l;o=a(c,l,e+1/3),n=a(c,l,e),i=a(c,l,e-1/3)}return{r:255*o,g:255*n,b:255*i}}(r.h,a,f),u=!0,g="hsl"),r.hasOwnProperty("a")&&(i=r.a)),i=I(i),{ok:u,format:r.format||g,r:Math.min(255,Math.max(n.r,0)),g:Math.min(255,Math.max(n.g,0)),b:Math.min(255,Math.max(n.b,0)),a:i});this._originalInput=e,this._r=k.r,this._g=k.g,this._b=k.b,this._a=k.a,this._roundA=Math.round(100*this._a)/100,this._format=t.format||k.format,this._gradientType=t.gradientType,this._r<1&&(this._r=Math.round(this._r)),this._g<1&&(this._g=Math.round(this._g)),this._b<1&&(this._b=Math.round(this._b)),this._ok=k.ok}function d(e,t,r){e=T(e,255);var o,n,i=Math.max(e,t=T(t,255),r=T(r,255)),a=Math.min(e,t,r),l=(i+a)/2;if(i==a)o=n=0;else{var c=i-a;switch(n=l>.5?c/(2-i-a):c/(i+a),i){case e:o=(t-r)/c+6*(t<r);break;case t:o=(r-e)/c+2;break;case r:o=(e-t)/c+4}o/=6}return{h:o,s:n,l:l}}function f(e,t,r){e=T(e,255);var o,n=Math.max(e,t=T(t,255),r=T(r,255)),i=Math.min(e,t,r),a=n-i;if(n==i)o=0;else{switch(n){case e:o=(t-r)/a+6*(t<r);break;case t:o=(r-e)/a+2;break;case r:o=(e-t)/a+4}o/=6}return{h:o,s:0===n?0:a/n,v:n}}function u(e,t,r,o){var n=[_(Math.round(e).toString(16)),_(Math.round(t).toString(16)),_(Math.round(r).toString(16))];return o&&n[0].charAt(0)==n[0].charAt(1)&&n[1].charAt(0)==n[1].charAt(1)&&n[2].charAt(0)==n[2].charAt(1)?n[0].charAt(0)+n[1].charAt(0)+n[2].charAt(0):n.join("")}function g(e,t,r,o){return[_(L(o)),_(Math.round(e).toString(16)),_(Math.round(t).toString(16)),_(Math.round(r).toString(16))].join("")}function h(e,t){t=0===t?0:t||10;var r=s(e).toHsl();return r.s-=t/100,r.s=A(r.s),s(r)}function p(e,t){t=0===t?0:t||10;var r=s(e).toHsl();return r.s+=t/100,r.s=A(r.s),s(r)}function m(e){return s(e).desaturate(100)}function b(e,t){t=0===t?0:t||10;var r=s(e).toHsl();return r.l+=t/100,r.l=A(r.l),s(r)}function S(e,t){t=0===t?0:t||10;var r=s(e).toRgb();return r.r=Math.max(0,Math.min(255,r.r-Math.round(-(t/100*255)))),r.g=Math.max(0,Math.min(255,r.g-Math.round(-(t/100*255)))),r.b=Math.max(0,Math.min(255,r.b-Math.round(-(t/100*255)))),s(r)}function v(e,t){t=0===t?0:t||10;var r=s(e).toHsl();return r.l-=t/100,r.l=A(r.l),s(r)}function y(e,t){var r=s(e).toHsl(),o=(r.h+t)%360;return r.h=o<0?360+o:o,s(r)}function x(e){var t=s(e).toHsl();return t.h=(t.h+180)%360,s(t)}function M(e,t){if(isNaN(t)||t<=0)throw Error("Argument to polyad must be a positive number");for(var r=s(e).toHsl(),o=[s(e)],n=360/t,i=1;i<t;i++)o.push(s({h:(r.h+i*n)%360,s:r.s,l:r.l}));return o}function B(e){var t=s(e).toHsl(),r=t.h;return[s(e),s({h:(r+72)%360,s:t.s,l:t.l}),s({h:(r+216)%360,s:t.s,l:t.l})]}function H(e,t,r){t=t||6,r=r||30;var o=s(e).toHsl(),n=360/r,i=[s(e)];for(o.h=(o.h-(n*t>>1)+720)%360;--t;)o.h=(o.h+n)%360,i.push(s(o));return i}function w(e,t){t=t||6;for(var r=s(e).toHsv(),o=r.h,n=r.s,i=r.v,a=[],l=1/t;t--;)a.push(s({h:o,s:n,v:i})),i=(i+l)%1;return a}s.prototype={isDark:function(){return 128>this.getBrightness()},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},getLuminance:function(){var e,t,r,o,n,i,a=this.toRgb();return e=a.r/255,t=a.g/255,.2126*(e<=.03928?e/12.92:Math.pow((e+.055)/1.055,2.4))+.7152*(t<=.03928?t/12.92:Math.pow((t+.055)/1.055,2.4))+.0722*((r=a.b/255)<=.03928?r/12.92:Math.pow((r+.055)/1.055,2.4))},setAlpha:function(e){return this._a=I(e),this._roundA=Math.round(100*this._a)/100,this},toHsv:function(){var e=f(this._r,this._g,this._b);return{h:360*e.h,s:e.s,v:e.v,a:this._a}},toHsvString:function(){var e=f(this._r,this._g,this._b),t=Math.round(360*e.h),r=Math.round(100*e.s),o=Math.round(100*e.v);return 1==this._a?"hsv("+t+", "+r+"%, "+o+"%)":"hsva("+t+", "+r+"%, "+o+"%, "+this._roundA+")"},toHsl:function(){var e=d(this._r,this._g,this._b);return{h:360*e.h,s:e.s,l:e.l,a:this._a}},toHslString:function(){var e=d(this._r,this._g,this._b),t=Math.round(360*e.h),r=Math.round(100*e.s),o=Math.round(100*e.l);return 1==this._a?"hsl("+t+", "+r+"%, "+o+"%)":"hsla("+t+", "+r+"%, "+o+"%, "+this._roundA+")"},toHex:function(e){return u(this._r,this._g,this._b,e)},toHexString:function(e){return"#"+this.toHex(e)},toHex8:function(e){var t,r,o,n,i,a;return t=this._r,r=this._g,o=this._b,n=this._a,i=e,a=[_(Math.round(t).toString(16)),_(Math.round(r).toString(16)),_(Math.round(o).toString(16)),_(L(n))],i&&a[0].charAt(0)==a[0].charAt(1)&&a[1].charAt(0)==a[1].charAt(1)&&a[2].charAt(0)==a[2].charAt(1)&&a[3].charAt(0)==a[3].charAt(1)?a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0)+a[3].charAt(0):a.join("")},toHex8String:function(e){return"#"+this.toHex8(e)},toRgb:function(){return{r:Math.round(this._r),g:Math.round(this._g),b:Math.round(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+Math.round(this._r)+", "+Math.round(this._g)+", "+Math.round(this._b)+")":"rgba("+Math.round(this._r)+", "+Math.round(this._g)+", "+Math.round(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:Math.round(100*T(this._r,255))+"%",g:Math.round(100*T(this._g,255))+"%",b:Math.round(100*T(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+Math.round(100*T(this._r,255))+"%, "+Math.round(100*T(this._g,255))+"%, "+Math.round(100*T(this._b,255))+"%)":"rgba("+Math.round(100*T(this._r,255))+"%, "+Math.round(100*T(this._g,255))+"%, "+Math.round(100*T(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":!(this._a<1)&&(k[u(this._r,this._g,this._b,!0)]||!1)},toFilter:function(e){var t="#"+g(this._r,this._g,this._b,this._a),r=t,o=this._gradientType?"GradientType = 1, ":"";if(e){var n=s(e);r="#"+g(n._r,n._g,n._b,n._a)}return"progid:DXImageTransform.Microsoft.gradient("+o+"startColorstr="+t+",endColorstr="+r+")"},toString:function(e){var t=!!e;e=e||this._format;var r=!1,o=this._a<1&&this._a>=0;return!t&&o&&("hex"===e||"hex6"===e||"hex3"===e||"hex4"===e||"hex8"===e||"name"===e)?"name"===e&&0===this._a?this.toName():this.toRgbString():("rgb"===e&&(r=this.toRgbString()),"prgb"===e&&(r=this.toPercentageRgbString()),("hex"===e||"hex6"===e)&&(r=this.toHexString()),"hex3"===e&&(r=this.toHexString(!0)),"hex4"===e&&(r=this.toHex8String(!0)),"hex8"===e&&(r=this.toHex8String()),"name"===e&&(r=this.toName()),"hsl"===e&&(r=this.toHslString()),"hsv"===e&&(r=this.toHsvString()),r||this.toHexString())},clone:function(){return s(this.toString())},_applyModification:function(e,t){var r=e.apply(null,[this].concat([].slice.call(t)));return this._r=r._r,this._g=r._g,this._b=r._b,this.setAlpha(r._a),this},lighten:function(){return this._applyModification(b,arguments)},brighten:function(){return this._applyModification(S,arguments)},darken:function(){return this._applyModification(v,arguments)},desaturate:function(){return this._applyModification(h,arguments)},saturate:function(){return this._applyModification(p,arguments)},greyscale:function(){return this._applyModification(m,arguments)},spin:function(){return this._applyModification(y,arguments)},_applyCombination:function(e,t){return e.apply(null,[this].concat([].slice.call(t)))},analogous:function(){return this._applyCombination(H,arguments)},complement:function(){return this._applyCombination(x,arguments)},monochromatic:function(){return this._applyCombination(w,arguments)},splitcomplement:function(){return this._applyCombination(B,arguments)},triad:function(){return this._applyCombination(M,[3])},tetrad:function(){return this._applyCombination(M,[4])}},s.fromRatio=function(e,t){if("object"==o(e)){var r={};for(var n in e)e.hasOwnProperty(n)&&("a"===n?r[n]=e[n]:r[n]=P(e[n]));e=r}return s(e,t)},s.equals=function(e,t){return!!e&&!!t&&s(e).toRgbString()==s(t).toRgbString()},s.random=function(){return s.fromRatio({r:Math.random(),g:Math.random(),b:Math.random()})},s.mix=function(e,t,r){r=0===r?0:r||50;var o=s(e).toRgb(),n=s(t).toRgb(),i=r/100;return s({r:(n.r-o.r)*i+o.r,g:(n.g-o.g)*i+o.g,b:(n.b-o.b)*i+o.b,a:(n.a-o.a)*i+o.a})},s.readability=function(e,t){var r=s(e),o=s(t);return(Math.max(r.getLuminance(),o.getLuminance())+.05)/(Math.min(r.getLuminance(),o.getLuminance())+.05)},s.isReadable=function(e,t,r){var o,n,i,a,l,c=s.readability(e,t);switch(l=!1,(n=((o=(o=r)||{level:"AA",size:"small"}).level||"AA").toUpperCase(),i=(o.size||"small").toLowerCase(),"AA"!==n&&"AAA"!==n&&(n="AA"),"small"!==i&&"large"!==i&&(i="small"),a={level:n,size:i}).level+a.size){case"AAsmall":case"AAAlarge":l=c>=4.5;break;case"AAlarge":l=c>=3;break;case"AAAsmall":l=c>=7}return l},s.mostReadable=function(e,t,r){var o,n,i,a,l=null,c=0;n=(r=r||{}).includeFallbackColors,i=r.level,a=r.size;for(var d=0;d<t.length;d++)(o=s.readability(e,t[d]))>c&&(c=o,l=s(t[d]));return s.isReadable(e,l,{level:i,size:a})||!n?l:(r.includeFallbackColors=!1,s.mostReadable(e,["#fff","#000"],r))};var C=s.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},k=s.hexNames=function(e){var t={};for(var r in e)e.hasOwnProperty(r)&&(t[e[r]]=r);return t}(C);function I(e){return(isNaN(e=parseFloat(e))||e<0||e>1)&&(e=1),e}function T(e,t){"string"==typeof(r=e)&&-1!=r.indexOf(".")&&1===parseFloat(r)&&(e="100%");var r,o,n="string"==typeof(o=e)&&-1!=o.indexOf("%");return(e=Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(e*t,10)/100),1e-6>Math.abs(e-t))?1:e%t/parseFloat(t)}function A(e){return Math.min(1,Math.max(0,e))}function z(e){return parseInt(e,16)}function _(e){return 1==e.length?"0"+e:""+e}function P(e){return e<=1&&(e=100*e+"%"),e}function L(e){return Math.round(255*parseFloat(e)).toString(16)}var E=(i="[\\s|\\(]+("+(n="(?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?)")+")[,|\\s]+("+n+")[,|\\s]+("+n+")\\s*\\)?",a="[\\s|\\(]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")\\s*\\)?",{CSS_UNIT:new RegExp(n),rgb:RegExp("rgb"+i),rgba:RegExp("rgba"+a),hsl:RegExp("hsl"+i),hsla:RegExp("hsla"+a),hsv:RegExp("hsv"+i),hsva:RegExp("hsva"+a),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/});function D(e){return!!E.CSS_UNIT.exec(e)}},2017:function(e){"use strict";e.exports=JSON.parse('{"Upload":{"global":["fontSizeHeading3","fontHeight","lineWidth","controlHeightLG","colorTextDisabled","colorText","fontSize","lineHeight","fontFamily","colorFillAlter","colorBorder","borderRadiusLG","motionDurationSlow","padding","lineWidthFocus","colorPrimaryBorder","colorPrimaryHover","margin","colorPrimary","marginXXS","colorTextHeading","fontSizeLG","colorTextDescription","paddingXS","lineType","paddingSM","fontSizeHeading2","colorError","colorErrorBg","colorTextLightSolid","marginXS","colorBgMask","marginXL","borderRadiusSM","controlItemBgHover","motionEaseInOutCirc","motionDurationMid","motionEaseInOut"],"component":{"actionsColor":"rgba(0,0,0,0.45)"}},"TreeSelect":{"global":["colorBgElevated","paddingXS","colorTextQuaternary","controlItemBgActiveDisabled","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","colorPrimary","colorTextDisabled","controlItemBgHover","controlInteractiveSize","colorBgTextHover","colorBorder","motionDurationMid","lineWidthBold","marginXS","borderRadiusSM","colorBgContainer","lineWidth","lineType","colorWhite","motionDurationFast","motionEaseInBack","colorPrimaryHover","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled"],"component":{"titleHeight":24,"indentSize":24,"nodeHoverBg":"rgba(0,0,0,0.04)","nodeHoverColor":"rgba(0,0,0,0.88)","nodeSelectedBg":"#e6f4ff","nodeSelectedColor":"rgba(0,0,0,0.88)"}},"Tree":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled","colorTextQuaternary","controlItemBgActiveDisabled","borderRadius","controlItemBgHover","colorBgTextHover","motionEaseInOut"],"component":{"titleHeight":24,"indentSize":24,"nodeHoverBg":"rgba(0,0,0,0.04)","nodeHoverColor":"rgba(0,0,0,0.88)","nodeSelectedBg":"#e6f4ff","nodeSelectedColor":"rgba(0,0,0,0.88)","directoryNodeSelectedColor":"#fff","directoryNodeSelectedBg":"#1677ff"}},"Transfer":{"global":["marginXS","marginXXS","fontSizeIcon","colorBgContainerDisabled","colorText","fontSize","lineHeight","fontFamily","colorBorder","colorSplit","lineWidth","controlItemBgActive","colorTextDisabled","colorTextSecondary","paddingSM","lineType","motionDurationSlow","controlItemBgHover","borderRadiusLG","colorBgContainer","controlItemBgActiveHover","colorLink","linkDecoration","lineWidthFocus","colorPrimaryBorder","colorLinkHover","colorLinkActive","paddingXS","controlHeightLG","colorError","colorWarning"],"component":{"listWidth":180,"listHeight":200,"listWidthLG":250,"headerHeight":40,"itemHeight":32,"itemPaddingBlock":5,"transferHeaderVerticalPadding":9}},"Tour":{"global":["borderRadiusLG","padding","paddingXS","borderRadius","borderRadiusXS","colorPrimary","colorFill","boxShadowTertiary","colorBgElevated","fontWeightStrong","marginXS","colorTextLightSolid","colorWhite","motionDurationSlow","colorText","fontSize","lineHeight","fontFamily","colorIcon","borderRadiusSM","motionDurationMid","colorIconHover","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","boxShadowPopoverArrow","sizePopupArrow"],"component":{"zIndexPopup":1070,"closeBtnSize":22,"primaryPrevBtnBg":"rgba(255,255,255,0.15)","primaryNextBtnHoverBg":"rgb(240,240,240)","arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path(\'M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z\')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Tooltip":{"global":["borderRadius","colorTextLightSolid","colorBgSpotlight","controlHeight","boxShadowSecondary","paddingSM","paddingXS","sizePopupArrow","colorText","fontSize","lineHeight","fontFamily","blue1","blue3","blue6","blue7","purple1","purple3","purple6","purple7","cyan1","cyan3","cyan6","cyan7","green1","green3","green6","green7","magenta1","magenta3","magenta6","magenta7","pink1","pink3","pink6","pink7","red1","red3","red6","red7","orange1","orange3","orange6","orange7","yellow1","yellow3","yellow6","yellow7","volcano1","volcano3","volcano6","volcano7","geekblue1","geekblue3","geekblue6","geekblue7","lime1","lime3","lime6","lime7","gold1","gold3","gold6","gold7","boxShadowPopoverArrow","borderRadiusXS","motionDurationFast","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1070,"arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path(\'M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z\')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Timeline":{"global":["paddingXXS","colorText","fontSize","lineHeight","fontFamily","lineType","fontSizeSM","colorPrimary","colorError","colorSuccess","colorTextDisabled","lineWidth","margin","controlHeightLG","marginXXS","marginSM","marginXS"],"component":{"tailColor":"rgba(5,5,5,0.06)","tailWidth":2,"dotBorderWidth":2,"dotBg":"#ffffff","itemPaddingBottom":20}},"Tag":{"global":["lineWidth","fontSizeIcon","fontSizeSM","lineHeightSM","paddingXXS","colorText","fontSize","lineHeight","fontFamily","marginXS","lineType","colorBorder","borderRadiusSM","motionDurationMid","colorTextDescription","colorTextHeading","colorTextLightSolid","colorPrimary","colorFillSecondary","colorPrimaryHover","colorPrimaryActive"],"component":{"defaultBg":"#fafafa","defaultColor":"rgba(0,0,0,0.88)"}},"Table":{"global":["colorTextHeading","colorSplit","colorBgContainer","controlInteractiveSize","padding","fontWeightStrong","lineWidth","lineType","motionDurationMid","colorText","fontSize","lineHeight","fontFamily","margin","paddingXS","marginXXS","fontSizeIcon","motionDurationSlow","colorPrimary","paddingXXS","fontSizeSM","borderRadius","colorTextDescription","colorTextDisabled","controlItemBgHover","controlItemBgActive","boxShadowSecondary","colorLink","linkDecoration","lineWidthFocus","colorPrimaryBorder","colorLinkHover","colorLinkActive","opacityLoading"],"component":{"headerBg":"#fafafa","headerColor":"rgba(0,0,0,0.88)","headerSortActiveBg":"#f0f0f0","headerSortHoverBg":"#f0f0f0","bodySortBg":"#fafafa","rowHoverBg":"#fafafa","rowSelectedBg":"#e6f4ff","rowSelectedHoverBg":"#bae0ff","rowExpandedBg":"rgba(0,0,0,0.02)","cellPaddingBlock":16,"cellPaddingInline":16,"cellPaddingBlockMD":12,"cellPaddingInlineMD":8,"cellPaddingBlockSM":8,"cellPaddingInlineSM":8,"borderColor":"#f0f0f0","headerBorderRadius":8,"footerBg":"#fafafa","footerColor":"rgba(0,0,0,0.88)","cellFontSize":14,"cellFontSizeMD":14,"cellFontSizeSM":14,"headerSplitColor":"#f0f0f0","fixedHeaderSortActiveBg":"#f0f0f0","headerFilterHoverBg":"rgba(0,0,0,0.06)","filterDropdownMenuBg":"#ffffff","filterDropdownBg":"#ffffff","expandIconBg":"#ffffff","selectionColumnWidth":32,"stickyScrollBarBg":"rgba(0,0,0,0.25)","stickyScrollBarBorderRadius":100,"expandIconMarginTop":2.5,"headerIconColor":"rgba(0,0,0,0.29250000000000004)","headerIconHoverColor":"rgba(0,0,0,0.5720000000000001)","expandIconHalfInner":7,"expandIconSize":17,"expandIconScale":0.9411764705882353}},"Switch":{"global":["motionDurationMid","colorPrimary","opacityLoading","fontSizeIcon","colorText","fontSize","lineHeight","fontFamily","colorTextQuaternary","colorTextTertiary","lineWidthFocus","colorPrimaryBorder","colorPrimaryHover","colorTextLightSolid","fontSizeSM","marginXXS"],"component":{"trackHeight":22,"trackHeightSM":16,"trackMinWidth":44,"trackMinWidthSM":28,"trackPadding":2,"handleBg":"#fff","handleSize":18,"handleSizeSM":12,"handleShadow":"0 2px 4px 0 rgba(0,35,11,0.2)","innerMinMargin":9,"innerMaxMargin":24,"innerMinMarginSM":6,"innerMaxMarginSM":18}},"Steps":{"global":["colorTextDisabled","controlHeightLG","colorTextLightSolid","colorText","colorPrimary","colorTextDescription","colorTextQuaternary","colorError","colorBorderSecondary","colorSplit","fontSize","lineHeight","fontFamily","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","marginXS","lineWidth","lineType","padding","fontSizeLG","fontWeightStrong","fontSizeSM","paddingSM","paddingXXS","margin","controlHeight","marginXXS","paddingLG","marginSM","paddingXS","controlHeightSM","fontSizeIcon","lineWidthBold","marginLG","borderRadiusSM","motionDurationMid","controlItemBgHover","lineHeightSM","colorBorderBg"],"component":{"titleLineHeight":32,"customIconSize":32,"customIconTop":0,"customIconFontSize":24,"iconSize":32,"iconTop":-0.5,"iconFontSize":14,"iconSizeSM":24,"dotSize":8,"dotCurrentSize":10,"navArrowColor":"rgba(0,0,0,0.25)","navContentMaxWidth":"auto","descriptionMaxWidth":140,"waitIconColor":"rgba(0,0,0,0.25)","waitIconBgColor":"#ffffff","waitIconBorderColor":"rgba(0,0,0,0.25)","finishIconBgColor":"#ffffff","finishIconBorderColor":"#1677ff"}},"Statistic":{"global":["marginXXS","padding","colorTextDescription","colorTextHeading","fontFamily","colorText","fontSize","lineHeight"],"component":{"titleFontSize":14,"contentFontSize":24}},"Splitter":{"global":["colorFill","controlItemBgHover","controlItemBgActive","controlItemBgActiveHover","colorPrimary","colorText","fontSize","lineHeight","fontFamily","zIndexPopupBase","fontSizeSM","borderRadiusXS","controlHeightSM"],"component":{"splitBarSize":2,"splitTriggerSize":6,"splitBarDraggableSize":20,"resizeSpinnerSize":20}},"Spin":{"global":["colorTextDescription","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionEaseInOutCirc","colorBgMask","zIndexPopupBase","motionDurationMid","colorWhite","colorTextLightSolid","colorBgContainer","marginXXS","colorFillSecondary"],"component":{"contentHeight":400,"dotSize":20,"dotSizeSM":14,"dotSizeLG":32}},"Space":{"global":["paddingXS","padding","paddingLG"],"component":{}},"Slider":{"global":["controlHeight","controlHeightLG","colorFillContentHover","motionDurationMid","colorText","fontSize","lineHeight","fontFamily","borderRadiusXS","colorPrimaryBorderHover","colorBgElevated","colorTextDescription","motionDurationSlow"],"component":{"controlSize":10,"railSize":4,"handleSize":10,"handleSizeHover":12,"dotSize":8,"handleLineWidth":2,"handleLineWidthHover":2.5,"railBg":"rgba(0,0,0,0.04)","railHoverBg":"rgba(0,0,0,0.06)","trackBg":"#91caff","trackHoverBg":"#69b1ff","handleColor":"#91caff","handleActiveColor":"#1677ff","handleActiveOutlineColor":"rgba(22,119,255,0.2)","handleColorDisabled":"#bfbfbf","dotBorderColor":"#f0f0f0","dotActiveBorderColor":"#91caff","trackBgDisabled":"rgba(0,0,0,0.04)"}},"Skeleton":{"global":["controlHeight","controlHeightLG","controlHeightSM","padding","marginSM","controlHeightXS","borderRadiusSM"],"component":{"color":"rgba(0,0,0,0.06)","colorGradientEnd":"rgba(0,0,0,0.15)","gradientFromColor":"rgba(0,0,0,0.06)","gradientToColor":"rgba(0,0,0,0.15)","titleHeight":16,"blockRadius":4,"paragraphMarginTop":28,"paragraphLiHeight":16}},"Tabs":{"global":["paddingXXS","borderRadius","marginSM","marginXS","marginXXS","margin","colorBorderSecondary","lineWidth","lineType","lineWidthBold","motionDurationSlow","controlHeight","boxShadowTabsOverflowLeft","boxShadowTabsOverflowRight","boxShadowTabsOverflowTop","boxShadowTabsOverflowBottom","colorBorder","paddingLG","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","borderRadiusLG","boxShadowSecondary","paddingSM","colorTextDescription","fontSizeSM","controlItemBgHover","colorTextDisabled","motionEaseInOut","lineWidthFocus","colorPrimaryBorder","controlHeightLG","paddingXS","colorTextHeading","motionDurationMid","motionEaseOutQuint","motionEaseInQuint"],"component":{"zIndexPopup":1050,"cardBg":"rgba(0,0,0,0.02)","cardHeight":40,"cardPadding":"8px 16px","cardPaddingSM":"6px 16px","cardPaddingLG":"8px 16px 6px","titleFontSize":14,"titleFontSizeLG":16,"titleFontSizeSM":14,"inkBarColor":"#1677ff","horizontalMargin":"0 0 16px 0","horizontalItemGutter":32,"horizontalItemMargin":"","horizontalItemMarginRTL":"","horizontalItemPadding":"12px 0","horizontalItemPaddingSM":"8px 0","horizontalItemPaddingLG":"16px 0","verticalItemPadding":"8px 24px","verticalItemMargin":"16px 0 0 0","itemColor":"rgba(0,0,0,0.88)","itemSelectedColor":"#1677ff","itemHoverColor":"#4096ff","itemActiveColor":"#0958d9","cardGutter":2}},"Typography":{"global":["colorText","lineHeight","colorTextDescription","colorSuccess","colorWarning","colorError","colorErrorActive","colorErrorHover","colorTextDisabled","fontSizeHeading1","lineHeightHeading1","colorTextHeading","fontWeightStrong","fontSizeHeading2","lineHeightHeading2","fontSizeHeading3","lineHeightHeading3","fontSizeHeading4","lineHeightHeading4","fontSizeHeading5","lineHeightHeading5","fontFamilyCode","colorLink","linkDecoration","motionDurationSlow","lineWidthFocus","colorPrimaryBorder","colorLinkHover","colorLinkActive","marginXXS","paddingSM","marginXS","fontSize"],"component":{"titleMarginTop":"1.2em","titleMarginBottom":"0.5em"}},"Pagination":{"global":["marginXXS","controlHeightLG","marginSM","paddingXXS","colorText","fontSize","lineHeight","fontFamily","marginXS","lineWidth","lineType","borderRadius","motionDurationMid","colorBgTextHover","colorBgTextActive","fontWeightStrong","colorPrimary","colorPrimaryHover","fontSizeSM","colorTextDisabled","margin","controlHeight","colorTextPlaceholder","motionDurationSlow","lineHeightLG","borderRadiusLG","borderRadiusSM","colorBorder","colorBgContainer","colorBgContainerDisabled","controlOutlineWidth","controlOutline","controlHeightSM","screenLG","screenSM","lineWidthFocus","colorPrimaryBorder"],"component":{"itemBg":"#ffffff","itemSize":32,"itemSizeSM":24,"itemActiveBg":"#ffffff","itemLinkBg":"#ffffff","itemActiveColorDisabled":"rgba(0,0,0,0.25)","itemActiveBgDisabled":"rgba(0,0,0,0.15)","itemInputBg":"#ffffff","miniOptionsSizeChangerTop":0,"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0,0,0,0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5,145,255,0.1)","errorActiveShadow":"0 0 0 2px rgba(255,38,5,0.06)","warningActiveShadow":"0 0 0 2px rgba(255,215,5,0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14}},"Notification":{"global":["paddingMD","paddingLG","colorBgElevated","fontSizeLG","lineHeightLG","controlHeightLG","margin","paddingContentHorizontalLG","marginLG","colorPrimaryBorderHover","colorPrimary","motionDurationMid","motionEaseInOut","colorText","fontSize","lineHeight","fontFamily","boxShadow","borderRadiusLG","colorSuccess","colorInfo","colorWarning","colorError","colorTextHeading","marginXS","marginSM","colorIcon","borderRadiusSM","colorIconHover","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","motionDurationSlow","colorBgBlur"],"component":{"zIndexPopup":2050,"width":384}},"Modal":{"global":["padding","fontSizeHeading5","lineHeightHeading5","colorSplit","lineType","lineWidth","colorIcon","colorIconHover","controlHeight","fontHeight","screenSMMax","marginXS","colorText","fontSize","lineHeight","fontFamily","margin","paddingLG","fontWeightStrong","borderRadiusLG","boxShadow","zIndexPopupBase","borderRadiusSM","motionDurationMid","fontSizeLG","colorBgTextHover","colorBgTextActive","lineWidthFocus","colorPrimaryBorder","motionDurationSlow","colorBgMask","motionEaseOutCirc","motionEaseInOutCirc","screenXSMin","screenSMMin","screenMDMin","screenLGMin","screenXLMin","screenXXLMin"],"component":{"footerBg":"transparent","headerBg":"#ffffff","titleLineHeight":1.5,"titleFontSize":16,"contentBg":"#ffffff","titleColor":"rgba(0,0,0,0.88)","contentPadding":0,"headerPadding":"16px 24px","headerBorderBottom":"1px solid rgba(5,5,5,0.06)","headerMarginBottom":0,"bodyPadding":24,"footerPadding":"8px 16px","footerBorderTop":"1px solid rgba(5,5,5,0.06)","footerBorderRadius":"0 0 8px 8px","footerMarginTop":0,"confirmBodyPadding":"32px 32px 24px","confirmIconMarginInlineEnd":16,"confirmBtnsMarginTop":24}},"ColorPicker":{"global":["colorTextQuaternary","marginSM","colorPrimary","motionDurationMid","colorBgElevated","colorTextDisabled","colorText","colorBgContainerDisabled","borderRadius","marginXS","controlHeight","controlHeightSM","colorBgTextActive","lineWidth","colorBorder","paddingXXS","fontSize","colorPrimaryHover","controlOutline","controlHeightLG","borderRadiusSM","colorFillSecondary","lineWidthBold","colorPrimaryActive","fontSizeSM","lineHeightSM","marginXXS","fontSizeIcon","paddingXS","colorTextPlaceholder","colorFill","colorWhite","fontHeightSM","motionEaseInBack","motionDurationFast","motionEaseOutBack","colorSplit","red6","controlOutlineWidth","colorError","colorWarning","colorErrorHover","colorWarningHover","colorErrorOutline","colorWarningOutline","controlHeightXS","borderRadiusXS","borderRadiusLG","fontSizeLG"],"component":{}},"Collapse":{"global":["paddingXS","paddingSM","padding","paddingLG","borderRadiusLG","lineWidth","lineType","colorBorder","colorText","colorTextHeading","colorTextDisabled","fontSizeLG","lineHeight","lineHeightLG","marginSM","motionDurationSlow","fontSizeIcon","fontHeight","fontHeightLG","fontSize","fontFamily","lineWidthFocus","colorPrimaryBorder","paddingXXS","motionDurationMid","motionEaseInOut"],"component":{"headerPadding":"12px 16px","headerBg":"rgba(0,0,0,0.02)","contentPadding":"16px 16px","contentBg":"#ffffff"}},"Checkbox":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled"],"component":{}},"Form":{"global":["colorText","fontSize","lineHeight","fontFamily","marginLG","colorTextDescription","fontSizeLG","lineWidth","lineType","colorBorder","controlOutlineWidth","controlOutline","paddingSM","controlHeightSM","controlHeightLG","colorError","colorWarning","marginXXS","controlHeight","motionDurationMid","motionEaseOut","motionEaseOutBack","colorSuccess","colorPrimary","motionDurationFast","motionEaseInOut","margin","screenXSMax","screenSMMax","screenMDMax","screenLGMax"],"component":{"labelRequiredMarkColor":"#ff4d4f","labelColor":"rgba(0,0,0,0.88)","labelFontSize":14,"labelHeight":32,"labelColonMarginInlineStart":2,"labelColonMarginInlineEnd":8,"itemMarginBottom":24,"verticalLabelPadding":"0 0 8px","verticalLabelMargin":0,"inlineItemMarginBottom":0}},"Button":{"global":["opacityLoading","motionDurationSlow","motionEaseInOut","marginXS","lineWidth","lineType","motionDurationMid","colorText","lineWidthFocus","colorPrimaryBorder","controlHeight","borderRadius","controlHeightSM","paddingXS","borderRadiusSM","controlHeightLG","borderRadiusLG","colorBgSolid","colorBgSolidHover","colorBgSolidActive","colorTextDisabled","colorBgContainerDisabled","colorFillTertiary","colorFillSecondary","colorFill","colorBorder","colorLinkHover","colorLinkActive","colorPrimary","colorBgContainer","colorPrimaryTextHover","colorPrimaryHover","colorPrimaryTextActive","colorPrimaryActive","colorPrimaryBg","colorPrimaryBgHover","colorPrimaryText","colorError","colorErrorHover","colorErrorActive","colorErrorBorderHover","colorErrorBg","colorErrorBgFilledHover","colorErrorBgActive","colorLink","colorInfo","colorInfoHover","colorInfoActive","blue6","blue1","blue5","blue2","blue3","blue7","colorTextLightSolid","purple6","purple1","purple5","purple2","purple3","purple7","cyan6","cyan1","cyan5","cyan2","cyan3","cyan7","green6","green1","green5","green2","green3","green7","magenta6","magenta1","magenta5","magenta2","magenta3","magenta7","pink6","pink1","pink5","pink2","pink3","pink7","red6","red1","red5","red2","red3","red7","orange6","orange1","orange5","orange2","orange3","orange7","yellow6","yellow1","yellow5","yellow2","yellow3","yellow7","volcano6","volcano1","volcano5","volcano2","volcano3","volcano7","geekblue6","geekblue1","geekblue5","geekblue2","geekblue3","geekblue7","lime6","lime1","lime5","lime2","lime3","lime7","gold6","gold1","gold5","gold2","gold3","gold7","colorBgTextActive","fontSize"],"component":{"blueShadowColor":"0 2px 0 rgba(5,145,255,0.1)","purpleShadowColor":"0 2px 0 rgba(155,5,255,0.06)","cyanShadowColor":"0 2px 0 rgba(5,255,215,0.1)","greenShadowColor":"0 2px 0 rgba(142,255,30,0.08)","magentaShadowColor":"0 2px 0 rgba(255,5,105,0.06)","pinkShadowColor":"0 2px 0 rgba(255,5,105,0.06)","redShadowColor":"0 2px 0 rgba(255,22,5,0.06)","orangeShadowColor":"0 2px 0 rgba(255,175,5,0.1)","yellowShadowColor":"0 2px 0 rgba(245,255,5,0.1)","volcanoShadowColor":"0 2px 0 rgba(255,125,25,0.1)","geekblueShadowColor":"0 2px 0 rgba(5,88,255,0.06)","limeShadowColor":"0 2px 0 rgba(225,255,5,0.1)","goldShadowColor":"0 2px 0 rgba(255,215,5,0.1)","fontWeight":400,"defaultShadow":"0 2px 0 rgba(0,0,0,0.02)","primaryShadow":"0 2px 0 rgba(5,145,255,0.1)","dangerShadow":"0 2px 0 rgba(255,38,5,0.06)","primaryColor":"#fff","dangerColor":"#fff","borderColorDisabled":"#d9d9d9","defaultGhostColor":"#ffffff","ghostBg":"transparent","defaultGhostBorderColor":"#ffffff","paddingInline":15,"paddingInlineLG":15,"paddingInlineSM":7,"onlyIconSize":"inherit","onlyIconSizeSM":"inherit","onlyIconSizeLG":"inherit","groupBorderColor":"#4096ff","linkHoverBg":"transparent","textTextColor":"rgba(0,0,0,0.88)","textTextHoverColor":"rgba(0,0,0,0.88)","textTextActiveColor":"rgba(0,0,0,0.88)","textHoverBg":"rgba(0,0,0,0.04)","defaultColor":"rgba(0,0,0,0.88)","defaultBg":"#ffffff","defaultBorderColor":"#d9d9d9","defaultBorderColorDisabled":"#d9d9d9","defaultHoverBg":"#ffffff","defaultHoverColor":"#4096ff","defaultHoverBorderColor":"#4096ff","defaultActiveBg":"#ffffff","defaultActiveColor":"#0958d9","defaultActiveBorderColor":"#0958d9","solidTextColor":"#fff","contentFontSize":14,"contentFontSizeSM":14,"contentFontSizeLG":16,"contentLineHeight":1.5714285714285714,"contentLineHeightSM":1.5714285714285714,"contentLineHeightLG":1.5,"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7}},"Breadcrumb":{"global":["colorText","fontSize","lineHeight","fontFamily","motionDurationMid","paddingXXS","borderRadiusSM","fontHeight","marginXXS","colorBgTextHover","lineWidthFocus","colorPrimaryBorder","fontSizeIcon"],"component":{"itemColor":"rgba(0,0,0,0.45)","lastItemColor":"rgba(0,0,0,0.88)","iconFontSize":14,"linkColor":"rgba(0,0,0,0.45)","linkHoverColor":"rgba(0,0,0,0.88)","separatorColor":"rgba(0,0,0,0.45)","separatorMargin":8}},"DatePicker":{"global":["paddingXXS","controlHeightLG","padding","paddingSM","controlHeight","lineWidth","colorPrimary","colorPrimaryBorder","lineType","colorSplit","colorTextDisabled","colorBorder","borderRadius","motionDurationMid","colorTextPlaceholder","fontSizeLG","controlHeightSM","paddingXS","marginXS","colorTextDescription","lineWidthBold","motionDurationSlow","sizePopupArrow","colorBgElevated","borderRadiusLG","boxShadowSecondary","borderRadiusSM","boxShadowPopoverArrow","fontHeight","fontHeightLG","lineHeightLG","colorText","fontSize","lineHeight","fontFamily","colorBgContainer","colorTextHeading","colorIcon","colorIconHover","fontWeightStrong","colorTextLightSolid","controlItemBgActive","marginXXS","colorFillSecondary","colorTextTertiary","borderRadiusXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0,0,0,0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5,145,255,0.1)","errorActiveShadow":"0 0 0 2px rgba(255,38,5,0.06)","warningActiveShadow":"0 0 0 2px rgba(255,215,5,0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"INTERNAL_FIXED_ITEM_MARGIN":2,"cellHoverBg":"rgba(0,0,0,0.04)","cellActiveWithRangeBg":"#e6f4ff","cellHoverWithRangeBg":"#cbe0fd","cellRangeBorderColor":"#82b4f9","cellBgDisabled":"rgba(0,0,0,0.04)","timeColumnWidth":56,"timeColumnHeight":224,"timeCellHeight":28,"cellWidth":36,"cellHeight":24,"textHeight":40,"withoutTimeCellHeight":66,"multipleItemBg":"rgba(0,0,0,0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0,0,0,0.04)","multipleItemColorDisabled":"rgba(0,0,0,0.25)","multipleItemBorderColorDisabled":"transparent","arrowShadowWidth":8.970562748477143,"arrowPath":"path(\'M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z\')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)","presetsWidth":120,"presetsMaxWidth":200,"zIndexPopup":1050}},"Anchor":{"global":["fontSize","fontSizeLG","paddingXXS","motionDurationSlow","lineWidthBold","colorPrimary","lineType","colorSplit","colorText","lineHeight","fontFamily","lineWidth"],"component":{"linkPaddingBlock":4,"linkPaddingInlineStart":16}},"Alert":{"global":["motionDurationSlow","marginXS","marginSM","fontSize","fontSizeLG","lineHeight","borderRadiusLG","motionEaseInOutCirc","colorText","colorTextHeading","fontFamily","colorSuccess","colorSuccessBorder","colorSuccessBg","colorWarning","colorWarningBorder","colorWarningBg","colorError","colorErrorBorder","colorErrorBg","colorInfo","colorInfoBorder","colorInfoBg","lineWidth","lineType","motionDurationMid","fontSizeIcon","colorIcon","colorIconHover"],"component":{"withDescriptionIconSize":24,"defaultPadding":"8px 12px","withDescriptionPadding":"20px 24px"}},"Affix":{"global":[],"component":{"zIndexPopup":10}},"Select":{"global":["paddingSM","controlHeight","colorText","fontSize","lineHeight","fontFamily","motionDurationMid","motionEaseInOut","colorTextPlaceholder","fontSizeIcon","colorTextQuaternary","motionDurationSlow","colorTextTertiary","colorBgBase","paddingXS","controlPaddingHorizontalSM","lineWidth","borderRadius","controlHeightSM","borderRadiusSM","fontSizeLG","borderRadiusLG","borderRadiusXS","controlHeightLG","controlPaddingHorizontal","paddingXXS","colorIcon","colorIconHover","colorBgElevated","boxShadowSecondary","colorTextDescription","fontSizeSM","colorPrimary","colorBgContainerDisabled","colorTextDisabled","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorBorder","controlOutlineWidth","lineType","colorError","colorErrorHover","colorErrorOutline","colorWarning","colorWarningHover","colorWarningOutline","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorWarningBg","colorWarningBgHover","colorBgContainer","colorSplit"],"component":{"INTERNAL_FIXED_ITEM_MARGIN":2,"zIndexPopup":1050,"optionSelectedColor":"rgba(0,0,0,0.88)","optionSelectedFontWeight":600,"optionSelectedBg":"#e6f4ff","optionActiveBg":"rgba(0,0,0,0.04)","optionPadding":"5px 12px","optionFontSize":14,"optionLineHeight":1.5714285714285714,"optionHeight":32,"selectorBg":"#ffffff","clearBg":"#ffffff","singleItemHeightLG":40,"multipleItemBg":"rgba(0,0,0,0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0,0,0,0.04)","multipleItemColorDisabled":"rgba(0,0,0,0.25)","multipleItemBorderColorDisabled":"transparent","showArrowPaddingInlineEnd":18,"hoverBorderColor":"#4096ff","activeBorderColor":"#1677ff","activeOutlineColor":"rgba(5,145,255,0.1)","selectAffixPadding":4}},"Segmented":{"global":["lineWidth","controlPaddingHorizontal","controlPaddingHorizontalSM","controlHeight","controlHeightLG","controlHeightSM","colorText","fontSize","lineHeight","fontFamily","borderRadius","motionDurationMid","motionEaseInOut","lineWidthFocus","colorPrimaryBorder","paddingXXS","borderRadiusSM","boxShadowTertiary","marginSM","motionDurationSlow","borderRadiusLG","fontSizeLG","borderRadiusXS","colorTextDisabled"],"component":{"trackPadding":2,"trackBg":"#f5f5f5","itemColor":"rgba(0,0,0,0.65)","itemHoverColor":"rgba(0,0,0,0.88)","itemHoverBg":"rgba(0,0,0,0.06)","itemSelectedBg":"#ffffff","itemActiveBg":"rgba(0,0,0,0.15)","itemSelectedColor":"rgba(0,0,0,0.88)"}},"Result":{"global":["colorInfo","colorError","colorSuccess","colorWarning","lineHeightHeading3","padding","paddingXL","paddingXS","paddingLG","marginXS","lineHeight","colorTextHeading","colorTextDescription","colorFillAlter"],"component":{"titleFontSize":24,"subtitleFontSize":14,"iconFontSize":72,"extraMargin":"24px 0 0 0"}},"Rate":{"global":["colorText","fontSize","lineHeight","fontFamily","marginXS","motionDurationMid","lineWidth"],"component":{"starColor":"#fadb14","starSize":20,"starHoverScale":"scale(1.1)","starBg":"rgba(0,0,0,0.06)"}},"Radio":{"global":["controlOutline","controlOutlineWidth","colorText","fontSize","lineHeight","fontFamily","colorPrimary","motionDurationSlow","motionDurationMid","motionEaseInOutCirc","colorBgContainer","colorBorder","lineWidth","colorBgContainerDisabled","colorTextDisabled","paddingXS","lineType","lineWidthFocus","colorPrimaryBorder","controlHeight","fontSizeLG","controlHeightLG","controlHeightSM","borderRadius","borderRadiusSM","borderRadiusLG","colorPrimaryHover","colorPrimaryActive"],"component":{"radioSize":16,"dotSize":8,"dotColorDisabled":"rgba(0,0,0,0.25)","buttonSolidCheckedColor":"#fff","buttonSolidCheckedBg":"#1677ff","buttonSolidCheckedHoverBg":"#4096ff","buttonSolidCheckedActiveBg":"#0958d9","buttonBg":"#ffffff","buttonCheckedBg":"#ffffff","buttonColor":"rgba(0,0,0,0.88)","buttonCheckedBgDisabled":"rgba(0,0,0,0.15)","buttonCheckedColorDisabled":"rgba(0,0,0,0.25)","buttonPaddingInline":15,"wrapperMarginInlineEnd":8,"radioColor":"#1677ff","radioBgColor":"#ffffff"}},"Message":{"global":["boxShadow","colorText","colorSuccess","colorError","colorWarning","colorInfo","fontSizeLG","motionEaseInOutCirc","motionDurationSlow","marginXS","paddingXS","borderRadiusLG","fontSize","lineHeight","fontFamily"],"component":{"zIndexPopup":2010,"contentBg":"#ffffff","contentPadding":"9px 12px"}},"QRCode":{"global":["colorText","lineWidth","lineType","colorSplit","fontSize","lineHeight","fontFamily","paddingSM","colorWhite","borderRadiusLG","marginXS","controlHeight"],"component":{"QRCodeMaskBackgroundColor":"rgba(255,255,255,0.96)"}},"FloatButton":{"global":["colorTextLightSolid","colorBgElevated","controlHeightLG","marginXXL","marginLG","fontSize","fontSizeIcon","controlItemBgHover","paddingXXS","margin","borderRadiusLG","borderRadiusSM","zIndexPopupBase","colorText","lineHeight","fontFamily","lineWidth","lineType","colorSplit","boxShadowSecondary","motionDurationMid","colorFillContent","fontSizeLG","fontSizeSM","colorPrimary","colorPrimaryHover","motionDurationSlow","motionEaseInOutCirc"],"component":{"dotOffsetInCircle":5.857864376269049,"dotOffsetInSquare":2.3431457505076194}},"Flex":{"global":["paddingXS","padding","paddingLG"],"component":{}},"Empty":{"global":["controlHeightLG","margin","marginXS","marginXL","fontSize","lineHeight","opacityImage","colorTextDescription"],"component":{}},"Popover":{"global":["colorBgElevated","colorText","fontWeightStrong","boxShadowSecondary","colorTextHeading","borderRadiusLG","fontSize","lineHeight","fontFamily","boxShadowPopoverArrow","sizePopupArrow","borderRadiusXS","blue6","purple6","cyan6","green6","magenta6","pink6","red6","orange6","yellow6","volcano6","geekblue6","lime6","gold6","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"titleMinWidth":177,"zIndexPopup":1030,"arrowShadowWidth":8.970562748477143,"arrowPath":"path(\'M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z\')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)","arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"innerPadding":0,"titleMarginBottom":0,"titlePadding":"5px 16px 4px","titleBorderBottom":"1px solid rgba(5,5,5,0.06)","innerContentPadding":"12px 16px"}},"Popconfirm":{"global":["colorText","colorWarning","marginXXS","marginXS","fontSize","fontWeightStrong","colorTextHeading"],"component":{"zIndexPopup":1060}},"Menu":{"global":["colorBgElevated","controlHeightLG","fontSize","motionDurationSlow","motionDurationMid","motionEaseInOut","paddingXS","padding","colorSplit","lineWidth","borderRadiusLG","lineType","colorText","lineHeight","fontFamily","motionEaseOut","borderRadius","margin","colorTextLightSolid","paddingXL","fontSizeLG","motionDurationFast","boxShadowSecondary","marginXS","lineWidthFocus","colorPrimaryBorder","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"dropdownWidth":160,"zIndexPopup":1050,"radiusItem":8,"itemBorderRadius":8,"radiusSubMenuItem":4,"subMenuItemBorderRadius":4,"colorItemText":"rgba(0,0,0,0.88)","itemColor":"rgba(0,0,0,0.88)","colorItemTextHover":"rgba(0,0,0,0.88)","itemHoverColor":"rgba(0,0,0,0.88)","colorItemTextHoverHorizontal":"#1677ff","horizontalItemHoverColor":"#1677ff","colorGroupTitle":"rgba(0,0,0,0.45)","groupTitleColor":"rgba(0,0,0,0.45)","colorItemTextSelected":"#1677ff","itemSelectedColor":"#1677ff","subMenuItemSelectedColor":"#1677ff","colorItemTextSelectedHorizontal":"#1677ff","horizontalItemSelectedColor":"#1677ff","colorItemBg":"#ffffff","itemBg":"#ffffff","colorItemBgHover":"rgba(0,0,0,0.06)","itemHoverBg":"rgba(0,0,0,0.06)","colorItemBgActive":"rgba(0,0,0,0.06)","itemActiveBg":"#e6f4ff","colorSubItemBg":"rgba(0,0,0,0.02)","subMenuItemBg":"rgba(0,0,0,0.02)","colorItemBgSelected":"#e6f4ff","itemSelectedBg":"#e6f4ff","colorItemBgSelectedHorizontal":"transparent","horizontalItemSelectedBg":"transparent","colorActiveBarWidth":0,"activeBarWidth":0,"colorActiveBarHeight":2,"activeBarHeight":2,"colorActiveBarBorderSize":1,"activeBarBorderWidth":1,"colorItemTextDisabled":"rgba(0,0,0,0.25)","itemDisabledColor":"rgba(0,0,0,0.25)","colorDangerItemText":"#ff4d4f","dangerItemColor":"#ff4d4f","colorDangerItemTextHover":"#ff4d4f","dangerItemHoverColor":"#ff4d4f","colorDangerItemTextSelected":"#ff4d4f","dangerItemSelectedColor":"#ff4d4f","colorDangerItemBgActive":"#fff2f0","dangerItemActiveBg":"#fff2f0","colorDangerItemBgSelected":"#fff2f0","dangerItemSelectedBg":"#fff2f0","itemMarginInline":4,"horizontalItemBorderRadius":0,"horizontalItemHoverBg":"transparent","itemHeight":40,"groupTitleLineHeight":1.5714285714285714,"collapsedWidth":80,"popupBg":"#ffffff","itemMarginBlock":4,"itemPaddingInline":16,"horizontalLineHeight":"46px","iconSize":14,"iconMarginInlineEnd":10,"collapsedIconSize":16,"groupTitleFontSize":14,"darkItemDisabledColor":"rgba(255,255,255,0.25)","darkItemColor":"rgba(255,255,255,0.65)","darkDangerItemColor":"#ff4d4f","darkItemBg":"#001529","darkPopupBg":"#001529","darkSubMenuItemBg":"#000c17","darkItemSelectedColor":"#fff","darkItemSelectedBg":"#1677ff","darkDangerItemSelectedBg":"#ff4d4f","darkItemHoverBg":"transparent","darkGroupTitleColor":"rgba(255,255,255,0.65)","darkItemHoverColor":"#fff","darkDangerItemHoverColor":"#ff7875","darkDangerItemSelectedColor":"#fff","darkDangerItemActiveBg":"#ff4d4f","itemWidth":"calc(100% - 8px)"}},"Mentions":{"global":["paddingXXS","colorTextDisabled","controlItemBgHover","controlPaddingHorizontal","colorText","motionDurationSlow","lineHeight","controlHeight","fontSize","fontSizeIcon","colorTextTertiary","colorTextQuaternary","colorBgElevated","paddingLG","borderRadius","borderRadiusLG","boxShadowSecondary","fontFamily","motionDurationMid","colorTextPlaceholder","lineHeightLG","borderRadiusSM","colorBorder","colorBgContainer","lineWidth","lineType","colorBgContainerDisabled","colorError","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","fontWeightStrong"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0,0,0,0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5,145,255,0.1)","errorActiveShadow":"0 0 0 2px rgba(255,38,5,0.06)","warningActiveShadow":"0 0 0 2px rgba(255,215,5,0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"dropdownHeight":250,"controlItemWidth":100,"zIndexPopup":1050,"itemPaddingVertical":5}},"List":{"global":["controlHeightLG","controlHeight","paddingSM","marginLG","padding","colorPrimary","paddingXS","margin","colorText","colorTextDescription","motionDurationSlow","lineWidth","fontSize","lineHeight","fontFamily","marginXXS","marginXXL","fontHeight","colorSplit","fontSizeSM","colorTextDisabled","fontSizeLG","lineHeightLG","lineType","paddingLG","borderRadiusLG","colorBorder","screenSM","screenMD","marginSM"],"component":{"contentWidth":220,"itemPadding":"12px 0","itemPaddingSM":"8px 16px","itemPaddingLG":"16px 24px","headerBg":"transparent","footerBg":"transparent","emptyTextPadding":16,"metaMarginBottom":16,"avatarMarginRight":16,"titleMarginBottom":12,"descriptionFontSize":14}},"Layout":{"global":["colorText","fontSize"],"component":{"colorBgHeader":"#001529","colorBgBody":"#f5f5f5","colorBgTrigger":"#002140","bodyBg":"#f5f5f5","headerBg":"#001529","headerHeight":64,"headerPadding":"0 50px","headerColor":"rgba(0,0,0,0.88)","footerPadding":"24px 50px","footerBg":"#f5f5f5","siderBg":"#001529","triggerHeight":48,"triggerBg":"#002140","triggerColor":"#fff","zeroTriggerWidth":40,"zeroTriggerHeight":40,"lightSiderBg":"#ffffff","lightTriggerBg":"#ffffff","lightTriggerColor":"rgba(0,0,0,0.88)"}},"InputNumber":{"global":["paddingXXS","lineWidth","lineType","borderRadius","controlHeightLG","controlHeightSM","colorError","colorTextDescription","motionDurationMid","colorTextDisabled","borderRadiusSM","borderRadiusLG","lineHeightLG","colorText","fontSize","lineHeight","fontFamily","colorTextPlaceholder","controlHeight","motionDurationSlow","colorBorder","colorBgContainer","colorBgContainerDisabled","colorErrorBorderHover","colorWarning","colorWarningBorderHover","colorFillTertiary","colorFillSecondary","colorErrorBg","colorErrorBgHover","colorErrorText","colorWarningBg","colorWarningBgHover","colorWarningText","paddingXS","fontSizeLG","colorSplit"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0,0,0,0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5,145,255,0.1)","errorActiveShadow":"0 0 0 2px rgba(255,38,5,0.06)","warningActiveShadow":"0 0 0 2px rgba(255,215,5,0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14,"controlWidth":90,"handleWidth":22,"handleFontSize":7,"handleVisible":"auto","handleActiveBg":"rgba(0,0,0,0.02)","handleBg":"#ffffff","filledHandleBg":"#f0f0f0","handleHoverColor":"#1677ff","handleBorderColor":"#d9d9d9","handleOpacity":0,"handleVisibleWidth":0}},"Input":{"global":["paddingXXS","borderRadiusLG","borderRadiusSM","colorText","fontSize","lineHeight","fontFamily","paddingXS","lineHeightLG","controlHeightLG","controlHeightSM","borderRadius","motionDurationSlow","lineWidth","lineType","colorBorder","colorError","colorErrorText","colorWarning","colorWarningText","colorTextDisabled","colorBgContainerDisabled","colorFillTertiary","colorSplit","colorErrorBg","colorWarningBg","colorPrimaryHover","controlHeight","colorTextDescription","colorPrimaryActive"],"component":{"paddingBlock":4,"paddingBlockSM":0,"paddingBlockLG":7,"paddingInline":11,"paddingInlineSM":7,"paddingInlineLG":11,"addonBg":"rgba(0,0,0,0.02)","activeBorderColor":"#1677ff","hoverBorderColor":"#4096ff","activeShadow":"0 0 0 2px rgba(5,145,255,0.1)","errorActiveShadow":"0 0 0 2px rgba(255,38,5,0.06)","warningActiveShadow":"0 0 0 2px rgba(255,215,5,0.1)","hoverBg":"#ffffff","activeBg":"#ffffff","inputFontSize":14,"inputFontSizeLG":16,"inputFontSizeSM":14}},"Image":{"global":["controlHeightLG","colorBgContainerDisabled","motionDurationSlow","paddingXXS","marginXXS","colorTextLightSolid","motionEaseOut","paddingSM","marginXL","margin","paddingLG","marginSM","zIndexPopupBase","colorBgMask","motionDurationMid","motionEaseOutCirc","motionEaseInOutCirc"],"component":{"zIndexPopup":1080,"previewOperationColor":"rgba(255,255,255,0.65)","previewOperationHoverColor":"rgba(255,255,255,0.85)","previewOperationColorDisabled":"rgba(255,255,255,0.25)","previewOperationSize":18}},"Dropdown":{"global":["marginXXS","sizePopupArrow","paddingXXS","motionDurationMid","fontSize","colorTextDisabled","fontSizeIcon","controlPaddingHorizontal","colorBgElevated","boxShadowPopoverArrow","borderRadiusXS","colorText","lineHeight","fontFamily","borderRadiusLG","boxShadowSecondary","lineWidthFocus","colorPrimaryBorder","colorTextDescription","marginXS","fontSizeSM","padding","borderRadiusSM","controlItemBgHover","colorPrimary","controlItemBgActive","controlItemBgActiveHover","colorSplit","paddingXS","motionEaseOutQuint","motionEaseInQuint","motionEaseOutCirc","motionEaseInOutCirc","colorError","colorTextLightSolid"],"component":{"zIndexPopup":1050,"paddingBlock":5,"arrowOffsetHorizontal":12,"arrowOffsetVertical":8,"arrowShadowWidth":8.970562748477143,"arrowPath":"path(\'M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z\')","arrowPolygon":"polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%)"}},"Drawer":{"global":["borderRadiusSM","colorBgMask","colorBgElevated","motionDurationSlow","motionDurationMid","paddingXS","padding","paddingLG","fontSizeLG","lineHeightLG","lineWidth","lineType","colorSplit","marginXS","colorIcon","colorIconHover","colorBgTextHover","colorBgTextActive","colorText","fontWeightStrong","boxShadowDrawerLeft","boxShadowDrawerRight","boxShadowDrawerUp","boxShadowDrawerDown","lineWidthFocus","colorPrimaryBorder"],"component":{"zIndexPopup":1000,"footerPaddingBlock":8,"footerPaddingInline":16}},"Divider":{"global":["margin","marginLG","colorSplit","lineWidth","colorText","fontSize","lineHeight","fontFamily","colorTextHeading","fontSizeLG"],"component":{"textPaddingInline":"1em","orientationMargin":0.05,"verticalMarginInline":8}},"Descriptions":{"global":["colorText","fontSize","lineHeight","fontFamily","lineWidth","lineType","colorSplit","padding","paddingLG","colorTextSecondary","paddingSM","paddingXS","fontWeightStrong","fontSizeLG","lineHeightLG","borderRadiusLG"],"component":{"labelBg":"rgba(0,0,0,0.02)","labelColor":"rgba(0,0,0,0.45)","titleColor":"rgba(0,0,0,0.88)","titleMarginBottom":20,"itemPaddingBottom":16,"itemPaddingEnd":16,"colonMarginRight":8,"colonMarginLeft":2,"contentColor":"rgba(0,0,0,0.88)","extraColor":"rgba(0,0,0,0.88)"}},"Grid":{"global":[],"component":{}},"Cascader":{"global":["controlInteractiveSize","colorText","fontSize","lineHeight","fontFamily","marginXS","borderRadiusSM","lineWidthFocus","colorPrimaryBorder","colorBgContainer","lineWidth","lineType","colorBorder","motionDurationSlow","lineWidthBold","colorWhite","motionDurationFast","motionEaseInBack","paddingXS","colorPrimary","colorPrimaryHover","motionDurationMid","motionEaseOutBack","fontSizeLG","colorBgContainerDisabled","colorTextDisabled","colorSplit","controlItemBgHover","paddingXXS","colorTextDescription","fontSizeIcon","colorHighlight"],"component":{"controlWidth":184,"controlItemWidth":111,"dropdownHeight":180,"optionSelectedBg":"#e6f4ff","optionSelectedFontWeight":600,"optionPadding":"5px 12px","menuPadding":4,"optionSelectedColor":"rgba(0,0,0,0.88)"}},"Carousel":{"global":["colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","colorBgContainer","marginXXS"],"component":{"arrowSize":16,"arrowOffset":8,"dotWidth":16,"dotHeight":3,"dotGap":4,"dotOffset":12,"dotWidthActive":24,"dotActiveWidth":24}},"Card":{"global":["boxShadowCard","padding","paddingLG","fontSize","colorBorderSecondary","boxShadowTertiary","colorText","lineHeight","fontFamily","colorBgContainer","borderRadiusLG","colorTextHeading","fontWeightStrong","lineWidth","lineType","motionDurationMid","colorTextDescription","colorPrimary","fontHeight","marginXXS","marginXS","fontSizeLG","colorFillAlter"],"component":{"headerBg":"transparent","headerFontSize":16,"headerFontSizeSM":14,"headerHeight":56,"headerHeightSM":38,"actionsBg":"#ffffff","actionsLiMargin":"12px 0","tabsMarginBottom":-17,"extraColor":"rgba(0,0,0,0.88)","bodyPaddingSM":12,"headerPaddingSM":12,"bodyPadding":24,"headerPadding":24}},"Calendar":{"global":["controlHeightLG","paddingXXS","padding","controlHeightSM","fontHeightSM","marginXS","lineWidth","paddingSM","paddingXS","colorBgContainer","lineType","borderRadiusLG","colorPrimary","colorTextHeading","colorSplit","colorIcon","motionDurationMid","colorIconHover","fontWeightStrong","colorTextDisabled","colorText","fontSize","motionDurationSlow","borderRadiusSM","colorTextLightSolid","controlItemBgActive","marginXXS","colorFillSecondary","colorTextTertiary","lineHeight","fontFamily","lineWidthBold","controlItemBgHover","screenXS"],"component":{"fullBg":"#ffffff","fullPanelBg":"#ffffff","itemActiveBg":"#e6f4ff","yearControlWidth":80,"monthControlWidth":70,"miniContentHeight":256,"INTERNAL_FIXED_ITEM_MARGIN":2,"cellHoverBg":"rgba(0,0,0,0.04)","cellActiveWithRangeBg":"#e6f4ff","cellHoverWithRangeBg":"#cbe0fd","cellRangeBorderColor":"#82b4f9","cellBgDisabled":"rgba(0,0,0,0.04)","timeColumnWidth":56,"timeColumnHeight":224,"timeCellHeight":28,"cellWidth":36,"cellHeight":24,"textHeight":40,"withoutTimeCellHeight":66,"multipleItemBg":"rgba(0,0,0,0.06)","multipleItemBorderColor":"transparent","multipleItemHeight":24,"multipleItemHeightSM":16,"multipleItemHeightLG":32,"multipleSelectorBgDisabled":"rgba(0,0,0,0.04)","multipleItemColorDisabled":"rgba(0,0,0,0.25)","multipleItemBorderColorDisabled":"transparent"}},"Progress":{"global":["marginXXS","colorText","fontSize","lineHeight","fontFamily","motionDurationSlow","motionEaseInOutCirc","colorWhite","colorSuccess","marginXS","paddingXXS","colorBgContainer","motionEaseOutQuint","colorError","fontSizeSM"],"component":{"circleTextColor":"rgba(0,0,0,0.88)","defaultColor":"#1677ff","remainingColor":"rgba(0,0,0,0.06)","lineBorderRadius":100,"circleTextFontSize":"1em","circleIconFontSize":"1.1666666666666667em"}},"Badge":{"global":["fontHeight","lineWidth","marginXS","colorBorderBg","colorTextLightSolid","colorError","colorErrorHover","blue1","blue3","blue6","blue7","purple1","purple3","purple6","purple7","cyan1","cyan3","cyan6","cyan7","green1","green3","green6","green7","magenta1","magenta3","magenta6","magenta7","pink1","pink3","pink6","pink7","red1","red3","red6","red7","orange1","orange3","orange6","orange7","yellow1","yellow3","yellow6","yellow7","volcano1","volcano3","volcano6","volcano7","geekblue1","geekblue3","geekblue6","geekblue7","lime1","lime3","lime6","lime7","gold1","gold3","gold6","gold7","colorText","fontSize","lineHeight","fontFamily","motionDurationMid","paddingXS","colorSuccess","colorInfo","colorTextPlaceholder","colorWarning","motionDurationSlow","motionEaseOutBack"],"component":{"indicatorZIndex":"auto","indicatorHeight":20,"indicatorHeightSM":14,"dotSize":6,"textFontSize":12,"textFontSizeSM":12,"textFontWeight":"normal","statusSize":6}},"BackTop":{"global":["fontSizeHeading3","colorTextDescription","colorTextLightSolid","colorText","controlHeightLG","fontSize","lineHeight","fontFamily","motionDurationMid","screenMD","screenXS"],"component":{"zIndexPopup":10}},"Avatar":{"global":["colorTextLightSolid","colorTextPlaceholder","borderRadius","borderRadiusLG","borderRadiusSM","lineWidth","lineType","colorText","fontSize","lineHeight","fontFamily"],"component":{"containerSize":32,"containerSizeLG":40,"containerSizeSM":24,"textFontSize":18,"textFontSizeLG":24,"textFontSizeSM":14,"groupSpace":4,"groupOverlapping":-8,"groupBorderColor":"#ffffff"}},"App":{"global":["colorText","fontSize","lineHeight","fontFamily"],"component":{}}}')}}]);