Add new layout content
The new layout is work in progress
|
@ -33,7 +33,7 @@ export default Ember.Component.extend({
|
|||
_drawPlot: function() {
|
||||
var element = this.get('element');
|
||||
if (element && element.id) {
|
||||
if (this.data) {
|
||||
if (this.data && this.data.get('values')) {
|
||||
var values = this.data.get('values');
|
||||
|
||||
if (values.length > 0) {
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Controller.extend({
|
||||
state: 1,
|
||||
|
||||
dataSetOne: [
|
||||
{
|
||||
label: 'Total consumption [MW]',
|
||||
|
@ -52,10 +54,12 @@ export default Ember.Controller.extend({
|
|||
}
|
||||
}.property('model.[]'),
|
||||
|
||||
S2Voltage203937: function() {
|
||||
var entity = this.model.findBy('id', 'S2_ElectricalGrid');
|
||||
Voltage203937: function() {
|
||||
var entity = this.model.findBy('id', 'S1_ElectricalGrid');
|
||||
if (entity) {
|
||||
return entity.get('properties').findBy('name', 'Voltage203937');
|
||||
} else {
|
||||
return {};
|
||||
}
|
||||
}.property('model.[]'),
|
||||
|
||||
|
@ -66,12 +70,22 @@ export default Ember.Controller.extend({
|
|||
}
|
||||
}.property('model.[]'),
|
||||
|
||||
initState: function() {
|
||||
return this.get('state') === 1;
|
||||
}.property('state'),
|
||||
|
||||
eventState: function() {
|
||||
return this.get('state') === 2;
|
||||
}.property('state'),
|
||||
|
||||
actions: {
|
||||
resetData: function() {
|
||||
this.set('state', 1);
|
||||
this.set('dataSet', this.get('dataSetOne'));
|
||||
},
|
||||
|
||||
eventData: function() {
|
||||
this.set('state', 2);
|
||||
this.set('dataSet', this.get('dataSetTwo'));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -75,7 +75,7 @@ header #title {
|
|||
-webkit-text-rendering: optimizeLegiblity;
|
||||
-moz-text-rendering: optimizeLegibitliy;
|
||||
|
||||
padding: 15px 0 15px 30px;
|
||||
padding: 10px 0 20px 30px;
|
||||
|
||||
float: left;
|
||||
}
|
||||
|
@ -127,6 +127,16 @@ footer {
|
|||
height: 40px !important;
|
||||
}
|
||||
|
||||
#DS-image {
|
||||
width: auto;
|
||||
height: 300px;
|
||||
}
|
||||
|
||||
#TS-image {
|
||||
width: auto;
|
||||
height: 350px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 1.4em;
|
||||
|
||||
|
@ -168,11 +178,19 @@ p {
|
|||
border: 0;
|
||||
|
||||
border-collapse: collapse;
|
||||
|
||||
table-layout: fixed;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.grid td {
|
||||
width: 50%;
|
||||
height: 50%;
|
||||
|
||||
/*padding: 20px 10px 20px 10px;*/
|
||||
padding: 10px;
|
||||
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.layout-page {
|
||||
|
@ -180,8 +198,8 @@ p {
|
|||
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2),
|
||||
0 9px 18px 0 rgba(0, 0, 0, 0.1);
|
||||
|
||||
width: 99%;
|
||||
height: 99%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
padding: 20px;
|
||||
|
||||
|
@ -208,6 +226,8 @@ p {
|
|||
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
.page-grid tr {
|
||||
|
@ -218,6 +238,20 @@ p {
|
|||
.page-grid td {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
width: auto;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.page-grid h2 {
|
||||
font-size: 1.4em;
|
||||
|
||||
padding-top: 35px;
|
||||
}
|
||||
|
||||
.page-grid h3 {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<section id="lapMashupApp">
|
||||
<header class="row">
|
||||
<div id="title">
|
||||
Multi-Site Real-Time Co-Simulation Integrated Lab
|
||||
ERIC Lab
|
||||
<br />
|
||||
Control Center – JRC Ispra
|
||||
European Real-Time Integrated Co-Simulation Lab
|
||||
</div>
|
||||
<div id="logos">
|
||||
<img src={{"assets/images/EU.svg"}} class="svg-logo" />
|
||||
|
|
|
@ -1,25 +1,122 @@
|
|||
<section class="row" id="main">
|
||||
<table class="grid">
|
||||
<tr height="50%">
|
||||
<td width="50%" style="padding-top: 20px;">
|
||||
<tr>
|
||||
<td style="padding-top: 20px;">
|
||||
<div class="layout-page">
|
||||
<table class="page-grid">
|
||||
<tr>
|
||||
<td style="width: 25%">
|
||||
<h3>
|
||||
Italy - Piedmont region
|
||||
<br />
|
||||
380-220kV transmission system
|
||||
</h3>
|
||||
{{#if initState}}
|
||||
<img src={{"assets/images/TS_section/TSmap_m1.gif"}} id="TS-image" />
|
||||
{{/if}}
|
||||
{{#if eventState}}
|
||||
<img src={{"assets/images/TS_section/TSmap_m2.gif"}} id="TS-image" />
|
||||
{{/if}}
|
||||
</td>
|
||||
<td style="width: 50%">
|
||||
<h2>Transmission system simulation</h2>
|
||||
</td>
|
||||
<td style="width: 25%">
|
||||
<img src={{"assets/images/TS_section/TS_fig1.svg"}} class="svg-image" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td width="50%" style="padding-top: 20px;">
|
||||
<td style="padding-top: 20px;">
|
||||
<div class="layout-page">
|
||||
<button {{action 'resetData'}}>Reset</button>
|
||||
<button {{action 'eventData'}}>Event</button>
|
||||
<table class="page-grid">
|
||||
<tr style="height: 25%">
|
||||
<td style="width: 25%">
|
||||
</td>
|
||||
<td style="width: 50%" colspan="2">
|
||||
<h2>Control Center</h2>
|
||||
</td>
|
||||
<td style="width: 25%">
|
||||
<img src={{"assets/images/ControlCenter_section/CS_fig1.svg"}} class="svg-image" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="height: 75%">
|
||||
<td style="width: 50%" colspan="2">
|
||||
<h3>
|
||||
Distribution grid monitoring
|
||||
<br />
|
||||
Voltage measurement
|
||||
</h3>
|
||||
|
||||
{{line-chart data=Voltage203937 height="90%"}}
|
||||
</td>
|
||||
<td style="width: 50%" colspan="2">
|
||||
<button {{action 'resetData'}} disabled={{initState}}>Reset</button>
|
||||
<button {{action 'eventData'}} disabled={{eventState}}>Event</button>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="50%">
|
||||
<td width="50%" style="padding-bottom: 20px;">
|
||||
<tr>
|
||||
<td style="padding-bottom: 20px;">
|
||||
<div class="layout-page">
|
||||
<table class="page-grid">
|
||||
<tr>
|
||||
<td style="width: 40%">
|
||||
<h3>
|
||||
Italy - Turin
|
||||
<br />
|
||||
STURA substation 220/22kV
|
||||
<br />
|
||||
22kV distribution system
|
||||
</h3>
|
||||
{{#if initState}}
|
||||
<img src={{"assets/images/DS_section/DSmap_m1.gif"}} id="DS-image" />
|
||||
{{/if}}
|
||||
{{#if eventState}}
|
||||
<img src={{"assets/images/DS_section/DSmap_m2.gif"}} id="DS-image" />
|
||||
{{/if}}
|
||||
</td>
|
||||
<td style="width: 35%">
|
||||
<h2>Distribution system simulation</h2>
|
||||
</td>
|
||||
<td style="width: 25%">
|
||||
<img src={{"assets/images/DS_section/DS_fig1.svg"}} class="svg-image" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</td>
|
||||
<td width="50%" style="padding-bottom: 20px;">
|
||||
<td style="padding-bottom: 20px;">
|
||||
<div class="layout-page">
|
||||
{{static-chart data=dataSet options=dataOptions}}
|
||||
<table class="page-grid">
|
||||
<tr style="height: 25%">
|
||||
<td style="width: 25%">
|
||||
</td>
|
||||
<td style="width: 50%" colspan="2">
|
||||
<h2>Prosumer behavior</h2>
|
||||
</td>
|
||||
<td style="width: 25%">
|
||||
<img src={{"assets/images/Prosumer_section/Cnsmr_fig1.svg"}} class="svg-image" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="height: 75%">
|
||||
<td style="width: 50%" colspan="2">
|
||||
<h3>
|
||||
Prosumer: Consumption and generation profiles
|
||||
</h3>
|
||||
|
||||
{{line-chart data=LoadProfile height="40%"}}
|
||||
</td>
|
||||
<td style="width: 50%" colspan="2">
|
||||
<img src={{"assets/images/Prosumer_section/Cnsmr_fig2.svg"}} class="svg-image" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
668
public/assets/images/ControlCenter_section/CS_fig1.svg
Normal file
After Width: | Height: | Size: 53 KiB |
165
public/assets/images/DS_section/DS_fig1.svg
Normal file
After Width: | Height: | Size: 178 KiB |
BIN
public/assets/images/DS_section/DSmap_m1.gif
Normal file
After Width: | Height: | Size: 757 KiB |
BIN
public/assets/images/DS_section/DSmap_m2.gif
Normal file
After Width: | Height: | Size: 773 KiB |
654
public/assets/images/Prosumer_section/Cnsmr_fig1.svg
Normal file
After Width: | Height: | Size: 61 KiB |
1935
public/assets/images/Prosumer_section/Cnsmr_fig2.svg
Normal file
After Width: | Height: | Size: 142 KiB |
474
public/assets/images/TS_section/TS_fig1.svg
Normal file
After Width: | Height: | Size: 51 KiB |
BIN
public/assets/images/TS_section/TSmap_m1.gif
Normal file
After Width: | Height: | Size: 355 KiB |
BIN
public/assets/images/TS_section/TSmap_m2.gif
Normal file
After Width: | Height: | Size: 355 KiB |
600
public/assets/images/Title_section/Logo1_EU.svg
Normal file
|
@ -0,0 +1,600 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<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"
|
||||
width="331.22711"
|
||||
height="229.34351"
|
||||
id="svg3921"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.0 r9654"
|
||||
sodipodi:docname="Neues Dokument 3">
|
||||
<defs
|
||||
id="defs3923">
|
||||
<clipPath
|
||||
id="clipPath3943"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<path
|
||||
id="path3945"
|
||||
d="m 0,283.465 283.465,0 L 283.465,0 0,0 0,283.465 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="824.18499"
|
||||
inkscape:cy="-11.042533"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="1680"
|
||||
inkscape:window-height="988"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata3926">
|
||||
<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
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(474.185,-291.97615)">
|
||||
<g
|
||||
transform="matrix(1.25,0,0,-1.25,-487.24787,575.99465)"
|
||||
inkscape:label="logo_ce-en-quadri"
|
||||
id="g3937">
|
||||
<g
|
||||
id="g3939">
|
||||
<g
|
||||
clip-path="url(#clipPath3943)"
|
||||
id="g3941">
|
||||
<g
|
||||
transform="translate(10.4507,179.0083)"
|
||||
id="g3947">
|
||||
<path
|
||||
id="path3949"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,0 78.509,10.158 80.727,10.521 3.397,0.553 6.415,1.202 9.23,1.981 6.35,1.739 12.195,4.394 17.37,7.891 4.961,3.328 9.576,8.168 14.151,13.478 2.909,3.379 5.964,7.784 8.814,12.036 l 0,2.051 C 126.911,42.954 123.58,38.642 120.155,34.835 115.616,29.782 110.854,25.649 106,22.548 100.991,19.322 95.353,16.914 89.241,15.39 86.502,14.7 83.569,14.141 80.272,13.681 78.099,13.376 75.859,13.141 73.694,12.913 72.829,12.822 0,5.097 0,5.097 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(115.7349,192.1714)"
|
||||
id="g3951">
|
||||
<path
|
||||
id="path3953"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -4.914,-2.826 -10.59,-4.894 -16.869,-6.147 -2.682,-0.541 -5.604,-0.981 -8.938,-1.345 -1.957,-0.212 -3.929,-0.383 -5.904,-0.553 -1.066,-0.092 -2.131,-0.184 -3.193,-0.282 -24.059,-2.157 -47.995,-4.452 -70.38,-6.625 l 0,-5.092 c 22.561,2.721 46.663,5.602 70.714,8.323 1.07,0.126 2.14,0.244 3.211,0.361 1.97,0.217 3.942,0.435 5.921,0.695 3.423,0.456 6.417,0.979 9.154,1.6 6.523,1.458 12.416,3.761 17.508,6.843 5.061,3.037 9.533,7.29 14.342,12.491 2.994,3.237 6.325,7.805 9.442,12.097 l 0,1.868 C 21.336,19.253 17.852,15.069 14.403,11.5 9.708,6.637 4.863,2.769 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(129.4746,193.4189)"
|
||||
id="g3955">
|
||||
<path
|
||||
id="path3957"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -4.791,-4.393 -9.792,-7.849 -14.867,-10.271 -4.962,-2.394 -10.515,-4.073 -16.978,-5.136 -2.667,-0.442 -5.567,-0.803 -8.861,-1.103 l -78.318,-6.43 0,-5.082 69.618,7.386 9.008,0.948 c 3.392,0.391 6.352,0.831 9.045,1.344 6.694,1.262 12.436,3.151 17.552,5.769 5.23,2.645 10.456,7.045 15.314,11.704 3.261,3.124 6.4,7.159 9.755,11.391 l 0,1.693 C 7.393,7.397 3.693,3.383 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(110.5361,167.0308)"
|
||||
id="g3959">
|
||||
<path
|
||||
id="path3961"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -4.559,-2.551 -7.969,-4.021 -14.48,-4.7 -3.935,-0.423 -7.98,-0.625 -11.893,-0.82 -1.893,-0.094 -3.789,-0.188 -5.681,-0.308 -11.832,-0.676 -23.451,-1.425 -35.305,-2.198 l -32.726,-2.204 0,-5.081 33.053,3.033 c 10.68,0.958 23.092,2.062 35.209,3.051 l 8.807,0.682 c 3.439,0.264 6.259,0.545 8.871,0.885 6.7,0.865 12.423,2.218 17.494,4.135 5.461,2.042 10.61,5.212 15.767,8.939 4.649,3.36 11.083,9.986 11.091,10.073 l 0,1.795 C 26,13.178 23.578,10.874 18.974,7.84 13.471,4.214 4.088,2.287 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(112.2012,157.3735)"
|
||||
id="g3963">
|
||||
<path
|
||||
id="path3965"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -4.941,-1.448 -10.502,-2.428 -17.001,-2.997 -2.633,-0.228 -5.473,-0.402 -8.684,-0.532 l -8.76,-0.384 c -21.767,-1.011 -43.428,-2.142 -67.305,-3.405 l 0,-5.069 c 22.808,1.765 45.16,3.483 67.503,5.073 l 8.734,0.596 c 3.372,0.221 6.167,0.462 8.797,0.759 6.663,0.745 12.362,1.895 17.419,3.513 5.606,1.776 11.07,4.35 16.24,7.651 3.818,2.431 7.637,5.328 11.599,8.787 l 0,0.088 C 24.175,10.354 20.015,9.527 15.868,7.023 10.79,3.947 5.452,1.584 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(111.3936,148.9546)"
|
||||
id="g3967">
|
||||
<path
|
||||
id="path3969"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -4.977,-1.163 -10.369,-1.912 -16.974,-2.354 -2.547,-0.17 -5.285,-0.298 -8.62,-0.402 l -8.676,-0.308 c -21.86,-0.827 -44.025,-1.777 -66.673,-2.76 l 0,-5.066 c 22.502,1.534 44.577,3.029 66.844,4.422 l 8.656,0.519 c 3.394,0.193 6.16,0.391 8.701,0.622 6.727,0.621 12.231,1.525 17.32,2.843 5.71,1.471 11.26,3.627 16.498,6.408 4.049,2.147 8.088,4.728 12.273,7.835 l 0,2.166 C 24.826,10.658 20.487,7.996 16.143,5.824 11.001,3.25 5.571,1.291 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(110.6523,140.7002)"
|
||||
id="g3971">
|
||||
<path
|
||||
id="path3973"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -4.993,-0.915 -10.371,-1.498 -16.926,-1.837 -2.466,-0.127 -5.104,-0.218 -8.556,-0.296 l -74.72,-2.024 0,-5.061 66.259,3.458 8.584,0.436 c 3.349,0.158 6.089,0.32 8.623,0.515 6.645,0.508 12.112,1.239 17.202,2.303 5.779,1.199 11.387,2.951 16.67,5.202 4.254,1.804 8.516,4.005 12.954,6.681 l 0,2.033 C 25.348,8.652 20.839,6.438 16.362,4.667 11.153,2.597 5.648,1.027 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(110.0659,132.4102)"
|
||||
id="g3975">
|
||||
<path
|
||||
id="path3977"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -9.168,-1.223 -18.607,-1.363 -27.735,-1.499 -2.092,-0.03 -4.185,-0.063 -6.275,-0.105 l -65.605,-1.183 0,-5.054 65.719,2.831 c 2.083,0.095 4.17,0.178 6.259,0.262 9.192,0.368 18.698,0.747 27.99,2.223 5.883,0.926 11.543,2.298 16.825,4.075 4.375,1.464 8.908,3.359 13.499,5.6 l 0,1.94 C 25.852,6.843 21.107,4.976 16.551,3.576 11.331,1.965 5.763,0.761 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(109.5449,124.0684)"
|
||||
id="g3979">
|
||||
<path
|
||||
id="path3981"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -8.591,-0.709 -17.382,-0.71 -25.886,-0.71 -2.645,0 -5.29,-0.001 -7.935,-0.022 -21.734,-0.095 -43.296,-0.273 -65.273,-0.464 l 0,-5.056 c 20.932,0.711 43.14,1.453 65.347,2.112 2.636,0.088 5.273,0.155 7.913,0.223 8.549,0.215 17.389,0.439 26.067,1.378 6.064,0.65 11.58,1.603 16.866,2.911 4.61,1.133 9.344,2.644 14.099,4.46 l 0,1.857 C 26.29,4.928 21.398,3.489 16.636,2.442 11.402,1.287 5.959,0.488 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(109.2129,115.8447)"
|
||||
id="g3983">
|
||||
<path
|
||||
id="path3985"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -3.579,-0.142 -7.455,-0.209 -11.851,-0.209 -1.661,0 -3.322,0.01 -4.979,0.024 l -16.909,0.206 c -11.538,0.086 -23.032,0.105 -33.816,0.115 l -31.207,-0.03 0,-5.053 31.282,0.819 c 10.744,0.264 22.272,0.536 33.773,0.745 l 16.895,0.222 c 4.635,0.073 10.751,0.209 16.946,0.616 6.071,0.394 11.595,0.998 16.89,1.844 4.766,0.763 9.635,1.788 14.506,3.029 l 0,1.794 C 26.525,2.969 21.552,2.047 16.726,1.401 11.461,0.695 5.99,0.238 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(92.1865,107.8984)"
|
||||
id="g3987">
|
||||
<path
|
||||
id="path3989"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -16.852,0.181 c -21.497,0.302 -42.975,0.695 -64.884,1.104 l 0,-5.056 c 20.913,0.138 43.062,0.297 64.9,0.543 l 16.86,0.25 c 5.682,0.097 11.246,0.201 16.872,0.388 11.584,0.372 21.962,1.187 31.66,2.47 l 0,1.758 C 38.821,0.591 28.428,0.038 16.836,-0.037 11.228,-0.087 5.614,-0.047 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(140.7427,98.959)"
|
||||
id="g3991">
|
||||
<path
|
||||
id="path3993"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -130.292,3.304 0,-5.053 L 0,-1.749 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(129.0107,183.8701)"
|
||||
id="g3995">
|
||||
<path
|
||||
id="path3997"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -4.949,-3.975 -8.772,-6.8 -14.83,-9.207 -5.275,-2.096 -10.941,-2.955 -17.415,-3.837 -4.166,-0.584 -8.52,-1.447 -12.679,-1.724 -1.71,-0.115 -3.421,-0.228 -5.127,-0.362 l -68.509,-4.993 0,-5.073 68.786,6.67 8.918,0.836 c 3.308,0.313 6.244,0.677 8.977,1.118 6.666,1.07 12.41,2.704 17.558,4.996 5.342,2.356 10.747,6.214 15.77,10.44 3.418,2.869 6.705,6.481 10.283,10.425 l 0,1.818 C 7.404,6.634 3.817,3.06 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
id="path3999"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 64.606,48.754 114.129,0 0,50.754 -114.129,0 0,-50.754 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4001"
|
||||
style="fill:#254aa5;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 178.757,173.571 -114.15,0 0,-76.361 114.15,0 0,76.361 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
transform="translate(122.9189,162.7139)"
|
||||
id="g4003">
|
||||
<path
|
||||
id="path4005"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 3.972,0 0.771,-2.494 2.015,-6.45 -1.174,-4.013 -4.363,-6.45 -3.106,-2.494 -6.333,0 -2.374,0 -1.174,3.858 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(123.0586,111.79)"
|
||||
id="g4007">
|
||||
<path
|
||||
id="path4009"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 3.978,0 0.776,-2.405 2.02,-6.207 -1.168,-3.864 -4.357,-6.207 -3.101,-2.405 -6.333,0 -2.368,0 -1.168,3.712 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(135.6553,115.1621)"
|
||||
id="g4011">
|
||||
<path
|
||||
id="path4013"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 3.979,0 0.777,-2.398 2.021,-6.207 -1.168,-3.857 -4.356,-6.207 -3.1,-2.398 -6.333,0 -2.368,0 -1.168,3.713 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(135.6553,159.3169)"
|
||||
id="g4015">
|
||||
<path
|
||||
id="path4017"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 3.979,0 0.777,-2.399 2.021,-6.207 -1.168,-3.861 -4.356,-6.207 -3.1,-2.399 -6.333,0 -2.368,0 -1.168,3.712 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(145.0078,149.9653)"
|
||||
id="g4019">
|
||||
<path
|
||||
id="path4021"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 3.971,0 0.77,-2.396 2.014,-6.207 -1.175,-3.861 -4.357,-6.207 -3.101,-2.396 -6.334,0 -2.375,0 -1.175,3.713 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(145.0078,124.3867)"
|
||||
id="g4023">
|
||||
<path
|
||||
id="path4025"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 3.971,0 -3.201,-2.406 1.244,-3.807 -3.189,2.35 -3.182,-2.35 1.256,3.807 L -6.334,0 -2.375,0 -1.175,3.713 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(148.5117,137.3711)"
|
||||
id="g4027">
|
||||
<path
|
||||
id="path4029"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 3.979,0 0.776,-2.4 2.02,-6.209 -1.169,-3.859 -4.357,-6.209 -3.101,-2.4 -6.333,0 -2.374,0 -1.169,3.71 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(110.0762,159.2856)"
|
||||
id="g4031">
|
||||
<path
|
||||
id="path4033"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 3.971,0 0.77,-2.403 2.014,-6.21 -1.175,-3.861 -4.364,-6.21 -3.106,-2.403 -6.333,0 -2.374,0 -1.175,3.712 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(100.9834,149.9341)"
|
||||
id="g4035">
|
||||
<path
|
||||
id="path4037"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 3.978,0 0.776,-2.399 2.014,-6.208 -1.168,-3.861 -4.357,-6.208 -3.104,-2.399 -6.333,0 -2.368,0 -1.168,3.712 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(97.6084,137.3398)"
|
||||
id="g4039">
|
||||
<path
|
||||
id="path4041"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 3.975,0 0.773,-2.401 2.017,-6.209 -1.171,-3.866 -4.36,-6.209 -3.104,-2.401 -6.331,0 l 3.96,0 1.2,3.709 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(100.9834,124.3555)"
|
||||
id="g4043">
|
||||
<path
|
||||
id="path4045"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 3.978,0 0.776,-2.405 2.014,-6.213 -1.168,-3.865 -4.357,-6.213 -3.104,-2.405 -6.333,0 -2.368,0 -1.168,3.707 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(110.209,115.1309)"
|
||||
id="g4047">
|
||||
<path
|
||||
id="path4049"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 3.971,0 0.77,-2.4 2.007,-6.207 -1.175,-3.858 -4.364,-6.207 -3.107,-2.4 -6.333,0 -2.375,0 -1.175,3.713 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
id="path4051"
|
||||
style="fill:#254aa5;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 64.606,43.74 114.159,0 0,6.517 -114.159,0 0,-6.517 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
transform="translate(195.001,227.2148)"
|
||||
id="g4053">
|
||||
<path
|
||||
id="path4055"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,0 23.802,-37.064 28.153,-43.878 4.351,-6.811 9.326,-12.201 26.936,-15.862 17.61,-3.66 25.276,-5.389 25.276,-5.389 l 0,-1.322 c 0,0 -11.189,2.339 -25.588,5.491 -14.398,3.152 -20.284,4.213 -26.848,13.165 C 22.467,-40.344 0,-8.682 0,-8.682 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(195.001,216.6758)"
|
||||
id="g4057">
|
||||
<path
|
||||
id="path4059"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,0 24.595,-35.236 27.858,-39.555 3.265,-4.318 7.663,-11.281 27.102,-15.39 5.019,-1.06 25.471,-5.084 25.471,-5.084 l 0,-1.114 c 0,0 -15.539,2.995 -25.471,5.084 -9.933,2.09 -20.371,3.996 -27.031,12.396 -6.049,7.63 -27.976,35.77 -27.976,35.77 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(195.001,206.0908)"
|
||||
id="g4061">
|
||||
<path
|
||||
id="path4063"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,0 23.176,-29.944 27.858,-35.933 4.683,-5.989 11.139,-10.934 27.102,-13.998 9.204,-1.767 25.398,-4.736 25.398,-4.736 l 0,-1.113 c 0,0 -14.188,2.646 -25.398,4.666 -11.21,2.019 -20.467,3.972 -27.102,11.421 -5.82,6.534 -27.905,32.218 -27.905,32.218 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(194.9551,195.6914)"
|
||||
id="g4065">
|
||||
<path
|
||||
id="path4067"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,0 23.463,-27.165 27.975,-32.01 7.026,-7.545 10.43,-10.145 27.031,-13.301 6.641,-1.263 25.398,-4.527 25.398,-4.527 l 0,-1.184 c 0,0 -15.536,2.786 -25.398,4.527 -9.861,1.741 -18.208,2.391 -27.102,10.933 C 21.128,-29.053 0.046,-7.01 0.046,-7.01 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(195.001,184.874)"
|
||||
id="g4069">
|
||||
<path
|
||||
id="path4071"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,0 21.666,-22.255 27.929,-28.645 6.646,-6.777 15.16,-9.284 26.96,-11.351 11.264,-1.971 25.469,-4.247 25.469,-4.247 l 0,-1.254 c 0,0 -13.338,2.143 -25.469,4.178 -11.895,1.997 -20.219,3.111 -27.031,9.263 C 21.759,-26.547 0,-6.546 0,-6.546 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(195.001,174.8462)"
|
||||
id="g4073">
|
||||
<path
|
||||
id="path4075"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,0 20.604,-18.755 27.929,-25.163 6.741,-5.896 12.204,-7.73 27.031,-10.306 14.829,-2.577 25.398,-4.178 25.398,-4.178 l 0,-1.323 c 0,0 -13.408,2.158 -25.469,4.039 -12.061,1.88 -19.746,2.623 -26.96,8.356 C 19.603,-21.955 0,-6.128 0,-6.128 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(194.9541,164.1216)"
|
||||
id="g4077">
|
||||
<path
|
||||
id="path4079"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,0 23.507,-18.268 27.905,-21.472 4.399,-3.202 10.217,-6.94 27.102,-9.331 16.744,-2.371 25.328,-3.551 25.328,-3.551 l 0,-1.394 c 0,0 -15.182,2.161 -25.328,3.413 -10.146,1.254 -17.925,1.786 -27.031,7.73 C 19.112,-18.819 0.047,-5.663 0.047,-5.663 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(194.9541,153.8618)"
|
||||
id="g4081">
|
||||
<path
|
||||
id="path4083"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,0 23.576,-15.39 28.047,-17.828 4.471,-2.436 9.721,-6.406 26.96,-8.565 17.24,-2.159 25.328,-3.133 25.328,-3.133 l 0,-1.323 c 0,0 -14.26,1.531 -25.399,2.715 -11.139,1.184 -18.729,2.786 -27.031,7.242 C 19.604,-16.435 0.047,-5.246 0.047,-5.246 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(195.001,143.6016)"
|
||||
id="g4085">
|
||||
<path
|
||||
id="path4087"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,0 20.867,-11.125 27.929,-14.6 7.877,-3.877 14.687,-5.733 27.031,-7.172 12.121,-1.416 25.398,-2.787 25.398,-2.787 l 0,-1.254 c 0,0 -12.276,1.29 -25.398,2.507 -13.007,1.208 -17.641,1.764 -27.031,5.849 -8.398,3.653 -27.975,12.582 -27.975,12.582 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(195.001,133.1563)"
|
||||
id="g4089">
|
||||
<path
|
||||
id="path4091"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,0 16.413,-6.891 28,-11.397 11.399,-4.433 20.103,-4.806 27.031,-5.572 3.051,-0.337 25.257,-2.576 25.257,-2.576 l 0,-1.252 c 0,0 -13.267,1.043 -25.328,2.087 -12.062,1.044 -17.264,1.486 -27.031,4.666 -9.883,3.216 -27.976,9.401 -27.976,9.401 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(195.001,122.5713)"
|
||||
id="g4093">
|
||||
<path
|
||||
id="path4095"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,0 16.648,-5.061 28,-7.985 11.352,-2.925 21.781,-4.11 27.031,-4.456 5.25,-0.35 25.257,-1.95 25.257,-1.95 l 0,-1.185 c 0,0 -11.346,0.763 -25.328,1.741 -11.304,0.789 -20.385,1.625 -27.031,3.064 -7.366,1.594 -27.975,6.408 -27.975,6.408 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(194.9551,112.125)"
|
||||
id="g4097">
|
||||
<path
|
||||
id="path4099"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,0 13.661,-2.304 28.046,-4.642 10.784,-1.752 25.399,-2.856 26.96,-2.925 1.561,-0.07 25.398,-1.672 25.398,-1.672 l 0,-1.252 c 0,0 -15.256,0.773 -25.398,1.322 -10.565,0.572 -21.066,1.2 -27.031,1.811 C 14.615,-5.991 0,-4.178 0,-4.178 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(195.001,101.3096)"
|
||||
id="g4101">
|
||||
<path
|
||||
id="path4103"
|
||||
style="fill:#bdbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 C 0,0 21.474,-0.791 28,-0.931 34.527,-1.069 80.358,-2.88 80.358,-2.88 l 0,-1.254 L 0,-4.087 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(71.2783,89.6855)"
|
||||
id="g4105">
|
||||
<path
|
||||
id="path4107"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,0.233 0.108,0.359 0.36,0.359 l 6.626,0 c 0.216,0 0.342,-0.126 0.342,-0.341 l 0,-1.117 c 0,-0.215 -0.09,-0.324 -0.36,-0.324 l -4.915,0 0,-3.097 4.357,0 c 0.234,0 0.36,-0.108 0.36,-0.324 l 0,-1.116 c 0,-0.216 -0.09,-0.324 -0.36,-0.324 l -4.357,0 0,-3.547 5.041,0 c 0.216,0 0.324,-0.108 0.324,-0.342 l 0,-1.098 c 0,-0.235 -0.09,-0.325 -0.342,-0.325 l -6.716,0 c -0.252,0 -0.36,0.109 -0.36,0.325 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(87.0483,78.0898)"
|
||||
id="g4109">
|
||||
<path
|
||||
id="path4111"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -1.279,0 c -0.27,0 -0.342,0.126 -0.342,0.342 l 0,0.558 -0.036,0.018 c -0.702,-0.486 -1.926,-1.08 -3.025,-1.08 -2.43,0 -2.664,1.44 -2.664,3.331 l 0,5.294 c 0,0.216 0.09,0.359 0.342,0.359 l 1.314,0 c 0.234,0 0.324,-0.126 0.324,-0.359 l 0,-5.06 c 0,-1.081 0.216,-1.764 1.315,-1.764 0.774,0 1.962,0.576 2.43,0.81 l 0,6.014 c 0,0.216 0.072,0.359 0.342,0.359 l 1.279,0 c 0.252,0 0.342,-0.126 0.342,-0.359 l 0,-8.121 C 0.342,0.108 0.252,0 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(90.8984,78.4316)"
|
||||
id="g4113">
|
||||
<path
|
||||
id="path4115"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,-0.216 -0.09,-0.342 -0.342,-0.342 l -1.296,0 c -0.253,0 -0.342,0.109 -0.342,0.342 l 0,8.121 c 0,0.233 0.089,0.359 0.342,0.359 l 1.278,0 C -0.09,8.48 0,8.337 0,8.121 L 0,7.328 0.036,7.293 c 0.54,0.504 1.818,1.116 2.665,1.278 0.234,0.054 0.396,0 0.432,-0.306 L 3.259,7.059 C 3.277,6.807 3.295,6.698 2.917,6.626 1.909,6.428 0.63,6.068 0,5.798 L 0,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(98.4771,85.3643)"
|
||||
id="g4117">
|
||||
<path
|
||||
id="path4119"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -1.531,0 -1.873,-0.973 -1.873,-2.845 0,-1.909 0.342,-2.845 1.855,-2.845 1.638,0 1.962,0.919 1.962,2.845 C 1.944,-0.937 1.638,0 0,0 m -0.018,-7.419 c -3.619,0 -3.854,2.648 -3.854,4.7 0,1.693 0.379,4.448 3.854,4.448 3.493,0 3.979,-2.324 3.979,-4.448 0,-2.052 -0.252,-4.7 -3.979,-4.7"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(107.8188,85.2559)"
|
||||
id="g4121">
|
||||
<path
|
||||
id="path4123"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -0.738,0 -1.873,-0.522 -2.413,-0.811 l 0,-4.501 c 0.81,-0.234 1.459,-0.305 2.071,-0.305 1.297,0 1.746,0.666 1.746,2.934 C 1.404,-0.396 0.955,0 0,0 m -0.144,-7.328 c -0.594,0 -1.422,0.108 -2.251,0.396 l -0.018,-0.018 0,-3.169 c 0,-0.198 -0.054,-0.36 -0.342,-0.36 l -1.278,0 c -0.288,0 -0.342,0.126 -0.342,0.36 l 0,11.416 c 0,0.233 0.09,0.359 0.342,0.359 l 1.278,0 c 0.253,0 0.324,-0.143 0.324,-0.359 l 0,-0.541 0.055,-0.035 c 0.647,0.45 1.8,1.08 2.844,1.08 2.359,0 2.971,-1.782 2.971,-4.502 0,-2.935 -0.738,-4.627 -3.583,-4.627"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(114.3701,83.3115)"
|
||||
id="g4125">
|
||||
<path
|
||||
id="path4127"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 3.565,0 C 3.565,1.099 3.277,2.16 1.783,2.16 0.45,2.16 0.09,1.351 0,0 m -0.018,-1.351 c 0.054,-1.818 0.703,-2.322 2.179,-2.322 0.648,0 1.656,0.126 2.34,0.197 0.325,0.037 0.433,0.037 0.487,-0.305 L 5.096,-4.375 C 5.149,-4.646 5.114,-4.79 4.79,-4.934 c -0.703,-0.27 -2.017,-0.45 -2.899,-0.45 -3.439,0 -3.944,2.196 -3.944,4.537 0,1.747 0.324,4.628 3.836,4.628 3.223,0 3.799,-2.089 3.853,-4.033 C 5.654,-0.9 5.474,-1.351 4.753,-1.351 l -4.771,0 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(126.377,82.1055)"
|
||||
id="g4129">
|
||||
<path
|
||||
id="path4131"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -2.196,0 c -0.901,0 -1.477,-0.324 -1.477,-1.513 0,-0.792 0.27,-1.045 1.116,-1.045 0.775,0 1.873,0.451 2.557,0.847 L 0,0 z m 0.108,-2.989 c -0.9,-0.685 -2.107,-1.171 -3.313,-1.171 -1.908,0 -2.466,1.045 -2.466,2.557 -0.018,2.107 1.116,3.007 3.384,3.007 l 2.305,0 0,0.468 c 0,1.08 -0.396,1.458 -1.872,1.458 -0.595,0 -1.729,-0.09 -2.449,-0.161 -0.36,-0.055 -0.45,-0.036 -0.504,0.216 l -0.162,0.666 c -0.036,0.234 0.018,0.378 0.414,0.54 0.774,0.27 2.197,0.396 3.043,0.396 3.115,0 3.493,-1.278 3.493,-3.295 l 0,-3.475 c 0,-0.738 0.09,-0.756 0.648,-0.828 0.27,-0.018 0.342,-0.073 0.342,-0.27 l 0,-0.757 c 0,-0.198 -0.126,-0.324 -0.432,-0.378 -0.288,-0.053 -0.576,-0.089 -0.846,-0.089 -0.846,0 -1.369,0.251 -1.549,1.097 l -0.036,0.019 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(137.1953,78.0898)"
|
||||
id="g4133">
|
||||
<path
|
||||
id="path4135"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 -1.296,0 C -1.53,0 -1.638,0.108 -1.638,0.342 l 0.018,5.059 c 0,1.063 -0.252,1.765 -1.297,1.765 -0.72,0 -1.98,-0.576 -2.466,-0.811 l 0,-6.013 C -5.383,0.126 -5.473,0 -5.726,0 l -1.278,0 c -0.252,0 -0.342,0.108 -0.342,0.342 l 0,8.121 c 0,0.233 0.09,0.359 0.342,0.359 l 1.278,0 c 0.253,0 0.343,-0.126 0.343,-0.359 l 0,-0.541 c 0.018,0 0.036,-0.018 0.054,-0.018 0.666,0.468 1.926,1.08 3.025,1.08 2.43,0 2.647,-1.602 2.647,-3.421 l 0,-5.221 C 0.343,0.126 0.271,0 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(75.9775,71.1719)"
|
||||
id="g4137">
|
||||
<path
|
||||
id="path4139"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 C 0.882,0 2.341,-0.127 3.295,-0.522 3.583,-0.648 3.691,-0.793 3.637,-1.081 L 3.475,-1.819 c -0.054,-0.216 -0.144,-0.306 -0.468,-0.27 -0.882,0.108 -1.963,0.234 -2.899,0.234 -2.448,0 -2.809,-1.981 -2.809,-4.321 0,-2.359 0.451,-4.214 2.809,-4.214 1.044,0 1.927,0.109 2.899,0.235 0.342,0.036 0.414,-0.054 0.486,-0.288 l 0.144,-0.685 c 0.072,-0.288 -0.018,-0.45 -0.306,-0.576 -0.882,-0.378 -2.449,-0.54 -3.331,-0.54 -4.015,0 -4.861,2.971 -4.861,6.032 C -4.861,-3.134 -4.105,0 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(83.6992,66.3643)"
|
||||
id="g4141">
|
||||
<path
|
||||
id="path4143"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -1.531,0 -1.873,-0.973 -1.873,-2.845 0,-1.909 0.342,-2.845 1.855,-2.845 1.638,0 1.962,0.919 1.962,2.845 C 1.944,-0.937 1.638,0 0,0 m -0.018,-7.419 c -3.619,0 -3.853,2.648 -3.853,4.7 0,1.693 0.378,4.448 3.853,4.448 3.493,0 3.979,-2.324 3.979,-4.448 0,-2.052 -0.252,-4.7 -3.979,-4.7"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(101.27,59.0898)"
|
||||
id="g4145">
|
||||
<path
|
||||
id="path4147"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -1.296,0 c -0.252,0 -0.343,0.108 -0.343,0.342 l 0,5.114 c 0,1.332 -0.323,1.71 -1.224,1.71 -0.666,0 -1.746,-0.522 -2.304,-0.811 0,-0.179 0.018,-0.503 0.018,-0.917 l 0,-5.096 C -5.149,0.126 -5.222,0 -5.492,0 L -6.806,0 C -7.04,0 -7.112,0.108 -7.112,0.342 l 0,5.204 c 0,1.098 -0.288,1.62 -1.188,1.62 -0.631,0 -1.639,-0.45 -2.323,-0.811 l 0,-6.013 C -10.623,0.126 -10.713,0 -10.965,0 l -1.297,0 c -0.234,0 -0.324,0.108 -0.324,0.342 l 0,8.121 c 0,0.233 0.09,0.359 0.324,0.359 l 1.279,0 c 0.27,0 0.36,-0.143 0.36,-0.359 l 0,-0.523 0.018,-0.018 c 0.702,0.486 1.692,1.026 2.683,1.062 1.044,0 1.908,-0.215 2.466,-1.259 0.901,0.666 2.017,1.259 3.169,1.259 2.377,0 2.611,-1.547 2.611,-3.348 l 0,-5.294 C 0.324,0.126 0.252,0 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(115.3818,59.0898)"
|
||||
id="g4149">
|
||||
<path
|
||||
id="path4151"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -1.296,0 c -0.252,0 -0.343,0.108 -0.343,0.342 l 0,5.114 c 0,1.332 -0.323,1.71 -1.224,1.71 -0.666,0 -1.746,-0.522 -2.304,-0.811 0,-0.179 0.018,-0.503 0.018,-0.917 l 0,-5.096 C -5.149,0.126 -5.222,0 -5.492,0 L -6.806,0 C -7.04,0 -7.112,0.108 -7.112,0.342 l 0,5.204 c 0,1.098 -0.288,1.62 -1.188,1.62 -0.631,0 -1.639,-0.45 -2.323,-0.811 l 0,-6.013 C -10.623,0.126 -10.713,0 -10.965,0 l -1.297,0 c -0.234,0 -0.324,0.108 -0.324,0.342 l 0,8.121 c 0,0.233 0.09,0.359 0.324,0.359 l 1.279,0 c 0.27,0 0.36,-0.143 0.36,-0.359 l 0,-0.523 0.018,-0.018 c 0.702,0.486 1.692,1.026 2.683,1.062 1.044,0 1.908,-0.215 2.466,-1.259 0.901,0.666 2.017,1.259 3.169,1.259 2.377,0 2.611,-1.547 2.611,-3.348 l 0,-5.294 C 0.324,0.126 0.252,0 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(119.1406,59.4316)"
|
||||
id="g4153">
|
||||
<path
|
||||
id="path4155"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,-0.197 -0.072,-0.342 -0.324,-0.342 l -1.279,0 c -0.251,0 -0.36,0.109 -0.36,0.342 l 0,8.139 c 0,0.252 0.109,0.341 0.36,0.341 l 1.279,0 C -0.072,8.48 0,8.337 0,8.139 L 0,0 z m -0.954,9.777 c -0.937,0 -1.063,0.523 -1.063,1.044 0,0.576 0.199,1.027 1.063,1.027 0.882,0 1.062,-0.414 1.062,-1.027 0,-0.557 -0.162,-1.044 -1.062,-1.044"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(123.605,58.9453)"
|
||||
id="g4157">
|
||||
<path
|
||||
id="path4159"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -0.9,0 -2.107,0.127 -2.791,0.396 -0.36,0.145 -0.432,0.307 -0.378,0.595 l 0.126,0.594 c 0.054,0.288 0.18,0.306 0.468,0.27 0.792,-0.126 1.945,-0.216 2.557,-0.216 1.152,0 1.621,0.306 1.621,1.026 0,0.828 -0.307,1.009 -1.441,1.171 -1.765,0.252 -3.313,0.63 -3.313,2.593 0,1.782 1.368,2.718 3.385,2.718 0.738,0 1.98,-0.108 2.737,-0.396 0.306,-0.126 0.432,-0.27 0.378,-0.54 L 3.205,7.563 C 3.151,7.311 3.043,7.274 2.719,7.311 1.944,7.4 0.936,7.509 0.27,7.509 -0.882,7.509 -1.152,7.185 -1.152,6.5 -1.152,5.798 -0.72,5.708 0.378,5.528 2.088,5.276 3.637,4.934 3.637,2.791 3.637,0.685 1.854,0 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(131.147,58.9453)"
|
||||
id="g4161">
|
||||
<path
|
||||
id="path4163"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -0.9,0 -2.107,0.127 -2.791,0.396 -0.36,0.145 -0.432,0.307 -0.378,0.595 l 0.126,0.594 c 0.054,0.288 0.18,0.306 0.468,0.27 0.792,-0.126 1.945,-0.216 2.557,-0.216 1.152,0 1.621,0.306 1.621,1.026 0,0.828 -0.307,1.009 -1.441,1.171 -1.765,0.252 -3.313,0.63 -3.313,2.593 0,1.782 1.368,2.718 3.385,2.718 0.738,0 1.98,-0.108 2.737,-0.396 0.306,-0.126 0.432,-0.27 0.378,-0.54 L 3.205,7.563 C 3.151,7.311 3.043,7.274 2.719,7.311 1.944,7.4 0.936,7.509 0.27,7.509 -0.882,7.509 -1.152,7.185 -1.152,6.5 -1.152,5.798 -0.72,5.708 0.378,5.528 2.088,5.276 3.637,4.934 3.637,2.791 3.637,0.685 1.854,0 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(137.9512,59.4316)"
|
||||
id="g4165">
|
||||
<path
|
||||
id="path4167"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,-0.197 -0.072,-0.342 -0.324,-0.342 l -1.279,0 c -0.251,0 -0.36,0.109 -0.36,0.342 l 0,8.139 c 0,0.252 0.109,0.341 0.36,0.341 l 1.279,0 C -0.072,8.48 0,8.337 0,8.139 L 0,0 z m -0.954,9.777 c -0.937,0 -1.063,0.523 -1.063,1.044 0,0.576 0.199,1.027 1.063,1.027 0.882,0 1.062,-0.414 1.062,-1.027 0,-0.557 -0.162,-1.044 -1.062,-1.044"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(143.1533,66.3643)"
|
||||
id="g4169">
|
||||
<path
|
||||
id="path4171"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c -1.53,0 -1.872,-0.973 -1.872,-2.845 0,-1.909 0.342,-2.845 1.854,-2.845 1.639,0 1.963,0.919 1.963,2.845 C 1.945,-0.937 1.639,0 0,0 m -0.018,-7.419 c -3.619,0 -3.853,2.648 -3.853,4.7 0,1.693 0.378,4.448 3.853,4.448 3.494,0 3.98,-2.324 3.98,-4.448 0,-2.052 -0.253,-4.7 -3.98,-4.7"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(155.4307,59.0898)"
|
||||
id="g4173">
|
||||
<path
|
||||
id="path4175"
|
||||
style="fill:#5a5758;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 -1.296,0 C -1.53,0 -1.638,0.108 -1.638,0.342 l 0.018,5.059 c 0,1.063 -0.252,1.765 -1.297,1.765 -0.72,0 -1.98,-0.576 -2.466,-0.811 l 0,-6.013 C -5.383,0.126 -5.474,0 -5.726,0 l -1.278,0 c -0.252,0 -0.342,0.108 -0.342,0.342 l 0,8.121 c 0,0.233 0.09,0.359 0.342,0.359 l 1.278,0 c 0.252,0 0.343,-0.126 0.343,-0.359 l 0,-0.541 c 0.018,0 0.035,-0.018 0.054,-0.018 0.666,0.468 1.927,1.08 3.024,1.08 2.431,0 2.648,-1.602 2.648,-3.421 l 0,-5.221 C 0.343,0.126 0.271,0 0,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 37 KiB |
343
public/assets/images/Title_section/Logo2_RWTH.svg
Normal file
After Width: | Height: | Size: 31 KiB |
2168
public/assets/images/Title_section/Logo3_Polito.svg
Normal file
After Width: | Height: | Size: 159 KiB |
258
public/assets/images/Title_section/Logo4_Flexmeter.svg
Normal file
After Width: | Height: | Size: 23 KiB |