From e8cdc78f0ff4fdec95e548f2108769135124c7ef Mon Sep 17 00:00:00 2001 From: Carson Sievert Date: Wed, 27 Mar 2024 10:01:08 -0500 Subject: [PATCH] v1.8.1 release candidate (#4008) * Start v1.8.1 release candidate * Update urls and yarn build * Sync package version (GitHub Actions) * Check-in revdep results * Groom news --------- Co-authored-by: cpsievert --- DESCRIPTION | 2 +- NEWS.md | 20 +++++++++----------- README.md | 4 ++-- inst/www/shared/shiny-autoreload.js | 2 +- inst/www/shared/shiny-showcase.css | 2 +- inst/www/shared/shiny-showcase.js | 2 +- inst/www/shared/shiny-testmode.js | 2 +- inst/www/shared/shiny.js | 4 ++-- inst/www/shared/shiny.min.css | 2 +- inst/www/shared/shiny.min.js | 4 ++-- inst/www/shared/shiny.min.js.map | 2 +- package.json | 2 +- revdep/README.md | 11 +++++++---- revdep/cran.md | 17 ++++++++++------- 14 files changed, 40 insertions(+), 36 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 1d2f641e46..676823133e 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: shiny Type: Package Title: Web Application Framework for R -Version: 1.8.0.9000 +Version: 1.8.1 Authors@R: c( person("Winston", "Chang", role = c("aut", "cre"), email = "winston@posit.co", comment = c(ORCID = "0000-0002-1576-2126")), person("Joe", "Cheng", role = "aut", email = "joe@posit.co"), diff --git a/NEWS.md b/NEWS.md index ca461d1f0d..632a69dc22 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,22 +1,20 @@ -# shiny (development version) +# shiny 1.8.1 -## Breaking changes - -* `renderDataTable()`/`dataTableOutput()` are officially deprecated in favor of [their `{DT}` equivalents](https://rstudio.github.io/DT/shiny.html), `renderDT()`/`DTOutput()`. In most cases, simply changing `renderDataTable()` to `DT::renderDT()` and `dataTableOutput()` to `DT::DTOutput()` is sufficient for upgrading. Also, to promote migration, when a recent version of `{DT}` is available, `renderDataTable()`/`dataTableOutput()` now automatically use their `{DT}` equivalent (and provide a message that they are doing so). If this happens to degrade an existing app, set `options(shiny.legacy.datatable = TRUE)` to get the old (i.e., non-`{DT}`) implementation. (#3998) +## New features and improvements -* Both `conditionalPanel()` and `uiOutput()` are now styled with `display: contents` by default in Shiny apps that use Bootstrap 5. This means that the elements they contain are positioned as if they were direct children of the parent container holding the `conditionalPanel()` or `uiOutput()`. This is probably what most users intend when they use these functions, but it may break apps that applied styles directly to the container elements created by these two functions. In that case, you may include CSS rules to set `display: block` for the `.shiny-panel-conditional` or `.shiny-html-output` classes. (#3957, #3960) +* Added `ExtendedTask`, a new simple way to launch long-running asynchronous tasks that are truly non-blocking. That is, even _within_ a session, an `ExtendedTask` won't block the main thread from flushing the reactive graph (i.e., UI updates won't be blocked). `ExtendedTask` pairs nicely with new `bslib::input_task_button()` and `bslib::bind_task_button()` functions, which help give user feedback and prevent extra button clicks. (#3958) -* The examples behind `runExample()` now use `{bslib}` to generate a better looking result. To instead run the "legacy" examples, set `options(shiny.legacy.examples = TRUE)` before calling `runExample()`. (#3963) +* Added a JavaScript error dialog, reporting errors that previously were only discoverable by opening the browser's devtools open. Since this dialog is mainly useful for debugging and development, it must be enabled with `shiny::devmode()`. (#3931) -## New features and improvements +* `runExamples()` now uses the `{bslib}` package to generate a better looking result. It also gains a `package` argument so that other packages can leverage this same function to run Shiny app examples. For more, see `?runExamples`. (#3963, #4005) -* Added an console that shows some errors in the browser. Also provide better error messages for duplicate input and output bindings. (#3931) +* Added `onUnhandledError()` to register a function that will be called when an unhandled error occurs in a Shiny app. Note that this handler doesn't stop the error or prevent the session from closing, but it can be used to log the error or to clean up session-specific resources. (thanks @JohnCoene, #3993) -* Added a new `ExtendedTask` abstraction, for long-running asynchronous tasks that you don't want to block the rest of the app, or even the rest of the session. Designed to be used with new `bslib::input_task_button()` and `bslib::bind_task_button()` functions that help give user feedback and prevent extra button clicks. (#3958) +## Changes -* Added `onUnhandledError()` to register a function that will be called when an unhandled error occurs in a Shiny app. Note that this handler doesn't stop the error or prevent the session from closing, but it can be used to log the error or to clean up session-specific resources. (thanks @JohnCoene, #3993) +* `renderDataTable()`/`dataTableOutput()` are officially deprecated in favor of [their `{DT}` equivalents](https://rstudio.github.io/DT/shiny.html). Migrating to `{DT}`, in most cases, just requires changing `renderDataTable()` to `DT::renderDT()` and `dataTableOutput()` to `DT::DTOutput()`. Also, to promote migration, when a recent version of `{DT}` is available, `renderDataTable()`/`dataTableOutput()` now automatically use their `{DT}` equivalent (and provide a message that they are doing so). If this happens to degrade an existing app, set `options(shiny.legacy.datatable = TRUE)` to get the old (i.e., non-`{DT}`) implementation. (#3998) -* `runExamples()` now uses the `{bslib}` package to build the user interface (UI). It also gains a `package` argument so that other packages can leverage this same function to run Shiny app examples. For more, see `?runExamples`. (#3963, #4005) +* Both `conditionalPanel()` and `uiOutput()` are now styled with `display: contents` by default in Shiny apps that use Bootstrap 5. This means that the elements they contain are positioned as if they were direct children of the parent container holding the `conditionalPanel()` or `uiOutput()`. This is probably what most users intend when they use these functions, but it may break apps that applied styles directly to the container elements created by these two functions. In that case, you may include CSS rules to set `display: block` for the `.shiny-panel-conditional` or `.shiny-html-output` classes. (#3957, #3960) ## Bug fixes diff --git a/README.md b/README.md index 5019d036f6..d31556d031 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![CRAN](https://www.r-pkg.org/badges/version/shiny)](https://CRAN.R-project.org/package=shiny) [![R build status](https://github.com/rstudio/shiny/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/rstudio/shiny/actions) -[![RStudio community](https://img.shields.io/badge/community-shiny-blue?style=social&logo=rstudio&logoColor=75AADB)](https://community.rstudio.com/new-topic?category=shiny&tags=shiny) +[![RStudio community](https://img.shields.io/badge/community-shiny-blue?style=social&logo=rstudio&logoColor=75AADB)](https://forum.posit.co/new-topic?category=shiny&tags=shiny) @@ -51,7 +51,7 @@ If you want to chat about Shiny, meet other developers, or help us decide what t ## Getting Help -To ask a question about Shiny, please use the [RStudio Community website](https://community.rstudio.com/new-topic?category=shiny&tags=shiny). +To ask a question about Shiny, please use the [RStudio Community website](https://forum.posit.co/new-topic?category=shiny&tags=shiny). For bug reports, please use the [issue tracker](https://github.com/rstudio/shiny/issues) and also keep in mind that by [writing a good bug report](https://github.com/rstudio/shiny/wiki/Writing-Good-Bug-Reports), you're more likely to get help with your problem. diff --git a/inst/www/shared/shiny-autoreload.js b/inst/www/shared/shiny-autoreload.js index f6a7452b31..5ceecf392f 100644 --- a/inst/www/shared/shiny-autoreload.js +++ b/inst/www/shared/shiny-autoreload.js @@ -1,4 +1,4 @@ -/*! shiny 1.8.0.9000 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ +/*! shiny 1.8.1 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ "use strict";(function(){var Fl=Object.create;var li=Object.defineProperty;var $l=Object.getOwnPropertyDescriptor;var Ul=Object.getOwnPropertyNames;var Gl=Object.getPrototypeOf,Bl=Object.prototype.hasOwnProperty;var i=function(r,e){return function(){return e||r((e={exports:{}}).exports,e),e.exports}};var kl=function(r,e,t,n){if(e&&typeof e=="object"||typeof e=="function")for(var a=Ul(e),o=0,v=a.length,u;o0&&H[0]<4?1:+(H[0]+H[1]));!Ne&&Ft&&(H=Ft.match(/Edge\/(\d+)/),(!H||H[1]>=74)&&(H=Ft.match(/Chrome\/(\d+)/),H&&(Ne=+H[1])));Yi.exports=Ne});var pr=i(function(HI,Hi){var Wi=Qr(),fp=w();Hi.exports=!!Object.getOwnPropertySymbols&&!fp(function(){var r=Symbol();return!String(r)||!(Object(r)instanceof Symbol)||!Symbol.sham&&Wi&&Wi<41})});var $t=i(function(JI,Ji){var lp=pr();Ji.exports=lp&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Zr=i(function(zI,zi){var pp=Y(),yp=P(),dp=_r(),qp=$t(),hp=Object;zi.exports=qp?function(r){return typeof r=="symbol"}:function(r){var e=pp("Symbol");return yp(e)&&dp(e.prototype,hp(r))}});var Cr=i(function(XI,Xi){var gp=String;Xi.exports=function(r){try{return gp(r)}catch(e){return"Object"}}});var rr=i(function(QI,Qi){var Sp=P(),bp=Cr(),mp=TypeError;Qi.exports=function(r){if(Sp(r))return r;throw mp(bp(r)+" is not a function")}});var re=i(function(ZI,Zi){var Op=rr(),Ep=xr();Zi.exports=function(r,e){var t=r[e];return Ep(t)?void 0:Op(t)}});var eo=i(function(rT,ro){var Ut=A(),Gt=P(),Bt=V(),Ip=TypeError;ro.exports=function(r,e){var t,n;if(e==="string"&&Gt(t=r.toString)&&!Bt(n=Ut(t,r))||Gt(t=r.valueOf)&&!Bt(n=Ut(t,r))||e!=="string"&&Gt(t=r.toString)&&!Bt(n=Ut(t,r)))return n;throw Ip("Can't convert object to primitive value")}});var z=i(function(eT,to){to.exports=!1});var Ae=i(function(tT,ao){var no=x(),Tp=Object.defineProperty;ao.exports=function(r,e){try{Tp(no,r,{value:e,configurable:!0,writable:!0})}catch(t){no[r]=e}return e}});var je=i(function(nT,oo){var Pp=x(),wp=Ae(),io="__core-js_shared__",Rp=Pp[io]||wp(io,{});oo.exports=Rp});var yr=i(function(aT,vo){var xp=z(),uo=je();(vo.exports=function(r,e){return uo[r]||(uo[r]=e!==void 0?e:{})})("versions",[]).push({version:"3.29.0",mode:xp?"pure":"global",copyright:"\xA9 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.29.0/LICENSE",source:"https://github.com/zloirock/core-js"})});var or=i(function(iT,so){var _p=zr(),Cp=Object;so.exports=function(r){return Cp(_p(r))}});var D=i(function(oT,co){var Np=R(),Ap=or(),jp=Np({}.hasOwnProperty);co.exports=Object.hasOwn||function(e,t){return jp(Ap(e),t)}});var De=i(function(uT,fo){var Dp=R(),Lp=0,Mp=Math.random(),Fp=Dp(1 .toString);fo.exports=function(r){return"Symbol("+(r===void 0?"":r)+")_"+Fp(++Lp+Mp,36)}});var _=i(function(vT,po){var $p=x(),Up=yr(),lo=D(),Gp=De(),Bp=pr(),kp=$t(),Nr=$p.Symbol,kt=Up("wks"),Kp=kp?Nr.for||Nr:Nr&&Nr.withoutSetter||Gp;po.exports=function(r){return lo(kt,r)||(kt[r]=Bp&&lo(Nr,r)?Nr[r]:Kp("Symbol."+r)),kt[r]}});var go=i(function(sT,ho){var Vp=A(),yo=V(),qo=Zr(),Yp=re(),Wp=eo(),Hp=_(),Jp=TypeError,zp=Hp("toPrimitive");ho.exports=function(r,e){if(!yo(r)||qo(r))return r;var t=Yp(r,zp),n;if(t){if(e===void 0&&(e="default"),n=Vp(t,r,e),!yo(n)||qo(n))return n;throw Jp("Can't convert object to primitive value")}return e===void 0&&(e="number"),Wp(r,e)}});var ee=i(function(cT,So){var Xp=go(),Qp=Zr();So.exports=function(r){var e=Xp(r,"string");return Qp(e)?e:e+""}});var te=i(function(fT,mo){var Zp=x(),bo=V(),Kt=Zp.document,ry=bo(Kt)&&bo(Kt.createElement);mo.exports=function(r){return ry?Kt.createElement(r):{}}});var Vt=i(function(lT,Oo){var ey=M(),ty=w(),ny=te();Oo.exports=!ey&&!ty(function(){return Object.defineProperty(ny("div"),"a",{get:function(){return 7}}).a!=7})});var ne=i(function(Io){var ay=M(),iy=A(),oy=Ct(),uy=Rr(),vy=Z(),sy=ee(),cy=D(),fy=Vt(),Eo=Object.getOwnPropertyDescriptor;Io.f=ay?Eo:function(e,t){if(e=vy(e),t=sy(t),fy)try{return Eo(e,t)}catch(n){}if(cy(e,t))return uy(!iy(oy.f,e,t),e[t])}});var Yt=i(function(yT,To){var ly=M(),py=w();To.exports=ly&&py(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!=42})});var F=i(function(dT,Po){var yy=V(),dy=String,qy=TypeError;Po.exports=function(r){if(yy(r))return r;throw qy(dy(r)+" is not an object")}});var B=i(function(Ro){var hy=M(),gy=Vt(),Sy=Yt(),Le=F(),wo=ee(),by=TypeError,Wt=Object.defineProperty,my=Object.getOwnPropertyDescriptor,Ht="enumerable",Jt="configurable",zt="writable";Ro.f=hy?Sy?function(e,t,n){if(Le(e),t=wo(t),Le(n),typeof e=="function"&&t==="prototype"&&"value"in n&&zt in n&&!n[zt]){var a=my(e,t);a&&a[zt]&&(e[t]=n.value,n={configurable:Jt in n?n[Jt]:a[Jt],enumerable:Ht in n?n[Ht]:a[Ht],writable:!1})}return Wt(e,t,n)}:Wt:function(e,t,n){if(Le(e),t=wo(t),Le(n),gy)try{return Wt(e,t,n)}catch(a){}if("get"in n||"set"in n)throw by("Accessors not supported");return"value"in n&&(e[t]=n.value),e}});var dr=i(function(hT,xo){var Oy=M(),Ey=B(),Iy=Rr();xo.exports=Oy?function(r,e,t){return Ey.f(r,e,Iy(1,t))}:function(r,e,t){return r[e]=t,r}});var Me=i(function(gT,Co){var Xt=M(),Ty=D(),_o=Function.prototype,Py=Xt&&Object.getOwnPropertyDescriptor,Qt=Ty(_o,"name"),wy=Qt&&function(){}.name==="something",Ry=Qt&&(!Xt||Xt&&Py(_o,"name").configurable);Co.exports={EXISTS:Qt,PROPER:wy,CONFIGURABLE:Ry}});var Fe=i(function(ST,No){var xy=R(),_y=P(),Zt=je(),Cy=xy(Function.toString);_y(Zt.inspectSource)||(Zt.inspectSource=function(r){return Cy(r)});No.exports=Zt.inspectSource});var Do=i(function(bT,jo){var Ny=x(),Ay=P(),Ao=Ny.WeakMap;jo.exports=Ay(Ao)&&/native code/.test(String(Ao))});var ae=i(function(mT,Mo){var jy=yr(),Dy=De(),Lo=jy("keys");Mo.exports=function(r){return Lo[r]||(Lo[r]=Dy(r))}});var ie=i(function(OT,Fo){Fo.exports={}});var hr=i(function(ET,Go){var Ly=Do(),Uo=x(),My=V(),Fy=dr(),rn=D(),en=je(),$y=ae(),Uy=ie(),$o="Object already initialized",tn=Uo.TypeError,Gy=Uo.WeakMap,$e,oe,Ue,By=function(r){return Ue(r)?oe(r):$e(r,{})},ky=function(r){return function(e){var t;if(!My(e)||(t=oe(e)).type!==r)throw tn("Incompatible receiver, "+r+" required");return t}};Ly||en.state?(J=en.state||(en.state=new Gy),J.get=J.get,J.has=J.has,J.set=J.set,$e=function(r,e){if(J.has(r))throw tn($o);return e.facade=r,J.set(r,e),e},oe=function(r){return J.get(r)||{}},Ue=function(r){return J.has(r)}):(qr=$y("state"),Uy[qr]=!0,$e=function(r,e){if(rn(r,qr))throw tn($o);return e.facade=r,Fy(r,qr,e),e},oe=function(r){return rn(r,qr)?r[qr]:{}},Ue=function(r){return rn(r,qr)});var J,qr;Go.exports={set:$e,get:oe,has:Ue,enforce:By,getterFor:ky}});var on=i(function(IT,Ko){var an=R(),Ky=w(),Vy=P(),Ge=D(),nn=M(),Yy=Me().CONFIGURABLE,Wy=Fe(),ko=hr(),Hy=ko.enforce,Jy=ko.get,Bo=String,Be=Object.defineProperty,zy=an("".slice),Xy=an("".replace),Qy=an([].join),Zy=nn&&!Ky(function(){return Be(function(){},"length",{value:8}).length!==8}),rd=String(String).split("String"),ed=Ko.exports=function(r,e,t){zy(Bo(e),0,7)==="Symbol("&&(e="["+Xy(Bo(e),/^Symbol\(([^)]*)\)/,"$1")+"]"),t&&t.getter&&(e="get "+e),t&&t.setter&&(e="set "+e),(!Ge(r,"name")||Yy&&r.name!==e)&&(nn?Be(r,"name",{value:e,configurable:!0}):r.name=e),Zy&&t&&Ge(t,"arity")&&r.length!==t.arity&&Be(r,"length",{value:t.arity});try{t&&Ge(t,"constructor")&&t.constructor?nn&&Be(r,"prototype",{writable:!1}):r.prototype&&(r.prototype=void 0)}catch(a){}var n=Hy(r);return Ge(n,"source")||(n.source=Qy(rd,typeof e=="string"?e:"")),r};Function.prototype.toString=ed(function(){return Vy(this)&&Jy(this).source||Wy(this)},"toString")});var X=i(function(TT,Vo){var td=P(),nd=B(),ad=on(),id=Ae();Vo.exports=function(r,e,t,n){n||(n={});var a=n.enumerable,o=n.name!==void 0?n.name:e;if(td(t)&&ad(t,o,n),n.global)a?r[e]=t:id(e,t);else{try{n.unsafe?r[e]&&(a=!0):delete r[e]}catch(v){}a?r[e]=t:nd.f(r,e,{value:t,enumerable:!1,configurable:!n.nonConfigurable,writable:!n.nonWritable})}return r}});var Wo=i(function(PT,Yo){var od=Math.ceil,ud=Math.floor;Yo.exports=Math.trunc||function(e){var t=+e;return(t>0?ud:od)(t)}});var ue=i(function(wT,Ho){var vd=Wo();Ho.exports=function(r){var e=+r;return e!==e||e===0?0:vd(e)}});var ke=i(function(RT,Jo){var sd=ue(),cd=Math.max,fd=Math.min;Jo.exports=function(r,e){var t=sd(r);return t<0?cd(t+e,0):fd(t,e)}});var un=i(function(xT,zo){var ld=ue(),pd=Math.min;zo.exports=function(r){return r>0?pd(ld(r),9007199254740991):0}});var gr=i(function(_T,Xo){var yd=un();Xo.exports=function(r){return yd(r.length)}});var ru=i(function(CT,Zo){var dd=Z(),qd=ke(),hd=gr(),Qo=function(r){return function(e,t,n){var a=dd(e),o=hd(a),v=qd(n,o),u;if(r&&t!=t){for(;o>v;)if(u=a[v++],u!=u)return!0}else for(;o>v;v++)if((r||v in a)&&a[v]===t)return r||v||0;return!r&&-1}};Zo.exports={includes:Qo(!0),indexOf:Qo(!1)}});var sn=i(function(NT,tu){var gd=R(),vn=D(),Sd=Z(),bd=ru().indexOf,md=ie(),eu=gd([].push);tu.exports=function(r,e){var t=Sd(r),n=0,a=[],o;for(o in t)!vn(md,o)&&vn(t,o)&&eu(a,o);for(;e.length>n;)vn(t,o=e[n++])&&(~bd(a,o)||eu(a,o));return a}});var Ke=i(function(AT,nu){nu.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var Ve=i(function(au){var Od=sn(),Ed=Ke(),Id=Ed.concat("length","prototype");au.f=Object.getOwnPropertyNames||function(e){return Od(e,Id)}});var Ye=i(function(iu){iu.f=Object.getOwnPropertySymbols});var uu=i(function(LT,ou){var Td=Y(),Pd=R(),wd=Ve(),Rd=Ye(),xd=F(),_d=Pd([].concat);ou.exports=Td("Reflect","ownKeys")||function(e){var t=wd.f(xd(e)),n=Rd.f;return n?_d(t,n(e)):t}});var cn=i(function(MT,su){var vu=D(),Cd=uu(),Nd=ne(),Ad=B();su.exports=function(r,e,t){for(var n=Cd(e),a=Ad.f,o=Nd.f,v=0;vv;)lq.f(e,u=a[v++],n[u]);return e}});var gn=i(function(WT,Ou){var qq=Y();Ou.exports=qq("document","documentElement")});var Ar=i(function(HT,xu){var hq=F(),gq=hn(),Eu=Ke(),Sq=ie(),bq=gn(),mq=te(),Oq=ae(),Iu=">",Tu="<",bn="prototype",mn="script",wu=Oq("IE_PROTO"),Sn=function(){},Ru=function(r){return Tu+mn+Iu+r+Tu+"/"+mn+Iu},Pu=function(r){r.write(Ru("")),r.close();var e=r.parentWindow.Object;return r=null,e},Eq=function(){var r=mq("iframe"),e="java"+mn+":",t;return r.style.display="none",bq.appendChild(r),r.src=String(e),t=r.contentWindow.document,t.open(),t.write(Ru("document.F=Object")),t.close(),t.F},Je,ze=function(){try{Je=new ActiveXObject("htmlfile")}catch(e){}ze=typeof document!="undefined"?document.domain&&Je?Pu(Je):Eq():Pu(Je);for(var r=Eu.length;r--;)delete ze[bn][Eu[r]];return ze()};Sq[wu]=!0;xu.exports=Object.create||function(e,t){var n;return e!==null?(Sn[bn]=hq(e),n=new Sn,Sn[bn]=null,n[wu]=e):n=ze(),t===void 0?n:gq.f(n,t)}});var Cu=i(function(JT,_u){var Iq=w(),Tq=x(),Pq=Tq.RegExp;_u.exports=Iq(function(){var r=Pq(".","s");return!(r.dotAll&&r.exec("\n")&&r.flags==="s")})});var Au=i(function(zT,Nu){var wq=w(),Rq=x(),xq=Rq.RegExp;Nu.exports=wq(function(){var r=xq("(?b)","g");return r.exec("b").groups.a!=="b"||"b".replace(r,"$c")!=="bc"})});var Ze=i(function(XT,Du){"use strict";var jr=A(),Qe=R(),_q=er(),Cq=hu(),Nq=Su(),Aq=yr(),jq=Ar(),Dq=hr().get,Lq=Cu(),Mq=Au(),Fq=Aq("native-string-replace",String.prototype.replace),Xe=RegExp.prototype.exec,En=Xe,$q=Qe("".charAt),Uq=Qe("".indexOf),Gq=Qe("".replace),On=Qe("".slice),In=function(){var r=/a/,e=/b*/g;return jr(Xe,r,"a"),jr(Xe,e,"a"),r.lastIndex!==0||e.lastIndex!==0}(),ju=Nq.BROKEN_CARET,Tn=/()??/.exec("")[1]!==void 0,Bq=In||Tn||ju||Lq||Mq;Bq&&(En=function(e){var t=this,n=Dq(t),a=_q(e),o=n.raw,v,u,c,f,y,S,m;if(o)return o.lastIndex=t.lastIndex,v=jr(En,o,a),t.lastIndex=o.lastIndex,v;var h=n.groups,O=ju&&t.sticky,I=jr(Cq,t),E=t.source,T=0,b=a;if(O&&(I=Gq(I,"y",""),Uq(I,"g")===-1&&(I+="g"),b=On(a,t.lastIndex),t.lastIndex>0&&(!t.multiline||t.multiline&&$q(a,t.lastIndex-1)!=="\n")&&(E="(?: "+E+")",b=" "+b,T++),u=new RegExp("^(?:"+E+")",I)),Tn&&(u=new RegExp("^"+E+"$(?!\\s)",I)),In&&(c=t.lastIndex),f=jr(Xe,O?u:t,b),O?f?(f.input=On(f.input,T),f[0]=On(f[0],T),f.index=t.lastIndex,t.lastIndex+=f[0].length):t.lastIndex=0:In&&f&&(t.lastIndex=t.global?f.index+f[0].length:c),Tn&&f&&f.length>1&&jr(Fq,f[0],u,function(){for(y=1;y=o?r?"":void 0:(v=Hu(n,a),v<55296||v>56319||a+1===o||(u=Hu(n,a+1))<56320||u>57343?r?Zq(n,a):v:r?rh(n,a,a+2):(v-55296<<10)+(u-56320)+65536)}};zu.exports={codeAt:Ju(!1),charAt:Ju(!0)}});var Qu=i(function(aP,Xu){"use strict";var eh=_n().charAt;Xu.exports=function(r,e,t){return e+(t?eh(r,e).length:1)}});var rv=i(function(iP,Zu){var An=R(),th=or(),nh=Math.floor,Cn=An("".charAt),ah=An("".replace),Nn=An("".slice),ih=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,oh=/\$([$&'`]|\d{1,2})/g;Zu.exports=function(r,e,t,n,a,o){var v=t+r.length,u=n.length,c=oh;return a!==void 0&&(a=th(a),c=ih),ah(o,c,function(f,y){var S;switch(Cn(y,0)){case"$":return"$";case"&":return r;case"`":return Nn(e,0,t);case"'":return Nn(e,v);case"<":S=a[Nn(y,1,-1)];break;default:var m=+y;if(m===0)return f;if(m>u){var h=nh(m/10);return h===0?f:h<=u?n[h-1]===void 0?Cn(y,1):n[h-1]+Cn(y,1):f}S=n[m-1]}return S===void 0?"":S})}});var nv=i(function(oP,tv){var ev=A(),uh=F(),vh=P(),sh=Q(),ch=Ze(),fh=TypeError;tv.exports=function(r,e){var t=r.exec;if(vh(t)){var n=ev(t,r,e);return n!==null&&uh(n),n}if(sh(r)==="RegExp")return ev(ch,r,e);throw fh("RegExp#exec called on incompatible receiver")}});var Lr=i(function(uP,vv){var Nh=Q();vv.exports=Array.isArray||function(e){return Nh(e)=="Array"}});var cv=i(function(vP,sv){var Ah=TypeError,jh=9007199254740991;sv.exports=function(r){if(r>jh)throw Ah("Maximum allowed index exceeded");return r}});var tt=i(function(sP,fv){"use strict";var Dh=ee(),Lh=B(),Mh=Rr();fv.exports=function(r,e,t){var n=Dh(e);n in r?Lh.f(r,n,Mh(0,t)):r[n]=t}});var nt=i(function(cP,qv){var Fh=R(),$h=w(),lv=P(),Uh=se(),Gh=Y(),Bh=Fe(),pv=function(){},kh=[],yv=Gh("Reflect","construct"),Ln=/^\s*(?:class|function)\b/,Kh=Fh(Ln.exec),Vh=!Ln.exec(pv),ce=function(e){if(!lv(e))return!1;try{return yv(pv,kh,e),!0}catch(t){return!1}},dv=function(e){if(!lv(e))return!1;switch(Uh(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return Vh||!!Kh(Ln,Bh(e))}catch(t){return!0}};dv.sham=!0;qv.exports=!yv||$h(function(){var r;return ce(ce.call)||!ce(Object)||!ce(function(){r=!0})||r})?dv:ce});var bv=i(function(fP,Sv){var hv=Lr(),Yh=nt(),Wh=V(),Hh=_(),Jh=Hh("species"),gv=Array;Sv.exports=function(r){var e;return hv(r)&&(e=r.constructor,Yh(e)&&(e===gv||hv(e.prototype))?e=void 0:Wh(e)&&(e=e[Jh],e===null&&(e=void 0))),e===void 0?gv:e}});var Mn=i(function(lP,mv){var zh=bv();mv.exports=function(r,e){return new(zh(r))(e===0?0:e)}});var Fn=i(function(pP,Ov){var Xh=w(),Qh=_(),Zh=Qr(),rg=Qh("species");Ov.exports=function(r){return Zh>=51||!Xh(function(){var e=[],t=e.constructor={};return t[rg]=function(){return{foo:1}},e[r](Boolean).foo!==1})}});var wv=i(function(yP,Pv){"use strict";var yg=We(),dg=se();Pv.exports=yg?{}.toString:function(){return"[object "+dg(this)+"]"}});var fe=i(function(dP,Rv){var Sg=Q();Rv.exports=typeof process!="undefined"&&Sg(process)=="process"});var _v=i(function(qP,xv){var bg=R(),mg=rr();xv.exports=function(r,e,t){try{return bg(mg(Object.getOwnPropertyDescriptor(r,e)[t]))}catch(n){}}});var Nv=i(function(hP,Cv){var Og=P(),Eg=String,Ig=TypeError;Cv.exports=function(r){if(typeof r=="object"||Og(r))return r;throw Ig("Can't set "+Eg(r)+" as a prototype")}});var at=i(function(gP,Av){var Tg=_v(),Pg=F(),wg=Nv();Av.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var r=!1,e={},t;try{t=Tg(Object.prototype,"__proto__","set"),t(e,[]),r=e instanceof Array}catch(n){}return function(a,o){return Pg(a),wg(o),r?t(a,o):a.__proto__=o,a}}():void 0)});var ur=i(function(SP,Dv){var Rg=B().f,xg=D(),_g=_(),jv=_g("toStringTag");Dv.exports=function(r,e,t){r&&!t&&(r=r.prototype),r&&!xg(r,jv)&&Rg(r,jv,{configurable:!0,value:e})}});var le=i(function(bP,Mv){var Lv=on(),Cg=B();Mv.exports=function(r,e,t){return t.get&&Lv(t.get,e,{getter:!0}),t.set&&Lv(t.set,e,{setter:!0}),Cg.f(r,e,t)}});var Uv=i(function(mP,$v){"use strict";var Ng=Y(),Ag=le(),jg=_(),Dg=M(),Fv=jg("species");$v.exports=function(r){var e=Ng(r);Dg&&e&&!e[Fv]&&Ag(e,Fv,{configurable:!0,get:function(){return this}})}});var Bv=i(function(OP,Gv){var Lg=_r(),Mg=TypeError;Gv.exports=function(r,e){if(Lg(e,r))return r;throw Mg("Incorrect invocation")}});var Kv=i(function(EP,kv){var Fg=nt(),$g=Cr(),Ug=TypeError;kv.exports=function(r){if(Fg(r))return r;throw Ug($g(r)+" is not a constructor")}});var Wv=i(function(IP,Yv){var Vv=F(),Gg=Kv(),Bg=xr(),kg=_(),Kg=kg("species");Yv.exports=function(r,e){var t=Vv(r).constructor,n;return t===void 0||Bg(n=Vv(t)[Kg])?e:Gg(n)}});var pe=i(function(TP,Jv){var Hv=wn(),Vg=rr(),Yg=Jr(),Wg=Hv(Hv.bind);Jv.exports=function(r,e){return Vg(r),e===void 0?r:Yg?Wg(r,e):function(){return r.apply(e,arguments)}}});var it=i(function(PP,zv){var Hg=R();zv.exports=Hg([].slice)});var Qv=i(function(wP,Xv){var Jg=TypeError;Xv.exports=function(r,e){if(rS;S++)if(h=T(r[S]),h&&cc(lc,h))return h;return new dt(!1)}f=Sb(r,y)}for(O=o?r.next:f.next;!(I=yb(O,f)).done;){try{h=T(I.value)}catch(b){fc(f,"throw",b)}if(typeof h=="object"&&h&&cc(lc,h))return h}return new dt(!1)}});var gc=i(function(JP,hc){var Ob=_(),dc=Ob("iterator"),qc=!1;try{yc=0,ya={next:function(){return{done:!!yc++}},return:function(){qc=!0}},ya[dc]=function(){return this},Array.from(ya,function(){throw 2})}catch(r){}var yc,ya;hc.exports=function(r,e){if(!e&&!qc)return!1;var t=!1;try{var n={};n[dc]=function(){return{next:function(){return{done:t=!0}}}},r(n)}catch(a){}return t}});var da=i(function(zP,Sc){var Eb=Fr(),Ib=gc(),Tb=$r().CONSTRUCTOR;Sc.exports=Tb||!Ib(function(r){Eb.all(r).then(void 0,function(){})})});var bc=i(function(){"use strict";var Pb=C(),wb=A(),Rb=rr(),xb=Ur(),_b=vt(),Cb=pa(),Nb=da();Pb({target:"Promise",stat:!0,forced:Nb},{all:function(e){var t=this,n=xb.f(t),a=n.resolve,o=n.reject,v=_b(function(){var u=Rb(t.resolve),c=[],f=0,y=1;Cb(e,function(S){var m=f++,h=!1;y++,wb(u,t,S).then(function(O){h||(h=!0,c[m]=O,--y||a(c))},o)}),--y||a(c)});return v.error&&o(v.value),n.promise}})});var Oc=i(function(){"use strict";var Ab=C(),jb=z(),Db=$r().CONSTRUCTOR,ha=Fr(),Lb=Y(),Mb=P(),Fb=X(),mc=ha&&ha.prototype;Ab({target:"Promise",proto:!0,forced:Db,real:!0},{catch:function(r){return this.then(void 0,r)}});!jb&&Mb(ha)&&(qa=Lb("Promise").prototype.catch,mc.catch!==qa&&Fb(mc,"catch",qa,{unsafe:!0}));var qa});var Ec=i(function(){"use strict";var $b=C(),Ub=A(),Gb=rr(),Bb=Ur(),kb=vt(),Kb=pa(),Vb=da();$b({target:"Promise",stat:!0,forced:Vb},{race:function(e){var t=this,n=Bb.f(t),a=n.reject,o=kb(function(){var v=Gb(t.resolve);Kb(e,function(u){Ub(v,t,u).then(n.resolve,a)})});return o.error&&a(o.value),n.promise}})});var Ic=i(function(){"use strict";var Yb=C(),Wb=A(),Hb=Ur(),Jb=$r().CONSTRUCTOR;Yb({target:"Promise",stat:!0,forced:Jb},{reject:function(e){var t=Hb.f(this);return Wb(t.reject,void 0,e),t.promise}})});var Pc=i(function(iw,Tc){var zb=F(),Xb=V(),Qb=Ur();Tc.exports=function(r,e){if(zb(r),Xb(e)&&e.constructor===r)return e;var t=Qb.f(r),n=t.resolve;return n(e),t.promise}});var xc=i(function(){"use strict";var Zb=C(),rm=Y(),wc=z(),em=Fr(),Rc=$r().CONSTRUCTOR,tm=Pc(),nm=rm("Promise"),am=wc&&!Rc;Zb({target:"Promise",stat:!0,forced:wc||Rc},{resolve:function(e){return tm(am&&this===nm?em:this,e)}})});var Ac=i(function(vw,Nc){var Cc=ke(),um=gr(),vm=tt(),sm=Array,cm=Math.max;Nc.exports=function(r,e,t){for(var n=um(r),a=Cc(e,n),o=Cc(t===void 0?n:t,n),v=sm(cm(o-a,0)),u=0;aE;E++)if((u||E in h)&&($=h[E],K=O($,E,m),r))if(e)b[E]=K;else if(K)switch(r){case 3:return!0;case 5:return $;case 6:return E;case 2:Vc(b,$)}else switch(r){case 4:return!1;case 7:Vc(b,$)}return o?-1:n||a?a:b}};Yc.exports={forEach:sr(0),map:sr(1),filter:sr(2),some:sr(3),every:sr(4),find:sr(5),findIndex:sr(6),filterReject:sr(7)}});var sf=i(function(){"use strict";var qt=C(),Ra=x(),xa=A(),_m=R(),Cm=z(),Yr=M(),Wr=pr(),Nm=w(),j=D(),Am=_r(),Ea=F(),ht=Z(),_a=ee(),jm=er(),Ia=Rr(),me=Ar(),Jc=qn(),Dm=Ve(),zc=Mc(),Lm=Ye(),Xc=ne(),Qc=B(),Mm=hn(),Zc=Ct(),ba=X(),Fm=le(),Ca=yr(),$m=ae(),rf=ie(),Wc=De(),Um=_(),Gm=ga(),Bm=Se(),km=Kc(),Km=ur(),ef=hr(),gt=Sa().forEach,G=$m("hidden"),St="Symbol",Oe="prototype",Vm=ef.set,Hc=ef.getterFor(St),W=Object[Oe],Er=Ra.Symbol,be=Er&&Er[Oe],Ym=Ra.TypeError,ma=Ra.QObject,tf=Xc.f,Or=Qc.f,nf=zc.f,Wm=Zc.f,af=_m([].push),tr=Ca("symbols"),Ee=Ca("op-symbols"),Hm=Ca("wks"),Ta=!ma||!ma[Oe]||!ma[Oe].findChild,Pa=Yr&&Nm(function(){return me(Or({},"a",{get:function(){return Or(this,"a",{value:7}).a}})).a!=7})?function(r,e,t){var n=tf(W,e);n&&delete W[e],Or(r,e,t),n&&r!==W&&Or(W,e,n)}:Or,Oa=function(r,e){var t=tr[r]=me(be);return Vm(t,{type:St,tag:r,description:e}),Yr||(t.description=e),t},bt=function(e,t,n){e===W&&bt(Ee,t,n),Ea(e);var a=_a(t);return Ea(n),j(tr,a)?(n.enumerable?(j(e,G)&&e[G][a]&&(e[G][a]=!1),n=me(n,{enumerable:Ia(0,!1)})):(j(e,G)||Or(e,G,Ia(1,{})),e[G][a]=!0),Pa(e,a,n)):Or(e,a,n)},Na=function(e,t){Ea(e);var n=ht(t),a=Jc(n).concat(vf(n));return gt(a,function(o){(!Yr||xa(wa,n,o))&&bt(e,o,n[o])}),e},Jm=function(e,t){return t===void 0?me(e):Na(me(e),t)},wa=function(e){var t=_a(e),n=xa(Wm,this,t);return this===W&&j(tr,t)&&!j(Ee,t)?!1:n||!j(this,t)||!j(tr,t)||j(this,G)&&this[G][t]?n:!0},of=function(e,t){var n=ht(e),a=_a(t);if(!(n===W&&j(tr,a)&&!j(Ee,a))){var o=tf(n,a);return o&&j(tr,a)&&!(j(n,G)&&n[G][a])&&(o.enumerable=!0),o}},uf=function(e){var t=nf(ht(e)),n=[];return gt(t,function(a){!j(tr,a)&&!j(rf,a)&&af(n,a)}),n},vf=function(r){var e=r===W,t=nf(e?Ee:ht(r)),n=[];return gt(t,function(a){j(tr,a)&&(!e||j(W,a))&&af(n,tr[a])}),n};Wr||(Er=function(){if(Am(be,this))throw Ym("Symbol is not a constructor");var e=!arguments.length||arguments[0]===void 0?void 0:jm(arguments[0]),t=Wc(e),n=function(a){this===W&&xa(n,Ee,a),j(this,G)&&j(this[G],t)&&(this[G][t]=!1),Pa(this,t,Ia(1,a))};return Yr&&Ta&&Pa(W,t,{configurable:!0,set:n}),Oa(t,e)},be=Er[Oe],ba(be,"toString",function(){return Hc(this).tag}),ba(Er,"withoutSetter",function(r){return Oa(Wc(r),r)}),Zc.f=wa,Qc.f=bt,Mm.f=Na,Xc.f=of,Dm.f=zc.f=uf,Lm.f=vf,Gm.f=function(r){return Oa(Um(r),r)},Yr&&(Fm(be,"description",{configurable:!0,get:function(){return Hc(this).description}}),Cm||ba(W,"propertyIsEnumerable",wa,{unsafe:!0})));qt({global:!0,constructor:!0,wrap:!0,forced:!Wr,sham:!Wr},{Symbol:Er});gt(Jc(Hm),function(r){Bm(r)});qt({target:St,stat:!0,forced:!Wr},{useSetter:function(){Ta=!0},useSimple:function(){Ta=!1}});qt({target:"Object",stat:!0,forced:!Wr,sham:!Yr},{create:Jm,defineProperty:bt,defineProperties:Na,getOwnPropertyDescriptor:of});qt({target:"Object",stat:!0,forced:!Wr},{getOwnPropertyNames:uf});km();Km(Er,St);rf[G]=!0});var Aa=i(function(hw,cf){var zm=pr();cf.exports=zm&&!!Symbol.for&&!!Symbol.keyFor});var lf=i(function(){var Xm=C(),Qm=Y(),Zm=D(),rO=er(),ff=yr(),eO=Aa(),ja=ff("string-to-symbol-registry"),tO=ff("symbol-to-string-registry");Xm({target:"Symbol",stat:!0,forced:!eO},{for:function(r){var e=rO(r);if(Zm(ja,e))return ja[e];var t=Qm("Symbol")(e);return ja[e]=t,tO[t]=e,t}})});var yf=i(function(){var nO=C(),aO=D(),iO=Zr(),oO=Cr(),uO=yr(),vO=Aa(),pf=uO("symbol-to-string-registry");nO({target:"Symbol",stat:!0,forced:!vO},{keyFor:function(e){if(!iO(e))throw TypeError(oO(e)+" is not a symbol");if(aO(pf,e))return pf[e]}})});var Sf=i(function(Ow,gf){var sO=R(),df=Lr(),cO=P(),qf=Q(),fO=er(),hf=sO([].push);gf.exports=function(r){if(cO(r))return r;if(!!df(r)){for(var e=r.length,t=[],n=0;n=e.length?(r.target=void 0,Pt(void 0,!0)):t=="keys"?Pt(n,!1):t=="values"?Pt(e[n],!1):Pt([n,e[n]],!1)},"values");var vl=ul.Arguments=ul.Array;Wa("keys");Wa("values");Wa("entries");if(!bE&&mE&&vl.name!=="values")try{gE(vl,"name",{value:"values"})}catch(r){}});var Ja=i(function(Dw,dl){dl.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}});var Xa=i(function(Lw,hl){var xE=te(),za=xE("span").classList,ql=za&&za.constructor&&za.constructor.prototype;hl.exports=ql===Object.prototype?void 0:ql});var Tl=i(function(Mw,Il){"use strict";var kE=w();Il.exports=function(r,e){var t=[][r];return!!t&&kE(function(){t.call(null,e||function(){return 1},1)})}});var ei=i(function(Fw,Pl){"use strict";var KE=Sa().forEach,VE=Tl(),YE=VE("forEach");Pl.exports=YE?[].forEach:function(e){return KE(this,e,arguments.length>1?arguments[1]:void 0)}});var $w=pi(Pn());var lh=rt(),av=A(),et=R(),ph=Wu(),yh=w(),dh=F(),qh=P(),hh=xr(),gh=ue(),Sh=un(),Dr=er(),bh=zr(),mh=Qu(),Oh=re(),Eh=rv(),Ih=nv(),Th=_(),Dn=Th("replace"),Ph=Math.max,wh=Math.min,Rh=et([].concat),jn=et([].push),iv=et("".indexOf),ov=et("".slice),xh=function(r){return r===void 0?r:String(r)},_h=function(){return"a".replace(/./,"$0")==="$0"}(),uv=function(){return/./[Dn]?/./[Dn]("a","$0")==="":!1}(),Ch=!yh(function(){var r=/./;return r.exec=function(){var e=[];return e.groups={a:"7"},e},"".replace(r,"$")!=="7"});ph("replace",function(r,e,t){var n=uv?"$":"$0";return[function(o,v){var u=bh(this),c=hh(o)?void 0:Oh(o,Dn);return c?av(c,o,u,v):av(e,Dr(u),o,v)},function(a,o){var v=dh(this),u=Dr(a);if(typeof o=="string"&&iv(o,n)===-1&&iv(o,"$<")===-1){var c=t(e,v,u,o);if(c.done)return c.value}var f=qh(o);f||(o=Dr(o));var y=v.global;if(y){var S=v.unicode;v.lastIndex=0}for(var m=[];;){var h=Ih(v,u);if(h===null||(jn(m,h),!y))break;var O=Dr(h[0]);O===""&&(v.lastIndex=mh(u,Sh(v.lastIndex),S))}for(var I="",E=0,T=0;T=E&&(I+=ov(u,E,$)+wr,E=$+b.length)}return I+ov(u,E)}]},!Ch||!_h||uv);var eg=C(),tg=w(),ng=Lr(),ag=V(),ig=or(),og=gr(),Ev=cv(),Iv=tt(),ug=Mn(),vg=Fn(),sg=_(),cg=Qr(),Tv=sg("isConcatSpreadable"),fg=cg>=51||!tg(function(){var r=[];return r[Tv]=!1,r.concat()[0]!==r}),lg=function(r){if(!ag(r))return!1;var e=r[Tv];return e!==void 0?!!e:ng(r)},pg=!fg||!vg("concat");eg({target:"Array",proto:!0,arity:1,forced:pg},{concat:function(e){var t=ig(this),n=ug(t,0),a=0,o,v,u,c,f;for(o=-1,u=arguments.length;o=t.length?ll(void 0,!0):(a=IE(t,n),e.index+=a.length,ll(a,!1))});var gl=x(),bl=Ja(),_E=Xa(),Re=Ha(),Qa=dr(),ml=_(),Za=ml("iterator"),Sl=ml("toStringTag"),ri=Re.values,Ol=function(r,e){if(r){if(r[Za]!==ri)try{Qa(r,Za,ri)}catch(n){r[Za]=ri}if(r[Sl]||Qa(r,Sl,e),bl[e]){for(var t in Re)if(r[t]!==Re[t])try{Qa(r,t,Re[t])}catch(n){r[t]=Re[t]}}}};for(wt in bl)Ol(gl[wt]&&gl[wt].prototype,wt);var wt;Ol(_E,"DOMTokenList");var CE=Se();CE("asyncIterator");var NE=Y(),AE=Se(),jE=ur();AE("toStringTag");jE(NE("Symbol"),"Symbol");var DE=x(),LE=ur();LE(DE.JSON,"JSON",!0);var ME=ur();ME(Math,"Math",!0);var FE=C(),$E=w(),UE=or(),El=Et(),GE=Fa(),BE=$E(function(){El(1)});FE({target:"Object",stat:!0,forced:BE,sham:!GE},{getPrototypeOf:function(e){return El(UE(e))}});var WE=C(),wl=ei();WE({target:"Array",proto:!0,forced:[].forEach!=wl},{forEach:wl});var Rl=x(),xl=Ja(),HE=Xa(),ti=ei(),JE=dr(),_l=function(r){if(r&&r.forEach!==ti)try{JE(r,"forEach",ti)}catch(e){r.forEach=ti}};for(Rt in xl)xl[Rt]&&_l(Rl[Rt]&&Rl[Rt].prototype);var Rt;_l(HE);var zE=M(),XE=Me().EXISTS,Cl=R(),QE=le(),Nl=Function.prototype,ZE=Cl(Nl.toString),Al=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,rI=Cl(Al.exec),eI="name";zE&&!XE&&QE(Nl,eI,{configurable:!0,get:function(){try{return rI(Al,ZE(this))[1]}catch(r){return""}}});var tI=C(),nI=at();tI({target:"Object",stat:!0},{setPrototypeOf:nI});var aI=C(),iI=R(),oI=Lr(),uI=iI([].reverse),jl=[1,2];aI({target:"Array",proto:!0,forced:String(jl)===String(jl.reverse())},{reverse:function(){return oI(this)&&(this.length=this.length),uI(this)}});var vI=C(),Dl=Lr(),sI=nt(),cI=V(),Ll=ke(),fI=gr(),lI=Z(),pI=tt(),yI=_(),dI=Fn(),qI=it(),hI=dI("slice"),gI=yI("species"),ni=Array,SI=Math.max;vI({target:"Array",proto:!0,forced:!hI},{slice:function(e,t){var n=lI(this),a=fI(n),o=Ll(e,a),v=Ll(t===void 0?a:t,a),u,c,f;if(Dl(n)&&(u=n.constructor,sI(u)&&(u===ni||Dl(u.prototype))?u=void 0:cI(u)&&(u=u[gI],u===null&&(u=void 0)),u===ni||u===void 0))return qI(n,o,v);for(c=new(u===void 0?ni:u)(SI(v-o,0)),f=0;o=0;--g){var q=this.tryEntries[g],N=q.completion;if(q.tryLoc==="root")return d("end");if(q.tryLoc<=this.prev){var L=t.call(q,"catchLoc"),U=t.call(q,"finallyLoc");if(L&&U){if(this.prev=0;--d){var g=this.tryEntries[d];if(g.tryLoc<=this.prev&&t.call(g,"finallyLoc")&&this.prev=0;--l){var d=this.tryEntries[l];if(d.finallyLoc===s)return this.complete(d.completion,d.afterLoc),wr(d),S}},catch:function(s){for(var l=this.tryEntries.length-1;l>=0;--l){var d=this.tryEntries[l];if(d.tryLoc===s){var g=d.completion;if(g.type==="throw"){var q=g.arg;wr(d)}return q}}throw new Error("illegal catch attempt")},delegateYield:function(s,l,d){return this.delegate={iterator:_t(s),resultName:l,nextLoc:d},this.method==="next"&&(this.arg=void 0),S}},r}function Ml(r,e,t,n,a,o,v){try{var u=r[o](v),c=u.value}catch(f){t(f);return}u.done?e(c):Promise.resolve(c).then(n,a)}function ci(r){return function(){var e=this,t=arguments;return new Promise(function(n,a){var o=r.apply(e,t);function v(c){Ml(o,n,a,v,u,"next",c)}function u(c){Ml(o,n,a,v,u,"throw",c)}v(void 0)})}}document.documentElement.classList.add("autoreload-enabled");var bI=window.location.protocol==="https:"?"wss:":"ws:",mI=window.location.pathname.replace(/\/?$/,"/")+"autoreload/",OI="".concat(bI,"//").concat(window.location.host).concat(mI),EI=((ai=document.currentScript)===null||ai===void 0||(ii=ai.dataset)===null||ii===void 0?void 0:ii.wsUrl)||OI;function II(r){return ui.apply(this,arguments)}function ui(){return ui=ci(Tr().mark(function r(e){var t,n;return Tr().wrap(function(o){for(;;)switch(o.prev=o.next){case 0:return t=new WebSocket(e),n=!1,o.abrupt("return",new Promise(function(v,u){t.onopen=function(){n=!0},t.onerror=function(c){u(c)},t.onclose=function(){n?v(!1):u(new Error("WebSocket connection failed"))},t.onmessage=function(c){c.data==="autoreload"&&v(!0)}}));case 3:case"end":return o.stop()}},r)})),ui.apply(this,arguments)}function TI(r){return vi.apply(this,arguments)}function vi(){return vi=ci(Tr().mark(function r(e){return Tr().wrap(function(n){for(;;)switch(n.prev=n.next){case 0:return n.abrupt("return",new Promise(function(a){return setTimeout(a,e)}));case 1:case"end":return n.stop()}},r)})),vi.apply(this,arguments)}function PI(){return si.apply(this,arguments)}function si(){return si=ci(Tr().mark(function r(){return Tr().wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=1,t.next=4,II(EI);case 4:if(!t.sent){t.next=7;break}return window.location.reload(),t.abrupt("return");case 7:t.next=13;break;case 9:return t.prev=9,t.t0=t.catch(1),console.debug("Giving up on autoreload"),t.abrupt("return");case 13:return t.next=15,TI(1e3);case 15:t.next=0;break;case 17:case"end":return t.stop()}},r,null,[[1,9]])})),si.apply(this,arguments)}PI().catch(function(r){console.error(r)});})(); /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ //# sourceMappingURL=shiny-autoreload.js.map diff --git a/inst/www/shared/shiny-showcase.css b/inst/www/shared/shiny-showcase.css index 1f23815be1..a0a008a518 100644 --- a/inst/www/shared/shiny-showcase.css +++ b/inst/www/shared/shiny-showcase.css @@ -1,2 +1,2 @@ -/*! shiny 1.8.0.9000 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ +/*! shiny 1.8.1 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ #showcase-well{border-radius:0}.shiny-code{background-color:#fff;margin-bottom:0}.shiny-code code{font-family:Menlo,Consolas,Courier New,monospace}.shiny-code-container{margin-top:20px;clear:both}.shiny-code-container h3{display:inline;margin-right:15px}.showcase-header{font-size:16px;font-weight:400}.showcase-code-link{text-align:right;padding:15px}#showcase-app-container{vertical-align:top}#showcase-code-tabs{margin-right:15px}#showcase-code-tabs pre{border:none;line-height:1em}#showcase-code-tabs .nav,#showcase-code-tabs ul{margin-bottom:0}#showcase-code-tabs .tab-content{border-style:solid;border-color:#e5e5e5;border-width:0px 1px 1px 1px;overflow:auto;border-bottom-right-radius:4px;border-bottom-left-radius:4px}#showcase-app-code{width:100%}#showcase-code-position-toggle{float:right}#showcase-sxs-code{padding-top:20px;vertical-align:top}.showcase-code-license{display:block;text-align:right}#showcase-code-content pre{background-color:#fff} diff --git a/inst/www/shared/shiny-showcase.js b/inst/www/shared/shiny-showcase.js index 65592722c2..dd28db3d5a 100644 --- a/inst/www/shared/shiny-showcase.js +++ b/inst/www/shared/shiny-showcase.js @@ -1,3 +1,3 @@ -/*! shiny 1.8.0.9000 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ +/*! shiny 1.8.1 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ "use strict";(function(){var ta=Object.create;var Re=Object.defineProperty;var na=Object.getOwnPropertyDescriptor;var ia=Object.getOwnPropertyNames;var aa=Object.getPrototypeOf,oa=Object.prototype.hasOwnProperty;var i=function(r,e){return function(){return e||r((e={exports:{}}).exports,e),e.exports}};var ua=function(r,e,t,n){if(e&&typeof e=="object"||typeof e=="function")for(var a=ia(e),o=0,l=a.length,u;o0&&b[0]<4?1:+(b[0]+b[1]));!V&&Ir&&(b=Ir.match(/Edge\/(\d+)/),(!b||b[1]>=74)&&(b=Ir.match(/Chrome\/(\d+)/),b&&(V=+b[1])));dt.exports=V});var wr=i(function(Sv,yt){var gt=pt(),Ra=g();yt.exports=!!Object.getOwnPropertySymbols&&!Ra(function(){var r=Symbol();return!String(r)||!(Object(r)instanceof Symbol)||!Symbol.sham&>&><41})});var Tr=i(function(Ov,qt){var _a=wr();qt.exports=_a&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Pr=i(function(Iv,ht){var ja=X(),Na=y(),Da=at(),Aa=Tr(),Ba=Object;ht.exports=Aa?function(r){return typeof r=="symbol"}:function(r){var e=ja("Symbol");return Na(e)&&Da(e.prototype,Ba(r))}});var bt=i(function(wv,mt){var Ma=String;mt.exports=function(r){try{return Ma(r)}catch(e){return"Object"}}});var Et=i(function(Tv,xt){var $a=y(),Fa=bt(),La=TypeError;xt.exports=function(r){if($a(r))return r;throw La(Fa(r)+" is not a function")}});var Cr=i(function(Pv,St){var Ua=Et(),Ga=Y();St.exports=function(r,e){var t=r[e];return Ga(t)?void 0:Ua(t)}});var It=i(function(Cv,Ot){var Rr=C(),_r=y(),jr=_(),Ka=TypeError;Ot.exports=function(r,e){var t,n;if(e==="string"&&_r(t=r.toString)&&!jr(n=Rr(t,r))||_r(t=r.valueOf)&&!jr(n=Rr(t,r))||e!=="string"&&_r(t=r.toString)&&!jr(n=Rr(t,r)))return n;throw Ka("Can't convert object to primitive value")}});var Tt=i(function(Rv,wt){wt.exports=!1});var J=i(function(_v,Ct){var Pt=q(),ka=Object.defineProperty;Ct.exports=function(r,e){try{ka(Pt,r,{value:e,configurable:!0,writable:!0})}catch(t){Pt[r]=e}return e}});var Z=i(function(jv,_t){var Wa=q(),Ha=J(),Rt="__core-js_shared__",za=Wa[Rt]||Ha(Rt,{});_t.exports=za});var Q=i(function(Nv,Nt){var Ya=Tt(),jt=Z();(Nt.exports=function(r,e){return jt[r]||(jt[r]=e!==void 0?e:{})})("versions",[]).push({version:"3.29.0",mode:Ya?"pure":"global",copyright:"\xA9 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.29.0/LICENSE",source:"https://github.com/zloirock/core-js"})});var Nr=i(function(Dv,Dt){var Xa=F(),Va=Object;Dt.exports=function(r){return Va(Xa(r))}});var I=i(function(Av,At){var Ja=p(),Za=Nr(),Qa=Ja({}.hasOwnProperty);At.exports=Object.hasOwn||function(e,t){return Qa(Za(e),t)}});var Dr=i(function(Bv,Bt){var ro=p(),eo=0,to=Math.random(),no=ro(1 .toString);Bt.exports=function(r){return"Symbol("+(r===void 0?"":r)+")_"+no(++eo+to,36)}});var N=i(function(Mv,$t){var io=q(),ao=Q(),Mt=I(),oo=Dr(),uo=wr(),lo=Tr(),j=io.Symbol,Ar=ao("wks"),co=lo?j.for||j:j&&j.withoutSetter||oo;$t.exports=function(r){return Mt(Ar,r)||(Ar[r]=uo&&Mt(j,r)?j[r]:co("Symbol."+r)),Ar[r]}});var Gt=i(function($v,Ut){var vo=C(),Ft=_(),Lt=Pr(),so=Cr(),fo=It(),po=N(),go=TypeError,yo=po("toPrimitive");Ut.exports=function(r,e){if(!Ft(r)||Lt(r))return r;var t=so(r,yo),n;if(t){if(e===void 0&&(e="default"),n=vo(t,r,e),!Ft(n)||Lt(n))return n;throw go("Can't convert object to primitive value")}return e===void 0&&(e="number"),fo(r,e)}});var Br=i(function(Fv,Kt){var qo=Gt(),ho=Pr();Kt.exports=function(r){var e=qo(r,"string");return ho(e)?e:e+""}});var $r=i(function(Lv,Wt){var mo=q(),kt=_(),Mr=mo.document,bo=kt(Mr)&&kt(Mr.createElement);Wt.exports=function(r){return bo?Mr.createElement(r):{}}});var Fr=i(function(Uv,Ht){var xo=S(),Eo=g(),So=$r();Ht.exports=!xo&&!Eo(function(){return Object.defineProperty(So("div"),"a",{get:function(){return 7}}).a!=7})});var Lr=i(function(Yt){var Oo=S(),Io=C(),wo=Fe(),To=mr(),Po=L(),Co=Br(),Ro=I(),_o=Fr(),zt=Object.getOwnPropertyDescriptor;Yt.f=Oo?zt:function(e,t){if(e=Po(e),t=Co(t),_o)try{return zt(e,t)}catch(n){}if(Ro(e,t))return To(!Io(wo.f,e,t),e[t])}});var Ur=i(function(Kv,Xt){var jo=S(),No=g();Xt.exports=jo&&No(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!=42})});var w=i(function(kv,Vt){var Do=_(),Ao=String,Bo=TypeError;Vt.exports=function(r){if(Do(r))return r;throw Bo(Ao(r)+" is not an object")}});var U=i(function(Zt){var Mo=S(),$o=Fr(),Fo=Ur(),rr=w(),Jt=Br(),Lo=TypeError,Gr=Object.defineProperty,Uo=Object.getOwnPropertyDescriptor,Kr="enumerable",kr="configurable",Wr="writable";Zt.f=Mo?Fo?function(e,t,n){if(rr(e),t=Jt(t),rr(n),typeof e=="function"&&t==="prototype"&&"value"in n&&Wr in n&&!n[Wr]){var a=Uo(e,t);a&&a[Wr]&&(e[t]=n.value,n={configurable:kr in n?n[kr]:a[kr],enumerable:Kr in n?n[Kr]:a[Kr],writable:!1})}return Gr(e,t,n)}:Gr:function(e,t,n){if(rr(e),t=Jt(t),rr(n),$o)try{return Gr(e,t,n)}catch(a){}if("get"in n||"set"in n)throw Lo("Accessors not supported");return"value"in n&&(e[t]=n.value),e}});var er=i(function(Hv,Qt){var Go=S(),Ko=U(),ko=mr();Qt.exports=Go?function(r,e,t){return Ko.f(r,e,ko(1,t))}:function(r,e,t){return r[e]=t,r}});var tn=i(function(zv,en){var Hr=S(),Wo=I(),rn=Function.prototype,Ho=Hr&&Object.getOwnPropertyDescriptor,zr=Wo(rn,"name"),zo=zr&&function(){}.name==="something",Yo=zr&&(!Hr||Hr&&Ho(rn,"name").configurable);en.exports={EXISTS:zr,PROPER:zo,CONFIGURABLE:Yo}});var an=i(function(Yv,nn){var Xo=p(),Vo=y(),Yr=Z(),Jo=Xo(Function.toString);Vo(Yr.inspectSource)||(Yr.inspectSource=function(r){return Jo(r)});nn.exports=Yr.inspectSource});var ln=i(function(Xv,un){var Zo=q(),Qo=y(),on=Zo.WeakMap;un.exports=Qo(on)&&/native code/.test(String(on))});var Xr=i(function(Vv,vn){var ru=Q(),eu=Dr(),cn=ru("keys");vn.exports=function(r){return cn[r]||(cn[r]=eu(r))}});var tr=i(function(Jv,sn){sn.exports={}});var Qr=i(function(Zv,pn){var tu=ln(),dn=q(),nu=_(),iu=er(),Vr=I(),Jr=Z(),au=Xr(),ou=tr(),fn="Object already initialized",Zr=dn.TypeError,uu=dn.WeakMap,nr,G,ir,lu=function(r){return ir(r)?G(r):nr(r,{})},cu=function(r){return function(e){var t;if(!nu(e)||(t=G(e)).type!==r)throw Zr("Incompatible receiver, "+r+" required");return t}};tu||Jr.state?(x=Jr.state||(Jr.state=new uu),x.get=x.get,x.has=x.has,x.set=x.set,nr=function(r,e){if(x.has(r))throw Zr(fn);return e.facade=r,x.set(r,e),e},G=function(r){return x.get(r)||{}},ir=function(r){return x.has(r)}):(R=au("state"),ou[R]=!0,nr=function(r,e){if(Vr(r,R))throw Zr(fn);return e.facade=r,iu(r,R,e),e},G=function(r){return Vr(r,R)?r[R]:{}},ir=function(r){return Vr(r,R)});var x,R;pn.exports={set:nr,get:G,has:ir,enforce:lu,getterFor:cu}});var hn=i(function(Qv,qn){var ee=p(),vu=g(),su=y(),ar=I(),re=S(),fu=tn().CONFIGURABLE,du=an(),yn=Qr(),pu=yn.enforce,gu=yn.get,gn=String,or=Object.defineProperty,yu=ee("".slice),qu=ee("".replace),hu=ee([].join),mu=re&&!vu(function(){return or(function(){},"length",{value:8}).length!==8}),bu=String(String).split("String"),xu=qn.exports=function(r,e,t){yu(gn(e),0,7)==="Symbol("&&(e="["+qu(gn(e),/^Symbol\(([^)]*)\)/,"$1")+"]"),t&&t.getter&&(e="get "+e),t&&t.setter&&(e="set "+e),(!ar(r,"name")||fu&&r.name!==e)&&(re?or(r,"name",{value:e,configurable:!0}):r.name=e),mu&&t&&ar(t,"arity")&&r.length!==t.arity&&or(r,"length",{value:t.arity});try{t&&ar(t,"constructor")&&t.constructor?re&&or(r,"prototype",{writable:!1}):r.prototype&&(r.prototype=void 0)}catch(a){}var n=pu(r);return ar(n,"source")||(n.source=hu(bu,typeof e=="string"?e:"")),r};Function.prototype.toString=xu(function(){return su(this)&&gu(this).source||du(this)},"toString")});var te=i(function(rs,mn){var Eu=y(),Su=U(),Ou=hn(),Iu=J();mn.exports=function(r,e,t,n){n||(n={});var a=n.enumerable,o=n.name!==void 0?n.name:e;if(Eu(t)&&Ou(t,o,n),n.global)a?r[e]=t:Iu(e,t);else{try{n.unsafe?r[e]&&(a=!0):delete r[e]}catch(l){}a?r[e]=t:Su.f(r,e,{value:t,enumerable:!1,configurable:!n.nonConfigurable,writable:!n.nonWritable})}return r}});var xn=i(function(es,bn){var wu=Math.ceil,Tu=Math.floor;bn.exports=Math.trunc||function(e){var t=+e;return(t>0?Tu:wu)(t)}});var K=i(function(ts,En){var Pu=xn();En.exports=function(r){var e=+r;return e!==e||e===0?0:Pu(e)}});var On=i(function(ns,Sn){var Cu=K(),Ru=Math.max,_u=Math.min;Sn.exports=function(r,e){var t=Cu(r);return t<0?Ru(t+e,0):_u(t,e)}});var ne=i(function(is,In){var ju=K(),Nu=Math.min;In.exports=function(r){return r>0?Nu(ju(r),9007199254740991):0}});var Tn=i(function(as,wn){var Du=ne();wn.exports=function(r){return Du(r.length)}});var Rn=i(function(os,Cn){var Au=L(),Bu=On(),Mu=Tn(),Pn=function(r){return function(e,t,n){var a=Au(e),o=Mu(a),l=Bu(n,o),u;if(r&&t!=t){for(;o>l;)if(u=a[l++],u!=u)return!0}else for(;o>l;l++)if((r||l in a)&&a[l]===t)return r||l||0;return!r&&-1}};Cn.exports={includes:Pn(!0),indexOf:Pn(!1)}});var ae=i(function(us,jn){var $u=p(),ie=I(),Fu=L(),Lu=Rn().indexOf,Uu=tr(),_n=$u([].push);jn.exports=function(r,e){var t=Fu(r),n=0,a=[],o;for(o in t)!ie(Uu,o)&&ie(t,o)&&_n(a,o);for(;e.length>n;)ie(t,o=e[n++])&&(~Lu(a,o)||_n(a,o));return a}});var ur=i(function(ls,Nn){Nn.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var An=i(function(Dn){var Gu=ae(),Ku=ur(),ku=Ku.concat("length","prototype");Dn.f=Object.getOwnPropertyNames||function(e){return Gu(e,ku)}});var Mn=i(function(Bn){Bn.f=Object.getOwnPropertySymbols});var Fn=i(function(ss,$n){var Wu=X(),Hu=p(),zu=An(),Yu=Mn(),Xu=w(),Vu=Hu([].concat);$n.exports=Wu("Reflect","ownKeys")||function(e){var t=zu.f(Xu(e)),n=Yu.f;return n?Vu(t,n(e)):t}});var Gn=i(function(fs,Un){var Ln=I(),Ju=Fn(),Zu=Lr(),Qu=U();Un.exports=function(r,e,t){for(var n=Ju(e),a=Qu.f,o=Zu.f,l=0;ll;)jl.f(e,u=a[l++],n[u]);return e}});var li=i(function(Es,ui){var Bl=X();ui.exports=Bl("document","documentElement")});var yi=i(function(Ss,gi){var Ml=w(),$l=oi(),ci=ur(),Fl=tr(),Ll=li(),Ul=$r(),Gl=Xr(),vi=">",si="<",se="prototype",fe="script",di=Gl("IE_PROTO"),ve=function(){},pi=function(r){return si+fe+vi+r+si+"/"+fe+vi},fi=function(r){r.write(pi("")),r.close();var e=r.parentWindow.Object;return r=null,e},Kl=function(){var r=Ul("iframe"),e="java"+fe+":",t;return r.style.display="none",Ll.appendChild(r),r.src=String(e),t=r.contentWindow.document,t.open(),t.write(pi("document.F=Object")),t.close(),t.F},vr,sr=function(){try{vr=new ActiveXObject("htmlfile")}catch(e){}sr=typeof document!="undefined"?document.domain&&vr?fi(vr):Kl():fi(vr);for(var r=ci.length;r--;)delete sr[se][ci[r]];return sr()};Fl[di]=!0;gi.exports=Object.create||function(e,t){var n;return e!==null?(ve[se]=Ml(e),n=new ve,ve[se]=null,n[di]=e):n=sr(),t===void 0?n:$l.f(n,t)}});var hi=i(function(Os,qi){var kl=g(),Wl=q(),Hl=Wl.RegExp;qi.exports=kl(function(){var r=Hl(".","s");return!(r.dotAll&&r.exec("\n")&&r.flags==="s")})});var bi=i(function(Is,mi){var zl=g(),Yl=q(),Xl=Yl.RegExp;mi.exports=zl(function(){var r=Xl("(?b)","g");return r.exec("b").groups.a!=="b"||"b".replace(r,"$c")!=="bc"})});var pr=i(function(ws,Ei){"use strict";var D=C(),dr=p(),Vl=cr(),Jl=ri(),Zl=ti(),Ql=Q(),rc=yi(),ec=Qr().get,tc=hi(),nc=bi(),ic=Ql("native-string-replace",String.prototype.replace),fr=RegExp.prototype.exec,pe=fr,ac=dr("".charAt),oc=dr("".indexOf),uc=dr("".replace),de=dr("".slice),ge=function(){var r=/a/,e=/b*/g;return D(fr,r,"a"),D(fr,e,"a"),r.lastIndex!==0||e.lastIndex!==0}(),xi=Zl.BROKEN_CARET,ye=/()??/.exec("")[1]!==void 0,lc=ge||ye||xi||tc||nc;lc&&(pe=function(e){var t=this,n=ec(t),a=Vl(e),o=n.raw,l,u,s,c,v,h,d;if(o)return o.lastIndex=t.lastIndex,l=D(pe,o,a),t.lastIndex=o.lastIndex,l;var f=n.groups,T=xi&&t.sticky,m=D(Jl,t),E=t.source,P=0,O=a;if(T&&(m=uc(m,"y",""),oc(m,"g")===-1&&(m+="g"),O=de(a,t.lastIndex),t.lastIndex>0&&(!t.multiline||t.multiline&&ac(a,t.lastIndex-1)!=="\n")&&(E="(?: "+E+")",O=" "+O,P++),u=new RegExp("^(?:"+E+")",m)),ye&&(u=new RegExp("^"+E+"$(?!\\s)",m)),ge&&(s=t.lastIndex),c=D(fr,T?u:t,O),T?c?(c.input=de(c.input,P),c[0]=de(c[0],P),c.index=t.lastIndex,t.lastIndex+=c[0].length):t.lastIndex=0:ge&&c&&(t.lastIndex=t.global?c.index+c[0].length:s),ye&&c&&c.length>1&&D(ic,c[0],u,function(){for(v=1;v=o?r?"":void 0:(l=Mi(n,a),l<55296||l>56319||a+1===o||(u=Mi(n,a+1))<56320||u>57343?r?mc(n,a):l:r?bc(n,a,a+2):(l-55296<<10)+(u-56320)+65536)}};Fi.exports={codeAt:$i(!1),charAt:$i(!0)}});var Gi=i(function(Ns,Ui){"use strict";var xc=Li().charAt;Ui.exports=function(r,e,t){return e+(t?xc(r,e).length:1)}});var ki=i(function(Ds,Ki){var Ee=p(),Ec=Nr(),Sc=Math.floor,be=Ee("".charAt),Oc=Ee("".replace),xe=Ee("".slice),Ic=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,wc=/\$([$&'`]|\d{1,2})/g;Ki.exports=function(r,e,t,n,a,o){var l=t+r.length,u=n.length,s=wc;return a!==void 0&&(a=Ec(a),s=Ic),Oc(o,s,function(c,v){var h;switch(be(v,0)){case"$":return"$";case"&":return r;case"`":return xe(e,0,t);case"'":return xe(e,l);case"<":h=a[xe(v,1,-1)];break;default:var d=+v;if(d===0)return c;if(d>u){var f=Sc(d/10);return f===0?c:f<=u?n[f-1]===void 0?be(v,1):n[f-1]+be(v,1):c}h=n[d-1]}return h===void 0?"":h})}});var zi=i(function(As,Hi){var Wi=C(),Tc=w(),Pc=y(),Cc=M(),Rc=pr(),_c=TypeError;Hi.exports=function(r,e){var t=r.exec;if(Pc(t)){var n=Wi(t,r,e);return n!==null&&Tc(n),n}if(Cc(r)==="RegExp")return Wi(Rc,r,e);throw _c("RegExp#exec called on incompatible receiver")}});var Bs=la(qe());var jc=Pi(),Yi=C(),gr=p(),Nc=Bi(),Dc=g(),Ac=w(),Bc=y(),Mc=Y(),$c=K(),Fc=ne(),A=cr(),Lc=F(),Uc=Gi(),Gc=Cr(),Kc=ki(),kc=zi(),Wc=N(),Oe=Wc("replace"),Hc=Math.max,zc=Math.min,Yc=gr([].concat),Se=gr([].push),Xi=gr("".indexOf),Vi=gr("".slice),Xc=function(r){return r===void 0?r:String(r)},Vc=function(){return"a".replace(/./,"$0")==="$0"}(),Ji=function(){return/./[Oe]?/./[Oe]("a","$0")==="":!1}(),Jc=!Dc(function(){var r=/./;return r.exec=function(){var e=[];return e.groups={a:"7"},e},"".replace(r,"$")!=="7"});Nc("replace",function(r,e,t){var n=Ji?"$":"$0";return[function(o,l){var u=Lc(this),s=Mc(o)?void 0:Gc(o,Oe);return s?Yi(s,o,u,l):Yi(e,A(u),o,l)},function(a,o){var l=Ac(this),u=A(a);if(typeof o=="string"&&Xi(o,n)===-1&&Xi(o,"$<")===-1){var s=t(e,l,u,o);if(s.done)return s.value}var c=Bc(o);c||(o=A(o));var v=l.global;if(v){var h=l.unicode;l.lastIndex=0}for(var d=[];;){var f=kc(l,u);if(f===null||(Se(d,f),!v))break;var T=A(f[0]);T===""&&(l.lastIndex=Uc(u,Fc(l.lastIndex),h))}for(var m="",E=0,P=0;P=E&&(m+=Vi(u,E,B)+Ce,E=B+O.length)}return m+Vi(u,E)}]},!Jc||!Vc||Ji);var Zi=400;function Ie(r,e){var t=0;if(r.nodeType===3){var n=r.nodeValue.replace(/\n/g,"").length;if(n>=e)return{element:r,offset:e};t+=n}else if(r.nodeType===1&&r.firstChild){var a=Ie(r.firstChild,e);if(a.element!==null)return a;t+=a.offset}return r.nextSibling?Ie(r.nextSibling,e-t):{element:null,offset:t}}function we(r,e,t){for(var n=0,a=0;a show below':' show with app'}),e&&$(document.body).animate({scrollTop:0},n),Te=e,ra(e&&t),$(window).trigger("resize")};function ra(r){var e=960,t=e,n=1,a=document.getElementById("showcase-app-code").offsetWidth;a/2>e?t=a/2:a*.66>e?t=960:(t=a*.66,n=t/e);var o=document.getElementById("showcase-app-container");$(o).animate({width:t+"px",zoom:n*100+"%"},r?Zi:0)}var Qc=function(){Qi(!Te,!0)},rv=function(){document.body.offsetWidth>1350&&Qi(!0,!1)};function ea(){document.getElementById("showcase-code-content").style.height=$(window).height()+"px"}function ev(){var r=document.getElementById("showcase-markdown-content");if(r!==null){var e=r.innerText||r.innerHTML,t=window.Showdown.converter;document.getElementById("readme-md").innerHTML=new t().makeHtml(e)}}$(window).resize(function(){Te&&(ra(!1),ea())});window.toggleCodePosition=Qc;$(window).on("load",rv);$(window).on("load",ev);window.hljs&&window.hljs.initHighlightingOnLoad();})(); //# sourceMappingURL=shiny-showcase.js.map diff --git a/inst/www/shared/shiny-testmode.js b/inst/www/shared/shiny-testmode.js index b45bccde4d..1482e00e16 100644 --- a/inst/www/shared/shiny-testmode.js +++ b/inst/www/shared/shiny-testmode.js @@ -1,3 +1,3 @@ -/*! shiny 1.8.0.9000 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ +/*! shiny 1.8.1 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ "use strict";(function(){var a=eval;window.addEventListener("message",function(i){var e=i.data;e.code&&a(e.code)});})(); //# sourceMappingURL=shiny-testmode.js.map diff --git a/inst/www/shared/shiny.js b/inst/www/shared/shiny.js index c1dbe956fc..d43baae9d3 100644 --- a/inst/www/shared/shiny.js +++ b/inst/www/shared/shiny.js @@ -1,4 +1,4 @@ -/*! shiny 1.8.0.9000 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ +/*! shiny 1.8.1 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ "use strict"; (function() { var __create = Object.create; @@ -25106,7 +25106,7 @@ var windowShiny2; function setShiny(windowShiny_) { windowShiny2 = windowShiny_; - windowShiny2.version = "1.8.0.9000"; + windowShiny2.version = "1.8.1"; var _initInputBindings = initInputBindings(), inputBindings = _initInputBindings.inputBindings, fileInputBinding2 = _initInputBindings.fileInputBinding; var _initOutputBindings = initOutputBindings(), outputBindings = _initOutputBindings.outputBindings; setFileInputBinding(fileInputBinding2); diff --git a/inst/www/shared/shiny.min.css b/inst/www/shared/shiny.min.css index 44df098cd9..aea3b9e462 100644 --- a/inst/www/shared/shiny.min.css +++ b/inst/www/shared/shiny.min.css @@ -1,2 +1,2 @@ -/*! shiny 1.8.0.9000 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ +/*! shiny 1.8.1 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ pre.shiny-text-output:empty:before{content:" "}pre.shiny-text-output.noplaceholder:empty{margin:0;padding:0;border-width:0;height:0}pre.shiny-text-output{word-wrap:normal}.shiny-image-output img.shiny-scalable,.shiny-plot-output img.shiny-scalable{max-width:100%;max-height:100%}#shiny-disconnected-overlay{position:fixed;inset:0;background-color:#999;opacity:.5;overflow:hidden;z-index:99998;pointer-events:none}html.autoreload-enabled #shiny-disconnected-overlay.reloading{opacity:0;animation:fadeIn .25s forwards;animation-delay:1s}@keyframes fadeIn{to{opacity:.1}}.table.shiny-table>thead>tr>th,.table.shiny-table>thead>tr>td,.table.shiny-table>tbody>tr>th,.table.shiny-table>tbody>tr>td,.table.shiny-table>tfoot>tr>th,.table.shiny-table>tfoot>tr>td{padding-right:12px;padding-left:12px}.shiny-table.spacing-xs>thead>tr>th,.shiny-table.spacing-xs>thead>tr>td,.shiny-table.spacing-xs>tbody>tr>th,.shiny-table.spacing-xs>tbody>tr>td,.shiny-table.spacing-xs>tfoot>tr>th,.shiny-table.spacing-xs>tfoot>tr>td{padding-top:3px;padding-bottom:3px}.shiny-table.spacing-s>thead>tr>th,.shiny-table.spacing-s>thead>tr>td,.shiny-table.spacing-s>tbody>tr>th,.shiny-table.spacing-s>tbody>tr>td,.shiny-table.spacing-s>tfoot>tr>th,.shiny-table.spacing-s>tfoot>tr>td{padding-top:5px;padding-bottom:5px}.shiny-table.spacing-m>thead>tr>th,.shiny-table.spacing-m>thead>tr>td,.shiny-table.spacing-m>tbody>tr>th,.shiny-table.spacing-m>tbody>tr>td,.shiny-table.spacing-m>tfoot>tr>th,.shiny-table.spacing-m>tfoot>tr>td{padding-top:8px;padding-bottom:8px}.shiny-table.spacing-l>thead>tr>th,.shiny-table.spacing-l>thead>tr>td,.shiny-table.spacing-l>tbody>tr>th,.shiny-table.spacing-l>tbody>tr>td,.shiny-table.spacing-l>tfoot>tr>th,.shiny-table.spacing-l>tfoot>tr>td{padding-top:10px;padding-bottom:10px}.shiny-table .NA{color:#909090}.shiny-output-error{color:red;white-space:pre-wrap}.shiny-output-error:before{content:"Error: ";font-weight:700}.shiny-output-error-validation{color:#888}.shiny-output-error-validation:before{content:"";font-weight:inherit}@supports (-ms-ime-align:auto){.shiny-bound-output{transition:0}}.recalculating{opacity:.3;transition:opacity .25s ease .5s}.slider-animate-container{text-align:right;margin-top:-9px}.slider-animate-button{position:relative;z-index:1;opacity:.5}.slider-animate-button .pause{display:none}.slider-animate-button.playing .pause,.slider-animate-button .play{display:inline}.slider-animate-button.playing .play{display:none}.progress.shiny-file-input-progress{visibility:hidden}.progress.shiny-file-input-progress .progress-bar.bar-danger{transition:none}.btn-file{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.shiny-input-container input[type=file]{overflow:hidden;max-width:100%}.shiny-progress-container{position:fixed;top:0;width:100%;z-index:2000}.shiny-progress .progress{position:absolute;width:100%;top:0;height:3px;margin:0}.shiny-progress .bar{opacity:.6;transition-duration:.25s}.shiny-progress .progress-text{position:absolute;right:10px;width:240px;background-color:#eef8ff;margin:0;padding:2px 3px;opacity:.85}.shiny-progress .progress-text .progress-message{padding:0 3px;font-weight:700;font-size:90%}.shiny-progress .progress-text .progress-detail{padding:0 3px;font-size:80%}.shiny-progress-notification .progress{margin-bottom:5px;height:10px}.shiny-progress-notification .progress-text .progress-message{font-weight:700;font-size:90%}.shiny-progress-notification .progress-text .progress-detail{font-size:80%}.shiny-label-null{display:none}.crosshair{cursor:crosshair}.grabbable{cursor:grab;cursor:-moz-grab;cursor:-webkit-grab}.grabbing{cursor:grabbing;cursor:-moz-grabbing;cursor:-webkit-grabbing}.ns-resize{cursor:ns-resize}.ew-resize{cursor:ew-resize}.nesw-resize{cursor:nesw-resize}.nwse-resize{cursor:nwse-resize}.qt pre,.qt code{font-family:monospace!important}.qt5 .radio input[type=radio],.qt5 .checkbox input[type=checkbox]{margin-top:0}.qtmac input[type=radio],.qtmac input[type=checkbox]{zoom:1.0000001}.shiny-frame{border:none}.shiny-flow-layout>div{display:inline-block;vertical-align:top;padding-right:12px;width:220px}.shiny-split-layout{width:100%;white-space:nowrap}.shiny-split-layout>div{display:inline-block;vertical-align:top;box-sizing:border-box;overflow:auto}.shiny-input-panel{padding:6px 8px;margin-top:6px;margin-bottom:6px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:2px}.shiny-input-checkboxgroup label~.shiny-options-group,.shiny-input-radiogroup label~.shiny-options-group{margin-top:-10px}.shiny-input-checkboxgroup.shiny-input-container-inline label~.shiny-options-group,.shiny-input-radiogroup.shiny-input-container-inline label~.shiny-options-group{margin-top:-1px}.shiny-input-container:not(.shiny-input-container-inline){width:300px;max-width:100%}.well .shiny-input-container{width:auto}.shiny-input-container>div>select:not(.selectized){width:100%}#shiny-notification-panel{position:fixed;bottom:0;right:0;background-color:#0000;padding:2px;width:300px;max-width:100%;z-index:99999}.shiny-notification{position:relative;background-color:#e8e8e8;color:#333;border:1px solid #ccc;border-radius:3px;opacity:.85;padding:10px 2rem 10px 10px;margin:5px}.shiny-notification-message{color:#31708f;background-color:#d9edf7;border:1px solid #bce8f1}.shiny-notification-warning{color:#8a6d3b;background-color:#fcf8e3;border:1px solid #faebcc}.shiny-notification-error{color:#a94442;background-color:#f2dede;border:1px solid #ebccd1}.shiny-notification-close{position:absolute;width:2rem;height:2rem;top:0;right:0;display:flex;align-items:center;justify-content:center;font-weight:400;font-size:1.125em;padding:.25rem;color:#444;cursor:pointer}.shiny-notification-close:hover{color:#000;font-weight:700}.shiny-notification-content-action a{color:#337ab7;text-decoration:underline;font-weight:700}.shiny-file-input-active{box-shadow:inset 0 1px 1px #00000013,0 0 8px #66afe999}.shiny-file-input-over{box-shadow:inset 0 1px 1px #00000013,0 0 8px #4cae4c99}.datepicker table tbody tr td.disabled,.datepicker table tbody tr td.disabled:hover,.datepicker table tbody tr td span.disabled,.datepicker table tbody tr td span.disabled:hover{color:#aaa;cursor:not-allowed}.nav-hidden{display:none!important} diff --git a/inst/www/shared/shiny.min.js b/inst/www/shared/shiny.min.js index 7b05d98375..f394769f2a 100644 --- a/inst/www/shared/shiny.min.js +++ b/inst/www/shared/shiny.min.js @@ -1,5 +1,5 @@ -/*! shiny 1.8.0.9000 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ -"use strict";(function(){var Dq=Object.create;var rh=Object.defineProperty;var Bq=Object.getOwnPropertyDescriptor;var Mq=Object.getOwnPropertyNames;var Gq=Object.getPrototypeOf,Uq=Object.prototype.hasOwnProperty;var I=function(e,r){return function(){return r||e((r={exports:{}}).exports,r),r.exports}};var Fq=function(e,r,t,n){if(r&&typeof r=="object"||typeof r=="function")for(var i=Mq(r),a=0,f=i.length,c;a0&&Qe[0]<4?1:+(Qe[0]+Qe[1]));!Jo&&_s&&(Qe=_s.match(/Edge\/(\d+)/),(!Qe||Qe[1]>=74)&&(Qe=_s.match(/Chrome\/(\d+)/),Qe&&(Jo=+Qe[1])));Bh.exports=Jo});var et=I(function(fW,Gh){var Mh=Vt(),lT=K();Gh.exports=!!Object.getOwnPropertySymbols&&!lT(function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&Mh&&Mh<41})});var Ps=I(function(cW,Uh){var pT=et();Uh.exports=pT&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var zt=I(function(lW,Fh){var vT=Re(),hT=Z(),dT=mr(),mT=Ps(),yT=Object;Fh.exports=mT?function(e){return typeof e=="symbol"}:function(e){var r=vT("Symbol");return hT(r)&&dT(r.prototype,yT(e))}});var rt=I(function(pW,Vh){var gT=String;Vh.exports=function(e){try{return gT(e)}catch(r){return"Object"}}});var Ve=I(function(vW,zh){var bT=Z(),wT=rt(),ST=TypeError;zh.exports=function(e){if(bT(e))return e;throw ST(wT(e)+" is not a function")}});var xr=I(function(hW,Hh){var OT=Ve(),_T=Fe();Hh.exports=function(e,r){var t=e[r];return _T(t)?void 0:OT(t)}});var Ts=I(function(dW,Kh){var Es=re(),Is=Z(),qs=ae(),PT=TypeError;Kh.exports=function(e,r){var t,n;if(r==="string"&&Is(t=e.toString)&&!qs(n=Es(t,e))||Is(t=e.valueOf)&&!qs(n=Es(t,e))||r!=="string"&&Is(t=e.toString)&&!qs(n=Es(t,e)))return n;throw PT("Can't convert object to primitive value")}});var Ae=I(function(mW,Wh){Wh.exports=!1});var Zo=I(function(yW,Xh){var Yh=X(),ET=Object.defineProperty;Xh.exports=function(e,r){try{ET(Yh,e,{value:r,configurable:!0,writable:!0})}catch(t){Yh[e]=r}return r}});var ea=I(function(gW,Jh){var IT=X(),qT=Zo(),Qh="__core-js_shared__",TT=IT[Qh]||qT(Qh,{});Jh.exports=TT});var tt=I(function(bW,ed){var kT=Ae(),Zh=ea();(ed.exports=function(e,r){return Zh[e]||(Zh[e]=r!==void 0?r:{})})("versions",[]).push({version:"3.29.0",mode:kT?"pure":"global",copyright:"\xA9 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.29.0/LICENSE",source:"https://github.com/zloirock/core-js"})});var Te=I(function(wW,rd){var xT=Xe(),RT=Object;rd.exports=function(e){return RT(xT(e))}});var ie=I(function(SW,td){var AT=Y(),$T=Te(),NT=AT({}.hasOwnProperty);td.exports=Object.hasOwn||function(r,t){return NT($T(r),t)}});var fi=I(function(OW,nd){var jT=Y(),LT=0,CT=Math.random(),DT=jT(1 .toString);nd.exports=function(e){return"Symbol("+(e===void 0?"":e)+")_"+DT(++LT+CT,36)}});var ee=I(function(_W,od){var BT=X(),MT=tt(),id=ie(),GT=fi(),UT=et(),FT=Ps(),Ht=BT.Symbol,ks=MT("wks"),VT=FT?Ht.for||Ht:Ht&&Ht.withoutSetter||GT;od.exports=function(e){return id(ks,e)||(ks[e]=UT&&id(Ht,e)?Ht[e]:VT("Symbol."+e)),ks[e]}});var xs=I(function(PW,sd){var zT=re(),ad=ae(),ud=zt(),HT=xr(),KT=Ts(),WT=ee(),YT=TypeError,XT=WT("toPrimitive");sd.exports=function(e,r){if(!ad(e)||ud(e))return e;var t=HT(e,XT),n;if(t){if(r===void 0&&(r="default"),n=zT(t,e,r),!ad(n)||ud(n))return n;throw YT("Can't convert object to primitive value")}return r===void 0&&(r="number"),KT(e,r)}});var ci=I(function(EW,fd){var QT=xs(),JT=zt();fd.exports=function(e){var r=QT(e,"string");return JT(r)?r:r+""}});var li=I(function(IW,ld){var ZT=X(),cd=ae(),Rs=ZT.document,ek=cd(Rs)&&cd(Rs.createElement);ld.exports=function(e){return ek?Rs.createElement(e):{}}});var As=I(function(qW,pd){var rk=ne(),tk=K(),nk=li();pd.exports=!rk&&!tk(function(){return Object.defineProperty(nk("div"),"a",{get:function(){return 7}}).a!=7})});var Je=I(function(hd){var ik=ne(),ok=re(),ak=Qo(),uk=Ft(),sk=xe(),fk=ci(),ck=ie(),lk=As(),vd=Object.getOwnPropertyDescriptor;hd.f=ik?vd:function(r,t){if(r=sk(r),t=fk(t),lk)try{return vd(r,t)}catch(n){}if(ck(r,t))return uk(!ok(ak.f,r,t),r[t])}});var $s=I(function(kW,dd){var pk=ne(),vk=K();dd.exports=pk&&vk(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!=42})});var te=I(function(xW,md){var hk=ae(),dk=String,mk=TypeError;md.exports=function(e){if(hk(e))return e;throw mk(dk(e)+" is not an object")}});var be=I(function(gd){var yk=ne(),gk=As(),bk=$s(),ra=te(),yd=ci(),wk=TypeError,Ns=Object.defineProperty,Sk=Object.getOwnPropertyDescriptor,js="enumerable",Ls="configurable",Cs="writable";gd.f=yk?bk?function(r,t,n){if(ra(r),t=yd(t),ra(n),typeof r=="function"&&t==="prototype"&&"value"in n&&Cs in n&&!n[Cs]){var i=Sk(r,t);i&&i[Cs]&&(r[t]=n.value,n={configurable:Ls in n?n[Ls]:i[Ls],enumerable:js in n?n[js]:i[js],writable:!1})}return Ns(r,t,n)}:Ns:function(r,t,n){if(ra(r),t=yd(t),ra(n),gk)try{return Ns(r,t,n)}catch(i){}if("get"in n||"set"in n)throw wk("Accessors not supported");return"value"in n&&(r[t]=n.value),r}});var yr=I(function(AW,bd){var Ok=ne(),_k=be(),Pk=Ft();bd.exports=Ok?function(e,r,t){return _k.f(e,r,Pk(1,t))}:function(e,r,t){return e[r]=t,e}});var nt=I(function($W,Sd){var Ds=ne(),Ek=ie(),wd=Function.prototype,Ik=Ds&&Object.getOwnPropertyDescriptor,Bs=Ek(wd,"name"),qk=Bs&&function(){}.name==="something",Tk=Bs&&(!Ds||Ds&&Ik(wd,"name").configurable);Sd.exports={EXISTS:Bs,PROPER:qk,CONFIGURABLE:Tk}});var ta=I(function(NW,Od){var kk=Y(),xk=Z(),Ms=ea(),Rk=kk(Function.toString);xk(Ms.inspectSource)||(Ms.inspectSource=function(e){return Rk(e)});Od.exports=Ms.inspectSource});var Gs=I(function(jW,Pd){var Ak=X(),$k=Z(),_d=Ak.WeakMap;Pd.exports=$k(_d)&&/native code/.test(String(_d))});var pi=I(function(LW,Id){var Nk=tt(),jk=fi(),Ed=Nk("keys");Id.exports=function(e){return Ed[e]||(Ed[e]=jk(e))}});var Kt=I(function(CW,qd){qd.exports={}});var $e=I(function(DW,xd){var Lk=Gs(),kd=X(),Ck=ae(),Dk=yr(),Us=ie(),Fs=ea(),Bk=pi(),Mk=Kt(),Td="Object already initialized",Vs=kd.TypeError,Gk=kd.WeakMap,na,vi,ia,Uk=function(e){return ia(e)?vi(e):na(e,{})},Fk=function(e){return function(r){var t;if(!Ck(r)||(t=vi(r)).type!==e)throw Vs("Incompatible receiver, "+e+" required");return t}};Lk||Fs.state?(Ze=Fs.state||(Fs.state=new Gk),Ze.get=Ze.get,Ze.has=Ze.has,Ze.set=Ze.set,na=function(e,r){if(Ze.has(e))throw Vs(Td);return r.facade=e,Ze.set(e,r),r},vi=function(e){return Ze.get(e)||{}},ia=function(e){return Ze.has(e)}):(it=Bk("state"),Mk[it]=!0,na=function(e,r){if(Us(e,it))throw Vs(Td);return r.facade=e,Dk(e,it,r),r},vi=function(e){return Us(e,it)?e[it]:{}},ia=function(e){return Us(e,it)});var Ze,it;xd.exports={set:na,get:vi,has:ia,enforce:Uk,getterFor:Fk}});var Ks=I(function(BW,$d){var Hs=Y(),Vk=K(),zk=Z(),oa=ie(),zs=ne(),Hk=nt().CONFIGURABLE,Kk=ta(),Ad=$e(),Wk=Ad.enforce,Yk=Ad.get,Rd=String,aa=Object.defineProperty,Xk=Hs("".slice),Qk=Hs("".replace),Jk=Hs([].join),Zk=zs&&!Vk(function(){return aa(function(){},"length",{value:8}).length!==8}),ex=String(String).split("String"),rx=$d.exports=function(e,r,t){Xk(Rd(r),0,7)==="Symbol("&&(r="["+Qk(Rd(r),/^Symbol\(([^)]*)\)/,"$1")+"]"),t&&t.getter&&(r="get "+r),t&&t.setter&&(r="set "+r),(!oa(e,"name")||Hk&&e.name!==r)&&(zs?aa(e,"name",{value:r,configurable:!0}):e.name=r),Zk&&t&&oa(t,"arity")&&e.length!==t.arity&&aa(e,"length",{value:t.arity});try{t&&oa(t,"constructor")&&t.constructor?zs&&aa(e,"prototype",{writable:!1}):e.prototype&&(e.prototype=void 0)}catch(i){}var n=Wk(e);return oa(n,"source")||(n.source=Jk(ex,typeof r=="string"?r:"")),e};Function.prototype.toString=rx(function(){return zk(this)&&Yk(this).source||Kk(this)},"toString")});var Pe=I(function(MW,Nd){var tx=Z(),nx=be(),ix=Ks(),ox=Zo();Nd.exports=function(e,r,t,n){n||(n={});var i=n.enumerable,a=n.name!==void 0?n.name:r;if(tx(t)&&ix(t,a,n),n.global)i?e[r]=t:ox(r,t);else{try{n.unsafe?e[r]&&(i=!0):delete e[r]}catch(f){}i?e[r]=t:nx.f(e,r,{value:t,enumerable:!1,configurable:!n.nonConfigurable,writable:!n.nonWritable})}return e}});var Ld=I(function(GW,jd){var ax=Math.ceil,ux=Math.floor;jd.exports=Math.trunc||function(r){var t=+r;return(t>0?ux:ax)(t)}});var gr=I(function(UW,Cd){var sx=Ld();Cd.exports=function(e){var r=+e;return r!==r||r===0?0:sx(r)}});var ot=I(function(FW,Dd){var fx=gr(),cx=Math.max,lx=Math.min;Dd.exports=function(e,r){var t=fx(e);return t<0?cx(t+r,0):lx(t,r)}});var fr=I(function(VW,Bd){var px=gr(),vx=Math.min;Bd.exports=function(e){return e>0?vx(px(e),9007199254740991):0}});var Ne=I(function(zW,Md){var hx=fr();Md.exports=function(e){return hx(e.length)}});var Ws=I(function(HW,Ud){var dx=xe(),mx=ot(),yx=Ne(),Gd=function(e){return function(r,t,n){var i=dx(r),a=yx(i),f=mx(n,a),c;if(e&&t!=t){for(;a>f;)if(c=i[f++],c!=c)return!0}else for(;a>f;f++)if((e||f in i)&&i[f]===t)return e||f||0;return!e&&-1}};Ud.exports={includes:Gd(!0),indexOf:Gd(!1)}});var Xs=I(function(KW,Vd){var gx=Y(),Ys=ie(),bx=xe(),wx=Ws().indexOf,Sx=Kt(),Fd=gx([].push);Vd.exports=function(e,r){var t=bx(e),n=0,i=[],a;for(a in t)!Ys(Sx,a)&&Ys(t,a)&&Fd(i,a);for(;r.length>n;)Ys(t,a=r[n++])&&(~wx(i,a)||Fd(i,a));return i}});var ua=I(function(WW,zd){zd.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var Rr=I(function(Hd){var Ox=Xs(),_x=ua(),Px=_x.concat("length","prototype");Hd.f=Object.getOwnPropertyNames||function(r){return Ox(r,Px)}});var sa=I(function(Kd){Kd.f=Object.getOwnPropertySymbols});var Qs=I(function(QW,Wd){var Ex=Re(),Ix=Y(),qx=Rr(),Tx=sa(),kx=te(),xx=Ix([].concat);Wd.exports=Ex("Reflect","ownKeys")||function(r){var t=qx.f(kx(r)),n=Tx.f;return n?xx(t,n(r)):t}});var Js=I(function(JW,Xd){var Yd=ie(),Rx=Qs(),Ax=Je(),$x=be();Xd.exports=function(e,r,t){for(var n=Rx(r),i=$x.f,a=Ax.f,f=0;f>>0||(SR(vm,n)?16:10))}:gi});var nf=I(function(f4,ym){"use strict";var PR=te();ym.exports=function(){var e=PR(this),r="";return e.hasIndices&&(r+="d"),e.global&&(r+="g"),e.ignoreCase&&(r+="i"),e.multiline&&(r+="m"),e.dotAll&&(r+="s"),e.unicode&&(r+="u"),e.unicodeSets&&(r+="v"),e.sticky&&(r+="y"),r}});var bi=I(function(c4,gm){var of=K(),ER=X(),af=ER.RegExp,uf=of(function(){var e=af("a","y");return e.lastIndex=2,e.exec("abcd")!=null}),IR=uf||of(function(){return!af("a","y").sticky}),qR=uf||of(function(){var e=af("^r","gy");return e.lastIndex=2,e.exec("str")!=null});gm.exports={BROKEN_CARET:qR,MISSED_STICKY:IR,UNSUPPORTED_Y:uf}});var wi=I(function(l4,bm){var TR=Xs(),kR=ua();bm.exports=Object.keys||function(r){return TR(r,kR)}});var la=I(function(wm){var xR=ne(),RR=$s(),AR=be(),$R=te(),NR=xe(),jR=wi();wm.f=xR&&!RR?Object.defineProperties:function(r,t){$R(r);for(var n=NR(t),i=jR(t),a=i.length,f=0,c;a>f;)AR.f(r,c=i[f++],n[c]);return r}});var sf=I(function(v4,Sm){var LR=Re();Sm.exports=LR("document","documentElement")});var Ar=I(function(h4,Tm){var CR=te(),DR=la(),Om=ua(),BR=Kt(),MR=sf(),GR=li(),UR=pi(),_m=">",Pm="<",cf="prototype",lf="script",Im=UR("IE_PROTO"),ff=function(){},qm=function(e){return Pm+lf+_m+e+Pm+"/"+lf+_m},Em=function(e){e.write(qm("")),e.close();var r=e.parentWindow.Object;return e=null,r},FR=function(){var e=GR("iframe"),r="java"+lf+":",t;return e.style.display="none",MR.appendChild(e),e.src=String(r),t=e.contentWindow.document,t.open(),t.write(qm("document.F=Object")),t.close(),t.F},pa,va=function(){try{pa=new ActiveXObject("htmlfile")}catch(r){}va=typeof document!="undefined"?document.domain&&pa?Em(pa):FR():Em(pa);for(var e=Om.length;e--;)delete va[cf][Om[e]];return va()};BR[Im]=!0;Tm.exports=Object.create||function(r,t){var n;return r!==null?(ff[cf]=CR(r),n=new ff,ff[cf]=null,n[Im]=r):n=va(),t===void 0?n:DR.f(n,t)}});var pf=I(function(d4,km){var VR=K(),zR=X(),HR=zR.RegExp;km.exports=VR(function(){var e=HR(".","s");return!(e.dotAll&&e.exec("\n")&&e.flags==="s")})});var vf=I(function(m4,xm){var KR=K(),WR=X(),YR=WR.RegExp;xm.exports=KR(function(){var e=YR("(?b)","g");return e.exec("b").groups.a!=="b"||"b".replace(e,"$c")!=="bc"})});var Si=I(function(y4,Am){"use strict";var Xt=re(),da=Y(),XR=le(),QR=nf(),JR=bi(),ZR=tt(),e1=Ar(),r1=$e().get,t1=pf(),n1=vf(),i1=ZR("native-string-replace",String.prototype.replace),ha=RegExp.prototype.exec,df=ha,o1=da("".charAt),a1=da("".indexOf),u1=da("".replace),hf=da("".slice),mf=function(){var e=/a/,r=/b*/g;return Xt(ha,e,"a"),Xt(ha,r,"a"),e.lastIndex!==0||r.lastIndex!==0}(),Rm=JR.BROKEN_CARET,yf=/()??/.exec("")[1]!==void 0,s1=mf||yf||Rm||t1||n1;s1&&(df=function(r){var t=this,n=r1(t),i=XR(r),a=n.raw,f,c,l,h,m,y,b;if(a)return a.lastIndex=t.lastIndex,f=Xt(df,a,i),t.lastIndex=a.lastIndex,f;var w=n.groups,S=Rm&&t.sticky,T=Xt(QR,t),k=t.source,E=0,P=i;if(S&&(T=u1(T,"y",""),a1(T,"g")===-1&&(T+="g"),P=hf(i,t.lastIndex),t.lastIndex>0&&(!t.multiline||t.multiline&&o1(i,t.lastIndex-1)!=="\n")&&(k="(?: "+k+")",P=" "+P,E++),c=new RegExp("^(?:"+k+")",T)),yf&&(c=new RegExp("^"+k+"$(?!\\s)",T)),mf&&(l=t.lastIndex),h=Xt(ha,S?c:t,P),S?h?(h.input=hf(h.input,E),h[0]=hf(h[0],E),h.index=t.lastIndex,t.lastIndex+=h[0].length):t.lastIndex=0:mf&&h&&(t.lastIndex=t.global?h.index+h[0].length:l),yf&&h&&h.length>1&&Xt(i1,h[0],c,function(){for(m=1;my;y++)if(w=E(e[y]),w&&Ag(Ng,w))return w;return new qa(!1)}h=x$(e,m)}for(S=a?e.next:h.next;!(T=E$(S,h)).done;){try{w=E(T.value)}catch(P){$g(h,"throw",P)}if(typeof w=="object"&&w&&Ag(Ng,w))return w}return new qa(!1)}});var Ta=I(function(vY,Bg){var $$=ee(),Cg=$$("iterator"),Dg=!1;try{Lg=0,Qf={next:function(){return{done:!!Lg++}},return:function(){Dg=!0}},Qf[Cg]=function(){return this},Array.from(Qf,function(){throw 2})}catch(e){}var Lg,Qf;Bg.exports=function(e,r){if(!r&&!Dg)return!1;var t=!1;try{var n={};n[Cg]=function(){return{next:function(){return{done:t=!0}}}},e(n)}catch(i){}return t}});var ka=I(function(hY,Mg){var N$=tn(),j$=Ta(),L$=nn().CONSTRUCTOR;Mg.exports=L$||!j$(function(e){N$.all(e).then(void 0,function(){})})});var Gg=I(function(){"use strict";var C$=M(),D$=re(),B$=Ve(),M$=ct(),G$=xi(),U$=pt(),F$=ka();C$({target:"Promise",stat:!0,forced:F$},{all:function(r){var t=this,n=M$.f(t),i=n.resolve,a=n.reject,f=G$(function(){var c=B$(t.resolve),l=[],h=0,m=1;U$(r,function(y){var b=h++,w=!1;m++,D$(c,t,y).then(function(S){w||(w=!0,l[b]=S,--m||i(l))},a)}),--m||i(l)});return f.error&&a(f.value),n.promise}})});var Fg=I(function(){"use strict";var V$=M(),z$=Ae(),H$=nn().CONSTRUCTOR,Zf=tn(),K$=Re(),W$=Z(),Y$=Pe(),Ug=Zf&&Zf.prototype;V$({target:"Promise",proto:!0,forced:H$,real:!0},{catch:function(e){return this.then(void 0,e)}});!z$&&W$(Zf)&&(Jf=K$("Promise").prototype.catch,Ug.catch!==Jf&&Y$(Ug,"catch",Jf,{unsafe:!0}));var Jf});var Vg=I(function(){"use strict";var X$=M(),Q$=re(),J$=Ve(),Z$=ct(),eN=xi(),rN=pt(),tN=ka();X$({target:"Promise",stat:!0,forced:tN},{race:function(r){var t=this,n=Z$.f(t),i=n.reject,a=eN(function(){var f=J$(t.resolve);rN(r,function(c){Q$(f,t,c).then(n.resolve,i)})});return a.error&&i(a.value),n.promise}})});var zg=I(function(){"use strict";var nN=M(),iN=re(),oN=ct(),aN=nn().CONSTRUCTOR;nN({target:"Promise",stat:!0,forced:aN},{reject:function(r){var t=oN.f(this);return iN(t.reject,void 0,r),t.promise}})});var Kg=I(function(_Y,Hg){var uN=te(),sN=ae(),fN=ct();Hg.exports=function(e,r){if(uN(e),sN(r)&&r.constructor===e)return r;var t=fN.f(e),n=t.resolve;return n(r),t.promise}});var Xg=I(function(){"use strict";var cN=M(),lN=Re(),Wg=Ae(),pN=tn(),Yg=nn().CONSTRUCTOR,vN=Kg(),hN=lN("Promise"),dN=Wg&&!Yg;cN({target:"Promise",stat:!0,forced:Wg||Yg},{resolve:function(r){return vN(dN&&this===hN?pN:this,r)}})});var vt=I(function(IY,Jg){"use strict";var gN=ci(),bN=be(),wN=Ft();Jg.exports=function(e,r,t){var n=gN(r);n in e?bN.f(e,n,wN(0,t)):e[n]=t}});var xa=I(function(qY,eb){var Zg=ot(),SN=Ne(),ON=vt(),_N=Array,PN=Math.max;eb.exports=function(e,r,t){for(var n=SN(e),i=Zg(r,n),a=Zg(t===void 0?n:t,n),f=_N(PN(a-i,0)),c=0;ik;k++)if((c||k in w)&&($=w[k],R=S($,k,b),e))if(r)P[k]=R;else if(R)switch(e){case 3:return!0;case 5:return $;case 6:return k;case 2:db(P,$)}else switch(e){case 4:return!1;case 7:db(P,$)}return a?-1:n||i?i:P}};mb.exports={forEach:Cr(0),map:Cr(1),filter:Cr(2),some:Cr(3),every:Cr(4),find:Cr(5),findIndex:Cr(6),filterReject:Cr(7)}});var Ab=I(function(){"use strict";var Aa=M(),lc=X(),pc=re(),XN=Y(),QN=Ae(),ln=ne(),pn=et(),JN=K(),he=ie(),ZN=mr(),ac=te(),$a=xe(),vc=ci(),ej=le(),uc=Ft(),Ni=Ar(),bb=wi(),rj=Rr(),wb=Ra(),tj=sa(),Sb=Je(),Ob=be(),nj=la(),_b=Qo(),nc=Pe(),ij=$r(),hc=tt(),oj=pi(),Pb=Kt(),yb=fi(),aj=ee(),uj=ec(),sj=cn(),fj=tc(),cj=er(),Eb=$e(),Na=Dr().forEach,ke=oj("hidden"),ja="Symbol",ji="prototype",lj=Eb.set,gb=Eb.getterFor(ja),ze=Object[ji],dt=lc.Symbol,$i=dt&&dt[ji],pj=lc.TypeError,ic=lc.QObject,Ib=Sb.f,ht=Ob.f,qb=wb.f,vj=_b.f,Tb=XN([].push),br=hc("symbols"),Li=hc("op-symbols"),hj=hc("wks"),sc=!ic||!ic[ji]||!ic[ji].findChild,fc=ln&&JN(function(){return Ni(ht({},"a",{get:function(){return ht(this,"a",{value:7}).a}})).a!=7})?function(e,r,t){var n=Ib(ze,r);n&&delete ze[r],ht(e,r,t),n&&e!==ze&&ht(ze,r,n)}:ht,oc=function(e,r){var t=br[e]=Ni($i);return lj(t,{type:ja,tag:e,description:r}),ln||(t.description=r),t},La=function(r,t,n){r===ze&&La(Li,t,n),ac(r);var i=vc(t);return ac(n),he(br,i)?(n.enumerable?(he(r,ke)&&r[ke][i]&&(r[ke][i]=!1),n=Ni(n,{enumerable:uc(0,!1)})):(he(r,ke)||ht(r,ke,uc(1,{})),r[ke][i]=!0),fc(r,i,n)):ht(r,i,n)},dc=function(r,t){ac(r);var n=$a(t),i=bb(n).concat(Rb(n));return Na(i,function(a){(!ln||pc(cc,n,a))&&La(r,a,n[a])}),r},dj=function(r,t){return t===void 0?Ni(r):dc(Ni(r),t)},cc=function(r){var t=vc(r),n=pc(vj,this,t);return this===ze&&he(br,t)&&!he(Li,t)?!1:n||!he(this,t)||!he(br,t)||he(this,ke)&&this[ke][t]?n:!0},kb=function(r,t){var n=$a(r),i=vc(t);if(!(n===ze&&he(br,i)&&!he(Li,i))){var a=Ib(n,i);return a&&he(br,i)&&!(he(n,ke)&&n[ke][i])&&(a.enumerable=!0),a}},xb=function(r){var t=qb($a(r)),n=[];return Na(t,function(i){!he(br,i)&&!he(Pb,i)&&Tb(n,i)}),n},Rb=function(e){var r=e===ze,t=qb(r?Li:$a(e)),n=[];return Na(t,function(i){he(br,i)&&(!r||he(ze,i))&&Tb(n,br[i])}),n};pn||(dt=function(){if(ZN($i,this))throw pj("Symbol is not a constructor");var r=!arguments.length||arguments[0]===void 0?void 0:ej(arguments[0]),t=yb(r),n=function(i){this===ze&&pc(n,Li,i),he(this,ke)&&he(this[ke],t)&&(this[ke][t]=!1),fc(this,t,uc(1,i))};return ln&&sc&&fc(ze,t,{configurable:!0,set:n}),oc(t,r)},$i=dt[ji],nc($i,"toString",function(){return gb(this).tag}),nc(dt,"withoutSetter",function(e){return oc(yb(e),e)}),_b.f=cc,Ob.f=La,nj.f=dc,Sb.f=kb,rj.f=wb.f=xb,tj.f=Rb,uj.f=function(e){return oc(aj(e),e)},ln&&(ij($i,"description",{configurable:!0,get:function(){return gb(this).description}}),QN||nc(ze,"propertyIsEnumerable",cc,{unsafe:!0})));Aa({global:!0,constructor:!0,wrap:!0,forced:!pn,sham:!pn},{Symbol:dt});Na(bb(hj),function(e){sj(e)});Aa({target:ja,stat:!0,forced:!pn},{useSetter:function(){sc=!0},useSimple:function(){sc=!1}});Aa({target:"Object",stat:!0,forced:!pn,sham:!ln},{create:dj,defineProperty:La,defineProperties:dc,getOwnPropertyDescriptor:kb});Aa({target:"Object",stat:!0,forced:!pn},{getOwnPropertyNames:xb});fj();cj(dt,ja);Pb[ke]=!0});var mc=I(function(BY,$b){var mj=et();$b.exports=mj&&!!Symbol.for&&!!Symbol.keyFor});var jb=I(function(){var yj=M(),gj=Re(),bj=ie(),wj=le(),Nb=tt(),Sj=mc(),yc=Nb("string-to-symbol-registry"),Oj=Nb("symbol-to-string-registry");yj({target:"Symbol",stat:!0,forced:!Sj},{for:function(e){var r=wj(e);if(bj(yc,r))return yc[r];var t=gj("Symbol")(r);return yc[r]=t,Oj[t]=r,t}})});var Cb=I(function(){var _j=M(),Pj=ie(),Ej=zt(),Ij=rt(),qj=tt(),Tj=mc(),Lb=qj("symbol-to-string-registry");_j({target:"Symbol",stat:!0,forced:!Tj},{keyFor:function(r){if(!Ej(r))throw TypeError(Ij(r)+" is not a symbol");if(Pj(Lb,r))return Lb[r]}})});var Ub=I(function(VY,Gb){var kj=Y(),Db=Lr(),xj=Z(),Bb=Ue(),Rj=le(),Mb=kj([].push);Gb.exports=function(e){if(xj(e))return e;if(!!Db(e)){for(var r=e.length,t=[],n=0;n=r.length?(e.target=void 0,Fa(void 0,!0)):t=="keys"?Fa(n,!1):t=="values"?Fa(r[n],!1):Fa([n,r[n]],!1)},"values");var kw=Tw.Arguments=Tw.Array;Tc("keys");Tc("values");Tc("entries");if(!ML&&GL&&kw.name!=="values")try{DL(kw,"name",{value:"values"})}catch(e){}});var xc=I(function(n7,jw){var kc=Y(),VL=gr(),zL=le(),HL=Xe(),KL=kc("".charAt),$w=kc("".charCodeAt),WL=kc("".slice),Nw=function(e){return function(r,t){var n=zL(HL(r)),i=VL(t),a=n.length,f,c;return i<0||i>=a?e?"":void 0:(f=$w(n,i),f<55296||f>56319||i+1===a||(c=$w(n,i+1))<56320||c>57343?e?KL(n,i):f:e?WL(n,i,i+2):(f-55296<<10)+(c-56320)+65536)}};jw.exports={codeAt:Nw(!1),charAt:Nw(!0)}});var Rc=I(function(i7,Bw){Bw.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}});var $c=I(function(o7,Gw){var eC=li(),Ac=eC("span").classList,Mw=Ac&&Ac.constructor&&Ac.constructor.prototype;Gw.exports=Mw===Object.prototype?void 0:Mw});var Cc=I(function(a7,Ww){"use strict";var hC=Dr().forEach,dC=Yt(),mC=dC("forEach");Ww.exports=mC?[].forEach:function(r){return hC(this,r,arguments.length>1?arguments[1]:void 0)}});var dn=I(function(u7,nS){var AC=K(),$C=ee(),NC=Vt(),jC=$C("species");nS.exports=function(e){return NC>=51||!AC(function(){var r=[],t=r.constructor={};return t[jC]=function(){return{foo:1}},r[e](Boolean).foo!==1})}});var uS=I(function(s7,aS){"use strict";var XC=te(),QC=Ts(),JC=TypeError;aS.exports=function(e){if(XC(this),e==="string"||e==="default")e="string";else if(e!=="number")throw JC("Incorrect hint");return QC(this,e)}});var Ha=I(function(f7,lS){var nD=Z(),iD=ae(),cS=Jt();lS.exports=function(e,r,t){var n,i;return cS&&nD(n=r.constructor)&&n!==t&&iD(i=n.prototype)&&i!==t.prototype&&cS(e,i),e}});var Mc=I(function(c7,pS){var oD=Y();pS.exports=oD(1 .valueOf)});var Vi=I(function(l7,_S){"use strict";pe();var bS=at(),wS=Pe(),_D=Si(),SS=K(),OS=ee(),PD=yr(),ED=OS("species"),zc=RegExp.prototype;_S.exports=function(e,r,t,n){var i=OS(e),a=!SS(function(){var h={};return h[i]=function(){return 7},""[e](h)!=7}),f=a&&!SS(function(){var h=!1,m=/a/;return e==="split"&&(m={},m.constructor={},m.constructor[ED]=function(){return m},m.flags="",m[i]=/./[i]),m.exec=function(){return h=!0,null},m[i](""),!h});if(!a||!f||t){var c=bS(/./[i]),l=r(i,""[e],function(h,m,y,b,w){var S=bS(h),T=m.exec;return T===_D||T===zc.exec?a&&!w?{done:!0,value:c(m,y,b)}:{done:!0,value:S(y,m,b)}:{done:!1}});wS(String.prototype,e,l[0]),wS(zc,i,l[1])}n&&PD(zc[i],"sham",!0)}});var Ya=I(function(p7,PS){"use strict";var ID=xc().charAt;PS.exports=function(e,r,t){return r+(t?ID(e,r).length:1)}});var IS=I(function(v7,ES){var Wc=Y(),qD=Te(),TD=Math.floor,Hc=Wc("".charAt),kD=Wc("".replace),Kc=Wc("".slice),xD=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,RD=/\$([$&'`]|\d{1,2})/g;ES.exports=function(e,r,t,n,i,a){var f=t+e.length,c=n.length,l=RD;return i!==void 0&&(i=qD(i),l=xD),kD(a,l,function(h,m){var y;switch(Hc(m,0)){case"$":return"$";case"&":return e;case"`":return Kc(r,0,t);case"'":return Kc(r,f);case"<":y=i[Kc(m,1,-1)];break;default:var b=+m;if(b===0)return h;if(b>c){var w=TD(b/10);return w===0?h:w<=c?n[w-1]===void 0?Hc(m,1):n[w-1]+Hc(m,1):h}y=n[b-1]}return y===void 0?"":y})}});var zi=I(function(h7,TS){var qS=re(),AD=te(),$D=Z(),ND=Ue(),jD=Si(),LD=TypeError;TS.exports=function(e,r){var t=e.exec;if($D(t)){var n=qS(t,e,r);return n!==null&&AD(n),n}if(ND(e)==="RegExp")return qS(jD,e,r);throw LD("RegExp#exec called on incompatible receiver")}});var Qc=I(function(d7,NS){var nB=re(),iB=ie(),oB=mr(),aB=nf(),$S=RegExp.prototype;NS.exports=function(e){var r=e.flags;return r===void 0&&!("flags"in $S)&&!iB(e,"flags")&&oB($S,e)?nB(aB,e):r}});var GS=I(function(m7,MS){var BS=X(),dB=K(),mB=Y(),yB=le(),gB=yi().trim,bB=mi(),wB=mB("".charAt),Qa=BS.parseFloat,CS=BS.Symbol,DS=CS&&CS.iterator,SB=1/Qa(bB+"-0")!==-1/0||DS&&!dB(function(){Qa(Object(DS))});MS.exports=SB?function(r){var t=gB(yB(r)),n=Qa(t);return n===0&&wB(t,0)=="-"?-0:n}:Qa});var Za=I(function(y7,zS){var IB=TypeError,qB=9007199254740991;zS.exports=function(e){if(e>qB)throw IB("Maximum allowed index exceeded");return e}});var XS=I(function(g7,YS){"use strict";var GB=ne(),UB=Lr(),FB=TypeError,VB=Object.getOwnPropertyDescriptor,zB=GB&&!function(){if(this!==void 0)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(e){return e instanceof TypeError}}();YS.exports=zB?function(e,r){if(UB(e)&&!VB(e,"length").writable)throw FB("Cannot set read only .length");return e.length=r}:function(e,r){return e.length=r}});var ZS=I(function(b7,JS){"use strict";var QS=rt(),HB=TypeError;JS.exports=function(e,r){if(!delete e[r])throw HB("Cannot delete property "+QS(r)+" of "+QS(e))}});var g0=I(function(c9,y0){"use strict";var d0=Y(),_2=Ve(),P2=ae(),E2=ie(),h0=Ei(),I2=Ut(),m0=Function,q2=d0([].concat),T2=d0([].join),sl={},k2=function(e,r,t){if(!E2(sl,r)){for(var n=[],i=0;i1?arguments[1]:void 0,f=a!==void 0;f&&(a=uU(a,i>2?arguments[2]:void 0));var c=dU(t),l=0,h,m,y,b,w,S;if(c&&!(this===qO&&lU(c)))for(b=hU(t,c),w=b.next,m=n?new this:[];!(y=sU(w,b)).done;l++)S=f?cU(b,a,[y.value,l],!0):y.value,IO(m,l,S);else for(h=vU(t),m=n?new this(h):qO(h);h>l;l++)S=f?a(t[l],l):t[l],IO(m,l,S);return m.length=l,m}});var Ml=I(function(Hte,u_){u_.exports=Object.is||function(r,t){return r===t?r!==0||1/r===1/t:r!=r&&t!=t}});var Fl=I(function(aie,S_){var KF=ne(),w_=Y(),WF=wi(),YF=xe(),XF=Qo().f,QF=w_(XF),JF=w_([].push),b_=function(e){return function(r){for(var t=YF(r),n=WF(t),i=n.length,a=0,f=[],c;i>a;)c=n[a++],(!KF||QF(t,c))&&JF(f,e?[c,t[c]]:t[c]);return f}};S_.exports={entries:b_(!0),values:b_(!1)}});var xu=I(function(Eue,Q_){var hz=ae(),dz=Ue(),mz=ee(),yz=mz("match");Q_.exports=function(e){var r;return hz(e)&&((r=e[yz])!==void 0?!!r:dz(e)=="RegExp")}});var qP=I(function(Vce,IP){var dH=K();IP.exports=dH(function(){if(typeof ArrayBuffer=="function"){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}})});var xP=I(function(zce,kP){var mH=K(),yH=ae(),gH=Ue(),TP=qP(),ju=Object.isExtensible,bH=mH(function(){ju(1)});kP.exports=bH||TP?function(r){return!yH(r)||TP&&gH(r)=="ArrayBuffer"?!1:ju?ju(r):!0}:ju});var Lu=I(function(Hce,RP){var wH=K();RP.exports=!wH(function(){return Object.isExtensible(Object.preventExtensions({}))})});var Wn=I(function(Kce,NP){var SH=M(),OH=Y(),_H=Kt(),PH=ae(),xp=ie(),EH=be().f,AP=Rr(),IH=Ra(),Rp=xP(),qH=fi(),TH=Lu(),$P=!1,qr=qH("meta"),kH=0,Ap=function(e){EH(e,qr,{value:{objectID:"O"+kH++,weakData:{}}})},xH=function(e,r){if(!PH(e))return typeof e=="symbol"?e:(typeof e=="string"?"S":"P")+e;if(!xp(e,qr)){if(!Rp(e))return"F";if(!r)return"E";Ap(e)}return e[qr].objectID},RH=function(e,r){if(!xp(e,qr)){if(!Rp(e))return!0;if(!r)return!1;Ap(e)}return e[qr].weakData},AH=function(e){return TH&&$P&&Rp(e)&&!xp(e,qr)&&Ap(e),e},$H=function(){NH.enable=function(){},$P=!0;var e=AP.f,r=OH([].splice),t={};t[qr]=1,e(t).length&&(AP.f=function(n){for(var i=e(n),a=0,f=i.length;a1?arguments[1]:void 0),w;w=w?w.next:y.first;)for(b(w.value,w.key,this);w&&w.removed;)w=w.previous},has:function(m){return!!l(this,m)}}),DP(a,t?{get:function(m){var y=l(this,m);return y&&y.value},set:function(m,y){return c(this,m===0?0:m,y)}}:{add:function(m){return c(this,m=m===0?0:m,m)}}),qo&&YH(a,"size",{configurable:!0,get:function(){return f(this).size}}),i},setStrong:function(e,r,t){var n=r+" Iterator",i=jp(r),a=jp(n);e8(e,r,function(f,c){MP(this,{type:n,target:f,state:i(f),kind:c,last:void 0})},function(){for(var f=a(this),c=f.kind,l=f.last;l&&l.removed;)l=l.previous;return!f.target||!(f.last=l=l?l.next:f.state.first)?(f.target=void 0,Du(void 0,!0)):c=="keys"?Du(l.key,!1):c=="values"?Du(l.value,!1):Du([l.key,l.value],!1)},t?"entries":"values",!t,!0),r8(r)}}});var FP=I(function(){"use strict";var t8=Cu(),n8=Lp();t8("Map",function(e){return function(){return e(this,arguments.length?arguments[0]:void 0)}},n8)});var iE=I(function(){"use strict";var I8=Cu(),q8=Lp();I8("Set",function(e){return function(){return e(this,arguments.length?arguments[0]:void 0)}},q8)});var zp=I(function(Tpe,oE){oE.exports=typeof ArrayBuffer!="undefined"&&typeof DataView!="undefined"});var uE=I(function(kpe,aE){var T8=gr(),k8=fr(),x8=RangeError;aE.exports=function(e){if(e===void 0)return 0;var r=T8(e),t=k8(r);if(r!==t)throw x8("Wrong length or index");return t}});var fE=I(function(xpe,sE){var R8=Array,A8=Math.abs,Tr=Math.pow,$8=Math.floor,N8=Math.log,j8=Math.LN2,L8=function(e,r,t){var n=R8(t),i=t*8-r-1,a=(1<>1,c=r===23?Tr(2,-24)-Tr(2,-77):0,l=e<0||e===0&&1/e<0?1:0,h=0,m,y,b;for(e=A8(e),e!=e||e===1/0?(y=e!=e?1:0,m=a):(m=$8(N8(e)/j8),b=Tr(2,-m),e*b<1&&(m--,b*=2),m+f>=1?e+=c/b:e+=c*Tr(2,1-f),e*b>=2&&(m++,b/=2),m+f>=a?(y=0,m=a):m+f>=1?(y=(e*b-1)*Tr(2,r),m=m+f):(y=e*Tr(2,f-1)*Tr(2,r),m=0));r>=8;)n[h++]=y&255,y/=256,r-=8;for(m=m<0;)n[h++]=m&255,m/=256,i-=8;return n[--h]|=l*128,n},C8=function(e,r){var t=e.length,n=t*8-r-1,i=(1<>1,f=n-7,c=t-1,l=e[c--],h=l&127,m;for(l>>=7;f>0;)h=h*256+e[c--],f-=8;for(m=h&(1<<-f)-1,h>>=-f,f+=r;f>0;)m=m*256+e[c--],f-=8;if(h===0)h=1-a;else{if(h===i)return m?NaN:l?-1/0:1/0;m=m+Tr(2,r),h=h-a}return(l?-1:1)*m*Tr(2,h-r)};sE.exports={pack:L8,unpack:C8}});var Hp=I(function(Rpe,lE){"use strict";var D8=Te(),cE=ot(),B8=Ne();lE.exports=function(r){for(var t=D8(this),n=B8(t),i=arguments.length,a=cE(i>1?arguments[1]:void 0,n),f=i>2?arguments[2]:void 0,c=f===void 0?n:cE(f,n);c>a;)t[a++]=r;return t}});var Ku=I(function(Ape,kE){"use strict";var zu=X(),Zp=Y(),Kp=ne(),M8=zp(),PE=nt(),pE=yr(),G8=$r(),vE=Io(),Wp=K(),Mu=Zt(),U8=gr(),F8=fr(),Fu=uE(),EE=fE(),V8=hn(),hE=Jt(),z8=Rr().f,H8=Hp(),K8=xa(),IE=er(),ev=$e(),W8=PE.PROPER,dE=PE.CONFIGURABLE,Jn="ArrayBuffer",Hu="DataView",Zn="prototype",Y8="Wrong length",qE="Wrong index",mE=ev.getterFor(Jn),$o=ev.getterFor(Hu),yE=ev.set,Ye=zu[Jn],Be=Ye,Qn=Be&&Be[Zn],dr=zu[Hu],qt=dr&&dr[Zn],gE=Object.prototype,X8=zu.Array,Vu=zu.RangeError,Q8=Zp(H8),J8=Zp([].reverse),TE=EE.pack,bE=EE.unpack,wE=function(e){return[e&255]},SE=function(e){return[e&255,e>>8&255]},OE=function(e){return[e&255,e>>8&255,e>>16&255,e>>24&255]},_E=function(e){return e[3]<<24|e[2]<<16|e[1]<<8|e[0]},Z8=function(e){return TE(e,23,4)},e3=function(e){return TE(e,52,8)},Gu=function(e,r,t){G8(e[Zn],r,{configurable:!0,get:function(){return t(this)[r]}})},Kr=function(e,r,t,n){var i=Fu(t),a=$o(e);if(i+r>a.byteLength)throw Vu(qE);var f=a.bytes,c=i+a.byteOffset,l=K8(f,c,c+r);return n?l:J8(l)},Wr=function(e,r,t,n,i,a){var f=Fu(t),c=$o(e);if(f+r>c.byteLength)throw Vu(qE);for(var l=c.bytes,h=f+c.byteOffset,m=n(+i),y=0;ya)throw Vu("Wrong offset");if(n=n===void 0?a-f:F8(n),f+n>a)throw Vu(Y8);yE(this,{type:Hu,buffer:r,byteLength:n,byteOffset:f,bytes:i.bytes}),Kp||(this.buffer=r,this.byteLength=n,this.byteOffset=f)},qt=dr[Zn],Kp&&(Gu(Be,"byteLength",mE),Gu(dr,"buffer",$o),Gu(dr,"byteLength",$o),Gu(dr,"byteOffset",$o)),vE(qt,{getInt8:function(r){return Kr(this,1,r)[0]<<24>>24},getUint8:function(r){return Kr(this,1,r)[0]},getInt16:function(r){var t=Kr(this,2,r,arguments.length>1?arguments[1]:void 0);return(t[1]<<8|t[0])<<16>>16},getUint16:function(r){var t=Kr(this,2,r,arguments.length>1?arguments[1]:void 0);return t[1]<<8|t[0]},getInt32:function(r){return _E(Kr(this,4,r,arguments.length>1?arguments[1]:void 0))},getUint32:function(r){return _E(Kr(this,4,r,arguments.length>1?arguments[1]:void 0))>>>0},getFloat32:function(r){return bE(Kr(this,4,r,arguments.length>1?arguments[1]:void 0),23)},getFloat64:function(r){return bE(Kr(this,8,r,arguments.length>1?arguments[1]:void 0),52)},setInt8:function(r,t){Wr(this,1,r,wE,t)},setUint8:function(r,t){Wr(this,1,r,wE,t)},setInt16:function(r,t){Wr(this,2,r,SE,t,arguments.length>2?arguments[2]:void 0)},setUint16:function(r,t){Wr(this,2,r,SE,t,arguments.length>2?arguments[2]:void 0)},setInt32:function(r,t){Wr(this,4,r,OE,t,arguments.length>2?arguments[2]:void 0)},setUint32:function(r,t){Wr(this,4,r,OE,t,arguments.length>2?arguments[2]:void 0)},setFloat32:function(r,t){Wr(this,4,r,Z8,t,arguments.length>2?arguments[2]:void 0)},setFloat64:function(r,t){Wr(this,8,r,e3,t,arguments.length>2?arguments[2]:void 0)}});else{if(Yp=W8&&Ye.name!==Jn,!Wp(function(){Ye(1)})||!Wp(function(){new Ye(-1)})||Wp(function(){return new Ye,new Ye(1.5),new Ye(NaN),Ye.length!=1||Yp&&!dE})){for(Be=function(r){return Mu(this,Qn),new Ye(Fu(r))},Be[Zn]=Qn,Xp=z8(Ye),Qp=0;Xp.length>Qp;)(Uu=Xp[Qp++])in Be||pE(Be,Uu,Ye[Uu]);Qn.constructor=Be}else Yp&&dE&&pE(Ye,"name",Jn);hE&&V8(qt)!==gE&&hE(qt,gE),Ao=new dr(new Be(2)),Jp=Zp(qt.setInt8),Ao.setInt8(0,2147483648),Ao.setInt8(1,2147483649),(Ao.getInt8(0)||!Ao.getInt8(1))&&vE(qt,{setInt8:function(r,t){Jp(this,r,t<<24>>24)},setUint8:function(r,t){Jp(this,r,t<<24>>24)}},{unsafe:!0})}var Yp,Xp,Qp,Uu,Ao,Jp;IE(Be,Jn);IE(dr,Hu);kE.exports={ArrayBuffer:Be,DataView:dr}});var LE=I(function(){var v3=M(),h3=Ku(),d3=zp();v3({global:!0,constructor:!0,forced:!d3},{DataView:h3.DataView})});var BE=I(function(jpe,DE){var m3=Ve(),y3=Te(),g3=ui(),b3=Ne(),w3=TypeError,CE=function(e){return function(r,t,n,i){m3(t);var a=y3(r),f=g3(a),c=b3(a),l=e?c-1:0,h=e?-1:1;if(n<2)for(;;){if(l in f){i=f[l],l+=h;break}if(l+=h,e?l<0:c<=l)throw w3("Reduce of empty array with no initial value")}for(;e?l>=0:c>l;l+=h)l in f&&(i=t(i,f[l],l,a));return i}};DE.exports={left:CE(!1),right:CE(!0)}});var JE=I(function(ave,QE){"use strict";var V3=Y(),HE=Io(),Wu=Wn().getWeakData,z3=Zt(),H3=te(),K3=Fe(),sv=ae(),W3=pt(),WE=Dr(),KE=ie(),YE=$e(),Y3=YE.set,X3=YE.getterFor,Q3=WE.find,J3=WE.findIndex,Z3=V3([].splice),eK=0,Yu=function(e){return e.frozen||(e.frozen=new XE)},XE=function(){this.entries=[]},fv=function(e,r){return Q3(e.entries,function(t){return t[0]===r})};XE.prototype={get:function(e){var r=fv(this,e);if(r)return r[1]},has:function(e){return!!fv(this,e)},set:function(e,r){var t=fv(this,e);t?t[1]=r:this.entries.push([e,r])},delete:function(e){var r=J3(this.entries,function(t){return t[0]===e});return~r&&Z3(this.entries,r,1),!!~r}};QE.exports={getConstructor:function(e,r,t,n){var i=e(function(l,h){z3(l,a),Y3(l,{type:r,id:eK++,frozen:void 0}),K3(h)||W3(h,l[n],{that:l,AS_ENTRIES:t})}),a=i.prototype,f=X3(r),c=function(l,h,m){var y=f(l),b=Wu(H3(h),!0);return b===!0?Yu(y).set(h,m):b[y.id]=m,l};return HE(a,{delete:function(l){var h=f(this);if(!sv(l))return!1;var m=Wu(l);return m===!0?Yu(h).delete(l):m&&KE(m,h.id)&&delete m[h.id]},has:function(h){var m=f(this);if(!sv(h))return!1;var y=Wu(h);return y===!0?Yu(m).has(h):y&&KE(y,m.id)}}),HE(a,t?{get:function(h){var m=f(this);if(sv(h)){var y=Wu(h);return y===!0?Yu(m).get(h):y?y[m.id]:void 0}},set:function(h,m){return c(this,h,m)}}:{add:function(h){return c(this,h,!0)}}),i}}});var sI=I(function(){"use strict";var rK=Lu(),ZE=X(),Zu=Y(),eI=Io(),tK=Wn(),nK=Cu(),nI=JE(),Xu=ae(),Qu=$e().enforce,iK=K(),oK=Gs(),Lo=Object,aK=Array.isArray,Ju=Lo.isExtensible,iI=Lo.isFrozen,uK=Lo.isSealed,oI=Lo.freeze,sK=Lo.seal,rI={},tI={},fK=!ZE.ActiveXObject&&"ActiveXObject"in ZE,No,aI=function(e){return function(){return e(this,arguments.length?arguments[0]:void 0)}},uI=nK("WeakMap",aI,nI),ri=uI.prototype,es=Zu(ri.set),cK=function(){return rK&&iK(function(){var e=oI([]);return es(new uI,e,1),!iI(e)})};oK&&(fK?(No=nI.getConstructor(aI,"WeakMap",!0),tK.enable(),cv=Zu(ri.delete),jo=Zu(ri.has),lv=Zu(ri.get),eI(ri,{delete:function(e){if(Xu(e)&&!Ju(e)){var r=Qu(this);return r.frozen||(r.frozen=new No),cv(this,e)||r.frozen.delete(e)}return cv(this,e)},has:function(r){if(Xu(r)&&!Ju(r)){var t=Qu(this);return t.frozen||(t.frozen=new No),jo(this,r)||t.frozen.has(r)}return jo(this,r)},get:function(r){if(Xu(r)&&!Ju(r)){var t=Qu(this);return t.frozen||(t.frozen=new No),jo(this,r)?lv(this,r):t.frozen.get(r)}return lv(this,r)},set:function(r,t){if(Xu(r)&&!Ju(r)){var n=Qu(this);n.frozen||(n.frozen=new No),jo(this,r)?es(this,r,t):n.frozen.set(r,t)}else es(this,r,t);return this}})):cK()&&eI(ri,{set:function(r,t){var n;return aK(r)&&(iI(r)?n=rI:uK(r)&&(n=tI)),es(this,r,t),n==rI&&oI(r),n==tI&&sK(r),this}}));var cv,jo,lv});var lI=I(function(fve,cI){"use strict";var lK=Lr(),pK=Ne(),vK=Za(),hK=Nr(),fI=function(e,r,t,n,i,a,f,c){for(var l=i,h=0,m=f?hK(f,c):!1,y,b;h0&&lK(y)?(b=pK(y),l=fI(e,r,y,b,l,a-1)-1):(vK(l+1),e[l]=y),l++),h++;return l};cI.exports=fI});var PI=I(function(Ohe,_I){var XK=be().f;_I.exports=function(e,r,t){t in e||XK(e,t,{configurable:!0,get:function(){return r[t]},set:function(n){r[t]=n}})}});var Tv=I(function(_he,NI){var q5=xu(),T5=TypeError;NI.exports=function(e){if(q5(e))throw T5("The method doesn't accept regular expressions");return e}});var kv=I(function(Phe,jI){var k5=ee(),x5=k5("match");jI.exports=function(e){var r=/./;try{"/./"[e](r)}catch(t){try{return r[x5]=!1,"/./"[e](r)}catch(n){}}return!1}});var nh=N(W());function ih(){(0,nh.default)(document).on("submit","form:not([action])",function(e){e.preventDefault()})}var oh=N(W());function ah(){var e=window.history.pushState;window.history.pushState=function(){for(var r=arguments.length,t=new Array(r),n=0;n1?arguments[1]:void 0;return rm?ef(this,r,t)||0:Jx(this,r,t)}});var _R=M(),mm=dm();_R({global:!0,forced:parseInt!=mm},{parseInt:mm});var P4=N(pe());pe();var c1=M(),Nm=re(),l1=Z(),jm=te(),p1=le(),v1=function(){var e=!1,r=/[ac]/;return r.exec=function(){return e=!0,/./.exec.apply(this,arguments)},r.test("abc")===!0&&e}(),h1=/./.test;c1({target:"RegExp",proto:!0,forced:!v1},{test:function(e){var r=jm(this),t=p1(e),n=r.exec;if(!l1(n))return Nm(h1,r,t);var i=Nm(n,r,t);return i===null?!1:(jm(i),!0)}});var ma=N(W());var Lm=!1,Cm=!1,Dm=-1;function gf(e){Lm=e}function Bm(e){Cm=e}function Mm(e){Dm=e}function Gm(){return Lm}function ut(){return Cm}function Um(){return Dm}var Ee;function Fm(e){Ee=e}function d1(){var e=Ee.indexOf("MSIE ");if(ut()&&e>0)return parseInt(Ee.substring(e+5,Ee.indexOf(".",e)),10);var r=Ee.indexOf("Trident/");if(r>0){var t=Ee.indexOf("rv:");return parseInt(Ee.substring(t+3,Ee.indexOf(".",t)),10)}return-1}function Vm(){/\bQt\//.test(Ee)?((0,ma.default)(document.documentElement).addClass("qt"),gf(!0)):gf(!1),/\bQt/.test(Ee)&&/\bMacintosh/.test(Ee)&&(0,ma.default)(document.documentElement).addClass("qtmac"),/\bQt\/5/.test(Ee)&&/Linux/.test(Ee)&&(0,ma.default)(document.documentElement).addClass("qt5"),Bm(/MSIE|Trident|Edge/.test(Ee)),Mm(d1())}function zm(){return window.Shiny||(window.Shiny={}),window.Shiny}var g1=fa(),b1=Pe(),w1=Km();g1||b1(Object.prototype,"toString",w1,{unsafe:!0});Pg();Gg();Fg();Vg();zg();Xg();var mN=M(),yN=ne(),Qg=be().f;mN({target:"Object",stat:!0,forced:Object.defineProperty!==Qg,sham:!yN},{defineProperty:Qg});Ab();jb();Cb();vn();rw();var Wj=M(),Yj=ne(),Xj=X(),Da=Y(),Qj=ie(),Jj=Z(),Zj=mr(),eL=le(),rL=$r(),tL=Js(),wr=Xj.Symbol,mt=wr&&wr.prototype;Yj&&Jj(wr)&&(!("description"in mt)||wr().description!==void 0)&&(gc={},Di=function(){var r=arguments.length<1||arguments[0]===void 0?void 0:eL(arguments[0]),t=Zj(mt,this)?new wr(r):r===void 0?wr():wr(r);return r===""&&(gc[t]=!0),t},tL(Di,wr),Di.prototype=mt,mt.constructor=Di,tw=String(wr("test"))=="Symbol(test)",nw=Da(mt.valueOf),iw=Da(mt.toString),ow=/^Symbol\((.*)\)[^)]+$/,aw=Da("".replace),uw=Da("".slice),rL(mt,"description",{configurable:!0,get:function(){var r=nw(this);if(Qj(gc,r))return"";var t=iw(r),n=tw?uw(t,7,-1):aw(t,ow,"$1");return n===""?void 0:n}}),Wj({global:!0,constructor:!0,forced:!0},{Symbol:Di}));var gc,Di,tw,nw,iw,ow,aw,uw;var nL=cn();nL("iterator");var rge=N(z());var YL=xc().charAt,XL=le(),Cw=$e(),QL=Ga(),Lw=Ua(),Dw="String Iterator",JL=Cw.set,ZL=Cw.getterFor(Dw);QL(String,"String",function(e){JL(this,{type:Dw,string:XL(e),index:0})},function(){var r=ZL(this),t=r.string,n=r.index,i;return n>=t.length?Lw(void 0,!0):(i=YL(t,n),r.index+=i.length,Lw(i,!1))});var Uw=X(),Vw=Rc(),rC=$c(),Ui=z(),Nc=yr(),zw=ee(),jc=zw("iterator"),Fw=zw("toStringTag"),Lc=Ui.values,Hw=function(e,r){if(e){if(e[jc]!==Lc)try{Nc(e,jc,Lc)}catch(n){e[jc]=Lc}if(e[Fw]||Nc(e,Fw,r),Vw[r]){for(var t in Ui)if(e[t]!==Ui[t])try{Nc(e,t,Ui[t])}catch(n){e[t]=Ui[t]}}}};for(Va in Vw)Hw(Uw[Va]&&Uw[Va].prototype,Va);var Va;Hw(rC,"DOMTokenList");var tC=cn();tC("asyncIterator");var nC=Re(),iC=cn(),oC=er();iC("toStringTag");oC(nC("Symbol"),"Symbol");var aC=X(),uC=er();uC(aC.JSON,"JSON",!0);var sC=er();sC(Math,"Math",!0);var fC=M(),cC=K(),lC=Te(),Kw=hn(),pC=Sc(),vC=cC(function(){Kw(1)});fC({target:"Object",stat:!0,forced:vC,sham:!pC},{getPrototypeOf:function(r){return Kw(lC(r))}});var yC=M(),Yw=Cc();yC({target:"Array",proto:!0,forced:[].forEach!=Yw},{forEach:Yw});var Xw=X(),Qw=Rc(),gC=$c(),Dc=Cc(),bC=yr(),Jw=function(e){if(e&&e.forEach!==Dc)try{bC(e,"forEach",Dc)}catch(r){e.forEach=Dc}};for(za in Qw)Qw[za]&&Jw(Xw[za]&&Xw[za].prototype);var za;Jw(gC);var wC=ne(),SC=nt().EXISTS,Zw=Y(),OC=$r(),eS=Function.prototype,_C=Zw(eS.toString),rS=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,PC=Zw(rS.exec),EC="name";wC&&!SC&&OC(eS,EC,{configurable:!0,get:function(){try{return PC(rS,_C(this))[1]}catch(e){return""}}});var IC=M(),qC=Jt();IC({target:"Object",stat:!0},{setPrototypeOf:qC});var TC=M(),kC=Y(),xC=Lr(),RC=kC([].reverse),tS=[1,2];TC({target:"Array",proto:!0,forced:String(tS)===String(tS.reverse())},{reverse:function(){return xC(this)&&(this.length=this.length),RC(this)}});var LC=M(),iS=Lr(),CC=Pi(),DC=ae(),oS=ot(),BC=Ne(),MC=xe(),GC=vt(),UC=ee(),FC=dn(),VC=Ei(),zC=FC("slice"),HC=UC("species"),Bc=Array,KC=Math.max;LC({target:"Array",proto:!0,forced:!zC},{slice:function(r,t){var n=MC(this),i=BC(n),a=oS(r,i),f=oS(t===void 0?i:t,i),c,l,h;if(iS(n)&&(c=n.constructor,CC(c)&&(c===Bc||iS(c.prototype))?c=void 0:DC(c)&&(c=c[HC],c===null&&(c=void 0)),c===Bc||c===void 0))return VC(n,a,f);for(l=new(c===void 0?Bc:c)(KC(f-a,0)),h=0;a2){if(r=yD(r),t=Ka(r,0),t===43||t===45){if(n=Ka(r,2),n===88||n===120)return NaN}else if(t===48){switch(Ka(r,1)){case 66:case 98:i=2,a=49;break;case 79:case 111:i=8,a=55;break;default:return+r}for(f=bD(r,2),c=f.length,l=0;la)return NaN;return parseInt(f,i)}}return+r},Vc=sD(Fi,!mn(" 0o1")||!mn("0b1")||mn("+0x1")),OD=function(e){return cD(Fc,e)&&pD(function(){mD(e)})},Wa=function(r){var t=arguments.length<1?0:mn(wD(r));return OD(this)?fD(Object(t),this,Wa):t};Wa.prototype=Fc;Vc&&!Gc&&(Fc.constructor=Wa);aD({global:!0,constructor:!0,wrap:!0,forced:Vc},{Number:Wa});var gS=function(e,r){for(var t=uD?vD(r):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),n=0,i;t.length>n;n++)vS(r,i=t[n])&&!vS(e,i)&&dD(e,i,hD(r,i))};Gc&&hS&&gS(Uc[Fi],hS);(Vc||Gc)&&gS(Uc[Fi],mn);var K7=N(z());var O7=N(pe());var CD=en(),kS=re(),Xa=Y(),DD=Vi(),BD=K(),MD=te(),GD=Z(),UD=Fe(),FD=gr(),VD=fr(),yn=le(),zD=Xe(),HD=Ya(),KD=xr(),WD=IS(),YD=zi(),XD=ee(),Xc=XD("replace"),QD=Math.max,JD=Math.min,ZD=Xa([].concat),Yc=Xa([].push),xS=Xa("".indexOf),RS=Xa("".slice),eB=function(e){return e===void 0?e:String(e)},rB=function(){return"a".replace(/./,"$0")==="$0"}(),AS=function(){return/./[Xc]?/./[Xc]("a","$0")==="":!1}(),tB=!BD(function(){var e=/./;return e.exec=function(){var r=[];return r.groups={a:"7"},r},"".replace(e,"$")!=="7"});DD("replace",function(e,r,t){var n=AS?"$":"$0";return[function(a,f){var c=zD(this),l=UD(a)?void 0:KD(a,Xc);return l?kS(l,a,c,f):kS(r,yn(c),a,f)},function(i,a){var f=MD(this),c=yn(i);if(typeof a=="string"&&xS(a,n)===-1&&xS(a,"$<")===-1){var l=t(r,f,c,a);if(l.done)return l.value}var h=GD(a);h||(a=yn(a));var m=f.global;if(m){var y=f.unicode;f.lastIndex=0}for(var b=[];;){var w=YD(f,c);if(w===null||(Yc(b,w),!m))break;var S=yn(w[0]);S===""&&(f.lastIndex=HD(c,VD(f.lastIndex),y))}for(var T="",k=0,E=0;E=k&&(T+=RS(c,k,$)+C,k=$+P.length)}return T+RS(c,k)}]},!tB||!rB||AS);var uB=nt().PROPER,sB=Pe(),fB=te(),jS=le(),cB=K(),lB=Qc(),Jc="toString",pB=RegExp.prototype,LS=pB[Jc],vB=cB(function(){return LS.call({source:"a",flags:"b"})!="/a/b"}),hB=uB&&LS.name!=Jc;(vB||hB)&&sB(RegExp.prototype,Jc,function(){var r=fB(this),t=jS(r.source),n=jS(lB(r));return"/"+t+"/"+n},{unsafe:!0});var OB=M(),US=GS();OB({global:!0,forced:parseFloat!=US},{parseFloat:US});var _B=M(),PB=Y(),FS=K(),VS=Mc(),Ja=PB(1 .toPrecision),EB=FS(function(){return Ja(1,void 0)!=="1"})||!FS(function(){Ja({})});_B({target:"Number",proto:!0,forced:EB},{toPrecision:function(r){return r===void 0?Ja(VS(this)):Ja(VS(this),r)}});var TB=M(),kB=K(),xB=Lr(),RB=ae(),AB=Te(),$B=Ne(),HS=Za(),KS=vt(),NB=Ai(),jB=dn(),LB=ee(),CB=Vt(),WS=LB("isConcatSpreadable"),DB=CB>=51||!kB(function(){var e=[];return e[WS]=!1,e.concat()[0]!==e}),BB=function(e){if(!RB(e))return!1;var r=e[WS];return r!==void 0?!!r:xB(e)},MB=!DB||!jB("concat");TB({target:"Array",proto:!0,arity:1,forced:MB},{concat:function(r){var t=AB(this),n=NB(t,0),i=0,a,f,c,l,h;for(a=-1,c=arguments.length;ai-l+c;m--)Zc(n,m-1)}else if(c>l)for(m=i-l;m>a;m--)y=m+l-1,b=m+c-1,y in n?n[b]=n[y]:Zc(n,b);for(m=0;m":">",'"':""","'":"'","/":"/"};return e.replace(/[&<>'"/]/g,function(t){return r[t]})}function eu(){return Math.floor(4294967296+Math.random()*64424509440).toString(16)}function yt(e){if(!(!e||!e.toLowerCase))switch(e.toLowerCase()){case"true":return!0;case"false":return!1;default:return}}function cr(e,r){var t=void 0;if("currentStyle"in e)t=e.currentStyle[r];else{var n,i,a=(n=document)===null||n===void 0||(i=n.defaultView)===null||i===void 0?void 0:i.getComputedStyle(e,null);a&&(t=a.getPropertyValue(r))}return t}function r0(e,r){for(var t=e.toString();t.length1&&arguments[1]!==void 0?arguments[1]:1;if(r<1)throw"Significant digits must be at least 1.";return parseFloat(e.toPrecision(r))}function n0(e){var r=new Date(e);return r.toString()==="Invalid Date"&&(r=new Date(e.replace(/-/g,"/"))),r}function rr(e){return e instanceof Date?e.getUTCFullYear()+"-"+r0(e.getUTCMonth()+1,2)+"-"+r0(e.getUTCDate(),2):null}function i0(e,r){var t={};return function(){var n=e.getBoundingClientRect(),i={w:n.width,h:n.height};i.w===0&&i.h===0||i.w===t.w&&i.h===t.h||(t=i,r(i.w,i.h))}}function nl(){return el()?Math.round(el()*100)/100:1}function o0(e){var r=e.replace(/[\\"']/g,"\\$&").replace(/\u0000/g,"\\0").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/[\b]/g,"\\b"),t;try{t=new Function("with (this) {\n try {\n return (".concat(e,");\n } catch (e) {\n console.error('Error evaluating expression: ").concat(r,"');\n throw e;\n }\n }"))}catch(n){throw console.error("Error parsing expression: "+e),n}return function(n){return t.call(n)}}function Ki(e){return e==null?[]:Array.isArray(e)?e:[e]}function a0(e,r){function t(h,m){for(var y=0,b=0,w=[];y?@[\\\]^`{|}~])/g,"\\$1")}function tr(e,r){var t={};return Object.keys(e).forEach(function(n){t[n]=r(e[n],n,e)}),t}function u0(e){return typeof e=="number"&&isNaN(e)}function rl(e,r){if(Hi.default.type(e)==="object"&&Hi.default.type(r)==="object"){var t=e,n=r;if(Object.keys(t).length!==Object.keys(n).length)return!1;for(var i in t)if(!He(n,i)||!rl(t[i],n[i]))return!1;return!0}else if(Hi.default.type(e)==="array"&&Hi.default.type(r)==="array"){var a=e,f=r;if(a.length!==f.length)return!1;for(var c=0;c=")return f>=0;if(t===">")return f>0;if(t==="<=")return f<=0;if(t==="<")return f<0;throw"Unknown operator: ".concat(t)};function Se(e,r){if(typeof e!="undefined"){if(r.length!==1)throw new Error("labelNode must be of length 1");var t=Array.isArray(e)&&e.length===0;t?r.addClass("shiny-label-null"):(r.text(e),r.removeClass("shiny-label-null"))}}function Wi(e){var r=document.createElement("a");r.href="/";var t=document.createElement("div");t.style.setProperty("position","absolute","important"),t.style.setProperty("top","-1000px","important"),t.style.setProperty("left","0","important"),t.style.setProperty("width","30px","important"),t.style.setProperty("height","10px","important"),t.appendChild(r),e.appendChild(t);var n=window.getComputedStyle(r).getPropertyValue("color");return e.removeChild(t),n}function ol(){return!window.bootstrap}function Yi(e){return Yi=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(r){return typeof r}:function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},Yi(e)}function c2(e,r){if(!(e instanceof r))throw new TypeError("Cannot call a class as a function")}function f0(e,r){for(var t=0;t2&&arguments[2]!==void 0?arguments[2]:0,a={binding:t,priority:i};this.bindings.unshift(a),n&&(this.bindingNames[n]=a,t.name=n)}},{key:"setPriority",value:function(t,n){var i=this.bindingNames[t];if(!i)throw"Tried to set priority on unknown binding "+t;i.priority=n||0}},{key:"getPriority",value:function(t){var n=this.bindingNames[t];return n?n.priority:!1}},{key:"getBindings",value:function(){return a0(this.bindings,function(t,n){return n.priority-t.priority})}}]),e}();var a9=N(z());function Xi(e){return Xi=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(r){return typeof r}:function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},Xi(e)}function v2(e,r){if(!(e instanceof r))throw new TypeError("Cannot call a class as a function")}function l0(e,r){for(var t=0;t1?arguments[1]:void 0)}});b2(ul);var w2=M(),S2=X(),O2=er();w2({global:!0},{Reflect:{}});O2(S2.Reflect,"Reflect",!0);var x2=M(),R2=Re(),fl=en(),A2=g0(),b0=wf(),$2=te(),w0=ae(),N2=Ar(),O0=K(),cl=R2("Reflect","construct"),j2=Object.prototype,L2=[].push,_0=O0(function(){function e(){}return!(cl(function(){},[],e)instanceof e)}),P0=!O0(function(){cl(function(){})}),S0=_0||P0;x2({target:"Reflect",stat:!0,forced:S0,sham:S0},{construct:function(r,t){b0(r),$2(t);var n=arguments.length<3?r:b0(arguments[2]);if(P0&&!_0)return cl(r,t,n);if(r==n){switch(t.length){case 0:return new r;case 1:return new r(t[0]);case 2:return new r(t[0],t[1]);case 3:return new r(t[0],t[1],t[2]);case 4:return new r(t[0],t[1],t[2],t[3])}var i=[null];return fl(L2,i,t),new(fl(A2,r,i))}var a=n.prototype,f=N2(w0(a)?a:j2),c=fl(r,f,t);return w0(c)?c:f}});var P9=N(z());var gt=N(W());function gn(e){return gn=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(r){return typeof r}:function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},gn(e)}function C2(e,r){if(!(e instanceof r))throw new TypeError("Cannot call a class as a function")}function E0(e,r){for(var t=0;tc.getTime()?(0,ue.default)(i).bsDatepicker("clearDates"):(0,ue.default)(i).bsDatepicker("setUTCDate",c)}}},{key:"_setMax",value:function(i,a){if(a===null){(0,ue.default)(i).bsDatepicker("setEndDate",null);return}var f=this._newDate(a);if(f!==null&&(a=f,!isNaN(a.valueOf()))){var c=(0,ue.default)(i).bsDatepicker("getUTCDate");(0,ue.default)(i).bsDatepicker("setEndDate",this._utcDateAsLocal(a)),a&&c&&a.getTime()1&&arguments[1]!==void 0?arguments[1]:",",t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:".",n=e.toString().split(".");return n[0]=n[0].replace(/(\d{1,3}(?=(?:\d\d\d)+(?!\d)))/g,"$1"+r),n.length===1?n[0]:n.length===2?n[0]+t+n[1]:""}(0,ve.default)(document).on("click",".slider-animate-button",function(e){e.preventDefault();var r=(0,ve.default)(this),t=(0,ve.default)("#"+H(r.attr("data-target-id"))),n="Play",i="Pause",a=r.attr("data-loop")!==void 0&&!/^\s*false\s*$/i.test(r.attr("data-loop")),f=r.attr("data-interval");if(isNaN(f)?f=1500:f=Number(f),t.data("animTimer"))clearTimeout(t.data("animTimer")),t.removeData("animTimer"),r.attr("title",n),r.removeClass("playing"),t.removeData("animating");else{var c;if(t.hasClass("jslider")){var l=t.slider();l.canStepNext()||l.resetToStart(),c=setInterval(function(){a&&!l.canStepNext()?l.resetToStart():(l.stepNext(),!a&&!l.canStepNext()&&r.click())},f)}else{var h=t.data("ionRangeSlider"),m=function(){return h.options.type==="double"?h.result.to0}var gO=function(e){LG(t,e);var r=CG(t);function t(){return AG(this,t),r.apply(this,arguments)}return $G(t,[{key:"find",value:function(i){return(0,fe.default)(i).find("select")}},{key:"getType",value:function(i){var a=(0,fe.default)(i);return a.hasClass("symbol")?a.attr("multiple")==="multiple"?"shiny.symbolList":"shiny.symbol":null}},{key:"getId",value:function(i){return oe.prototype.getId.call(this,i)||i.name}},{key:"getValue",value:function(i){if(Pl(i)){var a=this._selectize(i);return a==null?void 0:a.getValue()}else return(0,fe.default)(i).val()}},{key:"setValue",value:function(i,a){if(!Pl(i))(0,fe.default)(i).val(a);else{var f=this._selectize(i);f==null||f.setValue(a)}}},{key:"getState",value:function(i){for(var a=new Array(i.length),f=0;f1&&arguments[1]!==void 0?arguments[1]:!1;if(!!fe.default.fn.selectize){var f=(0,fe.default)(i),c=f.parent().find('script[data-for="'+H(i.id)+'"]');if(c.length!==0){var l=fe.default.extend({labelField:"label",valueField:"value",searchField:["label"]},JSON.parse(c.html()));typeof c.data("nonempty")!="undefined"?(i.nonempty=!0,l=fe.default.extend(l,{onItemRemove:function(b){this.getValue()===""&&(0,fe.default)("select#"+H(i.id)).empty().append((0,fe.default)("