Svg Logo

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="icon" type="image/svg+xml" href="../../favicon/favicon.svg">
    <link rel="icon" type="image/png" href="../../favicon/favicon.png">
    <link rel="stylesheet" href="../../css/reactive-graph.css">
    <title>Logo - Design System - Reactive Graph</title>
    <style>
        body {
            display: grid;
            place-content: center;
            padding: var(--size-7);
            gap: var(--size-7);
        }

        .logo-override {
            width: 400px;
            height: 400px;
        }
    </style>
    <script>
        var r = document.querySelector(':root');

        function set(layer, color) {
            var cssVar = '--rg-logo-' + layer + '-fill';
            var cssVarValue;
            if (color === 'transparent' || color === 'black' || color === 'white') {
                cssVarValue = color;
            } else {
                cssVarValue = 'var(--' + color + ')';
            }
            console.log(cssVar + ' = ' + cssVarValue);
            r.style.setProperty(cssVar, cssVarValue)
        }
    </script>
</head>

<body>
    <main>

        <h1>SVG Logo Configurator</h1>

        <table>
            <tr>
                <td>
                    Environment
                </td>
                <td>
                    <div class="tag" style="background-color: black; border-color: white;" onclick="set('environment', 'transparent')">transparent</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--malachite); color: black;" onclick="set('environment', 'malachite')">malachite</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--selective-yellow); color: black;" onclick="set('environment', 'selective-yellow')">selective-yellow
                    </div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--celestial-blue);" onclick="set('environment', 'celestial-blue')">celestial-blue</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--mexican-pink);" onclick="set('environment', 'mexican-pink')">mexican-pink</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--chartreuse); color: black;" onclick="set('environment', 'chartreuse')">chartreuse</div>
                </td>
                <td>
                    <div class="tag" style="background-color: black;" onclick="set('environment', 'black')">black</div>
                </td>
                <td>
                    <div class="tag" style="background-color: white; color: black;" onclick="set('environment', 'white')">white</div>
                </td>
            </tr>
            <tr>
                <td>
                    Applications
                </td>
                <td>
                    <div class="tag" style="background-color: black; border-color: white;" onclick="set('applications', 'transparent')">transparent</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--malachite); color: black;" onclick="set('applications', 'malachite')">malachite</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--selective-yellow); color: black;" onclick="set('applications', 'selective-yellow')">selective-yellow
                    </div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--celestial-blue);" onclick="set('applications', 'celestial-blue')">celestial-blue</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--mexican-pink);" onclick="set('applications', 'mexican-pink')">mexican-pink</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--chartreuse); color: black;" onclick="set('applications', 'chartreuse')">chartreuse</div>
                </td>
                <td>
                    <div class="tag" style="background-color: black;" onclick="set('applications', 'black')">black</div>
                </td>
                <td>
                    <div class="tag" style="background-color: white; color: black;" onclick="set('applications', 'white')">white</div>
                </td>
            </tr>
            <tr>
                <td>
                    API
                </td>
                <td>
                    <div class="tag" style="background-color: black; border-color: white;" onclick="set('api', 'transparent')">transparent</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--malachite); color: black;" onclick="set('api', 'malachite')">malachite</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--selective-yellow); color: black;" onclick="set('api', 'selective-yellow')">selective-yellow</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--celestial-blue);" onclick="set('api', 'celestial-blue')">celestial-blue</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--mexican-pink);" onclick="set('api', 'mexican-pink')">mexican-pink</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--chartreuse); color: black;" onclick="set('api', 'chartreuse')">chartreuse</div>
                </td>
                <td>
                    <div class="tag" style="background-color: black;" onclick="set('api', 'black')">black</div>
                </td>
                <td>
                    <div class="tag" style="background-color: white; color: black;" onclick="set('api', 'white')">white</div>
                </td>
            </tr>
            <tr>
                <td>
                    Runtime
                </td>
                <td>
                    <div class="tag" style="background-color: black; border-color: white;" onclick="set('runtime', 'transparent')">transparent</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--malachite); color: black;" onclick="set('runtime', 'malachite')">malachite</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--selective-yellow); color: black;" onclick="set('runtime', 'selective-yellow')">selective-yellow</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--celestial-blue);" onclick="set('runtime', 'celestial-blue')">celestial-blue</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--mexican-pink);" onclick="set('runtime', 'mexican-pink')">mexican-pink</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--chartreuse); color: black;" onclick="set('runtime', 'chartreuse')">chartreuse</div>
                </td>
                <td>
                    <div class="tag" style="background-color: black;" onclick="set('runtime', 'black')">black</div>
                </td>
                <td>
                    <div class="tag" style="background-color: white; color: black;" onclick="set('runtime', 'white')">white</div>
                </td>
            </tr>
            <tr>
                <td>
                    Flows
                </td>
                <td>
                    <div class="tag" style="background-color: black; border-color: white;" onclick="set('flows', 'transparent')">transparent</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--malachite); color: black;" onclick="set('flows', 'malachite')">malachite</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--selective-yellow); color: black;" onclick="set('flows', 'selective-yellow')">selective-yellow</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--celestial-blue);" onclick="set('flows', 'celestial-blue')">celestial-blue</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--mexican-pink);" onclick="set('flows', 'mexican-pink')">mexican-pink</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--chartreuse); color: black;" onclick="set('flows', 'chartreuse')">chartreuse</div>
                </td>
                <td>
                    <div class="tag" style="background-color: black;" onclick="set('flows', 'black')">black</div>
                </td>
                <td>
                    <div class="tag" style="background-color: white; color: black;" onclick="set('flows', 'white')">white</div>
                </td>
            </tr>
            <tr>
                <td>
                    Relations
                </td>
                <td>
                    <div class="tag" style="background-color: black; border-color: white;" onclick="set('relations', 'transparent')">transparent</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--malachite); color: black;" onclick="set('relations', 'malachite')">malachite</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--selective-yellow); color: black;" onclick="set('relations', 'selective-yellow')">selective-yellow</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--celestial-blue);" onclick="set('relations', 'celestial-blue')">celestial-blue</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--mexican-pink);" onclick="set('relations', 'mexican-pink')">mexican-pink</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--chartreuse); color: black;" onclick="set('relations', 'chartreuse')">chartreuse</div>
                </td>
                <td>
                    <div class="tag" style="background-color: black;" onclick="set('relations', 'black')">black</div>
                </td>
                <td>
                    <div class="tag" style="background-color: white; color: black;" onclick="set('relations', 'white')">white</div>
                </td>
            </tr>
            <tr>
                <td>
                    Entities
                </td>
                <td>
                    <div class="tag" style="background-color: black; border-color: white;" onclick="set('entities', 'transparent')">transparent</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--malachite); color: black;" onclick="set('entities', 'malachite')">malachite</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--selective-yellow); color: black;" onclick="set('entities', 'selective-yellow')">selective-yellow</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--celestial-blue);" onclick="set('entities', 'celestial-blue')">celestial-blue</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--mexican-pink);" onclick="set('entities', 'mexican-pink')">mexican-pink</div>
                </td>
                <td>
                    <div class="tag" style="background-color: var(--chartreuse); color: black;" onclick="set('entities', 'chartreuse')">chartreuse</div>
                </td>
                <td>
                    <div class="tag" style="background-color: black;" onclick="set('entities', 'black')">black</div>
                </td>
                <td>
                    <div class="tag" style="background-color: white; color: black;" onclick="set('entities', 'white')">white</div>
                </td>
            </tr>
        </table>

        <hr />
        <svg id="reactive-graph-logo" width="12.677305mm" height="12.680223mm" viewBox="0 0 12.677305 12.680223" xmlns="http://www.w3.org/2000/svg" class="logo-override">
            <defs id="defs401" />
            <g id="reactive-graph-logo-environment-layer">
                <rect id="reactive-graph-logo-environment" style="fill:var(--rg-logo-environment-fill, transparent);stroke-width:0.000999194;stroke-dasharray:none" width="12.677" height="12.68" x="-1.7347235e-18" y="0" />
            </g>
            <g id="reactive-graph-logo-applications-layer">
                <path id="reactive-graph-logo-applications" style="fill:var(--rg-logo-applications-fill, black);stroke-width:0.0126747" d="M 6.3370809,0 C 6.1501176,1.8749981e-5 5.963438,0.00448588 5.8497721,0.01343587 5.6329224,0.03053586 5.3595217,0.06777084 5.139738,0.1100708 3.4787646,0.42981043 2.0084156,1.4054299 1.0645345,2.8142985 0.57932317,3.5385378 0.24085184,4.3834226 0.08991699,5.2477417 0.02200706,5.6366013 -1.7899983e-4,5.907846 0,6.3443156 2.5299974e-4,6.958545 0.06918805,7.4675946 0.23047689,8.047054 c 0.37332763,1.3412592 1.20581951,2.55202 2.32337241,3.379639 1.033299,0.765229 2.2608551,1.198969 3.5305338,1.247469 v 5.17e-4 c 0.1289639,0.0046 0.2682287,0.0067 0.3100586,0.0046 0.041826,-0.0023 0.1620845,-0.0063 0.2666504,-0.01033 0.4418046,-0.01543 0.9394311,-0.09733 1.4195516,-0.233577 1.4096211,-0.4 2.6649403,-1.305055 3.4902263,-2.5166426 0.680393,-0.9988695 1.062408,-2.1548784 1.102258,-3.3367472 0.02324,-0.6892793 -0.04954,-1.310233 -0.22841,-1.9528524 C 12.071096,3.2868665 11.24365,2.0830718 10.120829,1.2485026 9.1642591,0.53751338 8.011905,0.10563578 6.8254232,0.01343587 6.7109953,0.00456088 6.5240442,-1.8749981e-5 6.3370809,0 Z M 6.3220947,0.51314697 C 7.2760083,0.50923152 8.2285817,0.72592801 9.0717977,1.1787394 11.781484,2.5114643 12.988073,6.1193811 11.624097,8.8139323 10.399401,11.559757 6.8685426,12.917469 4.1253296,11.676807 1.3738845,10.597521 -0.13707481,7.233606 0.87229818,4.457609 1.6165104,2.2597818 3.6180861,0.70760388 5.9133341,0.52813314 6.0493269,0.51861728 6.1858214,0.51370632 6.3220947,0.51314697 Z" />
            </g>
            <g id="reactive-graph-logo-api-layer">
                <path id="reactive-graph-logo-api" style="fill:var(--rg-logo-api-fill, #dc0073);stroke-width:0.00327903" d="M 21.928482,45.760978 C 20.463914,45.621386 18.494338,45.19591 17.214883,44.742729 16.188912,44.379331 14.253952,43.531191 13.457667,43.095848 7.9798481,40.101034 3.9413966,34.523319 2.6020201,28.102551 2.3270739,26.7845 2.2179639,25.820094 2.17401,24.319438 2.0829765,21.211413 2.5674663,18.645114 3.8263798,15.566985 6.4461708,9.1614179 12.035327,4.3281267 18.786083,2.6303972 c 2.897811,-0.7287628 5.968192,-0.8457981 8.955739,-0.3413707 3.932447,0.6639672 7.925699,2.5271401 10.730383,5.0065858 4.275868,3.7800267 6.926344,9.0742627 7.472941,14.9269427 0.106248,1.137645 0.04683,3.854534 -0.10561,4.829404 -0.391231,2.501896 -0.941846,4.224622 -2.108078,6.595608 -0.61889,1.258223 -1.118866,2.105727 -1.821426,3.087488 -3.62411,5.064344 -9.680505,8.442825 -16.190177,9.031481 -0.910177,0.0823 -2.90014,0.07939 -3.791373,-0.0056 z m 4.474504,-2.074046 c 2.353278,-0.315811 4.498286,-0.961605 6.55805,-1.974423 0.85106,-0.418479 2.127842,-1.147203 2.085019,-1.190026 -0.0124,-0.0124 -0.234419,0.04056 -0.493382,0.117682 -1.949169,0.580488 -4.172757,0.153551 -5.82225,-1.117894 -0.594841,-0.458509 -1.458101,-1.398728 -1.776839,-1.935244 -0.596451,-1.003977 -0.908236,-2.162119 -0.88675,-3.293887 l 0.01102,-0.58066 -0.681121,-1.024696 C 25.02212,32.124202 24.591019,31.506361 24.438735,31.314805 l -0.276879,-0.348284 -0.501869,-0.04061 c -0.276029,-0.02233 -0.978354,-0.177309 -1.560722,-0.344391 l -1.058852,-0.303784 -0.239096,0.122445 c -0.552256,0.28282 -0.847792,0.871116 -0.993066,1.9768 -0.144921,1.103007 -0.372917,1.723267 -0.94223,2.563325 -0.584351,0.862246 -1.74567,1.817461 -2.749157,2.26125 -2.297059,1.015869 -5.351587,0.733815 -7.1994698,-0.664796 -0.1970453,-0.149137 -0.3723107,-0.257113 -0.3894785,-0.239945 -0.060873,0.06087 0.9972363,1.25296 1.8302703,2.062018 3.110291,3.020771 7.13903,4.871627 11.877705,5.456774 0.502438,0.06204 3.416453,-0.02794 4.167095,-0.128677 z m 7.254897,-4.825718 c 0.574042,-0.122437 1.066764,-0.37246 1.728266,-0.876977 0.68751,-0.524353 1.021793,-0.923001 1.334725,-1.591719 0.903281,-1.930269 0.128119,-4.640962 -1.67132,-5.844501 -0.661662,-0.442546 -1.209958,-0.625364 -2.020205,-0.673595 -0.454934,-0.02708 -0.711652,-0.07632 -0.858605,-0.164672 -0.342437,-0.205892 -0.947698,-0.886283 -1.367069,-1.53676 -0.215833,-0.334776 -0.606369,-0.939784 -0.867856,-1.344463 -0.467268,-0.723146 -0.474894,-0.742255 -0.444155,-1.112919 0.01892,-0.228197 0.08513,-0.450213 0.16763,-0.562168 0.317801,-0.43124 1.159869,-0.695811 2.550299,-0.801283 0.319364,-0.02422 0.791791,-0.07264 1.049839,-0.107593 0.453725,-0.06145 0.48015,-0.05679 0.802338,0.14145 1.475802,0.908069 3.518072,0.660993 4.839396,-0.585477 0.415917,-0.392356 0.542839,-0.569913 0.822698,-1.150914 0.488646,-1.014452 0.583716,-1.666008 0.373326,-2.558549 -0.261889,-1.111018 -1.191143,-2.246944 -2.285929,-2.794337 -0.58769,-0.293845 -1.307389,-0.488379 -1.814827,-0.490546 -0.841784,-0.0036 -1.925462,0.425297 -2.306118,0.912702 -0.425425,0.544726 -1.043207,1.105921 -1.459276,1.325607 -0.853586,0.450699 -1.904071,0.600054 -2.722537,0.387082 -0.599647,-0.156033 -0.714561,-0.250809 -0.714561,-0.589338 0,-0.240197 0.04051,-0.320795 0.271893,-0.540901 0.229535,-0.218351 0.425709,-0.30732 1.259226,-0.571084 0.869909,-0.275281 1.05106,-0.35969 1.523166,-0.709736 0.643388,-0.477043 0.954693,-0.82791 1.272592,-1.434318 0.335417,-0.639823 0.462568,-1.194711 0.461992,-2.016135 -0.0017,-2.415796 -1.654721,-4.4736239 -3.756856,-4.6768401 -1.617836,-0.1563976 -2.878447,0.267285 -3.933024,1.3218611 -0.535389,0.53539 -0.858427,1.036154 -1.111611,1.723188 -0.165419,0.448879 -0.168342,0.489065 -0.115476,1.587701 0.101163,2.102312 0.04838,2.458807 -0.44748,3.022131 -0.254903,0.289585 -0.279627,0.300888 -0.682501,0.311991 -0.312765,0.0086 -0.610822,0.08691 -1.18377,0.310936 -0.96865,0.378749 -1.247185,0.428463 -1.592408,0.28422 -0.4046,-0.169053 -0.573185,-0.360593 -0.573185,-0.651233 0,-0.411679 -0.252298,-1.271269 -0.526014,-1.792152 -0.321963,-0.612697 -1.063099,-1.373019 -1.625846,-1.667937 -0.576152,-0.301942 -1.054501,-0.427607 -1.807646,-0.474878 -1.428386,-0.08965 -2.548643,0.462463 -3.34047,1.646342 -0.920735,1.376612 -1.058195,3.009848 -0.368028,4.372734 0.198094,0.391181 0.917399,1.131782 1.414271,1.456144 0.447901,0.292393 0.848618,0.40416 1.915856,0.53437 1.72094,0.209965 2.267884,0.622938 2.340386,1.767121 0.02787,0.439877 0.01188,0.51359 -0.199599,0.919994 -0.276165,0.530711 -0.71639,0.90937 -1.765066,1.518222 -0.394507,0.229047 -0.902016,0.546628 -1.127797,0.705736 l -0.410509,0.289287 -0.47756,-0.124404 c -2.375708,-0.618868 -5.0667588,0.973151 -5.9541615,3.522468 -0.1702255,0.489022 -0.1902669,0.639914 -0.1905387,1.434574 -2.801e-4,0.827611 0.015002,0.93225 0.2245216,1.537043 0.3113033,0.898597 0.6414397,1.460143 1.1677287,1.986244 1.0228849,1.022522 2.3292539,1.49093 3.9277729,1.408332 0.891588,-0.04607 1.378929,-0.166386 2.123257,-0.524196 0.900475,-0.432872 1.617498,-1.139967 2.063027,-2.034459 0.21437,-0.430391 0.254436,-0.589677 0.30217,-1.2013 0.135687,-1.738555 0.850923,-2.854238 2.283594,-3.562133 0.673725,-0.332895 0.93458,-0.321965 2.233834,0.09359 1.184379,0.378816 1.612865,0.451587 2.063878,0.350513 0.297444,-0.06666 0.334794,-0.05832 0.621165,0.13871 0.398873,0.274432 0.828445,0.798621 1.499042,1.829215 0.564347,0.867306 1.223786,1.822704 1.478558,2.142137 0.131504,0.164882 0.138102,0.21262 0.06791,0.491364 -0.09851,0.391235 -0.100189,1.293715 -0.0033,1.764841 0.04096,0.199103 0.198952,0.622667 0.3511,0.941254 0.22925,0.480033 0.383232,0.685266 0.898993,1.198214 0.703987,0.700149 1.388099,1.105649 2.243395,1.329749 0.569255,0.149153 1.502369,0.176701 2.047429,0.06044 z m 4.948296,-1.237813 c 2.08613,-2.175243 3.826647,-5.236348 4.729037,-8.317112 0.759446,-2.592758 0.907219,-5.653109 0.41397,-8.573285 C 42.774315,14.961495 39.356148,9.7861385 34.634706,6.9330131 32.03639,5.3628738 29.119727,4.3806983 26.095577,4.0574929 24.7479,3.9134601 22.455342,3.9601246 21.16581,4.1578371 17.680536,4.6922036 14.385383,6.1420095 11.579058,8.3758289 10.79127,9.0029037 9.20817,10.601162 8.5077055,11.476589 5.0035241,15.856046 3.4765809,21.567478 4.3801787,26.915333 c 0.2644694,1.565237 0.8034374,3.375449 1.4330185,4.813028 0.3269934,0.746652 0.4724753,0.961947 0.3851815,0.570019 -0.027613,-0.123977 -0.04994,-0.763378 -0.049615,-1.420891 5.192e-4,-1.050706 0.020171,-1.264216 0.162275,-1.763089 0.6774362,-2.378218 2.8001695,-4.418413 5.2415153,-5.037711 0.775097,-0.19662 1.682696,-0.268154 2.280834,-0.17977 l 0.444035,0.06561 0.717287,-0.431841 c 1.076446,-0.648071 1.053187,-0.623643 0.647566,-0.68011 -1.208474,-0.168231 -2.26098,-0.509772 -2.918444,-0.947041 -0.53359,-0.354882 -1.470101,-1.303729 -1.749659,-1.772705 -0.272966,-0.457919 -0.510318,-1.029662 -0.675124,-1.626271 -0.182609,-0.661057 -0.161999,-2.361081 0.03758,-3.099977 0.454915,-1.684198 1.682907,-3.23055 3.121035,-3.93017 1.670666,-0.812746 3.893016,-0.752785 5.493099,0.148208 1.2143,0.683761 2.313219,1.952236 2.752561,3.177262 0.172415,0.480745 0.211689,0.499064 0.6466,0.301599 0.425638,-0.193255 0.453385,-0.287339 0.35994,-1.220451 -0.131094,-1.309042 0.02833,-2.326036 0.516382,-3.294052 0.461453,-0.915265 1.357279,-1.9559071 2.157335,-2.5060842 1.10016,-0.7565508 2.464355,-1.1827747 3.776548,-1.1799307 1.819024,0.00394 3.12821,0.5423302 4.385159,1.8033469 0.931985,0.9350008 1.534156,2.007294 1.854631,3.302566 0.119039,0.481126 0.170928,2.33848 0.07488,2.680419 l -0.04797,0.170783 0.594475,0.0058 c 1.969586,0.01919 3.953775,1.142464 5.136146,2.90763 0.677298,1.011143 0.985773,2.007334 0.980498,3.166436 -0.0079,1.740752 -0.902317,3.516273 -2.367731,4.700332 -1.601196,1.293773 -4.175333,1.619656 -6.042267,0.764946 -0.323807,-0.148244 -0.436223,-0.165536 -0.860038,-0.132291 -0.635964,0.04989 -0.79495,0.0847 -0.79495,0.174063 0,0.102512 0.704509,1.160226 0.874477,1.312896 0.08847,0.07946 0.322526,0.148227 0.64011,0.188058 1.909341,0.239461 3.514858,1.373075 4.58727,3.238951 0.635792,1.106206 0.907582,2.316035 0.849392,3.780922 -0.04076,1.02608 -0.267503,1.828506 -0.760612,2.691737 -0.166334,0.291184 -0.278913,0.529426 -0.250174,0.529426 0.02874,0 0.295476,-0.253612 0.592749,-0.563582 z" transform="scale(0.26458333)" />
            </g>
            <g id="reactive-graph-logo-runtime-layer">
                <path id="reactive-graph-logo-runtime" style="fill:var(--rg-logo-runtime-fill, transparent);stroke-width:0.001;stroke-dasharray:none" d="M 6.1355427,1.0578166 C 4.6931693,1.1154983 3.2987265,1.8067067 2.369711,2.909907 1.3231029,4.1188184 0.8538239,5.825672 1.2211141,7.3917968 1.3102512,7.8075091 1.4508789,8.2115217 1.64021,8.5922402 1.5610411,8.1633805 1.5919669,7.6978446 1.8226278,7.316866 2.1930461,6.6351554 3.0026377,6.182725 3.7796141,6.3313965 3.9212795,6.23825 4.0712842,6.1581154 4.2111125,6.0621621 3.8722477,6.0289347 3.4608053,5.9418288 3.1951059,5.6687957 2.5074263,5.1209215 2.5220234,4.0026777 3.0981679,3.3805296 3.4648179,2.9339577 4.0904678,2.7832653 4.6390231,2.9197038 5.1846659,3.0420243 5.6333911,3.4926436 5.790861,4.0245606 5.9485386,3.9929985 6.0630175,3.9434105 6.0025628,3.7594651 5.9740516,3.416876 5.9722233,3.0563238 6.1594502,2.7530171 6.4743959,2.1384356 7.1733343,1.7518741 7.8625334,1.8220861 c 0.8435401,0.026239 1.5129317,0.8199236 1.5492952,1.6366176 0.011138,0.1555374 0.0017,0.3122181 -0.025838,0.4656045 C 10.327852,3.8419632 11.253997,4.7112099 11.15798,5.6673085 11.08056,6.2931801 10.643295,6.8852758 10.019543,7.0522827 9.6228916,7.1751962 9.1769555,7.1433187 8.8097985,6.9453124 8.7188935,6.9873094 8.3811407,6.9135074 8.5327649,7.0714909 c 0.095848,0.114133 0.1520074,0.3283741 0.3312938,0.3094537 0.785283,0.076696 1.3904203,0.7896212 1.4670933,1.5539104 0.05979,0.4076194 -0.04587,0.8394954 -0.28577,1.174088 C 10.75491,9.4450603 11.231949,8.5564537 11.494548,7.6277136 12.05576,5.4184441 11.027825,2.8798059 9.0233626,1.7627257 8.1514147,1.2644247 7.1398904,1.0113428 6.1355427,1.0578166 Z M 5.5671021,8.0222491 C 5.2922214,8.1230204 5.2523186,8.4345575 5.2394733,8.6873248 5.087616,9.4918352 4.2619228,10.043007 3.4656299,10.013348 3.0323382,10.024404 2.5955945,9.8832481 2.2608439,9.6056152 3.121534,10.734104 4.4810367,11.436186 5.8828905,11.583472 c 0.7887647,0.04641 1.587432,-0.05141 2.3275988,-0.334766 0.3708969,-0.13909 0.7287652,-0.315077 1.0607794,-0.531531 C 8.6164429,10.98614 7.8166763,10.769154 7.3520498,10.242853 7.0074958,9.9042031 6.8429171,9.409994 6.898287,8.9317543 6.7218202,8.6951964 6.5775239,8.4184693 6.3856568,8.2041502 6.1019896,8.2073704 5.8365442,8.082668 5.5671021,8.0222491 Z" />
            </g>
            <g id="reactive-graph-logo-flows-layer">
                <path id="reactive-graph-logo-flows" style="fill:var(--rg-logo-flows-fill, black);stroke-width:0.0126747" d="m 7.7524984,2.3486938 c -0.017136,1.688e-4 -0.034765,5.64e-4 -0.052193,0.00155 C 7.1640139,2.3437721 6.6758655,2.7331506 6.5365519,3.2468302 6.4393446,3.6920016 6.7431213,4.1174907 6.3370809,4.4715617 5.9662249,4.3934552 5.6159426,4.8743791 5.3350749,4.5123861 5.3376219,3.9703642 4.8988077,3.4226386 4.3217,3.4147786 3.3088912,3.2873144 2.7758862,4.7739237 3.6302694,5.3252563 3.9749399,5.6553044 4.625795,5.354419 4.8017741,5.8425374 4.9710983,6.4612553 4.2675558,6.586123 3.8896851,6.9148234 2.8920375,6.5338701 1.7973963,7.6532462 2.2236369,8.639266 2.5791785,9.7669148 4.3452908,9.7638958 4.7082397,8.6434001 4.7210117,8.0672899 4.8886328,7.7036179 5.4668498,7.4739624 5.7822172,7.4171193 6.1730833,7.7708408 6.5525716,7.6357096 6.9138754,7.8160952 7.1511145,8.453013 7.4739624,8.7896444 7.1329926,9.8249784 8.507845,10.761915 9.343099,10.05365 10.279528,9.4333091 9.6988209,7.7905504 8.5736369,7.9126953 8.2371077,7.7494091 8.0373263,7.2391146 7.8031413,6.946346 7.6581549,6.3473613 8.5259588,6.487299 8.9327881,6.3835897 9.4320779,6.7908258 10.277196,6.5667887 10.51512,5.9675944 11.019631,5.0321261 9.7134039,3.9841138 8.911084,4.6880859 8.680299,5.1326525 8.0037639,5.305048 7.6243408,5.0828939 7.4853462,4.6670795 8.1614161,4.7445178 8.3917358,4.5144531 9.3255496,3.9292961 8.8320808,2.338064 7.7524984,2.3486938 Z M 7.632609,2.894397 c 0.093191,-0.00476 0.1886454,0.010281 0.2795695,0.048576 0.3650617,0.1537599 0.5173237,0.5712488 0.3379639,0.9265584 -0.078844,0.1561895 -0.2607731,0.298964 -0.4299479,0.3379639 -0.08303,0.019 -0.2649169,0.016749 -0.3358968,-0.00465 -0.03389,-0.0099 -0.062583,-0.01702 -0.063562,-0.01602 -9.8e-4,0.00149 -0.1305579,0.2175044 -0.2878378,0.4800741 l -0.2857706,0.4774902 0.075448,0.046509 c 0.1620678,0.1000399 0.3186321,0.2931399 0.398942,0.4919597 0.03205,0.07935 0.047306,0.102769 0.064596,0.100769 0.012411,-0.0016 0.3688571,-0.048486 0.7921997,-0.1043864 0.4233426,-0.05595 0.7746141,-0.1018026 0.7803141,-0.1018026 0.00573,0 0.016371,-0.042234 0.023771,-0.093534 0.017684,-0.1227499 0.064161,-0.2202246 0.1452107,-0.3059245 0.1204504,-0.1273899 0.306653,-0.1910137 0.4697388,-0.1607137 0.3059587,0.0569 0.501809,0.343581 0.436149,0.6387207 -0.09273,0.4168096 -0.5965954,0.5628789 -0.8996866,0.2604492 L 9.0588786,5.8415039 8.2398071,5.9505412 C 7.7895436,6.0104811 7.417701,6.0591917 7.413501,6.0590617 c -0.0042,-10e-5 -0.011003,0.043218 -0.015503,0.096118 -0.020236,0.2393797 -0.117797,0.4581079 -0.2852539,0.6407877 -0.03604,0.0394 -0.065112,0.075615 -0.065112,0.080615 0,0.005 0.015917,0.029894 0.035657,0.055294 0.01974,0.0254 0.039742,0.052978 0.044442,0.060978 0.00816,0.0141 -0.1907107,0.1694652 -0.2154907,0.1684652 -0.00589,-3e-4 -0.031718,-0.03103 -0.057878,-0.06873 L 6.8063029,7.0238607 6.73809,7.053833 C 6.6333741,7.100133 6.5333287,7.1233812 6.3985758,7.1323812 6.1133401,7.1510012 5.84071,7.0529247 5.6192952,6.8522949 c -0.04292,-0.0389 -0.081066,-0.070797 -0.085266,-0.070797 -0.0074,0 -1.4110004,0.9322296 -1.4309204,0.9503296 -0.00551,0.005 0.00987,0.048435 0.034107,0.096635 0.02424,0.04816 0.053179,0.1225647 0.064079,0.1653646 0.025188,0.09902 0.025367,0.2935075 5.168e-4,0.3917074 -0.070755,0.2795297 -0.3104336,0.5163767 -0.5891113,0.5818766 -0.045312,0.0108 -0.1309193,0.018893 -0.1901693,0.018603 C 2.8311657,8.9832048 2.4510925,8.3654734 2.7140462,7.8346639 2.914601,7.4298443 3.4403752,7.2682967 3.8178548,7.4956665 l 0.07183,0.043408 L 4.6369263,7.0403971 5.3846842,6.5422363 5.3547119,6.4678223 C 5.253412,6.2170325 5.2488929,5.9618629 5.3417928,5.7138631 L 5.3836507,5.6027588 5.3252563,5.55625 c -0.03213,-0.0256 -0.06398,-0.051327 -0.07028,-0.056327 -0.00904,-0.00783 0.090958,-0.1582081 0.1457275,-0.2191081 0.00588,-0.0065 0.039738,0.010491 0.078548,0.039791 0.06423,0.0485 0.069089,0.049988 0.083199,0.027388 0.00822,-0.01321 0.058401,-0.058469 0.1116211,-0.1007691 C 5.911212,5.0587851 6.1999885,4.9817828 6.5096802,5.0239827 L 6.5861613,5.034318 6.8874349,4.5325399 7.1881917,4.0307617 7.1427165,3.977535 C 7.0156256,3.8290655 6.9642193,3.5907341 7.0161092,3.3915243 7.0914444,3.1023245 7.3530351,2.9086779 7.632609,2.894397 Z M 4.220931,3.9553141 c 0.3643576,0 0.6141452,0.3415278 0.5059123,0.6919475 l -0.026872,0.0863 0.041341,0.03359 c 0.02884,0.0235 0.037989,0.03876 0.030489,0.05116 -0.021673,0.03603 -0.1486126,0.2015381 -0.1545126,0.2015381 -0.00338,0 -0.028244,-0.017357 -0.055294,-0.038757 L 4.5129028,4.9418172 4.42712,4.9764404 v 5.168e-4 C 4.3260511,5.0178572 4.1726445,5.0288786 4.0814046,5.0022786 3.9300298,4.9582187 3.8127307,4.8603152 3.7434408,4.7201253 3.7036608,4.6396254 3.6959476,4.6097542 3.6912476,4.5206543 3.6825736,4.3553945 3.7246599,4.2372421 3.8333577,4.1217122 3.9395126,4.0088928 4.0645061,3.9553141 4.220931,3.9553141 Z m 0.7689453,1.0009725 c 0.00305,0 0.052454,0.035548 0.109554,0.078548 0.057098,0.043 0.1057038,0.079132 0.1080038,0.081132 0.0023,0.00172 -0.031966,0.052195 -0.075964,0.1116211 -0.044036,0.059339 -0.083342,0.1082311 -0.087333,0.1085205 -0.00395,3e-4 -0.054211,-0.034715 -0.1116211,-0.077515 -0.06443,-0.0481 -0.1021853,-0.084068 -0.098185,-0.094568 0.00804,-0.02094 0.1478461,-0.2077393 0.1555461,-0.2077393 z m 2.2815145,2.264978 c 0.016634,-0.01 0.1727072,0.2029584 0.1617472,0.2206584 -0.00352,0.0057 -0.051057,0.041915 -0.1059367,0.080615 -0.054882,0.0386 -0.1027534,0.07028 -0.1064534,0.07028 -0.015841,0 -0.1624755,-0.2178596 -0.1524455,-0.2268595 0.014326,-0.01235 0.1834184,-0.1328941 0.2030884,-0.1446941 z m 0.3167765,0.4325318 c 0.00787,-3.422e-4 0.012629,0.0042 0.01912,0.011886 0.03713,0.04401 0.1373915,0.1919548 0.1369425,0.2020548 -2.46e-4,0.0057 -0.045442,0.041482 -0.1002522,0.079582 -0.05481,0.0381 -0.1051211,0.070864 -0.1116211,0.072864 -0.00646,0.00215 -0.04659,-0.04512 -0.0894,-0.1054199 l -0.078031,-0.1100708 0.028422,-0.021187 c 0.015451,-0.0117 0.065561,-0.048115 0.1116211,-0.080615 0.048821,-0.034438 0.070089,-0.048522 0.083199,-0.049093 z m 0.3074748,0.4294311 c 0.00906,-0.0012 0.014101,0.00349 0.020154,0.011886 0.0094,0.01303 0.045732,0.064305 0.081132,0.1142049 l 0.064596,0.090951 -0.1080037,0.076998 c -0.059418,0.0425 -0.1122055,0.077168 -0.1173055,0.076998 -0.010183,-3.3e-4 -0.1381249,-0.1775057 -0.1493449,-0.2067057 -0.00479,-0.0125 0.028169,-0.043652 0.1023193,-0.097152 0.06456,-0.046625 0.091351,-0.065183 0.1064535,-0.067179 z m 0.7338053,0.3720704 c 0.061332,-9.4e-6 0.096026,0.00624 0.1503784,0.022738 0.2292878,0.06964 0.4174106,0.2795142 0.4614706,0.515214 0.060486,0.3235502 -0.1305786,0.6497693 -0.4423503,0.7539592 -0.1057159,0.0354 -0.2518882,0.04292 -0.3570841,0.01912 C 8.2009112,9.711879 8.0035608,9.5213246 7.9421509,9.2831543 7.9019409,9.1272045 7.9216944,8.9524677 7.9958944,8.8082479 c 0.03596,-0.0699 0.036286,-0.071586 0.013436,-0.1012858 -0.01279,-0.0167 -0.023616,-0.034241 -0.023771,-0.038241 -1.55e-4,-0.0044 0.049431,-0.043516 0.1100708,-0.086816 0.095403,-0.0679 0.1120402,-0.076011 0.1245402,-0.058911 0.012809,0.0175 0.025211,0.015146 0.1085205,-0.020154 0.080076,-0.0339 0.1137487,-0.040475 0.2289266,-0.045475 0.028064,-0.0012 0.051386,-0.00206 0.07183,-0.00207 z" />
            </g>
            <g id="reactive-graph-logo-relations-layer">
                <path id="reactive-graph-logo-relations" style="fill:var(--rg-logo-relations-fill, #00a1e4);stroke-width:0.00327903" transform="scale(0.26458333)" d="m 31.959823,36.888536 c -0.709681,-0.146229 -1.45675,-0.759723 -1.769405,-1.45304 -0.272088,-0.603356 -0.271872,-1.324001 5.94e-4,-1.983759 0.143273,-0.346926 0.172577,-0.485422 0.11491,-0.543089 -0.04257,-0.04257 -0.07741,-0.09826 -0.07741,-0.123738 0,-0.0889 0.741092,-0.55598 0.831295,-0.523936 0.05001,0.01777 0.244635,-0.02296 0.432496,-0.0905 0.828299,-0.297808 1.602128,-0.228354 2.270772,0.203812 1.062426,0.686678 1.445946,1.984948 0.918009,3.107586 -0.479182,1.018963 -1.654458,1.626483 -2.721264,1.406668 z m 0.746907,-0.95999 c 0.335807,-0.09325 0.72189,-0.436507 0.878347,-0.780907 0.179761,-0.395697 0.167034,-1.019657 -0.02782,-1.363669 -0.447941,-0.79085 -1.485612,-1.024708 -2.182589,-0.491886 -0.771085,0.589476 -0.810086,1.752418 -0.07905,2.357068 0.404961,0.334947 0.875544,0.428121 1.411107,0.279394 z m -3.328119,-4.342442 c -0.133707,-0.175111 -0.243104,-0.359776 -0.243104,-0.410366 0,-0.08349 0.587235,-0.565781 0.6938,-0.569808 0.05634,-0.0021 0.535834,0.660813 0.535834,0.74083 0,0.04919 -0.285768,0.267749 -0.660748,0.505341 -0.05319,0.0337 -0.169388,-0.06117 -0.325782,-0.265997 z m -1.041692,-1.479176 c -0.185228,-0.207415 -0.451447,-0.599674 -0.421421,-0.62094 0.01349,-0.0096 0.182354,-0.13075 0.375248,-0.269319 0.192895,-0.13857 0.365911,-0.251945 0.384481,-0.251945 0.01857,0 0.151302,0.17066 0.29496,0.379245 l 0.261196,0.379245 -0.201643,0.16179 c -0.110903,0.08898 -0.281683,0.209444 -0.379511,0.267689 -0.166764,0.09929 -0.186326,0.09643 -0.31331,-0.04576 z m -1.311995,-1.814236 c -0.116633,-0.181758 -0.21206,-0.363319 -0.21206,-0.40347 0,-0.04015 0.150534,-0.181151 0.334519,-0.313331 l 0.33452,-0.240328 0.132495,0.148528 c 0.163109,0.182848 0.4281,0.565616 0.4281,0.618373 0,0.04548 -0.694069,0.520695 -0.760488,0.520695 -0.02476,0 -0.140453,-0.14871 -0.257086,-0.330467 z m -14.694422,5.567963 c -1.872081,-0.422057 -2.8793713,-2.485607 -2.046233,-4.191942 0.752583,-1.541353 2.637627,-2.129279 4.138119,-1.290638 l 0.288478,0.161233 2.823209,-1.879985 c 1.552764,-1.033991 2.830832,-1.886055 2.840151,-1.893474 0.0093,-0.0074 -0.06633,-0.241546 -0.1681,-0.520281 -0.161561,-0.442483 -0.184867,-0.606476 -0.183667,-1.29239 0.0012,-0.673848 0.02703,-0.857466 0.181755,-1.290808 l 0.18038,-0.505209 -0.179039,-0.143765 c -0.09847,-0.07907 -0.210375,-0.164566 -0.248674,-0.189988 -0.06443,-0.04277 0.383476,-0.807691 0.472957,-0.807691 0.02035,0 0.151709,0.06602 0.291908,0.146705 l 0.254904,0.146705 0.270977,-0.251891 c 0.373621,-0.347305 0.938576,-0.682773 1.466455,-0.870773 0.376559,-0.134109 0.579594,-0.158379 1.336096,-0.159713 l 0.892061,-0.0016 1.138166,-1.897827 1.138166,-1.897827 -0.229701,-0.300926 c -0.350965,-0.459789 -0.48352,-0.873068 -0.482743,-1.505088 5.47e-4,-0.453879 0.03326,-0.617251 0.19291,-0.963924 0.230104,-0.499642 0.690157,-0.970337 1.206835,-1.234753 0.33801,-0.17298 0.444289,-0.192275 1.058852,-0.192227 0.616781,4.7e-5 0.718562,0.01871 1.047936,0.192134 1.265087,0.666108 1.750484,2.042539 1.162933,3.297704 -0.200577,0.428485 -0.690086,0.919887 -1.160167,1.164653 -0.321678,0.167495 -0.444335,0.191659 -0.982389,0.193536 -0.338149,0.0012 -0.70704,-0.02097 -0.819756,-0.04922 l -0.204939,-0.05137 -1.058852,1.78665 c -0.582369,0.982657 -1.067954,1.809284 -1.079078,1.836949 -0.01112,0.02766 0.15795,0.176358 0.375721,0.33043 0.525938,0.372097 0.99785,0.949126 1.30564,1.596467 0.223257,0.469552 0.272693,0.529246 0.438435,0.529426 0.161073,2.05e-4 4.960374,-0.611597 5.66731,-0.722417 0.244506,-0.03833 0.254928,-0.05176 0.331378,-0.426999 0.204156,-1.002065 0.869747,-1.627347 1.812834,-1.703049 0.548242,-0.04401 1.013915,0.110724 1.426674,0.47405 0.689847,0.607227 0.885671,1.52661 0.494728,2.32271 -0.347172,0.706965 -0.980547,1.105714 -1.756322,1.105714 -0.544206,0 -0.956576,-0.16979 -1.395909,-0.574754 l -0.313056,-0.288565 -3.079422,0.402026 c -1.693682,0.221114 -3.104548,0.417396 -3.13526,0.436182 -0.03071,0.01879 -0.102684,0.305645 -0.159939,0.637465 -0.126467,0.732942 -0.442143,1.418179 -0.925974,2.010009 -0.192129,0.235015 -0.349325,0.445455 -0.349325,0.467646 0,0.02219 0.06523,0.131948 0.144948,0.243906 l 0.144949,0.203562 -0.23034,0.195188 c -0.126687,0.107353 -0.302597,0.234845 -0.390911,0.283315 -0.170101,0.09336 -0.159577,0.10043 -0.450302,-0.302596 -0.08352,-0.115782 -0.100889,-0.115418 -0.389232,0.0082 -1.308589,0.560926 -2.877662,0.298015 -4.075371,-0.682862 -0.232544,-0.190445 -0.461439,-0.331376 -0.508656,-0.313181 -0.09347,0.03602 -5.240439,3.445856 -5.33626,3.535242 -0.03224,0.03008 0.0395,0.309105 0.159414,0.620066 0.204254,0.52965 0.216594,0.610998 0.195246,1.287146 -0.01973,0.624791 -0.04844,0.774007 -0.21374,1.110614 -0.344033,0.700576 -1.042408,1.340468 -1.726343,1.581774 -0.409743,0.144566 -1.169949,0.187455 -1.600825,0.09032 z m 1.386048,-1.123321 c 0.398343,-0.223463 0.810613,-0.714852 0.927738,-1.10578 0.213038,-0.711057 8.52e-4,-1.579831 -0.498202,-2.039844 -0.445953,-0.411065 -0.685012,-0.510475 -1.309463,-0.544526 -0.633908,-0.03457 -0.978744,0.07845 -1.419127,0.465113 -0.515583,0.452687 -0.780378,1.345791 -0.598377,2.018208 0.162,0.59852 0.67032,1.14034 1.285812,1.370551 0.420296,0.157201 1.176481,0.08038 1.611619,-0.163722 z m 11.272191,-7.007015 c 2.334082,-1.146121 2.322162,-4.352609 -0.02033,-5.468854 -0.416869,-0.198646 -0.492097,-0.211575 -1.229634,-0.211328 -0.75636,2.73e-4 -0.803399,0.009 -1.263791,0.234882 -2.057422,1.009451 -2.318822,3.743733 -0.489914,5.124572 0.588459,0.444291 0.968561,0.553377 1.856174,0.532705 0.667714,-0.01555 0.795573,-0.03917 1.147494,-0.211977 z M 36.167004,21.89678 c 0.360818,-0.186587 0.551249,-0.487346 0.551249,-0.870623 0,-0.4228 -0.182226,-0.746738 -0.50667,-0.900697 -0.652324,-0.309549 -1.359835,0.06326 -1.454122,0.766212 -0.100164,0.746777 0.744444,1.349044 1.409543,1.005108 z m -6.849122,-7.012802 c 0.240077,-0.07431 0.740928,-0.578968 0.84421,-0.850622 0.105737,-0.278108 0.0745,-0.858718 -0.06242,-1.160162 -0.496696,-1.093529 -2.111345,-1.147879 -2.656056,-0.0894 -0.320662,0.623109 -0.152906,1.482933 0.366645,1.879214 0.461164,0.351747 0.884633,0.413815 1.507625,0.220974 z m -10.651347,4.952337 c -0.178468,-0.133961 -0.324487,-0.27216 -0.324487,-0.307108 0,-0.03495 0.113047,-0.214965 0.251216,-0.400036 0.246438,-0.330094 0.254558,-0.334517 0.426956,-0.232565 0.09666,0.05716 0.275231,0.186326 0.39683,0.287033 l 0.221089,0.183105 -0.275433,0.358643 c -0.151489,0.197254 -0.29709,0.35771 -0.323559,0.356569 -0.02647,-0.0011 -0.194144,-0.111679 -0.372612,-0.245641 z m -3.262389,-0.977434 c -0.50814,-0.154569 -0.99328,-0.579524 -1.245142,-1.090672 -0.22067,-0.447844 -0.218472,-1.216303 0.0047,-1.646334 0.662911,-1.27732 2.308008,-1.51828 3.24565,-0.475396 0.484221,0.53857 0.627373,1.191499 0.416738,1.900783 -0.10399,0.350173 -0.103038,0.359632 0.04856,0.482387 l 0.154627,0.12521 -0.291376,0.385925 -0.291377,0.385926 -0.197473,-0.140613 -0.197473,-0.140614 -0.411466,0.138613 c -0.415407,0.139941 -0.921174,0.170543 -1.235974,0.07478 z m 0.868117,-1.026415 c 0.237307,-0.144695 0.407531,-0.41576 0.430729,-0.685896 0.03736,-0.435042 -0.005,-0.567163 -0.265672,-0.827793 -0.251365,-0.251366 -0.287458,-0.265215 -0.691167,-0.265215 -0.403708,0 -0.439801,0.01385 -0.691167,0.265215 -0.239644,0.239644 -0.265215,0.29925 -0.265215,0.61821 0,0.643101 0.358566,1.028829 0.956382,1.028829 0.184658,0 0.394738,-0.05325 0.52611,-0.13335 z" />
            </g>
            <g id="reactive-graph-logo-entities-layer">
                <path id="reactive-graph-logo-entities" style="fill:var(--rg-logo-entities-fill, #dc0073);stroke-width:0.0126747" d="m 3.2196605,8.7025048 c -0.247714,-0.08066 -0.405726,-0.338323 -0.359923,-0.586902 0.06397,-0.347194 0.429379,-0.533869 0.742297,-0.379216 0.149931,0.0741 0.246078,0.198759 0.280453,0.363621 0.04808,0.230594 -0.06769,0.463663 -0.283405,0.570551 -0.07573,0.03752 -0.09857,0.04261 -0.205602,0.04578 -0.07697,0.0023 -0.139677,-0.0027 -0.17382,-0.01383 z m 5.18435,0.793448 c -0.149322,-0.05336 -0.244611,-0.180196 -0.254813,-0.339166 -0.0079,-0.123107 0.01895,-0.201192 0.09949,-0.289312 0.08271,-0.0905 0.164762,-0.12669 0.286378,-0.126319 0.115057,3.44e-4 0.2073,0.04238 0.286592,0.130568 0.170716,0.189878 0.109162,0.496158 -0.122225,0.608171 -0.08391,0.04062 -0.207836,0.04736 -0.295418,0.01606 z m 0.97266,-3.6947504 c -0.02398,-0.0076 -0.06759,-0.03701 -0.0969,-0.06525 -0.08061,-0.07765 -0.102117,-0.182612 -0.05727,-0.279485 0.05989,-0.129362 0.20434,-0.190446 0.3281,-0.138749 0.176928,0.07391 0.22129,0.288137 0.08655,0.417938 -0.07718,0.07435 -0.164202,0.09625 -0.260474,0.06554 z M 7.5220495,3.9539363 c -0.07996,-0.01973 -0.142452,-0.05842 -0.202858,-0.125602 -0.175655,-0.195371 -0.110644,-0.503409 0.129532,-0.6137489 0.08426,-0.03871 0.238834,-0.03754 0.31998,0.0024 0.07595,0.03741 0.152617,0.1140759 0.190027,0.1900259 0.02378,0.04827 0.02925,0.07985 0.02901,0.16724 -2.58e-4,0.09156 -0.0053,0.117367 -0.03387,0.171912 -0.03945,0.07542 -0.119032,0.151245 -0.192419,0.183328 -0.06527,0.02853 -0.17665,0.03989 -0.239398,0.02441 z m -1.428869,2.8957805 c -0.139055,-0.03652 -0.252679,-0.1035337 -0.36169,-0.2133187 -0.11641,-0.117236 -0.171808,-0.21195 -0.20898,-0.3572927 -0.06523,-0.255061 0.0024,-0.526786 0.179051,-0.719594 0.09318,-0.101692 0.185758,-0.16378 0.319436,-0.214237 0.09453,-0.03568 0.117543,-0.03926 0.255966,-0.03977 0.167449,-6.35e-4 0.225139,0.01237 0.371302,0.08365 0.121361,0.05918 0.272957,0.212877 0.335178,0.339827 0.08749,0.178512 0.108034,0.364846 0.06065,0.550131 -0.03717,0.1453427 -0.09257,0.2400567 -0.208981,0.3572927 -0.110809,0.111597 -0.22423,0.177668 -0.36752,0.2140927 -0.09409,0.02392 -0.281868,0.02353 -0.374408,-7.67e-4 z M 4.0653275,4.7328353 c -0.09481,-0.04112 -0.152187,-0.129035 -0.152187,-0.233204 0,-0.08454 0.02282,-0.135628 0.08603,-0.19267 0.05782,-0.05218 0.111258,-0.06711 0.207144,-0.0579 0.06995,0.0067 0.110359,0.03143 0.168148,0.102834 0.07306,0.09027 0.05752,0.250024 -0.03249,0.333982 -0.0691,0.06446 -0.189258,0.08485 -0.276643,0.04696 z" />
            </g>
        </svg>

    </main>
