#155 WIP Deps update
Merged 2 years ago by frantisekz. Opened 2 years ago by frantisekz.

file modified
+16 -16
@@ -3,30 +3,30 @@ 

    "version": "0.1.0",

    "private": true,

    "dependencies": {

-     "@testing-library/jest-dom": "^4.2.4",

-     "@testing-library/react": "^9.5.0",

-     "@testing-library/user-event": "^7.2.1",

+     "@testing-library/jest-dom": "^5.16.5",

+     "@testing-library/react": "^13.3.0",

+     "@testing-library/user-event": "^14.4.3",

      "bootstrap": "^4.6.0",

      "jquery": "^3.6.0",

-     "moment": "^2.29.1",

+     "moment": "^2.29.4",

      "pegjs": "^0.10.0",

      "popper.js": "^1.16.1",

      "query-string": "^7.0.1",

-     "ramda": "^0.27.1",

-     "react": "^16.13.1",

+     "ramda": "^0.28.0",

+     "react": "^18.2.0",

      "react-autosuggest": "^10.1.0",

-     "react-dom": "^16.13.1",

-     "react-redux": "^7.2.4",

-     "react-responsive": "^8.1.0",

-     "react-router": "^5.2.0",

-     "react-router-dom": "^5.2.0",

-     "react-scripts": "4.0.3",

-     "redux": "^4.0.5",

+     "react-dom": "^18.2.0",

+     "react-redux": "^8.0.2",

+     "react-responsive": "^9.0.0-beta.10",

+     "react-router": "^6.3.0",

+     "react-router-dom": "^6.3.0",

+     "react-scripts": "5.0.1",

+     "redux": "^4.2.0",

      "redux-logger": "^3.0.6",

-     "redux-thunk": "^2.3.0",

+     "redux-thunk": "^2.4.1",

      "universal-cookie": "^4.0.4",

-     "vis-data": "^6.6.1",

-     "vis-network": "^7.10.2"

+     "vis-data": "^7.1.4",

+     "vis-network": "^9.1.2"

    },

    "scripts": {

      "start": "react-scripts start",

file modified
+42 -43
@@ -1,6 +1,6 @@ 

  import React, { Component } from "react"

- import { Route, Switch, Redirect } from "react-router"

- import { BrowserRouter } from "react-router-dom"

+ import { Route, Routes, Navigate } from "react-router"

+ import { BrowserRouter, useParams } from "react-router-dom"

  import Cookies from "universal-cookie"

  import { connect } from "react-redux"

  
@@ -16,6 +16,11 @@ 

  

  const cookies = new Cookies()

  

+ const CompatRedirect = (props) => {

+   let { fasuser } = useParams();

+   return <Navigate to={`/dashboard?users=${fasuser}`} />

+ }

+ 

  class App extends Component {

    componentDidCatch(error, info) {

      console.log(error, info)
@@ -23,51 +28,45 @@ 

      this.props.dispatch(throwError({ error: error, reason: info.componentStack }))

    }

  

+   getDashboard() {

+     const query = QS.parse(window.location.search)

+     console.log(query)

+     const token = query.oidc_token

+     if(token !== undefined) {

+       console.log("received token: " + token)

+       this.props.dispatch(saveToken(token))

+       cookies.set("token", token, { path: "/", sameSite: 'lax' })

+       // navigate to drop oidc_token to not to have it in address bar

+       const redirect = window.location.pathname + '?' + QS.stringify(R.omit(['oidc_token'], query))

+       console.log("redirecting to: ", redirect)

+       return <Navigate to={redirect} />

+     }

+     return <Dashboard />

+   }

+ 

+   getCallback() {

+     const query = new URLSearchParams(window.location.search)

+     const token = query.get("oidc_token")

+     console.log("received token: " + token)

+     this.props.dispatch(saveToken(token))

+     cookies.set("token", token, { path: "/", sameSite: 'lax' })

+     return <Navigate to="/" />

+   }

+ 

    render() {

      return this.props.error === undefined ? (

        <BrowserRouter basename={window.env.SUBDIR}>

-         <Switch>

-           <Route path="/" exact>

-             <EntryForm />

-           </Route>

-           <Route path="/dashboard" render={(props)=> {

-             const query = QS.parse(window.location.search)

-             console.log(query)

-             const token = query.oidc_token

-             if(token !== undefined) {

-               console.log("received token: " + token)

-               this.props.dispatch(saveToken(token))

-               cookies.set("token", token, { path: "/", sameSite: 'lax' })

-               // redirect to drop oidc_token to not to have it in address bar

-               const redirect = window.location.pathname + '?' + QS.stringify(R.omit(['oidc_token'], query))

-               console.log("redirecting to: ", redirect)

-               return <Redirect to={redirect} />

-             }

-             return <Dashboard {...props} />

-           }}/>

- 

-           <Route path="/custom" render={(props)=> {

-             return <CustomDashboard {...props}/>

-           }}/>

- 

+         <Routes>

+           <Route path="/" exact element={<EntryForm />} />

+           <Route path="/dashboard" element={<this.getDashboard />}/>

+           <Route path="/custom" element={<CustomDashboard />}/>

            <Route path="/version.json" onEnter={() => window.location.reload()} />

- 

-           <Route path="/helpmepls" exact>

-             <Help />

-           </Route>

- 

-           <Route path='/callback' render={(props) => {

-             const query = new URLSearchParams(props.location.search)

-             const token = query.get("oidc_token")

-             console.log("received token: " + token)

-             this.props.dispatch(saveToken(token))

-             cookies.set("token", token, { path: "/", sameSite: 'lax' })

-             return <Redirect to="/" />

-           }} />

-           <Route path='/orphan'><Redirect to="/dashboard?users=orphan" /></Route>

-           <Route path='/user/:fasuser' render={(props) => (<Redirect to={`/dashboard?users=${props.match.params.fasuser}`} />)} />

-           <Route path='/:fasuser' render={(props) => (<Redirect to={`/dashboard?users=${props.match.params.fasuser}`} />)} />

-         </Switch>

+           <Route path="/helpmepls" exact element={<Help />} />

+           <Route path='/callback' element={<this.getCallback />} />

+           <Route path='/orphan' element={<Navigate to="/dashboard?users=orphan" />} />

+           <Route path='/user/:fasuser' element={<CompatRedirect />} />

+           <Route path='/:fasuser' element={<CompatRedirect />} />

+         </Routes>

        </BrowserRouter>

      ) : (

        <Error error={this.props.error} />

@@ -1,5 +1,5 @@ 

  import React, { Component, createRef } from "react"

- import { Redirect } from "react-router"

+ import { Navigate } from "react-router"

  import Cookies from "universal-cookie"

  import Logo from "../Logo"

  import { StgAlert } from "../Alerts"
@@ -47,7 +47,7 @@ 

  

    render() {

      if (this.props.dashboard_query !== "") {

-       return <Redirect to={"/dashboard" + this.props.dashboard_query} />

+       return <Navigate to={"/dashboard" + this.props.dashboard_query} />

      }

  

      return (

@@ -1,173 +1,1 @@ 

- <?xml version="1.0" encoding="UTF-8" standalone="no"?>

- <svg

-    xmlns:dc="http://purl.org/dc/elements/1.1/"

-    xmlns:cc="http://creativecommons.org/ns#"

-    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"

-    xmlns:svg="http://www.w3.org/2000/svg"

-    xmlns="http://www.w3.org/2000/svg"

-    xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"

-    xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"

-    inkscape:export-ydpi="192"

-    inkscape:export-xdpi="192"

-    inkscape:export-filename="/home/rlerch/Source/fedora-bootstrap/logo.png"

-    sodipodi:docname="packager_dashboard_logo.svg"

-    inkscape:version="1.0 (4035a4fb49, 2020-05-01)"

-    version="1.1"

-    id="svg2"

-    viewBox="0 0 75.757393 10.583333"

-    height="10.583333mm"

-    width="75.757393mm">

-   <defs

-      id="defs4">

-     <clipPath

-        id="clipPath4574"

-        clipPathUnits="userSpaceOnUse">

-       <circle

-          transform="rotate(60)"

-          r="5.5046906"

-          cy="-16.921354"

-          cx="93.498596"

-          id="circle4576"

-          style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ce5c00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.75064;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />

-     </clipPath>

-   </defs>

-   <sodipodi:namedview

-      inkscape:document-rotation="0"

-      inkscape:window-maximized="1"

-      inkscape:window-y="27"

-      inkscape:window-x="0"

-      inkscape:window-height="1136"

-      inkscape:window-width="1920"

-      fit-margin-bottom="0"

-      fit-margin-right="0"

-      fit-margin-left="0"

-      fit-margin-top="0"

-      showgrid="false"

-      inkscape:current-layer="g4714"

-      inkscape:document-units="mm"

-      inkscape:cy="-64.354671"

-      inkscape:cx="78.148998"

-      inkscape:zoom="2.8284271"

-      inkscape:pageshadow="2"

-      inkscape:pageopacity="0.0"

-      borderopacity="1.0"

-      bordercolor="#666666"

-      pagecolor="#ffffff"

-      id="base" />

-   <metadata

-      id="metadata7">

-     <rdf:RDF>

-       <cc:Work

-          rdf:about="">

-         <dc:format>image/svg+xml</dc:format>

-         <dc:type

-            rdf:resource="http://purl.org/dc/dcmitype/StillImage" />

-         <dc:title></dc:title>

-       </cc:Work>

-     </rdf:RDF>

-   </metadata>

-   <g

-      transform="translate(-48.766898,-31.073162)"

-      id="layer1"

-      inkscape:groupmode="layer"

-      inkscape:label="Layer 1">

-     <g

-        id="g4714">

-       <g

-          id="g4595"

-          transform="matrix(0.45619308,0,0,0.45619308,25.303771,-9.145808)">

-         <g

-            id="g4624"

-            transform="matrix(0.92003825,0,0,0.92003825,3.8994993,8.9046582)">

-           <text

-              id="text4225"

-              y="40.575024"

-              x="59.199654"

-              style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#555753;fill-opacity:1;stroke:none;stroke-width:0.202942px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"

-              xml:space="preserve"

-              transform="matrix(1.4613695,0,0,1.4613695,-4.7135332,46.848388)"><tspan

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                y="40.575024"

-                x="59.199654"

-                id="tspan4227"

-                sodipodi:role="line">PACKAGER DASHBOARD</tspan></text>

-           <g

-              transform="matrix(0.13021808,0,0,0.13021808,82.276708,87.323483)"

-              id="g4488">

-             <g

-                transform="translate(-266.55899,-345.34488)"

-                id="layer1-0">

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 316.7736,397.581 c 0,0 0,0 -20.53889,0 0.3327,4.45245 3.92157,7.77609 8.70715,7.77609 3.38983,0 6.31456,-1.39616 8.64094,-3.65507 0.46553,-0.46679 0.99726,-0.59962 1.59519,-0.59962 0.79781,0 1.59561,0.39932 2.12692,1.06388 0.3327,0.46553 0.53216,0.99726 0.53216,1.52857 0,0.73118 -0.3327,1.52857 -0.93106,2.12734 -2.7919,2.99052 -7.51086,4.98503 -12.16403,4.98503 -8.44149,0 -15.22074,-6.77967 -15.22074,-15.22158 0,-8.44149 6.58022,-15.22074 15.02171,-15.22074 8.37529,0 14.62323,6.51317 14.62323,15.08749 0,1.26418 -1.12924,2.12861 -2.39258,2.12861 z m -12.23065,-11.76512 c -4.45329,0 -7.51085,2.92473 -8.17499,7.17731 10.03626,0 16.35083,0 16.35083,0 -0.59836,-4.05355 -3.78874,-7.17731 -8.17584,-7.17731 z"

-                  id="path11"

-                  style="fill:#3c6eb4" />

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 375.46344,410.80807 c -8.44106,0 -15.22074,-6.77968 -15.22074,-15.22159 0,-8.44149 6.77968,-15.22074 15.22074,-15.22074 8.44234,0 15.22159,6.77925 15.22159,15.22074 -4.2e-4,8.44149 -6.77968,15.22159 -15.22159,15.22159 z m 0,-24.65992 c -5.31688,0 -8.77377,4.25427 -8.77377,9.43833 0,5.18364 3.45689,9.43833 8.77377,9.43833 5.31731,0 8.77504,-4.25469 8.77504,-9.43833 -4.2e-4,-5.18406 -3.45773,-9.43833 -8.77504,-9.43833 z"

-                  id="path13"

-                  style="fill:#3c6eb4" />

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 412.66183,380.36574 c -4.45963,0 -7.40966,1.319 -10.01391,4.62956 l -0.24036,-1.53995 v 0 c -0.20198,-1.60743 -1.57326,-2.84926 -3.23382,-2.84926 -1.80139,0 -3.26206,1.459 -3.26206,3.26081 0,0.003 0,0.005 0,0.008 v 0 0.003 0 23.40712 c 0,1.79464 1.46194,3.25743 3.257,3.25743 1.79465,0 3.25744,-1.46279 3.25744,-3.25743 v -12.56209 c 0,-5.71621 4.98502,-8.57432 10.23613,-8.57432 1.59519,0 2.85726,-1.32953 2.85726,-2.92515 0,-1.59561 -1.26207,-2.85726 -2.85768,-2.85726 z"

-                  id="path15"

-                  style="fill:#3c6eb4" />

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 447.02614,395.58648 c 0.0666,-8.17541 -5.78326,-15.22074 -15.222,-15.22074 -8.44192,0 -15.28779,6.77925 -15.28779,15.22074 0,8.44191 6.64684,15.22159 14.68985,15.22159 4.01434,0 7.62682,-2.06621 9.23846,-4.22518 l 0.79359,2.01434 v 0 c 0.42589,1.13177 1.5176,1.93717 2.7978,1.93717 1.65001,0 2.98756,-1.33671 2.99009,-2.98545 v 0 -7.80687 0 z m -15.222,9.43833 c -5.31773,0 -8.77419,-4.25469 -8.77419,-9.43833 0,-5.18406 3.45604,-9.43833 8.77419,-9.43833 5.3173,0 8.77419,4.25427 8.77419,9.43833 0,5.18364 -3.45689,9.43833 -8.77419,9.43833 z"

-                  id="path17"

-                  style="fill:#3c6eb4" />

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 355.01479,368.3337 c 0,-1.7938 -1.46194,-3.18997 -3.25659,-3.18997 -1.79422,0 -3.25743,1.39659 -3.25743,3.18997 v 17.1499 c -1.66097,-3.05756 -5.25026,-5.11786 -9.50495,-5.11786 -8.64052,0 -14.42336,6.51318 -14.42336,15.22074 0,8.70757 5.98229,15.22159 14.42336,15.22159 3.76555,0 7.03057,-1.55429 8.98587,-4.25554 l 0.72317,1.83428 c 0.44782,1.25912 1.64917,2.16024 3.06051,2.16024 1.78621,0 3.24984,-1.45435 3.24984,-3.24815 0,-0.005 0,-0.009 0,-0.0139 v 0 -38.95128 h -4.2e-4 z m -15.22116,36.69111 c -5.31731,0 -8.70715,-4.25469 -8.70715,-9.43833 0,-5.18406 3.38984,-9.43833 8.70715,-9.43833 5.31773,0 8.70714,4.0544 8.70714,9.43833 0,5.38309 -3.38941,9.43833 -8.70714,9.43833 z"

-                  id="path19"

-                  style="fill:#3c6eb4" />

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 287.21553,365.34023 c -0.59414,-0.0877 -1.19966,-0.13198 -1.80097,-0.13198 -6.73118,0 -12.20746,5.4767 -12.20746,12.20788 v 3.8132 h -3.98903 c -1.46237,0 -2.65908,1.19671 -2.65908,2.65781 0,1.46321 1.19671,2.93738 2.65908,2.93738 h 3.98819 v 20.46004 c 0,1.79464 1.46236,3.25743 3.25658,3.25743 1.79507,0 3.25744,-1.46279 3.25744,-3.25743 v -20.46004 h 4.40986 c 1.46194,0 2.65823,-1.47417 2.65823,-2.93738 0,-1.46152 -1.19629,-2.65823 -2.65823,-2.65823 h -4.40733 v -3.8132 c 0,-3.13852 2.55323,-6.11469 5.69175,-6.11469 0.28294,0 0.56757,0.0211 0.84672,0.062 1.78031,0.26355 3.4358,-0.54269 3.70019,-2.32342 0.2627,-1.77904 -0.96606,-3.43538 -2.74594,-3.69935 z"

-                  id="path21"

-                  style="fill:#3c6eb4" />

-             </g>

-             <path

-                inkscape:connector-curvature="0"

-                d="m 181.98344,61.675273 h 2.81558 v 0.37898 h -1.18152 v 2.94935 h -0.45254 v -2.94935 h -1.18152 v -0.37898 m 3.26144,0 h 0.67101 l 0.84937,2.26496 0.85381,-2.26496 h 0.67102 v 3.32833 h -0.43917 v -2.9226 l -0.85828,2.28279 h -0.45255 l -0.85827,-2.28279 v 2.9226 h -0.43694 v -3.32833"

-                id="path2391"

-                style="fill:#294172;enable-background:new" />

-           </g>

-         </g>

-       </g>

-       <path

-          inkscape:export-ydpi="96"

-          inkscape:export-xdpi="96"

-          inkscape:export-filename="/home/lbrabec/Playground/landingpage/src/favicon.ico.png"

-          inkscape:connector-curvature="0"

-          id="path4688"

-          d="m 54.061011,31.074888 a 5.2916664,5.2916664 0 0 0 -5.291667,5.291667 5.2916664,5.2916664 0 0 0 5.291667,5.291666 5.2916664,5.2916664 0 0 0 5.291666,-5.291666 5.2916664,5.2916664 0 0 0 -5.291666,-5.291667 z m 0,0.748275 a 4.5433115,4.5433115 0 0 1 4.543392,4.543392 4.5433115,4.5433115 0 0 1 -4.543392,4.543391 4.5433115,4.5433115 0 0 1 -4.543392,-4.543391 4.5433115,4.5433115 0 0 1 4.543392,-4.543392 z"

-          style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3c6eb4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34766;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />

-       <rect

-          ry="0.028468428"

-          y="33.889786"

-          x="51.131569"

-          height="0.81115383"

-          width="5.8589997"

-          id="rect850"

-          style="opacity:1;fill:#3c6eb4;fill-opacity:1;stroke:#3c6eb4;stroke-width:0.350057;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />

-       <rect

-          style="opacity:1;fill:#3c6eb4;fill-opacity:1;stroke:#3c6eb4;stroke-width:0.389459;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"

-          id="rect856"

-          width="5.2831645"

-          height="3.999809"

-          x="51.419483"

-          y="35.288609"

-          ry="0.14037813" />

-       <rect

-          style="fill:#fdfefe;fill-opacity:1;stroke-width:0.4;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"

-          id="rect840"

-          width="1.9092923"

-          height="0.52159292"

-          x="53.106422"

-          y="35.546757"

-          ry="0.26079646" />

-     </g>

-   </g>

- </svg>

+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75.757 10.583" height="40" width="286.327"><g transform="translate(-48.767 -31.073)"><text y="40.575" x="59.2" style="font-style:normal;font-weight:400;line-height:0%;font-family:sans-serif;letter-spacing:0;word-spacing:0;fill:#555753;fill-opacity:1;stroke:none;stroke-width:.202942px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" xml:space="preserve" transform="matrix(.61336 0 0 .61336 25.104 14.58)"><tspan style="font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:.202942px" y="40.575" x="59.2">PACKAGER DASHBOARD</tspan></text><path d="M316.774 397.581h-20.54c.333 4.452 3.922 7.776 8.708 7.776 3.39 0 6.314-1.396 8.64-3.655.466-.467.998-.6 1.596-.6.798 0 1.596.4 2.127 1.064.333.466.532.998.532 1.529 0 .731-.333 1.528-.931 2.127-2.792 2.99-7.51 4.985-12.164 4.985-8.442 0-15.22-6.78-15.22-15.221 0-8.442 6.58-15.221 15.02-15.221 8.376 0 14.624 6.513 14.624 15.087 0 1.265-1.13 2.129-2.392 2.129zm-12.231-11.765c-4.453 0-7.51 2.925-8.175 7.177h16.35c-.598-4.053-3.788-7.177-8.175-7.177zM375.463 410.808c-8.44 0-15.22-6.78-15.22-15.222 0-8.441 6.78-15.22 15.22-15.22 8.443 0 15.222 6.779 15.222 15.22 0 8.442-6.78 15.222-15.222 15.222zm0-24.66c-5.316 0-8.773 4.254-8.773 9.438 0 5.184 3.457 9.439 8.773 9.439 5.318 0 8.775-4.255 8.775-9.439s-3.457-9.438-8.775-9.438zM412.662 380.366c-4.46 0-7.41 1.319-10.014 4.63l-.24-1.54a3.26 3.26 0 0 0-6.496.41v23.419a3.262 3.262 0 0 0 3.257 3.257 3.263 3.263 0 0 0 3.257-3.257v-12.562c0-5.716 4.985-8.574 10.236-8.574 1.595 0 2.858-1.33 2.858-2.926a2.835 2.835 0 0 0-2.858-2.857zM447.026 395.586c.067-8.175-5.783-15.22-15.222-15.22-8.442 0-15.288 6.779-15.288 15.22 0 8.442 6.647 15.222 14.69 15.222 4.015 0 7.627-2.066 9.239-4.225l.793 2.014a2.99 2.99 0 0 0 5.788-1.048v-7.807zm-15.222 9.439c-5.318 0-8.774-4.255-8.774-9.439s3.456-9.438 8.774-9.438c5.317 0 8.774 4.254 8.774 9.438 0 5.184-3.457 9.439-8.774 9.439zM355.015 368.334c0-1.794-1.462-3.19-3.257-3.19-1.794 0-3.257 1.396-3.257 3.19v17.15c-1.661-3.058-5.25-5.118-9.505-5.118-8.64 0-14.424 6.513-14.424 15.22 0 8.708 5.983 15.222 14.424 15.222 3.765 0 7.03-1.554 8.986-4.255l.723 1.834a3.25 3.25 0 0 0 6.31-1.088v-38.965zm-15.221 36.69c-5.318 0-8.708-4.254-8.708-9.438 0-5.184 3.39-9.438 8.708-9.438 5.317 0 8.707 4.055 8.707 9.438 0 5.384-3.39 9.439-8.707 9.439zM287.216 365.34a12.37 12.37 0 0 0-1.801-.132c-6.732 0-12.208 5.477-12.208 12.208v3.813h-3.989a2.667 2.667 0 0 0-2.659 2.658c0 1.463 1.197 2.938 2.66 2.938h3.987v20.46a3.263 3.263 0 0 0 3.257 3.257 3.263 3.263 0 0 0 3.257-3.257v-20.46h4.41c1.462 0 2.658-1.475 2.658-2.938a2.666 2.666 0 0 0-2.658-2.658h-4.407v-3.813c0-3.139 2.553-6.115 5.692-6.115.282 0 .567.021.846.062 1.78.264 3.436-.543 3.7-2.323a3.259 3.259 0 0 0-2.745-3.7z" style="fill:#3c6eb4" transform="matrix(.05465 0 0 .05465 47.047 12.693)"/><path d="M181.983 61.675h2.816v.38h-1.181v2.949h-.453v-2.95h-1.182v-.379m3.262 0h.67l.85 2.265.854-2.265h.671v3.329h-.44V62.08l-.857 2.283h-.453l-.858-2.283v2.923h-.437v-3.329" style="fill:#294172;enable-background:new" transform="matrix(.05465 0 0 .05465 61.615 31.567)"/><path d="M54.061 31.075a5.292 5.292 0 0 0-5.292 5.292 5.292 5.292 0 0 0 5.292 5.291 5.292 5.292 0 0 0 5.292-5.291 5.292 5.292 0 0 0-5.292-5.292zm0 .748a4.543 4.543 0 0 1 4.543 4.544 4.543 4.543 0 0 1-4.543 4.543 4.543 4.543 0 0 1-4.543-4.543 4.543 4.543 0 0 1 4.543-4.544z" style="color:#000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000;solid-opacity:1;fill:#3c6eb4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34766;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"/><rect ry=".028" y="33.89" x="51.132" height=".811" width="5.859" style="opacity:1;fill:#3c6eb4;fill-opacity:1;stroke:#3c6eb4;stroke-width:.350057;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"/><rect style="opacity:1;fill:#3c6eb4;fill-opacity:1;stroke:#3c6eb4;stroke-width:.389459;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" width="5.283" height="4" x="51.419" y="35.289" ry=".14"/><rect style="fill:#fdfefe;fill-opacity:1;stroke-width:.4;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" width="1.909" height=".522" x="53.106" y="35.547" ry=".261"/></g></svg> 

\ No newline at end of file

file modified
+1 -224
@@ -1,224 +1,1 @@ 

- <?xml version="1.0" encoding="UTF-8" standalone="no"?>

- <svg

-    xmlns:dc="http://purl.org/dc/elements/1.1/"

-    xmlns:cc="http://creativecommons.org/ns#"

-    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"

-    xmlns:svg="http://www.w3.org/2000/svg"

-    xmlns="http://www.w3.org/2000/svg"

-    xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"

-    xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"

-    inkscape:export-ydpi="192"

-    inkscape:export-xdpi="192"

-    inkscape:export-filename="/home/rlerch/Source/fedora-bootstrap/logo.png"

-    sodipodi:docname="logo.svg"

-    inkscape:version="1.0 (4035a4fb49, 2020-05-01)"

-    version="1.1"

-    id="svg2"

-    viewBox="0 0 75.757393 10.583333"

-    height="10.583333mm"

-    width="75.757393mm">

-   <defs

-      id="defs4">

-     <clipPath

-        id="clipPath4574"

-        clipPathUnits="userSpaceOnUse">

-       <circle

-          transform="rotate(60)"

-          r="5.5046906"

-          cy="-16.921354"

-          cx="93.498596"

-          id="circle4576"

-          style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ce5c00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.75064;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />

-     </clipPath>

-   </defs>

-   <sodipodi:namedview

-      inkscape:document-rotation="0"

-      inkscape:window-maximized="1"

-      inkscape:window-y="27"

-      inkscape:window-x="0"

-      inkscape:window-height="1136"

-      inkscape:window-width="1920"

-      fit-margin-bottom="0"

-      fit-margin-right="0"

-      fit-margin-left="0"

-      fit-margin-top="0"

-      showgrid="false"

-      inkscape:current-layer="g4714"

-      inkscape:document-units="mm"

-      inkscape:cy="42.191464"

-      inkscape:cx="20.201848"

-      inkscape:zoom="7.9999999"

-      inkscape:pageshadow="2"

-      inkscape:pageopacity="0.0"

-      borderopacity="1.0"

-      bordercolor="#666666"

-      pagecolor="#ffffff"

-      id="base" />

-   <metadata

-      id="metadata7">

-     <rdf:RDF>

-       <cc:Work

-          rdf:about="">

-         <dc:format>image/svg+xml</dc:format>

-         <dc:type

-            rdf:resource="http://purl.org/dc/dcmitype/StillImage" />

-         <dc:title />

-       </cc:Work>

-     </rdf:RDF>

-   </metadata>

-   <g

-      transform="translate(-48.766898,-31.073162)"

-      id="layer1"

-      inkscape:groupmode="layer"

-      inkscape:label="Layer 1">

-     <g

-        id="g4714">

-       <g

-          id="g4595"

-          transform="matrix(0.45619308,0,0,0.45619308,25.303771,-9.145808)">

-         <g

-            id="g4624"

-            transform="matrix(0.92003825,0,0,0.92003825,3.8994993,8.9046582)">

-           <g

-              aria-label="PACKAGER DASHBOARD"

-              transform="matrix(1.4613695,0,0,1.4613695,-4.7135332,46.848388)"

-              id="text4225"

-              style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#555753;fill-opacity:1;stroke:none;stroke-width:0.202942px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1">

-             <path

-                d="m 62.251898,34.892655 h -2.12683 v 5.682369 h 0.600708 v -1.794005 h 1.526122 c 1.444945,0 2.321653,-0.730591 2.321653,-1.940124 0,-1.21765 -0.876708,-1.94824 -2.321653,-1.94824 z m -0.01624,3.360715 h -1.509886 v -2.841185 h 1.509886 c 1.136474,0 1.737182,0.519531 1.737182,1.42871 0,0.892944 -0.600708,1.412475 -1.737182,1.412475 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path155" />

-             <path

-                d="m 69.833789,40.575024 h 0.633178 l -2.597655,-5.682369 h -0.59259 l -2.597654,5.682369 h 0.625061 l 0.681884,-1.518005 h 3.165891 z m -3.628599,-2.005065 1.363769,-3.052244 1.363768,3.052244 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path157" />

-             <path

-                d="m 73.795202,40.62373 c 0.83612,0 1.582945,-0.284119 2.086241,-0.83612 l -0.381531,-0.381531 c -0.462707,0.478943 -1.030944,0.681884 -1.680357,0.681884 -1.371886,0 -2.402831,-1.006591 -2.402831,-2.354124 0,-1.347533 1.030945,-2.354124 2.402831,-2.354124 0.649413,0 1.21765,0.202942 1.680357,0.673766 l 0.381531,-0.38153 c -0.503296,-0.552002 -1.250121,-0.828002 -2.078124,-0.828002 -1.712828,0 -2.979184,1.225768 -2.979184,2.88989 0,1.664122 1.266356,2.889891 2.971067,2.889891 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path159" />

-             <path

-                d="m 81.247223,40.575024 h 0.714355 l -2.630125,-3.109068 2.459654,-2.573301 h -0.690002 l -3.336362,3.433774 v -3.433774 h -0.600708 v 5.682369 h 0.600708 V 39.081372 L 78.92557,37.90431 Z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path161" />

-             <path

-                d="m 86.962048,40.575024 h 0.633178 l -2.597654,-5.682369 h -0.59259 l -2.597655,5.682369 h 0.625061 l 0.681884,-1.518005 h 3.165891 z m -3.628599,-2.005065 1.363769,-3.052244 1.363768,3.052244 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path163" />

-             <path

-                d="m 92.457699,39.649609 c -0.438354,0.316589 -0.94165,0.438354 -1.485533,0.438354 -1.39624,0 -2.427184,-1.006591 -2.427184,-2.354124 0,-1.355651 1.030944,-2.354124 2.435301,-2.354124 0.665649,0 1.233886,0.194824 1.712829,0.665649 l 0.373412,-0.381531 c -0.503295,-0.543884 -1.250121,-0.819884 -2.110594,-0.819884 -1.737181,0 -3.003538,1.225768 -3.003538,2.88989 0,1.664122 1.266357,2.889891 2.995421,2.889891 0.787414,0 1.550475,-0.24353 2.086241,-0.722473 v -2.167418 h -0.576355 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path165" />

-             <path

-                d="m 95.331344,40.055493 v -2.110594 h 2.938596 v -0.511414 h -2.938596 v -2.0213 h 3.295774 v -0.51953 h -3.896482 v 5.682369 h 4.018247 v -0.519531 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path167" />

-             <path

-                d="m 104.69913,40.575024 -1.38812,-1.948241 c 0.828,-0.267883 1.29882,-0.892944 1.29882,-1.785888 0,-1.21765 -0.87671,-1.94824 -2.32165,-1.94824 h -2.12683 v 5.682369 h 0.60071 v -1.802123 h 1.52612 c 0.16235,0 0.30847,-0.0081 0.45459,-0.02435 l 1.29883,1.826476 z m -2.42719,-2.313536 h -1.50988 v -2.849303 h 1.50988 c 1.13648,0 1.73719,0.519531 1.73719,1.42871 0,0.892944 -0.60071,1.420593 -1.73719,1.420593 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path169" />

-             <path

-                d="m 108.15724,40.575024 h 2.31354 c 1.81836,0 3.04412,-1.168945 3.04412,-2.841185 0,-1.67224 -1.22576,-2.841184 -3.04412,-2.841184 h -2.31354 z m 0.60071,-0.519531 v -4.643308 h 1.68036 c 1.50988,0 2.484,0.957886 2.484,2.321654 0,1.363769 -0.97412,2.321654 -2.484,2.321654 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path171" />

-             <path

-                d="m 119.02679,40.575024 h 0.63318 l -2.59766,-5.682369 h -0.59259 l -2.59765,5.682369 h 0.62506 l 0.68188,-1.518005 h 3.16589 z m -3.6286,-2.005065 1.36377,-3.052244 1.36377,3.052244 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path173" />

-             <path

-                d="m 122.16832,40.62373 c 1.45306,0 2.11871,-0.714355 2.11871,-1.550475 0,-2.070006 -3.49872,-1.128356 -3.49872,-2.686949 0,-0.568237 0.46271,-1.030944 1.50177,-1.030944 0.5033,0 1.07154,0.154236 1.5586,0.470825 l 0.20294,-0.478943 c -0.45459,-0.316589 -1.12024,-0.503295 -1.76154,-0.503295 -1.44494,0 -2.09436,0.722472 -2.09436,1.558592 0,2.102477 3.49872,1.144592 3.49872,2.703184 0,0.56012 -0.46271,1.006591 -1.52612,1.006591 -0.74683,0 -1.4693,-0.292236 -1.87518,-0.690001 l -0.23542,0.462707 c 0.42212,0.438354 1.25824,0.738708 2.1106,0.738708 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path175" />

-             <path

-                d="m 129.75022,34.892655 v 2.532713 h -3.55554 v -2.532713 h -0.60071 v 5.682369 h 0.60071 v -2.622008 h 3.55554 v 2.622008 h 0.59259 v -5.682369 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path177" />

-             <path

-                d="m 135.77353,37.644545 c 0.51953,-0.21106 0.86859,-0.641296 0.86859,-1.29071 0,-0.925414 -0.73059,-1.46118 -1.99695,-1.46118 h -2.45154 v 5.682369 h 2.61389 c 1.4206,0 2.13495,-0.552002 2.13495,-1.518005 0,-0.771178 -0.43835,-1.250121 -1.16894,-1.412474 z m -1.16895,-2.256713 c 0.90918,0 1.43683,0.34906 1.43683,1.030945 0,0.681884 -0.52765,1.030944 -1.43683,1.030944 h -1.81024 v -2.061889 z m 0.19483,4.692014 h -2.00507 v -2.134947 h 2.00507 c 0.99847,0 1.54235,0.324706 1.54235,1.063414 0,0.746826 -0.54388,1.071533 -1.54235,1.071533 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path179" />

-             <path

-                d="m 140.79837,40.62373 c 1.70471,0 2.97918,-1.225769 2.97918,-2.889891 0,-1.664122 -1.27447,-2.88989 -2.97918,-2.88989 -1.72095,0 -2.9873,1.233885 -2.9873,2.88989 0,1.656005 1.26635,2.889891 2.9873,2.889891 z m 0,-0.535767 c -1.37189,0 -2.39471,-0.998473 -2.39471,-2.354124 0,-1.355651 1.02282,-2.354124 2.39471,-2.354124 1.36377,0 2.37848,0.998473 2.37848,2.354124 0,1.355651 -1.01471,2.354124 -2.37848,2.354124 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path181" />

-             <path

-                d="m 149.28943,40.575024 h 0.63318 l -2.59765,-5.682369 h -0.59259 l -2.59766,5.682369 h 0.62506 l 0.68189,-1.518005 h 3.16589 z m -3.6286,-2.005065 1.36377,-3.052244 1.36377,3.052244 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path183" />

-             <path

-                d="m 155.40203,40.575024 -1.38812,-1.948241 c 0.82801,-0.267883 1.29883,-0.892944 1.29883,-1.785888 0,-1.21765 -0.87671,-1.94824 -2.32165,-1.94824 h -2.12683 v 5.682369 h 0.6007 v -1.802123 h 1.52613 c 0.16235,0 0.30847,-0.0081 0.45459,-0.02435 l 1.29882,1.826476 z m -2.42718,-2.313536 h -1.50989 v -2.849303 h 1.50989 c 1.13648,0 1.73718,0.519531 1.73718,1.42871 0,0.892944 -0.6007,1.420593 -1.73718,1.420593 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path185" />

-             <path

-                d="m 156.73333,40.575024 h 2.31354 c 1.81835,0 3.04412,-1.168945 3.04412,-2.841185 0,-1.67224 -1.22577,-2.841184 -3.04412,-2.841184 h -2.31354 z m 0.60071,-0.519531 v -4.643308 h 1.68035 c 1.50989,0 2.48401,0.957886 2.48401,2.321654 0,1.363769 -0.97412,2.321654 -2.48401,2.321654 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path187" />

-           </g>

-           <g

-              transform="matrix(0.13021808,0,0,0.13021808,82.276708,87.323483)"

-              id="g4488">

-             <g

-                transform="translate(-266.55899,-345.34488)"

-                id="layer1-0">

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 316.7736,397.581 c 0,0 0,0 -20.53889,0 0.3327,4.45245 3.92157,7.77609 8.70715,7.77609 3.38983,0 6.31456,-1.39616 8.64094,-3.65507 0.46553,-0.46679 0.99726,-0.59962 1.59519,-0.59962 0.79781,0 1.59561,0.39932 2.12692,1.06388 0.3327,0.46553 0.53216,0.99726 0.53216,1.52857 0,0.73118 -0.3327,1.52857 -0.93106,2.12734 -2.7919,2.99052 -7.51086,4.98503 -12.16403,4.98503 -8.44149,0 -15.22074,-6.77967 -15.22074,-15.22158 0,-8.44149 6.58022,-15.22074 15.02171,-15.22074 8.37529,0 14.62323,6.51317 14.62323,15.08749 0,1.26418 -1.12924,2.12861 -2.39258,2.12861 z m -12.23065,-11.76512 c -4.45329,0 -7.51085,2.92473 -8.17499,7.17731 10.03626,0 16.35083,0 16.35083,0 -0.59836,-4.05355 -3.78874,-7.17731 -8.17584,-7.17731 z"

-                  id="path11"

-                  style="fill:#3c6eb4" />

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 375.46344,410.80807 c -8.44106,0 -15.22074,-6.77968 -15.22074,-15.22159 0,-8.44149 6.77968,-15.22074 15.22074,-15.22074 8.44234,0 15.22159,6.77925 15.22159,15.22074 -4.2e-4,8.44149 -6.77968,15.22159 -15.22159,15.22159 z m 0,-24.65992 c -5.31688,0 -8.77377,4.25427 -8.77377,9.43833 0,5.18364 3.45689,9.43833 8.77377,9.43833 5.31731,0 8.77504,-4.25469 8.77504,-9.43833 -4.2e-4,-5.18406 -3.45773,-9.43833 -8.77504,-9.43833 z"

-                  id="path13"

-                  style="fill:#3c6eb4" />

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 412.66183,380.36574 c -4.45963,0 -7.40966,1.319 -10.01391,4.62956 l -0.24036,-1.53995 v 0 c -0.20198,-1.60743 -1.57326,-2.84926 -3.23382,-2.84926 -1.80139,0 -3.26206,1.459 -3.26206,3.26081 0,0.003 0,0.005 0,0.008 v 0 0.003 0 23.40712 c 0,1.79464 1.46194,3.25743 3.257,3.25743 1.79465,0 3.25744,-1.46279 3.25744,-3.25743 v -12.56209 c 0,-5.71621 4.98502,-8.57432 10.23613,-8.57432 1.59519,0 2.85726,-1.32953 2.85726,-2.92515 0,-1.59561 -1.26207,-2.85726 -2.85768,-2.85726 z"

-                  id="path15"

-                  style="fill:#3c6eb4" />

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 447.02614,395.58648 c 0.0666,-8.17541 -5.78326,-15.22074 -15.222,-15.22074 -8.44192,0 -15.28779,6.77925 -15.28779,15.22074 0,8.44191 6.64684,15.22159 14.68985,15.22159 4.01434,0 7.62682,-2.06621 9.23846,-4.22518 l 0.79359,2.01434 v 0 c 0.42589,1.13177 1.5176,1.93717 2.7978,1.93717 1.65001,0 2.98756,-1.33671 2.99009,-2.98545 v 0 -7.80687 0 z m -15.222,9.43833 c -5.31773,0 -8.77419,-4.25469 -8.77419,-9.43833 0,-5.18406 3.45604,-9.43833 8.77419,-9.43833 5.3173,0 8.77419,4.25427 8.77419,9.43833 0,5.18364 -3.45689,9.43833 -8.77419,9.43833 z"

-                  id="path17"

-                  style="fill:#3c6eb4" />

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 355.01479,368.3337 c 0,-1.7938 -1.46194,-3.18997 -3.25659,-3.18997 -1.79422,0 -3.25743,1.39659 -3.25743,3.18997 v 17.1499 c -1.66097,-3.05756 -5.25026,-5.11786 -9.50495,-5.11786 -8.64052,0 -14.42336,6.51318 -14.42336,15.22074 0,8.70757 5.98229,15.22159 14.42336,15.22159 3.76555,0 7.03057,-1.55429 8.98587,-4.25554 l 0.72317,1.83428 c 0.44782,1.25912 1.64917,2.16024 3.06051,2.16024 1.78621,0 3.24984,-1.45435 3.24984,-3.24815 0,-0.005 0,-0.009 0,-0.0139 v 0 -38.95128 h -4.2e-4 z m -15.22116,36.69111 c -5.31731,0 -8.70715,-4.25469 -8.70715,-9.43833 0,-5.18406 3.38984,-9.43833 8.70715,-9.43833 5.31773,0 8.70714,4.0544 8.70714,9.43833 0,5.38309 -3.38941,9.43833 -8.70714,9.43833 z"

-                  id="path19"

-                  style="fill:#3c6eb4" />

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 287.21553,365.34023 c -0.59414,-0.0877 -1.19966,-0.13198 -1.80097,-0.13198 -6.73118,0 -12.20746,5.4767 -12.20746,12.20788 v 3.8132 h -3.98903 c -1.46237,0 -2.65908,1.19671 -2.65908,2.65781 0,1.46321 1.19671,2.93738 2.65908,2.93738 h 3.98819 v 20.46004 c 0,1.79464 1.46236,3.25743 3.25658,3.25743 1.79507,0 3.25744,-1.46279 3.25744,-3.25743 v -20.46004 h 4.40986 c 1.46194,0 2.65823,-1.47417 2.65823,-2.93738 0,-1.46152 -1.19629,-2.65823 -2.65823,-2.65823 h -4.40733 v -3.8132 c 0,-3.13852 2.55323,-6.11469 5.69175,-6.11469 0.28294,0 0.56757,0.0211 0.84672,0.062 1.78031,0.26355 3.4358,-0.54269 3.70019,-2.32342 0.2627,-1.77904 -0.96606,-3.43538 -2.74594,-3.69935 z"

-                  id="path21"

-                  style="fill:#3c6eb4" />

-             </g>

-             <path

-                inkscape:connector-curvature="0"

-                d="m 181.98344,61.675273 h 2.81558 v 0.37898 h -1.18152 v 2.94935 h -0.45254 v -2.94935 h -1.18152 v -0.37898 m 3.26144,0 h 0.67101 l 0.84937,2.26496 0.85381,-2.26496 h 0.67102 v 3.32833 h -0.43917 v -2.9226 l -0.85828,2.28279 h -0.45255 l -0.85827,-2.28279 v 2.9226 h -0.43694 v -3.32833"

-                id="path2391"

-                style="fill:#294172;enable-background:new" />

-           </g>

-         </g>

-       </g>

-       <path

-          inkscape:export-ydpi="96"

-          inkscape:export-xdpi="96"

-          inkscape:export-filename="/home/lbrabec/Playground/landingpage/src/favicon.ico.png"

-          inkscape:connector-curvature="0"

-          id="path4688"

-          d="m 54.061011,31.074888 a 5.2916664,5.2916664 0 0 0 -5.291667,5.291667 5.2916664,5.2916664 0 0 0 5.291667,5.291666 5.2916664,5.2916664 0 0 0 5.291666,-5.291666 5.2916664,5.2916664 0 0 0 -5.291666,-5.291667 z m 0,0.748275 a 4.5433115,4.5433115 0 0 1 4.543392,4.543392 4.5433115,4.5433115 0 0 1 -4.543392,4.543391 4.5433115,4.5433115 0 0 1 -4.543392,-4.543391 4.5433115,4.5433115 0 0 1 4.543392,-4.543392 z"

-          style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3c6eb4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34766;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />

-       <rect

-          ry="0.028468428"

-          y="33.889786"

-          x="51.131569"

-          height="0.81115383"

-          width="5.8589997"

-          id="rect850"

-          style="opacity:1;fill:#3c6eb4;fill-opacity:1;stroke:#3c6eb4;stroke-width:0.350057;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />

-       <path

-          transform="matrix(0.26458333,0,0,0.26458333,48.766898,31.073162)"

-          d="M 10.556641 15.931641 C 10.262714 15.931641 10.025391 16.168957 10.025391 16.462891 L 10.025391 30.519531 C 10.025391 30.813461 10.262707 31.048828 10.556641 31.048828 L 29.462891 31.048828 C 29.756817 31.048828 29.994141 30.813465 29.994141 30.519531 L 29.994141 16.462891 C 29.994141 16.168964 29.756824 15.931641 29.462891 15.931641 L 10.556641 15.931641 z M 16.974609 16.908203 L 23.044922 16.908203 C 23.951585 16.908203 24.681641 17.638259 24.681641 18.544922 C 24.681641 19.451585 23.951585 20.181641 23.044922 20.181641 L 16.974609 20.181641 C 16.067946 20.181641 15.337891 19.451585 15.337891 18.544922 C 15.337891 17.638259 16.067946 16.908203 16.974609 16.908203 z "

-          style="opacity:1;fill:#3c6eb4;fill-opacity:1;stroke:#3c6eb4;stroke-width:1.47024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"

-          id="rect856" />

-     </g>

-   </g>

- </svg>

+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75.757 10.583" height="40" width="286.327"><g transform="translate(-48.767 -31.073)"><g aria-label="PACKAGER DASHBOARD" style="font-style:normal;font-weight:400;line-height:0%;font-family:sans-serif;letter-spacing:0;word-spacing:0;fill:#555753;fill-opacity:1;stroke:none;stroke-width:.202942px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"><path d="M62.252 34.893h-2.127v5.682h.6v-1.794h1.527c1.445 0 2.322-.73 2.322-1.94 0-1.218-.877-1.948-2.322-1.948zm-.016 3.36h-1.51v-2.84h1.51c1.136 0 1.737.519 1.737 1.428 0 .893-.6 1.412-1.737 1.412zM69.834 40.575h.633l-2.598-5.682h-.592l-2.598 5.682h.625l.682-1.518h3.166zm-3.629-2.005 1.364-3.052 1.364 3.052zM73.795 40.624c.836 0 1.583-.284 2.086-.836l-.381-.382c-.463.479-1.031.682-1.68.682-1.372 0-2.403-1.007-2.403-2.354 0-1.348 1.03-2.354 2.403-2.354.649 0 1.217.203 1.68.673l.381-.381c-.503-.552-1.25-.828-2.078-.828-1.713 0-2.979 1.226-2.979 2.89 0 1.664 1.266 2.89 2.971 2.89zM81.247 40.575h.715l-2.63-3.109 2.46-2.573h-.69l-3.337 3.433v-3.433h-.601v5.682h.6v-1.494l1.162-1.177Z" style="font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:.202942px" transform="matrix(.61336 0 0 .61336 25.104 14.58)"/><path d="M86.962 40.575h.633l-2.597-5.682h-.593l-2.598 5.682h.625l.682-1.518h3.166zm-3.629-2.005 1.364-3.052 1.364 3.052zM92.458 39.65c-.439.316-.942.438-1.486.438-1.396 0-2.427-1.007-2.427-2.354 0-1.356 1.03-2.354 2.435-2.354.666 0 1.234.195 1.713.665l.374-.381c-.504-.544-1.25-.82-2.111-.82-1.737 0-3.004 1.226-3.004 2.89 0 1.664 1.267 2.89 2.996 2.89.787 0 1.55-.244 2.086-.723v-2.167h-.576zM95.331 40.055v-2.11h2.939v-.512H95.33v-2.02h3.296v-.52h-3.896v5.682h4.018v-.52zM104.7 40.575l-1.389-1.948c.828-.268 1.299-.893 1.299-1.786 0-1.218-.877-1.948-2.322-1.948h-2.127v5.682h.601v-1.802h1.526c.163 0 .309-.008.455-.024l1.299 1.826zm-2.428-2.314h-1.51v-2.849h1.51c1.136 0 1.737.52 1.737 1.429 0 .893-.6 1.42-1.737 1.42zM108.157 40.575h2.314c1.818 0 3.044-1.169 3.044-2.841 0-1.672-1.226-2.841-3.044-2.841h-2.314zm.601-.52v-4.643h1.68c1.51 0 2.484.958 2.484 2.322s-.974 2.321-2.484 2.321zM119.027 40.575h.633l-2.598-5.682h-.592l-2.598 5.682h.625l.682-1.518h3.166zm-3.629-2.005 1.364-3.052 1.364 3.052zM122.168 40.624c1.453 0 2.119-.715 2.119-1.55 0-2.07-3.499-1.13-3.499-2.688 0-.568.463-1.03 1.502-1.03.503 0 1.072.154 1.559.47l.203-.479c-.455-.316-1.12-.503-1.762-.503-1.445 0-2.094.722-2.094 1.559 0 2.102 3.498 1.144 3.498 2.703 0 .56-.462 1.006-1.526 1.006-.747 0-1.469-.292-1.875-.69l-.235.463c.422.438 1.258.739 2.11.739zM129.75 34.893v2.532h-3.555v-2.532h-.601v5.682h.6v-2.622h3.556v2.622h.593v-5.682zM135.774 37.645c.52-.212.868-.642.868-1.291 0-.926-.73-1.461-1.997-1.461h-2.451v5.682h2.614c1.42 0 2.134-.552 2.134-1.518 0-.771-.438-1.25-1.168-1.412zm-1.17-2.257c.91 0 1.437.349 1.437 1.03 0 .683-.527 1.032-1.436 1.032h-1.81v-2.062zm.195 4.692h-2.005v-2.135h2.005c.999 0 1.543.325 1.543 1.063 0 .747-.544 1.072-1.543 1.072zM140.798 40.624c1.705 0 2.98-1.226 2.98-2.89 0-1.664-1.275-2.89-2.98-2.89-1.72 0-2.987 1.234-2.987 2.89 0 1.656 1.266 2.89 2.987 2.89zm0-.536c-1.372 0-2.394-.999-2.394-2.354 0-1.356 1.022-2.354 2.394-2.354 1.364 0 2.379.998 2.379 2.354 0 1.355-1.015 2.354-2.379 2.354zM149.29 40.575h.633l-2.598-5.682h-.593l-2.597 5.682h.625l.682-1.518h3.166zm-3.63-2.005 1.365-3.052 1.363 3.052zM155.402 40.575l-1.388-1.948c.828-.268 1.299-.893 1.299-1.786 0-1.218-.877-1.948-2.322-1.948h-2.127v5.682h.601v-1.802h1.526c.162 0 .309-.008.455-.024l1.298 1.826zm-2.427-2.314h-1.51v-2.849h1.51c1.136 0 1.737.52 1.737 1.429 0 .893-.6 1.42-1.737 1.42zM156.733 40.575h2.314c1.818 0 3.044-1.169 3.044-2.841 0-1.672-1.226-2.841-3.044-2.841h-2.314zm.601-.52v-4.643h1.68c1.51 0 2.484.958 2.484 2.322s-.974 2.321-2.484 2.321z" style="font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:.202942px" transform="matrix(.61336 0 0 .61336 25.104 14.58)"/></g><path d="M316.774 397.581h-20.54c.333 4.452 3.922 7.776 8.708 7.776 3.39 0 6.314-1.396 8.64-3.655.466-.467.998-.6 1.596-.6.798 0 1.596.4 2.127 1.064.333.466.532.998.532 1.529 0 .731-.333 1.528-.931 2.127-2.792 2.99-7.51 4.985-12.164 4.985-8.442 0-15.22-6.78-15.22-15.221 0-8.442 6.58-15.221 15.02-15.221 8.376 0 14.624 6.513 14.624 15.087 0 1.265-1.13 2.129-2.392 2.129zm-12.231-11.765c-4.453 0-7.51 2.925-8.175 7.177h16.35c-.598-4.053-3.788-7.177-8.175-7.177zM375.463 410.808c-8.44 0-15.22-6.78-15.22-15.222 0-8.441 6.78-15.22 15.22-15.22 8.443 0 15.222 6.779 15.222 15.22 0 8.442-6.78 15.222-15.222 15.222zm0-24.66c-5.316 0-8.773 4.254-8.773 9.438 0 5.184 3.457 9.439 8.773 9.439 5.318 0 8.775-4.255 8.775-9.439s-3.457-9.438-8.775-9.438zM412.662 380.366c-4.46 0-7.41 1.319-10.014 4.63l-.24-1.54a3.26 3.26 0 0 0-6.496.41v23.419a3.262 3.262 0 0 0 3.257 3.257 3.263 3.263 0 0 0 3.257-3.257v-12.562c0-5.716 4.985-8.574 10.236-8.574 1.595 0 2.858-1.33 2.858-2.926a2.835 2.835 0 0 0-2.858-2.857zM447.026 395.586c.067-8.175-5.783-15.22-15.222-15.22-8.442 0-15.288 6.779-15.288 15.22 0 8.442 6.647 15.222 14.69 15.222 4.015 0 7.627-2.066 9.239-4.225l.793 2.014a2.99 2.99 0 0 0 5.788-1.048v-7.807zm-15.222 9.439c-5.318 0-8.774-4.255-8.774-9.439s3.456-9.438 8.774-9.438c5.317 0 8.774 4.254 8.774 9.438 0 5.184-3.457 9.439-8.774 9.439zM355.015 368.334c0-1.794-1.462-3.19-3.257-3.19-1.794 0-3.257 1.396-3.257 3.19v17.15c-1.661-3.058-5.25-5.118-9.505-5.118-8.64 0-14.424 6.513-14.424 15.22 0 8.708 5.983 15.222 14.424 15.222 3.765 0 7.03-1.554 8.986-4.255l.723 1.834a3.25 3.25 0 0 0 6.31-1.088v-38.965zm-15.221 36.69c-5.318 0-8.708-4.254-8.708-9.438 0-5.184 3.39-9.438 8.708-9.438 5.317 0 8.707 4.055 8.707 9.438 0 5.384-3.39 9.439-8.707 9.439zM287.216 365.34a12.37 12.37 0 0 0-1.801-.132c-6.732 0-12.208 5.477-12.208 12.208v3.813h-3.989a2.667 2.667 0 0 0-2.659 2.658c0 1.463 1.197 2.938 2.66 2.938h3.987v20.46a3.263 3.263 0 0 0 3.257 3.257 3.263 3.263 0 0 0 3.257-3.257v-20.46h4.41c1.462 0 2.658-1.475 2.658-2.938a2.666 2.666 0 0 0-2.658-2.658h-4.407v-3.813c0-3.139 2.553-6.115 5.692-6.115.282 0 .567.021.846.062 1.78.264 3.436-.543 3.7-2.323a3.259 3.259 0 0 0-2.745-3.7z" style="fill:#3c6eb4" transform="matrix(.05465 0 0 .05465 47.047 12.693)"/><path d="M181.983 61.675h2.816v.38h-1.181v2.949h-.453v-2.95h-1.182v-.379m3.262 0h.67l.85 2.265.854-2.265h.671v3.329h-.44V62.08l-.857 2.283h-.453l-.858-2.283v2.923h-.437v-3.329" style="fill:#294172;enable-background:new" transform="matrix(.05465 0 0 .05465 61.615 31.567)"/><path d="M54.061 31.075a5.292 5.292 0 0 0-5.292 5.292 5.292 5.292 0 0 0 5.292 5.291 5.292 5.292 0 0 0 5.292-5.291 5.292 5.292 0 0 0-5.292-5.292zm0 .748a4.543 4.543 0 0 1 4.543 4.544 4.543 4.543 0 0 1-4.543 4.543 4.543 4.543 0 0 1-4.543-4.543 4.543 4.543 0 0 1 4.543-4.544z" style="color:#000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000;solid-opacity:1;fill:#3c6eb4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34766;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"/><rect ry=".028" y="33.89" x="51.132" height=".811" width="5.859" style="opacity:1;fill:#3c6eb4;fill-opacity:1;stroke:#3c6eb4;stroke-width:.350057;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"/><path transform="matrix(.26458 0 0 .26458 48.767 31.073)" d="M10.557 15.932a.53.53 0 0 0-.532.53V30.52c0 .293.238.529.532.529h18.906a.529.529 0 0 0 .531-.53V16.464a.53.53 0 0 0-.531-.531H10.557zm6.418.976h6.07c.907 0 1.637.73 1.637 1.637s-.73 1.637-1.637 1.637h-6.07c-.907 0-1.637-.73-1.637-1.637s.73-1.637 1.637-1.637z" style="opacity:1;fill:#3c6eb4;fill-opacity:1;stroke:#3c6eb4;stroke-width:1.47024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"/></g></svg> 

\ No newline at end of file

@@ -1,294 +1,1 @@ 

- <?xml version="1.0" encoding="UTF-8" standalone="no"?>

- <svg

-    xmlns:dc="http://purl.org/dc/elements/1.1/"

-    xmlns:cc="http://creativecommons.org/ns#"

-    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"

-    xmlns:svg="http://www.w3.org/2000/svg"

-    xmlns="http://www.w3.org/2000/svg"

-    xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"

-    xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"

-    inkscape:export-ydpi="192"

-    inkscape:export-xdpi="192"

-    inkscape:export-filename="/home/rlerch/Source/fedora-bootstrap/logo.png"

-    sodipodi:docname="logo_stg.svg"

-    inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"

-    version="1.1"

-    id="svg2"

-    viewBox="0 0 75.757393 10.583333"

-    height="10.583333mm"

-    width="75.757393mm">

-   <defs

-      id="defs4">

-     <clipPath

-        id="clipPath4574"

-        clipPathUnits="userSpaceOnUse">

-       <circle

-          transform="rotate(60)"

-          r="5.5046906"

-          cy="-16.921354"

-          cx="93.498596"

-          id="circle4576"

-          style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ce5c00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.75064;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />

-     </clipPath>

-   </defs>

-   <sodipodi:namedview

-      inkscape:document-rotation="0"

-      inkscape:window-maximized="1"

-      inkscape:window-y="27"

-      inkscape:window-x="1973"

-      inkscape:window-height="1136"

-      inkscape:window-width="1867"

-      fit-margin-bottom="0"

-      fit-margin-right="0"

-      fit-margin-left="0"

-      fit-margin-top="0"

-      showgrid="false"

-      inkscape:current-layer="g4488-3"

-      inkscape:document-units="mm"

-      inkscape:cy="12.715002"

-      inkscape:cx="220.3783"

-      inkscape:zoom="8"

-      inkscape:pageshadow="2"

-      inkscape:pageopacity="0.0"

-      borderopacity="1.0"

-      bordercolor="#666666"

-      pagecolor="#ffffff"

-      id="base" />

-   <metadata

-      id="metadata7">

-     <rdf:RDF>

-       <cc:Work

-          rdf:about="">

-         <dc:format>image/svg+xml</dc:format>

-         <dc:type

-            rdf:resource="http://purl.org/dc/dcmitype/StillImage" />

-         <dc:title></dc:title>

-       </cc:Work>

-     </rdf:RDF>

-   </metadata>

-   <g

-      transform="translate(-48.766898,-31.073162)"

-      id="layer1"

-      inkscape:groupmode="layer"

-      inkscape:label="Layer 1">

-     <g

-        id="g4714">

-       <g

-          id="g4595"

-          transform="matrix(0.45619308,0,0,0.45619308,25.303771,-9.145808)">

-         <g

-            id="g4624"

-            transform="matrix(0.92003825,0,0,0.92003825,3.8994993,8.9046582)">

-           <g

-              aria-label="PACKAGER DASHBOARD"

-              transform="matrix(1.4613695,0,0,1.4613695,-4.7135332,46.848388)"

-              id="text4225"

-              style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#555753;fill-opacity:1;stroke:none;stroke-width:0.202942px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1">

-             <path

-                d="m 62.251898,34.892655 h -2.12683 v 5.682369 h 0.600708 v -1.794005 h 1.526122 c 1.444945,0 2.321653,-0.730591 2.321653,-1.940124 0,-1.21765 -0.876708,-1.94824 -2.321653,-1.94824 z m -0.01624,3.360715 h -1.509886 v -2.841185 h 1.509886 c 1.136474,0 1.737182,0.519531 1.737182,1.42871 0,0.892944 -0.600708,1.412475 -1.737182,1.412475 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path155" />

-             <path

-                d="m 69.833789,40.575024 h 0.633178 l -2.597655,-5.682369 h -0.59259 l -2.597654,5.682369 h 0.625061 l 0.681884,-1.518005 h 3.165891 z m -3.628599,-2.005065 1.363769,-3.052244 1.363768,3.052244 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path157" />

-             <path

-                d="m 73.795202,40.62373 c 0.83612,0 1.582945,-0.284119 2.086241,-0.83612 l -0.381531,-0.381531 c -0.462707,0.478943 -1.030944,0.681884 -1.680357,0.681884 -1.371886,0 -2.402831,-1.006591 -2.402831,-2.354124 0,-1.347533 1.030945,-2.354124 2.402831,-2.354124 0.649413,0 1.21765,0.202942 1.680357,0.673766 l 0.381531,-0.38153 c -0.503296,-0.552002 -1.250121,-0.828002 -2.078124,-0.828002 -1.712828,0 -2.979184,1.225768 -2.979184,2.88989 0,1.664122 1.266356,2.889891 2.971067,2.889891 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path159" />

-             <path

-                d="m 81.247223,40.575024 h 0.714355 l -2.630125,-3.109068 2.459654,-2.573301 h -0.690002 l -3.336362,3.433774 v -3.433774 h -0.600708 v 5.682369 h 0.600708 V 39.081372 L 78.92557,37.90431 Z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path161" />

-             <path

-                d="m 86.962048,40.575024 h 0.633178 l -2.597654,-5.682369 h -0.59259 l -2.597655,5.682369 h 0.625061 l 0.681884,-1.518005 h 3.165891 z m -3.628599,-2.005065 1.363769,-3.052244 1.363768,3.052244 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path163" />

-             <path

-                d="m 92.457699,39.649609 c -0.438354,0.316589 -0.94165,0.438354 -1.485533,0.438354 -1.39624,0 -2.427184,-1.006591 -2.427184,-2.354124 0,-1.355651 1.030944,-2.354124 2.435301,-2.354124 0.665649,0 1.233886,0.194824 1.712829,0.665649 l 0.373412,-0.381531 c -0.503295,-0.543884 -1.250121,-0.819884 -2.110594,-0.819884 -1.737181,0 -3.003538,1.225768 -3.003538,2.88989 0,1.664122 1.266357,2.889891 2.995421,2.889891 0.787414,0 1.550475,-0.24353 2.086241,-0.722473 v -2.167418 h -0.576355 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path165" />

-             <path

-                d="m 95.331344,40.055493 v -2.110594 h 2.938596 v -0.511414 h -2.938596 v -2.0213 h 3.295774 v -0.51953 h -3.896482 v 5.682369 h 4.018247 v -0.519531 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path167" />

-             <path

-                d="m 104.69913,40.575024 -1.38812,-1.948241 c 0.828,-0.267883 1.29882,-0.892944 1.29882,-1.785888 0,-1.21765 -0.87671,-1.94824 -2.32165,-1.94824 h -2.12683 v 5.682369 h 0.60071 v -1.802123 h 1.52612 c 0.16235,0 0.30847,-0.0081 0.45459,-0.02435 l 1.29883,1.826476 z m -2.42719,-2.313536 h -1.50988 v -2.849303 h 1.50988 c 1.13648,0 1.73719,0.519531 1.73719,1.42871 0,0.892944 -0.60071,1.420593 -1.73719,1.420593 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path169" />

-             <path

-                d="m 108.15724,40.575024 h 2.31354 c 1.81836,0 3.04412,-1.168945 3.04412,-2.841185 0,-1.67224 -1.22576,-2.841184 -3.04412,-2.841184 h -2.31354 z m 0.60071,-0.519531 v -4.643308 h 1.68036 c 1.50988,0 2.484,0.957886 2.484,2.321654 0,1.363769 -0.97412,2.321654 -2.484,2.321654 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path171" />

-             <path

-                d="m 119.02679,40.575024 h 0.63318 l -2.59766,-5.682369 h -0.59259 l -2.59765,5.682369 h 0.62506 l 0.68188,-1.518005 h 3.16589 z m -3.6286,-2.005065 1.36377,-3.052244 1.36377,3.052244 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path173" />

-             <path

-                d="m 122.16832,40.62373 c 1.45306,0 2.11871,-0.714355 2.11871,-1.550475 0,-2.070006 -3.49872,-1.128356 -3.49872,-2.686949 0,-0.568237 0.46271,-1.030944 1.50177,-1.030944 0.5033,0 1.07154,0.154236 1.5586,0.470825 l 0.20294,-0.478943 c -0.45459,-0.316589 -1.12024,-0.503295 -1.76154,-0.503295 -1.44494,0 -2.09436,0.722472 -2.09436,1.558592 0,2.102477 3.49872,1.144592 3.49872,2.703184 0,0.56012 -0.46271,1.006591 -1.52612,1.006591 -0.74683,0 -1.4693,-0.292236 -1.87518,-0.690001 l -0.23542,0.462707 c 0.42212,0.438354 1.25824,0.738708 2.1106,0.738708 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path175" />

-             <path

-                d="m 129.75022,34.892655 v 2.532713 h -3.55554 v -2.532713 h -0.60071 v 5.682369 h 0.60071 v -2.622008 h 3.55554 v 2.622008 h 0.59259 v -5.682369 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path177" />

-             <path

-                d="m 135.77353,37.644545 c 0.51953,-0.21106 0.86859,-0.641296 0.86859,-1.29071 0,-0.925414 -0.73059,-1.46118 -1.99695,-1.46118 h -2.45154 v 5.682369 h 2.61389 c 1.4206,0 2.13495,-0.552002 2.13495,-1.518005 0,-0.771178 -0.43835,-1.250121 -1.16894,-1.412474 z m -1.16895,-2.256713 c 0.90918,0 1.43683,0.34906 1.43683,1.030945 0,0.681884 -0.52765,1.030944 -1.43683,1.030944 h -1.81024 v -2.061889 z m 0.19483,4.692014 h -2.00507 v -2.134947 h 2.00507 c 0.99847,0 1.54235,0.324706 1.54235,1.063414 0,0.746826 -0.54388,1.071533 -1.54235,1.071533 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path179" />

-             <path

-                d="m 140.79837,40.62373 c 1.70471,0 2.97918,-1.225769 2.97918,-2.889891 0,-1.664122 -1.27447,-2.88989 -2.97918,-2.88989 -1.72095,0 -2.9873,1.233885 -2.9873,2.88989 0,1.656005 1.26635,2.889891 2.9873,2.889891 z m 0,-0.535767 c -1.37189,0 -2.39471,-0.998473 -2.39471,-2.354124 0,-1.355651 1.02282,-2.354124 2.39471,-2.354124 1.36377,0 2.37848,0.998473 2.37848,2.354124 0,1.355651 -1.01471,2.354124 -2.37848,2.354124 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path181" />

-             <path

-                d="m 149.28943,40.575024 h 0.63318 l -2.59765,-5.682369 h -0.59259 l -2.59766,5.682369 h 0.62506 l 0.68189,-1.518005 h 3.16589 z m -3.6286,-2.005065 1.36377,-3.052244 1.36377,3.052244 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path183" />

-             <path

-                d="m 155.40203,40.575024 -1.38812,-1.948241 c 0.82801,-0.267883 1.29883,-0.892944 1.29883,-1.785888 0,-1.21765 -0.87671,-1.94824 -2.32165,-1.94824 h -2.12683 v 5.682369 h 0.6007 v -1.802123 h 1.52613 c 0.16235,0 0.30847,-0.0081 0.45459,-0.02435 l 1.29882,1.826476 z m -2.42718,-2.313536 h -1.50989 v -2.849303 h 1.50989 c 1.13648,0 1.73718,0.519531 1.73718,1.42871 0,0.892944 -0.6007,1.420593 -1.73718,1.420593 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path185" />

-             <path

-                d="m 156.73333,40.575024 h 2.31354 c 1.81835,0 3.04412,-1.168945 3.04412,-2.841185 0,-1.67224 -1.22577,-2.841184 -3.04412,-2.841184 h -2.31354 z m 0.60071,-0.519531 v -4.643308 h 1.68035 c 1.50989,0 2.48401,0.957886 2.48401,2.321654 0,1.363769 -0.97412,2.321654 -2.48401,2.321654 z"

-                style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:0.202942px"

-                id="path187" />

-           </g>

-           <g

-              transform="matrix(0.13021808,0,0,0.13021808,82.276708,87.323483)"

-              id="g4488">

-             <g

-                transform="translate(-266.55899,-345.34488)"

-                id="layer1-0">

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 316.7736,397.581 c 0,0 0,0 -20.53889,0 0.3327,4.45245 3.92157,7.77609 8.70715,7.77609 3.38983,0 6.31456,-1.39616 8.64094,-3.65507 0.46553,-0.46679 0.99726,-0.59962 1.59519,-0.59962 0.79781,0 1.59561,0.39932 2.12692,1.06388 0.3327,0.46553 0.53216,0.99726 0.53216,1.52857 0,0.73118 -0.3327,1.52857 -0.93106,2.12734 -2.7919,2.99052 -7.51086,4.98503 -12.16403,4.98503 -8.44149,0 -15.22074,-6.77967 -15.22074,-15.22158 0,-8.44149 6.58022,-15.22074 15.02171,-15.22074 8.37529,0 14.62323,6.51317 14.62323,15.08749 0,1.26418 -1.12924,2.12861 -2.39258,2.12861 z m -12.23065,-11.76512 c -4.45329,0 -7.51085,2.92473 -8.17499,7.17731 10.03626,0 16.35083,0 16.35083,0 -0.59836,-4.05355 -3.78874,-7.17731 -8.17584,-7.17731 z"

-                  id="path11"

-                  style="fill:#3c6eb4" />

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 375.46344,410.80807 c -8.44106,0 -15.22074,-6.77968 -15.22074,-15.22159 0,-8.44149 6.77968,-15.22074 15.22074,-15.22074 8.44234,0 15.22159,6.77925 15.22159,15.22074 -4.2e-4,8.44149 -6.77968,15.22159 -15.22159,15.22159 z m 0,-24.65992 c -5.31688,0 -8.77377,4.25427 -8.77377,9.43833 0,5.18364 3.45689,9.43833 8.77377,9.43833 5.31731,0 8.77504,-4.25469 8.77504,-9.43833 -4.2e-4,-5.18406 -3.45773,-9.43833 -8.77504,-9.43833 z"

-                  id="path13"

-                  style="fill:#3c6eb4" />

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 412.66183,380.36574 c -4.45963,0 -7.40966,1.319 -10.01391,4.62956 l -0.24036,-1.53995 v 0 c -0.20198,-1.60743 -1.57326,-2.84926 -3.23382,-2.84926 -1.80139,0 -3.26206,1.459 -3.26206,3.26081 0,0.003 0,0.005 0,0.008 v 0 0.003 0 23.40712 c 0,1.79464 1.46194,3.25743 3.257,3.25743 1.79465,0 3.25744,-1.46279 3.25744,-3.25743 v -12.56209 c 0,-5.71621 4.98502,-8.57432 10.23613,-8.57432 1.59519,0 2.85726,-1.32953 2.85726,-2.92515 0,-1.59561 -1.26207,-2.85726 -2.85768,-2.85726 z"

-                  id="path15"

-                  style="fill:#3c6eb4" />

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 447.02614,395.58648 c 0.0666,-8.17541 -5.78326,-15.22074 -15.222,-15.22074 -8.44192,0 -15.28779,6.77925 -15.28779,15.22074 0,8.44191 6.64684,15.22159 14.68985,15.22159 4.01434,0 7.62682,-2.06621 9.23846,-4.22518 l 0.79359,2.01434 v 0 c 0.42589,1.13177 1.5176,1.93717 2.7978,1.93717 1.65001,0 2.98756,-1.33671 2.99009,-2.98545 v 0 -7.80687 0 z m -15.222,9.43833 c -5.31773,0 -8.77419,-4.25469 -8.77419,-9.43833 0,-5.18406 3.45604,-9.43833 8.77419,-9.43833 5.3173,0 8.77419,4.25427 8.77419,9.43833 0,5.18364 -3.45689,9.43833 -8.77419,9.43833 z"

-                  id="path17"

-                  style="fill:#3c6eb4" />

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 355.01479,368.3337 c 0,-1.7938 -1.46194,-3.18997 -3.25659,-3.18997 -1.79422,0 -3.25743,1.39659 -3.25743,3.18997 v 17.1499 c -1.66097,-3.05756 -5.25026,-5.11786 -9.50495,-5.11786 -8.64052,0 -14.42336,6.51318 -14.42336,15.22074 0,8.70757 5.98229,15.22159 14.42336,15.22159 3.76555,0 7.03057,-1.55429 8.98587,-4.25554 l 0.72317,1.83428 c 0.44782,1.25912 1.64917,2.16024 3.06051,2.16024 1.78621,0 3.24984,-1.45435 3.24984,-3.24815 0,-0.005 0,-0.009 0,-0.0139 v 0 -38.95128 h -4.2e-4 z m -15.22116,36.69111 c -5.31731,0 -8.70715,-4.25469 -8.70715,-9.43833 0,-5.18406 3.38984,-9.43833 8.70715,-9.43833 5.31773,0 8.70714,4.0544 8.70714,9.43833 0,5.38309 -3.38941,9.43833 -8.70714,9.43833 z"

-                  id="path19"

-                  style="fill:#3c6eb4" />

-               <path

-                  inkscape:connector-curvature="0"

-                  d="m 287.21553,365.34023 c -0.59414,-0.0877 -1.19966,-0.13198 -1.80097,-0.13198 -6.73118,0 -12.20746,5.4767 -12.20746,12.20788 v 3.8132 h -3.98903 c -1.46237,0 -2.65908,1.19671 -2.65908,2.65781 0,1.46321 1.19671,2.93738 2.65908,2.93738 h 3.98819 v 20.46004 c 0,1.79464 1.46236,3.25743 3.25658,3.25743 1.79507,0 3.25744,-1.46279 3.25744,-3.25743 v -20.46004 h 4.40986 c 1.46194,0 2.65823,-1.47417 2.65823,-2.93738 0,-1.46152 -1.19629,-2.65823 -2.65823,-2.65823 h -4.40733 v -3.8132 c 0,-3.13852 2.55323,-6.11469 5.69175,-6.11469 0.28294,0 0.56757,0.0211 0.84672,0.062 1.78031,0.26355 3.4358,-0.54269 3.70019,-2.32342 0.2627,-1.77904 -0.96606,-3.43538 -2.74594,-3.69935 z"

-                  id="path21"

-                  style="fill:#3c6eb4" />

-             </g>

-             <path

-                inkscape:connector-curvature="0"

-                d="m 181.98344,61.675273 h 2.81558 v 0.37898 h -1.18152 v 2.94935 h -0.45254 v -2.94935 h -1.18152 v -0.37898 m 3.26144,0 h 0.67101 l 0.84937,2.26496 0.85381,-2.26496 h 0.67102 v 3.32833 h -0.43917 v -2.9226 l -0.85828,2.28279 h -0.45255 l -0.85827,-2.28279 v 2.9226 h -0.43694 v -3.32833"

-                id="path2391"

-                style="fill:#294172;enable-background:new" />

-           </g>

-         </g>

-       </g>

-       <path

-          inkscape:export-ydpi="96"

-          inkscape:export-xdpi="96"

-          inkscape:export-filename="/home/lbrabec/Playground/landingpage/src/favicon.ico.png"

-          inkscape:connector-curvature="0"

-          id="path4688"

-          d="m 54.061011,31.074888 a 5.2916664,5.2916664 0 0 0 -5.291667,5.291667 5.2916664,5.2916664 0 0 0 5.291667,5.291666 5.2916664,5.2916664 0 0 0 5.291666,-5.291666 5.2916664,5.2916664 0 0 0 -5.291666,-5.291667 z m 0,0.748275 a 4.5433115,4.5433115 0 0 1 4.543392,4.543392 4.5433115,4.5433115 0 0 1 -4.543392,4.543391 4.5433115,4.5433115 0 0 1 -4.543392,-4.543391 4.5433115,4.5433115 0 0 1 4.543392,-4.543392 z"

-          style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffc107;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34766;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />

-       <rect

-          ry="0.028468428"

-          y="33.889786"

-          x="51.131569"

-          height="0.81115383"

-          width="5.8589997"

-          id="rect850"

-          style="opacity:1;fill:#ffc107;fill-opacity:1;stroke:#ffc107;stroke-width:0.350057;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />

-       <path

-          transform="matrix(0.26458333,0,0,0.26458333,48.766898,31.073162)"

-          d="M 10.556641 15.931641 C 10.262714 15.931641 10.025391 16.168957 10.025391 16.462891 L 10.025391 30.519531 C 10.025391 30.813461 10.262707 31.048828 10.556641 31.048828 L 29.462891 31.048828 C 29.756817 31.048828 29.994141 30.813465 29.994141 30.519531 L 29.994141 16.462891 C 29.994141 16.168964 29.756824 15.931641 29.462891 15.931641 L 10.556641 15.931641 z M 16.974609 16.908203 L 23.044922 16.908203 C 23.951585 16.908203 24.681641 17.638259 24.681641 18.544922 C 24.681641 19.451585 23.951585 20.181641 23.044922 20.181641 L 16.974609 20.181641 C 16.067946 20.181641 15.337891 19.451585 15.337891 18.544922 C 15.337891 17.638259 16.067946 16.908203 16.974609 16.908203 z "

-          style="opacity:1;fill:#ffc107;fill-opacity:1;stroke:#ffc107;stroke-width:1.47024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"

-          id="rect856" />

-       <g

-          transform="matrix(0.05465449,0,0,0.05465449,97.067982,31.568082)"

-          id="g4488-3">

-         <g

-            aria-label="staging instance"

-            id="text907"

-            style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:54.8649px;line-height:1.25;font-family:Comfortaa;-inkscape-font-specification:Comfortaa;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.84102"

-            transform="translate(-1.8153815)">

-           <path

-              d="m 40.155347,65.43483 q -3.730814,0 -7.022708,-1.152163 -3.291893,-1.152163 -5.1573,-3.01757 -0.713244,-0.713243 -0.713244,-1.700811 0,-1.316758 1.097298,-2.139731 1.042433,-0.768109 1.920272,-0.768109 1.097298,0 2.084866,0.987568 1.042433,1.152163 3.127299,2.030001 2.084866,0.822974 4.444057,0.822974 3.127299,0 4.828111,-1.042433 1.755677,-1.042433 1.755677,-2.79811 0,-1.700812 -1.700812,-2.79811 -1.700812,-1.152163 -5.760814,-1.920271 -10.534061,-2.030002 -10.534061,-8.668654 0,-2.68838 1.591082,-4.553787 1.591082,-1.865406 4.169732,-2.79811 2.578651,-0.932703 5.48649,-0.932703 3.566219,0 6.364328,1.152163 2.852975,1.152163 4.498922,3.182164 0.713244,0.877838 0.713244,1.755677 0,0.932703 -0.932703,1.700812 -0.603514,0.438919 -1.536218,0.438919 -1.426487,0 -2.57865,-1.042433 -1.371622,-1.261893 -2.907839,-1.755677 -1.536218,-0.548649 -3.730814,-0.548649 -2.523785,0 -4.169732,0.877838 -1.591082,0.822974 -1.591082,2.359191 0,1.097298 0.548649,1.865407 0.548649,0.713243 2.084866,1.371622 1.536217,0.603514 4.444057,1.207028 5.980274,1.207028 8.449194,3.346759 2.523786,2.139731 2.523786,5.541354 0,2.523786 -1.371623,4.608652 -1.371622,2.030001 -4.060002,3.237029 -2.633515,1.152163 -6.364328,1.152163 z"

-              style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102"

-              id="path913" />

-           <path

-              d="m 71.812352,59.72888 q 0.987569,0 1.645947,0.768109 0.713244,0.768108 0.713244,1.975136 0,1.207028 -0.932703,1.975137 -0.877839,0.768108 -2.304326,0.768108 h -0.987568 q -2.68838,0 -4.937841,-1.371622 Q 62.814509,62.41726 61.552616,60.003205 60.290724,57.589149 60.290724,54.57158 V 41.01995 h -2.523786 q -1.152163,0 -1.865406,-0.658379 -0.713244,-0.658379 -0.713244,-1.645947 0,-1.097298 0.713244,-1.755677 0.713243,-0.658378 1.865406,-0.658378 h 2.523786 v -7.900546 q 0,-1.207028 0.768108,-1.975136 0.768109,-0.768109 1.975137,-0.768109 1.207027,0 1.975136,0.768109 0.768108,0.768108 0.768108,1.975136 v 7.900546 h 4.663517 q 1.152163,0 1.865406,0.658378 0.713244,0.658379 0.713244,1.755677 0,0.987568 -0.713244,1.645947 -0.713243,0.658379 -1.865406,0.658379 h -4.663517 v 13.55163 q 0,2.194596 1.207028,3.675948 1.207028,1.481352 2.962705,1.481352 z"

-              style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102"

-              id="path915" />

-           <path

-              d="m 94.6361,34.984811 q 4.224597,0 7.62622,2.030001 3.45649,1.975137 5.43163,5.48649 2.03,3.456489 2.03,7.735951 v 12.234872 q 0,1.207028 -0.82298,2.030001 -0.7681,0.768109 -1.97513,0.768109 -1.20703,0 -2.03,-0.768109 -0.76811,-0.822973 -0.76811,-2.030001 v -2.030001 q -1.92027,2.359191 -4.663519,3.675948 -2.743245,1.316758 -5.925409,1.316758 -3.950272,0 -7.187301,-1.975137 -3.182165,-1.975136 -5.047571,-5.431625 -1.810542,-3.511353 -1.810542,-7.790815 0,-4.279462 1.975137,-7.735951 1.975136,-3.511353 5.431624,-5.48649 3.511354,-2.030001 7.735951,-2.030001 z m 0,25.512178 q 2.743245,0 4.937841,-1.316758 2.249459,-1.371622 3.511349,-3.675948 1.2619,-2.359191 1.2619,-5.26703 0,-2.90784 -1.2619,-5.26703 -1.26189,-2.359191 -3.511349,-3.675949 -2.194596,-1.371622 -4.937841,-1.371622 -2.743245,0 -4.992706,1.371622 -2.194596,1.316758 -3.511353,3.675949 -1.261893,2.35919 -1.261893,5.26703 0,2.907839 1.261893,5.26703 1.316757,2.304326 3.511353,3.675948 2.249461,1.316758 4.992706,1.316758 z"

-              style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102"

-              id="path917" />

-           <path

-              d="m 131.66986,34.984811 q 4.33433,0 7.73595,1.975136 3.45649,1.920272 5.37676,5.37676 1.97514,3.456489 1.97514,7.900546 v 11.850818 q 0,4.334327 -1.92027,7.900545 -1.92028,3.566219 -5.43163,5.59622 -3.45649,2.084866 -7.84568,2.084866 -3.95027,0 -7.3519,-1.591082 -3.40162,-1.536217 -5.70595,-4.444057 -0.60351,-0.768108 -0.60351,-1.536217 0,-1.152163 1.15216,-1.975136 0.76811,-0.493784 1.53622,-0.493784 1.37162,0 2.24946,1.152163 1.48135,1.920271 3.73081,2.907839 2.24947,1.042433 5.10244,1.042433 2.68838,0 4.88298,-1.316757 2.19459,-1.261893 3.51135,-3.785678 1.31676,-2.468921 1.31676,-5.925409 v -2.68838 q -1.70081,3.017569 -4.49892,4.718381 -2.79811,1.700812 -6.30947,1.700812 -4.06,0 -7.29703,-1.920272 -3.18216,-1.975136 -4.99271,-5.431625 -1.75567,-3.456488 -1.75567,-7.84568 0,-4.444057 1.92027,-7.900546 1.92027,-3.456488 5.37676,-5.37676 3.45649,-1.975136 7.84568,-1.975136 z m 0,25.512178 q 2.79811,0 4.99271,-1.316758 2.24946,-1.316757 3.45648,-3.621083 1.2619,-2.359191 1.2619,-5.321895 0,-2.962705 -1.2619,-5.321895 -1.20702,-2.359191 -3.45648,-3.675949 -2.1946,-1.316757 -4.99271,-1.316757 -2.79811,0 -5.04757,1.316757 -2.1946,1.316758 -3.45649,3.675949 -1.26189,2.35919 -1.26189,5.321895 0,2.962704 1.26189,5.321895 1.26189,2.304326 3.45649,3.621083 2.24946,1.316758 5.04757,1.316758 z"

-              style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102"

-              id="path919" />

-           <path

-              d="m 158.44389,65.21537 q -1.20703,0 -2.03,-0.768108 -0.76811,-0.822974 -0.76811,-2.030002 V 38.00238 q 0,-1.261892 0.76811,-2.030001 0.82297,-0.768108 2.03,-0.768108 1.26189,0 2.03,0.768108 0.76811,0.768109 0.76811,2.030001 v 24.41488 q 0,1.207028 -0.76811,2.030002 -0.76811,0.768108 -2.03,0.768108 z m 0,-34.894075 q -1.48135,0 -2.57865,-1.042433 -1.04243,-1.097298 -1.04243,-2.578651 0,-1.481352 1.04243,-2.523785 1.0973,-1.097298 2.57865,-1.097298 1.48135,0 2.52379,1.097298 1.0973,1.042433 1.0973,2.523785 0,1.481353 -1.0973,2.578651 -1.04244,1.042433 -2.52379,1.042433 z"

-              style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102"

-              id="path921" />

-           <path

-              d="m 186.58948,34.929946 q 3.78568,0 6.80325,1.645947 3.01757,1.645947 4.71838,4.828111 1.70082,3.127299 1.70082,7.571356 v 13.496765 q 0,1.207028 -0.82298,2.030001 -0.76811,0.768109 -1.97513,0.768109 -1.20703,0 -2.03001,-0.768109 -0.7681,-0.822973 -0.7681,-2.030001 V 48.97536 q 0,-4.444057 -2.41406,-6.693517 -2.35919,-2.304326 -6.30946,-2.304326 -2.30433,0 -4.2246,0.932703 -1.86541,0.932703 -2.9627,2.523785 -1.04244,1.591082 -1.04244,3.566219 v 15.471901 q 0,1.207028 -0.76811,2.030001 -0.7681,0.768109 -2.03,0.768109 -1.20703,0 -2.03,-0.768109 -0.76811,-0.822973 -0.76811,-2.030001 V 38.00238 q 0,-1.261892 0.76811,-2.030001 0.82297,-0.768108 2.03,-0.768108 1.2619,0 2.03,0.768108 0.76811,0.768109 0.76811,2.030001 v 0.603514 q 1.75568,-1.755676 4.16973,-2.68838 2.41406,-0.987568 5.1573,-0.987568 z"

-              style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102"

-              id="path923" />

-           <path

-              d="m 222.69054,34.984811 q 4.33433,0 7.73595,1.975136 3.45649,1.920272 5.37676,5.37676 1.97514,3.456489 1.97514,7.900546 v 11.850818 q 0,4.334327 -1.92027,7.900545 -1.92027,3.566219 -5.43163,5.59622 -3.45648,2.084866 -7.84568,2.084866 -3.95027,0 -7.35189,-1.591082 -3.40163,-1.536217 -5.70595,-4.444057 -0.60352,-0.768108 -0.60352,-1.536217 0,-1.152163 1.15217,-1.975136 0.76811,-0.493784 1.53621,-0.493784 1.37163,0 2.24946,1.152163 1.48136,1.920271 3.73082,2.907839 2.24946,1.042433 5.10243,1.042433 2.68838,0 4.88298,-1.316757 2.1946,-1.261893 3.51135,-3.785678 1.31676,-2.468921 1.31676,-5.925409 v -2.68838 q -1.70081,3.017569 -4.49892,4.718381 -2.79811,1.700812 -6.30946,1.700812 -4.06001,0 -7.29704,-1.920272 -3.18216,-1.975136 -4.9927,-5.431625 -1.75568,-3.456488 -1.75568,-7.84568 0,-4.444057 1.92027,-7.900546 1.92027,-3.456488 5.37676,-5.37676 3.45649,-1.975136 7.84568,-1.975136 z m 0,25.512178 q 2.79811,0 4.99271,-1.316758 2.24946,-1.316757 3.45649,-3.621083 1.26189,-2.359191 1.26189,-5.321895 0,-2.962705 -1.26189,-5.321895 -1.20703,-2.359191 -3.45649,-3.675949 -2.1946,-1.316757 -4.99271,-1.316757 -2.79811,0 -5.04757,1.316757 -2.19459,1.316758 -3.45649,3.675949 -1.26189,2.35919 -1.26189,5.321895 0,2.962704 1.26189,5.321895 1.2619,2.304326 3.45649,3.621083 2.24946,1.316758 5.04757,1.316758 z"

-              style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102"

-              id="path925" />

-           <path

-              d="m 265.53994,65.21537 q -1.20703,0 -2.03,-0.768108 -0.76811,-0.822974 -0.76811,-2.030002 V 38.00238 q 0,-1.261892 0.76811,-2.030001 0.82297,-0.768108 2.03,-0.768108 1.26189,0 2.03,0.768108 0.76811,0.768109 0.76811,2.030001 v 24.41488 q 0,1.207028 -0.76811,2.030002 -0.76811,0.768108 -2.03,0.768108 z m 0,-34.894075 q -1.48135,0 -2.57865,-1.042433 -1.04243,-1.097298 -1.04243,-2.578651 0,-1.481352 1.04243,-2.523785 1.0973,-1.097298 2.57865,-1.097298 1.48135,0 2.52378,1.097298 1.0973,1.042433 1.0973,2.523785 0,1.481353 -1.0973,2.578651 -1.04243,1.042433 -2.52378,1.042433 z"

-              style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102"

-              id="path927" />

-           <path

-              d="m 293.68554,34.929946 q 3.78568,0 6.80325,1.645947 3.01757,1.645947 4.71838,4.828111 1.70081,3.127299 1.70081,7.571356 v 13.496765 q 0,1.207028 -0.82297,2.030001 -0.76811,0.768109 -1.97514,0.768109 -1.20703,0 -2.03,-0.768109 -0.76811,-0.822973 -0.76811,-2.030001 V 48.97536 q 0,-4.444057 -2.41406,-6.693517 -2.35919,-2.304326 -6.30946,-2.304326 -2.30432,0 -4.2246,0.932703 -1.8654,0.932703 -2.9627,2.523785 -1.04243,1.591082 -1.04243,3.566219 v 15.471901 q 0,1.207028 -0.76811,2.030001 -0.76811,0.768109 -2.03,0.768109 -1.20703,0 -2.03,-0.768109 -0.76811,-0.822973 -0.76811,-2.030001 V 38.00238 q 0,-1.261892 0.76811,-2.030001 0.82297,-0.768108 2.03,-0.768108 1.26189,0 2.03,0.768108 0.76811,0.768109 0.76811,2.030001 v 0.603514 q 1.75567,-1.755676 4.16973,-2.68838 2.41405,-0.987568 5.1573,-0.987568 z"

-              style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102"

-              id="path929" />

-           <path

-              d="m 327.09822,65.43483 q -3.73082,0 -7.02271,-1.152163 -3.29189,-1.152163 -5.1573,-3.01757 -0.71324,-0.713243 -0.71324,-1.700811 0,-1.316758 1.09729,-2.139731 1.04244,-0.768109 1.92028,-0.768109 1.09729,0 2.08486,0.987568 1.04244,1.152163 3.1273,2.030001 2.08487,0.822974 4.44406,0.822974 3.1273,0 4.82811,-1.042433 1.75568,-1.042433 1.75568,-2.79811 0,-1.700812 -1.70082,-2.79811 -1.70081,-1.152163 -5.76081,-1.920271 -10.53406,-2.030002 -10.53406,-8.668654 0,-2.68838 1.59108,-4.553787 1.59108,-1.865406 4.16973,-2.79811 2.57865,-0.932703 5.48649,-0.932703 3.56622,0 6.36433,1.152163 2.85298,1.152163 4.49892,3.182164 0.71325,0.877838 0.71325,1.755677 0,0.932703 -0.93271,1.700812 -0.60351,0.438919 -1.53621,0.438919 -1.42649,0 -2.57865,-1.042433 -1.37163,-1.261893 -2.90784,-1.755677 -1.53622,-0.548649 -3.73082,-0.548649 -2.52378,0 -4.16973,0.877838 -1.59108,0.822974 -1.59108,2.359191 0,1.097298 0.54865,1.865407 0.54865,0.713243 2.08486,1.371622 1.53622,0.603514 4.44406,1.207028 5.98028,1.207028 8.4492,3.346759 2.52378,2.139731 2.52378,5.541354 0,2.523786 -1.37162,4.608652 -1.37162,2.030001 -4.06,3.237029 -2.63352,1.152163 -6.36433,1.152163 z"

-              style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102"

-              id="path931" />

-           <path

-              d="m 358.75522,59.72888 q 0.98757,0 1.64595,0.768109 0.71324,0.768108 0.71324,1.975136 0,1.207028 -0.9327,1.975137 -0.87784,0.768108 -2.30433,0.768108 h -0.98757 q -2.68838,0 -4.93784,-1.371622 -2.19459,-1.426488 -3.45649,-3.840543 -1.26189,-2.414056 -1.26189,-5.431625 V 41.01995 h -2.52378 q -1.15217,0 -1.86541,-0.658379 -0.71324,-0.658379 -0.71324,-1.645947 0,-1.097298 0.71324,-1.755677 0.71324,-0.658378 1.86541,-0.658378 h 2.52378 v -7.900546 q 0,-1.207028 0.76811,-1.975136 0.76811,-0.768109 1.97514,-0.768109 1.20702,0 1.97513,0.768109 0.76811,0.768108 0.76811,1.975136 v 7.900546 h 4.66352 q 1.15216,0 1.8654,0.658378 0.71325,0.658379 0.71325,1.755677 0,0.987568 -0.71325,1.645947 -0.71324,0.658379 -1.8654,0.658379 h -4.66352 v 13.55163 q 0,2.194596 1.20703,3.675948 1.20703,1.481352 2.9627,1.481352 z"

-              style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102"

-              id="path933" />

-           <path

-              d="m 381.57896,34.984811 q 4.22459,0 7.62622,2.030001 3.45649,1.975137 5.43162,5.48649 2.03,3.456489 2.03,7.735951 v 12.234872 q 0,1.207028 -0.82297,2.030001 -0.76811,0.768109 -1.97514,0.768109 -1.20702,0 -2.03,-0.768109 -0.76811,-0.822973 -0.76811,-2.030001 v -2.030001 q -1.92027,2.359191 -4.66351,3.675948 -2.74325,1.316758 -5.92541,1.316758 -3.95027,0 -7.1873,-1.975137 -3.18217,-1.975136 -5.04757,-5.431625 -1.81055,-3.511353 -1.81055,-7.790815 0,-4.279462 1.97514,-7.735951 1.97514,-3.511353 5.43163,-5.48649 3.51135,-2.030001 7.73595,-2.030001 z m 0,25.512178 q 2.74324,0 4.93784,-1.316758 2.24946,-1.371622 3.51135,-3.675948 1.26189,-2.359191 1.26189,-5.26703 0,-2.90784 -1.26189,-5.26703 -1.26189,-2.359191 -3.51135,-3.675949 -2.1946,-1.371622 -4.93784,-1.371622 -2.74325,0 -4.99271,1.371622 -2.1946,1.316758 -3.51135,3.675949 -1.2619,2.35919 -1.2619,5.26703 0,2.907839 1.2619,5.26703 1.31675,2.304326 3.51135,3.675948 2.24946,1.316758 4.99271,1.316758 z"

-              style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102"

-              id="path935" />

-           <path

-              d="m 419.9295,34.929946 q 3.78567,0 6.80324,1.645947 3.01757,1.645947 4.71839,4.828111 1.70081,3.127299 1.70081,7.571356 v 13.496765 q 0,1.207028 -0.82298,2.030001 -0.7681,0.768109 -1.97513,0.768109 -1.20703,0 -2.03,-0.768109 -0.76811,-0.822973 -0.76811,-2.030001 V 48.97536 q 0,-4.444057 -2.41406,-6.693517 -2.35919,-2.304326 -6.30946,-2.304326 -2.30433,0 -4.2246,0.932703 -1.86541,0.932703 -2.9627,2.523785 -1.04244,1.591082 -1.04244,3.566219 v 15.471901 q 0,1.207028 -0.7681,2.030001 -0.76811,0.768109 -2.03001,0.768109 -1.20702,0 -2.03,-0.768109 -0.76811,-0.822973 -0.76811,-2.030001 V 38.00238 q 0,-1.261892 0.76811,-2.030001 0.82298,-0.768108 2.03,-0.768108 1.2619,0 2.03001,0.768108 0.7681,0.768109 0.7681,2.030001 v 0.603514 q 1.75568,-1.755676 4.16974,-2.68838 2.41405,-0.987568 5.1573,-0.987568 z"

-              style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102"

-              id="path937" />

-           <path

-              d="m 456.03056,65.43483 q -4.33433,0 -7.79082,-1.975137 -3.45649,-1.975136 -5.43163,-5.431625 -1.92027,-3.511353 -1.92027,-7.790815 0,-4.389192 1.86541,-7.845681 1.92027,-3.511353 5.32189,-5.431625 3.40163,-1.975136 7.68109,-1.975136 6.47406,0 10.75352,4.937841 0.54865,0.603514 0.54865,1.426487 0,1.207028 -1.20703,2.030002 -0.54865,0.384054 -1.26189,0.384054 -1.26189,0 -2.13973,-0.987568 -1.37162,-1.481353 -3.01757,-2.139731 -1.59108,-0.713244 -3.67595,-0.713244 -4.2246,0 -6.85811,2.852975 -2.63352,2.798109 -2.63352,7.461626 0,2.962704 1.20703,5.321895 1.26189,2.304326 3.45649,3.621083 2.24946,1.316758 5.10244,1.316758 3.73081,0 6.03513,-1.920272 1.04244,-0.768108 2.03001,-0.768108 0.7681,0 1.42648,0.493784 1.04244,0.877838 1.04244,1.975136 0,0.822974 -0.65838,1.481353 -3.95028,3.675948 -9.87568,3.675948 z"

-              style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102"

-              id="path939" />

-           <path

-              d="m 502.33651,49.743469 q 0,1.042433 -0.71324,1.755677 -0.71325,0.658378 -1.81054,0.658378 h -20.84867 q 0.60352,3.840543 3.45649,6.199734 2.90784,2.35919 7.07757,2.35919 1.64595,0 3.40163,-0.603513 1.81054,-0.603514 2.9627,-1.481353 0.76811,-0.603514 1.81054,-0.603514 1.04244,0 1.64595,0.548649 0.98757,0.822974 0.98757,1.865407 0,0.987568 -0.87784,1.645947 -1.86541,1.481352 -4.66352,2.414055 -2.74324,0.932704 -5.26703,0.932704 -4.49892,0 -8.06514,-1.920272 -3.56621,-1.975136 -5.59622,-5.431625 -1.97513,-3.456488 -1.97513,-7.84568 0,-4.389192 1.86541,-7.845681 1.92027,-3.511353 5.26703,-5.431625 3.40162,-1.975136 7.68108,-1.975136 4.2246,0 7.29703,1.865407 3.07244,1.865406 4.71838,5.212165 1.64595,3.346759 1.64595,7.681086 z M 488.67515,39.703192 q -4.00514,0 -6.52892,2.194596 -2.46892,2.194596 -3.1273,5.870544 h 18.27001 q -0.49378,-3.675948 -2.74324,-5.870544 -2.24947,-2.194596 -5.87055,-2.194596 z"

-              style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102"

-              id="path941" />

-         </g>

-       </g>

-     </g>

-   </g>

- </svg>

+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75.757 10.583" height="40" width="286.327"><g transform="translate(-48.767 -31.073)"><g aria-label="PACKAGER DASHBOARD" style="font-style:normal;font-weight:400;line-height:0%;font-family:sans-serif;letter-spacing:0;word-spacing:0;fill:#555753;fill-opacity:1;stroke:none;stroke-width:.202942px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"><path d="M62.252 34.893h-2.127v5.682h.6v-1.794h1.527c1.445 0 2.322-.73 2.322-1.94 0-1.218-.877-1.948-2.322-1.948zm-.016 3.36h-1.51v-2.84h1.51c1.136 0 1.737.519 1.737 1.428 0 .893-.6 1.412-1.737 1.412zM69.834 40.575h.633l-2.598-5.682h-.592l-2.598 5.682h.625l.682-1.518h3.166zm-3.629-2.005 1.364-3.052 1.364 3.052zM73.795 40.624c.836 0 1.583-.284 2.086-.836l-.381-.382c-.463.479-1.031.682-1.68.682-1.372 0-2.403-1.007-2.403-2.354 0-1.348 1.03-2.354 2.403-2.354.649 0 1.217.203 1.68.673l.381-.381c-.503-.552-1.25-.828-2.078-.828-1.713 0-2.979 1.226-2.979 2.89 0 1.664 1.266 2.89 2.971 2.89zM81.247 40.575h.715l-2.63-3.109 2.46-2.573h-.69l-3.337 3.433v-3.433h-.601v5.682h.6v-1.494l1.162-1.177Z" style="font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:.202942px" transform="matrix(.61336 0 0 .61336 25.104 14.58)"/><path d="M86.962 40.575h.633l-2.597-5.682h-.593l-2.598 5.682h.625l.682-1.518h3.166zm-3.629-2.005 1.364-3.052 1.364 3.052zM92.458 39.65c-.439.316-.942.438-1.486.438-1.396 0-2.427-1.007-2.427-2.354 0-1.356 1.03-2.354 2.435-2.354.666 0 1.234.195 1.713.665l.374-.381c-.504-.544-1.25-.82-2.111-.82-1.737 0-3.004 1.226-3.004 2.89 0 1.664 1.267 2.89 2.996 2.89.787 0 1.55-.244 2.086-.723v-2.167h-.576zM95.331 40.055v-2.11h2.939v-.512H95.33v-2.02h3.296v-.52h-3.896v5.682h4.018v-.52zM104.7 40.575l-1.389-1.948c.828-.268 1.299-.893 1.299-1.786 0-1.218-.877-1.948-2.322-1.948h-2.127v5.682h.601v-1.802h1.526c.163 0 .309-.008.455-.024l1.299 1.826zm-2.428-2.314h-1.51v-2.849h1.51c1.136 0 1.737.52 1.737 1.429 0 .893-.6 1.42-1.737 1.42zM108.157 40.575h2.314c1.818 0 3.044-1.169 3.044-2.841 0-1.672-1.226-2.841-3.044-2.841h-2.314zm.601-.52v-4.643h1.68c1.51 0 2.484.958 2.484 2.322s-.974 2.321-2.484 2.321zM119.027 40.575h.633l-2.598-5.682h-.592l-2.598 5.682h.625l.682-1.518h3.166zm-3.629-2.005 1.364-3.052 1.364 3.052zM122.168 40.624c1.453 0 2.119-.715 2.119-1.55 0-2.07-3.499-1.13-3.499-2.688 0-.568.463-1.03 1.502-1.03.503 0 1.072.154 1.559.47l.203-.479c-.455-.316-1.12-.503-1.762-.503-1.445 0-2.094.722-2.094 1.559 0 2.102 3.498 1.144 3.498 2.703 0 .56-.462 1.006-1.526 1.006-.747 0-1.469-.292-1.875-.69l-.235.463c.422.438 1.258.739 2.11.739zM129.75 34.893v2.532h-3.555v-2.532h-.601v5.682h.6v-2.622h3.556v2.622h.593v-5.682zM135.774 37.645c.52-.212.868-.642.868-1.291 0-.926-.73-1.461-1.997-1.461h-2.451v5.682h2.614c1.42 0 2.134-.552 2.134-1.518 0-.771-.438-1.25-1.168-1.412zm-1.17-2.257c.91 0 1.437.349 1.437 1.03 0 .683-.527 1.032-1.436 1.032h-1.81v-2.062zm.195 4.692h-2.005v-2.135h2.005c.999 0 1.543.325 1.543 1.063 0 .747-.544 1.072-1.543 1.072zM140.798 40.624c1.705 0 2.98-1.226 2.98-2.89 0-1.664-1.275-2.89-2.98-2.89-1.72 0-2.987 1.234-2.987 2.89 0 1.656 1.266 2.89 2.987 2.89zm0-.536c-1.372 0-2.394-.999-2.394-2.354 0-1.356 1.022-2.354 2.394-2.354 1.364 0 2.379.998 2.379 2.354 0 1.355-1.015 2.354-2.379 2.354zM149.29 40.575h.633l-2.598-5.682h-.593l-2.597 5.682h.625l.682-1.518h3.166zm-3.63-2.005 1.365-3.052 1.363 3.052zM155.402 40.575l-1.388-1.948c.828-.268 1.299-.893 1.299-1.786 0-1.218-.877-1.948-2.322-1.948h-2.127v5.682h.601v-1.802h1.526c.162 0 .309-.008.455-.024l1.298 1.826zm-2.427-2.314h-1.51v-2.849h1.51c1.136 0 1.737.52 1.737 1.429 0 .893-.6 1.42-1.737 1.42zM156.733 40.575h2.314c1.818 0 3.044-1.169 3.044-2.841 0-1.672-1.226-2.841-3.044-2.841h-2.314zm.601-.52v-4.643h1.68c1.51 0 2.484.958 2.484 2.322s-.974 2.321-2.484 2.321z" style="font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:8.11767px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;fill:#555753;fill-opacity:1;stroke-width:.202942px" transform="matrix(.61336 0 0 .61336 25.104 14.58)"/></g><path d="M316.774 397.581h-20.54c.333 4.452 3.922 7.776 8.708 7.776 3.39 0 6.314-1.396 8.64-3.655.466-.467.998-.6 1.596-.6.798 0 1.596.4 2.127 1.064.333.466.532.998.532 1.529 0 .731-.333 1.528-.931 2.127-2.792 2.99-7.51 4.985-12.164 4.985-8.442 0-15.22-6.78-15.22-15.221 0-8.442 6.58-15.221 15.02-15.221 8.376 0 14.624 6.513 14.624 15.087 0 1.265-1.13 2.129-2.392 2.129zm-12.231-11.765c-4.453 0-7.51 2.925-8.175 7.177h16.35c-.598-4.053-3.788-7.177-8.175-7.177zM375.463 410.808c-8.44 0-15.22-6.78-15.22-15.222 0-8.441 6.78-15.22 15.22-15.22 8.443 0 15.222 6.779 15.222 15.22 0 8.442-6.78 15.222-15.222 15.222zm0-24.66c-5.316 0-8.773 4.254-8.773 9.438 0 5.184 3.457 9.439 8.773 9.439 5.318 0 8.775-4.255 8.775-9.439s-3.457-9.438-8.775-9.438zM412.662 380.366c-4.46 0-7.41 1.319-10.014 4.63l-.24-1.54a3.26 3.26 0 0 0-6.496.41v23.419a3.262 3.262 0 0 0 3.257 3.257 3.263 3.263 0 0 0 3.257-3.257v-12.562c0-5.716 4.985-8.574 10.236-8.574 1.595 0 2.858-1.33 2.858-2.926a2.835 2.835 0 0 0-2.858-2.857zM447.026 395.586c.067-8.175-5.783-15.22-15.222-15.22-8.442 0-15.288 6.779-15.288 15.22 0 8.442 6.647 15.222 14.69 15.222 4.015 0 7.627-2.066 9.239-4.225l.793 2.014a2.99 2.99 0 0 0 5.788-1.048v-7.807zm-15.222 9.439c-5.318 0-8.774-4.255-8.774-9.439s3.456-9.438 8.774-9.438c5.317 0 8.774 4.254 8.774 9.438 0 5.184-3.457 9.439-8.774 9.439zM355.015 368.334c0-1.794-1.462-3.19-3.257-3.19-1.794 0-3.257 1.396-3.257 3.19v17.15c-1.661-3.058-5.25-5.118-9.505-5.118-8.64 0-14.424 6.513-14.424 15.22 0 8.708 5.983 15.222 14.424 15.222 3.765 0 7.03-1.554 8.986-4.255l.723 1.834a3.25 3.25 0 0 0 6.31-1.088v-38.965zm-15.221 36.69c-5.318 0-8.708-4.254-8.708-9.438 0-5.184 3.39-9.438 8.708-9.438 5.317 0 8.707 4.055 8.707 9.438 0 5.384-3.39 9.439-8.707 9.439zM287.216 365.34a12.37 12.37 0 0 0-1.801-.132c-6.732 0-12.208 5.477-12.208 12.208v3.813h-3.989a2.667 2.667 0 0 0-2.659 2.658c0 1.463 1.197 2.938 2.66 2.938h3.987v20.46a3.263 3.263 0 0 0 3.257 3.257 3.263 3.263 0 0 0 3.257-3.257v-20.46h4.41c1.462 0 2.658-1.475 2.658-2.938a2.666 2.666 0 0 0-2.658-2.658h-4.407v-3.813c0-3.139 2.553-6.115 5.692-6.115.282 0 .567.021.846.062 1.78.264 3.436-.543 3.7-2.323a3.259 3.259 0 0 0-2.745-3.7z" style="fill:#3c6eb4" transform="matrix(.05465 0 0 .05465 47.047 12.693)"/><path d="M181.983 61.675h2.816v.38h-1.181v2.949h-.453v-2.95h-1.182v-.379m3.262 0h.67l.85 2.265.854-2.265h.671v3.329h-.44V62.08l-.857 2.283h-.453l-.858-2.283v2.923h-.437v-3.329" style="fill:#294172;enable-background:new" transform="matrix(.05465 0 0 .05465 61.615 31.567)"/><path d="M54.061 31.075a5.292 5.292 0 0 0-5.292 5.292 5.292 5.292 0 0 0 5.292 5.291 5.292 5.292 0 0 0 5.292-5.291 5.292 5.292 0 0 0-5.292-5.292zm0 .748a4.543 4.543 0 0 1 4.543 4.544 4.543 4.543 0 0 1-4.543 4.543 4.543 4.543 0 0 1-4.543-4.543 4.543 4.543 0 0 1 4.543-4.544z" style="color:#000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000;solid-opacity:1;fill:#ffc107;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34766;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"/><rect ry=".028" y="33.89" x="51.132" height=".811" width="5.859" style="opacity:1;fill:#ffc107;fill-opacity:1;stroke:#ffc107;stroke-width:.350057;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"/><path transform="matrix(.26458 0 0 .26458 48.767 31.073)" d="M10.557 15.932a.53.53 0 0 0-.532.53V30.52c0 .293.238.529.532.529h18.906a.529.529 0 0 0 .531-.53V16.464a.53.53 0 0 0-.531-.531H10.557zm6.418.976h6.07c.907 0 1.637.73 1.637 1.637s-.73 1.637-1.637 1.637h-6.07c-.907 0-1.637-.73-1.637-1.637s.73-1.637 1.637-1.637z" style="opacity:1;fill:#ffc107;fill-opacity:1;stroke:#ffc107;stroke-width:1.47024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"/><g><g aria-label="staging instance" style="font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:54.8649px;line-height:1.25;font-family:Comfortaa;-inkscape-font-specification:Comfortaa;letter-spacing:0;word-spacing:0;fill:#000;fill-opacity:1;stroke:none;stroke-width:4.84102"><path d="M40.155 65.435q-3.73 0-7.022-1.152-3.292-1.152-5.158-3.018-.713-.713-.713-1.7 0-1.317 1.097-2.14 1.043-.769 1.92-.769 1.098 0 2.086.988 1.042 1.152 3.127 2.03 2.085.823 4.444.823 3.127 0 4.828-1.042 1.756-1.043 1.756-2.799 0-1.7-1.701-2.798-1.7-1.152-5.761-1.92-10.534-2.03-10.534-8.669 0-2.688 1.591-4.553 1.591-1.866 4.17-2.798 2.578-.933 5.486-.933 3.567 0 6.365 1.152 2.853 1.152 4.499 3.182.713.878.713 1.756 0 .933-.933 1.7-.603.44-1.536.44-1.427 0-2.579-1.043-1.371-1.262-2.908-1.756-1.536-.548-3.73-.548-2.524 0-4.17.878-1.591.823-1.591 2.359 0 1.097.548 1.865.549.713 2.085 1.372 1.536.603 4.444 1.207 5.98 1.207 8.45 3.347 2.523 2.14 2.523 5.541 0 2.524-1.371 4.609-1.372 2.03-4.06 3.237-2.634 1.152-6.365 1.152zM71.812 59.729q.988 0 1.646.768.714.768.714 1.975t-.933 1.975q-.878.768-2.304.768h-.988q-2.688 0-4.938-1.371-2.194-1.427-3.456-3.84-1.262-2.415-1.262-5.432V41.02h-2.524q-1.152 0-1.865-.658-.714-.659-.714-1.646 0-1.098.714-1.756.713-.658 1.865-.658h2.524V28.4q0-1.207.768-1.975t1.975-.768q1.207 0 1.975.768t.768 1.975v7.9h4.664q1.152 0 1.865.659.713.658.713 1.756 0 .987-.713 1.646-.713.658-1.865.658h-4.664v13.552q0 2.194 1.207 3.676 1.207 1.48 2.963 1.48zM94.636 34.985q4.225 0 7.626 2.03 3.457 1.975 5.432 5.486 2.03 3.457 2.03 7.736v12.235q0 1.207-.823 2.03-.768.768-1.975.768t-2.03-.768q-.768-.823-.768-2.03v-2.03q-1.92 2.36-4.664 3.676-2.743 1.317-5.925 1.317-3.95 0-7.187-1.975-3.183-1.975-5.048-5.432-1.81-3.511-1.81-7.79 0-4.28 1.975-7.737 1.975-3.511 5.431-5.486 3.512-2.03 7.736-2.03zm0 25.512q2.743 0 4.938-1.317 2.25-1.371 3.511-3.676 1.262-2.359 1.262-5.267 0-2.908-1.262-5.267-1.262-2.359-3.511-3.676-2.195-1.371-4.938-1.371t-4.993 1.371q-2.194 1.317-3.511 3.676-1.262 2.36-1.262 5.267 0 2.908 1.262 5.267 1.317 2.305 3.511 3.676 2.25 1.317 4.993 1.317zM131.67 34.985q4.334 0 7.736 1.975 3.456 1.92 5.377 5.377 1.975 3.456 1.975 7.9v11.851q0 4.334-1.92 7.9-1.92 3.567-5.432 5.597-3.457 2.085-7.846 2.085-3.95 0-7.352-1.591-3.401-1.537-5.706-4.444-.603-.769-.603-1.537 0-1.152 1.152-1.975.768-.494 1.536-.494 1.372 0 2.25 1.153 1.481 1.92 3.73 2.907 2.25 1.043 5.103 1.043 2.688 0 4.883-1.317 2.194-1.262 3.511-3.786 1.317-2.468 1.317-5.925v-2.688q-1.7 3.017-4.499 4.718-2.798 1.7-6.31 1.7-4.06 0-7.296-1.92-3.183-1.975-4.993-5.431-1.756-3.457-1.756-7.846 0-4.444 1.92-7.9 1.92-3.457 5.377-5.377 3.457-1.975 7.846-1.975zm0 25.512q2.798 0 4.993-1.317 2.249-1.317 3.456-3.62 1.262-2.36 1.262-5.323 0-2.962-1.262-5.322-1.207-2.359-3.456-3.676-2.195-1.316-4.993-1.316-2.798 0-5.048 1.316-2.194 1.317-3.456 3.676-1.262 2.36-1.262 5.322 0 2.963 1.262 5.322 1.262 2.304 3.456 3.621 2.25 1.317 5.048 1.317zM158.444 65.215q-1.207 0-2.03-.768-.768-.823-.768-2.03V38.002q0-1.262.768-2.03.823-.768 2.03-.768 1.262 0 2.03.768.768.768.768 2.03v24.415q0 1.207-.768 2.03-.768.768-2.03.768zm0-34.894q-1.481 0-2.579-1.042-1.042-1.097-1.042-2.579 0-1.481 1.042-2.524 1.098-1.097 2.579-1.097t2.524 1.097q1.097 1.043 1.097 2.524 0 1.482-1.097 2.579-1.043 1.042-2.524 1.042zM186.59 34.93q3.785 0 6.803 1.646 3.017 1.646 4.718 4.828 1.7 3.127 1.7 7.571v13.497q0 1.207-.822 2.03-.768.768-1.975.768t-2.03-.768q-.768-.823-.768-2.03V48.975q0-4.444-2.414-6.693-2.36-2.304-6.31-2.304-2.304 0-4.224.932-1.866.933-2.963 2.524-1.043 1.591-1.043 3.566v15.472q0 1.207-.768 2.03-.768.768-2.03.768-1.207 0-2.03-.768-.768-.823-.768-2.03v-24.47q0-1.262.768-2.03.823-.768 2.03-.768 1.262 0 2.03.768.768.768.768 2.03v.604q1.756-1.756 4.17-2.688 2.414-.988 5.157-.988zM222.69 34.985q4.335 0 7.736 1.975 3.457 1.92 5.377 5.377 1.975 3.456 1.975 7.9v11.851q0 4.334-1.92 7.9-1.92 3.567-5.432 5.597-3.456 2.085-7.845 2.085-3.95 0-7.352-1.591-3.402-1.537-5.706-4.444-.604-.769-.604-1.537 0-1.152 1.153-1.975.768-.494 1.536-.494 1.371 0 2.25 1.153 1.48 1.92 3.73 2.907 2.25 1.043 5.103 1.043 2.688 0 4.883-1.317 2.194-1.262 3.51-3.786 1.318-2.468 1.318-5.925v-2.688q-1.701 3.017-4.5 4.718-2.797 1.7-6.309 1.7-4.06 0-7.297-1.92-3.182-1.975-4.992-5.431-1.756-3.457-1.756-7.846 0-4.444 1.92-7.9 1.92-3.457 5.377-5.377 3.456-1.975 7.846-1.975zm0 25.512q2.799 0 4.993-1.317 2.25-1.317 3.457-3.62 1.262-2.36 1.262-5.323 0-2.962-1.262-5.322-1.207-2.359-3.457-3.676-2.194-1.316-4.992-1.316-2.799 0-5.048 1.316-2.195 1.317-3.457 3.676-1.261 2.36-1.261 5.322 0 2.963 1.261 5.322 1.262 2.304 3.457 3.621 2.25 1.317 5.048 1.317zM265.54 65.215q-1.207 0-2.03-.768-.768-.823-.768-2.03V38.002q0-1.262.768-2.03.823-.768 2.03-.768 1.262 0 2.03.768.768.768.768 2.03v24.415q0 1.207-.768 2.03-.768.768-2.03.768zm0-34.894q-1.481 0-2.579-1.042-1.042-1.097-1.042-2.579 0-1.481 1.042-2.524 1.098-1.097 2.579-1.097t2.524 1.097q1.097 1.043 1.097 2.524 0 1.482-1.097 2.579-1.043 1.042-2.524 1.042zM293.686 34.93q3.785 0 6.803 1.646 3.017 1.646 4.718 4.828 1.701 3.127 1.701 7.571v13.497q0 1.207-.823 2.03-.768.768-1.975.768t-2.03-.768q-.768-.823-.768-2.03V48.975q0-4.444-2.414-6.693-2.36-2.304-6.31-2.304-2.304 0-4.224.932-1.866.933-2.963 2.524-1.042 1.591-1.042 3.566v15.472q0 1.207-.769 2.03-.768.768-2.03.768-1.207 0-2.03-.768-.768-.823-.768-2.03v-24.47q0-1.262.768-2.03.823-.768 2.03-.768 1.262 0 2.03.768.769.768.769 2.03v.604q1.755-1.756 4.17-2.688 2.413-.988 5.157-.988zM327.098 65.435q-3.73 0-7.022-1.152-3.292-1.152-5.158-3.018-.713-.713-.713-1.7 0-1.317 1.097-2.14 1.043-.769 1.92-.769 1.098 0 2.085.988 1.043 1.152 3.128 2.03 2.085.823 4.444.823 3.127 0 4.828-1.042 1.756-1.043 1.756-2.799 0-1.7-1.701-2.798-1.701-1.152-5.761-1.92-10.534-2.03-10.534-8.669 0-2.688 1.59-4.553 1.592-1.866 4.17-2.798 2.58-.933 5.487-.933 3.566 0 6.364 1.152 2.853 1.152 4.5 3.182.713.878.713 1.756 0 .933-.933 1.7-.604.44-1.536.44-1.427 0-2.579-1.043-1.372-1.262-2.908-1.756-1.536-.548-3.73-.548-2.524 0-4.17.878-1.591.823-1.591 2.359 0 1.097.548 1.865.549.713 2.085 1.372 1.536.603 4.444 1.207 5.98 1.207 8.45 3.347 2.523 2.14 2.523 5.541 0 2.524-1.371 4.609-1.372 2.03-4.06 3.237-2.634 1.152-6.365 1.152zM358.755 59.729q.988 0 1.646.768.713.768.713 1.975t-.932 1.975q-.878.768-2.305.768h-.987q-2.689 0-4.938-1.371-2.195-1.427-3.457-3.84-1.261-2.415-1.261-5.432V41.02h-2.524q-1.152 0-1.866-.658-.713-.659-.713-1.646 0-1.098.713-1.756.714-.658 1.866-.658h2.524V28.4q0-1.207.768-1.975t1.975-.768q1.207 0 1.975.768t.768 1.975v7.9h4.664q1.152 0 1.865.659.713.658.713 1.756 0 .987-.713 1.646-.713.658-1.865.658h-4.664v13.552q0 2.194 1.207 3.676 1.207 1.48 2.963 1.48zM381.579 34.985q4.225 0 7.626 2.03 3.457 1.975 5.432 5.486 2.03 3.457 2.03 7.736v12.235q0 1.207-.823 2.03-.768.768-1.975.768t-2.03-.768q-.768-.823-.768-2.03v-2.03q-1.92 2.36-4.664 3.676-2.743 1.317-5.925 1.317-3.95 0-7.188-1.975-3.182-1.975-5.047-5.432-1.81-3.511-1.81-7.79 0-4.28 1.974-7.737 1.976-3.511 5.432-5.486 3.511-2.03 7.736-2.03zm0 25.512q2.743 0 4.938-1.317 2.25-1.371 3.511-3.676 1.262-2.359 1.262-5.267 0-2.908-1.262-5.267-1.262-2.359-3.511-3.676-2.195-1.371-4.938-1.371t-4.993 1.371q-2.194 1.317-3.511 3.676-1.262 2.36-1.262 5.267 0 2.908 1.262 5.267 1.317 2.305 3.511 3.676 2.25 1.317 4.993 1.317zM419.93 34.93q3.785 0 6.803 1.646 3.017 1.646 4.718 4.828 1.7 3.127 1.7 7.571v13.497q0 1.207-.822 2.03-.768.768-1.975.768t-2.03-.768q-.768-.823-.768-2.03V48.975q0-4.444-2.414-6.693-2.36-2.304-6.31-2.304-2.304 0-4.224.932-1.866.933-2.963 2.524-1.043 1.591-1.043 3.566v15.472q0 1.207-.768 2.03-.768.768-2.03.768-1.207 0-2.03-.768-.768-.823-.768-2.03v-24.47q0-1.262.768-2.03.823-.768 2.03-.768 1.262 0 2.03.768.768.768.768 2.03v.604q1.756-1.756 4.17-2.688 2.414-.988 5.158-.988zM456.03 65.435q-4.334 0-7.79-1.975-3.457-1.975-5.432-5.432-1.92-3.511-1.92-7.79 0-4.39 1.865-7.846 1.92-3.512 5.322-5.432 3.402-1.975 7.681-1.975 6.474 0 10.754 4.938.548.603.548 1.426 0 1.207-1.207 2.03-.548.384-1.262.384-1.261 0-2.14-.987-1.37-1.482-3.017-2.14-1.59-.713-3.676-.713-4.224 0-6.858 2.853-2.633 2.798-2.633 7.461 0 2.963 1.207 5.322 1.262 2.304 3.456 3.621 2.25 1.317 5.103 1.317 3.73 0 6.035-1.92 1.042-.768 2.03-.768.768 0 1.426.493 1.043.878 1.043 1.976 0 .823-.659 1.48-3.95 3.677-9.875 3.677zM502.337 49.743q0 1.043-.714 1.756-.713.659-1.81.659h-20.849q.604 3.84 3.457 6.2 2.907 2.358 7.077 2.358 1.646 0 3.402-.603 1.81-.604 2.962-1.481.769-.604 1.811-.604 1.042 0 1.646.549.988.823.988 1.865 0 .988-.878 1.646-1.866 1.481-4.664 2.414-2.743.933-5.267.933-4.499 0-8.065-1.92-3.566-1.976-5.596-5.432-1.975-3.457-1.975-7.846t1.865-7.845q1.92-3.512 5.267-5.432 3.402-1.975 7.681-1.975 4.225 0 7.297 1.865 3.073 1.866 4.719 5.212 1.646 3.347 1.646 7.681zm-13.662-10.04q-4.005 0-6.529 2.195-2.469 2.194-3.127 5.87h18.27q-.494-3.676-2.743-5.87-2.25-2.195-5.87-2.195z" style="font-style:normal;font-variant:normal;font-weight:700;font-stretch:normal;font-size:54.8649px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa Bold';fill:#ffc107;fill-opacity:1;stroke-width:4.84102" transform="matrix(.05465 0 0 .05465 96.969 31.568)"/></g></g></g></svg> 

\ No newline at end of file

@@ -86,7 +86,7 @@ 

  

      const bug_badges = ["Proposed FE", "Accepted FE", "Proposed Blocker", "Accepted Blocker"]

        .filter(kw => bzs.map(bug => bug.keywords.includes(kw.replace(" ", ""))).some(R.identity))

-       .map(kw => <BBBadge color={kw.includes("Proposed")?"warning":"danger"}>{kw}</BBBadge>)

+       .map(kw => <BBBadge key={kw} color={kw.includes("Proposed")?"warning":"danger"}>{kw}</BBBadge>)

  

      const cve_bage = bzs.map(bug => bug.keywords.includes("Security") && bug.keywords.includes("SecurityTracking")).some(R.identity)?

        <BBBadge color="danger">CVE</BBBadge> : null

file modified
+5 -4
@@ -1,5 +1,5 @@ 

  import React from 'react';

- import ReactDOM from 'react-dom';

+ import { createRoot } from 'react-dom/client';

  /*

  import $ from 'jquery';

  import Popper from 'popper.js';
@@ -17,6 +17,8 @@ 

  import App from './components/App';

  import * as serviceWorker from './serviceWorker';

  

+ const container = document.getElementById('root');

+ const root = createRoot(container);

  

  const loggerMiddleware = createLogger();

  const store = createStore(reducer, applyMiddleware(
@@ -24,13 +26,12 @@ 

    loggerMiddleware

  ));

  

- ReactDOM.render(

+ root.render(

    <React.StrictMode>

      <Provider store={store}>

        <App />

      </Provider>

-   </React.StrictMode>,

-   document.getElementById('root')

+   </React.StrictMode>

  );

  

  // If you want your app to work offline and load faster, you can change

file modified
+4009 -5779
@@ -2,6 +2,11 @@ 

  # yarn lockfile v1

  

  

+ "@adobe/css-tools@^4.0.1":

+   version "4.0.1"

+   resolved "https://registry.yarnpkg.com/@adobe/css-tools/-/css-tools-4.0.1.tgz#b38b444ad3aa5fedbb15f2f746dcd934226a12dd"

+   integrity sha512-+u76oB43nOHrF4DDWRLWDCtci7f3QJoEBigemIdIeTi1ODqjx6Tad9NCVnPRwewWlKkVab5PlK8DCtPTyX7S8g==

+ 

  "@ampproject/remapping@^2.1.0":

    version "2.2.0"

    resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d"
@@ -10,55 +15,40 @@ 

      "@jridgewell/gen-mapping" "^0.1.0"

      "@jridgewell/trace-mapping" "^0.3.9"

  

- "@babel/code-frame@7.10.4":

-   version "7.10.4"

-   resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"

-   integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==

-   dependencies:

-     "@babel/highlight" "^7.10.4"

- 

- "@babel/code-frame@7.12.11":

-   version "7.12.11"

-   resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"

-   integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==

+ "@apideck/better-ajv-errors@^0.3.1":

+   version "0.3.6"

+   resolved "https://registry.yarnpkg.com/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz#957d4c28e886a64a8141f7522783be65733ff097"

+   integrity sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==

    dependencies:

-     "@babel/highlight" "^7.10.4"

+     json-schema "^0.4.0"

+     jsonpointer "^5.0.0"

+     leven "^3.1.0"

  

- "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.16.7", "@babel/code-frame@^7.5.5":

+ "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.16.7":

    version "7.16.7"

    resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789"

    integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==

    dependencies:

      "@babel/highlight" "^7.16.7"

  

+ "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.8.3":

+   version "7.18.6"

+   resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a"

+   integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==

+   dependencies:

+     "@babel/highlight" "^7.18.6"

+ 

  "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.17.10":

    version "7.17.10"

    resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.10.tgz#711dc726a492dfc8be8220028b1b92482362baab"

    integrity sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==

  

- "@babel/core@7.12.3":

-   version "7.12.3"

-   resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.3.tgz#1b436884e1e3bff6fb1328dc02b208759de92ad8"

-   integrity sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==

-   dependencies:

-     "@babel/code-frame" "^7.10.4"

-     "@babel/generator" "^7.12.1"

-     "@babel/helper-module-transforms" "^7.12.1"

-     "@babel/helpers" "^7.12.1"

-     "@babel/parser" "^7.12.3"

-     "@babel/template" "^7.10.4"

-     "@babel/traverse" "^7.12.1"

-     "@babel/types" "^7.12.1"

-     convert-source-map "^1.7.0"

-     debug "^4.1.0"

-     gensync "^1.0.0-beta.1"

-     json5 "^2.1.2"

-     lodash "^4.17.19"

-     resolve "^1.3.2"

-     semver "^5.4.1"

-     source-map "^0.5.0"

+ "@babel/compat-data@^7.17.7", "@babel/compat-data@^7.18.8":

+   version "7.18.8"

+   resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.8.tgz#2483f565faca607b8535590e84e7de323f27764d"

+   integrity sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==

  

- "@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.16.0", "@babel/core@^7.7.5", "@babel/core@^7.8.4":

+ "@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.16.0":

    version "7.18.2"

    resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.2.tgz#87b2fcd7cce9becaa7f5acebdc4f09f3dd19d876"

    integrity sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==
@@ -79,7 +69,46 @@ 

      json5 "^2.2.1"

      semver "^6.3.0"

  

- "@babel/generator@^7.12.1", "@babel/generator@^7.18.2":

+ "@babel/core@^7.11.1", "@babel/core@^7.7.2", "@babel/core@^7.8.0":

+   version "7.18.10"

+   resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.10.tgz#39ad504991d77f1f3da91be0b8b949a5bc466fb8"

+   integrity sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==

+   dependencies:

+     "@ampproject/remapping" "^2.1.0"

+     "@babel/code-frame" "^7.18.6"

+     "@babel/generator" "^7.18.10"

+     "@babel/helper-compilation-targets" "^7.18.9"

+     "@babel/helper-module-transforms" "^7.18.9"

+     "@babel/helpers" "^7.18.9"

+     "@babel/parser" "^7.18.10"

+     "@babel/template" "^7.18.10"

+     "@babel/traverse" "^7.18.10"

+     "@babel/types" "^7.18.10"

+     convert-source-map "^1.7.0"

+     debug "^4.1.0"

+     gensync "^1.0.0-beta.2"

+     json5 "^2.2.1"

+     semver "^6.3.0"

+ 

+ "@babel/eslint-parser@^7.16.3":

+   version "7.18.9"

+   resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.18.9.tgz#255a63796819a97b7578751bb08ab9f2a375a031"

+   integrity sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==

+   dependencies:

+     eslint-scope "^5.1.1"

+     eslint-visitor-keys "^2.1.0"

+     semver "^6.3.0"

+ 

+ "@babel/generator@^7.18.10", "@babel/generator@^7.7.2":

+   version "7.18.12"

+   resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.12.tgz#fa58daa303757bd6f5e4bbca91b342040463d9f4"

+   integrity sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==

+   dependencies:

+     "@babel/types" "^7.18.10"

+     "@jridgewell/gen-mapping" "^0.3.2"

+     jsesc "^2.5.1"

+ 

+ "@babel/generator@^7.18.2":

    version "7.18.2"

    resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.2.tgz#33873d6f89b21efe2da63fe554460f3df1c5880d"

    integrity sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==
@@ -95,6 +124,13 @@ 

    dependencies:

      "@babel/types" "^7.16.7"

  

+ "@babel/helper-annotate-as-pure@^7.18.6":

+   version "7.18.6"

+   resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb"

+   integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==

+   dependencies:

+     "@babel/types" "^7.18.6"

+ 

  "@babel/helper-builder-binary-assignment-operator-visitor@^7.16.7":

    version "7.16.7"

    resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz#38d138561ea207f0f69eb1626a418e4f7e6a580b"
@@ -103,6 +139,14 @@ 

      "@babel/helper-explode-assignable-expression" "^7.16.7"

      "@babel/types" "^7.16.7"

  

+ "@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6":

+   version "7.18.9"

+   resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb"

+   integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==

+   dependencies:

+     "@babel/helper-explode-assignable-expression" "^7.18.6"

+     "@babel/types" "^7.18.9"

+ 

  "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.7", "@babel/helper-compilation-targets@^7.17.10", "@babel/helper-compilation-targets@^7.18.2":

    version "7.18.2"

    resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.2.tgz#67a85a10cbd5fc7f1457fec2e7f45441dc6c754b"
@@ -113,6 +157,16 @@ 

      browserslist "^4.20.2"

      semver "^6.3.0"

  

+ "@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9":

+   version "7.18.9"

+   resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz#69e64f57b524cde3e5ff6cc5a9f4a387ee5563bf"

+   integrity sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==

+   dependencies:

+     "@babel/compat-data" "^7.18.8"

+     "@babel/helper-validator-option" "^7.18.6"

+     browserslist "^4.20.2"

+     semver "^6.3.0"

+ 

  "@babel/helper-create-class-features-plugin@^7.17.12", "@babel/helper-create-class-features-plugin@^7.18.0":

    version "7.18.0"

    resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.0.tgz#fac430912606331cb075ea8d82f9a4c145a4da19"
@@ -126,6 +180,19 @@ 

      "@babel/helper-replace-supers" "^7.16.7"

      "@babel/helper-split-export-declaration" "^7.16.7"

  

+ "@babel/helper-create-class-features-plugin@^7.18.6":

+   version "7.18.9"

+   resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz#d802ee16a64a9e824fcbf0a2ffc92f19d58550ce"

+   integrity sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==

+   dependencies:

+     "@babel/helper-annotate-as-pure" "^7.18.6"

+     "@babel/helper-environment-visitor" "^7.18.9"

+     "@babel/helper-function-name" "^7.18.9"

+     "@babel/helper-member-expression-to-functions" "^7.18.9"

+     "@babel/helper-optimise-call-expression" "^7.18.6"

+     "@babel/helper-replace-supers" "^7.18.9"

+     "@babel/helper-split-export-declaration" "^7.18.6"

+ 

  "@babel/helper-create-regexp-features-plugin@^7.16.7", "@babel/helper-create-regexp-features-plugin@^7.17.12":

    version "7.17.12"

    resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.12.tgz#bb37ca467f9694bbe55b884ae7a5cc1e0084e4fd"
@@ -134,6 +201,14 @@ 

      "@babel/helper-annotate-as-pure" "^7.16.7"

      regexpu-core "^5.0.1"

  

+ "@babel/helper-create-regexp-features-plugin@^7.18.6":

+   version "7.18.6"

+   resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.18.6.tgz#3e35f4e04acbbf25f1b3534a657610a000543d3c"

+   integrity sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==

+   dependencies:

+     "@babel/helper-annotate-as-pure" "^7.18.6"

+     regexpu-core "^5.1.0"

+ 

  "@babel/helper-define-polyfill-provider@^0.3.1":

    version "0.3.1"

    resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz#52411b445bdb2e676869e5a74960d2d3826d2665"
@@ -148,11 +223,28 @@ 

      resolve "^1.14.2"

      semver "^6.1.2"

  

+ "@babel/helper-define-polyfill-provider@^0.3.2":

+   version "0.3.2"

+   resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.2.tgz#bd10d0aca18e8ce012755395b05a79f45eca5073"

+   integrity sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==

+   dependencies:

+     "@babel/helper-compilation-targets" "^7.17.7"

+     "@babel/helper-plugin-utils" "^7.16.7"

+     debug "^4.1.1"

+     lodash.debounce "^4.0.8"

+     resolve "^1.14.2"

+     semver "^6.1.2"

+ 

  "@babel/helper-environment-visitor@^7.16.7", "@babel/helper-environment-visitor@^7.18.2":

    version "7.18.2"

    resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz#8a6d2dedb53f6bf248e31b4baf38739ee4a637bd"

    integrity sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==

  

+ "@babel/helper-environment-visitor@^7.18.9":

+   version "7.18.9"

+   resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be"

+   integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==

+ 

  "@babel/helper-explode-assignable-expression@^7.16.7":

    version "7.16.7"

    resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz#12a6d8522fdd834f194e868af6354e8650242b7a"
@@ -160,6 +252,13 @@ 

    dependencies:

      "@babel/types" "^7.16.7"

  

+ "@babel/helper-explode-assignable-expression@^7.18.6":

+   version "7.18.6"

+   resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096"

+   integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==

+   dependencies:

+     "@babel/types" "^7.18.6"

+ 

  "@babel/helper-function-name@^7.16.7", "@babel/helper-function-name@^7.17.9":

    version "7.17.9"

    resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz#136fcd54bc1da82fcb47565cf16fd8e444b1ff12"
@@ -168,6 +267,14 @@ 

      "@babel/template" "^7.16.7"

      "@babel/types" "^7.17.0"

  

+ "@babel/helper-function-name@^7.18.9":

+   version "7.18.9"

+   resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz#940e6084a55dee867d33b4e487da2676365e86b0"

+   integrity sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==

+   dependencies:

+     "@babel/template" "^7.18.6"

+     "@babel/types" "^7.18.9"

+ 

  "@babel/helper-hoist-variables@^7.16.7":

    version "7.16.7"

    resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246"
@@ -175,6 +282,13 @@ 

    dependencies:

      "@babel/types" "^7.16.7"

  

+ "@babel/helper-hoist-variables@^7.18.6":

+   version "7.18.6"

+   resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678"

+   integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==

+   dependencies:

+     "@babel/types" "^7.18.6"

+ 

  "@babel/helper-member-expression-to-functions@^7.17.7":

    version "7.17.7"

    resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz#a34013b57d8542a8c4ff8ba3f747c02452a4d8c4"
@@ -182,14 +296,28 @@ 

    dependencies:

      "@babel/types" "^7.17.0"

  

- "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7":

+ "@babel/helper-member-expression-to-functions@^7.18.9":

+   version "7.18.9"

+   resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz#1531661e8375af843ad37ac692c132841e2fd815"

+   integrity sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==

+   dependencies:

+     "@babel/types" "^7.18.9"

+ 

+ "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.18.6":

+   version "7.18.6"

+   resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"

+   integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==

+   dependencies:

+     "@babel/types" "^7.18.6"

+ 

+ "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7":

    version "7.16.7"

    resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437"

    integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==

    dependencies:

      "@babel/types" "^7.16.7"

  

- "@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.18.0":

+ "@babel/helper-module-transforms@^7.18.0":

    version "7.18.0"

    resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz#baf05dec7a5875fb9235bd34ca18bad4e21221cd"

    integrity sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==
@@ -203,6 +331,20 @@ 

      "@babel/traverse" "^7.18.0"

      "@babel/types" "^7.18.0"

  

+ "@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.18.9":

+   version "7.18.9"

+   resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz#5a1079c005135ed627442df31a42887e80fcb712"

+   integrity sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==

+   dependencies:

+     "@babel/helper-environment-visitor" "^7.18.9"

+     "@babel/helper-module-imports" "^7.18.6"

+     "@babel/helper-simple-access" "^7.18.6"

+     "@babel/helper-split-export-declaration" "^7.18.6"

+     "@babel/helper-validator-identifier" "^7.18.6"

+     "@babel/template" "^7.18.6"

+     "@babel/traverse" "^7.18.9"

+     "@babel/types" "^7.18.9"

+ 

  "@babel/helper-optimise-call-expression@^7.16.7":

    version "7.16.7"

    resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz#a34e3560605abbd31a18546bd2aad3e6d9a174f2"
@@ -210,11 +352,23 @@ 

    dependencies:

      "@babel/types" "^7.16.7"

  

+ "@babel/helper-optimise-call-expression@^7.18.6":

+   version "7.18.6"

+   resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe"

+   integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==

+   dependencies:

+     "@babel/types" "^7.18.6"

+ 

  "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.17.12", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":

    version "7.17.12"

    resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz#86c2347da5acbf5583ba0a10aed4c9bf9da9cf96"

    integrity sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==

  

+ "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9":

+   version "7.18.9"

+   resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz#4b8aea3b069d8cb8a72cdfe28ddf5ceca695ef2f"

+   integrity sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==

+ 

  "@babel/helper-remap-async-to-generator@^7.16.8":

    version "7.16.8"

    resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz#29ffaade68a367e2ed09c90901986918d25e57e3"
@@ -224,6 +378,16 @@ 

      "@babel/helper-wrap-function" "^7.16.8"

      "@babel/types" "^7.16.8"

  

+ "@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9":

+   version "7.18.9"

+   resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519"

+   integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==

+   dependencies:

+     "@babel/helper-annotate-as-pure" "^7.18.6"

+     "@babel/helper-environment-visitor" "^7.18.9"

+     "@babel/helper-wrap-function" "^7.18.9"

+     "@babel/types" "^7.18.9"

+ 

  "@babel/helper-replace-supers@^7.16.7", "@babel/helper-replace-supers@^7.18.2":

    version "7.18.2"

    resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.18.2.tgz#41fdfcc9abaf900e18ba6e5931816d9062a7b2e0"
@@ -235,6 +399,17 @@ 

      "@babel/traverse" "^7.18.2"

      "@babel/types" "^7.18.2"

  

+ "@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.18.9":

+   version "7.18.9"

+   resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz#1092e002feca980fbbb0bd4d51b74a65c6a500e6"

+   integrity sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==

+   dependencies:

+     "@babel/helper-environment-visitor" "^7.18.9"

+     "@babel/helper-member-expression-to-functions" "^7.18.9"

+     "@babel/helper-optimise-call-expression" "^7.18.6"

+     "@babel/traverse" "^7.18.9"

+     "@babel/types" "^7.18.9"

+ 

  "@babel/helper-simple-access@^7.17.7", "@babel/helper-simple-access@^7.18.2":

    version "7.18.2"

    resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz#4dc473c2169ac3a1c9f4a51cfcd091d1c36fcff9"
@@ -242,6 +417,13 @@ 

    dependencies:

      "@babel/types" "^7.18.2"

  

+ "@babel/helper-simple-access@^7.18.6":

+   version "7.18.6"

+   resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz#d6d8f51f4ac2978068df934b569f08f29788c7ea"

+   integrity sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==

+   dependencies:

+     "@babel/types" "^7.18.6"

+ 

  "@babel/helper-skip-transparent-expression-wrappers@^7.16.0":

    version "7.16.0"

    resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz#0ee3388070147c3ae051e487eca3ebb0e2e8bb09"
@@ -249,6 +431,13 @@ 

    dependencies:

      "@babel/types" "^7.16.0"

  

+ "@babel/helper-skip-transparent-expression-wrappers@^7.18.9":

+   version "7.18.9"

+   resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz#778d87b3a758d90b471e7b9918f34a9a02eb5818"

+   integrity sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==

+   dependencies:

+     "@babel/types" "^7.18.9"

+ 

  "@babel/helper-split-export-declaration@^7.16.7":

    version "7.16.7"

    resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b"
@@ -256,16 +445,38 @@ 

    dependencies:

      "@babel/types" "^7.16.7"

  

+ "@babel/helper-split-export-declaration@^7.18.6":

+   version "7.18.6"

+   resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075"

+   integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==

+   dependencies:

+     "@babel/types" "^7.18.6"

+ 

+ "@babel/helper-string-parser@^7.18.10":

+   version "7.18.10"

+   resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz#181f22d28ebe1b3857fa575f5c290b1aaf659b56"

+   integrity sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==

+ 

  "@babel/helper-validator-identifier@^7.16.7":

    version "7.16.7"

    resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad"

    integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==

  

+ "@babel/helper-validator-identifier@^7.18.6":

+   version "7.18.6"

+   resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076"

+   integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==

+ 

  "@babel/helper-validator-option@^7.16.7":

    version "7.16.7"

    resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23"

    integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==

  

+ "@babel/helper-validator-option@^7.18.6":

+   version "7.18.6"

+   resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"

+   integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==

+ 

  "@babel/helper-wrap-function@^7.16.8":

    version "7.16.8"

    resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz#58afda087c4cd235de92f7ceedebca2c41274200"
@@ -276,7 +487,17 @@ 

      "@babel/traverse" "^7.16.8"

      "@babel/types" "^7.16.8"

  

- "@babel/helpers@^7.12.1", "@babel/helpers@^7.18.2":

+ "@babel/helper-wrap-function@^7.18.9":

+   version "7.18.11"

+   resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.18.11.tgz#bff23ace436e3f6aefb61f85ffae2291c80ed1fb"

+   integrity sha512-oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w==

+   dependencies:

+     "@babel/helper-function-name" "^7.18.9"

+     "@babel/template" "^7.18.10"

+     "@babel/traverse" "^7.18.11"

+     "@babel/types" "^7.18.10"

+ 

+ "@babel/helpers@^7.18.2":

    version "7.18.2"

    resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.2.tgz#970d74f0deadc3f5a938bfa250738eb4ac889384"

    integrity sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==
@@ -285,7 +506,16 @@ 

      "@babel/traverse" "^7.18.2"

      "@babel/types" "^7.18.2"

  

- "@babel/highlight@^7.10.4", "@babel/highlight@^7.16.7":

+ "@babel/helpers@^7.18.9":

+   version "7.18.9"

+   resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.9.tgz#4bef3b893f253a1eced04516824ede94dcfe7ff9"

+   integrity sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==

+   dependencies:

+     "@babel/template" "^7.18.6"

+     "@babel/traverse" "^7.18.9"

+     "@babel/types" "^7.18.9"

+ 

+ "@babel/highlight@^7.16.7":

    version "7.17.12"

    resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.17.12.tgz#257de56ee5afbd20451ac0a75686b6b404257351"

    integrity sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==
@@ -294,11 +524,25 @@ 

      chalk "^2.0.0"

      js-tokens "^4.0.0"

  

- "@babel/parser@^7.1.0", "@babel/parser@^7.12.3", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.18.0", "@babel/parser@^7.7.0":

+ "@babel/highlight@^7.18.6":

+   version "7.18.6"

+   resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf"

+   integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==

+   dependencies:

+     "@babel/helper-validator-identifier" "^7.18.6"

+     chalk "^2.0.0"

+     js-tokens "^4.0.0"

+ 

+ "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.18.0":

    version "7.18.3"

    resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.3.tgz#39e99c7b0c4c56cef4d1eed8de9f506411c2ebc2"

    integrity sha512-rL50YcEuHbbauAFAysNsJA4/f89fGTOBRNs9P81sniKnKAr4xULe5AecolcsKbi88xu0ByWYDj/S1AJ3FSFuSQ==

  

+ "@babel/parser@^7.18.10", "@babel/parser@^7.18.11":

+   version "7.18.11"

+   resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.11.tgz#68bb07ab3d380affa9a3f96728df07969645d2d9"

+   integrity sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==

+ 

  "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.17.12":

    version "7.17.12"

    resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12.tgz#1dca338caaefca368639c9ffb095afbd4d420b1e"
@@ -306,6 +550,13 @@ 

    dependencies:

      "@babel/helper-plugin-utils" "^7.17.12"

  

+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6":

+   version "7.18.6"

+   resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2"

+   integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==

+   dependencies:

+     "@babel/helper-plugin-utils" "^7.18.6"

+