(function(){var e={9932:function(e,t,a){"use strict";a.d(t,{A:function(){return u}});var o=function(){var e=this,t=e._self._c;return t("div",e._g({ref:"card",staticClass:"vx-card",class:[{"overflow-hidden":e.tempHidden},{"no-shadow":e.noShadow},{"rounded-none":e.noRadius},{"card-border":e.cardBorder},e.cardClasses],style:e.cardStyles},e.$listeners),[e.hasHeader?t("div",{staticClass:"vx-card__header"},[t("div",{staticClass:"vx-card__title",class:{"w-full":!e.hasAction,"w-11/12":e.hasAction}},[e.$props.title?t("h4",{staticClass:"break-words",class:e.titleClasses,style:e.titleStyles},[e._v(" "+e._s(e.title)+" ")]):e._e(),e.$props.subtitle?t("h6",{class:e.subtitleClasses,style:e.subtitleStyles},[e._v(" "+e._s(e.subtitle)+" ")]):e._e()]),t("div",{staticClass:"vx-card__actions"},[e._t("actions",(function(){return[(e.actionButtons||e.collapseAction||e.refreshContentAction||e.removeCardAction)&&!e.codeToggler?t("div",{staticClass:"vx-card__action-buttons"},[e.actionButtons||e.collapseAction?t("feather-icon",{staticClass:"ml-4",class:{rotate180:!e.isContentCollapsed},attrs:{icon:"ChevronUpIcon"},on:{click:e.toggleContent}}):e._e(),e.actionButtons||e.refreshContentAction?t("feather-icon",{staticClass:"ml-4",attrs:{icon:"RotateCwIcon"},on:{click:e.refreshcard}}):e._e(),e.actionButtons||e.removeCardAction?t("feather-icon",{staticClass:"ml-4",attrs:{icon:"XIcon"},on:{click:e.removeCard}}):e._e()],1):e._e(),e.codeToggler&&!e.actionButtons?t("div",{staticClass:"vx-card__code-toggler sm:block hidden"},[t("feather-icon",{class:{"border border-solid border-primary border-t-0 border-r-0 border-l-0":e.showCode},attrs:{icon:"CodeIcon"},on:{click:e.toggleCode}})],1):e._e()]}))],2)]):e._e(),t("div",{ref:"content",staticClass:"vx-card__collapsible-content vs-con-loading__container",class:[{collapsed:e.isContentCollapsed},{"overflow-hidden":e.tempHidden}],style:e.StyleItems},[e._t("no-body"),e.$slots.default?t("div",{staticClass:"vx-card__body"},[e._t("default")],2):e._e(),e._t("no-body-bottom"),e.$slots.footer?t("div",{staticClass:"vx-card__footer"},[e._t("footer")],2):e._e()],2)])},r=[],n=a(65905),s={name:"VxCard",props:{title:String,subtitle:String,actionButtons:{type:Boolean,default:!1},actionButtonsColor:{type:String,default:"success"},codeToggler:{type:Boolean,default:!1},noShadow:{default:!1,type:Boolean},noRadius:{default:!1,type:Boolean},cardBorder:{default:!1,type:Boolean},codeLanguage:{default:"markup",type:String},collapseAction:{default:!1,type:Boolean},refreshContentAction:{default:!1,type:Boolean},removeCardAction:{default:!1,type:Boolean},headerBackground:{default:"",type:String},cardBackground:{default:"",type:String},contentColor:{default:"",type:String},titleColor:{default:"",type:String},subtitleColor:{default:"#b8c2cc",type:String},hideCollapse:{default:!1,type:Boolean},refreshByDefault:{default:!1,type:Boolean}},data(){return{isContentCollapsed:!1,showCode:!1,maxHeight:null,cardMaxHeight:null,codeContainerMaxHeight:"0px",tempHidden:!1,hasActionSlot:!1}},computed:{hasAction(){return this.hasActionSlot||this.actionButtons||this.collapseAction||this.refreshContentAction||this.removeCardAction||this.codeToggler},hasHeader(){return this.hasAction||this.title||this.subtitle},StyleItems(){return{maxHeight:this.maxHeight}},cardStyles(){const e={maxHeight:this.cardMaxHeight};return n.A.isColor(this.cardBackground)||(e.background=n.A.getColor(this.cardBackground)),n.A.isColor(this.contentColor)||(e.color=n.A.getColor(this.contentColor)),e},codeContainerStyles(){return{maxHeight:this.codeContainerMaxHeight}},cardClasses(){let e="";return n.A.isColor(this.cardBackground)&&(e+=` bg-${this.cardBackground}`),n.A.isColor(this.contentColor)&&(e+=` text-${this.contentColor}`),e.trim()},titleStyles(){return{color:n.A.getColor(this.titleColor)}},titleClasses(){let e="";return n.A.isColor(this.titleColor)&&(e+=` text-${this.titleColor}`),e.trim()},subtitleStyles(){const e={};return n.A.isColor(this.subtitleColor)||(e.color=n.A.getColor(this.subtitleColor)),e},subtitleClasses(){let e="";return n.A.isColor(this.subtitleColor)&&(e+=` text-${this.subtitleColor}`),e.trim()}},beforeUpdate(){this.hasActionSlot=null!=this.$slots.actions},mounted(){this.hideCollapse&&this.collapseAction&&(this.$refs.content.style.overflow="hidden",this.isContentCollapsed=!0,this.maxHeight="1.5rem"),this.refreshByDefault&&this.refreshcard()},methods:{toggleContent(){this.$refs.content.style.overflow="hidden";const e=this.$refs.content.scrollHeight;"1.5rem"==this.maxHeight?(this.maxHeight=`${e}px`,setTimeout((()=>{this.maxHeight="none",this.$refs.content.style.overflow=null}),300)):(this.maxHeight=`${e}px`,setTimeout((()=>{this.maxHeight="1.5rem",this.$refs.content.style.overflow=null}),50)),this.isContentCollapsed=!this.isContentCollapsed,this.$emit("toggleCollapse",this.isContentCollapsed)},refreshcard(){1!=this.tempHidden&&(this.$vs.loading({container:this.$refs.content,scale:.5}),this.tempHidden=!0,this.$emit("refresh",this))},removeRefreshAnimation(e=100){0!=this.tempHidden&&setTimeout((()=>{this.$vs.loading.close(this.$refs.content),this.tempHidden=!1}),e)},removeCard(){const e=this.$refs.card.scrollHeight;this.cardMaxHeight=`${e}px`,this.$el.style.overflow="hidden",setTimeout((()=>{this.cardMaxHeight="0px"}),50),this.$emit("remove")},toggleCode(){this.tempHidden=!0,this.showCode=!this.showCode;const e=this.$refs.codeContainer.scrollHeight;"0px"==this.codeContainerMaxHeight?(this.codeContainerMaxHeight=`${e}px`,setTimeout((()=>{this.codeContainerMaxHeight="none",this.tempHidden=!1}),300)):(this.codeContainerMaxHeight=`${e}px`,setTimeout((()=>{this.codeContainerMaxHeight="0px",this.tempHidden=!1}),150))}}},i=s,l=a(81656),d=(0,l.A)(i,o,r,!1,null,null,null),u=d.exports},88201:function(e,t,a){"use strict";a.r(t)},70735:function(e,t){"use strict";t.A={"colors-primary":"#05042a","colors-success":"#28c76f","colors-danger":"#ea5455","colors-warning":"#ffba00","colors-dark":"#1e1e1e","colors-grey-dark":"#56595c","colors-grey":"#b8c2cc","colors-grey-light":"#dae1e7","colors-white":"#fff","colors-black":"#22292f","colors-invisible":"rgba(0,0,0,0)","colors-benchmark":"#8d8c8c","colors-benchmark-dark":"#5f5f5f","colors-live":"#c7650a","misc-border-radius-px":"5px","typography-font-family-sans-serif":'"Open Sans"'}},35358:function(e,t,a){var o={"./af":25177,"./af.js":25177,"./ar":61509,"./ar-dz":41488,"./ar-dz.js":41488,"./ar-kw":58676,"./ar-kw.js":58676,"./ar-ly":42353,"./ar-ly.js":42353,"./ar-ma":24496,"./ar-ma.js":24496,"./ar-ps":6947,"./ar-ps.js":6947,"./ar-sa":82682,"./ar-sa.js":82682,"./ar-tn":89756,"./ar-tn.js":89756,"./ar.js":61509,"./az":95533,"./az.js":95533,"./be":28959,"./be.js":28959,"./bg":47777,"./bg.js":47777,"./bm":54903,"./bm.js":54903,"./bn":61290,"./bn-bd":17357,"./bn-bd.js":17357,"./bn.js":61290,"./bo":31545,"./bo.js":31545,"./br":11470,"./br.js":11470,"./bs":44429,"./bs.js":44429,"./ca":7306,"./ca.js":7306,"./cs":56464,"./cs.js":56464,"./cv":73635,"./cv.js":73635,"./cy":64226,"./cy.js":64226,"./da":93601,"./da.js":93601,"./de":77853,"./de-at":26111,"./de-at.js":26111,"./de-ch":54697,"./de-ch.js":54697,"./de.js":77853,"./dv":60708,"./dv.js":60708,"./el":54691,"./el.js":54691,"./en-au":53872,"./en-au.js":53872,"./en-ca":28298,"./en-ca.js":28298,"./en-gb":56195,"./en-gb.js":56195,"./en-ie":66584,"./en-ie.js":66584,"./en-il":65543,"./en-il.js":65543,"./en-in":9033,"./en-in.js":9033,"./en-nz":79402,"./en-nz.js":79402,"./en-sg":43004,"./en-sg.js":43004,"./eo":32934,"./eo.js":32934,"./es":97650,"./es-do":20838,"./es-do.js":20838,"./es-mx":17730,"./es-mx.js":17730,"./es-us":56575,"./es-us.js":56575,"./es.js":97650,"./et":3035,"./et.js":3035,"./eu":3508,"./eu.js":3508,"./fa":119,"./fa.js":119,"./fi":90527,"./fi.js":90527,"./fil":95995,"./fil.js":95995,"./fo":52477,"./fo.js":52477,"./fr":85498,"./fr-ca":26435,"./fr-ca.js":26435,"./fr-ch":37892,"./fr-ch.js":37892,"./fr.js":85498,"./fy":37071,"./fy.js":37071,"./ga":41734,"./ga.js":41734,"./gd":70217,"./gd.js":70217,"./gl":77329,"./gl.js":77329,"./gom-deva":32124,"./gom-deva.js":32124,"./gom-latn":93383,"./gom-latn.js":93383,"./gu":95050,"./gu.js":95050,"./he":11713,"./he.js":11713,"./hi":43861,"./hi.js":43861,"./hr":26308,"./hr.js":26308,"./hu":90609,"./hu.js":90609,"./hy-am":17160,"./hy-am.js":17160,"./id":74063,"./id.js":74063,"./is":89374,"./is.js":89374,"./it":88383,"./it-ch":21827,"./it-ch.js":21827,"./it.js":88383,"./ja":23827,"./ja.js":23827,"./jv":89722,"./jv.js":89722,"./ka":41794,"./ka.js":41794,"./kk":27088,"./kk.js":27088,"./km":96870,"./km.js":96870,"./kn":84451,"./kn.js":84451,"./ko":63164,"./ko.js":63164,"./ku":98174,"./ku-kmr":6181,"./ku-kmr.js":6181,"./ku.js":98174,"./ky":78474,"./ky.js":78474,"./lb":79680,"./lb.js":79680,"./lo":15867,"./lo.js":15867,"./lt":45766,"./lt.js":45766,"./lv":69532,"./lv.js":69532,"./me":58076,"./me.js":58076,"./mi":41848,"./mi.js":41848,"./mk":30306,"./mk.js":30306,"./ml":73739,"./ml.js":73739,"./mn":99053,"./mn.js":99053,"./mr":86169,"./mr.js":86169,"./ms":73386,"./ms-my":92297,"./ms-my.js":92297,"./ms.js":73386,"./mt":77075,"./mt.js":77075,"./my":72264,"./my.js":72264,"./nb":22274,"./nb.js":22274,"./ne":8235,"./ne.js":8235,"./nl":92572,"./nl-be":43784,"./nl-be.js":43784,"./nl.js":92572,"./nn":54566,"./nn.js":54566,"./oc-lnc":69330,"./oc-lnc.js":69330,"./pa-in":29849,"./pa-in.js":29849,"./pl":94418,"./pl.js":94418,"./pt":79834,"./pt-br":48303,"./pt-br.js":48303,"./pt.js":79834,"./ro":24457,"./ro.js":24457,"./ru":82271,"./ru.js":82271,"./sd":1221,"./sd.js":1221,"./se":33478,"./se.js":33478,"./si":17538,"./si.js":17538,"./sk":5784,"./sk.js":5784,"./sl":46637,"./sl.js":46637,"./sq":86794,"./sq.js":86794,"./sr":45719,"./sr-cyrl":3322,"./sr-cyrl.js":3322,"./sr.js":45719,"./ss":56e3,"./ss.js":56e3,"./sv":41011,"./sv.js":41011,"./sw":40748,"./sw.js":40748,"./ta":11025,"./ta.js":11025,"./te":11885,"./te.js":11885,"./tet":28861,"./tet.js":28861,"./tg":86571,"./tg.js":86571,"./th":55802,"./th.js":55802,"./tk":59527,"./tk.js":59527,"./tl-ph":29231,"./tl-ph.js":29231,"./tlh":31052,"./tlh.js":31052,"./tr":85096,"./tr.js":85096,"./tzl":79846,"./tzl.js":79846,"./tzm":81765,"./tzm-latn":97711,"./tzm-latn.js":97711,"./tzm.js":81765,"./ug-cn":48414,"./ug-cn.js":48414,"./uk":16618,"./uk.js":16618,"./ur":57777,"./ur.js":57777,"./uz":57609,"./uz-latn":72475,"./uz-latn.js":72475,"./uz.js":57609,"./vi":21135,"./vi.js":21135,"./x-pseudo":64051,"./x-pseudo.js":64051,"./yo":82218,"./yo.js":82218,"./zh-cn":52648,"./zh-cn.js":52648,"./zh-hk":1632,"./zh-hk.js":1632,"./zh-mo":31541,"./zh-mo.js":31541,"./zh-tw":50304,"./zh-tw.js":50304};function r(e){var t=n(e);return a(t)}function n(e){if(!a.o(o,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}r.keys=function(){return Object.keys(o)},r.resolve=n,e.exports=r,r.id=35358},71642:function(e,t,a){"use strict";a.d(t,{X:function(){return o}});const o=Object.freeze({guest:"guest",insight:"insight",viewer:"viewer",alvolaCHF:"alvolaCHF",lifeSciencesToolsAndServices:"lifeSciencesToolsAndServices",employee:"employee",admin:"admin",superAdmin:"superAdmin"})},32899:function(e,t,a){"use strict";a.d(t,{M:function(){return o}});const o=Object.freeze({cumulativeReturns:"cumulativeReturns",performanceStats:"performanceStats",outperformance:"outperformance",volatility:"volatility",drawdowns:"drawdowns",cumulativeWeightedReturns:"cumulativeWeightedReturns",returnProfile:"returnProfile",beta:"beta",riskAdjustedPerf:"riskAdjustedPerf",yearlyCumulativeReturns:"yearlyCumulativeReturns"})},58434:function(e,t,a){"use strict";a.d(t,{$g:function(){return Y},A8:function(){return X},F7:function(){return f},FK:function(){return j},GY:function(){return c},J3:function(){return V},JT:function(){return g},K8:function(){return R},KF:function(){return C},Kb:function(){return r},NU:function(){return F},Ou:function(){return o},Sp:function(){return Z},Ub:function(){return K},V0:function(){return n},W8:function(){return I},XJ:function(){return $},Y2:function(){return p},Yc:function(){return m},Yt:function(){return s},ZH:function(){return k},aW:function(){return B},b:function(){return E},be:function(){return i},co:function(){return v},d5:function(){return z},dA:function(){return d},dH:function(){return b},dz:function(){return q},ex:function(){return H},he:function(){return A},ii:function(){return W},il:function(){return y},kI:function(){return J},l2:function(){return O},lD:function(){return G},lT:function(){return N},lm:function(){return u},lr:function(){return D},mx:function(){return S},ov:function(){return M},qu:function(){return w},sR:function(){return P},so:function(){return _},tl:function(){return L},uP:function(){return x},vM:function(){return l},vj:function(){return U},vl:function(){return T},x6:function(){return Q},xD:function(){return h},xq:function(){return te},zk:function(){return ee}});const o="server_error_response",r="server_error_request",n="server_error_other",s="contact_request",i="new_registration",l="new_registration_2fa",d="new_login",u="new_login_2fa",c="delete_account",m="edit_account",p="update_date",h="password_reset",g="tooltip_hover",f="user_role_change",v="manual_email_verification",b="product_config_change",w="price_data_exported",A="factsheet_downloaded",y="factsheet_saved_in_documents",S="factsheet_saved_layout",C="overview_saved_layout",P="update_price_data",k="collapse_clicked",I="download_document",D="select_investor_profile",E="share_class_changed",R="error404",T="error403",M="button_clicked",q="text_clicked",x="document_uploaded",z="document_edited",F="document_deleted",B="document_archived",L="document_unarchived",N="document_reordering",U="typed_search_home",V="show_more_home_clicked",O="typed_search_vert_nav_menu",G="show_more_vert_nav_menu_clicked",_="platform_settings_changed",H="product_followed",j="product_unfollowed",W="product_followed_by_admin",Q="product_unfollowed_by_admin",$="followers_exported",Z="followers_email_opened",Y="success",K="warning",J="failure",X="Google",ee="Microsoft",te="Email and password"},59192:function(e,t,a){"use strict";a.d(t,{DU:function(){return r},Ef:function(){return s},PC:function(){return i},aZ:function(){return n}});var o=a(14760);const r=Object.freeze({financialCrisis:{getName:()=>o.R.t("pages.products.events.financialCrisis"),start:"2008-01-16",end:"2010-01-01"},euroCrisis:{getName:()=>o.R.t("pages.products.events.euroCrisis"),start:"2011-02-18",end:"2012-03-01"},december2018Crisis:{getName:()=>o.R.t("pages.products.events.december2018Crisis"),start:"2018-10-01",end:"2019-04-01"},covid19Crisis:{getName:()=>o.R.t("pages.products.events.covidCrisis"),start:"2019-12-01",end:"2020-12-01"},covid19CrisisForHistoricalProtech:{getName:()=>o.R.t("pages.products.events.covidCrisis"),start:"2019-12-01",end:"2020-07-31"},lstsInception:{getName:()=>o.R.t("pages.products.events.lstsLive"),start:"2021-07-16",end:null},protechInception:{getName:()=>o.R.t("pages.products.events.protechLive"),start:"2020-07-31",end:null},alvolaInception:{getName:()=>o.R.t("pages.products.events.alvolaLive"),start:"2021-06-02",end:null},convexusInception:{getName:()=>o.R.t("pages.products.events.convexusLive"),start:"2022-05-05",end:null},utiNewLuxuryInception:{getName:()=>o.R.t("pages.products.events.sinceInception"),start:"2023-06-21",end:null},ynnovationInception:{getName:()=>o.R.t("pages.products.events.ynnovationLive"),start:"2023-09-21",end:null},falgomInception:{getName:()=>o.R.t("pages.products.events.sinceInception"),start:"2022-01-31",end:null},calmgardPostFinancialCrisis:{getName:()=>o.R.t("pages.products.events.calmgard.calmgardPostFinancialCrisis"),start:"2009-01-05",end:"2009-02-28"},calmgardEuroCrisisOne:{getName:()=>o.R.t("pages.products.events.calmgard.calmgardEuroCrisisOne"),start:"2010-04-30",end:"2010-06-30"},calmgardEuroCrisisTwo:{getName:()=>o.R.t("pages.products.events.calmgard.calmgardEuroCrisisTwo"),start:"2011-04-30",end:"2011-09-30"},calmgardGreekAndChinaCrisis:{getName:()=>o.R.t("pages.products.events.calmgard.calmgardGreekAndChinaCrisis"),start:"2015-07-31",end:"2016-02-29"},calmgardInterestRateSpeculationOne:{getName:()=>o.R.t("pages.products.events.calmgard.calmgardInterestRateSpeculationOne"),start:"2018-09-30",end:"2018-12-31"},calmgardCovid19Crisis:{getName:()=>o.R.t("pages.products.events.calmgard.calmgardCovid19Crisis"),start:"2019-12-31",end:"2020-03-31"},calmgardUkraineWar:{getName:()=>o.R.t("pages.products.events.calmgard.calmgardUkraineWar"),start:"2021-12-31",end:"2022-09-30"},calmgardInterestRateSpeculationTwo:{getName:()=>o.R.t("pages.products.events.calmgard.calmgardInterestRateSpeculationTwo"),start:"2023-07-31",end:"2023-10-31"},falgomGlobalFinancialCrisis:{getName:()=>o.R.t("pages.products.events.falgom.falgomGlobalFinancialCrisis"),start:"2008-01-31",end:"2009-03-31"},falgomRecessionEurope:{getName:()=>o.R.t("pages.products.events.falgom.falgomRecessionEurope"),start:"2010-05-31",end:"2011-08-31"},falgomGrowthSlowdownChina:{getName:()=>o.R.t("pages.products.events.falgom.falgomGrowthSlowdownChina"),start:"2015-10-31",end:"2016-04-30"},falgomVolmageddon:{getName:()=>o.R.t("pages.products.events.falgom.falgomVolmageddon"),start:"2018-08-31",end:"2019-03-31"},falgomCoronavirusPandemic:{getName:()=>o.R.t("pages.products.events.falgom.falgomCoronavirusPandemic"),start:"2019-10-31",end:"2020-03-31"},falgomFedQuantitativeTapering:{getName:()=>o.R.t("pages.products.events.falgom.falgomFedQuantitativeTapering"),start:"2021-11-30",end:"2022-12-31"}}),n=[r.financialCrisis,r.euroCrisis,r.december2018Crisis,r.covid19Crisis],s=[r.calmgardPostFinancialCrisis,r.calmgardEuroCrisisOne,r.calmgardEuroCrisisTwo,r.calmgardGreekAndChinaCrisis,r.calmgardInterestRateSpeculationOne,r.calmgardCovid19Crisis,r.calmgardUkraineWar,r.calmgardInterestRateSpeculationTwo],i=[r.falgomGlobalFinancialCrisis,r.falgomRecessionEurope,r.falgomGrowthSlowdownChina,r.falgomVolmageddon,r.falgomCoronavirusPandemic,r.falgomFedQuantitativeTapering,r.falgomInception]},56800:function(e,t,a){"use strict";a.d(t,{y:function(){return r}});var o=a(14760);const r=Object.freeze({daily:{id:"daily",getLastChangeName:()=>o.R.t("pages.products.overview.lastDayChange")},weekly:{id:"weekly",getLastChangeName:()=>o.R.t("pages.products.overview.lastWeekChange")},monthly:{id:"monthly",getLastChangeName:()=>o.R.t("pages.products.overview.lastMonthChange")},quarterly:{id:"quarterly",getLastChangeName:()=>o.R.t("pages.products.overview.lastQuarterChange")},yearly:{id:"yearly",getLastChangeName:()=>o.R.t("pages.products.overview.lastYearChange")},other:{id:"other",getLastChangeName:()=>o.R.t("pages.products.overview.lastChange")}})},77743:function(e,t,a){"use strict";a.d(t,{Nf:function(){return r},uQ:function(){return o}});const o=365,r="locale_openfunds"},27367:function(e,t,a){"use strict";a.d(t,{Ln:function(){return m},VI:function(){return p},oi:function(){return v},rR:function(){return u},ru:function(){return g},sJ:function(){return f},x9:function(){return h},xq:function(){return c}});var o=a(14760),r=a(50810),n=a(91038),s=a(12870),i=a(84477),l=a(46536),d=a(70653);const u="investorProfileName",c="investorProfileCountry",m="retail",p="professional",h="institutional",g=()=>[{value:m,label:o.R.t("investorProfileTypes.retail")},{value:p,label:o.R.t("investorProfileTypes.professional")},{value:h,label:o.R.t("investorProfileTypes.institutional")}];r.registerLocale(n),r.registerLocale(s),r.registerLocale(i),r.registerLocale(l),r.registerLocale(d);const f=e=>{const t=r.getNames(e),a=[v,"LU","AT","BE","BG","HR","CY","CZ","DK","EE","FI","FR","DE","GR","HU","IE","IT","LV","LT","MT","NL","PL","PT","RO","SK","SI","ES","SE","GB","HK","SG"],o=r.getNames("en"),n=Object.keys(o).sort(((e,t)=>o[e].localeCompare(o[t]))).filter((e=>!a.includes(e))),s=[...a,...n];return s.map((e=>({value:e,label:t[e]})))},v="CH",b=localStorage.getItem(c),w=r.getNames("en");if(b&&b.length>2){const e=Object.keys(w).find((e=>w[e]==b));e?localStorage.setItem(c,e):localStorage.removeItem(c)}const A=localStorage.getItem(u),y={"Retail investor":m,"Professional investor":p,"Institutional investor":h};A&&!Object.values(y).includes(A)&&(y[A]?localStorage.setItem(u,y[A]):localStorage.removeItem(u))},33492:function(e,t,a){"use strict";a.d(t,{$d:function(){return r},PG:function(){return n},f$:function(){return s}});var o=a(14760);const r=Object.freeze({alpha:{id:"alpha",getFormat:e=>`,.${e}%`,knowledgeBaseTerm:"alpha",requireBenchmark:!0,getName:()=>o.R.t("perfStats.alpha")},annualizedReturn:{id:"annualizedReturn",getFormat:e=>`,.${e}%`,knowledgeBaseTerm:"annualized-return",requireBenchmark:!1,getName:()=>o.R.t("perfStats.annualizedReturn")},annualizedVolatility:{id:"annualizedVolatility",getFormat:e=>`,.${e}%`,knowledgeBaseTerm:"annualized-volatility",requireBenchmark:!1,getName:()=>o.R.t("perfStats.annualizedVolatility")},beta:{id:"beta",getFormat:e=>`,.${e}f`,knowledgeBaseTerm:"beta",requireBenchmark:!0,getName:()=>o.R.t("perfStats.beta")},correlation:{id:"correlation",getFormat:e=>`,.${e}f`,knowledgeBaseTerm:"correlation",requireBenchmark:!0,getName:()=>o.R.t("perfStats.correlation")},cumulativeReturn:{id:"cumulativeReturn",getFormat:e=>`,.${e}%`,knowledgeBaseTerm:"cumulative-return",requireBenchmark:!1,getName:()=>o.R.t("perfStats.cumulativeReturn")},informationRatio:{id:"informationRatio",getFormat:e=>`,.${e}f`,knowledgeBaseTerm:"information-ratio",requireBenchmark:!0,getName:()=>o.R.t("perfStats.informationRatio")},maximumDrawdown:{id:"maximumDrawdown",getFormat:e=>`,.${e}%`,knowledgeBaseTerm:"maximum-drawdown",requireBenchmark:!1,getName:()=>o.R.t("perfStats.maximumDrawdown")},returnToVolatilityRatio:{id:"returnToVolatilityRatio",getFormat:e=>`,.${e}f`,knowledgeBaseTerm:"return-to-volatility-ratio",requireBenchmark:!1,getName:()=>o.R.t("perfStats.returnToVolatilityRatio")},sharpeRatio:{id:"sharpeRatio",getFormat:e=>`,.${e}f`,knowledgeBaseTerm:"sharpe-ratio",requireBenchmark:!1,getName:()=>o.R.t("perfStats.sharpeRatio")},sortinoRatio:{id:"sortinoRatio",getFormat:e=>`,.${e}f`,knowledgeBaseTerm:"sortino-ratio",requireBenchmark:!1,getName:()=>o.R.t("perfStats.sortinoRatio")},calmarRatio:{id:"calmarRatio",getFormat:e=>`,.${e}f`,knowledgeBaseTerm:"calmar-ratio",requireBenchmark:!1,getName:()=>o.R.t("perfStats.calmarRatio")},omegaRatio:{id:"omegaRatio",getFormat:e=>`,.${e}f`,knowledgeBaseTerm:"omega-ratio",requireBenchmark:!1,getName:()=>o.R.t("perfStats.omegaRatio")},skewness:{id:"skewness",getFormat:e=>`,.${e}f`,knowledgeBaseTerm:"skewness",requireBenchmark:!1,getName:()=>o.R.t("perfStats.skewness")},kurtosis:{id:"kurtosis",getFormat:e=>`,.${e}f`,knowledgeBaseTerm:"kurtosis",requireBenchmark:!1,getName:()=>o.R.t("perfStats.kurtosis")},trackingError:{id:"trackingError",getFormat:e=>`,.${e}%`,knowledgeBaseTerm:"tracking-error",requireBenchmark:!0,getName:()=>o.R.t("perfStats.trackingError")},treynorRatio:{id:"treynorRatio",getFormat:e=>`,.${e}f`,knowledgeBaseTerm:"treynor-ratio",requireBenchmark:!0,getName:()=>o.R.t("perfStats.treynorRatio")},m2RiskAdjustedPerfMonthly:{id:"m2RiskAdjustedPerfMonthly",getFormat:e=>`,.${e}%`,knowledgeBaseTerm:"m2-risk-adjusted-perf",requireBenchmark:!0,getName:()=>o.R.t("perfStats.m2RiskAdjustedPerfMonthly")},averageMonthlyReturns:{id:"averageMonthlyReturns",getFormat:e=>`,.${e}%`,requireBenchmark:!1,getName:()=>o.R.t("perfStats.averageMonthlyReturns")},averagePositiveMonthlyReturns:{id:"averagePositiveMonthlyReturns",getFormat:e=>`,.${e}%`,requireBenchmark:!1,getName:()=>o.R.t("perfStats.averagePositiveMonthlyReturns")},averageNegativeMonthlyReturns:{id:"averageNegativeMonthlyReturns",getFormat:e=>`,.${e}%`,requireBenchmark:!1,getName:()=>o.R.t("perfStats.averageNegativeMonthlyReturns")},ratioOfPositiveMonthlyReturns:{id:"ratioOfPositiveMonthlyReturns",getFormat:e=>`,.${e}%`,requireBenchmark:!1,getName:()=>o.R.t("perfStats.ratioOfPositiveMonthlyReturns")},ratioOfNegativeMonthlyReturns:{id:"ratioOfNegativeMonthlyReturns",getFormat:e=>`,.${e}%`,requireBenchmark:!1,getName:()=>o.R.t("perfStats.ratioOfNegativeMonthlyReturns")},maxPositiveMonthlyReturn:{id:"maxPositiveMonthlyReturn",getFormat:e=>`,.${e}%`,requireBenchmark:!1,getName:()=>o.R.t("perfStats.maxPositiveMonthlyReturn")},maxNegativeMonthlyReturn:{id:"maxNegativeMonthlyReturn",getFormat:e=>`,.${e}%`,requireBenchmark:!1,getName:()=>o.R.t("perfStats.maxNegativeMonthlyReturn")},maxConsecutivePositiveMonthlyReturns:{id:"maxConsecutivePositiveMonthlyReturns",getFormat:()=>",.0f",requireBenchmark:!1,getName:()=>o.R.t("perfStats.maxConsecutivePositiveMonthlyReturns")},maxConsecutiveNegativeMonthlyReturns:{id:"maxConsecutiveNegativeMonthlyReturns",getFormat:()=>",.0f",requireBenchmark:!1,getName:()=>o.R.t("perfStats.maxConsecutiveNegativeMonthlyReturns")},valueAtRiskOnePercentOneMonth:{id:"valueAtRiskOnePercentOneMonth",getFormat:e=>`,.${e}%`,knowledgeBaseTerm:"value-at-risk",requireBenchmark:!1,getName:()=>o.R.t("perfStats.valueAtRiskOnePercentOneMonth")},valueAtRiskFivePercentOneMonth:{id:"valueAtRiskFivePercentOneMonth",getFormat:e=>`,.${e}%`,knowledgeBaseTerm:"value-at-risk",requireBenchmark:!1,getName:()=>o.R.t("perfStats.valueAtRiskFivePercentOneMonth")}}),n=[r.cumulativeReturn,r.annualizedReturn,r.annualizedVolatility,r.maximumDrawdown,r.sharpeRatio,r.skewness,r.trackingError,r.informationRatio,r.alpha,r.beta],s=[r.cumulativeReturn,r.annualizedReturn,r.annualizedVolatility,r.maximumDrawdown,r.sharpeRatio,r.skewness]},58241:function(e,t,a){"use strict";a.d(t,{D:function(){return w},c:function(){return A}});var o=a(71642),r=a(32899),n=a(59192),s=a(56800),i=a(33492),l=a(52618),d=a(70735);const u=d.A["colors-primary"],c=[o.X.admin,o.X.superAdmin],m={productId:"absolute-return",storeModule:"absoluteReturn",productName:"6T Absolute Return",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},p={productId:"china-common-prosperity",storeModule:"chinaCommonProsperity",productName:"6T China Common Prosperity",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},h={productId:"global-equity-value-usd",storeModule:"globalEquityValueUsd",productName:"6T Global Equity Value (USD)",productShortName:"6T Global Equity Value",productColor:u,productShareClassRoot:"global-equity-value",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},g={productId:"global-equity-value-eur",storeModule:"globalEquityValueEur",productName:"6T Global Equity Value (EUR)",productShortName:"6T Global Equity Value",productColor:u,productShareClassRoot:"global-equity-value",showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},f={productId:"white-fleet-a-eur",storeModule:"wfAssetAllocationEur",productShortName:"WF Asset Allocation Fund",productName:"WF Asset Allocation Fund (EUR)",productColor:u,productShareClassRoot:"white-fleet",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.weekly,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},v={productId:"white-fleet-a-h-chf",storeModule:"wfAssetAllocationChf",productName:"WF Asset Allocation Fund (CHF)",productShortName:"WF Asset Allocation Fund",productColor:u,productShareClassRoot:"white-fleet",showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.weekly,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},b={productId:"white-fleet-a-h-usd",storeModule:"wfAssetAllocationUsd",productName:"WF Asset Allocation Fund (USD)",productShortName:"WF Asset Allocation Fund",productColor:u,productShareClassRoot:"white-fleet",showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.weekly,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},w=[m,p,h,g,f,v,b],A=w.map((e=>e.storeModule))},94455:function(e,t,a){"use strict";a.d(t,{K:function(){return I},p:function(){return k}});var o=a(71642),r=a(32899),n=a(59192),s=a(56800),i=a(33492),l=a(52618),d=a(70735),u=a(14760);const c=d.A["colors-primary"],m=[o.X.admin,o.X.superAdmin],p={productId:"convexus",storeModule:"convexus",productName:"Alquant Convexus",productShortName:"Convexus",productColor:c,showLastPrice:!0,langsForDocuments:["en","de"],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.volatility,r.M.drawdowns],perfStats:i.PG,events:n.aZ,getTabmenuText:()=>u.R.t("pages.products.analysis.tab.liveText")},historical:{mode:"historical",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.outperformance,r.M.volatility,r.M.drawdowns,r.M.yearlyCumulativeReturns],perfStats:i.PG,events:n.aZ,getTabmenuText:()=>u.R.t("pages.products.analysis.tab.historicalText")},internal:{mode:"internal",updateFrequency:s.y.daily,componentPath:"alquant/convexus/InternalAnalysis.vue",allowedRoles:m,zoomButtons:l.w,allowLiveComparison:!0,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.outperformance,r.M.volatility,r.M.drawdowns,r.M.cumulativeWeightedReturns,r.M.returnProfile,r.M.beta,r.M.riskAdjustedPerf,r.M.yearlyCumulativeReturns],perfStats:i.PG,events:[n.DU.financialCrisis,n.DU.euroCrisis,n.DU.december2018Crisis,n.DU.covid19Crisis,n.DU.convexusInception]},tabmenuItems:[{url:"/products/convexus/live-analysis",getName:()=>u.R.t("pages.products.analysis.tab.live"),slug:"convexus-live-analysis"},{url:"/products/convexus/historical-analysis",getName:()=>u.R.t("pages.products.analysis.tab.historical"),slug:"convexus-historical-analysis"},{url:"/products/convexus/internal-analysis",getName:()=>u.R.t("pages.products.analysis.tab.internal"),slug:"convexus-internal-analysis",meta:{authorize:m}}],factsheet:{allowedRoles:m}},h={productId:"protech",storeModule:"proTech",productName:"Alquant ProTech",productShortName:"ProTech",productColor:c,showLastPrice:!0,timelineData:[{color:"primary",icon:"StarIcon",title:"Product inception",desc:"ProTech was issued by UBS and was made available to all investors in Switzerland",time:"31 Jul 2020"}],tabmenuItems:[{url:"/products/protech/live-analysis",getName:()=>u.R.t("pages.products.analysis.tab.live"),slug:"protech-live-analysis"},{url:"/products/protech/historical-analysis",getName:()=>u.R.t("pages.products.analysis.tab.historical"),slug:"protech-historical-analysis"},{url:"/products/protech/internal-analysis",getName:()=>u.R.t("pages.products.analysis.tab.internal"),slug:"protech-internal-analysis",meta:{authorize:m}}],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.volatility,r.M.drawdowns],perfStats:i.f$,events:n.aZ,getTabmenuText:()=>u.R.t("pages.products.analysis.tab.liveText")},historical:{mode:"historical",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.outperformance,r.M.volatility,r.M.drawdowns,r.M.yearlyCumulativeReturns],perfStats:i.PG,events:[n.DU.financialCrisis,n.DU.euroCrisis,n.DU.december2018Crisis,n.DU.covid19CrisisForHistoricalProtech],getTabmenuText:()=>u.R.t("pages.products.analysis.tab.historicalText")},internal:{mode:"internal",updateFrequency:s.y.daily,componentPath:"alquant/proTech/InternalAnalysis.vue",allowedRoles:m,allowLiveComparison:!0,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.outperformance,r.M.volatility,r.M.drawdowns,r.M.cumulativeWeightedReturns,r.M.returnProfile,r.M.beta,r.M.riskAdjustedPerf,r.M.yearlyCumulativeReturns],perfStats:i.PG,events:[n.DU.financialCrisis,n.DU.euroCrisis,n.DU.december2018Crisis,n.DU.covid19Crisis,n.DU.protechInception]},factsheet:{allowedRoles:m}},g={productId:"alvola",lockedBehindLogin:!0,storeModule:"alvola",productName:"Alquant Alvola",productShortName:"Alvola",productColor:c,showLastPrice:!1,allowedRoles:m,timelineData:[{color:"primary",icon:"StarIcon",title:"Product inception",desc:"Alvola was issued as an SPV in collaboration with ISP Group and was made available to all qualified investors in Switzerland",time:"02 Jun 2021"},{color:"grey",icon:"PlusIcon",title:"Long volatility leg adjustment",desc:"After intensive research, we have slightly adjusted the exposure management of the long volatility leg to further reduce the maximum drawdown of the strategy",time:"15 Dec 2021"}],tabmenuItems:[{url:"/products/alvola/internal-analysis",getName:()=>u.R.t("pages.products.analysis.tab.internal"),slug:"alvola-internal-analysis",meta:{authorize:m}}],live:{mode:"internal",updateFrequency:s.y.daily,componentPath:"alquant/alvola/InternalAnalysis.vue",allowedRoles:m,allowLiveComparison:!0,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.outperformance,r.M.volatility,r.M.drawdowns,r.M.cumulativeWeightedReturns,r.M.returnProfile,r.M.beta,r.M.riskAdjustedPerf,r.M.yearlyCumulativeReturns],perfStats:i.PG,events:[n.DU.financialCrisis,n.DU.euroCrisis,n.DU.december2018Crisis,n.DU.covid19Crisis,n.DU.alvolaInception]},useCase:{componentPath:"alquant/alvola/UseCase.vue"}},f={productId:"alvola-chf",hideWhenAskedInSettings:!0,storeModule:"alvolaCHF",productName:"Alquant Alvola (CHF)",productShortName:"Alvola (CHF)",productColor:c,showLastPrice:!0,allowedRoles:m.concat([o.X.alvolaCHF]),timelineData:[{color:"primary",icon:"StarIcon",title:"Product inception",desc:"Alvola CHF was issued by UBS and was made available to all investors in Switzerland",time:"15 Oct 2021"},{color:"grey",icon:"PlusIcon",title:"Small adjustment on long volatility leg",desc:"After intensive research, we have slightly adjusted the exposure management of the long volatility leg to further reduce the maximum drawdown of the strategy",time:"15 Dec 2021"}],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.volatility,r.M.drawdowns],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:m}},v={productId:"lsts",storeModule:"lifeSciencesToolsAndServices",productName:"Alquant Life Sciences Tools and Services",productShortName:"Life Sciences Tools and Services",productColor:c,showLastPrice:!0,allowedRoles:m.concat([o.X.lifeSciencesToolsAndServices]),timelineData:[{color:"primary",icon:"StarIcon",title:"Product inception",desc:"Alquant Life Sciences Tools and Services was issued by UBS and was made available to all investors in Switzerland",time:"16 Jul 2021"}],tabmenuItems:[{url:"/products/lsts/live-analysis",getName:()=>u.R.t("pages.products.analysis.tab.live"),slug:"lsts-live-analysis"},{url:"/products/lsts/historical-analysis",getName:()=>u.R.t("pages.products.analysis.tab.historical"),slug:"lsts-historical-analysis"},{url:"/products/lsts/internal-analysis",getName:()=>u.R.t("pages.products.analysis.tab.internal"),slug:"lsts-internal-analysis",meta:{authorize:m}}],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,componentPath:"alquant/lifeSciencesToolsAndServices/LiveAnalysis.vue",genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.volatility,r.M.drawdowns],perfStats:i.f$,events:n.aZ,getTabmenuText:()=>u.R.t("pages.products.analysis.tab.liveText")},historical:{mode:"historical",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.outperformance,r.M.volatility,r.M.drawdowns,r.M.yearlyCumulativeReturns],perfStats:i.PG,events:n.aZ,getTabmenuText:()=>u.R.t("pages.products.analysis.tab.historicalText")},internal:{mode:"internal",updateFrequency:s.y.daily,componentPath:"alquant/lifeSciencesToolsAndServices/InternalAnalysis.vue",allowLiveComparison:!0,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.outperformance,r.M.volatility,r.M.drawdowns,r.M.cumulativeWeightedReturns,r.M.returnProfile,r.M.beta,r.M.riskAdjustedPerf,r.M.yearlyCumulativeReturns],perfStats:i.PG,events:[n.DU.financialCrisis,n.DU.euroCrisis,n.DU.december2018Crisis,n.DU.covid19Crisis,n.DU.lstsInception]},factsheet:{allowedRoles:m}},b={productId:"ynnovation",storeModule:"ynnovation",productName:"Ynnovation",productColor:c,showLastPrice:!0,allowedRoles:m,tabmenuItems:[{url:"/products/ynnovation/live-analysis",getName:()=>u.R.t("pages.products.analysis.tab.live"),slug:"ynnovation-live-analysis",meta:{authorize:m}},{url:"/products/ynnovation/internal-analysis",getName:()=>u.R.t("pages.products.analysis.tab.internal"),slug:"ynnovation-internal-analysis",meta:{authorize:m}}],live:{mode:"live",updateFrequency:s.y.daily,allowedRoles:m,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.volatility,r.M.drawdowns],perfStats:i.f$,events:n.aZ,getTabmenuText:()=>u.R.t("pages.products.analysis.tab.liveText")},internal:{mode:"internal",updateFrequency:s.y.daily,componentPath:"alquant/ynnovation/InternalAnalysis.vue",allowedRoles:m,allowLiveComparison:!0,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.outperformance,r.M.volatility,r.M.drawdowns,r.M.cumulativeWeightedReturns,r.M.returnProfile,r.M.beta,r.M.riskAdjustedPerf,r.M.yearlyCumulativeReturns],perfStats:i.PG,events:[n.DU.financialCrisis,n.DU.euroCrisis,n.DU.december2018Crisis,n.DU.covid19Crisis,n.DU.ynnovationInception]},factsheet:{allowedRoles:m}},w={productId:"alcrypto",dev:!0,hideWhenAskedInSettings:!0,storeModule:"alcrypto",productName:"Alquant Alcrypto",productShortName:"Alcrypto",productColor:c,showLastPrice:!1,allowedRoles:m,live:{mode:"historical",updateFrequency:s.y.daily,componentPath:"alquant/alcrypto/Analysis.vue",zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.outperformance,r.M.volatility,r.M.drawdowns],perfStats:i.PG,events:[n.DU.december2018Crisis,n.DU.covid19Crisis]}},A={productId:"alvola-with-futures",dev:!0,hideWhenAskedInSettings:!0,storeModule:"alvolaWithFutures",productName:"Alquant Alvola (with futures)",productShortName:"Alvola (with futures)",productColor:c,showLastPrice:!1,allowedRoles:m,live:{mode:"historical",updateFrequency:s.y.daily,zoomButtons:l.w,componentPath:"alquant/alvolaWithFutures/Analysis.vue",genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.volatility,r.M.drawdowns],perfStats:i.PG,events:[n.DU.financialCrisis,n.DU.euroCrisis,n.DU.december2018Crisis,n.DU.covid19Crisis,n.DU.alvolaInception]},useCase:{componentPath:"alquant/alvolaWithFutures/UseCase.vue"}},y={productId:"quant-core",hideWhenAskedInSettings:!0,storeModule:"quantCore",productName:"Alquant Quant Core",productShortName:"Quant Core",productColor:c,showLastPrice:!1,allowedRoles:m,live:{mode:"historical",updateFrequency:s.y.daily,componentPath:"alquant/quantCore/Analysis.vue",zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.outperformance,r.M.volatility,r.M.drawdowns],perfStats:i.f$,events:[n.DU.december2018Crisis,n.DU.covid19Crisis]}},S={productId:"leonteq-alquant-dynamic-us-equity",storeModule:"leonteqAlquantDynamicUsEquity",productName:"AQUS - Leonteq Alquant Dynamic US Equity",productShortName:"AQUS",productColor:c,showLastPrice:!0,langsForDocuments:["en","de","fr"],tabmenuItems:[{url:"/products/leonteq-alquant-dynamic-us-equity/live-analysis",getName:()=>u.R.t("pages.products.analysis.tab.live"),slug:"leonteq-alquant-dynamic-us-equity-live-analysis"},{url:"/products/leonteq-alquant-dynamic-us-equity/historical-analysis",getName:()=>u.R.t("pages.products.analysis.tab.historical"),slug:"leonteq-alquant-dynamic-us-equity-historical-analysis"}],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.volatility,r.M.drawdowns],perfStats:i.f$,events:n.aZ},historical:{mode:"historical",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.outperformance,r.M.volatility,r.M.drawdowns,r.M.yearlyCumulativeReturns],perfStats:i.f$,events:[n.DU.financialCrisis,n.DU.euroCrisis,n.DU.december2018Crisis,n.DU.covid19CrisisForHistoricalProtech],getTabmenuText:()=>u.R.t("pages.products.analysis.tab.historicalText")},factsheet:{allowedRoles:m}},C={productId:"leonteq-alquant-dynamic-tech-equity",storeModule:"leonteqAlquantDynamicTechEquity",productName:"AQUST - Leonteq Alquant Dynamic Tech Equity",productShortName:"AQUST",productColor:c,showLastPrice:!0,langsForDocuments:["en","de","fr"],tabmenuItems:[{url:"/products/leonteq-alquant-dynamic-tech-equity/live-analysis",getName:()=>u.R.t("pages.products.analysis.tab.live"),slug:"leonteq-alquant-dynamic-tech-equity-live-analysis"},{url:"/products/leonteq-alquant-dynamic-tech-equity/historical-analysis",getName:()=>u.R.t("pages.products.analysis.tab.historical"),slug:"leonteq-alquant-dynamic-tech-equity-historical-analysis"}],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.volatility,r.M.drawdowns],perfStats:i.f$,events:n.aZ},historical:{mode:"historical",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.outperformance,r.M.volatility,r.M.drawdowns,r.M.yearlyCumulativeReturns],perfStats:i.f$,events:[n.DU.financialCrisis,n.DU.euroCrisis,n.DU.december2018Crisis,n.DU.covid19CrisisForHistoricalProtech],getTabmenuText:()=>u.R.t("pages.products.analysis.tab.historicalText")},factsheet:{allowedRoles:m}},P={productId:"leonteq-alquant-long-short-us-equity",storeModule:"leonteqAlquantLongShortUsEquity",productName:"AQLS - Leonteq Alquant Long-Short US Equity",productShortName:"AQLS",productColor:c,showLastPrice:!0,langsForDocuments:["en","de","fr"],tabmenuItems:[{url:"/products/leonteq-alquant-long-short-us-equity/live-analysis",getName:()=>u.R.t("pages.products.analysis.tab.live"),slug:"leonteq-alquant-long-short-us-equity-live-analysis"},{url:"/products/leonteq-alquant-long-short-us-equity/historical-analysis",getName:()=>u.R.t("pages.products.analysis.tab.historical"),slug:"leonteq-alquant-long-short-us-equity-historical-analysis"}],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.volatility,r.M.drawdowns],perfStats:i.f$,events:n.aZ},historical:{mode:"historical",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.outperformance,r.M.volatility,r.M.drawdowns,r.M.yearlyCumulativeReturns],perfStats:i.f$,events:[n.DU.financialCrisis,n.DU.euroCrisis,n.DU.december2018Crisis,n.DU.covid19CrisisForHistoricalProtech],getTabmenuText:()=>u.R.t("pages.products.analysis.tab.historicalText")},factsheet:{allowedRoles:m}},k=[S,C,P,p,h,g,f,v,b,w,A,y],I=k.map((e=>e.storeModule))},78026:function(e,t,a){"use strict";a.d(t,{C:function(){return B},d:function(){return L}});var o=a(2543),r=a.n(o),n=a(71642),s=a(32899),i=a(59192),l=a(56800),d=a(33492),u=a(52618),c=a(70735);const m=c.A["colors-primary"],p=[n.X.admin,n.X.superAdmin],h={productId:"small-cap-stocks-drifter",storeModule:"smallCapStocksDrifter",productName:"Small Cap Stocks Drifter",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["en","de"],live:{mode:"live",updateFrequency:l.y.daily,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.outperformance,s.M.drawdowns],perfStats:d.PG,events:i.aZ,defaultLogScale:!0},factsheet:{allowedRoles:p}},g={productId:"pontos-value-strategie",storeModule:"pontosValueStrategie",productName:"Pontos Value Strategie",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["de"],langsForDocuments:["de","en"],live:{mode:"live",updateFrequency:l.y.daily,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns],perfStats:d.f$,events:i.aZ},factsheet:{allowedRoles:p}},f={productId:"demeter-value-strategie",storeModule:"demeterValueStrategie",productName:"Demeter Value Strategie",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["de"],langsForDocuments:["de","en"],live:{mode:"live",updateFrequency:l.y.daily,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns],perfStats:d.f$,events:i.aZ},factsheet:{allowedRoles:p}},v={productId:"gaia-value-strategie",storeModule:"gaiaValueStrategie",productName:"Gaia Value Strategie",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["de"],langsForDocuments:["de","en"],live:{mode:"live",updateFrequency:l.y.daily,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns],perfStats:d.f$,events:i.aZ},factsheet:{allowedRoles:p}},b={productId:"uranos-value-strategie",storeModule:"uranosValueStrategie",productName:"Uranos Value Strategie",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["de"],langsForDocuments:["de","en"],live:{mode:"live",updateFrequency:l.y.daily,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns],perfStats:d.f$,events:i.aZ},factsheet:{allowedRoles:p}},w={productId:"titan-value-strategie",storeModule:"titanValueStrategie",productName:"Titan Value Strategie",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["de"],langsForDocuments:["de","en"],live:{mode:"live",updateFrequency:l.y.daily,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns],perfStats:d.f$,events:i.aZ},factsheet:{allowedRoles:p}},A={productId:"mdotm-equity-europe-certificate",storeModule:"mdotmEquityEuropeCertificate",productName:"MDOTM Eq. Europe Strategy",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["en"],live:{mode:"live",updateFrequency:l.y.daily,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns],perfStats:d.f$,events:i.aZ},factsheet:{allowedRoles:p}},y={productId:"volume-hedge-certificate",storeModule:"volumeHedgeCertificate",productName:"Volume Hedge Certificate",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["en"],live:{mode:"live",updateFrequency:l.y.daily,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns],perfStats:d.f$,events:i.aZ},factsheet:{allowedRoles:p}},S={productId:"hachiko-us-equity",storeModule:"hachikoUsEquity",productName:"Hachiko US Equity",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["en"],live:{mode:"live",updateFrequency:l.y.daily,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns],perfStats:d.f$,events:i.aZ},factsheet:{allowedRoles:p}},C={productId:"micro-strategies",storeModule:"microStrategies",productName:"Micro Strategies",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["en"],live:{mode:"live",updateFrequency:l.y.daily,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns],perfStats:d.f$,events:i.aZ},factsheet:{allowedRoles:p}},P={productId:"alternative-option",storeModule:"alternativeOption",productName:"Alternative Option",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["en"],live:{mode:"live",updateFrequency:l.y.other,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns],perfStats:d.f$,events:i.aZ},factsheet:{allowedRoles:p}},k={productId:"tiger-value-strategy",storeModule:"tigerValueStrategy",productName:"Tiger Value Strategy 1.5 AMC",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["en"],langsForDocuments:["en","de"],live:{mode:"live",updateFrequency:l.y.daily,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns],perfStats:d.f$,events:i.aZ},factsheet:{allowedRoles:p}},I={productId:"value-holdings-dividenden-fund",storeModule:"valueHoldingsDividendenFund",productName:"Value-Holdings Dividenden Fund",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["en"],live:{mode:"live",updateFrequency:l.y.daily,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns],perfStats:d.f$,events:i.aZ},factsheet:{allowedRoles:p}},D={productId:"tl-nachhaltigkeitsfonds-brascri",storeModule:"tlNachhaltigkeitsfondsBrascri",productName:"TL Nachhaltigkeitsfonds BRASCRI",productShortName:"TL Nachhaltigkeitsfonds",productColor:m,productShareClassRoot:"tl-nachhaltigkeitsfonds",isDefaultShareClass:!0,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["en"],live:{mode:"live",updateFrequency:l.y.weekly,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns,s.M.volatility],perfStats:d.f$,events:i.aZ},factsheet:{}},E=r().cloneDeep(D);E.productId="tl-nachhaltigkeitsfonds-hilfswerke",E.storeModule="tlNachhaltigkeitsfondsHilfswerke",E.productName="TL Nachhaltigkeitsfonds HILFSWERKE",E.isDefaultShareClass=!1;const R={productId:"pi-global-value-fund-eur-p",storeModule:"piGlobalValueFundEurP",productName:"PI Global Value Fund EUR P",productShortName:"PI Global Value Fund",productColor:m,productShareClassRoot:"pi-global-value-fund",isDefaultShareClass:!0,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["en"],live:{mode:"live",updateFrequency:l.y.daily,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns,s.M.volatility],perfStats:d.f$,events:i.aZ},factsheet:{}},T=r().cloneDeep(R);T.productId="pi-global-value-fund-eur-i",T.storeModule="piGlobalValueFundEurI",T.productName="PI Global Value Fund EUR I",T.isDefaultShareClass=!1;const M=r().cloneDeep(R);M.productId="pi-global-value-fund-chf-p",M.storeModule="piGlobalValueFundChfP",M.productName="PI Global Value Fund CHF P",M.isDefaultShareClass=!1;const q=r().cloneDeep(R);q.productId="pi-global-value-fund-chf-i",q.storeModule="piGlobalValueFundChfI",q.productName="PI Global Value Fund CHF I",q.isDefaultShareClass=!1;const x={productId:"unconstrained-income-opportunities",storeModule:"unconstrainedIncomeOpportunities",productName:"Unconstrained Income Opportunities",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["en"],live:{mode:"live",updateFrequency:l.y.weekly,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns],perfStats:d.f$,events:i.aZ},factsheet:{allowedRoles:p}},z={productId:"sp-world-equities",storeModule:"spWorldEquities",productName:"SP Equity World LV",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["en"],live:{mode:"live",updateFrequency:l.y.daily,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns],perfStats:d.f$,events:i.aZ},factsheet:{allowedRoles:p}},F={productId:"l-short-term-trading-usa-amc",storeModule:"lShortTermTradingUsaAmc",productName:"L Short Term Trading USA AMC",productColor:m,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,availableLanguages:["en"],live:{mode:"live",updateFrequency:l.y.other,zoomButtons:u.w,genericCardsToShow:[s.M.cumulativeReturns,s.M.performanceStats,s.M.drawdowns],perfStats:d.f$,events:i.aZ},factsheet:{allowedRoles:p}},B=[h,g,f,v,b,w,A,y,S,C,P,k,I,D,E,R,T,M,q,x,z,F],L=B.map((e=>e.storeModule))},93804:function(e,t,a){"use strict";a.d(t,{b:function(){return C},m:function(){return S}});var o=a(2543),r=a.n(o),n=a(32899),s=a(59192),i=a(56800),l=a(33492),d=a(52618),u=a(70735);const c=u.A["colors-primary"],m=[l.$d.cumulativeReturn,l.$d.annualizedReturn,l.$d.annualizedVolatility,l.$d.maximumDrawdown,l.$d.sharpeRatio,l.$d.skewness,l.$d.beta,l.$d.trackingError,l.$d.correlation],p={productId:"bcf-funds-equity-switzerland-a",storeModule:"bcfFundsEquitySwitzerlandA",productName:"Equity Switzerland A",productShortName:"Equity Switzerland",productColor:c,productShareClassRoot:"bcf-funds-equity-switzerland",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.outperformance,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:m,events:s.aZ},factsheet:{needLoginToSee:!1}},h=r().cloneDeep(p);h.productId="bcf-funds-equity-switzerland-i",h.storeModule="bcfFundsEquitySwitzerlandI",h.productName="Equity Switzerland I",h.isDefaultShareClass=!1;const g=r().cloneDeep(p);g.productId="bcf-funds-equity-switzerland-m",g.storeModule="bcfFundsEquitySwitzerlandM",g.productName="Equity Switzerland M",g.isDefaultShareClass=!1;const f={productId:"bcf-funds-active-balanced-ap",storeModule:"bcfFundsActiveBalancedAp",productName:"Active Balanced AP",productShortName:"Active Balanced",productColor:c,productShareClassRoot:"bcf-funds-active-balanced",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:i.y.weekly,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.outperformance,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:l.f$,events:s.aZ},factsheet:{needLoginToSee:!1}},v=r().cloneDeep(f);v.productId="bcf-funds-active-balanced-a",v.storeModule="bcfFundsActiveBalancedA",v.productName="Active Balanced A",v.isDefaultShareClass=!1;const b={productId:"bcf-funds-active-dynamic-ap",storeModule:"bcfFundsActiveDynamicAp",productName:"Active Dynamic AP",productShortName:"Active Dynamic",productColor:c,productShareClassRoot:"bcf-funds-active-dynamic",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:i.y.weekly,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.outperformance,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:l.f$,events:s.aZ},factsheet:{needLoginToSee:!1}},w=r().cloneDeep(b);w.productId="bcf-funds-active-dynamic-a",w.storeModule="bcfFundsActiveDynamicA",w.productName="Active Dynamic A",w.isDefaultShareClass=!1;const A={productId:"bcf-funds-active-yield-ap",storeModule:"bcfFundsActiveYieldAp",productName:"Active Yield AP",productShortName:"Active Yield",productColor:c,productShareClassRoot:"bcf-funds-active-yield",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:i.y.weekly,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.outperformance,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:l.f$,events:s.aZ},factsheet:{needLoginToSee:!1}},y=r().cloneDeep(A);y.productId="bcf-funds-active-yield-a",y.storeModule="bcfFundsActiveYieldA",y.productName="Active Yield A",y.isDefaultShareClass=!1;const S=[p,h,g,f,v,b,w,A,y],C=S.map((e=>e.storeModule))},77864:function(e,t,a){"use strict";a.d(t,{J:function(){return b},w:function(){return v}});var o=a(2543),r=a(32899),n=a(59192),s=a(56800),i=a(33492),l=a(52618),d=a(70735);const u=d.A["colors-primary"],c={productId:"fonds-bcj-defensif-aa",storeModule:"fondsBcjDefensifAa",productName:"Fonds BCJ Défensif AA",productShortName:"Fonds BCJ Défensif",productColor:u,productShareClassRoot:"fonds-bcj-defensif",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{needLoginToSee:!1}},m=(0,o.cloneDeep)(c);m.productId="fonds-bcj-defensif-at",m.storeModule="fondsBcjDefensifAt",m.productName="Fonds BCJ Défensif AT",m.isDefaultShareClass=!1;const p=(0,o.cloneDeep)(c);p.productId="fonds-bcj-defensif-p",p.storeModule="fondsBcjDefensifP",p.productName="Fonds BCJ Défensif P",p.isDefaultShareClass=!1;const h={productId:"fonds-bcj-balance-aa",storeModule:"fondsBcjBalanceAa",productName:"Fonds BCJ Balancé AA",productShortName:"Fonds BCJ Balancé",productColor:u,productShareClassRoot:"fonds-bcj-balance",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{needLoginToSee:!1}},g=(0,o.cloneDeep)(h);g.productId="fonds-bcj-balance-at",g.storeModule="fondsBcjBalanceAt",g.productName="Fonds BCJ Balancé AT",g.isDefaultShareClass=!1;const f=(0,o.cloneDeep)(h);f.productId="fonds-bcj-balance-p",f.storeModule="fondsBcjBalanceP",f.productName="Fonds BCJ Balancé P",f.isDefaultShareClass=!1;const v=[c,m,p,h,g,f],b=v.map((e=>e.storeModule))},69403:function(e,t,a){"use strict";a.d(t,{S:function(){return I},X:function(){return k}});var o=a(2543),r=a(71642),n=a(32899),s=a(59192),i=a(56800),l=a(33492),d=a(52618),u=a(70735);const c=u.A["colors-primary"],m=[r.X.admin,r.X.superAdmin,r.X.viewer],p={productId:"bi-global-s-usd-acc",storeModule:"biGlobalSUsdAcc",productName:"B&I Global S (USD Accumulating)",productShortName:"B&I Global",productColor:c,productShareClassRoot:"bi-global",isDefaultShareClass:!0,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,langsForDocuments:["en","de"],live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:l.f$,events:s.aZ},factsheet:{needLoginToSee:!1}},h=(0,o.cloneDeep)(p);h.productId="bi-global-b-usd-dis",h.storeModule="biGlobalBUsdDis",h.productName="B&I Global B (USD Distributing)",h.isDefaultShareClass=!1;const g=(0,o.cloneDeep)(p);g.productId="bi-global-c-chf-h-acc",g.storeModule="biGlobalCChfHAcc",g.productName="B&I Global C (CHF-hedged Accumulating)",g.isDefaultShareClass=!1;const f=(0,o.cloneDeep)(p);f.productId="bi-global-e-eur-h-acc",f.storeModule="biGlobalEEurHAcc",f.productName="B&I Global E (EUR-hedged Accumulating)",f.isDefaultShareClass=!1;const v=(0,o.cloneDeep)(p);v.productId="bi-global-g-gbp-h-dis",v.storeModule="biGlobalGGBPHDis",v.productName="B&I Global G (GBP-hedged Distributing)",v.isDefaultShareClass=!1;const b={productId:"bi-asian-a-usd-acc",storeModule:"biAsianAUsdAcc",productName:"B&I Asian A (USD Accumulating)",productShortName:"B&I Asian",productColor:c,productShareClassRoot:"bi-asian",isDefaultShareClass:!0,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,langsForDocuments:["en","de"],live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:l.f$,events:s.aZ},factsheet:{needLoginToSee:!1}},w=(0,o.cloneDeep)(b);w.productId="bi-asian-b-usd-dis",w.storeModule="biAsianBUsdDis",w.productName="B&I Asian B (USD Distributing)",w.isDefaultShareClass=!1;const A=(0,o.cloneDeep)(b);A.productId="bi-asian-c-eur-h-acc",A.storeModule="biAsianCEurHAcc",A.productName="B&I Asian C (EUR-hedged Accumulating)",A.isDefaultShareClass=!1;const y=(0,o.cloneDeep)(b);y.productId="bi-asian-d-chf-h-acc",y.storeModule="biAsianDChfHAcc",y.productName="B&I Asian (CHF-hedged Accumulating)",y.isDefaultShareClass=!1;const S={productId:"bayvk-reits-1-asia",storeModule:"bayvkReits1Asia",productName:"BAYVK REITS 1 Asia",productColor:c,isDefaultShareClass:!0,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,allowedRoles:m,langsForDocuments:["en","de"],live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:l.f$,events:s.aZ},factsheet:{}},C={productId:"kzvk-reit-asien-1",storeModule:"kzvkReitAsien1",productName:"KZVK REIT Asien 1",productColor:c,isDefaultShareClass:!0,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,allowedRoles:m,langsForDocuments:["en","de"],live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:l.f$,events:s.aZ},factsheet:{}},P={productId:"kzvk-reit-nordamerika-1",storeModule:"kzvkReitNordamerika1",productName:"KZVK REIT Nordamerika 1",productColor:c,isDefaultShareClass:!0,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,allowedRoles:m,langsForDocuments:["en","de"],live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:l.f$,events:s.aZ},factsheet:{}},k=[p,h,g,f,v,b,w,A,y,S,C,P],I=k.map((e=>e.storeModule))},91366:function(e,t,a){"use strict";a.d(t,{J:function(){return B},K:function(){return F}});var o=a(2543),r=a(32899),n=a(59192),s=a(56800),i=a(33492),l=a(52618),d=a(70735);const u=d.A["colors-primary"],c={productId:"global-bonds-ia",storeModule:"globalBondsIa",productName:"Bonhôte Selection - Global Bonds ESG IA",productShortName:"Bonhôte Selection - Global Bonds ESG",productColor:u,productShareClassRoot:"global-bonds",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{needLoginToSee:!1}},m=(0,o.cloneDeep)(c);m.productId="global-bonds-id",m.storeModule="globalBondsId",m.productName="Bonhôte Selection - Global Bonds ESG ID",m.isDefaultShareClass=!1;const p=(0,o.cloneDeep)(c);p.productId="global-bonds-uhid",p.storeModule="globalBondsUhid",p.productName="Bonhôte Selection - Global Bonds ESG UHID",p.isDefaultShareClass=!1;const h={productId:"global-emerging",storeModule:"globalEmerging",productName:"Bonhôte Selection - Global Emerging Multi-Fonds (CHF)",productColor:u,isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{needLoginToSee:!1}},g={productId:"megatrend-i",storeModule:"megatrendI",productName:"Bonhôte Strategies - Megatrend Equity ESG I",productShortName:"Bonhôte Strategies - Megatrend Equity ESG",productColor:u,productShareClassRoot:"Megatrend Equity ESG",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{needLoginToSee:!1}},f=(0,o.cloneDeep)(g);f.productId="megatrend-ih",f.storeModule="megatrendIh",f.productName="Bonhôte Strategies - Megatrend Equity ESG IH",f.isDefaultShareClass=!1;const v=(0,o.cloneDeep)(g);v.productId="megatrend-iuh",v.storeModule="megatrendIuh",v.productName="Bonhôte Strategies - Megatrend Equity ESG IUH",v.isDefaultShareClass=!1;const b={productId:"balanced",storeModule:"balanced",productName:"Bonhôte Strategies - Balanced (CHF)",productColor:u,isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{needLoginToSee:!1}},w={productId:"impact-a",storeModule:"impactA",productName:"Convergence Lux – Bonhôte Impact Fund A-CHF",productShortName:"Convergence Lux – Bonhôte Impact Fund",productColor:u,productShareClassRoot:"impact",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{needLoginToSee:!1}},A=(0,o.cloneDeep)(w);A.productId="impact-i-chf",A.storeModule="impactIChf",A.productName="Convergence Lux – Bonhôte Impact Fund I-CHF",A.isDefaultShareClass=!1;const y=(0,o.cloneDeep)(w);y.productId="impact-i-eur",y.storeModule="impactIEur",y.productName="Convergence Lux – Bonhôte Impact Fund I-EUR",y.isDefaultShareClass=!1;const S={productId:"strategic-credit-chf",storeModule:"strategicCredit",productName:"Convergence Capital – Strategic Credit CHF",productShortName:"Convergence Capital – Strategic Credit",productColor:u,productShareClassRoot:"strategic-credit",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{needLoginToSee:!1}},C=(0,o.cloneDeep)(S);C.productId="strategic-credit-usd",C.storeModule="strategicCreditUsd",C.productName="Convergence Capital – Strategic Credit USD",C.isDefaultShareClass=!1;const P=(0,o.cloneDeep)(S);P.productId="strategic-credit-eur",P.storeModule="strategicCreditEur",P.productName="Convergence Capital – Strategic Credit EUR",P.isDefaultShareClass=!1;const k={productId:"bim",storeModule:"bim",productName:"Bonhôte-Immobilier SICAV - BIM",productColor:u,isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{needLoginToSee:!1}},I={productId:"alternative-chf",storeModule:"alternativeChf",productName:"Bonhôte Alternative Multi-Performance (CHF)",productShortName:"Bonhôte Alternative Multi-Performance",productColor:u,productShareClassRoot:"alternative",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{needLoginToSee:!1}},D=(0,o.cloneDeep)(I);D.productId="alternative-eur",D.storeModule="alternativeEur",D.productName="Bonhôte Alternative Multi-Performance (EUR)",D.isDefaultShareClass=!1;const E=(0,o.cloneDeep)(I);E.productId="alternative-usd",E.storeModule="alternativeUsd",E.productName="Bonhôte Alternative Multi-Performance (USD)",E.isDefaultShareClass=!1;const R={productId:"zo-china-a-chf",storeModule:"zoChinaAChf",productName:"Convergence Lux – ZO China Value Fund A-CHF",productShortName:"Convergence Lux – ZO China Value Fund",productColor:u,productShareClassRoot:"zo-china",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{needLoginToSee:!1}},T=(0,o.cloneDeep)(R);T.productId="zo-china-a-eur",T.storeModule="zoChinaAEur",T.productName="Convergence Lux – ZO China Value Fund A-EUR",T.isDefaultShareClass=!1;const M=(0,o.cloneDeep)(R);M.productId="zo-china-a-usd",M.storeModule="zoChinaAUsd",M.productName="Convergence Lux – ZO China Value Fund A-USD",M.isDefaultShareClass=!1;const q=(0,o.cloneDeep)(R);q.productId="zo-china-i-chf",q.storeModule="zoChinaIChf",q.productName="Convergence Lux – ZO China Value Fund I-CHF",q.isDefaultShareClass=!1;const x=(0,o.cloneDeep)(R);x.productId="zo-china-i-eur",x.storeModule="zoChinaIEur",x.productName="Convergence Lux – ZO China Value Fund I-EUR",x.isDefaultShareClass=!1;const z=(0,o.cloneDeep)(R);z.productId="zo-china-i-usd",z.storeModule="zoChinaIUsd",z.productName="Convergence Lux – ZO China Value Fund I-USD",z.isDefaultShareClass=!1;const F=[c,m,p,h,g,f,v,b,w,A,y,S,C,P,k,I,D,E,R,T,M,q,x,z],B=F.map((e=>e.storeModule))},99942:function(e,t,a){"use strict";a.d(t,{A:function(){return g},F:function(){return f}});var o=a(32899),r=a(59192),n=a(56800),s=a(33492),i=a(52618),l=a(70735);const d=l.A["colors-primary"],u=[s.$d.cumulativeReturn,s.$d.annualizedReturn,s.$d.annualizedVolatility,s.$d.maximumDrawdown,s.$d.returnToVolatilityRatio,s.$d.alpha,s.$d.beta,s.$d.sharpeRatio,s.$d.treynorRatio,s.$d.calmarRatio,s.$d.sortinoRatio,s.$d.m2RiskAdjustedPerfMonthly,s.$d.valueAtRiskOnePercentOneMonth,s.$d.skewness,s.$d.kurtosis],c={productId:"niwa-fund-usd",storeModule:"niwaFundUsd",productName:"NIWA Fund USD",productShortName:"NIWA Fund USD",productColor:d,productShareClassRoot:"niwa-fund-usd",isDefaultShareClass:!0,showLastPrice:!0,showNextSubscriptionAndRedemption:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,langsForDocuments:["en","de"],live:{mode:"live",updateFrequency:n.y.other,zoomButtons:i.w,genericCardsToShow:[o.M.cumulativeReturns,o.M.performanceStats,o.M.drawdowns],perfStats:u,events:r.Ef},factsheet:{}},m={productId:"niwa-fund-backtesting-usd",storeModule:"niwaFundBacktestingUsd",productName:"NIWA Fund Backtesting USD",productShortName:"NIWA Fund USD",productColor:d,productShareClassRoot:"niwa-fund-usd",showLastPrice:!0,showNextSubscriptionAndRedemption:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,live:{mode:"live",updateFrequency:n.y.other,zoomButtons:i.w,genericCardsToShow:[o.M.cumulativeReturns,o.M.performanceStats,o.M.drawdowns],perfStats:u,events:r.Ef},factsheet:{}},p={productId:"niwa-fund-chf-h",storeModule:"niwaFundChfH",productName:"NIWA Fund CHF (h)",productColor:d,showLastPrice:!0,showNextSubscriptionAndRedemption:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,langsForDocuments:["en","de"],live:{mode:"live",updateFrequency:n.y.other,zoomButtons:i.w,genericCardsToShow:[o.M.cumulativeReturns,o.M.performanceStats,o.M.drawdowns],perfStats:u,events:r.Ef},factsheet:{}},h={productId:"niwa-fund-gbp-h",storeModule:"niwaFundGbpH",productName:"NIWA Fund GBP (h)",productColor:d,showLastPrice:!0,showNextSubscriptionAndRedemption:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,langsForDocuments:["en","de"],live:{mode:"live",updateFrequency:n.y.other,zoomButtons:i.w,genericCardsToShow:[o.M.cumulativeReturns,o.M.performanceStats,o.M.drawdowns],perfStats:u,events:r.Ef},factsheet:{}},g=[c,m,p,h],f=g.map((e=>e.storeModule))},34981:function(e,t,a){"use strict";a.d(t,{N:function(){return w},c:function(){return A}});var o=a(2543),r=a(32899),n=a(59192),s=a(56800),i=a(33492),l=a(52618),d=a(70735);const u=d.A["colors-primary"],c=[i.$d.cumulativeReturn,i.$d.annualizedReturn,i.$d.annualizedVolatility,i.$d.maximumDrawdown,i.$d.sharpeRatio,i.$d.sortinoRatio,i.$d.alpha,i.$d.beta,i.$d.informationRatio,i.$d.trackingError,i.$d.ratioOfPositiveMonthlyReturns,i.$d.ratioOfNegativeMonthlyReturns],m={productId:"cite-gestion-tech-care-fund-ra-usd",storeModule:"citeGestionTechCareFundRaUsd",productName:"Cité Gestion Tech Care Fund RA USD",productShortName:"Cité Gestion Tech Care Fund",productColor:u,productShareClassRoot:"cite-gestion-tech-care-fund",isDefaultShareClass:!0,showLastPrice:!0,oldDataEndDate:"2023-11-20",live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},p=(0,o.cloneDeep)(m);p.productId="cite-gestion-tech-care-fund-ia-usd",p.storeModule="citeGestionTechCareFundIaUsd",p.productName="Cité Gestion Tech Care Fund IA USD",p.isDefaultShareClass=!1;const h=(0,o.cloneDeep)(m);h.productId="cite-gestion-tech-care-fund-rb-eur",h.storeModule="citeGestionTechCareFundRbEur",h.productName="Cité Gestion Tech Care Fund RB EUR",h.isDefaultShareClass=!1;const g=(0,o.cloneDeep)(m);g.productId="cite-gestion-tech-care-fund-rc-chf",g.storeModule="citeGestionTechCareFundRcChf",g.productName="Cité Gestion Tech Care Fund RC CHF",g.isDefaultShareClass=!1;const f=(0,o.cloneDeep)(m);f.productId="cite-gestion-tech-care-fund-sa-usd",f.storeModule="citeGestionTechCareFundSaUsd",f.productName="Cité Gestion Tech Care Fund SA USD",f.isDefaultShareClass=!1;const v=(0,o.cloneDeep)(m);v.productId="cite-gestion-tech-care-fund-sb-eur",v.storeModule="citeGestionTechCareFundSbEur",v.productName="Cité Gestion Tech Care Fund SB EUR",v.isDefaultShareClass=!1;const b=(0,o.cloneDeep)(m);b.productId="cite-gestion-tech-care-fund-sc-chf",b.storeModule="citeGestionTechCareFundScChf",b.productName="Cité Gestion Tech Care Fund SC CHF",b.isDefaultShareClass=!1;const w=[m,p,h,g,f,v,b],A=w.map((e=>e.storeModule))},33801:function(e,t,a){"use strict";a.d(t,{k:function(){return b},l:function(){return v}});var o=a(2543),r=a.n(o),n=a(32899),s=a(59192),i=a(56800),l=a(33492),d=a(52618),u=a(70735);const c=u.A["colors-primary"],m={productId:"chameleon-sustainable-global-convertible-bond-fund-chf-i",storeModule:"chameleonSustainableGlobalConvertibleBondFundChfI",productName:"Sustainable Global Convertible Bond Fund CHF I",productShortName:"Sustainable Global Convertible Bond Fund",productColor:c,productShareClassRoot:"chameleon-sustainable-global-convertible-bond-fund",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.outperformance,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:l.f$,events:s.aZ},factsheet:{needLoginToSee:!1}},p=r().cloneDeep(m);p.productId="chameleon-sustainable-global-convertible-bond-fund-chf-i2",p.storeModule="chameleonSustainableGlobalConvertibleBondFundChfI2",p.productName="Sustainable Global Convertible Bond Fund CHF I2",p.isDefaultShareClass=!1;const h=r().cloneDeep(m);h.productId="chameleon-sustainable-global-convertible-bond-fund-chf-p",h.storeModule="chameleonSustainableGlobalConvertibleBondFundChfP",h.productName="Sustainable Global Convertible Bond Fund CHF P",h.isDefaultShareClass=!1;const g=r().cloneDeep(m);g.productId="chameleon-sustainable-global-convertible-bond-fund-eur-i",g.storeModule="chameleonSustainableGlobalConvertibleBondFundEurI",g.productName="Sustainable Global Convertible Bond Fund EUR I",g.isDefaultShareClass=!1;const f=r().cloneDeep(m);f.productId="chameleon-sustainable-global-convertible-bond-fund-eur-p",f.storeModule="chameleonSustainableGlobalConvertibleBondFundEurP",f.productName="Sustainable Global Convertible Bond Fund EUR P",f.isDefaultShareClass=!1;const v=[m,p,h,g,f],b=v.map((e=>e.storeModule))},38478:function(e,t,a){"use strict";a.d(t,{C:function(){return I},r:function(){return D}});var o=a(2543),r=a(71642),n=a(32899),s=a(59192),i=a(56800),l=a(33492),d=a(52618),u=a(70735);const c=u.A["colors-primary"],m=[r.X.admin,r.X.superAdmin],p=[l.$d.cumulativeReturn,l.$d.annualizedReturn,l.$d.annualizedVolatility,l.$d.maximumDrawdown,l.$d.sharpeRatio],h={productId:"cite-gestion-chf-dynamic-strategy",storeModule:"citeGestionChfDynamicStrategy",productName:"Cité Gestion CHF Dynamic Strategy",productColor:c,showLastPrice:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:p,events:s.aZ},factsheet:{allowedRoles:m}},g={productId:"cite-gestion-usd-dynamic-strategy",storeModule:"citeGestionUsdDynamicStrategy",productName:"Cité Gestion USD Dynamic Strategy",productColor:c,showLastPrice:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:p,events:s.aZ},factsheet:{allowedRoles:m}},f={productId:"cite-gestion-eur-dynamic-strategy",storeModule:"citeGestionEurDynamicStrategy",productName:"Cité Gestion EUR Dynamic Strategy",productColor:c,showLastPrice:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:p,events:s.aZ},factsheet:{allowedRoles:m}},v={productId:"cite-gestion-chf-bal-model-portfolio",storeModule:"citeGestionChfBalModelPortfolio",productName:"CHF Balanced ETF Model Portfolio",productColor:c,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:p,events:s.aZ},factsheet:{allowedRoles:m}},b=(0,o.cloneDeep)(v);b.productId="cite-gestion-chf-cons-model-portfolio",b.storeModule="citeGestionChfConsModelPortfolio",b.productName="CHF Conservative ETF Model Portfolio";const w=(0,o.cloneDeep)(v);w.productId="cite-gestion-chf-gro-model-portfolio",w.storeModule="citeGestionChfGroModelPortfolio",w.productName="CHF Growth ETF Model Portfolio";const A={productId:"cite-gestion-eur-bal-model-portfolio",storeModule:"citeGestionEurBalModelPortfolio",productName:"EUR Balanced ETF Model Portfolio",productColor:c,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:p,events:s.aZ},factsheet:{allowedRoles:m}},y=(0,o.cloneDeep)(A);y.productId="cite-gestion-eur-cons-model-portfolio",y.storeModule="citeGestionEurConsModelPortfolio",y.productName="EUR Conservative ETF Model Portfolio";const S=(0,o.cloneDeep)(A);S.productId="cite-gestion-eur-gro-model-portfolio",S.storeModule="citeGestionEurGroModelPortfolio",S.productName="EUR Growth ETF Model Portfolio";const C={productId:"cite-gestion-usd-bal-model-portfolio",storeModule:"citeGestionUsdBalModelPortfolio",productName:"USD Balanced ETF Model Portfolio",productColor:c,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:p,events:s.aZ},factsheet:{allowedRoles:m}},P=(0,o.cloneDeep)(C);P.productId="cite-gestion-usd-cons-model-portfolio",P.storeModule="citeGestionUsdConsModelPortfolio",P.productName="USD Conservative ETF Model Portfolio";const k=(0,o.cloneDeep)(C);k.productId="cite-gestion-usd-gro-model-portfolio",k.storeModule="citeGestionUsdGroModelPortfolio",k.productName="USD Growth ETF Model Portfolio";const I=[h,g,f,v,b,w,A,y,S,C,P,k],D=I.map((e=>e.storeModule))},45429:function(e,t,a){"use strict";a.d(t,{C:function(){return f},d:function(){return g}});var o=a(71642),r=a(32899),n=a(59192),s=a(56800),i=a(33492),l=a(52618),d=a(70735);const u=d.A["colors-primary"],c=[o.X.admin,o.X.superAdmin],m={productId:"cronos-immo-fund",storeModule:"cronosImmoFund",productName:"Cronos Immo Fund",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},p={productId:"cronos-active-allocation-fund-i",storeModule:"cronosActiveAllocationFundI",productName:"Cronos Active Allocation Fund I",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},h={productId:"cronos-active-allocation-fund-euro",storeModule:"cronosActiveAllocationFundEuro",productName:"Cronos Active Allocation Fund Euro",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},g=[m,p,h],f=g.map((e=>e.storeModule))},66816:function(e,t,a){"use strict";a.d(t,{P:function(){return D},Q:function(){return I}});var o=a(2543),r=a.n(o),n=a(32899),s=a(59192),i=a(56800),l=a(33492),d=a(52618),u=a(70735);const c=u.A["colors-primary"],m={productId:"singularity-fund-usd",storeModule:"singularityFundUsd",productName:"The Singularity Fund (USD)",productShortName:"The Singularity Fund",productColor:c,productShareClassRoot:"singularity-fund",isDefaultShareClass:!0,oldDataEndDate:"2020-05-15",showLastPrice:!0,timelineData:[{color:"primary",icon:"StarIcon",title:"Product inception",desc:"Alvola was issued as an SPV in collaboration with ISP Group and was made available to all qualified investors in Switzerland",time:"02 Jun 2021"},{color:"grey",icon:"PlusIcon",title:"Long volatility leg adjustment",desc:"After intensive research, we have slightly adjusted the exposure management of the long volatility leg to further reduce the maximum drawdown of the strategy",time:"15 Dec 2021"}],live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.outperformance,n.M.performanceStats,n.M.drawdowns,n.M.volatility,n.M.beta,n.M.riskAdjustedPerf],perfStats:l.PG,events:s.aZ},factsheet:{}},p=r().cloneDeep(m);p.productId="singularity-fund-eur",p.storeModule="singularityFundEur",p.productName="The Singularity Fund (EUR)",p.isDefaultShareClass=!1;const h={productId:"volatility-fund",storeModule:"volatilityFund",productName:"Volatility Fund",productColor:c,showLastPrice:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:l.f$,events:s.aZ},factsheet:{}},g={productId:"real-estate-fund",storeModule:"realEstateFund",productName:"Real Estate Fund",productColor:c,showLastPrice:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:l.f$,events:s.aZ},factsheet:{}},f={productId:"non-traded-product",storeModule:"nonTradedProduct",productName:"Non-Traded Product",productColor:c,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,live:{mode:"live",updateFrequency:i.y.other,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:l.f$,events:s.aZ},factsheet:{}},v={productId:"opi-bsp-fonds",storeModule:"opiBspFonds",productName:"OPI Bsp Fonds",productColor:c,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,availableLanguages:["en"],live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:l.f$,events:s.aZ},factsheet:{}},b={productId:"alpinum-credit-fund-a-usd",storeModule:"alpinumCreditFundAUsd",productName:"Alpinum Credit",productColor:c,showLastPrice:!0,availableLanguages:["en"],live:{mode:"live",updateFrequency:i.y.other,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.outperformance,n.M.drawdowns,n.M.volatility],perfStats:l.PG,events:s.aZ},factsheet:{}},w={productId:"alpinum-equity-focus-fund-a-usd",storeModule:"alpinumEquityFocusFundAUsd",productName:"Alpinum Equity Focus",productColor:c,showLastPrice:!0,availableLanguages:["en"],live:{mode:"live",updateFrequency:i.y.other,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:l.PG,events:s.aZ},factsheet:{}},A={productId:"alpinum-equity-dynamic-fund-a-usd",storeModule:"alpinumEquityDynamicFundAUsd",productName:"Alpinum Equity Dynamic",productColor:c,showLastPrice:!0,availableLanguages:["en"],live:{mode:"live",updateFrequency:i.y.other,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns,n.M.volatility],perfStats:l.f$,events:s.aZ},factsheet:{}},y={productId:"test-fund-1",storeModule:"testFund1",productName:"Test Fund 1",productColor:c,showLastPrice:!0,allowPriceDataModification:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.outperformance,n.M.performanceStats,n.M.drawdowns,n.M.volatility,n.M.beta,n.M.riskAdjustedPerf],perfStats:l.PG,events:s.aZ},factsheet:{}},S={productId:"test-fund-2-share-class-1",storeModule:"testFund2ShareClass1",productName:"Test Fund 2 Share Class 1",productShortName:"Test Fund 2",productColor:c,productShareClassRoot:"test-fund-2",isDefaultShareClass:!0,showLastPrice:!0,allowPriceDataModification:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.outperformance,n.M.performanceStats,n.M.drawdowns,n.M.volatility,n.M.beta,n.M.riskAdjustedPerf],perfStats:l.PG,events:s.aZ},factsheet:{}},C=r().cloneDeep(S);C.productId="test-fund-2-share-class-2",C.storeModule="testFund2ShareClass2",C.productName="Test Fund 2 Share Class 2",C.isDefaultShareClass=!1;const P={productId:"test-fund-3-share-class-1",storeModule:"testFund3ShareClass1",productName:"Test Fund 3 Share Class 1",productShortName:"Test Fund 3",productColor:c,productShareClassRoot:"test-fund-3",isDefaultShareClass:!0,showLastPrice:!0,allowPriceDataModification:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.outperformance,n.M.performanceStats,n.M.drawdowns,n.M.volatility,n.M.beta,n.M.riskAdjustedPerf],perfStats:l.PG,events:s.aZ},factsheet:{}},k=r().cloneDeep(P);k.productId="test-fund-3-share-class-2",k.storeModule="testFund3ShareClass2",k.productName="Test Fund 3 Share Class 2",k.isDefaultShareClass=!1;const I=[m,p,h,g,f,v,b,w,A,y,S,C,P,k],D=I.map((e=>e.storeModule))},94142:function(e,t,a){"use strict";a.d(t,{D:function(){return C},y:function(){return S}});var o=a(71642),r=a(32899),n=a(59192),s=a(56800),i=a(33492),l=a(52618),d=a(70735);const u=d.A["colors-primary"],c=[o.X.admin,o.X.superAdmin],m={productId:"equinox-aktien-euroland",storeModule:"equinoxAktienEuroland",productName:"EQUINOX Aktien Euroland",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},p={productId:"equinox-aktien-welt-chf",storeModule:"equinoxAktienWeltChf",productName:"EQUINOX Aktien Welt CHF",productShortName:"EQUINOX Aktien Welt",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},h={productId:"equinox-aktien-schweiz-chf-i",storeModule:"equinoxAktienSchweizChfI",productName:"EQUINOX Aktien Schweiz CHF I",productShortName:"EQUINOX Aktien Schweiz",productColor:u,productShareClassRoot:"equinox-aktien-schweiz",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},g={productId:"equinox-aktien-schweiz-chf-r",storeModule:"equinoxAktienSchweizChfR",productName:"EQUINOX Aktien Schweiz CHF R",productShortName:"EQUINOX Aktien Schweiz",productColor:u,productShareClassRoot:"equinox-aktien-schweiz",showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},f={productId:"equinox-mixed-chf-i-bvg",storeModule:"equinoxMixedChfIBvg",productName:"EQUINOX Mixed CHF I BVG",productShortName:"EQUINOX Mixed",productColor:u,productShareClassRoot:"equinox-mixed",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},v={productId:"equinox-mixed-chf-h",storeModule:"equinoxMixedChfH",productName:"EQUINOX Mixed CHF h",productShortName:"EQUINOX Mixed",productColor:u,productShareClassRoot:"equinox-mixed",showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},b={productId:"equinox-mixed-chf-i-h",storeModule:"equinoxMixedChfIH",productName:"EQUINOX Mixed CHF I h",productShortName:"EQUINOX Mixed",productColor:u,productShareClassRoot:"equinox-mixed",showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},w={productId:"equinox-aktien-schweiz-flex-chf-i",storeModule:"equinoxAktienSchweizFlexChfI",productName:"EQUINOX Aktien Schweiz Flex CHF I",productShortName:"EQUINOX Aktien Schweiz Flex",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},A={productId:"equinox-obligationen-global-eur",storeModule:"equinoxObligationenGlobalEur",productName:"EQUINOX Obligationen Global EUR",productShortName:"EQUINOX Obligationen Global",productColor:u,productShareClassRoot:"equinox-obligationen-global",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},y=_.cloneDeep(A);y.productId="equinox-obligationen-global-chf",y.storeModule="equinoxObligationenGlobalChf",y.productName="EQUINOX Obligationen Global CHF",y.isDefaultShareClass=!1;const S=[m,p,h,g,f,v,b,w,A,y],C=S.map((e=>e.storeModule))},75907:function(e,t,a){"use strict";a.d(t,{I:function(){return h},z:function(){return p}});var o=a(32899),r=a(59192),n=a(56800),s=a(33492),i=a(52618),l=a(70735);const d=l.A["colors-primary"],u={productId:"taro-diversified",storeModule:"taroDiversified",productName:"TARO® Diversified",productColor:d,oldDataEndDate:"2022-01-31",showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,live:{mode:"live",updateFrequency:n.y.weekly,zoomButtons:[i.U.sixMonths,i.U.ytd,i.U.threeYears,i.U.fiveYears,i.U.fullPeriod],genericCardsToShow:[o.M.cumulativeReturns,o.M.performanceStats,o.M.outperformance,o.M.drawdowns,o.M.returnProfile],perfStats:[s.$d.cumulativeReturn,s.$d.annualizedReturn,s.$d.annualizedVolatility,s.$d.maximumDrawdown,s.$d.sharpeRatio,s.$d.skewness,s.$d.kurtosis,s.$d.sortinoRatio,s.$d.calmarRatio,s.$d.omegaRatio],events:r.PC},useCase:{componentPath:"falgom/taroDiversified/UseCase.vue"}},c={productId:"arp-us-equities",storeModule:"arpUsEquities",productName:"ARP US Equities",productColor:d,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,live:{mode:"live",updateFrequency:n.y.monthly,zoomButtons:[i.U.sixMonths,i.U.ytd,i.U.threeYears,i.U.fiveYears,i.U.fullPeriod],genericCardsToShow:[o.M.cumulativeReturns,o.M.performanceStats,o.M.outperformance,o.M.drawdowns,o.M.returnProfile],perfStats:[s.$d.cumulativeReturn,s.$d.annualizedReturn,s.$d.annualizedVolatility,s.$d.maximumDrawdown,s.$d.sharpeRatio,s.$d.skewness,s.$d.kurtosis,s.$d.sortinoRatio],events:r.PC}},m={productId:"arp-commodities",storeModule:"arpCommodities",productName:"ARP Commodities",productColor:d,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,live:{mode:"live",updateFrequency:n.y.monthly,zoomButtons:[i.U.sixMonths,i.U.ytd,i.U.threeYears,i.U.fiveYears,i.U.fullPeriod],genericCardsToShow:[o.M.cumulativeReturns,o.M.performanceStats,o.M.outperformance,o.M.drawdowns,o.M.returnProfile],perfStats:[s.$d.cumulativeReturn,s.$d.annualizedReturn,s.$d.annualizedVolatility,s.$d.maximumDrawdown,s.$d.sharpeRatio,s.$d.skewness,s.$d.kurtosis,s.$d.sortinoRatio],events:r.PC}},p=[u,c,m],h=p.map((e=>e.storeModule))},17732:function(e,t,a){"use strict";a.d(t,{R:function(){return g},s:function(){return h}});var o=a(71642),r=a(32899),n=a(59192),s=a(56800),i=a(33492),l=a(52618),d=a(70735);const u=d.A["colors-primary"],c=[o.X.admin,o.X.superAdmin],m={productId:"finanzlab-multi-index-fund-i-chf",storeModule:"finanzlabMultiIndexFundIChf",productName:"Finanzlab Multi Index Fund",productColor:u,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,live:{mode:"live",updateFrequency:s.y.other,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},p={productId:"amc-cryptovol",storeModule:"amcCryptovol",productName:"AMC Cryptovol",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},h=[m,p],g=h.map((e=>e.storeModule))},84103:function(e,t,a){"use strict";a.d(t,{U:function(){return C},z:function(){return S}});var o=a(71642),r=a(32899),n=a(59192),s=a(56800),i=a(33492),l=a(52618),d=a(70735);const u=d.A["colors-primary"],c=[o.X.admin,o.X.superAdmin],m={productId:"forum-capital-income-basket",storeModule:"forumCapitalIncomeBasket",productName:"Income Basket",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},p={productId:"forum-capital-stability-basket",storeModule:"forumCapitalStabilityBasket",productName:"Stability Basket",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},h={productId:"forum-capital-eco-basket",storeModule:"forumCapitalEcoBasket",productName:"Eco Basket",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},g={productId:"forum-capital-swiss-market-basket-index",storeModule:"forumCapitalSwissMarketBasketIndex",productName:"Swiss Market Basket",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},f={productId:"forum-capital-dynamic-equity-index",storeModule:"forumCapitalDynamicEquityIndex",productName:"Dynamic Equity",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},v={productId:"forum-capital-europa-growth-basket-index",storeModule:"forumCapitalEuropaGrowthBasketIndex",productName:"Europa Growth Basket",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},b={productId:"forum-capital-us-growth-basket",storeModule:"forumCapitalUsGrowthBasket",productName:"US Growth Basket",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},w={productId:"forum-capital-asia-growth-basket",storeModule:"forumCapitalAsiaGrowthBasket",productName:"Asia Growth Basket",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},A={productId:"forum-capital-fundamental-basket",storeModule:"forumCapitalFundamentalBasket",productName:"Fundamental Basket",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},y={productId:"forum-capital-alternative-growth-basket",storeModule:"forumCapitalAlternativeGrowthBasket",productName:"Alternative Growth Basket",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},S=[m,p,h,g,f,v,b,w,A,y],C=S.map((e=>e.storeModule))},7746:function(e,t,a){"use strict";a.d(t,{W:function(){return $},t:function(){return Z}});var o=a(2543),r=a(32899),n=a(59192),s=a(56800),i=a(33492),l=a(52618),d=a(70735);const u=d.A["colors-primary"],c="#ececec",m={productId:"dynamic-global-core-class-a-eur",storeModule:"dynamicGlobalCoreClassAEur",productName:"Lakefield Dynamic Global Core A EUR",productShortName:"Lakefield Dynamic Global Core",productColor:u,productShareClassRoot:"dynamic-global-core",isDefaultShareClass:!0,showLastPrice:!0,oldDataEndDate:"2011-04-28",oldDataHighlightColor:c,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{needLoginToSee:!1}},p=(0,o.cloneDeep)(m);p.productId="dynamic-global-core-class-b-usd",p.storeModule="dynamicGlobalCoreClassBUsd",p.productName="Lakefield Dynamic Global Core B USD",p.isDefaultShareClass=!1;const h=(0,o.cloneDeep)(m);h.productId="dynamic-global-core-class-c-chf",h.storeModule="dynamicGlobalCoreClassCChf",h.productName="Lakefield Dynamic Global Core C CHF",h.isDefaultShareClass=!1;const g=(0,o.cloneDeep)(m);g.productId="dynamic-global-core-class-dist-eur",g.storeModule="dynamicGlobalCoreClassDistEur",g.productName="Lakefield Dynamic Global Core Dist EUR",g.isDefaultShareClass=!1,g.oldDataEndDate="2019-04-11";const f=(0,o.cloneDeep)(m);f.productId="dynamic-global-core-class-dist-usd",f.storeModule="dynamicGlobalCoreClassDistUsd",f.productName="Lakefield Dynamic Global Core Dist USD",f.isDefaultShareClass=!1,f.oldDataEndDate="2017-09-21";const v={productId:"ch-swiss-large-cap-equity-a-chf",storeModule:"chSwissLargeCapEquityAChf",productName:"Lakefield (CH) Swiss Large Cap Equity A CHF",productShortName:"Lakefield (CH) Swiss Large Cap Equity",productColor:u,productShareClassRoot:"ch-swiss-large-cap-equity",isDefaultShareClass:!0,showLastPrice:!0,oldDataEndDate:"2018-10-24",oldDataHighlightColor:c,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{needLoginToSee:!1}},b=(0,o.cloneDeep)(v);b.productId="ch-swiss-large-cap-equity-z-chf",b.storeModule="chSwissLargeCapEquityZChf",b.productName="Lakefield (CH) Swiss Large Cap Equity Z CHF",b.isDefaultShareClass=!1,b.oldDataEndDate="2019-01-30";const w={productId:"ch-swiss-mid-small-cap-equity-a-chf",storeModule:"chSwissMidSmallCapEquityAChf",productName:"Lakefield (CH) Swiss Mid & Small Cap Equity A CHF",productShortName:"Lakefield (CH) Swiss Mid & Small Cap Equity",productColor:u,productShareClassRoot:"ch-swiss-mid-small-cap-equity",isDefaultShareClass:!0,showLastPrice:!0,oldDataEndDate:"2018-10-24",oldDataHighlightColor:c,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{needLoginToSee:!1}},A=(0,o.cloneDeep)(w);A.productId="ch-swiss-mid-small-cap-equity-z-chf",A.storeModule="chSwissMidSmallCapEquityZChf",A.productName="Lakefield (CH) Swiss Mid & Small Cap Equity Z CHF",A.isDefaultShareClass=!1,A.oldDataEndDate="2022-08-03";const y={productId:"ch-swiss-equity-risk-controlled-a-chf",storeModule:"chSwissEquityRiskControlledAChf",productName:"Lakefield (CH) Swiss Equity Risk-Controlled A CHF",productShortName:"Lakefield (CH) Swiss Equity Risk-Controlled",productColor:u,showLastPrice:!0,oldDataEndDate:"2018-10-24",oldDataHighlightColor:c,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{needLoginToSee:!1}},S={productId:"ch-swiss-equity-long-short-a-chf",storeModule:"chSwissEquityLongShortAChf",productName:"Lakefield (CH) Swiss Equity Long/Short A CHF",productShortName:"Lakefield (CH) Swiss Equity Long/Short",productColor:u,showLastPrice:!0,oldDataEndDate:"2018-10-24",oldDataHighlightColor:c,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{needLoginToSee:!1}},C={productId:"ch-stable-market-neutral-a-chf",storeModule:"chStableMarketNeutralAChf",productName:"Lakefield (CH) Stable Market Neutral A CHF",productShortName:"Lakefield (CH) Stable Market Neutral",productColor:u,productShareClassRoot:"ch-stable-market-neutral",isDefaultShareClass:!0,showLastPrice:!0,oldDataEndDate:"2021-10-14",oldDataHighlightColor:c,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{needLoginToSee:!1}},P=(0,o.cloneDeep)(C);P.productId="ch-stable-market-neutral-c-eur",P.storeModule="chStableMarketNeutralCEur",P.productName="Lakefield (CH) Stable Market Neutral C EUR",P.isDefaultShareClass=!1;const k=(0,o.cloneDeep)(C);k.productId="ch-stable-market-neutral-b-usd",k.storeModule="chStableMarketNeutralBUsd",k.productName="Lakefield (CH) Stable Market Neutral B USD",k.isDefaultShareClass=!1;const I={productId:"dynamic-global-bond-class-a-eur",storeModule:"dynamicGlobalBondClassAEur",productName:"Lakefield Dynamic Global Bond A EUR",productShortName:"Lakefield Dynamic Global Bond",productColor:u,productShareClassRoot:"dynamic-global-bond",isDefaultShareClass:!0,showLastPrice:!0,oldDataEndDate:"2012-11-01",oldDataHighlightColor:c,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{needLoginToSee:!1}},D=(0,o.cloneDeep)(I);D.productId="dynamic-global-bond-class-b-usd",D.storeModule="dynamicGlobalBondClassBUsd",D.productName="Lakefield Dynamic Global Bond B USD",p.isDefaultShareClass=!1;const E=(0,o.cloneDeep)(I);E.productId="dynamic-global-bond-class-c-chf",E.storeModule="dynamicGlobalBondClassCChf",E.productName="Lakefield Dynamic Global Bond C CHF",E.isDefaultShareClass=!1;const R=(0,o.cloneDeep)(I);R.productId="dynamic-global-bond-class-dist-usd",R.storeModule="dynamicGlobalBondClassDistUsd",R.productName="Lakefield Dynamic Global Bond DIST USD",R.isDefaultShareClass=!1,R.oldDataEndDate="2017-10-12";const T={productId:"dynamic-world-equity-class-a-eur",storeModule:"dynamicWorldEquityClassAEur",productName:"Lakefield Dynamic World Equity A EUR",productShortName:"Lakefield Dynamic World Equity",productColor:u,productShareClassRoot:"dynamic-world-equity",isDefaultShareClass:!0,showLastPrice:!0,oldDataEndDate:"2015-08-12",oldDataHighlightColor:c,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{needLoginToSee:!1}},M=(0,o.cloneDeep)(T);M.productId="dynamic-world-equity-class-b-usd",M.storeModule="dynamicWorldEquityClassBUsd",M.productName="Lakefield Dynamic World Equity B USD",p.isDefaultShareClass=!1;const q=(0,o.cloneDeep)(T);q.productId="dynamic-world-equity-class-c-chf",q.storeModule="dynamicWorldEquityClassCChf",q.productName="Lakefield Dynamic World Equity C CHF",q.isDefaultShareClass=!1;const x=(0,o.cloneDeep)(T);x.productId="dynamic-world-equity-class-dist-usd",x.storeModule="dynamicWorldEquityClassDistUsd",x.productName="Lakefield Dynamic World Equity DIST USD",x.isDefaultShareClass=!1,x.oldDataEndDate="2017-10-12";const z={productId:"swiss-mid-small-cap-equity-class-a-chf",storeModule:"swissMidSmallCapEquityClassAChf",productName:"Lakefield Swiss Mid & Small Cap Equity A CHF",productShortName:"Lakefield Swiss Mid & Small Cap Equity",productColor:u,productShareClassRoot:"swiss-mid-small-cap-equity",isDefaultShareClass:!0,showLastPrice:!0,oldDataEndDate:"2016-08-03",oldDataHighlightColor:c,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{needLoginToSee:!1}},F=(0,o.cloneDeep)(z);F.productId="swiss-mid-small-cap-equity-class-b-usd",F.storeModule="swissMidSmallCapEquityClassBUsd",F.productName="Lakefield Swiss Mid & Small Cap Equity B USD",F.isDefaultShareClass=!1,F.oldDataEndDate="2017-09-28";const B=(0,o.cloneDeep)(z);B.productId="swiss-mid-small-cap-equity-class-c-eur",B.storeModule="swissMidSmallCapEquityClassCEur",B.productName="Lakefield Swiss Mid & Small Cap Equity C EUR",B.isDefaultShareClass=!1,B.oldDataEndDate="2016-12-01";const L=(0,o.cloneDeep)(z);L.productId="swiss-mid-small-cap-equity-class-dist-usd",L.storeModule="swissMidSmallCapEquityClassDistUsd",L.productName="Lakefield Swiss Mid & Small Cap Equity DIST USD",L.isDefaultShareClass=!1,L.oldDataEndDate="2017-10-12";const N={productId:"swiss-large-cap-equity-class-a-chf",storeModule:"swissLargeCapEquityClassAChf",productName:"Lakefield Swiss Large Cap Equity A CHF",productShortName:"Lakefield Swiss Large Cap Equity",productColor:u,productShareClassRoot:"swiss-large-cap-equity",isDefaultShareClass:!0,showLastPrice:!0,oldDataEndDate:"2016-11-30",oldDataHighlightColor:c,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{needLoginToSee:!1}},U=(0,o.cloneDeep)(N);U.productId="swiss-large-cap-equity-class-b-usd",U.storeModule="swissLargeCapEquityClassBUsd",U.productName="Lakefield Swiss Large Cap Equity B USD",U.isDefaultShareClass=!1;const V=(0,o.cloneDeep)(N);V.productId="swiss-large-cap-equity-class-c-eur",V.storeModule="swissLargeCapEquityClassCEur",V.productName="Lakefield Swiss Large Cap Equity C EUR",V.isDefaultShareClass=!1;const O=(0,o.cloneDeep)(N);O.productId="swiss-large-cap-equity-class-dist-usd",O.storeModule="swissLargeCapEquityClassDistUsd",O.productName="Lakefield Swiss Large Cap Equity DIST USD",O.isDefaultShareClass=!1,O.oldDataEndDate="2017-10-12";const G={productId:"swiss-equity-long-short-class-a-chf",storeModule:"swissEquityLongShortClassAChf",productName:"Lakefield Swiss Equity Long/Short A CHF",productShortName:"Lakefield Swiss Equity Long/Short",productColor:u,productShareClassRoot:"swiss-equity-long-short",isDefaultShareClass:!0,showLastPrice:!0,oldDataEndDate:"2017-02-01",oldDataHighlightColor:c,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{needLoginToSee:!1}},_=(0,o.cloneDeep)(G);_.productId="swiss-equity-long-short-class-b-usd",_.storeModule="swissEquityLongShortClassBUsd",_.productName="Lakefield Swiss Equity Long/Short B USD",_.isDefaultShareClass=!1;const H=(0,o.cloneDeep)(G);H.productId="swiss-equity-long-short-class-c-eur",H.storeModule="swissEquityLongShortClassCEur",H.productName="Lakefield Swiss Equity Long/Short C EUR",H.isDefaultShareClass=!1;const j=(0,o.cloneDeep)(G);j.productId="swiss-equity-long-short-class-dist-usd",j.storeModule="swissEquityLongShortClassDistUsd",j.productName="Lakefield Swiss Equity Long/Short DIST USD",j.isDefaultShareClass=!1,j.oldDataEndDate="2017-10-12";const W={productId:"dynamic-swiss-core-chf",storeModule:"dynamicSwissCoreChf",productName:"Lakefield Dynamic Swiss Core CHF",productShortName:"Lakefield Dynamic Swiss Core",productColor:u,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,live:{mode:"live",updateFrequency:s.y.monthly,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{needLoginToSee:!1}},Q={productId:"swiss-dividend-income-chf",storeModule:"swissDividendIncomeChf",productName:"Lakefield Swiss Dividend Income CHF",productShortName:"Lakefield Swiss Dividend Income",productColor:u,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,live:{mode:"live",updateFrequency:s.y.monthly,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{needLoginToSee:!1}},$=[v,b,w,A,y,S,C,k,P,I,D,E,R,m,p,h,g,f,T,M,q,x,z,F,B,L,N,U,V,O,G,_,H,j,W,Q],Z=$.map((e=>e.storeModule))},38383:function(e,t,a){"use strict";a.d(t,{D:function(){return X},k:function(){return ee}});var o=a(2543),r=a(32899),n=a(59192),s=a(56800),i=a(33492),l=a(52618),d=a(70735);const u=d.A["colors-primary"],c=[i.$d.cumulativeReturn,i.$d.annualizedReturn,i.$d.annualizedVolatility,i.$d.maximumDrawdown,i.$d.sharpeRatio],m={productId:"mfm-global-convertible-defensive-i-chf",storeModule:"mfmGlobalConvertibleDefensiveIChf",productName:"MFM Global Convertible Defensive I CHF",productShortName:"MFM Global Convertible Defensive",productColor:u,productShareClassRoot:"mfm-global-convertible-defensive",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},p=(0,o.cloneDeep)(m);p.productId="mfm-global-convertible-defensive-i-eur",p.storeModule="mfmGlobalConvertibleDefensiveIEur",p.productName="MFM Global Convertible Defensive I EUR",p.isDefaultShareClass=!1;const h=(0,o.cloneDeep)(m);h.productId="mfm-global-convertible-defensive-i-usd",h.storeModule="mfmGlobalConvertibleDefensiveIUsd",h.productName="MFM Global Convertible Defensive I USD",h.isDefaultShareClass=!1;const g=(0,o.cloneDeep)(m);g.productId="mfm-global-convertible-defensive-r-chf",g.storeModule="mfmGlobalConvertibleDefensiveRChf",g.productName="MFM Global Convertible Defensive R CHF",g.isDefaultShareClass=!1;const f=(0,o.cloneDeep)(m);f.productId="mfm-global-convertible-defensive-r-eur",f.storeModule="mfmGlobalConvertibleDefensiveREur",f.productName="MFM Global Convertible Defensive R EUR",f.isDefaultShareClass=!1;const v=(0,o.cloneDeep)(m);v.productId="mfm-global-convertible-defensive-r-usd",v.storeModule="mfmGlobalConvertibleDefensiveRUsd",v.productName="MFM Global Convertible Defensive R USD",v.isDefaultShareClass=!1;const b=(0,o.cloneDeep)(m);b.productId="mfm-global-convertible-defensive-rf-chf",b.storeModule="mfmGlobalConvertibleDefensiveRfChf",b.productName="MFM Global Convertible Defensive RF CHF",b.isDefaultShareClass=!1;const w=(0,o.cloneDeep)(m);w.productId="mfm-global-convertible-defensive-z-chf",w.storeModule="mfmGlobalConvertibleDefensiveZChf",w.productName="MFM Global Convertible Defensive Z CHF",w.isDefaultShareClass=!1;const A={productId:"mfm-global-convertible-opportunities-i-eur",storeModule:"mfmGlobalConvertibleOpportunitiesIEur",productName:"MFM Global Convertible Opportunities I EUR",productShortName:"MFM Global Convertible Opportunities",productColor:u,productShareClassRoot:"mfm-global-convertible-opportunities",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},y=(0,o.cloneDeep)(A);y.productId="mfm-global-convertible-opportunities-i-chf",y.storeModule="mfmGlobalConvertibleOpportunitiesIChf",y.productName="MFM Global Convertible Opportunities I CHF",y.isDefaultShareClass=!1;const S=(0,o.cloneDeep)(A);S.productId="mfm-global-convertible-opportunities-i-usd",S.storeModule="mfmGlobalConvertibleOpportunitiesIUsd",S.productName="MFM Global Convertible Opportunities I USD",S.isDefaultShareClass=!1;const C=(0,o.cloneDeep)(A);C.productId="mfm-global-convertible-opportunities-r-chf",C.storeModule="mfmGlobalConvertibleOpportunitiesRChf",C.productName="MFM Global Convertible Opportunities R CHF",C.isDefaultShareClass=!1;const P=(0,o.cloneDeep)(A);P.productId="mfm-global-convertible-opportunities-r-eur",P.storeModule="mfmGlobalConvertibleOpportunitiesREur",P.productName="MFM Global Convertible Opportunities R EUR",P.isDefaultShareClass=!1;const k=(0,o.cloneDeep)(A);k.productId="mfm-global-convertible-opportunities-r-usd",k.storeModule="mfmGlobalConvertibleOpportunitiesRUsd",k.productName="MFM Global Convertible Opportunities R USD",k.isDefaultShareClass=!1;const I=(0,o.cloneDeep)(A);I.productId="mfm-global-convertible-opportunities-z-chf",I.storeModule="mfmGlobalConvertibleOpportunitiesZChf",I.productName="MFM Global Convertible Opportunities Z CHF",I.isDefaultShareClass=!1;const D={productId:"mfm-green-and-social-bonds-i-chf",storeModule:"mfmGreenAndSocialBondsIChf",productName:"MFM Green and Social Bonds I CHF",productShortName:"MFM Green and Social Bonds",productColor:u,productShareClassRoot:"mfm-green-and-social-bonds",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},E=(0,o.cloneDeep)(D);E.productId="mfm-green-and-social-bonds-i-eur",E.storeModule="mfmGreenAndSocialBondsIEur",E.productName="MFM Green and Social Bonds I EUR",E.isDefaultShareClass=!1;const R=(0,o.cloneDeep)(D);R.productId="mfm-green-and-social-bonds-p-chf",R.storeModule="mfmGreenAndSocialBondsPChf",R.productName="MFM Green and Social Bonds P CHF",R.isDefaultShareClass=!1;const T=(0,o.cloneDeep)(D);T.productId="mfm-green-and-social-bonds-r-chf",T.storeModule="mfmGreenAndSocialBondsRChf",T.productName="MFM Green and Social Bonds R CHF",T.isDefaultShareClass=!1;const M=(0,o.cloneDeep)(D);M.productId="mfm-green-and-social-bonds-s-chf",M.storeModule="mfmGreenAndSocialBondsSChf",M.productName="MFM Green and Social Bonds S CHF",M.isDefaultShareClass=!1;const q={productId:"mfm-northlight-european-credit-opportunities-i-eur",storeModule:"mfmNorthlightEuropeanCreditOpportunitiesIEur",productName:"MFM Northlight European Credit Opportunities I EUR",productShortName:"MFM Northlight European Credit Opportunities",productColor:u,productShareClassRoot:"mfm-northlight-european-credit-opportunities",isDefaultShareClass:!0,showLastPrice:!0,availableLanguages:["en"],live:{mode:"live",updateFrequency:s.y.other,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},x=(0,o.cloneDeep)(q);x.productId="mfm-northlight-european-credit-opportunities-r-eur",x.storeModule="mfmNorthlightEuropeanCreditOpportunitiesREur",x.productName="MFM Northlight European Credit Opportunities R EUR",x.isDefaultShareClass=!1;const z=(0,o.cloneDeep)(q);z.productId="mfm-northlight-european-credit-opportunities-rp-eur",z.storeModule="mfmNorthlightEuropeanCreditOpportunitiesRpEur",z.productName="MFM Northlight European Credit Opportunities RP EUR",z.isDefaultShareClass=!1;const F=(0,o.cloneDeep)(q);F.productId="mfm-northlight-european-credit-opportunities-i-chf",F.storeModule="mfmNorthlightEuropeanCreditOpportunitiesIChf",F.productName="MFM Northlight European Credit Opportunities I CHF",F.isDefaultShareClass=!1;const B=(0,o.cloneDeep)(q);B.productId="mfm-northlight-european-credit-opportunities-r-chf",B.storeModule="mfmNorthlightEuropeanCreditOpportunitiesRChf",B.productName="MFM Northlight European Credit Opportunities R CHF",B.isDefaultShareClass=!1;const L=(0,o.cloneDeep)(q);L.productId="mfm-northlight-european-credit-opportunities-i-usd",L.storeModule="mfmNorthlightEuropeanCreditOpportunitiesIUsd",L.productName="MFM Northlight European Credit Opportunities I USD",L.isDefaultShareClass=!1;const N=(0,o.cloneDeep)(q);N.productId="mfm-northlight-european-credit-opportunities-r-usd",N.storeModule="mfmNorthlightEuropeanCreditOpportunitiesRUsd",N.productName="MFM Northlight European Credit Opportunities R USD",N.isDefaultShareClass=!1;const U=(0,o.cloneDeep)(q);U.productId="mfm-northlight-european-credit-opportunities-i-gbp",U.storeModule="mfmNorthlightEuropeanCreditOpportunitiesIGbp",U.productName="MFM Northlight European Credit Opportunities I GBP",U.isDefaultShareClass=!1;const V={productId:"mfm-asset-allocation-adagio-rf-chf",storeModule:"mfmAssetAllocationAdagioRfChf",productName:"MFM Asset Allocation Adagio RF CHF",productShortName:"MFM Asset Allocation Adagio",productColor:u,productShareClassRoot:"mfm-asset-allocation-adagio",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},O={productId:"mfm-asset-allocation-adagio-p-chf",storeModule:"mfmAssetAllocationAdagioPChf",productName:"MFM Asset Allocation Adagio P CHF",productShortName:"MFM Asset Allocation Adagio",productColor:u,productShareClassRoot:"mfm-asset-allocation-adagio",showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},G={productId:"mfm-asset-allocation-andante-rf-chf",storeModule:"mfmAssetAllocationAndanteRfChf",productName:"MFM Asset Allocation Andante RF CHF",productShortName:"MFM Asset Allocation Andante",productColor:u,productShareClassRoot:"mfm-asset-allocation-andante",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},_={productId:"mfm-asset-allocation-andante-p-chf",storeModule:"mfmAssetAllocationAndantePChf",productName:"MFM Asset Allocation Andante P CHF",productShortName:"MFM Asset Allocation Andante",productColor:u,productShareClassRoot:"mfm-asset-allocation-andante",showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},H={productId:"mfm-asset-allocation-allegro-rf-chf",storeModule:"mfmAssetAllocationAllegroRfChf",productName:"MFM Asset Allocation Allegro RF CHF",productShortName:"MFM Asset Allocation Allegro",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},j={productId:"mfm-global-equity-rf-chf",storeModule:"mfmGlobalEquityRfChf",productName:"MFM Global Equity RF CHF",productShortName:"MFM Global Equity",productColor:u,productShareClassRoot:"mfm-global-equity",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},W={productId:"mfm-global-equity-p-chf",storeModule:"mfmGlobalEquityPChf",productName:"MFM Global Equity P CHF",productShortName:"MFM Global Equity",productColor:u,productShareClassRoot:"mfm-global-equity",showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},Q={productId:"mfm-global-equity-rf-eur",storeModule:"mfmGlobalEquityRfEur",productName:"MFM Global Equity RF EUR",productShortName:"MFM Global Equity",productColor:u,productShareClassRoot:"mfm-global-equity",showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},$={productId:"mfm-global-fixed-income-rf-chf",storeModule:"mfmGlobalFixedIncomeRfChf",productName:"MFM Global Fixed Income RF CHF",productShortName:"MFM Global Fixed Income",productColor:u,productShareClassRoot:"mfm-global-fixed-income",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},Z={productId:"mfm-global-fixed-income-p-chf",storeModule:"mfmGlobalFixedIncomePChf",productName:"MFM Global Fixed Income P CHF",productShortName:"MFM Global Fixed Income",productColor:u,productShareClassRoot:"mfm-global-fixed-income",showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},Y={productId:"mfm-global-real-estate-rf-chf",storeModule:"mfmGlobalRealEstateRfChf",productName:"MFM Global Real Estate RF CHF",productShortName:"MFM Global Real Estate",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},K={productId:"mfm-global-alternative-strategies-rf-chf",storeModule:"mfmGlobalAlternativeStrategiesRfChf",productName:"MFM Global Alternative Strategies RF CHF",productShortName:"MFM Global Alternative Strategies",productColor:u,productShareClassRoot:"mfm-global-alternative-strategies",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.other,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},J={productId:"mfm-global-alternative-strategies-p-chf",storeModule:"mfmGlobalAlternativeStrategiesPChf",productName:"MFM Global Alternative Strategies P CHF",productShortName:"MFM Global Alternative Strategies",productColor:u,productShareClassRoot:"mfm-global-alternative-strategies",showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.other,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:c,events:n.aZ},factsheet:{needLoginToSee:!1}},X=[m,p,h,g,f,v,b,w,y,A,S,C,P,k,I,D,E,R,T,M,q,x,z,F,B,L,N,U,V,O,G,_,H,j,W,Q,$,Z,Y,K,J],ee=X.map((e=>e.storeModule))},47012:function(e,t,a){"use strict";a.d(t,{n:function(){return b},s:function(){return v}});var o=a(71642),r=a(32899),n=a(59192),s=a(56800),i=a(33492),l=a(52618),d=a(70735);const u=d.A["colors-primary"],c=[o.X.admin,o.X.superAdmin],m={productId:"msm-ig-dynamic-bond-opportunities",storeModule:"msmIgDynamicBondOpportunities",productName:"MSM IG Dynamic Bond Opportunities",productColor:u,showLastPrice:!0,allowPriceDataModification:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:[i.$d.cumulativeReturn,i.$d.annualizedReturn,i.$d.annualizedVolatility,i.$d.maximumDrawdown,i.$d.trackingError,i.$d.informationRatio,i.$d.alpha,i.$d.beta],events:n.aZ},factsheet:{allowedRoles:c}},p={productId:"msm-biotech-dynamic-portfolio",storeModule:"msmBiotechDynamicPortfolio",productName:"MSM Biotech Dynamic Portfolio",productColor:u,showLastPrice:!0,allowPriceDataModification:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},h={productId:"slg-opportunities-fund",storeModule:"slgOpportunitiesFund",productName:"SLG Opportunities Fund",productColor:u,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!0,live:{mode:"live",updateFrequency:s.y.monthly,zoomButtons:[l.U.threeMonths,l.U.sixMonths,l.U.ytd,l.U.threeYears,l.U.fiveYears,l.U.fullPeriod],genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},g={productId:"msm-global-defense",storeModule:"msmGlobalDefense",productName:"MSM Global Defense",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},f={productId:"msm-alpha-opportunities",storeModule:"msmAlphaOpportunities",productName:"MSM Alpha Opportunities",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},v=[h,p,f,g,m],b=v.map((e=>e.storeModule))},64e3:function(e,t,a){"use strict";a.d(t,{I:function(){return p},b:function(){return h}});var o=a(71642),r=a(32899),n=a(59192),s=a(56800),i=a(33492),l=a(52618),d=a(70735);const u=d.A["colors-primary"],c=[o.X.admin,o.X.superAdmin],m={productId:"dmc-fund-world-hy-corporate-bonds-i-usd",storeModule:"dmcFundWorldHyCorporateBondsIUsd",productName:"DMC Fund World HY Corporate Bonds",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},p=[m],h=p.map((e=>e.storeModule))},98911:function(e,t,a){"use strict";a.d(t,{$:function(){return T},w:function(){return M}});var o=a(71642),r=a(32899),n=a(59192),s=a(56800),i=a(33492),l=a(52618),d=a(70735);const u=d.A["colors-primary"],c=[o.X.admin,o.X.superAdmin],m={productId:"abr-systematic-long-volatility-institutional-usd",storeModule:"abrSystematicLongVolatilityInstitutionalUsd",productName:"ABR Dynamic Blend Equity & Volatility Fund",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},p={productId:"abr-systematic-short-volatility-g-usd",storeModule:"abrSystematicShortVolatilityGUsd",productName:"ABR Enhanced Short Volatility Fund",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},h={productId:"abr-dynamic-volatility-strategy-75-long-25-short-investor-k-class-usd",storeModule:"abrDynamicVolatilityStrategy75Long25ShortInvestorKClassUsd",productName:"ABR 75/25 Volatility Fund",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},g={productId:"apuano-equity-china-long-short-institutional-a-usd",storeModule:"apuanoEquityChinaLongShortInstitutionalAUsd",productName:"Apuano Fund",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},f={productId:"icg-natural-resources-industrial-metals-usd-c",storeModule:"icgNaturalResourcesIndustrialMetalsUsdC",productName:"ICG Industrial Metals Champions Fund",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},v={productId:"icg-natural-resources-energy-usd-a1",storeModule:"icgNaturalResourcesEnergyUsdA1",productName:"ICG Energy Champions Fund",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},b={productId:"icg-natural-resources-precious-metals-usd-a",storeModule:"icgNaturalResourcesPreciousMetalsUsdA",productName:"ICG Precious Metals Champions Fund",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},w={productId:"norron-esg-nordic-long-only-sustainable-rc-sek",storeModule:"norronEsgNordicLongOnlySustainableRcSek",productName:"Norron Sustainable Equity",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},A={productId:"norron-esg-nordic-long-short-hic-eur",storeModule:"norronEsgNordicLongShortHicEur",productName:"Norron Select",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},y={productId:"openfunds-dynamic-volatility-strategy-75-long-25-short-institutional-usd",storeModule:"openfundsDynamicVolatilityStrategy75Long25ShortInstitutionalUsd",productName:"Roca Enhanced Volatility Strategies Fund",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},S={productId:"osmosis-esg-global-equities-usd-acc",storeModule:"osmosisEsgGlobalEquitiesUsdAcc",productName:"Osmosis Resource Efficient Core Equity Fund",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},C={productId:"osmosis-esg-global-equities-ex-fossil-fuels",storeModule:"osmosisEsgGlobalEquitiesExFossilFuels",productName:"Osmosis Resource Efficient Core Equity (ex-fossil fuels) Fund",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},P={productId:"osmosis-esg-global-equities-ex-fossil-fuels-icav",storeModule:"osmosisEsgGlobalEquitiesExFossilFuelsIcav",productName:"Osmosis Resource Efficient Core Equity (ex-fossil fuels) Fund ICAV",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},k={productId:"tundra-frontier-and-emerging-markets-long-only-f-eur",storeModule:"tundraFrontierAndEmergingMarketsLongOnlyFEur",productName:"Tundra Sustainable Frontier",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},I={productId:"gama-funds-global-bond-opportunities-f-usd-acc",storeModule:"gamaFundsGlobalBondOpportunitiesFUsdAcc",productName:"GAMA Funds - Global Bond Opportunities",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},D={productId:"gama-funds-global-short-dated-opportunities-f-usd-acc",storeModule:"gamaFundsGlobalShortDatedOpportunitiesFUsdAcc",productName:"GAMA Funds - Global Short-Dated Opportunities",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},E={productId:"digital-assets-momentum-fund-b-usd",storeModule:"digitalAssetsMomentumFundBUsd",productName:"Digital Assets Momentum Fund",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.f$,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},R={productId:"icp-asset-management-global-transition-fund",storeModule:"icpAssetManagementGlobalTransitionFund",productName:"ICP Asset Management Global Transition Fund",productColor:u,showLastPrice:!0,live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns],perfStats:i.PG,events:n.aZ,allowLogScale:!1},factsheet:{allowedRoles:c}},T=[m,p,h,g,f,v,b,w,A,y,S,C,P,k,I,D,E,R],M=T.map((e=>e.storeModule))},48703:function(e,t,a){"use strict";a.d(t,{U:function(){return P},n:function(){return C}});var o=a(71642),r=a(32899),n=a(59192),s=a(56800),i=a(33492),l=a(52618),d=a(70735);const u=d.A["colors-primary"],c=[o.X.admin,o.X.superAdmin],m={productId:"cadmos-balanced",storeModule:"cadmosBalanced",productName:"Cadmos Balanced CHF",productColor:u,showLastPrice:!0,availableLanguages:["en","fr"],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},p={productId:"cadmos-emerging",storeModule:"cadmosEmerging",productName:"Cadmos Emerging Markets Engagement",productColor:u,showLastPrice:!0,availableLanguages:["en","fr"],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},h={productId:"cadmos-europe",storeModule:"cadmosEurope",productName:"Cadmos Peace European Engagement",productColor:u,showLastPrice:!0,availableLanguages:["en","fr"],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},g={productId:"cadmos-swiss",storeModule:"cadmosSwiss",productName:"Cadmos Swiss Engagement",productColor:u,showLastPrice:!0,availableLanguages:["en","fr"],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},f={productId:"rising-stars",storeModule:"risingStars",productName:"Rising Stars",productColor:u,showLastPrice:!0,availableLanguages:["en","fr"],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},v={productId:"secular-trends",storeModule:"secularTrends",productName:"Secular Trends",productColor:u,showLastPrice:!0,availableLanguages:["en","fr"],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},b={productId:"swiss-positive-gold",storeModule:"swissPositiveGold",productName:"Swiss Positive Gold",productColor:u,showLastPrice:!0,availableLanguages:["en","fr","de"],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},w={productId:"enetia-energy-infrastructure-lux",storeModule:"enetiaEnergyInfrastructureLux",productName:"ENETIA Energy Infrastructure (Luxembourg)",productColor:u,showLastPrice:!0,availableLanguages:["en","fr"],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},A={productId:"enetia-energy-infrastructure",storeModule:"enetiaEnergyInfrastructure",productName:"ENETIA Energy Infrastructure",productColor:u,showLastPrice:!0,availableLanguages:["en","fr"],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},y={productId:"enetia-energy-transition",storeModule:"enetiaEnergyTransition",productName:"ENETIA Energy Transition",productColor:u,showLastPrice:!0,availableLanguages:["en","fr"],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.f$,events:n.aZ},factsheet:{allowedRoles:c}},S={productId:"jaguar",storeModule:"jaguarIUsd",productName:"Jaguar",productColor:u,showLastPrice:!0,oldDataEndDate:"2024-08-08",availableLanguages:["en","fr","pt"],live:{mode:"live",updateFrequency:s.y.daily,zoomButtons:l.w,genericCardsToShow:[r.M.cumulativeReturns,r.M.performanceStats,r.M.drawdowns,r.M.volatility],perfStats:i.PG,events:n.aZ},factsheet:{allowedRoles:c}},C=[m,p,h,g,f,v,b,w,A,y,S],P=C.map((e=>e.storeModule))},21410:function(e,t,a){"use strict";a.d(t,{A:function(){return g},d:function(){return f}});var o=a(32899),r=a(59192),n=a(56800),s=a(33492),i=a(52618),l=a(70735);const d=l.A["colors-primary"],u={productId:"precious-capital-global-mining-metals-fund-class-1-chf",storeModule:"preciousCapitalGlobalMiningMetalsFundClass1Chf",productName:"Precious Capital Global Mining and Metals Fund Class 1 CHF",productColor:d,showLastPrice:!0,langsForDocuments:["en","de"],live:{mode:"live",updateFrequency:n.y.daily,zoomButtons:i.w,genericCardsToShow:[o.M.cumulativeReturns,o.M.performanceStats,o.M.drawdowns],perfStats:s.PG,events:r.aZ},factsheet:{needLoginToSee:!1}},c={productId:"surtsey-metals-mining-fund-class-s-chf",storeModule:"surtseyMetalsMiningFundClassSChf",productName:"Surtsey Metals & Mining Fund",productColor:d,showLastPrice:!0,langsForDocuments:["en","de"],live:{mode:"live",updateFrequency:n.y.daily,zoomButtons:i.w,genericCardsToShow:[o.M.cumulativeReturns,o.M.performanceStats,o.M.drawdowns],perfStats:s.f$,events:r.aZ},factsheet:{needLoginToSee:!1}},m={productId:"systematic-global-dividend-fund-eur-i",storeModule:"systematicGlobalDividendFundEurI",productName:"Systematic Global Dividends Fund",productColor:d,showLastPrice:!0,langsForDocuments:["en","de"],live:{mode:"live",updateFrequency:n.y.daily,zoomButtons:i.w,genericCardsToShow:[o.M.cumulativeReturns,o.M.performanceStats,o.M.drawdowns],perfStats:s.f$,events:r.aZ},factsheet:{needLoginToSee:!1}},p={productId:"ssi-american-strategic-leaders-fund-usd-i",storeModule:"ssiAmericanStrategicLeadersFundUsdI",productName:"US Innovation Champions Fund",productColor:d,showLastPrice:!0,langsForDocuments:["en","de"],live:{mode:"live",updateFrequency:n.y.daily,zoomButtons:i.w,genericCardsToShow:[o.M.cumulativeReturns,o.M.performanceStats,o.M.drawdowns],perfStats:s.f$,events:r.aZ},factsheet:{needLoginToSee:!1}},h={productId:"ssi-global-strategic-opportunity-fund-eur-i",storeModule:"ssiGlobalStrategicOpportunityFundEurI",productName:"SSI Global Strategic Opportunity Fund",productColor:d,showLastPrice:!0,langsForDocuments:["en","de"],live:{mode:"live",updateFrequency:n.y.daily,zoomButtons:i.w,genericCardsToShow:[o.M.cumulativeReturns,o.M.performanceStats,o.M.drawdowns],perfStats:s.f$,events:r.aZ},factsheet:{needLoginToSee:!1}},g=[u,c,m,p,h],f=g.map((e=>e.storeModule))},25635:function(e,t,a){"use strict";a.d(t,{A:function(){return A},Z:function(){return w}});var o=a(2543),r=a(71642),n=a(32899),s=a(59192),i=a(56800),l=a(33492),d=a(52618),u=a(70735);const c=u.A["colors-primary"],m=[r.X.admin,r.X.superAdmin],p={productId:"new-luxury",storeModule:"newLuxury",productName:"New Luxury",productColor:c,showLastPrice:!0,allowPriceDataModification:!0,priceModificationUpdateGcpStorage:!1,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns],perfStats:l.PG,events:s.aZ.concat([s.DU.utiNewLuxuryInception])},factsheet:{allowedRoles:m}},h={productId:"lsts",storeModule:"lifeSciencesToolsAndServices",productName:"Alquant Life Sciences Tools and Services",productColor:c,showLastPrice:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns],perfStats:l.PG,events:s.aZ},factsheet:{allowedRoles:m}},g={productId:"new-health-and-medicines",storeModule:"newHealthAndMedicines",productName:"New Health & Medicines",productColor:c,showLastPrice:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns],perfStats:l.f$,events:s.aZ},factsheet:{allowedRoles:m}},f={productId:"new-financials-usd",storeModule:"newFinancialsUsd",productName:"New Financials USD",productShortName:"New Financials",productColor:c,productShareClassRoot:"new-financials",isDefaultShareClass:!0,showLastPrice:!0,live:{mode:"live",updateFrequency:i.y.daily,zoomButtons:d.w,genericCardsToShow:[n.M.cumulativeReturns,n.M.performanceStats,n.M.drawdowns],perfStats:l.f$,events:s.aZ}},v=(0,o.cloneDeep)(f);v.productId="new-financials-chf",v.storeModule="newFinancialsChf",v.productName="New Financials CHF",v.isDefaultShareClass=!1;const b=(0,o.cloneDeep)(f);b.productId="new-financials-eur",b.storeModule="newFinancialsEur",b.productName="New Financials EUR",b.isDefaultShareClass=!1;const w=[p,h,g,f,v,b],A=w.map((e=>e.storeModule))},52618:function(e,t,a){"use strict";a.d(t,{U:function(){return s},w:function(){return i}});var o=a(95093),r=a.n(o),n=a(14760);const s=Object.freeze({oneMonth:{id:"oneMonth",getName:()=>n.R.t("components.datePickers.zoomPicker.oneMonth"),shouldDisplay:(e,t)=>{const a=r()(t).subtract(1,"months");return a.isAfter(r()(e))},getStartDate:(e,t)=>r()(t).subtract(1,"months").format("YYYY-MM-DD")},threeMonths:{id:"threeMonths",getName:()=>n.R.t("components.datePickers.zoomPicker.threeMonths"),shouldDisplay:(e,t)=>{const a=r()(t).subtract(3,"months");return a.isAfter(r()(e))},getStartDate:(e,t)=>r()(t).subtract(3,"months").format("YYYY-MM-DD")},sixMonths:{id:"sixMonths",getName:()=>n.R.t("components.datePickers.zoomPicker.sixMonths"),shouldDisplay:(e,t)=>{const a=r()(t).subtract(6,"months");return a.isAfter(r()(e))},getStartDate:(e,t)=>r()(t).subtract(6,"months").format("YYYY-MM-DD")},ytd:{id:"ytd",getName:()=>n.R.t("components.datePickers.zoomPicker.ytd"),shouldDisplay:(e,t)=>{if(r()(t).isBefore(r()().subtract(2,"months")))return!1;const a=r()(t).startOf("year");return a.isAfter(r()(e))},getStartDate:(e,t)=>r()(t).toDate().getFullYear()-1+"-12-31"},oneYear:{id:"oneYear",getName:()=>n.R.t("components.datePickers.zoomPicker.oneYear"),shouldDisplay:(e,t)=>{const a=r()(t).subtract(1,"years");return a.isAfter(r()(e))},getStartDate:(e,t)=>r()(t).subtract(1,"years").format("YYYY-MM-DD")},twoYears:{id:"twoYears",getName:()=>n.R.t("components.datePickers.zoomPicker.twoYears"),shouldDisplay:(e,t)=>{const a=r()(t).subtract(2,"years");return a.isAfter(r()(e))},getStartDate:(e,t)=>r()(t).subtract(2,"years").format("YYYY-MM-DD")},threeYears:{id:"threeYears",getName:()=>n.R.t("components.datePickers.zoomPicker.threeYears"),shouldDisplay:(e,t)=>{const a=r()(t).subtract(3,"years");return a.isAfter(r()(e))},getStartDate:(e,t)=>r()(t).subtract(3,"years").format("YYYY-MM-DD")},fiveYears:{id:"fiveYears",getName:()=>n.R.t("components.datePickers.zoomPicker.fiveYears"),shouldDisplay:(e,t)=>{const a=r()(t).subtract(5,"years");return a.isAfter(r()(e))},getStartDate:(e,t)=>r()(t).subtract(5,"years").format("YYYY-MM-DD")},tenYears:{id:"tenYears",getName:()=>n.R.t("components.datePickers.zoomPicker.tenYears"),shouldDisplay:(e,t)=>{const a=r()(t).subtract(10,"years");return a.isAfter(r()(e))},getStartDate:(e,t)=>r()(t).subtract(10,"years").format("YYYY-MM-DD")},fullPeriod:{id:"fullPeriod",getName:()=>n.R.t("components.datePickers.zoomPicker.fullPeriod"),shouldDisplay:(e,t)=>!0,getStartDate:(e,t)=>r()(e).format("YYYY-MM-DD")}}),i=[s.oneMonth,s.sixMonths,s.ytd,s.oneYear,s.fiveYears,s.fullPeriod]},65905:function(e,t){"use strict";t.A={darken(e,t){var a=e.split(","),o=t<0?0:255,r=t<0?-1*t:t,n=parseInt(a[0].slice(4)),s=parseInt(a[1]),i=parseInt(a[2]);return"rgb("+(Math.round((o-n)*r)+n)+","+(Math.round((o-s)*r)+s)+","+(Math.round((o-i)*r)+i)+")"},getColor(e,t=1,a=!0){if(/^[#]/.test(e)){let a=this.hexToRgb(e);e=1==t?`rgb(${a.r},${a.g},${a.b})`:`rgba(${a.r},${a.g},${a.b},${t})`}else/^rgba/.test(e)?-1!=e.search(/.([0-9]\))$/)||a||(e=e.replace(/.?([0-9]\))$/,`${t})`)):/^(rgb)/.test(e)&&1!=t&&(e=e.replace(/^(rgb)/,"rgba"),e=e.replace(/\)$/,`,${t})`));return e},isColor(e){let t=["primary","secondary","success","danger","warning","plus","professional","dark","light"];return t.includes(e)},RandomColor(){function e(e,t){return Math.floor(Math.random()*(t-e))+e}return`rgb(${e(0,255)},${e(0,255)},${e(0,255)})`},rColor(e,t=1){if(/^[#]/.test(e)){let a=this.hexToRgb(e);e=`rgba(${a.r},${a.g},${a.b},${t})`}else if(/^[rgb]/.test(e)){let a=e.split(")")[0];/^[rgba]/.test(e)?a+=")":(a.replace("rgb","rgba"),a+=`,${t})`),e=a}return e?/[#()]/.test(e)?e:this.isColor(e)?`rgba(var(--${e}),${t})`:`rgba(var(--primary),${t})`:`rgba(var(--primary),${t})`},contrastColor(e){let t=e;if(/[#]/g.test(e)){let a=this.hexToRgb(e);t=`rgb(${a.r},${a.g},${a.b})`}var a=t.replace(/^(rgb|rgba)\(/,"").replace(/\)$/,"").replace(/\s/g,"").split(","),o=(299*a[0]+587*a[1]+114*a[2])/1e3;return o>=128},setCssVariable(e,t){"undefined"!==typeof window&&document.documentElement.style.setProperty(e,t)},hexToRgb(e){var t=/^#?([a-f\d])([a-f\d])([a-f\d])$/i;e=e.replace(t,(function(e,t,a,o){return t+t+a+a+o+o}));var a=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);return a?{r:parseInt(a[1],16),g:parseInt(a[2],16),b:parseInt(a[3],16)}:null},getVariable(e,t){return String(e.getPropertyValue(t)).trim()},changeColor(e){let t;if(this.isColor(e)){let a=getComputedStyle(document.documentElement);t=this.getVariable(a,"--"+e)}else if(/[rgb()]/g.test(e))t=e.replace(/[rgb()]/g,"");else if(/[#]/g.test(e)){let a=this.hexToRgb(e);t=`${a.r},${a.g},${a.b}`}else t="--"+e;return t}}},23151:function(e,t,a){"use strict";var o=a(71642),r=a(94455),n=a(14760);t.A={orgName:"Alquant",showHomePageHeader:!0,homePageLogoPath:a(97195),logoPath:a(47094),navBarLogoStyle:"width: 100%; height: auto; max-height: 44px",allowedLoginMethods:["Google","Microsoft"],background:{path:a(61130)},slogan:!0,products:r.p,help:{knowledgeBase:!0,faq:{faqs:()=>[{id:1,question:n.R.t("wlps.alquant.faq.whatAlquant.question"),ans:n.R.t("wlps.alquant.faq.whatAlquant.answer")},{id:2,question:n.R.t("wlps.alquant.faq.whatGoal.question"),ans:n.R.t("wlps.alquant.faq.whatGoal.answer")},{id:3,question:n.R.t("wlps.alquant.faq.howToInvest.question"),ans:n.R.t("wlps.alquant.faq.howToInvest.answer")},{id:4,question:n.R.t("wlps.alquant.faq.whatDataSources.question"),ans:n.R.t("wlps.alquant.faq.whatDataSources.answer")},{id:999,question:n.R.t("wlps.alquant.faq.moreQuestions.question"),ans:n.R.t("wlps.alquant.faq.moreQuestions.answer")}]},contact:!0},possibleRoles:[o.X.superAdmin,o.X.admin,o.X.employee,o.X.investor,o.X.alvolaCHF,o.X.lifeSciencesToolsAndServices],availableLanguages:["en"],followFeatureActivated:!0}},18757:function(e,t,a){"use strict";a.d(t,{A:function(){return oe}});var o=a(71642),r=a(58241),n={orgName:"6TAM",showHomePageHeader:!0,logoPath:a(39909),navBarLogoStyle:"width: 100%; height: auto; max-height: 44px",allowedLoginMethods:["Google"],background:{path:a(55738),darkRatio:.3},products:r.D,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,oldAlternativeUrlRedirection:[{oldUrl:"/products/global-equity-value/:section",newUrl:"/products/global-equity-value-usd/:section"}],availableLanguages:["en"],followFeatureActivated:!0},s=a(23151),i=a(78026),l={orgName:"Banca Credinvest",showHomePageHeader:!0,logoPath:a(668),allowedLoginMethods:["Google"],background:{path:a(38971),darkRatio:.5},withProductsFilteringAbility:!0,withProductsFilteringAbilityOnHome:!0,numberOfProductsToShow:6,numberOfProductsToShowOnHome:6,products:i.C,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en","de"],followFeatureActivated:!0},d=a(93804),u=a(14760),c=a(84688),m={orgName:"BCF",showHomePageHeader:!0,redirectButtonNavBar:{getUrl:()=>c.A.resolve({name:"home"}).href,getText:()=>u.R.t("wlps.bcf.redirectButtonNavBarText"),isInternal:!0},allowedLoginMethods:["Google"],background:{path:a(14003)},products:d.m,possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["fr","de"],langInUrl:!0,hideLoginRegisterButtons:!0,disableGoogleAnalytics:!0,customPrivacyPolicyPath:"compliance/custom/bcf/PrivacyPolicy.vue",enable2FactorAuthentication:!0},p=a(77864),h={orgName:"BCJ",showHomePageHeader:!0,logoPath:a(71002),navBarLogoStyle:"width: 100%; height: auto; max-height: 100px",allowedLoginMethods:["Google"],hideLogoHomePage:!0,background:{path:a(60087)},products:p.w,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["fr"],colorScheme:["#FA000D","#B4B4B4","#000000","#ED2E38","#C8C8C8","#323232"]},g=a(69403),f={orgName:"B&I Capital",showHomePageHeader:!1,logoPath:a(43931),allowedLoginMethods:["Google"],background:{path:a(63568)},products:g.X,possibleRoles:[o.X.superAdmin,o.X.admin,o.X.viewer],admin:!0,availableLanguages:["en"],followFeatureActivated:!0,colorScheme:["#21264F","#FFB34C","#87CCB9","#AE323D","#965D4A","#FFF4E5","#595959","#8F96D0","#FFD194","#B7E0D5","#D97A82","#C69B8C","#D9D9D9","#C7CAE8","#FFE1B7","#CFEBE3","#E5A6AC","#D9BCB2"]},v=a(91366),b={orgName:"Bonhôte",showHomePageHeader:!1,navBarLogoStyle:"width: 100%; height: auto; max-height: 100px",redirectButtonNavBar:{getUrl:()=>c.A.resolve({name:"home"}).href,getText:()=>u.R.t("wlps.bonhote.redirectButtonNavBarText"),isInternal:!0},allowedLoginMethods:["Google"],hideLogoHomePage:!0,background:{path:a(34737)},products:v.K,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en","fr","de"],langInUrl:!0,hideLoginRegisterButtons:!0,colorScheme:["#B20F21","#CB5762","#E4ABB2","#F7E7E8","#000000","#666666","#CCCCCC","#F2F2F2"]},w=a(99942),A={orgName:"CALMGARD",showHomePageHeader:!0,homePageLogoPath:a(54205),logoPath:a(28967),allowedLoginMethods:["Google"],background:{path:a(86112)},products:w.A,possibleRoles:[o.X.superAdmin,o.X.admin,o.X.viewer],allowedRoles:[o.X.superAdmin,o.X.admin,o.X.viewer],help:{knowledgeBase:!0},admin:!0,availableLanguages:["en"],followFeatureActivated:!0,colorScheme:["#D2BB83","#A6C6C5","#2C5A68","#E6B3AC","#D2BB83B2","#A6C6C5B2","#2C5A68B2","#E6B3ACB2","#D2BB837F","#A6C6C57F","#2C5A687F","#E6B3AC7F","#D2BB8319","#A6C6C519","#2C5A6819","#E6B3AC19"]},y=a(34981),S={orgName:"CGE Tech Care",showHomePageHeader:!0,logoPath:a(92061),navBarLogoStyle:"width: 100%; height: auto; max-height: 44px",hideLogoHomePage:!0,allowedLoginMethods:["Google"],background:{path:a(29072)},products:y.N,possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en"],followFeatureActivated:!0},C=a(33801),P={orgName:"Chameleon",showHomePageHeader:!0,logoPath:a(61169),allowedLoginMethods:["Google"],hideLogoHomePage:!0,background:{path:a(51996)},products:C.l,possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en","de"],followFeatureActivated:!0,colorScheme:["#AD8E49","#3478B4","#50A55F","#7D8081","#AD8E49B2","#3478B4B2","#50A55FB2","#7D8081B2","#AD8E497F","#3478B47F","#50A55F7F","#7D80817F","#AD8E4919","#3478B419","#50A55F19","#7D808119"]},k=a(38478),I={orgName:"Cité Gestion",showHomePageHeader:!0,logoPath:a(2410),navBarLogoStyle:"width: 100%; height: auto; max-height: 44px",allowedLoginMethods:["Google"],hideLogoHomePage:!0,background:{path:a(80963)},products:k.C,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en"],followFeatureActivated:!0},D=a(45429),E={orgName:"Cronos",showHomePageHeader:!0,logoPath:a(56289),redirectButtonNavBar:{getUrl:()=>"https://www.cronosfinance.ch/",getText:()=>u.R.t("wlps.cronos.redirectButtonNavBarText"),isInternal:!1},allowedLoginMethods:["Google"],background:{path:a(31663),lightRatio:.4},products:D.d,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["fr","en","de"],followFeatureActivated:!0,colorScheme:["#002060","#0070C0","#8FAADC","#5096A2","#ADD1D7","#A6A6A6","#D9D9D9"]},R=a(66816),T={orgName:"Demo AM",showHomePageHeader:!0,logoPath:a(42526),allowedLoginMethods:["Google"],background:{path:a(18525),darkRatio:.2},navBarLogoStyle:"max-height: 60px; max-width: 100%",products:R.Q,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en","fr","de"],followFeatureActivated:!0,customSections:[{getTitle:()=>u.R.t("wlps.demo.customSections.useCases.title"),subSections:[{navMenuItem:{url:"/use-cases/alpinum",getName:()=>u.R.t("wlps.demo.customSections.useCases.alpinum.title"),slug:"use-case-alpinum",icon:"CircleIcon"},router:{path:"/use-cases/alpinum",name:"useCases_alpinum",component:()=>Promise.all([a.e(1317),a.e(4037),a.e(9044)]).then(a.bind(a,58740))}}]}]},M=a(94142),q={orgName:"EQUINOX",showHomePageHeader:!0,logoPath:a(65104),allowedLoginMethods:["Google"],background:{path:a(63217)},navBarLogoStyle:"max-height: 55px; max-width: 100%",products:M.y,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["de","en"],followFeatureActivated:!0},x=a(75907),z={orgName:"Falgom",showHomePageHeader:!1,logoPath:a(22405),navBarLogoStyle:"width: 100%; height: auto; max-height: 44px",allowedLoginMethods:["Google"],hideLogoHomePage:!0,background:{path:a(40036)},products:x.z,possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en","de"],followFeatureActivated:!0,colorScheme:["#3F698C","#7993B0","#BAC6D8","#E1E6EF","#BAD3E8","#D1E1F0","#EAF0F8","#F6FBFD","#3F698C7F","#7993B07F","#BAC6D87F","#E1E6EF7F","#BAD3E87F","#D1E1F07F","#EAF0F87F","#F6FBFD7F"]},F=a(17732),B={orgName:"FINANZLAB",showHomePageHeader:!0,logoPath:a(49810),logoExternalUrl:"https://www.finanzlab.ch",allowedLoginMethods:["Google"],background:{path:a(39971)},products:F.s,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en","fr","de"],followFeatureActivated:!0},L=a(84103),N={orgName:"Forum Capital Management AG",showHomePageHeader:!0,logoPath:a(56384),navBarLogoStyle:"max-height: 50px; max-width: 100%",allowedLoginMethods:["Google"],hideLogoHomePage:!0,background:{path:a(31347)},products:L.z,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["de","en"],followFeatureActivated:!0},U=a(7746),V={orgName:"Lakefield Partners",showHomePageHeader:!0,logoPath:a(44664),navBarLogoStyle:"max-height: 50px; max-width: 100%",allowedLoginMethods:["Google"],hideLogoHomePage:!0,background:{path:a(22753)},products:U.W,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en","de"],followFeatureActivated:!0,colorScheme:["#B60D24","#747474","#003E6D","#3375A7","#6697BD","#99BAD3","#CCDCE9","#B9BABE","#D9DADE","#E3E4E6","#E3E4E6","#E3E4E6","#E3E4E6","#E3E4E6","#E3E4E6","#E3E4E6","#E3E4E6","#E3E4E6","#E3E4E6","#E3E4E6"]},O=a(38383),G={orgName:"MFM Mirante Fund Management",showHomePageHeader:!0,logoPath:a(41495),redirectButtonNavBar:{getUrl:()=>"https://mirante.ch/",getText:()=>u.R.t("wlps.mirante.redirectButtonNavBarText"),isInternal:!1},allowedLoginMethods:["Google"],hideLogoHomePage:!0,background:{path:a(93647)},products:O.D,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en","fr","de"],followFeatureActivated:!0},_=a(47012),H={orgName:"MSM Investment Advisors S.A.",showHomePageHeader:!0,logoPath:a(91022),navBarLogoStyle:"width: 100%; height: auto; max-height: 44px",allowedLoginMethods:["Google"],hideLogoHomePage:!0,background:{path:a(84579)},products:_.s,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en"],followFeatureActivated:!0},j=a(64e3),W={orgName:"ONE swiss bank",showHomePageHeader:!0,logoPath:a(36758),navBarLogoStyle:"width: 100%; height: auto; max-height: 100px",allowedLoginMethods:["Google"],hideLogoHomePage:!0,background:{path:a(67206),darkRatio:.2},products:j.I,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en","fr"]},Q=a(98911),$={orgName:"OpenFunds",showHomePageHeader:!0,logoPath:a(14639),allowedLoginMethods:["Google"],background:{path:a(34415),darkRatio:.5},products:Q.$,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en"],followFeatureActivated:!0},Z=a(48703),Y={orgName:"de Pury Pictet Turrettini",showHomePageHeader:!0,logoPath:a(29031),redirectButtonNavBar:{getUrl:()=>u.R.t("wlps.ppt.redirectButtonNavBarUrl"),getText:()=>u.R.t("wlps.ppt.redirectButtonNavBarText"),isInternal:!1},hideLogoHomePage:!0,allowedLoginMethods:["Google"],background:{path:a(52110)},products:Z.n,possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en","fr","de","pt"],hideLoginRegisterButtons:!0,colorScheme:["#005950","#007A6E","#008F81","#404040","#7E7E7D","#BABABA","#DAC060","#A22000","#0059507F","#007A6E7F","#008F817F","#4040407F","#7E7E7D7F","#BABABA7F","#DAC0607F","#A220007F"]},K=a(21410),J={orgName:"SSI Asset Management AG",showHomePageHeader:!0,logoPath:a(91936),navBarLogoStyle:"width: 100%; height: auto; max-height: 44px",allowedLoginMethods:["Google"],hideLogoHomePage:!0,background:{path:a(34565)},products:K.A,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en"],followFeatureActivated:!0,colorScheme:["#6D1D45","#F5C498","#F2F0E8","#C5C8D0","#6D1D45B2","#F5C498B2","#F2F0E8B2","#C5C8D0B2","#6D1D457F","#F5C4987F","#F2F0E87F","#C5C8D07F","#6D1D4519","#F5C49819","#F2F0E819","#C5C8D019"]},X=a(25635),ee={orgName:"ÜTI",showHomePageHeader:!0,logoPath:a(91621),navBarLogoStyle:"width: 100%; height: auto; max-height: 44px",allowedLoginMethods:["Google"],hideLogoHomePage:!0,hideCopyrightFooter:!0,background:{path:a(67110)},products:X.Z,help:{knowledgeBase:!0,contact:!1},possibleRoles:[o.X.superAdmin,o.X.admin],admin:!0,availableLanguages:["en"],followFeatureActivated:!0};const te={alquant:s.A,"banca-credinvest":l,bcf:m,bcj:h,"bi-capital":f,bonhote:b,calmgard:A,"cge-tech-care":S,chameleon:P,"cite-gestion":I,cronos:E,demo:T,equinox:q,falgom:z,finanzlab:B,"forum-capital":N,lakefield:V,mirante:G,msm:H,"one-swiss-bank":W,openfunds:$,"6t":n,ppt:Y,ssi:J,uti:ee},ae=te["openfunds"];var oe=ae},7861:function(e,t,a){"use strict";a.d(t,{A:function(){return i}});var o=a(94335);const r="https://openfunds.platform-api.alquant.com/",n=o.A.create({baseURL:r,headers:{Accept:"application/json"},timeout:3e4});var s=n,i=s},14760:function(e,t,a){"use strict";a.d(t,{R:function(){return it}});var o=a(85471),r=function(){var e=this,t=e._self._c;return t("div",{class:e.vueAppClasses,attrs:{id:"app"}},[t("router-view",{on:{setAppClasses:e.setAppClasses}})],1)},n=[],s=a(79988),i=a(84334),l={metaInfo:{changed(e){s.A.analytics().setCurrentScreen(e.title),s.A.analytics().logEvent("page_view")}},data(){return{vueAppClasses:[]}},computed:{orgId(){return"openfunds"}},watch:{"$store.state.theme"(e){this.toggleClassInBody(e)},"$vs.rtl"(e){document.documentElement.setAttribute("dir",e?"rtl":"ltr")}},mounted(){this.toggleClassInBody(i.A.theme),this.$store.commit("UPDATE_WINDOW_WIDTH",window.innerWidth);let e=.01*window.innerHeight;document.documentElement.style.setProperty("--vh",`${e}px`)},created(){let e=this.$vs.rtl?"rtl":"ltr";document.documentElement.setAttribute("dir",e),window.addEventListener("resize",this.handleWindowResize),window.addEventListener("scroll",this.handleScroll)},destroyed(){window.removeEventListener("resize",this.handleWindowResize),window.removeEventListener("scroll",this.handleScroll)},methods:{toggleClassInBody(e){"dark"==e?(document.body.className.match("theme-semi-dark")&&document.body.classList.remove("theme-semi-dark"),document.body.classList.add("theme-dark")):"semi-dark"==e?(document.body.className.match("theme-dark")&&document.body.classList.remove("theme-dark"),document.body.classList.add("theme-semi-dark")):(document.body.className.match("theme-dark")&&document.body.classList.remove("theme-dark"),document.body.className.match("theme-semi-dark")&&document.body.classList.remove("theme-semi-dark"))},setAppClasses(e){this.vueAppClasses.push(e)},handleWindowResize(){this.$store.commit("UPDATE_WINDOW_WIDTH",window.innerWidth),document.documentElement.style.setProperty("--vh",.01*window.innerHeight+"px")},handleScroll(){this.$store.commit("UPDATE_WINDOW_SCROLL_Y",window.scrollY)}}},d=l,u=a(81656),c=(0,u.A)(d,r,n,!1,null,null,null),m=c.exports,p=a(8333),h=a.n(p),g=a(75199);a(16075),a(67741),a(20378),a(55775),a(9595);(0,g.addI18n)("de",{Redo:"Redo",Undo:"Rückgängig machen",Cut:"Ausschneiden",Copy:"Kopieren",Paste:"Einfügen","Select all":"Alles auswählen","New document":"Neues Dokument",Ok:"Ok",Cancel:"Abbrechen","Visual aids":"Visuelle Hilfen",Bold:"Fett",Italic:"Kursiv",Underline:"Unterstrichen",Strikethrough:"Durchgestrichen",Superscript:"Hochgestellt",Subscript:"Tiefgestellt","Clear formatting":"Formatierung entfernen",Remove:"Entfernen","Align left":"Linksbündig ausrichten","Align center":"Zentrieren","Align right":"Rechtsbündig ausrichten","No alignment":"Keine Ausrichtung",Justify:"Blocksatz","Bullet list":"Aufzählung","Numbered list":"Nummerierte Liste","Decrease indent":"Einzug verkleinern","Increase indent":"Einzug vergrößern",Close:"Schließen",Formats:"Formate","Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.":"Ihr Browser unterstützt leider keinen direkten Zugriff auf die Zwischenablage. Bitte benutzen Sie die Tastenkombinationen Strg+X/C/V.",Headings:"Überschriften","Heading 1":"Überschrift 1","Heading 2":"Überschrift 2","Heading 3":"Überschrift 3","Heading 4":"Überschrift 4","Heading 5":"Überschrift 5","Heading 6":"Überschrift 6",Preformatted:"Vorformatiert",Div:"Div",Pre:"Pre",Code:"Code",Paragraph:"Absatz",Blockquote:"Blockzitat",Inline:"Zeichenformate",Blocks:"Blöcke","Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.":"Einfügen ist nun im unformatierten Textmodus. Inhalte werden ab jetzt als unformatierter Text eingefügt, bis Sie diese Einstellung wieder deaktivieren.",Fonts:"Schriftarten","Font sizes":"Schriftgrößen",Class:"Klasse","Browse for an image":"Bild...",OR:"ODER","Drop an image here":"Bild hier ablegen",Upload:"Hochladen","Uploading image":"Bild wird hochgeladen",Block:"Blocksatz",Align:"Ausrichtung",Default:"Standard",Circle:"Kreis",Disc:"Scheibe",Square:"Rechteck","Lower Alpha":"Lateinisches Alphabet in Kleinbuchstaben","Lower Greek":"Griechische Kleinbuchstaben","Lower Roman":"Kleiner römischer Buchstabe","Upper Alpha":"Lateinisches Alphabet in Großbuchstaben","Upper Roman":"Großer römischer Buchstabe","Anchor...":"Textmarke",Anchor:"Anker",Name:"Name",ID:"ID","ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.":"Die ID muss mit einem Buchstaben beginnen gefolgt von Buchstaben, Zahlen, Bindestrichen, Punkten, Doppelpunkten oder Unterstrichen.","You have unsaved changes are you sure you want to navigate away?":"Die Änderungen wurden noch nicht gespeichert. Sind Sie sicher, dass Sie diese Seite verlassen wollen?","Restore last draft":"Letzten Entwurf wiederherstellen","Special character...":"Sonderzeichen...","Special Character":"Sonderzeichen","Source code":"Quellcode","Insert/Edit code sample":"Codebeispiel einfügen/bearbeiten",Language:"Sprache","Code sample...":"Codebeispiel...","Left to right":"Von links nach rechts","Right to left":"Von rechts nach links",Title:"Titel",Fullscreen:"Vollbild",Action:"Aktion",Shortcut:"Tastenkombination",Help:"Hilfe",Address:"Adresse","Focus to menubar":"Fokus auf Menüleiste","Focus to toolbar":"Fokus auf Symbolleiste","Focus to element path":"Fokus auf Elementpfad","Focus to contextual toolbar":"Fokus auf kontextbezogene Symbolleiste","Insert link (if link plugin activated)":"Link einfügen (wenn Link-Plugin aktiviert ist)","Save (if save plugin activated)":"Speichern (wenn Save-Plugin aktiviert ist)","Find (if searchreplace plugin activated)":"Suchen (wenn Suchen/Ersetzen-Plugin aktiviert ist)","Plugins installed ({0}):":"Installierte Plugins ({0}):","Premium plugins:":"Premium-Plugins:","Learn more...":"Erfahren Sie mehr dazu...","You are using {0}":"Sie verwenden {0}",Plugins:"Plugins","Handy Shortcuts":"Praktische Tastenkombinationen","Horizontal line":"Horizontale Linie","Insert/edit image":"Bild einfügen/bearbeiten","Alternative description":"Alternative Beschreibung",Accessibility:"Barrierefreiheit","Image is decorative":"Bild ist dekorativ",Source:"Quelle",Dimensions:"Abmessungen","Constrain proportions":"Seitenverhältnis beibehalten",General:"Allgemein",Advanced:"Erweitert",Style:"Formatvorlage","Vertical space":"Vertikaler Raum","Horizontal space":"Horizontaler Raum",Border:"Rahmen","Insert image":"Bild einfügen","Image...":"Bild...","Image list":"Bildliste",Resize:"Skalieren","Insert date/time":"Datum/Uhrzeit einfügen","Date/time":"Datum/Uhrzeit","Insert/edit link":"Link einfügen/bearbeiten","Text to display":"Anzuzeigender Text",Url:"URL","Open link in...":"Link öffnen in...","Current window":"Aktuelles Fenster",None:"Keine","New window":"Neues Fenster","Open link":"Link öffnen","Remove link":"Link entfernen",Anchors:"Anker","Link...":"Link...","Paste or type a link":"Link einfügen oder eingeben","The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?":"Diese URL scheint eine E-Mail-Adresse zu sein. Möchten Sie das dazu benötigte mailto: voranstellen?","The URL you entered seems to be an external link. Do you want to add the required http:// prefix?":"Diese URL scheint ein externer Link zu sein. Möchten Sie das dazu benötigte http:// voranstellen?","The URL you entered seems to be an external link. Do you want to add the required https:// prefix?":"Die eingegebene URL scheint ein externer Link zu sein. Soll das fehlende https:// davor ergänzt werden?","Link list":"Linkliste","Insert video":"Video einfügen","Insert/edit video":"Video einfügen/bearbeiten","Insert/edit media":"Medien einfügen/bearbeiten","Alternative source":"Alternative Quelle","Alternative source URL":"URL der alternativen Quelle","Media poster (Image URL)":"Medienposter (Bild-URL)","Paste your embed code below:":"Fügen Sie Ihren Einbettungscode unten ein:",Embed:"Einbettung","Media...":"Medien...","Nonbreaking space":"Geschütztes Leerzeichen","Page break":"Seitenumbruch","Paste as text":"Als Text einfügen",Preview:"Vorschau",Print:"Drucken","Print...":"Drucken...",Save:"Speichern",Find:"Suchen","Replace with":"Ersetzen durch",Replace:"Ersetzen","Replace all":"Alle ersetzen",Previous:"Vorherige",Next:"Nächste","Find and Replace":"Suchen und Ersetzen","Find and replace...":"Suchen und ersetzen...","Could not find the specified string.":"Die angegebene Zeichenfolge wurde nicht gefunden.","Match case":"Groß-/Kleinschreibung beachten","Find whole words only":"Nur ganze Wörter suchen","Find in selection":"In Auswahl suchen","Insert table":"Tabelle einfügen","Table properties":"Tabelleneigenschaften","Delete table":"Tabelle löschen",Cell:"Zelle",Row:"Zeile",Column:"Spalte","Cell properties":"Zelleigenschaften","Merge cells":"Zellen verbinden","Split cell":"Zelle aufteilen","Insert row before":"Neue Zeile davor einfügen","Insert row after":"Neue Zeile danach einfügen","Delete row":"Zeile löschen","Row properties":"Zeileneigenschaften","Cut row":"Zeile ausschneiden","Cut column":"Spalte ausschneiden","Copy row":"Zeile kopieren","Copy column":"Spalte kopieren","Paste row before":"Zeile davor einfügen","Paste column before":"Spalte davor einfügen","Paste row after":"Zeile danach einfügen","Paste column after":"Spalte danach einfügen","Insert column before":"Neue Spalte davor einfügen","Insert column after":"Neue Spalte danach einfügen","Delete column":"Spalte löschen",Cols:"Spalten",Rows:"Zeilen",Width:"Breite",Height:"Höhe","Cell spacing":"Zellenabstand","Cell padding":"Zelleninnenabstand","Row clipboard actions":"Zeilen-Zwischenablage-Aktionen","Column clipboard actions":"Spalten-Zwischenablage-Aktionen","Table styles":"Tabellenstil","Cell styles":"Zellstil","Column header":"Spaltenkopf","Row header":"Zeilenkopf","Table caption":"Tabellenbeschriftung",Caption:"Beschriftung","Show caption":"Beschriftung anzeigen",Left:"Links",Center:"Zentriert",Right:"Rechts","Cell type":"Zelltyp",Scope:"Bereich",Alignment:"Ausrichtung","Horizontal align":"Horizontal ausrichten","Vertical align":"Vertikal ausrichten",Top:"Oben",Middle:"Mitte",Bottom:"Unten","Header cell":"Kopfzelle","Row group":"Zeilengruppe","Column group":"Spaltengruppe","Row type":"Zeilentyp",Header:"Kopfzeile",Body:"Inhalt",Footer:"Fußzeile","Border color":"Rahmenfarbe",Solid:"Durchgezogen",Dotted:"Gepunktet",Dashed:"Gestrichelt",Double:"Doppelt",Groove:"Gekantet",Ridge:"Eingeritzt",Inset:"Eingelassen",Outset:"Hervorstehend",Hidden:"Unsichtbar","Insert template...":"Vorlage einfügen...",Templates:"Vorlagen",Template:"Vorlage","Insert Template":"Vorlage einfügen","Text color":"Textfarbe","Background color":"Hintergrundfarbe","Custom...":"Benutzerdefiniert...","Custom color":"Benutzerdefinierte Farbe","No color":"Keine Farbe","Remove color":"Farbauswahl aufheben","Show blocks":"Blöcke anzeigen","Show invisible characters":"Unsichtbare Zeichen anzeigen","Word count":"Anzahl der Wörter",Count:"Anzahl",Document:"Dokument",Selection:"Auswahl",Words:"Wörter","Words: {0}":"Wortzahl: {0}","{0} words":"{0} Wörter",File:"Datei",Edit:"Bearbeiten",Insert:"Einfügen",View:"Ansicht",Format:"Format",Table:"Tabelle",Tools:"Werkzeuge","Powered by {0}":"Betrieben von {0}","Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help":"Rich-Text-Bereich. Drücken Sie Alt+F9 für das Menü. Drücken Sie Alt+F10 für die Symbolleiste. Drücken Sie Alt+0 für Hilfe.","Image title":"Bildtitel","Border width":"Rahmenbreite","Border style":"Rahmenstil",Error:"Fehler",Warn:"Warnung",Valid:"Gültig","To open the popup, press Shift+Enter":"Drücken Sie Umschalt+Eingabe, um das Popup-Fenster zu öffnen.","Rich Text Area":"Rich-Text-Area","Rich Text Area. Press ALT-0 for help.":"Rich-Text-Bereich. Drücken Sie Alt+0 für Hilfe.","System Font":"Betriebssystemschriftart","Failed to upload image: {0}":"Bild konnte nicht hochgeladen werden: {0}","Failed to load plugin: {0} from url {1}":"Plugin konnte nicht geladen werden: {0} von URL {1}","Failed to load plugin url: {0}":"Plugin-URL konnte nicht geladen werden: {0}","Failed to initialize plugin: {0}":"Plugin konnte nicht initialisiert werden: {0}",example:"Beispiel",Search:"Suchen",All:"Alle",Currency:"Währung",Text:"Text",Quotations:"Anführungszeichen",Mathematical:"Mathematisch","Extended Latin":"Erweitertes Latein",Symbols:"Symbole",Arrows:"Pfeile","User Defined":"Benutzerdefiniert","dollar sign":"Dollarzeichen","currency sign":"Währungssymbol","euro-currency sign":"Eurozeichen","colon sign":"Doppelpunkt","cruzeiro sign":"Cruzeirozeichen","french franc sign":"Franczeichen","lira sign":"Lirezeichen","mill sign":"Millzeichen","naira sign":"Nairazeichen","peseta sign":"Pesetazeichen","rupee sign":"Rupiezeichen","won sign":"Wonzeichen","new sheqel sign":"Schekelzeichen","dong sign":"Dongzeichen","kip sign":"Kipzeichen","tugrik sign":"Tugrikzeichen","drachma sign":"Drachmezeichen","german penny symbol":"Pfennigzeichen","peso sign":"Pesozeichen","guarani sign":"Guaranizeichen","austral sign":"Australzeichen","hryvnia sign":"Hrywnjazeichen","cedi sign":"Cedizeichen","livre tournois sign":"Livrezeichen","spesmilo sign":"Spesmilozeichen","tenge sign":"Tengezeichen","indian rupee sign":"Indisches Rupiezeichen","turkish lira sign":"Türkisches Lirazeichen","nordic mark sign":"Zeichen nordische Mark","manat sign":"Manatzeichen","ruble sign":"Rubelzeichen","yen character":"Yenzeichen","yuan character":"Yuanzeichen","yuan character, in hong kong and taiwan":"Yuanzeichen in Hongkong und Taiwan","yen/yuan character variant one":"Yen-/Yuanzeichen Variante 1",Emojis:"Emojis","Emojis...":"Emojis...","Loading emojis...":"Lade Emojis...","Could not load emojis":"Emojis konnten nicht geladen werden",People:"Menschen","Animals and Nature":"Tiere und Natur","Food and Drink":"Essen und Trinken",Activity:"Aktivität","Travel and Places":"Reisen und Orte",Objects:"Objekte",Flags:"Flaggen",Characters:"Zeichen","Characters (no spaces)":"Zeichen (ohne Leerzeichen)","{0} characters":"{0} Zeichen","Error: Form submit field collision.":"Fehler: Kollision der Formularbestätigungsfelder.","Error: No form element found.":"Fehler: Kein Formularelement gefunden.","Color swatch":"Farbpalette","Color Picker":"Farbwahl","Invalid hex color code: {0}":"Ungültiger Hexadezimal-Farbwert: {0}","Invalid input":"Ungültige Eingabe",R:"R","Red component":"Rotanteil",G:"G","Green component":"Grünanteil",B:"B","Blue component":"Blauanteil","#":"#","Hex color code":"Hexadezimal-Farbwert","Range 0 to 255":"Spanne 0 bis 255",Turquoise:"Türkis",Green:"Grün",Blue:"Blau",Purple:"Violett","Navy Blue":"Marineblau","Dark Turquoise":"Dunkeltürkis","Dark Green":"Dunkelgrün","Medium Blue":"Mittleres Blau","Medium Purple":"Mittelviolett","Midnight Blue":"Mitternachtsblau",Yellow:"Gelb",Orange:"Orange",Red:"Rot","Light Gray":"Hellgrau",Gray:"Grau","Dark Yellow":"Dunkelgelb","Dark Orange":"Dunkelorange","Dark Red":"Dunkelrot","Medium Gray":"Mittelgrau","Dark Gray":"Dunkelgrau","Light Green":"Hellgrün","Light Yellow":"Hellgelb","Light Red":"Hellrot","Light Purple":"Helllila","Light Blue":"Hellblau","Dark Purple":"Dunkellila","Dark Blue":"Dunkelblau",Black:"Schwarz",White:"Weiß","Switch to or from fullscreen mode":"Vollbildmodus umschalten","Open help dialog":"Hilfe-Dialog öffnen",history:"Historie",styles:"Stile",formatting:"Formatierung",alignment:"Ausrichtung",indentation:"Einrückungen",Font:"Schriftart",Size:"Schriftgröße","More...":"Mehr...","Select...":"Auswahl...",Preferences:"Einstellungen",Yes:"Ja",No:"Nein","Keyboard Navigation":"Tastaturnavigation",Version:"Version","Code view":"Code Ansicht","Open popup menu for split buttons":"Öffne Popup Menge um Buttons zu trennen","List Properties":"Liste Eigenschaften","List properties...":"Liste Eigenschaften","Start list at number":"Beginne Liste mit Nummer","Line height":"Liniendicke","Dropped file type is not supported":"Hereingezogener Dateityp wird nicht unterstützt","Loading...":"Wird geladen...","ImageProxy HTTP error: Rejected request":"Image Proxy HTTP Fehler: Abgewiesene Anfrage","ImageProxy HTTP error: Could not find Image Proxy":"Image Proxy HTTP Fehler: Kann Image Proxy nicht finden","ImageProxy HTTP error: Incorrect Image Proxy URL":"Image Proxy HTTP Fehler: Falsche Image Proxy URL","ImageProxy HTTP error: Unknown ImageProxy error":"Image Proxy HTTP Fehler: Unbekannter Image Proxy Fehler"}),(0,g.addI18n)("fr",{Redo:"Rétablir",Undo:"Annuler",Cut:"Couper",Copy:"Copier",Paste:"Coller","Select all":"Sélectionner tout","New document":"Nouveau document",Ok:"OK",Cancel:"Annuler","Visual aids":"Aides visuelles",Bold:"Gras",Italic:"Italique",Underline:"Souligné",Strikethrough:"Barré",Superscript:"Exposant",Subscript:"Indice","Clear formatting":"Effacer la mise en forme",Remove:"Retiré","Align left":"Aligner à gauche","Align center":"Centrer","Align right":"Aligner à droite","No alignment":"Aucun alignement",Justify:"Justifier","Bullet list":"Liste à puces","Numbered list":"Liste numérotée","Decrease indent":"Réduire le retrait","Increase indent":"Augmenter le retrait",Close:"Fermer",Formats:"Formats","Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.":"Votre navigateur ne supporte pas l’accès direct au presse-papiers. Merci d'utiliser les raccourcis clavier Ctrl+X/C/V.",Headings:"Titres","Heading 1":"Titre 1","Heading 2":"Titre 2","Heading 3":"Titre 3","Heading 4":"Titre 4","Heading 5":"Titre 5","Heading 6":"Titre 6",Preformatted:"Préformaté",Div:"Div",Pre:"Préformaté",Code:"Code",Paragraph:"Paragraphe",Blockquote:"Bloc de citation",Inline:"En ligne",Blocks:"Blocs","Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.":"Le collage est maintenant en mode texte brut. Les contenus seront collés sans retenir les formatages jusqu'à ce que vous désactivez cette option.",Fonts:"Polices","Font sizes":"Tailles de police",Class:"Classe","Browse for an image":"Rechercher une image",OR:"OU","Drop an image here":"Déposer une image ici",Upload:"Télécharger","Uploading image":"Téléversement d'une image",Block:"Bloc",Align:"Aligner",Default:"Par défaut",Circle:"Cercle",Disc:"Disque",Square:"Carré","Lower Alpha":"Alphabet en minuscules","Lower Greek":"Alphabet grec en minuscules","Lower Roman":"Chiffre romain inférieur","Upper Alpha":"Alphabet en majuscules","Upper Roman":"Chiffre romain supérieur","Anchor...":"Ancre...",Anchor:"Ancre",Name:"Nom",ID:"ID","ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.":"L'ID doit commencer par une lettre, suivie uniquement par des lettres, numéros, tirets, points, deux-points et underscores.","You have unsaved changes are you sure you want to navigate away?":"Vous avez des modifications non enregistrées, êtes-vous sûr de vouloir quitter la page ?","Restore last draft":"Restaurer le dernier brouillon","Special character...":"Caractère spécial...","Special Character":"Caractère spécial","Source code":"Code source","Insert/Edit code sample":"Insérer / modifier un bloc de code",Language:"Langue","Code sample...":"Exemple de code...","Left to right":"De gauche à droite","Right to left":"De droite à gauche",Title:"Titre",Fullscreen:"Plein écran",Action:"Action",Shortcut:"Raccourci",Help:"Aide",Address:"Adresse","Focus to menubar":"Mettre le focus sur la barre de menu","Focus to toolbar":"Mettre le focus sur la barre d'outils","Focus to element path":"Mettre le focus sur le chemin vers l'élément","Focus to contextual toolbar":"Mettre le focus sur la barre d'outils contextuelle","Insert link (if link plugin activated)":"Insérer un lien (si le plug-in link est activé)","Save (if save plugin activated)":"Enregistrer (si le plug-in save est activé)","Find (if searchreplace plugin activated)":"Rechercher (si le plug-in searchreplace est activé)","Plugins installed ({0}):":"Plug-ins installés ({0}) :","Premium plugins:":"Plug-ins premium :","Learn more...":"En savoir plus...","You are using {0}":"Vous utilisez {0}",Plugins:"Plug-ins","Handy Shortcuts":"Raccourcis utiles","Horizontal line":"Ligne horizontale","Insert/edit image":"Insérer/modifier image","Alternative description":"Description alternative",Accessibility:"Accessibilité","Image is decorative":"L'image est décorative",Source:"Source",Dimensions:"Dimensions","Constrain proportions":"Limiter les proportions",General:"Général",Advanced:"Options avancées",Style:"Style","Vertical space":"Espace vertical","Horizontal space":"Espace horizontal",Border:"Bordure","Insert image":"Insérer une image","Image...":"Image...","Image list":"Liste des images",Resize:"Redimensionner","Insert date/time":"Insérer date/heure","Date/time":"Date/heure","Insert/edit link":"Insérer/modifier lien","Text to display":"Texte à afficher",Url:"URL","Open link in...":"Ouvrir le lien dans...","Current window":"Fenêtre active",None:"Aucun","New window":"Nouvelle fenêtre","Open link":"Ouvrir le lien","Remove link":"Enlever le lien",Anchors:"Ancres","Link...":"Lien...","Paste or type a link":"Coller ou taper un lien","The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?":"L'URL que vous avez saisi semble être une adresse e-mail. Souhaitez-vous y ajouter le préfixe requis mailto: ?","The URL you entered seems to be an external link. Do you want to add the required http:// prefix?":"L'URL que vous avez saisi semble être un lien externe. Souhaitez-vous y ajouter le préfixe requis mailto: ?","The URL you entered seems to be an external link. Do you want to add the required https:// prefix?":"L'URL que vous avez saisie semble être un lien externe. Voulez-vous ajouter le préfixe https:// requis ?","Link list":"Liste des liens","Insert video":"Insérer une vidéo","Insert/edit video":"Insérer/modifier une vidéo","Insert/edit media":"Insérer/modifier un média","Alternative source":"Source alternative","Alternative source URL":"URL de la source alternative","Media poster (Image URL)":"Affiche de média (URL de l'image)","Paste your embed code below:":"Collez votre code incorporé ci-dessous :",Embed:"Incorporer","Media...":"Média...","Nonbreaking space":"Espace insécable","Page break":"Saut de page","Paste as text":"Coller comme texte",Preview:"Aperçu",Print:"Imprimer","Print...":"Imprimer...",Save:"Enregistrer",Find:"Rechercher","Replace with":"Remplacer par",Replace:"Remplacer","Replace all":"Remplacer tout",Previous:"Précédente",Next:"Suivante","Find and Replace":"Trouver et remplacer","Find and replace...":"Trouver et remplacer...","Could not find the specified string.":"Impossible de trouver la chaîne spécifiée.","Match case":"Respecter la casse","Find whole words only":"Mot entier","Find in selection":"Trouver dans la sélection","Insert table":"Insérer un tableau","Table properties":"Propriétés du tableau","Delete table":"Supprimer le tableau",Cell:"Cellule",Row:"Ligne",Column:"Colonne","Cell properties":"Propriétés de la cellule","Merge cells":"Fusionner les cellules","Split cell":"Diviser la cellule","Insert row before":"Insérer une ligne avant","Insert row after":"Insérer une ligne après","Delete row":"Supprimer la ligne","Row properties":"Propriétés de la ligne","Cut row":"Couper la ligne","Cut column":"Couper la colonne","Copy row":"Copier la ligne","Copy column":"Copier la colonne","Paste row before":"Coller la ligne avant","Paste column before":"Coller la colonne avant","Paste row after":"Coller la ligne après","Paste column after":"Coller la colonne après","Insert column before":"Insérer une colonne avant","Insert column after":"Insérer une colonne après","Delete column":"Supprimer la colonne",Cols:"Colonnes",Rows:"Lignes",Width:"Largeur",Height:"Hauteur","Cell spacing":"Espacement entre les cellules","Cell padding":"Marge intérieure des cellules","Row clipboard actions":"Actions du presse-papiers des lignes","Column clipboard actions":"Actions du presse-papiers des colonnes","Table styles":"Style tableau","Cell styles":"Type de cellule","Column header":"En-tête de colonne","Row header":"En-tête de ligne","Table caption":"Légende de tableau",Caption:"Légende","Show caption":"Afficher une légende",Left:"Gauche",Center:"Centre",Right:"Droite","Cell type":"Type de cellule",Scope:"Étendue",Alignment:"Alignement","Horizontal align":"Alignement horizontal","Vertical align":"Alignement vertical",Top:"En haut",Middle:"Au milieu",Bottom:"En bas","Header cell":"Cellule d'en-tête","Row group":"Groupe de lignes","Column group":"Groupe de colonnes","Row type":"Type de ligne",Header:"En-tête",Body:"Corps",Footer:"Pied de page","Border color":"Couleur de bordure",Solid:"Trait continu",Dotted:"Pointillé",Dashed:"Tirets",Double:"Deux traits continus",Groove:"Sculpté",Ridge:"Extrudé",Inset:"Incrusté",Outset:"Relief",Hidden:"Masqué","Insert template...":"Insérer un modèle...",Templates:"Modèles",Template:"Modèle","Insert Template":"Insérer le modèle","Text color":"Couleur du texte","Background color":"Couleur d'arrière-plan","Custom...":"Personnalisée...","Custom color":"Couleur personnalisée","No color":"Aucune couleur","Remove color":"Supprimer la couleur","Show blocks":"Afficher les blocs","Show invisible characters":"Afficher les caractères invisibles","Word count":"Nombre de mots",Count:"Total",Document:"Document",Selection:"Sélection",Words:"Mots","Words: {0}":"Mots : {0}","{0} words":"{0} mots",File:"Fichier",Edit:"Modifier",Insert:"Insérer",View:"Afficher",Format:"Format",Table:"Tableau",Tools:"Outils","Powered by {0}":"Avec {0}","Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help":"Zone de Texte Riche. Appuyez sur ALT-F9 pour le menu. Appuyez sur ALT-F10 pour la barre d'outils. Appuyez sur ALT-0 pour l'aide","Image title":"Titre d'image","Border width":"Épaisseur de la bordure","Border style":"Style de la bordure",Error:"Erreur",Warn:"Avertir",Valid:"Valide","To open the popup, press Shift+Enter":"Pour ouvrir la popup, appuyez sur Maj+Entrée","Rich Text Area":"Zone de Texte Riche","Rich Text Area. Press ALT-0 for help.":"Zone de Texte Riche. Appuyez sur ALT-0 pour l'aide.","System Font":"Police système","Failed to upload image: {0}":"Échec d'envoi de l'image : {0}","Failed to load plugin: {0} from url {1}":"Échec de chargement du plug-in : {0} à partir de l’URL {1}","Failed to load plugin url: {0}":"Échec de chargement de l'URL du plug-in : {0}","Failed to initialize plugin: {0}":"Échec d'initialisation du plug-in : {0}",example:"exemple",Search:"Rechercher",All:"Tout",Currency:"Devise",Text:"Texte",Quotations:"Citations",Mathematical:"Opérateurs mathématiques","Extended Latin":"Latin étendu",Symbols:"Symboles",Arrows:"Flèches","User Defined":"Défini par l'utilisateur","dollar sign":"Symbole dollar","currency sign":"Symbole devise","euro-currency sign":"Symbole euro","colon sign":"Symbole colón","cruzeiro sign":"Symbole cruzeiro","french franc sign":"Symbole franc français","lira sign":"Symbole lire","mill sign":"Symbole millième","naira sign":"Symbole naira","peseta sign":"Symbole peseta","rupee sign":"Symbole roupie","won sign":"Symbole won","new sheqel sign":"Symbole nouveau chékel","dong sign":"Symbole dong","kip sign":"Symbole kip","tugrik sign":"Symbole tougrik","drachma sign":"Symbole drachme","german penny symbol":"Symbole pfennig","peso sign":"Symbole peso","guarani sign":"Symbole guarani","austral sign":"Symbole austral","hryvnia sign":"Symbole hryvnia","cedi sign":"Symbole cedi","livre tournois sign":"Symbole livre tournois","spesmilo sign":"Symbole spesmilo","tenge sign":"Symbole tenge","indian rupee sign":"Symbole roupie indienne","turkish lira sign":"Symbole lire turque","nordic mark sign":"Symbole du mark nordique","manat sign":"Symbole manat","ruble sign":"Symbole rouble","yen character":"Sinogramme Yen","yuan character":"Sinogramme Yuan","yuan character, in hong kong and taiwan":"Sinogramme Yuan, Hong Kong et Taiwan","yen/yuan character variant one":"Sinogramme Yen/Yuan, première variante",Emojis:"Émojis","Emojis...":"Émojis...","Loading emojis...":"Chargement des emojis...","Could not load emojis":"Impossible de charger les emojis",People:"Personnes","Animals and Nature":"Animaux & nature","Food and Drink":"Nourriture & boissons",Activity:"Activité","Travel and Places":"Voyages & lieux",Objects:"Objets",Flags:"Drapeaux",Characters:"Caractères","Characters (no spaces)":"Caractères (espaces non compris)","{0} characters":"{0} caractères","Error: Form submit field collision.":"Erreur : conflit de champs lors de la soumission du formulaire.","Error: No form element found.":"Erreur : aucun élément de formulaire trouvé.","Color swatch":"Échantillon de couleurs","Color Picker":"Sélecteur de couleurs","Invalid hex color code: {0}":"Code couleur hexadécimal invalide : {0}","Invalid input":"Entrée invalide",R:"R","Red component":"Composant rouge",G:"V","Green component":"Composant vert",B:"B","Blue component":"Composant bleu","#":"#","Hex color code":"Code couleur hexadécimal","Range 0 to 255":"Plage de 0 à 255",Turquoise:"Turquoise",Green:"Vert",Blue:"Bleu",Purple:"Violet","Navy Blue":"Bleu marine","Dark Turquoise":"Turquoise foncé","Dark Green":"Vert foncé","Medium Blue":"Bleu moyen","Medium Purple":"Violet moyen","Midnight Blue":"Bleu de minuit",Yellow:"Jaune",Orange:"Orange",Red:"Rouge","Light Gray":"Gris clair",Gray:"Gris","Dark Yellow":"Jaune foncé","Dark Orange":"Orange foncé","Dark Red":"Rouge foncé","Medium Gray":"Gris moyen","Dark Gray":"Gris foncé","Light Green":"Vert clair","Light Yellow":"Jaune clair","Light Red":"Rouge clair","Light Purple":"Violet clair","Light Blue":"Bleu clair","Dark Purple":"Violet foncé","Dark Blue":"Bleu foncé",Black:"Noir",White:"Blanc","Switch to or from fullscreen mode":"Passer en ou quitter le mode plein écran","Open help dialog":"Ouvrir la boîte de dialogue d'aide",history:"historique",styles:"styles",formatting:"mise en forme",alignment:"alignement",indentation:"retrait",Font:"Police",Size:"Taille","More...":"Plus...","Select...":"Sélectionner...",Preferences:"Préférences",Yes:"Oui",No:"Non","Keyboard Navigation":"Navigation au clavier",Version:"Version","Code view":"Affichage du code","Open popup menu for split buttons":"Ouvrir le menu contextuel pour les boutons partagés","List Properties":"Propriétés de la liste","List properties...":"Lister les propriétés...","Start list at number":"Liste de départ au numéro","Line height":"Hauteur de la ligne","Dropped file type is not supported":"Le type de fichier déposé n'est pas pris en charge","Loading...":"Chargement...","ImageProxy HTTP error: Rejected request":"Erreur HTTP d'ImageProxy : Requête rejetée","ImageProxy HTTP error: Could not find Image Proxy":"Erreur HTTP d'ImageProxy : Impossible de trouver ImageProxy","ImageProxy HTTP error: Incorrect Image Proxy URL":"Erreur HTTP d'ImageProxy : URL de ImageProxy incorrecte","ImageProxy HTTP error: Unknown ImageProxy error":"Erreur HTTP d'ImageProxy : Erreur ImageProxy inconnue"}),(0,g.addI18n)("pt",{Redo:"Refazer",Undo:"Desfazer",Cut:"Cortar",Copy:"Copiar",Paste:"Colar","Select all":"Selecionar tudo","New document":"Novo documento",Ok:"OK",Cancel:"Cancelar","Visual aids":"Ajuda visual",Bold:"Negrito",Italic:"Itálico",Underline:"Sublinhado",Strikethrough:"Tachado",Superscript:"Sobrescrito",Subscript:"Subscrito","Clear formatting":"Limpar formatação",Remove:"Remover","Align left":"Alinhar à esquerda","Align center":"Centralizar","Align right":"Alinhar à direita","No alignment":"Sem alinhamento",Justify:"Justificar","Bullet list":"Lista com marcadores","Numbered list":"Lista numerada","Decrease indent":"Diminuir recuo","Increase indent":"Aumentar recuo",Close:"Fechar",Formats:"Formatos","Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.":"Seu navegador não suporta acesso direto à área de transferência. Use os atalhos Ctrl+X/C/V.",Headings:"Cabeçalhos","Heading 1":"Cabeçalho 1","Heading 2":"Cabeçalho 2","Heading 3":"Cabeçalho 3","Heading 4":"Cabeçalho 4","Heading 5":"Cabeçalho 5","Heading 6":"Cabeçalho 6",Preformatted:"Pré-formatado",Div:"Div",Pre:"Pré",Code:"Código",Paragraph:"Parágrafo",Blockquote:"Citação",Inline:"Em linha",Blocks:"Blocos","Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.":"O modo de colagem é agora texto simples. O conteúdo será colado como texto até que essa opção seja desativada.",Fonts:"Fontes","Font sizes":"Tamanhos de fonte",Class:"Classe","Browse for an image":"Procurar imagem",OR:"OU","Drop an image here":"Solte uma imagem aqui",Upload:"Carregar","Uploading image":"Carregando imagem",Block:"Bloco",Align:"Alinhar",Default:"Padrão",Circle:"Círculo",Disc:"Disco",Square:"Quadrado","Lower Alpha":"Alfabeto minúsculo","Lower Greek":"Alfabeto grego minúsculo","Lower Roman":"Algarismos romanos minúsculos","Upper Alpha":"Alfabeto maiúsculo","Upper Roman":"Algarismos romanos maiúsculos","Anchor...":"Âncora...",Anchor:"Âncora",Name:"Nome",ID:"ID","ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.":"O ID deve começar com uma letra, seguido apenas por letras, números, hífens, pontos, dois pontos ou sublinhados.","You have unsaved changes are you sure you want to navigate away?":"Você tem alterações não salvas. Tem certeza de que deseja sair?","Restore last draft":"Restaurar rascunho","Special character...":"Caractere especial...","Special Character":"Caractere especial","Source code":"Código-fonte","Insert/Edit code sample":"Inserir/Editar amostra de código",Language:"Idioma","Code sample...":"Exemplo de código...","Left to right":"Da esquerda para a direita","Right to left":"Da direita para a esquerda",Title:"Título",Fullscreen:"Tela cheia",Action:"Ação",Shortcut:"Atalho",Help:"Ajuda",Address:"Endereço","Focus to menubar":"Foco na barra de menus","Focus to toolbar":"Foco na barra de ferramentas","Focus to element path":"Foco no caminho do elemento","Focus to contextual toolbar":"Foco na barra de ferramentas contextual","Insert link (if link plugin activated)":"Inserir link (se o plugin de link estiver ativado)","Save (if save plugin activated)":"Salvar (se o plugin de salvar estiver ativado)","Find (if searchreplace plugin activated)":"Procurar (se o plugin de busca estiver ativado)","Plugins installed ({0}):":"Plugins instalados ({0}):","Premium plugins:":"Plugins premium:","Learn more...":"Saiba mais...","You are using {0}":"Você está usando {0}",Plugins:"Plugins","Handy Shortcuts":"Atalhos úteis","Horizontal line":"Linha horizontal","Insert/edit image":"Inserir/editar imagem","Alternative description":"Descrição alternativa",Accessibility:"Acessibilidade","Image is decorative":"Imagem decorativa",Source:"Fonte",Dimensions:"Dimensões","Constrain proportions":"Manter proporções",General:"Geral",Advanced:"Avançado",Style:"Estilo","Vertical space":"Espaço vertical","Horizontal space":"Espaço horizontal",Border:"Borda","Insert image":"Inserir imagem","Image...":"Imagem...","Image list":"Lista de imagens",Resize:"Redimensionar","Insert date/time":"Inserir data/hora","Date/time":"Data/hora","Insert/edit link":"Inserir/editar link","Text to display":"Texto a exibir",Url:"URL","Open link in...":"Abrir link em...","Current window":"Janela atual",None:"Nenhum","New window":"Nova janela","Open link":"Abrir link","Remove link":"Remover link",Anchors:"Âncoras","Link...":"Link...","Paste or type a link":"Cole ou digite um link","The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?":"A URL inserida parece ser um endereço de e-mail. Deseja adicionar o prefixo mailto:?","The URL you entered seems to be an external link. Do you want to add the required http:// prefix?":"A URL inserida parece ser um link externo. Deseja adicionar o prefixo http://?","The URL you entered seems to be an external link. Do you want to add the required https:// prefix?":"A URL inserida parece ser um link externo. Deseja adicionar o prefixo https://?","Link list":"Lista de links","Insert video":"Inserir vídeo","Insert/edit video":"Inserir/editar vídeo","Insert/edit media":"Inserir/editar mídia","Alternative source":"Fonte alternativa","Alternative source URL":"URL da fonte alternativa","Media poster (Image URL)":"Pôster de mídia (URL da imagem)","Paste your embed code below:":"Cole seu código incorporado abaixo:",Embed:"Incorporar","Media...":"Mídia...","Nonbreaking space":"Espaço inquebrável","Page break":"Quebra de página","Paste as text":"Colar como texto",Preview:"Visualizar",Print:"Imprimir","Print...":"Imprimir...",Save:"Salvar",Find:"Procurar","Replace with":"Substituir por",Replace:"Substituir","Replace all":"Substituir tudo",Previous:"Anterior",Next:"Próximo","Find and Replace":"Procurar e Substituir","Find and replace...":"Procurar e substituir...","Could not find the specified string.":"Não foi possível encontrar a string especificada.","Match case":"Diferenciar maiúsculas de minúsculas","Find whole words only":"Procurar apenas palavras inteiras","Find in selection":"Procurar na seleção","Insert table":"Inserir tabela","Table properties":"Propriedades da tabela","Delete table":"Excluir tabela",Cell:"Célula",Row:"Linha",Column:"Coluna","Cell properties":"Propriedades da célula","Merge cells":"Mesclar células","Split cell":"Dividir célula","Insert row before":"Inserir linha antes","Insert row after":"Inserir linha depois","Delete row":"Excluir linha","Row properties":"Propriedades da linha","Cut row":"Cortar linha","Cut column":"Cortar coluna","Copy row":"Copiar linha","Copy column":"Copiar coluna","Paste row before":"Colar linha antes","Paste column before":"Colar coluna antes","Paste row after":"Colar linha depois","Paste column after":"Colar coluna depois","Insert column before":"Inserir coluna antes","Insert column after":"Inserir coluna depois","Delete column":"Excluir coluna",Cols:"Colunas",Rows:"Linhas",Width:"Largura",Height:"Altura","Cell spacing":"Espaçamento entre células","Cell padding":"Preenchimento da célula","Row clipboard actions":"Ações da linha na área de transferência","Column clipboard actions":"Ações da coluna na área de transferência","Table styles":"Estilos de tabela","Cell styles":"Estilos de célula","Column header":"Cabeçalho de coluna","Row header":"Cabeçalho de linha","Table caption":"Legenda da tabela",Caption:"Legenda","Show caption":"Mostrar legenda",Left:"Esquerda",Center:"Centro",Right:"Direita","Cell type":"Tipo de célula",Scope:"Âmbito",Alignment:"Alinhamento","Horizontal align":"Alinhamento horizontal","Vertical align":"Alinhamento vertical",Top:"Topo",Middle:"Meio",Bottom:"Fundo","Header cell":"Célula de cabeçalho","Row group":"Grupo de linhas","Column group":"Grupo de colunas","Row type":"Tipo de linha",Header:"Cabeçalho",Body:"Corpo",Footer:"Rodapé","Border color":"Cor da borda",Solid:"Sólido",Dotted:"Pontilhado",Dashed:"Tracejado",Double:"Duplo",Groove:"Sulcado",Ridge:"Crista",Inset:"Inserido",Outset:"Sobressalente",Hidden:"Oculto","Insert template...":"Inserir modelo...",Templates:"Modelos",Template:"Modelo","Insert Template":"Inserir modelo","Text color":"Cor do texto","Background color":"Cor de fundo","Custom...":"Personalizado...","Custom color":"Cor personalizada","No color":"Sem cor","Remove color":"Remover cor","Show blocks":"Mostrar blocos","Show invisible characters":"Mostrar caracteres invisíveis","Word count":"Contagem de palavras",Count:"Contagem",Document:"Documento",Selection:"Seleção",Words:"Palavras","Words: {0}":"Palavras: {0}","{0} words":"{0} palavras",File:"Arquivo",Edit:"Editar",Insert:"Inserir",View:"Visualizar",Format:"Formatar",Table:"Tabela",Tools:"Ferramentas","Powered by {0}":"Impulsionado por {0}","Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help":"Área de texto rico. Pressione ALT-F9 para o menu. Pressione ALT-F10 para a barra de ferramentas. Pressione ALT-0 para ajuda.","Image title":"Título da imagem","Border width":"Largura da borda","Border style":"Estilo da borda",Error:"Erro",Warn:"Aviso",Valid:"Válido","To open the popup, press Shift+Enter":"Para abrir o popup, pressione Shift+Enter.","Rich Text Area":"Área de texto rico","Rich Text Area. Press ALT-0 for help.":"Área de texto rico. Pressione ALT-0 para ajuda.","System Font":"Fonte do sistema","Failed to upload image: {0}":"Falha ao carregar a imagem: {0}","Failed to load plugin: {0} from url {1}":"Falha ao carregar o plugin: {0} da URL {1}","Failed to load plugin url: {0}":"Falha ao carregar a URL do plugin: {0}","Failed to initialize plugin: {0}":"Falha ao inicializar o plugin: {0}",example:"exemplo",Search:"Pesquisar",All:"Todos",Currency:"Moeda",Text:"Texto",Quotations:"Citações",Mathematical:"Matemática","Extended Latin":"Latim estendido",Symbols:"Símbolos",Arrows:"Setas","User Defined":"Definido pelo usuário","dollar sign":"Sinal de dólar","currency sign":"Sinal de moeda","euro-currency sign":"Sinal de euro","colon sign":"Sinal de colón","cruzeiro sign":"Sinal de cruzeiro","french franc sign":"Sinal de franco francês","lira sign":"Sinal de lira","mill sign":"Sinal de milésimo","naira sign":"Sinal de naira","peseta sign":"Sinal de peseta","rupee sign":"Sinal de rúpia","won sign":"Sinal de won","new sheqel sign":"Sinal de novo shekel","dong sign":"Sinal de dong","kip sign":"Sinal de kip","tugrik sign":"Sinal de tugrik","drachma sign":"Sinal de dracma","german penny symbol":"Símbolo de pfennig","peso sign":"Sinal de peso","guarani sign":"Sinal de guarani","austral sign":"Sinal de austral","hryvnia sign":"Sinal de hryvnia","cedi sign":"Sinal de cedi","livre tournois sign":"Sinal de livre tournois","spesmilo sign":"Sinal de spesmilo","tenge sign":"Sinal de tenge","indian rupee sign":"Sinal de rúpia indiana","turkish lira sign":"Sinal de lira turca","nordic mark sign":"Sinal de marco nórdico","manat sign":"Sinal de manat","ruble sign":"Sinal de rublo","yen character":"Caractere yen","yuan character":"Caractere yuan","yuan character, in hong kong and taiwan":"Caractere yuan, em Hong Kong e Taiwan","yen/yuan character variant one":"Caractere yen/yuan variante um",Emojis:"Emojis","Emojis...":"Emojis...","Loading emojis...":"Carregando emojis...","Could not load emojis":"Não foi possível carregar os emojis",People:"Pessoas","Animals and Nature":"Animais e natureza","Food and Drink":"Comida e bebida",Activity:"Atividade","Travel and Places":"Viagem e lugares",Objects:"Objetos",Flags:"Bandeiras",Characters:"Caracteres","Characters (no spaces)":"Caracteres (sem espaços)","{0} characters":"{0} caracteres","Error: Form submit field collision.":"Erro: colisão de campo ao enviar formulário.","Error: No form element found.":"Erro: nenhum elemento de formulário encontrado.","Color swatch":"Paleta de cores","Color Picker":"Seletor de cores","Invalid hex color code: {0}":"Código de cor hexadecimal inválido: {0}","Invalid input":"Entrada inválida",R:"R","Red component":"Componente vermelho",G:"G","Green component":"Componente verde",B:"B","Blue component":"Componente azul","#":"#","Hex color code":"Código de cor hexadecimal","Range 0 to 255":"Faixa de 0 a 255",Turquoise:"Turquesa",Green:"Verde",Blue:"Azul",Purple:"Roxo","Navy Blue":"Azul marinho","Dark Turquoise":"Turquesa escuro","Dark Green":"Verde escuro","Medium Blue":"Azul médio","Medium Purple":"Roxo médio","Midnight Blue":"Azul meia-noite",Yellow:"Amarelo",Orange:"Laranja",Red:"Vermelho","Light Gray":"Cinza claro",Gray:"Cinza","Dark Yellow":"Amarelo escuro","Dark Orange":"Laranja escuro","Dark Red":"Vermelho escuro","Medium Gray":"Cinza médio","Dark Gray":"Cinza escuro","Light Green":"Verde claro","Light Yellow":"Amarelo claro","Light Red":"Vermelho claro","Light Purple":"Roxo claro","Light Blue":"Azul claro","Dark Purple":"Roxo escuro","Dark Blue":"Azul escuro",Black:"Preto",White:"Branco","Switch to or from fullscreen mode":"Alternar para ou sair do modo tela cheia","Open help dialog":"Abrir a caixa de diálogo de ajuda",history:"histórico",styles:"estilos",formatting:"formatação",alignment:"alinhamento",indentation:"recuo",Font:"Fonte",Size:"Tamanho","More...":"Mais...","Select...":"Selecionar...",Preferences:"Preferências",Yes:"Sim",No:"Não","Keyboard Navigation":"Navegação por teclado",Version:"Versão","Code view":"Visualização de código","Open popup menu for split buttons":"Abrir o menu contextual para botões divididos","List Properties":"Propriedades da lista","List properties...":"Listar propriedades...","Start list at number":"Começar lista no número","Line height":"Altura da linha","Dropped file type is not supported":"Tipo de arquivo arrastado não é suportado","Loading...":"Carregando...","ImageProxy HTTP error: Rejected request":"Erro HTTP do ImageProxy: Solicitação rejeitada","ImageProxy HTTP error: Could not find Image Proxy":"Erro HTTP do ImageProxy: Não foi possível encontrar o Image Proxy","ImageProxy HTTP error: Incorrect Image Proxy URL":"Erro HTTP do ImageProxy: URL incorreta do Image Proxy","ImageProxy HTTP error: Unknown ImageProxy error":"Erro HTTP do ImageProxy: Erro desconhecido do Image Proxy"});var f=a(61445),v=a(7861),b=(a(75126),a(33262),a(31163),a(34688));const w={apiKey:"AIzaSyCCkv0KrRxUiogAt7VUlrIpJ2Pt9edOosg",authDomain:"openfunds-platform-369613.firebaseapp.com",databaseURL:"",projectId:"openfunds-platform-369613",storageBucket:"openfunds-platform-369613.appspot.com",messagingSenderId:"876467553323",appId:"1:876467553323:web:0f803f453815eef750566e",measurementId:"G-QEVDWZHV9R"};s.A.initializeApp(w),s.A.analytics(),o["default"].prototype.$analytics=s.A.analytics(),o["default"].prototype.$analytics.logEvent=function(e,t,a){t?.message&&(t.message=t.message.slice(0,100)),(0,b.$s)(this._delegate,e,t,a)};var A,y,S=a(96986),C={name:"FeatherIcon",functional:!0,props:{icon:{required:!0},svgClasses:{type:[String,Object,Array],default:""},badge:{}},render(e,{props:t,data:a}){a.staticClass?a.staticClass=a.staticClass+" feather-icon select-none relative":a.staticClass="feather-icon select-none relative";const o=e(S[t.icon],{class:t.svgClasses}),r=e("span",{class:"feather-icon-badge bg-primary text-white h-5 w-5 absolute rounded-full text-xs flex items-center justify-center",style:"top: -7px; right: -5px"},[t.badge]),n=[o];return t.badge&&n.push(r),e("span",a,n)}},P=C,k=(0,u.A)(P,A,y,!1,null,null,null),I=k.exports,D=function(){var e=this,t=e._self._c;return t("div",{ref:"coninput",staticClass:"vs-component vs-con-input-label vs-input",class:[`vs-input-${e.color}`,{isFocus:e.isFocus,"input-icon-validate-success":e.success,"input-icon-validate-danger":e.danger,"input-icon-validate-warning":e.warning,"is-label-placeholder":e.labelPlaceholder}],style:e.styleLabel},[!e.labelPlaceholder&&e.label?t("label",{staticClass:"vs-input--label",attrs:{for:""},on:{click:e.focusInput}},[e._v(e._s(e.label))]):e._e(),t("div",{staticClass:"vs-con-input"},[e.allowTinyMceRendering?t("editor-tinymce",e._g({ref:"vsinput",staticClass:"vs-inputx vs-input--input overflow-y-auto cursor-text reset-ul-ol-style",class:[e.size,{hasValue:""!==e.value,hasIcon:e.icon,"icon-after-input":e.iconAfter}],style:e.style,attrs:{init:{license_key:"gpl",menubar:!1,plugins:e.plugins,toolbar:e.toolbar,font_size_formats:"6px 7px 8px 9px 10px 11px 12px 13px 14px 16px 18px 20px 22px 24px 30px 36px 48px",skin:!1,content_css:!1,language:e.$i18n.locale,paste_as_text:!0},inline:"",autofocus:e.autofocus,placeholder:null,value:e.value,type:e.$attrs.type?e.$attrs.type:"text"}},e.listeners)):e._e(),t("transition",{attrs:{name:"placeholderx"}},[e.isValue&&(e.labelPlaceholder||e.$attrs.placeholder)?t("span",{ref:"spanplaceholder",staticClass:"input-span-placeholder vs-input--placeholder",class:[e.labelPlaceholder&&e.size,e.size,{"vs-placeholder-label":e.labelPlaceholder}],style:e.styleLabel,on:{click:e.focusInput}},[e._v(" "+e._s(e.$attrs.placeholder||e.labelPlaceholder)+" ")]):e._e()]),e.icon?t("vs-icon",{staticClass:"icon-inputx notranslate vs-input--icon",class:{"icon-after":e.iconAfter,"icon-no-border":e.iconNoBorder},attrs:{"icon-pack":e.iconPack,icon:e.icon},on:{click:function(t){e.focusInput(),e.$emit("icon-click")}}}):e._e(),t("transition",{attrs:{name:"icon-validate"}},[e.success||e.danger||e.warning?t("span",{staticClass:"input-icon-validate vs-input--icon-validate",class:{"icon-before":e.iconAfter}},[t("vs-icon",{class:{"icon-before":e.iconAfter},attrs:{"icon-pack":e.valIconPack,icon:e.getIcon}})],1):e._e()])],1),t("transition-group",{on:{"before-enter":e.beforeEnter,enter:e.enter,leave:e.leave}},[e.success?t("div",{key:"success",staticClass:"con-text-validation vs-input--text-validation"},[t("span",{staticClass:"span-text-validation span-text-validation-success vs-input--text-validation-span"},[e._v(" "+e._s(e.successText)+" ")])]):e.danger?t("div",{key:"danger",staticClass:"con-text-validation span-text-validation-danger vs-input--text-validation-span"},[t("span",{staticClass:"span-text-validation"},[e._v(" "+e._s(e.dangerText)+" ")])]):e.warning?t("div",{key:"warning",staticClass:"con-text-validation span-text-validation-warning vs-input--text-validation-span"},[t("span",{staticClass:"span-text-validation"},[e._v(" "+e._s(e.warningText)+" ")])]):e._e(),e.descriptionText?t("div",{key:"description",staticClass:"con-text-validation span-text-validation vs-input--text-validation-span"},[t("span",{staticClass:"span-text-validation"},[e._v(" "+e._s(e.descriptionText)+" ")])]):e._e()])],1)},E=[],R=a(65905),T={name:"TinyMceInput",inject:{elForm:{default:""},elFormItem:{default:""}},inheritAttrs:!1,props:{value:{default:"",type:[String,Number]},labelPlaceholder:{default:null,type:[String,Number]},label:{default:null,type:[String,Number]},autofocus:{default:!1,type:[Boolean,String]},icon:{default:null,type:String},iconAfter:{default:!1,type:[Boolean,String]},iconNoBorder:{default:!1,type:Boolean},iconPack:{default:"material-icons",type:String},color:{default:"primary",type:String},success:{default:!1,type:Boolean},danger:{default:!1,type:Boolean},warning:{default:!1,type:Boolean},successText:{default:null,type:String},dangerText:{default:null,type:String},warningText:{default:null,type:String},descriptionText:{default:null,type:String},size:{default:"normal",type:String},valIconPack:{default:"material-icons",type:String},valIconSuccess:{default:null,type:String},valIconDanger:{default:null,type:String},valIconWarning:{default:null,type:String},rows:{default:1,type:[Number,String]},maxRows:{default:3,type:[Number,String]},disabled:{default:!1,type:Boolean},editorWithTextAlignment:{default:!0,type:Boolean},editorWithList:{default:!0,type:Boolean}},data:()=>({isFocus:!1,allowTinyMceRendering:!1}),computed:{height(){return 19.6+21*this.rows},maxHeight(){return 19.6+21*(this.maxRows>this.rows?this.maxRows:this.rows)},style(){return{border:`1px solid ${this.isFocus?R.A.getColor(this.color,1):"rgba(0, 0, 0,.2)"}`,"max-height":`${this.maxHeight}px`,"min-height":`${this.height}px`}},plugins(){return this.editorWithList?"link lists":"link"},toolbar(){return`bold italic underline | fontsize |${this.editorWithTextAlignment?" alignleft aligncenter alignright alignjustify |":""} ${this.editorWithList?" numlist bullist |":""} link`},styleLabel(){return{color:this.isFocus?R.A.getColor(this.color,1):null}},listeners(){return{...this.$listeners,input:e=>{this.$emit("input",e)},focus:e=>{this.$emit("focus",e),this.changeFocus(!0)},blur:e=>{this.$emit("blur",e),this.changeFocus(!1)},onFocusIn:()=>{const e=Array.from(document.getElementsByClassName("tox-tinymce-inline")).find((e=>"flex"===e.style["display"])),t=e.getBoundingClientRect();t.height>50&&(e.style["width"]=`${parseInt(t.width)+4}px`)}}},isValue(){return!!this.labelPlaceholder||!this.value},getIcon(){return this.danger?this.valIconDanger:this.warning?this.valIconWarning:this.success?this.valIconSuccess:""}},watch:{disabled(e){this.$refs["vsinput"].editor.mode.set(e?"readonly":"design")}},async mounted(){await this.$nextTick(),this.allowTinyMceRendering=!0},methods:{changeFocus(e){this.isFocus=e},beforeEnter(e){e.style.height=0},enter(e,t){let a=e.scrollHeight;e.style.height=a+"px",t()},leave:function(e){e.style.height="0px"},focusInput(){this.$refs.vsinput.focus()}}},M=T,q=(0,u.A)(M,D,E,!1,null,null,null),x=q.exports,z=a(9932),F=function(){var e=this,t=e._self._c;return t("ul",{staticClass:"list"},e._l(e.list,(function(a,o){return t("li",{key:o,staticClass:"list__item"},[t("feather-icon",{staticClass:"w-5 h-5 mr-1",attrs:{icon:e.rtlSpecificIcon}}),t("span",{domProps:{innerHTML:e._s(a)}})],1)})),0)},B=[],L={name:"VxList",props:{list:{type:Array,required:!0},icon:{type:String,default:"ChevronsRightIcon"}},computed:{rtlSpecificIcon(){let e=this.icon;return this.$vs.rtl&&(e.includes("Left")?e=e.replace("Left","Right"):e.includes("Right")&&(e=e.replace("Right","Left"))),e}}},N=L,U=(0,u.A)(N,F,B,!1,null,null,null),V=U.exports,O=function(){var e=this,t=e._self._c;return t("transition",{attrs:{name:e.invert?e.vertical?"fade-tab-vertical-invert":"fade-tab-invert":e.vertical?"fade-tab-vertical":"fade-tab"}},[e.active?t("div",{staticClass:"con-tab vs-tabs--content"},[e._t("default")],2):e._e()])},G=[],_={name:"VxTab",inheritAttrs:!1,props:{label:{default:"Label",type:String},icon:{default:"",type:String},tag:{default:"",type:String},iconPack:{type:String,default:"material-icons"},iconSize:{type:String},iconTooltipContent:{type:String}},data:()=>({vertical:!1,active:!1,id:null,invert:!1}),watch:{label(e){this.$parent.children[this.id].label=e},icon(e){this.$parent.children[this.id].icon=e},iconTooltipContent(e){this.$parent.children[this.id].iconTooltipContent=e},$attrs(e){this.$parent.children[this.id].attrs=e}},mounted(){this.id=this.$parent.children.length,this.$parent.children.push({label:this.label,icon:this.icon,iconPack:this.iconPack,iconSize:this.iconSize,iconTooltipContent:this.iconTooltipContent,tag:this.tag,id:this.$parent.children.length,listeners:this.$listeners,attrs:this.$attrs})}},H=_,j=(0,u.A)(H,O,G,!1,null,null,null),W=j.exports,Q=function(){var e=this,t=e._self._c;return t("div",{staticClass:"con-vs-tabs vs-tabs",class:[`vs-tabs-${e.color}`,`vs-tabs-position-${e.position}`]},[t("div",{staticClass:"con-ul-tabs"},[t("ul",{ref:"ul",staticClass:"ul-tabs vs-tabs--ul",class:[`ul-tabs-${e.alignment}`]},e._l(e.children,(function(a,o){return t("li",{key:o,ref:"li",refInFor:!0,staticClass:"vs-tabs--li",class:{activeChild:e.childActive==o},style:e.childActive==o?e.styleTab:{},on:{mouseover:function(t){e.hover=!0},mouseout:function(t){e.hover=!1}}},[t("button",e._g(e._b({staticClass:"vs-tabs--btn",style:e.styleAlignIcon(a.icon),attrs:{type:"button"},on:{click:function(t){return e.activeChild(o)}}},"button",a.attrs,!1),a.listeners),[a.icon?t("vs-icon",{directives:[{name:"tooltip",rawName:"v-tooltip",value:a.iconTooltipContent?{content:a.iconTooltipContent,boundariesElement:"window"}:null,expression:"\n              child.iconTooltipContent\n                ? {\n                    content: child.iconTooltipContent,\n                    boundariesElement: 'window',\n                  }\n                : null\n            "}],staticClass:"vs-tabs--btn-icon",attrs:{"icon-pack":a.iconPack,icon:a.icon,color:e.color,size:a.iconSize},on:{mouseenter:function(t){return e.logTooltip(a.icon)}}}):e._e(),a.label?t("span",[e._v(e._s(a.label))]):e._e()],1),a.tag?t("button",{staticClass:"vs-tabs--btn-tag",on:{click:function(t){return e.clickTag(a)}}},[t("vs-icon",{attrs:{"icon-pack":a.iconPack,icon:a.tag,color:a.tagColor}})],1):e._e()])})),0),t("span",{staticClass:"line-vs-tabs",style:e.stylex})]),t("div",{staticClass:"con-slot-tabs"},[e._t("default")],2)])},$=[],Z=a(58434),Y=a(70735),K={name:"VxTabs",props:{value:{default:0,type:[Number,String]},color:{default:"primary",type:String},tagColor:{default:"primary",type:String},alignment:{default:"left",type:String},position:{default:"top",type:String},validateTabSwitchFunc:{type:Function}},data:()=>({topx:"auto",heightx:2,hover:!1,children:[],childActive:0,leftx:0,widthx:0,these:!1}),computed:{styleTab(){return{color:Y.A[`color-${this.color}`]}},stylex(){return{top:`${this.topx}px`,left:`${this.leftx}px`,width:`${this.widthx}px`,height:`${this.heightx}px`,background:`linear-gradient(30deg, ${Y.A[`color-${this.color}`]} 0%, ${Y.A[`color-${this.color}`]} 100%)`,boxShadow:`0px 0px 8px 0px ${Y.A[`color-${this.color}`]}`,transform:`scaleX(${this.these?1.3:1})`}}},watch:{"$i18n.locale"(){setTimeout((()=>{this.changePositionLine(this.$refs.li[this.childActive])}),100)},value(e){this.activeChild(e)}},mounted(){const e=this.value;this.childActive=e,this.$nextTick((()=>{this.activeChild(e,!0)}))},methods:{clickTag(e){this.$emit("click-tag",e)},styleAlignIcon(e){return e?"display:flex;align-items:center":""},parseIndex(e){let t=this.childActive;return e<0?t=0:e>=this.$children.length?t=this.$children.length-1:"undefined"===typeof this.$children[e].$attrs.disabled&&(t=parseInt(e)),t},activeChild(e,t){if(this.validateTabSwitchFunc&&!this.validateTabSwitchFunc())return;t=!!t;const a=this.$refs.li[e];this.childActive!=e||t||(this.these=!0,a.classList.add("isActive"),setTimeout((()=>{a.classList.remove("isActive"),this.these=!1}),200)),this.$children.map(((t,a)=>{a!=e&&(t.active=!1)})),this.childActive>e?(this.$children[e].invert=!0,this.$children[this.childActive].invert=!1):(this.$children[this.childActive].invert=!0,this.$children[e].invert=!1),this.$children[e].active=!0,this.childActive=e,this.$emit("input",this.childActive),"left"!=this.position&&"right"!=this.position||(this.$children[e].vertical=!0),this.changePositionLine(a,t)},changePositionLine(e,t){if("left"==this.position||"right"==this.position)this.topx=e.offsetTop,this.heightx=e.offsetHeight,this.widthx=2;else{const a=()=>{this.leftx=e.offsetLeft,this.widthx=e.offsetWidth,this.topx=e.offsetHeight+(e.getBoundingClientRect().top-this.$refs.ul.getBoundingClientRect().top)};t?setTimeout(a,100):a()}},logTooltip(e){this.$analytics.logEvent(Z.JT,{tooltip:e})}}},J=K,X=(0,u.A)(J,Q,$,!1,null,null,null),ee=X.exports,te=function(){var e=this,t=e._self._c;return t("div",{ref:"convstooltip",staticClass:"con-vs-tooltip",on:{mouseleave:e.mouseleavex,mouseenter:e.mouseenterx,mouseup:e.destroy}},[t("transition",{attrs:{name:"tooltip-fade"}},[t("div",{directives:[{name:"show",rawName:"v-show",value:e.active,expression:"active"}],ref:"vstooltip",staticClass:"vs-tooltip",class:[`vs-tooltip-${e.positionx||e.position}`,`vs-tooltip-${e.color}`,{"after-none":e.noneAfter}],style:e.style},[e.title?t("h4",[e._v(e._s(e.title))]):e._e(),e._v(" "+e._s(e.text)+" ")])]),e._t("default")],2)},ae=[],oe={insertBody(e){document.body.insertBefore(e,document.body.firstChild)},removeBody(e){let t=document.body;t.removeChild(e)},changePosition(e,t,a){let o=0,r=0,n=0,s=window.pageYOffset||document.documentElement.scrollTop;e.getBoundingClientRect().top+300>=window.innerHeight?setTimeout((()=>{o=a?e.getBoundingClientRect().top-t.clientHeight+s:e.getBoundingClientRect().top-t.clientHeight+e.clientHeight+s}),1):o=a?e.getBoundingClientRect().top+e.clientHeight+s+5:e.getBoundingClientRect().top+s,r=e.getBoundingClientRect().left,n=e.offsetWidth;let i={left:`${r}px`,top:`${o}px`,width:`${n}px`};return i}},re={name:"VxTooltip",props:{title:{default:null,type:[String,Number]},text:{default:null,type:[String,Number]},color:{default:null,type:String},position:{default:"top",type:String},delay:{default:"0s",type:[Number,String]}},data:()=>({cords:{},active:!1,widthx:"auto",positionx:null,noneAfter:!1}),computed:{style(){return{left:this.cords.left,top:this.cords.top,transitionDelay:this.active?this.delay:"0s",background:R.A.getColor(this.color,1),width:this.widthx}}},methods:{mouseenterx(){this.active=!0,this.$nextTick((()=>{oe.insertBody(this.$refs.vstooltip),this.changePosition(this.$refs.convstooltip,this.$refs.vstooltip)}))},mouseleavex(){this.active=!1},changePosition(e,t){this.noneAfter=!1,this.positionx=null;const a=e.closest(".con-vs-tooltip"),o=window.pageYOffset||document.documentElement.scrollTop;let r=a.getBoundingClientRect().top+o-t.clientHeight-4,n=a.getBoundingClientRect().left-t.clientWidth/2+a.clientWidth/2;const s=a.clientWidth;"bottom"==this.position?r=a.getBoundingClientRect().top+o+a.clientHeight+4:"left"==this.position?(n=a.getBoundingClientRect().left-t.clientWidth-4,r=a.getBoundingClientRect().top+o+a.clientHeight/2-t.clientHeight/2,-1==Math.sign(n)&&(n=a.getBoundingClientRect().left,r=a.getBoundingClientRect().top+o+a.clientHeight+4,this.positionx="bottom",this.noneAfter=!0)):"right"==this.position&&(n=a.getBoundingClientRect().left+a.clientWidth+4,r=a.getBoundingClientRect().top+o+a.clientHeight/2-t.clientHeight/2,window.innerWidth-(n+t.clientWidth)<=20&&(n=a.getBoundingClientRect().left-t.clientWidth/2-10,r=a.getBoundingClientRect().top+o+a.clientHeight+4,this.positionx="bottom",this.noneAfter=!0)),this.cords={left:`${n}px`,top:`${r}px`,width:`${s}px`}},destroy(){this.active=!1,this.$nextTick((()=>{this.active&&oe.removeBody(this.$refs.vstooltip)}))}}},ne=re,se=(0,u.A)(ne,te,ae,!1,null,null,null),ie=se.exports,le=function(e,t){return e("div",{staticClass:"vx-breadcrumb",class:t.data.staticClass},[e("ul",{staticClass:"flex flex-wrap items-center"},[e("li",{staticClass:"inline-flex items-end"},[e("router-link",{attrs:{to:"/"}},[e("feather-icon",{attrs:{icon:"HomeIcon","svg-classes":"h-5 w-5 mb-1 stroke-current text-primary"}})],1),e("span",{staticClass:"breadcrumb-separator mx-2"},[e("feather-icon",{attrs:{icon:t.props.isRTL?"ChevronsLeftIcon":"ChevronsRightIcon","svg-classes":"w-4 h-4"}})],1)],1),t._l(t.props.route.meta.breadcrumb.slice(1,-1),(function(a,o){return e("li",{key:o,staticClass:"inline-flex items-center"},[a.url?e("router-link",{attrs:{to:a.url}},[t._v(t._s(a.title))]):e("span",{staticClass:"text-primary cursor-default"},[t._v(t._s(a.title))]),e("span",{staticClass:"breadcrumb-separator mx-2 flex items-start"},[e("feather-icon",{attrs:{icon:t.props.isRTL?"ChevronsLeftIcon":"ChevronsRightIcon","svg-classes":"w-4 h-4"}})],1)],1)})),e("li",{staticClass:"inline-flex"},[t.props.route.meta.breadcrumb.slice(-1)[0].active?e("span",{staticClass:"cursor-default"},[t._v(t._s(t.props.route.meta.breadcrumb.slice(-1)[0].title))]):t._e()])],2)])},de=[],ue={name:"VxBreadcrumb"},ce=ue,me=(0,u.A)(ce,le,de,!0,null,null,null),pe=me.exports,he=a(6804),ge=a.n(he),fe=a(70385),ve=a.n(fe);o["default"].component(ie.name,ie),o["default"].component(z.A.name,z.A),o["default"].component(V.name,V),o["default"].component(pe.name,pe),o["default"].component(I.name,I),o["default"].component(ee.name,ee),o["default"].component(W.name,W),o["default"].component(x.name,x),ge().props.components.default=()=>({Deselect:{render:e=>e("feather-icon",{props:{icon:"XIcon",svgClasses:"w-4 h-4 mt-1"}})},OpenIndicator:{render:e=>e("feather-icon",{props:{icon:"ChevronDownIcon",svgClasses:"w-5 h-5"}})}}),o["default"].component(ge()),o["default"].component("VueCtkDateTimePicker",ve());var be=a(84688),we=a(96982),Ae=a(95093),ye=a.n(Ae);o["default"].filter("capitalize",(function(e){if(!e)return"";e=e.toString();const t=e.split(" "),a=[];return t.forEach((e=>{const t=e.charAt(0).toUpperCase()+e.slice(1);a.push(t)})),a.join(" ")})),o["default"].filter("title",(function(e,t="_"){if(!e)return"";e=e.toString();const a=e.split(t),o=[];return a.forEach((e=>{const t=e.charAt(0).toUpperCase()+e.slice(1);o.push(t)})),o.join(" ")})),o["default"].filter("truncate",(function(e,t){return e.substring(0,t)})),o["default"].filter("tailing",(function(e,t){return e+t})),o["default"].filter("time",(function(e,t=!1){if(e){const a=new Date(Date.parse(e));let o=a.getHours();const r=(a.getMinutes()<10?"0":"")+a.getMinutes();if(!t){const e=o>12?"AM":"PM";return o=o%12||12,`${o}:${r} ${e}`}return`${o}:${r}`}})),o["default"].filter("date",(function(e,t="DD-MM-YYYY"){return ye()(e).format(t)})),o["default"].filter("month",(function(e,t=!0){e=String(e);const a=/\w+\s(\w+)\s\d+\s(\d+)./;return t?`${a.exec(e)[1]} ${a.exec(e)[2]}`:a.exec(e)[1]})),o["default"].filter("csv",(function(e){return e.join(", ")})),o["default"].filter("filter_tags",(function(e){return e.replace(/<\/?[^>]+(>|$)/g,"")})),o["default"].filter("k_formatter",(function(e){return e>999?`${(e/1e3).toFixed(1)}k`:e})),o["default"].filter("percentage",(function(e,t){return e||(e=0),t||(t=0),e*=100,e=Math.round(e*Math.pow(10,t))/Math.pow(10,t),e+="%",e}));var Se=a(25521),Ce=a(15261),Pe=a(2543),ke=a(27562);(0,Ce.X$)("email",{...ke.Rp,message:()=>it.t("validations.email")}),(0,Ce.X$)("min_char",{...ke.jk,message:(e,{length:t})=>it.t("validations.minChar",{length:t})}),(0,Ce.X$)("max_char",{...ke.T9,message:(e,{length:t})=>it.t("validations.maxChar",{length:t})}),(0,Ce.X$)("required",{...ke.mw,message:()=>it.t("validations.required")}),(0,Ce.X$)("confirmed",{...ke.qF,message:()=>it.t("validations.confirmed")}),(0,Ce.X$)("min_value",{...ke.de,message:(e,{min:t})=>it.t("validations.minValue",{min:t})}),(0,Ce.X$)("date_format",{params:["format"],validate:(e,{format:t})=>ye()(e,t,!0).isValid(),message:()=>it.t("validations.dateFormat")}),(0,Ce.X$)("after_date",{params:["minDate","nDaysApart","format"],validate:(e,{minDate:t,nDaysApart:a,format:o})=>{const r=ye()(e,o,!0),n=ye()(t,o,!0);return!r.isValid()||!n.isValid()||r.diff(n,"days")>=a},message:(e,{minDate:t,nDaysApart:a})=>it.t("validations.afterDate",{minDate:t,nDaysApart:a})}),(0,Ce.X$)("before_date",{params:["maxDate","nDaysApart","format"],validate:(e,{maxDate:t,nDaysApart:a,format:o})=>{const r=ye()(e,o,!0),n=ye()(t,o,!0);return!r.isValid()||!n.isValid()||n.diff(r,"days")>=a},message:(e,{maxDate:t,nDaysApart:a})=>it.t("validations.beforeDate",{maxDate:t,nDaysApart:a})}),(0,Ce.X$)("phone_number",{params:["payload"],validate(e,{payload:t}){return t&&t.phoneNumber&&t.isValid},message:()=>it.t("validations.phoneNumber")}),(0,Ce.X$)("excluded",{params:["excludedValues","message"],validate(e,{excludedValues:t}){return!e||0==t.filter((t=>(0,Pe.isEqual)(t,e))).length},message:(e,{message:t})=>t}),(0,Ce.X$)("role_format",{validate:e=>!e.includes(":"),message:()=>it.t("validations.roleFormat")}),(0,Ce.X$)("generic_component_content",{params:["genericComponentSettings","message"],validate:(e,{genericComponentSettings:t})=>null!=t.content&&""!=t.content||null!=t.imageUrl||null!=t.image||t.rowData&&t.rowData.length>0&&t.columnDefs&&t.columnDefs.length>0||t.data&&t.data.length>0&&t.data.every((e=>(e.name||e.date)&&e.value)),message:(e,{message:t})=>t}),(0,Ce.X$)("sum",{params:["expectedValue","tolerance","values"],validate(e,{expectedValue:t,tolerance:a,values:o}){return Math.abs(o.reduce(((e,t)=>e+t),0)-t)<a},message:(e,{expectedValue:t,values:a})=>it.t("validations.sum",{expectedValue:t,currentValue:a.reduce(((e,t)=>e+t),0)?.toFixed(2)})}),(0,Ce.X$)("max_file_size",{params:["maxSizeBytes"],validate(e,{maxSizeBytes:t}){return e&&void 0!=e.size&&e.size<=t},message:(e,{maxSizeBytes:t})=>it.t("validations.maxFileSize",{maxSizeBytes:t})});var Ie=a(39102),De=a(96881),Ee=a.n(De),Re=a(81780),Te=a(57802),Me=a.n(Te),qe=a(65510),xe=a(67845),ze=a(6283),Fe=a.n(ze),Be=a(29036),Le=a(64031),Ne=a(10955),Ue=a(7633),Ve=a(64765),Oe={auth:{resetPasswordLink:{forgotPassword:"Passwort vergessen?"}},cards:{needLoginCard:{needLogged:"Um diesen Inhalt zu sehen, müssen Sie angemeldet sein."},productHomeCard:{inceptionToDateReturn:"Rendite seit Auflegung",lastDay:"Änderung am letzten Tag",lastPrice:"Letzter Preis",na:"N/V",viewDetails:"Details anzeigen",yearToDateReturn:"Rendite seit Jahresbeginn"}},compliance:{cookies:{buttonText:"Akzeptieren",cookiesUsage:"Diese Website verwendet Cookies, um die Benutzerfreundlichkeit zu verbessern. Durch die Nutzung dieser Website erklären Sie sich mit der Verwendung von Cookies sowie mit der Datenschutzerklärung einverstanden, in der Sie weitere Informationen über Cookies finden. Link: {0}.",privacyPolicy:"Datenschutzerklärung"}},components:{downloadAsPngTooltip:"Als PNG herunterladen",details:{aumFormat:e=>`${e.named("currency")} ${(e.named("aum")/1e6).toFixed(1)} Million${e.named("aum")>1e6?"en":""}${e.named("asOfDate")?` (Stand ${e.named("asOfDate")})`:""}`}},datePickers:{dateRangePicker:{from:"Von (JJJJ-MM-TT)",fullPeriod:"Gesamter Zeitraum",to:"Bis (JJJJ-MM-TT)"},zoomPicker:{fiveYears:"5J",fullPeriod:"MAX",oneMonth:"1M",oneYear:"1J",sixMonths:"6M",threeMonths:"3M",tenYears:"10J",threeYears:"3J",twoYears:"2J",ytd:"YTD"}},dropdowns:{iconsDropdown:{noIcon:"Kein Symbol"}},editPrompt:{copyInAllLangs:"Kopieren in allen Sprachen",editField:"Feld bearbeiten",enterText:"Text eingeben",overwriteDataAllShareClasses:"Daten aller Anteilsklassen überschreiben",id:"ID",idTooltip:"Dieser eindeutige Bezeichner dient als Referenz für die Komponente innerhalb der Plattform. Jede Komponente, die Sie erstellen, benötigt einen eigenen Bezeichner. Zur besseren Lesbarkeit empfehlen wir die folgende Konvention: Verwenden Sie den Komponententitel, konvertieren Sie ihn in Kleinbuchstaben und ersetzen Sie Leerzeichen durch Bindestriche. Für eine Komponente mit dem Titel 'My Analytic Table' würde der Bezeichner 'my-analytic-table' lauten.",needUniqueId:"Der angegebene Bezeichner wird derzeit von einer anderen Komponente am aktuellen Standort oder an einem verknüpften Standort verwendet. Bitte geben Sie einen eindeutigen Bezeichner an, um die Eindeutigkeit zu gewährleisten.",numberOfDecimals:"Anzahl der Nachkommastellen",numberOfDecimalsTooltip:"Die Anzahl der Nachkommastellen für alle in der Komponente angezeigten Zahlen. Beachten Sie, dass dies nicht für Diagrammachsen gilt.",withBenchmark:"Mit dem Benchmark anzeigen",footnote:"Text unter der Komponente",placeholderFootnote:"Ein Text, der unterhalb der Komponente erscheint. Z. B. 'Gebühren sind inbegriffen.'",langTabError:"Einige Felder sind in den folgenden Sprachen ungültig:",settingsOnlyUsedOnOverviewTooltip:"Diese Einstellung betrifft ausschließlich die Seite 'Übersicht'.",showOnFactsheet:"Auf Factsheet anzeigen",tabError:"Einige Felder sind ungültig",title:"Titel",titleEdit:e=>`${e.named("componentId")} bearbeiten`,titleAdd:"Komponente hinzufügen",unsavedChangesAlert:"Sie haben ungespeicherte Änderungen. Wenn Sie nicht speichern, gehen sie verloren.",genericComponent:{addColumn:"Spalte hinzufügen",addRow:"Reihe hinzufügen",addData:"Daten hinzufügen",barChart:"Balkendiagramm",cantChangeType:"Sie können den Typ einer generische Komponente nicht ändern, nachdem Sie sie gespeichert haben. Wenn Sie einen anderen Typ möchten, müssen Sie eine neue generische Komponente erstellen.",columnWithIndex:e=>`Spalte ${e.named("idx")}`,data:"Daten",date:"Datum",donutChart:"Donutdiagramm",exampleSector:"Z.B., Sektoren",header:"Kopfzeile",key:"Schlüssel",image:"Bild",lineChart:"Liniendiagramm",needData:"Sie können eine generische Komponente nicht ohne Daten oder nur mit teilweisen Daten speichern. Löschen Sie sie, fügen Sie Daten hinzu oder vervollständigen Sie vorhandene Daten vor dem Speichern.",pieChart:"Kreisdiagramm",removeData:"Daten entfernen",showColumnHeader:"Spaltenüberschrift anzeigen",table:"Tabelle",text:"Text",type:"Typ",useBrandColor:"Markenfarbe verwenden",value:"Wert",weightPercent:"Gewicht (in %)"},contacts:{addContact:"Kontakt hinzufügen",additionalText:"Zusätzlicher Text",email:"E-Mail",exampleEmail:"Z.B., jdoe@mail.com",exampleName:"Z.B., John Doe",examplePhone:"Z.B., +41 79 123 45 67",exampleRole:"Z.B., Partner",imageSquare:"Bild (quadratisch)",name:"Name",phone:"Telefon",removeContact:"Kontakt entfernen",role:"Rolle"},dialog:{copyInAllLangs:{title:"Kopieren in allen Sprachen",text:"Sie kopieren alle Werte der aktuellen Sprache in alle anderen Sprachen. Sind Sie sicher?"},saveFieldInAllShareClasses:{title:"Überschreiben",text:"Sie überschreiben dieses Feld in allen anderen Anteilsklassen dieses Produkts, nicht nur in der aktuellen Anteilsklasse. Sind Sie sicher?"},saveInAllShareClasses:{title:"Überschreiben",text:e=>`Sie überschreiben die Daten von "${e.named("tabName")}" in allen anderen Anteilsklassen dieses Produkts mit den Daten von "${e.named("tabName")}" dieser Anteilsklasse (nicht nur die letzten Änderungen, die Sie vorgenommen haben). Sind Sie sicher?`}},description:{contentTitle:"Beschreibung"},disclaimer:{contentTitle:"Haftungsausschluss",defaultWarning:"Sie haben derzeit keinen Haftungsausschluss für dieses Produkt. Daher wurde der Standard-Haftungsausschluss verwendet. Wenn Sie hier einen Haftungsausschluss verfassen, wird dieser nur für dieses Produkt angezeigt und nicht der Standard-Haftungsausschluss."},historicalPricesChart:{defaultLogScale:"Standardmäßig in LogScale",showLogScaleSwitch:"Schalter für LogScale anzeigen",priceIndexedTo100:"Preisindexierung auf 100"},holdingOverTime:{elementsInOthers:{title:'Elemente, die als "Andere" zu betrachten sind',multiSelect:{placeholder:"Elemente auswählen",selectLabel:"Enter drücken zum Auswählen",deselectLabel:"Enter drücken, um zu entfernen",selectedLabel:"Ausgewählt",limitText:e=>`und ${e.named("count")} weitere`}}},keyCharacteristics:{addKeyCharacteristics:"Schlüsselmerkmale hinzufügen",exampleDynamicExposure:"z. B., Dynamische Exposition",exampleWeDynamicallyAdapt:"z. B., Wir passen uns dynamisch an ...",header:"Überschrift",icon:"Symbol",paragraph:"Absatz",removeKeyCharacteristics:"Hauptmerkmale entfernen"},monthlyReturnsChart:{startDate:"Anfangsdatum",startDateTooltip:"Wählen Sie ein Anfangsdatum (im Format JJJJ-MM-TT) für die Grafik. Die Grafik wird automatisch so angepasst, dass die Daten ab dem frühesten verfügbaren Datum für das Produkt oder dem von Ihnen gewählten Datum angezeigt werden, je nachdem, welches Datum später liegt. Wenn Sie dieses Feld leer lassen, werden alle verfügbaren Preisdaten für das Produkt angezeigt."},monthlyReturnsTable:{descending:"Jahre in absteigender Reihenfolge sortieren",startDate:"Anfangsdatum",startDateTooltip:"Wählen Sie ein Anfangsdatum (im Format JJJJ-MM-TT) für die Rückgabetabelle. Die endgültige Tabelle wird automatisch so angepasst, dass die Daten ab dem frühesten verfügbaren Datum für das Produkt oder dem von Ihnen gewählten Datum angezeigt werden, je nachdem, welches Datum später liegt. Wenn Sie dieses Feld leer lassen, werden alle verfügbaren Preisdaten für das Produkt angezeigt.",benchmark:"Benchmark",product:"Produkt",return:"Rendite",nameReplacements:"Standardnamen ersetzen",nameReplacementsTooltip:"Passen Sie die Produkt- und Benchmark-Namen in der Komponente an. Lassen Sie das Feld leer, um die vorhandenen Namen zu übernehmen."},notify:{componentSaveSuccess:e=>`Ihre Komponente '${e.named("componentId")}' wurde erfolgreich aktualisiert.`},overviewHeader:{backgroundImage:"Hintergrundbild",backgroundImageTooltip:"Bitte beachten Sie, dass das aktuell betrachtete Bild auch als Produktkartenbild auf der Homepage verwendet wird. Änderungen an diesem Bild wirken sich daher gleichzeitig auf die Darstellung des Produkts auf der Homepage aus.",text:"Text",textTooltip:"Bitte beachten Sie, dass der aktuell betrachtete Text auch als Produktkartentext auf der Homepage verwendet wird. Änderungen an diesem Text wirken sich daher gleichzeitig auf die Darstellung des Produkts auf der Homepage aus.",showDownloadLastFactsheetButton:'Schaltfläche "@:components.extras.downloadLastFactsheet.downloadLastFactsheet" anzeigen',showDownloadLastFactsheetButtonTooltip:'Damit die Schaltfläche für einen Benutzer sichtbar ist, sollte ein Dokument als "@:pages.products.documents.prompt.uploadFile.shouldConsiderLastFactsheet" im Abschnitt "Dokumente" markiert sein, und es sollte in der vom Benutzer gewählten Sprache verfügbar sein.',saveSuccess:"Kopfzeile wurde erfolgreich aktualisiert.",showFollowButton:"Schaltfläche zum Folgen anzeigen",title:"Übersichtskopf bearbeiten"},predefinedHoldingComponent:{chartType:"Diagrammtyp",barChart:"Balkendiagramm",donutChart:"Donutdiagramm",pieChart:"Kreisdiagramm",table:"Tabelle",useBrandColor:"Markenfarbe verwenden",assetClasses:{editAssetClasses:"Assetklassen bearbeiten"},currencyExposure:{editCurrencyExposure:"Währungsexposure bearbeiten"},instrumentTypes:{editInstrumentTypes:"Instrumententypen bearbeiten"},onlyShowTopThenOthers:{tooltip:'Nur das oberste X (gewählte Zahl) anzeigen, und die übrigen in "Andere" zusammenfassen. Leer lassen, um alle anzuzeigen.'},regions:{editRegions:"Regionen bearbeiten"},sectors:{editSectors:"Sektoren bearbeiten"}},productDetails:{addDetail:"Detail hinzufügen",exampleIsin:"Z.B., ISIN",exampleLU:"Z.B., LU2220388479",key:"Schlüssel",noteDragAndDrop:"Hinweis: Durch Ziehen und Ablegen von Zeilen können Sie die Reihenfolge der Details ändern.",removeDetail:"Detail entfernen",showAuM:"AuM anzeigen",showLastPrice:"Letzten Preis anzeigen",value:"Wert"},relativePerformanceChart:{footnote:"Fussnote",placeholderFootnote:"Ein Text, der unterhalb des Diagramms erscheint. Z.B. 'Gebühren sind enthalten.'"},riskProfile:{level:"Höhe des Risikos"},shareClassesTable:{bloomberg:"Bloomberg",class:"Klasse",defaultFootnote:"Perf. Lanc.: Die Renditen für Zeiträume seit Auflegung von mehr als einem Jahr werden annualisiert, bei weniger als einem Jahr werden sie nicht annualisiert.",footnote:"Fussnote",inceptionDate:"Lancierungsdatum",isin:"ISIN",mgmtFee:"Mgmt. fee",perfFee:"Perf. fee",title:"Tabelle der Anteilsklassen bearbeiten"},statistics:{benchmark:"Benchmark",product:"Produkt",nameReplacements:"Standardnamen ersetzen",nameReplacementsTooltip:"Passen Sie die Produkt- und Benchmark-Namen in der Komponente an. Lassen Sie das Feld leer, um die vorhandenen Namen zu übernehmen. Verwenden Sie z.B. einen Begriff wie 'Produkt', um den Namen abzukürzen und Platz zu sparen.",fieldsToDisplay:"Anzuzeigende Felder",noteDragAndDrop:"Hinweis: Durch Ziehen und Ablegen von Zeilen können Sie die angezeigten Statistiken neu anordnen.",shownStatisticName:"Angezeigter Statistikname",showStatistic:"Statistik anzeigen",statisticId:"Statistik-ID"},statisticsWithPeriods:{benchmark:"Benchmark",product:"Produkt",nameReplacements:"Standardnamen ersetzen",nameReplacementsTooltip:"Passen Sie die Produkt- und Benchmark-Namen in der Komponente an. Lassen Sie das Feld leer, um die vorhandenen Namen zu übernehmen. Verwenden Sie z.B. einen Begriff wie 'Produkt', um den Namen abzukürzen und Platz zu sparen.",fieldsToDisplay:"Anzuzeigende Felder",noteDragAndDrop:"Hinweis: Durch Ziehen und Ablegen von Zeilen können Sie die angezeigten Statistiken neu anordnen.",periodsTitle:"Anzuzeigende Zeiträume",shownStatisticName:"Angezeigter Statistikname",showStatistic:"Statistik anzeigen",statisticId:"Statistik-ID",periods:{1:"1M",3:"3M",6:"6M",ytd:"YTD",12:"1J",36:"3J",60:"5J",max:"MAX"}},topHoldings:{fieldsToDisplay:"Anzuzeigende Felder",showHeader:"Kopfzeile anzeigen",showTotal:"Summe anzeigen",numHoldings:{title:"Anzahl der anzuzeigenden Positionen",tooltip:"Wenn Sie dieses Feld leer lassen, werden alle verfügbaren Daten zu den Beständen des Produkts angezeigt."},holdingsToIgnore:{title:"Zu ignorierende Holdings",holdingsMultiselect:{placeholder:"Zu ignorierende Holdings auswählen",selectLabel:"Enter drücken zum Auswählen",deselectLabel:"Enter drücken, um zu entfernen",selectedLabel:"Ausgewählt",limitText:e=>`und ${e.named("count")} weitere`}},customizeTable:"Tabelle anpassen",addColumn:"Spalte hinzufügen",columnWithIndex:e=>`Spalte ${e.named("idx")}`}},extras:{changeRoles:{changeRoles:"Rollen ändern",notify:{errorText:"Keine Rollen wurden aktualisiert. Grund: ",successText:"Benutzerrollen wurden aktualisiert"}},deleteGenericComponent:{delete:"Löschen",deleteAllComponents:"Alle Komponenten löschen",deleteOnlyThisComponent:"Nur diese Komponente löschen","Löschen":"Löschen von ...",deleteSuccess:"Löschung erfolgreich.",page:"Seite",shareClass:"Aktienklasse",textIsNotLinked:"Sie sind im Begriff, eine generische Komponente dauerhaft zu löschen. Diese Aktion kann nicht rückgängig gemacht werden. Bitte bestätigen Sie, dass Sie mit der Löschung fortfahren möchten.",textIsLinkedFirstPart:"Sie sind im Begriff, eine generische Komponente dauerhaft zu löschen. Diese Aktion kann nicht rückgängig gemacht werden.  Beachten Sie, dass diese Komponente mit der gleichen Komponente(n) im Folgenden verknüpft ist: ",textIsLinkedSecondPart:"Bitte bestätigen Sie, dass Sie mit dem Löschen fortfahren möchten, und entscheiden Sie, ob Sie nur die aktuelle Komponente löschen möchten, oder ob Sie diese Komponente und alle verknüpften Komponenten löschen möchten.",title:e=>`Dauerhafte Löschung von ${e.named("componentId")}`,pageList:{factsheet:"Factsheet",overview:"Übersicht"}},downloadLastFactsheet:{downloadLastFactsheet:"Letztes Factsheet herunterladen",downloadingLastFactsheet:"Downloading...",needLogin:{text:"Um dieses Dokument herunterladen zu können, müssen Sie authentifiziert sein.",title:"Sie müssen authentifiziert sein"}},manualVerifyEmail:{forceVerification:"E-Mail-Verifizierung erzwingen",verified:"E-Mail verifiziert",notify:{errorText:"E-Mail-Verifizierung ist fehlgeschlagen.",successText:"Die E-Mail des Benutzers wurde manuell verifiziert."}},riskProfile:{higherRisk:"Höheres Risiko",lowerRisk:"Niedrigeres Risiko",potentiallyHigherReward:"Potenziell höhere Rendite",potentiallyLowerReward:"Potenziell niedrigere Rendite"}},factsheet:{lastPrice:"Letzter Preis"},graphs:{logScale:"Logarithmische Skala",notEnoughData:"Nicht genügend Daten, um dieses Diagramm zu erstellen. Bitte wählen Sie einen längeren Zeitraum.",needMoreData:"Um diese Kennzahl zu berechnen, ist eine bestimmte Menge an Daten erforderlich. Vergrößern Sie den Zeitrahmen, um Zugang zu dieser Kennzahl zu erhalten."},holdingData:{others:"Andere"},images:{uploadImage:{darkening:"Verdunkelung",file:"Datei",noFile:"Keine Datei",noImage:"Kein Bild",selectFile:"Datei auswählen",selectNewImage:"Neues Bild auswählen",errorTitleTooLarge:"Bild zu groß",errorMessageTooLarge:"Das Bild ist zu groß. Bitte wählen Sie ein anderes Bild mit einer Größe von weniger als 30 MB.",warningTitleVeryLarge:"Bild sehr groß",warningMessageVeryLarge:"Das Bild ist sehr groß. Dadurch werden die Seiten, die dieses Bild anzeigen, langsamer geladen. Für eine optimale Leistung wird empfohlen, Bilder mit einer Größe von weniger als 10 MB zu verwenden."}},linkPrompt:{componentLinkedTo:"Diese Komponente ist verknüpft mit:",currentPage:"Aktuelle Seite",currentShareClass:"Aktuelle Aktienklasse",linkThroughPagesTooltip:'Wenn Sie diese Funktion aktivieren, wird eine synchronisierte Verbindung zwischen Komponenten auf mehreren Seiten hergestellt. Durch die Verknüpfung der Seiten "Factsheet" und "Übersicht" wird beispielsweise sichergestellt, dass alle Änderungen an einer gemeinsamen Komponente auf beiden Seiten gleichzeitig aktualisiert werden. Wichtig: Der Inhalt der verknüpften Komponente wird von der Quellseite, die Sie gerade bearbeiten, dupliziert. Wenn Sie die Verknüpfung initiieren, während Sie die Komponente "Beschreibung" auf der Seite "Factsheet" bearbeiten, wird die Komponente "Beschreibung" von "Factsheet" auf die Seite "Übersicht" kopiert und überschreibt somit die Komponente "Beschreibung" von "Übersicht".',linkThroughShareClassesTooltip:'Wenn Sie diese Funktion aktivieren, wird eine synchronisierte Verbindung zwischen Komponenten über mehrere Freigabeklassen hinweg hergestellt. Durch die Verknüpfung der "Produkt Aktienklassen A" und der "Produkt Aktienklassen B" wird beispielsweise sichergestellt, dass alle Änderungen an einer freigegebenen Komponente in beiden Freigabeklassen gleichzeitig aktualisiert werden. Wichtig: Der Inhalt der verknüpften Komponente wird von der Quellseite dupliziert, die Sie gerade bearbeiten. Wenn Sie die Verknüpfung initiieren, während Sie die Komponente "Beschreibung" auf der Seite "Produkt Aktienklassen A" bearbeiten, wird die Komponente "Beschreibung" in "Produkt Aktienklassen A" in "Produkt Aktienklassen B" kopiert und überschreibt somit die Komponente "Beschreibung" in "Produkt Aktienklassen B".',linkedWithPages:"Verknüpft mit den folgenden Seiten",linkedWithShareClasses:"Verknüpft mit den folgenden Aktienklassen",page:"Seite",shareClass:"Aktienklasse",title:e=>`Verknüpfung von ${e.named("componentId")} bearbeiten`,unlink:"Entbinden",unlinking:"Entbinden...",unsavedChangesAlert:"Sie haben ungespeicherte Änderungen. Wenn Sie die Seite verlassen, ohne zu speichern, gehen sie verloren.",confirmSaveDialog:{computingNewLinks:"Berechnung neuer Links...",onceLinked:"Einmal verknüpft, werden alle anderen verknüpften Komponenten auf die gleiche Weise aktualisiert, wenn eine Änderung an einer Komponente an einem dieser Orte (einschließlich des aktuellen) vorgenommen wird. Bitte bestätigen Sie, dass Sie mit dem Speichern fortfahren möchten.",overwrittenExistingComponent:"Überschreiben einer Komponente mit der gleichen ID",overwrittenExistingComponentTooltip:e=>`Warnung: Es gibt bereits eine Komponente mit der ID '${e.named("componentId")}' an dieser Stelle, so dass sie von dieser Komponente überschrieben wird, wenn Sie sie verlinken.`,title:"Bestätigen Sie die Speicherung der neuen Links",youAreAboutToLink:"Sie sind dabei, die aktuelle Komponente mit den Komponenten an den folgenden Stellen zu verknüpfen:"},notify:{linkSaveSuccess:e=>`Die Verknüpfungsaktualisierung von '${e.named("componentId")}' war erfolgreich.`},multiselect:{Platzhalter:"Zu verlinkende Seiten auswählen",selectLabel:"Zum Auswählen die Eingabetaste drücken",deselectLabel:"Zum Entfernen die Eingabetaste drücken",selectedLabel:"Ausgewählt"},overviewHeader:{title:"Verknüpfung des Übersichtskopfes bearbeiten",saveSuccess:"Die Aktualisierung der Verknüpfung des Kopfes war erfolgreich."},pageList:{factsheet:"Factsheet",overview:"Übersicht",analysis:"Analyse"}},pricesManagement:{addData:"Daten hinzufügen",autoDataUpdate:"Ihre Daten werden automatisch aktualisiert.",date:"Datum",datePlaceholder:"JJJJ-MM-TT",dateValidationError:"Sie können kein Datum hinzufügen, das bereits einen Wert hat.",exportCsv:"Als CSV exportieren",importCsv:"Aus einer CSV importieren",importCsvFormat:"Die Eingabedatei sollte im CSV-Format vorliegen, mit zwei Spalten und einer Kopfzeile. Die erste Spalte sollte aus Datumsangaben und die zweite Spalte aus Zahlen bestehen (der Preis zum entsprechenden Datum). Bitte stellen Sie sicher, dass Ihre CSV-Datei gültig ist, um Probleme beim Lesen und Parsen der Daten zu vermeiden.",loadingData:"Daten werden geladen...",price:"Preis",removeData:"Daten entfernen",benchmarks:{noBenchmark:"Für dieses Produkt ist kein Benchmark verfügbar."},dialog:{removeData:{title:"Datenpunkt entfernen",text:"Sie werden einen Datenpunkt vollständig entfernen. Sind Sie sicher?"}},notify:{dateUsedMultipleTimeError:"Einem Datum sind mehrere Preise zugeordnet. Sie müssen sicherstellen, dass jedem Datum ein eindeutiger Preis zugewiesen wird.",numberFormatError:'Mindestens eine der Zahlen hat ein unerkanntes Format. Idealerweise sollten Sie keine Trennzeichen für Tausender verwenden und einen Punkt als Dezimaltrennzeichen einsetzen, da dies das erwartete Format ist. Zum Beispiel "102,12", "1380,25", "18,952", ...',saveErrorText:"Fehler beim Aktualisieren der Preise, bitte kontaktieren Sie uns.",saveSuccessText:"Die Preise wurden erfolgreich aktualisiert."},prompt:{addPrice:"Preis hinzufügen",importCsv:"Daten aus CSV importieren"}},tables:{metricsTable:{na:"N/V",name:"Name",showLess:"Weniger anzeigen",showMore:"Mehr anzeigen"},monthlyReturnsTable:{benchmark:"Benchmark",return:"Rendite"},performanceTable:{computedFromTo:e=>`Performance berechnet von ${e.named("firstDate")} bis ${e.named("lastDate")}.`,notAvailableData:"Daten nicht verfügbar, entweder weil nicht genügend Tage zur Berechnung vorhanden sind, die Daten nicht aussagekräftig sind (z.B. negative Sharpe-Ratio) oder der Benchmark im ausgewählten Zeitraum nicht immer verfügbar ist"},topHoldingsTable:{holdingFields:{assetClass:"Anlageklasse",currency:"Währung",holdingName:"Name",instrumentType:"Instrumententyp",isin:"ISIN",region:"Region",sector:"Sektor",value:"Wert",weight:"Gewicht"},totalOfPortfolio:"Gesamtportfolio"}},thirdParty:{vuePhoneNumberInput:{countrySelectorLabel:"Länderauswahl",countrySelectorError:"Wählen Sie ein Land",phoneNumberLabel:"Telefonnummer",example:"Beispiel :"}}},Ge={admin:{disclaimer:"Haftungsausschluss",enterText:"Geben Sie einen Text ein",operations:{generateFactsheets:{allLanguages:"Alle Sprachen",allProducts:"Alle Produkte",createdAt:"Erstellt am",factsheetGeneration:"Factsheet-Generierung",factsheetGenerationFilters:"Factsheet-Generierungsfilter",fileName:"Dateiname",generationNotPossibleDate:"Das ausgewählte späteste Datum liegt vor dem Erstellungsdatum des Produkts.",generationNotPossibleLang:"Diese Sprache ist für das ausgewählte Produkt nicht verfügbar.",generationPossible:"Factsheet-Generierung ist möglich.",generationWarningFileExists:"Eine Datei mit diesem Namen und dieser Sprache existiert bereits. Fortfahren überschreibt die vorhandene Datei.",generateSelectedFactsheets:"Ausgewählte Factsheets generieren",generationStatus:"Generierungsstatus",backToDashboardButton:"Zurück zum Dashboard",backToFiltersButton:"Zurück zu den Filtern",language:"Sprache",lastDateToInclude:"Letzter Termin für die Aufnahme",lastDayOfData:"Letzter Tag der Daten",loadingOperations:"Lade Operationen ...",newButton:"Neue Factsheets generieren...",preparingFactsheetsGeneration:"Vorbereitung der Liste der Factsheets zur Generierung...",product:"Produkt",refreshButton:"Aktualisieren",requireLogin:"Login für den Zugriff erforderlich",selectFactsheetsForGeneration:"Factsheets zur Generierung auswählen",selectLanguages:"Sprachen auswählen",selectProducts:"Produkte auswählen",setAsLastFactsheet:"Als letztes Factsheet für das Produkt festlegen",showAvailableFactsheet:"Verfügbare Factsheets anzeigen",status:"Status",langMultiselect:{placeholder:"Zu berücksichtigende Sprachen auswählen",selectLabel:"Drücken Sie die Eingabetaste, um auszuwählen",deselectLabel:"Drücken Sie die Eingabetaste, um zu entfernen",selectedLabel:"Ausgewählt",limitText:e=>`und ${e.named("count")} weitere`},metaInfo:{title:"Admin - Operationen - Factsheets generieren"},productsMultiselect:{placeholder:"Zu berücksichtigende Produkte auswählen",selectLabel:"Drücken Sie die Eingabetaste, um auszuwählen",deselectLabel:"Drücken Sie die Eingabetaste, um zu entfernen",selectedLabel:"Ausgewählt",limitText:e=>`und ${e.named("count")} weitere`},statuses:{failed:"Fehlgeschlagen",pending:"Ausstehend",running:"Läuft",succeeded:"Erfolgreich"},successDialog:{title:"Operation erstellt",text:"Die Operation wurde erfolgreich gestartet!"}}},platformSettings:{platformSettings:"Plattformeinstellungen",complianceTab:{checksActivated:"Prüfungen aktiviert",editTitle:"Compliance bearbeiten",title:"Compliance",investorProfile:{disclaimerTooltip:"Dieser Text wird Benutzern angezeigt, die auf die Plattform kommen und nach ihrem Anlegerprofil gefragt werden (Typ und Land). Stellen Sie sicher, dass Sie einen angemessenen und rechtlichen Haftungsausschluss verfassen.",goToInvestorProfilePage:"Seite öffnen",seeInvestorProfilePage:"Siehe Anlegerprofil Seite",showLogoOnInvestorProfile:"Logo auf Anlegerprofilseite anzeigen",title:"Anlegerprofil",tooltip:'Sie können die Prüfungen des Anlegerprofils aktivieren, was bedeutet, dass ein Benutzer, der zum ersten Mal auf Ihre Plattform kommt, seinen Anlegertyp (Privatanleger, professioneller Anleger, institutioneller Anleger) sowie sein Land auswählen muss. Sie können dann konfigurieren, welcher Anlegertyp und aus welchem Land Zugang zu Ihren Produkten/Anteilsklassen hat; dies kann im Admin>Produkte Bereich unter der Registerkarte "Zugriffsbeschränkungen" erfolgen, sobald Sie die Prüfungen hier aktiviert haben.'},notify:{saveSuccessText:"Ihre Compliance-Einstellungen wurden erfolgreich aktualisiert.",saveSuccessTextWithLang:e=>`Ihre Compliance-Einstellungen wurden erfolgreich aktualisiert (Sprache: ${e.named("lang")}).`},ombudsman:{title:"Ombudsman-Text",tooltip:"Wenn Sie auf dieser Plattform auf Ihren Ombudsmann verweisen müssen, schreiben Sie den Text, der den Nutzern angezeigt wird, die Ihren Ombudsmann aufsuchen. Ein Link zu diesem Text wird in der Fußzeile der Plattform neben der Datenschutzerklärung sichtbar sein."},productDisclaimer:{title:"Standard-Produkthaftungsausschluss",tooltip:'Legen Sie einen Standard-Produkthaftungsausschluss fest, der für alle Produkte verwendet wird, die keinen produktspezifischen Haftungsausschluss haben. Sie können einen produktspezifischen Haftungsausschluss festlegen, indem Sie auf "Admin > Produkte" gehen, dann das gewünschte Produkt auswählen und den produktspezifischen Haftungsausschluss auf der Registerkarte "Allgemein" festlegen.'}},rolesTab:{editTitle:"Rollen bearbeiten",title:"Rollen",description:'Standardmäßig existiert nur die Rolle "admin", eine Rolle, die Administrationsrechte für alle Produkte sowie Zugang zu den Plattformeinstellungen gewährt. Es kann nützlich sein, feiner abgestimmte Rollen zu haben, zum Beispiel, um einigen Benutzern nur für einige Produkte Administrationsrechte zu geben. Um solche Rollen zu erstellen, verwenden Sie die folgende Tabelle. Beachten Sie, dass Sie, sobald Sie die Rollen gespeichert haben, auf die {0}-Seite gehen müssen, um die Rollen den gewünschten Benutzern zuzuweisen.',table:{roleNameHeader:"Rollenname",productsHeader:"Produkte mit Administrationsrechten",removeRoleTooltip:"Rolle entfernen",addRoleTooltip:"Rolle hinzufügen",productsMultiselect:{placeholder:"Produkt auswählen",selectLabel:"Enter drücken zum Auswählen",deselectLabel:"Enter drücken, um zu entfernen",selectedLabel:"Ausgewählt",limitText:"und {count} weitere"}},notify:{saveSuccessText:"Ihre Rollen wurden erfolgreich aktualisiert."}},metaInfo:{title:"Admin - Plattformeinstellungen"}},products:{contactUsToFixError:"Bitte kontaktieren Sie uns über das Kontaktformular, um diesen Fehler zu beheben!",langTabError:"Einige Felder sind ungültig in der Sprache:",overwriteDataAllShareClasses:"Überschreiben Sie die Daten aller Anteilsklassen",tabError:"Einige Felder sind ungültig",unsavedChangesAlert:"Sie haben ungespeicherte Änderungen. Wenn Sie die Seite verlassen, ohne zu speichern, gehen diese verloren.",accessRestrictionsTab:{allCountries:"Alle Länder",countriesAllowedForInstitutionalInvestors:"Zugelassene Länder für institutionelle Anleger",countriesAllowedForProfessionalInvestors:"Zugelassene Länder für professionelle Anleger",countriesAllowedForRetailInvestors:"Zugelassene Länder für Privatanleger",editAccessRestrictions:"Zugangsbeschränkungen bearbeiten",title:"Zugangsbeschränkungen",warningEnablingAccessRestrictions:'Um die Zugangsbeschränkungen ändern zu können, aktivieren Sie bitte die Anlegerprofilprüfungen in den {0}, unter dem Tab "Compliance".'},contactsTab:{addAnyPerson:"Fügen Sie Personen hinzu, die auf Ihrem Factsheet angezeigt werden sollen.",additionalText:"Zusätzlicher Text",email:"E-Mail",imageSquare:"Bild (quadratisch)",name:"Name",phone:"Telefon",role:"Rolle",title:"Kontakte"},dataTab:{title:"Daten",benchmarks:{title:"Benchmarks"},product:{title:"Product"}},detailsTab:{editDetails:"Details bearbeiten",key:"Schlüssel",showOnFactsheet:"Auf Factsheet anzeigen",title:"Details",value:"Wert"},dialog:{saveFieldInAllShareClasses:{title:"Überschreiben",text:"Sie werden dieses Feld in allen anderen Anteilsklassen dieses Produkts überschreiben, nicht nur in der aktuellen Anteilsklasse. Sind Sie sicher?"},saveInAllShareClasses:{title:"Überschreiben",text:e=>`Sie werden die Daten des "${e.named("tabName")}" für alle anderen Anteilsklassen dieses Produkts mit den Daten des "${e.named("tabName")}" dieser Anteilsklasse überschreiben (nicht nur die letzten Änderungen, die Sie vorgenommen haben). Sind Sie sicher?`}},followersTab:{addedByAdmin:"Vom Administrator hinzugefügt",addFollowerButton:"Einen Follower hinzufügen",email:"E-Mail",exportCsv:"Als CSV exportieren",importCsv:"Aus CSV importieren",noDataText:"Niemand folgt diesem Produkt",product:"Produkt",removeFollowerTooltip:"Follower für das entsprechende Produkt entfernen",sendEmail:"Eine E-Mail senden",showAnyShareClass:"Follower von beliebigen Anteilsklassen anzeigen",title:"Follower",addFollowerPrompt:{email:"E-Mail des Followers",emailAlreadyExists:"Jemand mit dieser E-Mail-Adresse folgt diesem Produkt bereits.",file:"CSV-Datei",language:"Sprache des Followers",text:"Bevor Sie manuell einen Follower hinzufügen, müssen Sie sicherstellen, dass dieser damit einverstanden ist, die von Ihnen geplanten Informationen zu erhalten.",titleAddFollower:"Follower hinzufügen",titleImportFollowers:"Follower importieren"},notify:{newFollowerAddedSuccess:"Der neue Follower wurde erfolgreich hinzugefügt.",newFollowerAddedError:"Beim Hinzufügen des neuen Followers ist ein Problem aufgetreten. Versuchen Sie es erneut oder kontaktieren Sie uns, wenn das Problem weiterhin besteht.",noDataInCsv:"Keine E-Mail hinzuzufügen (nach dem Filtern der bereits vorhandenen E-Mail(s)).",noEmailHeader:"In Ihrer Datei fehlt eine Spaltenüberschrift für die E-Mails. Akzeptierte Spaltenüberschriften sind die folgenden (Groß- und Kleinschreibung wird nicht berücksichtigt): email oder e-mail.",followerRemovedSuccess:"Der Follower wurde erfolgreich entfernt.",followerRemovedError:"Beim Entfernen des Followers ist ein Problem aufgetreten. Versuchen Sie es erneut oder kontaktieren Sie uns, wenn das Problem weiterhin besteht.",wrongFormatEmails:e=>`Ihre Datei enthält E-Mail(s) mit falschem Format: ${e.named("emails")}`},removeFollowerPrompt:{acceptText:"Follower entfernen",text:e=>`Sind Sie sicher, dass Sie "${e.named("followerEmail")}" als Follower für das Produkt "${e.named("productName")}" entfernen möchten?`,title:"Follower entfernen"}},generalTab:{backgroundImage:"Hintergrundbild",description:"Beschreibung",editGeneralField:"Allgemeines Feld bearbeiten",factsheetBackgroundImage:"Hintergrundbild des Factsheets",hidden:"Versteckt",hiddenProductTooltip:"Das Produkt auf der Plattform für Nicht-Admin-Benutzer ausblenden.",icon:"Symbol",riskProfile:"Risikoprofil (SRRI)",showLogoOnFactsheet:"Logo auf dem Factsheet anzeigen (obere rechte Ecke der ersten Seite)",title:"Allgemein"},holdingComponentsTab:{barChart:"Balkendiagramm",data:"Daten",date:"Datum",donutChart:"Donutdiagramm",header:"Überschrift",key:"Schlüssel",loadingData:"Daten laden...",noData:"Für dieses Produkt gibt es keine Bestandsdaten.",pieChart:"Kreisdiagramm",shownOnOverview:"Abgebildet auf Übersicht",table:"Tabelle",title:"Positionskomponenten",type:"Typ",weightPercent:"Gewicht (in %)",componentTitle:{assetClasses:"Assetklassen",currencyExposure:"Währungsexposition",instrumentTypes:"Instrumententypen",regions:"Regionen",sectors:"Sektoren",topHoldings:"Einzelpositionen"}},keyCharacteristicsTab:{header:"Überschrift",icon:"Symbol",paragraph:"Absatz",title:"Hauptmerkmale"},metaInfo:{title:"Admin - Produkteinstellungen"},notify:{productSaveSuccess:e=>`Die Konfiguration Ihres Produkts '${e.named("productName")}' wurde erfolgreich aktualisiert.`,productSaveSuccessWithLang:e=>`Die Konfiguration Ihres Produkts '${e.named("productName")}' wurde erfolgreich aktualisiert (Sprache: ${e.named("lang")}).`},selectCard:{loadingProducts:"Produkte werden geladen...",loadingShareClasses:"Anteilsklassen werden geladen...",noProducts:"Sie haben keine Produkte.",selectProduct:"Wählen Sie ein Produkt aus",selectShareClass:"Wählen Sie eine Anteilsklasse aus"}},users:{tabName:"Liste der Benutzer",company:"Unternehmen",country:"Land",email:"E-Mail",emailCopied:"Die E-Mail wurde kopiert.",investorType:"Anlegertyp",name:"Name",lastVisit:"Letzter Besuch",phone:"Telefon",roles:"Rollen",metaInfo:{title:"Admin - Benutzerliste"}}},auth:{email:"E-Mail",errorAlreadyEmailAndPasswordRegister:"Sie sind bereits mit dieser E-Mail und einem Passwort registriert. Bitte melden Sie sich mit dieser E-Mail und Ihrem Passwort an.",errorInternal:"Es ist ein interner Fehler aufgetreten. Bitte kontaktieren Sie uns.",or:"oder",password:"Passwort",login:{errorAccountNotExist:"Sie haben kein Konto auf dieser Plattform, bitte erstellen Sie ein Konto und versuchen Sie es erneut.",errorInvalidLoginCredentials:"Die angegebenen Anmeldedaten stimmen nicht mit einem unserer Benutzerkonten überein. Diese Diskrepanz könnte auf eine falsche E-Mail oder ein falsches Passwort zurückzuführen sein, auf das Fehlen eines Kontos, das mit der eingegebenen E-Mail verknüpft ist, oder auf die Möglichkeit, dass die E-Mail mit einer alternativen Anmeldemethode (wie Google) verknüpft ist. Bitte überprüfen Sie Ihre Angaben und versuchen Sie es erneut oder erstellen Sie gegebenenfalls ein Konto.",errorNeedEmailVerification:"Sie müssen Ihre E-Mail-Adresse verifizieren, bevor Sie sich auf unserer Plattform anmelden können. Bitte überprüfen Sie Ihre E-Mails (und Ihren Spam-Ordner), um die E-Mail zu finden. Wenn Sie sie nicht finden können, setzen Sie Ihr Passwort zurück.",noAccountYet:"Noch kein Konto?",rememberMe:"Angemeldet bleiben",welcomeBack:"Willkommen zurück, bitte melden Sie sich bei Ihrem Konto an.",dialog:{alreadyLoggedInText:"Sie sind bereits angemeldet!"},metaInfo:{title:"Plattform - Anmeldung"},notify:{newAccessRight:{title:"Neue Zugriffsrechte",text:"Sie wurden automatisch abgemeldet, weil Ihnen neue Zugriffsrechte zugewiesen wurden, die eine erneute Anmeldung zur Validierung erfordern."},registrationSuccess:{title:"Registrierung erfolgreich",text:"Registrierung erfolgreich, wir haben Ihnen eine Nachricht zur Validierung Ihrer E-Mail-Adresse geschickt, überprüfen Sie Ihren Posteingang!"},requiresRecentLogin:{title:"Reauthentifizierung erforderlich",text:"Um mit dieser Aktion fortzufahren, melden Sie sich bitte erneut an, da Ihre Sitzung abgelaufen ist. Sobald Sie sich erneut authentifiziert haben, können Sie die Aktion erneut versuchen."},unexpectedError:{title:"Unerwarteter Fehler",text:"Ein unerwarteter Fehler ist aufgetreten. Bitte melden Sie sich erneut an. Wenn das Problem weiterhin besteht, wenden Sie sich bitte an den Support."}}},login2fa:{enterCode:"Bitte geben Sie den 6-stelligen Code aus Ihrer Authenticator-App ein.",incorrectCode:"Der Code ist nicht korrekt. Bitte versuchen Sie es erneut.",title:"2-Faktor-Authentifizierung",verify:"Überprüfen",verifying:"Überprüfen ..."},register:{alreadyRegistered:"Bereits registriert?",confirmPassword:"Passwort bestätigen",createAccount:"Konto erstellen",errorAlreadyEmailAndPasswordRegister:"Sie haben bereits ein Konto mit dieser E-Mail. Bitte melden Sie sich bei Ihrem Konto an.",errorAlreadyGoogleRegister:"Sie sind bereits mit diesem Google-Konto registriert. Bitte melden Sie sich mit diesem Konto an.",errorAlreadyMicrosoftRegister:"Sie sind bereits mit diesem Microsoft-Konto registriert. Bitte melden Sie sich mit diesem Konto an.",fillBelowForm:'Füllen Sie das untenstehende Formular aus, um ein neues Konto zu erstellen. Felder, die mit <span class="text-danger">*</span> gekennzeichnet sind, sind erforderlich.',registerWith:"Registrieren mit: ",form:{agreeAdvertisementOnly:"Ich stimme ausdrücklich zu, dass alle Informationen auf dieser Plattform ausschließlich zu Informations- und Werbezwecken dienen und nicht als Angebot, Rat oder Empfehlung zum Kauf oder Verkauf eines bestimmten Wertpapiers oder zum Abschluss einer Transaktion ausgelegt werden sollten.",certifyAdult:"Ich bestätige, dass ich 18 Jahre alt oder älter bin.",company:"Firma",confirmPassword:"Passwort bestätigen",email:"E-Mail",firstName:"Vorname",investorProfileCountry:"Land",investorProfileType:"Anlegertyp",lastName:"Nachname",needAgree:"Sie müssen zustimmen",phone:"Telefon",privacyPolicy:"Datenschutzrichtlinie",registeringAccept:"Mit der Registrierung akzeptieren Sie unsere {0} und {1}.",termsOfUse:"Nutzungsbedingungen"},dialog:{alreadyLoggedInText:"Sie sind bereits angemeldet!"},metaInfo:{title:"Plattform - Registrierung"}},register2fa:{generatingQrCode:"Generierung des QR-Codes ...",incorrectCode:"Der Code ist nicht korrekt. Bitte versuchen Sie es erneut.",need2fa:'Um auf die Plattform zuzugreifen, richten Sie bitte eine 2-Faktor-Authentifizierung (2FA) ein. Scannen Sie den unten stehenden QR-Code oder geben Sie den bereitgestellten geheimen Schlüssel in eine Authentifizierungs-App wie "Google Authenticator" oder "Microsoft Authenticator" ein.',title:"2-Faktor-Authentifizierung einrichten",verify:"Überprüfen",verifying:"Überprüfen ..."},resetPassword:{title:"Passwort zurücksetzen",sendEmail:"E-Mail senden",dialog:{internalErrorText:"Ein interner Fehler ist aufgetreten. Bitte kontaktieren Sie uns.",resetEmailSent:{title:"E-Mail zum Zurücksetzen gesendet",text:e=>`Eine E-Mail zum Zurücksetzen wurde an den Posteingang von ${e.named("email")} gesendet. Wenn sie nicht in Kürze erscheint, prüfen Sie den Spam-Posteingang.`},unknownEmail:{title:"E-Mail existiert nicht",text:"Die E-Mail, die Sie zum Zurücksetzen des Passworts angegeben haben, existiert nicht. Um ein Konto mit dieser E-Mail zu erstellen, gehen Sie zur Registrierungsseite."}},metaInfo:{title:"Plattform - Passwort zurücksetzen"}}},compliance:{investorProfile:{agreeAndConfirmSelection:"Zustimmen und Auswahl bestätigen",byClickingAcceptDisclaimer:"Indem ich auf die Schaltfläche unten klicke, bestätige ich, dass ich den oben genannten Haftungsausschluss gelesen und akzeptiert habe und den {0} und den {1} dieser Plattform zustimme.",pleaseChooseProfile:"Bitte wählen Sie Ihr Herkunftsland und Anlegerprofil, um fortzufahren.",privacyPolicy:"Datenschutzrichtlinie",termsOfUse:"Nutzungsbedingungen",title:"Anlegerprofil",metaInfo:{title:"Plattform - Anlegerprofil"}},ombudsman:{title:"Ombudsmann",metaInfo:{title:"Plattform - Ombudsmann"}},privacyPolicy:{endDate:"Crissier, 31. August 2023",title:"Datenschutzrichtlinie",metaInfo:{title:"Plattform - Datenschutzrichtlinie"},introductionParagraph:{title:"Einleitung",para1:"Alquant SA (nachfolgend als Alquant, 'wir', 'uns' bezeichnet) ist das Unternehmen, das diese Plattform betreibt. Alquant SA respektiert die Privatsphäre der Nutzer seiner Webpräsenz. Dies bedeutet, dass die personenbezogenen Daten gemäß den Bestimmungen des anwendbaren Datenschutzgesetzes und auf der Grundlage dieser Datenschutzrichtlinie erfasst, verarbeitet und genutzt werden.",para2:"Dies gilt auch - und insbesondere - für die Zusammenarbeit mit Partnern und Dritten, die wir für die Vertragsabwicklung nutzen.",para3:"Mit der Zustimmung zur folgenden Datenschutzrichtlinie erklären Sie sich mit den nachstehend detaillierten Verfahren von Alquant zur Erfassung, Verarbeitung und Nutzung von Daten gemäß den Datenschutzgesetzen und den folgenden Bestimmungen einverstanden. Diese Zustimmung kann jederzeit mit Wirkung für die Zukunft widerrufen werden.",para4:"Unsere Datenschutzpraxis steht daher im Einklang mit dem neuen Bundesgesetz über den Datenschutz (DSG) und, soweit anwendbar, mit der EU-Datenschutzgrundverordnung (DSGVO)."},accountableAuthorityParagraph:{title:"Verantwortliche Stelle / EU-Vertreter",switzerland:"Schweiz",euRepresentativeSub:{title:"EU-Vertreter",para1:"In den in Artikel 3 Absatz 2 der Verordnung (EU) 2016/679 (Datenschutz-Grundverordnung; DSGVO) genannten Fällen und in Übereinstimmung mit Artikel 27 der DSGVO als Vertreter in der EU benannt ist und in Bezug auf die Schweizer nFADP Anforderung einer Datenschutzbeauftragten Funktion:",para3:"Sie erreichen unseren EU-Vertreter unter: info(at)alquant.com"},accountableAuthoritySub:{email:"E-Mail",phone:"Telefon",title:"Verantwortliche Stelle und Datenschutzfunktion nach Swiss nFADP",para1:"Verantwortlich für die Verarbeitung personenbezogener Daten ist:",para3:"Für Anfragen im Zusammenhang mit dem Schutz Ihrer persönlichen Informationen wenden Sie sich bitte an unseren Datenschutzbeauftragten unter: compliance(at)alquant.com."}},personalDataParagraph:{title:"Personenbezogene Daten",para1:"Personenbezogene Daten sind alle Informationen, die sich auf eine identifizierte oder identifizierbare natürliche Person beziehen; eine natürliche Person gilt als identifizierbar, wenn sie direkt oder indirekt identifiziert werden kann, insbesondere durch Bezugnahme auf einen Identifikator wie einen Namen, eine Identifikationsnummer, Standortdaten, einen Online-Identifikator oder ein oder mehrere besondere Merkmale, die Ausdruck der physischen, physiologischen, genetischen, psychischen, wirtschaftlichen, kulturellen oder sozialen Identität dieser natürlichen Person sind. Dies umfasst zum Beispiel Ihren Namen, Ihre Telefonnummer, Ihre Adresse sowie alle Bestandsdaten, die Sie uns bei der Registrierung und Erstellung Ihres Kundenkontos zur Verfügung stellen. Statistische Daten oder anonymisierte Daten, die wir zum Beispiel bei Ihrem Besuch unseres Webshops erheben und die nicht direkt mit Ihrer Person in Verbindung gebracht werden können, sind hier nicht erfasst."},purposeOfDataCollectionParagraph:{title:"Zwecke der Datenerhebung",para1:"a) Die Erhebung und Verarbeitung dieser Daten erfolgt zum Zweck der Vertragserfüllung, zur Ermöglichung der Nutzung unserer Website (Verbindungsaufbau), zur dauerhaften Gewährleistung der Systemsicherheit und -stabilität, zur Optimierung unserer Webpräsenz und zu internen statistischen Zwecken. Wir erfassen, speichern und verarbeiten personenbezogene Daten ausschließlich in Übereinstimmung mit den geltenden gesetzlichen Vorschriften und soweit dies erforderlich und zur Erfüllung und Verbesserung der vertraglichen Leistungspflichten zwischen uns und dem Nutzer / Kunden erforderlich ist. Dies beinhaltet auch die Speicherung von Daten für etwaige Gewährleistungsansprüche nach Beendigung des Vertrags.",para2:"b) Darüber hinaus nutzen wir Ihre Daten im Rahmen des anwendbaren Rechts für eigene Marketingzwecke, um unsere Webpräsenz zu optimieren und Ihnen auf Dienstleistungen aufmerksam zu machen, die für Sie von besonderem Interesse sein könnten.",para3:"c) Darüber hinaus erfolgt die Erhebung, Verarbeitung und Nutzung von personenbezogenen Daten nur, wenn Sie Ihre Einwilligung dazu erteilt haben."},newsletterParagraph:{title:"Newsletter",para1:"Alquant informiert Sie gerne regelmäßig über aktuelle Themen und Projekte rund um unser Tätigkeitsfeld über den Newsletter. Sie erhalten von uns einen Newsletter nur auf ausdrücklichen Wunsch. Wir verwenden das Opt-In-Verfahren zum Versand des Newsletters, das bedeutet, dass Sie unseren Newsletter per E-Mail erhalten, sofern Sie zuvor ausdrücklich für den Newsletterversand angemeldet haben. Wenn Sie sich für den Newsletter angemeldet haben, wird Ihre E-Mail-Adresse zusammen mit Ihrer Einwilligung zu eigenen Werbezwecken verwendet, bis Sie sich vom Newsletter abmelden. Sie können sich jederzeit durch Senden einer E-Mail mit dem entsprechenden Hinweis an unsere Kontaktadresseinfo(at)alquant.com abmelden. Wir sind berechtigt, Dritte mit der technischen Abwicklung von Werbemaßnahmen zu beauftragen und dürfen Ihre Daten zu diesem Zweck weitergeben.",para2:"Die von Ihnen bei der Anmeldung zum Newsletter angegebenen Daten (Name und E-Mail-Adresse) werden gespeichert und ausschließlich zum Versand des Newsletters verwendet."},legalBasisParagraph:{title:"Rechtsgrundlage für die Verarbeitung",para1:"Wir verarbeiten Ihre personenbezogenen Daten in erster Linie zur Erfüllung vertraglicher Verpflichtungen und unserer gesetzlichen Verpflichtungen. Darüber hinaus erklären Sie sich durch die Annahme dieser Datenschutzerklärung mit allen in dieser Datenschutzerklärung angegebenen Verarbeitungsvorgängen einverstanden. Selbstverständlich können Sie Ihre Einwilligung jederzeit widerrufen; eine Erklärung an compliance(at)alquant.com genügt. Eine bis zu diesem Zeitpunkt durchgeführte Verarbeitung wird durch Ihren Widerruf nicht berührt."},legitimateInterestParagraph:{title:"Berechtigte Interessen für die Verarbeitung",para1:"Neben den zuvor genannten Rechtsgrundlagen für die Datenverarbeitung verarbeiten wir Daten auch auf Grundlage unserer berechtigten Interessen. Dies gilt insbesondere, aber nicht ausschließlich, für die Verarbeitung zu Marketing- und Werbezwecken. Wir verfolgen insbesondere die folgenden Interessen:",list1:{el1:"Sicherstellung der potenziellen Nutzung der Website",el2:"Betrugsprävention",el3:"Gewährleistung der Sicherheit und Stabilität der IT-Systeme",el4:"eigene Marketingzwecke",el5:"interne statistische Zwecke"}},disclosureParagraph:{title:"Offenlegung",para1:"Wir geben Ihre personenbezogenen Daten nur weiter, wenn Sie Ihre ausdrückliche Zustimmung erteilt haben, wenn es eine gesetzliche Verpflichtung dazu gibt oder wenn dies zur Durchsetzung unserer Rechte erforderlich ist - insbesondere zur Durchsetzung von Ansprüchen aus dem Vertragsverhältnis. Darüber hinaus geben wir Ihre Daten an Dritte weiter, soweit dies für die Vertragserfüllung erforderlich ist. Zu diesem Zweck legen wir die erforderlichen Daten Tochtergesellschaften, Transportunternehmen, Banken und anderen Dienstleistern offen. Diese Dienstleister verwenden Ihre Daten ausschließlich für die Auftragsabwicklung und nicht für andere Zwecke. Zusätzlich nutzen wir einige Dienste von externen Dienstleistern um Ihren Besuch auf unserer Website zu optimieren. Es wird (vertraglich) sichergestellt, dass diese Dienstleister Ihre Daten vertraulich und gemäß den geltenden gesetzlichen Bestimmungen behandeln und dass Ihre Daten nur für den Zweck des jeweiligen Dienstes verwendet werden. Eine Übertragung oder ein Weiterverkauf der Daten an Dritte durch Alquant über die Bestimmungen dieser Datenschutzerklärung hinaus ist ausgeschlossen, es sei denn, der Nutzer hat seine ausdrückliche Zustimmung zur Offenlegung seiner Daten gegeben. In diesem Fall kann der Nutzer diese Zustimmung jederzeit widerrufen. Aufgrund Ihrer Zustimmung bereits durchgeführte Verarbeitungsvorgänge werden nicht berührt.",para2:"Alquant ist berechtigt, Ihre personenbezogenen Daten an Dritte im Ausland weiterzugeben, wenn dies für die Vertragsdurchführung erforderlich ist. Diese Dritten sind an das gleiche Datenschutzniveau wie der Anbieter gebunden. Wenn das Datenschutzniveau in einem Land nicht dem schweizerischen Niveau entspricht, stellen wir vertraglich sicher, dass der Schutz Ihrer personenbezogenen Daten jederzeit demjenigen in der Schweiz entspricht."},singleSignOnProcedureParagraph:{title:"Verwendung von Single Sign-On-Verfahren",para1:"Auf unserer Website können Sie sich mit einem Google- oder Microsoft-Profil anmelden, um ein Kundenkonto zu erstellen oder sich über das Social-Plugin mit der Single Sign-On-Technik zu registrieren. Die Plugins sind mit dem Logo des Anbieters gekennzeichnet.",para2:"Wenn Sie unsere Websites aufrufen, die ein solches Plugin enthalten, baut Ihr Browser eine direkte Verbindung mit den Computern des Anbieters auf. Der Inhalt des Plugins wird vom Anbieter direkt an Ihren Browser übertragen, der es in die Website integriert. Durch die Integration von Plugins erhält der Anbieter die Information, dass Sie unsere Website aufgerufen haben. Wenn Sie gleichzeitig beim Anbieter angemeldet sind, kann der Anbieter den Besuch Ihrem Profil zuordnen.",para3:"Wenn Sie nicht möchten, dass der Anbieter Daten über Sie über unsere Website sammelt, müssen Sie sich vor dem Besuch unserer Website aus dem Anbieter ausloggen. Auch wenn Sie ausgeloggt sind, sammeln Anbieter über Social-Plugins anonymisierte Daten und richten für Sie einen Cookie ein. Wenn Sie sich zu einem späteren Zeitpunkt beim Anbieter einloggen, können diese Daten Ihrem Profil zugeordnet werden.",para4:"Wenn ein Login über einen Social-Login-Dienst wie z. B. Google Connect bereitgestellt wird, werden Daten zwischen dem Anbieter und unserer Website ausgetauscht. Im Falle von Google Connect können das zum Beispiel Daten aus Ihrem öffentlichen Google-Profil sein. Durch die Nutzung solcher Login-Dienste stimmen Sie der Datenübertragung zu.",para5:"Bitte beachten Sie die Datenschutzhinweise des Anbieters bezüglich Zweck und Umfang der Datenerhebung und der weiteren Verarbeitung Ihrer Daten durch den Anbieter sowie Ihre jeweiligen Rechte und Einrichtungsoptionen zum Schutz Ihrer Privatsphäre.",para7:'Wenn Sie nicht möchten, dass der Anbieter Daten über Sie über diese Cookies sammelt, können Sie in Ihren Browsereinstellungen die Funktion "Cookies von Drittanbietern blockieren" auswählen. Wenn dann eingebettete Inhalte von anderen Anbietern vorhanden sind, sendet der Browser keine Cookies an den Server.'},durationOfRetentionParagraph:{title:"Aufbewahrungsdauer",para1:"Wir speichern Ihre persönlichen Daten so lange, wie es zur Erfüllung geltender Gesetze erforderlich ist oder wir es für angemessen halten oder solange es für die Zwecke, für die es erhoben wurde, erforderlich ist. Wir sperren oder löschen Ihre persönlichen Daten, sobald sie nicht mehr benötigt werden und definitiv beim Ablauf der gesetzlichen Höchstspeicherfrist.",para2:"Sie können jederzeit eine Löschung Ihrer persönlichen Daten beantragen, indem Sie uns eine entsprechende Anfrage an compliance(at)alquant.com senden. Wir werden Ihrer Anfrage umgehend nachkommen, sofern wir nicht aus anderen Gründen verpflichtet sind, sie aufzubewahren oder sie benötigen, z. B. für die Durchsetzung von Ansprüchen."},furtherDataSourcesParagraph:{title:"Weitere Datenquellen",para1:"Neben den Daten, die wir direkt von Ihnen sammeln, beziehen wir auch Daten aus öffentlichen Registern (wie dem Handelsregister) und von Drittanbietern.",para2:"Da sich die Datenquellen je nach Kunde unterscheiden, kann keine allgemeine Information zu diesen Quellen gegeben werden. Wenn gewünscht, sind wir selbstverständlich bereit, Ihnen unsere Datenquellen im Detail offenzulegen."},userRightsParagraph:{title:"Nutzerrechte",rightRevocationSub:{title:"Recht auf Widerruf",para1:"Sofern Sie uns Ihre Einwilligung zur Erhebung, Speicherung und Verwendung personenbezogener Daten im Hinblick auf die Website oder unsere Dienstleistungen gegeben haben, können Sie diese Einwilligung jederzeit widerrufen. Der Widerruf kann per E-Mail oder schriftlich an den oben in Abschnitt 2 genannten Kontakt an die verantwortliche Stelle gesendet werden. Die Auswirkungen des Widerrufs beschränken sich auf die Speicherung und Verwendung personenbezogener Daten, die ohne Ihre vorherige Einwilligung aufgrund gesetzlicher Erlaubnis nicht gespeichert und verwendet werden dürfen. Der Widerruf hat auch keine Auswirkungen auf frühere Verarbeitungsvorgänge auf der Grundlage der Einwilligung."},furtherRightsSub:{title:"Weitere Rechte",informationSub:{title:"Auskunft",para1:"Auf schriftliche Anfrage geben wir Ihnen jederzeit Auskunft über Ihre gespeicherten personenbezogenen Daten. Die Anfrage auf Auskunft muss schriftlich und mit Identitätsnachweis (Kopie von Personalausweis, Reisepass oder anderem amtlichen Identitätsnachweis) gestellt werden. Die Ausübung dieses Rechts ist einmal im Jahr kostenlos; für weitere Anfragen behalten wir uns vor, Kosten in Rechnung zu stellen."},correctionSub:{title:"Berichtigung, Löschung, Einschränkung der Verarbeitung",para1:"Darüber hinaus haben Sie jederzeit die Möglichkeit, Ihre personenbezogenen Daten von uns korrigieren, sperren oder löschen zu lassen. Wenden Sie sich bitte an die interne Behörde, deren Einzelheiten in Abschnitt 2 zu finden sind. Ausgenommen von der Löschung sind ausschließlich Daten, die wir zur Erledigung noch ausstehender Aufgaben oder zur Durchsetzung bestehender Rechte und Ansprüche benötigen sowie Daten, die wir aufgrund gesetzlicher Vorschriften aufbewahren müssen. Diese Daten werden gesperrt."},rightAppealSub:{title:"Widerspruchsrecht",para1:"Wir legen großen Wert auf die Wahrung der Rechte unserer Kunden und damit auch auf den Schutz Ihrer personenbezogenen Daten. Sollten Sie jedoch der Ansicht sein, dass wir Ihre Daten unrechtmäßig verarbeiten, können Sie uns jederzeit unter +41 41 661 23 45 oder per E-Mail an compliance(at)alquant.com mit Details Ihres Anliegens kontaktieren. Wir werden uns nach bestem Wissen und Gewissen um Ihre Anliegen kümmern.",para2:"Wenn unser Kundenservice Ihnen entgegen Ihrer Erwartungen keine zufriedenstellende Hilfe leisten kann, können Sie Ihr Anliegen jederzeit als formale Beschwerde beim Eidgenössischen Datenschutz- und Öffentlichkeitsbeauftragten einreichen, das dann untersucht wird."},dataPortabilitySub:{title:"Datenübertragbarkeit",para1:"Auf schriftlichen Antrag haben Sie auch das Recht, personenbezogene Daten, die Sie betreffen, in einem strukturierten, gängigen und maschinenlesbaren Format (PDF-Datei) zu erhalten, um sie an einen anderen Verantwortlichen übermitteln zu lassen. Wir behalten uns das Recht vor, dafür anfallende Kosten zu berechnen."}}},cookiesParagraph:{title:"Verwendung von Cookies",para1:"Zur Verbesserung unseres Angebots verwenden wir Cookies auf unserer Website. Ein Cookie ist eine kleine Textdatei, die auf Ihren Computer übertragen wird, wenn Sie unsere Seiten durchsuchen. Ein Cookie kann nur Informationen enthalten, die wir an Ihr elektronisches Gerät senden - sie können nicht verwendet werden, um personenbezogene Daten zu lesen. Wenn Sie Cookies auf unserer Website akzeptieren, haben wir keinen Zugriff auf Ihre persönlichen Informationen, aber mit Hilfe von Cookies können wir Ihren Computer identifizieren. In den verwendeten Cookies sind keine personenbezogenen Daten gespeichert, sodass wir keine Rückschlüsse auf Ihre Identität durch die Cookie-Technologie ziehen können. Es werden nur pseudonymisierte Informationen generiert.",para2:"Wir verwenden Cookies, um zu überprüfen, ob Sie unseren Nutzungsbedingungen entsprechen.",para3:"Wir verwenden sitzungsbezogene, temporäre Cookies: diese bleiben nicht auf Ihrem Computer. Wenn Sie unsere Seiten verlassen, wird auch das temporäre Cookie verworfen. Mit Hilfe der gesammelten Informationen können wir die Nutzungsmuster und Strukturen unserer Website analysieren und durch Verbesserung des Inhalts oder der Personalisierung und Vereinfachung der Nutzung optimieren.",para4:"Darüber hinaus verwenden wir persistente Cookies: diese bleiben auf Ihrem Computer, um Einkaufs-, Personalisierungs- und Registrierungsdienste bei Ihrem nächsten Besuch zu vereinfachen. Diese Cookies können beispielsweise aufzeichnen, was Sie beim Einkaufen ausgewählt haben, während Sie weiter einkaufen. Außerdem müssen Sie Ihr Passwort nur einmal auf Webseiten eingeben, die eine Anmeldung erfordern. Persistente Cookies können vom Benutzer manuell entfernt werden. Sie löschen sich nach Ablauf einer bestimmten Zeit selbst.",para5:"Einige unserer Werbepartner verwenden ebenfalls Cookies (Third-Party-Cookies). Diese Cookies helfen uns, unsere Website an die spezifischen Bedürfnisse unserer Kunden anzupassen, indem sie beispielsweise Anzeigen anzeigen, die Sie tatsächlich interessieren könnten. Mit Hilfe dieser Cookies können wir Informationen darüber sammeln, welche Produkte Sie angesehen oder nach welchen Produkten Sie gesucht haben oder welche Seiten Sie zuvor besucht haben. Diese Cookies werden auf Ihrer Festplatte gespeichert und löschen sich nach Ablauf einer bestimmten Zeit selbst. Es werden auch keine persönlichen Informationen in den Cookies unserer Werbepartner gespeichert. Die Verwendung erfolgt pseudonymisiert, so dass kein Rückschluss auf Ihre Identität gezogen wird.",para6:"Die meisten Browser (wie Firefox, Chrome, Internet Explorer, Safari usw.) akzeptieren Cookies standardmäßig. Sie können temporäre und persistente Cookies in den Sicherheitseinstellungen unabhängig voneinander zulassen oder blockieren. Wir möchten jedoch darauf hinweisen, dass bestimmte Funktionen auf unserer Website nicht verfügbar sind und einige Websites möglicherweise nicht ordnungsgemäß angezeigt werden, wenn Sie Cookies deaktivieren.",para7:"Die in unseren Cookies gespeicherten Daten werden ohne Ihre ausdrückliche Zustimmung nicht mit Ihren persönlichen Daten (Name, Adresse usw.) verknüpft."},liabilityForLinksParagraph:{title:"Haftung für Links",para1:"Alquant erklärt ausdrücklich, dass zum Zeitpunkt der Linksetzung keine illegalen Inhalte auf den zu verlinkenden Seiten erkennbar waren. Wir haben keinen Einfluss auf die aktuelle und zukünftige Gestaltung, den Inhalt oder die Urheberschaft der verlinkten Seiten. Deshalb distanzieren wir uns hiermit ausdrücklich von allen Inhalten aller verlinkten Seiten, die nach der Linksetzung verändert wurden. Diese Erklärung gilt für alle auf unserer Webpräsenz angebrachten Links und Verweise. Bezüglich rechtswidriger, fehlerhafter oder unvollständiger Inhalte und insbesondere für Schäden, die aus der Nutzung oder Nichtnutzung solcherart dargebotener Informationen entstehen, haftet allein der Anbieter der Seite, auf welche verwiesen wurde, nicht derjenige, der lediglich auf die jeweilige Veröffentlichung verweist."},webAnalysisParagraph:{title:"Webanalyse",googleAnalyticsSub:{title:"Google Analytics",para1:"Diese Website verwendet Google Analytics, einen Webanalysedienst von Google Inc. (Google) zur bedarfsgerechten Gestaltung von Websites. Wir erhalten nur Datenbewertungen ohne persönliche Bezüge.",para2:"Google Analytics verwendet Cookies: Textdateien, die auf Ihrem Computer gespeichert werden und die eine Analyse Ihrer Nutzung der Website ermöglichen. Die durch den Cookie erzeugten Informationen über Ihre Nutzung dieser Website (einschließlich Ihrer IP-Adresse) werden an einen Server von Google in den USA übertragen und dort gespeichert. Auf dieser Website wurde die IP-Anonymisierung aktiviert, so dass die IP-Adresse von Google-Nutzern innerhalb der Mitgliedsstaaten der Europäischen Union oder in anderen Vertragsstaaten des Abkommens über den Europäischen Wirtschaftsraum vor der Übertragung gekürzt wird. Nur in Ausnahmefällen wird die volle IP-Adresse an einen Google-Server in den USA übertragen und dort gekürzt. Google wird diese Informationen im Auftrag des Betreibers dieser Website verwenden, um die Nutzung der Website durch die Nutzer auszuwerten, um Reports über die Websiteaktivitäten zusammenzustellen und um weitere mit der Website- und der Internetnutzung verbundene Dienstleistungen gegenüber dem Websitebetreiber zu erbringen. Google wird diese Informationen auch an Dritte übertragen, sofern dies gesetzlich vorgeschrieben ist oder soweit Dritte diese Daten im Auftrag von Google verarbeiten. Google wird Ihre IP-Adresse niemals mit anderen Google-Daten in Verbindung bringen.",para3:"Sie können die Installation von Cookies durch eine entsprechende Einstellung Ihrer Browser-Software verhindern. Wir weisen jedoch darauf hin, dass Sie in diesem Fall möglicherweise nicht alle Funktionen dieser Website vollständig nutzen können. Durch die Nutzung dieser Website erklären Sie sich mit der Verarbeitung der über Sie erhobenen Daten durch Google in der zuvor beschriebenen Art und Weise und zu dem zuvor benannten Zweck einverstanden.",para4:'Darüber hinaus können Sie die Erfassung der durch das Cookie erzeugten und auf Ihre Nutzung der Website bezogenen Daten (einschließlich Ihrer IP-Adresse) sowie die Verarbeitung dieser Daten durch Google verhindern, indem Sie das unter <a href="https://tools.google.com/dlpage/gaoptout" >https://tools.google.com/dlpage/gaoptout</a > verfügbare Browser-Plugin herunterladen und installieren. Weitere Informationen zu den Nutzungsbedingungen und zum Datenschutz von Google Analytics finden Sie unter',para5:'<a href="https://www.google.com/analytics/terms/" >https://www.google.com/analytics/terms/</a > und',para6:'<a href="https://policies.google.com/privacy?hl=en" >https://policies.google.com/privacy?hl=en</a >'},googleFontsSub:{title:"Google-Schriftarten",para1:'Diese Website verwendet auch Google-Schriftarten (Open Scans). Aus technischen Gründen muss Ihre IP-Adresse an Google übertragen werden, damit die Schriftarten an Ihren Browser übertragen werden können. Weitere Informationen zu Google-Schriftarten finden Sie unter <a class="break-all" href="https://developers.google.com/fonts/faq#what_does_using_the_google_fonts_api_mean_for_the_privacy_of_my_users" >https://developers.google.com/fonts/faq#what_does_using_the_google_fonts_api_mean_for_the_privacy_of_my_users</a>.'}},securityMeasureParagraph:{title:"Sicherheitsmaßnahmen",para1:"Wir wenden technische und organisatorische Sicherheitsmaßnahmen an, um Ihre persönlichen Informationen vor unbefugtem Zugriff, Missbrauch, unbeabsichtigter oder vorsätzlicher Manipulation, Verlust oder Zerstörung angemessen zu schützen. Zum Schutz Ihrer Privatsphäre verwenden wir eine sichere Verbindung für unsere Website, die Sie anhand von „https“ (https steht für Hypertext Transfer Protocol Secure) am Anfang der Adressleiste in Ihrem Browser erkennen können. Auf diese Weise wird die Verbindung über SSL/TSL verschlüsselt und Ihre Daten können nicht von Dritten abgefangen werden. Technische Sicherheitsmaßnahmen zum Schutz Ihrer persönlichen Daten werden regelmäßig überprüft und bei Bedarf aktualisiert. Diese Grundsätze gelten auch für Unternehmen, die im Auftrag und gemäß unseren Anweisungen personenbezogene Daten verarbeiten und nutzen."},legalBasisGeneralDataProtectionParagraph:{title:"Rechtsgrundlage der Datenschutz-Grundverordnung",para1:"Gemäß den Bestimmungen der Datenschutz-Grundverordnung (DSGVO), die ab dem 25. Mai 2018 gilt, informieren wir Sie darüber, dass Ihre Zustimmung zur Zusendung an die von Ihnen angegebene E-Mail-Adresse auf der Grundlage von Art. 6 Abs. 1 lit. a und Art. 7 DSGVO erteilt wird. Die entsprechende Versandliste wird auf der Grundlage unserer berechtigten Interessen gemäß Art. 6 Abs. 1 lit. f DSGVO verwendet. Wir sind daran interessiert, eine benutzerfreundliche und sichere Website und System zu nutzen, die unseren Geschäftsinteressen dient, aber auch den Erwartungen unserer Benutzer und Kunden entspricht."},changesParagraph:{title:"Änderungen",para1:"Wir behalten uns das Recht vor, diese Datenschutzrichtlinie jederzeit zu ändern. Die Datenschutzrichtlinie stellt keine vertragliche oder andere formelle rechtliche Beziehung mit oder im Namen einer Partei dar."}},termsOfUse:{endDate:"Crissier, 3. Februar 2022",title:"Nutzungsbedingungen",metaInfo:{title:"Plattform - Nutzungsbedingungen"},declarationOfAcceptanceParagraph:{title:"Erklärung der Annahme durch den Benutzer",para1:'Diese Website wird von Alquant SA betrieben. Durch die Nutzung dieser Website (oder einer Seite, die auf diese Webadresse umgeleitet wurde; im Folgenden in toto als "Alquant-Website" bezeichnet) bestätigen Sie, dass Sie die folgenden Nutzungsbedingungen einschließlich der rechtlichen Bedingungen gelesen, verstanden und akzeptiert haben. Wenn Sie diese Nutzungsbedingungen nicht akzeptieren, besuchen Sie die Alquant-Website bitte nicht erneut.'},limitedAccessParagraph:{title:"Eingeschränkter Zugang",para1:"Die Alquant-Website ist nicht für juristische und natürliche Personen bestimmt, die aus Gründen der Staatsangehörigkeit, des Geschäftssitzes, des Wohnsitzes oder aus anderen Gründen einem Rechtssystem unterliegen, das insbesondere Folgendes verbietet oder beschränkt:",list1:{el1:"die Veröffentlichung der Inhalte,",el2:"den Zugang zur Alquant-Website,",el3:"die Aktivitäten eines ausländischen Finanzdienstleisters,",el4:"die Zulassung von Finanzprodukten (z. B. Zertifikaten oder Fonds)."},para3:"Außerdem ist sie nicht für die Verwendung durch juristische oder natürliche Personen in Ländern vorgesehen, in denen die Alquant SA oder mit ihr verbundene Unternehmen nicht über die erforderliche Registrierung und Genehmigung zur Durchführung von Geschäften verfügen.",para4:"Personen, die einem oder allen dieser Einschränkungen unterliegen, dürfen nicht auf die Alquant-Website zugreifen. Dies gilt insbesondere für Bürger der USA, des Vereinigten Königreichs, Kanadas, Japans, Chinas und Singapurs oder Personen, die in den genannten Ländern ansässig sind. Bitte informieren Sie sich über die entsprechenden rechtlichen Beschränkungen in Ihrem Land.",para5:"Hinweis für institutionelle Anleger",para6:'Finanzprodukte für professionelle Anleger sind ausschließlich für qualifizierte Anleger erhältlich. Gemäß Art. 10 Abs. 3 des Kollektivanlagengesetzes zusammen mit Art. 6 der Kollektivanlagenverordnung umfassen qualifizierte Anleger institutionelle Anleger mit einem professionellen Treasury, nämlich Banken und Wertpapierhändler (einschließlich ihrer Kunden, die einen schriftlichen Vermögensverwaltungsvertrag haben), Pensionsfonds, Versicherungsgesellschaften, Fondsmanager und lokale und kantonale Behörden sowie Industrie- und Handelsunternehmen. Durch Auswahl von "Professionelle Anleger" bestätigen Sie, dass Sie gemäß der oben genannten Definition ein qualifizierter Anleger sind.'},propertyRightsParagraph:{title:"Eigentumsrechte",para1:"Alle Elemente auf der Alquant-Website sind als immaterielles Eigentum geschützt und gehören Alquant SA oder Dritten. Die Nutzung der Alquant-Website beinhaltet keine Übertragung von Rechten, insbesondere keine Rechte in Bezug auf Software, Markennamen oder Elemente der Alquant-Website. Urheberrechtsvermerke und Markennamen dürfen nicht geändert oder entfernt werden. Elemente der Alquant-Website dürfen nicht vollständig oder teilweise ohne Verweis auf die vollständige Quelle reproduziert werden. Der Inhalt der Alquant-Website darf ohne vorherige schriftliche Zustimmung von Alquant SA nicht für öffentliche oder kommerzielle Zwecke reproduziert oder genutzt werden."},consultingReplacementParagraph:{title:"Kein Ersatz für Beratung",para1:"Die auf der Alquant-Website veröffentlichten Informationen und Meinungen haben einen allgemeinen Charakter. Sie sind weder dazu bestimmt noch geeignet, die individuelle Beratung durch Fachpersonal zu ersetzen, das die tatsächlichen Umstände in einem bestimmten Einzelfall berücksichtigt. Aus diesem Grund stellen sie weder eine rechtliche, steuerliche, finanzielle, wirtschaftliche oder sonstige Beratung dar, noch dürfen sie als Investitionshilfe genutzt werden."},noOffersParagraph:{title:"Keine Angebote",para1:"Die auf der Alquant-Website veröffentlichten Informationen und Meinungen stellen weder eine Werbung noch Empfehlungen dar und sollten nicht als Aufforderung, ein Angebot abzugeben, ausgelegt werden:",list1:{el1:"zum Erwerb oder Verkauf von Anlageinstrumenten,",el2:"für die Durchführung von Transaktionen jeglicher Art,",el3:"für die Durchführung jeglicher anderer rechtlicher Geschäfte."},para3:"Der einzige Zweck der Alquant-Website besteht darin, Informationen bereitzustellen."},futurePerformanceParagraph:{title:"Zukünftige Performance (Risikohinweis)",para1:"Die zukünftige Performance eines Investmentinstruments kann nicht aus vergangenen Kursbewegungen abgeleitet werden, in anderen Worten, das Wertpapier kann steigen oder fallen. Wie sich das Wertpapier in der Vergangenheit verhalten hat, ist daher keine Garantie für seinen zukünftigen Wert. Im Falle bestimmter Investmentinstrumente ist auch der Verlust des gesamten investierten Kapitals in extremen Fällen möglich. Darüber hinaus können Schwankungen der Wechselkurse auch die Investition beeinflussen."},noGuaranteeParagraph:{title:"Keine Garantie",para1:"Alquant SA bietet keine Garantien (einschließlich Haftung gegenüber Dritten) oder Zusicherungen für",list1:{el1:"die Aktualität, Präzision, Zuverlässigkeit oder Vollständigkeit der Inhalte der Alquant-Website,",el2:"die Ergebnisse, die durch die Nutzung der Alquant-Website erzielt werden,",el3:"die Inhalte von Dritten, die auf der Alquant-Website gefunden oder zugänglich gemacht werden können."},para3:"Darüber hinaus haftet Alquant SA nicht und garantiert nicht dafür, dass",list2:{el1:"die Funktionen auf der Alquant-Website ohne Fehler funktionieren und ohne Unterbrechung zur Verfügung stehen,",el2:"die Alquant-Website und andere über den Zugang zur Alquant-Website genutzte Komponenten frei von Viren usw. sind."},para5:"Alquant SA bietet auch keine Garantie für",list3:{el1:"die Wertsteigerung oder Stabilität des in Investmentinstrumente investierten Kapitals,",el2:"das Niveau zukünftiger Dividenden."}},linksParagraph:{title:"Links",para1:"Alquant SA hat die von Dritten mit der Alquant-Website verlinkten Websites nicht überprüft und kann nicht für die Aktualität, Präzision, Zuverlässigkeit, Vollständigkeit oder Rechtmäßigkeit der Inhalte und Angebote auf solchen Websites haftbar gemacht werden. Der Nutzer greift daher auf solche Webseiten auf eigene Gefahr zu.",para2:"Links zu Webseiten außerhalb der Alquant-Website dürfen nur mit der vorherigen Zustimmung von Alquant SA eingefügt werden."},serviceChangesParagraph:{title:"Änderungen des Dienstes",para1:"Alquant SA kann jederzeit jeden Aspekt der Dienste ändern, aussetzen oder einstellen, einschließlich der Verfügbarkeit von Funktionen, Datenbanken oder Inhalten. Alquant SA kann auch Grenzen für bestimmte Funktionen und Dienste festlegen oder den Zugang des Benutzers zu allen oder Teilen der Dienste ohne Vorankündigung einschränken.",para2:"Alquant SA behält sich das Recht vor, den Zugang des Benutzers zu den Diensten jederzeit nach eigenem Ermessen und ohne Vorankündigung zu beenden."},useOfInformationParagraph:{title:"Verwendung von Informationen",para1:"Der Benutzer darf die auf der Alquant-Website veröffentlichten Informationen nur für interne Geschäftszwecke oder persönliche, nichtkommerzielle Zwecke verwenden. Der Benutzer darf keine Alquant SA-Informationen in irgendeinem Format veröffentlichen, verkaufen, vermieten, verbreiten, weiterleiten, neu verteilen, senden oder anderweitig bereitstellen oder einem Dritten den Zugang dazu gestatten. Der Benutzer kann jedoch Informationen an Benutzer weitergeben, und zwar nur auf nicht kontinuierlicher Basis, und zwar nur auf folgende begrenzte Weise: (a) In schriftlichen Anzeigen, Korrespondenz oder anderen Literatur oder (b) während von Hand geführter Telefongespräche, die keine computergestützten Sprach-, automatisierten Informationsabfragesysteme oder ähnliche Technologien beinhalten.",para2:"Die Verwendung von automatischen Skripting-Tools zum Crawlen der Website oder der Versuch, die API zu umgehen, ist strengstens untersagt und kann dazu führen, dass der Zugang des Benutzers zur Alquant-Website blockiert wird. Übermäßige Anfragen können zu einer Drosselung des Zugangs Ihres Kontos zu Daten führen.",para3:"Die Verwendung von nicht-API-basierten Formen der Automatisierung, wie das Scripting der Website, ist verboten. Die Verwendung dieser Techniken kann zur dauerhaften Sperrung Ihres Kontos führen."},indemnificationParagraph:{title:"Entschädigung",para1:"Der Benutzer (und der Fonds des Benutzers, wenn der Benutzer ein Vertreter eines Fonds ist) erklärt sich gemeinsam und mehrfach damit einverstanden, Alquant SA und seine Agenten, Informationsanbieter und deren Agenten, Vertreter, Direktoren, Offiziere, Aktionäre, Partner, Vorgänger, Nachfolger und Abtretungsempfänger von und gegen jegliche Ansprüche oder Forderungen, Verfahren, Schäden, Haftungen, Verluste oder Ausgaben, die durch Ansprüche Dritter entstehen, von der Verwendung der Alquant SA-Informationen durch den Benutzer, die einen Verstoß gegen die Nutzungsbedingungen oder eine unangemessene Handlung oder Unterlassung darstellt, freizustellen und schadlos zu halten.",para2:"Wenn ein Benutzer die Dienste oder Inhalte nicht gemäß diesen Nutzungsbedingungen ausdrücklich genehmigt nutzt, kann er das Urheberrecht und andere Gesetze verletzen und Strafen unterliegen. Ohne die vorhergehenden Sätze einzuschränken, wird der Benutzer nicht:",para3:"Den Weiterverkauf, die Anzeige, Vervielfältigung, Kopie, Übersetzung, Änderung, Anpassung, Erstellung von abgeleiteten Werken, Verbreitung, Übertragung, Übermittlung, Republikation, Kompilierung, Dekompilierung oder Reverse Engineering der Dienste, Inhalte, eines Teils davon oder von Daten, anderen Inhalten oder Informationen, die dem Benutzer im Zusammenhang mit der Nutzung der Dienste durch Alquant SA oder einen ihrer Drittanbieterquellen zur Verfügung gestellt werden, in jeder Form, Medien oder Technologie, die jetzt existiert oder in Zukunft entwickelt wird, oder über jedes Netzwerk, einschließlich eines lokalen Netzwerks, gestatten oder selbst durchführen; Entfernen, Verbergen oder Ändern von Hinweisen, Haftungsausschlüssen oder anderen Offenlegungen, die den Diensten beigefügt oder in ihnen enthalten sind, einschließlich aller Urheberrechtshinweise, Marken oder anderer Hinweise auf Eigentumsrechte oder irgendwelche anderen rechtlichen Hinweise, die mit den Inhalten in Verbindung gebracht werden; Ein Frame erstellen oder Framing-Techniken verwenden, um einen Teil der Dienste oder Inhalte ohne ausdrückliche vorherige schriftliche Zustimmung von Alquant SA einzuschließen;",para4:"Sich als eine Person ausgeben oder falsch angeben oder anderweitig seine Zugehörigkeit zu einer Person in Zusammenhang mit der Nutzung der Dienste darstellen; Einbrechen oder versuchen, die Sicherheit der Dienste, eines Netzwerks, Servers, Daten oder Computers oder anderer Hardware in Bezug auf oder in Verbindung mit den Diensten oder einem Teil der Inhalte zu verletzen; keine Software oder anderen Werkzeuge oder Geräte verwenden oder durch die Dienste verbreiten, die dazu bestimmt sind, die Privatsphäre, Sicherheit oder Nutzung der Dienste durch andere oder die Operationen oder Vermögenswerte einer Person zu beeinträchtigen oder zu gefährden;",para5:"Geltende Gesetze verletzen, einschließlich, aber nicht beschränkt auf Wertpapiergesetze und Gesetze, die die Investitionstätigkeit in einem Land regeln; Einen anderen autorisierten Benutzer daran hindern, die Dienste zu nutzen und zu genießen; Keinen der Inhalte oder andere Informationen oder Materialien, die durch die Dienste erhalten wurden, zu kommerziellen Zwecken posten, veröffentlichen, übertragen, reproduzieren, verteilen oder auf irgendeine Weise ausnutzen, es sei denn, dies ist ausdrücklich durch diese Nutzungsbedingungen oder durch ausdrückliche vorherige Genehmigung von Alquant SA gestattet."},exclusionLiabilityParagraph:{title:"Haftungsausschluss",para1:"Alquant SA oder jede damit verbundene Unternehmen, Partner, Vorstände, Mitarbeiter oder Vertreter lehnen jegliche Haftung (einschließlich Fahrlässigkeit und gegenüber Dritten) für direkte oder indirekte Schäden oder Folgeschäden ab, die in direktem oder indirektem Zusammenhang mit der Nutzung der Alquant-Website entstehen können."},reservationsParagraph:{title:"Vorbehalte",para1:"Alquant SA behält sich das Recht vor, jederzeit ohne vorherige Ankündigung an die Benutzer Informationen, Meinungen, Leistungen oder andere Daten, Links usw. zu ändern.",para2:"Darüber hinaus können auch die Nutzungsbedingungen geändert und die Nutzung der Alquant-Website ohne vorherige Ankündigung eingeschränkt oder beendet werden."},placeOfJurisdictionParagraph:{title:"Gerichtsstand",para1:"Soweit zwischen Alquant SA und den Benutzern der Alquant-Website eine Rechtsposition entsteht, unterliegt diese schweizerischem Recht. Der alleinige Gerichtsstand ist Lausanne, Schweiz."}}},errors:{backHome:"Zurück zur Startseite",error403:{paragraphWhenLoggedIn:"Sie haben keine Berechtigung, auf diese Seite zuzugreifen. Wenn Ihr Profil akzeptiert wird, wird Ihnen ein Administrator in Kürze die Rechte für den Zugriff auf diese Seite erteilen. Bitte schauen Sie in den nächsten 1-2 Werktagen wieder vorbei.",paragraphWhenLoggedInWithContact:e=>`Sie haben keine Berechtigung, auf diese Seite zuzugreifen. Wenn Ihr Profil akzeptiert wird, wird Ihnen ein Administrator in Kürze die Rechte für den Zugriff auf diese Seite erteilen. Bitte schauen Sie in den nächsten 1-2 Werktagen wieder vorbei. Wenn Sie dann immer noch keinen Zugang erhalten haben, kontaktieren Sie uns bitte: ${e.named("contactEmail")}.`,paragraphWhenNotLoggedIn:"Für den Zugriff auf diese Seite müssen Sie authentifiziert sein. Bitte klicken Sie auf die Schaltfläche unten, um sich bei Ihrem Konto anzumelden. Wenn Sie noch kein Konto haben, registrieren Sie sich bitte, indem Sie auf die Schaltfläche unten klicken.",title:"403 - Verbotener Zugang",metaInfo:{title:"Plattform - 403"}},error404:{paragraph:"Die von Ihnen versuchte Seite existiert nicht.",title:"404 - Seite nicht gefunden",metaInfo:{title:"Plattform - 404"}},unauthorizedInvestorProfile:{modifyInvestorProfile:"Investorenprofil ändern",title:"Nicht autorisiertes Investorenprofil",unfortunately:"Leider haben Sie aufgrund Ihres Investorenprofils keinen Zugriff auf diese Seite.",metaInfo:{title:"Plattform - Nicht autorisiertes Investorenprofil"}}},help:{contact:{address:"Adresse",introText:"Zögern Sie nicht, dieses Formular zu verwenden, um mit uns in Kontakt zu treten. Wir werden uns freuen, alle Vorschläge zu bearbeiten oder alle Arten von Fragen zu beantworten, die Sie im Zusammenhang mit dieser Plattform und unseren Produkten haben könnten.",recaptchaPrivacyPolicy:"Datenschutzerklärung",recaptchaProtect:"Diese Seite ist durch reCAPTCHA und die Google {0} geschützt, wobei die {1} gelten.",recaptchaTermsOfService:"Nutzungsbedingungen",switzerland:"Schweiz",title:"Kontakt",dialog:{confirmMessage:{title:"Bestätigen",text:"Möchten Sie diese Nachricht senden?"}},form:{country:"Land",email:"E-Mail",enterMessage:"Geben Sie Ihre Nachricht ein",exampleEmail:"max.mustermann@example.com",exampleName:"Max Mustermann",investorProfileType:"Investorentyp",name:"Name",sendEmail:"E-Mail senden"},metaInfo:{title:"Plattform - Kontakt"},notify:{errorMessage:{title:"Fehler beim Senden der Nachricht",text:"Sorry, die Nachricht konnte nicht gesendet werden. Versuchen Sie es später erneut oder kontaktieren Sie uns direkt per E-Mail."},messageSent:{title:"Nachricht gesendet",text:"Die Nachricht wurde erfolgreich gesendet. Wir werden uns innerhalb von 1-2 Werktagen bei Ihnen melden."}}},faq:{subtitle:"Schauen Sie sich die folgende Liste für alle häufig gestellten Fragen an.",title:"Haben Sie Fragen?",metaInfo:{title:"Plattform - FAQ"}},knowledgeBase:{investmentStrategyTechniques:"Anlagestrategietechniken",metaInfoTerm:e=>`Wissensdatenbank - ${e.named("term")}`,noResults:"Keine Ergebnisse gefunden.",performanceMetrics:"Performance-Kennzahlen",search:"Suche",source:"Quelle",subtitle:"Finden Sie Erklärungen zu allgemeinen Fachbegriffen sowie zu einigen unserer auf dieser Plattform dargestellten Techniken.",title:"Willkommen in unserer Wissensdatenbank",alpha:{title:"Alpha",para1:"{0} wird verwendet, um die überlegene Performance einer Strategie oder ihres Managers im Vergleich zu einem Benchmark zu messen. Das {1} beschreibt die Performance nach Abzug des risikofreien Zinssatzes und der marktbezogenen Rendite (Marktprämie * {2}).",para2:'Das obige Diagramm zeigt einen <span class="font-bold">Alpha</span>-Wert von 4%, was bedeutet, dass die Strategie bei der aktuellen Zinsentwicklung (risikofreie Rendite) und ihrer Marktabhängigkeit eine zusätzliche Performance von 4% im Vergleich zu dem erwarteten Ergebnis erzielen konnte.',para3:'Wie im obigen Diagramm angegeben, ist die <span class="font-bold">Alpha</span>-Komponente der einzige Performance-Treiber, der dem Können des Managers zugeschrieben werden kann. Es zeigt auch, dass <span class="font-bold">Alpha</span> eine negative Zahl werden kann, was bedeutet, dass durch das aktive Management der Investition Performance verloren gegangen ist. Ein positiver <span class="font-bold">Alpha</span>-Wert kann jedoch als die Komponente angesehen werden, für die ein Anleger eine Gebühr zahlen möchte.',para4:"Je höher das Alpha, desto besser die Strategie. Ein hohes Alpha bedeutet, dass die Vermögensverwalter es geschafft haben, Wert zu schaffen."},annualizedReturn:{title:"Annualisierte Rendite",para1:'<span class="font-bold">Annualisierte Renditen</span> sind kumulative Renditen, die auf einen Zeitraum von einem Jahr umgerechnet wurden. Dies ermöglicht es Anlegern, Renditen verschiedener Vermögenswerte, die sie für unterschiedliche Zeiträume gehalten haben, besser zu vergleichen.',para2:'Alternativ können <span class="font-bold">annualisierte Renditen</span> auch als die einjährige Rendite interpretiert werden, die ein Anleger im Durchschnitt erzielt hätte, indem er während eines bestimmten Zeitraums investiert hätte.',para3:"Je höher die annualisierte Rendite, desto besser ist die Investition, wenn alle anderen Faktoren gleich bleiben."},annualizedVolatility:{title:"Annualisierte Volatilität",para1:'<span class="font-bold">Annualisierte Volatilität</span> ist die Volatilität einer Anlage, die auf einen Zeitraum von einem Jahr skaliert wird. Die <span class="font-bold" >Volatilität</span> selbst misst die Größenordnung von Preisbewegungen. Technischer ausgedrückt ist <span class="font-bold" >Volatilität</span> ein statistisches Maß für die Streuung von Renditen (insbesondere die Standardabweichung von Renditen) über einen Zeitraum. Je höher die <span class="font-bold" >Volatilität</span>, desto risikoreicher die Anlage, da bei höherer <span class="font-bold">Volatilität</span> wahrscheinlicher größere Schwankungen auftreten.'},beta:{title:"Beta",para1:'<span class="font-bold" >Beta</span> misst die Abhängigkeit von Renditen. Es wird normalerweise verwendet, um die Abhängigkeit eines Wertpapiers oder einer Anlagestrategie von der Rendite des Marktes zu messen. Ein höheres <span class="font-bold" >Beta</span> gibt an, dass sich das Wertpapier aggressiver als der Markt bewegt, während ein niedriges Beta bedeutet, dass das Wertpapier nur teilweise die Markterträge einfängt. Die Grafik unten zeigt Trendlinien einer Anlage mit hohem Beta-Wert und einer mit niedrigem Beta-Wert und wie sie im Vergleich zum Markt abschneiden, wobei die Steigung der Trendlinie den Beta-Wert darstellt. Die Anlage mit niedrigem <span class="font-bold" >Beta</span> zeigt ein <span class="font-bold" >Beta</span> < 1, was bedeutet, dass sie im Allgemeinen weniger als der Markt, aber in die gleiche Richtung bewegt. Die Anlage mit hohem <span class="font-bold" >Beta</span> zeigt ein Beta > 1 und generiert daher extreme Erträge im Vergleich zum Markt. Somit sind die Erträge in der Grafik breiter gestreut als bei der Anlage mit niedrigem <span class="font-bold" >Beta</span>.',para2:'Obwohl selten, gibt es negative <span class="font-bold">Beta</span>-Werte, die eine inverse Beziehung zum Markt anzeigen würden.',para3:"Bei der Analyse einer Anlagestrategie suchen Investoren nach gut performenden Strategien mit einem niedrigen Beta. Diese Konstellation zeigt an, dass die Performance des Managers weniger von den Marktrenditen abhängt, sondern von der Fähigkeit des Managers."},calmarRatio:{title:"Calmar Ratio",para1:"Ein Verhältnis, das verwendet wird, um die Rendite im Verhältnis zum Drawdown-Risiko (Abwärtsrisiko) eines Anlageprodukts zu bestimmen.",para2:"Unter sonst gleichen Bedingungen gilt: Je höher die Quote, desto besser die Investition."},correlation:{title:"Korrelation",para1:"Der Pearson-Korrelationskoeffizient (PCC) ist ein statistisches Mass, das die Stärke und Richtung einer linearen Beziehung zwischen zwei Datensätzen bewertet. Er wird berechnet als das Verhältnis der Kovarianz der beiden Variablen zum Produkt ihrer Standardabweichungen. Durch diese Normalisierung erhält die PCC einen Wert zwischen -1 und 1, wobei -1 für eine perfekte negative lineare Korrelation, 1 für eine perfekte positive lineare Korrelation und 0 für keine lineare Korrelation steht. Es ist wichtig zu beachten, dass die PCC nur lineare Beziehungen erkennt, nicht aber andere Arten von Korrelationen",para2:"Bei gepaarten Daten {(X,Y)} von n Paaren wird die PCC mit der folgenden Formel berechnet:"},cumulativeReturn:{title:"Kumulative Rendite",para1:'Als Prozentsatz dargestellt, ist die <span class="font-bold">kumulative Rendite</span> einer Investition der Gesamtbetrag, den die Investition im Laufe der Zeit gewonnen oder verloren hat.',para2:'Die <span class="font-bold">kumulative Rendite</span> kann leicht aus einem Diagramm abgeleitet werden, das das Wachstum einer Investition zeigt, wie oben gezeigt. Wenn wir nur den ersten und den letzten Wert des Diagramms verwenden, können wir die kumulierte Gesamtrendite für einen bestimmten Zeitraum ermitteln.'},informationRatio:{title:"Information Ratio",para1:'Investitionsstrategien werden oft an einem bestimmten Benchmark gemessen, der meist aus einem oder einer Mischung aus vielen Indizes besteht. Wenn ein Investmentmanager den Benchmark schlägt, ist es für den Anleger interessant zu wissen, zu welchem Preis das Ziel erreicht wurde. Das <span class="font-bold" >Information Ratio</span> ist ein Maß für den Vergleich zwischen dem Mehrertrag gegenüber dem Benchmark und dem Tracking Error, der ein Maß für die Konsistenz zwischen der Strategie und dem Benchmark ist.',para2:'Das <span class="font-bold" >Information Ratio</span> wird auf die gleiche Weise berechnet wie das Sharpe Ratio unter der Annahme, dass der Benchmark einer risikofreien Rendite mit einer Volatilität von 0% entspricht.',para3:"Wenn alle anderen Faktoren gleich sind, gilt: Je höher das Verhältnis, desto robuster ist die Anlage. Ein hohes Verhältnis bedeutet, dass die täglichen Schwankungen der Excess Returns gegenüber dem Referenzindex im Vergleich zum durchschnittlichen Excess Return gegenüber dem Referenzindex gering sind."},kurtosis:{title:"Kurtosis",para:"Die Kurtosis gibt an, wie spitz eine Verteilung ist. Für eine Normalverteilung ist die Kurtosis 0. Je höher die Kurtosis einer Verteilung ist, desto stärker ist sie um ihren Mittelwert konzentriert."},m2RiskAdjustedPerf:{title:"M2-Messung",para1:"Die risikobereinigte M2-Performance (M-Quadrat), auch bekannt als M2-Messung, bewertet die risikobereinigten Erträge eines Anlageportfolios. Es bewertet die Renditen des Portfolios unter Berücksichtigung des Risikos im Vergleich zu einer Benchmark, z. B. dem Markt. Im Wesentlichen stellt sie die Differenz der bereinigten Überschussrendite eines Portfolios (P) gegenüber dem Markt dar, wobei das Portfolio an die Volatilität des Marktes angepasst wird. Sie ist aus der Sharpe-Ratio hervorgegangen und bietet einen wesentlichen Vorteil, da sie die Ergebnisse in prozentualen Renditen ausdrückt, im Gegensatz zur Sharpe-Ratio, die eine nicht-negative Zahl ist und für viele Anleger weniger praktisch ist. Diese Eigenschaft des Modigliani-Maßes macht es wesentlich einfacher, es zu verstehen und anzuwenden.",para2:"Wenn die Rendite der Anlage höher ist als der risikofreie Zinssatz, ist die Anlage umso besser, je höher das M2-Maß ist, wenn alles andere gleich bleibt. In diesem Fall steigt das M2-Maß, wenn die Rendite der Strategie steigt oder wenn die Volatilität der Strategie im Vergleich zu ihrer Benchmark sinkt."},maximumDrawdown:{title:"Maximaler Drawdown",para1:'Ein <span class="font-bold">maximaler Drawdown</span> ist der maximale beobachtete Verlust von einem Hoch zum Tief eines Portfolios, bevor ein neues Hoch erreicht wird. Der <span class="font-bold" >maximale Drawdown</span> ist ein Indikator für das Abwärtsrisiko über einen bestimmten Zeitraum hinweg.',para2:'<span class="font-bold">Maximaler Drawdown</span> wird verwendet, um die relative Risikohaltigkeit einer Strategie im Vergleich zu einer anderen zu beurteilen, da er sich auf die Kapitalerhaltung konzentriert, was für die meisten Anleger ein Schlüsselanliegen ist. Ein niedriger maximaler Drawdown wird bevorzugt, da dies darauf hinweist, dass Verluste aus Investitionen gering waren. Wenn eine Investition niemals einen Cent verloren hat, wäre der <span class="font-bold" >maximale Drawdown</span> null. Der schlechtmöglichste <span class="font-bold">maximale Drawdown</span> wäre 100%, was bedeutet, dass die Investition vollständig wertlos ist.',para3:"Je niedriger der absolute Wert des maximalen Drawdowns ist (d. h. je näher der maximale Drawdown bei 0 % liegt), desto zuverlässiger ist die Anlage, wenn alles andere gleich bleibt.",keyPoints:"Schlüsselinformationen",keyPoint1:"Der maximale Drawdown ist ein Maß für den größten Preiseinbruch eines Vermögenswerts von einem Hoch zum Tief.",keyPoint2:"Der maximale Drawdown gilt als Indikator für das Abwärtsrisiko, wobei große maximale Drawdowns darauf hindeuten, dass Abwärtsbewegungen volatil sein könnten.",keyPoint3:"Obwohl der maximale Drawdown den größten Verlust misst, berücksichtigt er weder die Häufigkeit von Verlusten noch die Größe von Gewinnen."},metaInfo:{title:"Plattform - Wissensdatenbank"},omegaRatio:{title:"Omega Ratio",para1:"Das Omega Ratio ist ein Maß für die Risiko-Ertrags-Performance. Sie berechnet das wahrscheinlichkeitsgewichtete Verhältnis von Gewinnen und Verlusten.",para2:"Unter sonst gleichen Bedingungen gilt: Je höher die Quote, desto besser die Investition."},returnVolatilityRatio:{title:"Rendite-Volatilitäts-Verhältnis",para1:'Das <span class="font-bold">Rendite-Volatilitäts-Verhältnis</span> stellt die durchschnittliche Rendite pro Einheit der Volatilität (Standardabweichung) dar, was als Einheit des Risikos interpretiert werden kann. Es ist daher informativ, wie gut ein Investor für das eingegangene Risiko kompensiert wird (je höher das Return-to-Volatility-Verhältnis, desto höher die Risikokompensation).',para2:'In der Regel wird ein <span class="font-bold">Rendite-Volatilitäts-Verhältnis</span> von mehr als 1,0 über einen längeren Zeitraum als gut betrachtet, da dies bedeutet, dass die Belohnungen höher sind als das Risiko. Wenn beispielsweise die annualisierte Volatilität niedriger ist als die annualisierte Rendite, wird das <span class="font-bold">Rendite-Volatilitäts-Verhältnis</span> größer als 1,0 sein.',para3:'Daher ermöglicht das <span class="font-bold">Rendite-Volatilitäts-Verhältnis</span> Investoren, sehr unterschiedliche Investitionen anhand desselben Kriteriums zu vergleichen. Das <span class="font-bold">Rendite-Volatilitäts-Verhältnis</span> ermöglicht Vergleiche von Äpfeln mit Birnen.',keyPoints:"Hauptpunkte",keyPoint1:'Ein hohes <span class="font-bold">Rendite-Volatilitäts-Verhältnis</span> zeigt an, wie gut ein Investor für das eingegangene Risiko kompensiert wird.',keyPoint2:'Das <span class="font-bold">Rendite-Volatilitäts-Verhältnis</span> passt die vergangene Leistung eines Portfolios an das Risiko an, das der Investor eingegangen ist, und ermöglicht so einen Vergleich zwischen sehr unterschiedlichen Investitionen.'},sharpeRatio:{title:"Sharpe Ratio",para1:'Das <span class="font-bold">Sharpe Ratio</span> ist ein Maß für die risikoadjustierte Rendite. Es vergleicht die Überrendite über einer risikofreien Anlage mit dem Risiko, das aufgewendet wurde, um diese Rendite zu erzielen, wobei das Risiko für den Investor als Volatilität definiert ist. Das Verhältnis hilft dabei, die Rendite zu verstehen, die durch die Einheit des Risikos erreicht wurde, und kann verwendet werden, um mehrere Investitionsmöglichkeiten zu vergleichen.',para2:"Da keine Anlage völlig risikofrei ist, kann jedes Wertpapier mit geringen Risiken als Ersatz für risikofreie Renditen verwendet werden. In der Regel eignen sich Staatsanleihen aus stabilen Ländern gut für diesen Zweck. Zur Berechnung der risikofreien Rendite verwenden wir die kurzfristigen LIBOR-Sätze.",para3:"Wenn diese Kennzahl definiert ist (d.h. wenn sie positiv ist), ist die Anlage umso robuster, je höher sie ist, wenn alle anderen Faktoren gleich sind. Eine hohe Kennzahl bedeutet, dass die täglichen Schwankungen der Überschussrendite im Vergleich zur durchschnittlichen Überschussrendite gering sind."},skewness:{title:"Schiefe",para1:'Die Häufigkeit des Auftretens großer Renditen in eine bestimmte Richtung wird durch die <span class="font-bold">Schiefe</span> gemessen. Wenn die Häufigkeit des Auftretens großer negativer Renditen im Vergleich zu großen positiven Renditen höher ist, dann weist die Verteilung eine negative <span class="font-bold">Schiefe</span> auf. Wenn die Häufigkeit großer positiver Renditen die von großen negativen Renditen übersteigt, dann zeigt die Verteilung eine positive <span class="font-bold">Schiefe</span>.',para2:'Investoren sollten sich auf die <span class="font-bold">Schiefe</span> konzentrieren, da sie die Extremwerte der Renditen berücksichtigt und sich nicht nur auf den Durchschnitt konzentriert. Insbesondere kurz- und mittelfristige Investoren müssen auf Extremwerte achten, da sie weniger wahrscheinlich eine Strategie lange genug halten, um sicher zu sein, dass sich der Durchschnitt selbst ausgleicht.'},sortinoRatio:{title:"Sortino Ratio",para1:"Die Sortino Ratio ähnelt der Sharpe Ratio, mit der Ausnahme, dass sie das Abwärtsrisiko (Downside-Volatilität) im Nenner verwendet. Da Schwankungen nach oben nicht unbedingt etwas Schlechtes sind, ist die Sortino Ratio manchmal besser als die Sharpe Ratio.",para2:"Unter sonst gleichen Bedingungen gilt: Je höher die Quote, desto besser die Investition."},trackingError:{title:"Tracking Error",para1:'Der <span class="font-bold">Tracking Error</span> ist ein Maß für das Risiko eines Anlageportfolios aufgrund der Entscheidungen des Managers, von seinem Benchmark abzuweichen. Je höher es ist, desto aktiver ist der Manager in der Wahl, von seinem Benchmark abzuweichen.',para2:"Mathematisch kann es relevant sein, ihn zu schätzen, indem die Standardabweichung der Differenz zwischen der Rendite des Portfolios und des Benchmarks berechnet wird. Die von uns auf dieser Plattform präsentierte Version ist annualisiert.",para3:'Es ist wichtig zu beachten, dass er nicht die Relevanz der Entscheidungen des Managers repräsentiert, sondern die Auswirkungen, die sie auf das endgültige Portfolio haben. Somit können zwei Portfolios mit hervorragender oder schlechter Leistung im Vergleich zu ihrem Benchmark beide hohe <span class="font-bold">Tracking Error</span> aufweisen.',para4:"Ein niedriger Tracking Error bedeutet, dass eine Anlage nicht stark von ihrer Benchmark abweicht. Ein hoher Tracking Error bedeutet, dass die Anlage stark von ihrer Benchmark abweicht."},treynorRatio:{title:"Treynor-Ratio",para:'Ähnlich wie die Sharpe Ratio ist die Treynor Ratio ein Maß für die Effizienz, das das Verhältnis zwischen der annualisierten risikobereinigten Rendite und dem Risiko verwendet. Im Gegensatz zur Sharpe Ratio wird bei der Treynor Ratio das "Marktrisiko" (Beta) anstelle des Gesamtrisikos (Standardabweichung) verwendet. Eine gute Performance-Effizienz wird durch eine hohe Ratio gemessen.'},valueAtRisk:{title:"Value-at-Risk",para1:"VaR ist eine Statistik, die das Ausmaß möglicher Verluste innerhalb eines Portfolios über einen bestimmten Zeitraum und mit einer bestimmten Wahrscheinlichkeit quantifiziert. VaR 1% über 1 Monat = x% Verlust in 1 Monat mit 1% Wahrscheinlichkeit. Je niedriger, desto besser!",para2:"In der Praxis ist es das Quantil der Renditen der Strategie, das dem p-Wert (1% oder 5%) entspricht."}}},home:{metaInfo:{title:e=>`${e.named("orgName")} - Plattform }`},modifyInvestorProfile:"Investorenprofil bearbeiten",noProductsAvailable:"Keine Produkte verfügbar für Ihre Rolle und Ihr Investorprofil.",search:"Suche",showMoreProducts:"Mehr Produkte anzeigen"},products:{analysis:{analysisPeriod:"Analysezeitraum",backtest:"Backtest",backtestOrLive:"Backtest oder Live",benchmarks:"Vergleichsindizes",live:"Live",liveProduct:e=>`${e.named("productName")} Live`,shareClass:"Anteilsklasse",graphs:{considerApproximation:"Diese Werte sollten als Näherungswerte betrachtet werden.",weHave:"Wir haben",weWant:"Wir wollen",titles:{assetClassesWeights:"Gewichtung der Anlageklassen",beta:"Beta",constituents:"Bestandteile",contango:"Contango",diffMonthlyReturns:"Diff. monatliche Renditen",drawdowns:"Drawdowns",exposureIndices:"Indexgewichtung",exposureOverTime:"Gewichte im Laufe der Zeit",indicators:"Indikatoren",monthlyReturns:"Monatliche Renditen",performance:"Performance",ratioVixFutures:"Verhältnis VIX-Futures",recentDataOverview:"Übersicht über aktuelle Daten",relativeDrawdowns:"Relative Drawdowns",relativePerformance:"Relative Performance",riskAdjustedPerformance:"Risikoadjustierte Performance",rollingVRatioLevel:"Rolling VRatio Level",statistics:"Statistiken",returnProfile:"Renditeprofil",top10ConstituentsWeight:"Top 10 Gewichte",top5ConstituentsWeight:"Top 5 Gewichte",vegaIndicatorConditions:"Vega-Indikatorbedingungen",vix:"VIX",vixPremium:"VIX Premium",volatility:"Volatilität",weightedPerformance:"Gewichtete Performance",yearlyReturns:"Jährliche Renditen"},tooltips:{beta:"Dieses Diagramm zeigt das Beta unseres Produkts im Vergleich zu unserem Benchmark. Zur Berechnung verwenden wir Daten aus dem letzten verfügbaren Jahr, daher fehlt die Kennzahl im ersten Jahr des Produkts.",relativePerformance:"Dieses Diagramm zeigt einen Vergleich der Performance unseres Produkts und der Performance unseres Benchmarks. Dazu werden unsere kumulierten Renditen durch die kumulierten Renditen unseres Benchmarks geteilt. Dies bedeutet, dass bei 100% beide Leistungen ähnlich sind. Ansonsten gilt: Je höher die Zahl, desto besser ist die Leistung unseres Produkts im Vergleich zum Benchmark.",riskAdjustedPerformance:"Dieses Diagramm zeigt die risikoadjustierte Performance. Zur Berechnung verwenden wir Daten aus dem letzten verfügbaren Jahr, daher fehlt die Kennzahl im ersten Jahr des Produkts. Die risikoadjustierte Performance wird definiert als das Verhältnis zwischen annualisierter Rendite und annualisierter Volatilität.",volatility:"Dieses Diagramm zeigt die annualisierte Volatilität (d.h. Standardabweichung). Zur Berechnung verwenden wir Daten aus dem letzten verfügbaren Jahr, weshalb die Kennzahl im ersten Jahr des Produkts fehlt."}},metaInfo:{title:e=>`${e.named("productName")} - Analyse`},tab:{historical:"Historisch",historicalText:'Für bereits gestartete Produkte unterscheiden wir im Bereich "Analyse" zwischen "Live-Analyse" und "Historischer Analyse". Die "Historische Analyse" soll die Performance des Produkts vor dessen Einführung veranschaulichen. Die Performance basiert auf einer realistischen Simulation der Strategie. Es waren jedoch keine Assets under Management während des entsprechenden Zeitraums beteiligt.',internal:"Intern",live:"Live",liveText:'Für bereits gestartete Produkte unterscheiden wir im Bereich "Analyse" zwischen "Live-Analyse" und "Historischer Analyse". Die "Live-Analyse" veranschaulicht die Performance seit Einführung des Produkts.'}},documentDownload:{failure:"Die Datei konnte nicht heruntergeladen werden. Bitte kontaktieren Sie uns, wenn dies unerwartet ist.",needAuth:"Sie müssen angemeldet sein, um dieses Dokument herunterzuladen. Bitte melden Sie sich an.",preparing:"Die Datei wird für den Download vorbereitet ...",seeProductOverview:"Produktübersicht anzeigen",success:"Die Datei wurde erfolgreich heruntergeladen.",metaInfo:{title:e=>`${e.named("productName")} - Dokumente herunterladen`}},documents:{addFile:"Datei hinzufügen",document:"Dokument",nameValidationError:"Der Name wird bereits von einem anderen Ihrer Dokumente verwendet. Bitte wählen Sie einen anderen Namen.",noDocument:"Es wurde kein Dokument für dieses Produkt bereitgestellt.",noArchivedDocument:"Kein archiviertes Dokument für dieses Produkt.",noteDragAndDrop:"Hinweis: Ziehen Sie Zeilen per Drag & Drop, um die Dokumente neu anzuordnen.",shareClass:"Anteilsklasse",archiveIconTooltip:"Archivieren",unarchiveIconTooltip:"Entarchivieren",archivedDocumentsCardTitle:"Archivierte Dokumente",dialog:{fileDeletion:{title:"Dateilöschung",text:"Sie werden die Datei vollständig löschen und keinen Zugriff mehr darauf haben. Sind Sie sicher?"},fileArchiving:{title:"Dateiarchivierung",text:'Sie werden diese Datei archivieren, d.h. sie wird in Ihre "archivierten Dokumente" (gleich unterhalb der Dokumente) verschoben und für normale Benutzer nicht sichtbar sein. Beachten Sie, dass es möglich sein wird, sie zu entarchivieren. Möchten Sie sie archivieren?'},fileUnarchiving:{title:"Datei-Entarchivierung",text:"Sie werden diese Datei entarchivieren, d.h. sie wird zurück zu Ihren normalen Dokumenten verschoben und wieder für normale Benutzer sichtbar sein. Möchten Sie sie entarchivieren?"},needLogin:{text:"Um dieses Dokument herunterladen zu können, müssen Sie authentifiziert sein.",title:"Sie müssen authentifiziert sein"}},metaInfo:{title:e=>`${e.named("productName")} - Dokumente`},notify:{savingDocumentsError:"Beim Aktualisieren der Dokumente ist ein Fehler aufgetreten. Versuchen Sie es später erneut oder kontaktieren Sie uns.",savingDocumentsSuccess:"Dokumente erfolgreich aktualisiert.",fileDownloadError:"Fehler beim Herunterladen des Dokuments, bitte kontaktieren Sie uns."},prompt:{fileDisplayName:"Angezeigter Name des Dokuments",loginRequired:"Anmeldung erforderlich?",uploadFile:{acceptText:"Datei hochladen",file:"Datei",fileLanguage:"Sprache des Dokuments",shouldConsiderLastFactsheet:"Soll dieses Dokument als das letzte Factsheet für das Produkt betrachtet werden?",title:"Datei hochladen"},editFile:{title:"Dokument bearbeiten"}}},embedded:{perfGraph:{metaInfo:{title:e=>`${e.named("productName")} - Eingebettetes Performance-Diagramm`}},perfTable:{currency:"Währung",inceptionDate:"Lancierungsdatum",name:"Name",lastPriceAsOf:"Letzter Preis zum",mtd:"MTD",si:"SI",y1:"-1J",y3:"-3J",ytd:"YTD",metaInfo:{title:e=>`${e.named("productName")} - Eingebettete Performance-Tabelle`}},statsTable:{feesIncluded:"Gebühren sind enthalten.",metaInfo:{title:e=>`${e.named("productName")} - Eingebettete Statistik-Tabelle`}}},events:{covidCrisis:"COVID-19-Krise",crisis2022:"Krise 2022",december2018Crisis:"Dezember 2018 Krise",euroCrisis:"Eurokrise",financialCrisis:"Finanzkrise",alvolaLive:"Alvola Live",convexusLive:"Convexus Live",lstsLive:"LSTS Live",protechLive:"ProTech Live",sinceInception:"Seit Lancierung",ynnovationLive:"Ynnovation Live",calmgard:{calmgardCovid19Crisis:"Covid 19-Krise",calmgardEuroCrisisOne:"Euro-Krise I",calmgardEuroCrisisTwo:"Euro-Krise II",calmgardGriechenlandUndChinaKrise:"Griechenland- und China-Krise",calmgardInterestRateSpeculationOne:"Zinsspekulation I",calmgardInterestRateSpeculationTwo:"Zinsspekulation II",calmgardPostFinancialCrisis:"Nach der Finanzkrise",calmgardUkraineWar:"Ukraine-Krieg"},falgom:{falgomCoronavirusPandemic:"Coronavirus-Pandemie",falgomFedQuantitativeTapering:"Quantitative Reduzierung der FED",falgomGlobalFinancialCrisis:"Globale Finanzkrise",falgomGrowthSlowdownChina:"Wachstumsverlangsamung China",falgomRecessionEurope:"Rezession Europa",falgomVolmageddon:"Volmageddon"}},factsheet:{firstDateToInclude:"Erstes Datum (JJJJ-MM-TT) einschließen",lastDateToInclude:"Letztes Datum (JJJJ-MM-TT) einschließen",nameValidationError:"Der Name wird bereits von einem anderen Ihrer Dokumente verwendet. Bitte wählen Sie einen anderen Namen.",shareClass:"Anteilsklasse",year:"Jahr",cardTitle:{assetClasses:"Assetklassen",contacts:"Kontakte",currencyExposure:"Währungsexposition",description:"Beschreibung",disclaimer:"Haftungsausschluss",drawdowns:"Drawdowns",historicalPrices:"Historische Preise",instrumentTypes:"Instrumententypen",monthlyComment:"Monatlicher Kommentar",monthlyPerformance:"Monatliche Performance",monthlyReturns:"Monatliche Renditen",priceChart:"Preisdiagramm",productDetails:"Produktdetails",regions:"Regionen",relativePerformance:"Relative Performance",riskProfile:"Risikoprofil",sectors:"Sektoren",shareClasses:"Anteilsklassen",topHoldings:"Einzelpositionen",volatility:"Volatilität",yearlyPerformance:"Jährliche Performance"},dragAndDrop:{addGenericComponent:"Komponente hinzufügen",availableGenericComponents:"Generische Komponenten",availablePredefinedComponents:"Vordefinierte Komponenten",editFactsheet:"Factsheet bearbeiten",componentTooBig:"Die Komponente ist zu groß, um auf einer einzelnen Seite enthalten zu sein.",saveSuccessText:"Die Factsheet-Konfiguration wurde erfolgreich aktualisiert.",stopEdit:"Bearbeitung beenden",general:{primaryColor:"Hauptfarbe",title:"General",fontSize:{normal:"Normal",large:"Gross",small:"Klein",title:"Schriftgrösse"},spacing:{comfortable:"Bequem",compact:"Kompakt",title:"Abstände"},titleBorder:{above:"Oberhalb dem Titel",below:"Unter dem Titel",none:"Keine Grenze",title:"Titel Grenze"}},footer:{edit:"Fußzeile bearbeiten",title:"Fußzeile",text:"Text",page:"Seite",showPageNumber:"Seitenzahl anzeigen",showFooterLine:"Fußzeile anzeigen"},forcedElementDeletionWarning:{componentsWereRemoved:"Einige Komponenten wurden aus Ihrem Layout entfernt, da ihre Größe den anzeigbaren Bereich einer einzelnen Seite überschreitet oder ihre Spalte zu groß ist. Die IDs der entfernten Komponenten sind:",resolveSolution:"Um dieses Problem zu lösen, verringern Sie die Höhe der betroffenen Komponenten, platzieren Sie die Komponente in einer neuen Einzelreihe oder kontaktieren Sie uns.",title:"Erzwungenes Entfernen von Komponenten aus dem Layout"},header:{backgroundImage:"Hintergrundbild",hideProductName:"Produktname ausblenden",logo:"Logo",onlyOnFirstPage:"Nur auf erster Seite",textInPrimary:"Text in Markenfarbe",title:"Header",useCompanyLogo:"Firmenlogo verwenden",datePosition:{bottomLeft:"Unten links",bottomRight:"Unten rechts",standard:"Standard",title:"Datumsposition",topLeft:"Oben links",topRight:"Oben rechts"}}},generateFactsheet:{downloadFactsheet:"Factsheet herunterladen",generatingFactsheet:"Factsheet wird generiert...",saveFactsheet:"Factsheet in Dokumenten speichern",notify:{generatingError:"Fehler beim Generieren eines Factsheets, bitte kontaktieren Sie uns.",savedInDocumentsSection:"Ihr Factsheet wurde im Dokumentenbereich gespeichert."},prompt:{acceptText:"Factsheet speichern",considerLastFactsheet:"Soll diese Datei als das letzte Factsheet für das Produkt betrachtet werden?",fileDisplayName:"Anzeigename der Datei",loginRequired:"Anmeldung erforderlich?",title:"Factsheet generieren und hochladen"}},metaInfo:{title:e=>`${e.named("productName")} - Factsheet`},shareClassesTable:{bloomberg:"Bloomberg",class:"Klasse",currency:"Währung",inception:"Lancierungsdatum",isin:"ISIN",mgmtFee:"Mgmt. fee",mtdPerf:"MTD Perf.",nav:"NAV",navDate:"NAV Datum",perfFee:"Perf. fee",siPerf:"Perf. Lanc.",ytdPerf:"YTD Perf."},statistics:{title:"Statistiken"},statisticsWithPeriods:{title:"Performance",periods:{1:"1M",3:"3M",6:"6M",ytd:"YTD",12:"1J",36:"3J",60:"5J",max:"MAX"}}},months:{short:{jan:"Jan",feb:"Feb",mar:"Mär",apr:"Apr",may:"Mai",jun:"Jun",jul:"Jul",aug:"Aug",sep:"Sep",oct:"Okt",nov:"Nov",dec:"Dez"}},overview:{assetClasses:"Assetklassen",currencyExposure:"Währungsexposition",keyCharacteristics:"Hauptmerkmale",historicalPrices:"Historische Preise",instrumentTypes:"Instrumententypen",itd:"ITD-Rendite",itdDescription:e=>`ITD (Inception-to-Date) ist ein Zeitraum, der vom Produktbeginn (${e.named("date")}) bis zum heutigen Tag dauert.`,lastChange:"Letzte Änderung",lastDayChange:"Änderung am letzten Tag",lastWeekChange:"Änderungen in der letzten Woche",lastMonthChange:"Änderung im letzten Monat",lastQuarterChange:"Änderung im letzten Quartal",lastYearChange:"Veränderung im letzten Jahr",monthlyReturns:"Monatliche Renditen",lastPrice:"Preis",performance:"Performance",productDetails:"Produktdetails",productTimeline:"Produktzeitachse",regions:"Regionen",sectors:"Sektoren",shareClass:"Anteilsklasse",topHoldings:"Einzelpositionen",yearlyReturns:"Jährliche Renditen",ytd:"YTD-Rendite",ytdDescription:"YTD (Year-to-Date) ist ein Zeitraum, der vom Beginn des aktuellen Kalenderjahres bis zum heutigen Tag dauert.",dragAndDrop:{addGenericComponent:"Komponente hinzufügen",availableGenericComponents:"Generische Komponenten",availablePredefinedComponents:"Vordefinierte Komponenten",editOverview:"Übersicht bearbeiten",saveSuccessText:"Die Übersichtskonfiguration wurde erfolgreich aktualisiert.",stopEdit:"Bearbeitung stoppen"},follow:{buttonText:"Folgen",buttonTextFollowing:"Folge ich",notify:{error:"Es gab einen Fehler. Versuchen Sie es erneut oder kontaktieren Sie uns, wenn das Problem weiterhin besteht.",followSuccess:e=>`Sie folgen jetzt ${e.named("productName")}.`,unfollowSuccess:e=>`Sie folgen ${e.named("productName")} nicht mehr.`},promptNotFollowing:{acceptText:"Folgen",text:"Durch das Folgen dieses Produkts stimmen Sie zu, von Zeit zu Zeit Informationen zum Produkt zu erhalten. Sie können jederzeit aufhören, solche Informationen zu erhalten, indem Sie nicht mehr folgen.",title:"Produkt folgen"},promptFollowing:{acceptText:"Entfolgen",text:"Sie folgen derzeit diesem Produkt. Möchten Sie ihm nicht mehr folgen und keine Informationen zum Produkt mehr erhalten?",title:"Nicht mehr folgen"},promptNotLoggedIn:{cancelText:"Ein Konto erstellen",text:"Wenn Sie diesem Produkt folgen möchten, müssen Sie in Ihr Konto eingeloggt sein. Wenn Sie kein Konto haben, können Sie kostenlos eines erstellen.",title:"Produkt folgen"}},metaInfo:{title:e=>`${e.named("productName")} - Übersicht`},statsOptions:{1:"1 Monat",3:"3 Monate",6:"6 Monate",ytd:"Bisheriges Jahr",12:"1 Jahr",36:"3 Jahre",60:"5 Jahre",max:"Seit Lancierung"}},useCase:{allocationAlvola:"Allokation zu Alvola",biggestDrawdowns:e=>`Größte Drawdowns von ${e.named("benchmark")}`,description:"Unser Use Case zeigt, wie die Hinzufügung der Alquant Alvola Strategie zu einem bestehenden Aktienportfolio die Rendite langfristig steigern und gleichzeitig den maximalen Drawdown reduzieren kann. Wählen Sie Ihr gewünschtes Aktienportfolio und die Allokation zur Alquant Alvola Strategie und entdecken Sie, wie sich die Kombination in der Vergangenheit (vor der Einführung unseres Produkts am 02. Jun 2021) entwickelt hätte. Zusätzlich finden Sie auch die Performance während der 10 größten Drawdown-Perioden Ihres ausgewählten Aktienportfolios.",drawdowns:"Drawdowns",equityPortfolio:"Aktienportfolio",historicalResults:"Historische Ergebnisse",portfolioAllocation:"Portfolio Allokation",protectPortfolio:"Schützen Sie Ihr Portfolio mit Alvola",metaInfo:{title:e=>`${e.named("productName")} - Use Case`}}},settings:{metaInfo:{title:e=>`Einstellungen - ${e.named("name")}`},changePassword:{confirmNewPassword:"Neues Passwort bestätigen",currentPassword:"Aktuelles Passwort",newPassword:"Neues Passwort",title:"Passwort ändern",notify:{success:"Ihr Passwort wurde erfolgreich aktualisiert.",couldntChange:"Wir konnten Ihr Passwort nicht ändern. Bitte kontaktieren Sie uns über das Kontaktformular, um diesen Fehler zu beheben!",wrongPassword:"Sie haben das falsche Passwort angegeben."}},deleteAccount:{deleteYourAccount:"Ihr Konto löschen",title:"Konto löschen",notify:{success:"Ihr Konto wurde erfolgreich gelöscht."},dialog:{permanentlyDeleteData:{text:"Das Löschen Ihres Kontos löscht alle Ihre Daten dauerhaft.",title:"Bestätigen"},recentLoginNeeded:"Letzter Login erforderlich"}},editProfile:{company:"Firma",email:"E-Mail",firstName:"Vorname",investorProfileCountry:"Land",investorProfileType:"Investorentyp",lastName:"Nachname",phone:"Telefon",title:"Profil bearbeiten",requiredFields:'Felder, die mit <span class="text-danger">*</span> gekennzeichnet sind, sind erforderlich.',dialog:{askValidation:{title:"Verifizierung persönlicher Daten",text:"Bitte überprüfen Sie Ihre persönlichen Daten und speichern Sie sie, wenn Sie fertig sind."}},notify:{errorText:"Wir konnten Ihre Daten nicht aktualisieren. Bitte kontaktieren Sie uns über das Kontaktformular, um diesen Fehler zu beheben!",successText:"Das Update war erfolgreich"}},overview:{email:"E-Mail",name:"Name",title:"Kontoübersicht"},preferences:{discard:"Verwerfen",hideProducts:"Angemeldete Produkte ausblenden",title:"Einstellungen",notify:{savedText:"Ihre Einstellungen wurden erfolgreich gespeichert."}}}},_e={alquant:{faq:{howToInvest:{question:"Wie kann ich in eines von Alquants Produkten investieren?",answer:'Da die finanzielle Situation und das Risikoprofil eines jeden Anlegers unterschiedlich sind, müssen wir Ihre Situation bewerten und prüfen, ob eines unserer Produkte für Sie geeignet ist. Um dies zu tun, verwenden Sie bitte <a href="/help/contact">unser Kontaktformular</a> oder schicken Sie uns eine E-Mail an <a href="mailto:info@alquant.com">info@alquant.com</a>, um eine Diskussion zu beginnen oder einen Anruf mit uns zu vereinbaren. Wir helfen Ihnen gerne weiter.'},moreQuestions:{question:"Ich habe eine weitere Frage, wo kann ich sie stellen?",answer:'Sie können uns jederzeit über <a href="/help/contact">unser Kontaktformular</a> kontaktieren, um Fragen zu stellen. Sie können innerhalb von 1-2 Werktagen eine Antwort von uns erwarten.'},whatAlquant:{question:"Was ist Alquant?",answer:'Alquant ist eine Schweizer Vermögensverwaltungsgesellschaft, die sich auf Risikomanagement spezialisiert hat und die traditionelle Vermögensverwaltung durch quantitative Finanzen und künstliche Intelligenz zum Vorteil ihrer Kunden verbessert. Wir sind bestrebt, überlegene Anlageergebnisse und herausragende Anlegererfahrungen zu erzielen. Weitere Informationen finden Sie auf unserer Website: <a href="https://alquant.com" target="_blank">https://alquant.com</a>.'},whatDataSources:{question:"Welche Datenquellen verwendet Alquant für seine Plattform?",answer:'Die Daten, die wir anzeigen, stammen hauptsächlich von unserem Hauptdatenanbieter, <a href="https://intrinio.com" target="_blank">Intrinio</a>. Für einige spezifische Daten verwenden wir auch andere Quellen, wie z.B. <a href="https://www.swissfunddata.ch/" target="_blank">Swiss Fund Data</a>, <a href="https://derivatives.juliusbaer.com/ target="_blank">Julius Baer</a>, <a href="https://keyinvest-ch-en.ubs.com/" target="_blank">UBS KeyInvest</a> und <a href="https://www.am.pictet/" target="_blank">Pictet Asset Management</a>.'},whatGoal:{question:"Was ist das Ziel dieser Plattform?",answer:"Da Alquant sich verpflichtet hat, eine hohe Transparenz und ein herausragendes Anlegererlebnis zu bieten, möchten wir, dass unsere Kunden Zugang zu interaktiven Diagrammen mit täglich aktualisierten Werten haben, anstatt langweilige PDF-Dokumente, die einmal im Monat erstellt werden, um zu sehen, wie unsere Produkte performen."}},slogan:"Lösungen für den Erfolg von Anlegern."},bcf:{redirectButtonNavBarText:"Zurück zur Startseite"},bonhote:{redirectButtonNavBarText:"Zurück zur Hauptseite"},calmgard:{nextSubscriptionAndRedemption:{nextRedemption:e=>`<b>Rücknahmen</b>, die vor dem ${e.named("date")} um 12:00 Uhr MEZ erfolgen, werden zum letzten NAV des Monats ${e.named("month")} ausgeführt.`,nextSubscription:e=>`<b>Zeichnungen</b>, die vor dem ${e.named("date")} um 12:00 Uhr MEZ erfolgen, werden zum letzten NAV des Monats ${e.named("month")} ausgeführt.`,title:"Nächste mögliche Handelsdaten"}},cronos:{redirectButtonNavBarText:"Startseite Cronos"},demo:{customSections:{useCases:{title:"Anwendungsfälle",alpinum:{strategyName:"Alpinum",title:"Alpinum",historicalResults:{title:"Historische Ergebnisse",biggestDrawdowns:{title:e=>`Größte Drawdowns von ${e.named("benchmark")}`},drawdowns:{title:"Drawdowns"}},metaInfo:{title:"Anwendungsfall - Alpinum"},parameters:{runButton:"Anwendungsfall ausführen",benchmark:"Benchmark",title:"Parameter"}}}}},falgom:{taroDiversified:{useCase:{allocation:{equity:"Aktienportfolio",product:"Zuweisung an TARO® Diversified",title:"Portfoliozuweisung"},drawdowns:{title:"Drawdowns",biggestDrawdowns:"Größte Drawdowns"},historicalResults:{title:"Historische Ergebnisse"},metaInfo:{title:"Anwendungsfall - TARO® Diversified"}}}},mirante:{redirectButtonNavBarText:"Startseite MFM"},ppt:{redirectButtonNavBarUrl:"https://ppt.ch/en/asset-management/",redirectButtonNavBarText:"Zurück zur Hauptseite"}},He={apply:"Anwenden",asOf:e=>`Stand ${e.named("date")}`,cancel:"Abbrechen",contactUs:"Kontaktieren Sie uns",edit:"Bearbeiten",error:"Fehler",from:"Von",ok:"Ok",loading:"Laden...",logIn:"Anmelden",logOut:"Abmelden",no:"Nein",others:"Andere",register:"Registrieren",save:"Speichern",saving:"Speichern...",serverError:"Auf unserem Server ist ein Fehler aufgetreten. Ein Bericht wurde an unser Team gesendet und wir werden ihn so schnell wie möglich beheben. Zögern Sie nicht, uns zu kontaktieren, wenn das Problem weiterhin besteht.",success:"Erfolg",to:"Bis",warning:"Warnung",yes:"Ja",investorProfileTypes:{institutional:"Institutioneller Anleger",professional:"Professioneller Anleger",retail:"Privatanleger"},layouts:{main:{dev:"Entwicklung",devTooltip:"Dieses Produkt befindet sich in der Entwicklung",admin:{listUsers:"Liste der Benutzer",platformSettings:"Plattformeinstellungen",products:"Produkte",sectionName:"Admin",operations:{name:"Operationen",generateFactsheets:{name:"Factsheets generieren"}}},help:{contact:"Kontakt",faq:"FAQ",knowledgeBase:"Wissensbasis",sectionName:"Hilfe"},products:{analysis:"Analyse",documents:"Dokumente",factsheet:"Factsheet",overview:"Übersicht",sectionName:"Produkte",useCase:"Anwendungsfall"}},fullPage:{backHome:"Zurück zur Startseite"},profileDropDown:{settings:"Einstellungen",dialog:{adminAsRegularOnMobile:{text:"Die Verwaltungsfunktionen sind auf mobilen Geräten nicht verfügbar. Um die Plattform vollständig nutzen zu können, verwenden Sie bitte einen Desktop-Computer. Zu den deaktivierten Verwaltungsfunktionen gehören unter anderem: Bearbeiten von Elementen in der Übersicht, Bearbeiten des Factsheets, Hochladen oder Löschen von Dokumenten und Zugriff auf den Verwaltungsbereich.",title:"Desktop-Computer für Verwaltungsfunktionen erforderlich"}}},theFooter:{allRightReserved:"Alle Rechte vorbehalten",copyright:"Urheberrecht",ombudsman:"Ombudsmann",privacyPolicy:"Datenschutzrichtlinie",termsOfUse:"Nutzungsbedingungen"},verticalNavMenu:{errorLoading:"Fehler beim Laden des Menüs"},verticalNavMenuGroup:{search:"Suche",showMore:"Mehr anzeigen"}},perfStats:{alpha:"Alpha",annualizedReturn:"Annualisierte Rendite",annualizedVolatility:"Annualisierte Volatilität",averageMonthlyReturns:"Durchschnittliche monatliche Erträge",averageNegativeMonthlyReturns:"Durchschnittliche negative monatliche Renditen",averagePositiveMonthlyReturns:"Durchschnittliche positive monatliche Renditen",beta:"Beta",calmarRatio:"Calmar Ratio",correlation:"Korrelation",cumulativeReturn:"Kumulative Rendite",informationRatio:"Information Ratio",kurtosis:"Kurtosis",m2RiskAdjustedPerfMonthly:"M2-Messung",maxConsecutiveNegativeMonthlyReturns:"Max. aufeinanderfolgende negative monatliche Renditen",maxConsecutivePositiveMonthlyReturns:"Max. aufeinanderfolgende positive monatliche Renditen",maxNegativeMonthlyReturn:"Maximale negative monatliche Rendite",maxPositiveMonthlyReturn:"Maximale positive monatliche Rendite",maximumDrawdown:"Maximaler Drawdown",omegaRatio:"Omega Ratio",ratioOfNegativeMonthlyReturns:"Verhältnis der negativen monatlichen Renditen",ratioOfPositiveMonthlyReturns:"Verhältnis der positiven monatlichen Renditen",returnToVolatilityRatio:"Rendite-Volatilitäts-Verhältnis",sharpeRatio:"Sharpe Ratio",skewness:"Schiefe",sortinoRatio:"Sortino Ratio",trackingError:"Tracking Error",treynorRatio:"Treynor Ratio",valueAtRiskOnePercentOneMonth:"Value at Risk (VaR) 1% über 1 Monat",valueAtRiskFivePercentOneMonth:"Value at Risk (VaR) 5% über 1 Monat"},validations:{afterDate:e=>0==e.named("nDaysApart")?`Datum muss nach ${e.named("minDate")} liegen (eingeschlossen)`:`Datum muss mindestens ${e.named("nDaysApart")} Tage nach ${e.named("minDate")}`,beforeDate:e=>0==e.named("nDaysApart")?`Datum muss vor ${e.named("maxDate")} liegen (eingeschlossen)`:`Das Datum muss mindestens ${e.named("nDaysApart")} Tage vor ${e.named("maxDate")}`,confirmed:"Das Feld stimmt nicht mit dem vorherigen überein.",dateFormat:"Das Datum muss im Format JJJJ-MM-TT angegeben werden.",email:"Die E-Mail ist ungültig.",maxFileSize:e=>`Die Datei ist größer als die maximal zulässige Größe (${(e.named("maxSizeBytes")/1e3/1e3).toFixed(0)} MB).`,maxChar:e=>`Das Feld darf nicht mehr als ${e.named("length")} Zeichen haben.`,minChar:e=>`Das Feld benötigt mindestens ${e.named("length")} Zeichen.`,minValue:e=>`Der Wert muss größer oder gleich ${e.named("min")} sein.`,phoneNumber:"Keine gültige Telefonnummer.",required:"Dieses Feld ist erforderlich.",roleFormat:'Der Name der Rolle darf das Zeichen ":" nicht enthalten.'},wlps:_e,pages:Ge,components:Oe},je={auth:{resetPasswordLink:{forgotPassword:"Forgot your password?"}},cards:{needLoginCard:{needLogged:"You need to be logged in to see this content."},productHomeCard:{inceptionToDateReturn:"Inception-to-date return",lastDay:"Last day change",lastPrice:"Last price",na:"N/A",viewDetails:"View details",yearToDateReturn:"Year-to-date return"}},compliance:{cookies:{buttonText:"Accept",cookiesUsage:"This Website uses Cookies to improve the usability. By using this Website you declare your consent for Cookies to be used as well as with the privacy policy where you can find more information on Cookies. Link: {0}.",privacyPolicy:"Privacy policy"}},components:{downloadAsPngTooltip:"Download as PNG",details:{aumFormat:e=>`${e.named("currency")} ${(e.named("aum")/1e6).toFixed(1)} million${e.named("aum")>1e6?"s":""}${e.named("asOfDate")?` (as of ${e.named("asOfDate")})`:""}`}},datePickers:{dateRangePicker:{from:"From (yyyy-mm-dd)",fullPeriod:"Full period",to:"To (yyyy-mm-dd)"},zoomPicker:{fiveYears:"5Y",fullPeriod:"MAX",oneMonth:"1M",oneYear:"1Y",sixMonths:"6M",threeMonths:"3M",tenYears:"10Y",threeYears:"3Y",twoYears:"2Y",ytd:"YTD"}},dropdowns:{iconsDropdown:{noIcon:"No icon"}},editPrompt:{copyInAllLangs:"Copy in all languages",editField:"Edit field",enterText:"Enter a text",overwriteDataAllShareClasses:"Overwrite data of all share classes",id:"ID",idTooltip:"This unique identifier serves as the reference for the component within the platform. Each component you create needs a distinct identifier. We recommend the following convention for enhanced readability: use the component's title, convert to lowercase, replace spaces with dash. For a component titled 'My Analytic Table', the identifier would be 'my-analytic-table'.",needUniqueId:"The provided identifier is currently in use by another component in the current location or in a linked one. Please supply a distinctive identifier to ensure uniqueness.",numberOfDecimals:"Number of decimals",numberOfDecimalsTooltip:"The number of decimals for all the numbers displayed in the component. Note that this does not include graph axes.",withBenchmark:"Show with the benchmark",footnote:"Text below component",placeholderFootnote:"A text that appears below the component. E.g. 'Fees are included.'",langTabError:"Some fields are invalid in the following languages:",settingsOnlyUsedOnOverviewTooltip:"This setting exclusively affects the 'Overview' page.",showOnFactsheet:"Show on Factsheet",tabError:"Some fields are invalid",title:"Title",titleEdit:e=>`Edit ${e.named("componentId")}`,titleAdd:"Add component",unsavedChangesAlert:"You have unsaved changes. If you leave without saving, they will be lost.",genericComponent:{addColumn:"Add column",addRow:"Add row",addData:"Add data",barChart:"Bar chart",cantChangeType:"You can't change the type of a generic component once you have saved it. If you want a different type, you need to create a new generic component.",columnWithIndex:e=>`Column ${e.named("idx")}`,data:"Data",date:"Date",donutChart:"Donut chart",exampleSector:"E.g., Sectors",header:"Header",key:"Key",image:"Image",lineChart:"Line chart",needData:"You can't save a generic component without any data or only partial data. Delete it, add data or complete present data before saving.",pieChart:"Pie chart",removeData:"Remove data",showColumnHeader:"Show column header",table:"Table",text:"Text",type:"Type",useBrandColor:"Use brand color",value:"Value",weightPercent:"Weight (in %)"},contacts:{addContact:"Add contact",additionalText:"Additional text",email:"Email",exampleEmail:"E.g., jdoe@mail.com",exampleName:"E.g., John Doe",examplePhone:"E.g., +41 79 123 45 67",exampleRole:"E.g., Partner",imageSquare:"Image (square)",name:"Name",phone:"Phone",removeContact:"Remove contact",role:"Role"},dialog:{copyInAllLangs:{title:"Copy in all languages",text:"You are going to copy all the values of the current language to all other languages. Are you sure?"},saveFieldInAllShareClasses:{title:"Overwrite",text:"You are going to overwrite this field in all other share classes of this product, not only the current share class. Are you sure?"},saveInAllShareClasses:{title:"Overwrite",text:e=>`You are going to overwrite the "${e.named("tabName")}" data of all other share classes of this product with the "${e.named("tabName")}" data of this share class (not only the last changes you made). Are you sure?`}},description:{contentTitle:"Description"},disclaimer:{contentTitle:"Disclaimer",defaultWarning:"You currently do not have a disclaimer for this product. Therefore, the standard disclaimer has been used. If you write a disclaimer here, it will only be displayed for this product."},historicalPricesChart:{defaultLogScale:"By default in log scale",showLogScaleSwitch:"Show log scale switch",priceIndexedTo100:"Indexed to 100"},holdingOverTime:{elementsInOthers:{title:'Elements to consider as "Others"',multiSelect:{placeholder:"Select elements",selectLabel:"Press enter to select",deselectLabel:"Press enter to remove",selectedLabel:"Selected",limitText:e=>`and ${e.named("count")} more`}}},keyCharacteristics:{addKeyCharacteristics:"Add key characteristics",exampleDynamicExposure:"E.g., Dynamic exposure",exampleWeDynamicallyAdapt:"E.g., We dynamically adapt ...",header:"Header",icon:"Icon",paragraph:"Paragraph",removeKeyCharacteristics:"Remove key characteristic"},monthlyReturnsChart:{startDate:"Start date",startDateTooltip:"Select a start date (in YYYY-MM-DD format) for the graph. The graph will automatically adjust to display data starting from the earliest available date for the product or your chosen date, whichever is later. Leaving this field blank will display all available price data for the product."},monthlyReturnsTable:{descending:"Sort years in descending order",startDate:"Start date",startDateTooltip:"Select a start date (in YYYY-MM-DD format) for the return table. The final table will automatically adjust to display data starting from the earliest available date for the product or your chosen date, whichever is later. Leaving this field blank will display all available price data for the product.",benchmark:"Benchmark",product:"Product",return:"Return",nameReplacements:"Replace default names",nameReplacementsTooltip:"Customize the product and benchmark names in the component. Leave blank to default to the existing names."},notify:{componentSaveSuccess:e=>`Your component '${e.named("componentId")}' was updated successfully.`},overviewHeader:{backgroundImage:"Background image",backgroundImageTooltip:"Please be aware that the image currently under consideration is also utilized as the product card image on the homepage. Consequently, any alterations to this image will simultaneously affect the product's representation on the homepage.",text:"Text",textTooltip:"Please be aware that the text currently under consideration is also utilized as the product card text on the homepage. Consequently, any alterations to this text will simultaneously affect the product's representation on the homepage.",saveSuccess:"Header was updated successfully.",showDownloadLastFactsheetButton:'Show "@:components.extras.downloadLastFactsheet.downloadLastFactsheet" button',showDownloadLastFactsheetButtonTooltip:'For the button to be visible for a user, a document should be marked as "@:pages.products.documents.prompt.uploadFile.shouldConsiderLastFactsheet" within the "Documents" section, and it should be available in the selected language of the user.',showFollowButton:"Show follow button",title:"Edit overview header"},predefinedHoldingComponent:{chartType:"Chart type",barChart:"Bar chart",donutChart:"Donut chart",pieChart:"Pie chart",table:"Table",useBrandColor:"Use brand color",assetClasses:{editAssetClasses:"Edit asset classes"},currencyExposure:{editCurrencyExposure:"Edit currency exposure"},instrumentTypes:{editInstrumentTypes:"Edit instrument types"},onlyShowTopThenOthers:{title:"Show top only",tooltip:'Only show the top X (chosen number), and merge the remaining ones in "Others". Let empty to show all.'},regions:{editRegions:"Edit regions"},sectors:{editSectors:"Edit sectors"}},productDetails:{addDetail:"Add detail",exampleIsin:"E.g., ISIN",exampleLU:"E.g., LU2220388479",key:"Key",noteDragAndDrop:"Note: Drag and drop rows to reorder the details.",removeDetail:"Remove detail",showAuM:"Show AuM",showLastPrice:"Show last price",value:"Value"},relativePerformanceChart:{footnote:"Footnote",placeholderFootnote:"A text that appears below the chart. E.g. 'Fees are included.'"},riskProfile:{level:"Level of risk"},shareClassesTable:{bloomberg:"Bloomberg",class:"Class",defaultFootnote:"SI perf.: returns for since inception periods of more than one year are annualized, and not annualized if less than one year.",footnote:"Footnote",inceptionDate:"Inception date",isin:"ISIN",mgmtFee:"Mgmt. fee",perfFee:"Perf. fee",title:"Edit share classes table"},statistics:{benchmark:"Benchmark",product:"Product",nameReplacements:"Replace default names",nameReplacementsTooltip:"Customize the product and benchmark names in the component. Leave blank to default to the existing names. For example, use a term like 'Product' to abbreviate and save display space.",fieldsToDisplay:"Fields to display",noteDragAndDrop:"Note: Drag and drop rows to reorder the statistics displayed.",shownStatisticName:"Shown statistic name",showStatistic:"Show statistic",statisticId:"Statistic id"},statisticsWithPeriods:{benchmark:"Benchmark",product:"Product",nameReplacements:"Replace default names",nameReplacementsTooltip:"Customize the product and benchmark names in the component. Leave blank to default to the existing names. For example, use a term like 'Product' to abbreviate and save display space.",fieldsToDisplay:"Fields to display",noteDragAndDrop:"Note: Drag and drop rows to reorder the statistics displayed.",periodsTitle:"Periods to show",shownStatisticName:"Shown statistic name",showStatistic:"Show statistic",statisticId:"Statistic id",periods:{1:"1M",3:"3M",6:"6M",ytd:"YTD",12:"1Y",36:"3Y",60:"5Y",max:"MAX"}},topHoldings:{fieldsToDisplay:"Fields to display",showHeader:"Show header",showTotal:"Show total",numHoldings:{title:"Number of holdings to show",tooltip:"If you leave this field blank, all available data for the product's holdings will be shown."},holdingsToIgnore:{title:"Holdings to ignore",holdingsMultiselect:{placeholder:"Select holdings to ignore",selectLabel:"Press enter to select",deselectLabel:"Press enter to remove",selectedLabel:"Selected",limitText:e=>`and ${e.named("count")} more`}},customizeTable:"Customize table",addColumn:"Add column",columnWithIndex:e=>`Column ${e.named("idx")}`}},extras:{changeRoles:{changeRoles:"Change roles",notify:{errorText:"No roles have been updated. Reason: ",successText:"User roles have been updated"}},deleteGenericComponent:{delete:"Delete",deleteAllComponents:"Delete all components",deleteOnlyThisComponent:"Delete only this component",deleting:"Deleting ...",deleteSuccess:"Deletion successful.",page:"Page",shareClass:"Share class",textIsNotLinked:"You are about to permanently delete a generic component. This action cannot be undone. Please confirm that you wish to proceed with deletion.",textIsLinkedFirstPart:"You are about to permanently delete a generic component. This action cannot be undone.  Note that this component is linked with the same component in the following: ",textIsLinkedSecondPart:"Please confirm that you wish to proceed with the deletion, and decide if you wish to delete only the current component, or if you wish to delete this component and all the linked components.",title:e=>`Permanent deletion of ${e.named("componentId")}`,pageList:{factsheet:"Factsheet",overview:"Overview"}},downloadLastFactsheet:{downloadLastFactsheet:"Download last factsheet",downloadingLastFactsheet:"Downloading...",needLogin:{text:"In order to download this document, you need to be authenticated.",title:"You need to be authenticated"}},manualVerifyEmail:{forceVerification:"Force email verification",verified:"Email verified",notify:{errorText:"Force email verification failed.",successText:"User email has been manually verified."}},riskProfile:{higherRisk:"Higher risk",lowerRisk:"Lower risk",potentiallyHigherReward:"Potentially higher reward",potentiallyLowerReward:"Potentially lower reward"}},factsheet:{lastPrice:"Last price"},graphs:{logScale:"Log scale",notEnoughData:"Not enough data to plot this graph, please select a longer date range.",needMoreData:"To compute this metric, a certain amount of data at the beginning is necessary. Enlarge the timeframe to get access to this metric."},holdingData:{others:"Others"},images:{uploadImage:{darkening:"Darkening",file:"File",noFile:"No file",noImage:"No image",selectFile:"Select file",selectNewImage:"Select new image",errorTitleTooLarge:"Image too large",errorMessageTooLarge:"The image is too large. Please, select another image with a size smaller than 30 MB.",warningTitleVeryLarge:"Image very large",warningMessageVeryLarge:"The image is very large. It will make the pages displaying this image slower to load. For best performance, it is advised to use images smaller than 10 MB."}},linkPrompt:{componentLinkedTo:"This component is linked to:",currentPage:"Current page",currentShareClass:"Current share class",linkThroughPagesTooltip:'Enabling this feature creates a synchronized connection between components across multiple pages. For instance, linking the "Factsheet" and "Overview" pages ensures any edits to a shared component are updated on both pages simultaneously. Important: The content of the linked component is duplicated from the source page you\'re currently editing. If you initiate the link while editing the "description" component of the "Factsheet" page, the "description" component in "Factsheet" is copied to the "Overview" and will thus override the "description" component of "Overview".',linkThroughShareClassesTooltip:'Enabling this feature creates a synchronized connection between components across multiple share classes. For instance, linking the "My Product Share A" and "My Product Share B" ensures any edits to a shared component are updated on both share classes simultaneously. Important: The content of the linked component is duplicated from the source page you\'re currently editing. If you initiate the link while editing the "description" component of the "My Product Share A" page, the "description" component in "My Product Share A" is copied to the "My Product Share B" and will thus override the "description" component of "My Product Share B".',linkedWithPages:"Linked with the following pages",linkedWithShareClasses:"Linked with the following share classes",page:"Page",shareClass:"Share class",title:e=>`Edit linking of ${e.named("componentId")}`,unlink:"Unlink",unlinking:"Unlinking ...",unsavedChangesAlert:"You have unsaved changes. If you leave without saving, they will be lost.",confirmSaveDialog:{computingNewLinks:"Computing new links...",onceLinked:"Once linked, when a change is applied to one component in any of those locations (including the current one), all the other linked components will be updated in the same way. Please confirm that you wish to proceed with saving.",overwrittenExistingComponent:"Overwriting a component with the same id",overwrittenExistingComponentTooltip:e=>`Warning: There is already a component with ID '${e.named("componentId")}' at this location, so it will be overwritten by this component if you link it.`,title:"Confirm save of new links",youAreAboutToLink:"You are about to link the current component with the components in the following locations:"},notify:{linkSaveSuccess:e=>`The linking update of '${e.named("componentId")}' was successful.`},multiselect:{placeholder:"Select pages to link",selectLabel:"Press enter to select",deselectLabel:"Press enter to remove",selectedLabel:"Selected"},overviewHeader:{title:"Edit linking of overview header",saveSuccess:"The linking update of the header was successful."},pageList:{factsheet:"Factsheet",overview:"Overview",analysis:"Analysis"}},pricesManagement:{addData:"Add data",autoDataUpdate:"Your data is updated automatically.",date:"Date",datePlaceholder:"YYYY-MM-DD",dateValidationError:"You can't add a date that already has a value.",exportCsv:"Export as CSV",importCsv:"Import from CSV",importCsvFormat:"The input file is expected to be in CSV format, with two columns and a header row. The first column should consist of dates, and the second column should consist of numbers (the price at the corresponding date). Please ensure that your CSV is valid to avoid any issues when reading and parsing the data.",loadingData:"Loading data...",price:"Price",removeData:"Remove data",benchmarks:{noBenchmark:"No benchmark available for this product."},dialog:{removeData:{title:"Remove a data point",text:"You are going to completely remove a data point. Are you sure?"}},notify:{dateUsedMultipleTimeError:"There are multiple prices associated with one date. You have to ensure that each date has a unique price assigned to it.",numberFormatError:'At least one of the numbers has an unrecognized format. Ideally, you should not use any separators for thousands and use a dot for the decimal separator as this is the expected format. For example, "102.12", "1380.25", "18.952", ...',saveErrorText:"Error when updating prices, please contact us.",saveSuccessText:"The prices were updated successfully."},prompt:{addPrice:"Add a price",importCsv:"Import data from CSV"}},tables:{metricsTable:{na:"N/A",name:"Name",showLess:"Show less",showMore:"Show more"},monthlyReturnsTable:{benchmark:"Benchmark",return:"Return"},performanceTable:{computedFromTo:e=>`Performance computed from ${e.named("firstDate")} to ${e.named("lastDate")}.`,notAvailableData:"Data not available either because there isn't enough days to compute it, the data is not meaningful (e.g. negative sharpe ratio), or the benchmark is not always available during the selected period"},topHoldingsTable:{holdingFields:{assetClass:"Asset class",currency:"Currency",holdingName:"Name",instrumentType:"Instrument type",isin:"ISIN",region:"Region",sector:"Sector",value:"Value",weight:"Weight"},totalOfPortfolio:"Total of portfolio"}},thirdParty:{vuePhoneNumberInput:{countrySelectorLabel:"Country code",countrySelectorError:"Select a country",phoneNumberLabel:"Phone number",example:"Example :"}}},We={admin:{disclaimer:"Disclaimer",enterText:"Enter a text",operations:{generateFactsheets:{allLanguages:"All languages",allProducts:"All products",createdAt:"Created at",factsheetGeneration:"Factsheet generation",factsheetGenerationFilters:"Factsheet generation filters",fileName:"File name",generationNotPossibleDate:"The selected latest date is earlier than the product's inception date.",generationNotPossibleLang:"This language is not available for the selected product.",generationPossible:"Factsheet generation is possible.",generationWarningFileExists:"A file with this name and language already exists. Proceeding will overwrite the existing file.",generateSelectedFactsheets:"Generate selected factsheets",generationStatus:"Generation status",backToDashboardButton:"Back to dashboard",backToFiltersButton:"Back to filters",language:"Language",lastDateToInclude:"Last date to include",lastDayOfData:"Last day of data",loadingOperations:"Loading operations ...",newButton:"Generate new factsheets...",preparingFactsheetsGeneration:"Preparing the list of factsheets for generation...",product:"Product",refreshButton:"Refresh",requireLogin:"Require login for access",selectFactsheetsForGeneration:"Select Factsheets for Generation",selectLanguages:"Select languages",selectProducts:"Select products",setAsLastFactsheet:"Set as last factsheet for product",showAvailableFactsheet:"Show available factsheets",status:"Status",langMultiselect:{placeholder:"Select languages to include",selectLabel:"Press enter to select",deselectLabel:"Press enter to remove",selectedLabel:"Selected",limitText:e=>`and ${e.named("count")} more`},metaInfo:{title:"Admin - Operations - Generate Factsheets"},productsMultiselect:{placeholder:"Select products to include",selectLabel:"Press enter to select",deselectLabel:"Press enter to remove",selectedLabel:"Selected",limitText:e=>`and ${e.named("count")} more`},statuses:{failed:"Failed",pending:"Pending",running:"Running",succeeded:"Succeeded"},successDialog:{title:"Operation created",text:"The operation has been successfully launched!"}}},platformSettings:{platformSettings:"Platform settings",complianceTab:{checksActivated:"Checks activated",editTitle:"Edit compliance",title:"Compliance",investorProfile:{disclaimerTooltip:"This text will be shown to users coming on the Platform and getting asked what their investor profile is (type and country). Make sure to write an appropriate and legal disclaimer.",goToInvestorProfilePage:"Open page",seeInvestorProfilePage:"See investor profile page",showLogoOnInvestorProfile:"Show logo on investor profile page",title:"Investor profile",tooltip:'You can activate the investor profile checks, which means that when a user comes on your Platform for the first time, they will have to select their investor type (retail, professional, institutional), as well as their country. You can then configure which type of investor and from which country is allowed to see each of your product/share class; this can be done in the Admin>Products section, under the "Access restrictions" tab, once you\'ve activate the checks here.'},notify:{saveSuccessText:"Your compliance settings were updated successfully.",saveSuccessTextWithLang:e=>`Your compliance settings were updated successfully (language: ${e.named("lang")}).`},ombudsman:{title:"Ombudsman text",tooltip:"If you need to have a reference to your ombudsman on this Platform, write the text that will be shown to users checking your ombudsman. A link to this text will be visible in the footer of the Platform, next to the Privacy Policy."},productDisclaimer:{title:"Default product disclaimer",tooltip:'Set a default product disclaimer that will be used for all products which don\'t have a product-specific disclaimer. You can set a product-specific disclaimer by going on "Admin > Products", then selecting the product of your choice, and setting the product-specific disclaimer in the "General" tab.'}},rolesTab:{editTitle:"Edit roles",title:"Roles",description:"By default, only the role \"admin\" exists, a role which gives admin rights on all the products as well as access to the platform settings. It can be useful to have more fine-grained roles, for example giving some users admin access only to some products. In order to create such roles, use the following table. Note that once you've saved the roles, you'll need to go on the {0} page to assign the roles to the users of your choice.",table:{roleNameHeader:"Role name",productsHeader:"Products with admin rights",removeRoleTooltip:"Remove role",addRoleTooltip:"Add role",productsMultiselect:{placeholder:"Select product",selectLabel:"Press enter to select",deselectLabel:"Press enter to remove",selectedLabel:"Selected",limitText:"and {count} more"}},notify:{saveSuccessText:"Your roles were updated successfully."}},metaInfo:{title:"Admin - Platform Settings"}},products:{contactUsToFixError:"Please contact us using the contact form to fix this error!",langTabError:"Some fields are invalid in the language:",overwriteDataAllShareClasses:"Overwrite data of all share classes",tabError:"Some fields are invalid",unsavedChangesAlert:"You have unsaved changes. If you leave without saving, they will be lost.",accessRestrictionsTab:{allCountries:"All countries",countriesAllowedForInstitutionalInvestors:"Countries allowed for institutional investors",countriesAllowedForProfessionalInvestors:"Countries allowed for professional investors",countriesAllowedForRetailInvestors:"Countries allowed for retail investors",editAccessRestrictions:"Edit access restrictions",title:"Access restrictions",warningEnablingAccessRestrictions:'To be able to modify the access restrictions, please activate the investor profile checks in the {0}, under the "Compliance" tab.'},contactsTab:{addAnyPerson:"Add any person that you want to show on your factsheet.",additionalText:"Additional text",email:"Email",imageSquare:"Image (square)",name:"Name",phone:"Phone",role:"Role",title:"Contacts"},dataTab:{title:"Data",benchmarks:{title:"Benchmarks"},product:{title:"Product"}},detailsTab:{editDetails:"Edit details",key:"Key",showOnFactsheet:"Show on Factsheet",title:"Details",value:"Value"},dialog:{saveFieldInAllShareClasses:{title:"Overwrite",text:"You are going to overwrite this field in all other share classes of this product, not only the current share class. Are you sure?"},saveInAllShareClasses:{title:"Overwrite",text:e=>`You are going to overwrite the "${e.named("tabName")}" data of all other share classes of this product with the "${e.named("tabName")}" data of this share class (not only the last changes you made). Are you sure?`}},followersTab:{addedByAdmin:"Added by admin",addFollowerButton:"Add a follower",email:"Email",exportCsv:"Export as CSV",importCsv:"Import from CSV",noDataText:"No one is following this product",product:"Product",removeFollowerTooltip:"Remove follower for corresponding product",sendEmail:"Send an email",showAnyShareClass:"Show followers of any share class",title:"Followers",addFollowerPrompt:{email:"Follower's email",emailAlreadyExists:"Someone with this email address is already following this product.",file:"CSV file",language:"Follower's language",text:"Before adding a follower manually, you need to make sure that they agree with receiving whatever information you're planning to send them.",titleAddFollower:"Add follower",titleImportFollowers:"Import followers"},notify:{newFollowerAddedSuccess:"The new follower has been added with success.",newFollowerAddedError:"There was an issue when adding the new follower. Try again or contact us if the issue persists.",noDataInCsv:"No email to add (after filtering email(s) already present).",noEmailHeader:"Your file is missing a column header representing the emails. Accepted column headers are the following (case insensitive): email or e-mail.",followerRemovedSuccess:"The follower has been removed with success.",followerRemovedError:"There was an issue when removing the follower. Try again or contact us if the issue persists.",wrongFormatEmails:e=>`Your file contains email(s) with wrong format: ${e.named("emails")}`},removeFollowerPrompt:{acceptText:"Remove follower",text:e=>`Are you sure you want to remove "${e.named("followerEmail")}" from following the product "${e.named("productName")}"?`,title:"Remove follower"}},generalTab:{backgroundImage:"Background image",description:"Description",editGeneralField:"Edit general field",factsheetBackgroundImage:"Factsheet background image",hidden:"Hidden",hiddenProductTooltip:"Hide the product on the platform for non-admin users.",icon:"Icon",riskProfile:"Risk profile (SRRI)",showLogoOnFactsheet:"Show logo on factsheet (top right corner of the first page)",title:"General"},holdingComponentsTab:{barChart:"Bar chart",data:"Data",date:"Date",donutChart:"Donut chart",header:"Header",key:"Key",loadingData:"Loading data...",noData:"This product doesn't have any holdings data.",pieChart:"Pie chart",shownOnOverview:"Shown on Overview",table:"Table",title:"Holding components",type:"Type",weightPercent:"Weight (in %)",componentTitle:{assetClasses:"Asset classes",currencyExposure:"Currency exposure",instrumentTypes:"Instrument types",regions:"Regions",sectors:"Sectors",topHoldings:"Top holdings"}},keyCharacteristicsTab:{header:"Header",icon:"Icon",paragraph:"Paragraph",title:"Key characteristics"},metaInfo:{title:"Admin - Products Settings"},notify:{productSaveSuccess:e=>`Your product '${e.named("productName")}' config was updated successfully.`,productSaveSuccessWithLang:e=>`Your product '${e.named("productName")}' config was updated successfully (language: ${e.named("lang")}).`},selectCard:{loadingProducts:"Products are loading...",loadingShareClasses:"Share classes are loading...",noProducts:"You have no products.",selectProduct:"Select a product",selectShareClass:"Select a share class"}},users:{tabName:"List of users",company:"Company",country:"Country",email:"Email",emailCopied:"The email has been copied.",investorType:"Investor type",name:"Name",lastVisit:"Last visit",phone:"Phone",roles:"Roles",metaInfo:{title:"Admin - Users List"}}},auth:{email:"Email",errorAlreadyEmailAndPasswordRegister:"You are already registered with this email with a password. Please login with this email and your password.",errorInternal:"An internal error occurred. Please contact us.",or:"or",password:"Password",login:{errorAccountNotExist:"You don't have an account on this platform, please create an account and try again.",errorInvalidLoginCredentials:"The provided credentials do not correspond with any of our user accounts. This discrepancy could be due to an incorrect email or password, the absence of an account associated with the email entered, or the possibility that the email is linked to an alternative sign-in method (such as Google). Please verify your information and try again or create an account if necessary.",errorNeedEmailVerification:"You need to verify your email before trying to connect on our platform. Please check your emails (and your spam folder) to find the email. If you cannot find it, reset your password.",noAccountYet:"No account yet?",rememberMe:"Remember me",welcomeBack:"Welcome back, please login to your account.",dialog:{alreadyLoggedInText:"You are already logged in!"},metaInfo:{title:"Platform - Login"},notify:{newAccessRight:{title:"New access rights",text:"You have been automatically logged out because you were given new access rights that require a fresh login to be validated."},registrationSuccess:{title:"Registration success",text:"Registration successful, we sent you a message to validate your email address, check your inbox!"},requiresRecentLogin:{title:"Reauthentication Required",text:"To proceed with this action, please log in again as your session has expired. Once reauthenticated, you can try the action again."},unexpectedError:{title:"Unexpected Error",text:"An unexpected error occurred. Please log in again. If the problem continues, contact support for assistance."}}},login2fa:{enterCode:"Please enter the 6-digit code from your authenticator app.",incorrectCode:" The code is not correct. Please try again.",title:"2-Factor Authentication",verify:"Verify",verifying:"Verifying ..."},register:{alreadyRegistered:"Already registered?",confirmPassword:"Confirm password",createAccount:"Create account",errorAlreadyEmailAndPasswordRegister:"You already have an account with this email. Please login to your account.",errorAlreadyGoogleRegister:"You are already registered with this Google account. Please login with this account.",errorAlreadyMicrosoftRegister:"You are already registered with this Microsoft account. Please login with this account.",fillBelowForm:'Fill the below form to create a new account. Fields marked with <span class="text-danger">*</span> are required.',registerWith:"Register with: ",form:{agreeAdvertisementOnly:"I explicitly agree that all information provided on this platform is for information and advertisement purposes only and should not be construed as an offer, advice, or recommendation to buy or sell any particular security or to enter into any transaction.",certifyAdult:"I certify that I am 18 years old or older.",company:"Company",confirmPassword:"Confirm password",email:"Email",firstName:"First name",investorProfileCountry:"Country",investorProfileType:"Investor type",lastName:"Last name",needAgree:"You need to agree",phone:"Phone",privacyPolicy:"privacy policy",registeringAccept:"By registering, you accept our {0} and {1}.",termsOfUse:"terms of use"},dialog:{alreadyLoggedInText:"You are already logged in!"},metaInfo:{title:"Platform - Register"}},register2fa:{generatingQrCode:"Generating the QR code ...",incorrectCode:" The code is not correct. Please try again.",need2fa:'To access the platform, please set up 2-factor authentication (2FA). Scan the QR code below or enter the provided secret key into an authenticator app, such as "Google Authenticator" or "Microsoft Authenticator."',title:"Set Up 2-Factor Authentication",verify:"Verify",verifying:"Verifying ..."},resetPassword:{title:"Reset password",sendEmail:"Send email",dialog:{internalErrorText:"An internal error occurred. Please contact us.",resetEmailSent:{title:"Reset email sent",text:e=>`A reset email has been sent to the inbox of ${e.named("email")}. If it doesn't appear shortly, check the spam inbox.`},unknownEmail:{title:"Email doesn't exist",text:"The email you provided for resetting the password doesn't exist. To create an account with this email, go to the register page."}},metaInfo:{title:"Platform - Reset Password"}}},compliance:{investorProfile:{agreeAndConfirmSelection:"Agree and confirm selection",byClickingAcceptDisclaimer:"By clicking the button below, I confirm that I have read and accept the above disclaimer and agree with the {0} and the {1} of this platform.",pleaseChooseProfile:"Please choose your country of domicile and investor profile to proceed.",privacyPolicy:"privacy policy",termsOfUse:"terms of use",title:"Investor profile",metaInfo:{title:"Platform - Investor Profile"}},ombudsman:{title:"Ombudsman",metaInfo:{title:"Platform - Ombudsman"}},privacyPolicy:{endDate:"Crissier, 31st of August 2023",title:"Privacy Policy",metaInfo:{title:"Platform - Privacy policy"},introductionParagraph:{title:"Introduction",para1:"Alquant SA (hereinafter referred to as Alquant, 'we', 'us') is the company operating this platform. Alquant SA respects the privacy of users of its web presence. This means that the personal data is collected, processed and used in accordance with the provisions of applicable data protection law and on the basis of this privacy policy.",para2:"This also applies - and in particular - to cooperation with partners and third parties which we use for the processing of contracts.",para3:"By agreeing to the following privacy policy, you consent to Alquant's data handling processes detailed below regarding collection, processing and use of data in accordance with data protection laws and the following provisions. This consent can be revoked at any point in time with future effect.",para4:"Our data protection practice is therefore consistent with the new Federal Act on Data Protection (nFADP) and, where applicable, the EU General Data Protection Regulation (GDPR)."},accountableAuthorityParagraph:{title:"Accountable authority / EU-Representative",switzerland:"Switzerland",euRepresentativeSub:{title:"EU-Representative",para1:"In cases referred to in Article 3, paragraph 2 of the Regulation (EU) 2016/679 (General Data Protection Regulation; GDPR) and in accordance with Article 27 of GDPR as representative in the EU is designated and in reference to the Swiss nFADP requirement of a Data Protection Officer function:",para3:"You may reach our EU representative at: info(at)alquant.com"},accountableAuthoritySub:{email:"Email",phone:"Phone",title:"Accountable authority and Data Privacy function according to Swiss nFADP",para1:"Responsibility for the processing of personal data is with:",para3:"For any request related to the protection of your personal information, please contact our privacy officer at: compliance(at)alquant.com."}},personalDataParagraph:{title:"Personal Data",para1:"Personal data is any information relating to an identified or identifiable natural person; a natural person is considered as being identifiable if they can be identified directly or indirectly, in particular by reference to an identifier such as a name, an identification number, location data, an online identifier or one or more special characteristics expressing the physical, physiological, genetic, mental, economic, cultural or social identity of this natural person. This includes, for example, your name, your telephone number, your address, as well as all inventory data that you provide us with when registering and creating your client account. Statistical data or anonymised data, which we collect, for example, when you visit our web shop and which cannot be directly linked to your person, is not covered here."},purposeOfDataCollectionParagraph:{title:"Purposes of Data Collection",para1:"a) The collection and processing of this data is carried out for the purpose of contract compliance, for the purpose of enabling the use of our website (connection establishment), to ensure system security and stability on a permanent basis, to optimise our web presence, and for internal statistical purposes. We collect, store and process personal data solely in accordance with the applicable statutory regulations and insofar as this is both necessary and required to fulfil and improve the contractual performance obligations between us and the user / client. This also includes the storage of data for any warranty claims after the end of the contract.",para2:"b) In addition, we use your data within the scope of applicable law for our own marketing purposes in order to optimise our web presence and to draw your attention to services that might be of particular interest to you.",para3:"c) In addition, collection, processing and use of personal data only takes place if you have given your consent."},newsletterParagraph:{title:"Newsletter",para1:"Alquant likes to inform you regularly about current topics and projects around our field of activity via the newsletter. You will receive a newsletter from us only upon express request. We use the opt-in process to send the newsletter, which means that you will receive our newsletter by email provided that you have previously explicitly registered for newsletter delivery. When you have registered for the newsletter, your email address will be used together with your consent for our own promotional purposes until you unsubscribe from the newsletter. You can unsubscribe at any time by sending an email specifying that to our contact address info(at)alquant.com. We are entitled to commission third parties for the technical handling of promotional activities and are entitled to pass on your data for this purpose.",para2:"The data provided by you when registering for the newsletter (name and email address) will be stored and used only to send the newsletter."},legalBasisParagraph:{title:"Legal basis for processing",para1:"We process your personal data primarily to fulfil contractual obligations and our legal obligations. In addition, by accepting this privacy policy, you consent to all processing operations specified in this privacy policy. Of course you can revoke your consent at any time; a declaration to compliance(at)alquant.com is sufficient. Any processing carried out up to this time will not be affected by your cancellation."},legitimateInterestParagraph:{title:"Legitimate interests for processing",para1:"In addition to the aforementioned legal basis for data processing, we also process data based on our legitimate interests. This applies in particular, but is not limited to, processing for marketing and promotional purposes. We pursue, in particular, the following interests:",list1:{el1:"ensuring potential use of the website",el2:"preventing fraud",el3:"ensuring the security and stability of IT systems",el4:"our own marketing purposes",el5:"internal statistical purposes"}},disclosureParagraph:{title:"Disclosure",para1:"We only disclose your personal data if you have given your express consent, if there is a legal obligation to do so or if this is required to enforce our rights – in particular, to enforce claims arising from the contractual relationship. In addition, we disclose your data to third parties, insofar as is required for the execution of the contract. We disclose the required data to subsidiaries, transport companies, banks and other service providers for this purpose. These service providers use your data exclusively for order processing and not for other purposes. In addition, we use some services provided by external service providers to optimise your visit to our website. It is (contractually) ensured that these service providers treat your data confidentially and in accordance with the applicable statutory regulations, and that your data is only used for the purpose of the respective service. Any transfer or resale of the data to third parties by Alquant beyond the provisions in this privacy policy is excluded unless the user has given their express consent to the disclosure of their data. In this case, the user can revoke this consent at any time. Processing operations previously performed on the basis of your consent will not be affected.",para2:"Alquant is entitled to pass your personal data on to third parties abroad if this is required for the execution of the contract. These third parties are bound to the same level of data protection as the provider. If the level of data protection in one country does not correspond to the Swiss level, we contractually ensure that the protection of your personal data corresponds at all times to that in Switzerland."},singleSignOnProcedureParagraph:{title:"Use of single sign-on procedures",para1:"On our website, if you have a Google or Microsoft profile, you can sign up to create a customer account or register using the social plugin using the Single Sign On technique. The plugins are labelled with the logo of the provider.",para2:"When you call up our websites which contain such a plugin, your browser sets up a direct connection with the provider’s computers. The content of the plugin is transmitted by the provider site directly to your browser, which integrates it into the website. By integrating plugins the provider receives the information that you have called up our website. If you are simultaneously logged in to the provider, the provider can assign the visit to your profile.",para3:"If you do not want the provider to collect data about you via our website, you must log out of the provider before you visit our website. Even if you are logged out, providers collect anonymised data via social plugins set up a cookie for you. If you log into the provider at a later time, these data may be assigned to your profile.",para4:"If a login is provided via a social login service − e.g. Google Connect – data are exchanged between the provider and our website. In the case of Google Connect that may be, for example, data from your public Google profile. By using such login services you agree to the transfer of data.",para5:"Please refer to the data protection notices of the provider for the purpose and scope of data collection and the further processing of your data by the provider, as well as your respective rights and setup options to protect your privacy.",para7:'If you do not want the provider to collect data about you via these cookies, you can select the “block cookies from third-party providers" function in your browser settings. Then if there is embedded content from other providers, the browser does not send any cookies to the server.'},durationOfRetentionParagraph:{title:"Duration of retention",para1:"We retain your personal data for as long as is necessary to comply with applicable laws, or as we deem appropriate, or as long as it is required for the purposes for which it was collected. We will block or delete your personal data as soon as it is no longer needed and definitely on expiry of the statutory maximum retention period.",para2:"You can request your personal data to be deleted at any time by sending us a corresponding request to compliance(at)alquant.com. We will comply with your request promptly provided we are not required to retain it for other reasons or need it, for example for the enforcement of claims."},furtherDataSourcesParagraph:{title:"Further data sources",para1:"In addition to the data that we collect directly from you, we also obtain data from public registers (such as the Commercial Register) and from third-party providers.",para2:"Since data sources vary according to the client, no general information can be given regarding said sources. If desired, we are of course willing to disclose our sources of data to you in detail."},userRightsParagraph:{title:"User rights",rightRevocationSub:{title:"Right of Revocation",para1:"Insofar as you have given us consent to collect, store and use personal data in regard to the website or our services, you can revoke this consent at any time. The revocation can be sent by email or in writing to the contact above in section 2: Accountable Authority. The effects of the revocation are limited to the storage and use of personal data, which may not be stored and used without your prior consent based on statutory permission. The revocation also has no effect on previous processing procedures made on the basis of the consent."},furtherRightsSub:{title:"Further rights",informationSub:{title:"Information",para1:"On written request, we will give you information at any time about your stored personal data. The request for information must be made in writing and with proof of identity (copy of ID, passport or other official identification document). Exercising this right is free of charge once a year; for any further request, we reserve the right to charge for cost incurred."},correctionSub:{title:"Correction, deletion, restriction of processing",para1:"In addition, you have the option of having your personal data corrected, blocked or deleted by us at any time. Please contact the internal authority, details of which can be found in section 2. Excluded from deletion is solely the data which we need for the completion of outstanding tasks or for the enforcement of existing rights and claims, also data which we are obliged to keep due to statutory regulations. Such data will be blocked."},rightAppealSub:{title:"Right of appeal",para1:"We attach great importance to safeguarding the rights of our clients and therefore also to the protection of your personal data. Nevertheless, should you be of the opinion that we process your data unlawfully, you can contact us at any time on +41 41 661 23 45 or by email compliance(at)alquant.com with details of your concern. We will address your concerns to the best of our ability.",para2:"If, contrary to expectation, our client service cannot provide you with satisfactory assistance, you can submit your concern to the Federal Data Protection Supervisor at any time as a formal complaint, which will then be investigated."},dataPortabilitySub:{title:"Data portability",para1:"Upon written request, you also have the right to receive personal data relating to you in a structured, current, machine-readable format (pdf file) for transmission to a third party. We reserve the right to charge for cost incurred."}}},cookiesParagraph:{title:"Use of Cookies",para1:"To improve our product range, we use cookies on our website. A cookie is a small text file which is transferred to your computer when you browse our pages. A cookie can only contain information which we send to your electronic device – they cannot be used to read personal data. If you accept cookies on our site, we do not have access to your personal information but with the help of cookies we can identify your computer. There is no personal data stored in the used cookies so that we cannot draw conclusions about your identity by means of cookies technology. Only pseudonymised information is generated.",para2:"We use cookies to verify that you comply with our Terms of Use.",para3:"We use session-based, temporary cookies: these do not remain on your computer. When you leave our pages, the temporary cookie will also be discarded. With the help of the information gathered, we can analyse the usage patterns and structures of our website and optimise it by improving content or personalisation and simplifying use.",para4:"In addition, we use persistent cookies: these remain on your computer to simplify shopping, personalisation and registration services on your next visit. For example, these cookies may record what you have chosen to buy while you continue to shop. Also, you only need to enter your password once on web pages that require login. Persistent cookies can be manually removed by the user. They delete themselves after a certain time has elapsed.",para5:"Cookies are also used by some of our advertising partners (third-party cookies). These cookies help us tailor our site to the specific needs of our clients, for example, by showing advertisements that might actually interest you. Using these cookies enables us to gather information about which products you have viewed or searched for or which pages you have previously visited. These cookies are stored on your hard drive and delete themselves after a certain time. There is also no personal information stored in the cookies used by our advertising partners. Use is pseudonymised so that no conclusion is drawn on your identity.",para6:"Most browsers (such as Firefox, Chrome, Internet Explorer, Safari, etc.) accept cookies by default. You can allow or block temporary and persistent cookies in the security settings - independently of each other. However, we should point out that certain features are not available on our website and some websites may not display properly if you disable cookies.",para7:"The data stored in our cookies will not be linked to your personal data (name, address etc.) without your express consent."},liabilityForLinksParagraph:{title:"Liability for links",para1:"Alquant expressly states hereby that at the time of setting links no illegal contents were identifiable on the pages to be linked. We have no influence on the current and future design, content or authorship of linked pages. Therefore, we hereby expressly dissociate ourselves from all contents of all linked pages which are changed after setting the link. This statement applies to all links and references on our web presence. Regarding illegal, incorrect or incomplete contents and in particular, for damages resulting from the use or non-use of such information, only the provider of the page to which reference was made is liable and not whoever simply sets the link to the respective publication."},webAnalysisParagraph:{title:"Web analysis",googleAnalyticsSub:{title:"Google Analytics",para1:"This website uses Google Analytics, a web analytics service provided by Google Inc. (Google) for needs-based design of websites. We only receive data evaluations with no personal references.",para2:"Google Analytics uses cookies: text files which are stored on your computer and which enable analysis of your use of the website. The information generated by the cookie about your use of this website (including your IP address) will be transmitted to and stored on Google servers in the United States. IP anonymisation has been activated on this website so that the IP address of Google users within Member States of the European Union or in other contracting states of the Agreement on the European Economic Area is truncated in advance of transmission. Only in exceptional cases will the full IP address be sent to a Google server in the US and truncated there. Google will use this information on behalf of the operator of the website to evaluate users' use of the website, to compile reports on website activity, and to provide other services to the website operator related to website activity and internet usage. Google will also transmit this information to third parties if required by law or if third parties process this data on behalf of Google. Google will never associate your IP address with other Google data.",para3:"You can prevent cookies being installed by setting your browser software accordingly. However, we should point out that in this case you may not be able to use all functions of this website to the full extent. By using this website, you consent to the processing of data collected on you by Google in the manner and for the purposes set out above.",para4:'In addition, you can prevent Google from collecting the data generated by the cookie and related to your use of the website (including your IP address) and the processing of this data by Google by downloading and installing the browser plugin available at <a href="https://tools.google.com/dlpage/gaoptout" >https://tools.google.com/dlpage/gaoptout</a >. For more information about the Google Analytics Terms of Use and Privacy Policy, see',para5:'<a href="https://www.google.com/analytics/terms/" >https://www.google.com/analytics/terms/</a > and',para6:'<a href="https://policies.google.com/privacy?hl=en" >https://policies.google.com/privacy?hl=en</a >'},googleFontsSub:{title:"Google Fonts",para1:'This website also uses Google Fonts (Open Scans). For technical reasons, your IP address must be transmitted to Google so that the fonts can be transferred to your browser. For more information about Google Fonts, visit <a class="break-all" href="https://developers.google.com/fonts/faq#what_does_using_the_google_fonts_api_mean_for_the_privacy_of_my_users" >https://developers.google.com/fonts/faq#what_does_using_the_google_fonts_api_mean_for_the_privacy_of_my_users</a > .'}},securityMeasureParagraph:{title:"Security measures",para1:"We apply technical and organisational security measures to appropriately protect your personal information from unauthorised access, abuse, accidental or intentional manipulation, loss or destruction. To protect your privacy, we use a secure connection for our website, which you can see from the ‘https’ (https stands for Hypertext Transfer Protocol Secure) at the very beginning of the address bar in your browser. In this way, the connection is encrypted via SSL/TSL and your data cannot be intercepted by third parties. Technical security measures to protect your personal data are regularly checked and, if necessary, updated. These principles also apply to companies which process and use personal data on our behalf and in accordance with our instructions."},legalBasisGeneralDataProtectionParagraph:{title:"Legal basis General Data Protection Regulation",para1:"In accordance with the provisions of the General Data Protection Regulation (GDPR) applicable from 25 May 2018, we inform you that your consent to the dispatch to the e-mail address you provide will be given on the basis of Art. 6 para. 1 lit. a and Art. 7 GDPR. The corresponding dispatch list is used on the basis of our legitimate interests in accordance with Art. 6 para. 1 lit. f GDPR. We are interested in using a user-friendly and secure website and system that serves our business interests but also meets the expectations of our users and customers."},changesParagraph:{title:"Changes",para1:"We reserve the right to change this privacy policy at any time. The privacy policy does not constitute any contractual or other formal legal relationship with or on behalf of any party."}},termsOfUse:{endDate:"Crissier, 3rd of February 2022",title:"Terms of Use",metaInfo:{title:"Platform - Terms of use"},declarationOfAcceptanceParagraph:{title:"Declaration of acceptance by the user",para1:'This website is operated by Alquant SA. By utilizing this website (or a page diverted to this web address; hereinafter referred to in toto as the "Alquant website") you confirm that you have read and understood and accept the following Terms of Use including the Legal Conditions. If you do not accept these Terms of Use please do not visit the Alquant website again.'},limitedAccessParagraph:{title:"Limited access",para1:"The Alquant website is not intended for legal and natural persons who, for reasons of nationality, business headquarters, place of residence or for any other reasons, are subject to a legal system which bans or restricts in particular",list1:{el1:"the publication of the contents,",el2:"access to the Alquant website,",el3:"the activities of a foreign financial services provider,",el4:"the admission of financial products (e.g. certificates or funds)."},para3:"Moreover it is not intended for use by legal or natural persons in countries where Alquant SA or any companies associated with it do not have the required registration and authorization to operate.",para4:"Persons who are subject to any one or all of these restrictions may not access the Alquant website. This applies in particular to citizens of the USA, UK, Canada, Japan, China and Singapore, or persons resident in the afore-mentioned countries. Please find out about the corresponding legal restrictions in your country.",para5:"Notice for institutional investors",para6:'Financial products for professional investors are available only to qualified investors. Under the terms of Art. 10, para. 3, of the Collective Capital Investments Act together with Art. 6 of the Collective Capital Investments Ordinance, qualified investors include institutional investors having a professional treasury, namely banks and security dealers (including their customers who have a written asset management contract), pension funds, insurance companies, fund managers and local and cantonal authorities, as well as industrial and trading companies. By selecting "Professional investors" you confirm that you are a qualified investor according to the definition given above.'},propertyRightsParagraph:{title:"Property rights",para1:"All elements on the Alquant website are protected as intangible property and are owned by Alquant SA or by third parties. The utilization of the Alquant website does not entail the transfer of any rights, in particular any rights relating to software, brand names or elements of the Alquant website. Copyright indications and brand names may not be changed or removed. Elements of the Alquant website may not be reproduced in their entirety or in part without reference to the full source. The contents of the Alquant website may not be reproduced or utilized for public or commercial purposes without the prior written agreement of Alquant SA."},consultingReplacementParagraph:{title:"Not a replacement for consulting",para1:"The information and opinions published on the Alquant website are of a general nature. They are neither intended nor suitable for replacing individual consulting by specialised staff who will take into account the actual circumstances prevailing in a given individual case. For this reason they do not represent legal, fiscal, financial, economic or any other advice and not be utilized as an investment aid."},noOffersParagraph:{title:"No offers",para1:"The information and opinions published on the Alquant website do not constitute publicity or recommendations and should not be construed as a demand, an offer or an invitation to submit an offer:",list1:{el1:"for acquiring or selling investment tools,",el2:"for carrying out any sort of transactions,",el3:"for completing any other kind of legal business."},para3:"The sole purpose of the Alquant website is to provide information."},futurePerformanceParagraph:{title:"Future performance (indication of risk)",para1:"The future performance of an investment tool cannot be deduced from past movements in the rate, in other words, the security may rise or fall. How the security has behaved in the past is therefore no guarantee for its future value. In the case of certain investment tools, the loss of the total capital invested is also possible in extreme cases. Moreover, fluctuations in exchange rates may also affect the investment."},noGuaranteeParagraph:{title:"No guarantee",para1:"Alquant SA offers no guarantees (including liability towards third parties) nor assurance for",list1:{el1:"the actuality, precision, reliability or completeness of the contents of the Alquant website,",el2:"the results obtained utilizing the Alquant website,",el3:"the contents of third parties that are found on or accessible via the Alquant website."},para3:"Furthermore, Alquant SA shall not be held liable for and cannot guarantee that",list2:{el1:"the functions on the Alquant website work without fault and are available without interruption,",el2:"the Alquant website and other components utilized through access to the Alquant website are free of viruses, etc."},para5:"Alquant SA also offers no guarantee for",list3:{el1:"the increase or stability of the value of capital invested in investment tools,",el2:"the level of future dividends."}},linksParagraph:{title:"Links",para1:"Alquant SA has not verified third parties' websites linked to the Alquant website and cannot be held liable for the actuality, precision, reliability, completeness or legality of the contents and offers on such websites. The user therefore accesses such web pages at his or her own risk.",para2:"Web links may only be included in websites outside an Alquant website with the prior agreement of Alquant SA."},serviceChangesParagraph:{title:"Service changes",para1:"Alquant SA may change, suspend or discontinue any aspect of the Services at any time, including the availability of any Service feature, database, or content. Alquant SA may also impose limits on certain features and services or restrict the user's access to all or any parts of the Services without notice.",para2:"Alquant SA reserves the right at its sole discretion to terminate the user's access to the Services without notice."},useOfInformationParagraph:{title:"Use of information",para1:"The user may use the Information published on the Alquant website only for internal business use or personal, noncommercial use. In no event shall the user publish, sell, lease, disseminate, retransmit, redistribute, broadcast, circulate or otherwise reproduce, provide or permit access to any <b>Alquant SA</b> Information in any format to anyone; provided, however, that the user may furnish Information to users, on a non-continuous basis, using only the following limited methods: (a) In written advertisements, correspondence, or other literature, or (b) during voice telephonic conversations not entailing computerized voice, automated information inquiry systems, or similar technologies.",para2:"Use of automated scripting tools to crawl the site or attempting to bypass the API is strictly prohibited and may result in getting blocked from the Alquant website. Excessive requests may result in throttling of your accounts access to data.",para3:"The use of non-API-based forms of automation, such as scripting the website are prohibited. The use of these techniques may result in the permanent suspension of your account."},indemnificationParagraph:{title:"Indemnification",para1:"User (and user's fund, if user is a representative of a fund) jointly and severally agree to indemnify and hold harmless <b>Alquant SA</b>, and its agents, information providers and their agents, representatives, directors, officers, shareholders, partners, predecessors, successors and assigns, from and against any claim or demand, proceeding, damages, liabilities, losses or expenses, from claims made by a third party, arising from user's use of the <b>Alquant SA</b> information which constitutes a violation of the Terms of Use or an improper act or omission.",para2:"If a user makes use of the Services or any Content other than as expressly permitted under these Terms of Use, he or she may violate copyright and other laws and may be subject to penalties. Without limiting the preceding sentences, the user will not:",para3:"Engage in or permit any reselling, display, reproduction, copying, translation, modification, adaptation, creation of derivative works from, distribution, transmission, transfer, republication, compilation, decompilation or reverse engineering of the Services, any Content, any portion thereof, or any data, other content or information provided to the user in connection with the use of the Services by Alquant SA or any of its third-party sources, in any form, media or technology now existing or hereafter developed or over any network, including a local area network; Remove, obscure or alter any notice, disclaimer or other disclosure affixed to or contained within the Services, including any copyright notice, trademark or other proprietary rights notice or any other legal notice affixed to, or displayed in association with, the Content; Create a frame or use framing techniques to enclose any portion of the Services or the Content, without express prior written consent from Alquant SA;",para4:"Impersonate any person, or falsely state or otherwise misrepresent his or her affiliation with any person, in connection with any use of the Services; Breach or attempt to breach the security of the Services or any network, servers, data, or computers or other hardware relating to or used in connection with the Services or any of the Content, whether or not operated by Alquant SA or any third party; nor use with, or distribute through, the Services any software or other tools or devices designed to interfere with or compromise the privacy, security or use of the Services by others or the operations or assets of any person;",para5:"Violate any applicable law, including, but not limited to securities laws and laws governing investment activity in any country; Restrict or inhibit any other authorized user from using and enjoying the Services; Post, publish, transmit, reproduce, distribute or in any way exploit any of the Content or other information or other materials obtained through the Services for commercial purposes other than as expressly permitted by these Terms of Use or by express prior permission of Alquant SA."},exclusionLiabilityParagraph:{title:"Exclusion of liability",para1:"Alquant SA or any companies, partners, boards of directors, employees or representatives linked to it refuse all liability (including for negligence and towards third parties) for direct or indirect damage or consequential damage that may occur in direct or indirect connection with the utilization of the Alquant website."},reservationsParagraph:{title:"Reservations",para1:"Alquant SA reserves the right to modify any information, opinions, performance or other data, links, etc. at any time without prior notice to users.",para2:"Moreover, Terms of Use may also be changed and the use of the Alquant website may also be restricted or terminated without prior notice."},placeOfJurisdictionParagraph:{title:"Place of jurisdiction",para1:"Insofar as a legal position arises between Alquant SA and the users of the Alquant website, this is subject to Swiss legislation. The sole place of jurisdiction shall be Lausanne, Switzerland."}}},errors:{backHome:"Back to Home",error403:{paragraphWhenLoggedIn:"You don't have the permission to access this page. If your profile is accepted, an admin will soon give you the rights to access it. Please check back in the next 1-2 business days.",paragraphWhenLoggedInWithContact:e=>`You don't have the permission to access this page. If your profile is accepted, an admin will soon give you the rights to access it. Please check back in the next 1-2 business days. If you still haven't received the access then, please contact us: ${e.named("contactEmail")}.`,paragraphWhenNotLoggedIn:"This page requires you to be authenticated to access it. Please click on the button below to log into your account. If you don't have an account yet, please register by clicking on the button below.",title:"403 - Forbidden access",metaInfo:{title:"Platform - 403"}},error404:{paragraph:"The page you are trying to access doesn't exist.",title:"404 - Page not found",metaInfo:{title:"Platform - 404"}},unauthorizedInvestorProfile:{modifyInvestorProfile:"Modify investor profile",title:"Unauthorized investment profile",unfortunately:"Unfortunately, you cannot have access to this page due to your investment profile.",metaInfo:{title:"Platform - Unauthorized Investor Profile"}}},help:{contact:{address:"Address",introText:"Don't hesitate to use this form to get in touch with us. We will be happy to address any suggestions or answer any kind of questions you might have related to this platform and our products.",recaptchaPrivacyPolicy:"Privacy Policy",recaptchaProtect:"This site is protected by reCAPTCHA and the Google {0} and {1} apply.",recaptchaTermsOfService:"Terms of Service",switzerland:"Switzerland",title:"Contact",dialog:{confirmMessage:{title:"Confirm",text:"Do you want to send this message?"}},form:{country:"Country",email:"Email",enterMessage:"Enter your message",exampleEmail:"john.doe@example.com",exampleName:"John Doe",investorProfileType:"Investor type",name:"Name",sendEmail:"Send email"},metaInfo:{title:"Platform - Contact"},notify:{errorMessage:{title:"Error sending message",text:"Sorry, the message couldn't be sent. Retry later or contact us directly by email."},messageSent:{title:"Message sent",text:"The message was successfully sent. We'll come back to you in 1-2 business days."}}},faq:{subtitle:"See the following list for all of our frequently asked questions.",title:"Have Any Questions?",metaInfo:{title:"Platform - FAQ"}},knowledgeBase:{investmentStrategyTechniques:"Investment Strategy Techniques",metaInfoTerm:e=>`Knowledge Base - ${e.named("term")}`,monthlyDataBasis:"Calculated on the basis of monthly data.",noResults:"No results found.",performanceMetrics:"Performance Metrics",search:"Search",source:"Source",subtitle:"Find explanation on general technical terms as well as on some of our techniques that are displayed on this platform.",title:"Welcome to our Knowledge Base",alpha:{title:"Alpha",para1:"{0} is used to measure the superior performance a strategy or its manager is able to generate compared to a benchmark. The {1} describes the performance after discounting for the risk-free environment and the market-related return (market premium * {2}).",para2:'The chart above shows an <span class="font-bold">alpha</span> value of 4% which means given the strategy’s market dependency and the current interest rate environment (risk-free return), it was able to generate an additional 4% of performance compared to what can be expected.',para3:'As indicated in the chart above, the <span class="font-bold">alpha</span> component is the only performance driver that can be attributed to the manager’s skill. Furthermore it indicates that <span class="font-bold">alpha</span> can become a negative number which means that performance has been lost through the active management of the investment. That being said, a positive <span class="font-bold">alpha</span> component can be seen as the component an investor is willing to pay a fee for.',para4:"The higher the alpha, the better the strategy. A high alpha means that the asset managers achieved to create value."},annualizedReturn:{title:"Annualized return",para1:'<span class="font-bold">Annualized returns</span> are cumulative returns re-scaled to a period of one year. This allows investors to better compare returns of different assets that they have owned for different lengths of time.',para2:'Alternatively, <span class="font-bold">annualized returns</span> can also be interpreted as the one-year return an investor would have earned on average by investing during a given period of time.',para3:"Everything else being equal, the higher the annualized return, the better it is."},annualizedVolatility:{title:"Annualized volatility",para1:'<span class="font-bold">Annualized volatility</span> is the volatility of an investment that is rescaled to a period of one year. The <span class="font-bold" >volatility</span> itself measures the magnitude of price movements. More technically, <span class="font-bold" >volatility</span> is a statistical measure of the dispersion of returns (specifically the standard deviation of returns) over a period of time. The higher the <span class="font-bold" >volatility</span>, the riskier the investment, because the higher the <span class="font-bold">volatility</span>, the more likely it is that larger swings will occur.'},beta:{title:"Beta",para1:'<span class="font-bold">Beta</span> measures the dependency of returns. Usually it is used to measure the dependency of a security or an investment strategy on the market’s return. A higher <span class="font-bold" >beta</span> indicates that the security is moving more aggressively than the market whereas a low <span class="font-bold" >beta</span> indicates that the security only captures the market returns partially. The graph below shows trendlines from a high-beta and a low-beta investment and how they have been performing in comparison to the market, whereas the slope of the trendline is the <span class="font-bold" >beta</span> value. The low-beta investment shows a <span class="font-bold">beta</span> &lt; 1 which means it generally moves less than the market but in the same direction while the high-beta investment shows a <span class="font-bold" >beta</span> &gt; 1 and therefore is generating more extreme returns than the market. Thus, the returns in the chart are more widely spread than for the low-beta investment.',para2:'While rarely found, negative <span class="font-bold">beta</span> values exist and would indicate an inverse relation to the market.',para3:"When analyzing an investment strategy, investors are looking for well-performing strategies with a low beta. This constellation indicates that the performance of the manager is less dependent on market returns but on the manager's skill."},calmarRatio:{title:"Calmar ratio",para1:"A ratio used to determine return relative to drawdown (downside) risk in an investment product.",para2:"Everything else being equal, the higher the ratio, the better the investment."},correlation:{title:"Correlation",para1:"The Pearson correlation coefficient (PCC) is a statistical measure that assesses the strength and direction of a linear relationship between two data sets. It's calculated as the ratio of the covariance of the two variables to the product of their standard deviations. This normalization makes the PCC a value between -1 and 1, where -1 indicates a perfect negative linear correlation, 1 a perfect positive linear correlation, and 0 no linear correlation. It's important to note that PCC only detects linear relationships, not other types of correlations.",para2:"Given paired data {(X,Y)} of n pairs, the PCC will be calculated using the following formula:"},cumulativeReturn:{title:"Cumulative return",para1:'Presented as a percentage, the <span class="font-bold">cumulative return</span> on an investment is the aggregate amount that the investment has gained or lost over time.',para2:'The <span class="font-bold">cumulative return</span> can be easily deduced from a graph that shows the growth of an investment such as above. Using only the first and last values of the graph, we can get the total cumulative return for a given period of time.'},informationRatio:{title:"Information ratio",para1:'Investment strategies are often measured against a certain benchmark which mostly consists of one or a mix of many indices. When an investment manager beats the benchmark, it is interesting to the investor to know at what cost the goal has been achieved. The <span class="font-bold" >information ratio</span> is a measure providing a comparison between the excess return against the benchmark and the tracking error which is a measure of consistency between the strategy and the benchmark.',para2:'The <span class="font-bold">information ratio</span> is calculated the same way as the sharpe ratio given the assumption that the benchmark equals a risk-free return with a volatility of 0%.',para3:"All other things being equal, if this ratio is positive, the higher it is, the more robust the investment. A high ratio means that daily fluctuations in excess returns with respect to the benchmark are small compared with the average excess return with respect to the benchmark."},kurtosis:{title:"Kurtosis",para:"Kurtosis indicates the peakedness of a distribution. For normal distribution, Kurtosis is 0. The higher the kurtosis of a distribution, the most it is concentrated around its mean."},m2RiskAdjustedPerf:{title:"M2 measure",para1:"The M2 (M-square) risk-adjusted performance, also known as M2 measure, assesses the risk-adjusted returns of an investment portfolio. It evaluates the portfolio's returns, factoring in its risk compared to a benchmark, such as the market. Essentially, it represents the difference in the adjusted excess return of a portfolio (P) against the market, adjusting the portfolio to match the market's volatility. Originating from the Sharpe ratio, it offers a substantial benefit by expressing results in percent returns, unlike the Sharpe ratio, which is a non-negative figure and less practical for many investors. This feature of the Modigliani measure makes it significantly easier to understand and apply.",para2:"Everything else being equal, if the return of the investment is higher than the risk-free rate, the higher the M2 measure, the better the investment. Indeed, in this case the M2 measure increases when the return of the strategy increases, or when the volatility of the strategy decreases with respect to the one of its benchmark."},maximumDrawdown:{title:"Maximum drawdown",para1:'A <span class="font-bold">maximum drawdown</span> is the maximum observed loss from a peak to a trough of a portfolio, before a new peak is attained. <span class="font-bold" >Maximum drawdown</span> is an indicator of downside risk over a specified time period.',para2:'<span class="font-bold">Maximum drawdown</span> is an indicator used to assess the relative riskiness of a strategy versus another, as it focuses on capital preservation, which is a key concern for most investors. A low maximum drawdown is preferred as this indicates that losses from investments were small. If an investment never lost a penny, the <span class="font-bold" >maximum drawdown</span> would be zero. The worst possible <span class="font-bold">maximum drawdown</span> would be 100%, meaning the investment is completely worthless.',para3:"Everything else being equal, the lower the absolute value of the maximum drawdown (i.e. the closer the maximum drawdown is to 0%), the more reliable the investment.",keyPoints:"Key points",keyPoint1:"Maximum drawdown is a measure of an asset's largest price drop from a peak to a trough.",keyPoint2:"Maximum drawdown is considered to be an indicator of downside risk, with large maximum drawdowns suggesting that down movements could be volatile.",keyPoint3:"While maximum drawdown measures the largest loss, it does not account for the frequency of losses, nor the size of any gains."},metaInfo:{title:"Platform - Knowledge Base"},omegaRatio:{title:"Omega ratio",para1:"The Omega ratio is a risk-return performance measure. It computes the probability weighted ratio of gains versus losses.",para2:"Everything else being equal, the higher the ratio, the better the investment."},returnVolatilityRatio:{title:"Return to volatility ratio",para1:'The <span class="font-bold">return to volatility ratio</span> represents the average return achieved per unit of volatility (standard deviation), which can be interpreted as a unit of risk. It is therefore informative about how well an investor is compensated for the risk taken (the higher the <span class="font-bold" >return to volatility ratio</span>, the higher the risk compensation).',para2:'Typically, any <span class="font-bold">return to volatility ratio</span> greater than 1.0 over a prolonged period of time is considered good because it means that the rewards are higher than the risk taken. For example, if the annualized volatility is lower than the annualized return, the <span class="font-bold" >return to volatility ratio</span> will be greater than 1.0.',para3:'Thus, the <span class="font-bold">return to volatility ratio</span> allows investors to compare very different investments by the same criteria. The <span class="font-bold" >return to volatility ratio</span> allows for apples-to-oranges comparisons.',keyPoints:"Key points",keyPoint1:"A high <span class='font-bold'>return to volatility ratio</span>  indicates how well an investor is compensated for the risk taken.",keyPoint2:"The <span class='font-bold'>return to volatility ratio</span>  adjusts the past performance of a portfolio to the risk taken by the investor and thus allows a comparison between very different investments."},sharpeRatio:{title:"Sharpe ratio",para1:'The <span class="font-bold">sharpe ratio</span> is a measure of risk-adjusted return. It compares the excess return above a risk-free investment to the risk that has been taken to achieve this return, whereas the risk for the investor is defined as volatility. The ratio helps to understand the return that has been achieved by the unit of risk and can be used to compare multiple investment opportunities.',para2:"Since no investments are totally risk-free, any security with tiny risks can be used as a proxy for risk free returns. Usually, government bonds from stable countries fit the purpose well. We use short-term LIBOR rates to calculate the risk-free return.",para3:"All other things being equal, if this ratio is defined (i.e. if it’s positive), the higher it is, the more robust the investment. A high ratio means that daily fluctuations in excess returns are small compared with the average excess return."},skewness:{title:"Skewness",para1:'The frequency of occurrence of large returns in a particular direction is measured by <span class="font-bold">skewness</span>. If the frequency of occurrence of large negative returns compared to large positive returns is higher, then the distribution displays negative <span class="font-bold">skewness</span>. In case the frequency of large positive returns exceeds that of large negative returns then the distribution displays positive <span class="font-bold">skewness</span>.',para2:'Investors should look at <span class="font-bold">skewness</span> because it considers the extremes of the returns rather than focusing solely on the average. Short- and medium-term investors in particular need to look at extremes because they are less likely to hold a strategy long enough to be confident that the average will work itself out.'},sortinoRatio:{title:"Sortino ratio",para1:"The Sortino ratio is similar to Sharpe ratio except it uses downside risk (Downside volatility) in the denominator. Since upside variability is not necessarily a bad thing, Sortino ratio is sometimes more preferable than Sharpe ratio.",para2:"Everything else being equal, the higher the ratio, the better the investment."},trackingError:{title:"Tracking error",para1:'The <span class="font-bold">tracking error</span> is a measure of the risk of an investment portfolio due to its manager\'s decisions to deviate from its benchmark. The higher it is, the more active the manager is in choosing to deviate from its benchmark.',para2:"Mathematically, a relevant way to estimate it is to calculate the standard deviation of the difference in return between the portfolio and the benchmark. The one we present on this platform is annualised.",para3:'It is important to keep in mind that it does not represent the relevance of the manager\'s decisions, but rather the impact they have on the final portfolio. Thus, two portfolios with excellent or bad performance can both have high <span class="font-bold">tracking errors</span> compared to their benchmark.',para4:"A low tracking error implies that an investment does not deviate much from its benchmark. A high tracking error means that the investment deviates a lot from its benchmark."},treynorRatio:{title:"Treynor ratio",para:'Similar to Sharpe ratio, Treynor ratio is a measurement of efficiency utilizing the relationship between annualized risk-adjusted return and risk. Unlike Sharpe ratio, Treynor ratio utilizes "market" risk (beta) instead of total risk (standard deviation). Good performance efficiency is measured by a high ratio.'},valueAtRisk:{title:"Value-at-risk",para1:"VaR is a statistic that quantifies the extent of possible losses within a portfolio over a specific time frame and with a defined probability. VaR 1% over 1 month = x% loss in 1 month with 1% probability. The lower, the better!",para2:"In practice, it is the quantile of the returns of the strategy corresponding to the p-value (1% or 5%)."}}},home:{metaInfo:{title:e=>`${e.named("orgName")} - Platform`},modifyInvestorProfile:"Modify investor profile",noProductsAvailable:"No products available for your role and investor profile.",search:"Search",showMoreProducts:"Show more products"},products:{analysis:{analysisPeriod:"Analysis period",backtest:"Backtest",backtestOrLive:"Backtest or live",benchmarks:"Benchmarks",live:"Live",liveProduct:e=>`${e.named("productName")} live`,shareClass:"Share class",graphs:{considerApproximation:"These values should be considered as an approximation.",weHave:"We have",weWant:"We want",titles:{assetClassesWeights:"Asset classes weights",beta:"Beta",constituents:"Constituents",contango:"Contango",diffMonthlyReturns:"Diff. monthly returns",drawdowns:"Drawdowns",exposureIndices:"Exposure to indices",exposureOverTime:"Exposure over time",indicators:"Indicators",monthlyReturns:"Monthly returns",performance:"Performance",ratioVixFutures:"Ratio VIX futures",recentDataOverview:"Recent data overview",relativeDrawdowns:"Relative drawdowns",relativePerformance:"Relative performance",riskAdjustedPerformance:"Risk-adjusted performance",rollingVRatioLevel:"Rolling v-ratio level",statistics:"Statistics",returnProfile:"Return profile",top10ConstituentsWeight:"Current 10 biggest constituents",top5ConstituentsWeight:"Top 5 constituents weight",vegaIndicatorConditions:"Vega indicator conditions",vix:"VIX",vixPremium:"VIX premium",volatility:"Volatility",weightedPerformance:"Weighted performance",yearlyReturns:"Yearly returns"},tooltips:{beta:"This graph shows the beta of our product compared to our benchmark. To compute it, we use data from the last available year, which is why the metric is missing during the first year of life of our product.",relativePerformance:"This graph shows a comparison of the performance of our product and the performance of our benchmark. To do this, our cumulative returns are divided by the cumulative returns of our benchmark. This means that at 100%, both performance are similar, otherwise the higher the number is, the better the performance of our product is compared to the benchmark.",riskAdjustedPerformance:"This graph shows the risk-adjusted performance. To compute it, we use data from the last available year, which is why the metric is missing during the first year of life of our product. The risk-adjusted performance is defined as the ratio between the annualized return and the annualized volatility.",volatility:"This graph shows the annualized volatility (i.e. standard deviation). To compute it, we use data from the last available year, which is why the metric is missing during the first year of life of our product."}},metaInfo:{title:e=>`${e.named("productName")} - Analysis`},tab:{historical:"Historical",historicalText:'For products that are already launched, we distinguish the "Analysis" section between "Live Analysis" and "Historical Analysis". The "Historical Analysis" section aims to illustrate the performance of the product before its inception. The performance is based on a realistic simulation of the strategy. However, no assets under management were involved during the corresponding time period.',internal:"Internal",live:"Live",liveText:'For products that are already launched, we distinguish the "Analysis" section between "Live Analysis" and "Historical Analysis". The "Live Analysis" section illustrates the performance since the inception of the product.'}},documentDownload:{failure:"The file failed to be downloaded, please contact us if this is unexpected.",needAuth:"You need to be authenticated to download this document. Please log in.",preparing:"The file is getting prepared for download...",seeProductOverview:"See product overview",success:"The file has been downloaded successfully.",metaInfo:{title:e=>`${e.named("productName")} - Documents Download`}},documents:{addFile:"Add a file",document:"Document",nameValidationError:"The name is already used by another one of your documents, please choose a different one.",noDocument:"No document provided for this product.",noArchivedDocument:"No archived document for this product.",noteDragAndDrop:"Note: Drag and drop rows to reorder the documents.",shareClass:"Share class",archiveIconTooltip:"Archive",unarchiveIconTooltip:"Unarchive",archivedDocumentsCardTitle:"Archived documents",dialog:{fileDeletion:{title:"File deletion",text:"You are going to completely delete the file and you won't be able to access it anymore. Are you sure?"},fileArchiving:{title:"File archiving",text:'You are going to archive this file, meaning that it will go in your "archived documents" (just below the documents). Note that it will be possible to unarchive it. Do you want to archive it?'},fileUnarchiving:{title:"File unarchiving",text:"You are going to unarchive this file, meaning that it will go back to your normal documents. Do you want to unarchive it?"},needLogin:{text:"In order to download this document, you need to be authenticated.",title:"You need to be authenticated"}},metaInfo:{title:e=>`${e.named("productName")} - Documents`},notify:{savingDocumentsError:"An error occurred when trying to update the documents. Retry later, or contact us.",savingDocumentsSuccess:"Documents updated successfully.",fileDownloadError:"Error when downloading the document, please contact us."},prompt:{fileDisplayName:"File display name",loginRequired:"Login required?",uploadFile:{acceptText:"Upload file",file:"File",fileLanguage:"File language",shouldConsiderLastFactsheet:"Should this file be considered as the last factsheet for the product?",title:"Upload file"},editFile:{title:"Edit document"}}},embedded:{perfGraph:{metaInfo:{title:e=>`${e.named("productName")} - Embedded Performance Graph`}},perfTable:{currency:"Currency",inceptionDate:"Inception date",name:"Name",lastPriceAsOf:"Last price as of",mtd:"MTD",si:"SI",y1:"-1Y",y3:"-3Y",ytd:"YTD",metaInfo:{title:e=>`${e.named("productName")} - Embedded Performance Table`}},statsTable:{feesIncluded:"Fees are included.",metaInfo:{title:e=>`${e.named("productName")} - Embedded Statistics Table`}}},events:{covidCrisis:"COVID-19 crisis",crisis2022:"2022 crisis",december2018Crisis:"December 2018 crisis",euroCrisis:"Euro crisis",financialCrisis:"Financial crisis",alvolaLive:"Alvola Live",convexusLive:"Convexus Live",lstsLive:"LSTS Live",protechLive:"ProTech Live",sinceInception:"Since inception",ynnovationLive:"Ynnovation Live",calmgard:{calmgardCovid19Crisis:"Covid 19 Crisis",calmgardEuroCrisisOne:"Euro Crisis I",calmgardEuroCrisisTwo:"Euro Crisis II",calmgardGreekAndChinaCrisis:"Greek & China Crisis",calmgardInterestRateSpeculationOne:"Interest Rate Speculation I",calmgardInterestRateSpeculationTwo:"Interest Rate Speculation II",calmgardPostFinancialCrisis:"Post Financial Crisis",calmgardUkraineWar:"Ukraine War"},falgom:{falgomCoronavirusPandemic:"Coronavirus pandemic",falgomFedQuantitativeTapering:"FED Quantitative Tapering",falgomGlobalFinancialCrisis:"Global Financial crisis",falgomGrowthSlowdownChina:"Growth slowdown China",falgomRecessionEurope:"Recession Europe",falgomVolmageddon:"Volmageddon"}},factsheet:{firstDateToInclude:"First date to include (yyyy-mm-dd)",lastDateToInclude:"Last date to include (yyyy-mm-dd)",nameValidationError:"The name is already used by another one of your documents, please choose a different one.",shareClass:"Share class",year:"Year",cardTitle:{assetClasses:"Asset classes",contacts:"Contacts",currencyExposure:"Currency exposure",description:"Description",disclaimer:"Disclaimer",drawdowns:"Drawdowns",monthlyComment:"Monthly comment",monthlyPerformance:"Monthly performance",monthlyReturns:"Monthly returns",historicalPrices:"Historical prices",instrumentTypes:"Instrument types",productDetails:"Product details",regions:"Regions",relativePerformance:"Relative performance",riskProfile:"Risk profile",sectors:"Sectors",shareClasses:"Share classes",topHoldings:"Top holdings",volatility:"Volatility",yearlyPerformance:"Yearly performance"},dragAndDrop:{addGenericComponent:"Add component",availableGenericComponents:"Generic components",availablePredefinedComponents:"Predefined components",editFactsheet:"Edit factsheet",componentTooBig:"The component is too big to be contained in a single page.",saveSuccessText:"The factsheet config was updated successfully.",stopEdit:"Stop edit",general:{primaryColor:"Primary color",title:"General",fontSize:{normal:"Normal",large:"Large",small:"Small",title:"Font size"},spacing:{comfortable:"Comfortable",compact:"Compact",title:"Spacing"},titleBorder:{above:"Above the title",below:"Under the title",none:"No border",title:"Title Border"}},footer:{edit:"Edit the footer",title:"Footer",text:"Text",page:"Page",showPageNumber:"Show page number",showFooterLine:"Show footer line"},forcedElementDeletionWarning:{componentsWereRemoved:"Some components have been removed from your layout due to their size exceeding the displayable area of a single page or their containing column being too large. The IDs of the removed components are:",resolveSolution:"To solve this problem, reduce the height of the affected components, place the component in a new single row, or contact us.",title:"Forced components removal from layout"},header:{backgroundImage:"Background image",hideProductName:"Hide product name",logo:"Logo",onlyOnFirstPage:"Only on first page",textInPrimary:"Text in brand color",title:"Header",useCompanyLogo:"Use company logo",datePosition:{bottomLeft:"Bottom left",bottomRight:"Bottom right",standard:"Standard",title:"Date position",topLeft:"Top left",topRight:"Top right"}}},generateFactsheet:{downloadFactsheet:"Download factsheet",generatingFactsheet:"Generating factsheet ...",saveFactsheet:"Save factsheet in Documents",notify:{generatingError:"Error when generating a factsheet, please contact us.",savedInDocumentsSection:"Your factsheet has been saved in the Documents section."},prompt:{acceptText:"Save factsheet",considerLastFactsheet:"Should this file be considered as the last factsheet for the product?",fileDisplayName:"File display name",loginRequired:"Login required?",title:"Generate and upload factsheet"}},metaInfo:{title:e=>`${e.named("productName")} - Factsheet`},shareClassesTable:{bloomberg:"Bloomberg",class:"Class",currency:"Currency",inception:"Inception",isin:"ISIN",mgmtFee:"Mgmt. fee",mtdPerf:"MTD perf.",nav:"NAV",navDate:"NAV date",perfFee:"Perf. fee",siPerf:"SI perf.",ytdPerf:"YTD perf."},statistics:{title:"Statistics",periods:{1:"1M",3:"3M",6:"6M",ytd:"YTD",12:"1Y",36:"3Y",60:"5Y",max:"MAX"}},statisticsWithPeriods:{title:"Performance",periods:{1:"1M",3:"3M",6:"6M",ytd:"YTD",12:"1Y",36:"3Y",60:"5Y",max:"MAX"}}},months:{short:{jan:"Jan",feb:"Feb",mar:"Mar",apr:"Apr",may:"May",jun:"Jun",jul:"Jul",aug:"Aug",sep:"Sep",oct:"Oct",nov:"Nov",dec:"Dec"}},overview:{assetClasses:"Asset classes",currencyExposure:"Currency exposure",keyCharacteristics:"Key characteristics",historicalPrices:"Historical prices",instrumentTypes:"Instrument types",itd:"ITD return",itdDescription:e=>`ITD (inception-to-date) is a period, starting from the product inception (${e.named("date")}), and continuing up to the present day.`,lastChange:"Last change",lastDayChange:"Last day change",lastWeekChange:"Last week change",lastMonthChange:"Last month change",lastQuarterChange:"Last quarter change",lastYearChange:"Last year change",monthlyReturns:"Monthly returns",lastPrice:"Price",performance:"Performance",productDetails:"Product details",productTimeline:"Product timeline",regions:"Regions",sectors:"Sectors",shareClass:"Share class",topHoldings:"Top holdings",yearlyReturns:"Yearly returns",ytd:"YTD return",ytdDescription:"YTD (year-to-date) is a period, starting from the beginning of the current calendar year, and continuing up to the present day.",dragAndDrop:{addGenericComponent:"Add component",availableGenericComponents:"Generic components",availablePredefinedComponents:"Predefined components",editOverview:"Edit overview",saveSuccessText:"The overview config was updated successfully.",stopEdit:"Stop edit"},follow:{buttonText:"Follow",buttonTextFollowing:"Following",notify:{error:"There was an error. Try again or contact us if the issue persists.",followSuccess:e=>`You are now following ${e.named("productName")}.`,unfollowSuccess:e=>`You are not following ${e.named("productName")} anymore.`},promptNotFollowing:{acceptText:"Follow",text:"By following this product, you accept to be sent information related to the product from time to time. You will always be able to unfollow to stop receiving such information.",title:"Follow product"},promptFollowing:{acceptText:"Unfollow",text:"You are currently following this product. Do you want to unfollow it, which means you won't receive information related to the product?",title:"Unfollow product"},promptNotLoggedIn:{cancelText:"Create an account",text:"If you want to be able to follow this product, you need to be logged into your account. If you don't have an account, you can create one for free.",title:"Follow product"}},metaInfo:{title:e=>`${e.named("productName")} - Overview`},statsOptions:{1:"1 month",3:"3 months",6:"6 months",ytd:"Year to date",12:"1 year",36:"3 years",60:"5 years",max:"Since inception"}},useCase:{allocationAlvola:"Allocation to Alvola",biggestDrawdowns:e=>`Biggest drawdowns of ${e.named("benchmark")}`,description:"Our use case illustrates how adding the Alquant Alvola strategy to an existing equity portfolio can increase returns over the long term while reducing the maximum drawdown. Select your desired equity portfolio and allocation to the Alquant Alvola strategy and discover how the combination would have performed in the past (before the inception of our product which was on the 02 Jun 2021). In addition, you will also find the performance during the 10 largest drawdown periods of your selected equity portfolio.",drawdowns:"Drawdowns",equityPortfolio:"Equity portfolio",historicalResults:"Historical results",portfolioAllocation:"Portfolio allocation",protectPortfolio:"Protect your portfolio with Alvola",metaInfo:{title:e=>`${e.named("productName")} - Use Case`}}},settings:{metaInfo:{title:e=>`Settings - ${e.named("name")}`},changePassword:{confirmNewPassword:"Confirm new password",currentPassword:"Current password",newPassword:"New password",title:"Change password",notify:{success:"Your password was successfully updated.",couldntChange:"We couldn't change your password, please contact us using the contact form to fix this error!",wrongPassword:"You provided the wrong password."}},deleteAccount:{deleteYourAccount:"Delete your account",title:"Delete account",notify:{success:"Your account was successfully deleted."},dialog:{permanentlyDeleteData:{text:"Deleting your account will permanently delete all your data.",title:"Confirm"},recentLoginNeeded:"Recent login needed"}},editProfile:{company:"Company",email:"Email",firstName:"First name",investorProfileCountry:"Country",investorProfileType:"Investor type",lastName:"Last name",phone:"Phone",title:"Edit profile",requiredFields:'Fields marked with <span class="text-danger">*</span> are required.',dialog:{askValidation:{title:"Personal details verification",text:"Please check your personal details and save them when you have finished."}},notify:{errorText:"We couldn't update your data, please contact us using the contact form to fix this error!",successText:"The update was a success"}},overview:{email:"Email",name:"Name",title:"Account overview"},preferences:{discard:"Discard",hideProducts:"Hide Logged in Products",title:"Preferences",notify:{savedText:"Your preferences' settings were saved successfully."}}}},Qe={alquant:{faq:{howToInvest:{question:"How can I invest in one of Alquant's products?",answer:'As everyone\'s financial situation and risk profile are different, we need to evaluate yours and see if there is a fit with one of our products. To do this, please use <a href="/help/contact">our contact form</a> or drop us an email at <a href="mailto:info@alquant.com">info@alquant.com</a> to start a discussion or set up a call with us, we would be glad to help you.'},moreQuestions:{question:"I have another question, where can I ask it?",answer:'You can always contact us using <a href="/help/contact">our contact form</a> to ask any question. You can expect a response from us in the next 1-2 business days.'},whatAlquant:{question:"What is Alquant?",answer:'Alquant is a Swiss asset management company specialized in risk management improving traditional asset management through quantitative finance and artificial intelligence for the benefits of its clients. We are committed to delivering superior investment results and outstanding investor experience. More information can be found on our website: <a href="https://alquant.com" target="_blank">https://alquant.com</a>.'},whatDataSources:{question:"What data sources does Alquant use for its platform?",answer:'The data that we display mainly comes from our main data provider, <a href="https://intrinio.com" target="_blank">Intrinio</a>. For some specific data, we also use other sources, such as <a href="https://www.swissfunddata.ch/" target="_blank">Swiss Fund Data</a>, <a href="https://derivatives.juliusbaer.com/ target="_blank">Julius Baer</a>, <a href="https://keyinvest-ch-en.ubs.com/" target="_blank">UBS KeyInvest</a> and <a href="https://www.am.pictet/" target="_blank">Pictet Asset Management</a>.'},whatGoal:{question:"What is the goal of this platform?",answer:"As Alquant is committed to providing high transparency and an outstanding investor experience, we want our clients to have access to interactive charts with daily updated values rather than boring PDF documents generated once a month in order to see how our products are performing."}},slogan:"Solutions for investors' success."},bcf:{redirectButtonNavBarText:"Back to Home"},bonhote:{redirectButtonNavBarText:"Back to Home"},calmgard:{nextSubscriptionAndRedemption:{nextRedemption:e=>`<b>Redemption</b> occurring before ${e.named("date")} at 12:00 CET will be executed at the last NAV of ${e.named("month")}.`,nextSubscription:e=>`<b>Subscription</b> occurring before ${e.named("date")} at 12:00 CET will be executed at the last NAV of ${e.named("month")}.`,title:"Next possible Trading Dates"}},cronos:{redirectButtonNavBarText:"Home page Cronos"},demo:{customSections:{useCases:{title:"Use cases",alpinum:{strategyName:"Alpinum",title:"Alpinum",historicalResults:{title:"Historical results",biggestDrawdowns:{title:e=>`Biggest drawdowns of ${e.named("benchmark")}`},drawdowns:{title:"Drawdowns"}},metaInfo:{title:"Use Case - Alpinum"},parameters:{runButton:"Run use case",benchmark:"Benchmark",title:"Parameters"}}}}},falgom:{taroDiversified:{useCase:{allocation:{equity:"Equity portfolio",product:"Allocation to TARO® Diversified",title:"Portfolio allocation"},drawdowns:{title:"Drawdowns",biggestDrawdowns:"Biggest drawdowns"},historicalResults:{title:"Historical results"},metaInfo:{title:"Use Case - TARO® Diversified"}}}},mirante:{redirectButtonNavBarText:"Home page MFM"},ppt:{redirectButtonNavBarUrl:"https://ppt.ch/en/asset-management/",redirectButtonNavBarText:"Back to main site"}},$e={apply:"Apply",asOf:e=>`as of ${e.named("date")}`,cancel:"Cancel",contactUs:"Contact us",edit:"Edit",error:"Error",from:"From",ok:"Ok",loading:"Loading...",logIn:"Log in",logOut:"Log out",no:"No",others:"Others",register:"Register",save:"Save",saving:"Saving...",serverError:"An error occured in our server. A report has been sent to our team and we will fix it as soon as possible. Don't hesitate to contact us if the issue persist.",success:"Success",to:"To",warning:"Warning",yes:"Yes",investorProfileTypes:{institutional:"Institutional investor",professional:"Professional investor",retail:"Retail investor"},layouts:{main:{dev:"Dev",devTooltip:"This product is in development",admin:{listUsers:"List of users",platformSettings:"Platform settings",products:"Products",sectionName:"Admin",operations:{name:"Operations",generateFactsheets:{name:"Generate factsheets"}}},help:{contact:"Contact",faq:"FAQ",knowledgeBase:"Knowledge Base",sectionName:"Help"},products:{analysis:"Analysis",documents:"Documents",factsheet:"Factsheet",overview:"Overview",sectionName:"Products",useCase:"Use Case"}},fullPage:{backHome:"Back to Home"},profileDropDown:{settings:"Settings",dialog:{adminAsRegularOnMobile:{text:"The administrative features cannot be accessed on mobile devices. To fully experience the platform, please utilize a desktop computer. The disabled admin features include (but are not limited to): editing elements in the Overview, editing the Factsheet, uploading or deleting documents, and accessing the admin section.",title:"Desktop computer required for admin features"}}},theFooter:{allRightReserved:"All rights reserved",copyright:"Copyright",ombudsman:"Ombudsman",privacyPolicy:"Privacy policy",termsOfUse:"Terms of use"},verticalNavMenu:{errorLoading:"Error when loading menu"},verticalNavMenuGroup:{search:"Search",showMore:"Show more"}},perfStats:{alpha:"Alpha",annualizedReturn:"Annualized return",annualizedVolatility:"Annualized volatility",averageMonthlyReturns:"Average monthly returns",averageNegativeMonthlyReturns:"Average negative monthly returns",averagePositiveMonthlyReturns:"Average positive monthly returns",beta:"Beta",calmarRatio:"Calmar ratio",correlation:"Correlation",cumulativeReturn:"Cumulative return",informationRatio:"Information ratio",kurtosis:"Kurtosis",m2RiskAdjustedPerfMonthly:"M2 measure",maxConsecutiveNegativeMonthlyReturns:"Max consecutive negative monthly returns",maxConsecutivePositiveMonthlyReturns:"Max consecutive positive monthly returns",maxNegativeMonthlyReturn:"Max negative monthly return",maxPositiveMonthlyReturn:"Max positive monthly return",maximumDrawdown:"Maximum drawdown",omegaRatio:"Omega ratio",ratioOfNegativeMonthlyReturns:"Ratio of negative monthly returns",ratioOfPositiveMonthlyReturns:"Ratio of positive monthly returns",returnToVolatilityRatio:"Return to volatility ratio",sharpeRatio:"Sharpe ratio",skewness:"Skewness",sortinoRatio:"Sortino ratio",trackingError:"Tracking error",treynorRatio:"Treynor ratio",valueAtRiskOnePercentOneMonth:"Value at Risk (VaR) 1% over 1 month",valueAtRiskFivePercentOneMonth:"Value at Risk (VaR) 5% over 1 month"},validations:{afterDate:e=>0==e.named("nDaysApart")?`Date must be after ${e.named("minDate")} (included)`:`Date must be at least ${e.named("nDaysApart")} days after ${e.named("minDate")}`,beforeDate:e=>0==e.named("nDaysApart")?`Date must be before ${e.named("maxDate")} (included)`:`Date must be at least ${e.named("nDaysApart")} days before ${e.named("maxDate")}`,confirmed:"The field doesn't match with previous one.",dateFormat:"Date must be in the format YYYY-MM-DD.",email:"The email is not valid.",maxFileSize:e=>`The file is bigger than the maximum authorized size (${(e.named("maxSizeBytes")/1e3/1e3).toFixed(0)} MB).`,maxChar:e=>`The field can have no more than ${e.named("length")} characters.`,minChar:e=>`The field needs at least ${e.named("length")} characters.`,minValue:e=>`The value must be greater or equal to ${e.named("min")}.`,phoneNumber:"This field is not a valid phone number.",required:"This field is required.",roleFormat:'The name of the role cannot contain the character ":".',sum:e=>`The expected sum is ${e.named("expectedValue")} (current: ${e.named("currentValue")}).`},wlps:Qe,pages:We,components:je},Ze={auth:{resetPasswordLink:{forgotPassword:"Mot de passe oublié?"}},cards:{needLoginCard:{needLogged:"Vous devez être connecté pour voir ce contenu."},productHomeCard:{inceptionToDateReturn:"Rendement depuis le début de l'exercice",lastDay:"Changement du dernier jour",lastPrice:"Dernier prix",na:"N/A",viewDetails:"Voir les détails",yearToDateReturn:"Rendement depuis le début de l'année"}},compliance:{cookies:{buttonText:"Accepter",cookiesUsage:"Ce site Web utilise des cookies pour améliorer sa convivialité. En utilisant ce site Web, vous déclarez votre consentement à l'utilisation de cookies, ainsi qu'à la politique de confidentialité où vous trouverez de plus amples informations sur les cookies. Lien: {0}.",privacyPolicy:"Politique de confidentialité"}},components:{downloadAsPngTooltip:"Télécharger au format PNG",details:{aumFormat:e=>`${e.named("currency")} ${(e.named("aum")/1e6).toFixed(1)} million${e.named("aum")>1e6?"s":""}${e.named("asOfDate")?` (au ${e.named("asOfDate")})`:""}`}},datePickers:{dateRangePicker:{from:"De (aaaa-mm-jj)",fullPeriod:"Période complète",to:"À (aaaa-mm-jj)"},zoomPicker:{fiveYears:"5A",fullPeriod:"MAX",oneMonth:"1M",oneYear:"1A",sixMonths:"6M",threeMonths:"3M",tenYears:"10Y",threeYears:"3A",twoYears:"2A",ytd:"AAJ"}},dropdowns:{iconsDropdown:{noIcon:"Pas d'icône"}},editPrompt:{copyInAllLangs:"Copier dans toutes les langues",editField:"Modifier le champ",enterText:"Entrer un texte",overwriteDataAllShareClasses:"Écraser les données de toutes les classes d'actions",id:"ID",idTooltip:"Cet identifiant unique sert de référence pour le composant au sein de la plateforme. Chaque composant que vous créez doit avoir un identifiant distinct. Nous recommandons la convention suivante pour une meilleure lisibilité : utiliser le titre du composant, le convertir en minuscules, remplacer les espaces par des tirets. Pour un composant intitulé 'Mon tableau analytique', l'identifiant serait 'mon-tableau-analytique'.",needUniqueId:"L'identifiant fourni est actuellement utilisé par un autre composant dans l'emplacement actuel ou dans un emplacement lié. Veuillez fournir un identifiant distinctif pour garantir l'unicité.",numberOfDecimals:"Nombre de décimales",numberOfDecimalsTooltip:"Le nombre de décimales pour tous les nombres affichés dans le composant. Notez que ça n'inclut pas les axes des graphiques.",withBenchmark:"Montrer avec la benchmark",footnote:"Texte sous le composant",placeholderFootnote:"Un texte qui apparaît en dessous du composant. Par exemple, 'Les frais sont inclus'",langTabError:"Certains champs ne sont pas valides dans les langues suivantes:",settingsOnlyUsedOnOverviewTooltip:"Ce paramètre ne concerne que la page 'Aperçu'.",showOnFactsheet:"Afficher sur la factsheet",tabError:"Certains champs ne sont pas valides",title:"Titre",titleEdit:e=>`Éditer ${e.named("componentId")}`,titleAdd:"Ajouter un composant",unsavedChangesAlert:"Vous avez des modifications non enregistrées. Si vous quittez sans sauvegarder, elles seront perdues.",genericComponent:{addColumn:"Ajouter une colonne",addRow:"Ajouter une ligne",addData:"Ajouter une donnée",barChart:"Diagramme à barres",cantChangeType:"Vous ne pouvez pas modifier le type d'un composant générique une fois que vous l'avez enregistré. Si vous souhaitez un type différent, vous devez créer un nouveau composant générique.",columnWithIndex:e=>`Colonne ${e.named("idx")}`,data:"Donnée",date:"Date",donutChart:"Graphique en donut",exampleSector:"Ex., Secteurs",header:"En-tête",key:"Légende",image:"Image",lineChart:"Graphique linéaire",needData:"Vous ne pouvez pas sauvegarder un composant générique sans aucune donnée ou partiellement rempli. Supprimez-le, ajoutez une donnée ou complétez les données manquantes avant de sauvegarder.",pieChart:"Graphique circulaire",removeData:"Supprimer la donnée",showColumnHeader:"Afficher l'en-tête de la colonne",table:"Tableau",text:"Texte",type:"Type",useBrandColor:"Utiliser la couleur de la marque",value:"Valeur",weightPercent:"Poids (en %)"},contacts:{addContact:"Ajouter un contact",additionalText:"Texte supplémentaire",email:"E-mail",exampleEmail:"Ex., jdoe@mail.com",exampleName:"Ex., John Doe",examplePhone:"Ex., +41 79 123 45 67",exampleRole:"Ex., Partenaire",imageSquare:"Image (carré)",name:"Nom",phone:"Téléphone",removeContact:"Supprimer le contact",role:"Rôle"},dialog:{copyInAllLangs:{title:"Copier dans toutes les langues",text:"Vous allez copier toutes les valeurs de la langue actuelle dans toutes les autres langues. En êtes-vous sûr(e)?"},saveFieldInAllShareClasses:{title:"Écraser",text:"Vous êtes sur le point d'écraser ce champ dans toutes les autres classes d'actions de ce produit, pas seulement la classe d'actions actuelle. Etes-vous sûr(e)?"},saveInAllShareClasses:{title:"Écraser",text:e=>`Vous êtes sur le point d'écraser les données "${e.named("tabName")}" de toutes les autres classes d'actions de ce produit avec les données "${e.named("tabName")}" de cette classe d'actions (pas seulement les derniers changements que vous avez effectués). Etes-vous sûr(e)?`}},description:{contentTitle:"Description"},disclaimer:{contentTitle:"Clause de non-responsabilité",defaultWarning:"Vous n'avez actuellement pas de clause de non-responsabilité pour ce produit. C'est pourquoi la clause de non-responsabilité standard a été utilisée. Si vous rédigez une clause de non-responsabilité ici, elle s'affichera uniquement pour ce produit."},historicalPricesChart:{defaultLogScale:"Par défaut dans l'échelle logarithmique",showLogScaleSwitch:"Afficher le switch d'échelle logarithmique",priceIndexedTo100:"Indexés à 100"},holdingOverTime:{elementsInOthers:{title:'Éléments à considérer comme "Autres"',multiSelect:{placeholder:"Sélectionnez des éléments",selectLabel:"Appuyez sur la touche Entrée pour sélectionner",deselectLabel:"Appuyez sur la touche Entrée pour supprimer",selectedLabel:"Sélectionné",limitText:e=>`et ${e.named("count")} de plus`}}},keyCharacteristics:{addKeyCharacteristics:"Ajouter une caractéristique clé",exampleDynamicExposure:"Ex., Exposition dynamique",exampleWeDynamicallyAdapt:"Ex., Nous adaptons dynamiquement ...",header:"En-tête",icon:"Icône",paragraph:"Paragraphe",removeKeyCharacteristics:"Supprimer la caractéristique clé"},monthlyReturnsChart:{startDate:"Date de début",startDateTooltip:"Sélectionnez une date de début (au format AAAA-MM-JJ) pour le graphique. Le graphique s'ajustera automatiquement pour afficher les données à partir de la première date disponible pour le produit ou de la date que vous avez choisie, selon celle qui est la plus tardive. Si vous laissez ce champ vide, toutes les données de prix disponibles pour le produit seront affichées."},monthlyReturnsTable:{descending:"Trier les années par ordre décroissant",startDate:"Date de début",startDateTooltip:"Sélectionnez une date de début (au format AAAA-MM-JJ) pour la table des rendements. La table s'ajustera automatiquement pour afficher les données à partir de la première date disponible pour le produit ou de la date que vous avez choisie, selon celle qui est la plus tardive. Si vous laissez ce champ vide, toutes les données de prix disponibles pour le produit seront affichées.",benchmark:"Benchmark",product:"Produit",return:"Rendement",nameReplacements:"Remplacer les noms par défaut",nameReplacementsTooltip:"Personnalisez le nom du produit et de la benchmark dans le composant. Laissez vide pour conserver les noms existants par défaut."},notify:{componentSaveSuccess:e=>`Votre composant '${e.named("componentId")}' a été mis à jour avec succès.`},overviewHeader:{backgroundImage:"Image de fond",backgroundImageTooltip:"Veuillez noter que l'image en cours d'examen est également utilisée comme image de la fiche produit sur la page d'accueil. Par conséquent, toute modification de cette image affectera simultanément la représentation du produit sur la page d'accueil",text:"Texte",textTooltip:"Veuillez noter que le texte actuellement à l'étude est également utilisé comme texte de la fiche produit sur la page d'accueil. Par conséquent, toute modification de ce texte affectera simultanément la représentation du produit sur la page d'accueil.",showDownloadLastFactsheetButton:'Afficher le bouton "@:components.extras.downloadLastFactsheet.downloadLastFactsheet"',showDownloadLastFactsheetButtonTooltip:'Pour que le bouton soit visible par un utilisateur, un document doit être marqué comme "@:pages.products.documents.prompt.uploadFile.shouldConsiderLastFactsheet" dans la section "Documents", et il doit être disponible dans la langue sélectionnée par l\'utilisateur.',saveSuccess:"L'en-tête a été mis à jour avec succès",showFollowButton:"Afficher le bouton pour suivre le produit",title:"Éditer l'en-tête de l'aperçu"},predefinedHoldingComponent:{chartType:"Type de graphique",barChart:"Diagramme à barres",donutChart:"Graphique en donut",pieChart:"Graphique circulaire",table:"Tableau",useBrandColor:"Utiliser la couleur de la marque",assetClasses:{editAssetClasses:"Éditer les classes d'actifs"},currencyExposure:{editCurrencyExposure:"Éditer le risque d'exposition"},instrumentTypes:{editInstrumentTypes:"Éditer les types d'instruments"},onlyShowTopThenOthers:{title:"Afficher les premiers uniquement",tooltip:'N\'afficher que les X premiers (nombre choisi), et fusionner les autres dans "Autres". Laisser vide pour tout afficher.'},regions:{editRegions:"Éditer les régions"},sectors:{editSectors:"Éditer les secteurs"}},productDetails:{addDetail:"Ajouter un détail",exampleIsin:"Ex., ISIN",exampleLU:"Ex., LU2220388479",key:"Clé",noteDragAndDrop:"Remarque : faites glisser les lignes pour réorganiser les détails.",removeDetail:"Supprimer le détail",showAuM:"Montrer l'AuM",showLastPrice:"Montrer le dernier prix",value:"Valeur"},relativePerformanceChart:{footnote:"Note de bas de page",placeholderFootnote:"Un texte qui apparaît sous le graphique. Par exemple, 'Les frais sont inclus'"},riskProfile:{level:"Niveau de risque"},shareClassesTable:{bloomberg:"Bloomberg",class:"Classe",defaultFootnote:"Perf. lanc. : les rendements pour les périodes de plus d'un an depuis la création sont annualisés, et non annualisés s'ils sont inférieurs à un an.",footnote:"Note en-dessous de la table",inceptionDate:"Date de création",isin:"ISIN",mgmtFee:"Frais de gestion",perfFee:"Frais de perf.",title:"Modifier le tableau des classes d'actions"},statistics:{benchmark:"Benchmark",product:"Produit",nameReplacements:"Remplacer les noms par défaut",nameReplacementsTooltip:"Personnalisez le nom du produit et de la benchmark dans le composant. Laissez vide pour conserver les noms existants par défaut. Par exemple, utilisez un terme comme 'Produit' pour abréger et économiser de l'espace d'affichage.",fieldsToDisplay:"Champs à afficher",noteDragAndDrop:"Remarque : faites glisser les lignes pour réorganiser les statistiques.",shownStatisticName:"Nom de la statistique affichée",showStatistic:"Afficher la statistique",statisticId:"Identifiant de la statistique"},statisticsWithPeriods:{benchmark:"Benchmark",product:"Produit",nameReplacements:"Remplacer les noms par défaut",nameReplacementsTooltip:"Personnalisez le nom du produit et de la benchmark dans le composant. Laissez vide pour conserver les noms existants par défaut. Par exemple, utilisez un terme comme 'Produit' pour abréger et économiser de l'espace d'affichage.",fieldsToDisplay:"Champs à afficher",noteDragAndDrop:"Remarque : faites glisser les lignes pour réorganiser les statistiques.",periodsTitle:"Périodes à afficher",shownStatisticName:"Nom de la statistique affichée",showStatistic:"Afficher la statistique",statisticId:"Identifiant de la statistique",periods:{1:"1M",3:"3M",6:"6M",ytd:"AAJ",12:"1A",36:"3A",60:"5A",max:"MAX"}},topHoldings:{fieldsToDisplay:"Champs à afficher",showHeader:"Afficher l'en-tête",showTotal:"Afficher le total",numHoldings:{title:"Nombre de positions à afficher",tooltip:"Si vous laissez ce champ vide, toutes les données disponibles pour les avoirs du produit seront affichées."},holdingsToIgnore:{title:"Holdings à ignorer",holdingsMultiselect:{placeholder:"Sélectionnez les holdings à ignorer",selectLabel:"Appuyez sur la touche Entrée pour sélectionner",deselectLabel:"Appuyez sur la touche Entrée pour supprimer",selectedLabel:"Sélectionné",limitText:e=>`et ${e.named("count")} de plus`}},customizeTable:"Personnaliser la table",addColumn:"Ajouter une colonne",columnWithIndex:e=>`Colonne ${e.named("idx")}`}},extras:{changeRoles:{changeRoles:"Changer les rôles",notify:{errorText:"Aucun rôle n'a été mis à jour. Raison: ",successText:"Les rôles des utilisateurs ont été mis à jour."}},deleteGenericComponent:{delete:"Supprimer",deleteAllComponents:"Supprimer tous les composants",deleteOnlyThisComponent:"Supprimer uniquement ce composant",deleting:"Suppression ...",deleteSuccess:"Suppression réussie",page:"Page",shareClass:"Classe d'actions",textIsNotLinked:"Vous êtes sur le point de supprimer définitivement un composant générique. Cette action ne peut être annulée. Veuillez confirmer que vous souhaitez procéder à la suppression.",textIsLinkedFirstPart:"Vous êtes sur le point de supprimer définitivement un composant générique. Cette action ne peut être annulée.  Notez que ce composant est lié au même(s) composant(s) dans ce qui suit: ",textIsLinkedSecondPart:"Veuillez confirmer que vous souhaitez procéder à la suppression et décider si vous souhaitez supprimer uniquement le composant actuel ou si vous souhaitez supprimer ce composant et tous les composants liés.",title:e=>`Suppression permanente de  ${e.named("componentId")}`,pageList:{factsheet:"Factsheet",overview:"Aperçu"}},downloadLastFactsheet:{downloadLastFactsheet:"Télécharger la dernière factsheet",downloadingLastFactsheet:"Téléchargement...",needLogin:{text:"Pour télécharger ce document, vous devez être authentifié.",title:"Vous devez être authentifié"}},manualVerifyEmail:{forceVerification:"Forcer la vérification de l'e-mail",verified:"E-mail vérifié",notify:{errorText:"La vérification forcée de l'e-mail a échoué.",successText:"L'e-mail de l'utilisateur a été vérifié manuellement."}},riskProfile:{higherRisk:"Risque plus élevé",lowerRisk:"Risque plus faible",potentiallyHigherReward:"Rémunération potentiellement plus élevée",potentiallyLowerReward:"Rémunération potentiellement plus faible"}},factsheet:{lastPrice:"Dernier prix"},graphs:{logScale:"Échelle logarithmique",notEnoughData:"Pas assez de données pour tracer ce graphique, veuillez sélectionner une plage de dates plus longue.",needMoreData:"Pour calculer cette métrique, une certaine quantité de données au début est nécessaire. Élargissez la période de temps pour avoir accès à cette métrique."},holdingData:{others:"Autres"},images:{uploadImage:{darkening:"Obscurcissement",file:"Fichier",noFile:"Pas de fichier",noImage:"Pas d'image",selectFile:"Sélectionnez un fichier",selectNewImage:"Sélectionnez une image",errorTitleTooLarge:"Image trop grande",errorMessageTooLarge:"L'image est trop grande. Veuillez sélectionner une autre image dont la taille est inférieure à 30 Mo.",warningTitleVeryLarge:"Image très grande",warningMessageVeryLarge:"L'image est très grande. Elle ralentira le chargement des pages qui l'affichent. Pour de meilleures performances, il est conseillé d'utiliser des images de moins de 10 Mo."}},linkPrompt:{componentLinkedTo:"Ce composant est lié à :",currentPage:"Page actuelle",currentShareClass:"Classe d'actions actuelle",linkThroughPagesTooltip:'L\'activation de cette fonctionnalité crée une liaison synchronisée entre les composants de plusieurs pages. Par exemple, lier les pages "Factsheet" et " Aperçu" permet de s\'assurer que toute modification apportée à un composant partagé est mise à jour simultanément sur les deux pages. Important : le contenu du composant lié est dupliqué à partir de la page source que vous êtes en train de modifier. Si vous créez le lien alors que vous modifiez le composant "description" de la page "Factsheet", le composant "description" de la page "Factsheet" est copié dans la page " Aperçu"',linkThroughShareClassesTooltip:'L\'activation de cette fonction crée une connexion synchronisée entre les composants de plusieurs classes de partage. Par exemple, le fait de lier "Mon produit - Classe A" et "Mon produit - Classe B" garantit que toute modification apportée à un composant partagé est mise à jour simultanément dans les deux classes de partage. Important : le contenu du composant lié est dupliqué à partir de la page source que vous êtes en train de modifier. Si vous créez le lien alors que vous modifiez le composant "description" de la page "Mon produit - Classe A", le composant "description" de "Mon produit - Classe A" est copié dans "Mon produit - Classe B" et remplace donc le composant "description" de "Mon produit - Classe B".',linkedWithPages:"En lien avec les pages suivantes",linkedWithShareClasses:"En lien avec les classes d'actions suivantes",page:"Page",shareClass:"Classe d'actions",title:e=>`Editer le lien de ${e.named("componentId")}`,unlink:"Délier",unlinking:"Déliement...",unsavedChangesAlert:"Vous avez des modifications non enregistrées. Si vous quittez sans sauvegarder, elles seront perdues.",confirmSaveDialog:{computingNewLinks:"Calcul des nouveaux liens...",onceLinked:"Une fois liés, lorsqu'une modification est appliquée à un composant dans l'un de ces emplacements (y compris l'emplacement actuel), tous les autres composants liés seront mis à jour de la même manière. Veuillez confirmer que vous souhaitez procéder à la sauvegarde.",overwrittenExistingComponent:"Écrasement d'un composant avec le même identifiant",overwrittenExistingComponentTooltip:e=>`Avertissement : Il existe déjà un composant avec l'ID '${e.named("componentId")}' à cet emplacement, il sera donc écrasé par ce composant si vous le liez.`,title:"Confirmation de la sauvegarde des nouveaux liens",youAreAboutToLink:"Vous êtes sur le point de lier le composant actuel aux composants situés aux emplacements suivants :"},notify:{linkSaveSuccess:e=>`La mise à jour de la liaison de '${e.named("componentId")}' a été effectuée avec succès. `},multiselect:{placeholder:"Sélectionnez les pages à lier",selectLabel:"Appuyer sur la touche Entrée pour sélectionner",deselectLabel:"Appuyer sur la touche Entrée pour supprimer",selectedLabel:"Sélectionnée"},overviewHeader:{title:"Modifier le lien de l'en-tête de l'aperçu",saveSuccess:"La mise à jour de la liason de l'en-tête de l'aperçu a été effectuée avec succès"},pageList:{factsheet:"Factsheet",overview:"Aperçu",analysis:"Analyse"}},pricesManagement:{addData:"Ajouter une donnée",autoDataUpdate:"Vos données sont mises à jour automatiquement.",date:"Date",datePlaceholder:"AAAA-MM-JJ",dateValidationError:"Vous ne pouvez pas ajouter une date qui a déjà une valeur.",exportCsv:"Exporter en CSV",importCsv:"Importer depuis un CSV",importCsvFormat:"Le fichier d'entrée doit être au format CSV, avec deux colonnes et une ligne d'en-tête. La première colonne doit être composée de dates et la seconde de nombres (le prix à la date correspondante). Veuillez vous assurer que votre fichier CSV est valide afin d'éviter tout problème lors de la lecture et de l'analyse des données.",loadingData:"Chargement des données...",price:"Prix",removeData:"Supprimer une donnée",benchmarks:{noBenchmark:"Aucun benchmark n'est disponible pour ce produit."},dialog:{removeData:{title:"Supprimer un point de donnée",text:"Vous allez supprimer complètement un point de donnée. Êtes-vous sûr?"}},notify:{dateUsedMultipleTimeError:"Plusieurs prix sont associés à une même date. Vous devez vous assurer qu'un prix unique est attribué à chaque date.",numberFormatError:'Au moins un des nombres a un format non reconnu. Idéalement, vous ne devriez pas utiliser de séparateur pour les milliers et utiliser un point pour le séparateur décimal, car c\'est le format attendu. Par exemple, "102.12", "1380.25", "18.952", ...',saveErrorText:"Erreur lors de la mise à jour des prix, veuillez nous contacter.",saveSuccessText:"Les prix ont été mis à jour avec succès."},prompt:{addPrice:"Ajouter un prix",importCsv:"Importer des données depuis un fichier CSV"}},tables:{metricsTable:{na:"N/A",name:"Nom",showLess:"Afficher moins",showMore:"Afficher plus"},monthlyReturnsTable:{benchmark:"Benchmark",return:"Rendement"},performanceTable:{computedFromTo:e=>`Performance calculée du ${e.named("firstDate")} au ${e.named("lastDate")}.`,notAvailableData:"Données non disponibles soit parce qu'il n'y a pas assez de jours pour les calculer, soit parce que les données ne sont pas significatives (par exemple, ratio de sharpe négatif), soit parce que l'indice de référence n'est pas toujours disponible pendant la période sélectionnée."},topHoldingsTable:{holdingFields:{assetClass:"Classe d'actif",currency:"Devise",holdingName:"Nom",instrumentType:"Type d'instrument",isin:"ISIN",region:"Région",sector:"Secteur",value:"Valeur",weight:"Poids"},totalOfPortfolio:"Total du portefeuille"}},thirdParty:{vuePhoneNumberInput:{countrySelectorLabel:"Code pays",countrySelectorError:"Choisir un pays",phoneNumberLabel:"Numéro de téléphone",example:"Exemple :"}}},Ye={admin:{disclaimer:"Clause de non-responsabilité",enterText:"Saisissez un texte",operations:{generateFactsheets:{allLanguages:"Toutes les langues",allProducts:"Tous les produits",createdAt:"Créé le",factsheetGeneration:"Génération de factsheet",factsheetGenerationFilters:"Filtres de génération de factsheet",fileName:"Nom du fichier",generationNotPossibleDate:"La date sélectionnée est antérieure à la date de création du produit.",generationNotPossibleLang:"Cette langue n'est pas disponible pour le produit sélectionné.",generationPossible:"La génération de factsheet est possible.",generationWarningFileExists:"Un fichier portant ce nom et cette langue existe déjà. Continuer écrasera le fichier existant.",generateSelectedFactsheets:"Générer les factsheets sélectionnées",generationStatus:"Statut de la génération",backToDashboardButton:"Retour au tableau de bord",backToFiltersButton:"Retour aux filtres",language:"Langue",lastDateToInclude:"Dernière date à inclure",lastDayOfData:"Dernier jour des données",loadingOperations:"Chargement des opérations ...",newButton:"Générer nouvelles factsheets...",preparingFactsheetsGeneration:"Préparation de la liste des factsheets pour la génération...",product:"Produit",refreshButton:"Rafraîchir",requireLogin:"Connexion requise pour l'accès",selectFactsheetsForGeneration:"Sélectionner les factsheets pour la génération",selectLanguages:"Sélectionner les langues",selectProducts:"Sélectionner les produits",setAsLastFactsheet:"Définir comme dernière factsheet pour le produit",showAvailableFactsheet:"Afficher les factsheets disponibles",status:"Statut",langMultiselect:{placeholder:"Sélectionner les langues à inclure",selectLabel:"Appuyez sur Entrée pour sélectionner",deselectLabel:"Appuyez sur Entrée pour supprimer",selectedLabel:"Sélectionné",limitText:e=>`et ${e.named("count")} de plus`},metaInfo:{title:"Admin - Opérations - Générer des factsheets"},productsMultiselect:{placeholder:"Sélectionner les produits à inclure",selectLabel:"Appuyez sur Entrée pour sélectionner",deselectLabel:"Appuyez sur Entrée pour supprimer",selectedLabel:"Sélectionné",limitText:e=>`et ${e.named("count")} de plus`},statuses:{failed:"Échoué",pending:"En attente",running:"En cours",succeeded:"Réussi"},successDialog:{title:"Opération créée",text:"L'opération a été lancée avec succès !"}}},platformSettings:{platformSettings:"Paramètres de la plateforme",complianceTab:{checksActivated:"Vérifications activées",editTitle:"Éditer la conformité",title:"Conformité",investorProfile:{disclaimerTooltip:"Ce texte sera affiché aux utilisateurs qui arrivent sur la plate-forme et à qui l'on demande quel est leur profil d'investisseur (type et pays). Veillez à rédiger une clause de non-responsabilité appropriée et légale.",goToInvestorProfilePage:"Ouvrir la page",seeInvestorProfilePage:"Voir la page du profil d'investisseur",showLogoOnInvestorProfile:"Afficher le logo sur la page du profil d'investisseur",title:"Profil d'investisseur",tooltip:"Vous pouvez activer les contrôles du profil de l'investisseur, ce qui signifie que lorsqu'un utilisateur vient sur votre plateforme pour la première fois, il devra sélectionner son type d'investisseur (particulier, professionnel, institutionnel), ainsi que son pays. Vous pouvez ensuite configurer quel type d'investisseur et de quel pays est autorisé à voir chacun de vos produits/classes d'actions ; ceci peut être fait dans la section Admin>Produits, sous l'onglet \"Restrictions d'accès\", une fois que vous avez activé les contrôles ici."},notify:{saveSuccessText:"Vos paramètres de conformité ont été mis à jour avec succès.",saveSuccessTextWithLang:e=>`Vos paramètres de conformité ont été mis à jour avec succès (language: ${e.named("lang")}).`},ombudsman:{title:"Texte du Médiateur",tooltip:"Si vous avez besoin d'une référence à votre médiateur sur cette Plateforme, rédigez le texte qui sera montré aux utilisateurs vérifiant votre médiateur. Un lien vers ce texte sera visible dans le pied de page de la Plateforme, à côté de la Politique de confidentialité."},productDisclaimer:{title:"Clause de non-responsabilité par défaut du produit",tooltip:'Définissez une clause de non-responsabilité par défaut qui sera utilisé pour tous les produits qui n\'ont pas de clause de non-responsabilité spécifique. Vous pouvez définir une clause de non-responsabilité spécifique à un produit en allant dans "Admin > Produits", puis en sélectionnant le produit de votre choix et en définissant la clause de non-responsabilité spécifique au produit dans l\'onglet "Général".'}},rolesTab:{editTitle:"Éditer les rôles",title:"Rôles",description:"Par défaut, seul le rôle \"admin\" existe, un rôle qui donne des droits d'administration sur tous les produits ainsi que l'accès aux paramètres de la plateforme. Il peut être utile de disposer de rôles plus fins, par exemple en donnant à certains utilisateurs des droits d'administration sur certains produits seulement. Afin de créer de tels rôles, utilisez le tableau suivant. Notez qu'une fois les rôles enregistrés, vous devrez vous rendre sur la page {0} pour attribuer les rôles aux utilisateurs de votre choix.",table:{roleNameHeader:"Nom du rôle",productsHeader:"Produits avec des droits d'administrateur",removeRoleTooltip:"Supprimer le rôle",addRoleTooltip:"Ajouter un rôle",productsMultiselect:{placeholder:"Sélectionnez un produit",selectLabel:"Appuyez sur la touche Entrée pour sélectionner",deselectLabel:"Appuyez sur la touche Entrée pour supprimer",selectedLabel:"Sélectionné",limitText:"et {count} de plus"}},notify:{saveSuccessText:"Vos rôles ont été mis à jour avec succès."}},metaInfo:{title:"Admin - Paramètres de la plateforme"}},products:{contactUsToFixError:"Veuillez nous contacter en utilisant le formulaire de contact pour corriger cette erreur!",langTabError:"Certaines données sont invalides pour la langue:",overwriteDataAllShareClasses:"Écraser les données de toutes les classes d'actions",tabError:"Certaines données sont invalides",unsavedChangesAlert:"Vous avez des modifications non sauvegardées. Si vous partez sans les sauvegarder, elles seront perdues.",accessRestrictionsTab:{allCountries:"Tous les pays",countriesAllowedForInstitutionalInvestors:"Pays autorisés pour les investisseurs institutionnels",countriesAllowedForProfessionalInvestors:"Pays autorisés pour les investisseurs professionnels",countriesAllowedForRetailInvestors:"Pays autorisés pour les investisseurs particuliers",editAccessRestrictions:"Editer les restrictions d'accès",title:"Restrictions d'accès",warningEnablingAccessRestrictions:"Pour pouvoir modifier les restrictions d'accès, veuillez activer les contrôles du profil d'investisseur dans le {0}, sous l'onglet \"Conformité\"."},contactsTab:{addAnyPerson:"Ajoutez toute personne que vous souhaitez faire apparaître sur votre factsheet.",additionalText:"Texte supplémentaire",email:"Email",imageSquare:"Image (carré)",name:"Nom",phone:"Téléphone",role:"Rôle",title:"Contacts"},dataTab:{title:"Données",benchmarks:{title:"Benchmarks"},product:{title:"Product"}},detailsTab:{editDetails:"Editer les détails",key:"Clé",showOnFactsheet:"Afficher sur la factsheet",title:"Détails",value:"Valeur"},dialog:{saveFieldInAllShareClasses:{title:"Écraser",text:"Vous allez écraser le champ dans toutes les autres classes d'actions, pas seulement de cette classe d'action. Êtes-vous sûr ?"},saveInAllShareClasses:{title:"Écraser",text:e=>`Vous allez écraser les données "${e.named("tabName")}" de toutes les autres classes d'actions de ce produit avec les données "${e.named("tabName")}" de cette classe d'actions (pas seulement les dernières modifications que vous avez apportées). Êtes-vous sûr ?`}},followersTab:{addedByAdmin:"Ajouté par un admin",addFollowerButton:"Ajouter un follower",email:"E-mail",exportCsv:"Exporter en CSV",importCsv:"Importer depuis un CSV",noDataText:"Personne ne suit ce produit",product:"Produit",removeFollowerTooltip:"Supprimer le follower pour le produit correspondant",sendEmail:"Envoyer un e-mail",showAnyShareClass:"Afficher les followers de n'importe quelle classe d'action",title:"Followers",addFollowerPrompt:{email:"E-mail du follower",emailAlreadyExists:"Il y a déjà un follower avec cette adresse e-mail.",file:"Fichier CSV",language:"Langue du follower",text:"Avant d'ajouter un follower à la main, vous devez être sûr qu'il ou elle soit d'accord de recevoir le genre d'informations que vous planifiez de leur envoyer.",titleAddFollower:"Ajouter un follower",titleImportFollowers:"Importer des followers"},notify:{newFollowerAddedSuccess:"Le nouveau follower a été ajouté avec succès.",newFollowerAddedError:"Il y a eu une erreur lors de l'ajout du nouveau follower. Essayez encore ou contactez-nous si le problème persiste.",noDataInCsv:"Aucun email à ajouter (après filtrage des emails déjà présents).",noEmailHeader:"Il manque à votre fichier un en-tête de colonne représentant les emails. Les en-têtes de colonne acceptés sont les suivants (insensibles à la casse) : email ou e-mail.",followerRemovedSuccess:"Le follower a été supprimé avec succès.",followerRemovedError:"Il y a eu une erreur lors de la suppression de ce follower. Essayez encore ou contactez-nous si le problème persiste.",wrongFormatEmails:e=>`Votre fichier contient des emails au mauvais format : ${e.named("emails")}`},removeFollowerPrompt:{acceptText:"Supprimer le follower",text:e=>`Êtes-vous sûrs de vouloir supprimer "${e.named("followerEmail")}" suivant le produit "${e.named("productName")}"?`,title:"Supprimer le follower"}},generalTab:{backgroundImage:"Image en arrière-plan",description:"Description",editGeneralField:"Editer un champ général",factsheetBackgroundImage:"Image d'arrière-plan de la factsheet",hidden:"Caché",hiddenProductTooltip:"Cachez le produit sur la plateforme pour les utilisateurs non administrateurs.",icon:"Icône",riskProfile:"Indicateur synthétique de risque et de rendement",showLogoOnFactsheet:"Afficher le logo sur la factsheet (coin supérieur droit de la première page)",title:"Général"},holdingComponentsTab:{barChart:"Diagramme à barres",data:"Donnée",date:"Date",donutChart:"Graphique en donut",header:"En-tête",key:"Légende",loadingData:"Chargement des données...",noData:"Ce produit n'a pas de données sur les avoirs.",pieChart:"Graphique circulaire",shownOnOverview:"Affiché sur l'aperçu",table:"Tableau",title:"Composants de positions",type:"Type",weightPercent:"Poids (en %)",componentTitle:{assetClasses:"Classes d'actifs",currencyExposure:"Risque d'exposition",instrumentTypes:"Types d'instruments",regions:"Régions",sectors:"Secteurs",topHoldings:"Principales positions"}},keyCharacteristicsTab:{header:"En-tête",icon:"Icône",paragraph:"Paragraphe",title:"Caractéristiques clés"},metaInfo:{title:"Admin - Paramètres des produits"},notify:{productSaveSuccess:e=>`Votre configuration du produit '${e.named("productName")}' a été mise à jour avec succès.`,productSaveSuccessWithLang:e=>`Votre configuration du produit '${e.named("productName")}' a été mise à jour avec succès (langue: ${e.named("lang")}).`},selectCard:{loadingProducts:"Les produits sont en cours de chargement...",loadingShareClasses:"Les classes d'actions sont en cours de chargement...",noProducts:"Vous n'avez pas de produits.",selectProduct:"Sélectionner un produit",selectShareClass:"Sélectionnez une classe d'actions"}},users:{tabName:"Liste des utilisateurs",company:"Entreprise",country:"Pays",email:"Email",emailCopied:"L'email a été copié",investorType:"Type d'investisseur",name:"Nom",lastVisit:"Dernière visite",phone:"Téléphone",roles:"Rôles",metaInfo:{title:"Admin - Liste des utilisateurs"}}},auth:{email:"Email",errorAlreadyEmailAndPasswordRegister:"Vous êtes déjà inscrit avec cette adresse électronique et un mot de passe. Veuillez vous connecter avec cette adresse électronique et votre mot de passe.",errorInternal:"Une erreur interne s'est produite. Veuillez nous contacter.",or:"ou",password:"Mot de passe",login:{errorAccountNotExist:"Vous n'avez pas de compte sur cette plateforme, veuillez créer un compte et réessayer.",errorInvalidLoginCredentials:"Les informations d'identification fournies ne correspondent à aucun de nos comptes d'utilisateur. Cette divergence peut être due à une erreur d'email ou de mot de passe, à l'absence de compte associé à l'email saisi ou à la possibilité que l'email soit lié à une autre méthode de connexion (telle que Google). Veuillez vérifier vos informations et réessayer ou créer un compte si nécessaire.",errorNeedEmailVerification:"Vous devez vérifier votre email avant d'essayer de vous connecter sur notre plateforme. Veuillez vérifier vos emails (et votre dossier spam) pour trouver l'email. Si vous ne le trouvez pas, réinitialisez votre mot de passe.",noAccountYet:"Pas encore de compte ?",rememberMe:"Se souvenir de moi",welcomeBack:"Bienvenue, veuillez vous connecter à votre compte.",dialog:{alreadyLoggedInText:"Vous êtes déjà connecté."},metaInfo:{title:"Plateforme - Connexion"},notify:{newAccessRight:{title:"Nouveaux droits d'accès",text:"Vous avez été déconnecté automatiquement parce que vous avez reçu de nouveaux droits d'accès qui nécessitent une nouvelle connexion pour être validés."},registrationSuccess:{title:"Succès de l'inscription",text:"Inscription réussie, nous vous avons envoyé un message pour valider votre adresse e-mail, vérifiez votre boîte de réception!"},requiresRecentLogin:{title:"Réauthentification requise",text:"Pour poursuivre cette action, veuillez vous connecter à nouveau car votre session a expiré. Une fois réauthentifié, vous pourrez réessayer l'action."},unexpectedError:{title:"Erreur inattendue",text:"Une erreur inattendue s'est produite. Veuillez vous reconnecter. Si le problème persiste, contactez le service d'assistance pour obtenir de l'aide."}}},login2fa:{enterCode:"Veuillez saisir le code à 6 chiffres de votre application d'authentification.",incorrectCode:" Le code n'est pas correct. Veuillez réessayer.",title:"Authentification à 2 facteurs",verify:"Vérifier",verifying:"Vérification ..."},register:{alreadyRegistered:"Déjà inscrit?",createAccount:"Créer un compte",errorAlreadyEmailAndPasswordRegister:"Vous avez déjà un compte avec cette adresse électronique. Veuillez vous connecter à votre compte.",errorAlreadyGoogleRegister:"Vous êtes déjà inscrit avec ce compte Google. Veuillez vous connecter avec ce compte.",errorAlreadyMicrosoftRegister:"Vous êtes déjà inscrit avec ce compte Microsoft. Veuillez vous connecter avec ce compte.",fillBelowForm:'Remplissez le formulaire ci-dessous pour créer un nouveau compte. Les champs marqués d\'un <span class="text-danger">*</span> sont obligatoires.',registerWith:"S'inscrire avec: ",form:{agreeAdvertisementOnly:"J'accepte explicitement que toutes les informations fournies sur cette plateforme le sont uniquement à des fins d'information et de publicité et ne doivent pas être interprétées comme une offre, un conseil ou une recommandation d'acheter ou de vendre un titre particulier ou de conclure une quelconque transaction.",certifyAdult:"Je certifie que j'ai 18 ans ou plus.",company:"Entreprise",confirmPassword:"Confirmer le mot de passe",email:"Email",firstName:"Prénom",investorProfileCountry:"Pays",investorProfileType:"Type d'investisseur",lastName:"Nom de famille",needAgree:"Vous devez accepter",phone:"Téléphone",privacyPolicy:"politique de confidentialité",registeringAccept:"En vous inscrivant, vous acceptez nos {0} et {1}.",termsOfUse:"conditions d'utilisation"},dialog:{alreadyLoggedInText:"Vous êtes déjà connecté."},metaInfo:{title:"Platform - Inscription"}},register2fa:{generatingQrCode:"Générer le code QR ...",incorrectCode:"Le code n'est pas correct. Veuillez réessayer.",need2fa:'Pour accéder à la plateforme, veuillez configurer l\'authentification à 2 facteurs (2FA). Scannez le code QR ci-dessous ou entrez la clé secrète fournie dans une application d\'authentification, telle que "Google Authenticator" ou "Microsoft Authenticator"',title:"Configurer l'authentification à 2 facteurs",verify:"Vérifier",verifying:"Vérification ..."},resetPassword:{title:"Réinitialiser le mot de passe",sendEmail:"Envoyer un email",dialog:{internalErrorText:"Une erreur interne s'est produite. Veuillez nous contacter.",resetEmailSent:{title:"Email de réinitialisation envoyé",text:e=>`Un email de réinitialisation a été envoyé à la boîte de réception de ${e.named("email")}. S'il n'apparaît pas rapidement, vérifiez la boîte à spam.`},unknownEmail:{title:"L'email n'existe pas.",text:"L'email que vous avez fourni pour réinitialiser le mot de passe n'existe pas. Pour créer un compte avec cet email, allez à la page d'inscription."}},metaInfo:{title:"Plateforme - Réinitialiser le mot de passe"}}},compliance:{investorProfile:{agreeAndConfirmSelection:"Accepter et confirmer la sélection",byClickingAcceptDisclaimer:"En cliquant sur le bouton ci-dessous, je confirme que j'ai lu et accepté la clause de non-responsabilité ci-dessus et que je suis d'accord avec la {0} et les {1} de cette plateforme.",pleaseChooseProfile:"Veuillez choisir votre pays de domicile et votre profil d'investisseur pour continuer.",privacyPolicy:"politique de confidentialité",termsOfUse:"conditions d'utilisation",title:"Profil d'investisseur",metaInfo:{title:"Plateforme - Profil d'investisseur"}},ombudsman:{title:"Médiateur",metaInfo:{title:"Plateforme - Médiateur"}},privacyPolicy:{endDate:"Crissier, 31 août 2023",title:"Politique de confidentialité",metaInfo:{title:"Plateforme - Politique de confidentialité"},introductionParagraph:{title:"Introduction",para1:"Alquant SA (ci-après dénommée Alquant, 'nous', 'notre') est la société qui exploite cette plateforme. Alquant SA respecte la vie privée des utilisateurs de sa présence sur le web. Cela signifie que les données personnelles sont collectées, traitées et utilisées conformément aux dispositions du droit applicable en matière de protection des données et sur la base de la présente politique de confidentialité.",para2:"Ceci s'applique également - et en particulier - à la coopération avec les partenaires et les tiers auxquels nous faisons appel pour le traitement des contrats.",para3:"En acceptant la politique de confidentialité suivante, vous consentez aux processus de traitement des données d'Alquant détaillés ci-dessous concernant la collecte, le traitement et l'utilisation des données conformément aux lois sur la protection des données et aux dispositions suivantes. Ce consentement peut être révoqué à tout moment avec effet futur.",para4:"Notre pratique en matière de protection des données est donc conforme à la nouvelle loi fédérale sur la protection des données (nFADP) et, le cas échéant, au règlement général sur la protection des données (RGPD) de l'UE."},accountableAuthorityParagraph:{title:"Autorité responsable / Représentant de l'UE",switzerland:"Suisse",euRepresentativeSub:{title:"Représentant de l'UE",para1:"Dans les cas visés à l'article 3, paragraphe 2, du règlement (UE) 2016/679 (règlement général sur la protection des données ; RGPD) et conformément à l'article 27 du RGPD en tant que représentant dans l'UE est désigné et en référence à l'exigence suisse nFADP d'une fonction de délégué à la protection des données:",para3:"Vous pouvez joindre notre représentant UE à l'adresse suivante : info(at)alquant.com"},accountableAuthoritySub:{email:"Email",phone:"Téléphone",title:"Autorité responsable et fonction de protection des données selon le PFDA suisse",para1:"La responsabilité du traitement des données à caractère personnel incombe à:",para3:"Pour toute demande relative à la protection de vos informations personnelles, veuillez contacter notre responsable de la protection de la vie privée à l'adresse suivante: compliance(at)alquant.com."}},personalDataParagraph:{title:"Données personnelles",para1:"Les données personnelles sont toutes les informations relatives à une personne physique identifiée ou identifiable ; une personne physique est considérée comme identifiable si elle peut être identifiée directement ou indirectement, notamment par référence à un identifiant tel qu'un nom, un numéro d'identification, des données de localisation, un identifiant en ligne ou une ou plusieurs caractéristiques particulières exprimant l'identité physique, physiologique, génétique, mentale, économique, culturelle ou sociale de cette personne physique. Il s'agit, par exemple, de votre nom, de votre numéro de téléphone, de votre adresse, ainsi que de toutes les données d'inventaire que vous nous fournissez lors de l'inscription et de la création de votre compte client. Les données statistiques ou les données anonymes, que nous collectons par exemple lorsque vous visitez notre boutique en ligne et qui ne peuvent pas être directement liées à votre personne, ne sont pas couvertes ici."},purposeOfDataCollectionParagraph:{title:"Objectifs de la collecte de données",para1:"a) La collecte et le traitement de ces données sont effectués dans le but de respecter le contrat, de permettre l'utilisation de notre site Internet (établissement de la connexion), d'assurer en permanence la sécurité et la stabilité du système, d'optimiser notre présence sur Internet et à des fins statistiques internes. Nous collectons, enregistrons et traitons les données personnelles uniquement dans le respect des dispositions légales applicables et dans la mesure où cela est à la fois nécessaire et requis pour remplir et améliorer les obligations d'exécution contractuelles entre nous et l'utilisateur / le client. Cela inclut également le stockage des données pour d'éventuelles demandes de garantie après la fin du contrat.",para2:"b) En outre, nous utilisons vos données dans le cadre du droit applicable à nos propres fins de marketing afin d'optimiser notre présence sur le web et d'attirer votre attention sur des services qui pourraient vous intéresser particulièrement.",para3:"c) En outre, la collecte, le traitement et l'utilisation des données personnelles n'ont lieu que si vous avez donné votre consentement."},newsletterParagraph:{title:"Newsletter",para1:"Alquant aime vous informer régulièrement sur les sujets et projets actuels autour de notre domaine d'activité via la newsletter. Vous recevrez une newsletter de notre part uniquement sur demande expresse. Nous utilisons le processus d'opt-in pour l'envoi de la newsletter, ce qui signifie que vous recevrez notre newsletter par email à condition que vous vous soyez préalablement inscrit explicitement à l'envoi de la newsletter. Lorsque vous vous êtes inscrit à la newsletter, votre adresse email sera utilisée, avec votre consentement, à nos propres fins promotionnelles jusqu'à ce que vous vous désinscriviez de la newsletter. Vous pouvez vous désabonner à tout moment en envoyant un email le précisant à notre adresse de contact info(at)alquant.com. Nous avons le droit de mandater des tiers pour le traitement technique des activités promotionnelles et sommes autorisés à transmettre vos données à cette fin.",para2:"Les données que vous avez fournies lors de votre inscription à la newsletter (nom et email) seront stockées et utilisées uniquement pour l'envoi de la newsletter."},legalBasisParagraph:{title:"Base légale pour le traitement",para1:"Nous traitons vos données personnelles principalement pour remplir des obligations contractuelles et nos obligations légales. En outre, en acceptant cette politique de confidentialité, vous consentez à toutes les opérations de traitement spécifiées dans cette politique de confidentialité. Bien entendu, vous pouvez révoquer votre consentement à tout moment ; une déclaration à compliance(at)alquant.com est suffisante. Tout traitement effectué jusqu'à ce moment ne sera pas affecté par votre annulation."},legitimateInterestParagraph:{title:"Intérêts légitimes pour le traitement",para1:"En plus de la base légale susmentionnée pour le traitement des données, nous traitons également les données sur la base de nos intérêts légitimes. Cela s'applique en particulier, mais sans s'y limiter, au traitement à des fins de marketing et de promotion. Nous poursuivons, en particulier, les intérêts suivants:",list1:{el1:"assurer l'utilisation potentielle du site web",el2:"prévenir la fraude",el3:"assurer la sécurité et la stabilité des systèmes informatiques",el4:"nos propres objectifs de marketing",el5:"des objectifs statistiques internes"}},disclosureParagraph:{title:"Divulgation",para1:"Nous ne divulguons vos données personnelles que si vous avez donné votre consentement explicite, s'il existe une obligation légale de le faire ou si cela est nécessaire pour faire valoir nos droits - en particulier pour faire valoir les droits découlant de la relation contractuelle. En outre, nous communiquons vos données à des tiers, dans la mesure où cela est nécessaire à l'exécution du contrat. À cette fin, nous communiquons les données requises à des filiales, des entreprises de transport, des banques et d'autres prestataires de services. Ces prestataires de services utilisent vos données exclusivement pour le traitement des commandes et non à d'autres fins. En outre, nous utilisons certains services fournis par des prestataires externes pour optimiser votre visite sur notre site web. Il est garanti (contractuellement) que ces prestataires de services traitent vos données de manière confidentielle et conformément aux dispositions légales applicables, et que vos données ne sont utilisées qu'aux fins du service respectif. Tout transfert ou revente des données à des tiers par Alquant au-delà des dispositions de la présente politique de confidentialité est exclu, sauf si l'utilisateur a donné son consentement explicite à la divulgation de ses données. Dans ce cas, l'utilisateur peut révoquer ce consentement à tout moment. Les opérations de traitement effectuées précédemment sur la base de votre consentement ne seront pas affectées.",para2:"Alquant est en droit de transmettre vos données personnelles à des tiers à l'étranger si cela est nécessaire à l'exécution du contrat. Ces tiers sont tenus de respecter le même niveau de protection des données que le fournisseur. Si le niveau de protection des données dans un pays ne correspond pas au niveau suisse, nous garantissons contractuellement que la protection de vos données personnelles correspond en tout temps à celle de la Suisse."},singleSignOnProcedureParagraph:{title:"Utilisation de procédures d'authentification unique",para1:"Sur notre site web, si vous disposez d'un profil Google ou Microsoft, vous pouvez vous inscrire pour créer un compte client ou vous enregistrer à l'aide du plugin social en utilisant la procédures d'authentification unique. Les plugins sont marqués du logo du fournisseur.",para2:"Lorsque vous appelez nos sites web qui contiennent un tel plugin, votre navigateur établit une connexion directe avec les ordinateurs du fournisseur. Le contenu du plugin est transmis par le site du fournisseur directement à votre navigateur, qui l'intègre au site web. En intégrant les plugins, le fournisseur reçoit l'information que vous avez appelé notre site web. Si vous êtes simultanément connecté au fournisseur, ce dernier peut attribuer la visite à votre profil.",para3:"Si vous ne souhaitez pas que le fournisseur collecte des données vous concernant via notre site web, vous devez vous déconnecter du fournisseur avant de visiter notre site web. Même si vous êtes déconnecté, les fournisseurs collectent des données anonymes via des plugins sociaux qui créent un cookie pour vous. Si vous vous connectez ultérieurement au fournisseur, ces données peuvent être attribuées à votre profil.",para4:"Si une connexion est fournie via un service de connexion sociale - Ex. Google Connect - des données sont échangées entre le fournisseur et notre site web. Dans le cas de Google Connect, il peut s'agir, par exemple, de données provenant de votre profil Google public. En utilisant de tels services de connexion, vous acceptez le transfert de données.",para5:"Veuillez consulter les avis de protection des données du fournisseur pour connaître l'objectif, l'étendue de la collecte des données et le traitement ultérieur de vos données par le fournisseur, ainsi que vos droits respectifs et les options de configuration pour protéger votre vie privée.",para7:"Si vous ne souhaitez pas que le fournisseur collecte des données vous concernant via ces cookies, vous pouvez sélectionner la fonction \"bloquer les cookies des fournisseurs tiers\" dans les paramètres de votre navigateur. Ensuite, s'il y a du contenu intégré provenant d'autres fournisseurs, le navigateur n'envoie pas de cookies au serveur."},durationOfRetentionParagraph:{title:"Durée de la rétention",para1:"Nous conservons vos données personnelles aussi longtemps que nécessaire pour nous conformer aux lois applicables, ou que nous jugeons approprié, ou encore aussi longtemps qu'elles sont nécessaires aux fins pour lesquelles elles ont été collectées. Nous bloquerons ou supprimerons vos données personnelles dès qu'elles ne seront plus nécessaires et définitivement à l'expiration de la période de conservation maximale légale.",para2:"Vous pouvez demander à tout moment la suppression de vos données personnelles en nous envoyant une demande correspondante à compliance(at)alquant.com. Nous nous conformerons rapidement à votre demande, à condition que nous ne soyons pas tenus de les conserver pour d'autres raisons ou que nous en ayons besoin, par exemple pour faire valoir des droits."},furtherDataSourcesParagraph:{title:"Autres sources de données",para1:"Outre les données que nous recueillons directement auprès de vous, nous obtenons également des données de registres publics (tels que le registre du commerce) et de fournisseurs tiers.",para2:"Comme les sources de données varient selon les clients, aucune information générale ne peut être donnée sur ces sources. Si vous le souhaitez, nous sommes bien entendu disposés à vous divulguer nos sources de données en détail."},userRightsParagraph:{title:"Droits des utilisateurs",rightRevocationSub:{title:"Droit de révocation",para1:"Dans la mesure où vous nous avez donné votre accord pour collecter, stocker et utiliser des données personnelles en rapport avec le site web ou nos services, vous pouvez révoquer cet accord à tout moment. La révocation peut être envoyée par e-mail ou par écrit au contact mentionné ci-dessus dans la section 2 : Autorité responsable. Les effets de la révocation sont limités au stockage et à l'utilisation des données personnelles, qui ne peuvent être stockées et utilisées sans votre consentement préalable fondé sur une autorisation légale. La révocation n'a également aucun effet sur les procédures de traitement antérieures effectuées sur la base du consentement."},furtherRightsSub:{title:"Droits supplémentaires",informationSub:{title:"Information",para1:"Sur demande écrite, nous vous donnerons à tout moment des informations sur vos données personnelles enregistrées. La demande de renseignements doit être faite par écrit et accompagnée d'une preuve d'identité (copie de la carte d'identité, du passeport ou d'un autre document d'identification officiel). L'exercice de ce droit est gratuit une fois par an ; pour toute autre demande, nous nous réservons le droit de facturer les frais encourus."},correctionSub:{title:"Correction, suppression, restriction du traitement",para1:"En outre, vous avez la possibilité de faire corriger, bloquer ou supprimer vos données personnelles à tout moment. Veuillez contacter l'autorité interne, dont les coordonnées figurent à la section 2. Sont exclues de l'effacement uniquement les données dont nous avons besoin pour l'exécution de tâches en suspens ou pour faire valoir des droits et des prétentions existants, ainsi que les données que nous sommes tenus de conserver en raison de dispositions légales. Ces données seront bloquées."},rightAppealSub:{title:"Droit de recours",para1:"Nous attachons une grande importance à la sauvegarde des droits de nos clients et donc aussi à la protection de vos données personnelles. Néanmoins, si vous estimez que nous traitons vos données de manière illégale, vous pouvez nous contacter à tout moment au +41 41 661 23 45 ou par e-mail compliance(at)alquant.com en précisant votre problème. Nous répondrons à vos préoccupations au mieux de nos capacités.",para2:"Si, contrairement à ce que vous attendiez, notre service clientèle ne peut vous fournir une assistance satisfaisante, vous pouvez à tout moment soumettre votre problème au contrôleur fédéral de la protection des données sous la forme d'une plainte formelle, qui fera l'objet d'une enquête."},dataPortabilitySub:{title:"Portabilité des données",para1:"Sur demande écrite, vous avez également le droit de recevoir les données personnelles vous concernant dans un format structuré, courant et lisible par machine (fichier pdf) pour les transmettre à un tiers. Nous nous réservons le droit de facturer les frais encourus."}}},cookiesParagraph:{title:"Utilisation des cookies",para1:"Pour améliorer notre gamme de produits, nous utilisons des cookies sur notre site web. Un cookie est un petit fichier texte qui est transféré sur votre ordinateur lorsque vous naviguez sur nos pages. Un cookie peut uniquement contenir des informations que nous envoyons à votre appareil électronique - ils ne peuvent pas être utilisés pour lire des données personnelles. Si vous acceptez les cookies sur notre site, nous n'avons pas accès à vos informations personnelles mais, grâce aux cookies, nous pouvons identifier votre ordinateur. Aucune donnée personnelle n'est stockée dans les cookies utilisés, de sorte que nous ne pouvons pas tirer de conclusions sur votre identité au moyen de la technologie des cookies. Seules des informations pseudonymisées sont générées.",para2:"Nous utilisons des cookies pour vérifier que vous respectez nos conditions d'utilisation.",para3:"Nous utilisons des cookies temporaires, basés sur la session : ils ne restent pas sur votre ordinateur. Lorsque vous quittez nos pages, le cookie temporaire est également supprimé. Grâce aux informations recueillies, nous pouvons analyser les modes d'utilisation et les structures de notre site web et l'optimiser en améliorant le contenu ou la personnalisation et en simplifiant l'utilisation.",para4:"En outre, nous utilisons des cookies persistants : ils restent sur votre ordinateur pour simplifier les services d'achat, de personnalisation et d'enregistrement lors de votre prochaine visite. Par exemple, ces cookies peuvent enregistrer ce que vous avez choisi d'acheter pendant que vous poursuivez vos achats. De même, vous ne devez saisir votre mot de passe qu'une seule fois sur les pages web qui nécessitent une connexion. Les cookies persistants peuvent être supprimés manuellement par l'utilisateur. Ils s'effacent d'eux-mêmes au bout d'un certain temps.",para5:"Des cookies sont également utilisés par certains de nos partenaires publicitaires (cookies tiers). Ces cookies nous aident à adapter notre site aux besoins spécifiques de nos clients, par exemple en montrant des publicités qui pourraient réellement vous intéresser. L'utilisation de ces cookies nous permet de recueillir des informations sur les produits que vous avez consultés ou recherchés ou sur les pages que vous avez visitées précédemment. Ces cookies sont stockés sur votre disque dur et s'effacent après un certain temps. Aucune information personnelle n'est également stockée dans les cookies utilisés par nos partenaires publicitaires. L'utilisation est pseudonymisée afin qu'aucune conclusion ne soit tirée sur votre identité.",para6:"La plupart des navigateurs (tels que Firefox, Chrome, Internet Explorer, Safari, etc.) acceptent les cookies par défaut. Vous pouvez autoriser ou bloquer les cookies temporaires et persistants dans les paramètres de sécurité - indépendamment les uns des autres. Nous attirons toutefois votre attention sur le fait que certaines fonctionnalités ne sont pas disponibles sur notre site web et que certains sites web peuvent ne pas s'afficher correctement si vous désactivez les cookies.",para7:"Les données stockées dans nos cookies ne seront pas liées à vos données personnelles (nom, adresse, etc.) sans votre consentement explicite."},liabilityForLinksParagraph:{title:"Responsabilité pour les liens",para1:"Alquant déclare expressément par la présente qu'au moment de la création des liens, aucun contenu illégal n'était identifiable sur les pages à lier. Nous n'avons aucune influence sur la conception actuelle et future, le contenu ou la paternité des pages liées. C'est pourquoi nous nous distançons expressément par la présente de tous les contenus de toutes les pages liées qui ont été modifiées après la mise en place du lien. Cette déclaration s'applique à tous les liens et références de notre site Internet. En ce qui concerne les contenus illégaux, erronés ou incomplets et, en particulier, les dommages résultant de l'utilisation ou de la non-utilisation de telles informations, seul le fournisseur de la page à laquelle il a été fait référence est responsable et non celui qui se contente d'établir un lien vers la publication concernée."},webAnalysisParagraph:{title:"Analyse web",googleAnalyticsSub:{title:"Google Analytics",para1:"Ce site Web utilise Google Analytics, un service d'analyse Web fourni par Google Inc. (Google) pour la conception de sites Web en fonction des besoins. Nous ne recevons que des évaluations de données, sans références personnelles.",para2:"Google Analytics utilise des cookies : des fichiers texte qui sont stockés sur votre ordinateur et qui permettent d'analyser votre utilisation du site web. Les informations générées par les cookies concernant votre utilisation du présent site web (y compris votre adresse IP) sont transmises et stockées sur les serveurs de Google aux États-Unis. L'anonymisation IP a été activée sur ce site web de sorte que l'adresse IP des utilisateurs de Google dans les États membres de l'Union européenne ou dans d'autres États contractants de l'accord sur l'Espace économique européen est tronquée avant la transmission. Ce n'est que dans des cas exceptionnels que l'adresse IP complète sera envoyée à un serveur de Google aux États-Unis et y sera tronquée. Google utilisera ces informations pour le compte de l'exploitant du site Internet afin d'évaluer l'utilisation du site par les utilisateurs, de compiler des rapports sur l'activité du site et de fournir à l'exploitant du site d'autres services liés à l'activité du site et à l'utilisation d'Internet. Google transmettra également ces informations à des tiers si la loi l'exige ou si des tiers traitent ces données pour le compte de Google. Google n'associera jamais votre adresse IP à d'autres données de Google.",para3:"Vous pouvez empêcher l'installation des cookies en paramétrant votre logiciel de navigation en conséquence. Nous attirons toutefois votre attention sur le fait que, dans ce cas, vous ne pourrez peut-être pas utiliser pleinement toutes les fonctions de ce site Internet. En utilisant ce site Web, vous consentez au traitement des données collectées sur vous par Google de la manière et aux fins décrites ci-dessus.",para4:"En outre, vous pouvez empêcher Google de collecter les données générées par les cookies et liées à votre utilisation du site (y compris votre adresse IP) et le traitement de ces données par Google en téléchargeant et en installant le plugin de navigateur disponible à l'adresse suivante <a href=\"https://tools.google.com/dlpage/gaoptout\" >https://tools.google.com/dlpage/gaoptout</a >. Pour plus d'informations sur les conditions d'utilisation et les règles de confidentialité de Google Analytics, consultez",para5:'<a href="https://www.google.com/analytics/terms/" >https://www.google.com/analytics/terms/</a > et',para6:'<a href="https://policies.google.com/privacy?hl=en" >https://policies.google.com/privacy?hl=en</a >'},googleFontsSub:{title:"Google Fonts",para1:'Ce site web utilise également Google Fonts (Open Scans). Pour des raisons techniques, votre adresse IP doit être transmise à Google afin que les polices puissent être transférées à votre navigateur. Pour plus d\'informations sur Google Fonts, consultez <a class="break-all" href="https://developers.google.com/fonts/faq#what_does_using_the_google_fonts_api_mean_for_the_privacy_of_my_users" >https://developers.google.com/fonts/faq#what_does_using_the_google_fonts_api_mean_for_the_privacy_of_my_users</a > .'}},securityMeasureParagraph:{title:"Mesures de sécurité",para1:"Nous appliquons des mesures de sécurité techniques et organisationnelles pour protéger de manière appropriée vos informations personnelles contre tout accès non autorisé, abus, manipulation accidentelle ou intentionnelle, perte ou destruction. Afin de protéger votre vie privée, nous utilisons une connexion sécurisée pour notre site web, ce que vous pouvez constater par la mention 'https' (https signifie Hypertext Transfer Protocol Secure) au tout début de la barre d'adresse de votre navigateur. De cette manière, la connexion est cryptée via SSL/TSL et vos données ne peuvent pas être interceptées par des tiers. Les mesures de sécurité techniques visant à protéger vos données personnelles sont régulièrement vérifiées et, si nécessaire, mises à jour. Ces principes s'appliquent également aux entreprises qui traitent et utilisent les données personnelles en notre nom et conformément à nos instructions."},legalBasisGeneralDataProtectionParagraph:{title:"Base légale règlement général sur la protection des données",para1:"Conformément aux dispositions du Règlement général sur la protection des données (RGPD) applicable à partir du 25 mai 2018, nous vous informons que votre consentement à l'envoi à l'adresse électronique que vous fournissez sera donné sur la base de l'art. 6 para. 1 lit. a et de l'art. 7 GDPR. La liste d'envoi correspondante est utilisée sur la base de nos intérêts légitimes conformément à l'art. 6 para. 1 lit. f du GDPR. Nous sommes intéressés par l'utilisation d'un site web et d'un système convivial et sécurisé qui sert nos intérêts commerciaux mais répond également aux attentes de nos utilisateurs et clients."},changesParagraph:{title:"Changements",para1:"Nous nous réservons le droit de modifier cette politique de confidentialité à tout moment. La politique de confidentialité ne constitue pas une relation contractuelle ou autre relation juridique formelle avec ou au nom d'une quelconque partie."}},termsOfUse:{endDate:"Crissier, 3 février 2022",title:"Conditions d'utilisation",metaInfo:{title:"Plateforme - Conditions d'utilisation"},declarationOfAcceptanceParagraph:{title:"Déclaration d'acceptation par l'utilisateur",para1:"Ce site web est exploité par Alquant SA. En utilisant ce site web (ou une page détournée vers cette adresse web, ci-après dénommée \"site web d'Alquant\"), vous confirmez que vous avez lu, compris et accepté les conditions d'utilisation suivantes, y compris les conditions juridiques. Si vous n'acceptez pas ces conditions d'utilisation, veuillez ne plus visiter le site web d'Alquant."},limitedAccessParagraph:{title:"Accès restreint",para1:"Le site Internet d'Alquant n'est pas destiné aux personnes morales et physiques qui, en raison de leur nationalité, de leur siège social, de leur lieu de résidence ou pour toute autre raison, sont soumises à un système juridique qui interdit ou restreint notamment",list1:{el1:"la publication des contenus,",el2:"accès au site web d'Alquant,",el3:"les activités d'un prestataire de services financiers étranger,",el4:"l'admission de produits financiers (ex. certificats ou fonds)."},para3:"En outre, il n'est pas destiné à être utilisé par des personnes morales ou physiques dans des pays où Alquant SA ou toute société qui lui est associée ne dispose pas de l'enregistrement et de l'autorisation nécessaires pour opérer.",para4:"Les personnes qui sont soumises à l'une ou à l'ensemble de ces restrictions ne peuvent pas accéder au site Web d'Alquant. Cela s'applique en particulier aux citoyens des États-Unis, du Royaume-Uni, du Canada, du Japon, de la Chine et de Singapour, ou aux personnes résidant dans les pays susmentionnés. Veuillez vous renseigner sur les restrictions légales correspondantes dans votre pays.",para5:"Avis pour les investisseurs institutionnels",para6:"Les produits financiers destinés aux investisseurs professionnels ne sont disponibles que pour les investisseurs qualifiés. Aux termes de l'art. 10, al. 3, de la loi sur les placements collectifs de capitaux ainsi que de l'art. 6 de l'Ordonnance sur les placements collectifs de capitaux, les investisseurs qualifiés comprennent les investisseurs institutionnels ayant une trésorerie professionnelle, à savoir les banques et les négociants en valeurs mobilières (y compris leurs clients ayant un contrat écrit de gestion de fortune), les caisses de pension, les compagnies d'assurance, les directions de fonds et les autorités communales et cantonales, ainsi que les entreprises industrielles et commerciales. En sélectionnant \"Investisseurs professionnels\", vous confirmez que vous êtes un investisseur qualifié selon la définition donnée ci-dessus."},propertyRightsParagraph:{title:"Droits de propriété",para1:"Tous les éléments du site Internet d'Alquant sont protégés en tant que propriété incorporelle et sont détenus par Alquant SA ou par des tiers. L'utilisation du site Internet d'Alquant n'entraîne le transfert d'aucun droit, en particulier aucun droit relatif aux logiciels, aux marques ou aux éléments du site Internet d'Alquant. Les indications de copyright et les noms de marque ne peuvent pas être modifiés ou supprimés. Les éléments du site Internet d'Alquant ne peuvent être reproduits dans leur intégralité ou en partie sans référence à la source complète. Le contenu du site Web d'Alquant ne peut être reproduit ou utilisé à des fins publiques ou commerciales sans l'accord écrit préalable d'Alquant SA."},consultingReplacementParagraph:{title:"Ne remplace pas la consultation",para1:"Les informations et opinions publiées sur le site d'Alquant sont de nature générale. Elles ne sont ni destinées ni adaptées pour remplacer une consultation individuelle par un personnel spécialisé qui prendra en compte les circonstances réelles prévalant dans un cas individuel donné. Pour cette raison, ils ne représentent pas un conseil juridique, fiscal, financier, économique ou autre et ne peuvent être utilisés comme une aide à l'investissement."},noOffersParagraph:{title:"Aucune offre",para1:"Les informations et les opinions publiées sur le site web d'Alquant ne constituent pas une publicité ou des recommandations et ne doivent pas être interprétées comme une demande, une offre ou une invitation à soumettre une offre:",list1:{el1:"pour l'acquisition ou la vente d'outils d'investissement,",el2:"pour effectuer toutes sortes de transactions,",el3:"pour accomplir tout autre type d'activité légale."},para3:"Le site Internet d'Alquant a pour unique objet de fournir des informations."},futurePerformanceParagraph:{title:"Performance future (indication du risque)",para1:"La performance future d'un outil d'investissement ne peut être déduite de l'évolution passée du taux, c'est-à-dire que le titre peut monter ou descendre. Le comportement du titre dans le passé n'est donc pas une garantie pour sa valeur future. Dans le cas de certains outils d'investissement, la perte de la totalité du capital investi est également possible dans des cas extrêmes. En outre, les fluctuations des taux de change peuvent également affecter l'investissement."},noGuaranteeParagraph:{title:"Aucune garantie",para1:"Alquant SA n'offre aucune garantie (y compris la responsabilité envers les tiers) ni assurance pour",list1:{el1:"l'actualité, la précision, la fiabilité ou l'exhaustivité du contenu du site Web d'Alquant,",el2:"les résultats obtenus en utilisant le site web d'Alquant,",el3:"les contenus de tiers qui se trouvent sur le site web d'Alquant ou qui sont accessibles via celui-ci."},para3:"En outre, Alquant SA ne peut être tenue pour responsable et ne peut garantir que",list2:{el1:"les fonctions du site web d'Alquant fonctionnent sans défaut et sont disponibles sans interruption,",el2:"le site Web d'Alquant et les autres composants utilisés pour accéder au site Web d'Alquant sont exempts de virus, etc.."},para5:"Alquant SA n'offre également aucune garantie pour",list3:{el1:"l'augmentation ou la stabilité de la valeur du capital investi dans les outils d'investissement,",el2:"le niveau des dividendes futurs."}},linksParagraph:{title:"Liens",para1:"Alquant SA n'a pas vérifié les sites web de tiers liés au site Web d'Alquant et ne peut être tenu responsable de l'actualité, de la précision, de la fiabilité, de l'exhaustivité ou de la légalité des contenus et des offres de ces sites web. L'utilisateur accède donc à ces pages web à ses propres risques.",para2:"Les liens web ne peuvent être inclus dans des sites web en dehors d'un site web d'Alquant qu'avec l'accord préalable d'Alquant SA."},serviceChangesParagraph:{title:"Changements de service",para1:"Alquant SA peut modifier, suspendre ou interrompre tout aspect des services à tout moment, y compris la disponibilité de toute fonction, base de données ou contenu des services. Alquant SA peut également imposer des limites sur certaines fonctions et services ou restreindre l'accès de l'utilisateur à tout ou partie des services sans préavis.",para2:"Alquant SA se réserve le droit, à sa seule discrétion, de mettre fin à l'accès de l'utilisateur aux services sans préavis."},useOfInformationParagraph:{title:"Utilisation de l'information",para1:"L'utilisateur peut utiliser les informations publiées sur le site Web d'Alquant uniquement pour un usage professionnel interne ou un usage personnel et non commercial. En aucun cas l'utilisateur ne doit publier, vendre, louer, diffuser, retransmettre, redistribuer, diffuser, faire circuler ou autrement reproduire, fournir ou permettre l'accès à toute information d'<b>Alquant SA</b> dans n'importe quel format à quiconque ; à condition, toutefois, que l'utilisateur puisse fournir des informations aux utilisateurs, sur une base non continue, en utilisant uniquement les méthodes limitées suivantes : (a) dans les publicités écrites, la correspondance ou autre littérature, ou (b) au cours de conversations téléphoniques vocales ne comportant pas de voix informatisée, de systèmes de demande d'information automatisés ou de technologies similaires.",para2:"L'utilisation d'outils de script automatisés pour explorer le site ou tenter de contourner l'API est strictement interdite et peut entraîner le blocage du site web d'Alquant. Des demandes excessives peuvent entraîner un ralentissement de l'accès aux données de votre compte.",para3:"L'utilisation de formes d'automatisation non basées sur l'API, telles que le scriptage du site Web, est interdite. L'utilisation de ces techniques peut entraîner la suspension permanente de votre compte."},indemnificationParagraph:{title:"Indemnisation",para1:"L'utilisateur (et le fonds de l'utilisateur, si l'utilisateur est un représentant d'un fonds) accepte conjointement et solidairement d'indemniser et de dégager de toute responsabilité <b>Alquant SA</b>, et ses agents, fournisseurs d'informations et leurs agents, représentants, directeurs, officiers, actionnaires, partenaires, prédécesseurs, successeurs et assignés, de et contre toute réclamation ou demande, procédure, dommages, responsabilités, pertes ou dépenses, de réclamations faites par un tiers, résultant de l'utilisation par l'utilisateur des informations de <b>Alquant SA</b> qui constitue une violation des conditions d'utilisation ou un acte inapproprié ou une omission.",para2:"Si un utilisateur fait usage des services ou de tout contenu autrement que de la manière expressément autorisée par les présentes conditions d'utilisation, il risque de violer les droits d'auteur et d'autres lois et peut être soumis à des sanctions. Sans limiter les phrases précédentes, l'utilisateur ne doit pas:",para3:"S'engager dans ou permettre la revente, l'affichage, la reproduction, la copie, la traduction, la modification, l'adaptation, la création d'œuvres dérivées, la distribution, la transmission, le transfert, la republication, la compilation, la décompilation ou l'ingénierie inverse des services, de tout contenu, de toute partie de celui-ci, ou de toute donnée, de tout autre contenu ou information fournis à l'utilisateur en relation avec l'utilisation des services par Alquant SA ou l'une de ses sources tierces, sous toute forme, média ou technologie existant actuellement ou développé ultérieurement ou sur tout réseau, y compris un réseau local ; supprimer, masquer ou modifier tout avis, clause de non-responsabilité ou autre divulgation apposé sur ou contenu dans les services, y compris tout avis de droit d'auteur, marque de commerce ou autre avis de droits de propriété ou tout autre avis juridique apposé sur ou affiché en association avec le contenu; créer un cadre ou utiliser des techniques de cadrage pour enfermer toute partie des services ou du contenu, sans le consentement écrit préalable exprès de Alquant SA;",para4:"usurper l'identité d'une personne, ou déclarer faussement ou représenter faussement son affiliation avec une personne, en relation avec toute utilisation des services ; violer ou tenter de violer la sécurité des services ou de tout réseau, serveurs, données, ou ordinateurs ou autre matériel relatif ou utilisé en relation avec les services ou tout contenu, qu'ils soient ou non exploités par Alquant SA ou un tiers; ni utiliser avec les services ou distribuer par leur intermédiaire tout logiciel ou autre outil ou dispositif conçu pour interférer ou compromettre la confidentialité, la sécurité ou l'utilisation des services par d'autres ou les opérations ou les actifs de toute personne;",para5:"violer toute loi applicable, y compris, mais sans s'y limiter, les lois sur les valeurs mobilières et les lois régissant l'activité d'investissement dans tout pays ; restreindre ou empêcher tout autre utilisateur autorisé d'utiliser et de profiter des services ; afficher, publier, transmettre, reproduire, distribuer ou exploiter de quelque manière que ce soit tout contenu ou toute autre information ou tout autre matériel obtenu par le biais des services à des fins commerciales autres que celles expressément autorisées par les présentes conditions d'utilisation ou par une autorisation préalable expresse de Alquant SA."},exclusionLiabilityParagraph:{title:"Exclusion de la responsabilité",para1:"Alquant SA ou toutes les sociétés, partenaires, conseils d'administration, employés ou représentants qui lui sont liés refusent toute responsabilité (y compris pour négligence et envers les tiers) pour les dommages directs ou indirects ou les dommages consécutifs qui peuvent survenir en relation directe ou indirecte avec l'utilisation du site web d'Alquant."},reservationsParagraph:{title:"Réserves",para1:"Alquant SA se réserve le droit de modifier toute information, opinion, performance ou autre donnée, lien, etc. à tout moment sans préavis aux utilisateurs.",para2:"En outre, les conditions d'utilisation peuvent également être modifiées et l'utilisation du site web d'Alquant peut également être limitée ou résiliée sans préavis."},placeOfJurisdictionParagraph:{title:"Lieu de juridiction",para1:"Dans la mesure où une situation juridique se présente entre Alquant SA et les utilisateurs du site Web d'Alquant, elle est soumise à la législation suisse. Le seul lieu de juridiction est Lausanne, Suisse."}}},errors:{backHome:"Retour à l'accueil",error403:{paragraphWhenLoggedIn:"Vous n'avez pas la permission d'accéder à cette page. Si votre profil est accepté, un administrateur vous donnera bientôt les droits d'accès à cette page. Veuillez vérifier dans les 1-2 prochains jours ouvrables.",paragraphWhenLoggedInWithContact:e=>`Vous n'avez pas la permission d'accéder à cette page. Si votre profil est accepté, un administrateur vous donnera bientôt les droits d'accès à cette page. Veuillez vérifier dans les 1-2 prochains jours ouvrables. Si vous n'avez toujours pas reçu l'autorisation d'accès, veuillez nous contacter: ${e.named("contactEmail")}.`,paragraphWhenNotLoggedIn:"Pour accéder à cette page, vous devez vous authentifier. Veuillez cliquer sur le bouton ci-dessous pour vous connecter à votre compte. Si vous n'avez pas encore de compte, veuillez vous inscrire en cliquant sur le bouton ci-dessous.",title:"403 - Accès interdit",metaInfo:{title:"Plateforme - 403"}},error404:{paragraph:"La page à laquelle vous essayez d'accéder n'existe pas.",title:"404 - Page non trouvée",metaInfo:{title:"Plateforme - 404"}},unauthorizedInvestorProfile:{modifyInvestorProfile:"Modifier le profil d'investisseur",title:"Profil d'investisseur non autorisé",unfortunately:"Malheureusement, vous ne pouvez pas avoir accès à cette page en raison de votre profil d'investisseur.",metaInfo:{title:"Platform - Profil d'investisseur non autorisé"}}},help:{contact:{address:"Adresse",introText:"N'hésitez pas à utiliser ce formulaire pour entrer en contact avec nous. Nous serons heureux de vous faire part de vos suggestions ou de répondre à toutes vos questions concernant cette plateforme et nos produits.",recaptchaPrivacyPolicy:"Politique de confidentialité",recaptchaProtect:"Ce site est protégé par reCAPTCHA et les règles {0} et {1} de Google s'appliquent.",recaptchaTermsOfService:"Conditions d'utilisation",switzerland:"Suisse",title:"Contact",dialog:{confirmMessage:{title:"Confirmation",text:"Voulez-vous envoyer ce message?"}},form:{country:"Pays",email:"Email",enterMessage:"Saisissez votre message",exampleEmail:"john.doe@exemple.com",exampleName:"John Doe",investorProfileType:"Type d'investisseur",name:"Nom",sendEmail:"Envoyer un email"},metaInfo:{title:"Plateforme - Contact"},notify:{errorMessage:{title:"Erreur lors de l'envoi du message",text:"Désolé, le message n'a pas pu être envoyé. Réessayez plus tard ou contactez-nous directement par e-mail."},messageSent:{title:"Message envoyé",text:"Le message a été envoyé avec succès. Nous vous répondrons dans un délai de 1 à 2 jours ouvrables."}}},faq:{subtitle:"Vous trouverez dans la liste suivante toutes les questions les plus fréquemment posées.",title:"Vous avez des questions ?",metaInfo:{title:"Plateforme - FAQ"}},knowledgeBase:{investmentStrategyTechniques:"Techniques de stratégie d'investissement",metaInfoTerm:e=>`Base de connaissances - ${e.named("term")}`,noResults:"Aucun résultat trouvé.",performanceMetrics:"Mesures de la performance",search:"Recherche",source:"Source",subtitle:"Trouvez des explications sur des termes techniques généraux ainsi que sur certaines de nos techniques qui sont présentées sur cette plateforme.",title:"Bienvenue dans notre base de connaissances",alpha:{title:"Alpha",para1:"Le {0} est utilisé pour mesurer la performance supérieure qu'une stratégie ou que son gestionnaire est capable de générer par rapport à un benchmark. Le {1} décrit la performance après déduction des rendements sans risque et du rendement lié au marché (prime de marché * {2}).",para2:"Le graphique ci-dessus montre une valeur <span class=\"font-bold\">alpha</span> de 4 %, ce qui signifie que, compte tenu de la dépendance de la stratégie vis-à-vis du marché et de l'environnement actuel des taux d'intérêt (rendement sans risque), elle a pu générer une performance supplémentaire de 4 % par rapport à ce que l'on peut attendre.",para3:'Comme l\'indique le graphique ci-dessus, la composante <span class="font-bold">alpha</span> est le seul facteur de performance qui peut être attribué à la compétence du gestionnaire. En outre, il indique que l\'<span class="font-bold">alpha</span> peut devenir un nombre négatif, ce qui signifie que la performance a été perdue par la gestion active de l\'investissement. Cela dit, une composante <span class="font-bold">alpha</span> positive peut être considérée comme la composante pour laquelle un investisseur est prêt à payer des frais.',para4:"Plus l'alpha est élevé, meilleure est la stratégie. Un alpha élevé signifie que les asset managers ont réussi à créer de la valeur."},annualizedReturn:{title:"Rendement annualisé",para1:"<span class=\"font-bold\">Les rendements annualisés</span> sont des rendements cumulatifs ramenés à une période d'un an. Cela permet aux investisseurs de mieux comparer les rendements de différents actifs qu'ils ont détenus pendant des périodes de temps différentes.",para2:'Alternativement, les <span class="font-bold">rendements annualisés</span> peuvent également être interprétés comme le rendement annuel qu\'un investisseur aurait obtenu en moyenne en investissant pendant une période donnée.',para3:"Toutes choses égales par ailleurs, plus le rendement annualisé est élevé, meilleur est l'investissement."},annualizedVolatility:{title:"Volatilité annualisée",para1:"La <span class=\"font-bold\">volatilité annualisée</span> est la volatilité d'un investissement ramenée à une période d'un an. La volatilité elle-même mesure l'ampleur des mouvements de prix. Plus techniquement, la volatilité est une mesure statistique de la dispersion des rendements (plus précisément l'écart type des rendements) sur une période donnée. Plus la volatilité est élevée, plus l'investissement est risqué, car plus la volatilité est élevée, plus il est probable que des fluctuations importantes se produisent."},beta:{title:"Beta",para1:"Le<span class=\"font-bold\">beta</span> mesure la dépendance des rendements. Il est généralement utilisé pour mesurer la dépendance d'un titre ou d'une stratégie d'investissement par rapport au rendement du marché. Un beta élevé indique que le titre évolue de manière plus agressive que le marché, tandis qu'un beta faible indique que le titre ne capte que partiellement les rendements du marché. Le graphique ci-dessous montre les lignes de tendance d'un investissement à beta élevé et d'un investissement à beta faible et leur performance par rapport au marché, la pente de la ligne de tendance correspondant à la valeur du <span class=\"font-bold\">beta</span>. L'investissement à faible beta présente un <span class=\"font-bold\">beta</span> < 1, ce qui signifie qu'il évolue généralement moins que le marché mais dans la même direction, tandis que l'investissement à beta élevé présente un <span class=\"font-bold\">beta</span> > 1 et génère donc des rendements plus extrêmes que le marché. Ainsi, les rendements dans le graphique sont plus largement répartis que pour l'investissement à faible beta.",para2:'Bien que rarement trouvées, les valeurs négatives de <span class="font-bold">beta</span> existent et indiqueraient une relation inverse au marché.',para3:"Lorsqu'ils analysent une stratégie d'investissement, les investisseurs recherchent des stratégies performantes avec un faible beta. Cette constellation indique que la performance du gestionnaire dépend moins des rendements du marché que de ses compétences."},calmarRatio:{title:"Calmar ratio",para1:"Un ratio utilisé pour déterminer le rendement par rapport au risque de baisse (drawdown) dans un produit d'investissement.",para2:"Toutes choses égales par ailleurs, plus le ratio est élevé, meilleur est l'investissement."},correlation:{title:"Corrélation",para1:"Le coefficient de corrélation de Pearson (CCP) est une mesure statistique qui évalue la force et la direction d'une relation linéaire entre deux ensembles de données. Il est calculé comme le rapport entre la covariance des deux variables et le produit de leurs écarts types. Cette normalisation donne au PCC une valeur comprise entre -1 et 1, où -1 indique une corrélation linéaire négative parfaite, 1 une corrélation linéaire positive parfaite et 0 aucune corrélation linéaire. Il est important de noter que la PCC ne détecte que les relations linéaires, et non les autres types de corrélations",para2:"Étant donné des données appariées {(X,Y)} de n paires, la PCC sera calculée à l'aide de la formule suivante :"},cumulativeReturn:{title:"Rendement cumulé",para1:"Présenté sous forme de pourcentage, le <span class=\"font-bold\">rendement cumulatif</span> d'un investissement est le montant total que l'investissement a gagné ou perdu au fil du temps.",para2:"Le <span class=\"font-bold\">rendement cumulé</span> peut être facilement déduit d'un graphique qui montre la croissance d'un investissement tel que celui ci-dessus. En utilisant uniquement la première et la dernière valeur du graphique, on peut obtenir le rendement cumulatif total pour une période de temps donnée."},informationRatio:{title:"Ratio d'information",para1:"Investment strategies are often measured against a certain benchmark which mostly consists of one or a mix of many indices. Lorsqu'un gestionnaire d'investissement bat l'indice de référence, il est intéressant pour l'investisseur de savoir à quel prix l'objectif a été atteint. Le <span class=\"font-bold\">ratio d'information</span> est une mesure permettant de comparer le rendement excédentaire par rapport à l'indice de référence et le tracking error qui est une mesure de la cohérence entre la stratégie et l'indice de référence.",para2:"Le <span class=\"font-bold\">ratio d'information</span> est calculé de la même manière que le ratio de sharpe en partant du principe que l'indice de référence est égal à un rendement sans risque avec une volatilité de 0%.",para3:"Toutes choses égales par ailleurs, si ce ratio est positif, plus il est élevé, plus l'investissement est robuste. Un ratio élevé signifie que les fluctuations quotidiennes des excess returns par rapport à l'indice de référence sont faibles par rapport au excess return moyen par rapport à l'indice de référence."},kurtosis:{title:"Kurtosis",para:"L'aplatissement indique l'ampleur des pics d'une distribution. Plus l'aplatissement d'une distribution est élevé, plus elle est concentrée autour de sa moyenne"},m2RiskAdjustedPerf:{title:"Mesure M2",para1:"La performance ajustée au risque M2 (M au carré), également connue sous le nom de mesure M2, évalue les rendements ajustés au risque d'un portefeuille d'investissement. Elle évalue les rendements du portefeuille en tenant compte de son risque par rapport à un indice de référence, tel que le marché. Essentiellement, il représente la différence entre le rendement excédentaire ajusté d'un portefeuille (P) et le marché, en ajustant le portefeuille pour qu'il corresponde à la volatilité du marché. Issu du ratio de Sharpe, il offre un avantage substantiel en exprimant les résultats en pourcentage de rendement, contrairement au ratio de Sharpe, qui est un chiffre non négatif et moins pratique pour de nombreux investisseurs. Cette caractéristique de la mesure de Modigliani la rend nettement plus facile à comprendre et à appliquer",para2:"Toutes choses égales par ailleurs, si le rendement de l'investissement est supérieur au risk-free rate, plus la mesure M2 est élevée, meilleur est l'investissement. En effet, dans ce cas, la mesure M2 augmente lorsque le rendement de la stratégie augmente, ou lorsque la volatilité de la stratégie diminue par rapport à celle de son indice de référence."},maximumDrawdown:{title:"Drawdown maximal",para1:'Le <span class="font-bold">drawdown maximal</span> est la perte maximale observée entre un pic et un creux d\'un portefeuille, avant qu\'un nouveau pic ne soit atteint. Le <span class="font-bold">drawdown maximal</span> est un indicateur du risque de baisse sur une période donnée.',para2:'Le <span class="font-bold">drawdown maximal</span> est un indicateur utilisé pour évaluer le risque relatif d\'une stratégie par rapport à une autre, car il se concentre sur la préservation du capital, qui est une préoccupation essentielle pour la plupart des investisseurs. Un faible <span class="font-bold">drawdown maximal</span> est préférable car il indique que les pertes des investissements ont été faibles. Si un investissement ne perdait jamais un centime, le <span class="font-bold">drawdown maximal</span> serait de zéro. Le pire <span class="font-bold">drawdown maximal</span> possible serait de 100 %, ce qui signifie que l\'investissement n\'a aucune valeur.',para3:"Toutes choses étant égales par ailleurs, plus la valeur absolue du drawdown maximal est faible (c'est-à-dire plus le drawdown maximal est proche de 0 %), plus l'investissement est fiable.",keyPoints:"Point clés",keyPoint1:"Le drawdown maximal est une mesure de la plus grande chute du prix d'un actif entre un pic et un creux.",keyPoint2:"Le drawdown maximal est considéré comme un indicateur du risque de baisse, un drawdown maximum important suggérant que les mouvements de baisse pourraient être volatils.",keyPoint3:"Si le drawdown maximal mesure la perte la plus importante, il ne tient pas compte de la fréquence des pertes, ni de l'ampleur des gains éventuels."},metaInfo:{title:"Plateforme - Base de connaissances"},omegaRatio:{title:"Ratio oméga",para1:"Le ratio oméga est une mesure de performance risque-rendement. Il calcule le ratio pondéré par la probabilité des gains par rapport aux pertes",para2:"Toutes choses égales par ailleurs, plus le ratio est élevé, meilleur est l'investissement."},returnVolatilityRatio:{title:"Ratio rendement/volatilité",para1:'Le <span class="font-bold">ratio rendement/volatilité</span> représente le rendement moyen obtenu par unité de volatilité (écart-type), qui peut être interprété comme une unité de risque. Il renseigne donc sur la manière dont l\'investisseur est rémunéré pour le risque pris (plus le <span class="font-bold">rapport rendement/volatilité</span> est élevé, plus la compensation du risque est importante).',para2:'Généralement, tout <span class="font-bold">ratio rendement/volatilité</span> supérieur à 1.0 sur une période prolongée est considéré comme bon car cela signifie que les récompenses sont supérieures au risque pris. Par exemple, si la volatilité annualisée est inférieure au rendement annualisé, le <span class="font-bold">ratio rendement/volatilité</span> sera supérieur à 1.0.',para3:'Ainsi, le <span class="font-bold">ratio rendement/volatilité</span> permet aux investisseurs de comparer des investissements très différents selon les mêmes critères. Le <span class="font-bold">ratio rendement/volatilité</span> permet de comparer des pommes avec des oranges.',keyPoints:"Points clés",keyPoint1:"Un <span class=\"font-bold\">ratio rendement/volatilité</span> élevé indique que l'investisseur est bien rémunéré pour le risque qu'il a pris.",keyPoint2:"Le <span class=\"font-bold\">ratio rendement/volatilité</span> ajuste la performance passée d'un portefeuille au risque pris par l'investisseur et permet ainsi de comparer des investissements très différents."},sharpeRatio:{title:"Ratio de sharpe",para1:"Le <span class=\"font-bold\">ratio de sharpe</span> est une mesure du rendement ajusté au risque. Il compare le rendement excédentaire par rapport à un investissement sans risque au risque qui a été pris pour obtenir ce rendement, le risque pour l'investisseur étant défini comme la volatilité. Le ratio permet de comprendre le rendement obtenu par l'unité de risque et peut être utilisé pour comparer plusieurs opportunités d'investissement.",para2:"Étant donné qu'aucun investissement n'est totalement sans risque, tout titre présentant des risques minimes peut être utilisé comme indicateur de rendement sans risque. En général, les obligations d'État de pays stables conviennent bien. Nous utilisons les taux LIBOR à court terme pour calculer le rendement sans risque.",para3:"Toutes choses égales par ailleurs, si ce ratio est défini (c'est-à-dire s'il est positif), plus il est élevé, plus l'investissement est robuste. Un ratio élevé signifie que les fluctuations quotidiennes des excess returns sont faibles par rapport à l'excess return moyen."},skewness:{title:"Coefficient d'asymétrie",para1:'La fréquence d\'apparition de rendements importants dans une direction particulière est mesurée par l\'<span class="font-bold">asymétrie</span>. Si la fréquence d\'occurrence des grands rendements négatifs par rapport aux grands rendements positifs est plus élevée, alors la distribution présente une <span class="font-bold">asymétrie</span> négative. Si la fréquence des grands rendements positifs est supérieure à celle des grands rendements négatifs, la distribution présente une <span class="font-bold">asymétrie</span> positive.',para2:"Les investisseurs doivent s'intéresser à l'<span class=\"font-bold\">asymétrie</span> car elle prend en compte les extrêmes des rendements au lieu de se concentrer uniquement sur la moyenne. Les investisseurs à court et moyen terme, en particulier, doivent s'intéresser aux extrêmes, car ils sont moins susceptibles de conserver une stratégie suffisamment longtemps pour être sûrs que la moyenne s'arrangera d'elle-même."},sortinoRatio:{title:"Ratio de Sortino",para1:"Le ratio de Sortino est similaire au ratio de Sharpe, sauf qu'il utilise le risque de baisse (volatilité à la baisse) dans le dénominateur. Étant donné que la variabilité à la hausse n'est pas nécessairement une mauvaise chose, le ratio de Sortino est parfois préférable au ratio de Sharpe",para2:"Toutes choses égales par ailleurs, plus le ratio est élevé, meilleur est l'investissement."},trackingError:{title:"Ecart de suivi",para1:"L'<span class=\"font-bold\">erreur de suivi</span> est une mesure du risque d'un portefeuille d'investissement dû aux décisions de son gestionnaire de s'écarter de son indice de référence. Plus elle est élevée, plus le gestionnaire est actif dans le choix de s'écarter de son indice de référence.",para2:"Mathématiquement, une façon pertinente de l'estimer est de calculer l'écart type de la différence de rendement entre le portefeuille et le benchmark. Celle que nous présentons sur cette plateforme est annualisée.",para3:"Il est important de garder à l'esprit qu'elle ne représente pas la pertinence des décisions du gestionnaire, mais plutôt l'impact qu'elles ont sur le portefeuille final. Ainsi, deux portefeuilles aux performances excellentes ou mauvaises peuvent tous deux présenter des <span class=\"font-bold\">erreurs de suivi</span> élevées par rapport à leur indice de référence.",para4:"Une faible tracking error signifie qu'un investissement ne s'écarte pas beaucoup de son indice de référence. Une tracking error élevée signifie que l'investissement s'écarte beaucoup de son indice de référence."},treynorRatio:{title:"Rapport de Treynor",para:'Semblable au ratio de Sharpe, le ratio de Treynor est une mesure de l\'efficacité qui utilise la relation entre le rendement annualisé ajusté au risque et le risque. Contrairement au ratio de Sharpe, le ratio de Treynor utilise le risque "de marché" (bêta) au lieu du risque total (écart-type). Une bonne efficacité de la performance est mesurée par un ratio élevé'},valueAtRisk:{title:"Valeur à risque",para1:"La VaR est une statistique qui quantifie l'ampleur des pertes possibles au sein d'un portefeuille sur une période donnée et avec une probabilité définie. VaR 1% sur 1 mois = x% de perte en 1 mois avec une probabilité de 1%. Plus elle est basse, mieux c'est !",para2:"En pratique, il s'agit du quantile des rendements de la stratégie correspondant à la valeur p (1 % ou 5 %)."}}},home:{metaInfo:{title:e=>`${e.named("orgName")} - Plateforme`},modifyInvestorProfile:"Modifier le profil d'investisseur",noProductsAvailable:"Aucun produit disponible pour votre rôle et votre profil d'investisseur.",search:"Recherche",showMoreProducts:"Afficher plus de produits"},products:{analysis:{analysisPeriod:"Période d'analyse",backtest:"Backtest",backtestOrLive:"Backtest ou live",benchmarks:"Benchmarks",live:"Live",liveProduct:e=>`${e.named("productName")} live`,shareClass:"Classe d'action",graphs:{considerApproximation:"Ces valeurs doivent être considérées comme une approximation.",weHave:"Nous avons",weWant:"Nous voulons",titles:{assetClassesWeights:"Pondération des classes d'actifs",beta:"Beta",constituents:"Constituants",contango:"Contango",diffMonthlyReturns:"Diff. rendements mensuels",drawdowns:"Drawdown",exposureIndices:"Exposition aux indices",exposureOverTime:"Exposition dans le temps",exposureVolatility:"Exposition à la volatilité",indicators:"Indicateurs",monthlyReturns:"Rendements mensuels",performance:"Performance",ratioVixFutures:"Ratio VIX futures",recentDataOverview:"Aperçu des données récentes",relativeDrawdowns:"Drawdowns relatifs",relativePerformance:"Performance relative",riskAdjustedPerformance:"Performance ajustée au risque",rollingVRatioLevel:"Niveau du roulement du v-ratio",statistics:"Statistiques",returnProfile:"Profil de rendement",top10ConstituentsWeight:"Les 10 plus grands constituants actuels",top5ConstituentsWeight:"Poids des 5 premiers constituants",vegaIndicatorConditions:"Conditions de l'indicateur Vega",vix:"VIX",vixPremium:"VIX premium",volatility:"Volatilité",weightedPerformance:"Performance pondérée",yearlyReturns:"Rendements annuels"},tooltips:{beta:"Ce graphique montre le beta de notre produit par rapport à notre référence. Pour le calculer, nous utilisons les données de la dernière année disponible, c'est pourquoi la mesure est absente pendant la première année de vie de notre produit.",relativePerformance:"Ce graphique présente une comparaison de la performance de notre produit et de la performance de notre benchmark. Pour ce faire, nos rendements cumulés sont divisés par les rendements cumulés de notre benchmark. Cela signifie qu'à 100%, les deux performances sont similaires, sinon plus le chiffre est élevé, meilleure est la performance de notre produit par rapport au benchmark.",riskAdjustedPerformance:"Ce graphique montre la performance ajustée au risque. Pour la calculer, nous utilisons les données de la dernière année disponible, c'est pourquoi la mesure est absente pendant la première année de vie de notre produit. La performance ajustée au risque est définie comme le rapport entre le rendement annualisé et la volatilité annualisée.",volatility:"Ce graphique montre la volatilité annualisée (c'est-à-dire l'écart type). Pour la calculer, nous utilisons les données de la dernière année disponible, c'est pourquoi la mesure est manquante pendant la première année de vie de notre produit."}},metaInfo:{title:e=>`${e.named("productName")} - Analyse`},tab:{historical:"Historique",historicalText:'Pour les produits déjà lancés, nous distinguons la section "Analyse" entre "Analyse live" et "Analyse historique". La section "Analyse historique" vise à illustrer la performance du produit avant son lancement. Les performances sont basées sur une simulation réaliste de la stratégie. Cependant, aucun actif sous gestion n\'a été impliqué pendant la période correspondante.',internal:"Interne",live:"Live",liveText:'Pour les produits déjà lancés, nous distinguons la section "Analyse" entre "Analyse live" et "Analyse historique". La section "Analyse live" illustre les performances depuis le lancement du produit.'}},documentDownload:{failure:"Le téléchargement du fichier a échoué. Veuillez nous contacter si cela est inattendu.",needAuth:"Vous devez être authentifié pour télécharger ce document. Veuillez vous connecter.",preparing:"Le fichier est  en préparation pour le téléchargement....",seeProductOverview:"Voir l'aperçu du produit",success:"Le fichier a été téléchargé avec succès..",metaInfo:{title:e=>`${e.named("productName")} - Documents à télécharger`}},documents:{addFile:"Ajouter un fichier",document:"Document",nameValidationError:"Le nom est déjà utilisé par un autre de vos documents, veuillez en choisir un autre.",noDocument:"Aucun document n'est fourni pour ce produit.",noArchivedDocument:"Aucun document archivé pour ce produit.",noteDragAndDrop:"Remarque : Faites glisser et déposez les lignes pour réorganiser les documents.",shareClass:"Classe d'action",archiveIconTooltip:"Archiver",unarchiveIconTooltip:"Désarchiver",archivedDocumentsCardTitle:"Documents archivés",dialog:{fileDeletion:{title:"Suppression du fichier",text:"Vous allez supprimer complètement le fichier et vous ne pourrez plus y accéder. Vous êtes sûr ?"},fileArchiving:{title:"Archivage de fichiers",text:"Vous allez archiver ce fichier, ce qui signifie qu'il sera placé dans vos \"Documents archivés\" (juste en dessous des documents). Notez qu'il sera possible de le désarchiver. Voulez-vous l'archiver?"},fileUnarchiving:{title:"Désarchivage de fichiers",text:"Vous allez désarchiver ce fichier, ce qui signifie qu'il retournera dans vos documents normaux. Voulez-vous le désarchiver?"},needLogin:{text:"Pour télécharger ce document, vous devez être authentifié.",title:"Vous devez être authentifié"}},metaInfo:{title:e=>`${e.named("productName")} - Documents`},notify:{savingDocumentsError:"Une erreur s'est produite lors de la mise à jour des documents. Réessayez plus tard ou contactez-nous.",savingDocumentsSuccess:"Les documents ont été mis à jour avec succès.",fileDownloadError:"Erreur lors du téléchargement du document, veuillez nous contacter."},prompt:{fileDisplayName:"Nom d'affichage du fichier",loginRequired:"Connexion requise ?",uploadFile:{acceptText:"Sauvegarde de fichier",file:"Fichier",fileLanguage:"Langue du fichier",shouldConsiderLastFactsheet:"Ce fichier doit-il être considéré comme la dernière factsheet du produit?",title:"Sauvegarde du fichier"},editFile:{title:"Modifier le fichier"}}},embedded:{perfGraph:{metaInfo:{title:e=>`${e.named("productName")} - Graphique de performance embarqué`}},perfTable:{currency:"Monnaie",inceptionDate:"Date de création",name:"Nom",lastPriceAsOf:"Dernier prix au",mtd:"MAJ",si:"Depuis création",y1:"-1A",y3:"-3A",ytd:"AAJ",metaInfo:{title:e=>`${e.named("productName")} - Tableau de performance embarqué`}},statsTable:{feesIncluded:"Les frais sont inclus.",metaInfo:{title:e=>`${e.named("productName")} - Tableau des statistiques embarqué`}}},events:{covidCrisis:"Crise COVID-19",crisis2022:"Crise de 2022",december2018Crisis:"Crise de décembre 2018",euroCrisis:"Crise de l'euro",financialCrisis:"Grande crise financière",alvolaLive:"Alvola Live",convexusLive:"Convexus Live",lstsLive:"LSTS Live",protechLive:"ProTech Live",sinceInception:"Depuis la création",ynnovationLive:"Ynnovation Live",calmgard:{calmgardCovid19Crisis:"Crise du Covid 19",calmgardEuroCrisisOne:"Crise de l'euro I",calmgardEuroCrisisTwo:"Crise de l'euro II",calmgardGreekAndChinaCrisis:"Crise grecque et chinoise",calmgardInterestRateSpeculationOne:"Spéculation sur les taux d'intérêt I",calmgardInterestRateSpeculationTwo:"Spéculation sur les taux d'intérêt II",calmgardPostFinancialCrisis:"L'après-crise financière",calmgardUkraineWar:"Guerre d'Ukraine"},falgom:{falgomCoronavirusPandemic:"Pandémie de coronavirus",falgomFedQuantitativeTapering:"Réduction politique quantitative FED",falgomGlobalFinancialCrisis:"Crise financière mondiale",falgomGrowthSlowdownChina:"Ralentissement croissance Chine",falgomRecessionEurope:"Récession Europe",falgomVolmageddon:"Volmageddon"}},factsheet:{firstDateToInclude:"Première date à inclure (aaaa-mm-jj)",lastDateToInclude:"Dernière date à inclure (aaaa-mm-jj)",nameValidationError:"Le nom est déjà utilisé par un autre de vos documents, veuillez en choisir un autre.",shareClass:"Classe d'action",year:"Année",cardTitle:{assetClasses:"Classes d'actifs",contacts:"Contacts",currencyExposure:"Risque d'exposition",description:"Description",disclaimer:"Clause de non-responsabilité",drawdowns:"Drawdown",historicalPrices:"Prix historiques",instrumentTypes:"Types d'instruments",monthlyComment:"Commentaire mensuel",monthlyPerformance:"Performance mensuelle",monthlyReturns:"Rendements mensuels",productDetails:"Détails du produit",regions:"Régions",relativePerformance:"Performance relative",riskProfile:"Indicateur synthétique de risque et de rendement",sectors:"Secteurs",shareClasses:"Classes d'action",topHoldings:"Principales positions",volatility:"Volatilité",yearlyPerformance:"Performance annuelle"},dragAndDrop:{addGenericComponent:"Ajouter un composant",availableGenericComponents:"Composants génériques",availablePredefinedComponents:"Composants prédéfinis",editFactsheet:"Modifier la factsheet",componentTooBig:"Le composant est trop grand pour être contenu sur une page entière.",saveSuccessText:"La configuration de la factsheet a été mise à jour avec succès.",stopEdit:"Arrêter la modification",general:{primaryColor:"Couleur principale",title:"Général",fontSize:{normal:"Normale",large:"Grande",small:"Petite",title:"Taille de la police"},spacing:{comfortable:"Confortable",compact:"Compact",title:"Espacement"},titleBorder:{above:"Au-dessus du titre",below:"En-dessous du titre",none:"Pas de soulignement",title:"Soulignement du titre"}},footer:{edit:"Éditer le pied de page",title:"Pied de page",text:"Texte",page:"Page",showPageNumber:"Afficher le numéro de page",showFooterLine:"Afficher la ligne de bas de page"},forcedElementDeletionWarning:{componentsWereRemoved:"Certains composants ont été retirés de votre mise en page car leur taille dépasse la zone affichable d'une seule page ou la colonne qui les contient est trop grande. Les ID des composants retirés sont :",resolveSolution:"Pour résoudre ce problème, réduisez la hauteur des composants concernés, placez le composant dans une nouvelle ligne unique, ou contactez-nous.",title:"Retrait forcé de composants de la mise en page"},header:{backgroundImage:"Image de fond",hideProductName:"Cacher le nom du produit",logo:"Logo",onlyOnFirstPage:"Seulement sur la première page",textInPrimary:"Texte en couleur de la marque",title:"En-tête",useCompanyLogo:"Utiliser le logo de l'entreprise",datePosition:{bottomLeft:"En bas à gauche",bottomRight:"En bas à droite",standard:"Standard",title:"Position de la date",topLeft:"En haut à gauche",topRight:"En haut à droite"}}},generateFactsheet:{downloadFactsheet:"Télécharger la factsheet",generatingFactsheet:"Génération de la factsheet...",saveFactsheet:'Sauvegarder la factsheet dans "Documents"',notify:{generatingError:"Erreur lors de la génération de la factsheet, veuillez nous contacter.",savedInDocumentsSection:"Votre factsheet a été enregistrée dans la section Documents."},prompt:{acceptText:"Sauvegarder la factsheet",considerLastFactsheet:"Ce fichier doit-il être considéré comme la dernière factsheet du produit?",fileDisplayName:"Nom d'affichage du fichier",loginRequired:"Connexion requise?",title:"Génération et sauvegarde de la factsheet"}},metaInfo:{title:e=>`${e.named("productName")} - Factsheet`},statistics:{title:"Statistiques",periods:{1:"1M",3:"3M",6:"6M",ytd:"AAJ",12:"1A",36:"3A",60:"5A",max:"MAX"}},statisticsWithPeriods:{title:"Performance",periods:{1:"1M",3:"3M",6:"6M",ytd:"AAJ",12:"1A",36:"3A",60:"5A",max:"MAX"}},shareClassesTable:{bloomberg:"Bloomberg",class:"Classe",currency:"Monnaie",inception:"Date de création",isin:"ISIN",mgmtFee:"Frais de gestion",mtdPerf:"Perf. MAJ",nav:"VNI",navDate:"Date du VNI",perfFee:"Frais de perf.",siPerf:"Perf. lanc.",ytdPerf:"Perf. AAJ"}},months:{short:{jan:"Janv",feb:"Févr",mar:"Mars",apr:"Avr",may:"Mai",jun:"Juin",jul:"Juill",aug:"Août",sep:"Sept",oct:"Oct",nov:"Nov",dec:"Déc"}},overview:{assetClasses:"Classes d'actifs",currencyExposure:"Risque d'exposition",keyCharacteristics:"Caractéristiques clés",historicalPrices:"Prix historiques",itd:"Rendement ITD",instrumentTypes:"Types d'instruments",itdDescription:e=>`ITD (inception-to-date) est une période, à partir de la création du produit (${e.named("date")}), et allant jusqu'au jour présent.`,lastChange:"Dernier changement",lastDayChange:"Changement du dernier jour",lastWeekChange:"Changement de la dernière semaine",lastMonthChange:"Changement du dernier mois",lastQuarterChange:"Changement du dernier trimestre",lastYearChange:"Changement de la dernière année",lastPrice:"Dernier prix",monthlyReturns:"Rendements mensuels",performance:"Performance",productDetails:"Détails du produit",productTimeline:"Chronologie du produit",regions:"Régions",sectors:"Secteurs",shareClass:"Classe d'action",topHoldings:"Principales positions",yearlyReturns:"Rendements annuels",ytd:"AAJ",ytdDescription:"Le cumul annuel jusqu'à ce jour ou plus simplement année à ce jour (AAJ) (en anglais, year-to-date ou YTD) est un terme utilisé en finance et en comptabilité pour définir la période qui s'étend du début de l'année en cours jusqu'au jour présent.",dragAndDrop:{addGenericComponent:"Ajouter un composant",availableGenericComponents:"Composants génériques",availablePredefinedComponents:"Composants prédéfinis",editOverview:"Modifier la vue d'ensemble",saveSuccessText:"La configuration de la vue d'ensemble a été mise à jour avec succès",stopEdit:"Arrêter l'édition"},follow:{buttonText:"Suivre",buttonTextFollowing:"Suivi",notify:{error:"Il y a eu une erreur. Essayez encore ou contactez-nous pour résoudre le problème.",followSuccess:e=>`Vous suivez maintenant ${e.named("productName")}.`,unfollowSuccess:e=>`Vous ne suivez plus ${e.named("productName")}.`},promptNotFollowing:{acceptText:"Suivre",text:"En suivant ce produit, vous acceptez que nous vous envoyons des informations sur le produit de temps en temps. Vous serez toujours capable de ne plus suivre le produit pour arrêter de recevoir ce genre d'information.",title:"Suivre le produit"},promptFollowing:{acceptText:"Arrêter de suivre",text:"Vous suivez actuellement ce produit. Voulez-vous arrêter de le suivre, ce qui veut dire que vous ne recevrez plus d'information à ce sujet?",title:"Arrêter de suivre le produit"},promptNotLoggedIn:{cancelText:"Créer un compte",text:"Si vous voulez pouvoir suivre ce produit, vous devez être connecté à votre compte. Si vous n'avez pas encore de compte, vous pouvez en créer un gratuitement.",title:"Suivre le produit"}},metaInfo:{title:e=>`${e.named("productName")} - Aperçu`},statsOptions:{1:"1 mois",3:"3 mois",6:"6 mois",ytd:"Depuis le début d'année",12:"1 an",36:"3 ans",60:"5 ans",max:"Depuis la création"}},useCase:{allocationAlvola:"Allocation à Alvola",biggestDrawdowns:e=>`Les plus gros drawdowns de ${e.named("benchmark")}`,description:"Notre cas d'utilisation illustre comment l'ajout de la stratégie Alquant Alvola à un portefeuille d'actions existant peut augmenter les rendements à long terme tout en réduisant le drawdown maximum. Sélectionnez le portefeuille d'actions de votre choix et l'allocation à la stratégie Alquant Alvola et découvrez comment la combinaison aurait été performante dans le passé (avant le lancement de notre produit, le 02 juin 2021). En outre, vous trouverez également la performance pendant les 10 plus grandes périodes de drawdown de votre portefeuille d'actions sélectionné.",drawdowns:"Drawdowns",equityPortfolio:"Portefeuille d'actions",historicalResults:"Résultats historiques",portfolioAllocation:"Allocation du portefeuille",protectPortfolio:"Protégez votre portefeuille avec Alvola",metaInfo:{title:e=>`${e.named("productName")} - Cas d'utilisation`}}},settings:{metaInfo:{title:e=>`Paramètres - ${e.named("name")}`},changePassword:{confirmNewPassword:"Confirmer le nouveau mot de passe",currentPassword:"Mot de passe actuel",newPassword:"Nouveau mot de passe",title:"Modifier le mot de passe",notify:{success:"Votre mot de passe a été mis à jour avec succès.",couldntChange:"Nous n'avons pas pu changer votre mot de passe, veuillez nous contacter en utilisant le formulaire de contact pour corriger cette erreur.",wrongPassword:"Vous avez fourni un mauvais mot de passe."}},deleteAccount:{deleteYourAccount:"Supprimer votre compte",title:"Supprimer le compte",notify:{success:"Votre compte a été supprimé avec succès."},dialog:{permanentlyDeleteData:{text:"La suppression de votre compte entraînera la suppression définitive de toutes vos données.",title:"Confirmer"},recentLoginNeeded:"Besoin d'une connexion récente"}},editProfile:{company:"Entreprise",email:"Email",firstName:"Prénom",investorProfileCountry:"Pays",investorProfileType:"Type d'investisseur",lastName:"Nom de famille",phone:"Téléphone",title:"Modifier le profil",requiredFields:'Les champs marqués d\'un <span class="text-danger">*</span> sont obligatoires.',dialog:{askValidation:{title:"Vérification des données personnelles",text:"Veuillez vérifier vos données personnelles et les enregistrer lorsque vous avez terminé."}},notify:{errorText:"Nous n'avons pas pu mettre à jour vos données, veuillez nous contacter en utilisant le formulaire de contact pour corriger cette erreur.",successText:"La mise à jour a été un succès."}},overview:{email:"Email",name:"Nom",title:"Aperçu du compte"},preferences:{discard:"Abandonner",hideProducts:"Masquer les produits connectés",title:"Préférences",notify:{savedText:"Les paramètres de vos préférences ont été enregistrés avec succès."}}}},Ke={demo:{customSections:{useCases:{title:"Cas d'usage",alpinum:{strategyName:"Alpinum",title:"Alpinum",historicalResults:{title:"Résultats historiques",biggestDrawdowns:{title:e=>`Plus grands drawdowns de ${e.named("benchmark")}`},drawdowns:{title:"Drawdowns"}},metaInfo:{title:"Cas d'Usage - Alpinum"},parameters:{runButton:"Exécuter cas d'usage",benchmark:"Benchmark",title:"Paramètres"}}}}},bcf:{redirectButtonNavBarText:"Retour à l'accueil"},bonhote:{redirectButtonNavBarText:"Retour à l'accueil"},calmgard:{nextSubscriptionAndRedemption:{nextRedemption:e=>`<b>Les rachats</b> effectués avant le ${e.named("date")} à 12h00 CET seront exécutés au dernier VNI de ${e.named("month")}.`,nextSubscription:e=>`<b>Les souscriptions</b> effectués avant le ${e.named("date")} à 12h00 CET seront exécutés au dernier VNI de ${e.named("month")}.`,title:"Prochaines dates possibles de trading"}},cronos:{redirectButtonNavBarText:"Page d'accueil Cronos"},falgom:{taroDiversified:{useCase:{allocation:{equity:"Portefeuille d'actions",product:"Allocation à TARO® Diversified",title:"Allocation du portefeuille"},drawdowns:{title:"Drawdowns",biggestDrawdowns:"Les plus forts drawdowns"},historicalResults:{title:"Résultats historiques"},metaInfo:{title:"Cas d'utilisation - TARO® Diversified"}}}},mirante:{redirectButtonNavBarText:"Page d'accueil MFM"},ppt:{redirectButtonNavBarUrl:"https://ppt.ch/fr/asset-management/",redirectButtonNavBarText:"Retour au site principal"}},Je={apply:"Appliquer",asOf:e=>`au ${e.named("date")}`,cancel:"Annuler",contactUs:"Contactez-nous",edit:"Editer",error:"Erreur",from:"Du",ok:"Ok",loading:"Chargement...",logIn:"S'identifier",logOut:"Se déconnecter",no:"Non",others:"Autres",register:"S'inscrire",save:"Sauvegarder",saving:"Sauvegarde...",serverError:"Une erreur s'est produite dans notre serveur. Un rapport a été envoyé à notre équipe et nous allons y remédier dès que possible. N'hésitez pas à nous contacter si le problème persiste.",success:"Succès",to:"Au",warning:"Avertissement",yes:"Oui",investorProfileTypes:{institutional:"Investisseur institutionnel",professional:"Investisseur professionnel",retail:"Investisseur particulier"},layouts:{main:{dev:"Dév",devTooltip:"Ce produit est en cours de développement",admin:{listUsers:"Liste des utilisateurs",platformSettings:"Paramètres de la plateforme",products:"Produits",sectionName:"Admin",operations:{name:"Opérations",generateFactsheets:{name:"Générer des factsheets"}}},help:{contact:"Contact",faq:"FAQ",knowledgeBase:"Base de connaissances",sectionName:"Aide"},products:{analysis:"Analyse",documents:"Documents",factsheet:"Factsheet",overview:"Aperçu",sectionName:"Produits",useCase:"Cas d'utilisation"}},fullPage:{backHome:"Retour à l'accueil"},profileDropDown:{settings:"Paramètres",dialog:{adminAsRegularOnMobile:{text:"Les fonctions administratives ne sont pas accessibles sur les appareils mobiles. Pour profiter pleinement de la plateforme, veuillez utiliser un ordinateur de bureau. Les fonctions administratives désactivées comprennent (sans s'y limiter) : l'édition d'éléments dans la vue d'ensemble, l'édition de la fiche d'information, le téléchargement ou la suppression de documents et l'accès à la section d'administration.",title:"Ordinateur de bureau nécessaire pour les fonctions d'administration"}}},theFooter:{allRightReserved:"Tous droits réservés",copyright:"Copyright",ombudsman:"Médiateur",privacyPolicy:"Politique de confidentialité",termsOfUse:"Conditions d'utilisation"},verticalNavMenu:{errorLoading:"Erreur lors du chargement du menu"},verticalNavMenuGroup:{search:"Recherche",showMore:"Afficher plus"}},perfStats:{alpha:"Alpha",annualizedReturn:"Rendement annualisé",annualizedVolatility:"Volatilité annualisée",averageMonthlyReturns:"Rendement mensuel moyen",averageNegativeMonthlyReturns:"Moyenne des rendements mensuels négatifs",averagePositiveMonthlyReturns:"Moyenne des rendements mensuels positifs",beta:"Beta",calmarRatio:"Ratio de Calmar",correlation:"Corrélation",cumulativeReturn:"Rendement cumulé",informationRatio:"Ratio d'information",kurtosis:"Kurtosis",m2RiskAdjustedPerfMonthly:"Mesure M2",maxConsecutiveNegativeMonthlyReturns:"Maximum de rendements mensuels négatifs consécutifs",maxConsecutivePositiveMonthlyReturns:"Maximum de rendements mensuels positifs consécutifs",maxNegativeMonthlyReturn:"Rendement mensuel négatif maximal",maxPositiveMonthlyReturn:"Rendement mensuel positif maximal",maximumDrawdown:"Drawdown maximal",omegaRatio:"Ratio Omega",ratioOfNegativeMonthlyReturns:"Ratio des rendements mensuels négatifs",ratioOfPositiveMonthlyReturns:"Ratio des rendements mensuels positifs",returnToVolatilityRatio:"Ratio rendement/volatilité",sharpeRatio:"Ratio de sharpe",skewness:"Coefficient d'asymétrie",sortinoRatio:"Ratio de Sortino",trackingError:"Ecart de suivi",treynorRatio:"Ratio de Treynor",valueAtRiskOnePercentOneMonth:"Valeur à Risque (VaR) 1% sur 1 mois",valueAtRiskFivePercentOneMonth:"Valeur à Risque (VaR) 5% sur 1 mois"},validations:{afterDate:e=>0==e.named("nDaysApart")?`La date doit être postérieure à ${e.named("minDate")} (incluse)`:`La date doit être au moins ${e.named("nDaysApart")} jours après ${e.named("minDate")}`,beforeDate:e=>0==e.named("nDaysApart")?`La date doit être antérieure à ${e.named("maxDate")} (incluse)`:`La date doit être au moins ${e.named("nDaysApart")} jours avant ${e.named("maxDate")}`,confirmed:"Le champ ne correspond pas au champ précédent.",dateFormat:"La date doit être au format AAAA-MM-JJ.",email:"L'email n'est pas valide.",maxFileSize:e=>`Le fichier est plus grand que la taille maximale autorisée (${(e.named("maxSizeBytes")/1e3/1e3).toFixed(0)} Mo).`,maxChar:e=>`Le champ ne peut pas comporter plus de ${e.named("length")} caractères.`,minChar:e=>`Le champ doit contenir au moins ${e.named("length")} caractères.`,minValue:e=>`La valeur doit être supérieure ou égale à ${e.named("min")}.`,phoneNumber:"Ce champ n'est pas un numéro de téléphone valide.",required:"Ce champ est requis.",roleFormat:'Le nom du rôle ne peut pas contenir le caractère ":".',sum:e=>`La somme attendue est ${e.named("expectedValue")} (actuelle: ${e.named("currentValue")}).`},wlps:Ke,pages:Ye,components:Ze},Xe={auth:{resetPasswordLink:{forgotPassword:"Esqueceu sua senha?"}},cards:{needLoginCard:{needLogged:"Você precisa estar logado para ver este conteúdo."},productHomeCard:{inceptionToDateReturn:"Retorno desde o início",lastDay:"Mudança no último dia",lastPrice:"Último preço",na:"N/D",viewDetails:"Ver detalhes",yearToDateReturn:"Retorno no ano até a data"}},compliance:{cookies:{buttonText:"Aceitar",cookiesUsage:"Este site utiliza Cookies para melhorar a usabilidade. Ao utilizar este site, você declara seu consentimento para o uso de Cookies, bem como com a política de privacidade onde você pode encontrar mais informações sobre Cookies. Link: {0}.",privacyPolicy:"Política de privacidade"}},components:{downloadAsPngTooltip:"Baixar como PNG",details:{aumFormat:e=>`${e.named("currency")} ${(e.named("aum")/1e6).toFixed(1)} ${e.named("aum")>1e6?"milhão":"milhões"}${e.named("asOfDate")?` (em ${e.named("asOfDate")})`:""}`}},datePickers:{dateRangePicker:{from:"De (aaaa-mm-dd)",fullPeriod:"Período completo",to:"Até (aaaa-mm-dd)"},zoomPicker:{fiveYears:"5A",fullPeriod:"MAX",oneMonth:"1M",oneYear:"1A",sixMonths:"6M",threeMonths:"3M",tenYears:"10A",threeYears:"3A",twoYears:"2A",ytd:"YTD"}},dropdowns:{iconsDropdown:{noIcon:"Sem ícone"}},editPrompt:{copyInAllLangs:"Copiar em todos os idiomas",editField:"Editar campo",enterText:"Insira um texto",overwriteDataAllShareClasses:"Substituir dados de todas as classes de ações",id:"ID",idTooltip:"Este identificador único serve como referência para o componente dentro da plataforma. Cada componente criado precisa de um identificador distinto. Recomendamos a seguinte convenção para melhor legibilidade: use o título do componente, converta para minúsculas, substitua espaços por hífen. Para um componente intitulado 'Minha Tabela Analítica', o identificador seria 'minha-tabela-analitica'.",needUniqueId:"O identificador fornecido está sendo usado por outro componente no local atual ou em um vinculado. Por favor, forneça um identificador distinto para garantir a exclusividade.",numberOfDecimals:"Número de casas decimais",numberOfDecimalsTooltip:"O número de casas decimais para todos os números exibidos no componente. Observe que isso não inclui os eixos dos gráficos.",withBenchmark:"Mostrar com o benchmark",footnote:"Texto abaixo do componente",placeholderFootnote:"Um texto que aparece abaixo do componente. Ex: 'As taxas estão incluídas.'",langTabError:"Alguns campos são inválidos nos seguintes idiomas:",settingsOnlyUsedOnOverviewTooltip:"Esta configuração afeta exclusivamente a página 'Visão Geral'.",showOnFactsheet:"Mostrar no Factsheet",tabError:"Alguns campos são inválidos",title:"Título",titleEdit:e=>`Editar ${e.named("componentId")}`,titleAdd:"Adicionar componente",unsavedChangesAlert:"Você tem alterações não salvas. Se sair sem salvar, elas serão perdidas.",genericComponent:{addColumn:"Adicionar coluna",addRow:"Adicionar linha",addData:"Adicionar dados",barChart:"Gráfico de barras",cantChangeType:"Você não pode alterar o tipo de um componente genérico depois de salvá-lo. Se deseja um tipo diferente, precisa criar um novo componente genérico.",columnWithIndex:e=>`Coluna ${e.named("idx")}`,data:"Dados",date:"Data",donutChart:"Gráfico de rosca",exampleSector:"Ex: Setores",header:"Cabeçalho",key:"Chave",image:"Imagem",lineChart:"Gráfico de linhas",needData:"Você não pode salvar um componente genérico sem dados ou com dados parciais. Exclua-o, adicione dados ou complete os dados presentes antes de salvar.",pieChart:"Gráfico de pizza",removeData:"Remover dados",showColumnHeader:"Mostrar cabeçalho da coluna",table:"Tabela",text:"Texto",type:"Tipo",useBrandColor:"Usar cor da marca",value:"Valor",weightPercent:"Peso (em %)"},contacts:{addContact:"Adicionar contato",additionalText:"Texto adicional",email:"Email",exampleEmail:"Ex: jdoe@mail.com",exampleName:"Ex: John Doe",examplePhone:"Ex: +41 79 123 45 67",exampleRole:"Ex: Sócio",imageSquare:"Imagem (quadrada)",name:"Nome",phone:"Telefone",removeContact:"Remover contato",role:"Função"},dialog:{copyInAllLangs:{title:"Copiar em todos os idiomas",text:"Você vai copiar todos os valores do idioma atual para todos os outros idiomas. Tem certeza?"},saveFieldInAllShareClasses:{title:"Substituir",text:"Você vai substituir este campo em todas as outras classes de ações deste produto, não apenas na classe atual. Tem certeza?"},saveInAllShareClasses:{title:"Substituir",text:e=>`Você vai substituir os dados de "${e.named("tabName")}" de todas as outras classes de ações deste produto pelos dados de "${e.named("tabName")}" desta classe de ações. Tem certeza?`}},description:{contentTitle:"Descrição"},disclaimer:{contentTitle:"Aviso legal",defaultWarning:"Atualmente, você não tem um aviso legal para este produto. Portanto, o aviso padrão foi utilizado. Se você escrever um aviso legal aqui, ele será exibido apenas para este produto."},historicalPricesChart:{defaultLogScale:"Por padrão, em escala logarítmica",showLogScaleSwitch:"Mostrar alternador de escala logarítmica",priceIndexedTo100:"Indexado a 100"},holdingOverTime:{elementsInOthers:{title:'Elementos a considerar como "Outros"',multiSelect:{placeholder:"Selecionar elementos",selectLabel:"Pressione Enter para selecionar",deselectLabel:"Pressione Enter para remover",selectedLabel:"Selecionado",limitText:e=>`e mais ${e.named("count")}`}}},keyCharacteristics:{addKeyCharacteristics:"Adicionar características principais",exampleDynamicExposure:"Ex: Exposição dinâmica",exampleWeDynamicallyAdapt:"Ex: Adaptamos dinamicamente ...",header:"Cabeçalho",icon:"Ícone",paragraph:"Parágrafo",removeKeyCharacteristics:"Remover característica principal"},monthlyReturnsChart:{startDate:"Data de início",startDateTooltip:"Selecione uma data de início (no formato AAAA-MM-DD) para o gráfico. O gráfico será ajustada automaticamente para exibir dados a partir da data mais antiga disponível para o produto ou da data escolhida, o que for mais recente. Deixar este campo em branco exibirá todos os dados de preço disponíveis para o produto."},monthlyReturnsTable:{descending:"Classificar anos em ordem decrescente",startDate:"Data de início",startDateTooltip:"Selecione uma data de início (no formato AAAA-MM-DD) para a tabela de retornos. A tabela final será ajustada automaticamente para exibir dados a partir da data mais antiga disponível para o produto ou da data escolhida, o que for mais recente. Deixar este campo em branco exibirá todos os dados de preço disponíveis para o produto.",benchmark:"Benchmark",product:"Produto",return:"Retorno",nameReplacements:"Substituir nomes padrão",nameReplacementsTooltip:"Personalize os nomes do produto e do benchmark no componente. Deixe em branco para manter os nomes existentes."},notify:{componentSaveSuccess:e=>`Seu componente '${e.named("componentId")}' foi atualizado com sucesso.`},overviewHeader:{backgroundImage:"Imagem de fundo",backgroundImageTooltip:"Observe que a imagem atualmente em consideração também é utilizada como a imagem do cartão do produto na página inicial. Consequentemente, qualquer alteração nessa imagem afetará simultaneamente a representação do produto na página inicial.",text:"Texto",textTooltip:"Observe que o texto atualmente em consideração também é utilizado como o texto do cartão do produto na página inicial. Consequentemente, qualquer alteração nesse texto afetará simultaneamente a representação do produto na página inicial.",saveSuccess:"O cabeçalho foi atualizado com sucesso.",showDownloadLastFactsheetButton:'Mostrar botão "@:components.extras.downloadLastFactsheet.downloadLastFactsheet"',showDownloadLastFactsheetButtonTooltip:'Para que o botão esteja visível para um usuário, um documento deve ser marcado como "@:pages.products.documents.prompt.uploadFile.shouldConsiderLastFactsheet" na seção "Documentos", e deve estar disponível no idioma selecionado pelo usuário.',showFollowButton:"Mostrar botão de seguir",title:"Editar cabeçalho de visão geral"},predefinedHoldingComponent:{chartType:"Tipo de gráfico",barChart:"Gráfico de barras",donutChart:"Gráfico de rosca",pieChart:"Gráfico de pizza",table:"Tabela",useBrandColor:"Usar cor da marca",assetClasses:{editAssetClasses:"Editar classes de ativos"},currencyExposure:{editCurrencyExposure:"Editar exposição cambial"},instrumentTypes:{editInstrumentTypes:"Editar tipos de instrumentos"},onlyShowTopThenOthers:{title:"Mostrar apenas os principais",tooltip:'Mostrar apenas os X principais (número escolhido) e mesclar os restantes em "Outros". Deixe em branco para mostrar todos.'},regions:{editRegions:"Editar regiões"},sectors:{editSectors:"Editar setores"}},productDetails:{addDetail:"Adicionar detalhe",exampleIsin:"Ex: ISIN",exampleLU:"Ex: LU2220388479",key:"Chave",noteDragAndDrop:"Nota: Arraste e solte as linhas para reordenar os detalhes.",removeDetail:"Remover detalhe",showAuM:"Mostrar AuM",showLastPrice:"Mostrar último preço",value:"Valor"},relativePerformanceChart:{footnote:"Nota de rodapé",placeholderFootnote:"Um texto que aparece abaixo do gráfico. Ex: 'As taxas estão incluídas.'"},riskProfile:{level:"Nível de risco"},shareClassesTable:{bloomberg:"Bloomberg",class:"Classe",defaultFootnote:"SI perf.: os retornos para períodos desde a criação de mais de um ano são anualizados, e não anualizados se menos de um ano.",footnote:"Nota de rodapé",inceptionDate:"Data de criação",isin:"ISIN",mgmtFee:"Taxa de gestão",perfFee:"Taxa de desempenho",title:"Editar tabela de classes de ações"},statistics:{benchmark:"Benchmark",product:"Produto",nameReplacements:"Substituir nomes padrão",nameReplacementsTooltip:"Personalize os nomes do produto e do benchmark no componente. Deixe em branco para manter os nomes existentes. Por exemplo, use um termo como 'Produto' para abreviar e economizar espaço na exibição.",fieldsToDisplay:"Campos a serem exibidos",noteDragAndDrop:"Nota: Arraste e solte as linhas para reordenar as estatísticas exibidas.",shownStatisticName:"Nome da estatística exibida",showStatistic:"Mostrar estatística",statisticId:"ID da estatística"},statisticsWithPeriods:{benchmark:"Benchmark",product:"Produto",nameReplacements:"Substituir nomes padrão",nameReplacementsTooltip:"Personalize os nomes do produto e do benchmark no componente. Deixe em branco para manter os nomes existentes. Por exemplo, use um termo como 'Produto' para abreviar e economizar espaço na exibição.",fieldsToDisplay:"Campos a serem exibidos",noteDragAndDrop:"Nota: Arraste e solte as linhas para reordenar as estatísticas exibidas.",periodsTitle:"Períodos a serem exibidos",shownStatisticName:"Nome da estatística exibida",showStatistic:"Mostrar estatística",statisticId:"ID da estatística",periods:{1:"1M",3:"3M",6:"6M",ytd:"YTD",12:"1A",36:"3A",60:"5A",max:"MAX"}},topHoldings:{fieldsToDisplay:"Campos a serem exibidos",showHeader:"Mostrar cabeçalho",showTotal:"Mostrar total",numHoldings:{title:"Número de participações a exibir",tooltip:"Se você deixar este campo em branco, todos os dados disponíveis para as participações do produto serão exibidos."},holdingsToIgnore:{title:"Participações a ignorar",holdingsMultiselect:{placeholder:"Selecionar participações a ignorar",selectLabel:"Pressione Enter para selecionar",deselectLabel:"Pressione Enter para remover",selectedLabel:"Selecionado",limitText:e=>`e mais ${e.named("count")}`}},customizeTable:"Personalizar tabela",addColumn:"Adicionar coluna",columnWithIndex:e=>`Coluna ${e.named("idx")}`}},extras:{changeRoles:{changeRoles:"Alterar funções",notify:{errorText:"Nenhuma função foi atualizada. Motivo: ",successText:"Funções do usuário foram atualizadas"}},deleteGenericComponent:{delete:"Excluir",deleteAllComponents:"Excluir todos os componentes",deleteOnlyThisComponent:"Excluir apenas este componente",deleting:"Excluindo ...",deleteSuccess:"Exclusão bem-sucedida.",page:"Página",shareClass:"Classe de ações",textIsNotLinked:"Você está prestes a excluir permanentemente um componente genérico. Esta ação não pode ser desfeita. Por favor, confirme se deseja prosseguir com a exclusão.",textIsLinkedFirstPart:"Você está prestes a excluir permanentemente um componente genérico. Esta ação não pode ser desfeita. Observe que este componente está vinculado ao mesmo componente nas seguintes localizações: ",textIsLinkedSecondPart:"Por favor, confirme se deseja prosseguir com a exclusão e decida se deseja excluir apenas o componente atual ou se deseja excluir este componente e todos os componentes vinculados.",title:e=>`Exclusão permanente de ${e.named("componentId")}`,pageList:{factsheet:"Factsheet",overview:"Visão geral"}},downloadLastFactsheet:{downloadLastFactsheet:"Baixar último factsheet",downloadingLastFactsheet:"Baixando...",needLogin:{text:"Para baixar este documento, você precisa estar autenticado.",title:"Você precisa estar autenticado"}},manualVerifyEmail:{forceVerification:"Forçar verificação de e-mail",verified:"E-mail verificado",notify:{errorText:"A verificação forçada de e-mail falhou.",successText:"O e-mail do usuário foi verificado manualmente."}},riskProfile:{higherRisk:"Maior risco",lowerRisk:"Menor risco",potentiallyHigherReward:"Potencialmente maior retorno",potentiallyLowerReward:"Potencialmente menor retorno"}},factsheet:{lastPrice:"Último preço"},graphs:{logScale:"Escala logarítmica",notEnoughData:"Não há dados suficientes para plotar este gráfico, selecione um intervalo de datas maior.",needMoreData:"Para calcular essa métrica, é necessário um certo número de dados no início. Aumente o período de tempo para acessar essa métrica."},holdingData:{others:"Outros"},images:{uploadImage:{darkening:"Escurecimento",file:"Arquivo",noFile:"Nenhum arquivo",noImage:"Nenhuma imagem",selectFile:"Selecionar arquivo",selectNewImage:"Selecionar nova imagem",errorTitleTooLarge:"Imagem muito grande",errorMessageTooLarge:"A imagem é muito grande. Por favor, selecione outra imagem com tamanho inferior a 30 MB.",warningTitleVeryLarge:"Imagem muito grande",warningMessageVeryLarge:"A imagem é muito grande. Isso tornará as páginas que exibem esta imagem mais lentas para carregar. Para melhor desempenho, recomenda-se usar imagens menores que 10 MB."}},linkPrompt:{componentLinkedTo:"Este componente está vinculado a:",currentPage:"Página atual",currentShareClass:"Classe de ações atual",linkThroughPagesTooltip:'Habilitar este recurso cria uma conexão sincronizada entre componentes em várias páginas. Por exemplo, vincular as páginas "Factsheet" e "Visão Geral" garante que qualquer edição em um componente compartilhado seja atualizada simultaneamente em ambas as páginas. Importante: O conteúdo do componente vinculado é duplicado da página de origem que você está editando no momento. Se você iniciar o vínculo ao editar o componente "descrição" da página "Factsheet", o componente "descrição" do "Factsheet" será copiado para a "Visão Geral" e, assim, substituirá o componente "descrição" da "Visão Geral".',linkThroughShareClassesTooltip:'Habilitar este recurso cria uma conexão sincronizada entre componentes em várias classes de ações. Por exemplo, vincular "Minha Classe de Ações A" e "Minha Classe de Ações B" garante que qualquer edição em um componente compartilhado seja atualizada simultaneamente em ambas as classes de ações. Importante: O conteúdo do componente vinculado é duplicado da página de origem que você está editando no momento. Se você iniciar o vínculo ao editar o componente "descrição" da página "Minha Classe de Ações A", o componente "descrição" da "Minha Classe de Ações A" será copiado para a "Minha Classe de Ações B" e, assim, substituirá o componente "descrição" da "Minha Classe de Ações B".',linkedWithPages:"Vinculado às seguintes páginas",linkedWithShareClasses:"Vinculado às seguintes classes de ações",page:"Página",shareClass:"Classe de ações",title:e=>`Editar vínculo de ${e.named("componentId")}`,unlink:"Desvincular",unlinking:"Desvinculando ...",unsavedChangesAlert:"Você tem alterações não salvas. Se sair sem salvar, elas serão perdidas.",confirmSaveDialog:{computingNewLinks:"Calculando novos vínculos...",onceLinked:"Uma vez vinculado, quando uma alteração for aplicada a um componente em qualquer um desses locais (incluindo o atual), todos os outros componentes vinculados serão atualizados da mesma forma. Por favor, confirme se deseja prosseguir com a gravação.",overwrittenExistingComponent:"Substituindo um componente com o mesmo id",overwrittenExistingComponentTooltip:e=>`Aviso: Já existe um componente com ID '${e.named("componentId")}' neste local, portanto ele será substituído por este componente se você vinculá-lo.`,title:"Confirmar salvamento de novos vínculos",youAreAboutToLink:"Você está prestes a vincular o componente atual aos componentes nas seguintes localizações:"},notify:{linkSaveSuccess:e=>`A atualização de vínculo de '${e.named("componentId")}' foi bem-sucedida.`},multiselect:{placeholder:"Selecione páginas para vincular",selectLabel:"Pressione Enter para selecionar",deselectLabel:"Pressione Enter para remover",selectedLabel:"Selecionado"},overviewHeader:{title:"Editar vínculo do cabeçalho da visão geral",saveSuccess:"A atualização de vínculo do cabeçalho foi bem-sucedida."},pageList:{factsheet:"Factsheet",overview:"Visão Geral",analysis:"Análise"}},pricesManagement:{addData:"Adicionar dados",autoDataUpdate:"Seus dados são atualizados automaticamente.",date:"Data",datePlaceholder:"AAAA-MM-DD",dateValidationError:"Você não pode adicionar uma data que já possui um valor.",exportCsv:"Exportar como CSV",importCsv:"Importar de CSV",importCsvFormat:"O arquivo de entrada deve estar no formato CSV, com duas colunas e uma linha de cabeçalho. A primeira coluna deve consistir em datas, e a segunda coluna deve consistir em números (o preço na data correspondente). Certifique-se de que seu CSV seja válido para evitar problemas ao ler e analisar os dados.",loadingData:"Carregando dados...",price:"Preço",removeData:"Remover dados",benchmarks:{noBenchmark:"Nenhum benchmark disponível para este produto."},dialog:{removeData:{title:"Remover um ponto de dados",text:"Você está prestes a remover completamente um ponto de dados. Tem certeza?"}},notify:{dateUsedMultipleTimeError:"Existem vários preços associados a uma data. Você deve garantir que cada data tenha um preço único atribuído a ela.",numberFormatError:'Pelo menos um dos números tem um formato não reconhecido. Idealmente, você não deve usar separadores para milhares e usar um ponto como separador decimal, pois este é o formato esperado. Por exemplo, "102.12", "1380.25", "18.952", ...',saveErrorText:"Erro ao atualizar os preços, entre em contato conosco.",saveSuccessText:"Os preços foram atualizados com sucesso."},prompt:{addPrice:"Adicionar um preço",importCsv:"Importar dados de CSV"}},tables:{metricsTable:{na:"N/D",name:"Nome",showLess:"Mostrar menos",showMore:"Mostrar mais"},monthlyReturnsTable:{benchmark:"Benchmark",return:"Retorno"},performanceTable:{computedFromTo:e=>`Desempenho calculado de ${e.named("firstDate")} a ${e.named("lastDate")}.`,notAvailableData:"Dados indisponíveis, seja porque não há dias suficientes para calcular, os dados não são significativos (ex.: sharpe ratio negativo) ou o benchmark não está sempre disponível durante o período selecionado."},topHoldingsTable:{holdingFields:{assetClass:"Classe de ativo",currency:"Moeda",holdingName:"Nome",instrumentType:"Tipo de instrumento",isin:"ISIN",region:"Região",sector:"Setor",value:"Valor",weight:"Peso"},totalOfPortfolio:"Total do portfólio"}},thirdParty:{vuePhoneNumberInput:{countrySelectorLabel:"Código do país",countrySelectorError:"Selecione um país",phoneNumberLabel:"Número de telefone",example:"Exemplo :"}}},et={admin:{disclaimer:"Aviso Legal",enterText:"Digite um texto",operations:{generateFactsheets:{allLanguages:"Todos os idiomas",allProducts:"Todos os produtos",createdAt:"Criado em",factsheetGeneration:"Geração de ficha técnica",factsheetGenerationFilters:"Filtros de geração de ficha técnica",fileName:"Nome do arquivo",generationNotPossibleDate:"A data selecionada é anterior à data de criação do produto.",generationNotPossibleLang:"Este idioma não está disponível para o produto selecionado.",generationPossible:"Geração de ficha técnica possível.",generationWarningFileExists:"Já existe um arquivo com este nome e idioma. Continuar irá sobrescrever o arquivo existente.",generateSelectedFactsheets:"Gerar fichas técnicas selecionadas",generationStatus:"Status da geração",backToDashboardButton:"Voltar ao painel",backToFiltersButton:"Voltar aos filtros",language:"Idioma",lastDateToInclude:"Última data a incluir",lastDayOfData:"Último dia de dados",loadingOperations:"Carregando operações...",newButton:"Gerar novas fichas técnicas...",preparingFactsheetsGeneration:"Preparando a lista de fichas técnicas para geração...",product:"Produto",refreshButton:"Atualizar",requireLogin:"Login obrigatório para acesso",selectFactsheetsForGeneration:"Selecionar Fichas Técnicas para Geração",selectLanguages:"Selecionar idiomas",selectProducts:"Selecionar produtos",setAsLastFactsheet:"Definir como última ficha técnica do produto",showAvailableFactsheet:"Mostrar fichas técnicas disponíveis",status:"Status",langMultiselect:{placeholder:"Selecione idiomas para incluir",selectLabel:"Pressione Enter para selecionar",deselectLabel:"Pressione Enter para remover",selectedLabel:"Selecionado",limitText:e=>`e mais ${e.named("count")}`},metaInfo:{title:"Admin - Operações - Gerar Fichas Técnicas"},productsMultiselect:{placeholder:"Selecione produtos para incluir",selectLabel:"Pressione Enter para selecionar",deselectLabel:"Pressione Enter para remover",selectedLabel:"Selecionado",limitText:e=>`e mais ${e.named("count")}`},statuses:{failed:"Falhou",pending:"Pendente",running:"Em execução",succeeded:"Concluído"},successDialog:{title:"Operação criada",text:"A operação foi lançada com sucesso!"}}},platformSettings:{platformSettings:"Configurações da Plataforma",complianceTab:{checksActivated:"Verificações ativadas",editTitle:"Editar conformidade",title:"Conformidade",investorProfile:{disclaimerTooltip:"Este texto será mostrado aos usuários que acessarem a Plataforma e forem solicitados a selecionar seu perfil de investidor (tipo e país). Certifique-se de escrever um aviso legal apropriado.",goToInvestorProfilePage:"Abrir página",seeInvestorProfilePage:"Ver página do perfil do investidor",showLogoOnInvestorProfile:"Mostrar logotipo na página do perfil do investidor",title:"Perfil do investidor",tooltip:'Você pode ativar as verificações de perfil do investidor, o que significa que, ao acessar sua Plataforma pela primeira vez, o usuário precisará selecionar seu tipo de investidor (varejo, profissional, institucional), além de seu país. Depois, você poderá configurar qual tipo de investidor e de qual país está autorizado a ver cada produto/classe de ações; isso pode ser feito na seção Admin > Produtos, na aba "Restrições de acesso", após ativar as verificações aqui.'},notify:{saveSuccessText:"Suas configurações de conformidade foram atualizadas com sucesso.",saveSuccessTextWithLang:e=>`Suas configurações de conformidade foram atualizadas com sucesso (idioma: ${e.named("lang")}).`},ombudsman:{title:"Texto do Ombudsman",tooltip:"Se precisar de uma referência ao seu ombudsman nesta Plataforma, escreva o texto que será mostrado aos usuários que consultarem seu ombudsman. Um link para este texto estará visível no rodapé da Plataforma, próximo à Política de Privacidade."},productDisclaimer:{title:"Aviso legal padrão do produto",tooltip:'Defina um aviso legal padrão do produto que será usado para todos os produtos que não possuírem um aviso legal específico. Você pode definir um aviso legal específico para o produto em "Admin > Produtos", selecionando o produto de sua escolha e definindo o aviso legal específico na aba "Geral".'}},rolesTab:{editTitle:"Editar funções",title:"Funções",description:'Por padrão, apenas o papel "admin" existe, uma função que concede direitos administrativos sobre todos os produtos e acesso às configurações da plataforma. Pode ser útil ter funções mais detalhadas, por exemplo, concedendo a alguns usuários acesso administrativo apenas a determinados produtos. Para criar essas funções, use a tabela abaixo. Observe que, após salvar as funções, você precisará ir à página {0} para atribuir as funções aos usuários de sua escolha.',table:{roleNameHeader:"Nome da função",productsHeader:"Produtos com direitos de administrador",removeRoleTooltip:"Remover função",addRoleTooltip:"Adicionar função",productsMultiselect:{placeholder:"Selecione o produto",selectLabel:"Pressione Enter para selecionar",deselectLabel:"Pressione Enter para remover",selectedLabel:"Selecionado",limitText:"e mais {count}"}},notify:{saveSuccessText:"Suas funções foram atualizadas com sucesso."}},metaInfo:{title:"Admin - Configurações da Plataforma"}},products:{contactUsToFixError:"Por favor, entre em contato conosco usando o formulário de contato para corrigir este erro!",langTabError:"Alguns campos estão inválidos no idioma:",overwriteDataAllShareClasses:"Sobrescrever dados de todas as classes de ações",tabError:"Alguns campos estão inválidos",unsavedChangesAlert:"Você tem alterações não salvas. Se sair sem salvar, elas serão perdidas.",accessRestrictionsTab:{allCountries:"Todos os países",countriesAllowedForInstitutionalInvestors:"Países permitidos para investidores institucionais",countriesAllowedForProfessionalInvestors:"Países permitidos para investidores profissionais",countriesAllowedForRetailInvestors:"Países permitidos para investidores de varejo",editAccessRestrictions:"Editar restrições de acesso",title:"Restrições de acesso",warningEnablingAccessRestrictions:'Para poder modificar as restrições de acesso, ative as verificações de perfil de investidor em {0}, na aba "Conformidade".'},contactsTab:{addAnyPerson:"Adicione qualquer pessoa que você deseja mostrar na sua ficha técnica.",additionalText:"Texto adicional",email:"E-mail",imageSquare:"Imagem (quadrada)",name:"Nome",phone:"Telefone",role:"Função",title:"Contatos"},dataTab:{title:"Dados",benchmarks:{title:"Referências"},product:{title:"Produto"}},detailsTab:{editDetails:"Editar detalhes",key:"Chave",showOnFactsheet:"Mostrar na Ficha Técnica",title:"Detalhes",value:"Valor"},dialog:{saveFieldInAllShareClasses:{title:"Sobrescrever",text:"Você vai sobrescrever este campo em todas as outras classes de ações deste produto, não apenas na classe de ações atual. Tem certeza?"},saveInAllShareClasses:{title:"Sobrescrever",text:e=>`Você vai sobrescrever os dados de "${e.named("tabName")}" de todas as outras classes de ações deste produto com os dados de "${e.named("tabName")}" desta classe de ações (não apenas as últimas alterações que você fez). Tem certeza?`}},followersTab:{addedByAdmin:"Adicionado pelo administrador",addFollowerButton:"Adicionar um seguidor",email:"E-mail",exportCsv:"Exportar como CSV",importCsv:"Importar do CSV",noDataText:"Ninguém está seguindo este produto",product:"Produto",removeFollowerTooltip:"Remover seguidor para o produto correspondente",sendEmail:"Enviar um e-mail",showAnyShareClass:"Mostrar seguidores de qualquer classe de ações",title:"Seguidores",addFollowerPrompt:{email:"E-mail do seguidor",emailAlreadyExists:"Alguém com este endereço de e-mail já está seguindo este produto.",file:"Arquivo CSV",language:"Idioma do seguidor",text:"Antes de adicionar um seguidor manualmente, você precisa garantir que ele concorda em receber as informações que você planeja enviar.",titleAddFollower:"Adicionar seguidor",titleImportFollowers:"Importar seguidores"},notify:{newFollowerAddedSuccess:"O novo seguidor foi adicionado com sucesso.",newFollowerAddedError:"Houve um problema ao adicionar o novo seguidor. Tente novamente ou entre em contato conosco se o problema persistir.",noDataInCsv:"Nenhum e-mail para adicionar (após filtrar e-mail(s) já presente(s)).",noEmailHeader:"Seu arquivo está faltando um cabeçalho de coluna representando os e-mails. Os cabeçalhos de coluna aceitos são os seguintes (sem distinção de maiúsculas e minúsculas): email ou e-mail.",followerRemovedSuccess:"O seguidor foi removido com sucesso.",followerRemovedError:"Houve um problema ao remover o seguidor. Tente novamente ou entre em contato conosco se o problema persistir.",wrongFormatEmails:e=>`Seu arquivo contém e-mail(s) em formato incorreto: ${e.named("emails")}`},removeFollowerPrompt:{acceptText:"Remover seguidor",text:e=>`Tem certeza de que deseja remover "${e.named("followerEmail")}" de seguir o produto "${e.named("productName")}"?`,title:"Remover seguidor"}},generalTab:{backgroundImage:"Imagem de fundo",description:"Descrição",editGeneralField:"Editar campo geral",factsheetBackgroundImage:"Imagem de fundo da ficha técnica",hidden:"Oculto",hiddenProductTooltip:"Ocultar o produto na plataforma para usuários não administradores.",icon:"Ícone",riskProfile:"Perfil de risco (SRRI)",showLogoOnFactsheet:"Mostrar logotipo na ficha técnica (canto superior direito da primeira página)",title:"Geral"},holdingComponentsTab:{barChart:"Gráfico de barras",data:"Dados",date:"Data",donutChart:"Gráfico de rosca",header:"Cabeçalho",key:"Chave",loadingData:"Carregando dados...",noData:"Este produto não possui dados de participações.",pieChart:"Gráfico de pizza",shownOnOverview:"Mostrado na visão geral",table:"Tabela",title:"Componentes de participações",type:"Tipo",weightPercent:"Peso (em %)",componentTitle:{assetClasses:"Classes de ativos",currencyExposure:"Exposição cambial",instrumentTypes:"Tipos de instrumentos",regions:"Regiões",sectors:"Setores",topHoldings:"Principais participações"}},keyCharacteristicsTab:{header:"Cabeçalho",icon:"Ícone",paragraph:"Parágrafo",title:"Principais características"},metaInfo:{title:"Admin - Configurações de Produtos"},notify:{productSaveSuccess:e=>`A configuração do seu produto '${e.named("productName")}' foi atualizada com sucesso.`,productSaveSuccessWithLang:e=>`A configuração do seu produto '${e.named("productName")}' foi atualizada com sucesso (idioma: ${e.named("lang")}).`},selectCard:{loadingProducts:"Produtos estão carregando...",loadingShareClasses:"Classes de ações estão carregando...",noProducts:"Você não possui produtos.",selectProduct:"Selecionar um produto",selectShareClass:"Selecionar uma classe de ações"}},users:{tabName:"Lista de usuários",company:"Empresa",country:"País",email:"E-mail",emailCopied:"O e-mail foi copiado.",investorType:"Tipo de investidor",name:"Nome",lastVisit:"Última visita",phone:"Telefone",roles:"Funções",metaInfo:{title:"Admin - Lista de Usuários"}}},auth:{email:"E-mail",errorAlreadyEmailAndPasswordRegister:"Você já está registrado com este e-mail com uma senha. Faça login com este e-mail e sua senha.",errorInternal:"Ocorreu um erro interno. Por favor, entre em contato conosco.",or:"ou",password:"Senha",login:{errorAccountNotExist:"Você não tem uma conta nesta plataforma, por favor crie uma conta e tente novamente.",errorInvalidLoginCredentials:"As credenciais fornecidas não correspondem a nenhuma de nossas contas de usuário. Isso pode ser devido a um e-mail ou senha incorretos, à ausência de uma conta associada ao e-mail inserido, ou à possibilidade de que o e-mail esteja vinculado a um método de login alternativo (como Google). Verifique suas informações e tente novamente ou crie uma conta, se necessário.",errorNeedEmailVerification:"Você precisa verificar seu e-mail antes de tentar se conectar à nossa plataforma. Verifique seus e-mails (e sua pasta de spam) para encontrar o e-mail. Se você não conseguir encontrá-lo, redefina sua senha.",noAccountYet:"Ainda não tem uma conta?",rememberMe:"Lembrar de mim",welcomeBack:"Bem-vindo de volta, faça login na sua conta.",dialog:{alreadyLoggedInText:"Você já está logado!"},metaInfo:{title:"Plataforma - Login"},notify:{newAccessRight:{title:"Novos direitos de acesso",text:"Você foi desconectado automaticamente porque recebeu novos direitos de acesso que exigem um novo login para serem validados."},registrationSuccess:{title:"Registro bem-sucedido",text:"Registro bem-sucedido, enviamos uma mensagem para validar seu endereço de e-mail, verifique sua caixa de entrada!"},requiresRecentLogin:{title:"Reautenticação Necessária",text:"Para prosseguir com esta ação, faça login novamente, pois sua sessão expirou. Uma vez reautenticado, você pode tentar a ação novamente."},unexpectedError:{title:"Erro Inesperado",text:"Ocorreu um erro inesperado. Faça login novamente. Se o problema continuar, entre em contato com o suporte para assistência."}}},login2fa:{enterCode:"Por favor, insira o código de 6 dígitos do seu aplicativo autenticador.",incorrectCode:" O código está incorreto. Tente novamente.",title:"Autenticação de 2 Fatores",verify:"Verificar",verifying:"Verificando..."},register:{alreadyRegistered:"Já registrado?",confirmPassword:"Confirme a senha",createAccount:"Criar conta",errorAlreadyEmailAndPasswordRegister:"Você já tem uma conta com este e-mail. Faça login na sua conta.",errorAlreadyGoogleRegister:"Você já está registrado com esta conta do Google. Faça login com esta conta.",errorAlreadyMicrosoftRegister:"Você já está registrado com esta conta da Microsoft. Faça login com esta conta.",fillBelowForm:'Preencha o formulário abaixo para criar uma nova conta. Os campos marcados com <span class="text-danger">*</span> são obrigatórios.',registerWith:"Registrar-se com: ",form:{agreeAdvertisementOnly:"Eu concordo explicitamente que todas as informações fornecidas nesta plataforma são apenas para fins informativos e publicitários e não devem ser interpretadas como uma oferta, aconselhamento ou recomendação para comprar ou vender qualquer título específico ou para realizar qualquer transação.",certifyAdult:"Eu certifico que tenho 18 anos ou mais.",company:"Empresa",confirmPassword:"Confirme a senha",email:"E-mail",firstName:"Nome",investorProfileCountry:"País",investorProfileType:"Tipo de investidor",lastName:"Sobrenome",needAgree:"Você precisa concordar",phone:"Telefone",privacyPolicy:"política de privacidade",registeringAccept:"Ao se registrar, você aceita nossos {0} e {1}.",termsOfUse:"termos de uso"},dialog:{alreadyLoggedInText:"Você já está logado!"},metaInfo:{title:"Plataforma - Registrar"}},register2fa:{generatingQrCode:"Gerando o código QR...",incorrectCode:" O código está incorreto. Tente novamente.",need2fa:'Para acessar a plataforma, configure a autenticação de 2 fatores (2FA). Escaneie o código QR abaixo ou insira a chave secreta fornecida em um aplicativo autenticador, como "Google Authenticator" ou "Microsoft Authenticator".',title:"Configurar Autenticação de 2 Fatores",verify:"Verificar",verifying:"Verificando..."},resetPassword:{title:"Redefinir senha",sendEmail:"Enviar e-mail",dialog:{internalErrorText:"Ocorreu um erro interno. Por favor, entre em contato conosco.",resetEmailSent:{title:"E-mail de redefinição enviado",text:e=>`Um e-mail de redefinição foi enviado para a caixa de entrada de ${e.named("email")}. Se não aparecer em breve, verifique a caixa de spam.`},unknownEmail:{title:"E-mail não existe",text:"O e-mail fornecido para redefinir a senha não existe. Para criar uma conta com este e-mail, vá para a página de registro."}},metaInfo:{title:"Plataforma - Redefinir Senha"}}},compliance:{investorProfile:{agreeAndConfirmSelection:"Concordar e confirmar seleção",byClickingAcceptDisclaimer:"Ao clicar no botão abaixo, confirmo que li e aceito o aviso acima e concordo com a {0} e os {1} desta plataforma.",pleaseChooseProfile:"Por favor, escolha seu país de residência e perfil de investidor para continuar.",privacyPolicy:"política de privacidade",termsOfUse:"termos de uso",title:"Perfil do investidor",metaInfo:{title:"Plataforma - Perfil do investidor"}},ombudsman:{title:"Ombudsman",metaInfo:{title:"Plataforma - Ombudsman"}},privacyPolicy:{endDate:"Crissier, 31 de agosto de 2023",title:"Política de Privacidade",metaInfo:{title:"Plataforma - Política de Privacidade"},introductionParagraph:{title:"Introdução",para1:"Alquant SA (doravante referida como Alquant, 'nós', 'nos') é a empresa que opera esta plataforma. Alquant SA respeita a privacidade dos usuários de sua presença na web. Isso significa que os dados pessoais são coletados, processados e usados de acordo com as disposições da lei de proteção de dados aplicável e com base nesta política de privacidade.",para2:"Isso também se aplica - e em particular - à cooperação com parceiros e terceiros que utilizamos para o processamento de contratos.",para3:"Ao concordar com a seguinte política de privacidade, você consente com os processos de tratamento de dados da Alquant detalhados abaixo em relação à coleta, processamento e uso de dados, em conformidade com as leis de proteção de dados e as disposições a seguir. Este consentimento pode ser revogado a qualquer momento com efeito futuro.",para4:"Nossa prática de proteção de dados é, portanto, consistente com a nova Lei Federal de Proteção de Dados (nFADP) e, quando aplicável, com o Regulamento Geral de Proteção de Dados da UE (GDPR)."},accountableAuthorityParagraph:{title:"Autoridade responsável / Representante da UE",switzerland:"Suíça",euRepresentativeSub:{title:"Representante da UE",para1:"Nos casos referidos no Artigo 3, parágrafo 2 do Regulamento (UE) 2016/679 (Regulamento Geral de Proteção de Dados; GDPR) e de acordo com o Artigo 27 do GDPR como representante na UE é designado e em referência ao requisito da função de Oficial de Proteção de Dados da nFADP suíça:",para3:"Você pode entrar em contato com nosso representante da UE em: info(at)alquant.com"},accountableAuthoritySub:{email:"E-mail",phone:"Telefone",title:"Autoridade responsável e função de Proteção de Dados de acordo com a nFADP suíça",para1:"A responsabilidade pelo processamento de dados pessoais é de:",para3:"Para qualquer solicitação relacionada à proteção de suas informações pessoais, entre em contato com nosso oficial de privacidade em: compliance(at)alquant.com."}},personalDataParagraph:{title:"Dados Pessoais",para1:"Dados pessoais são qualquer informação relacionada a uma pessoa natural identificada ou identificável; uma pessoa natural é considerada identificável se puder ser identificada direta ou indiretamente, em particular por referência a um identificador, como um nome, número de identificação, dados de localização, um identificador online ou uma ou mais características especiais que expressem a identidade física, fisiológica, genética, mental, econômica, cultural ou social dessa pessoa natural. Isso inclui, por exemplo, seu nome, número de telefone, endereço, bem como todos os dados fornecidos ao se registrar e criar sua conta de cliente. Dados estatísticos ou anonimizados, que coletamos, por exemplo, ao visitar nossa loja virtual e que não podem ser diretamente vinculados a sua pessoa, não estão cobertos aqui."},purposeOfDataCollectionParagraph:{title:"Finalidades da Coleta de Dados",para1:"a) A coleta e o processamento desses dados são realizados para fins de cumprimento de contrato, para permitir o uso de nosso site (estabelecimento de conexão), para garantir a segurança e estabilidade do sistema de forma permanente, para otimizar nossa presença na web e para fins estatísticos internos. Coletamos, armazenamos e processamos dados pessoais exclusivamente de acordo com as regulamentações legais aplicáveis e na medida em que seja necessário e requerido para cumprir e melhorar as obrigações de desempenho contratual entre nós e o usuário/cliente. Isso também inclui o armazenamento de dados para qualquer reivindicação de garantia após o término do contrato.",para2:"b) Além disso, usamos seus dados dentro do escopo da lei aplicável para nossos próprios fins de marketing, a fim de otimizar nossa presença na web e chamar sua atenção para serviços que possam ser de particular interesse para você.",para3:"c) Além disso, a coleta, o processamento e o uso de dados pessoais só ocorrem se você tiver dado seu consentimento."},newsletterParagraph:{title:"Newsletter",para1:"A Alquant gosta de informá-lo regularmente sobre tópicos atuais e projetos relacionados ao nosso campo de atividade por meio do boletim informativo. Você receberá nosso boletim informativo por e-mail apenas mediante solicitação expressa. Utilizamos o processo de opt-in para enviar o boletim informativo, o que significa que você só receberá nosso boletim por e-mail se tiver previamente se registrado explicitamente para a entrega do boletim. Ao se registrar para o boletim informativo, seu endereço de e-mail será usado com seu consentimento para nossos próprios fins promocionais até que você cancele sua inscrição. Você pode cancelar a inscrição a qualquer momento enviando um e-mail especificando isso para o nosso endereço de contato info(at)alquant.com. Estamos autorizados a contratar terceiros para o manuseio técnico de atividades promocionais e estamos autorizados a passar seus dados para esse fim.",para2:"Os dados fornecidos por você ao se registrar para o boletim informativo (nome e endereço de e-mail) serão armazenados e usados apenas para enviar o boletim."},legalBasisParagraph:{title:"Base Legal para Processamento",para1:"Processamos seus dados pessoais principalmente para cumprir obrigações contratuais e nossas obrigações legais. Além disso, ao aceitar esta política de privacidade, você consente com todas as operações de processamento especificadas nesta política de privacidade. Obviamente, você pode revogar seu consentimento a qualquer momento; uma declaração para compliance(at)alquant.com é suficiente. Qualquer processamento realizado até o momento não será afetado pelo cancelamento."},legitimateInterestParagraph:{title:"Interesses legítimos para processamento",para1:"Além da base legal mencionada para o processamento de dados, também processamos dados com base em nossos interesses legítimos. Isso se aplica em particular, mas não se limita a, processamento para fins de marketing e promocionais. Perseguimos, em particular, os seguintes interesses:",list1:{el1:"garantir o uso potencial do site",el2:"prevenir fraudes",el3:"garantir a segurança e estabilidade dos sistemas de TI",el4:"nossos próprios fins de marketing",el5:"fins estatísticos internos"}},disclosureParagraph:{title:"Divulgação",para1:"Só divulgamos seus dados pessoais se você tiver dado seu consentimento expresso, se houver uma obrigação legal para fazê-lo ou se isso for necessário para fazer valer nossos direitos - em particular, para fazer valer reivindicações decorrentes da relação contratual. Além disso, divulgamos seus dados a terceiros, na medida em que for necessário para a execução do contrato. Divulgamos os dados necessários para subsidiárias, empresas de transporte, bancos e outros prestadores de serviços para este fim. Esses prestadores de serviços usam seus dados exclusivamente para o processamento do pedido e não para outros fins. Além disso, utilizamos alguns serviços prestados por terceiros para otimizar sua visita ao nosso site. É garantido (contratualmente) que esses prestadores de serviços tratam seus dados de forma confidencial e de acordo com as regulamentações legais aplicáveis, e que seus dados são usados apenas para a finalidade do serviço respectivo. Qualquer transferência ou revenda dos dados a terceiros pela Alquant, além das disposições desta política de privacidade, é excluída, a menos que o usuário tenha dado seu consentimento expresso para a divulgação de seus dados. Nesse caso, o usuário pode revogar esse consentimento a qualquer momento. Operações de processamento realizadas anteriormente com base em seu consentimento não serão afetadas.",para2:"A Alquant está autorizada a repassar seus dados pessoais para terceiros no exterior se isso for necessário para a execução do contrato. Esses terceiros estão sujeitos ao mesmo nível de proteção de dados que o provedor. Se o nível de proteção de dados em um país não corresponder ao nível suíço, garantimos contratualmente que a proteção de seus dados pessoais corresponda em todos os momentos à da Suíça."},singleSignOnProcedureParagraph:{title:"Uso de procedimentos de login único",para1:"Em nosso site, se você tiver um perfil do Google ou Microsoft, pode se inscrever para criar uma conta de cliente ou se registrar usando o plugin social utilizando a técnica de Single Sign On. Os plugins são identificados com o logotipo do provedor.",para2:"Quando você acessa nossos sites que contêm tal plugin, seu navegador estabelece uma conexão direta com os computadores do provedor. O conteúdo do plugin é transmitido diretamente do site do provedor para o seu navegador, que o integra ao site. Ao integrar plugins, o provedor recebe a informação de que você acessou nosso site. Se você estiver simultaneamente conectado ao provedor, o provedor pode atribuir a visita ao seu perfil.",para3:"Se você não quiser que o provedor colete dados sobre você por meio de nosso site, deve se desconectar do provedor antes de visitar nosso site. Mesmo que esteja desconectado, os provedores coletam dados anonimizados por meio de plugins sociais e configuram um cookie para você. Se você fizer login no provedor posteriormente, esses dados podem ser atribuídos ao seu perfil.",para4:"Se um login for fornecido por meio de um serviço de login social − por exemplo, Google Connect − os dados são trocados entre o provedor e nosso site. No caso do Google Connect, isso pode incluir, por exemplo, dados do seu perfil público do Google. Ao usar esses serviços de login, você concorda com a transferência de dados.",para5:"Consulte os avisos de proteção de dados do provedor para saber a finalidade e o escopo da coleta de dados e o processamento adicional de seus dados pelo provedor, bem como seus respectivos direitos e opções de configuração para proteger sua privacidade.",para7:'Se você não quiser que o provedor colete dados sobre você por meio desses cookies, pode selecionar a função "bloquear cookies de terceiros" nas configurações do seu navegador. Então, se houver conteúdo incorporado de outros provedores, o navegador não enviará cookies ao servidor.'},durationOfRetentionParagraph:{title:"Duração da retenção",para1:"Retemos seus dados pessoais pelo tempo necessário para cumprir as leis aplicáveis, ou conforme julgarmos apropriado, ou enquanto for necessário para os fins para os quais foram coletados. Bloquearemos ou excluiremos seus dados pessoais assim que não forem mais necessários e, definitivamente, no final do período máximo de retenção legal.",para2:"Você pode solicitar que seus dados pessoais sejam excluídos a qualquer momento, enviando-nos uma solicitação correspondente para compliance(at)alquant.com. Atenderemos prontamente sua solicitação, desde que não sejamos obrigados a reter os dados por outros motivos ou precisemos deles, por exemplo, para a execução de reivindicações."},furtherDataSourcesParagraph:{title:"Outras fontes de dados",para1:"Além dos dados que coletamos diretamente de você, também obtemos dados de registros públicos (como o Registro Comercial) e de terceiros.",para2:"Como as fontes de dados variam de acordo com o cliente, não é possível fornecer informações gerais sobre essas fontes. Se desejado, estamos dispostos a divulgar nossas fontes de dados em detalhes."},userRightsParagraph:{title:"Direitos do usuário",rightRevocationSub:{title:"Direito de Revogação",para1:"Na medida em que você nos deu consentimento para coletar, armazenar e usar dados pessoais em relação ao site ou aos nossos serviços, você pode revogar esse consentimento a qualquer momento. A revogação pode ser enviada por e-mail ou por escrito para o contato acima na seção 2: Autoridade Responsável. Os efeitos da revogação são limitados ao armazenamento e uso de dados pessoais, que podem não ser armazenados e usados sem seu consentimento prévio com base em permissão legal. A revogação também não afeta os procedimentos de processamento anteriores realizados com base no consentimento."},furtherRightsSub:{title:"Outros direitos",informationSub:{title:"Informação",para1:"Mediante solicitação por escrito, forneceremos informações a qualquer momento sobre seus dados pessoais armazenados. A solicitação de informações deve ser feita por escrito e com prova de identidade (cópia de RG, passaporte ou outro documento oficial de identificação). O exercício deste direito é gratuito uma vez por ano; para qualquer solicitação adicional, reservamo-nos o direito de cobrar pelos custos incorridos."},correctionSub:{title:"Correção, exclusão, restrição de processamento",para1:"Além disso, você tem a opção de corrigir, bloquear ou excluir seus dados pessoais a qualquer momento. Entre em contato com a autoridade interna, cujos detalhes podem ser encontrados na seção 2. Excluídos da exclusão estão apenas os dados que precisamos para a conclusão de tarefas pendentes ou para a execução de direitos e reivindicações existentes, além dos dados que somos obrigados a manter devido a regulamentações legais. Tais dados serão bloqueados."},rightAppealSub:{title:"Direito de apelação",para1:"Damos grande importância à proteção dos direitos de nossos clientes e, portanto, também à proteção de seus dados pessoais. No entanto, se você acreditar que processamos seus dados de forma ilegal, pode nos contatar a qualquer momento pelo número +41 41 661 23 45 ou pelo e-mail compliance(at)alquant.com com detalhes sobre sua preocupação. Faremos o possível para resolver suas preocupações.",para2:"Se, ao contrário das expectativas, nosso serviço ao cliente não puder fornecer assistência satisfatória, você pode enviar sua preocupação ao Supervisor Federal de Proteção de Dados a qualquer momento como uma reclamação formal, que será investigada."},dataPortabilitySub:{title:"Portabilidade de dados",para1:"Mediante solicitação por escrito, você também tem o direito de receber seus dados pessoais em um formato estruturado, atual e legível por máquina (arquivo pdf) para transmissão a um terceiro. Reservamo-nos o direito de cobrar pelos custos incorridos."}}},cookiesParagraph:{title:"Uso de Cookies",para1:"Para melhorar nossa gama de produtos, usamos cookies em nosso site. Um cookie é um pequeno arquivo de texto que é transferido para o seu computador quando você navega em nossas páginas. Um cookie só pode conter informações que enviamos para seu dispositivo eletrônico – eles não podem ser usados para ler dados pessoais. Se você aceitar cookies em nosso site, não teremos acesso às suas informações pessoais, mas, com a ajuda de cookies, podemos identificar seu computador. Não há dados pessoais armazenados nos cookies usados, de modo que não podemos tirar conclusões sobre sua identidade por meio da tecnologia de cookies. Apenas informações pseudonimizadas são geradas.",para2:"Usamos cookies para verificar se você cumpre nossos Termos de Uso.",para3:"Usamos cookies temporários baseados em sessões: esses não permanecem no seu computador. Quando você sai de nossas páginas, o cookie temporário também será descartado. Com a ajuda das informações coletadas, podemos analisar os padrões de uso e as estruturas de nosso site e otimizá-lo melhorando o conteúdo ou personalizando e simplificando o uso.",para4:"Além disso, usamos cookies persistentes: esses permanecem no seu computador para simplificar compras, personalização e serviços de registro em sua próxima visita. Por exemplo, esses cookies podem registrar o que você escolheu comprar enquanto continua comprando. Além disso, você só precisará digitar sua senha uma vez nas páginas que exigem login. Cookies persistentes podem ser removidos manualmente pelo usuário. Eles se excluem após um certo tempo.",para5:"Os cookies também são usados por alguns de nossos parceiros publicitários (cookies de terceiros). Esses cookies nos ajudam a adaptar nosso site às necessidades específicas de nossos clientes, por exemplo, exibindo anúncios que possam realmente interessar a você. O uso desses cookies nos permite coletar informações sobre quais produtos você visualizou ou pesquisou ou quais páginas visitou anteriormente. Esses cookies são armazenados no seu disco rígido e se excluem após um certo tempo. Também não há informações pessoais armazenadas nos cookies usados por nossos parceiros publicitários. O uso é pseudonimizado, de modo que não é possível tirar conclusões sobre sua identidade.",para6:"A maioria dos navegadores (como Firefox, Chrome, Internet Explorer, Safari, etc.) aceita cookies por padrão. Você pode permitir ou bloquear cookies temporários e persistentes nas configurações de segurança - independentemente um do outro. No entanto, devemos apontar que certos recursos não estão disponíveis em nosso site e alguns sites podem não ser exibidos corretamente se você desativar os cookies.",para7:"Os dados armazenados em nossos cookies não serão vinculados aos seus dados pessoais (nome, endereço etc.) sem seu consentimento expresso."},liabilityForLinksParagraph:{title:"Responsabilidade por links",para1:"A Alquant declara expressamente que, no momento da criação dos links, nenhum conteúdo ilegal foi identificado nas páginas a serem vinculadas. Não temos influência sobre o design atual e futuro, conteúdo ou autoria das páginas vinculadas. Portanto, nos distanciamos expressamente de todos os conteúdos de todas as páginas vinculadas que forem alteradas após a criação do link. Esta declaração aplica-se a todos os links e referências em nossa presença na web. No que diz respeito a conteúdos ilegais, incorretos ou incompletos e, em particular, por danos resultantes do uso ou não uso de tais informações, apenas o provedor da página à qual foi feita referência é responsável, e não aquele que simplesmente coloca o link para a respectiva publicação."},webAnalysisParagraph:{title:"Análise da Web",googleAnalyticsSub:{title:"Google Analytics",para1:"Este site utiliza o Google Analytics, um serviço de análise da web fornecido pela Google Inc. (Google) para design de sites com base nas necessidades. Recebemos apenas avaliações de dados sem referências pessoais.",para2:"O Google Analytics usa cookies: arquivos de texto que são armazenados em seu computador e que permitem a análise do uso do site. As informações geradas pelo cookie sobre o uso deste site (incluindo seu endereço IP) serão transmitidas para e armazenadas nos servidores do Google nos Estados Unidos. A anonimização de IP foi ativada neste site para que o endereço IP dos usuários do Google nos Estados Membros da União Europeia ou em outros estados contratantes do Acordo sobre o Espaço Econômico Europeu seja truncado antes da transmissão. Apenas em casos excepcionais o endereço IP completo será enviado a um servidor do Google nos EUA e truncado lá. O Google usará essas informações em nome do operador do site para avaliar o uso do site pelos usuários, compilar relatórios sobre a atividade do site e fornecer outros serviços ao operador do site relacionados à atividade do site e ao uso da internet. O Google também transmitirá essas informações a terceiros, se for exigido por lei ou se terceiros processarem esses dados em nome do Google. O Google nunca associará seu endereço IP a outros dados do Google.",para3:"Você pode impedir a instalação de cookies configurando seu software de navegação de forma adequada. No entanto, devemos ressaltar que, nesse caso, você pode não conseguir usar todas as funções deste site em sua totalidade. Ao usar este site, você concorda com o processamento dos dados coletados sobre você pelo Google na forma e para os fins estabelecidos acima.",para4:'Além disso, você pode impedir que o Google colete os dados gerados pelo cookie e relacionados ao uso do site (incluindo seu endereço IP) e o processamento desses dados pelo Google baixando e instalando o plug-in do navegador disponível em <a href="https://tools.google.com/dlpage/gaoptout" >https://tools.google.com/dlpage/gaoptout</a >. Para mais informações sobre os Termos de Uso do Google Analytics e a Política de Privacidade, consulte',para5:'<a href="https://www.google.com/analytics/terms/" >https://www.google.com/analytics/terms/</a > e',para6:'<a href="https://policies.google.com/privacy?hl=en" >https://policies.google.com/privacy?hl=en</a >'},googleFontsSub:{title:"Google Fonts",para1:'Este site também utiliza o Google Fonts (Open Scans). Por razões técnicas, seu endereço IP deve ser transmitido ao Google para que as fontes possam ser transferidas para o seu navegador. Para mais informações sobre o Google Fonts, visite <a class="break-all" href="https://developers.google.com/fonts/faq#what_does_using_the_google_fonts_api_mean_for_the_privacy_of_my_users" >https://developers.google.com/fonts/faq#what_does_using_the_google_fonts_api_mean_for_the_privacy_of_my_users</a > .'}},securityMeasureParagraph:{title:"Medidas de Segurança",para1:"Aplicamos medidas de segurança técnicas e organizacionais para proteger adequadamente suas informações pessoais contra acesso não autorizado, abuso, manipulação acidental ou intencional, perda ou destruição. Para proteger sua privacidade, utilizamos uma conexão segura para nosso site, que você pode ver pelo 'https' (https significa Hypertext Transfer Protocol Secure) no início da barra de endereços do seu navegador. Dessa forma, a conexão é criptografada via SSL/TSL e seus dados não podem ser interceptados por terceiros. Medidas de segurança técnicas para proteger seus dados pessoais são verificadas regularmente e, se necessário, atualizadas. Esses princípios também se aplicam a empresas que processam e usam dados pessoais em nosso nome e de acordo com nossas instruções."},legalBasisGeneralDataProtectionParagraph:{title:"Base Legal Regulamento Geral de Proteção de Dados",para1:"De acordo com as disposições do Regulamento Geral de Proteção de Dados (GDPR) aplicável a partir de 25 de maio de 2018, informamos que seu consentimento para o envio ao endereço de e-mail fornecido será dado com base no Art. 6, parágrafo 1, alínea a e Art. 7 do GDPR. A lista de envio correspondente é usada com base em nossos interesses legítimos, de acordo com o Art. 6, parágrafo 1, alínea f do GDPR. Estamos interessados em usar um site e sistema de fácil utilização e seguro, que atenda aos interesses comerciais, mas também às expectativas de nossos usuários e clientes."},changesParagraph:{title:"Alterações",para1:"Reservamo-nos o direito de alterar esta política de privacidade a qualquer momento. A política de privacidade não constitui qualquer relação legal contratual ou outra formal com ou em nome de qualquer parte."}},termsOfUse:{endDate:"Crissier, 3 de fevereiro de 2022",title:"Termos de Uso",metaInfo:{title:"Plataforma - Termos de Uso"},declarationOfAcceptanceParagraph:{title:"Declaração de aceitação pelo usuário",para1:'Este site é operado pela Alquant SA. Ao utilizar este site (ou uma página desviada para este endereço da web; doravante referido em sua totalidade como o "site da Alquant"), você confirma que leu e entendeu e aceita os seguintes Termos de Uso, incluindo as Condições Legais. Se você não aceitar estes Termos de Uso, por favor, não visite o site da Alquant novamente.'},limitedAccessParagraph:{title:"Acesso limitado",para1:"O site da Alquant não é destinado a pessoas jurídicas e naturais que, por razões de nacionalidade, sede comercial, local de residência ou por quaisquer outras razões, estejam sujeitas a um sistema jurídico que proíba ou restrinja, em particular,",list1:{el1:"a publicação dos conteúdos,",el2:"o acesso ao site da Alquant,",el3:"as atividades de um prestador de serviços financeiros estrangeiro,",el4:"a admissão de produtos financeiros (por exemplo, certificados ou fundos)."},para3:"Além disso, não se destina ao uso por pessoas jurídicas ou naturais em países onde a Alquant SA ou quaisquer empresas a ela associadas não possuem o registro e autorização necessários para operar.",para4:"Pessoas sujeitas a qualquer uma ou todas essas restrições não podem acessar o site da Alquant. Isso se aplica, em particular, aos cidadãos dos EUA, Reino Unido, Canadá, Japão, China e Cingapura, ou pessoas residentes nos países mencionados. Informe-se sobre as restrições legais correspondentes em seu país.",para5:"Aviso para investidores institucionais",para6:'Os produtos financeiros para investidores profissionais estão disponíveis apenas para investidores qualificados. Nos termos do Art. 10, parágrafo 3, da Lei de Investimentos Coletivos de Capital, juntamente com o Art. 6 da Portaria de Investimentos Coletivos de Capital, investidores qualificados incluem investidores institucionais com uma tesouraria profissional, nomeadamente bancos e corretores de valores (incluindo seus clientes que têm um contrato de gestão de ativos por escrito), fundos de pensão, companhias de seguros, gestores de fundos e autoridades locais e cantonais, bem como empresas industriais e comerciais. Ao selecionar "Investidores profissionais", você confirma que é um investidor qualificado de acordo com a definição acima.'},propertyRightsParagraph:{title:"Direitos de Propriedade",para1:"Todos os elementos do site da Alquant são protegidos como propriedade intangível e pertencem à Alquant SA ou a terceiros. A utilização do site da Alquant não implica a transferência de quaisquer direitos, em particular, quaisquer direitos relacionados a software, marcas comerciais ou elementos do site da Alquant. As indicações de copyright e marcas comerciais não podem ser alteradas ou removidas. Os elementos do site da Alquant não podem ser reproduzidos em sua totalidade ou em parte sem referência à fonte completa. Os conteúdos do site da Alquant não podem ser reproduzidos ou utilizados para fins públicos ou comerciais sem o consentimento prévio por escrito da Alquant SA."},consultingReplacementParagraph:{title:"Não substituição de consultoria",para1:"As informações e opiniões publicadas no site da Alquant são de caráter geral. Elas não são destinadas nem adequadas para substituir consultoria individual por profissionais especializados que levarão em consideração as circunstâncias reais prevalecentes em um caso individual. Por esse motivo, elas não representam aconselhamento jurídico, fiscal, financeiro, econômico ou qualquer outro e não devem ser utilizadas como auxílio a investimentos."},noOffersParagraph:{title:"Sem ofertas",para1:"As informações e opiniões publicadas no site da Alquant não constituem publicidade ou recomendações e não devem ser interpretadas como uma demanda, uma oferta ou um convite para apresentar uma oferta:",list1:{el1:"para aquisição ou venda de instrumentos de investimento,",el2:"para realização de qualquer tipo de transação,",el3:"para completar qualquer outro tipo de negócio jurídico."},para3:"O único propósito do site da Alquant é fornecer informações."},futurePerformanceParagraph:{title:"Desempenho futuro (indicação de risco)",para1:"O desempenho futuro de um instrumento de investimento não pode ser deduzido a partir dos movimentos passados na taxa, ou seja, o título pode subir ou cair. A forma como o título se comportou no passado não é, portanto, garantia de seu valor futuro. No caso de certos instrumentos de investimento, a perda total do capital investido também é possível em casos extremos. Além disso, flutuações nas taxas de câmbio também podem afetar o investimento."},noGuaranteeParagraph:{title:"Sem garantias",para1:"A Alquant SA não oferece garantias (incluindo responsabilidade para com terceiros) nem assegura a",list1:{el1:"atualidade, precisão, confiabilidade ou integridade dos conteúdos do site da Alquant,",el2:"os resultados obtidos utilizando o site da Alquant,",el3:"os conteúdos de terceiros que são encontrados ou acessíveis via o site da Alquant."},para3:"Além disso, a Alquant SA não se responsabiliza nem garante que",list2:{el1:"as funções no site da Alquant funcionam sem falhas e estão disponíveis sem interrupção,",el2:"o site da Alquant e outros componentes utilizados através do acesso ao site da Alquant estão livres de vírus, etc."},para5:"A Alquant SA também não oferece garantias para",list3:{el1:"o aumento ou estabilidade do valor do capital investido em instrumentos de investimento,",el2:"o nível de dividendos futuros."}},linksParagraph:{title:"Links",para1:"A Alquant SA não verificou os sites de terceiros vinculados ao site da Alquant e não pode ser responsabilizada pela atualidade, precisão, confiabilidade, integridade ou legalidade dos conteúdos e ofertas nesses sites. O usuário, portanto, acessa tais páginas por sua conta e risco.",para2:"Links da web só podem ser incluídos em sites fora de um site da Alquant com o consentimento prévio da Alquant SA."},serviceChangesParagraph:{title:"Alterações no serviço",para1:"A Alquant SA pode alterar, suspender ou descontinuar qualquer aspecto dos Serviços a qualquer momento, incluindo a disponibilidade de qualquer recurso, banco de dados ou conteúdo dos Serviços. A Alquant SA também pode impor limites a certos recursos e serviços ou restringir o acesso do usuário a todos ou a partes dos Serviços sem aviso prévio.",para2:"A Alquant SA reserva-se o direito, a seu exclusivo critério, de encerrar o acesso do usuário aos Serviços sem aviso prévio."},useOfInformationParagraph:{title:"Uso de informações",para1:"O usuário pode usar as Informações publicadas no site da Alquant apenas para uso comercial interno ou uso pessoal, não comercial. Em nenhum caso o usuário publicará, venderá, arrendará, disseminará, retransmitirá, redistribuirá, transmitirá, circulará ou de qualquer outra forma reproduzirá, fornecerá ou permitirá o acesso a qualquer Informação da Alquant SA em qualquer formato para qualquer pessoa; no entanto, o usuário pode fornecer Informações a usuários, de forma não contínua, utilizando apenas os seguintes métodos limitados: (a) Em anúncios escritos, correspondências ou outras literaturas, ou (b) durante conversas telefônicas de voz que não envolvem voz computacional, sistemas de consulta de informações automatizadas ou tecnologias semelhantes.",para2:"O uso de ferramentas de script automatizadas para rastrear o site ou tentar contornar a API é estritamente proibido e pode resultar em bloqueio do acesso aos dados do site da Alquant. Solicitações excessivas podem resultar em limitação do acesso da sua conta aos dados.",para3:"O uso de formas de automação não baseadas em API, como scripts do site, é proibido. O uso dessas técnicas pode resultar na suspensão permanente da sua conta."},indemnificationParagraph:{title:"Indenização",para1:"O usuário (e o fundo do usuário, se o usuário for um representante de um fundo) concordam solidariamente em indenizar e isentar a Alquant SA, e seus agentes, provedores de informações e seus agentes, representantes, diretores, executivos, acionistas, parceiros, predecessores, sucessores e cessionários, de e contra qualquer reivindicação ou demanda, processo, danos, responsabilidades, perdas ou despesas, decorrentes de reivindicações feitas por terceiros, decorrentes do uso das informações da Alquant SA pelo usuário que constitui uma violação dos Termos de Uso ou um ato ou omissão imprópria.",para2:"Se um usuário fizer uso dos Serviços ou de qualquer Conteúdo além do expressamente permitido por estes Termos de Uso, ele ou ela poderá violar leis de direitos autorais e outras leis e poderá estar sujeito a penalidades. Sem limitar as sentenças precedentes, o usuário não deverá:",para3:"Engajar-se ou permitir qualquer revenda, exibição, reprodução, cópia, tradução, modificação, adaptação, criação de obras derivadas, distribuição, transmissão, transferência, republicação, compilação, descompilação ou engenharia reversa dos Serviços, de qualquer Conteúdo, ou de qualquer porção dele, ou de quaisquer dados, outros conteúdos ou informações fornecidos ao usuário em conexão com o uso dos Serviços pela Alquant SA ou por qualquer uma de suas fontes terceirizadas, em qualquer forma, mídia ou tecnologia existente agora ou desenvolvida posteriormente, ou em qualquer rede, incluindo uma rede de área local; Remover, obscurecer ou alterar qualquer aviso, isenção de responsabilidade ou outra divulgação afixada ou contida dentro dos Serviços, incluindo qualquer aviso de direitos autorais, marca comercial ou outro aviso de direitos de propriedade ou qualquer outro aviso legal afixado ou exibido em associação com o Conteúdo; Criar uma moldura ou usar técnicas de moldura para delimitar qualquer parte dos Serviços ou do Conteúdo, sem o consentimento prévio por escrito da Alquant SA;",para4:"Personificar qualquer pessoa, ou declarar falsamente ou de outra forma deturpar sua afiliação com qualquer pessoa, em conexão com qualquer uso dos Serviços; Violar ou tentar violar a segurança dos Serviços ou de qualquer rede, servidores, dados ou computadores ou outros hardwares relacionados ou usados em conexão com os Serviços ou qualquer Conteúdo, seja operado pela Alquant SA ou por terceiros; nem usar ou distribuir através dos Serviços qualquer software ou outras ferramentas ou dispositivos projetados para interferir ou comprometer a privacidade, segurança ou uso dos Serviços por terceiros ou as operações ou ativos de qualquer pessoa;",para5:"Violar qualquer lei aplicável, incluindo, mas não limitado a leis de valores mobiliários e leis que regem a atividade de investimento em qualquer país; Restringir ou inibir qualquer outro usuário autorizado de usar e aproveitar os Serviços; Publicar, transmitir, reproduzir, distribuir ou de qualquer forma explorar qualquer Conteúdo ou outras informações ou materiais obtidos através dos Serviços para fins comerciais, exceto conforme expressamente permitido por estes Termos de Uso ou por permissão prévia por escrito da Alquant SA."},exclusionLiabilityParagraph:{title:"Exclusão de responsabilidade",para1:"A Alquant SA ou quaisquer empresas, parceiros, conselhos de administração, funcionários ou representantes a ela vinculados rejeitam toda a responsabilidade (incluindo para com terceiros) por danos diretos ou indiretos ou danos consequenciais que possam ocorrer em conexão direta ou indireta com a utilização do site da Alquant."},reservationsParagraph:{title:"Reservas",para1:"A Alquant SA reserva-se o direito de modificar qualquer informação, opiniões, desempenho ou outros dados, links, etc. a qualquer momento, sem aviso prévio aos usuários.",para2:"Além disso, os Termos de Uso também podem ser alterados e o uso do site da Alquant também pode ser restrito ou encerrado sem aviso prévio."},placeOfJurisdictionParagraph:{title:"Foro Competente",para1:"Na medida em que uma posição legal surgir entre a Alquant SA e os usuários do site da Alquant, esta estará sujeita à legislação suíça. O foro exclusivo será Lausanne, Suíça."}}},errors:{backHome:"Voltar para a página inicial",error403:{paragraphWhenLoggedIn:"Você não tem permissão para acessar esta página. Se o seu perfil for aceito, um administrador logo lhe concederá os direitos de acesso. Por favor, verifique novamente nos próximos 1-2 dias úteis.",paragraphWhenLoggedInWithContact:e=>`Você não tem permissão para acessar esta página. Se o seu perfil for aceito, um administrador logo lhe concederá os direitos de acesso. Por favor, verifique novamente nos próximos 1-2 dias úteis. Se você ainda não tiver recebido o acesso até lá, entre em contato conosco: ${e.named("contactEmail")}.`,paragraphWhenNotLoggedIn:"Esta página exige que você esteja autenticado para acessá-la. Por favor, clique no botão abaixo para fazer login na sua conta. Se você ainda não tem uma conta, registre-se clicando no botão abaixo.",title:"403 - Acesso proibido",metaInfo:{title:"Plataforma - 403"}},error404:{paragraph:"A página que você está tentando acessar não existe.",title:"404 - Página não encontrada",metaInfo:{title:"Plataforma - 404"}},unauthorizedInvestorProfile:{modifyInvestorProfile:"Modificar perfil de investidor",title:"Perfil de investidor não autorizado",unfortunately:"Infelizmente, você não pode acessar esta página devido ao seu perfil de investidor.",metaInfo:{title:"Plataforma - Perfil de Investidor Não Autorizado"}}},help:{contact:{address:"Endereço",introText:"Não hesite em usar este formulário para entrar em contato conosco. Teremos o prazer de responder a quaisquer sugestões ou responder a qualquer tipo de dúvida que você possa ter relacionada a esta plataforma e nossos produtos.",recaptchaPrivacyPolicy:"Política de Privacidade",recaptchaProtect:"Este site é protegido pelo reCAPTCHA e aplicam-se a {0} e os {1} do Google.",recaptchaTermsOfService:"Termos de Serviço",switzerland:"Suíça",title:"Contato",dialog:{confirmMessage:{title:"Confirmar",text:"Você deseja enviar esta mensagem?"}},form:{country:"País",email:"E-mail",enterMessage:"Digite sua mensagem",exampleEmail:"joao.silva@exemplo.com",exampleName:"João Silva",investorProfileType:"Tipo de investidor",name:"Nome",sendEmail:"Enviar e-mail"},metaInfo:{title:"Plataforma - Contato"},notify:{errorMessage:{title:"Erro ao enviar mensagem",text:"Desculpe, a mensagem não pôde ser enviada. Tente novamente mais tarde ou entre em contato diretamente por e-mail."},messageSent:{title:"Mensagem enviada",text:"A mensagem foi enviada com sucesso. Entraremos em contato com você em 1-2 dias úteis."}}},faq:{subtitle:"Veja a lista a seguir para todas as nossas perguntas frequentes.",title:"Tem Alguma Pergunta?",metaInfo:{title:"Plataforma - FAQ"}},knowledgeBase:{investmentStrategyTechniques:"Técnicas de Estratégia de Investimento",metaInfoTerm:e=>`Base de Conhecimento - ${e.named("term")}`,monthlyDataBasis:"Calculado com base em dados mensais.",noResults:"Nenhum resultado encontrado.",performanceMetrics:"Métricas de Desempenho",search:"Buscar",source:"Fonte",subtitle:"Encontre explicações sobre termos técnicos gerais, bem como algumas de nossas técnicas exibidas nesta plataforma.",title:"Bem-vindo à nossa Base de Conhecimento",alpha:{title:"Alfa",para1:"{0} é usado para medir o desempenho superior que uma estratégia ou seu gestor consegue gerar em comparação com um benchmark. O {1} descreve o desempenho após o desconto para o ambiente de retorno livre de risco e o retorno relacionado ao mercado (prêmio de mercado * {2}).",para2:'O gráfico acima mostra um valor de <span class="font-bold">alfa</span> de 4%, o que significa que, dada a dependência da estratégia em relação ao mercado e o ambiente atual de taxas de juros (retorno livre de risco), foi capaz de gerar um desempenho adicional de 4% em comparação ao que se poderia esperar.',para3:'Como indicado no gráfico acima, o componente <span class="font-bold">alfa</span> é o único motor de desempenho que pode ser atribuído à habilidade do gestor. Além disso, indica que o <span class="font-bold">alfa</span> pode se tornar um número negativo, o que significa que o desempenho foi perdido devido à gestão ativa do investimento. Dito isso, um componente <span class="font-bold">alfa</span> positivo pode ser visto como o componente pelo qual o investidor está disposto a pagar uma taxa.',para4:"Quanto maior o alfa, melhor a estratégia. Um alfa elevado significa que os gestores de ativos conseguiram criar valor."},annualizedReturn:{title:"Retorno Anualizado",para1:'<span class="font-bold">Retornos anualizados</span> são retornos cumulativos redimensionados para um período de um ano. Isso permite que os investidores comparem melhor os retornos de diferentes ativos que possuíram por diferentes períodos de tempo.',para2:'Alternativamente, os <span class="font-bold">retornos anualizados</span> também podem ser interpretados como o retorno médio anual que um investidor teria obtido ao investir durante um determinado período.',para3:"Tudo o mais constante, quanto maior o retorno anualizado, melhor."},annualizedVolatility:{title:"Volatilidade Anualizada",para1:'<span class="font-bold">Volatilidade anualizada</span> é a volatilidade de um investimento que é redimensionada para um período de um ano. A <span class="font-bold">volatilidade</span> em si mede a magnitude dos movimentos de preço. Mais tecnicamente, a <span class="font-bold">volatilidade</span> é uma medida estatística da dispersão de retornos (especificamente o desvio padrão dos retornos) ao longo de um período. Quanto maior a <span class="font-bold">volatilidade</span>, mais arriscado é o investimento, porque quanto maior a <span class="font-bold">volatilidade</span>, maior a probabilidade de ocorrerem oscilações maiores.'},beta:{title:"Beta",para1:'<span class="font-bold">Beta</span> mede a dependência dos retornos. Geralmente, é usado para medir a dependência de um título ou uma estratégia de investimento no retorno do mercado. Um <span class="font-bold">beta</span> mais alto indica que o título está se movendo de forma mais agressiva do que o mercado, enquanto um <span class="font-bold">beta</span> mais baixo indica que o título captura apenas parcialmente os retornos do mercado.',para2:'Embora raramente encontrado, valores de <span class="font-bold">beta</span> negativos existem e indicariam uma relação inversa com o mercado.',para3:"Ao analisar uma estratégia de investimento, os investidores buscam estratégias bem-sucedidas com um beta baixo. Essa constelação indica que o desempenho do gestor depende menos dos retornos do mercado e mais da habilidade do gestor."},calmarRatio:{title:"Índice de Calmar",para1:"Um índice usado para determinar o retorno em relação ao risco de drawdown (queda) em um produto de investimento.",para2:"Tudo o mais sendo igual, quanto maior o índice, melhor o investimento."},correlation:{title:"Correlação",para1:"O coeficiente de correlação de Pearson (PCC) é uma medida estatística que avalia a força e a direção de uma relação linear entre dois conjuntos de dados. É calculado como a razão entre a covariância das duas variáveis e o produto de seus desvios padrão. Essa normalização torna o PCC um valor entre -1 e 1, onde -1 indica uma correlação linear negativa perfeita, 1 uma correlação linear positiva perfeita e 0 nenhuma correlação linear. É importante notar que o PCC detecta apenas relações lineares, não outros tipos de correlações.",para2:"Dado um conjunto de dados pareados {(X,Y)} de n pares, o PCC será calculado usando a seguinte fórmula:"},cumulativeReturn:{title:"Retorno acumulado",para1:'Apresentado como uma porcentagem, o <span class="font-bold">retorno acumulado</span> em um investimento é o valor total que o investimento ganhou ou perdeu ao longo do tempo.',para2:'O <span class="font-bold">retorno acumulado</span> pode ser facilmente deduzido de um gráfico que mostra o crescimento de um investimento, como o mostrado acima. Usando apenas os valores inicial e final do gráfico, podemos obter o retorno acumulado total para um determinado período.'},informationRatio:{title:"Índice de Informação",para1:'As estratégias de investimento geralmente são medidas em comparação com um benchmark específico, que na maioria das vezes consiste em um ou mais índices. Quando um gestor de investimentos supera o benchmark, é interessante para o investidor saber a que custo esse objetivo foi alcançado. O <span class="font-bold">índice de informação</span> é uma medida que fornece uma comparação entre o retorno excedente em relação ao benchmark e o erro de rastreamento, que é uma medida da consistência entre a estratégia e o benchmark.',para2:'O <span class="font-bold">índice de informação</span> é calculado da mesma forma que o índice de Sharpe, assumindo que o benchmark equivale a um retorno livre de risco com uma volatilidade de 0%.',para3:"Tudo o mais constante, se esse índice for positivo, quanto maior for, mais robusto é o investimento. Um índice elevado significa que as flutuações diárias nos retornos excedentes em relação ao benchmark são pequenas em comparação ao retorno médio excedente."},kurtosis:{title:"Curtose",para:"A curtose indica a acentuação de uma distribuição. Para uma distribuição normal, a curtose é 0. Quanto maior a curtose de uma distribuição, mais concentrada ela é em torno de sua média."},m2RiskAdjustedPerf:{title:"Medida M2",para1:"O desempenho ajustado ao risco M2, também conhecido como medida M2, avalia os retornos ajustados ao risco de uma carteira de investimentos. Ele avalia os retornos da carteira, levando em consideração seu risco em comparação com um benchmark, como o mercado. Essencialmente, ele representa a diferença no retorno excedente ajustado de uma carteira (P) em relação ao mercado, ajustando a carteira para corresponder à volatilidade do mercado. Originada do índice de Sharpe, oferece um benefício substancial ao expressar os resultados em retornos percentuais, ao contrário do índice de Sharpe, que é um valor não negativo e menos prático para muitos investidores. Essa característica da medida Modigliani torna-o significativamente mais fácil de entender e aplicar.",para2:"Tudo o mais constante, se o retorno do investimento for maior do que a taxa livre de risco, quanto maior a medida M2, melhor o investimento. De fato, nesse caso, a medida M2 aumenta quando o retorno da estratégia aumenta ou quando a volatilidade da estratégia diminui em relação à do benchmark."},maximumDrawdown:{title:"Máxima Queda",para1:'A <span class="font-bold">máxima queda</span> é a maior perda observada de um pico a um vale de uma carteira, antes que um novo pico seja atingido. <span class="font-bold">Máxima queda</span> é um indicador de risco de queda em um período especificado.',para2:'<span class="font-bold">Máxima queda</span> é um indicador usado para avaliar o risco relativo de uma estratégia em comparação a outra, pois foca na preservação de capital, uma preocupação importante para a maioria dos investidores. Uma baixa máxima queda é preferida, pois indica que as perdas dos investimentos foram pequenas. Se um investimento nunca perdeu um centavo, a <span class="font-bold">máxima queda</span> seria zero. A pior <span class="font-bold">máxima queda</span> possível seria 100%, significando que o investimento se tornou completamente inútil.',para3:"Tudo o mais sendo igual, quanto menor o valor absoluto da máxima queda (ou seja, quanto mais próximo de 0%), mais confiável é o investimento.",keyPoints:"Pontos chave",keyPoint1:"Máxima queda é uma medida da maior queda no preço de um ativo, de um pico a um vale.",keyPoint2:"Máxima queda é considerada um indicador de risco de queda, com grandes quedas sugerindo que os movimentos descendentes podem ser voláteis.",keyPoint3:"Embora a máxima queda meça a maior perda, ela não leva em conta a frequência das perdas, nem o tamanho de qualquer ganho."},metaInfo:{title:"Plataforma - Base de Conhecimento"},omegaRatio:{title:"Índice Ômega",para1:"O índice Ômega é uma medida de desempenho risco-retorno. Ele calcula a razão ponderada pela probabilidade de ganhos versus perdas.",para2:"Tudo o mais sendo igual, quanto maior o índice, melhor o investimento."},returnVolatilityRatio:{title:"Índice de Retorno para Volatilidade",para1:'O <span class="font-bold">índice de retorno para volatilidade</span> representa o retorno médio obtido por unidade de volatilidade (desvio padrão), que pode ser interpretada como uma unidade de risco. Portanto, ele informa quão bem um investidor é recompensado pelo risco assumido (quanto maior o <span class="font-bold">índice de retorno para volatilidade</span>, maior a recompensa pelo risco).',para2:'Tipicamente, qualquer <span class="font-bold">índice de retorno para volatilidade</span> maior que 1,0 por um período prolongado é considerado bom, pois significa que as recompensas são maiores do que o risco assumido. Por exemplo, se a volatilidade anualizada for menor do que o retorno anualizado, o <span class="font-bold">índice de retorno para volatilidade</span> será maior que 1,0.',para3:'Assim, o <span class="font-bold">índice de retorno para volatilidade</span> permite que os investidores comparem investimentos muito diferentes pelos mesmos critérios. O <span class="font-bold">índice de retorno para volatilidade</span> permite comparações de "maçãs com laranjas".',keyPoints:"Pontos chave",keyPoint1:"Um <span class='font-bold'>índice de retorno para volatilidade</span> alto indica quão bem um investidor é recompensado pelo risco assumido.",keyPoint2:"O <span class='font-bold'>índice de retorno para volatilidade</span> ajusta o desempenho passado de uma carteira ao risco assumido pelo investidor e, portanto, permite uma comparação entre investimentos muito diferentes."},sharpeRatio:{title:"Índice de Sharpe",para1:'O <span class="font-bold">índice de Sharpe</span> é uma medida de retorno ajustado ao risco. Ele compara o retorno excedente acima de um investimento livre de risco ao risco que foi assumido para alcançar esse retorno, onde o risco para o investidor é definido como volatilidade. O índice ajuda a entender o retorno obtido pela unidade de risco e pode ser usado para comparar várias oportunidades de investimento.',para2:"Como nenhum investimento é totalmente livre de risco, qualquer título com riscos mínimos pode ser usado como um substituto para retornos livres de risco. Geralmente, títulos do governo de países estáveis são adequados para esse fim. Usamos taxas LIBOR de curto prazo para calcular o retorno livre de risco.",para3:"Tudo o mais sendo igual, se esse índice for positivo, quanto maior ele for, mais robusto será o investimento. Um índice elevado significa que as flutuações diárias nos retornos excedentes são pequenas em comparação ao retorno médio excedente."},skewness:{title:"Assimetria",para1:'A frequência de ocorrência de grandes retornos em uma determinada direção é medida pela <span class="font-bold">assimetria</span>. Se a frequência de ocorrência de grandes retornos negativos comparados aos grandes retornos positivos for maior, a distribuição exibe <span class="font-bold">assimetria</span> negativa. Caso a frequência de grandes retornos positivos exceda a de grandes retornos negativos, a distribuição exibe <span class="font-bold">assimetria</span> positiva.',para2:'Os investidores devem observar a <span class="font-bold">assimetria</span> porque ela considera os extremos dos retornos em vez de se concentrar apenas na média. Investidores de curto e médio prazo, em particular, precisam observar os extremos, pois são menos propensos a manter uma estratégia por tempo suficiente para confiar que a média se estabilizará.'},sortinoRatio:{title:"Índice de Sortino",para1:"O índice de Sortino é semelhante ao índice de Sharpe, exceto que usa o risco de queda (volatilidade de queda) no denominador. Como a variabilidade para cima não é necessariamente uma coisa ruim, o índice de Sortino é às vezes mais preferido do que o índice de Sharpe.",para2:"Tudo o mais sendo igual, quanto maior o índice, melhor o investimento."},trackingError:{title:"Erro de Rastreamento",para1:'O <span class="font-bold">erro de rastreamento</span> é uma medida do risco de uma carteira de investimentos devido às decisões de seu gestor de se desviar de seu benchmark. Quanto maior for, mais ativo o gestor está em escolher se desviar de seu benchmark.',para2:"Matematicamente, uma maneira relevante de estimá-lo é calcular o desvio padrão da diferença de retorno entre a carteira e o benchmark. O que apresentamos nesta plataforma é anualizado.",para3:'É importante lembrar que ele não representa a relevância das decisões do gestor, mas sim o impacto que elas têm na carteira final. Assim, duas carteiras com desempenho excelente ou ruim podem ter altos <span class="font-bold">erros de rastreamento</span> em comparação com seu benchmark.',para4:"Um erro de rastreamento baixo implica que um investimento não se desvia muito de seu benchmark. Um erro de rastreamento alto significa que o investimento se desvia muito de seu benchmark."},treynorRatio:{title:"Índice de Treynor",para:'Semelhante ao índice de Sharpe, o índice de Treynor é uma medida de eficiência utilizando a relação entre o retorno ajustado ao risco anualizado e o risco. Ao contrário do índice de Sharpe, o índice de Treynor utiliza o risco de "mercado" (beta) em vez do risco total (desvio padrão). A boa eficiência de desempenho é medida por um índice alto.'},valueAtRisk:{title:"Valor em Risco (VaR)",para1:"VaR é uma estatística que quantifica a extensão das possíveis perdas dentro de uma carteira ao longo de um período específico e com uma probabilidade definida. VaR 1% em 1 mês = x% de perda em 1 mês com 1% de probabilidade. Quanto menor, melhor!",para2:"Na prática, é o quantil dos retornos da estratégia correspondente ao p-valor (1% ou 5%)."}}},home:{metaInfo:{title:e=>`${e.named("orgName")} - Plataforma`},modifyInvestorProfile:"Modificar perfil de investidor",noProductsAvailable:"Nenhum produto disponível para o seu papel e perfil de investidor.",search:"Buscar",showMoreProducts:"Mostrar mais produtos"},products:{analysis:{analysisPeriod:"Período de análise",backtest:"Backtest",backtestOrLive:"Backtest ou live",benchmarks:"Benchmarks",live:"Ao vivo",liveProduct:e=>`${e.named("productName")} ao vivo`,shareClass:"Classe de ações",graphs:{considerApproximation:"Esses valores devem ser considerados como uma aproximação.",weHave:"Nós temos",weWant:"Nós queremos",titles:{assetClassesWeights:"Pesos das classes de ativos",beta:"Beta",constituents:"Constituintes",contango:"Contango",diffMonthlyReturns:"Dif. dos retornos mensais",drawdowns:"Quedas",exposureIndices:"Exposição a índices",exposureOverTime:"Exposição ao longo do tempo",indicators:"Indicadores",monthlyReturns:"Retornos mensais",performance:"Desempenho",ratioVixFutures:"Relação dos futuros do VIX",recentDataOverview:"Visão geral dos dados recentes",relativeDrawdowns:"Quedas relativas",relativePerformance:"Desempenho relativo",riskAdjustedPerformance:"Desempenho ajustado ao risco",rollingVRatioLevel:"Nível de rolagem do V-Ratio",statistics:"Estatísticas",returnProfile:"Perfil de retorno",top10ConstituentsWeight:"10 maiores constituintes atuais",top5ConstituentsWeight:"Peso dos 5 principais constituintes",vegaIndicatorConditions:"Condições do indicador Vega",vix:"VIX",vixPremium:"Prêmio do VIX",volatility:"Volatilidade",weightedPerformance:"Desempenho ponderado",yearlyReturns:"Retornos anuais"},tooltips:{beta:"Este gráfico mostra o beta do nosso produto em comparação com o nosso benchmark. Para calculá-lo, usamos dados do último ano disponível, por isso a métrica está ausente durante o primeiro ano de vida do nosso produto.",relativePerformance:"Este gráfico mostra uma comparação entre o desempenho do nosso produto e o desempenho do nosso benchmark. Para isso, nossos retornos cumulativos são divididos pelos retornos cumulativos do nosso benchmark. Isso significa que em 100%, ambos os desempenhos são semelhantes; caso contrário, quanto maior o número, melhor o desempenho do nosso produto em comparação ao benchmark.",riskAdjustedPerformance:"Este gráfico mostra o desempenho ajustado ao risco. Para calculá-lo, usamos dados do último ano disponível, por isso a métrica está ausente durante o primeiro ano de vida do nosso produto. O desempenho ajustado ao risco é definido como a relação entre o retorno anualizado e a volatilidade anualizada.",volatility:"Este gráfico mostra a volatilidade anualizada (ou seja, desvio padrão). Para calculá-la, usamos dados do último ano disponível, por isso a métrica está ausente durante o primeiro ano de vida do nosso produto."}},metaInfo:{title:e=>`${e.named("productName")} - Análise`},tab:{historical:"Histórico",historicalText:'Para produtos que já foram lançados, distinguimos a seção "Análise" entre "Análise ao Vivo" e "Análise Histórica". A seção "Análise Histórica" visa ilustrar o desempenho do produto antes de seu lançamento. O desempenho é baseado em uma simulação realista da estratégia. No entanto, nenhum ativo sob gestão estava envolvido durante o período correspondente.',internal:"Interno",live:"Ao vivo",liveText:'Para produtos que já foram lançados, distinguimos a seção "Análise" entre "Análise ao Vivo" e "Análise Histórica". A seção "Análise ao Vivo" ilustra o desempenho desde o lançamento do produto.'}},documentDownload:{failure:"O arquivo não pôde ser baixado, por favor entre em contato conosco se isso for inesperado.",needAuth:"Você precisa estar autenticado para baixar este documento. Faça login.",preparing:"O arquivo está sendo preparado para download...",seeProductOverview:"Ver visão geral do produto",success:"O arquivo foi baixado com sucesso.",metaInfo:{title:e=>`${e.named("productName")} - Download de Documentos`}},documents:{addFile:"Adicionar um arquivo",document:"Documento",nameValidationError:"O nome já está sendo usado por outro documento, por favor escolha um nome diferente.",noDocument:"Nenhum documento fornecido para este produto.",noArchivedDocument:"Nenhum documento arquivado para este produto.",noteDragAndDrop:"Nota: Arraste e solte as linhas para reordenar os documentos.",shareClass:"Classe de ações",archiveIconTooltip:"Arquivar",unarchiveIconTooltip:"Desarquivar",archivedDocumentsCardTitle:"Documentos arquivados",dialog:{fileDeletion:{title:"Exclusão de arquivo",text:"Você está prestes a excluir completamente o arquivo e não poderá acessá-lo novamente. Tem certeza?"},fileArchiving:{title:"Arquivamento de arquivo",text:'Você está prestes a arquivar este arquivo, o que significa que ele será movido para seus "documentos arquivados" (logo abaixo dos documentos). Note que será possível desarquivá-lo. Deseja arquivá-lo?'},fileUnarchiving:{title:"Desarquivamento de arquivo",text:"Você está prestes a desarquivar este arquivo, o que significa que ele voltará para seus documentos normais. Deseja desarquivá-lo?"},needLogin:{text:"Para baixar este documento, você precisa estar autenticado.",title:"Você precisa estar autenticado"}},metaInfo:{title:e=>`${e.named("productName")} - Documentos`},notify:{savingDocumentsError:"Ocorreu um erro ao tentar atualizar os documentos. Tente novamente mais tarde, ou entre em contato conosco.",savingDocumentsSuccess:"Documentos atualizados com sucesso.",fileDownloadError:"Erro ao baixar o documento, por favor entre em contato conosco."},prompt:{fileDisplayName:"Nome de exibição do arquivo",loginRequired:"Login obrigatório?",uploadFile:{acceptText:"Fazer upload do arquivo",file:"Arquivo",fileLanguage:"Idioma do arquivo",shouldConsiderLastFactsheet:"Este arquivo deve ser considerado como o último factsheet para o produto?",title:"Fazer upload de arquivo"},editFile:{title:"Editar documento"}}},embedded:{perfGraph:{metaInfo:{title:e=>`${e.named("productName")} - Gráfico de Desempenho Incorporado`}},perfTable:{currency:"Moeda",inceptionDate:"Data de início",name:"Nome",lastPriceAsOf:"Último preço em",mtd:"MTD",si:"SI",y1:"-1 Ano",y3:"-3 Anos",ytd:"YTD",metaInfo:{title:e=>`${e.named("productName")} - Tabela de Desempenho Incorporada`}},statsTable:{feesIncluded:"As taxas estão incluídas.",metaInfo:{title:e=>`${e.named("productName")} - Tabela de Estatísticas Incorporada`}}},events:{covidCrisis:"Crise da COVID-19",crisis2022:"Crise de 2022",december2018Crisis:"Crise de dezembro de 2018",euroCrisis:"Crise do Euro",financialCrisis:"Crise financeira",alvolaLive:"Alvola Ao Vivo",convexusLive:"Convexus Ao Vivo",lstsLive:"LSTS Ao Vivo",protechLive:"ProTech Ao Vivo",sinceInception:"Desde o início",ynnovationLive:"Ynnovation Ao Vivo",calmgard:{calmgardCovid19Crisis:"Crise da Covid-19",calmgardEuroCrisisOne:"Crise do Euro I",calmgardEuroCrisisTwo:"Crise do Euro II",calmgardGreekAndChinaCrisis:"Crise da Grécia e da China",calmgardInterestRateSpeculationOne:"Especulação de Taxa de Juros I",calmgardInterestRateSpeculationTwo:"Especulação de Taxa de Juros II",calmgardPostFinancialCrisis:"Pós-Crise Financeira",calmgardUkraineWar:"Guerra da Ucrânia"},falgom:{falgomCoronavirusPandemic:"Pandemia de Coronavírus",falgomFedQuantitativeTapering:"Aperto Quantitativo do FED",falgomGlobalFinancialCrisis:"Crise Financeira Global",falgomGrowthSlowdownChina:"Desaceleração do Crescimento na China",falgomRecessionEurope:"Recessão na Europa",falgomVolmageddon:"Volmageddon"}},factsheet:{firstDateToInclude:"Primeira data a incluir (aaaa-mm-dd)",lastDateToInclude:"Última data a incluir (aaaa-mm-dd)",nameValidationError:"O nome já está sendo usado por outro de seus documentos, por favor escolha um diferente.",shareClass:"Classe de ações",year:"Ano",cardTitle:{assetClasses:"Classes de ativos",contacts:"Contatos",currencyExposure:"Exposição cambial",description:"Descrição",disclaimer:"Aviso legal",drawdowns:"Quedas",monthlyComment:"Comentário mensal",monthlyPerformance:"Desempenho mensal",monthlyReturns:"Retornos mensais",historicalPrices:"Preços históricos",instrumentTypes:"Tipos de instrumentos",productDetails:"Detalhes do produto",regions:"Regiões",relativePerformance:"Desempenho relativo",riskProfile:"Perfil de risco",sectors:"Setores",shareClasses:"Classes de ações",topHoldings:"Principais participações",volatility:"Volatilidade",yearlyPerformance:"Desempenho anual"},dragAndDrop:{addGenericComponent:"Adicionar componente",availableGenericComponents:"Componentes genéricos disponíveis",availablePredefinedComponents:"Componentes predefinidos",editFactsheet:"Editar factsheet",componentTooBig:"O componente é muito grande para ser contido em uma única página.",saveSuccessText:"A configuração do factsheet foi atualizada com sucesso.",stopEdit:"Parar edição",general:{primaryColor:"Cor primária",title:"Geral",fontSize:{normal:"Normal",large:"Grande",small:"Pequena",title:"Tamanho da fonte"},spacing:{comfortable:"Confortável",compact:"Compacto",title:"Espaçamento"},titleBorder:{above:"Acima do título",below:"Abaixo do título",none:"Sem borda",title:"Borda do título"}},footer:{edit:"Editar o rodapé",title:"Rodapé",text:"Texto",page:"Página",showPageNumber:"Mostrar número da página",showFooterLine:"Mostrar linha do rodapé"},forcedElementDeletionWarning:{componentsWereRemoved:"Alguns componentes foram removidos do seu layout devido ao seu tamanho exceder a área exibível de uma única página ou sua coluna ser muito grande. Os IDs dos componentes removidos são:",resolveSolution:"Para resolver esse problema, reduza a altura dos componentes afetados, coloque o componente em uma nova linha única ou entre em contato conosco.",title:"Remoção forçada de componentes do layout"},header:{backgroundImage:"Imagem de fundo",hideProductName:"Ocultar nome do produto",logo:"Logotipo",onlyOnFirstPage:"Somente na primeira página",textInPrimary:"Texto na cor da marca",title:"Cabeçalho",useCompanyLogo:"Usar logotipo da empresa",datePosition:{bottomLeft:"Inferior esquerdo",bottomRight:"Inferior direito",standard:"Padrão",title:"Posição da data",topLeft:"Superior esquerdo",topRight:"Superior direito"}}},generateFactsheet:{downloadFactsheet:"Baixar factsheet",generatingFactsheet:"Gerando factsheet ...",saveFactsheet:"Salvar factsheet em Documentos",notify:{generatingError:"Erro ao gerar o factsheet, por favor entre em contato conosco.",savedInDocumentsSection:"Seu factsheet foi salvo na seção Documentos."},prompt:{acceptText:"Salvar factsheet",considerLastFactsheet:"Este arquivo deve ser considerado como o último factsheet para o produto?",fileDisplayName:"Nome de exibição do arquivo",loginRequired:"Login obrigatório?",title:"Gerar e enviar factsheet"}},metaInfo:{title:e=>`${e.named("productName")} - Factsheet`},shareClassesTable:{bloomberg:"Bloomberg",class:"Classe",currency:"Moeda",inception:"Início",isin:"ISIN",mgmtFee:"Taxa de gestão",mtdPerf:"Desemp. MTD",nav:"NAV",navDate:"Data do NAV",perfFee:"Taxa de desempenho",siPerf:"Desemp. SI",ytdPerf:"Desemp. YTD"},statistics:{title:"Estatísticas",periods:{1:"1M",3:"3M",6:"6M",ytd:"YTD",12:"1A",36:"3A",60:"5A",max:"MAX"}},statisticsWithPeriods:{title:"Desempenho",periods:{1:"1M",3:"3M",6:"6M",ytd:"YTD",12:"1A",36:"3A",60:"5A",max:"MAX"}}},months:{short:{jan:"Jan",feb:"Fev",mar:"Mar",apr:"Abr",may:"Mai",jun:"Jun",jul:"Jul",aug:"Ago",sep:"Set",oct:"Out",nov:"Nov",dec:"Dez"}},overview:{assetClasses:"Classes de ativos",currencyExposure:"Exposição cambial",keyCharacteristics:"Características principais",historicalPrices:"Preços históricos",instrumentTypes:"Tipos de instrumentos",itd:"Retorno ITD",itdDescription:e=>`ITD (inception-to-date) é um período que começa a partir do início do produto (${e.named("date")}) e continua até o presente.`,lastChange:"Última mudança",lastDayChange:"Mudança no último dia",lastWeekChange:"Mudança na última semana",lastMonthChange:"Mudança no último mês",lastQuarterChange:"Mudança no último trimestre",lastYearChange:"Mudança no último ano",monthlyReturns:"Retornos mensais",lastPrice:"Preço",performance:"Desempenho",productDetails:"Detalhes do produto",productTimeline:"Linha do tempo do produto",regions:"Regiões",sectors:"Setores",shareClass:"Classe de ações",topHoldings:"Principais participações",yearlyReturns:"Retornos anuais",ytd:"Retorno YTD",ytdDescription:"YTD (year-to-date) é um período que começa no início do ano calendário atual e continua até o presente.",dragAndDrop:{addGenericComponent:"Adicionar componente",availableGenericComponents:"Componentes genéricos",availablePredefinedComponents:"Componentes predefinidos",editOverview:"Editar visão geral",saveSuccessText:"A configuração da visão geral foi atualizada com sucesso.",stopEdit:"Parar edição"},follow:{buttonText:"Seguir",buttonTextFollowing:"Seguindo",notify:{error:"Ocorreu um erro. Tente novamente ou entre em contato conosco se o problema persistir.",followSuccess:e=>`Agora você está seguindo ${e.named("productName")}.`,unfollowSuccess:e=>`Você não está mais seguindo ${e.named("productName")}.`},promptNotFollowing:{acceptText:"Seguir",text:"Ao seguir este produto, você aceita receber informações relacionadas a ele de tempos em tempos. Você sempre poderá deixar de seguir para parar de receber essas informações.",title:"Seguir produto"},promptFollowing:{acceptText:"Deixar de seguir",text:"Você está atualmente seguindo este produto. Deseja deixar de segui-lo, o que significa que não receberá mais informações relacionadas ao produto?",title:"Deixar de seguir produto"},promptNotLoggedIn:{cancelText:"Criar uma conta",text:"Se você deseja seguir este produto, precisa estar logado em sua conta. Se não tiver uma conta, pode criar uma gratuitamente.",title:"Seguir produto"}},metaInfo:{title:e=>`${e.named("productName")} - Visão Geral`},statsOptions:{1:"1 mês",3:"3 meses",6:"6 meses",ytd:"Ano até a data",12:"1 ano",36:"3 anos",60:"5 anos",max:"Desde o início"}},useCase:{allocationAlvola:"Alocação para Alvola",biggestDrawdowns:e=>`Maiores quedas de ${e.named("benchmark")}`,description:"Nosso caso de uso ilustra como adicionar a estratégia Alquant Alvola a um portfólio de ações existente pode aumentar os retornos a longo prazo enquanto reduz a queda máxima. Selecione seu portfólio de ações desejado e alocação para a estratégia Alquant Alvola e descubra como a combinação teria se comportado no passado (antes do início de nosso produto em 02 de junho de 2021). Além disso, você também encontrará o desempenho durante os 10 maiores períodos de queda do seu portfólio de ações selecionado.",drawdowns:"Quedas",equityPortfolio:"Portfólio de ações",historicalResults:"Resultados históricos",portfolioAllocation:"Alocação de portfólio",protectPortfolio:"Proteja seu portfólio com Alvola",metaInfo:{title:e=>`${e.named("productName")} - Caso de Uso`}}},settings:{metaInfo:{title:e=>`Configurações - ${e.named("name")}`},changePassword:{confirmNewPassword:"Confirmar nova senha",currentPassword:"Senha atual",newPassword:"Nova senha",title:"Alterar senha",notify:{success:"Sua senha foi atualizada com sucesso.",couldntChange:"Não foi possível alterar sua senha, por favor entre em contato conosco usando o formulário de contato para corrigir esse erro!",wrongPassword:"Você forneceu a senha incorreta."}},deleteAccount:{deleteYourAccount:"Excluir sua conta",title:"Excluir conta",notify:{success:"Sua conta foi excluída com sucesso."},dialog:{permanentlyDeleteData:{text:"Excluir sua conta excluirá permanentemente todos os seus dados.",title:"Confirmar"},recentLoginNeeded:"É necessário um login recente"}},editProfile:{company:"Empresa",email:"E-mail",firstName:"Nome",investorProfileCountry:"País",investorProfileType:"Tipo de investidor",lastName:"Sobrenome",phone:"Telefone",title:"Editar perfil",requiredFields:'Campos marcados com <span class="text-danger">*</span> são obrigatórios.',dialog:{askValidation:{title:"Verificação de detalhes pessoais",text:"Por favor, verifique seus dados pessoais e salve-os quando tiver terminado."}},notify:{errorText:"Não foi possível atualizar seus dados, por favor entre em contato conosco usando o formulário de contato para corrigir esse erro!",successText:"A atualização foi um sucesso"}},overview:{email:"E-mail",name:"Nome",title:"Visão geral da conta"},preferences:{discard:"Descartar",hideProducts:"Ocultar Produtos Conectados",title:"Preferências",notify:{savedText:"As configurações das suas preferências foram salvas com sucesso."}}}},tt={ppt:{redirectButtonNavBarUrl:"https://ppt.ch/en/asset-management/",redirectButtonNavBarText:"Voltar ao sítio principal"}},at={apply:"Aplicar",asOf:e=>`a partir de ${e.named("date")}`,cancel:"Cancelar",contactUs:"Contate-nos",edit:"Editar",error:"Erro",from:"De",ok:"Ok",loading:"Carregando...",logIn:"Entrar",logOut:"Sair",no:"Não",others:"Outros",register:"Registrar",save:"Salvar",saving:"Salvando...",serverError:"Ocorreu um erro em nosso servidor. Um relatório foi enviado à nossa equipe e corrigiremos o mais rápido possível. Não hesite em nos contatar se o problema persistir.",success:"Sucesso",to:"Para",warning:"Aviso",yes:"Sim",investorProfileTypes:{institutional:"Investidor institucional",professional:"Investidor profissional",retail:"Investidor de varejo"},layouts:{main:{dev:"Desenvolvimento",devTooltip:"Este produto está em desenvolvimento",admin:{listUsers:"Lista de usuários",platformSettings:"Configurações da plataforma",products:"Produtos",sectionName:"Admin",operations:{name:"Operações",generateFactsheets:{name:"Gerar fichas técnicas"}}},help:{contact:"Contato",faq:"FAQ",knowledgeBase:"Base de conhecimento",sectionName:"Ajuda"},products:{analysis:"Análise",documents:"Documentos",factsheet:"Ficha técnica",overview:"Visão geral",sectionName:"Produtos",useCase:"Caso de uso"}},fullPage:{backHome:"Voltar para a página inicial"},profileDropDown:{settings:"Configurações",dialog:{adminAsRegularOnMobile:{text:"Os recursos administrativos não podem ser acessados em dispositivos móveis. Para experimentar completamente a plataforma, utilize um computador desktop. Os recursos administrativos desativados incluem (mas não estão limitados a): edição de elementos na Visão Geral, edição da Ficha Técnica, upload ou exclusão de documentos e acesso à seção administrativa.",title:"Computador desktop necessário para recursos administrativos"}}},theFooter:{allRightReserved:"Todos os direitos reservados",copyright:"Copyright",ombudsman:"Ombudsman",privacyPolicy:"Política de privacidade",termsOfUse:"Termos de uso"},verticalNavMenu:{errorLoading:"Erro ao carregar o menu"},verticalNavMenuGroup:{search:"Pesquisar",showMore:"Mostrar mais"}},perfStats:{alpha:"Alpha",annualizedReturn:"Retorno anualizado",annualizedVolatility:"Volatilidade anualizada",averageMonthlyReturns:"Retorno médio mensal",averageNegativeMonthlyReturns:"Retorno médio negativo mensal",averagePositiveMonthlyReturns:"Retorno médio positivo mensal",beta:"Beta",calmarRatio:"Índice de Calmar",correlation:"Correlação",cumulativeReturn:"Retorno acumulado",informationRatio:"Índice de Informação",kurtosis:"Curtose",m2RiskAdjustedPerfMonthly:"Medida M2",maxConsecutiveNegativeMonthlyReturns:"Máximo de meses consecutivos de retornos negativos",maxConsecutivePositiveMonthlyReturns:"Máximo de meses consecutivos de retornos positivos",maxNegativeMonthlyReturn:"Maior retorno negativo mensal",maxPositiveMonthlyReturn:"Maior retorno positivo mensal",maximumDrawdown:"Maior perda acumulada",omegaRatio:"Índice Omega",ratioOfNegativeMonthlyReturns:"Proporção de retornos mensais negativos",ratioOfPositiveMonthlyReturns:"Proporção de retornos mensais positivos",returnToVolatilityRatio:"Índice de retorno à volatilidade",sharpeRatio:"Índice Sharpe",skewness:"Assimetria",sortinoRatio:"Índice Sortino",trackingError:"Erro de acompanhamento",treynorRatio:"Índice Treynor",valueAtRiskOnePercentOneMonth:"Valor em Risco (VaR) 1% em 1 mês",valueAtRiskFivePercentOneMonth:"Valor em Risco (VaR) 5% em 1 mês"},validations:{afterDate:e=>0==e.named("nDaysApart")?`A data deve ser posterior a ${e.named("minDate")} (inclusa)`:`A data deve ser pelo menos ${e.named("nDaysApart")} dias após ${e.named("minDate")}`,beforeDate:e=>0==e.named("nDaysApart")?`A data deve ser anterior a ${e.named("maxDate")} (inclusa)`:`A data deve ser pelo menos ${e.named("nDaysApart")} dias antes de ${e.named("maxDate")}`,confirmed:"O campo não corresponde ao anterior.",dateFormat:"A data deve estar no formato AAAA-MM-DD.",email:"O e-mail não é válido.",maxFileSize:e=>`O arquivo é maior que o tamanho máximo autorizado (${(e.named("maxSizeBytes")/1e3/1e3).toFixed(0)} MB).`,maxChar:e=>`O campo não pode ter mais que ${e.named("length")} caracteres.`,minChar:e=>`O campo precisa de pelo menos ${e.named("length")} caracteres.`,minValue:e=>`O valor deve ser maior ou igual a ${e.named("min")}.`,phoneNumber:"Este campo não é um número de telefone válido.",required:"Este campo é obrigatório.",roleFormat:'O nome da função não pode conter o caractere ":".',sum:e=>`A soma esperada é ${e.named("expectedValue")} (atual: ${e.named("currentValue")}).`},wlps:tt,pages:et,components:Xe};const ot={en:$e,de:He,fr:Je,pt:at};var rt=a(77743),nt=a(18757);o["default"].component("EditorTinymce",f.A),o["default"].use(h()),o["default"].prototype.$http=v.A,Se.Ub.wait=!0,o["default"].component("ValidationProvider",Ce.LW),o["default"].component("ValidationObserver",Ce.Ce),o["default"].use(Ie.b),o["default"].component("VuePhoneNumberInput",Ee()),o["default"].use(Re.VueReCaptcha,{siteKey:"6Ld4uTIjAAAAAPQdyi55G0OunkuHSHeZukxVpvOP"}),o["default"].use(Me()),o["default"].use(qe.Ay,{defaultTrigger:"hover focus touch click",defaultClass:"text-xs md:text-base z-[60000]"}),o["default"].use(xe.A),o["default"].use(Fe()),o["default"].use(Be.iframeResizerContentWindow),Le.T({Vue:o["default"],dsn:"https://0adf7a7ad4354d888326998844d2e530@o1283472.ingest.sentry.io/4504798763876352",integrations:[Ne.d({router:be.A})],tracePropagationTargets:["https://openfunds-platform-369613.appspot.com/","https://ambient-net-369611.appspot.com/","https://openfunds.platform-api.alquant.com/",/^\//],denyUrls:["localhost"],release:"c4d009b635af26d5ae79208ee7cacd2b8aa4b07f",tracesSampleRate:1,logErrors:!0,environment:"production",ignoreErrors:["Non-Error promise rejection captured with value: Timeout",/^Non-Error promise rejection captured with value: Object Not Found Matching Id:(\d+), MethodName:(\w+), ParamCount:(\d+)$/,"ResizeObserver loop completed with undelivered notifications.","ResizeObserver loop limit exceeded",/^Loading CSS chunk \d+ failed\.(.|\n)*$/]}),o["default"].prototype.$d3FormatLocale=(0,Ue.OET)({decimal:".",thousands:",",grouping:[3],minus:"-"}).format,o["default"].use(Ve.A);let st=localStorage.getItem(rt.Nf);st?nt.A.availableLanguages.includes(st)||(st=nt.A.availableLanguages[0],localStorage.setItem(rt.Nf,st)):(nt.A.availableLanguages.length>1&&navigator.languages?.map((e=>e.split("-")[0]))?.forEach((e=>{!st&&nt.A.availableLanguages.includes(e)&&(st=e)})),st||(st=nt.A.availableLanguages[0]),localStorage.setItem(rt.Nf,st));const it=new Ve.A({locale:st,fallbackLocale:"en",messages:ot});let lt,dt;function ut(){return Promise.all([we.A.dispatch("allProducts/initShareClassRootToProductIdToShow"),we.A.dispatch("userInfo/setIpTypeFromBrowserLocalStorage"),we.A.dispatch("userInfo/setIpCountryFromBrowserLocalStorage")])}function ct(){return Promise.all([we.A.dispatch("platformSettings/bindPlatformSettingsLangs"),we.A.dispatch("platformSettings/bindPlatformSettings"),...nt.A.products.map((e=>[we.A.dispatch(`${e.storeModule}/bindProductConfig`,{productId:e.productId}),we.A.dispatch(`${e.storeModule}/bindProductLangsConfig`,{productId:e.productId})])).flat()])}async function mt(){null!==dt&&(lt.$mount("#app"),await lt.$nextTick(),dt.$destroy(),dt=null)}ye().locale(st),(0,b.WV)(s.A.analytics(),!0!==nt.A.disableGoogleAnalytics),s.A.analytics().setUserProperties({platform_lang:st}),a(88201),o["default"].config.productionTip=!1,setTimeout((()=>{null!==dt&&(document.getElementById("intial-index-spinner").style["display"]="none",document.getElementById("intial-index-refresh-button").style["display"]="block",dt=null)}),3e4),s.A.auth().onAuthStateChanged((async e=>{const t=[ct(),ut()];e&&e.emailVerified&&(t.push(s.A.auth().currentUser.getIdTokenResult(!0)),t.push(we.A.dispatch("settings/bindPreferences")),t.push(we.A.dispatch("auth/setLoginInfo",e)),t.push(we.A.dispatch("userInfo/bindUserInfoRef"))),await Promise.all(t),lt||(lt=new o["default"]({router:be.A,store:we.A,i18n:it,render:e=>e(m)}),dt=new o["default"]({computed:{isBindingReady(){return we.A.getters["platformSettings/isBindingReady"]&&nt.A.products.every((e=>we.A.getters[`${e.storeModule}/isBindingReady`]))}},watch:{isBindingReady:{handler(e){e&&mt()},immediate:!0}}}))})),v.A.interceptors.request.use((async e=>{if(e.headers&&(!e.headers["Authorization"]||""==e.headers["Authorization"])){const t=await we.A.dispatch("auth/setToken");t&&(e.headers["Authorization"]=`FirebaseToken ${t}`)}return e}),(e=>{Promise.reject(e)})),v.A.interceptors.response.use(void 0,(async e=>{const t=[401,403],a=[498],o=e.config;if(o&&o.headers&&(o.headers=JSON.parse(JSON.stringify(o.headers))),e.response&&t.includes(e.response.status)){if(!o._retry){o._retry=!0;const e=await we.A.dispatch("auth/setToken");return o.headers["Authorization"]=`FirebaseToken ${e}`,(0,v.A)(o)}}else{if(e.response&&a.includes(e.response.status))return"page-login"==be.A.app.$route.name?Promise.reject(e):(await we.A.dispatch("auth/signOut"),be.A.push({name:"page-login",params:{tokenInvalidated:!0}}));if(e.code&&"ERR_NETWORK"==e.code)return o._nRetries?o._nRetries+=1:o._nRetries=1,12==o._nRetries?Promise.reject(e):(s.A.analytics().logEvent(Z.Ou,{response_status_code:429,response_status_text:`Retry ${o._nRetries}`,server_endpoint:o.url}),(0,v.A)(o))}let r=e.config.url;return e.config.params&&Object.keys(e.config.params).length>0&&(r+=`?${Object.entries(e.config.params).map((e=>e[0]+"="+e[1])).join("&")}`),e.response?s.A.analytics().logEvent(Z.Ou,{response_status_code:e.response.status,response_status_text:e.response.statusText||e.message?e.response.statusText+" | "+e.message:e,server_endpoint:r}):e.request?s.A.analytics().logEvent(Z.Kb,{response_status_code:e.code??e.name,response_status_text:e.code||e.name||e.message?e.code+" | "+e.name+" | "+e.message:e,server_endpoint:r}):s.A.analytics().logEvent(Z.V0,{response_status_text:e.message??e,server_endpoint:r}),Promise.reject(e)}))},84688:function(e,t,a){"use strict";a.d(t,{A:function(){return S}});var o=a(85471),r=a(40173),n=a(71642),s=a(18757),i=a(14760),l=a(96982),d=a(2543),u=a(95093),c=a.n(u),m=a(77743);function p(e){return s.A.langInUrl?`/:lang${e}`:e}function h(e,t,a){if(!s.A.langInUrl)return a();const o=e.params.lang??s.A.availableLanguages[0];return s.A.availableLanguages.includes(o)?(i.R.locale=o,c().locale(o),localStorage.setItem(m.Nf,o),a()):a({name:"page-error-404",params:{lang:s.A.availableLanguages[0]}})}const g=s.A.products??[];let f=[],v=[],b=[];g.forEach((e=>{const t=[],o=[];t.push({path:p(`/products/${e.productId}/overview`),name:`products_${e.storeModule}`,component:()=>Promise.all([a.e(5262),a.e(209),a.e(1317),a.e(8039),a.e(3125),a.e(5797),a.e(5304),a.e(7197),a.e(975)]).then(a.bind(a,9117)),meta:{productId:e.productId,authorize:e.allowedRoles??s.A.allowedRoles,allowAdminOfOneShareClass:!0},props:{productId:e.productId,lockedBehindLogin:e.lockedBehindLogin,storeModule:e.storeModule,productName:e.productName,productShareClassRoot:e.productShareClassRoot,mode:e.live?.mode,updateFrequency:e.live?.updateFrequency,showNextSubscriptionAndRedemption:e.showNextSubscriptionAndRedemption,timelineData:e.timelineData},beforeEnter:h}),e.live&&(t.push({path:p(`/products/${e.productId}/live-analysis`),name:`products_${e.storeModule}_liveAnalysis`,component:()=>e.live.componentPath?a(20942)(`./${e.live.componentPath}`):Promise.all([a.e(5262),a.e(209),a.e(1317),a.e(8039),a.e(3125),a.e(4037),a.e(5797),a.e(9746),a.e(825)]).then(a.bind(a,3651)),meta:{productId:e.productId,authorize:e.live.allowedRoles??e.allowedRoles??s.A.allowedRoles,allowAdminOfOneShareClass:!0},props:{productId:e.productId,lockedBehindLogin:e.lockedBehindLogin,storeModule:e.storeModule,productName:e.productName,productShareClassRoot:e.productShareClassRoot,genericCardsToShow:e.live.genericCardsToShow,perfStats:e.live.perfStats,productColor:e.productColor,allowLiveComparison:e.live.allowLiveComparison,events:e.live.events,allowLogScale:e.live.allowLogScale,defaultLogScale:e.live.defaultLogScale,mode:e.live.mode,tabmenuItems:e.tabmenuItems,tabmenuText:e.live.tabmenuText},beforeEnter:h}),o.push({path:p(`/products/${e.productId}/embedded/live-perf-graph`),name:`products_${e.storeModule}_embedded_livePerfGraph`,component:()=>Promise.all([a.e(1317),a.e(8843)]).then(a.bind(a,6784)),meta:{noNeedOfInvestorProfile:!0},props:{productId:e.productId,storeModule:e.storeModule,productName:e.productName,productColor:e.productColor,allowLogScale:e.live.allowLogScale,defaultLogScale:e.live.defaultLogScale,mode:e.live.mode},beforeEnter:h}),o.push({path:p(`/products/${e.productId}/embedded/live-stats-table`),name:`products_${e.storeModule}_embedded_liveStatsTable`,component:()=>a.e(63).then(a.bind(a,10063)),meta:{noNeedOfInvestorProfile:!0},props:{productId:e.productId,storeModule:e.storeModule,productName:e.productName,productColor:e.productColor,perfStats:e.live.perfStats,mode:e.live.mode},beforeEnter:h}),o.push({path:p(`/products/${e.productId}/embedded/live-perf-table`),name:`products_${e.storeModule}_embedded_livePerfTable`,component:()=>a.e(4106).then(a.bind(a,94106)),meta:{noNeedOfInvestorProfile:!0},props:{productId:e.productId,storeModule:e.storeModule,productName:e.productName},beforeEnter:h})),e.historical&&(t.push({path:p(`/products/${e.productId}/historical-analysis`),name:`products_${e.storeModule}_historicalAnalysis`,component:()=>e.historical.componentPath?a(20942)(`./${e.historical.componentPath}`):Promise.all([a.e(5262),a.e(209),a.e(1317),a.e(8039),a.e(3125),a.e(4037),a.e(5797),a.e(9746),a.e(825)]).then(a.bind(a,3651)),meta:{productId:e.productId,authorize:e.historical.allowedRoles??e.allowedRoles??s.A.allowedRoles,allowAdminOfOneShareClass:!0},props:{productId:e.productId,lockedBehindLogin:e.lockedBehindLogin,storeModule:e.storeModule,productName:e.productName,productShareClassRoot:e.productShareClassRoot,genericCardsToShow:e.historical.genericCardsToShow,perfStats:e.historical.perfStats,productColor:e.productColor,allowLiveComparison:e.historical.allowLiveComparison,events:e.historical.events,allowLogScale:e.historical.allowLogScale,defaultLogScale:e.historical.defaultLogScale,mode:e.historical.mode,tabmenuItems:e.tabmenuItems,tabmenuText:e.historical.tabmenuText},beforeEnter:h}),o.push({path:p(`/products/${e.productId}/embedded/historical-perf-graph`),name:`products_${e.storeModule}_embedded_historicalPerfGraph`,component:()=>Promise.all([a.e(1317),a.e(8843)]).then(a.bind(a,6784)),props:{productId:e.productId,storeModule:e.storeModule,productName:e.productName,productColor:e.productColor,allowLogScale:e.historical.allowLogScale,defaultLogScale:e.historical.defaultLogScale,mode:e.historical.mode},beforeEnter:h}),o.push({path:p(`/products/${e.productId}/embedded/historical-stats-table`),name:`products_${e.storeModule}_embedded_historicalStatsTable`,component:()=>a.e(63).then(a.bind(a,10063)),props:{productId:e.productId,storeModule:e.storeModule,productName:e.productName,productColor:e.productColor,mode:e.historical.mode},beforeEnter:h})),e.internal&&t.push({path:p(`/products/${e.productId}/internal-analysis`),name:`products_${e.storeModule}_internalAnalysis`,component:()=>e.internal.componentPath?a(20942)(`./${e.internal.componentPath}`):Promise.all([a.e(5262),a.e(209),a.e(1317),a.e(8039),a.e(3125),a.e(4037),a.e(5797),a.e(9746),a.e(825)]).then(a.bind(a,3651)),meta:{productId:e.productId,authorize:e.internal.allowedRoles??e.allowedRoles??s.A.allowedRoles,allowAdminOfOneShareClass:!0},props:{productId:e.productId,storeModule:e.storeModule,productName:e.productName,productShareClassRoot:e.productShareClassRoot,genericCardsToShow:e.internal.genericCardsToShow,perfStats:e.internal.perfStats,productColor:e.productColor,allowLiveComparison:e.internal.allowLiveComparison,events:e.internal.events,allowLogScale:e.internal.allowLogScale,defaultLogScale:e.internal.defaultLogScale,mode:e.internal.mode,tabmenuItems:e.tabmenuItems,tabmenuText:e.internal.tabmenuText},beforeEnter:h}),e.useCase&&t.push({path:p(`/products/${e.productId}/use-case`),name:`products_${e.storeModule}_useCase`,component:()=>a(20942)(`./${e.useCase.componentPath}`),meta:{productId:e.productId,authorize:e.allowedRoles??s.A.allowedRoles,allowAdminOfOneShareClass:!0},props:{storeModule:e.storeModule},beforeEnter:h}),e.factsheet&&(t.push({path:p(`/products/${e.productId}/factsheet`),name:`products_${e.storeModule}_factsheet`,component:()=>Promise.all([a.e(5262),a.e(209),a.e(1317),a.e(8039),a.e(3125),a.e(5797),a.e(5304),a.e(7197),a.e(3515),a.e(8419)]).then(a.bind(a,11621)),meta:{productId:e.productId,authorize:e.factsheet.allowedRoles??e.allowedRoles??s.A.allowedRoles,allowAdminOfOneProduct:!0},props:{productId:e.productId,mode:e.factsheet.mode,productName:e.productName,productShortName:e.productShortName,productColor:e.productColor,productShareClassRoot:e.productShareClassRoot,showBenchmark:e.factsheet.showBenchmark,storeModule:e.storeModule,needLoginToSee:e.factsheet.needLoginToSee},beforeEnter:h}),b.push({path:p(`/products/${e.productId}/factsheet-for-pdf-generation`),name:`products_${e.storeModule}_factsheet-for-pdf-generation`,component:()=>Promise.all([a.e(5262),a.e(209),a.e(1317),a.e(8039),a.e(3125),a.e(5797),a.e(5304),a.e(7197),a.e(3515),a.e(3627)]).then(a.bind(a,91677)),meta:{productId:e.productId,noNeedOfInvestorProfile:!0},props:{productId:e.productId,mode:e.factsheet.mode,productName:e.productName,productShortName:e.productShortName,productColor:e.productColor,productShareClassRoot:e.productShareClassRoot,showBenchmark:e.factsheet.showBenchmark,storeModule:e.storeModule},beforeEnter:h})),t.push({path:p(`/products/${e.productId}/documents`),name:`products_${e.storeModule}_documents`,component:()=>Promise.all([a.e(8039),a.e(2587)]).then(a.bind(a,82587)),meta:{productId:e.productId,authorize:e.allowedRoles??s.A.allowedRoles,allowAdminOfOneShareClass:!0},props:{productId:e.productId,lockedBehindLogin:e.lockedBehindLogin,storeModule:e.storeModule,productName:e.productName,productShareClassRoot:e.productShareClassRoot},beforeEnter:h}),t.push({path:p(`/products/${e.productId}/download-document`),name:`products_${e.storeModule}_downloadDocument`,component:()=>a.e(8271).then(a.bind(a,18271)),meta:{productId:e.productId,authorize:e.allowedRoles??s.A.allowedRoles,allowAdminOfOneShareClass:!0},props:{productId:e.productId,storeModule:e.storeModule,productName:e.productName},beforeEnter:h}),t.push({path:p(`/products/${e.productId}/download-last-factsheet`),name:`products_${e.storeModule}_downloadLastFactsheet`,component:()=>a.e(2841).then(a.bind(a,42841)),meta:{productId:e.productId,authorize:e.allowedRoles??s.A.allowedRoles,allowAdminOfOneShareClass:!0},props:{productId:e.productId,storeModule:e.storeModule},beforeEnter:h}),f.push(t),v.push(o)})),f=(0,d.flattenDeep)(f),v=(0,d.flattenDeep)(v),o["default"].use(r.Ay);let w=[{path:p("/"),name:"home",component:()=>a.e(9216).then(a.bind(a,59216)),meta:{authorize:s.A.allowedRoles,allowAdminOfOneProduct:!0},beforeEnter:h},...f,...(s.A.customSections||[]).map((e=>e.subSections.map((e=>e.router)))).flat()];s.A.langInUrl&&w.push({path:"",redirect:`/${s.A.availableLanguages[0]}`}),s.A.oldAlternativeUrlRedirection&&s.A.oldAlternativeUrlRedirection.forEach((e=>{w.push({path:p(e.oldUrl),redirect:p(e.newUrl),beforeEnter:h})})),s.A.help&&(s.A.help.faq&&w.push({path:p("/help/faq"),name:"help_faq",component:()=>a.e(2615).then(a.bind(a,62615)),meta:{authorize:s.A.allowedRoles,allowAdminOfOneProduct:!0},beforeEnter:h}),s.A.help.knowledgeBase&&(w=w.concat([{path:p("/help/knowledge-base"),name:"help_knowledgeBase",component:()=>a.e(4048).then(a.bind(a,14048)),meta:{authorize:s.A.allowedRoles,allowAdminOfOneProduct:!0},beforeEnter:h},{path:p("/help/knowledge-base/terms/:term"),name:"help_knowledgeBase_term",component:()=>a.e(5725).then(a.bind(a,45725)),meta:{authorize:s.A.allowedRoles,allowAdminOfOneProduct:!0},beforeEnter:h,props:!0}])),s.A.help.contact&&w.push({path:p("/help/contact"),name:"help_contact",component:()=>a.e(1397).then(a.bind(a,11397)),meta:{authorize:s.A.allowedRoles,allowAdminOfOneProduct:!0},beforeEnter:h})),w.push({path:p("/admin/users"),name:"admin_users",component:()=>a.e(8683).then(a.bind(a,48683)),meta:{authorize:[n.X.admin,n.X.superAdmin]},beforeEnter:h}),w.push({path:p("/admin/products"),name:"admin_products",component:()=>Promise.all([a.e(5262),a.e(209),a.e(8039),a.e(3125),a.e(7645),a.e(7818),a.e(7493),a.e(8543)]).then(a.bind(a,17892)),meta:{authorize:[n.X.admin,n.X.superAdmin],allowAdminOfOneProduct:!0},beforeEnter:h}),w.push({path:p("/admin/platform-settings"),name:"admin_platformSettings",component:()=>Promise.all([a.e(5262),a.e(209),a.e(216)]).then(a.bind(a,60216)),meta:{authorize:[n.X.admin,n.X.superAdmin]},beforeEnter:h}),w.push({path:p("/admin/operations/generate-factsheets"),name:"admin_operations_generateFactsheets",component:()=>Promise.all([a.e(5262),a.e(1534)]).then(a.bind(a,21534)),meta:{authorize:[n.X.admin,n.X.superAdmin]},beforeEnter:h}),w.push({path:p("/settings/oveview"),name:"settings_overview",component:()=>a.e(207).then(a.bind(a,70207)),meta:{authorize:[n.X.insight,n.X.employee,n.X.admin,n.X.superAdmin],noNeedOfInvestorProfile:!0},beforeEnter:h,props:{sectionId:"overview"}}),w.push({path:p("/settings/edit-profile"),name:"settings_editProfile",component:()=>a.e(207).then(a.bind(a,70207)),meta:{authorize:[n.X.insight,n.X.employee,n.X.admin,n.X.superAdmin],noNeedOfInvestorProfile:!0},beforeEnter:h,props:e=>({sectionId:"editProfile",askVerification:!!e.query?.askVerification})}),w.push({path:p("/settings/change-password"),name:"settings_changePassword",component:()=>a.e(207).then(a.bind(a,70207)),meta:{authorize:[n.X.insight,n.X.employee,n.X.admin,n.X.superAdmin],noNeedOfInvestorProfile:!0},beforeEnter:h,props:{sectionId:"changePassword"}}),w.push({path:p("/settings/delete-account"),name:"settings_deleteAccount",component:()=>a.e(207).then(a.bind(a,70207)),meta:{authorize:[n.X.insight,n.X.employee,n.X.admin,n.X.superAdmin],noNeedOfInvestorProfile:!0},beforeEnter:h,props:{sectionId:"deleteAccount"}}),w.push({path:p("/settings/preferences"),name:"settings_preferences",component:()=>a.e(207).then(a.bind(a,70207)),meta:{authorize:[n.X.admin,n.X.superAdmin],noNeedOfInvestorProfile:!0},beforeEnter:h,props:{sectionId:"preferences"}});const A=[{path:"",component:()=>Promise.all([a.e(209),a.e(7789),a.e(9432)]).then(a.bind(a,44088)),children:w},{path:"",component:()=>a.e(6023).then(a.bind(a,16023)),children:b},{path:"",component:()=>Promise.all([a.e(7789),a.e(1173)]).then(a.bind(a,32661)),children:[{path:p("/auth/login"),name:"page-login",component:()=>a.e(3485).then(a.bind(a,13485)),meta:{authorize:[n.X.guest],noNeedOfInvestorProfile:!0},beforeEnter:h,props:!0},{path:p("/auth/login-2fa"),name:"page-login-2fa",component:()=>a.e(1889).then(a.bind(a,51889)),meta:{authorize:[n.X.guest],noNeedOfInvestorProfile:!0},beforeEnter:h,props:!0},{path:p("/auth/register"),name:"page-register",component:()=>Promise.all([a.e(8017),a.e(9601)]).then(a.bind(a,70101)),meta:{authorize:[n.X.guest],noNeedOfInvestorProfile:!0},beforeEnter:h},{path:p("/auth/register-2fa"),name:"page-register-2fa",component:()=>a.e(9683).then(a.bind(a,9683)),meta:{authorize:[n.X.insight],noNeedOfInvestorProfile:!0},beforeEnter:h},{path:"/auth/handled-by-firebase",beforeEnter(e){const t=Object.keys(e.query).map((t=>`${t}=${e.query[t]}`)),a=t.join("&"),o="openfunds-platform-369613.firebaseapp.com";window.location=`https://${o}/__/auth/action?${a}`},meta:{noNeedOfInvestorProfile:!0}},{path:p("/auth/reset-password-form"),name:"reset-password-form",component:()=>a.e(3463).then(a.bind(a,93463)),meta:{authorize:[n.X.guest],noNeedOfInvestorProfile:!0},beforeEnter:h},{path:p("/compliance/terms-of-use"),name:"compliance_termsofuse",component:()=>a.e(548).then(a.bind(a,10548)),meta:{noNeedOfInvestorProfile:!0},beforeEnter:h},{path:p("/compliance/privacy-policy"),name:"compliance_privacypolicy",component:()=>s.A.customPrivacyPolicyPath?a(99555)(`./${s.A.customPrivacyPolicyPath}`):a.e(833).then(a.bind(a,40833)),meta:{noNeedOfInvestorProfile:!0},beforeEnter:h},{path:p("/compliance/ombudsman"),name:"compliance_ombudsman",component:()=>a.e(9325).then(a.bind(a,79325)),meta:{noNeedOfInvestorProfile:!0},beforeEnter:h},{path:p("/investor-profile"),name:"page-investor-profile",component:()=>a.e(2731).then(a.bind(a,52731)),meta:{noNeedOfInvestorProfile:!0},beforeEnter:h},{path:p("/unauthorized-investor-profile"),name:"page-unauthorized-investor-profile",component:()=>a.e(5457).then(a.bind(a,5457)),meta:{noNeedOfInvestorProfile:!0},beforeEnter:h,props:!0},{path:p("/error-404"),name:"page-error-404",component:()=>a.e(2042).then(a.bind(a,62042)),meta:{noNeedOfInvestorProfile:!0},beforeEnter:h},{path:p("/error-403"),name:"page-error-403",component:()=>a.e(6128).then(a.bind(a,16128)),meta:{noNeedOfInvestorProfile:!0},beforeEnter:h,props:!0}]},{path:"",component:()=>a.e(218).then(a.bind(a,20218)),children:v},{path:"/api/*",beforeEnter(e){const t=Object.keys(e.query).map((t=>`${t}=${e.query[t]}`)),a=t.join("&");window.location=`https://openfunds.platform-api.alquant.com/${e.path}?${a}`},meta:{noNeedOfInvestorProfile:!0}},{path:"*",redirect:"/error-404",meta:{noNeedOfInvestorProfile:!0}}],y=new r.Ay({mode:"history",base:"/",routes:A,scrollBehavior(e,t,a){return a||{x:0,y:0}}});y.afterEach((()=>{const e=document.getElementById("loading-bg");e&&(e.style.display="none")})),y.beforeEach((async(e,t,a)=>{const{authorize:o,allowAdminOfOneProduct:r,allowAdminOfOneShareClass:d,productId:u}=e.meta;if(e.query.customFirebaseTokenForPuppeteer&&await l.A.dispatch("auth/signInWithCustomToken",e.query.customFirebaseTokenForPuppeteer.toString()),await l.A.dispatch("userInfo/setAndGetUserRoles"),s.A.enable2FactorAuthentication&&l.A.getters["userInfo/hasAnyRole"](n.X.insight)&&!l.A.getters["userInfo/hasRegistered2fa"])return"page-register-2fa"===e.name?a():a({name:"page-register-2fa"});if(["page-login","page-register","page-login-2fa","page-register-2fa"].includes(e.name)&&!l.A.getters["userInfo/hasAnyRoles"](o)||"page-register-2fa"===e.name&&l.A.getters["userInfo/hasAnyRole"](n.X.insight))return a({name:"home",params:e.params});if(o&&!l.A.getters["userInfo/hasAnyRoles"](o)){const t=l.A.getters["allProducts/getAllProductsAuthorizedForRole"];if(0===t.length)return a({name:"page-error-403",params:{redirectedFromPath:e.path}});const o=s.A.products.some((e=>l.A.getters["userInfo/isAdminOf"](e.productId)));if(!r||!o){if(!d||!u)return a({name:"page-error-403"});{const e=l.A.getters["allProducts/getAllShareClassesAdmin"](u);if(!e||0===e.length)return a({name:"page-error-403"})}}}if(!l.A.getters["platformSettings/getCompliance"](i.R.locale)?.["investorProfileChecksActivated"])return a();if(e.meta.noNeedOfInvestorProfile||l.A.getters["userInfo/hasAnyRoles"]([n.X.superAdmin,n.X.admin,n.X.employee]))return a();const c=l.A.getters["userInfo/getUserInfo"],m=c&&c.investorProfile||l.A.getters["userInfo/getIpTypeBrowserStored"],p=c&&c.country||l.A.getters["userInfo/getIpCountryBrowserStored"];if(!m||!p){const t=e.query;return t["redirect"]=e.path,a({name:"page-investor-profile",query:t})}const h=e.meta&&e.meta.productId;if(h){const t=l.A.getters["allProducts/getAllProductsAuthorizedForRole"],o=t.map((e=>e.productId)).includes(e.meta.productId);if(!o)return a({name:"page-error-403"});const r=l.A.getters["allProducts/getAllProductsAuthorizedForInvestorProfile"],n=r.map((e=>e.productId)).includes(e.meta.productId);if(!n)return a({name:"page-unauthorized-investor-profile",params:{productId:e.meta.productId,unauthorizedPath:e.path},query:e.query})}else{const t=l.A.getters["allProducts/getAllProductsAuthorizedForRole"];if(0===t.length)return a({name:"page-error-403"});const o=l.A.getters["allProducts/getAllProductsAuthorizedForInvestorProfile"];if(0==o.length)return a({name:"page-unauthorized-investor-profile",params:{unauthorizedPath:e.path},query:e.query})}a()}));var S=y},90574:function(e,t,a){"use strict";a(31163);var o=a(79988),r=a(2543),n=a(85471),s=a(25521),i=a(7861),l=a(44415);const d={details:{},benchmarks:[],validDates:{},performanceData:{},performanceWithPeriodData:{},cumulativeReturnPeriodsFactsheet:{},cumulativeReturns:{},benchmarkPrices:{},lastCumReturns:{},drawdowns:{},outperformance:{},volatility:{},beta:{},yearlyCumulativeReturns:{},monthlyCumulativeReturns:{},returns:{},riskAdjusted:{},holdings:void 0,currencyExposure:void 0,currencyExposureOverTime:void 0,assetClasses:void 0,assetClassesOverTime:void 0,instrumentTypes:void 0,instrumentTypesOverTime:void 0,sectors:void 0,sectorsOverTime:void 0,regions:void 0,regionsOverTime:void 0,assetsUnderManagement:void 0,cumulativeWeightedReturns:{},weightedPerformanceData:{},performanceTableData:void 0,lastLivePrice:void 0,productConfig:null,productLangsConfig:null},u={isBindingReady:e=>null!=e.productConfig&&null!=e.productLangsConfig&&e.productLangsConfig.length>0,getDetails:e=>({mode:t})=>(0,l.w)(e.details,t),getBenchmarks:e=>e.benchmarks,getValidDates:e=>({mode:t})=>(0,l.w)(e.validDates,t),getBenchmarksForMode:e=>t=>e.benchmarks.filter((e=>e.modes.includes(t))),getPerformanceStats:e=>({mode:t})=>(0,l.w)(e.performanceData,t),getPerformanceWithPeriodStats:e=>({mode:t})=>(0,l.w)(e.performanceWithPeriodData,t),getCumulativeReturnPeriodsFactsheet:e=>({mode:t})=>(0,l.w)(e.cumulativeReturnPeriodsFactsheet,t),getCumulativeReturns:e=>({mode:t})=>(0,l.w)(e.cumulativeReturns,t),getBenchmarkPrices:e=>({benchmarkSymbol:t})=>(0,l.w)(e.benchmarkPrices,t),getLastCumReturns:e=>({mode:t,period:a})=>(0,l.w)(e.lastCumReturns,t,a),getDrawdowns:e=>({mode:t})=>(0,l.w)(e.drawdowns,t),getOutperformanceValues:e=>({mode:t})=>(0,l.w)(e.outperformance,t),getVolatilityValues:e=>({mode:t})=>(0,l.w)(e.volatility,t),getBetaValues:e=>({mode:t})=>(0,l.w)(e.beta,t),getYearlyCumulativeReturns:e=>({mode:t})=>(0,l.w)(e.yearlyCumulativeReturns,t),getMonthlyCumulativeReturns:e=>({mode:t})=>(0,l.w)(e.monthlyCumulativeReturns,t),getReturns:e=>({mode:t})=>(0,l.w)(e.returns,t),getRiskAdjusted:e=>({mode:t})=>(0,l.w)(e.riskAdjusted,t),getHoldings:e=>e.holdings,getCurrencyExposure:e=>e.currencyExposure,getCurrencyExposureOverTime:e=>e.currencyExposureOverTime,getAssetClasses:e=>e.assetClasses,getAssetClassesOverTime:e=>e.assetClassesOverTime,getInstrumentTypes:e=>e.instrumentTypes,getInstrumentTypesOverTime:e=>e.instrumentTypesOverTime,getSectors:e=>e.sectors,getSectorsOverTime:e=>e.sectorsOverTime,getRegions:e=>e.regions,getRegionsOverTime:e=>e.regionsOverTime,getAssetsUnderManagement:e=>e.assetsUnderManagement,getCumulativeWeightedReturns:e=>({mode:t})=>(0,l.w)(e.cumulativeWeightedReturns,t),getWeightedPerformanceStats:e=>({mode:t})=>(0,l.w)(e.weightedPerformanceData,t),getPerformanceTableData:e=>e.performanceTableData,getLastLivePrice:e=>e.lastLivePrice,getAdditionalFollowersInLang:(e,t)=>e=>{const a=t.getProductLangsConfig();if(!a)return a;const o=a.find((t=>t.id===e));return o?o.additionalFollowers??[]:void 0},getProductConfig:e=>(t,a)=>{if(!e.productConfig&&!e.productLangsConfig)return null;const o=e=>e?Object.fromEntries(Object.entries(e).filter((([e,t])=>null!=t))):e;let n=e.productLangsConfig?.find((e=>e.id==t));return n||(n=e.productLangsConfig?.find((e=>e.id==a))),(0,r.merge)({},o(e.productConfig),o(n??{}))},getProductLangsConfig:e=>t=>t?e.productLangsConfig.filter((e=>t.includes(e.id))):e.productLangsConfig},c={FETCH_DETAILS_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.details,t,a)},FETCH_BENCHMARKS_SUCCESS:(e,{data:t})=>{e.benchmarks=t},FETCH_VALID_DATES_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.validDates,t,a)},FETCH_PERFORMANCE_DATA_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.performanceData,t,a)},FETCH_PERFORMANCE_WITH_PERIOD_DATA_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.performanceWithPeriodData,t,a)},FETCH_CUMULATIVE_RETURN_PERIODS_FACTSHEET_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.cumulativeReturnPeriodsFactsheet,t,a)},FETCH_CUMULATIVE_RETURNS_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.cumulativeReturns,t,a)},FETCH_BENCHMARK_PRICES_SUCCESS:(e,{benchmarkSymbol:t,data:a})=>{n["default"].set(e.benchmarkPrices,t,a)},FETCH_LAST_CUMULATIVE_RETURNS_SUCCESS:(e,{mode:t,period:a,data:o})=>{const r=(0,l.w)(e.lastCumReturns,t)||{};o?n["default"].set(r,a,o[0]):n["default"].set(r,a,o),n["default"].set(e.lastCumReturns,t,r)},FETCH_DRAWDOWNS_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.drawdowns,t,a)},FETCH_OUTPERFORMANCE_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.outperformance,t,a)},FETCH_VOLATILITY_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.volatility,t,a)},FETCH_BETA_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.beta,t,a)},FETCH_YEARLY_CUMULATIVE_RETURNS_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.yearlyCumulativeReturns,t,a)},FETCH_MONTHLY_CUMULATIVE_RETURNS_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.monthlyCumulativeReturns,t,a)},FETCH_RETURNS_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.returns,t,a)},FETCH_RISK_ADJUSTED_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.riskAdjusted,t,a)},FETCH_HOLDINGS_SUCCESS:(e,{data:t})=>{e.holdings=t},FETCH_CURRENCY_EXPOSURE_SUCCESS:(e,{data:t})=>{e.currencyExposure=t},FETCH_CURRENCY_EXPOSURE_OVER_TIME_SUCCESS:(e,{data:t})=>{e.currencyExposureOverTime=t},FETCH_ASSET_CLASSES_SUCCESS:(e,{data:t})=>{e.assetClasses=t},FETCH_ASSET_CLASSES_OVER_TIME_SUCCESS:(e,{data:t})=>{e.assetClassesOverTime=t},FETCH_INSTRUMENT_TYPES_SUCCESS:(e,{data:t})=>{e.instrumentTypes=t},FETCH_INSTRUMENT_TYPES_OVER_TIME_SUCCESS:(e,{data:t})=>{e.instrumentTypesOverTime=t},FETCH_SECTORS_SUCCESS:(e,{data:t})=>{e.sectors=t},FETCH_SECTORS_OVER_TIME_SUCCESS:(e,{data:t})=>{e.sectorsOverTime=t},FETCH_REGIONS_SUCCESS:(e,{data:t})=>{e.regions=t},FETCH_REGIONS_OVER_TIME_SUCCESS:(e,{data:t})=>{e.regionsOverTime=t},FETCH_ASSETS_UNDER_MANAGEMENT_SUCCESS:(e,{data:t})=>{e.assetsUnderManagement=t},FETCH_CUMULATIVE_WEIGHTED_RETURNS_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.cumulativeWeightedReturns,t,a)},FETCH_WEIGHTED_PERFORMANCE_DATA_SUCCESS:(e,{mode:t,data:a})=>{n["default"].set(e.weightedPerformanceData,t,a)},FETCH_PERFORMANCE_TABLE_DATA_SUCCESS:(e,{data:t})=>{e.performanceTableData=t},FETCH_LAST_LIVE_PRICE_SUCCESS:(e,{data:t})=>{e.lastLivePrice=t},FETCH_PRODUCT_CONFIG_FAILURE:e=>{e.productConfig=void 0},RESET_ALL_STATES:e=>{e.details={},e.benchmarks=[],e.performanceData={},e.performanceWithPeriodData={},e.cumulativeReturnPeriodsFactsheet={},e.cumulativeReturns={},e.lastCumReturns={},e.drawdowns={},e.outperformance={},e.volatility={},e.beta={},e.yearlyCumulativeReturns={},e.monthlyCumulativeReturns={},e.returns={},e.riskAdjusted={},e.holdings=void 0,e.currencyExposure=void 0,e.currencyExposureOverTime=void 0,e.assetClasses=void 0,e.assetClassesOverTime=void 0,e.instrumentTypes=void 0,e.instrumentTypesOverTime=void 0,e.sectors=void 0,e.sectorsOverTime=void 0,e.regions=void 0,e.regionsOverTime=void 0,e.assetsUnderManagement=void 0,e.cumulativeWeightedReturns={},e.weightedPerformanceData={},e.performanceTableData=void 0,e.lastLivePrice=void 0}},m={async fetchDetails({commit:e},{productId:t,mode:a}){const o={};void 0!==a&&(o["mode"]=a);try{const r=await i.A.get(`/api/products/${t}/details`,{params:o});e("FETCH_DETAILS_SUCCESS",{mode:a,data:r.data})}catch(r){throw e("FETCH_DETAILS_SUCCESS",{mode:a,data:null}),r}},async fetchBenchmarks({commit:e},{productId:t}){const a={};try{const o=await i.A.get(`/api/products/${t}/benchmarks`,{params:a});e("FETCH_BENCHMARKS_SUCCESS",{data:o.data})}catch(o){throw e("FETCH_BENCHMARKS_SUCCESS",{data:null}),o}},async fetchValidDates({commit:e},{productId:t,mode:a,period:o}){const r={};void 0!==a&&(r["mode"]=a),o&&(r["period_start_date"]=o.start,r["period_end_date"]=o.end);try{const o=await i.A.get(`/api/products/${t}/valid-dates`,{params:r});e("FETCH_VALID_DATES_SUCCESS",{mode:a,data:o.data})}catch(n){throw e("FETCH_VALID_DATES_SUCCESS",{mode:a,data:null}),n}},async fetchLastCumulativeReturns({commit:e},{productId:t,mode:a,period:o}){const r={};void 0!==o&&(r["period"]=o),void 0!==a&&(r["mode"]=a);try{const n=await i.A.get(`/api/products/${t}/last-cumulative-returns`,{params:r});e("FETCH_LAST_CUMULATIVE_RETURNS_SUCCESS",{mode:a,period:o,data:n.data})}catch(n){throw e("FETCH_LAST_CUMULATIVE_RETURNS_SUCCESS",{mode:a,period:o,data:null}),n}},async fetchPerformanceData({commit:e},{productId:t,mode:a,period:o,benchmarkSymbol:r,statIds:n}){const s={};o&&(s["period_start_date"]=o.start,s["period_end_date"]=o.end),void 0!==a&&(s["mode"]=a),void 0!==r&&(s["benchmark_symbol"]=r),s["periods"]=["max"],void 0!==n&&(s["stat_ids"]=n);try{const r=await i.A.get(`/api/products/${t}/performance-data`,{params:s});e("FETCH_PERFORMANCE_DATA_SUCCESS",{mode:a,period:o,data:r.data})}catch(l){throw e("FETCH_PERFORMANCE_DATA_SUCCESS",{mode:a,period:o,data:null}),l}},async fetchPerformanceWithPeriodsData({commit:e},{productId:t,mode:a,period:o,benchmarkSymbol:r,periods:n,statIds:s}){const l={};o&&(l["period_start_date"]=o.start,l["period_end_date"]=o.end),void 0!==a&&(l["mode"]=a),void 0!==r&&(l["benchmark_symbol"]=r),void 0!==n&&(l["periods"]=n),void 0!==s&&(l["stat_ids"]=s);try{const r=await i.A.get(`/api/products/${t}/performance-data`,{params:l});e("FETCH_PERFORMANCE_WITH_PERIOD_DATA_SUCCESS",{mode:a,period:o,data:r.data})}catch(d){throw e("FETCH_PERFORMANCE_WITH_PERIOD_DATA_SUCCESS",{mode:a,period:o,data:null}),d}},async fetchCumulativeReturnPeriodsFactsheet({commit:e},{productId:t,mode:a,period:o,benchmarkSymbol:r,annualizePeriodsBiggerThanOneYear:n}){const s={};o&&(s["period_start_date"]=o.start,s["period_end_date"]=o.end),s["mode"]=a,void 0!==r&&(s["benchmark_symbol"]=r),s["annualize_periods_bigger_than_one_year"]=n;try{const o=await i.A.get(`/api/products/${t}/cumulative-return-periods-factsheet`,{params:s});e("FETCH_CUMULATIVE_RETURN_PERIODS_FACTSHEET_SUCCESS",{mode:a,data:o.data})}catch(l){throw e("FETCH_CUMULATIVE_RETURN_PERIODS_FACTSHEET_SUCCESS",{mode:a,data:null}),l}},async fetchCumulativeReturns({commit:e},{productId:t,mode:a,period:o,benchmarkSymbol:r,initialValue:n,withResample:s}){const l={};o&&(l["period_start_date"]=o.start,l["period_end_date"]=o.end),n&&(l["initial_value"]=n),void 0!==a&&(l["mode"]=a),void 0!==r&&(l["benchmark_symbol"]=r),void 0!==s&&(l["with_resample"]=s);try{const r=await i.A.get(`/api/products/${t}/cumulative-returns`,{params:l});e("FETCH_CUMULATIVE_RETURNS_SUCCESS",{mode:a,period:o,data:r.data})}catch(d){throw e("FETCH_CUMULATIVE_RETURNS_SUCCESS",{mode:a,period:o,data:null}),d}},async fetchBenchmarkPrices({commit:e},{productId:t,benchmarkSymbol:a}){const o={};void 0!==a&&(o["benchmark_symbol"]=a);try{const r=await i.A.get(`/api/products/${t}/benchmark-prices`,{params:o});e("FETCH_BENCHMARK_PRICES_SUCCESS",{benchmarkSymbol:a,data:r.data})}catch(r){throw e("FETCH_BENCHMARK_PRICES_SUCCESS",{benchmarkSymbol:a,data:null}),r}},async fetchYearlyCumulativeReturns({commit:e},{productId:t,mode:a,benchmarkSymbol:o,period:r}){const n={};void 0!==a&&(n["mode"]=a),void 0!==o&&(n["benchmark_symbol"]=o),r&&(n["period_start_date"]=r.start,n["period_end_date"]=r.end);try{const o=await i.A.get(`/api/products/${t}/yearly-cumulative-returns`,{params:n});e("FETCH_YEARLY_CUMULATIVE_RETURNS_SUCCESS",{mode:a,data:o.data})}catch(s){throw e("FETCH_YEARLY_CUMULATIVE_RETURNS_SUCCESS",{mode:a,data:null}),s}},async fetchMonthlyCumulativeReturns({commit:e},{productId:t,mode:a,benchmarkSymbol:o,period:r}){const n={};void 0!==a&&(n["mode"]=a),void 0!==o&&(n["benchmark_symbol"]=o),r&&(n["period_start_date"]=r.start,n["period_end_date"]=r.end);try{const o=await i.A.get(`/api/products/${t}/monthly-cumulative-returns`,{params:n});e("FETCH_MONTHLY_CUMULATIVE_RETURNS_SUCCESS",{mode:a,data:o.data})}catch(s){throw e("FETCH_MONTHLY_CUMULATIVE_RETURNS_SUCCESS",{mode:a,data:null}),s}},async fetchDrawdowns({commit:e},{productId:t,mode:a,period:o,benchmarkSymbol:r}){const n={};o&&(n["period_start_date"]=o.start,n["period_end_date"]=o.end),void 0!==a&&(n["mode"]=a),void 0!==r&&(n["benchmark_symbol"]=r);try{const o=await i.A.get(`/api/products/${t}/drawdowns`,{params:n});e("FETCH_DRAWDOWNS_SUCCESS",{mode:a,data:o.data})}catch(s){throw e("FETCH_DRAWDOWNS_SUCCESS",{mode:a,data:null}),s}},async fetchOutperformanceValues({commit:e},{productId:t,mode:a,period:o,benchmarkSymbol:r}){const n={};o&&(n["period_start_date"]=o.start,n["period_end_date"]=o.end),void 0!==a&&(n["mode"]=a),void 0!==r&&(n["benchmark_symbol"]=r);try{const o=await i.A.get(`/api/products/${t}/outperformance`,{params:n});e("FETCH_OUTPERFORMANCE_SUCCESS",{mode:a,data:o.data})}catch(s){throw e("FETCH_OUTPERFORMANCE_SUCCESS",{mode:a,data:null}),s}},async fetchVolatility({commit:e},{productId:t,mode:a,period:o,benchmarkSymbol:r}){const n={};o&&(n["period_start_date"]=o.start,n["period_end_date"]=o.end),void 0!==a&&(n["mode"]=a),void 0!==r&&(n["benchmark_symbol"]=r);try{const o=await i.A.get(`/api/products/${t}/volatility`,{params:n});e("FETCH_VOLATILITY_SUCCESS",{mode:a,data:o.data})}catch(s){throw e("FETCH_VOLATILITY_SUCCESS",{mode:a,data:null}),s}},async fetchBeta({commit:e},{productId:t,mode:a,period:o,benchmarkSymbol:r}){const n={};o&&(n["period_start_date"]=o.start,n["period_end_date"]=o.end),void 0!==a&&(n["mode"]=a),void 0!==r&&(n["benchmark_symbol"]=r);try{const o=await i.A.get(`/api/products/${t}/beta`,{params:n});e("FETCH_BETA_SUCCESS",{mode:a,data:o.data})}catch(s){throw e("FETCH_BETA_SUCCESS",{mode:a,data:null}),s}},async fetchReturns({commit:e},{productId:t,mode:a,period:o,benchmarkSymbol:r}){const n={};o&&(n["period_start_date"]=o.start,n["period_end_date"]=o.end),void 0!==a&&(n["mode"]=a),void 0!==r&&(n["benchmark_symbol"]=r);try{const o=await i.A.get(`/api/products/${t}/returns`,{params:n});e("FETCH_RETURNS_SUCCESS",{mode:a,data:o.data})}catch(s){throw e("FETCH_RETURNS_SUCCESS",{mode:a,data:null}),s}},async fetchRiskAdjusted({commit:e},{productId:t,mode:a,period:o,benchmarkSymbol:r}){const n={};o&&(n["period_start_date"]=o.start,n["period_end_date"]=o.end),void 0!==a&&(n["mode"]=a),void 0!==r&&(n["benchmark_symbol"]=r);try{const o=await i.A.get(`/api/products/${t}/risk-adjusted`,{params:n});e("FETCH_RISK_ADJUSTED_SUCCESS",{mode:a,data:o.data})}catch(s){throw e("FETCH_RISK_ADJUSTED_SUCCESS",{mode:a,data:null}),s}},async fetchHoldings({commit:e},{productId:t,latestDate:a,lang:o}){const r={};r["latest_date"]=a,r["lang"]=o;try{const a=await i.A.get(`/api/products/${t}/holdings`,{params:r});204===a.status?e("FETCH_HOLDINGS_SUCCESS",{data:void 0}):e("FETCH_HOLDINGS_SUCCESS",{data:a.data})}catch(n){throw e("FETCH_HOLDINGS_SUCCESS",{data:null}),n}},async fetchCurrencyExposure({commit:e},{productId:t,latestDate:a}){const o={};o["latest_date"]=a;try{const a=await i.A.get(`/api/products/${t}/currency-exposure`,{params:o});204===a.status?e("FETCH_CURRENCY_EXPOSURE_SUCCESS",{data:void 0}):e("FETCH_CURRENCY_EXPOSURE_SUCCESS",{data:a.data})}catch(r){throw e("FETCH_CURRENCY_EXPOSURE_SUCCESS",{data:null}),r}},async fetchCurrencyExposureOverTime({commit:e},{productId:t,period:a}){const o={};a&&(o["period_start_date"]=a.start,o["period_end_date"]=a.end);try{const a=await i.A.get(`/api/products/${t}/currency-exposure-over-time`,{params:o});204===a.status?e("FETCH_CURRENCY_EXPOSURE_OVER_TIME_SUCCESS",{data:void 0}):e("FETCH_CURRENCY_EXPOSURE_OVER_TIME_SUCCESS",{data:a.data})}catch(r){throw e("FETCH_CURRENCY_EXPOSURE_OVER_TIME_SUCCESS",{data:null}),r}},async fetchAssetClasses({commit:e},{productId:t,latestDate:a,lang:o}){const r={};r["latest_date"]=a,r["lang"]=o;try{const a=await i.A.get(`/api/products/${t}/asset-classes`,{params:r});204===a.status?e("FETCH_ASSET_CLASSES_SUCCESS",{data:void 0}):e("FETCH_ASSET_CLASSES_SUCCESS",{data:a.data})}catch(n){throw e("FETCH_ASSET_CLASSES_SUCCESS",{data:null}),n}},async fetchAssetClassesOverTime({commit:e},{productId:t,period:a,lang:o}){const r={};r["lang"]=o,a&&(r["period_start_date"]=a.start,r["period_end_date"]=a.end);try{const a=await i.A.get(`/api/products/${t}/asset-classes-over-time`,{params:r});204===a.status?e("FETCH_ASSET_CLASSES_OVER_TIME_SUCCESS",{data:void 0}):e("FETCH_ASSET_CLASSES_OVER_TIME_SUCCESS",{data:a.data})}catch(n){throw e("FETCH_ASSET_CLASSES_OVER_TIME_SUCCESS",{data:null}),n}},async fetchInstrumentTypes({commit:e},{productId:t,latestDate:a,lang:o}){const r={};r["latest_date"]=a,r["lang"]=o;try{const a=await i.A.get(`/api/products/${t}/instrument-types`,{params:r});204===a.status?e("FETCH_INSTRUMENT_TYPES_SUCCESS",{data:void 0}):e("FETCH_INSTRUMENT_TYPES_SUCCESS",{data:a.data})}catch(n){throw e("FETCH_INSTRUMENT_TYPES_SUCCESS",{data:null}),n}},async fetchInstrumentTypesOverTime({commit:e},{productId:t,period:a,lang:o}){const r={};r["lang"]=o,a&&(r["period_start_date"]=a.start,r["period_end_date"]=a.end);try{const a=await i.A.get(`/api/products/${t}/instrument-types-over-time`,{params:r});204===a.status?e("FETCH_INSTRUMENT_TYPES_OVER_TIME_SUCCESS",{data:void 0}):e("FETCH_INSTRUMENT_TYPES_OVER_TIME_SUCCESS",{data:a.data})}catch(n){throw e("FETCH_INSTRUMENT_TYPES_OVER_TIME_SUCCESS",{data:null}),n}},async fetchSectors({commit:e},{productId:t,latestDate:a,lang:o}){const r={};r["latest_date"]=a,r["lang"]=o;try{const a=await i.A.get(`/api/products/${t}/sectors`,{params:r});204===a.status?e("FETCH_SECTORS_SUCCESS",{data:void 0}):e("FETCH_SECTORS_SUCCESS",{data:a.data})}catch(n){throw e("FETCH_SECTORS_SUCCESS",{data:null}),n}},async fetchSectorsOverTime({commit:e},{productId:t,period:a,lang:o}){const r={};r["lang"]=o,a&&(r["period_start_date"]=a.start,r["period_end_date"]=a.end);try{const a=await i.A.get(`/api/products/${t}/sectors-over-time`,{params:r});204===a.status?e("FETCH_SECTORS_OVER_TIME_SUCCESS",{data:void 0}):e("FETCH_SECTORS_OVER_TIME_SUCCESS",{data:a.data})}catch(n){throw e("FETCH_SECTORS_OVER_TIME_SUCCESS",{data:null}),n}},async fetchRegions({commit:e},{productId:t,latestDate:a,lang:o}){const r={};r["latest_date"]=a,r["lang"]=o;try{const a=await i.A.get(`/api/products/${t}/regions`,{params:r});204===a.status?e("FETCH_REGIONS_SUCCESS",{data:void 0}):e("FETCH_REGIONS_SUCCESS",{data:a.data})}catch(n){throw e("FETCH_REGIONS_SUCCESS",{data:null}),n}},async fetchRegionsOverTime({commit:e},{productId:t,period:a,lang:o}){const r={};r["lang"]=o,a&&(r["period_start_date"]=a.start,r["period_end_date"]=a.end);try{const a=await i.A.get(`/api/products/${t}/regions-over-time`,{params:r});204===a.status?e("FETCH_REGIONS_OVER_TIME_SUCCESS",{data:void 0}):e("FETCH_REGIONS_OVER_TIME_SUCCESS",{data:a.data})}catch(n){throw e("FETCH_REGIONS_OVER_TIME_SUCCESS",{data:null}),n}},async fetchAssetsUnderManagement({commit:e},{productId:t,latestDate:a}){const o={};o["latest_date"]=a;try{const a=await i.A.get(`/api/products/${t}/assets-under-management`,{params:o});204===a.status?e("FETCH_ASSETS_UNDER_MANAGEMENT_SUCCESS",{data:void 0}):e("FETCH_ASSETS_UNDER_MANAGEMENT_SUCCESS",{data:a.data})}catch(r){throw e("FETCH_ASSETS_UNDER_MANAGEMENT_SUCCESS",{data:null}),r}},async fetchCumulativeWeightedReturns({commit:e},{productId:t,mode:a,period:o,benchmarkSymbol:r}){const n={};o&&(n["period_start_date"]=o.start,n["period_end_date"]=o.end),void 0!==a&&(n["mode"]=a),void 0!==r&&(n["benchmark_symbol"]=r);try{const o=await i.A.get(`/api/products/${t}/cumulative-weighted-returns`,{params:n});e("FETCH_CUMULATIVE_WEIGHTED_RETURNS_SUCCESS",{mode:a,data:o.data})}catch(s){throw e("FETCH_CUMULATIVE_WEIGHTED_RETURNS_SUCCESS",{mode:a,data:null}),s}},async fetchPerformanceTableData({commit:e},{productId:t}){try{const a=await i.A.get(`/api/products/${t}/performance-table-data`);e("FETCH_PERFORMANCE_TABLE_DATA_SUCCESS",{data:a.data})}catch(a){throw e("FETCH_PERFORMANCE_TABLE_DATA_SUCCESS",{data:null}),a}},async fetchWeightedPerformanceData({commit:e},{productId:t,mode:a,period:o,benchmarkSymbol:r,statIds:n}){const s={};o&&(s["period_start_date"]=o.start,s["period_end_date"]=o.end),void 0!==a&&(s["mode"]=a),void 0!==r&&(s["benchmark_symbol"]=r),void 0!==n&&(s["stat_ids"]=n);try{const r=await i.A.get(`/api/products/${t}/weighted-performance-data`,{params:s});e("FETCH_WEIGHTED_PERFORMANCE_DATA_SUCCESS",{mode:a,period:o,data:r.data})}catch(l){throw e("FETCH_WEIGHTED_PERFORMANCE_DATA_SUCCESS",{mode:a,period:o,data:null}),l}},async fetchLastLivePrice({commit:e},{productId:t}){try{const a=await i.A.get(`/api/products/${t}/last-live-price`);e("FETCH_LAST_LIVE_PRICE_SUCCESS",{data:a.data})}catch(a){throw e("FETCH_LAST_LIVE_PRICE_SUCCESS",{data:null}),a}},bindProductLangsConfig:(0,s.sT)((({bindFirestoreRef:e,state:t},{productId:a})=>null!=t.productLangsConfig?Promise.resolve():e("productLangsConfig",o.A.firestore().collection("products").doc(a).collection("langs")))),bindProductConfig:(0,s.sT)((({bindFirestoreRef:e,state:t},{productId:a})=>null!=t.productConfig?Promise.resolve():e("productConfig",o.A.firestore().collection("products").doc(a)))),updateProductConfig:(0,s.sT)(((e,{productId:t,newProductConfig:a,lang:r})=>r?o.A.firestore().collection("products").doc(t).collection("langs").doc(r).set(a,{merge:!0}):o.A.firestore().collection("products").doc(t).set(a,{merge:!0}))),updateProductConfigFactsheetConfig:(0,s.sT)(((e,{productId:t,newFactsheetConfig:a,lang:r})=>o.A.firestore().collection("products").doc(t).collection("langs").doc(r).set({factsheet:a},{merge:!0}))),updateProductConfigOverviewConfig:(0,s.sT)(((e,{productId:t,newOverviewConfig:a,lang:r})=>o.A.firestore().collection("products").doc(t).collection("langs").doc(r).set({overview:a},{merge:!0}))),updateProductConfigGeneralGlobal:(0,s.sT)(((e,{productId:t,newGeneralGlobal:a})=>o.A.firestore().collection("products").doc(t).set({general:a},{merge:!0}))),updateProductConfigGeneralLang:(0,s.sT)(((e,{productId:t,newGeneralLang:a,lang:r})=>o.A.firestore().collection("products").doc(t).collection("langs").doc(r).set({general:a},{merge:!0}))),updateProductConfigAccessRestrictions:(0,s.sT)(((e,{productId:t,newAccessRestrictions:a})=>o.A.firestore().collection("products").doc(t).set({accessRestrictions:a},{merge:!0}))),addAdditionalFollowers:(0,s.sT)(((e,{productId:t,emails:a,lang:r})=>o.A.firestore().collection("products").doc(t).collection("langs").doc(r).set({additionalFollowers:o.A.firestore.FieldValue.arrayUnion(...a)},{merge:!0}))),removeAdditionalFollower:(0,s.sT)(((e,{productId:t,email:a,lang:r})=>o.A.firestore().collection("products").doc(t).collection("langs").doc(r).set({additionalFollowers:o.A.firestore.FieldValue.arrayRemove(a)},{merge:!0}))),resetAllStates({commit:e}){e("RESET_ALL_STATES")}};t.A={namespaced:!0,state:d,mutations:c,actions:m,getters:u}},96982:function(e,t,a){"use strict";a.d(t,{A:function(){return Ke}});var o=a(2543),r=a(85471),n=a(95353),s=a(25521),i=a(58241),l=a(94455),d=a(78026),u=a(93804),c=a(77864),m=a(69403),p=a(91366),h=a(99942),g=a(34981),f=a(33801),v=a(38478),b=a(45429),w=a(66816),A=a(94142),y=a(75907),S=a(17732),C=a(84103),P=a(7746),k=a(38383),I=a(47012),D=a(64e3),E=a(98911),R=a(48703),T=a(21410),M=a(25635);const q={updateVerticalNavMenu({commit:e}){e("UPDATE_VERTICAL_NAV_MENU")},updateVerticalNavMenuWidth({commit:e},t){e("UPDATE_VERTICAL_NAV_MENU_WIDTH",t)},updateStarredPage({commit:e},t){e("UPDATE_STARRED_PAGE",t)},arrangeStarredPagesLimited({commit:e},t){e("ARRANGE_STARRED_PAGES_LIMITED",t)},arrangeStarredPagesMore({commit:e},t){e("ARRANGE_STARRED_PAGES_MORE",t)},toggleContentOverlay({commit:e}){e("TOGGLE_CONTENT_OVERLAY")},updateTheme({commit:e},t){e("UPDATE_THEME",t)},updateShowFooter({commit:e},t){e("UPDATE_SHOW_FOOTER",t)}};var x=q;const z={windowBreakPoint:e=>e.windowWidth>=1200?"xl":e.windowWidth>=992?"lg":e.windowWidth>=768?"md":e.windowWidth>=576?"sm":"xs",scrollbarTag:e=>e.is_touch_device?"div":"VuePerfectScrollbar"};var F=z;const B={TOGGLE_IS_VERTICAL_NAV_MENU_ACTIVE(e,t){e.isVerticalNavMenuActive=t},TOGGLE_REDUCE_BUTTON(e,t){e.reduceButton=t},UPDATE_MAIN_LAYOUT_TYPE(e,t){e.mainLayoutType=t},UPDATE_VERTICAL_NAV_MENU_ITEMS_MIN(e,t){e.verticalNavMenuItemsMin=t},UPDATE_VERTICAL_NAV_MENU(e){e.verticalNavMenuUpdate=!e.verticalNavMenuUpdate},UPDATE_VERTICAL_NAV_MENU_WIDTH(e,t){e.verticalNavMenuWidth=t},UPDATE_STARRED_PAGE(e,t){const a=e.navbarSearchAndPinList["pages"].data.findIndex((e=>e.url===t.url));if(e.navbarSearchAndPinList["pages"].data[a].is_bookmarked=t.val,t.val)e.starredPages.push(e.navbarSearchAndPinList["pages"].data[a]);else{const a=e.starredPages.findIndex((e=>e.url===t.url));e.starredPages.splice(a,1)}},ARRANGE_STARRED_PAGES_LIMITED(e,t){const a=e.starredPages.slice(10);e.starredPages=t.concat(a)},ARRANGE_STARRED_PAGES_MORE(e,t){let a=!1;const o=e.starredPages[10],r=e.starredPages.slice(0,10);e.starredPages=r.concat(t),e.starredPages.slice(0,10).map((e=>{t.indexOf(e)>-1&&(a=!0)})),a||e.starredPages.splice(10,0,o)},TOGGLE_CONTENT_OVERLAY(e,t){e.bodyOverlay=t},UPDATE_PRIMARY_COLOR(e,t){e.themePrimaryColor=t},UPDATE_THEME(e,t){e.theme=t},UPDATE_WINDOW_WIDTH(e,t){e.windowWidth=t},UPDATE_WINDOW_SCROLL_Y(e,t){e.scrollY=t},UPDATE_SHOW_FOOTER(e,t){e.showFooter=t}};var L=B,N=a(84334),U={pages:{key:"title",data:[{title:"Home",url:"/",icon:"HomeIcon",is_bookmarked:!1},{title:"Indicators",url:"/indicators",icon:"FileIcon",is_bookmarked:!1}]}};const V=()=>{const e=" -webkit- -moz- -o- -ms- ".split(" "),t=function(e){return window.matchMedia(e).matches};if("ontouchstart"in window||window.DocumentTouch)return!0;const a=["(",e.join("touch-enabled),("),"heartz",")"].join("");return t(a)},O={bodyOverlay:!1,isVerticalNavMenuActive:!0,is_touch_device:V(),mainLayoutType:N.A.mainLayoutType||"vertical",navbarSearchAndPinList:U,reduceButton:N.A.sidebarCollapsed,verticalNavMenuUpdate:!1,verticalNavMenuWidth:"default",verticalNavMenuItemsMin:!1,scrollY:0,starredPages:U["pages"].data.filter((e=>e.is_bookmarked)),theme:N.A.theme||"light",themePrimaryColor:N.T.primary,windowWidth:null,showFooter:!0};var G=O,_=(a(33262),a(31163),a(61032)),H=a(79988),j=a(58434),W=a(14760),Q={async loginAttempt({dispatch:e},t){if(!t.checkboxRememberMe)try{await H.A.auth().setPersistence(H.A.auth.Auth.Persistence.SESSION)}catch(o){throw{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:o.message||o,error:o,withRedirectButton:"contact-us"}}const a=await e("loginWithEmailAndPassword",t);return a},async loginWithEmailAndPassword({getters:e,dispatch:t},a){if(e.isAuthenticated)throw{errorToLog:"Already authenticated."};let o;try{o=await H.A.auth().signInWithEmailAndPassword(a.email,a.password)}catch(r){throw r.code==_.nC.INVALID_LOGIN_CREDENTIALS?{errorToDisplay:W.R.t("pages.auth.login.errorInvalidLoginCredentials"),errorToLog:"Invalid credentials"}:{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:r.message||r,error:r,withRedirectButton:"contact-us"}}if(o.user.emailVerified){let e;try{e=await t("isUserInFirestore",o)}catch(r){if("Couldn't get information from Firestore. Failed to get document because the client is offline."===r.errorToLog)return H.A.analytics().logEvent(j.dA,{status:j.Ub,sign_in_type:j.xq,message:"Can't connect to firestore after sign in. Force page reload."}),void location.reload();throw r}if(e)return o;throw await o.user.delete(),{errorToDisplay:W.R.t("pages.auth.login.errorAccountNotExist"),errorToLog:"Try login without register with email and password (missing Firestore)",withRedirectButton:"register"}}throw await t("signOut"),{errorToDisplay:W.R.t("pages.auth.login.errorNeedEmailVerification"),errorToLog:"Missing email verification",withRedirectButton:"reset-password"}},async signInWithCustomToken({getters:e},t){if(e.isAuthenticated)throw new Error("Already authenticated");await H.A.auth().signInWithCustomToken(t)},async loginWithGoogle({getters:e,dispatch:t}){if(e.isAuthenticated)throw{errorToLog:"Already authenticated."};const a=new H.A.auth.GoogleAuthProvider;let o;a.setCustomParameters({prompt:"select_account"});try{o=await H.A.auth().signInWithPopup(a)}catch(r){throw"auth/popup-closed-by-user"==r.code?{errorToLog:"Google popup closed"}:{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:r.message||r,error:r,withRedirectButton:"contact-us"}}if(o.user.providerData.length>1){await o.user.unlink(a.providerId);try{await t("signOut")}finally{throw{errorToDisplay:W.R.t("pages.auth.errorAlreadyEmailAndPasswordRegister"),errorToLog:"Try login with Google while having register with email and password",withRedirectButton:!1}}}else{const e=await t("isUserInFirestore",o);if(e)return o;try{await o.user.delete()}finally{throw{errorToDisplay:W.R.t("pages.auth.login.errorAccountNotExist"),errorToLog:"Try login with Google without register with Google (missing Firestore)",withRedirectButton:"register"}}}},async loginWithMicrosoft({getters:e,dispatch:t}){if(e.isAuthenticated)throw{errorToLog:"Already authenticated."};const a=new H.A.auth.OAuthProvider("microsoft.com");let o;a.setCustomParameters({prompt:"consent"});try{o=await H.A.auth().signInWithPopup(a)}catch(r){throw"auth/popup-closed-by-user"==r.code?{errorToLog:"Google popup closed"}:{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:r.message||r,error:r,withRedirectButton:"contact-us"}}if(o.user.providerData.length>1){await o.user.unlink(a.providerId);try{await t("signOut")}finally{throw{errorToDisplay:W.R.t("pages.auth.errorAlreadyEmailAndPasswordRegister"),errorToLog:"Try login with Google while having register with email and password",withRedirectButton:!1}}}else{const e=await t("isUserInFirestore",o);if(e)return o;try{await o.user.delete()}finally{throw{errorToDisplay:W.R.t("pages.auth.login.errorAccountNotExist"),errorToLog:"Try login with Microsoft without register with Microsoft (missing Firestore)",withRedirectButton:"register"}}}},async registerWithGoogle({dispatch:e,getters:t},a){if(t.isAuthenticated)throw{errorToLog:"Already authenticated."};const o=new H.A.auth.GoogleAuthProvider;let r;try{r=await H.A.auth().signInWithPopup(o)}catch(n){if(!H.A.auth().currentUser)throw"auth/popup-closed-by-user"==n.code?{errorToLog:"Google popup closed"}:{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:n.message||n,error:n,withRedirectButton:"contact-us"};try{await H.A.auth().currentUser.delete()}finally{throw{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:"Partial user creation. "+(n.message||n),error:n,withRedirectButton:"contact-us"}}}if(r.user.providerData.length>1){await r.user.unlink(o.providerId);try{await e("signOut")}finally{throw{errorToDisplay:W.R.t("pages.auth.errorAlreadyEmailAndPasswordRegister"),errorToLog:"Try register with Google while having register with another provider already",withRedirectButton:"login"}}}else{const t=await e("isUserInFirestore",r);if(t)try{await e("signOut")}finally{throw{errorToDisplay:W.R.t("pages.auth.register.errorAlreadyGoogleRegister"),errorToLog:"Try register with Google while having register with Google already",withRedirectButton:"login"}}else{const t={firstName:a.firstName,lastName:a.lastName,email:r.user.email,country:a.country,investorProfile:a.investorProfile,company:a.company,telNumber:a.telNumber??"",telNumberCountryCode:a.telNumber?a.telNumberCountryCode:""};try{return await e("userInfo/createUserInfo",{uid:r.user.uid,userInfo:t},{root:!0}),r}catch(n){try{await r.user.delete()}finally{throw{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:"Couldn't create in userInfo in Firestore. "+(n.message||n),error:n,withRedirectButton:"contact-us"}}}}}},async registerWithMicrosoft({dispatch:e,getters:t},a){if(t.isAuthenticated)throw{errorToLog:"Already authenticated."};const o=new H.A.auth.OAuthProvider("microsoft.com");let r;o.setCustomParameters({prompt:"consent"});try{r=await H.A.auth().signInWithPopup(o)}catch(n){if(!H.A.auth().currentUser)throw"auth/popup-closed-by-user"==n.code?{errorToLog:"Microsoft popup closed"}:{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:n.message||n,error:n,withRedirectButton:"contact-us"};try{await H.A.auth().currentUser.delete()}finally{throw{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:"Partial user creation. "+(n.message||n),error:n,withRedirectButton:"contact-us"}}}if(r.user.providerData.length>1){await r.user.unlink(o.providerId);try{await e("signOut")}finally{throw{errorToDisplay:W.R.t("pages.auth.errorAlreadyEmailAndPasswordRegister"),errorToLog:"Try register with Microsoft while having register with another provider already",withRedirectButton:"login"}}}else{const t=await e("isUserInFirestore",r);if(t)try{await e("signOut")}finally{throw{errorToDisplay:W.R.t("pages.auth.register.errorAlreadyMicrosoftRegister"),errorToLog:"Try register with Microsoft while having register with Microsoft already",withRedirectButton:"login"}}else{const t={firstName:a.firstName,lastName:a.lastName,email:r.user.email,country:a.country,investorProfile:a.investorProfile,company:a.company,telNumber:a.telNumber??"",telNumberCountryCode:a.telNumber?a.telNumberCountryCode:""};try{return await e("userInfo/createUserInfo",{uid:r.user.uid,userInfo:t},{root:!0}),r}catch(n){r.user.delete().finally((()=>{throw{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:"Couldn't create in userInfo in Firestore. "+(n.message||n),error:n,withRedirectButton:"contact-us"}}))}}}},async registerWithEmailAndPassword({getters:e,dispatch:t},a){if(e.isAuthenticated)throw{errorToLog:"Already authenticated."};let o;try{o=await H.A.auth().createUserWithEmailAndPassword(a.email,a.password)}catch(n){if(!H.A.auth().currentUser)throw"auth/email-already-in-use"==n.code?{errorToDisplay:W.R.t("pages.auth.register.errorAlreadyEmailAndPasswordRegister"),errorToLog:"Try register with email and password while having register with this email",withRedirectButton:"login"}:"auth/weak-password"==n.code?{errorToDisplay:n.message||n,errorToLog:"Weak password",withRedirectButton:!1}:{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:n.message||n,error:n,withRedirectButton:"contact-us"};try{await H.A.auth().currentUser.delete()}finally{throw{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:"Partial user creation. "+(n.message||n),error:n,withRedirectButton:"contact-us"}}}try{await o.user.sendEmailVerification()}catch(n){try{await o.user.delete()}finally{throw{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:n.message||n,error:n,withRedirectButton:"contact-us"}}}try{await t("updateProfile",{user:o.user,displayName:`${a.firstName} ${a.lastName}`,photoURL:a.photoURL})}catch(n){try{await o.user.delete()}finally{throw n}}const r={firstName:a.firstName,lastName:a.lastName,email:a.email,country:a.country,investorProfile:a.investorProfile,company:a.company,telNumber:a.telNumber??"",telNumberCountryCode:a.telNumber?a.telNumberCountryCode:""};try{return await t("userInfo/createUserInfo",{uid:o.user.uid,userInfo:r},{root:!0}),await t("signOut"),o}catch(n){try{await o.user.delete()}finally{throw{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:"Couldn't create in userInfo in Firestore. "+(n.message||n),error:n,withRedirectButton:"contact-us"}}}},setUser({commit:e},t){t||e("SET_USER",null);const o={displayName:t.displayName,email:t.email,photoURL:t.photoURL?t.photoURL:a(36668),uid:t.uid};e("SET_USER",o)},async signOut({commit:e}){await H.A.auth().signOut(),e("SET_USER",null)},async updateProfile(e,t){const a={};t.displayName&&(a.displayName=t.displayName),t.photoURL&&(a.photoURL=t.photoURL);try{await t.user.updateProfile(a)}catch(o){throw{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:"Profile couldn't update. "+(o.message||o),error:o,withRedirectButton:"contact-us"}}},async isUserInFirestore(e,t){try{const e=await H.A.firestore().collection("users").doc(t.user.uid).get();return e.exists}catch(a){throw{errorToDisplay:W.R.t("pages.auth.errorInternal"),errorToLog:"Couldn't get information from Firestore. "+(a.message||a),error:a,withRedirectButton:"contact-us"}}},async setToken(){const e=H.A.auth().currentUser;if(e){const t=await e.getIdToken();return t}return null},setLoginInfo({dispatch:e},t){e("setUser",t)},async deleteAccount({commit:e},{notify:t}){const a=H.A.auth().currentUser.email;return await H.A.auth().currentUser.delete(),e("SET_USER",null),t({time:4e3,title:"Success",text:"Your account was successfully deleted.",iconPack:"feather",icon:"icon-check",color:"success"}),a},resetPasswordForGuest(e,{email:t}){return H.A.auth().sendPasswordResetEmail(t)},updatePassword(e,{currentPassword:t,newPassword:a,notify:o}){const r=H.A.auth().currentUser,n=H.A.auth.EmailAuthProvider.credential(r.email,t);r.reauthenticateWithCredential(n).then((()=>{r.updatePassword(a).then((()=>{o({title:"Success",text:"Your password was successfully updated.",color:"success",time:5e3})})).catch((e=>{throw o({title:"Error",text:"We couldn't change your password, please contact us using the contact form to fix this error!",color:"danger"}),e}))})).catch((()=>{o({title:"Error",text:"You provided the wrong password.",color:"danger"})}))}},$={isAuthenticated:e=>null!=e.user,getUser:e=>e.user},Z={SET_USER(e,t){e.user=t}},Y={user:null},K={namespaced:!0,state:Y,mutations:Z,actions:Q,getters:$},J=a(71642),X=a(27367),ee=a(18757);function te(e){const t=new Map;e.forEach((e=>{const a=ee.A.products.map((e=>e.productId)).indexOf(e.productId);t.set(a,e)}));const a=new Map([...t].sort(((e,t)=>e[0]-t[0])));return Array.from(a.values())}const ae={shareClassRootToProductIdToShow:{}},oe={getProductIdToShowFromShareClassRoot:e=>t=>e.shareClassRootToProductIdToShow[t],getAllProducts:(e,t,a,r)=>{const n=!r["settings/getShowLoggedInProduct"];return te(ee.A.products.filter((e=>!n||!e.hideWhenAskedInSettings)).map((e=>(0,o.merge)({},e,r[`${e.storeModule}/getProductConfig`](W.R.locale)))))},getAllProductsAuthorized:(e,t)=>te((0,o.intersectionWith)(t.getAllProductsNotHidden,t.getAllProductsAuthorizedForRole,t.getAllProductsAuthorizedForInvestorProfile,((e,t)=>e.productId===t.productId))),getAllProductsAdmin:(e,t,a,o)=>o["userInfo/hasAnyRoles"]([J.X.superAdmin,J.X.admin])?t.getAllProducts:t.getAllProducts.filter((e=>o["userInfo/isAdminOf"](e.productId))),getAllProductsNotHidden:(e,t,a,o)=>o["userInfo/hasAnyRoles"]([J.X.superAdmin,J.X.admin,J.X.employee])?t.getAllProducts:te(t.getAllProducts.filter((e=>o["userInfo/isAdminOf"](e.productId)||!e.general?.hidden))),getAllProductsAuthorizedForRole:(e,t,a,o)=>o["userInfo/hasAnyRoles"]([J.X.superAdmin,J.X.admin,J.X.employee])?t.getAllProducts:te(t.getAllProducts.filter((e=>{const t=e.allowedRoles??ee.A.allowedRoles;return o["userInfo/isAdminOf"](e.productId)||!t||o["userInfo/hasAnyRoles"](t)}))),getAllProductsAuthorizedForInvestorProfile:(e,t,a,o)=>{if(o["userInfo/hasAnyRoles"]([J.X.superAdmin,J.X.admin,J.X.employee]))return t.getAllProducts;if(!o["platformSettings/getCompliance"](W.R.locale)?.["investorProfileChecksActivated"])return t.getAllProducts;const r=o["userInfo/getUserInfo"],n=r&&r.investorProfile||o["userInfo/getIpTypeBrowserStored"],s=r&&r.country||o["userInfo/getIpCountryBrowserStored"];return n&&s?te(t.getAllProducts.filter((e=>{if(o["userInfo/isAdminOf"](e.productId))return!0;if(n===X.Ln){const t=void 0==e.accessRestrictions?.retailCountries;return t||e.accessRestrictions?.retailCountries?.includes(s)}if(n===X.VI){const t=void 0==e.accessRestrictions?.professionalCountries;return t||e.accessRestrictions?.professionalCountries?.includes(s)}if(n===X.x9){const t=void 0==e.accessRestrictions?.institutionalCountries;return t||e.accessRestrictions?.institutionalCountries?.includes(s)}throw new Error(`Unknown investor profile type: ${n}`)}))):[]},getAllRootProducts:(e,t)=>te(t.getAllProducts.filter((e=>{const t=void 0===e.productShareClassRoot,a=e.isDefaultShareClass;return t||a}))),getAllShareClassesAuthorized:(e,t)=>e=>{const a=t.getAllProducts.find((t=>t.productId===e));if(!a)throw new Error(`Cannot find the corresponding id ${e}.`);return te(t.getAllProductsAuthorized.filter((e=>{const t=void 0===e.productShareClassRoot&&e.productName===a.productName,o=void 0!==e.productShareClassRoot&&e.productShareClassRoot===a.productShareClassRoot;return t||o})))},getAllShareClassesAdmin:(e,t)=>e=>{const a=t.getAllProducts.find((t=>t.productId===e));if(!a)throw new Error(`Cannot find the corresponding id ${e}.`);return te(t.getAllProductsAdmin.filter((e=>{const t=void 0===e.productShareClassRoot&&e.productName===a.productName,o=void 0!==e.productShareClassRoot&&e.productShareClassRoot===a.productShareClassRoot;return t||o})))},getAllSelectedShareClassesAuthorized:(e,t)=>{const a=t.getAllProductsAuthorized.map((e=>{if(void 0===e.productShareClassRoot)return e;const a=t.getProductIdToShowFromShareClassRoot(e.productShareClassRoot),o=t.getAllShareClassesAuthorized(e.productId);return null===a||void 0===o.find((e=>e.productId==a))?o[0]:o.find((e=>e.productId==a))})).filter(((e,t,a)=>a.map((e=>e.productId)).indexOf(e.productId)===t));return te(a)}},re={UPDATE_SHARE_CLASS_ROOT_TO_PRODUCT_ID_TO_SHOW(e,{shareClassRoot:t,productId:a}){r["default"].set(e.shareClassRootToProductIdToShow,t,a)}},ne={initShareClassRootToProductIdToShow({commit:e}){return new Promise((t=>{ee.A.products.filter((e=>e.productShareClassRoot)).map((e=>e.productShareClassRoot)).filter(((e,t,a)=>a.indexOf(e)===t)).forEach((t=>e("UPDATE_SHARE_CLASS_ROOT_TO_PRODUCT_ID_TO_SHOW",{shareClassRoot:t,productId:localStorage.getItem(t)}))),t()}))},setProductIdToShowForShareClassRoot({commit:e},{shareClassRoot:t,productId:a}){return new Promise((o=>{localStorage.setItem(t,a),e("UPDATE_SHARE_CLASS_ROOT_TO_PRODUCT_ID_TO_SHOW",{shareClassRoot:t,productId:a}),o()}))}};var se={namespaced:!0,state:ae,mutations:re,actions:ne,getters:oe},ie=a(7861);const le={allAssets:null},de={getAllAssets:e=>e.allAssets},ue={SAVE_ALL_ASSETS_SUCCESS:(e,{data:t})=>{t&&(e.allAssets=t)}},ce={async fetchAllAssets({commit:e}){const t=await ie.A.get("/api/assets"),a=t.data.reduce(((e,t)=>(e[t.group]||(e[t.group]=[]),e[t.group].push(t),e)),{});e("SAVE_ALL_ASSETS_SUCCESS",{data:Object.entries(a).map((e=>({assetGroup:e[0],assets:e[1]})))})}};var me={namespaced:!0,state:le,mutations:ue,actions:ce,getters:de};const pe={benchmarks:{}},he={getBenchmark:e=>t=>e.benchmarks?e.benchmarks[t]:e.benchmarks,getAllBenchmarks:e=>e.benchmarks},ge={FETCH_BENCHMARK_SUCCESS:(e,{benchmarkId:t,data:a})=>{e.benchmarks||(e.benchmarks={}),r["default"].set(e.benchmarks,t,a)},FETCH_ALL_BENCHMARKS_SUCCESS:(e,{data:t})=>{t?t.forEach((t=>{r["default"].set(e.benchmarks,t["id_"],t)})):e.benchmarks=t}},fe={async fetchBenchmark({commit:e,state:t},{benchmarkId:a}){if(t.benchmarks&&t.benchmarks[a])e("FETCH_BENCHMARK_SUCCESS",{benchmarkId:a,data:null});else try{const t=await ie.A.get("/api/benchmarks/"+a);e("FETCH_BENCHMARK_SUCCESS",{benchmarkId:a,data:t.data})}catch(o){throw e("FETCH_BENCHMARK_SUCCESS",{benchmarkId:a,data:null}),o}},async fetchAllBenchmarks({commit:e},{benchmarkIds:t}){const a={};void 0!==t&&(a["benchmark_ids"]=t);try{const t=await ie.A.get("/api/benchmarks/",{params:a});e("FETCH_ALL_BENCHMARKS_SUCCESS",{data:t.data})}catch(o){throw e("FETCH_ALL_BENCHMARKS_SUCCESS",{data:null}),o}}};var ve={namespaced:!0,state:pe,mutations:ge,actions:fe,getters:he},be=a(44415);const we={keyNumbers:{}},Ae={getKeyNumbers:e=>t=>(0,be.w)(e.keyNumbers,t)},ye={FETCH_KEY_NUMBERS_SUCCESS:(e,{productIds:t,data:a})=>{t.forEach((t=>{r["default"].set(e.keyNumbers,t,a[t])}))},FETCH_KEY_NUMBERS_FAILURE:(e,{productIds:t})=>{t.forEach((t=>{r["default"].set(e.keyNumbers,t,null)}))},RESET_ALL_STATES:e=>{e.keyNumbers={}}},Se={async fetchKeyNumbers({commit:e},{productIds:t,inceptionDates:a,periodEndDate:o}){const r={product_ids:t,inception_dates:a.map((e=>e??""))};o&&(r["period_end_date"]=o);try{const a=await ie.A.get("/api/products/key-numbers",{params:r});e("FETCH_KEY_NUMBERS_SUCCESS",{productIds:t,data:a.data})}catch(n){throw e("FETCH_KEY_NUMBERS_FAILURE",{productIds:t}),n}},resetAllStates({commit:e}){e("RESET_ALL_STATES")}};var Ce={namespaced:!0,state:we,mutations:ye,actions:Se,getters:Ae};const Pe=()=>({selectedProducts:void 0,selectedLangs:void 0,lastFactsheetDate:void 0,needLogin:void 0,isLastFactsheet:void 0}),ke=Pe(),Ie={getSelectedProducts:e=>e.selectedProducts,getSelectedLangs:e=>e.selectedLangs,getLastFactsheetDate:e=>e.lastFactsheetDate,getNeedLogin:e=>e.needLogin,getIsLastFactsheet:e=>e.isLastFactsheet},De={FETCH_SELECTED_PRODUCTS_SUCCESS:(e,{data:t})=>{e.selectedProducts=t},FETCH_SELECTED_LANGS_SUCCESS:(e,{data:t})=>{e.selectedLangs=t},FETCH_LAST_FACTSHEET_DATE_SUCCESS:(e,{data:t})=>{e.lastFactsheetDate=t},FETCH_NEED_LOGIN_SUCCESS:(e,{data:t})=>{e.needLogin=t},FETCH_IS_LAST_FACTSHEET_SUCCESS:(e,{data:t})=>{e.isLastFactsheet=t},RESET_ALL_STATES(e){Object.assign(e,Pe())}},Ee={setSelectedProducts({commit:e},{selectedProducts:t}){e("FETCH_SELECTED_PRODUCTS_SUCCESS",{data:t})},setSelectedLangs({commit:e},{selectedLangs:t}){e("FETCH_SELECTED_LANGS_SUCCESS",{data:t})},setLastFactsheetDate({commit:e},{lastFactsheetDate:t}){e("FETCH_LAST_FACTSHEET_DATE_SUCCESS",{data:t})},setNeedLogin({commit:e},{needLogin:t}){e("FETCH_NEED_LOGIN_SUCCESS",{data:t})},setIsLastFactsheet({commit:e},{isLastFactsheet:t}){e("FETCH_IS_LAST_FACTSHEET_SUCCESS",{data:t})},resetAllStates({commit:e}){e("RESET_ALL_STATES")}};var Re={namespaced:!0,state:ke,mutations:De,actions:Ee,getters:Ie},Te={namespaced:!0,modules:{generateFactsheets:Re}};const Me={platformSettings:void 0,platformSettingsLangs:void 0},qe={isBindingReady:e=>null!=e.platformSettings&&null!=e.platformSettingsLangs&&e.platformSettingsLangs.length>0,getCompliance:e=>t=>(e.platformSettingsLangs?.find((e=>e.id==t))??{}).compliance,getIam:e=>e.platformSettings?.iam,getPlatformSettingsLangs:e=>e.platformSettingsLangs},xe={},ze={bindPlatformSettings:(0,s.sT)((({bindFirestoreRef:e,state:t})=>null!=t.platformSettings?Promise.resolve():e("platformSettings",H.A.firestore().collection("settings").doc("platform")))),bindPlatformSettingsLangs:(0,s.sT)((({bindFirestoreRef:e,state:t})=>null!=t.platformSettingsLangs?Promise.resolve():e("platformSettingsLangs",H.A.firestore().collection("settings").doc("platform").collection("langs")))),updateCompliance:(0,s.sT)(((e,{newCompliance:t,lang:a})=>H.A.firestore().collection("settings").doc("platform").collection("langs").doc(a).set({compliance:t},{merge:!0}))),updateIam:(0,s.sT)(((e,{newIam:t})=>H.A.firestore().collection("settings").doc("platform").set({iam:t},{merge:!0})))};var Fe={namespaced:!0,state:Me,mutations:xe,actions:ze,getters:qe},Be={namespaced:!0,state:{preferences:{}},actions:{bindPreferences:(0,s.sT)((({bindFirestoreRef:e})=>e("preferences",H.A.firestore().collection("users").doc(H.A.auth().currentUser.uid)))),updatePreferences:(0,s.sT)(((e,t)=>{const a=t.preferences,o=H.A.firestore().collection("users").doc(H.A.auth().currentUser.uid);o.update(a)}))},getters:{getShowLoggedInProduct:e=>null==e.preferences||1!=e.preferences["hide_logged_in_products"]}},Le={namespaced:!0,state:{userInfo:null,ipTypeBrowserStored:void 0,ipCountryBrowserStored:void 0,currentUserRoles:new Set([J.X.guest]),lastTokenIssuedDay:null},mutations:{FETCH_USER_INFO_FAILURE(e){e.userInfo=void 0},UPDATE_IP_TYPE_BROWSER_STORED(e,{ipType:t}){e.ipTypeBrowserStored=t},UPDATE_IP_COUNTRY_BROWSER_STORED(e,{ipCountry:t}){e.ipCountryBrowserStored=t},UPDATE_CURRENT_USER_ROLES(e,{currentUserRoles:t}){(0,o.isEqual)(t,e.currentUserRoles)||(e.currentUserRoles=t)},UPDATE_LAST_TOKEN_ISSUED_DAY(e,{lastTokenIssuedDay:t}){e.lastTokenIssuedDay=t}},actions:{bindUserInfoRef:(0,s.sT)((({bindFirestoreRef:e,commit:t})=>{const a=H.A.auth().currentUser;return a?e("userInfo",H.A.firestore().collection("users").doc(H.A.auth().currentUser.uid)).catch((e=>{if(H.A.auth().currentUser)throw t("FETCH_USER_INFO_FAILURE"),e})):Promise.resolve()})),updateUserInfo(e,{newUserInfo:t}){const a=H.A.firestore().collection("users").doc(H.A.auth().currentUser.uid);return a.set(t,{merge:!0})},addFollowingProduct(e,{productId:t,lang:a}){const o=H.A.firestore().collection("users").doc(H.A.auth().currentUser.uid);return o.set({followingProducts:H.A.firestore.FieldValue.arrayUnion({productId:t,lang:a})},{merge:!0})},removeFollowingProduct(e,{productId:t}){const a=H.A.firestore().collection("users").doc(H.A.auth().currentUser.uid);return a.get().then((e=>{const o=e.data().followingProducts.find((e=>e.productId===t));return a.set({followingProducts:H.A.firestore.FieldValue.arrayRemove(o)},{merge:!0})}))},createUserInfo(e,{uid:t,userInfo:a}){return H.A.firestore().collection("users").doc(t).set(a,{merge:!0})},setIpTypeFromBrowserLocalStorage({commit:e}){return new Promise((t=>{e("UPDATE_IP_TYPE_BROWSER_STORED",{ipType:localStorage.getItem(X.rR)}),t()}))},updateIpTypeBrowserLocalStorage({commit:e},{newIpType:t}){return new Promise((a=>{localStorage.setItem(X.rR,t),e("UPDATE_IP_TYPE_BROWSER_STORED",{ipType:t}),a()}))},setIpCountryFromBrowserLocalStorage({commit:e}){return new Promise((t=>{e("UPDATE_IP_COUNTRY_BROWSER_STORED",{ipCountry:localStorage.getItem(X.xq)}),t()}))},updateIpCountryBrowserLocalStorage({commit:e},{newIpCountry:t}){return new Promise((a=>{localStorage.setItem(X.xq,t),e("UPDATE_IP_COUNTRY_BROWSER_STORED",{ipCountry:t}),a()}))},async setAndGetUserRoles({commit:e,state:t,dispatch:a}){const o=H.A.auth().currentUser;if(o){const r=await o.getIdTokenResult(),n=new Date(r.issuedAtTime).toISOString().split("T")[0];null!=t.lastTokenIssuedDay&&n==t.lastTokenIssuedDay||(await a("updateUserInfo",{newUserInfo:{lastVisitedDay:n}}),e("UPDATE_LAST_TOKEN_ISSUED_DAY",{lastTokenIssuedDay:n}));const s=Object.keys(r.claims).filter((e=>e.startsWith("role:")&&r.claims[e])).map((e=>e.substring(5)));s.push(J.X.insight),e("UPDATE_CURRENT_USER_ROLES",{currentUserRoles:new Set(s)})}else e("UPDATE_CURRENT_USER_ROLES",{currentUserRoles:new Set([J.X.guest])})}},getters:{getUserInfo:e=>e.userInfo,getFirstName:e=>(0,be.w)(e.userInfo,"firstName"),getLastName:e=>(0,be.w)(e.userInfo,"lastName"),getEmail:e=>(0,be.w)(e.userInfo,"email"),getCountry:e=>(0,be.w)(e.userInfo,"country"),getInvestorProfile:e=>(0,be.w)(e.userInfo,"investorProfile"),getCompany:e=>(0,be.w)(e.userInfo,"company"),getTelNumber:e=>(0,be.w)(e.userInfo,"telNumber"),getTelNumberCountryCode:e=>(0,be.w)(e.userInfo,"telNumberCountryCode"),hasRegistered2fa:()=>{const e=H.A.auth().currentUser;if(!e)return!1;const t=(0,_.VO)(e);return t.enrolledFactors.some((e=>"totp"===e.factorId))},isFollowingProduct:e=>({productId:t,lang:a})=>{const o=(0,be.w)(e.userInfo,"followingProducts");return!!o&&(a?o.filter((e=>{e.productId===t&&e.lang})).length>0:o.map((e=>e.productId)).includes(t))},getIpTypeBrowserStored:e=>e.ipTypeBrowserStored,getIpCountryBrowserStored:e=>e.ipCountryBrowserStored,getRoles:e=>e.currentUserRoles,hasAnyRole:e=>t=>e.currentUserRoles.has(t),hasAnyRoles:(e,t)=>e=>e.some((e=>t.hasAnyRole(e))),isAdminOf:(e,t,a,o)=>e=>{if(t.hasAnyRoles([J.X.superAdmin,J.X.admin]))return!0;const a=o["platformSettings/getIam"],r=a?.userDefinedRoles;return!!r&&r.some((a=>a.allowedProductIds.includes(e)&&t.hasAnyRole(a.name)))}}};const Ne={users:null},Ue={getUsers:e=>e.users,getUsersFollowingProduct:e=>t=>null==e.users?e.users:e.users.filter((e=>e.followingProducts?.some((e=>e.productId===t))))},Ve={},Oe={bindUsers:(0,s.sT)((({bindFirestoreRef:e})=>e("users",H.A.firestore().collection("users")))),async removeSelfRegisteredFollower(e,{productId:t,email:a}){const o=await H.A.firestore().collection("users").where("email","==",a).get();if(0==o.docs.length)throw new Error(`No user with given email address ('${a}').`);if(o.docs.length>1)throw new Error(`Multiple users with given email address ('${a}').`);const r=o.docs[0].ref,n=await r.get();await ie.A.post("/api/users/remove-follower",{uid:H.A.auth().currentUser.uid,follower_uid:n.id,product_id:t})}};var Ge={namespaced:!0,state:Ne,mutations:Ve,actions:Oe,getters:Ue};r["default"].use(n.Ay);class _e extends Error{}let He;const je=e=>{try{return Object(function(){var e=new Error("Cannot find module 'undefined'");throw e.code="MODULE_NOT_FOUND",e}()).default}catch(t){try{return Object(function(){var e=new Error("Cannot find module '@/store/modules/orgs/openfunds/products.js'");throw e.code="MODULE_NOT_FOUND",e}())}catch(t){throw new _e(`Unable to import product module '${e}'`)}}},We={alquant:l.K,"banca-credinvest":d.d,bcf:u.b,bcj:c.J,"bi-capital":m.S,bonhote:p.J,calmgard:h.F,"cge-tech-care":g.c,chameleon:f.k,"cite-gestion":v.r,cronos:b.C,demo:w.P,equinox:A.D,falgom:y.I,finanzlab:S.R,"forum-capital":C.U,lakefield:P.t,mirante:k.k,msm:I.n,"one-swiss-bank":D.b,openfunds:E.w,"6t":i.c,ppt:R.U,ssi:T.d,uti:M.A},Qe=We["openfunds"],$e=Qe.map((e=>{try{let t=(0,o.cloneDeep)(je(e));return[e,t]}catch(t){if(t instanceof _e){let t=(0,o.cloneDeep)(a(90574).A);return[e,t]}throw t}})),Ze=new Map($e),Ye={allProducts:se,assets:me,auth:K,benchmarks:ve,keyNumbers:Ce,platformSettings:Fe,settings:Be,userInfo:Le,users:Ge,operations:Te,...Object.fromEntries(Ze)};He&&(Ye["customSections"]=He);var Ke=new n.Ay.Store({getters:F,mutations:{...L,...s.re},state:G,actions:x,modules:Ye,strict:!1})},44415:function(e,t,a){"use strict";function o(e,...t){return t.reduce(((e,t)=>e&&e[t]),e)}a.d(t,{w:function(){return o}})},20942:function(e,t,a){var o={"./DefaultAnalysis":[3651,5262,209,1317,8039,3125,4037,5797,9746,825],"./DefaultAnalysis.vue":[3651,5262,209,1317,8039,3125,4037,5797,9746,825],"./DefaultDocumentDownload":[18271,8271],"./DefaultDocumentDownload.vue":[18271,8271],"./DefaultDocuments":[82587,8039,2587],"./DefaultDocuments.vue":[82587,8039,2587],"./DefaultEmbeddedPerfGraph":[6784,1317,8843],"./DefaultEmbeddedPerfGraph.vue":[6784,1317,8843],"./DefaultEmbeddedPerfTable":[94106,4106],"./DefaultEmbeddedPerfTable.vue":[94106,4106],"./DefaultEmbeddedStatsTable":[10063,63],"./DefaultEmbeddedStatsTable.vue":[10063,63],"./DefaultFactsheet":[11621,5262,209,1317,8039,3125,5797,5304,7197,3515,8419],"./DefaultFactsheet.vue":[11621,5262,209,1317,8039,3125,5797,5304,7197,3515,8419],"./DefaultFactsheetForPdfGeneration":[91677,5262,209,1317,8039,3125,5797,5304,7197,3515,3627],"./DefaultFactsheetForPdfGeneration.vue":[91677,5262,209,1317,8039,3125,5797,5304,7197,3515,3627],"./DefaultLastFactsheetDownload":[42841,2841],"./DefaultLastFactsheetDownload.vue":[42841,2841],"./DefaultOverview":[9117,5262,209,1317,8039,3125,5797,5304,7197,975],"./DefaultOverview.vue":[9117,5262,209,1317,8039,3125,5797,5304,7197,975],"./alquant/alcrypto/Analysis":[8661,5262,209,1317,8039,3125,4037,5797,9746,5304,5261],"./alquant/alcrypto/Analysis.vue":[8661,5262,209,1317,8039,3125,4037,5797,9746,5304,5261],"./alquant/alvola/InternalAnalysis":[98089,5262,209,1317,8039,3125,4037,5797,9746,5304,9321],"./alquant/alvola/InternalAnalysis.vue":[98089,5262,209,1317,8039,3125,4037,5797,9746,5304,9321],"./alquant/alvola/UseCase":[44839,1317,4037,2025],"./alquant/alvola/UseCase.vue":[44839,1317,4037,2025],"./alquant/alvolaWithFutures/Analysis":[67047,5262,209,1317,8039,3125,4037,5797,9746,3325],"./alquant/alvolaWithFutures/Analysis.vue":[67047,5262,209,1317,8039,3125,4037,5797,9746,3325],"./alquant/alvolaWithFutures/UseCase":[98971,1317,4037,3405],"./alquant/alvolaWithFutures/UseCase.vue":[98971,1317,4037,3405],"./alquant/convexus/InternalAnalysis":[57045,5262,209,1317,8039,3125,4037,5797,9746,5304,3101],"./alquant/convexus/InternalAnalysis.vue":[57045,5262,209,1317,8039,3125,4037,5797,9746,5304,3101],"./alquant/lifeSciencesToolsAndServices/InternalAnalysis":[30808,5262,209,1317,8039,3125,4037,5797,9746,4008],"./alquant/lifeSciencesToolsAndServices/InternalAnalysis.vue":[30808,5262,209,1317,8039,3125,4037,5797,9746,4008],"./alquant/lifeSciencesToolsAndServices/LiveAnalysis":[64018,5262,209,1317,8039,3125,4037,5797,9746,2934],"./alquant/lifeSciencesToolsAndServices/LiveAnalysis.vue":[64018,5262,209,1317,8039,3125,4037,5797,9746,2934],"./alquant/proTech/InternalAnalysis":[56101,5262,209,1317,8039,3125,4037,5797,9746,5304,285],"./alquant/proTech/InternalAnalysis.vue":[56101,5262,209,1317,8039,3125,4037,5797,9746,5304,285],"./alquant/quantCore/Analysis":[19883,5262,209,1317,8039,3125,4037,5797,9746,5304,2807],"./alquant/quantCore/Analysis.vue":[19883,5262,209,1317,8039,3125,4037,5797,9746,5304,2807],"./alquant/ynnovation/InternalAnalysis":[39685,5262,209,1317,8039,3125,4037,5797,9746,5304,7309],"./alquant/ynnovation/InternalAnalysis.vue":[39685,5262,209,1317,8039,3125,4037,5797,9746,5304,7309],"./falgom/taroDiversified/UseCase":[47876,1317,4037,3060],"./falgom/taroDiversified/UseCase.vue":[47876,1317,4037,3060]};function r(e){if(!a.o(o,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=o[e],r=t[0];return Promise.all(t.slice(1).map(a.e)).then((function(){return a(r)}))}r.keys=function(){return Object.keys(o)},r.id=20942,e.exports=r},99555:function(e,t,a){var o={"./Home":[59216,9216],"./Home.vue":[59216,9216],"./admin/PlatformSettings":[60216,5262,209,216],"./admin/PlatformSettings.vue":[60216,5262,209,216],"./admin/Users":[48683,8683],"./admin/Users.vue":[48683,8683],"./admin/operations/GenerateFactsheets":[21534,5262,1534],"./admin/operations/GenerateFactsheets.vue":[21534,5262,1534],"./admin/products/AccessRestrictions":[62570,5262,209,2570],"./admin/products/AccessRestrictions.vue":[62570,5262,209,2570],"./admin/products/Data":[7493,7645,7493,7068],"./admin/products/Data.vue":[7493,7645,7493,7068],"./admin/products/Followers":[77818,7645,7818,4687],"./admin/products/Followers.vue":[77818,7645,7818,4687],"./admin/products/General":[43940,5262,209,8039,3125,2277],"./admin/products/General.vue":[43940,5262,209,8039,3125,2277],"./admin/products/Products":[17892,5262,209,8039,3125,7645,7818,7493,8543],"./admin/products/Products.vue":[17892,5262,209,8039,3125,7645,7818,7493,8543],"./admin/settings/Compliance":[26274,6274],"./admin/settings/Compliance.vue":[26274,6274],"./admin/settings/Roles":[48604,5262,209,8604],"./admin/settings/Roles.vue":[48604,5262,209,8604],"./auth/login/Login":[13485,3485],"./auth/login/Login.vue":[13485,3485],"./auth/login/Login2fa":[51889,1889],"./auth/login/Login2fa.vue":[51889,1889],"./auth/login/LoginFirebase":[84736,4736],"./auth/login/LoginFirebase.vue":[84736,4736],"./auth/register/Register":[70101,8017,9601],"./auth/register/Register.vue":[70101,8017,9601],"./auth/register/Register2fa":[9683,9683],"./auth/register/Register2fa.vue":[9683,9683],"./auth/register/RegisterFirebase":[18017,8017,9653],"./auth/register/RegisterFirebase.vue":[18017,8017,9653],"./auth/resetPassword/ResetPasswordForm":[93463,3463],"./auth/resetPassword/ResetPasswordForm.vue":[93463,3463],"./compliance/InvestorProfile":[52731,2731],"./compliance/InvestorProfile.vue":[52731,2731],"./compliance/Ombudsman":[79325,9325],"./compliance/Ombudsman.vue":[79325,9325],"./compliance/PrivacyPolicy":[40833,833],"./compliance/PrivacyPolicy.vue":[40833,833],"./compliance/TermsOfUse":[10548,548],"./compliance/TermsOfUse.vue":[10548,548],"./compliance/custom/bcf/PrivacyPolicy":[41667,1667],"./compliance/custom/bcf/PrivacyPolicy.vue":[41667,1667],"./customSections/demo/useCases/Alpinum":[58740,1317,4037,9044],"./customSections/demo/useCases/Alpinum.vue":[58740,1317,4037,9044],"./errors/Error403":[16128,6128],"./errors/Error403.vue":[16128,6128],"./errors/Error404":[62042,2042],"./errors/Error404.vue":[62042,2042],"./errors/UnauthorizedInvestorProfile":[5457,5457],"./errors/UnauthorizedInvestorProfile.vue":[5457,5457],"./help/Contact":[11397,1397],"./help/Contact.vue":[11397,1397],"./help/Faq":[62615,2615],"./help/Faq.vue":[62615,2615],"./help/KnowledgeBase":[14048,4048],"./help/KnowledgeBase.vue":[14048,4048],"./help/knowledgeBaseTerm/KnowledgeBaseTerm":[45725,5725],"./help/knowledgeBaseTerm/KnowledgeBaseTerm.vue":[45725,5725],"./help/knowledgeBaseTerm/components/Alpha":[50010,10],"./help/knowledgeBaseTerm/components/Alpha.vue":[50010,10],"./help/knowledgeBaseTerm/components/AnnualizedReturn":[87690,7690],"./help/knowledgeBaseTerm/components/AnnualizedReturn.vue":[87690,7690],"./help/knowledgeBaseTerm/components/AnnualizedVola":[60775,775],"./help/knowledgeBaseTerm/components/AnnualizedVola.vue":[60775,775],"./help/knowledgeBaseTerm/components/Beta":[88783,8783],"./help/knowledgeBaseTerm/components/Beta.vue":[88783,8783],"./help/knowledgeBaseTerm/components/CalmarRatio":[60554,554],"./help/knowledgeBaseTerm/components/CalmarRatio.vue":[60554,554],"./help/knowledgeBaseTerm/components/Correlation":[81605,1605],"./help/knowledgeBaseTerm/components/Correlation.vue":[81605,1605],"./help/knowledgeBaseTerm/components/CumulativeReturn":[14965,4965],"./help/knowledgeBaseTerm/components/CumulativeReturn.vue":[14965,4965],"./help/knowledgeBaseTerm/components/InformationRatio":[61582,1582],"./help/knowledgeBaseTerm/components/InformationRatio.vue":[61582,1582],"./help/knowledgeBaseTerm/components/Kurtosis":[17138,7138],"./help/knowledgeBaseTerm/components/Kurtosis.vue":[17138,7138],"./help/knowledgeBaseTerm/components/M2RiskAdjustedPerf":[25872,5872],"./help/knowledgeBaseTerm/components/M2RiskAdjustedPerf.vue":[25872,5872],"./help/knowledgeBaseTerm/components/MaxDrawdown":[49186,9186],"./help/knowledgeBaseTerm/components/MaxDrawdown.vue":[49186,9186],"./help/knowledgeBaseTerm/components/OmegaRatio":[24607,4607],"./help/knowledgeBaseTerm/components/OmegaRatio.vue":[24607,4607],"./help/knowledgeBaseTerm/components/ReturnToVolaRatio":[95154,5154],"./help/knowledgeBaseTerm/components/ReturnToVolaRatio.vue":[95154,5154],"./help/knowledgeBaseTerm/components/SharpeRatio":[74154,4154],"./help/knowledgeBaseTerm/components/SharpeRatio.vue":[74154,4154],"./help/knowledgeBaseTerm/components/Skewness":[81834,1834],"./help/knowledgeBaseTerm/components/Skewness.vue":[81834,1834],"./help/knowledgeBaseTerm/components/SortinoRatio":[90424,424],"./help/knowledgeBaseTerm/components/SortinoRatio.vue":[90424,424],"./help/knowledgeBaseTerm/components/TrackingError":[17652,7652],"./help/knowledgeBaseTerm/components/TrackingError.vue":[17652,7652],"./help/knowledgeBaseTerm/components/TreynorRatio":[2417,2417],"./help/knowledgeBaseTerm/components/TreynorRatio.vue":[2417,2417],"./help/knowledgeBaseTerm/components/ValueAtRisk":[57074,7074],"./help/knowledgeBaseTerm/components/ValueAtRisk.vue":[57074,7074],"./help/knowledgeBaseTerm/sectionsAndTerms":[89633,9633],"./help/knowledgeBaseTerm/sectionsAndTerms.js":[89633,9633],"./products/DefaultAnalysis":[3651,5262,209,1317,8039,3125,4037,5797,9746,825],"./products/DefaultAnalysis.vue":[3651,5262,209,1317,8039,3125,4037,5797,9746,825],"./products/DefaultDocumentDownload":[18271,8271],"./products/DefaultDocumentDownload.vue":[18271,8271],"./products/DefaultDocuments":[82587,8039,2587],"./products/DefaultDocuments.vue":[82587,8039,2587],"./products/DefaultEmbeddedPerfGraph":[6784,1317,8843],"./products/DefaultEmbeddedPerfGraph.vue":[6784,1317,8843],"./products/DefaultEmbeddedPerfTable":[94106,4106],"./products/DefaultEmbeddedPerfTable.vue":[94106,4106],"./products/DefaultEmbeddedStatsTable":[10063,63],"./products/DefaultEmbeddedStatsTable.vue":[10063,63],"./products/DefaultFactsheet":[11621,5262,209,1317,8039,3125,5797,5304,7197,3515,8419],"./products/DefaultFactsheet.vue":[11621,5262,209,1317,8039,3125,5797,5304,7197,3515,8419],"./products/DefaultFactsheetForPdfGeneration":[91677,5262,209,1317,8039,3125,5797,5304,7197,3515,3627],"./products/DefaultFactsheetForPdfGeneration.vue":[91677,5262,209,1317,8039,3125,5797,5304,7197,3515,3627],"./products/DefaultLastFactsheetDownload":[42841,2841],"./products/DefaultLastFactsheetDownload.vue":[42841,2841],"./products/DefaultOverview":[9117,5262,209,1317,8039,3125,5797,5304,7197,975],"./products/DefaultOverview.vue":[9117,5262,209,1317,8039,3125,5797,5304,7197,975],"./products/alquant/alcrypto/Analysis":[8661,5262,209,1317,8039,3125,4037,5797,9746,5304,5261],"./products/alquant/alcrypto/Analysis.vue":[8661,5262,209,1317,8039,3125,4037,5797,9746,5304,5261],"./products/alquant/alvola/InternalAnalysis":[98089,5262,209,1317,8039,3125,4037,5797,9746,5304,9321],"./products/alquant/alvola/InternalAnalysis.vue":[98089,5262,209,1317,8039,3125,4037,5797,9746,5304,9321],"./products/alquant/alvola/UseCase":[44839,1317,4037,2025],"./products/alquant/alvola/UseCase.vue":[44839,1317,4037,2025],"./products/alquant/alvolaWithFutures/Analysis":[67047,5262,209,1317,8039,3125,4037,5797,9746,3325],"./products/alquant/alvolaWithFutures/Analysis.vue":[67047,5262,209,1317,8039,3125,4037,5797,9746,3325],"./products/alquant/alvolaWithFutures/UseCase":[98971,1317,4037,3405],"./products/alquant/alvolaWithFutures/UseCase.vue":[98971,1317,4037,3405],"./products/alquant/convexus/InternalAnalysis":[57045,5262,209,1317,8039,3125,4037,5797,9746,5304,3101],"./products/alquant/convexus/InternalAnalysis.vue":[57045,5262,209,1317,8039,3125,4037,5797,9746,5304,3101],"./products/alquant/lifeSciencesToolsAndServices/InternalAnalysis":[30808,5262,209,1317,8039,3125,4037,5797,9746,4008],"./products/alquant/lifeSciencesToolsAndServices/InternalAnalysis.vue":[30808,5262,209,1317,8039,3125,4037,5797,9746,4008],"./products/alquant/lifeSciencesToolsAndServices/LiveAnalysis":[64018,5262,209,1317,8039,3125,4037,5797,9746,2934],"./products/alquant/lifeSciencesToolsAndServices/LiveAnalysis.vue":[64018,5262,209,1317,8039,3125,4037,5797,9746,2934],"./products/alquant/proTech/InternalAnalysis":[56101,5262,209,1317,8039,3125,4037,5797,9746,5304,285],"./products/alquant/proTech/InternalAnalysis.vue":[56101,5262,209,1317,8039,3125,4037,5797,9746,5304,285],"./products/alquant/quantCore/Analysis":[19883,5262,209,1317,8039,3125,4037,5797,9746,5304,2807],"./products/alquant/quantCore/Analysis.vue":[19883,5262,209,1317,8039,3125,4037,5797,9746,5304,2807],"./products/alquant/ynnovation/InternalAnalysis":[39685,5262,209,1317,8039,3125,4037,5797,9746,5304,7309],"./products/alquant/ynnovation/InternalAnalysis.vue":[39685,5262,209,1317,8039,3125,4037,5797,9746,5304,7309],"./products/falgom/taroDiversified/UseCase":[47876,1317,4037,3060],"./products/falgom/taroDiversified/UseCase.vue":[47876,1317,4037,3060],"./settings/ChangePassword":[17979,7979],"./settings/ChangePassword.vue":[17979,7979],"./settings/DeleteAccount":[44798,4798],"./settings/DeleteAccount.vue":[44798,4798],"./settings/EditProfile":[90520,520],"./settings/EditProfile.vue":[90520,520],"./settings/Overview":[26719,6719],"./settings/Overview.vue":[26719,6719],"./settings/Preferences":[40827,827],"./settings/Preferences.vue":[40827,827],"./settings/Settings":[70207,207],"./settings/Settings.vue":[70207,207]};function r(e){if(!a.o(o,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=o[e],r=t[0];return Promise.all(t.slice(1).map(a.e)).then((function(){return a(r)}))}r.keys=function(){return Object.keys(o)},r.id=99555,e.exports=r},84334:function(e,t,a){"use strict";a.d(t,{T:function(){return i}});var o=a(70735),r=a(85471),n=a(8333),s=a.n(n);const i={primary:o.A["colors-primary"]},l={disableCustomizer:!0,disableThemeTour:!0,footerType:"static",hideScrollToTop:!1,mainLayoutType:"vertical",navbarColor:"#fff",navbarType:"sticky",routerTransition:"zoom-fade",rtl:!1,sidebarCollapsed:!1,theme:"light",userInfoLocalStorageKey:"userInfo"};r["default"].use(s(),{theme:{colors:i},rtl:l.rtl}),t.A=l},61130:function(e,t,a){"use strict";e.exports=a.p+"img/alquant.64c1151f.svg"},52110:function(e,t,a){"use strict";e.exports=a.p+"img/ppt.1b78d546.svg"},39909:function(e,t,a){"use strict";e.exports=a.p+"img/6t_inline.d0727d5d.svg"},47094:function(e,t,a){"use strict";e.exports=a.p+"img/alquant-colored.39d05bc0.svg"},97195:function(e,t,a){"use strict";e.exports=a.p+"img/alquant.81cee15a.svg"},71002:function(e,t,a){"use strict";e.exports=a.p+"img/bcj.a51f050d.svg"},92061:function(e,t,a){"use strict";e.exports=a.p+"img/cge-tech-care.4479db7c.svg"},61169:function(e,t,a){"use strict";e.exports=a.p+"img/chameleon.943a7cf3.svg"},2410:function(e,t,a){"use strict";e.exports=a.p+"img/cite-gestion.4479db7c.svg"},22405:function(e,t,a){"use strict";e.exports=a.p+"img/falgom.4bf31924.svg"},91022:function(e,t,a){"use strict";e.exports=a.p+"img/msm.6291155f.svg"},29031:function(e,t,a){"use strict";e.exports=a.p+"img/ppt.8c1c2290.svg"},91936:function(e,t,a){"use strict";e.exports=a.p+"img/ssi.833df082.svg"},91621:function(e,t,a){"use strict";e.exports=a.p+"img/uti-black.505e7ffc.svg"},36668:function(e,t,a){"use strict";e.exports=a.p+"img/user.78e328da.svg"},55738:function(e,t,a){"use strict";e.exports=a.p+"img/6t.a0418d38.png"},38971:function(e,t,a){"use strict";e.exports=a.p+"img/banca-credinvest.9888ca81.jpg"},14003:function(e,t,a){"use strict";e.exports=a.p+"img/bcf.273a3678.jpg"},60087:function(e,t,a){"use strict";e.exports=a.p+"img/bcj.bc3ae87f.jpg"},63568:function(e,t,a){"use strict";e.exports=a.p+"img/bi-capital.42e059d5.jpg"},34737:function(e,t,a){"use strict";e.exports=a.p+"img/bonhote.8feeb23c.jpg"},86112:function(e,t,a){"use strict";e.exports=a.p+"img/calmgard.84ec75ab.jpeg"},29072:function(e,t,a){"use strict";e.exports=a.p+"img/cge-tech-care.0a278752.jpg"},51996:function(e,t,a){"use strict";e.exports=a.p+"img/chameleon.66197bba.jpg"},80963:function(e,t,a){"use strict";e.exports=a.p+"img/cite-gestion.89de118b.png"},31663:function(e,t,a){"use strict";e.exports=a.p+"img/cronos.4d6fe247.jpeg"},18525:function(e,t,a){"use strict";e.exports=a.p+"img/demo.ef6d3df0.jpg"},63217:function(e){"use strict";e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVUAAADmCAYAAABlJRZBAAABX2lDQ1BJQ0MgUHJvZmlsZQAAKJF1kM8rgwEYxz+zadHCAXNw2MFB2sQ7xUFplkRLayiUw7t3M2o/Xu8m7eYg95WDgxxM8hdwcZCzg1IOpNz8Aas5sF7Pu2FDnnr6fvr2PE/fHmhyqbqedACpdM6ITE96lpZXPM4X7Lhpo4sWVcvqgXA4JCN86c8q32Oz9M5n3Tosva4eDx4kT2fdA+Olm7e/8z+qNRbPaqLv0oqmGzmwDQmHt3O6xTvCnYaEEt63OFHjM4ujNb6szixEgsK3wh3auhoTfhb2Rhv8RAOnklvaZwYrvSueXpwX7ZbuJcQUc3hEFUbZxMcwkuqfnZHqTpAMOnkMNkiwTk72A+LoJIkLz5BGYxCvsCLXFPzWr3//sO5lTmCsDPZC3YvKDy72oOeh7vUdQfsunF/rqqF+f9ZWdmTX/EqNXRPQ/GSapX5wFqBSMM23omlWinL/Ea7yH9o4ZTrtbnb/AAAAVmVYSWZNTQAqAAAACAABh2kABAAAAAEAAAAaAAAAAAADkoYABwAAABIAAABEoAIABAAAAAEAAAFVoAMABAAAAAEAAADmAAAAAEFTQ0lJAAAAU2NyZWVuc2hvdOHmBI0AAAHWaVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJYTVAgQ29yZSA2LjAuMCI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjIzMDwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgICAgIDxleGlmOlBpeGVsWERpbWVuc2lvbj4zNDE8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpVc2VyQ29tbWVudD5TY3JlZW5zaG90PC9leGlmOlVzZXJDb21tZW50PgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KrzfwjQAACLJJREFUeAHt2bFKKwEURdEZUdD//1ErUSTmGYtXnWqLVVaqcOEMZAkbo+flcrke36/r9Xqc53l760WAAAECUeAh7swIECBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCD9+v4/39/Xh7eztu770IECBAoAl8fn4ej7fp09PT8fLy8vOU6/XanmZFgACBOxe4XC7H+fX19VPR8zzvnMPHJ0CAwO8FHj8+Pn6e8vz8fLy+vv7/jfX3j/YEAgQI3JfA7U+p5/fXfd/37+vn7tMSIPCHAv4z9Ye4Hk2AwP0J/APViCh37bFT3wAAAABJRU5ErkJggg=="},40036:function(e,t,a){"use strict";e.exports=a.p+"img/falgom.8f1faad2.jpg"},39971:function(e){"use strict";e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVUAAADmCAYAAABlJRZBAAABX2lDQ1BJQ0MgUHJvZmlsZQAAKJF1kM8rgwEYxz+zadHCAXNw2MFB2sQ7xUFplkRLayiUw7t3M2o/Xu8m7eYg95WDgxxM8hdwcZCzg1IOpNz8Aas5sF7Pu2FDnnr6fvr2PE/fHmhyqbqedACpdM6ITE96lpZXPM4X7Lhpo4sWVcvqgXA4JCN86c8q32Oz9M5n3Tosva4eDx4kT2fdA+Olm7e/8z+qNRbPaqLv0oqmGzmwDQmHt3O6xTvCnYaEEt63OFHjM4ujNb6szixEgsK3wh3auhoTfhb2Rhv8RAOnklvaZwYrvSueXpwX7ZbuJcQUc3hEFUbZxMcwkuqfnZHqTpAMOnkMNkiwTk72A+LoJIkLz5BGYxCvsCLXFPzWr3//sO5lTmCsDPZC3YvKDy72oOeh7vUdQfsunF/rqqF+f9ZWdmTX/EqNXRPQ/GSapX5wFqBSMM23omlWinL/Ea7yH9o4ZTrtbnb/AAAAVmVYSWZNTQAqAAAACAABh2kABAAAAAEAAAAaAAAAAAADkoYABwAAABIAAABEoAIABAAAAAEAAAFVoAMABAAAAAEAAADmAAAAAEFTQ0lJAAAAU2NyZWVuc2hvdOHmBI0AAAHWaVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJYTVAgQ29yZSA2LjAuMCI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjIzMDwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgICAgIDxleGlmOlBpeGVsWERpbWVuc2lvbj4zNDE8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpVc2VyQ29tbWVudD5TY3JlZW5zaG90PC9leGlmOlVzZXJDb21tZW50PgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KrzfwjQAACLJJREFUeAHt2bFKKwEURdEZUdD//1ErUSTmGYtXnWqLVVaqcOEMZAkbo+flcrke36/r9Xqc53l760WAAAECUeAh7swIECBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCojpQnAgQIFAFRLXK2REgQGAIiOpAcSJAgEAVENUqZ0eAAIEhIKoDxYkAAQJVQFSrnB0BAgSGgKgOFCcCBAhUAVGtcnYECBAYAqI6UJwIECBQBUS1ytkRIEBgCIjqQHEiQIBAFRDVKmdHgACBISCqA8WJAAECVUBUq5wdAQIEhoCoDhQnAgQIVAFRrXJ2BAgQGAKiOlCcCBAgUAVEtcrZESBAYAiI6kBxIkCAQBUQ1SpnR4AAgSEgqgPFiQABAlVAVKucHQECBIaAqA4UJwIECFQBUa1ydgQIEBgCD9+v4/39/Xh7eztu770IECBAoAl8fn4ej7fp09PT8fLy8vOU6/XanmZFgACBOxe4XC7H+fX19VPR8zzvnMPHJ0CAwO8FHj8+Pn6e8vz8fLy+vv7/jfX3j/YEAgQI3JfA7U+p5/fXfd/37+vn7tMSIPCHAv4z9Ye4Hk2AwP0J/APViCh37bFT3wAAAABJRU5ErkJggg=="},31347:function(e,t,a){"use strict";e.exports=a.p+"img/forum-capital.28544982.jpeg"},22753:function(e,t,a){"use strict";e.exports=a.p+"img/lakefield.9e1ca20f.png"},93647:function(e,t,a){"use strict";e.exports=a.p+"img/mirante.f49f4c98.jpeg"},84579:function(e,t,a){"use strict";e.exports=a.p+"img/msm.4d809250.png"},67206:function(e,t,a){"use strict";e.exports=a.p+"img/one-swiss-bank.1ed37bb1.jpeg"},34415:function(e,t,a){"use strict";e.exports=a.p+"img/openfunds.6cebdd88.jpeg"},34565:function(e,t,a){"use strict";e.exports=a.p+"img/ssi.9d10141a.png"},67110:function(e,t,a){"use strict";e.exports=a.p+"img/uti.5be71e8b.jpg"},668:function(e,t,a){"use strict";e.exports=a.p+"img/banca-credinvest.e510b941.png"},43931:function(e,t,a){"use strict";e.exports=a.p+"img/bi-capital.519251db.png"},28967:function(e,t,a){"use strict";e.exports=a.p+"img/calmgard-black.896c7d02.webp"},54205:function(e,t,a){"use strict";e.exports=a.p+"img/calmgard.9d208848.webp"},56289:function(e){"use strict";e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATIAAABaCAYAAAA7FtpGAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAABEoSURBVHhe7Z0/ktzGFYcp+wCiqhw4clEZM5PlA5g6gaQTSAocWzwBqcjlSGTmKgciT2Apckj6AhadKZPk2FWUTyD/Pmz3+M3b7hkAg25gZt5X1YXd2R10o//8+r2HBvpOEARBEARBEARBEJzGO+kYXBH3f/OHuzo8UXowfHDnzg9K/1J6892///p6+CQIzogQsitHovapDojaveGDG75W+oajhO2n4ZMg2DAhZMFARdDghdJzCdqbm1+DYHuEkAU7ksv5uRKC5sHl/EyChhsaBJsihCy4hQSN2NnflLx1Bs+UvgiXM9gSIWRXTBKsn0pWVrLOvlL6aPhgH/7/43A3g60QQnZlJPH6o9IjJWJfWFhV9P9f6oC7WQJXkxhaEKxKCNmVIEEimI+AIWST4l3pu1hnJV7oPJ+ln4NgFULILhyJEJYXVlVeM/ZMwvM4/TyaELNgy/wyHYMLQ8Jz91fv/u5P+vEvSr8ePryxwv6cfp7Ef/77zzc6HxMfwuh5oL/d0/+w9iwIuhNCdoFIxLjb+HclG6g/OZ4loXotwcKyu3/zyR6I2Y8IXvo9CLrxi3QMLgSJGELzrVJ2JeHxqSJmwIWsxda+SvkHQVciRnZBJBF5pcTSiczi8SsjliUQuYfKM9aZBd0Ii+xCqIgYojI5sH8MiRTuY23ZBm5tbblGEDQhhOwCkIjlxatWxIC4WCvL6Aul2rmfqEylpwKCoAkhZJcBIuZjU7iUzV7JkwTykLVXel4zCJoQMbIzR5YPdyZ5LtKCyBCnGrXg9RSU//c61Kyv93uUIQjCIjtjjEvp4T1ivQTkZTqW4EmCIGhOc4tMg40FlMzYftZmoP3Q0v25dFS3T3UouXDdLKEkpm9vfrsFD6S/l34OTkR1TfiAVLKAGUeMp01awEkH/GJqbhq9VplPjuM2ETIVmsdZPlQqvTnBw0XQCC91QbyZtDupkrnjN5ZBhFPiFdE9LaCBJCC4dT7AT1k+Tj93QWXBta21NW/JWLxdK23GoPgg/TwbnXtvgtA5VwvBqCwIF5Yt9evbugTiwBMWxEhXF7VUl5T/UNlZ48iroWaXd1HXUoX+VInBhbszRsSACxziPHyXcwyfbhtmRAYSZeU5Rsr9SskH3FtS69hrPCZ0KM/fp2MPHqkNLmLph66Da0GoWa9HPxsjYkAfRITpkyxQrsUvm6J8HyhRdspyrOxc37f6/7GacYtFhMwUGgErVVy2umwqwXepfERhlQY4AYSNxuglxLX40xpWba09wbsTrTnrpR8q+10lJkdErFZ3fizVHgvLAtFV3LkGHSi/n9ixuGpl5jsYM7PE7GSTWRlnq8SrLuKFyYjLWKxofZcL/USJwvvOx/dxS7jopqgc3k1hWUGtcwDXStlxn0tWGGYyJnUTVF7qCsvX092tzKhM/rGoHSrT4q5Zoc0sJ7mYOvcqrqXypf5KS2mOjiXQ9xlH9MnSZMr3eVSNczVF5fAijICxpnFvLKc2tG9mAcpHjHdSOU9qIBWECvN3zSgAL+ybNJDTuUqCePLDzsdIFWoHxQe+0mvou4gK5fYzSZPYEFTqHZoK6CFUJspTGkAwuj7HUmgzBoudDBm0B18aWUPn7i5kypPBzPX4/s/CY169NHpg61y1PokI0hbNxEx5k6ddDnQ0T33Hx1gnP1Y327VMBfaDiUKzfmnyYNJ3EKv3lfzgx9W06r4pVG7uFGEF+Yqn3L5TLkUt7tTcej3Aj+m4FljRdrB8qfovWohbQ+VEeLyI7caS0iThcX3Sfpf68GsOlwYPyzLm6RJfTi/AR5klZKniSyKG8s6+88AFpwbwFhi+cytRWASVmzJbEaa8NQvlVGoDlDZYi0Mi2mMiYiDcmkzScesgLl7EGEsntWfqk7jYViS4iYC11gorQoQ6jl6D/ofyPb/5bYA44aQ+M9cio4OUKv6Y8o5C56FDWjEjr3PolH4g+dlpKUpCxiSwSP2fK7p+JhI7mXATahVXeyypfLY9lx5Lw/mU7Pk+nyoUM2Fp0lj8RGjDBEeZLGSpAmwlUEHEg5YeRLgKdEoukIRKb90qow6sAC/u2hyog5Nm7wVYO/+Md1O4i7l4OyyBysVg3cXiRJOxlMTMPxe7KcNAZWSMEw/MaZJnN8cisxUPBFVnu5M1aEwlGpXZKaelxbIFe7NQEv4l2eSg3ErbpHKci4vpx9JJi0IPofMywVqr5576ZqvQR+bddByFykg8MCdvoR1kkpClmc0OTIKK1gIJtmOZXC3qk1jye5ax+u6mXEyVB8vaxpMYS7Pusk6gR+jDTmgskO/iRU21yPzdBEzAYJ9Jvv2V0MTKOAKulM13ay4mY8kOchvsboKEkvqwMUQC/0v3V3t+ro/F7c3FbKqQ2dv+uH5hjd3mt+mYuQoL7YhIdBcy9c2tu5h+CU2vseQfJ1s69OGNG/pF8ydepgqZvehJPuw1kGYe22C4C4vGjnS+rdb7oVl3FTFPdWXdtS25mFb43yzdTw5gLSbwE+9J6DqYtLyYDcu1VPc8/8n6vqXFc7yQKXNvgk65tXot8EybHdC+01wyNRdl7WUh/g7YVlzMPSFLx+aktrD1sXhdKA8mi1LYiT7CGMHdfKuEuC1iqU2xyHxH7e4ubJnUIP5Wequ4R8kqW3yWm0hNyFa1INPA3fpdzN5PRTQfu0nMWL9Wa//svWRL7SRBm+paWkLIhBogv63ADw6eN21VR8UZXOWoiUkPao9Nrb77uNphyy7mxUK9KyFmD5Wo/9p4oN8iaLNvDJwiZLMyPHdU0QwC7vZwaxnx4i0U/jUpPPTacqD8Ix09a7pMNYtwK+71Vl3Mi0djgRgg6015lppUe7sMfWiWmE0RMq+mV9EJVKlPlX7OSR/xuhoe8EXEMId9pS++IW6Bmrne8yWGO1QvVRFTXawZH9uRynHLxVTZtzAhT1o4ugCrWe5qh2G9nBJWWsn1RFcmu/6jhYwCpB8zi97t2Cq6biyrMXEeZhiePmgtYnlQliydteJkvAOrxKGNSbqjervlYir51fW9sOOpm1GQhNsK2Sp3lIH2UELM/ONTHx2YHItMdS3tgF5r0KwBb+TwlgW/Ux+4LLxuhTRG8JaiJBK4vWvMtqXXrjDzbvGurXcxez1A7bECQqiil2Xor3X11QfqJ0wu/i7npB24pgqZrXyC3KUOfHGoohEt/+ZVOh5+P8+FdZ/Vkkh4KxkWuZ09liQCJfEs3X5fnUpbruFi+psgvcaSfyyp5+RbhXGkg+3Pk+pjqpB5K+Bq9i1URWfry9Ll8YsDlMSi1auDapT6AMHdzT71obIx8di6Q4h7u5jeWm2ev/oq12kFAteuNBmuxZ6+qLyjXe5JQpY6wJ57qcyuwioDXb+PlyFird+4WSWJhZ9Re7zVYKAwMDI+5rE5UltaS7qri6n8sQyt2NNurTcJ8S9UXDSGqfJzYyynOXXpPZvRRsJUiwy8FdDELOecSrwZFqsnpzXiPx4fL0PMWy61OEZJNHpZF6V8uCO1CXdlBGvfxfRjqdkOUDovE46ddFpYzfSHnGo3gJowWchSJ/VWSQsXK29IgLKTCB6vbganmdTHWOiA3WZzi8rj3SRoPrun6/WWX6ksm6VQd11dzNSfbf6MocVf667zlZY0tLCa7ficMx68K+kttCpzLDJgJrNWCQVYRMw4hxKVbiuCCtqMu6IOiJD7AbvavgIqDxbhrZiLytPSgvVuyiDwKovtF5sn1Z0dMEwA3dbjFfJfbCyBzjOcT8mer5XVvHcdM/qfje9OeuHCLCFTBgiLN8tzA8wePOm7VLqd6Tc5QFIH9JbpavEyQXvYjkR5Ji8sHIPaicFuZ0/ahjV0q1vMM/F9ubd17cMVeSzZOp6Mvo9H40WMAH8ro8DfiR29yUnqU1Y7JsXv5lpkDGQsgJKY8e4hgn2TZpR0IX6T1zxARpuYndlMvEx1NNSVkq2rxcuj89E+voOy5ddW2+goqeyrucTKnwmAtvNiNncsEVpgUi3tzuTDIouh6yDmZiczFrYevfGU/sf2KephUvxutpBBKrgfzFQccQaeaKcRqrOK/jbEcpR4XpELsZU+DMwtDxCVjTJuKV421JmSrTPKs8hdTJ2H9rFWHvmxEHiLC18noWvwLl5XUj/3bQd5LB3dp1N/RzhoH8aTv5vMWO2x74W39riBQtjllqemz2ovXJi8d8EiOyirMFQwhalVNJXnG4gLq7mhuGzd3EmVH+HBBM/Q4KNjCPo+g8AGiSn35G3flyR1EBvwP3nHdp2TOsoiTUejjVYZ/Ke2WQmdc7CCbn77Pzpv853GMypDNgRs23n8dfKdQ2MPYbCPZjWl0Pcy9BU7JkoT/qxnlU+yyDJ0ZiUeAqUAJSWloim0TSUR47sMuB4zx2KorKV4mR1k3VGZmBmttczMONsy03eZqHLHwwLDEltFxFqRrmfVu670+9R2WGc1YfZjqSZiTFy0UzcRg1R+tMCPYcppy+1BcCeLGCwiZBkVAjXlNR0UZoq7wf8yu2PFnGQ1rIh3sblrY/3+7qguqVfaIw9OxOzQTF8kiRgiyPUx0Zzd3cmx6Lr8pLQKKkd+oJrEmBhb3xgDtDdjibaa5KIthfIdRFRpTNmpb4yX2fHc5iazBkGeMbBSLFwcltzqneYaUDtgAfM4EYJEndPJjw4OI2LDg71jvhO0QW3BOCKVvBmsScbTKsJ1jKQD3gqjrIs8JtXN9w+2gzoVgWDWSlWFSf/DxMNdr2GG3+oACYIgqCIh446yt6KDIAiCIAiCIAiCIAiCIAiCIAiCIAiCIAiCIAiCIAiCIAiCIAiCIAiCIAiCIAiCIAiCIAiCIAiCIAiCIAiCIFiSeNW1uH/zLvTSRiEvv2u0GYrJs1keoHzybk68rnpvfwT9jfwpx2P9rfmOSOmNs7w+m52Cmm0UazH1zBb8ezv0mL/xrvtWu2/vUH553wTy5WdeH97lVeLKm30XPrn5bY8u196aRXdROmMYYHlzBJtKmzwsRc6zZR6Qr8VvggoMKP7W65XW7BVAfmwkS949yPX8qfL0O0jlvzUvi/Lm2tkzkzLkOh/KpTRsZq1jS+hn5OdTr3ZoSgjZPsyM75jUunP1hHfwr3091iLAMukNu673Eu0dyhOxwBIlb3ajek99i4RHlK0hyjZ5q74ZsO2a7eNsN3f2hJBdD+yWxGBZZQZWvtkiwIXFjcIq6ykqXD/5lSzT1uSwBRMlbvxu5yr9jLDhZrMXZWy1N5MQsushx4fWGMiACwUvldg4GFHB3erFcyVEFAHtlq8RcGJ0RYtYn3/N35SaxUovnRCyfT5Rx3tlUh58Zw+DRQeC/eyA3sOF8WS3knIgZlAKPrdkJ+aqg17WYI6BNr+ZMhL69c8m5ZtBZ00I2T4+IJo74aXAQM4uZrdrU15YQOSHS8kREaEcj3qWQ2KOmODKkf8TPrtCqAMmtJy2IrAnEUK2zyUH+xnIw61+pd6xog/TEdHCAiBli6i31cv1Uw/57mFr8rKKHnmNgRgdAf+czn7pBYSQXRnquFgkzMQMrB7LDhCsLFaISE6UA7q6l7p+LMHsYja3ypQfQkZ931VdFCdGrFIlrNOLWAqxBiFk10mehbNV1JIcWH+hQU1AOyfKgFszDOLhPzqhvBGWnoF1u8TiqdKu3vUzluH3SlipW7Hazo4QsitEAxkBwSrqQV4v9k06WtYK+gPi0mW5Q6rvXXxS6a0EjKD7W/2cl2Y80/9lK7UlEey/YOhgzNI5ntGDXnmSB2kPDRrcnHwns8mA1iDB8uDcLC8gLw9WEfm3DPgX61nl4XPEhb81D3grP671oRJHyoL1RRn4vUesKru4Pl1EsD8IgiAIgiAIgiAITuLOnf8BA3DRTpl4tNcAAAAASUVORK5CYII="},42526:function(e,t,a){"use strict";e.exports=a.p+"img/demo.51261a08.png"},65104:function(e,t,a){"use strict";e.exports=a.p+"img/equinox.e08009c0.png"},49810:function(e,t,a){"use strict";e.exports=a.p+"img/finanzlab.460b08ce.png"},56384:function(e,t,a){"use strict";e.exports=a.p+"img/forum-capital.3c237ed8.jpeg"},44664:function(e,t,a){"use strict";e.exports=a.p+"img/lakefield.751f528f.jpg"},41495:function(e,t,a){"use strict";e.exports=a.p+"img/mirante.2f6b4f06.png"},36758:function(e){"use strict";e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARwAAAFaCAYAAADM9eKRAAAACXBIWXMAAAsSAAALEgHS3X78AAATvElEQVR4nO3du3LbSBqG4bZ3g81WDly1kYcIGQ0VM7CUbWY53EjyFdi6AllXIOkKRF+BOdGGkgPG5kQMwalJJ+Bku9FsteaHtt3GoQF0/4TI96liWdaBAJvAxz6h8cwoysbTI2OMffxojDmQrwHoWcvji/x7n68Wa62tJw2cbDwdGWNOjDFvCBdgsB6CxxjzU75azFPuZJLAycbTM2PMKSEDPDk2fD4ZY2Ypaj5RA0eC5sIYM4r5vAC2YmaMuYwZPFECJxtPbbPpiqABdpINnvN8tdj0fXG9Akf6aG5pOgE7byO1nes+L7Rz4Ejz6UpGmwDsB9up/K5rbadT4GTjqa3VnHGAAXvJhs1xvlos2774VoGTjae2NnNnjJlwnAF7z9Z0Zm0K4S+hv0jYAPCcvHj56pfNb78G13SCAoewAVChVeg0Bg5hA6BBcOg8DyhJwgZAk1uZj1erNnBkNIqwARDiVubmVaoMHJlnw9A3gFC2++Vz3e+W9uFIStk//BtFDaCFf7x4+erZ5rdf78v+pKqGc8sMYgAdXWTjaWlXzHeBIx0/XBsFoI+rsr/9rkn14uWrf1O7AdDTqGyo/JsajnQUs8QEgBgu/Ofwm1Tf/QIAdDSSSsz3gUPtBkAC792ndGs4p5Q2gMgm7ojVQ+DIvBtGpgCk8FiZKWo4jddAAEBHj/lSBM4bShJAIqOiWVUEDs0pACk91HKey+13ASCl10ZqOAQOgNQem1Q/UtQAEjuwo+HPuW4KgJIRTSoAWkYhaxoDQAwEDgA9BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1BA4ANQQOADUEDgA1f6WoUWFtjLk3xvxsjFnaR75abMp+NRtPJ8aYkTHG/vvaGHOUqFDtPn0q+f7fjTEfFN7Iy4afn0o51LFl+iX9rj66UNxWo2fZePrHkHYIW2UDZWZP6ny1WHbdkWw8PTDGnMgJGDN87vPV4rhim1epQydfLZ7V/TwbT+8CXu9lvlp8jLtn1QZ2fl9Sw4GRoLkxxlxX1WLakOewwTXLxtMj+ZRNVet5kK8W5xJ0Z7yjw0UfDq7tB6H91I0RNr58tShqJcfSJEomXy3eGWPme/+ODhiBs7/syX9sawYpgsZng8cYcygBl9I76XPCABE4+8mekIcSAmpssNmAk1BIQsLzmNAZJgJn/yylZpO8VlMlXy1mCqHzVvqmMCB0Gu+X1mEjQ94nMtxtvz7wfmUpDzvUOw99bhs62Xhqv7xN8Q7kq8U6G09tTeeuZJ8HLRtP1UaxtBE4+2PTJmxajC5N5GFHh66y8TR4tEtCZ5Rqrogd2n+ioTOouTMx0aTaH29DQsAOLct8kpA5Jb4DOVnybDwNGp6WOSnJ+pJkPtF5qudHOwTOfrgO6SCW5lMeYc6MDZ7bbDwNbS69S9nfkrrPCOEInN23CZiSX4RN7KbHWUjo2P4WmXiYjIROYzkgLQJn9900NaWkHyVVP8eZXHbQ5Dr1qJI032Ypt4F6BM7uC5lod5u4U/WDdEJXci6HSEpmIxM6W0Lg7LbGYWrp3E16nZMI6c8puxI8hXMmBm4HgbPbfgp4dVpDsKOmkSsZUep1vVXIHBZmI28P83B2W+2FjNLMaVq/JabTgObMvOcyE69tR7U0nSrZ0JE5OvkA5+h0mSZwIPOhBo3A2V3rgHk3b5Rf/ZGd59OwXz9H2I7tqDYtQmdQEwOr1vypIx8ed6o72gFNqt0V0lzQ6Ltpu81YS1ichUw+lGbcMddd6SBwdldITWEbVfDabUa+gv22RegwMVABgbOnZHW8bfi78jZvm4bkzZ+hMyd00iNw9te2Ohi3sd3PMpO6lsxG5rqrhAic/bWtPouky4xWsLW5u8DQuWZiYDqMUu0pWbphGy/+ly2V+IHUdA6bRu/s6JaUzVYWZA9pApYY/JC4IXB22g8BL26zheHgkOu6UhlJTadxXSAJncmWTuTBD293RZNqd4WcuKprGgduM/VExEmLE5rZyJEROLsrpFoeculDTOuAG+xpzA2aBC6bsdG4vc0+IXB2WEBfwFy58zjk4szXCvthWqzVw4LsERE4u6320gWtJSFE47ZkbpDm7GcbOo3XbUmt7FBnl3YbgbPbTgJe3aXSp/eNrOxXJ2R/Y7sKnI1MsyoCAme32SUhak9iqeWknmG7DLyB/7buVnDbVE6Ig8DZfe+bXqFM6091C96iD6TWFpbK8N2GTAxEPwTO7jsKbDKcJ+jPKe6FFdIcSXJDvBaCZyOjOwJnP1yFXKwp68fEumWLnW+TBQyDF6v0bbN2UyhC50ndqfMpIXD2w0FoDUIuYDzsMSnwoU/ILiIVeOO9ycDuNEnoJMSlDfvjxA4By8WJtaQJdCxhcCqjR001ENsP9JMEVhA5qT8P8B2YhF4CkUjMGeDbWGStEoGzX2zTahMaCtIcerhVrlzjNJKTsfj0tz/bdFk0S8LmbiBNqTL2dV5tY42cLkuMVsnG0z+i72APBM7+uZX1flt1EEutZx3j09cJm6F30AatjYxw9OHspzb3/Y7KuX/5UxkNOgu59QzCEDj7y55IXzWHgeXE/TrA27I0uQiZWoBmBM5+s2FjQydo2LwrO6kvG0/zgY1GtRW0IDvqETgwcuO53DazYtV4bIDZE9TWogbeOdzGFRMD+6HTGIUDWVLThsRS1sq5bzMCJSNZR7LExMkTbDo1OXCGy1mYq4NnQxs2wyAtZUKf/fd3bwd/dG4zy2Q51LmkhoMQRTNiUJPI8PTQhwNADYEDQM1zFogGoOSewAGgxgbOF4obQGp2igU1HAAaHuYtPd/S3RcB7Jc/A8dZdgAAUnnouimGxanlAEjJrgj5GDja95gGsD/mxVKtD4Ej9yWiWQUghccKjTvTOORG8wDQxqZoTvmBo3VTewD7Y+be+eIxcGS0itABENON+1z+xZuXFDWASGb+bZ6/CRxqOQAi2ZRVYMqWpziPdG9pAPvrxq/dWH/xv7H57df/vHj56r/GmH9ysADoYJmvFv8q+7PSBbjk/tPzsp8BQIPKO5XWrfj3jqYVgJbO6+5oURk4MnYe7abqAHbeTFpHlWrXNJak4kbuAJosZcCp1nedxr7Nb78uX7x89Yvc2AwAfDZsjt0ZxVUaA8cQOgCqBYeNCQ0cQ+gA+F6rsDFt70uVrxZ2FvJbRq+AvTdrGzbWsy6lJjet/+zcAhbA/jhvGo2KGjiFbDz9aIy54EAD9sLDqHXdPJsmvQLH/Bk6tpZzxY3ugZ21kWujPvZ9gb0Dp5CNp2dS2xntaqkDe8j21VyWXYjZRbTAKUjwvKd/B3iyNhI0pVd89xE9cArS1DqVYXRqPcDwzWXB83nb0adQyQLHJeFjg+e11HwONLYLoNZSHl9ShoxLJXB8MqzuPgDoeLjpZb5acPNLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBEz4ZemNl4elR8na8W99vdm+3KxtORMWYkO7HOV4t13x2ifKFpkIEjJ9aFMeas5Mf2pPiUrxazhuf4aoyZON96ka8Wm5rfz52TOas7mTs890d5PYXjNid3Np6eyd+PvB/ZbdpyuGkTPjHKt69sPP2j4SnWsi+XkYL1wGaqMeag+FbX5/Xez1m+WrwL/Ls7Y4wb8EHnn1dW9/lqcVzxeyfGmM/et+fGmHd1x6em50PYCZecXHnFyWDkDbuVk77OJ+9nJzXbPPJO5rrfHXlhM0/1ZtqTRF7nbUnYGDl5PtjykoMt5DljlW9qI9nHr7LPfZ05YWNqXn9bZ5H2r5dsPJ3IceJaDilszNACp6LQqvzU8PO59/83Nb972vB/l39iN+1HH7deuFXZSG2gVuTy1WJD4kqCvo/33t/6/+/1PoUGfgryvt55gbqUmvRgwsYMsIbjHwQPCW0LTh6XxcmVrxYf655IqstL51snUq0u4x8sE3kTy/hh5AdbFHKC+ft17ZTFWydk3gYeWNHKN7K1bNt9uM2dA69J2oqEgR9YB5FrJrc1x0wyTylsrL8OYB9c7gm2Lim0+2w8vfYKt84nr4ZwIn0ej+RgLHu+Uy+wVJtTJWFznq8W19735vaAy1eLpQkTu3xjWfsBl42n9n366uzLiYRjF1W1mff+8dCD3c+7bDw9jNHnFOKphY0ZYA3HLbh1WaHZ77V4Q0OaVVVNrbIqsmZzyj/pS0OlRdj4zxmjfJMpqaF2CkH5kDiq+PHEHaWLwO7j55qadDSyjc9PKWzMAAPHPcCO+lZ5m5pV8nVV23tUUkVWaU4JP0iuIhzIUcs3pZLaZJtgdflNMb+vq66/rotJyUhRVHIc3HnNxMGHjRlg4Pg1BtsuvuvZIVc3WuU3p/yD+rEqrtycMnJiuM8/kdGojz06UFOUbwwjeV3F48prTlk3bbdT8oGykSFltwZ3FqFD+tL7vw3z0M75toqwcY/FTYt+vK0aVOBIO94/6Y+kmlqcbG0/5euaVX5z6q13kvvh5Eo6iiMHj99nUXSe2rL43LY5kKh8YyjmBRWPDyXNvy59Lf5QeBFa/odQ35refcl7dSbzdWKblITN8RCawSEGNw9HRkv8zlHjHJTBc05MTbOq5NNvKb/rBtSBsy3N5tSDfLWYS3mUHUwn0knZts8gavkqsTWgrx3C0O8sLkLLf/29h8glEP2azoVCs3VdcXwM0uACRzotz22NWA4Qv5pYdMy1eSPLmlX+SfWp4nffbKE59cjOSM5Xi0w+Qcv6MYrgCToZE5WvhkmbofGSofBZUQuQ986tMUUZIpcapF8Tiz1cvvSOg0mb93/bhljDeWAPDpkyXpxsforftmh7lzWr/E+1ufn/9UTutk5Kqtzqk+LsJ2i+WhwaYw5LDmp70F21fL6Y5duXDdVn/kP2yw3EDy1OLP/99T9I/D6hKBMBpUz9D4a7iKGzKan1FsPjgzfYwCnIJ/JMTjR/hCHoU6msWeWPgHht4G+aVSWfrMmbU1XsMLgc1G+9X+n0CR2jfFOR/fKDobG5VzEUbk/6P4qHdEq7Yg6RH5cM6ftD2J1JDc3vb5wk7KiOZvCBU3AK2fW6xVPUTf33P/38/7vUmlN1pH/nm76IPidMhPJNxX/fQmpdXWclRxkirwgEv1nedxtLCTZ3G2dDD50hXrxZedL0PNHrQuSbJoq8mVUdcWrNKencrjtIf+/wnKnKN5WyK+TrXl/d3KomMYbIH0iN2Q+EqOQ4PfeeM9XoWBRDu3jzzBl5+e6Nz8bTD963voQ+d02IVNVYqgJKpTnlTO66K+vQlJ9/84nctORFyvJNwVlGw9V0kao/FH5fcp2W+/Dfz2jNyIpAiEqanf6QvMboWCeDuZZKCqioDp7I8LU9GH6W7/1QcjC0nZsxlzkerqoay6ys70ajFuCETVG7sR24F7L/Ra3m1B+FaXhOjfLtaiJrxfj82th9wKUcfufvu4a1jfwakf37aDUEGwjZeGpaXKXfdRt+ONtjxqRe16itIdVwyjrUTpzJYP7JcN1hslNZraW0xlLS0WwUm1NlZTGSsLwoWYxrUzIHJOQ5Y5dvVwcSLv7DtWmqLZQMhc+bXkOqIXJvG7PU4a00JN/bYAJHroQuGykpcy1zSdpuw29WNdVY/IBSaU7JkPWhs1xEnXXITFON8k2oeI1tazehl0MkGSJ3ychi0uOnYhsxh+R7G9TyFEXPu3Rsnsqn3eMavnKy3LS8Qtp341zS0HRAzp3fXfZoTq29Ez3oeeynliwXcSb74X7q30sgBjfzlMo3VEjw2X36EtIscObnFM+7CV3G1b5eWQ7jsXZkmyg1Id7p/XT6WtoOj7vbanpvyrZh+3QGtfIfAAAAAAAAAAAAAAC7xhjzP9/KtqTNtV7YAAAAAElFTkSuQmCC"},14639:function(e,t,a){"use strict";e.exports=a.p+"img/openfunds.802ef095.png"}},t={};function a(o){var r=t[o];if(void 0!==r)return r.exports;var n=t[o]={id:o,loaded:!1,exports:{}};return e[o].call(n.exports,n,n.exports,a),n.loaded=!0,n.exports}a.m=e,function(){var e=[];a.O=function(t,o,r,n){if(!o){var s=1/0;for(u=0;u<e.length;u++){o=e[u][0],r=e[u][1],n=e[u][2];for(var i=!0,l=0;l<o.length;l++)(!1&n||s>=n)&&Object.keys(a.O).every((function(e){return a.O[e](o[l])}))?o.splice(l--,1):(i=!1,n<s&&(s=n));if(i){e.splice(u--,1);var d=r();void 0!==d&&(t=d)}}return t}n=n||0;for(var u=e.length;u>0&&e[u-1][2]>n;u--)e[u]=e[u-1];e[u]=[o,r,n]}}(),function(){a.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return a.d(t,{a:t}),t}}(),function(){a.d=function(e,t){for(var o in t)a.o(t,o)&&!a.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})}}(),function(){a.f={},a.e=function(e){return Promise.all(Object.keys(a.f).reduce((function(t,o){return a.f[o](e,t),t}),[]))}}(),function(){a.u=function(e){return"js/"+e+"."+{10:"acbba509",63:"d9146229",207:"6bdab115",209:"9cea27ec",216:"2229dad0",218:"084c0b1b",285:"77303e52",424:"c34f433b",520:"008635f8",548:"620054a1",554:"84cff4b2",775:"e9a2686d",825:"f255e2fa",827:"4c9eb16e",833:"454fb7c6",975:"5f6c3e37",1173:"2e62d3da",1317:"f1b9b3ae",1397:"533fd1e8",1534:"1ec2c025",1582:"2507e546",1605:"7bd0bac1",1667:"96d9b046",1834:"6c498666",1889:"b45f5928",2025:"1b39111c",2042:"fbfd884c",2277:"58ca3cc4",2417:"89bfabb8",2570:"3201a357",2587:"917d18fa",2615:"4e8c3faf",2731:"a1360486",2807:"e47a69de",2841:"d934995b",2934:"2e8ec857",3060:"d0050c91",3101:"ffba0134",3125:"edff8fd3",3325:"39d4b663",3405:"367fac6c",3463:"9b689a4e",3485:"4bd83fa0",3515:"860954c9",3627:"d2b445e3",4008:"8af063f6",4037:"347bfef8",4048:"7fb7725f",4106:"afc4bb92",4154:"ee66a33a",4607:"4f8b0e10",4687:"8a2e9a4c",4736:"86025a00",4798:"f22b3a2e",4965:"88968734",5154:"9e2de71b",5261:"aef25bf1",5262:"f25d00e8",5304:"9994da09",5457:"a5be9b8f",5725:"7169e1c4",5797:"c1e9349d",5872:"52bda27b",6023:"c30eb07a",6128:"4b266408",6274:"099c8739",6719:"59c528f9",7068:"3671c21a",7074:"59d554b0",7138:"3984fe0a",7197:"dc989c86",7309:"31721eb4",7493:"0620c299",7645:"7f848b5e",7652:"74c2756f",7690:"932915d4",7789:"47507ffb",7818:"0f4bb294",7979:"89acf4bd",8017:"c962ce4e",8039:"6abc4084",8271:"db580272",8419:"b6cc3741",8543:"ac5ed8c3",8604:"17719aeb",8683:"0ca5daa4",8783:"19259d13",8843:"404f37aa",9044:"bc065128",9186:"ec096df3",9216:"39fe9db6",9321:"52426b99",9325:"2869b0db",9432:"9332516a",9601:"e72d4b06",9633:"efdc0efb",9653:"27dbba2f",9683:"3557a4a9",9746:"b9c1e9da"}[e]+".js"}}(),function(){a.miniCssF=function(e){return"css/"+e+"."+{63:"401718f8",207:"c86f9140",216:"cac052a0",285:"f439183c",825:"1d7b9c0c",975:"50b01dc7",1173:"90c7b2e8",1397:"9949cf7a",1534:"78afd3c9",1889:"bbcb344e",2025:"824bd95f",2277:"151d8305",2570:"b28ad28d",2587:"7f7c5dd9",2615:"0c72e1f5",2807:"a193504e",2934:"1d7b9c0c",3060:"824bd95f",3101:"8ece6580",3325:"2ca71fa8",3405:"824bd95f",3485:"5197a824",3627:"8da15d30",4008:"1d7b9c0c",4048:"c18a6d62",4106:"e2832f86",4736:"eaa39d57",5261:"a193504e",6274:"4fe61a2c",7309:"a193504e",8419:"2026f636",8543:"9b5ee17b",8604:"73225713",8683:"d9196b93",8843:"ff5841f8",9044:"96482b46",9216:"5745b8c2",9321:"f439183c",9432:"b77720da",9601:"ebd57c98",9653:"e902e9b6",9683:"7a2cdf9d"}[e]+".css"}}(),function(){a.g=function(){if("object"===typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"===typeof window)return window}}()}(),function(){a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)}}(),function(){var e={},t="client:";a.l=function(o,r,n,s){if(e[o])e[o].push(r);else{var i,l;if(void 0!==n)for(var d=document.getElementsByTagName("script"),u=0;u<d.length;u++){var c=d[u];if(c.getAttribute("src")==o||c.getAttribute("data-webpack")==t+n){i=c;break}}i||(l=!0,i=document.createElement("script"),i.charset="utf-8",i.timeout=120,a.nc&&i.setAttribute("nonce",a.nc),i.setAttribute("data-webpack",t+n),i.src=o),e[o]=[r];var m=function(t,a){i.onerror=i.onload=null,clearTimeout(p);var r=e[o];if(delete e[o],i.parentNode&&i.parentNode.removeChild(i),r&&r.forEach((function(e){return e(a)})),t)return t(a)},p=setTimeout(m.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=m.bind(null,i.onerror),i.onload=m.bind(null,i.onload),l&&document.head.appendChild(i)}}}(),function(){a.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}}(),function(){a.nmd=function(e){return e.paths=[],e.children||(e.children=[]),e}}(),function(){a.p="/"}(),function(){if("undefined"!==typeof document){var e=function(e,t,o,r,n){var s=document.createElement("link");s.rel="stylesheet",s.type="text/css",a.nc&&(s.nonce=a.nc);var i=function(a){if(s.onerror=s.onload=null,"load"===a.type)r();else{var o=a&&a.type,i=a&&a.target&&a.target.href||t,l=new Error("Loading CSS chunk "+e+" failed.\n("+o+": "+i+")");l.name="ChunkLoadError",l.code="CSS_CHUNK_LOAD_FAILED",l.type=o,l.request=i,s.parentNode&&s.parentNode.removeChild(s),n(l)}};return s.onerror=s.onload=i,s.href=t,o?o.parentNode.insertBefore(s,o.nextSibling):document.head.appendChild(s),s},t=function(e,t){for(var a=document.getElementsByTagName("link"),o=0;o<a.length;o++){var r=a[o],n=r.getAttribute("data-href")||r.getAttribute("href");if("stylesheet"===r.rel&&(n===e||n===t))return r}var s=document.getElementsByTagName("style");for(o=0;o<s.length;o++){r=s[o],n=r.getAttribute("data-href");if(n===e||n===t)return r}},o=function(o){return new Promise((function(r,n){var s=a.miniCssF(o),i=a.p+s;if(t(s,i))return r();e(o,i,null,r,n)}))},r={3524:0};a.f.miniCss=function(e,t){var a={63:1,207:1,216:1,285:1,825:1,975:1,1173:1,1397:1,1534:1,1889:1,2025:1,2277:1,2570:1,2587:1,2615:1,2807:1,2934:1,3060:1,3101:1,3325:1,3405:1,3485:1,3627:1,4008:1,4048:1,4106:1,4736:1,5261:1,6274:1,7309:1,8419:1,8543:1,8604:1,8683:1,8843:1,9044:1,9216:1,9321:1,9432:1,9601:1,9653:1,9683:1};r[e]?t.push(r[e]):0!==r[e]&&a[e]&&t.push(r[e]=o(e).then((function(){r[e]=0}),(function(t){throw delete r[e],t})))}}}(),function(){var e={3524:0};a.f.j=function(t,o){var r=a.o(e,t)?e[t]:void 0;if(0!==r)if(r)o.push(r[2]);else if(9653!=t){var n=new Promise((function(a,o){r=e[t]=[a,o]}));o.push(r[2]=n);var s=a.p+a.u(t),i=new Error,l=function(o){if(a.o(e,t)&&(r=e[t],0!==r&&(e[t]=void 0),r)){var n=o&&("load"===o.type?"missing":o.type),s=o&&o.target&&o.target.src;i.message="Loading chunk "+t+" failed.\n("+n+": "+s+")",i.name="ChunkLoadError",i.type=n,i.request=s,r[1](i)}};a.l(s,l,"chunk-"+t,t)}else e[t]=0},a.O.j=function(t){return 0===e[t]};var t=function(t,o){var r,n,s=o[0],i=o[1],l=o[2],d=0;if(s.some((function(t){return 0!==e[t]}))){for(r in i)a.o(i,r)&&(a.m[r]=i[r]);if(l)var u=l(a)}for(t&&t(o);d<s.length;d++)n=s[d],a.o(e,n)&&e[n]&&e[n][0](),e[n]=0;return a.O(u)},o=self["webpackChunkclient"]=self["webpackChunkclient"]||[];o.forEach(t.bind(null,0)),o.push=t.bind(null,o.push.bind(o))}();var o=a.O(void 0,[504],(function(){return a(14760)}));o=a.O(o)})();
//# sourceMappingURL=app.16c20d80.js.map