</body>

</html>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="icon" type="image/svg+xml" href="{{ path '/favicon/favicon.svg' }}">
  <link rel="icon" type="image/png" href="{{ path '/favicon/favicon.png' }}">
  <link rel="stylesheet" href="{{ path '/css/reactive-graph.css' }}">
  <title>Logo - Design System - Reactive Graph</title>
  <style>
    body {
      display: grid;
      place-content: center;
      padding: var(--size-7);
      gap: var(--size-7);
    }

    .logo-override {
      width: 400px;
      height: 400px;
    }
  </style>
  <script>
    var r = document.querySelector(':root');

    function set(layer, color) {
      var cssVar = '--rg-logo-' + layer + '-fill';
      var cssVarValue;
      if (color === 'transparent' || color === 'black' || color === 'white') {
        cssVarValue = color;
      } else {
        cssVarValue = 'var(--' + color + ')';
      }
      console.log(cssVar + ' = ' + cssVarValue);
      r.style.setProperty(cssVar, cssVarValue)
    }
  </script>
</head>
<body>
<main>

  <h1>SVG Logo Configurator</h1>

  <table>
    <tr>
      <td>
        Environment
      </td>
      <td>
        <div class="tag" style="background-color: black; border-color: white;" onclick="set('environment', 'transparent')">transparent</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--malachite); color: black;" onclick="set('environment', 'malachite')">malachite</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--selective-yellow); color: black;" onclick="set('environment', 'selective-yellow')">selective-yellow
        </div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--celestial-blue);" onclick="set('environment', 'celestial-blue')">celestial-blue</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--mexican-pink);" onclick="set('environment', 'mexican-pink')">mexican-pink</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--chartreuse); color: black;" onclick="set('environment', 'chartreuse')">chartreuse</div>
      </td>
      <td>
        <div class="tag" style="background-color: black;" onclick="set('environment', 'black')">black</div>
      </td>
      <td>
        <div class="tag" style="background-color: white; color: black;" onclick="set('environment', 'white')">white</div>
      </td>
    </tr>
    <tr>
      <td>
        Applications
      </td>
      <td>
        <div class="tag" style="background-color: black; border-color: white;" onclick="set('applications', 'transparent')">transparent</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--malachite); color: black;" onclick="set('applications', 'malachite')">malachite</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--selective-yellow); color: black;" onclick="set('applications', 'selective-yellow')">selective-yellow
        </div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--celestial-blue);" onclick="set('applications', 'celestial-blue')">celestial-blue</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--mexican-pink);" onclick="set('applications', 'mexican-pink')">mexican-pink</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--chartreuse); color: black;" onclick="set('applications', 'chartreuse')">chartreuse</div>
      </td>
      <td>
        <div class="tag" style="background-color: black;" onclick="set('applications', 'black')">black</div>
      </td>
      <td>
        <div class="tag" style="background-color: white; color: black;" onclick="set('applications', 'white')">white</div>
      </td>
    </tr>
    <tr>
      <td>
        API
      </td>
      <td>
        <div class="tag" style="background-color: black; border-color: white;" onclick="set('api', 'transparent')">transparent</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--malachite); color: black;" onclick="set('api', 'malachite')">malachite</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--selective-yellow); color: black;" onclick="set('api', 'selective-yellow')">selective-yellow</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--celestial-blue);" onclick="set('api', 'celestial-blue')">celestial-blue</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--mexican-pink);" onclick="set('api', 'mexican-pink')">mexican-pink</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--chartreuse); color: black;" onclick="set('api', 'chartreuse')">chartreuse</div>
      </td>
      <td>
        <div class="tag" style="background-color: black;" onclick="set('api', 'black')">black</div>
      </td>
      <td>
        <div class="tag" style="background-color: white; color: black;" onclick="set('api', 'white')">white</div>
      </td>
    </tr>
    <tr>
      <td>
        Runtime
      </td>
      <td>
        <div class="tag" style="background-color: black; border-color: white;" onclick="set('runtime', 'transparent')">transparent</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--malachite); color: black;" onclick="set('runtime', 'malachite')">malachite</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--selective-yellow); color: black;" onclick="set('runtime', 'selective-yellow')">selective-yellow</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--celestial-blue);" onclick="set('runtime', 'celestial-blue')">celestial-blue</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--mexican-pink);" onclick="set('runtime', 'mexican-pink')">mexican-pink</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--chartreuse); color: black;" onclick="set('runtime', 'chartreuse')">chartreuse</div>
      </td>
      <td>
        <div class="tag" style="background-color: black;" onclick="set('runtime', 'black')">black</div>
      </td>
      <td>
        <div class="tag" style="background-color: white; color: black;" onclick="set('runtime', 'white')">white</div>
      </td>
    </tr>
    <tr>
      <td>
        Flows
      </td>
      <td>
        <div class="tag" style="background-color: black; border-color: white;" onclick="set('flows', 'transparent')">transparent</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--malachite); color: black;" onclick="set('flows', 'malachite')">malachite</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--selective-yellow); color: black;" onclick="set('flows', 'selective-yellow')">selective-yellow</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--celestial-blue);" onclick="set('flows', 'celestial-blue')">celestial-blue</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--mexican-pink);" onclick="set('flows', 'mexican-pink')">mexican-pink</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--chartreuse); color: black;" onclick="set('flows', 'chartreuse')">chartreuse</div>
      </td>
      <td>
        <div class="tag" style="background-color: black;" onclick="set('flows', 'black')">black</div>
      </td>
      <td>
        <div class="tag" style="background-color: white; color: black;" onclick="set('flows', 'white')">white</div>
      </td>
    </tr>
    <tr>
      <td>
        Relations
      </td>
      <td>
        <div class="tag" style="background-color: black; border-color: white;" onclick="set('relations', 'transparent')">transparent</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--malachite); color: black;" onclick="set('relations', 'malachite')">malachite</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--selective-yellow); color: black;" onclick="set('relations', 'selective-yellow')">selective-yellow</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--celestial-blue);" onclick="set('relations', 'celestial-blue')">celestial-blue</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--mexican-pink);" onclick="set('relations', 'mexican-pink')">mexican-pink</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--chartreuse); color: black;" onclick="set('relations', 'chartreuse')">chartreuse</div>
      </td>
      <td>
        <div class="tag" style="background-color: black;" onclick="set('relations', 'black')">black</div>
      </td>
      <td>
        <div class="tag" style="background-color: white; color: black;" onclick="set('relations', 'white')">white</div>
      </td>
    </tr>
    <tr>
      <td>
        Entities
      </td>
      <td>
        <div class="tag" style="background-color: black; border-color: white;" onclick="set('entities', 'transparent')">transparent</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--malachite); color: black;" onclick="set('entities', 'malachite')">malachite</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--selective-yellow); color: black;" onclick="set('entities', 'selective-yellow')">selective-yellow</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--celestial-blue);" onclick="set('entities', 'celestial-blue')">celestial-blue</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--mexican-pink);" onclick="set('entities', 'mexican-pink')">mexican-pink</div>
      </td>
      <td>
        <div class="tag" style="background-color: var(--chartreuse); color: black;" onclick="set('entities', 'chartreuse')">chartreuse</div>
      </td>
      <td>
        <div class="tag" style="background-color: black;" onclick="set('entities', 'black')">black</div>
      </td>
      <td>
        <div class="tag" style="background-color: white; color: black;" onclick="set('entities', 'white')">white</div>
      </td>
    </tr>
  </table>

  <hr/>
  <svg id="reactive-graph-logo"
       width="12.677305mm"
       height="12.680223mm"
       viewBox="0 0 12.677305 12.680223"
       xmlns="http://www.w3.org/2000/svg"
       class="logo-override">
    <defs id="defs401"/>
    <g id="reactive-graph-logo-environment-layer">
      <rect
          id="reactive-graph-logo-environment"
          style="fill:var(--rg-logo-environment-fill, transparent);stroke-width:0.000999194;stroke-dasharray:none"
          width="12.677"
          height="12.68"
          x="-1.7347235e-18"
          y="0"/>
    </g>
    <g id="reactive-graph-logo-applications-layer">
      <path id="reactive-graph-logo-applications"
            style="fill:var(--rg-logo-applications-fill, black);stroke-width:0.0126747"
            d="M 6.3370809,0 C 6.1501176,1.8749981e-5 5.963438,0.00448588 5.8497721,0.01343587 5.6329224,0.03053586 5.3595217,0.06777084 5.139738,0.1100708 3.4787646,0.42981043 2.0084156,1.4054299 1.0645345,2.8142985 0.57932317,3.5385378 0.24085184,4.3834226 0.08991699,5.2477417 0.02200706,5.6366013 -1.7899983e-4,5.907846 0,6.3443156 2.5299974e-4,6.958545 0.06918805,7.4675946 0.23047689,8.047054 c 0.37332763,1.3412592 1.20581951,2.55202 2.32337241,3.379639 1.033299,0.765229 2.2608551,1.198969 3.5305338,1.247469 v 5.17e-4 c 0.1289639,0.0046 0.2682287,0.0067 0.3100586,0.0046 0.041826,-0.0023 0.1620845,-0.0063 0.2666504,-0.01033 0.4418046,-0.01543 0.9394311,-0.09733 1.4195516,-0.233577 1.4096211,-0.4 2.6649403,-1.305055 3.4902263,-2.5166426 0.680393,-0.9988695 1.062408,-2.1548784 1.102258,-3.3367472 0.02324,-0.6892793 -0.04954,-1.310233 -0.22841,-1.9528524 C 12.071096,3.2868665 11.24365,2.0830718 10.120829,1.2485026 9.1642591,0.53751338 8.011905,0.10563578 6.8254232,0.01343587 6.7109953,0.00456088 6.5240442,-1.8749981e-5 6.3370809,0 Z M 6.3220947,0.51314697 C 7.2760083,0.50923152 8.2285817,0.72592801 9.0717977,1.1787394 11.781484,2.5114643 12.988073,6.1193811 11.624097,8.8139323 10.399401,11.559757 6.8685426,12.917469 4.1253296,11.676807 1.3738845,10.597521 -0.13707481,7.233606 0.87229818,4.457609 1.6165104,2.2597818 3.6180861,0.70760388 5.9133341,0.52813314 6.0493269,0.51861728 6.1858214,0.51370632 6.3220947,0.51314697 Z"/>
    </g>
    <g id="reactive-graph-logo-api-layer">
      <path id="reactive-graph-logo-api"
            style="fill:var(--rg-logo-api-fill, #dc0073);stroke-width:0.00327903"
            d="M 21.928482,45.760978 C 20.463914,45.621386 18.494338,45.19591 17.214883,44.742729 16.188912,44.379331 14.253952,43.531191 13.457667,43.095848 7.9798481,40.101034 3.9413966,34.523319 2.6020201,28.102551 2.3270739,26.7845 2.2179639,25.820094 2.17401,24.319438 2.0829765,21.211413 2.5674663,18.645114 3.8263798,15.566985 6.4461708,9.1614179 12.035327,4.3281267 18.786083,2.6303972 c 2.897811,-0.7287628 5.968192,-0.8457981 8.955739,-0.3413707 3.932447,0.6639672 7.925699,2.5271401 10.730383,5.0065858 4.275868,3.7800267 6.926344,9.0742627 7.472941,14.9269427 0.106248,1.137645 0.04683,3.854534 -0.10561,4.829404 -0.391231,2.501896 -0.941846,4.224622 -2.108078,6.595608 -0.61889,1.258223 -1.118866,2.105727 -1.821426,3.087488 -3.62411,5.064344 -9.680505,8.442825 -16.190177,9.031481 -0.910177,0.0823 -2.90014,0.07939 -3.791373,-0.0056 z m 4.474504,-2.074046 c 2.353278,-0.315811 4.498286,-0.961605 6.55805,-1.974423 0.85106,-0.418479 2.127842,-1.147203 2.085019,-1.190026 -0.0124,-0.0124 -0.234419,0.04056 -0.493382,0.117682 -1.949169,0.580488 -4.172757,0.153551 -5.82225,-1.117894 -0.594841,-0.458509 -1.458101,-1.398728 -1.776839,-1.935244 -0.596451,-1.003977 -0.908236,-2.162119 -0.88675,-3.293887 l 0.01102,-0.58066 -0.681121,-1.024696 C 25.02212,32.124202 24.591019,31.506361 24.438735,31.314805 l -0.276879,-0.348284 -0.501869,-0.04061 c -0.276029,-0.02233 -0.978354,-0.177309 -1.560722,-0.344391 l -1.058852,-0.303784 -0.239096,0.122445 c -0.552256,0.28282 -0.847792,0.871116 -0.993066,1.9768 -0.144921,1.103007 -0.372917,1.723267 -0.94223,2.563325 -0.584351,0.862246 -1.74567,1.817461 -2.749157,2.26125 -2.297059,1.015869 -5.351587,0.733815 -7.1994698,-0.664796 -0.1970453,-0.149137 -0.3723107,-0.257113 -0.3894785,-0.239945 -0.060873,0.06087 0.9972363,1.25296 1.8302703,2.062018 3.110291,3.020771 7.13903,4.871627 11.877705,5.456774 0.502438,0.06204 3.416453,-0.02794 4.167095,-0.128677 z m 7.254897,-4.825718 c 0.574042,-0.122437 1.066764,-0.37246 1.728266,-0.876977 0.68751,-0.524353 1.021793,-0.923001 1.334725,-1.591719 0.903281,-1.930269 0.128119,-4.640962 -1.67132,-5.844501 -0.661662,-0.442546 -1.209958,-0.625364 -2.020205,-0.673595 -0.454934,-0.02708 -0.711652,-0.07632 -0.858605,-0.164672 -0.342437,-0.205892 -0.947698,-0.886283 -1.367069,-1.53676 -0.215833,-0.334776 -0.606369,-0.939784 -0.867856,-1.344463 -0.467268,-0.723146 -0.474894,-0.742255 -0.444155,-1.112919 0.01892,-0.228197 0.08513,-0.450213 0.16763,-0.562168 0.317801,-0.43124 1.159869,-0.695811 2.550299,-0.801283 0.319364,-0.02422 0.791791,-0.07264 1.049839,-0.107593 0.453725,-0.06145 0.48015,-0.05679 0.802338,0.14145 1.475802,0.908069 3.518072,0.660993 4.839396,-0.585477 0.415917,-0.392356 0.542839,-0.569913 0.822698,-1.150914 0.488646,-1.014452 0.583716,-1.666008 0.373326,-2.558549 -0.261889,-1.111018 -1.191143,-2.246944 -2.285929,-2.794337 -0.58769,-0.293845 -1.307389,-0.488379 -1.814827,-0.490546 -0.841784,-0.0036 -1.925462,0.425297 -2.306118,0.912702 -0.425425,0.544726 -1.043207,1.105921 -1.459276,1.325607 -0.853586,0.450699 -1.904071,0.600054 -2.722537,0.387082 -0.599647,-0.156033 -0.714561,-0.250809 -0.714561,-0.589338 0,-0.240197 0.04051,-0.320795 0.271893,-0.540901 0.229535,-0.218351 0.425709,-0.30732 1.259226,-0.571084 0.869909,-0.275281 1.05106,-0.35969 1.523166,-0.709736 0.643388,-0.477043 0.954693,-0.82791 1.272592,-1.434318 0.335417,-0.639823 0.462568,-1.194711 0.461992,-2.016135 -0.0017,-2.415796 -1.654721,-4.4736239 -3.756856,-4.6768401 -1.617836,-0.1563976 -2.878447,0.267285 -3.933024,1.3218611 -0.535389,0.53539 -0.858427,1.036154 -1.111611,1.723188 -0.165419,0.448879 -0.168342,0.489065 -0.115476,1.587701 0.101163,2.102312 0.04838,2.458807 -0.44748,3.022131 -0.254903,0.289585 -0.279627,0.300888 -0.682501,0.311991 -0.312765,0.0086 -0.610822,0.08691 -1.18377,0.310936 -0.96865,0.378749 -1.247185,0.428463 -1.592408,0.28422 -0.4046,-0.169053 -0.573185,-0.360593 -0.573185,-0.651233 0,-0.411679 -0.252298,-1.271269 -0.526014,-1.792152 -0.321963,-0.612697 -1.063099,-1.373019 -1.625846,-1.667937 -0.576152,-0.301942 -1.054501,-0.427607 -1.807646,-0.474878 -1.428386,-0.08965 -2.548643,0.462463 -3.34047,1.646342 -0.920735,1.376612 -1.058195,3.009848 -0.368028,4.372734 0.198094,0.391181 0.917399,1.131782 1.414271,1.456144 0.447901,0.292393 0.848618,0.40416 1.915856,0.53437 1.72094,0.209965 2.267884,0.622938 2.340386,1.767121 0.02787,0.439877 0.01188,0.51359 -0.199599,0.919994 -0.276165,0.530711 -0.71639,0.90937 -1.765066,1.518222 -0.394507,0.229047 -0.902016,0.546628 -1.127797,0.705736 l -0.410509,0.289287 -0.47756,-0.124404 c -2.375708,-0.618868 -5.0667588,0.973151 -5.9541615,3.522468 -0.1702255,0.489022 -0.1902669,0.639914 -0.1905387,1.434574 -2.801e-4,0.827611 0.015002,0.93225 0.2245216,1.537043 0.3113033,0.898597 0.6414397,1.460143 1.1677287,1.986244 1.0228849,1.022522 2.3292539,1.49093 3.9277729,1.408332 0.891588,-0.04607 1.378929,-0.166386 2.123257,-0.524196 0.900475,-0.432872 1.617498,-1.139967 2.063027,-2.034459 0.21437,-0.430391 0.254436,-0.589677 0.30217,-1.2013 0.135687,-1.738555 0.850923,-2.854238 2.283594,-3.562133 0.673725,-0.332895 0.93458,-0.321965 2.233834,0.09359 1.184379,0.378816 1.612865,0.451587 2.063878,0.350513 0.297444,-0.06666 0.334794,-0.05832 0.621165,0.13871 0.398873,0.274432 0.828445,0.798621 1.499042,1.829215 0.564347,0.867306 1.223786,1.822704 1.478558,2.142137 0.131504,0.164882 0.138102,0.21262 0.06791,0.491364 -0.09851,0.391235 -0.100189,1.293715 -0.0033,1.764841 0.04096,0.199103 0.198952,0.622667 0.3511,0.941254 0.22925,0.480033 0.383232,0.685266 0.898993,1.198214 0.703987,0.700149 1.388099,1.105649 2.243395,1.329749 0.569255,0.149153 1.502369,0.176701 2.047429,0.06044 z m 4.948296,-1.237813 c 2.08613,-2.175243 3.826647,-5.236348 4.729037,-8.317112 0.759446,-2.592758 0.907219,-5.653109 0.41397,-8.573285 C 42.774315,14.961495 39.356148,9.7861385 34.634706,6.9330131 32.03639,5.3628738 29.119727,4.3806983 26.095577,4.0574929 24.7479,3.9134601 22.455342,3.9601246 21.16581,4.1578371 17.680536,4.6922036 14.385383,6.1420095 11.579058,8.3758289 10.79127,9.0029037 9.20817,10.601162 8.5077055,11.476589 5.0035241,15.856046 3.4765809,21.567478 4.3801787,26.915333 c 0.2644694,1.565237 0.8034374,3.375449 1.4330185,4.813028 0.3269934,0.746652 0.4724753,0.961947 0.3851815,0.570019 -0.027613,-0.123977 -0.04994,-0.763378 -0.049615,-1.420891 5.192e-4,-1.050706 0.020171,-1.264216 0.162275,-1.763089 0.6774362,-2.378218 2.8001695,-4.418413 5.2415153,-5.037711 0.775097,-0.19662 1.682696,-0.268154 2.280834,-0.17977 l 0.444035,0.06561 0.717287,-0.431841 c 1.076446,-0.648071 1.053187,-0.623643 0.647566,-0.68011 -1.208474,-0.168231 -2.26098,-0.509772 -2.918444,-0.947041 -0.53359,-0.354882 -1.470101,-1.303729 -1.749659,-1.772705 -0.272966,-0.457919 -0.510318,-1.029662 -0.675124,-1.626271 -0.182609,-0.661057 -0.161999,-2.361081 0.03758,-3.099977 0.454915,-1.684198 1.682907,-3.23055 3.121035,-3.93017 1.670666,-0.812746 3.893016,-0.752785 5.493099,0.148208 1.2143,0.683761 2.313219,1.952236 2.752561,3.177262 0.172415,0.480745 0.211689,0.499064 0.6466,0.301599 0.425638,-0.193255 0.453385,-0.287339 0.35994,-1.220451 -0.131094,-1.309042 0.02833,-2.326036 0.516382,-3.294052 0.461453,-0.915265 1.357279,-1.9559071 2.157335,-2.5060842 1.10016,-0.7565508 2.464355,-1.1827747 3.776548,-1.1799307 1.819024,0.00394 3.12821,0.5423302 4.385159,1.8033469 0.931985,0.9350008 1.534156,2.007294 1.854631,3.302566 0.119039,0.481126 0.170928,2.33848 0.07488,2.680419 l -0.04797,0.170783 0.594475,0.0058 c 1.969586,0.01919 3.953775,1.142464 5.136146,2.90763 0.677298,1.011143 0.985773,2.007334 0.980498,3.166436 -0.0079,1.740752 -0.902317,3.516273 -2.367731,4.700332 -1.601196,1.293773 -4.175333,1.619656 -6.042267,0.764946 -0.323807,-0.148244 -0.436223,-0.165536 -0.860038,-0.132291 -0.635964,0.04989 -0.79495,0.0847 -0.79495,0.174063 0,0.102512 0.704509,1.160226 0.874477,1.312896 0.08847,0.07946 0.322526,0.148227 0.64011,0.188058 1.909341,0.239461 3.514858,1.373075 4.58727,3.238951 0.635792,1.106206 0.907582,2.316035 0.849392,3.780922 -0.04076,1.02608 -0.267503,1.828506 -0.760612,2.691737 -0.166334,0.291184 -0.278913,0.529426 -0.250174,0.529426 0.02874,0 0.295476,-0.253612 0.592749,-0.563582 z"
            transform="scale(0.26458333)"/>
    </g>
    <g id="reactive-graph-logo-runtime-layer">
      <path id="reactive-graph-logo-runtime"
            style="fill:var(--rg-logo-runtime-fill, transparent);stroke-width:0.001;stroke-dasharray:none"
            d="M 6.1355427,1.0578166 C 4.6931693,1.1154983 3.2987265,1.8067067 2.369711,2.909907 1.3231029,4.1188184 0.8538239,5.825672 1.2211141,7.3917968 1.3102512,7.8075091 1.4508789,8.2115217 1.64021,8.5922402 1.5610411,8.1633805 1.5919669,7.6978446 1.8226278,7.316866 2.1930461,6.6351554 3.0026377,6.182725 3.7796141,6.3313965 3.9212795,6.23825 4.0712842,6.1581154 4.2111125,6.0621621 3.8722477,6.0289347 3.4608053,5.9418288 3.1951059,5.6687957 2.5074263,5.1209215 2.5220234,4.0026777 3.0981679,3.3805296 3.4648179,2.9339577 4.0904678,2.7832653 4.6390231,2.9197038 5.1846659,3.0420243 5.6333911,3.4926436 5.790861,4.0245606 5.9485386,3.9929985 6.0630175,3.9434105 6.0025628,3.7594651 5.9740516,3.416876 5.9722233,3.0563238 6.1594502,2.7530171 6.4743959,2.1384356 7.1733343,1.7518741 7.8625334,1.8220861 c 0.8435401,0.026239 1.5129317,0.8199236 1.5492952,1.6366176 0.011138,0.1555374 0.0017,0.3122181 -0.025838,0.4656045 C 10.327852,3.8419632 11.253997,4.7112099 11.15798,5.6673085 11.08056,6.2931801 10.643295,6.8852758 10.019543,7.0522827 9.6228916,7.1751962 9.1769555,7.1433187 8.8097985,6.9453124 8.7188935,6.9873094 8.3811407,6.9135074 8.5327649,7.0714909 c 0.095848,0.114133 0.1520074,0.3283741 0.3312938,0.3094537 0.785283,0.076696 1.3904203,0.7896212 1.4670933,1.5539104 0.05979,0.4076194 -0.04587,0.8394954 -0.28577,1.174088 C 10.75491,9.4450603 11.231949,8.5564537 11.494548,7.6277136 12.05576,5.4184441 11.027825,2.8798059 9.0233626,1.7627257 8.1514147,1.2644247 7.1398904,1.0113428 6.1355427,1.0578166 Z M 5.5671021,8.0222491 C 5.2922214,8.1230204 5.2523186,8.4345575 5.2394733,8.6873248 5.087616,9.4918352 4.2619228,10.043007 3.4656299,10.013348 3.0323382,10.024404 2.5955945,9.8832481 2.2608439,9.6056152 3.121534,10.734104 4.4810367,11.436186 5.8828905,11.583472 c 0.7887647,0.04641 1.587432,-0.05141 2.3275988,-0.334766 0.3708969,-0.13909 0.7287652,-0.315077 1.0607794,-0.531531 C 8.6164429,10.98614 7.8166763,10.769154 7.3520498,10.242853 7.0074958,9.9042031 6.8429171,9.409994 6.898287,8.9317543 6.7218202,8.6951964 6.5775239,8.4184693 6.3856568,8.2041502 6.1019896,8.2073704 5.8365442,8.082668 5.5671021,8.0222491 Z"/>
    </g>
    <g id="reactive-graph-logo-flows-layer">
      <path id="reactive-graph-logo-flows"
            style="fill:var(--rg-logo-flows-fill, black);stroke-width:0.0126747"
            d="m 7.7524984,2.3486938 c -0.017136,1.688e-4 -0.034765,5.64e-4 -0.052193,0.00155 C 7.1640139,2.3437721 6.6758655,2.7331506 6.5365519,3.2468302 6.4393446,3.6920016 6.7431213,4.1174907 6.3370809,4.4715617 5.9662249,4.3934552 5.6159426,4.8743791 5.3350749,4.5123861 5.3376219,3.9703642 4.8988077,3.4226386 4.3217,3.4147786 3.3088912,3.2873144 2.7758862,4.7739237 3.6302694,5.3252563 3.9749399,5.6553044 4.625795,5.354419 4.8017741,5.8425374 4.9710983,6.4612553 4.2675558,6.586123 3.8896851,6.9148234 2.8920375,6.5338701 1.7973963,7.6532462 2.2236369,8.639266 2.5791785,9.7669148 4.3452908,9.7638958 4.7082397,8.6434001 4.7210117,8.0672899 4.8886328,7.7036179 5.4668498,7.4739624 5.7822172,7.4171193 6.1730833,7.7708408 6.5525716,7.6357096 6.9138754,7.8160952 7.1511145,8.453013 7.4739624,8.7896444 7.1329926,9.8249784 8.507845,10.761915 9.343099,10.05365 10.279528,9.4333091 9.6988209,7.7905504 8.5736369,7.9126953 8.2371077,7.7494091 8.0373263,7.2391146 7.8031413,6.946346 7.6581549,6.3473613 8.5259588,6.487299 8.9327881,6.3835897 9.4320779,6.7908258 10.277196,6.5667887 10.51512,5.9675944 11.019631,5.0321261 9.7134039,3.9841138 8.911084,4.6880859 8.680299,5.1326525 8.0037639,5.305048 7.6243408,5.0828939 7.4853462,4.6670795 8.1614161,4.7445178 8.3917358,4.5144531 9.3255496,3.9292961 8.8320808,2.338064 7.7524984,2.3486938 Z M 7.632609,2.894397 c 0.093191,-0.00476 0.1886454,0.010281 0.2795695,0.048576 0.3650617,0.1537599 0.5173237,0.5712488 0.3379639,0.9265584 -0.078844,0.1561895 -0.2607731,0.298964 -0.4299479,0.3379639 -0.08303,0.019 -0.2649169,0.016749 -0.3358968,-0.00465 -0.03389,-0.0099 -0.062583,-0.01702 -0.063562,-0.01602 -9.8e-4,0.00149 -0.1305579,0.2175044 -0.2878378,0.4800741 l -0.2857706,0.4774902 0.075448,0.046509 c 0.1620678,0.1000399 0.3186321,0.2931399 0.398942,0.4919597 0.03205,0.07935 0.047306,0.102769 0.064596,0.100769 0.012411,-0.0016 0.3688571,-0.048486 0.7921997,-0.1043864 0.4233426,-0.05595 0.7746141,-0.1018026 0.7803141,-0.1018026 0.00573,0 0.016371,-0.042234 0.023771,-0.093534 0.017684,-0.1227499 0.064161,-0.2202246 0.1452107,-0.3059245 0.1204504,-0.1273899 0.306653,-0.1910137 0.4697388,-0.1607137 0.3059587,0.0569 0.501809,0.343581 0.436149,0.6387207 -0.09273,0.4168096 -0.5965954,0.5628789 -0.8996866,0.2604492 L 9.0588786,5.8415039 8.2398071,5.9505412 C 7.7895436,6.0104811 7.417701,6.0591917 7.413501,6.0590617 c -0.0042,-10e-5 -0.011003,0.043218 -0.015503,0.096118 -0.020236,0.2393797 -0.117797,0.4581079 -0.2852539,0.6407877 -0.03604,0.0394 -0.065112,0.075615 -0.065112,0.080615 0,0.005 0.015917,0.029894 0.035657,0.055294 0.01974,0.0254 0.039742,0.052978 0.044442,0.060978 0.00816,0.0141 -0.1907107,0.1694652 -0.2154907,0.1684652 -0.00589,-3e-4 -0.031718,-0.03103 -0.057878,-0.06873 L 6.8063029,7.0238607 6.73809,7.053833 C 6.6333741,7.100133 6.5333287,7.1233812 6.3985758,7.1323812 6.1133401,7.1510012 5.84071,7.0529247 5.6192952,6.8522949 c -0.04292,-0.0389 -0.081066,-0.070797 -0.085266,-0.070797 -0.0074,0 -1.4110004,0.9322296 -1.4309204,0.9503296 -0.00551,0.005 0.00987,0.048435 0.034107,0.096635 0.02424,0.04816 0.053179,0.1225647 0.064079,0.1653646 0.025188,0.09902 0.025367,0.2935075 5.168e-4,0.3917074 -0.070755,0.2795297 -0.3104336,0.5163767 -0.5891113,0.5818766 -0.045312,0.0108 -0.1309193,0.018893 -0.1901693,0.018603 C 2.8311657,8.9832048 2.4510925,8.3654734 2.7140462,7.8346639 2.914601,7.4298443 3.4403752,7.2682967 3.8178548,7.4956665 l 0.07183,0.043408 L 4.6369263,7.0403971 5.3846842,6.5422363 5.3547119,6.4678223 C 5.253412,6.2170325 5.2488929,5.9618629 5.3417928,5.7138631 L 5.3836507,5.6027588 5.3252563,5.55625 c -0.03213,-0.0256 -0.06398,-0.051327 -0.07028,-0.056327 -0.00904,-0.00783 0.090958,-0.1582081 0.1457275,-0.2191081 0.00588,-0.0065 0.039738,0.010491 0.078548,0.039791 0.06423,0.0485 0.069089,0.049988 0.083199,0.027388 0.00822,-0.01321 0.058401,-0.058469 0.1116211,-0.1007691 C 5.911212,5.0587851 6.1999885,4.9817828 6.5096802,5.0239827 L 6.5861613,5.034318 6.8874349,4.5325399 7.1881917,4.0307617 7.1427165,3.977535 C 7.0156256,3.8290655 6.9642193,3.5907341 7.0161092,3.3915243 7.0914444,3.1023245 7.3530351,2.9086779 7.632609,2.894397 Z M 4.220931,3.9553141 c 0.3643576,0 0.6141452,0.3415278 0.5059123,0.6919475 l -0.026872,0.0863 0.041341,0.03359 c 0.02884,0.0235 0.037989,0.03876 0.030489,0.05116 -0.021673,0.03603 -0.1486126,0.2015381 -0.1545126,0.2015381 -0.00338,0 -0.028244,-0.017357 -0.055294,-0.038757 L 4.5129028,4.9418172 4.42712,4.9764404 v 5.168e-4 C 4.3260511,5.0178572 4.1726445,5.0288786 4.0814046,5.0022786 3.9300298,4.9582187 3.8127307,4.8603152 3.7434408,4.7201253 3.7036608,4.6396254 3.6959476,4.6097542 3.6912476,4.5206543 3.6825736,4.3553945 3.7246599,4.2372421 3.8333577,4.1217122 3.9395126,4.0088928 4.0645061,3.9553141 4.220931,3.9553141 Z m 0.7689453,1.0009725 c 0.00305,0 0.052454,0.035548 0.109554,0.078548 0.057098,0.043 0.1057038,0.079132 0.1080038,0.081132 0.0023,0.00172 -0.031966,0.052195 -0.075964,0.1116211 -0.044036,0.059339 -0.083342,0.1082311 -0.087333,0.1085205 -0.00395,3e-4 -0.054211,-0.034715 -0.1116211,-0.077515 -0.06443,-0.0481 -0.1021853,-0.084068 -0.098185,-0.094568 0.00804,-0.02094 0.1478461,-0.2077393 0.1555461,-0.2077393 z m 2.2815145,2.264978 c 0.016634,-0.01 0.1727072,0.2029584 0.1617472,0.2206584 -0.00352,0.0057 -0.051057,0.041915 -0.1059367,0.080615 -0.054882,0.0386 -0.1027534,0.07028 -0.1064534,0.07028 -0.015841,0 -0.1624755,-0.2178596 -0.1524455,-0.2268595 0.014326,-0.01235 0.1834184,-0.1328941 0.2030884,-0.1446941 z m 0.3167765,0.4325318 c 0.00787,-3.422e-4 0.012629,0.0042 0.01912,0.011886 0.03713,0.04401 0.1373915,0.1919548 0.1369425,0.2020548 -2.46e-4,0.0057 -0.045442,0.041482 -0.1002522,0.079582 -0.05481,0.0381 -0.1051211,0.070864 -0.1116211,0.072864 -0.00646,0.00215 -0.04659,-0.04512 -0.0894,-0.1054199 l -0.078031,-0.1100708 0.028422,-0.021187 c 0.015451,-0.0117 0.065561,-0.048115 0.1116211,-0.080615 0.048821,-0.034438 0.070089,-0.048522 0.083199,-0.049093 z m 0.3074748,0.4294311 c 0.00906,-0.0012 0.014101,0.00349 0.020154,0.011886 0.0094,0.01303 0.045732,0.064305 0.081132,0.1142049 l 0.064596,0.090951 -0.1080037,0.076998 c -0.059418,0.0425 -0.1122055,0.077168 -0.1173055,0.076998 -0.010183,-3.3e-4 -0.1381249,-0.1775057 -0.1493449,-0.2067057 -0.00479,-0.0125 0.028169,-0.043652 0.1023193,-0.097152 0.06456,-0.046625 0.091351,-0.065183 0.1064535,-0.067179 z m 0.7338053,0.3720704 c 0.061332,-9.4e-6 0.096026,0.00624 0.1503784,0.022738 0.2292878,0.06964 0.4174106,0.2795142 0.4614706,0.515214 0.060486,0.3235502 -0.1305786,0.6497693 -0.4423503,0.7539592 -0.1057159,0.0354 -0.2518882,0.04292 -0.3570841,0.01912 C 8.2009112,9.711879 8.0035608,9.5213246 7.9421509,9.2831543 7.9019409,9.1272045 7.9216944,8.9524677 7.9958944,8.8082479 c 0.03596,-0.0699 0.036286,-0.071586 0.013436,-0.1012858 -0.01279,-0.0167 -0.023616,-0.034241 -0.023771,-0.038241 -1.55e-4,-0.0044 0.049431,-0.043516 0.1100708,-0.086816 0.095403,-0.0679 0.1120402,-0.076011 0.1245402,-0.058911 0.012809,0.0175 0.025211,0.015146 0.1085205,-0.020154 0.080076,-0.0339 0.1137487,-0.040475 0.2289266,-0.045475 0.028064,-0.0012 0.051386,-0.00206 0.07183,-0.00207 z"/>
    </g>
    <g id="reactive-graph-logo-relations-layer">
      <path id="reactive-graph-logo-relations"
            style="fill:var(--rg-logo-relations-fill, #00a1e4);stroke-width:0.00327903"
            transform="scale(0.26458333)"
            d="m 31.959823,36.888536 c -0.709681,-0.146229 -1.45675,-0.759723 -1.769405,-1.45304 -0.272088,-0.603356 -0.271872,-1.324001 5.94e-4,-1.983759 0.143273,-0.346926 0.172577,-0.485422 0.11491,-0.543089 -0.04257,-0.04257 -0.07741,-0.09826 -0.07741,-0.123738 0,-0.0889 0.741092,-0.55598 0.831295,-0.523936 0.05001,0.01777 0.244635,-0.02296 0.432496,-0.0905 0.828299,-0.297808 1.602128,-0.228354 2.270772,0.203812 1.062426,0.686678 1.445946,1.984948 0.918009,3.107586 -0.479182,1.018963 -1.654458,1.626483 -2.721264,1.406668 z m 0.746907,-0.95999 c 0.335807,-0.09325 0.72189,-0.436507 0.878347,-0.780907 0.179761,-0.395697 0.167034,-1.019657 -0.02782,-1.363669 -0.447941,-0.79085 -1.485612,-1.024708 -2.182589,-0.491886 -0.771085,0.589476 -0.810086,1.752418 -0.07905,2.357068 0.404961,0.334947 0.875544,0.428121 1.411107,0.279394 z m -3.328119,-4.342442 c -0.133707,-0.175111 -0.243104,-0.359776 -0.243104,-0.410366 0,-0.08349 0.587235,-0.565781 0.6938,-0.569808 0.05634,-0.0021 0.535834,0.660813 0.535834,0.74083 0,0.04919 -0.285768,0.267749 -0.660748,0.505341 -0.05319,0.0337 -0.169388,-0.06117 -0.325782,-0.265997 z m -1.041692,-1.479176 c -0.185228,-0.207415 -0.451447,-0.599674 -0.421421,-0.62094 0.01349,-0.0096 0.182354,-0.13075 0.375248,-0.269319 0.192895,-0.13857 0.365911,-0.251945 0.384481,-0.251945 0.01857,0 0.151302,0.17066 0.29496,0.379245 l 0.261196,0.379245 -0.201643,0.16179 c -0.110903,0.08898 -0.281683,0.209444 -0.379511,0.267689 -0.166764,0.09929 -0.186326,0.09643 -0.31331,-0.04576 z m -1.311995,-1.814236 c -0.116633,-0.181758 -0.21206,-0.363319 -0.21206,-0.40347 0,-0.04015 0.150534,-0.181151 0.334519,-0.313331 l 0.33452,-0.240328 0.132495,0.148528 c 0.163109,0.182848 0.4281,0.565616 0.4281,0.618373 0,0.04548 -0.694069,0.520695 -0.760488,0.520695 -0.02476,0 -0.140453,-0.14871 -0.257086,-0.330467 z m -14.694422,5.567963 c -1.872081,-0.422057 -2.8793713,-2.485607 -2.046233,-4.191942 0.752583,-1.541353 2.637627,-2.129279 4.138119,-1.290638 l 0.288478,0.161233 2.823209,-1.879985 c 1.552764,-1.033991 2.830832,-1.886055 2.840151,-1.893474 0.0093,-0.0074 -0.06633,-0.241546 -0.1681,-0.520281 -0.161561,-0.442483 -0.184867,-0.606476 -0.183667,-1.29239 0.0012,-0.673848 0.02703,-0.857466 0.181755,-1.290808 l 0.18038,-0.505209 -0.179039,-0.143765 c -0.09847,-0.07907 -0.210375,-0.164566 -0.248674,-0.189988 -0.06443,-0.04277 0.383476,-0.807691 0.472957,-0.807691 0.02035,0 0.151709,0.06602 0.291908,0.146705 l 0.254904,0.146705 0.270977,-0.251891 c 0.373621,-0.347305 0.938576,-0.682773 1.466455,-0.870773 0.376559,-0.134109 0.579594,-0.158379 1.336096,-0.159713 l 0.892061,-0.0016 1.138166,-1.897827 1.138166,-1.897827 -0.229701,-0.300926 c -0.350965,-0.459789 -0.48352,-0.873068 -0.482743,-1.505088 5.47e-4,-0.453879 0.03326,-0.617251 0.19291,-0.963924 0.230104,-0.499642 0.690157,-0.970337 1.206835,-1.234753 0.33801,-0.17298 0.444289,-0.192275 1.058852,-0.192227 0.616781,4.7e-5 0.718562,0.01871 1.047936,0.192134 1.265087,0.666108 1.750484,2.042539 1.162933,3.297704 -0.200577,0.428485 -0.690086,0.919887 -1.160167,1.164653 -0.321678,0.167495 -0.444335,0.191659 -0.982389,0.193536 -0.338149,0.0012 -0.70704,-0.02097 -0.819756,-0.04922 l -0.204939,-0.05137 -1.058852,1.78665 c -0.582369,0.982657 -1.067954,1.809284 -1.079078,1.836949 -0.01112,0.02766 0.15795,0.176358 0.375721,0.33043 0.525938,0.372097 0.99785,0.949126 1.30564,1.596467 0.223257,0.469552 0.272693,0.529246 0.438435,0.529426 0.161073,2.05e-4 4.960374,-0.611597 5.66731,-0.722417 0.244506,-0.03833 0.254928,-0.05176 0.331378,-0.426999 0.204156,-1.002065 0.869747,-1.627347 1.812834,-1.703049 0.548242,-0.04401 1.013915,0.110724 1.426674,0.47405 0.689847,0.607227 0.885671,1.52661 0.494728,2.32271 -0.347172,0.706965 -0.980547,1.105714 -1.756322,1.105714 -0.544206,0 -0.956576,-0.16979 -1.395909,-0.574754 l -0.313056,-0.288565 -3.079422,0.402026 c -1.693682,0.221114 -3.104548,0.417396 -3.13526,0.436182 -0.03071,0.01879 -0.102684,0.305645 -0.159939,0.637465 -0.126467,0.732942 -0.442143,1.418179 -0.925974,2.010009 -0.192129,0.235015 -0.349325,0.445455 -0.349325,0.467646 0,0.02219 0.06523,0.131948 0.144948,0.243906 l 0.144949,0.203562 -0.23034,0.195188 c -0.126687,0.107353 -0.302597,0.234845 -0.390911,0.283315 -0.170101,0.09336 -0.159577,0.10043 -0.450302,-0.302596 -0.08352,-0.115782 -0.100889,-0.115418 -0.389232,0.0082 -1.308589,0.560926 -2.877662,0.298015 -4.075371,-0.682862 -0.232544,-0.190445 -0.461439,-0.331376 -0.508656,-0.313181 -0.09347,0.03602 -5.240439,3.445856 -5.33626,3.535242 -0.03224,0.03008 0.0395,0.309105 0.159414,0.620066 0.204254,0.52965 0.216594,0.610998 0.195246,1.287146 -0.01973,0.624791 -0.04844,0.774007 -0.21374,1.110614 -0.344033,0.700576 -1.042408,1.340468 -1.726343,1.581774 -0.409743,0.144566 -1.169949,0.187455 -1.600825,0.09032 z m 1.386048,-1.123321 c 0.398343,-0.223463 0.810613,-0.714852 0.927738,-1.10578 0.213038,-0.711057 8.52e-4,-1.579831 -0.498202,-2.039844 -0.445953,-0.411065 -0.685012,-0.510475 -1.309463,-0.544526 -0.633908,-0.03457 -0.978744,0.07845 -1.419127,0.465113 -0.515583,0.452687 -0.780378,1.345791 -0.598377,2.018208 0.162,0.59852 0.67032,1.14034 1.285812,1.370551 0.420296,0.157201 1.176481,0.08038 1.611619,-0.163722 z m 11.272191,-7.007015 c 2.334082,-1.146121 2.322162,-4.352609 -0.02033,-5.468854 -0.416869,-0.198646 -0.492097,-0.211575 -1.229634,-0.211328 -0.75636,2.73e-4 -0.803399,0.009 -1.263791,0.234882 -2.057422,1.009451 -2.318822,3.743733 -0.489914,5.124572 0.588459,0.444291 0.968561,0.553377 1.856174,0.532705 0.667714,-0.01555 0.795573,-0.03917 1.147494,-0.211977 z M 36.167004,21.89678 c 0.360818,-0.186587 0.551249,-0.487346 0.551249,-0.870623 0,-0.4228 -0.182226,-0.746738 -0.50667,-0.900697 -0.652324,-0.309549 -1.359835,0.06326 -1.454122,0.766212 -0.100164,0.746777 0.744444,1.349044 1.409543,1.005108 z m -6.849122,-7.012802 c 0.240077,-0.07431 0.740928,-0.578968 0.84421,-0.850622 0.105737,-0.278108 0.0745,-0.858718 -0.06242,-1.160162 -0.496696,-1.093529 -2.111345,-1.147879 -2.656056,-0.0894 -0.320662,0.623109 -0.152906,1.482933 0.366645,1.879214 0.461164,0.351747 0.884633,0.413815 1.507625,0.220974 z m -10.651347,4.952337 c -0.178468,-0.133961 -0.324487,-0.27216 -0.324487,-0.307108 0,-0.03495 0.113047,-0.214965 0.251216,-0.400036 0.246438,-0.330094 0.254558,-0.334517 0.426956,-0.232565 0.09666,0.05716 0.275231,0.186326 0.39683,0.287033 l 0.221089,0.183105 -0.275433,0.358643 c -0.151489,0.197254 -0.29709,0.35771 -0.323559,0.356569 -0.02647,-0.0011 -0.194144,-0.111679 -0.372612,-0.245641 z m -3.262389,-0.977434 c -0.50814,-0.154569 -0.99328,-0.579524 -1.245142,-1.090672 -0.22067,-0.447844 -0.218472,-1.216303 0.0047,-1.646334 0.662911,-1.27732 2.308008,-1.51828 3.24565,-0.475396 0.484221,0.53857 0.627373,1.191499 0.416738,1.900783 -0.10399,0.350173 -0.103038,0.359632 0.04856,0.482387 l 0.154627,0.12521 -0.291376,0.385925 -0.291377,0.385926 -0.197473,-0.140613 -0.197473,-0.140614 -0.411466,0.138613 c -0.415407,0.139941 -0.921174,0.170543 -1.235974,0.07478 z m 0.868117,-1.026415 c 0.237307,-0.144695 0.407531,-0.41576 0.430729,-0.685896 0.03736,-0.435042 -0.005,-0.567163 -0.265672,-0.827793 -0.251365,-0.251366 -0.287458,-0.265215 -0.691167,-0.265215 -0.403708,0 -0.439801,0.01385 -0.691167,0.265215 -0.239644,0.239644 -0.265215,0.29925 -0.265215,0.61821 0,0.643101 0.358566,1.028829 0.956382,1.028829 0.184658,0 0.394738,-0.05325 0.52611,-0.13335 z"/>
    </g>
    <g id="reactive-graph-logo-entities-layer">
      <path id="reactive-graph-logo-entities"
            style="fill:var(--rg-logo-entities-fill, #dc0073);stroke-width:0.0126747"
            d="m 3.2196605,8.7025048 c -0.247714,-0.08066 -0.405726,-0.338323 -0.359923,-0.586902 0.06397,-0.347194 0.429379,-0.533869 0.742297,-0.379216 0.149931,0.0741 0.246078,0.198759 0.280453,0.363621 0.04808,0.230594 -0.06769,0.463663 -0.283405,0.570551 -0.07573,0.03752 -0.09857,0.04261 -0.205602,0.04578 -0.07697,0.0023 -0.139677,-0.0027 -0.17382,-0.01383 z m 5.18435,0.793448 c -0.149322,-0.05336 -0.244611,-0.180196 -0.254813,-0.339166 -0.0079,-0.123107 0.01895,-0.201192 0.09949,-0.289312 0.08271,-0.0905 0.164762,-0.12669 0.286378,-0.126319 0.115057,3.44e-4 0.2073,0.04238 0.286592,0.130568 0.170716,0.189878 0.109162,0.496158 -0.122225,0.608171 -0.08391,0.04062 -0.207836,0.04736 -0.295418,0.01606 z m 0.97266,-3.6947504 c -0.02398,-0.0076 -0.06759,-0.03701 -0.0969,-0.06525 -0.08061,-0.07765 -0.102117,-0.182612 -0.05727,-0.279485 0.05989,-0.129362 0.20434,-0.190446 0.3281,-0.138749 0.176928,0.07391 0.22129,0.288137 0.08655,0.417938 -0.07718,0.07435 -0.164202,0.09625 -0.260474,0.06554 z M 7.5220495,3.9539363 c -0.07996,-0.01973 -0.142452,-0.05842 -0.202858,-0.125602 -0.175655,-0.195371 -0.110644,-0.503409 0.129532,-0.6137489 0.08426,-0.03871 0.238834,-0.03754 0.31998,0.0024 0.07595,0.03741 0.152617,0.1140759 0.190027,0.1900259 0.02378,0.04827 0.02925,0.07985 0.02901,0.16724 -2.58e-4,0.09156 -0.0053,0.117367 -0.03387,0.171912 -0.03945,0.07542 -0.119032,0.151245 -0.192419,0.183328 -0.06527,0.02853 -0.17665,0.03989 -0.239398,0.02441 z m -1.428869,2.8957805 c -0.139055,-0.03652 -0.252679,-0.1035337 -0.36169,-0.2133187 -0.11641,-0.117236 -0.171808,-0.21195 -0.20898,-0.3572927 -0.06523,-0.255061 0.0024,-0.526786 0.179051,-0.719594 0.09318,-0.101692 0.185758,-0.16378 0.319436,-0.214237 0.09453,-0.03568 0.117543,-0.03926 0.255966,-0.03977 0.167449,-6.35e-4 0.225139,0.01237 0.371302,0.08365 0.121361,0.05918 0.272957,0.212877 0.335178,0.339827 0.08749,0.178512 0.108034,0.364846 0.06065,0.550131 -0.03717,0.1453427 -0.09257,0.2400567 -0.208981,0.3572927 -0.110809,0.111597 -0.22423,0.177668 -0.36752,0.2140927 -0.09409,0.02392 -0.281868,0.02353 -0.374408,-7.67e-4 z M 4.0653275,4.7328353 c -0.09481,-0.04112 -0.152187,-0.129035 -0.152187,-0.233204 0,-0.08454 0.02282,-0.135628 0.08603,-0.19267 0.05782,-0.05218 0.111258,-0.06711 0.207144,-0.0579 0.06995,0.0067 0.110359,0.03143 0.168148,0.102834 0.07306,0.09027 0.05752,0.250024 -0.03249,0.333982 -0.0691,0.06446 -0.189258,0.08485 -0.276643,0.04696 z"/>
    </g>
  </svg>

</main>
</body>
</html>
/* No context defined. */

No notes defined.