Compare commits

...

13 Commits

Author SHA1 Message Date
b098f6ab0c new services, internal improvements, fixes routing with locations 2025-01-01 17:10:11 +01:00
Erwin Sperling
24afa05ae7 added horizontal scroll, more clients 2024-12-28 19:12:56 +01:00
Erwin Sperling
31362d166c adds remark icons, some style fixes 2024-12-23 21:12:52 +01:00
Erwin Sperling
aa99247fbb Add remark icons 2024-12-23 14:15:43 +01:00
Erwin Sperling
abde59ff56 adds localization, changed frontend 2024-12-22 15:03:43 +01:00
Erwin Sperling
20edaf4d00 fixed layout width 2024-12-11 22:13:59 +01:00
17683c51af Adds mobile toggle, changesin line number 2024-12-01 13:31:19 +01:00
f3c3f35d95 remove special characters 2024-12-01 01:24:13 +01:00
4d210eae66 removed fortawesome 2024-11-30 23:54:41 +01:00
b84c898b8a packaglock 2024-11-30 23:49:34 +01:00
349c3dddf5 hopefully fix package.json 2024-11-30 23:33:33 +01:00
544fa9b6ef removes package.json 2024-11-30 23:30:38 +01:00
60a940f00c changed package-lock 2024-11-30 22:57:00 +01:00
73 changed files with 5181 additions and 1485 deletions

74
back/dist/app.js vendored
View File

@ -1,4 +1,5 @@
import express from 'express';
import bodyParser from 'body-parser';
import { createClient } from 'hafas-client';
import { profile as dbProfile } from 'hafas-client/p/db/index.js';
import { profile as vbbProfile } from 'hafas-client/p/vbb/index.js';
@ -7,6 +8,14 @@ import { profile as irishProfile } from 'hafas-client/p/irish-rail/index.js';
import { profile as oebbProfile } from 'hafas-client/p/oebb/index.js';
import { profile as luProfile } from 'hafas-client/p/mobiliteit-lu/index.js';
import { profile as zvvProfile } from 'hafas-client/p/zvv/index.js';
import { profile as bartProfile } from 'hafas-client/p/bart/index.js';
import { profile as dartProfile } from 'hafas-client/p/dart/index.js';
import { profile as nrwProfile } from 'hafas-client/p/mobil-nrw/index.js';
import { profile as danmarkProfile } from 'hafas-client/p/rejseplanen/index.js';
import { profile as blsProfile } from 'hafas-client/p/bls/index.js';
import { profile as nrwbusradarProfile } from 'hafas-client/p/db-busradar-nrw/index.js';
import { profile as cmtaProfile } from 'hafas-client/p/cmta/index.js';
import { profile as vrnProfile } from 'hafas-client/p/vrn/index.js';
const app = express();
const port = 3000;
// Adapt this to your project! createClient() won't work with this string.
@ -21,12 +30,21 @@ clients.set("pkp", createClient(pkpProfile, userAgent));
clients.set("irish", createClient(irishProfile, userAgent));
clients.set("oebb", createClient(oebbProfile, userAgent));
clients.set("lu", createClient(luProfile, userAgent));
clients.set("bart", createClient(bartProfile, userAgent));
clients.set("dart", createClient(dartProfile, userAgent));
clients.set("nrw", createClient(nrwProfile, userAgent));
clients.set("danmark", createClient(danmarkProfile, userAgent));
clients.set("bls", createClient(blsProfile, userAgent));
clients.set("nrwbus", createClient(nrwbusradarProfile, userAgent));
clients.set("cmta", createClient(cmtaProfile, userAgent));
clients.set("vrn", createClient(vrnProfile, userAgent));
app.use((req, res, next) => {
res.append('Access-Control-Allow-Origin', ['*']);
res.append('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE');
res.append('Access-Control-Allow-Headers', 'Content-Type');
next();
});
app.use(bodyParser.json());
app.get('/', (req, res) => {
client.journeys('8011167', '8000261', { results: 1 }).then(result => res.send(result)).catch(error => res.status(500).send(error));
});
@ -36,7 +54,7 @@ app.get('/searchStation', (req, res) => {
}
else {
let query = req.query;
clients.get((String)(req.query.service)).locations(query.text, { results: 1 }).then(result => res.send({ name: result[0].name, id: result[0].id })).catch(error => res.status(500).send(error));
clients.get((String)(req.query.service)).locations(query.text, { results: 1, subStops: false, entrances: false, language: query.language }).then(result => res.send(result[0])).catch(error => res.status(500).send(error));
}
});
app.get('/searchStations', (req, res) => {
@ -47,29 +65,69 @@ app.get('/searchStations', (req, res) => {
else {
let query = req.query;
try {
clients.get((String)(req.query.service)).locations(query.text, { results: 6 }).then(result => res.send(result.map(entry => { return { name: entry.name, id: entry.id }; }))).catch(error => res.status(500).send(error));
clients.get((String)(req.query.service)).locations(query.text, { results: 6, subStops: false, entrances: false, language: query.language }).then(result => res.send(result)).catch(error => res.status(500).send(error));
}
catch (e) {
res.status(500).send(e);
}
}
});
app.get('/searchConnection', (req, res) => {
if (!req.query || !req.query.from || !req.query.to || !req.query.date || !req.query.service) {
console.log(req.query);
app.post('/searchConnection', (req, res) => {
if (!req.body.data || !req.body.data.from || !req.body.data.to || !req.body.data.date || !req.body.data.service) {
res.send([]);
}
else {
let query = req.query;
let date = new Date((String)(req.query.date));
let query = req.body.data;
let date = new Date((String)(query.date));
try {
clients.get((String)(req.query.service)).journeys(query.from, query.to, { results: 5, departure: date }).then(result => res.send(result.journeys)).catch(error => res.status(500).send(error));
console.log(query.language);
clients.get((String)(query.service)).journeys(query.from, query.to, { results: 5, departure: date, language: query.language })
.then(result => {
let journeys = result.journeys;
res.send(journeys.map(journey => {
return {
legs: journey.legs.filter(leg => leg.origin.id !== leg.destination.id),
remarks: journey.remarks,
type: journey.type,
cycle: journey.cycle,
price: journey.price,
};
}));
})
.catch(error => {
console.log(error);
res.status(500).send(error);
});
}
catch (e) {
res.status(500).send(e);
}
}
});
app.get('/findNearby', (req, res) => {
if (!req.query || !req.query.location) {
res.send([]);
}
else {
let query = req.query;
try {
clients.get((String)(req.query.service)).nearby({ type: "location", latitude: parseFloat(query.location.latitude), longitude: parseFloat(query.location.longitude) }, { subStops: false, entrances: false, language: query.language }).then(result => res.send(result)).catch(error => {
console.log(error);
res.status(500).send(error);
});
}
catch (e) {
res.status(500).send(e);
}
}
});
app.get('/nearbyTest', (req, res) => {
client.nearby({
type: 'location',
latitude: 52.5137344,
longitude: 13.4744798
}, undefined).then(result => res.send(result)).catch(error => res.status(500).send(error));
});
app.listen(port, () => {
return console.log(`Express is listening at http://localhost:${port}`);
});

File diff suppressed because one or more lines are too long

View File

@ -180,6 +180,7 @@
"version": "1.20.3",
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
"integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
"license": "MIT",
"dependencies": {
"bytes": "3.1.2",
"content-type": "~1.0.5",

View File

@ -10,6 +10,7 @@
"license": "ISC",
"dependencies": {
"@types/hafas-client": "^6.2.0",
"body-parser": "^1.20.3",
"express": "^4.21.1",
"hafas-client": "^6.3.2"
},
@ -194,6 +195,7 @@
"version": "1.20.3",
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
"integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
"license": "MIT",
"dependencies": {
"bytes": "3.1.2",
"content-type": "~1.0.5",

View File

@ -14,8 +14,9 @@
},
"dependencies": {
"@types/hafas-client": "^6.2.0",
"body-parser": "^1.20.3",
"express": "^4.21.1",
"hafas-client": "^6.3.2"
},
"type":"module"
"type": "module"
}

View File

@ -1,4 +1,5 @@
import express from 'express';
import bodyParser from 'body-parser';
import {createClient, HafasClient} from 'hafas-client'
import {profile as dbProfile} from 'hafas-client/p/db/index.js'
import {profile as vbbProfile} from 'hafas-client/p/vbb/index.js'
@ -7,6 +8,15 @@ import {profile as irishProfile} from 'hafas-client/p/irish-rail/index.js'
import {profile as oebbProfile} from 'hafas-client/p/oebb/index.js'
import {profile as luProfile} from 'hafas-client/p/mobiliteit-lu/index.js'
import {profile as zvvProfile} from 'hafas-client/p/zvv/index.js'
import {profile as bartProfile} from 'hafas-client/p/bart/index.js'
import {profile as dartProfile} from 'hafas-client/p/dart/index.js'
import {profile as nrwProfile} from 'hafas-client/p/mobil-nrw/index.js'
import {profile as danmarkProfile} from 'hafas-client/p/rejseplanen/index.js'
import {profile as blsProfile} from 'hafas-client/p/bls/index.js'
import {profile as nrwbusradarProfile} from 'hafas-client/p/db-busradar-nrw/index.js'
import {profile as cmtaProfile} from 'hafas-client/p/cmta/index.js'
import {profile as vrnProfile} from 'hafas-client/p/vrn/index.js'
import {Journey} from 'hafas-client'
const app = express();
const port = 3000;
@ -23,7 +33,14 @@ clients.set("pkp", createClient(pkpProfile, userAgent));
clients.set("irish", createClient(irishProfile, userAgent));
clients.set("oebb", createClient(oebbProfile, userAgent));
clients.set("lu", createClient(luProfile, userAgent));
clients.set("bart", createClient(bartProfile, userAgent));
clients.set("dart", createClient(dartProfile, userAgent));
clients.set("nrw", createClient(nrwProfile, userAgent));
clients.set("danmark", createClient(danmarkProfile, userAgent));
clients.set("bls", createClient(blsProfile, userAgent));
clients.set("nrwbus", createClient(nrwbusradarProfile, userAgent));
clients.set("cmta", createClient(cmtaProfile, userAgent));
clients.set("vrn", createClient(vrnProfile, userAgent));
app.use((req, res, next) => {
res.append('Access-Control-Allow-Origin', ['*']);
res.append('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE');
@ -31,6 +48,8 @@ app.use((req, res, next) => {
next();
});
app.use(bodyParser.json());
app.get('/', (req, res) => {
client.journeys('8011167', '8000261', {results: 1}).then(result => res.send(result)).catch(error => res.status(500).send(error));
});
@ -39,7 +58,7 @@ app.get('/searchStation', (req, res) => {
res.send([]);
} else {
let query: any = req.query;
clients.get((String) (req.query.service)).locations(query.text, {results:1}).then(result => res.send({name: result[0].name, id:result[0].id})).catch(error => res.status(500).send(error));
clients.get((String) (req.query.service)).locations(query.text, {results:1, subStops:false, entrances:false, language:query.language}).then(result => res.send(result[0])).catch(error => res.status(500).send(error));
}
});
app.get('/searchStations', (req, res) => {
@ -49,27 +68,66 @@ app.get('/searchStations', (req, res) => {
} else {
let query: any = req.query;
try {
clients.get((String) (req.query.service)).locations(query.text, {results:6}).then(result => res.send(result.map(entry => {return {name:entry.name, id:entry.id}}))).catch(error => res.status(500).send(error));
clients.get((String) (req.query.service)).locations(query.text, {results:6, subStops:false, entrances:false, language:query.language}).then(result => res.send(result
)).catch(error => res.status(500).send(error));
} catch (e) {
res.status(500).send(e)
}
}
});
app.get('/searchConnection', (req, res) => {
if(!req.query || !req.query.from || !req.query.to || !req.query.date || !req.query.service){
console.log(req.query);
app.post('/searchConnection', (req, res) => {
if(!req.body.data || !req.body.data.from || !req.body.data.to || !req.body.data.date || !req.body.data.service){
res.send([]);
} else {
let query: any = req.body.data;
let date: Date = new Date((String)(query.date));
try {
console.log(query.language)
clients.get((String) (query.service)).journeys(query.from, query.to,{results:5, departure:date, language:query.language})
.then(result => {
let journeys: readonly Journey[] = result.journeys;
res.send(journeys.map(journey => { return {
legs: journey.legs.filter(leg => leg.origin.id !== leg.destination.id),
remarks: journey.remarks,
type: journey.type,
cycle: journey.cycle,
price: journey.price,
}}))
})
.catch(error => {
console.log(error);
res.status(500).send(error)}
);
} catch (e) {
res.status(500).send(e)
}
}
});
app.get('/findNearby', (req, res) => {
if(!req.query || !req.query.location){
res.send([]);
} else {
let query: any = req.query;
let date: Date = new Date((String)(req.query.date));
try {
clients.get((String) (req.query.service)).journeys(query.from, query.to,{results:5, departure:date}).then(result => res.send(result.journeys)).catch(error => res.status(500).send(error));
clients.get((String) (req.query.service)).nearby({type:"location", latitude: parseFloat(query.location.latitude), longitude: parseFloat(query.location.longitude)}, {subStops:false, entrances:false, language:query.language}).then(result => res.send(result
)).catch(error => {
console.log(error);
res.status(500).send(error);
});
} catch (e) {
res.status(500).send(e)
}
}
});
app.get('/nearbyTest', (req, res) => {
client.nearby({
type: 'location',
latitude: 52.5137344,
longitude: 13.4744798
}, undefined).then(result => res.send(result)).catch(error => res.status(500).send(error));
});
app.listen(port, () => {
return console.log(`Express is listening at http://localhost:${port}`);
});

File diff suppressed because it is too large Load Diff

View File

@ -11,16 +11,13 @@
"axios": "^1.7.7",
"core-js": "^3.8.3",
"vue": "^3.2.13",
"vue-i18n": "^10.0.5",
"vue-router": "^4.5.0",
"vuetify": "^3.7.4"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@fortawesome/fontawesome-free": "^6.7.1",
"@fortawesome/fontawesome-svg-core": "^6.7.1",
"@fortawesome/free-regular-svg-icons": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-service": "~5.0.0",

View File

@ -1,15 +1,33 @@
<template>
<search/>
<div class="navbar">
<div>
<div class="locale-changer">
<v-select v-model="$i18n.locale" :items="$i18n.availableLocales" dense></v-select>
</div>
</div>
<div>
<v-tabs>
<v-tab to="/search">Search</v-tab>
<v-tab to="/explore">Explore</v-tab>
</v-tabs>
</div>
</div>
<hr/>
<main>
<RouterView />
</main>
</template>
<script>
import search from './components/search.vue'
export default {
name: 'App',
components: {
search
},
methods: {
showRouter(){
console.log(this.$route);
}
}
}
</script>
@ -21,6 +39,23 @@ export default {
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
.navbar {
display:inline-flex;
width:100%;
}
.navbar>* {
margin-left:10px;
position:relative;
height:80px;
width:100px;
}
.navbar>*>.locale-changer {
position:absolute;
bottom:0px;
}
.navbar>*>.v-tabs {
position:absolute;
bottom:22px;
}
</style>

View File

@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="2nd-class-only.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="3.8503378"
inkscape:cx="-22.984996"
inkscape:cy="30.127226"
inkscape:window-width="1305"
inkscape:window-height="474"
inkscape:window-x="85"
inkscape:window-y="1160"
inkscape:window-maximized="0"
inkscape:current-layer="layer1">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 3,41 41,3"
id="path57"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 7,45 45,7"
id="path58"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 4,44 44,4"
id="path59"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
x="17.32"
y="37.400002"
id="text51"><tspan
sodipodi:role="line"
id="tspan51"
x="17.32"
y="37.400002"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Roadgeek 2005 Series E';-inkscape-font-specification:'Roadgeek 2005 Series E'">1</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="55.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="7.7006757"
inkscape:cx="18.180223"
inkscape:cy="14.544178"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="1073"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
id="rect51"
width="4"
height="4"
x="8"
y="22" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
id="rect52"
width="28"
height="4"
x="14"
y="22" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 10,10 c 1.327515,1.662522 1.339142,3.329152 0,5 -1.3391418,1.670847 -1.3275145,3.337478 0,5"
id="path53"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 13,10 c 1.327515,1.662522 1.339142,3.329152 0,5 -1.339142,1.670847 -1.327514,3.337478 0,5"
id="path54"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 7,10 c 1.327515,1.662522 1.339142,3.329152 0,5 -1.339142,1.670847 -1.327514,3.337478 0,5"
id="path55"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 3,41 41,3"
id="path57"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 7,45 45,7"
id="path58"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 4,44 44,4"
id="path59"
sodipodi:nodetypes="cc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,192 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="air-conditioned.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="7.7006757"
inkscape:cx="23.894007"
inkscape:cy="17.141353"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="1073"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
id="g40"
transform="matrix(1.4814056,0.85528991,-0.85528991,1.4814056,3.9642984,-50.774255)"
style="stroke-width:0.87689564;stroke-dasharray:none">
<g
id="g22"
transform="translate(0,-4)"
inkscape:transform-center-y="-4.5"
style="stroke-width:0.87689564;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="M 32,36 V 28"
id="path20"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 30,31 2,2 2,-2"
id="path21" />
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 29,27 3,3 3,-3"
id="path22" />
</g>
<g
id="g27"
transform="rotate(60,35.464102,34)"
inkscape:transform-center-y="-3.5490384"
inkscape:transform-center-x="-4.6471145"
style="stroke-width:0.87689564;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="M 32,36 V 28"
id="path25"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 30,31 2,2 2,-2"
id="path26" />
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 29,27 3,3 3,-3"
id="path27" />
</g>
<g
id="g30"
transform="rotate(120,33.154701,34)"
inkscape:transform-center-y="3.5490377"
inkscape:transform-center-x="-4.647115"
style="stroke-width:0.87689564;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="M 32,36 V 28"
id="path28"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 30,31 2,2 2,-2"
id="path29" />
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 29,27 3,3 3,-3"
id="path30" />
</g>
<g
id="g33"
transform="rotate(180,32,34)"
inkscape:transform-center-y="4.5"
style="stroke-width:0.87689564;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="M 32,36 V 28"
id="path31"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 30,31 2,2 2,-2"
id="path32" />
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 29,27 3,3 3,-3"
id="path33" />
</g>
<g
id="g36"
transform="rotate(-120,30.8453,34)"
inkscape:transform-center-y="3.5490386"
inkscape:transform-center-x="4.6471135"
style="stroke-width:0.87689564;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="M 32,36 V 28"
id="path34"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 30,31 2,2 2,-2"
id="path35" />
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 29,27 3,3 3,-3"
id="path36" />
</g>
<g
id="g39"
transform="rotate(-60,28.535898,34)"
inkscape:transform-center-y="-3.5490384"
inkscape:transform-center-x="4.6471145"
style="stroke-width:0.87689564;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="M 32,36 V 28"
id="path37"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 30,31 2,2 2,-2"
id="path38" />
<path
style="fill:none;stroke:#000000;stroke-width:0.87689564;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 29,27 3,3 3,-3"
id="path39" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

@ -0,0 +1,116 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="barrier-free-vehicle.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="6.2916667"
inkscape:cx="26.543046"
inkscape:cy="26.701987"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="1073"
inkscape:window-maximized="1"
inkscape:current-layer="g9">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
id="g9"
transform="translate(4,0.33370352)">
<circle
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
id="path1"
cx="16"
cy="28"
r="6.6662965" />
<path
id="circle6"
style="fill:none;stroke:#000000;stroke-width:1.5"
d="m 28,33 h -3 v -5 c 0,-4.970563 -4.029437,-9 -9,-9 H 13 V 9.6662965 l -3,0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 13,19 v 3"
id="path6" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 25,27 H 22.666296"
id="path7"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="M 28,35.666296 H 26"
id="path11" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="M 32,3 V 45"
id="path8" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 3,36 h 25 v 9"
id="path9" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
id="rect10"
width="9"
height="16"
x="36"
y="12" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 36,3 v 4 h 9"
id="path10" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="bicycle-conveyance-reservation.svg"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="8.8977601"
inkscape:cx="13.936092"
inkscape:cy="22.814731"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g5"
transform="matrix(1.3332593,0,0,1.3332593,-0.99877845,-11.331038)"
style="stroke-width:1.12506;stroke-dasharray:none">
<circle
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.12506;stroke-dasharray:none;stroke-opacity:1"
id="path1"
cx="10"
cy="35"
r="5" />
<circle
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.12506;stroke-dasharray:none;stroke-opacity:1"
id="circle1"
cx="27"
cy="35"
r="5" />
<path
style="fill:none;stroke:#000000;stroke-width:1.12506;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 10,35 6,-12 h 1"
id="path2"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.12506;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 14,27 5,8 h 8 l -5,-8"
id="path3"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.12506;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 19,35 23,25"
id="path4" />
<path
style="fill:none;stroke:#000000;stroke-width:1.12506;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 21,25 h 3"
id="path5" />
</g>
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
aria-label="R"
id="text51"
style="font-size:20.8955px;line-height:1.25;font-family:'Jost*';-inkscape-font-specification:'Jost*, @ital=1.00,wght=700';font-variation-settings:'ital' 1, 'wght' 700;letter-spacing:0px;word-spacing:0px;stroke-width:0.522388">
<path
d="m 34.732839,13.376119 4.095518,6.623873 h 4.137309 L 38.389552,13.376119 Z M 31.076127,5.3731422 V 19.999992 h 3.531339 V 5.3731422 Z m 2.214923,2.9880566 h 2.862683 q 0.710447,0 1.211939,0.2298505 0.522388,0.2298505 0.794029,0.668656 0.271642,0.41791 0.271642,1.0238797 0,0.605969 -0.271642,1.044775 -0.271641,0.41791 -0.794029,0.64776 -0.501492,0.208955 -1.211939,0.208955 H 33.29105 v 2.737311 h 3.113429 q 1.399999,0 2.465669,-0.334328 1.065671,-0.355224 1.776118,-0.982089 0.710447,-0.64776 1.06567,-1.525371 0.376119,-0.877611 0.376119,-1.922386 0,-1.4208942 -0.64776,-2.4865647 Q 40.792534,6.5850813 39.538804,5.9791117 38.285074,5.3731422 36.404479,5.3731422 H 33.29105 Z"
id="path1500" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="bicycle-conveyance.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="12.583333"
inkscape:cx="18.993377"
inkscape:cy="23.682119"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="1073"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g5"
transform="matrix(1.3332593,0,0,1.3332593,-0.66529661,-17.998334)"
style="stroke-width:1.12506247;stroke-dasharray:none">
<circle
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.12506247;stroke-opacity:1;stroke-dasharray:none"
id="path1"
cx="10"
cy="35"
r="5" />
<circle
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.12506247;stroke-opacity:1;stroke-dasharray:none"
id="circle1"
cx="27"
cy="35"
r="5" />
<path
style="fill:none;stroke:#000000;stroke-width:1.12506247;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 10,35 6,-12 h 1"
id="path2"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.12506247;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 14,27 5,8 h 8 l -5,-8"
id="path3"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.12506247;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="M 19,35 23,25"
id="path4" />
<path
style="fill:none;stroke:#000000;stroke-width:1.12506247;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 21,25 h 3"
id="path5" />
</g>
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,122 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="boarding-ramp.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="12.583333"
inkscape:cx="27.97351"
inkscape:cy="21.695364"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="1073"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
id="g9"
transform="translate(4,-3.666296)">
<circle
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
id="path1"
cx="16"
cy="28"
r="6.6662965" />
<path
id="circle6"
style="fill:none;stroke:#000000;stroke-width:1.5"
d="m 28,33 h -3 v -5 c 0,-4.970563 -4.029437,-9 -9,-9 H 13 V 9.6662965 h -3"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 13,19 v 3"
id="path6" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 25,27 H 22.666296"
id="path7"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 28,35.666296 H 8"
id="path11"
sodipodi:nodetypes="cc" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="M 32,3 V 45"
id="path8" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 3,40 h 25 v 5"
id="path9"
sodipodi:nodetypes="ccc" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
id="rect10"
width="9"
height="16"
x="36"
y="12" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 36,3 v 4 h 9"
id="path10" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 28,32 4,4"
id="path2" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="compulsory-reservation.svg"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="7.7006757"
inkscape:cx="11.817145"
inkscape:cy="25.971747"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="text51">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
aria-label="R"
id="text51"
style="font-size:40px;line-height:1.25;letter-spacing:0px;word-spacing:0px">
<path
d="M 19.62,25.32 27.46,38 h 7.92 L 26.62,25.32 Z M 12.62,10 v 28 h 6.76 V 10 Z m 4.24,5.72 h 5.48 q 1.36,0 2.32,0.44 1,0.44 1.52,1.28 0.52,0.8 0.52,1.96 0,1.16 -0.52,2 -0.52,0.8 -1.52,1.24 -0.96,0.4 -2.32,0.4 h -5.48 v 5.24 h 5.96 q 2.68,0 4.72,-0.64 2.04,-0.68 3.4,-1.88 1.36,-1.24 2.04,-2.92 0.72,-1.68 0.72,-3.68 0,-2.72 -1.24,-4.76 -1.24,-2.08 -3.64,-3.24 -2.4,-1.16 -6,-1.16 h -5.96 z"
style="font-weight:bold;font-family:'Jost*';-inkscape-font-specification:'Jost*, Bold'"
id="path393" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="deutschlandticket-gueltig.svg"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="10.8904"
inkscape:cx="25.29751"
inkscape:cy="18.089326"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
aria-label="R"
id="text51"
style="font-size:40px;line-height:1.25;letter-spacing:0px;word-spacing:0px;stroke-width:1.5;stroke-dasharray:none;stroke:#000000;stroke-opacity:1">
<rect
style="font-variation-settings:'ital' 1, 'wght' 700;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect2814"
width="20"
height="32"
x="14"
y="8"
rx="0"
ry="0" />
<rect
style="font-variation-settings:'ital' 1, 'wght' 700;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3183"
width="16"
height="9"
x="16"
y="10" />
<rect
style="font-variation-settings:'ital' 1, 'wght' 700;fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3185"
width="16"
height="9"
x="16"
y="29" />
</g>
<g
aria-label="DE"
id="text3181"
style="font-size:26.6667px;font-family:'Jost*';-inkscape-font-specification:'Jost*, @ital=1.00,wght=700';font-variation-settings:'ital' 1, 'wght' 700;fill:#ff0000;stroke-width:1.5;paint-order:fill markers stroke">
<path
d="m 16.160016,19.333345 v 9.33331 h 2.319995 v -9.33331 z m 3.333325,9.33331 q 1.159997,0 2.066662,-0.32 Q 22.48,28.013323 23.133332,27.413324 23.786664,26.799993 24.13333,25.933328 24.493329,25.066664 24.493329,24 q 0,-1.066664 -0.359999,-1.933329 Q 23.786664,21.200007 23.133332,20.600008 22.48,19.986677 21.560003,19.666677 20.653338,19.333345 19.493341,19.333345 h -1.839995 v 1.999995 h 1.759996 q 0.533332,0 1.026664,0.133333 0.506665,0.133333 0.879997,0.439999 0.386666,0.306666 0.613332,0.826664 0.226666,0.506666 0.226666,1.266664 0,0.759998 -0.226666,1.279996 -0.226666,0.506666 -0.613332,0.813332 -0.373332,0.306666 -0.879997,0.439999 -0.493332,0.133333 -1.026664,0.133333 h -1.759996 v 1.999995 z"
style="font-size:13.3333px"
id="path4949" />
<path
d="m 27.133328,28.666655 h 4.706655 v -1.853329 h -4.706655 z m 0,-7.479982 h 4.706655 v -1.853328 h -4.706655 z m 0,3.479992 h 4.439989 v -1.813329 h -4.439989 z m -1.493329,-5.33332 v 9.33331 h 2.159994 v -9.33331 z"
style="font-size:13.3333px"
id="path4951" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -0,0 +1,125 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="deutschlandticket-ungueltig.svg"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="15.401351"
inkscape:cx="6.2007546"
inkscape:cy="19.47881"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="text51">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
aria-label="R"
id="text51"
style="font-size:40px;line-height:1.25;letter-spacing:0px;word-spacing:0px;stroke-width:1.5;stroke-dasharray:none;stroke:#000000;stroke-opacity:1">
<rect
style="font-variation-settings:'ital' 1, 'wght' 700;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect2814"
width="20"
height="32"
x="14"
y="8"
rx="0"
ry="0" />
<rect
style="font-variation-settings:'ital' 1, 'wght' 700;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3183"
width="16"
height="9"
x="16"
y="10" />
<rect
style="font-variation-settings:'ital' 1, 'wght' 700;fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect3185"
width="16"
height="9"
x="16"
y="29" />
</g>
<g
aria-label="DE"
id="text3181"
style="font-size:26.6667px;font-family:'Jost*';-inkscape-font-specification:'Jost*, @ital=1.00,wght=700';font-variation-settings:'ital' 1, 'wght' 700;fill:#ff0000;stroke-width:1.5;paint-order:fill markers stroke">
<path
d="m 16.160016,19.333345 v 9.33331 h 2.319995 v -9.33331 z m 3.333325,9.33331 q 1.159997,0 2.066662,-0.32 Q 22.48,28.013323 23.133332,27.413324 23.786664,26.799993 24.13333,25.933328 24.493329,25.066664 24.493329,24 q 0,-1.066664 -0.359999,-1.933329 Q 23.786664,21.200007 23.133332,20.600008 22.48,19.986677 21.560003,19.666677 20.653338,19.333345 19.493341,19.333345 h -1.839995 v 1.999995 h 1.759996 q 0.533332,0 1.026664,0.133333 0.506665,0.133333 0.879997,0.439999 0.386666,0.306666 0.613332,0.826664 0.226666,0.506666 0.226666,1.266664 0,0.759998 -0.226666,1.279996 -0.226666,0.506666 -0.613332,0.813332 -0.373332,0.306666 -0.879997,0.439999 -0.493332,0.133333 -1.026664,0.133333 h -1.759996 v 1.999995 z"
style="font-size:13.3333px"
id="path4949" />
<path
d="m 27.133328,28.666655 h 4.706655 v -1.853329 h -4.706655 z m 0,-7.479982 h 4.706655 v -1.853328 h -4.706655 z m 0,3.479992 h 4.439989 v -1.813329 h -4.439989 z m -1.493329,-5.33332 v 9.33331 h 2.159994 v -9.33331 z"
style="font-size:13.3333px"
id="path4951" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 3,41 41,3"
id="path57"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 7,45 45,6.9999999"
id="path58"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 4,44 44,4"
id="path59"
sodipodi:nodetypes="cc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="18"
height="48"
viewBox="0 0 18 48"
version="1.1"
id="svg1"
sodipodi:docname="info.svg"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="17.79552"
inkscape:cx="8.5133786"
inkscape:cy="20.342198"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
id="rect5"
width="12"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
aria-label="i"
id="text2334"
style="font-size:40px;font-family:'Jost*';-inkscape-font-specification:'Jost*, @ital=1.00,wght=700';font-variation-settings:'ital' 1, 'wght' 700;stroke-width:0.25;paint-order:fill markers stroke">
<path
d="m 5.48,12.959999 q 0,1.44 1.04,2.36 1.04,0.92 2.48,0.92 1.48,0 2.48,-0.92 1.04,-0.92 1.04,-2.36 0,-1.44 -1.04,-2.32 -1,-0.9200002 -2.48,-0.9200002 -1.44,0 -2.48,0.9200002 -1.04,0.88 -1.04,2.32 z m 0.6,6.92 v 18.4 h 5.84 v -18.4 z"
id="path2751" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="komfort-check-in.svg"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="15.401351"
inkscape:cx="18.634728"
inkscape:cy="26.296394"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="text10390">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
aria-label="R"
id="text51"
style="font-size:40px;line-height:1.25;letter-spacing:0px;word-spacing:0px">
<path
id="path10385"
style="fill:none;stroke:#000000;stroke-width:1.5;paint-order:fill markers stroke"
d="M 7.3673481,34.893796 C 6.4863022,32.770486 6,30.442035 6,28.000002 c 0,-9.941125 8.058875,-18 18,-18 2.759441,0 5.373854,0.620934 7.71114,1.7307"
sodipodi:nodetypes="cssc" />
<g
aria-label="K"
id="text10390"
style="font-size:26.6667px;font-family:'Jost*';-inkscape-font-specification:'Jost*, @wght=700';font-variation-settings:'wght' 700;fill:#000003;stroke-width:1.5;paint-order:fill markers stroke">
<path
d="m 11.653323,18.666653 v 18.666691 h 4.666672 V 18.666653 Z m 11.013347,0 -7.653343,8.880011 7.866677,9.78668 h 5.466673 l -7.973343,-9.920013 7.573343,-8.746678 z"
id="path11980" />
</g>
<path
style="font-variation-settings:'wght' 700;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 24,28.000002 4,4 12,-12"
id="path10446" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,119 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="no-bicycle-conveyance.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="6.2916665"
inkscape:cx="-4.6092716"
inkscape:cy="38.304637"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="1073"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g5"
transform="matrix(1.3332593,0,0,1.3332593,-0.66529661,-17.998334)"
style="stroke-width:1.12506247;stroke-dasharray:none">
<circle
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.12506247;stroke-opacity:1;stroke-dasharray:none"
id="path1"
cx="10"
cy="35"
r="5" />
<circle
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.12506247;stroke-opacity:1;stroke-dasharray:none"
id="circle1"
cx="27"
cy="35"
r="5" />
<path
style="fill:none;stroke:#000000;stroke-width:1.12506247;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 10,35 6,-12 h 1"
id="path2"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.12506247;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 14,27 5,8 h 8 l -5,-8"
id="path3"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.12506247;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="M 19,35 23,25"
id="path4" />
<path
style="fill:none;stroke:#000000;stroke-width:1.12506247;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 21,25 h 3"
id="path5" />
</g>
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 3,41 41,3.0000001"
id="path57"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 7,45 45,7"
id="path58"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 4,44 44,4.0000001"
id="path59"
sodipodi:nodetypes="cc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="on-board-restaurant.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="7.7006757"
inkscape:cx="24.803018"
inkscape:cy="25.971747"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="1073"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<circle
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
id="path47"
cx="24"
cy="24"
r="12" />
<path
id="path48"
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5"
d="m 10,14 c 0,0 0,2.608462 0,4 0,0.928706 -1,1.733159 -1,2 0,4.666667 0,14 0,14 0,0.552285 -0.4477153,1 -1,1 C 7.4477153,35 7,34.552285 7,34 7,34 7,24.666667 7,20 7,19.737562 6,18.910827 6,18 6,16.597069 6,14 6,14"
sodipodi:nodetypes="cssscsssc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 8,14 v 3"
id="path49" />
<path
id="path50"
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5"
d="m 41,16 v 18 c 0,0.552285 -0.447715,1 -1,1 -0.552285,0 -1,-0.447715 -1,-1 v -9 c 0,-0.262438 -1,-1.089173 -1,-2 v -7 c 0,-0.828427 0.671573,-1.5 1.5,-1.5 0.828427,0 1.5,0.671573 1.5,1.5 z"
sodipodi:nodetypes="cscssscsc" />
<circle
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
id="circle51"
cx="24"
cy="24"
r="9" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="power-sockets.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="8.8977603"
inkscape:cx="17.982053"
inkscape:cy="33.491574"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="1073"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<circle
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
id="path13"
cx="24"
cy="24"
r="16" />
<circle
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
id="path14"
cx="17"
cy="24"
r="1.5" />
<circle
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
id="circle14"
cx="31"
cy="24"
r="1.5" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,94 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="quiet-zone.svg"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="15.401351"
inkscape:cx="18.634728"
inkscape:cy="26.296394"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="text51">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
aria-label="R"
id="text51"
style="font-size:40px;line-height:1.25;letter-spacing:0px;word-spacing:0px">
<path
id="path8104"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;paint-order:fill markers stroke"
d="M 20.957528,31.595411 C 15.854306,30.762822 10.918973,27.918973 7,24 c 4.694425,-4.694421 10.847209,-7.846154 17,-7.846154 6.15279,0 12.305579,3.151733 17,7.846154 -3.91675,3.916747 -8.8487,6.759591 -13.948832,7.59399"
sodipodi:nodetypes="ccscc" />
<path
id="path8112"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;paint-order:fill markers stroke"
d="M 20.848513,28.128942 C 17.970426,27.595027 15.260087,26.260087 13,24 c 3.003675,-3.003672 7.063322,-4.366484 11,-4.4 4.02552,-0.03428 7.928542,1.328541 11,4.4 -2.227531,2.227528 -5.035818,3.552624 -7.944017,4.10237"
sodipodi:nodetypes="ccscc" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 26,43 V 24 c 0,-1.104569 -0.895431,-2 -2,-2 -1.104569,0 -2,0.895431 -2,2 v 10 h -4 c -2.209139,0 -4,1.790861 -4,4 v 5"
id="path8908"
sodipodi:nodetypes="ccsccccc" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 22,42 v -3 h -3 v 3 z"
id="path8916"
sodipodi:nodetypes="ccccc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="reservation-suggested.svg"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="10.8904"
inkscape:cx="8.4478072"
inkscape:cy="26.812606"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="text51">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
aria-label="R"
id="text51"
style="font-size:40px;line-height:1.25;letter-spacing:0px;word-spacing:0px">
<g
aria-label="(R)"
id="text1746"
style="font-size:20.8955px;font-family:'Jost*';-inkscape-font-specification:'Jost*, @ital=1.00,wght=700';font-variation-settings:'ital' 1, 'wght' 700;stroke:#000000;stroke-width:0.25;stroke-opacity:0;paint-order:fill markers stroke">
<path
d="m 11.706656,10.933317 q -1.600002,2.98667 -2.42667,6.320008 Q 8.479985,20.586662 8.479985,24 q 0,3.386671 0.800001,6.720009 0.826668,3.333337 2.42667,6.346674 H 15.38666 Q 13.999992,34.053346 13.226658,30.720009 12.453323,27.386671 12.453323,24 q 0,-3.413338 0.773335,-6.746675 0.773334,-3.333338 2.160002,-6.320008 z"
style="font-size:26.6667px"
id="path2314" />
<path
d="m 22.133319,23.279999 5.226673,8.453344 h 5.280007 L 26.799991,23.279999 Z M 17.466646,13.066653 v 18.66669 h 4.506673 v -18.66669 z m 2.826671,3.813338 h 3.653337 q 0.906668,0 1.546669,0.293334 0.666668,0.293333 1.013335,0.853334 0.346667,0.533334 0.346667,1.306668 0,0.773335 -0.346667,1.333335 -0.346667,0.533334 -1.013335,0.826668 -0.640001,0.266667 -1.546669,0.266667 h -3.653337 v 3.493338 h 3.973338 q 1.786669,0 3.146671,-0.426667 1.360001,-0.453334 2.266669,-1.253335 0.906668,-0.826668 1.360002,-1.946669 0.48,-1.120002 0.48,-2.453337 0,-1.813335 -0.826667,-3.173337 -0.826668,-1.386669 -2.42667,-2.160003 -1.600002,-0.773334 -4.000005,-0.773334 h -3.973338 z"
style="font-size:26.6667px"
id="path2316" />
<path
d="M 36.293344,37.066683 Q 37.893346,34.053346 38.693347,30.720009 39.520015,27.386671 39.520015,24 q 0,-3.413338 -0.826668,-6.746675 -0.800001,-3.333338 -2.400003,-6.320008 H 32.61334 q 1.413335,2.98667 2.160003,6.320008 0.773334,3.333337 0.773334,6.746675 0,3.386671 -0.773334,6.720009 -0.746668,3.333337 -2.160003,6.346674 z"
style="font-size:26.6667px"
id="path2318" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,122 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="sleeper-couchette.svg"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="8.8977601"
inkscape:cx="0"
inkscape:cy="31.243818"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<rect
style="font-variation-settings:'ital' 1, 'wght' 700;fill:#000000;fill-opacity:0;stroke:#000000;stroke-width:1.5;stroke-opacity:1;paint-order:fill markers stroke"
id="rect13850"
width="32"
height="6"
x="8"
y="34" />
<rect
style="font-variation-settings:'ital' 1, 'wght' 700;fill:#000000;fill-opacity:0;stroke:#000000;stroke-width:1.5;stroke-opacity:1;paint-order:fill markers stroke"
id="rect13852"
width="24"
height="4"
x="8"
y="28"
ry="2" />
<circle
style="font-variation-settings:'ital' 1, 'wght' 700;fill:#000000;fill-opacity:0;stroke:#000000;stroke-width:1.5;stroke-opacity:1;paint-order:fill markers stroke"
id="path13908"
cx="37"
cy="29"
r="3" />
<rect
style="font-variation-settings:'ital' 1, 'wght' 700;fill:#000000;fill-opacity:0;stroke:#000000;stroke-width:1.5;stroke-opacity:1;paint-order:fill markers stroke"
id="rect14108"
width="32"
height="6"
x="8"
y="16" />
<path
id="rect14110"
style="font-variation-settings:'ital' 1, 'wght' 700;fill-opacity:0;stroke:#000000;stroke-width:1.5;paint-order:fill markers stroke"
d="m 27,10 h 3 c 1.108,0 2,0.892 2,2 0,1.108 -0.892,2 -2,2 h -3"
sodipodi:nodetypes="csssc" />
<circle
style="font-variation-settings:'ital' 1, 'wght' 700;fill:#000000;fill-opacity:0;stroke:#000000;stroke-width:1.5;stroke-opacity:1;paint-order:fill markers stroke"
id="circle14112"
cx="37"
cy="10"
r="3" />
<rect
style="font-variation-settings:'ital' 1, 'wght' 700;fill:#000000;fill-opacity:0;stroke:#000000;stroke-width:1.5;stroke-opacity:1;paint-order:fill markers stroke"
id="rect14116"
width="7"
height="2"
x="33"
y="14" />
<rect
style="font-variation-settings:'ital' 1, 'wght' 700;fill:#000000;fill-opacity:0;stroke:#000000;stroke-width:1.5;stroke-opacity:1;paint-order:fill markers stroke"
id="rect14118"
width="19"
height="7"
x="8"
y="9" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="special-ticket.svg"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="10.8904"
inkscape:cx="2.5710718"
inkscape:cy="18.089326"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="text3181">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
aria-label="R"
id="text51"
style="font-size:40px;line-height:1.25;letter-spacing:0px;word-spacing:0px;stroke-width:1.5;stroke-dasharray:none;stroke:#000000;stroke-opacity:1">
<rect
style="font-variation-settings:'ital' 1, 'wght' 700;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect2814"
width="20"
height="32"
x="14"
y="8"
rx="0"
ry="0" />
</g>
<g
aria-label="DE"
id="text3181"
style="font-size:26.6667px;font-family:'Jost*';-inkscape-font-specification:'Jost*, @ital=1.00,wght=700';font-variation-settings:'ital' 1, 'wght' 700;fill:#ff0000;stroke-width:1.5;paint-order:fill markers stroke">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:17.3333px;line-height:0.8;font-family:'Myanmar Text';-inkscape-font-specification:'Myanmar Text, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-opacity:0;paint-order:fill markers stroke"
x="24"
y="22"
id="text16877"><tspan
sodipodi:role="line"
id="tspan16875"
x="24"
y="22"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:17.3333px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:center;text-anchor:middle">Ꮗ</tspan><tspan
sodipodi:role="line"
x="24"
y="37.684139"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:17.3333px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:center;text-anchor:middle"
id="tspan17344">Ꮼ</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="ticket-required.svg"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="7.7006757"
inkscape:cx="-24.283583"
inkscape:cy="45.840133"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
aria-label="R"
id="text51"
style="font-size:40px;line-height:1.25;letter-spacing:0px;word-spacing:0px">
<path
id="path8104"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;paint-order:fill markers stroke"
d="m 24,31.846154 c -6.15279,0 -12.305579,-3.151733 -17,-7.846154 4.694425,-4.694421 10.847209,-7.846154 17,-7.846154 6.15279,0 12.305579,3.151733 17,7.846154 -4.694425,4.694421 -10.847209,7.846154 -17,7.846154 z"
sodipodi:nodetypes="scscs" />
<path
id="path8112"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;paint-order:fill markers stroke"
d="m 24,19.6 c 4.02552,-0.03428 7.928542,1.328541 11,4.4 -3.003675,3.003672 -7.063322,4.366484 -11,4.4 -4.02552,0.03428 -7.928542,-1.328541 -11,-4.4 3.003675,-3.003672 7.063322,-4.366484 11,-4.4 z"
sodipodi:nodetypes="scscs" />
</g>
<circle
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="path8114"
cx="24"
cy="24"
r="3" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,126 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="tilting-train.svg"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="10.8904"
inkscape:cx="-6.4276794"
inkscape:cy="30.944685"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="text51">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
aria-label="R"
id="text51"
style="font-size:40px;line-height:1.25;letter-spacing:0px;word-spacing:0px">
<path
id="rect12722"
style="font-variation-settings:'wght' 700;fill:none;stroke:#000000;stroke-width:1.5;paint-order:fill markers stroke"
d="M 31,34.404432 V 39 H 17 l 0,-7.404432"
sodipodi:nodetypes="cccc" />
<path
style="font-variation-settings:'wght' 700;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 15,36 v 5"
id="path12726" />
<path
style="font-variation-settings:'wght' 700;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 33,36 v 5"
id="path12728" />
<g
id="g12743"
transform="rotate(11.344806,23.999999,33.00001)">
<rect
style="font-variation-settings:'wght' 700;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect12720"
width="16.068884"
height="26"
x="15.965557"
y="7" />
<rect
style="font-variation-settings:'wght' 700;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect12730"
width="10"
height="11"
x="19"
y="13" />
<rect
style="font-variation-settings:'wght' 700;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect12732"
width="2"
height="2"
x="23"
y="9" />
<rect
style="font-variation-settings:'wght' 700;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect12734"
width="2"
height="2"
x="19"
y="27" />
<rect
style="font-variation-settings:'wght' 700;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect12736"
width="2"
height="2"
x="27"
y="27" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -0,0 +1,105 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="wheelchair-space.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="8.8977603"
inkscape:cx="26.748304"
inkscape:cy="26.411141"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="1073"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
id="g9"
transform="translate(-4,1.3337035)">
<circle
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
id="path1"
cx="16"
cy="28"
r="6.6662965" />
<path
id="circle6"
style="fill:none;stroke:#000000;stroke-width:1.5"
d="m 28,33 h -3 v -5 c 0,-4.970563 -4.029437,-9 -9,-9 H 13 V 9.6662965 h -3"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 13,19 v 3"
id="path6" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 25,27 H 22.666296"
id="path7"
sodipodi:nodetypes="cc" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="M 3,37 H 45"
id="path11" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 32,28 h 9 V 11"
id="path12" />
<path
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="m 36,28 v 9"
id="path13" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg1"
sodipodi:docname="wifi.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="px"
showgrid="true"
inkscape:zoom="7.7006757"
inkscape:cx="5.3242081"
inkscape:cy="16.232342"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="1073"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
id="grid1"
units="px"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#3f3fff"
empopacity="0.25098039"
color="#3f3fff"
opacity="0.1254902"
empspacing="4"
dotted="false"
gridanglex="30"
gridanglez="30"
visible="true" />
</sodipodi:namedview>
<defs
id="defs1" />
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.5;stroke-opacity:1;stroke-dasharray:none"
id="rect5"
width="42"
height="42"
x="3"
y="3"
rx="5"
ry="5" />
<g
id="g19"
transform="matrix(1.4077347,0,0,1.4077347,-9.7856335,-19.070058)"
style="stroke-width:1.06554168;stroke-dasharray:none">
<path
id="path15"
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.06554168;stroke-dasharray:none"
d="m 13.817132,29.923953 c 5.623842,-5.623843 14.741894,-5.623843 20.365736,0"
sodipodi:nodetypes="cc"
inkscape:transform-center-y="-12.252822" />
<path
id="path16"
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.06554168;stroke-dasharray:none"
d="m 16.362849,32.46967 c 4.217882,-4.217882 11.05642,-4.217882 15.274302,0"
sodipodi:nodetypes="cc"
inkscape:transform-center-y="-9.1896166" />
<path
id="path17"
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.06554168;stroke-dasharray:none"
d="m 18.908566,35.015387 c 2.811921,-2.811921 7.370947,-2.811921 10.182868,0"
sodipodi:nodetypes="cc"
inkscape:transform-center-y="-6.1264108" />
<path
id="path18"
style="opacity:1;fill:none;stroke:#000000;stroke-width:1.06554168;stroke-dasharray:none"
d="m 11.271416,27.378236 c 7.029803,-7.029803 18.427365,-7.029803 25.457169,0"
sodipodi:nodetypes="cc"
inkscape:transform-center-y="-15.316028" />
</g>
<circle
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
id="path19"
cx="24"
cy="37.23933"
r="2.8154695" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -0,0 +1,76 @@
<?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="111.125mm" height="29.878479mm" viewBox="0 0 111.125 29.878478" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="ac transit 2.svg">
<defs id="defs2">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7286">
<path d="m 46.792,689.47 h 189.89 v 51.059 H 46.792 Z" id="path7288" inkscape:connector-curvature="0"/>
</clipPath>
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath7306">
<path d="m 46.792,689.47 h 189.89 v 51.059 H 46.792 Z" id="path7308" 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="1.979899" inkscape:cx="124.89669" inkscape:cy="22.256201" inkscape:document-units="mm" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1920" inkscape:window-height="1017" inkscape:window-x="-8" inkscape:window-y="176" inkscape:window-maximized="1"/>
<metadata id="metadata5">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-89.55185,-117.57022)">
<g transform="matrix(0.46817712,0,0,0.46817712,74.609626,-330.30615)" id="layer1-3">
<g transform="matrix(1.25,0,0,-1.25,70.702,1004)" id="g7274">
<path d="m 0,0 5.721,6.863 h -23.84 l -5.746,-6.865" id="path7276" inkscape:connector-curvature="0" style="fill:#006f53"/>
</g>
<g transform="matrix(1.25,0,0,-1.25,153.34,995.39)" id="g7278">
<path d="m 0,0 h 6.077 c 1.911,2.301 7.419,8.931 8.66,10.424 2.517,3.029 6.011,4.99 8.985,4.99 5.072,0 26.32,-0.003 26.32,-0.003 l 5.782,6.916 H 22.105 c -4.058,0 -9.492,-3.773 -12.081,-6.898 C 8.81,13.961 7.546,12.487 -2.834,0.006 -1.821,-0.015 -0.839,0 0,0" id="path7280" inkscape:connector-curvature="0" style="fill:#006f53"/>
</g>
<g transform="matrix(1.25,0,0,-1.25,-26.578,1882.3)" id="g7282">
<g clip-path="url(#clipPath7286)" id="g7284">
<g transform="translate(150.01,709.52)" id="g7290">
<path d="m 0,0 h -6.077 c -0.839,0 -1.821,-0.015 -2.834,0.006 -0.737,0.015 -1.47,0.072 -2.198,0.147 h -0.004 c 2.61,3.128 13.62,16.329 13.646,16.361 3.619,4.409 9.394,7.583 13.336,7.583 1.843,0 35.321,0.007 35.321,0.007 l 5.792,6.901 H 14.932 C 8.869,31.058 1.919,26.648 -1.624,22.324 -1.627,22.32 -12.591,9.187 -15.139,6.106 -15.169,6.07 -15.192,6.037 -15.221,6 c 0.003,0.005 0.006,0.01 0.007,0.014 -5.04,-6.059 -2.889,-12.878 9.647,-12.878 15.002,0 73.462,0.014 84.294,0.014 l 5.714,6.848" id="path7292" inkscape:connector-curvature="0" style="fill:#a7a9ac"/>
</g>
</g>
</g>
<g transform="matrix(1.25,0,0,-1.25,153.55,1006.2)" id="g7294">
<path d="m 0,0 c -9.684,0 -11.515,3.672 -11.804,6.449 0,-7.113 2.525,-13.384 15.319,-13.384 l 73.896,0.042 5.746,6.91 C 57.007,0.017 0.02,0 0,0" id="path7296" inkscape:connector-curvature="0" style="fill:#006f53"/>
</g>
<g transform="matrix(1.25,0,0,-1.25,114.79,981.05)" id="g7298">
<path d="m 0,0 c 0,0.558 -0.004,10.723 -0.004,10.723 l -35.122,-42.239 h 8.922 l 10.97,13.195 15.186,-0.015 v 6.864 H -9.54 C -4.456,-5.357 -0.145,-0.173 0,0" id="path7300" inkscape:connector-curvature="0" style="fill:#006f53"/>
</g>
<g transform="matrix(1.25,0,0,-1.25,-26.578,1882.3)" id="g7302">
<g clip-path="url(#clipPath7306)" id="g7304">
<g transform="translate(116.97,740.53)" id="g7310">
<path d="m 0,0 h -6.413 c -0.098,0.007 -0.166,0.002 -0.193,0 h -0.017 0.007 c -1.241,0 -2.619,-1.878 -4.674,-4.355 -0.671,-0.809 -18.079,-21.724 -29.368,-35.287 l -23.861,0.006 -5.656,-6.926 h 23.757 c -2.308,-2.773 -3.74,-4.494 -3.74,-4.494 l 8.851,0.005 c 0,0 36.086,43.464 37.384,45.018 v -0.043 c 0,-1.581 -10e-4,-24.13 -10e-4,-33.569 -0.942,0 -16.685,-0.002 -16.685,-0.002 l -5.75,-6.935 c 19.82,0.021 19.873,0.021 20.184,0.021 0.302,0 0.632,0.008 0.943,0.099 -0.317,-0.096 -0.648,-0.1 -0.935,-0.1 0.765,0 6.15,10e-4 6.829,10e-4 0.593,0 2.308,0.131 2.308,3.12 V -5.975 C 2.97,0.276 0,0 0,0" id="path7312" inkscape:connector-curvature="0" style="fill:#a7a9ac"/>
</g>
<g transform="translate(119.01,740.53)" id="g7314">
<path d="m 0,0 c 0.138,0 2.701,0.256 2.701,-6.076 v -37.61 c 0,-2.855 -1.351,-2.876 -2.255,-2.876 -0.904,0 6.061,10e-4 6.839,10e-4 0.594,0 2.309,0.131 2.309,3.12 V -5.975 C 9.594,0.276 6.624,0 6.624,0" id="path7316" inkscape:connector-curvature="0" style="fill:#006f53"/>
</g>
</g>
</g>
<g transform="matrix(1.25,0,0,-1.25,183.46,981.96)" id="g7318">
<path d="m 0,0 h -3.452 l 1.275,1.556 H 7.147 L 5.873,0 H 2.418 l -6.817,-8.319 h -2.418" id="path7320" inkscape:connector-curvature="0" style="fill:#231f20"/>
</g>
<g transform="matrix(1.25,0,0,-1.25,193.61,985.28)" id="g7322">
<path d="M 0,0 H 0.795 C 1.986,0 3.467,0.141 4.475,1.372 5.448,2.56 4.183,2.66 2.975,2.66 H 2.18 Z m 1.038,4.216 h 2.607 c 2.59,0 5.739,0.071 3.49,-2.674 C 6.184,0.382 4.446,-0.58 2.77,-0.75 L 2.747,-0.779 C 3.369,-0.821 3.308,-1.358 3.19,-1.797 L 1.959,-5.659 h -2.694 l 1.078,3.084 c 0.257,0.735 0.178,1.018 -0.841,1.018 h -0.777 l -3.362,-4.102 h -2.418" id="path7324" inkscape:connector-curvature="0" style="fill:#231f20"/>
</g>
<g transform="matrix(1.25,0,0,-1.25,212.74,982.49)" id="g7326">
<path d="m 0,0 h -0.035 l -5.083,-4.075 h 3.523 z m 0.294,1.981 h 2.728 l -3.361,-9.876 h -2.677 l 0.819,2.264 h -4.887 l -2.908,-2.264 h -2.504" id="path7328" inkscape:connector-curvature="0" style="fill:#231f20"/>
</g>
<g transform="matrix(1.25,0,0,-1.25,223.72,980.01)" id="g7330">
<path d="M 0,0 H 2.97 L 1.512,-7.385 H 1.547 L 7.598,0 H 9.912 L 1.819,-9.875 H -1.134 L 0.308,-2.49 H 0.273 l -6.052,-7.385 h -2.313" id="path7332" inkscape:connector-curvature="0" style="fill:#231f20"/>
</g>
<g transform="matrix(1.25,0,0,-1.25,246.03,982.06)" id="g7334">
<path d="m 0,0 c -0.538,0.269 -1.257,0.425 -2.104,0.425 -0.828,0 -2.142,-0.297 -3.024,-1.373 -1.403,-1.712 4.473,-0.99 1.76,-4.301 -1.774,-2.165 -4.536,-2.985 -6.971,-2.985 -1.311,0 -1.783,0.141 -2.777,0.381 l 1.686,1.784 c 0.526,-0.368 1.279,-0.609 2.229,-0.609 0.915,0 2.454,0.382 3.185,1.273 1.541,1.882 -4.38,1.104 -1.703,4.372 1.809,2.207 4.559,3.014 6.683,3.014 1.036,0 1.911,-0.114 2.594,-0.354" id="path7336" inkscape:connector-curvature="0" style="fill:#231f20"/>
</g>
<g transform="matrix(1.25,0,0,-1.25,252.14,980.01)" id="g7338">
<path d="M 0,0 H 2.418 L -5.675,-9.875 H -8.092" id="path7340" inkscape:connector-curvature="0" style="fill:#231f20"/>
</g>
<g transform="matrix(1.25,0,0,-1.25,260.34,981.96)" id="g7342">
<path d="m 0,0 h -3.454 l 1.276,1.556 H 7.146 L 5.871,0 H 2.417 L -4.4,-8.319 h -2.417" id="path7344" inkscape:connector-curvature="0" style="fill:#231f20"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="238px" height="72px" viewBox="-0.738 0 238 72" enable-background="new -0.738 0 238 72" xml:space="preserve">
<g>
<g>
<path fill="#FFFFFF" d="M101.478,62.88c0,5.023-4.091,9.096-9.135,9.096H9.133C4.089,71.976,0,67.904,0,62.88V9.096 C0,4.073,4.089,0,9.133,0h83.212c5.043,0,9.134,4.073,9.134,9.097V62.88z"/>
<polygon points="80.291,15.083 86.61,15.083 86.61,16.894 84.581,16.894 84.581,21.978 82.32,21.978 82.32,16.894 80.291,16.894 "/>
<path d="M38.388,19.096v1.271h0.984c0.558,0,0.979-0.115,0.979-0.632c0-0.604-0.526-0.642-1.245-0.642h-0.718V19.096z M38.388,16.692v1.148h0.937c0.45,0,0.776-0.2,0.776-0.604c0-0.537-0.44-0.546-0.919-0.546L38.388,16.692L38.388,16.692z M36.127,21.978v-6.895h3.294c1.551,0,2.786,0.364,2.786,1.733c0,0.709-0.459,1.226-0.898,1.503 c0.746,0.192,1.148,0.833,1.148,1.58c0,1.542-1.178,2.078-2.969,2.078H36.127L36.127,21.978z"/>
<path d="M53.675,17.162l-0.697,2.469h1.428L53.675,17.162L53.675,17.162z M50.076,21.978l2.471-6.895h2.298l2.472,6.895h-2.251 l-0.269-0.909h-2.251l-0.259,0.909H50.076L50.076,21.978z"/>
<path d="M67.73,18.061h0.892c0.698,0,1.07-0.172,1.07-0.65c0-0.488-0.384-0.718-0.909-0.718H67.73V18.061L67.73,18.061z M67.73,19.574v2.404h-2.261v-6.895h3.257c2.298,0,3.054,0.623,3.054,1.962c0,0.795-0.355,1.467-1.159,1.687 C71.35,19,71.79,19.171,71.79,20.56c0,0.899-0.027,1.207,0.24,1.207v0.211h-2.29c-0.057-0.153-0.113-0.594-0.113-1.207 c0-0.9-0.153-1.197-1.207-1.197H67.73L67.73,19.574z"/>
<path fill="#0099D8" d="M74.332,27.302c0,0,0,1.196,0,1.792c-2.5-1.438-5.694-2.163-9.521-2.15h-0.179 c-2.016-0.005-8.597,0.291-13.172,4.059c3.236,2.587,5.344,6.391,5.344,11.5c0,5.337-2.356,8.805-5.437,11.067 c0.975,0.922,2.094,1.719,3.365,2.376c3.896,2.019,8.176,2.234,9.831,2.234c2.74,0,4.957-0.192,9.77-2.612 c0,0.526,0,1.655,0,1.655h12.152V27.302H74.332z M65.671,50.726c-4.651,0-8.425-3.787-8.425-8.461 c0-4.676,3.772-8.465,8.425-8.465c4.653,0,8.425,3.789,8.425,8.465C74.096,46.939,70.324,50.726,65.671,50.726z"/>
<path d="M38.131,26.825c-7.659,0-9.813,1.915-10.891,2.513c0-2.393,0-14.601,0-14.601H15.272v42.248h11.608v-2.036 c3.95,2.274,8.378,2.632,11.25,2.632c4.429,0,18.67-1.914,18.67-15.078C56.802,31.852,47.706,26.825,38.131,26.825z M38.184,50.726c-4.675,0-8.463-3.787-8.463-8.461c0-4.676,3.788-8.465,8.463-8.465c4.674,0,8.463,3.789,8.463,8.465 C46.647,46.939,42.858,50.726,38.184,50.726z"/>
</g>
<g>
<path fill="#FFFFFF" d="M121.305,15.251h4.731c1.745,0,4.362,0.504,4.362,3.471c0,1.609-1.086,2.734-2.696,3.025v0.038 c1.843,0.175,3.102,1.416,3.102,3.083c0,3.412-3.062,3.917-4.768,3.917h-4.731V15.251z M124.02,20.718h1.105 c1.145,0,2.56-0.251,2.56-1.647c0-1.571-1.377-1.687-2.617-1.687h-1.048V20.718z M124.02,26.652h1.28 c1.26,0,2.792-0.31,2.792-1.881c0-1.764-1.435-2.036-2.792-2.036h-1.28V26.652z"/>
<path fill="#FFFFFF" d="M133.365,19.323c1.009-0.465,2.365-0.756,3.472-0.756c3.043,0,4.305,1.26,4.305,4.208v1.28 c0,1.009,0.02,1.764,0.039,2.501c0.02,0.756,0.057,1.455,0.115,2.229h-2.288c-0.097-0.523-0.097-1.182-0.116-1.493h-0.038 c-0.601,1.106-1.9,1.726-3.084,1.726c-1.765,0-3.49-1.066-3.49-2.967c0-1.493,0.717-2.365,1.705-2.85 c0.99-0.484,2.27-0.581,3.354-0.581h1.435c0-1.609-0.716-2.152-2.249-2.152c-1.105,0-2.211,0.426-3.083,1.085L133.365,19.323z M136.41,27.117c0.795,0,1.416-0.348,1.823-0.892c0.427-0.562,0.542-1.28,0.542-2.055h-1.124c-1.163,0-2.89,0.193-2.89,1.727 C134.76,26.749,135.479,27.117,136.41,27.117z"/>
<path fill="#FFFFFF" d="M147.847,26.09h0.038l2.404-7.29h2.638l-3.743,9.908c-0.834,2.211-1.435,4.381-4.149,4.381 c-0.62,0-1.241-0.096-1.843-0.271l0.175-1.92c0.33,0.116,0.698,0.175,1.338,0.175c1.048,0,1.688-0.718,1.688-1.784l-3.82-10.489 h2.87L147.847,26.09z"/>
<path fill="#FFFFFF" d="M163.977,15.251h3.064l5.312,13.533h-3.005l-1.163-3.102H162.7l-1.183,3.102h-2.812L163.977,15.251z M165.471,17.966h-0.039l-1.959,5.583h3.956L165.471,17.966z"/>
<path fill="#FFFFFF" d="M173.924,18.8h2.307v2.268h0.039c0.116-0.93,1.183-2.501,2.733-2.501c0.253,0,0.523,0,0.796,0.077v2.618 c-0.232-0.136-0.698-0.213-1.164-0.213c-2.112,0-2.112,2.638-2.112,4.072v3.664h-2.6L173.924,18.8L173.924,18.8z"/>
<path fill="#FFFFFF" d="M189.069,28.223c-0.95,0.522-2.036,0.795-3.434,0.795c-3.295,0-5.215-1.9-5.215-5.177 c0-2.889,1.531-5.273,4.634-5.273c3.703,0,4.75,2.54,4.75,6.03h-6.902c0.117,1.609,1.241,2.521,2.851,2.521 c1.26,0,2.346-0.465,3.315-1.009L189.069,28.223L189.069,28.223z M187.324,22.813c-0.078-1.262-0.659-2.347-2.113-2.347 c-1.453,0-2.19,1.008-2.308,2.347H187.324z"/>
<path fill="#FFFFFF" d="M192.288,19.323c1.009-0.465,2.365-0.756,3.471-0.756c3.043,0,4.304,1.26,4.304,4.208v1.28 c0,1.009,0.021,1.764,0.039,2.501c0.021,0.756,0.059,1.455,0.116,2.229h-2.288c-0.097-0.523-0.097-1.182-0.115-1.493h-0.039 c-0.601,1.106-1.9,1.726-3.084,1.726c-1.765,0-3.49-1.066-3.49-2.967c0-1.493,0.717-2.365,1.705-2.85 c0.99-0.484,2.269-0.581,3.354-0.581h1.435c0-1.609-0.716-2.152-2.25-2.152c-1.105,0-2.211,0.426-3.083,1.085L192.288,19.323z M195.332,27.117c0.795,0,1.415-0.348,1.822-0.892c0.428-0.562,0.543-1.28,0.543-2.055h-1.124c-1.164,0-2.889,0.193-2.889,1.727 C193.684,26.749,194.401,27.117,195.332,27.117z"/>
<path fill="#FFFFFF" d="M121.073,41.834h2.928c2.908,0,6.38-0.097,6.38,3.664c0,1.592-1.066,2.909-2.792,3.141v0.039 c0.736,0.059,1.163,0.795,1.435,1.396l2.172,5.293h-3.025l-1.629-4.227c-0.389-1.008-0.736-1.396-1.881-1.396h-0.873v5.622h-2.714 V41.834z M123.788,47.612h0.894c1.338,0,2.869-0.193,2.869-1.881c0-1.628-1.512-1.765-2.869-1.765h-0.894V47.612z"/>
<path fill="#FFFFFF" d="M133.365,45.905c1.009-0.465,2.365-0.757,3.472-0.757c3.043,0,4.305,1.262,4.305,4.209v1.279 c0,1.008,0.02,1.764,0.039,2.502c0.02,0.756,0.057,1.453,0.115,2.229h-2.288c-0.097-0.522-0.097-1.182-0.116-1.492h-0.038 c-0.601,1.105-1.9,1.726-3.084,1.726c-1.765,0-3.49-1.065-3.49-2.967c0-1.492,0.717-2.365,1.705-2.85 c0.99-0.484,2.27-0.582,3.354-0.582h1.435c0-1.608-0.716-2.151-2.249-2.151c-1.105,0-2.211,0.427-3.083,1.085L133.365,45.905z M136.41,53.7c0.795,0,1.416-0.349,1.823-0.893c0.427-0.562,0.542-1.279,0.542-2.055h-1.124c-1.163,0-2.89,0.193-2.89,1.727 C134.76,53.332,135.479,53.7,136.41,53.7z"/>
<path fill="#FFFFFF" d="M143.699,45.383h2.481v1.415h0.039c0.582-0.969,1.57-1.648,3.102-1.648c3.065,0,4.188,2.444,4.188,5.197 c0,2.734-1.124,5.254-4.245,5.254c-1.106,0-2.018-0.272-2.929-1.377h-0.037v5.217H143.7L143.699,45.383L143.699,45.383z M146.316,50.345c0,1.416,0.562,3.238,2.289,3.238c1.706,0,2.19-1.861,2.19-3.238c0-1.337-0.466-3.18-2.151-3.18 C146.975,47.166,146.316,48.95,146.316,50.345z"/>
<path fill="#FFFFFF" d="M155.506,41.078h2.6v2.481h-2.6V41.078z M155.506,45.383h2.6v9.984h-2.6V45.383z"/>
<path fill="#FFFFFF" d="M167.486,54.243h-0.037c-0.776,0.97-1.843,1.357-3.065,1.357c-3.062,0-4.188-2.52-4.188-5.254 c0-2.752,1.125-5.197,4.188-5.197c1.3,0,2.211,0.446,2.986,1.397h0.039v-5.72h2.598v14.541h-2.521L167.486,54.243L167.486,54.243z M165.103,53.584c1.726,0,2.287-1.822,2.287-3.238c0-1.396-0.659-3.18-2.326-3.18c-1.687,0-2.152,1.843-2.152,3.18 C162.912,51.722,163.396,53.584,165.103,53.584z"/>
<path fill="#FFFFFF" d="M180.768,43.967h-3.877v-2.133h10.471v2.133h-3.879v11.4h-2.715V43.967z"/>
<path fill="#FFFFFF" d="M187.223,45.383h2.307v2.269h0.039c0.115-0.931,1.182-2.503,2.733-2.503c0.252,0,0.522,0,0.795,0.078 v2.618c-0.232-0.137-0.697-0.214-1.163-0.214c-2.113,0-2.113,2.638-2.113,4.072v3.663h-2.599L187.223,45.383L187.223,45.383z"/>
<path fill="#FFFFFF" d="M195.153,45.905c1.008-0.465,2.364-0.757,3.471-0.757c3.043,0,4.305,1.262,4.305,4.209v1.279 c0,1.008,0.02,1.764,0.038,2.502c0.02,0.756,0.059,1.453,0.116,2.229h-2.288c-0.097-0.522-0.097-1.182-0.116-1.492h-0.038 c-0.601,1.105-1.9,1.726-3.084,1.726c-1.765,0-3.49-1.065-3.49-2.967c0-1.492,0.717-2.365,1.705-2.85 c0.99-0.484,2.27-0.582,3.354-0.582h1.435c0-1.608-0.716-2.151-2.25-2.151c-1.105,0-2.211,0.427-3.082,1.085L195.153,45.905z M198.197,53.7c0.795,0,1.416-0.349,1.822-0.893c0.428-0.562,0.543-1.279,0.543-2.055h-1.124c-1.163,0-2.89,0.193-2.89,1.727 C196.549,53.332,197.266,53.7,198.197,53.7z"/>
<path fill="#FFFFFF" d="M205.487,45.383h2.464v1.357h0.037c0.814-1.145,1.921-1.591,3.278-1.591c2.365,0,3.392,1.669,3.392,3.917 v6.302h-2.597v-5.33c0-1.222-0.021-2.871-1.688-2.871c-1.881,0-2.287,2.036-2.287,3.315v4.886h-2.599L205.487,45.383 L205.487,45.383z"/>
<path fill="#FFFFFF" d="M223.265,47.475c-0.795-0.271-1.377-0.426-2.327-0.426c-0.697,0-1.531,0.251-1.531,1.105 c0,1.59,4.518,0.581,4.518,4.188c0,2.326-2.074,3.256-4.188,3.256c-0.988,0-1.996-0.175-2.947-0.427l0.156-2.133 c0.812,0.407,1.667,0.659,2.558,0.659c0.66,0,1.707-0.252,1.707-1.221c0-1.959-4.518-0.621-4.518-4.228 c0-2.152,1.881-3.103,3.917-3.103c1.222,0,2.017,0.194,2.832,0.368L223.265,47.475z"/>
<path fill="#FFFFFF" d="M225.997,41.078h2.6v2.481h-2.6V41.078z M225.997,45.383h2.6v9.984h-2.6V45.383z"/>
<path fill="#FFFFFF" d="M232.182,47.282h-1.918v-1.899h1.918v-1.998l2.6-0.834v2.832h2.307v1.899h-2.307v4.654 c0,0.852,0.231,1.647,1.22,1.647c0.467,0,0.912-0.098,1.183-0.271l0.078,2.054c-0.543,0.155-1.145,0.232-1.92,0.232 c-2.036,0-3.161-1.261-3.161-3.238L232.182,47.282L232.182,47.282z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.3 KiB

View File

@ -0,0 +1,7 @@
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="200px" height="113.088px" viewBox="0 0 200 113.088">
<polyline fill="#010202" points="74.686,72.818 63.827,72.818 71.143,35.188 82.001,35.188 74.686,72.818 "></polyline>
<path fill="#010202" d="M51.347,72.818c-0.029-1.263,0.119-2.579,0.372-3.894c-2.821,3.235-6.185,4.442-10.023,4.442 c-5.212,0-9.211-2.855-8.122-8.449c0.862-4.445,4.896-7.405,9.024-8.613c3.778-1.095,7.65-1.536,11.368-1.756l0.042-0.216 c0.493-2.525,0.024-3.511-2.607-3.511c-2.141,0-4.292,0.946-5.08,3.306l-8.331,0.008c1.524-7.289,8.331-9.896,15.019-9.896 c3.292,0,7.429,0.435,9.788,2.413c3.177,2.578,2.03,6.2,1.255,10.202l-1.909,9.82c-0.406,2.085-0.756,4.171-0.319,6.146H51.347 M52.963,59.708c-2.687,0.274-7.234,1.097-7.896,4.498c-0.351,1.809,0.651,2.576,2.352,2.576c4.112,0,4.84-3.456,5.436-6.527 L52.963,59.708z"></path>
<path fill="#E31837" d="M85.378,57.216c-0.512,2.657-1.031,5.336-1.031,5.336l-0.042,0.221c-0.306,1.563-0.656,3.04-0.601,4.403 c0.005,0.129-0.023,0.234-0.145,0.255c-0.016-0.074-0.026-0.15-0.04-0.224c0,0.005,0,0.011,0,0.013 c-0.646-3.396-0.988-6.901-0.988-10.487c0-1.623,0.071-3.229,0.208-4.816h3.926L85.378,57.216 M133.002,64.205 c-0.355,1.809,0.649,2.578,2.35,2.578c4.115,0,4.84-3.456,5.438-6.527l0.108-0.551C138.212,59.982,133.661,60.804,133.002,64.205z M84.121,69.478c0.011,0.111,0.056,0.248,0.143,0.469c0.105,0.192,0.227,0.382,0.361,0.564c1.695,2.307,4.31,3.238,7.292,2.855 l6.577-0.825l1.524-7.84c-1.094,0.271-2.18,0.493-3.222,0.493c-2.578,0-2.051-1.592-1.655-3.623l1.879-9.654h5.484l1.387-7.134 h-5.597l1.824-9.601H90.88l-2.399,9.601h-4.667c5.473-25.092,27.818-43.889,54.552-43.889c26.742,0,49.093,18.802,54.558,43.904 c-1.139-0.39-2.409-0.562-3.633-0.562c-3.4,0-6.894,1.316-8.831,4.498h-0.105l0.764-3.952h-10.258l-5.446,28.034h10.859 l3.145-16.182c0.448-2.304,1.224-4.882,4.242-4.882c2.359,0,1.9,2.357,1.571,4.06l-3.307,17.004h9.926 c-6.907,22.996-28.237,39.752-53.484,39.752c-26.041,0-47.922-17.83-54.096-41.951c-0.166-0.556-0.324-1.078-0.398-1.292 C83.984,69.301,84.086,69.364,84.121,69.478z M157.707,42.1h10.861l1.452-7.461h-10.863L157.707,42.1z M120.944,54.111 c0.714,0,1.373,0,2.235,0.016l1.911-9.778l-1.46-0.111c-4.271-0.33-6.831,2.413-8.523,6.309h-0.11l1.12-5.763h-9.27l-5.449,28.034 h10.862l2.367-12.18c0.318-1.645,0.672-3.454,1.705-4.824C117.522,54.222,119.191,54.111,120.944,54.111z M150.075,66.672 l1.908-9.817c0.778-4.004,1.919-7.626-1.252-10.205c-2.359-1.972-6.499-2.413-9.791-2.413c-6.686,0-13.492,2.607-15.017,9.896 l8.331-0.008c0.788-2.356,2.939-3.306,5.08-3.306c2.631,0,3.098,0.986,2.607,3.511l-0.043,0.216 c-3.717,0.223-7.59,0.661-11.367,1.758c-4.128,1.208-8.162,4.168-9.026,8.61c-1.086,5.594,2.91,8.449,8.125,8.449 c3.838,0,7.199-1.208,10.022-4.445c-0.255,1.318-0.403,2.634-0.374,3.896h10.479C149.321,70.84,149.669,68.758,150.075,66.672z M162.597,72.818l5.449-28.034h-10.861l-5.449,28.034H162.597z"></path>
<path fill="#010202" d="M22.016,34.639c-11.847,0-18.81,8.995-20.921,19.856c-2.08,10.695,2.257,18.871,13.556,18.871 c8.668,0,16.063-5.597,18.749-14.948H22.812c-1.163,3.578-3.108,6.282-6.422,6.282c-5.209,0-4.181-6.422-3.448-10.205 c0.693-3.564,2.438-11.41,7.54-11.41c3.648,0,4.255,3.512,3.601,7.334h10.703l0.119-0.696h0.032 C35.991,40.342,31.614,34.639,22.016,34.639"></path>
<path fill="#E31837" d="M191.954,75.952c0-2.111,1.711-3.667,3.733-3.667c2.001,0,3.712,1.556,3.712,3.667 c0,2.125-1.711,3.68-3.712,3.68C193.665,79.632,191.954,78.077,191.954,75.952 M195.688,79.021c1.661,0,2.971-1.302,2.971-3.069 c0-1.743-1.31-3.055-2.971-3.055c-1.682,0-2.995,1.313-2.995,3.055C192.692,77.719,194.006,79.021,195.688,79.021z M194.91,78.077 h-0.644v-4.236h1.616c1.002,0,1.494,0.369,1.494,1.205c0,0.759-0.475,1.089-1.099,1.168l1.207,1.864h-0.723l-1.114-1.835h-0.738 V78.077z M195.677,75.696c0.546,0,1.031-0.037,1.031-0.69c0-0.525-0.478-0.62-0.923-0.62h-0.875v1.31H195.677z"></path>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" width="1032.66" height="481.54" viewBox="0 0 1032.66 481.54"><defs><style>.cls-1{fill:#512773;}</style></defs><g id="Layer_1-2"><path class="cls-1" d="m337.88,320.77c0,85.97,69.96,155.88,155.96,155.88h44.26v-89.08h-44.26c-36.05,0-65.37-29.95-65.37-66.79s29.32-66.85,65.37-66.85,65.29,30,65.29,66.85v157.65h90.59v-157.65c0-85.97-69.91-155.93-155.88-155.93s-155.96,69.96-155.96,155.93"/><path class="cls-1" d="m826.77,164.84c-23.3,0-45.4,5.2-65.29,14.39v-20.59h-90.59v319.79h90.59v-157.65c0-36.87,29.29-66.85,65.29-66.85,2.82,0,9.3.05,16.3.14v-89.11c-8.92-.08-16.11-.11-16.3-.11"/><path class="cls-1" d="m158.83,386.44c-37.03,0-67.17-29.62-67.17-66.05s30.14-66.05,67.17-66.05,67.12,29.62,67.12,66.05-30.11,66.05-67.12,66.05m158.69-69.5h.08L319.74,0h-93.32v179.08c-20.52-9.52-43.44-14.88-67.59-14.88C71.25,164.2,0,234.28,0,320.38s71.25,156.17,158.83,156.17,158.8-70.04,158.8-156.17c0-1.15-.08-2.3-.11-3.45"/><path class="cls-1" d="m1032.66,391.42c-43.96,0-79.73-35.18-79.73-78.42v-55.69h56.64v-90.34h-56.64v-74.34h-91.65v220.37c0,92.94,76.88,168.54,171.38,168.54v-90.12Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 160 24" xmlns="http://www.w3.org/2000/svg"><path d="m3.4 1.33a2.07 2.07 0 0 0 -2.07 2.07v19.26h5.45v-8.58h7.71a2.07 2.07 0 0 0 2.06-2.08v-2.09h-9.77v-3.13a1 1 0 0 1 1-1h9.22a2.07 2.07 0 0 0 2.1-2.1v-2.35z" fill="#73d700"/><path d="m27.9 18.25a1 1 0 0 1 -1-1v-13.85a2.07 2.07 0 0 0 -2.1-2.07h-3.38v19.27a2.06 2.06 0 0 0 2.06 2.06h11.2a2.06 2.06 0 0 0 2-2.05v-2.36z" fill="#73d700"/><path d="m44.58 22.66h-5.45v-10.66a2.07 2.07 0 0 1 2.06-2.07h3.39z" fill="#73d700"/><path d="m42.56 7.83h-3.39v-4.43a2.07 2.07 0 0 1 2.07-2.07h1.32a2.07 2.07 0 0 1 2.06 2.07v2.37a2.07 2.07 0 0 1 -2.06 2.06z" fill="#73d700"/><path d="m65.38 18.9-3.72-5.12-3.2 4.41 2.73 3.81a2.56 2.56 0 0 0 3.57.56h.06a2.56 2.56 0 0 0 .56-3.66z" fill="#73d700"/><path d="m60.37 12-3.2-4.41-4-5.54a2.56 2.56 0 0 0 -3.57-.56h-.06a2.56 2.56 0 0 0 -.54 3.61l5 6.9-5 6.89a2.57 2.57 0 0 0 .56 3.58h.06a2.56 2.56 0 0 0 3.52-.47l3-4.06z" fill="#ffad00"/><g fill="#73d700"><path d="m64.82 1.53h-.06a2.56 2.56 0 0 0 -3.57.56l-2.73 3.72 3.2 4.41 3.72-5.12a2.56 2.56 0 0 0 -.56-3.57z"/><path d="m120.86 12h-6.6v-4.3a2 2 0 0 1 2-2h2.66a2 2 0 0 1 2 2zm-6.35-10.67a5.25 5.25 0 0 0 -5.25 5.25v16.08h5v-6.52h6.61v6.52h5v-16.08a5.25 5.25 0 0 0 -5.25-5.25z"/><path d="m70.12 1.33a2.07 2.07 0 0 0 -2.06 2.07v2.6h5.85v16.66h5.18v-16.66h3.81a2 2 0 0 0 2-2v-2.64z"/><path d="m131.2 22.66v-19.26a2.07 2.07 0 0 1 2.06-2.07h3.11v21.33z"/><path d="m100.5 15.33h.07a7.4 7.4 0 0 0 -3.43-14h-7.14a2.06 2.06 0 0 0 -2.06 2.06v19.27h4.94v-6.52h1.91a1 1 0 0 1 .79.44c.35.48 4.2 6.08 4.2 6.08h6a0 0 0 0 0 0-.07zm-7.64-9.59h3.39a3.13 3.13 0 0 1 0 6.26h-3.39z"/><path d="m158.67 3.4a2.07 2.07 0 0 0 -2.07-2.07h-2.84v11.82l-6.49-10.81a2 2 0 0 0 -1.77-1h-1.72a2.07 2.07 0 0 0 -2.07 2.07v19.25h5v-11.41l6.48 10.44a2.06 2.06 0 0 0 1.76 1h1.69a2.07 2.07 0 0 0 2.07-2.06z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generator: Adobe Illustrator 25.4.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 841.9 362.2" style="enable-background:new 0 0 841.9 362.2;" xml:space="preserve">
<style type="text/css">
.st0{enable-background:new ;}
.st1{fill:#1A171B;}
.st2{fill:#FFFFFF;}
.st3{fill:#BE0A26;}
.st4{fill:none;}
</style>
<g class="st0">
<path class="st1" d="M18,358.7c0.9,0,1.6,0,2.4-0.1c0.7-0.1,1.4-0.2,2-0.4c0.6-0.2,1.2-0.4,1.8-0.6c0.6-0.2,1.1-0.5,1.7-0.8v-7 h-4.9c-0.3,0-0.5-0.1-0.7-0.2c-0.2-0.2-0.3-0.4-0.3-0.6v-2.4h9.7v12.2c-0.8,0.6-1.6,1.1-2.5,1.5c-0.9,0.4-1.8,0.8-2.8,1.1 c-1,0.3-2,0.5-3.2,0.6c-1.1,0.1-2.3,0.2-3.6,0.2c-2.3,0-4.4-0.4-6.3-1.2c-1.9-0.8-3.6-1.9-5-3.3c-1.4-1.4-2.5-3.1-3.2-5.1 c-0.8-2-1.2-4.2-1.2-6.6c0-2.4,0.4-4.6,1.1-6.6c0.8-2,1.8-3.7,3.3-5.1c1.4-1.4,3.1-2.5,5.1-3.3c2-0.8,4.2-1.2,6.7-1.2 c1.3,0,2.4,0.1,3.5,0.3c1.1,0.2,2.1,0.5,3,0.8c0.9,0.3,1.8,0.8,2.6,1.3c0.8,0.5,1.5,1.1,2.2,1.7l-1.2,1.9c-0.2,0.4-0.6,0.6-1,0.6 c-0.2,0-0.5-0.1-0.8-0.2c-0.4-0.2-0.8-0.5-1.2-0.8c-0.5-0.3-1-0.6-1.7-0.8c-0.7-0.3-1.4-0.5-2.3-0.7c-0.9-0.2-1.9-0.3-3.2-0.3 c-1.8,0-3.4,0.3-4.8,0.9c-1.4,0.6-2.7,1.4-3.7,2.5c-1,1.1-1.8,2.4-2.3,3.9c-0.5,1.5-0.8,3.3-0.8,5.2c0,2,0.3,3.8,0.9,5.4 c0.6,1.6,1.4,2.9,2.4,4c1,1.1,2.3,1.9,3.7,2.5S16.3,358.7,18,358.7z"/>
</g>
<g class="st0">
<path class="st1" d="M35.7,361.9v-22.4H38c0.4,0,0.7,0.1,0.9,0.2c0.2,0.2,0.3,0.4,0.3,0.8l0.3,3.5c0.8-1.6,1.7-2.8,2.8-3.7 c1.1-0.9,2.5-1.3,4-1.3c0.6,0,1.2,0.1,1.7,0.2c0.5,0.1,1,0.3,1.4,0.6l-0.5,2.9c-0.1,0.4-0.3,0.6-0.7,0.6c-0.2,0-0.5-0.1-1-0.2 c-0.4-0.1-1-0.2-1.8-0.2c-1.4,0-2.5,0.4-3.4,1.2c-0.9,0.8-1.7,2-2.3,3.5v14.3H35.7z"/>
</g>
<g class="st0">
<path class="st1" d="M69.1,361.9h-1.7c-0.4,0-0.7-0.1-0.9-0.2c-0.2-0.1-0.4-0.4-0.5-0.8l-0.4-2.1c-0.6,0.5-1.2,1-1.7,1.4 c-0.6,0.4-1.2,0.8-1.8,1.1c-0.6,0.3-1.3,0.5-2,0.7c-0.7,0.1-1.5,0.2-2.3,0.2c-0.9,0-1.7-0.1-2.4-0.4c-0.8-0.2-1.4-0.6-2-1.1 c-0.6-0.5-1-1.1-1.3-1.9s-0.5-1.6-0.5-2.7c0-0.9,0.2-1.7,0.7-2.6c0.5-0.8,1.3-1.5,2.4-2.2c1.1-0.6,2.5-1.2,4.3-1.6 c1.8-0.4,3.9-0.6,6.4-0.6v-1.8c0-1.8-0.4-3.1-1.1-4c-0.7-0.9-1.8-1.4-3.3-1.4c-1,0-1.8,0.1-2.4,0.4c-0.7,0.2-1.2,0.5-1.7,0.8 c-0.5,0.3-0.9,0.6-1.2,0.8c-0.3,0.2-0.7,0.4-1,0.4c-0.3,0-0.5-0.1-0.7-0.2c-0.2-0.1-0.4-0.3-0.5-0.5l-0.7-1.3 c1.2-1.2,2.6-2.1,4-2.7c1.4-0.6,3-0.9,4.8-0.9c1.3,0,2.4,0.2,3.3,0.6c1,0.4,1.8,1,2.5,1.7c0.7,0.7,1.2,1.6,1.5,2.7 c0.3,1,0.5,2.2,0.5,3.5V361.9z M58.9,359.4c0.7,0,1.3-0.1,1.9-0.2c0.6-0.1,1.1-0.3,1.6-0.6c0.5-0.3,1-0.6,1.5-0.9 c0.5-0.4,0.9-0.8,1.4-1.3v-4.6c-1.8,0-3.4,0.1-4.6,0.3c-1.3,0.2-2.3,0.5-3.1,0.9c-0.8,0.4-1.4,0.8-1.7,1.3 c-0.4,0.5-0.5,1.1-0.5,1.7c0,0.6,0.1,1.1,0.3,1.5c0.2,0.4,0.4,0.8,0.8,1.1c0.3,0.3,0.7,0.5,1.2,0.6 C57.9,359.4,58.4,359.4,58.9,359.4z"/>
<path class="st1" d="M90.7,341.1c0,0.3,0,0.5-0.2,0.8c-0.1,0.3-0.2,0.5-0.4,0.7l-12.1,16.2h12.2v3.1H73.4v-1.6c0-0.2,0-0.4,0.1-0.7 c0.1-0.3,0.2-0.5,0.4-0.7l12.2-16.3H74.1v-3.1h16.6V341.1z"/>
<path class="st1" d="M94.5,346.9h10.9v3.3H94.5V346.9z"/>
</g>
<g class="st0">
<path class="st1" d="M116.3,344.1h1.6c0.6,0,1-0.1,1.3-0.2c0.3-0.1,0.6-0.4,0.9-0.7l10.6-11.9c0.3-0.4,0.6-0.6,0.9-0.8 c0.3-0.2,0.7-0.2,1.2-0.2h3.6l-12.1,13.6c-0.3,0.3-0.6,0.6-0.9,0.9c-0.3,0.2-0.6,0.4-0.9,0.6c0.4,0.1,0.8,0.3,1.1,0.6 c0.3,0.3,0.6,0.6,1,1l12.6,15h-3.7c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.4-0.1-0.5-0.2s-0.3-0.2-0.4-0.3c-0.1-0.1-0.2-0.2-0.4-0.4 l-10.9-12.6c-0.2-0.2-0.3-0.3-0.5-0.5c-0.1-0.1-0.3-0.2-0.5-0.3c-0.2-0.1-0.4-0.1-0.6-0.2c-0.2,0-0.5-0.1-0.9-0.1h-1.9v14.5H112 v-31.7h4.3V344.1z"/>
</g>
<g class="st0">
<path class="st1" d="M149.3,339.1c1.6,0,3.1,0.3,4.4,0.8c1.3,0.5,2.4,1.3,3.4,2.3c0.9,1,1.6,2.2,2.1,3.6c0.5,1.4,0.7,3,0.7,4.8 c0,1.8-0.2,3.4-0.7,4.8c-0.5,1.4-1.2,2.6-2.1,3.6c-0.9,1-2,1.8-3.4,2.3c-1.3,0.5-2.8,0.8-4.4,0.8c-1.6,0-3.1-0.3-4.4-0.8 s-2.4-1.3-3.4-2.3c-0.9-1-1.6-2.2-2.1-3.6c-0.5-1.4-0.8-3-0.8-4.8c0-1.8,0.3-3.3,0.8-4.8c0.5-1.4,1.2-2.6,2.1-3.6 c0.9-1,2.1-1.8,3.4-2.3C146.2,339.4,147.6,339.1,149.3,339.1z M149.3,359.1c2.2,0,3.9-0.7,5-2.2c1.1-1.5,1.6-3.6,1.6-6.2 c0-2.7-0.5-4.8-1.6-6.2c-1.1-1.5-2.7-2.2-5-2.2c-1.1,0-2.1,0.2-2.9,0.6c-0.8,0.4-1.5,0.9-2.1,1.7s-1,1.6-1.2,2.7 c-0.3,1.1-0.4,2.2-0.4,3.6c0,1.3,0.1,2.5,0.4,3.6c0.3,1.1,0.7,1.9,1.2,2.7s1.2,1.3,2.1,1.6C147.2,358.9,148.2,359.1,149.3,359.1z M147.8,333.3c0,0.3-0.1,0.7-0.2,1c-0.1,0.3-0.3,0.5-0.6,0.8c-0.2,0.2-0.5,0.4-0.8,0.5c-0.3,0.1-0.6,0.2-1,0.2 c-0.3,0-0.6-0.1-0.9-0.2c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.4-0.5-0.5-0.8c-0.1-0.3-0.2-0.6-0.2-1c0-0.3,0.1-0.7,0.2-1 c0.1-0.3,0.3-0.6,0.5-0.8c0.2-0.2,0.5-0.4,0.8-0.5c0.3-0.1,0.6-0.2,0.9-0.2c0.3,0,0.7,0.1,1,0.2c0.3,0.1,0.6,0.3,0.8,0.5 c0.2,0.2,0.4,0.5,0.6,0.8C147.8,332.7,147.8,333,147.8,333.3z M155.8,333.3c0,0.3-0.1,0.7-0.2,1c-0.1,0.3-0.3,0.5-0.5,0.8 c-0.2,0.2-0.5,0.4-0.8,0.5c-0.3,0.1-0.6,0.2-1,0.2c-0.3,0-0.7-0.1-1-0.2c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.4-0.5-0.5-0.8 c-0.1-0.3-0.2-0.6-0.2-1c0-0.3,0.1-0.7,0.2-1c0.1-0.3,0.3-0.6,0.5-0.8c0.2-0.2,0.5-0.4,0.8-0.5c0.3-0.1,0.6-0.2,1-0.2 c0.3,0,0.7,0.1,1,0.2c0.3,0.1,0.6,0.3,0.8,0.5c0.2,0.2,0.4,0.5,0.5,0.8C155.7,332.7,155.8,333,155.8,333.3z"/>
<path class="st1" d="M165.7,361.9v-19l-2.5-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.2-0.3-0.4-0.3-0.7v-1.6h3.5v-1.2 c0-1.2,0.2-2.4,0.6-3.5s1-2.1,1.7-2.9c0.8-0.8,1.7-1.5,2.9-2c1.2-0.5,2.5-0.7,4-0.7c1.2,0,2.4,0,3.5,0.1c1.1,0.1,2.2,0.1,3.3,0.1 h2.2v32H180v-29.3c-0.8,0-1.6,0-2.4,0c-0.8,0-1.5,0-2.1,0c-1.9,0-3.4,0.5-4.4,1.6c-1,1.1-1.5,2.6-1.5,4.6v1.2h5.8v2.9h-5.7v19.1 H165.7z"/>
<path class="st1" d="M207.5,361.9h-1.7c-0.4,0-0.7-0.1-0.9-0.2c-0.2-0.1-0.4-0.4-0.5-0.8l-0.4-2.1c-0.6,0.5-1.2,1-1.7,1.4 c-0.6,0.4-1.2,0.8-1.8,1.1c-0.6,0.3-1.3,0.5-2,0.7c-0.7,0.1-1.5,0.2-2.3,0.2c-0.9,0-1.7-0.1-2.4-0.4c-0.8-0.2-1.4-0.6-2-1.1 c-0.6-0.5-1-1.1-1.3-1.9s-0.5-1.6-0.5-2.7c0-0.9,0.2-1.7,0.7-2.6c0.5-0.8,1.3-1.5,2.4-2.2c1.1-0.6,2.5-1.2,4.3-1.6 c1.8-0.4,3.9-0.6,6.4-0.6v-1.8c0-1.8-0.4-3.1-1.1-4c-0.7-0.9-1.8-1.4-3.3-1.4c-1,0-1.8,0.1-2.4,0.4c-0.7,0.2-1.2,0.5-1.7,0.8 c-0.5,0.3-0.9,0.6-1.2,0.8c-0.3,0.2-0.7,0.4-1,0.4c-0.3,0-0.5-0.1-0.7-0.2s-0.4-0.3-0.5-0.5l-0.7-1.3c1.2-1.2,2.6-2.1,4-2.7 c1.4-0.6,3-0.9,4.8-0.9c1.3,0,2.4,0.2,3.3,0.6c1,0.4,1.8,1,2.5,1.7c0.7,0.7,1.2,1.6,1.5,2.7c0.3,1,0.5,2.2,0.5,3.5V361.9z M197.3,359.4c0.7,0,1.3-0.1,1.9-0.2c0.6-0.1,1.1-0.3,1.6-0.6c0.5-0.3,1-0.6,1.5-0.9c0.5-0.4,0.9-0.8,1.4-1.3v-4.6 c-1.8,0-3.4,0.1-4.6,0.3c-1.3,0.2-2.3,0.5-3.1,0.9c-0.8,0.4-1.4,0.8-1.7,1.3c-0.4,0.5-0.5,1.1-0.5,1.7c0,0.6,0.1,1.1,0.3,1.5 c0.2,0.4,0.4,0.8,0.8,1.1c0.3,0.3,0.7,0.5,1.2,0.6C196.3,359.4,196.8,359.4,197.3,359.4z"/>
<path class="st1" d="M228.8,343.4c-0.1,0.2-0.2,0.3-0.4,0.4c-0.1,0.1-0.3,0.1-0.5,0.1c-0.2,0-0.5-0.1-0.7-0.3s-0.6-0.4-1-0.6 c-0.4-0.2-0.9-0.4-1.4-0.6c-0.6-0.2-1.3-0.3-2.1-0.3c-1.1,0-2.1,0.2-2.9,0.6c-0.8,0.4-1.5,1-2.1,1.7c-0.6,0.7-1,1.6-1.3,2.7 c-0.3,1-0.4,2.2-0.4,3.5c0,1.4,0.2,2.6,0.5,3.6c0.3,1.1,0.7,1.9,1.3,2.7c0.6,0.7,1.2,1.3,2,1.6c0.8,0.4,1.7,0.6,2.7,0.6 c1,0,1.7-0.1,2.4-0.3c0.6-0.2,1.1-0.5,1.5-0.8c0.4-0.3,0.8-0.5,1-0.8c0.3-0.2,0.5-0.3,0.8-0.3c0.3,0,0.6,0.1,0.8,0.4l1.1,1.4 c-1,1.2-2.2,2.1-3.7,2.6c-1.5,0.6-3,0.8-4.6,0.8c-1.4,0-2.7-0.3-3.9-0.8c-1.2-0.5-2.2-1.3-3.1-2.2c-0.9-1-1.6-2.2-2.1-3.6 c-0.5-1.4-0.8-3.1-0.8-4.9c0-1.7,0.2-3.2,0.7-4.6c0.5-1.4,1.1-2.6,2-3.7c0.9-1,2-1.8,3.3-2.4c1.3-0.6,2.8-0.9,4.5-0.9 c1.6,0,2.9,0.3,4.2,0.8c1.2,0.5,2.3,1.2,3.2,2.2L228.8,343.4z"/>
<path class="st1" d="M234.2,361.9v-32.6h3.9v13.2c1-1,2-1.8,3.2-2.4c1.2-0.6,2.5-0.9,4-0.9c1.2,0,2.3,0.2,3.2,0.6 c0.9,0.4,1.7,1,2.3,1.7c0.6,0.7,1.1,1.6,1.4,2.7c0.3,1,0.5,2.2,0.5,3.5v14.3h-3.9v-14.3c0-1.7-0.4-3-1.2-3.9 c-0.8-0.9-2-1.4-3.6-1.4c-1.2,0-2.3,0.3-3.3,0.8c-1,0.6-1.9,1.3-2.8,2.3v16.5H234.2z"/>
<path class="st1" d="M267.7,339.1c1.3,0,2.6,0.2,3.7,0.7c1.1,0.4,2.1,1.1,2.9,1.9c0.8,0.8,1.5,1.9,1.9,3.1c0.5,1.2,0.7,2.7,0.7,4.3 c0,0.6-0.1,1-0.2,1.2c-0.1,0.2-0.4,0.3-0.8,0.3h-14.9c0,1.4,0.2,2.6,0.6,3.7c0.4,1,0.8,1.9,1.5,2.6c0.6,0.7,1.4,1.2,2.2,1.6 c0.9,0.3,1.8,0.5,2.9,0.5c1,0,1.8-0.1,2.6-0.3c0.7-0.2,1.3-0.5,1.8-0.7c0.5-0.3,0.9-0.5,1.3-0.7c0.3-0.2,0.6-0.3,0.9-0.3 c0.3,0,0.6,0.1,0.8,0.4l1.1,1.4c-0.5,0.6-1.1,1.1-1.7,1.5c-0.7,0.4-1.4,0.8-2.2,1.1c-0.8,0.3-1.6,0.5-2.4,0.6 c-0.8,0.1-1.6,0.2-2.5,0.2c-1.5,0-3-0.3-4.3-0.8c-1.3-0.5-2.4-1.3-3.4-2.3c-1-1-1.7-2.3-2.2-3.7c-0.5-1.5-0.8-3.2-0.8-5.1 c0-1.6,0.2-3,0.7-4.4c0.5-1.4,1.2-2.5,2.1-3.5c0.9-1,2-1.8,3.3-2.3C264.6,339.4,266,339.1,267.7,339.1z M267.7,342 c-1.9,0-3.4,0.5-4.5,1.7c-1.1,1.1-1.8,2.6-2,4.6h12.2c0-0.9-0.1-1.7-0.4-2.5c-0.3-0.8-0.6-1.4-1.1-2c-0.5-0.5-1.1-1-1.8-1.3 C269.4,342.1,268.6,342,267.7,342z"/>
<path class="st1" d="M282,361.9v-22.4h2.3c0.4,0,0.7,0.1,0.9,0.2c0.2,0.2,0.3,0.4,0.3,0.8l0.3,3.5c0.8-1.6,1.7-2.8,2.8-3.7 c1.1-0.9,2.5-1.3,4-1.3c0.6,0,1.2,0.1,1.7,0.2c0.5,0.1,1,0.3,1.4,0.6l-0.5,2.9c-0.1,0.4-0.3,0.6-0.7,0.6c-0.2,0-0.5-0.1-1-0.2 c-0.4-0.1-1-0.2-1.8-0.2c-1.4,0-2.5,0.4-3.4,1.2c-0.9,0.8-1.7,2-2.3,3.5v14.3H282z"/>
<path class="st1" d="M309,361.9v-31.7h10.1c1.9,0,3.6,0.2,5,0.6c1.4,0.4,2.6,0.9,3.5,1.6c0.9,0.7,1.6,1.6,2,2.6 c0.4,1,0.7,2.2,0.7,3.5c0,0.8-0.1,1.5-0.4,2.3c-0.2,0.7-0.6,1.4-1.1,2c-0.5,0.6-1.1,1.2-1.9,1.7c-0.7,0.5-1.6,0.9-2.6,1.2 c2.3,0.5,4.1,1.3,5.2,2.5c1.2,1.2,1.8,2.8,1.8,4.8c0,1.3-0.2,2.6-0.7,3.7c-0.5,1.1-1.2,2.1-2.2,2.8c-1,0.8-2.1,1.4-3.5,1.8 c-1.4,0.4-3,0.7-4.7,0.7H309z M313.2,344.4h5.7c1.2,0,2.3-0.1,3.1-0.4c0.9-0.3,1.6-0.6,2.2-1.1c0.6-0.5,1-1,1.3-1.7 c0.3-0.7,0.4-1.4,0.4-2.2c0-1.9-0.6-3.2-1.7-4.1c-1.1-0.9-2.9-1.3-5.2-1.3h-5.8V344.4z M313.2,347.4v11h6.9c1.2,0,2.3-0.1,3.2-0.4 c0.9-0.3,1.6-0.7,2.2-1.2c0.6-0.5,1-1.1,1.3-1.8c0.3-0.7,0.4-1.5,0.4-2.3c0-1.6-0.6-2.9-1.7-3.9c-1.2-0.9-2.9-1.4-5.3-1.4H313.2z"/>
<path class="st1" d="M353.4,361.9h-1.7c-0.4,0-0.7-0.1-0.9-0.2c-0.2-0.1-0.4-0.4-0.5-0.8l-0.4-2.1c-0.6,0.5-1.2,1-1.7,1.4 c-0.6,0.4-1.2,0.8-1.8,1.1c-0.6,0.3-1.3,0.5-2,0.7c-0.7,0.1-1.5,0.2-2.3,0.2c-0.9,0-1.7-0.1-2.4-0.4c-0.8-0.2-1.4-0.6-2-1.1 c-0.6-0.5-1-1.1-1.3-1.9c-0.3-0.7-0.5-1.6-0.5-2.7c0-0.9,0.2-1.7,0.7-2.6c0.5-0.8,1.3-1.5,2.4-2.2c1.1-0.6,2.5-1.2,4.3-1.6 c1.8-0.4,3.9-0.6,6.4-0.6v-1.8c0-1.8-0.4-3.1-1.1-4c-0.7-0.9-1.8-1.4-3.3-1.4c-1,0-1.8,0.1-2.4,0.4c-0.7,0.2-1.2,0.5-1.7,0.8 c-0.5,0.3-0.9,0.6-1.2,0.8c-0.3,0.2-0.7,0.4-1,0.4c-0.3,0-0.5-0.1-0.7-0.2c-0.2-0.1-0.4-0.3-0.5-0.5l-0.7-1.3 c1.2-1.2,2.6-2.1,4-2.7c1.4-0.6,3-0.9,4.8-0.9c1.3,0,2.4,0.2,3.3,0.6c1,0.4,1.8,1,2.5,1.7c0.7,0.7,1.2,1.6,1.5,2.7 c0.3,1,0.5,2.2,0.5,3.5V361.9z M343.2,359.4c0.7,0,1.3-0.1,1.9-0.2c0.6-0.1,1.1-0.3,1.6-0.6c0.5-0.3,1-0.6,1.5-0.9 c0.5-0.4,0.9-0.8,1.4-1.3v-4.6c-1.8,0-3.4,0.1-4.6,0.3c-1.3,0.2-2.3,0.5-3.1,0.9c-0.8,0.4-1.4,0.8-1.7,1.3 c-0.4,0.5-0.5,1.1-0.5,1.7c0,0.6,0.1,1.1,0.3,1.5c0.2,0.4,0.4,0.8,0.8,1.1c0.3,0.3,0.7,0.5,1.2,0.6 C342.2,359.4,342.7,359.4,343.2,359.4z"/>
<path class="st1" d="M359.4,361.9v-32.6h3.9v13.2c1-1,2-1.8,3.2-2.4c1.2-0.6,2.5-0.9,4-0.9c1.2,0,2.3,0.2,3.2,0.6 c0.9,0.4,1.7,1,2.3,1.7c0.6,0.7,1.1,1.6,1.4,2.7s0.5,2.2,0.5,3.5v14.3h-3.9v-14.3c0-1.7-0.4-3-1.2-3.9c-0.8-0.9-2-1.4-3.6-1.4 c-1.2,0-2.3,0.3-3.3,0.8c-1,0.6-1.9,1.3-2.8,2.3v16.5H359.4z"/>
<path class="st1" d="M384,361.9v-22.4h2.3c0.6,0,0.9,0.3,1.1,0.8l0.3,2.4c1-1.1,2.1-1.9,3.3-2.6c1.2-0.7,2.6-1,4.2-1 c1.2,0,2.3,0.2,3.2,0.6c0.9,0.4,1.7,1,2.3,1.7c0.6,0.7,1.1,1.6,1.4,2.7s0.5,2.2,0.5,3.5v14.3h-3.9v-14.3c0-1.7-0.4-3-1.2-3.9 c-0.8-0.9-2-1.4-3.6-1.4c-1.2,0-2.3,0.3-3.3,0.8c-1,0.6-1.9,1.3-2.8,2.3v16.5H384z"/>
<path class="st1" d="M420.5,339.4v14.3c0,1.7,0.4,3,1.2,3.9c0.8,0.9,2,1.4,3.5,1.4c1.2,0,2.2-0.3,3.2-0.8c1-0.5,2-1.3,2.8-2.3 v-16.5h3.9v22.4h-2.3c-0.6,0-0.9-0.3-1.1-0.8l-0.3-2.4c-1,1.1-2.1,1.9-3.3,2.6c-1.2,0.7-2.6,1-4.2,1c-1.2,0-2.3-0.2-3.2-0.6 c-0.9-0.4-1.7-1-2.4-1.7c-0.6-0.7-1.1-1.6-1.4-2.7s-0.5-2.2-0.5-3.5v-14.3H420.5z"/>
<path class="st1" d="M441.7,361.9v-22.4h2.3c0.6,0,0.9,0.3,1.1,0.8l0.3,2.4c1-1.1,2.1-1.9,3.3-2.6c1.2-0.7,2.6-1,4.2-1 c1.2,0,2.3,0.2,3.2,0.6c0.9,0.4,1.7,1,2.3,1.7c0.6,0.7,1.1,1.6,1.4,2.7c0.3,1,0.5,2.2,0.5,3.5v14.3h-3.9v-14.3c0-1.7-0.4-3-1.2-3.9 c-0.8-0.9-2-1.4-3.6-1.4c-1.2,0-2.3,0.3-3.3,0.8c-1,0.6-1.9,1.3-2.8,2.3v16.5H441.7z"/>
<path class="st1" d="M482.1,361.9c-0.6,0-0.9-0.3-1.1-0.8l-0.4-2.7c-1,1.2-2.1,2.1-3.3,2.8c-1.2,0.7-2.6,1-4.2,1 c-1.3,0-2.5-0.2-3.5-0.7c-1-0.5-1.9-1.2-2.7-2.2c-0.7-1-1.3-2.2-1.7-3.6c-0.4-1.4-0.6-3.1-0.6-4.9c0-1.7,0.2-3.2,0.7-4.6 c0.4-1.4,1.1-2.7,1.9-3.7c0.8-1,1.8-1.9,3-2.5c1.2-0.6,2.6-0.9,4.1-0.9c1.4,0,2.5,0.2,3.5,0.7c1,0.5,1.8,1.1,2.6,2v-12.4h3.9v32.6 H482.1z M474.5,359c1.3,0,2.4-0.3,3.4-0.9c1-0.6,1.9-1.4,2.7-2.5v-10.8c-0.7-1-1.5-1.7-2.4-2c-0.9-0.4-1.8-0.6-2.9-0.6 c-2.1,0-3.7,0.7-4.8,2.2c-1.1,1.5-1.7,3.6-1.7,6.4c0,1.5,0.1,2.7,0.4,3.7c0.2,1,0.6,1.9,1.1,2.6c0.5,0.7,1.1,1.2,1.8,1.5 C472.7,358.8,473.5,359,474.5,359z"/>
<path class="st1" d="M500.2,361.9v-31.7h10.1c1.9,0,3.6,0.2,5,0.6c1.4,0.4,2.6,0.9,3.5,1.6c0.9,0.7,1.6,1.6,2,2.6 c0.4,1,0.6,2.2,0.6,3.5c0,0.8-0.1,1.5-0.4,2.3c-0.2,0.7-0.6,1.4-1.1,2c-0.5,0.6-1.1,1.2-1.9,1.7c-0.7,0.5-1.6,0.9-2.6,1.2 c2.3,0.5,4.1,1.3,5.2,2.5c1.2,1.2,1.8,2.8,1.8,4.8c0,1.3-0.2,2.6-0.7,3.7c-0.5,1.1-1.2,2.1-2.2,2.8c-1,0.8-2.1,1.4-3.5,1.8 c-1.4,0.4-2.9,0.7-4.7,0.7H500.2z M504.5,344.4h5.7c1.2,0,2.3-0.1,3.1-0.4c0.9-0.3,1.6-0.6,2.2-1.1c0.6-0.5,1-1,1.3-1.7 c0.3-0.7,0.4-1.4,0.4-2.2c0-1.9-0.6-3.2-1.7-4.1c-1.1-0.9-2.9-1.3-5.2-1.3h-5.8V344.4z M504.5,347.4v11h6.9c1.2,0,2.3-0.1,3.1-0.4 c0.9-0.3,1.6-0.7,2.2-1.2s1-1.1,1.3-1.8c0.3-0.7,0.4-1.5,0.4-2.3c0-1.6-0.6-2.9-1.7-3.9c-1.2-0.9-2.9-1.4-5.3-1.4H504.5z"/>
<path class="st1" d="M531.6,339.4v14.3c0,1.7,0.4,3,1.2,3.9c0.8,0.9,2,1.4,3.5,1.4c1.2,0,2.2-0.3,3.2-0.8c1-0.5,2-1.3,2.8-2.3 v-16.5h3.9v22.4H544c-0.6,0-0.9-0.3-1.1-0.8l-0.3-2.4c-1,1.1-2.1,1.9-3.3,2.6c-1.2,0.7-2.6,1-4.2,1c-1.2,0-2.3-0.2-3.2-0.6 c-0.9-0.4-1.7-1-2.4-1.7c-0.6-0.7-1.1-1.6-1.4-2.7s-0.5-2.2-0.5-3.5v-14.3H531.6z"/>
<path class="st1" d="M565.6,343.1c-0.2,0.3-0.5,0.5-0.8,0.5c-0.2,0-0.5-0.1-0.7-0.2c-0.3-0.2-0.6-0.3-1-0.5 c-0.4-0.2-0.9-0.4-1.5-0.6c-0.6-0.2-1.2-0.3-2-0.3c-0.7,0-1.3,0.1-1.8,0.3c-0.5,0.2-1,0.4-1.4,0.7c-0.4,0.3-0.7,0.6-0.9,1 c-0.2,0.4-0.3,0.8-0.3,1.3c0,0.6,0.2,1.1,0.5,1.4c0.3,0.4,0.8,0.7,1.3,1c0.5,0.3,1.2,0.5,1.9,0.7c0.7,0.2,1.4,0.4,2.1,0.7 c0.7,0.2,1.4,0.5,2.1,0.8c0.7,0.3,1.3,0.7,1.9,1.1s1,1,1.3,1.6c0.3,0.6,0.5,1.4,0.5,2.3c0,1-0.2,2-0.5,2.9 c-0.4,0.9-0.9,1.6-1.6,2.3c-0.7,0.6-1.6,1.1-2.7,1.5c-1,0.4-2.3,0.6-3.6,0.6c-1.6,0-3-0.3-4.2-0.8c-1.3-0.5-2.4-1.2-3.2-2l0.9-1.5 c0.1-0.2,0.3-0.3,0.4-0.4c0.2-0.1,0.4-0.2,0.6-0.2s0.5,0.1,0.8,0.3c0.3,0.2,0.6,0.4,1.1,0.7c0.4,0.2,0.9,0.5,1.5,0.7 c0.6,0.2,1.3,0.3,2.3,0.3c0.8,0,1.4-0.1,2-0.3s1.1-0.5,1.4-0.8c0.4-0.3,0.7-0.7,0.9-1.2c0.2-0.4,0.3-0.9,0.3-1.4 c0-0.6-0.2-1.1-0.5-1.5c-0.3-0.4-0.8-0.7-1.3-1c-0.5-0.3-1.2-0.5-1.9-0.8c-0.7-0.2-1.4-0.4-2.1-0.7c-0.7-0.2-1.4-0.5-2.1-0.8 c-0.7-0.3-1.3-0.7-1.9-1.1c-0.5-0.5-1-1-1.3-1.7c-0.3-0.7-0.5-1.5-0.5-2.4c0-0.9,0.2-1.7,0.5-2.5c0.3-0.8,0.9-1.5,1.5-2.1 c0.7-0.6,1.5-1.1,2.5-1.4c1-0.3,2.1-0.5,3.4-0.5c1.5,0,2.8,0.2,4,0.7c1.2,0.5,2.2,1.1,3,1.9L565.6,343.1z"/>
<path class="st1" d="M572.1,361.9v-32.6h4v13.4c0.9-1.1,2-1.9,3.2-2.6c1.2-0.7,2.6-1,4.1-1c1.3,0,2.5,0.2,3.5,0.7 c1,0.5,1.9,1.2,2.7,2.2c0.7,1,1.3,2.2,1.7,3.6s0.6,3.1,0.6,4.9c0,1.7-0.2,3.2-0.7,4.6c-0.4,1.4-1.1,2.7-1.9,3.7 c-0.8,1-1.8,1.9-3,2.5c-1.2,0.6-2.6,0.9-4.1,0.9c-1.4,0-2.7-0.3-3.7-0.8c-1-0.6-1.9-1.3-2.6-2.3l-0.2,2c-0.1,0.6-0.5,0.8-1,0.8 H572.1z M582.1,342.2c-1.3,0-2.4,0.3-3.4,0.9c-1,0.6-1.9,1.4-2.7,2.5v10.8c0.7,1,1.5,1.7,2.4,2.1c0.9,0.4,1.8,0.6,2.9,0.6 c2.1,0,3.7-0.7,4.8-2.2c1.1-1.5,1.7-3.6,1.7-6.4c0-1.5-0.1-2.7-0.4-3.8s-0.6-1.9-1.1-2.6c-0.5-0.7-1.1-1.2-1.8-1.5 C583.9,342.4,583,342.2,582.1,342.2z"/>
<path class="st1" d="M605.6,339.1c1.3,0,2.6,0.2,3.7,0.7c1.1,0.4,2.1,1.1,2.9,1.9c0.8,0.8,1.5,1.9,1.9,3.1c0.5,1.2,0.7,2.7,0.7,4.3 c0,0.6-0.1,1-0.2,1.2c-0.1,0.2-0.4,0.3-0.8,0.3H599c0,1.4,0.2,2.6,0.6,3.7c0.4,1,0.8,1.9,1.5,2.6c0.6,0.7,1.4,1.2,2.2,1.6 c0.9,0.3,1.8,0.5,2.9,0.5c1,0,1.8-0.1,2.6-0.3c0.7-0.2,1.3-0.5,1.8-0.7c0.5-0.3,0.9-0.5,1.3-0.7c0.3-0.2,0.6-0.3,0.9-0.3 c0.3,0,0.6,0.1,0.7,0.4l1.1,1.4c-0.5,0.6-1.1,1.1-1.7,1.5c-0.7,0.4-1.4,0.8-2.2,1.1c-0.8,0.3-1.6,0.5-2.4,0.6 c-0.8,0.1-1.6,0.2-2.5,0.2c-1.5,0-3-0.3-4.3-0.8c-1.3-0.5-2.4-1.3-3.4-2.3c-1-1-1.7-2.3-2.2-3.7c-0.5-1.5-0.8-3.2-0.8-5.1 c0-1.6,0.2-3,0.7-4.4c0.5-1.4,1.2-2.5,2.1-3.5c0.9-1,2-1.8,3.3-2.3C602.5,339.4,604,339.1,605.6,339.1z M605.7,342 c-1.9,0-3.4,0.5-4.5,1.7c-1.1,1.1-1.8,2.6-2,4.6h12.2c0-0.9-0.1-1.7-0.4-2.5c-0.3-0.8-0.6-1.4-1.1-2c-0.5-0.5-1.1-1-1.8-1.3 C607.4,342.1,606.6,342,605.7,342z"/>
<path class="st1" d="M626.7,362.2c-1.8,0-3.1-0.5-4.1-1.5c-0.9-1-1.4-2.4-1.4-4.3v-13.7h-2.7c-0.2,0-0.4-0.1-0.6-0.2 c-0.2-0.1-0.2-0.4-0.2-0.6v-1.6l3.7-0.5l0.9-6.9c0-0.2,0.1-0.4,0.3-0.5c0.2-0.1,0.4-0.2,0.6-0.2h2v7.7h6.4v2.9h-6.4v13.4 c0,0.9,0.2,1.6,0.7,2.1c0.5,0.5,1,0.7,1.8,0.7c0.4,0,0.8-0.1,1.1-0.2c0.3-0.1,0.6-0.2,0.8-0.4c0.2-0.1,0.4-0.3,0.6-0.4 c0.2-0.1,0.3-0.2,0.4-0.2c0.2,0,0.4,0.1,0.5,0.4l1.2,1.9c-0.7,0.6-1.5,1.1-2.5,1.5C628.7,362,627.7,362.2,626.7,362.2z"/>
<path class="st1" d="M636.4,361.9v-22.4h2.3c0.4,0,0.7,0.1,0.9,0.2c0.2,0.2,0.3,0.4,0.3,0.8l0.3,3.5c0.8-1.6,1.7-2.8,2.8-3.7 c1.1-0.9,2.5-1.3,4-1.3c0.6,0,1.2,0.1,1.7,0.2c0.5,0.1,1,0.3,1.4,0.6l-0.5,2.9c-0.1,0.4-0.3,0.6-0.7,0.6c-0.2,0-0.5-0.1-0.9-0.2 c-0.4-0.1-1-0.2-1.8-0.2c-1.4,0-2.5,0.4-3.4,1.2c-0.9,0.8-1.7,2-2.3,3.5v14.3H636.4z"/>
<path class="st1" d="M659.5,332.4c0,0.4-0.1,0.7-0.2,1.1c-0.2,0.3-0.4,0.6-0.6,0.9s-0.6,0.5-0.9,0.6c-0.3,0.1-0.7,0.2-1.1,0.2 c-0.4,0-0.7-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.9-0.6c-0.3-0.3-0.5-0.6-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.7,0.2-1.1 c0.1-0.3,0.3-0.7,0.6-0.9c0.3-0.3,0.6-0.5,0.9-0.6c0.3-0.1,0.7-0.2,1.1-0.2c0.4,0,0.7,0.1,1.1,0.2c0.3,0.1,0.6,0.3,0.9,0.6 c0.3,0.3,0.5,0.6,0.6,0.9C659.4,331.7,659.5,332,659.5,332.4z M658.6,339.4v22.4h-3.9v-22.4H658.6z"/>
<path class="st1" d="M674.5,339.1c1.3,0,2.6,0.2,3.7,0.7c1.1,0.4,2.1,1.1,2.9,1.9c0.8,0.8,1.5,1.9,1.9,3.1c0.5,1.2,0.7,2.7,0.7,4.3 c0,0.6-0.1,1-0.2,1.2c-0.1,0.2-0.4,0.3-0.8,0.3h-14.9c0,1.4,0.2,2.6,0.6,3.7c0.4,1,0.8,1.9,1.5,2.6c0.6,0.7,1.4,1.2,2.2,1.6 c0.9,0.3,1.8,0.5,2.9,0.5c1,0,1.8-0.1,2.6-0.3c0.7-0.2,1.3-0.5,1.8-0.7c0.5-0.3,0.9-0.5,1.3-0.7c0.3-0.2,0.6-0.3,0.9-0.3 c0.3,0,0.6,0.1,0.7,0.4l1.1,1.4c-0.5,0.6-1.1,1.1-1.7,1.5c-0.7,0.4-1.4,0.8-2.2,1.1c-0.8,0.3-1.6,0.5-2.4,0.6 c-0.8,0.1-1.6,0.2-2.5,0.2c-1.5,0-3-0.3-4.3-0.8c-1.3-0.5-2.4-1.3-3.4-2.3c-1-1-1.7-2.3-2.2-3.7c-0.5-1.5-0.8-3.2-0.8-5.1 c0-1.6,0.2-3,0.7-4.4c0.5-1.4,1.2-2.5,2.1-3.5c0.9-1,2-1.8,3.3-2.3C671.4,339.4,672.8,339.1,674.5,339.1z M674.5,342 c-1.9,0-3.4,0.5-4.5,1.7c-1.1,1.1-1.8,2.6-2,4.6h12.2c0-0.9-0.1-1.7-0.4-2.5c-0.3-0.8-0.6-1.4-1.1-2c-0.5-0.5-1.1-1-1.8-1.3 C676.2,342.1,675.4,342,674.5,342z"/>
<path class="st1" d="M688.9,361.9v-32.6h4v13.4c0.9-1.1,2-1.9,3.2-2.6c1.2-0.7,2.6-1,4.1-1c1.3,0,2.5,0.2,3.5,0.7 c1,0.5,1.9,1.2,2.7,2.2c0.7,1,1.3,2.2,1.7,3.6c0.4,1.4,0.6,3.1,0.6,4.9c0,1.7-0.2,3.2-0.7,4.6c-0.4,1.4-1.1,2.7-1.9,3.7 c-0.8,1-1.9,1.9-3,2.5c-1.2,0.6-2.6,0.9-4.1,0.9c-1.4,0-2.7-0.3-3.7-0.8c-1-0.6-1.9-1.3-2.6-2.3l-0.2,2c-0.1,0.6-0.5,0.8-1,0.8 H688.9z M698.9,342.2c-1.3,0-2.4,0.3-3.4,0.9c-1,0.6-1.9,1.4-2.7,2.5v10.8c0.7,1,1.5,1.7,2.4,2.1s1.8,0.6,2.9,0.6 c2.1,0,3.7-0.7,4.8-2.2s1.7-3.6,1.7-6.4c0-1.5-0.1-2.7-0.4-3.8c-0.3-1-0.6-1.9-1.1-2.6c-0.5-0.7-1.1-1.2-1.8-1.5 C700.6,342.4,699.8,342.2,698.9,342.2z"/>
<path class="st1" d="M736.8,358.7c0.9,0,1.6,0,2.4-0.1c0.7-0.1,1.4-0.2,2-0.4c0.6-0.2,1.2-0.4,1.8-0.6c0.6-0.2,1.1-0.5,1.7-0.8v-7 h-4.9c-0.3,0-0.5-0.1-0.7-0.2c-0.2-0.2-0.3-0.4-0.3-0.6v-2.4h9.7v12.2c-0.8,0.6-1.6,1.1-2.5,1.5c-0.9,0.4-1.8,0.8-2.8,1.1 c-1,0.3-2,0.5-3.1,0.6c-1.1,0.1-2.3,0.2-3.6,0.2c-2.3,0-4.4-0.4-6.3-1.2c-1.9-0.8-3.6-1.9-5-3.3c-1.4-1.4-2.5-3.1-3.2-5.1 c-0.8-2-1.2-4.2-1.2-6.6c0-2.4,0.4-4.6,1.1-6.6c0.8-2,1.8-3.7,3.2-5.1c1.4-1.4,3.1-2.5,5.1-3.3c2-0.8,4.2-1.2,6.7-1.2 c1.3,0,2.4,0.1,3.5,0.3c1.1,0.2,2.1,0.5,3,0.8c0.9,0.3,1.8,0.8,2.6,1.3c0.8,0.5,1.5,1.1,2.2,1.7l-1.2,1.9c-0.2,0.4-0.6,0.6-1,0.6 c-0.2,0-0.5-0.1-0.8-0.2c-0.4-0.2-0.8-0.5-1.2-0.8c-0.5-0.3-1-0.6-1.7-0.8c-0.7-0.3-1.4-0.5-2.3-0.7c-0.9-0.2-1.9-0.3-3.2-0.3 c-1.8,0-3.4,0.3-4.8,0.9c-1.4,0.6-2.7,1.4-3.7,2.5c-1,1.1-1.8,2.4-2.3,3.9c-0.5,1.5-0.8,3.3-0.8,5.2c0,2,0.3,3.8,0.9,5.4 c0.6,1.6,1.4,2.9,2.4,4c1,1.1,2.3,1.9,3.7,2.5C733.5,358.5,735.1,358.7,736.8,358.7z"/>
<path class="st1" d="M754.5,361.9v-22.4h2.4c0.6,0,0.9,0.3,1.1,0.8l0.3,2.3c0.8-1,1.8-1.8,2.8-2.5c1-0.7,2.2-1,3.6-1 c1.5,0,2.8,0.4,3.7,1.3c0.9,0.8,1.6,2,2,3.4c0.3-0.8,0.7-1.5,1.2-2.1c0.5-0.6,1.1-1.1,1.7-1.5c0.6-0.4,1.3-0.7,2-0.8 c0.7-0.2,1.4-0.3,2.2-0.3c1.2,0,2.2,0.2,3.1,0.6c0.9,0.4,1.7,0.9,2.4,1.7c0.6,0.7,1.1,1.6,1.5,2.7c0.3,1.1,0.5,2.3,0.5,3.6v14.3 h-3.9v-14.3c0-1.8-0.4-3.1-1.1-4c-0.8-0.9-1.9-1.4-3.3-1.4c-0.7,0-1.3,0.1-1.9,0.3c-0.6,0.2-1.1,0.6-1.5,1c-0.4,0.4-0.8,1-1,1.7 c-0.3,0.7-0.4,1.4-0.4,2.3v14.3h-3.9v-14.3c0-1.8-0.4-3.1-1.1-4c-0.7-0.9-1.8-1.3-3.2-1.3c-1,0-1.9,0.3-2.7,0.8 c-0.8,0.5-1.6,1.2-2.3,2.1v16.7H754.5z"/>
<path class="st1" d="M791,361.9v-32.6h4v13.4c0.9-1.1,2-1.9,3.2-2.6c1.2-0.7,2.6-1,4.1-1c1.3,0,2.5,0.2,3.5,0.7 c1,0.5,1.9,1.2,2.7,2.2c0.7,1,1.3,2.2,1.7,3.6c0.4,1.4,0.6,3.1,0.6,4.9c0,1.7-0.2,3.2-0.7,4.6c-0.4,1.4-1.1,2.7-1.9,3.7 c-0.8,1-1.9,1.9-3,2.5c-1.2,0.6-2.6,0.9-4.1,0.9c-1.4,0-2.7-0.3-3.7-0.8c-1-0.6-1.9-1.3-2.6-2.3l-0.2,2c-0.1,0.6-0.5,0.8-1,0.8H791 z M801,342.2c-1.3,0-2.4,0.3-3.4,0.9c-1,0.6-1.9,1.4-2.7,2.5v10.8c0.7,1,1.5,1.7,2.4,2.1s1.8,0.6,2.9,0.6c2.1,0,3.7-0.7,4.8-2.2 s1.7-3.6,1.7-6.4c0-1.5-0.1-2.7-0.4-3.8c-0.3-1-0.6-1.9-1.1-2.6c-0.5-0.7-1.1-1.2-1.8-1.5C802.7,342.4,801.9,342.2,801,342.2z"/>
<path class="st1" d="M841.9,361.9h-4.3v-14.4h-17.1v14.4h-4.3v-31.7h4.3v14.1h17.1v-14.1h4.3V361.9z"/>
</g>
<path class="st1" d="M142.1,284.2C63.6,284.2,0,220.6,0,142.1S63.6,0,142.1,0h555c78.5,0,142.1,63.6,142.1,142.1 s-63.6,142.1-142.1,142.1H142.1z"/>
<path class="st2" d="M424.5,100.6c50.7-1.9,91.3-42.8,92.8-93.6l37-0.2c-1.6,71.1-58.8,128.3-129.8,129.9V100.6z"/>
<path class="st3" d="M424.5,54.5c24.8-1.8,44.3-21.8,45.6-46.5h39C507.4,54,470.6,91.1,424.5,93V54.5z"/>
<path class="st2" d="M517.1,275.7c-3-49.7-42.8-89.3-92.6-92v-37.2c70.3,2.7,126.7,58.9,129.8,129.2H517.1z"/>
<path class="st3" d="M469.7,275.7c-3.4-22.9-22.1-40.5-45.3-42.5v-39.2c44.8,1.9,81,37.1,84.4,81.8H469.7z"/>
<path class="st4" d="M700.9,53.7"/>
<path class="st4" d="M608.7,141.9"/>
<path class="st4" d="M701.2,230.1"/>
<path class="st4" d="M701.1,92.4"/>
<path class="st4" d="M647,141.6"/>
<path class="st4" d="M701.2,190.6"/>
<path class="st3" d="M785.2,137.7c-2.1-45.5-38.6-81.9-84.1-84v38.7c23.9,2.2,42.7,21.4,44.5,45.3H785.2z"/>
<path class="st3" d="M745.6,145.3c-1.9,23.9-20.6,42.9-44.4,45.3V230c45.9-2.2,82.4-39.2,84.1-85.1L745.6,145.3z"/>
<path class="st4" d="M138.3,53.7"/>
<path class="st4" d="M138.3,45.4"/>
<path class="st2" d="M138.3,238.4c-50.5-2-91-42.5-92.8-93.1H8.3c1.7,71.2,58.9,128.5,130,130.3V238.4 M138.3,45.3V7.9 C67.6,10,10.6,66.9,8.4,137.7h37.2C47.8,87.4,88.1,47.3,138.3,45.3"/>
<path class="st3" d="M138.3,230.1c-46.1-1.9-82.9-39-84.6-85.1h38.4c1.8,24.6,21.6,44.1,46.2,45.5l0,0v39.3 M138.3,53.4V92l0,0 c-24.5,1.6-44.2,20.9-46.2,45.4H53.9C56,91.8,92.7,55.3,138.3,53.4"/>
<path class="st2" d="M100,137.7c2-20.2,18.1-36.1,38.4-37.7l0,0v37.7H100z M138.3,145.3v37.8l0,0c-20.4-1.4-36.7-17.4-38.5-37.8 H138.3z"/>
<path class="st4" d="M138.3,275.7"/>
<path class="st4" d="M145.9,275.7"/>
<path class="st4" d="M701.2,45.4"/>
<path class="st4" d="M693.2,45.4"/>
<path class="st4" d="M701.2,238.4"/>
<path class="st3" d="M693.3,190.6c-24.6-1.5-44.4-20.9-46.3-45.5h-38.3c1.6,46.1,38.4,83.2,84.5,85.1L693.3,190.6z"/>
<path class="st2" d="M563.4,145.3c1.7,71.1,58.8,128.3,129.8,130.3v-36.9c-50.7-1.9-91.2-42.8-92.7-93.4H563.4z"/>
<path class="st2" d="M654.9,145.3h38.4v37.8l0,0C672.9,181.6,656.6,165.6,654.9,145.3"/>
<path class="st2" d="M830.7,137.7C828.7,66.9,771.9,10,701.2,7.9v37.5c50,2.2,90.1,42.2,92.3,92.2H830.7z"/>
<path class="st2" d="M793.5,145.3c-1.8,50.3-42,90.8-92.3,93v37.4c70.7-2.3,127.5-59.2,129.6-129.9L793.5,145.3z"/>
<path class="st2" d="M648.9,275.7c-55-20-92.1-71.6-93.6-130.1V53.8c-16.9,44.3-54.6,77.3-100.7,88.3 c61.7,15.6,105.8,70,108.2,133.6H648.9z"/>
<rect x="654.7" y="7.9" class="st2" width="38.4" height="129.4"/>
<rect x="608.6" y="7.9" class="st3" width="38.4" height="129.4"/>
<polyline class="st2" points="561.8,7.9 600.2,7.9 600.2,137.3 561.8,137.3 561.8,7.9 "/>
<rect x="146" y="146" class="st2" width="38.4" height="129.4"/>
<rect x="192.4" y="146" class="st3" width="38.4" height="129.4"/>
<rect x="238.8" y="146" class="st2" width="38.4" height="129.4"/>
<rect x="285.2" y="146" class="st2" width="38.4" height="129.4"/>
<rect x="331.7" y="146" class="st3" width="38.4" height="129.4"/>
<rect x="378" y="147.1" class="st2" width="38.4" height="129.4"/>
<rect x="378" y="9" class="st2" width="38.4" height="129.4"/>
<rect x="331.8" y="7.9" class="st3" width="38.4" height="129.4"/>
<rect x="285.2" y="7.9" class="st2" width="38.4" height="129.4"/>
<rect x="146" y="53.4" class="st3" width="131.2" height="38.4"/>
<rect x="146" y="7.9" class="st2" width="131.2" height="38.4"/>
<rect x="146" y="99" class="st2" width="131.2" height="38.4"/>
<path class="st2" d="M424.5,8.1h37.9c-1.4,20.4-17.5,36.8-37.9,38.6V8.1z"/>
<path class="st2" d="M424.5,275.7v-35.1c18.9,2,34.2,16.3,37.4,35.1H424.5z"/>
<line class="st4" x1="100" y1="145.3" x2="138.4" y2="145.3"/>
<path class="st2" d="M737.7,137.3c-1.9-19.5-17.2-35-36.6-37.2v37.2L737.7,137.3z"/>
<path class="st2" d="M701.2,145.3v37.6c19.6-2.3,34.9-18,36.7-37.6H701.2z"/>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generator: Adobe Illustrator 23.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" width="200px" height="42px" x="0px" y="0px" viewBox="12 25 430 62" style="enable-background:new 12 25 430 62;" xml:space="preserve">
<style type="text/css">
.st0{display:none;fill:#DEDFE0;}
.st1{fill:url(#SVGID_1_);}
.st2{fill:url(#SVGID_2_);}
.st3{fill:url(#SVGID_3_);}
.st4{fill:url(#SVGID_4_);}
.st5{opacity:0.25;fill:url(#SVGID_5_);enable-background:new ;}
.st6{fill:#131718;}
.st7{fill:#32A441;}
</style>
<rect x="-195.78" y="-243.06" class="st0" width="841.89" height="595.28"/>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="86.94" y1="21.51" x2="49.884" y2="95.622" gradientTransform="matrix(1 0 0 -1 0 117.89)">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
<polygon class="st1" points="49.88,22.27 86.94,59.32 86.94,96.38 49.88,59.32 "/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="80.2417" y1="33.3416" x2="114.3231" y2="67.4234" gradientTransform="matrix(1 0 0 -1 0 117.89)">
<stop offset="0" style="stop-color:#FDB913"/>
<stop offset="1" style="stop-color:#F26522"/>
</linearGradient>
<polygon class="st2" points="123.99,59.32 86.94,96.38 86.94,59.32 "/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="86.94" y1="517.0854" x2="123.99" y2="517.0854" gradientTransform="matrix(1 0 0 1 0 -476.2904)">
<stop offset="0" style="stop-color:#FDB913"/>
<stop offset="1" style="stop-color:#F26522"/>
</linearGradient>
<polygon class="st3" points="123.99,59.32 86.94,22.27 86.94,59.32 "/>
<radialGradient id="SVGID_4_" cx="31.355" cy="58.57" r="29.2906" gradientTransform="matrix(1 0 0 -1 0 117.89)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#BFD730"/>
<stop offset="1" style="stop-color:#009444"/>
</radialGradient>
<polygon class="st4" points="49.88,96.37 12.83,59.32 49.88,22.27 "/>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="12.83" y1="40.04" x2="49.88" y2="40.04" gradientTransform="matrix(1 0 0 -1 0 117.89)">
<stop offset="0" style="stop-color:#BFD730"/>
<stop offset="1" style="stop-color:#009444"/>
</linearGradient>
<polygon class="st5" points="12.83,59.32 49.88,96.38 49.88,59.32 "/>
<g>
<path class="st6" d="M138.08,57.72V23.14h6.82v34.57h-6.82V57.72z"/>
<path class="st6" d="M162.94,57.72v-1.68c-0.43,0.29-2.93,2.21-6.67,2.21c-4.7,0-7.63-3.12-7.63-7.58c0-8.4,10.27-8.54,13.15-8.54 h0.67c0-1.44-0.05-2.11-0.72-2.79c-0.53-0.53-1.58-0.96-3.36-0.96c-3.12,0-5.95,1.54-6.29,1.73l-2.16-4.13 c0.34-0.29,3.55-2.54,8.98-2.54c2.02,0,5.42,0.34,7.73,2.64c1.97,1.97,1.92,4.42,1.92,7.49v14.16L162.94,57.72L162.94,57.72z M162.46,46.53c-0.43,0-1.01,0-1.01,0c-4.18,0-7.15,0.72-7.15,3.7c0,2.45,2.06,3.12,3.65,3.12c2.64,0,4.22-1.29,4.51-1.44V46.53z"/>
<path class="st6" d="M186.56,38.95c-0.19-0.05-1.1-0.14-1.44-0.14c-3.94,0-5.9,2.35-6.62,3.41v15.51h-6.48V34.1h5.52v2.98 c0.19-0.34,3.12-3.65,7.82-3.65c1.68,0,2.54,0.58,2.69,0.62L186.56,38.95z"/>
<path class="st6" d="M204.56,57.72V45.28c0-3.07-0.14-4.61-1.01-5.47c-0.29-0.29-1.01-0.86-2.54-0.86c-2.06,0-3.98,1.2-4.37,1.49 v17.28h-6.48V34.1h5.52v1.78c0.38-0.29,3.31-2.45,6.67-2.45c2.5,0,4.61,0.77,6.14,2.3c2.69,2.69,2.54,6.19,2.54,9.27v12.72 C211.03,57.72,204.56,57.72,204.56,57.72z"/>
<path class="st6" d="M228.6,38.95c-0.19-0.05-1.11-0.14-1.44-0.14c-3.94,0-5.9,2.35-6.62,3.41v15.51h-6.48V34.1h5.52v2.98 c0.19-0.34,3.12-3.65,7.82-3.65c1.68,0,2.54,0.58,2.69,0.62L228.6,38.95z"/>
<path class="st6" d="M241.85,58.39c-6.96,0-11.76-5.09-11.76-12.34c0-7.34,5.04-12.62,12.24-12.62c6.96,0,11.81,5.14,11.81,12.24 C254.14,53.2,249.15,58.39,241.85,58.39z M237.58,31.55l-1.97-3.51l10.61-5.9l2.45,4.85L237.58,31.55z M242.04,38.75 c-3.31,0-5.47,2.83-5.47,7.06c0,4.32,2.35,7.2,5.71,7.2s5.38-2.78,5.38-7.06C247.66,41.63,245.36,38.75,242.04,38.75z"/>
<path class="st6" d="M273.15,57.72v-1.44c-0.24,0.19-2.4,2.06-6.34,2.06c-6.43,0-10.61-4.99-10.61-12.1 c0-7.68,5.38-12.82,11.38-12.82c2.64,0,4.46,0.82,4.75,0.91V22.96h6.48v34.76C278.81,57.72,273.15,57.72,273.15,57.72z M272.33,39.71c-0.19-0.1-1.73-0.96-3.6-0.96c-3.41,0-6,2.45-6,7.3c0,4.56,2.59,7.01,5.62,7.01c2.06,0,3.84-1.11,3.98-1.25V39.71z"/>
<path class="st6" d="M293.78,57.72V23.14h21.59v5.88l-14.4,0.03v8.03l14.4,0.02v5.75l-14.4,0.04v8.81l14.4-0.01v6L293.78,57.72z M299.84,20.76l-2.11-3.78l11.35-6.38l2.62,5.23L299.84,20.76z"/>
<path class="st6" d="M322.12,31.17c-2.06,0-3.7-1.63-3.7-3.7c0-2.06,1.63-3.7,3.7-3.7c2.06,0,3.7,1.63,3.7,3.7 C325.81,29.54,324.18,31.17,322.12,31.17z M318.9,57.72V34.1h6.48v23.62H318.9z"/>
<path class="st6" d="M344.15,38.95c-0.19-0.05-1.11-0.14-1.44-0.14c-3.94,0-5.9,2.35-6.62,3.41v15.51h-6.48V34.1h5.52v2.98 c0.19-0.34,3.12-3.65,7.82-3.65c1.68,0,2.54,0.58,2.69,0.62L344.15,38.95z"/>
<path class="st6" d="M367.67,48.02h-15.55c-0.1,1.73,1.34,5.33,6.05,5.33c2.98,0,5.28-1.2,6.29-1.68l2.11,4.13 c-0.14,0.14-3.74,2.59-8.98,2.59c-7.68,0-11.76-5.47-11.76-12.34c0-7.25,4.61-12.62,11.33-12.62c6.91,0,10.61,4.9,10.61,12.58 C367.76,47.01,367.67,47.68,367.67,48.02z M357.3,38.23c-2.93,0-4.75,2.21-5.23,5.14h9.7C361.76,42.07,361.28,38.23,357.3,38.23z"/>
<path class="st6" d="M384.08,57.72v-1.68c-0.43,0.29-2.93,2.21-6.67,2.21c-4.7,0-7.63-3.12-7.63-7.58c0-8.4,10.27-8.54,13.15-8.54 h0.67c0-1.44-0.05-2.11-0.72-2.79c-0.53-0.53-1.58-0.96-3.36-0.96c-3.12,0-5.95,1.54-6.29,1.73l-2.16-4.13 c0.34-0.29,3.55-2.54,8.98-2.54c2.02,0,5.42,0.34,7.73,2.64c1.97,1.97,1.92,4.42,1.92,7.49v14.16L384.08,57.72L384.08,57.72z M383.6,46.53c-0.43,0-1.01,0-1.01,0c-4.18,0-7.15,0.72-7.15,3.7c0,2.45,2.06,3.12,3.65,3.12c2.64,0,4.22-1.29,4.51-1.44V46.53z"/>
<path class="st6" d="M407.65,57.72V45.28c0-3.07-0.14-4.61-1.01-5.47c-0.29-0.29-1.01-0.86-2.54-0.86c-2.06,0-3.98,1.2-4.37,1.49 v17.28h-6.48V34.1h5.52v1.78c0.38-0.29,3.31-2.45,6.67-2.45c2.5,0,4.61,0.77,6.14,2.3c2.69,2.69,2.55,6.19,2.55,9.27v12.72 C414.13,57.72,407.65,57.72,407.65,57.72z"/>
<path class="st6" d="M432.18,57.72V45.28c0-3.07-0.14-4.61-1.01-5.47c-0.29-0.29-1.01-0.86-2.54-0.86c-2.06,0-3.98,1.2-4.37,1.49 v17.28h-6.48V34.1h5.52v1.78c0.38-0.29,3.31-2.45,6.67-2.45c2.5,0,4.61,0.77,6.14,2.3c2.69,2.69,2.54,6.19,2.54,9.27v12.72 C438.65,57.72,432.18,57.72,432.18,57.72z"/>
</g>
<g>
<path class="st7" d="M138.08,96.98v-34.9h6.82v34.9H138.08z"/>
<path class="st7" d="M163.47,78.21c-0.19-0.05-1.1-0.14-1.44-0.14c-3.94,0-5.9,2.35-6.62,3.41v15.51h-6.48V73.36h5.52v2.98 c0.19-0.34,3.12-3.65,7.82-3.65c1.68,0,2.54,0.58,2.69,0.62L163.47,78.21z"/>
<path class="st7" d="M170.28,70.43c-2.06,0-3.7-1.63-3.7-3.7c0-2.06,1.63-3.7,3.7-3.7c2.06,0,3.7,1.63,3.7,3.7 S172.35,70.43,170.28,70.43z M167.07,96.98V73.36h6.48v23.62H167.07z"/>
<path class="st7" d="M185.31,97.65c-5.38,0-8.88-2.45-9.17-2.69l2.21-4.13c0.48,0.24,3.17,1.92,6.14,1.92 c2.88,0,3.65-1.15,3.65-2.3c0-1.54-1.3-1.87-5.09-3.46c-2.06-0.87-5.86-2.35-5.86-6.87c0-4.51,3.7-7.44,9.26-7.44 c5.14,0,7.83,2.11,7.83,2.11l-2.11,3.98c-0.24-0.14-2.98-1.54-5.38-1.54c-2.4,0-3.17,1.2-3.17,2.16c0,1.58,1.63,2.02,4.27,3.07 c3.22,1.3,6.77,2.74,6.77,7.54C194.67,94.72,191.07,97.65,185.31,97.65z"/>
<path class="st7" d="M212.81,96.98V84.54c0-3.07-0.14-4.61-1.01-5.47c-0.29-0.29-1.01-0.86-2.54-0.86c-2.06,0-3.98,1.2-4.37,1.49 v17.28h-6.48V62.22h6.48v12.24c0.34-0.19,2.79-1.78,5.71-1.78c2.5,0,4.61,0.77,6.14,2.3c2.64,2.64,2.54,6.19,2.54,9.27v12.72h-6.47 V96.98z"/>
<path class="st7" d="M251.53,96.98l-4.16-9.47c-1.95-4.5-3.18-4.34-5.96-4.34h-0.82v13.81h-7.14v-34.9h8.78 c4.57,0,8.58-0.16,11.71,3.04c1.59,1.62,2.77,3.92,2.77,6.96c0,4.29-2.41,8.11-7.55,8.89c3.65,0.37,5.13,4.81,6.32,7.48l3.75,8.53 C259.23,96.98,251.53,96.98,251.53,96.98z M248.39,69.14c-1.28-1.31-3.03-1.26-5.7-1.26h-2.11v9.57h2.88c2.41,0,3.6-0.37,4.67-1.46 c0.82-0.84,1.33-2.35,1.33-3.56C249.47,71.03,249.01,69.77,248.39,69.14z"/>
<path class="st7" d="M274.33,96.98V95.3c-0.43,0.29-2.93,2.21-6.67,2.21c-4.71,0-7.63-3.12-7.63-7.58c0-8.4,10.27-8.54,13.15-8.54 h0.67c0-1.44-0.05-2.11-0.72-2.79c-0.53-0.53-1.58-0.96-3.36-0.96c-3.12,0-5.95,1.54-6.29,1.73l-2.16-4.13 c0.34-0.29,3.55-2.54,8.98-2.54c2.02,0,5.42,0.34,7.73,2.64c1.97,1.97,1.92,4.42,1.92,7.49v14.16h-5.62V96.98z M273.85,85.79 c-0.43,0-1.01,0-1.01,0c-4.18,0-7.15,0.72-7.15,3.7c0,2.45,2.06,3.12,3.65,3.12c2.64,0,4.22-1.29,4.51-1.44V85.79z"/>
<path class="st7" d="M286.66,70.43c-2.06,0-3.7-1.63-3.7-3.7c0-2.06,1.63-3.7,3.7-3.7c2.06,0,3.7,1.63,3.7,3.7 C290.36,68.8,288.73,70.43,286.66,70.43z M283.45,96.98V73.36h6.48v23.62H283.45z"/>
<path class="st7" d="M294.15,96.98V62.22h6.48v34.76C300.63,96.98,294.15,96.98,294.15,96.98z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 223.2 100.8" style="enable-background:new 0 0 223.2 100.8;" xml:space="preserve">
<style type="text/css">
.st0{fill:#3DAE2B;}
.st1{fill:#C2D500;}
.st2{fill:#FFFFFF;}
</style>
<g>
<g>
<path class="st0" d="M72.79,40.72l23.75,13.72C94.4,78.25,74.39,96.9,50.03,96.9c-20.99,0-38.74-13.85-44.62-32.91l21.95-14.15 c1.67-1.08,2.68-1.74,2.68-1.74c2.13-1.36,4.85-1.5,7.11-0.36c0.84,0.43,1.71,0.86,2.54,1.27c4.14,2.06,9.11,1.76,12.96-0.79 l10.93-7.21C66.37,39.17,69.89,39.06,72.79,40.72z"/>
<path class="st1" d="M96.67,47.77L75.7,35.68c-4.81-2.79-10.7-2.61-15.33,0.45l-10.93,7.22c-2.13,1.4-4.86,1.57-7.13,0.43 c-0.83-0.4-1.69-0.84-2.52-1.26c-4.1-2.06-9.05-1.82-12.91,0.67L3.97,57.96c-0.42-2.52-0.64-5.11-0.64-7.76 c0-25.79,20.91-46.7,46.7-46.7C75,3.51,95.39,23.11,96.67,47.77z"/>
<path class="st2" d="M96.73,50.2c0,1.43-0.06,2.84-0.19,4.24L72.79,40.72c-2.89-1.66-6.42-1.56-9.2,0.29l-10.93,7.21 c-3.85,2.56-8.82,2.85-12.96,0.79c-0.83-0.42-1.7-0.84-2.54-1.27c-2.26-1.14-4.98-1-7.11,0.36c0,0-1.01,0.66-2.68,1.74L5.41,63.99 c-0.61-1.96-1.09-3.97-1.44-6.03L26.88,43.2c3.85-2.49,8.81-2.74,12.91-0.67c0.83,0.42,1.69,0.86,2.52,1.26 c2.27,1.14,5.01,0.97,7.13-0.43l10.93-7.22c4.63-3.06,10.52-3.24,15.33-0.45l20.96,12.09C96.7,48.57,96.73,49.39,96.73,50.2z"/>
</g>
<path d="M110.44,39.1c0-2.53-0.08-4.69-0.17-6.48h5.31l0.29,2.74H116c0.87-1.29,2.66-3.2,6.14-3.2c2.61,0,4.69,1.33,5.56,3.44h0.08 c0.75-1.04,1.66-1.87,2.61-2.45c1.12-0.66,2.37-1,3.86-1c3.9,0,6.85,2.74,6.85,8.8v11.95h-6.14V41.88c0-2.95-0.95-4.65-2.99-4.65 c-1.45,0-2.49,1-2.91,2.2c-0.17,0.46-0.25,1.12-0.25,1.62v11.87h-6.14V41.55c0-2.57-0.91-4.32-2.91-4.32 c-1.62,0-2.57,1.25-2.95,2.28c-0.21,0.5-0.25,1.08-0.25,1.58v11.83h-6.14V39.1z"/>
<path d="M156.77,52.92l-0.37-2.03h-0.13c-1.33,1.62-3.4,2.49-5.81,2.49c-4.11,0-6.56-2.99-6.56-6.23c0-5.27,4.73-7.8,11.91-7.76 V39.1c0-1.08-0.58-2.61-3.69-2.61c-2.07,0-4.28,0.71-5.6,1.54l-1.16-4.07c1.41-0.79,4.19-1.78,7.89-1.78 c6.77,0,8.92,3.98,8.92,8.76v7.06c0,1.95,0.08,3.82,0.29,4.94H156.77z M156.02,43.33c-3.32-0.04-5.89,0.75-5.89,3.2 c0,1.62,1.08,2.41,2.49,2.41c1.58,0,2.86-1.04,3.28-2.32c0.08-0.33,0.13-0.71,0.13-1.08V43.33z"/>
<path d="M165.13,39.31c0-2.99-0.08-4.94-0.17-6.68h5.44l0.21,3.74h0.17c1.04-2.95,3.53-4.19,5.48-4.19c0.58,0,0.87,0,1.33,0.08 v5.94c-0.46-0.08-1-0.17-1.7-0.17c-2.32,0-3.9,1.25-4.32,3.2c-0.08,0.42-0.12,0.91-0.12,1.41v10.29h-6.31V39.31z"/>
<path d="M187.08,26.98c0,1.74-1.33,3.15-3.4,3.15c-1.99,0-3.32-1.41-3.28-3.15c-0.04-1.83,1.29-3.2,3.32-3.2 C185.75,23.78,187.04,25.15,187.08,26.98z M180.56,52.92v-20.3h6.31v20.3H180.56z"/>
<path d="M190.19,39.1c0-2.53-0.08-4.69-0.17-6.48h5.48l0.29,2.78h0.12c0.83-1.29,2.91-3.24,6.27-3.24c4.15,0,7.26,2.74,7.26,8.72 v12.04h-6.31V41.67c0-2.61-0.91-4.4-3.2-4.4c-1.74,0-2.78,1.2-3.2,2.37c-0.17,0.37-0.25,1-0.25,1.58v11.7h-6.31V39.1z"/>
<path d="M116.62,57.32v5.81h4.52v4.65h-4.52v7.35c0,2.45,0.58,3.57,2.49,3.57c0.79,0,1.41-0.08,1.87-0.17l0.04,4.77 c-0.83,0.33-2.32,0.54-4.11,0.54c-2.03,0-3.74-0.71-4.73-1.74c-1.16-1.2-1.74-3.15-1.74-6.02v-8.3h-2.7v-4.65h2.7v-4.4 L116.62,57.32z"/>
<path d="M123.57,69.81c0-2.99-0.08-4.94-0.17-6.68h5.44l0.21,3.74h0.17c1.04-2.95,3.53-4.19,5.48-4.19c0.58,0,0.87,0,1.33,0.08 v5.94c-0.46-0.08-1-0.17-1.7-0.17c-2.32,0-3.9,1.25-4.32,3.2c-0.08,0.42-0.12,0.91-0.12,1.41v10.29h-6.31V69.81z"/>
<path d="M149.61,83.43l-0.37-2.03h-0.13c-1.33,1.62-3.4,2.49-5.81,2.49c-4.11,0-6.56-2.99-6.56-6.23c0-5.27,4.73-7.8,11.91-7.76 v-0.29c0-1.08-0.58-2.61-3.69-2.61c-2.07,0-4.28,0.71-5.6,1.54l-1.16-4.07c1.41-0.79,4.19-1.78,7.89-1.78 c6.77,0,8.92,3.98,8.92,8.76v7.06c0,1.95,0.08,3.82,0.29,4.94H149.61z M148.86,73.84c-3.32-0.04-5.89,0.75-5.89,3.2 c0,1.62,1.08,2.41,2.49,2.41c1.58,0,2.86-1.04,3.28-2.32c0.08-0.33,0.13-0.71,0.13-1.08V73.84z"/>
<path d="M157.98,69.61c0-2.53-0.08-4.69-0.17-6.48h5.48l0.29,2.78h0.12c0.83-1.29,2.91-3.24,6.27-3.24c4.15,0,7.26,2.74,7.26,8.72 v12.04h-6.31V72.18c0-2.61-0.91-4.4-3.2-4.4c-1.74,0-2.78,1.2-3.2,2.37c-0.17,0.37-0.25,1-0.25,1.58v11.7h-6.31V69.61z"/>
<path d="M180.66,77.91c1.16,0.71,3.57,1.54,5.44,1.54c1.91,0,2.7-0.66,2.7-1.7s-0.62-1.54-2.99-2.32c-4.19-1.41-5.81-3.69-5.77-6.1 c0-3.78,3.24-6.64,8.26-6.64c2.36,0,4.48,0.54,5.73,1.16l-1.12,4.36c-0.91-0.5-2.66-1.16-4.4-1.16c-1.54,0-2.41,0.62-2.41,1.66 c0,0.96,0.79,1.45,3.28,2.32c3.86,1.33,5.48,3.28,5.52,6.27c0,3.78-2.99,6.56-8.8,6.56c-2.66,0-5.02-0.58-6.56-1.41L180.66,77.91z"/>
<path d="M203.41,57.49c0,1.74-1.33,3.15-3.4,3.15c-1.99,0-3.32-1.41-3.28-3.15c-0.04-1.83,1.29-3.2,3.32-3.2 C202.08,54.29,203.36,55.66,203.41,57.49z M196.89,83.43v-20.3h6.31v20.3H196.89z"/>
<path d="M215.34,57.32v5.81h4.52v4.65h-4.52v7.35c0,2.45,0.58,3.57,2.49,3.57c0.79,0,1.41-0.08,1.87-0.17l0.04,4.77 c-0.83,0.33-2.32,0.54-4.11,0.54c-2.03,0-3.74-0.71-4.73-1.74c-1.16-1.2-1.74-3.15-1.74-6.02v-8.3h-2.7v-4.65h2.7v-4.4 L215.34,57.32z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 46 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="450" height="242.38084" viewBox="0 0 450 242.38083" version="1.2" id="svg109645" sodipodi:docname="Muni worm logo.svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
<metadata id="metadata109649">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" inkscape:window-height="1001" id="namedview109647" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" inkscape:zoom="0.58553404" inkscape:cx="658.79162" inkscape:cy="359.45037" inkscape:window-x="-9" inkscape:window-y="-9" inkscape:window-maximized="1" inkscape:current-layer="svg109645"/>
<defs id="defs10792"/>
<g id="g162799">
<path inkscape:connector-curvature="0" id="path102650" d="M 186.58169,175.13043 V 86.598007 c 0,0 0,-26.844754 -27.01179,-26.844754 -26.84491,0 -26.84491,26.844754 -26.84491,26.844754 v 69.262123 c 0,0 0,19.2703 -19.27625,19.2703 -19.228462,0 -19.228462,-19.2703 -19.228462,-19.2703 V 86.598007 c 0,0 0,-26.844754 -26.892545,-26.844754 -26.928272,0 -26.928272,26.844754 -26.928272,26.844754 V 213.3429 H 24.999989 V 67.369547 c 0,0 0,-42.36958 42.327744,-42.36958 42.333847,0 42.333847,42.36958 42.333847,42.36958 l 0.16689,73.669633 c 0,0 -0.16689,3.33399 3.62027,3.33399 4.03786,0 3.9125,-3.87083 3.9125,-3.87083 V 67.369547 c 0,0 0,-42.36958 42.20866,-42.36958 42.41126,0 42.3337,42.36958 42.3337,42.36958 l 0.0779,88.490583 c 0,0 -1.2465,26.97011 26.89255,26.97011 28.17478,0 26.88659,-26.97011 26.88659,-26.97011 l 0.0351,-88.490583 c 0,0 0,-42.36958 42.25628,-42.36958 42.28607,0 42.28607,42.36958 42.28607,42.36958 l 0.1252,73.132793 c 0,0 -0.1252,3.87083 3.74562,3.87083 3.82899,0 3.82899,-3.87083 3.82899,-3.87083 V 28.661921 h 15.40543 V 155.86013 c 0,0 0,19.2703 -19.23442,19.2703 -19.2703,0 -19.2703,-19.2703 -19.2703,-19.2703 V 86.598007 c 0,0 0,-26.844754 -26.88659,-26.844754 -26.85071,0 -26.85071,26.844754 -26.85071,26.844754 v 88.532423 c 0,0 0,42.25033 -42.32789,42.25033 -42.29202,0 -42.29202,-42.25033 -42.29202,-42.25033" style="clip-rule:nonzero;fill:#cc3847;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.52683175"/>
<path style="fill:#cf2645;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.52683175" d="m 394.28444,28.661968 h 30.7156 V 213.34298 h -30.7156 z m 0,0" id="path102654" inkscape:connector-curvature="0"/>
<path style="fill:#cc3847;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.52683175" d="m 71.204583,175.13051 -0.04133,-73.09114 c 0,0 0,-3.870796 -3.835,-3.870796 -3.864667,0 -3.864667,3.870796 -3.864667,3.870796 V 213.34298 H 48.105784 V 86.598104 c 0,0 0,-19.228467 19.222466,-19.228467 19.234603,0 19.234603,19.228467 19.234603,19.228467 v 69.262146 c 0,0 0,26.97006 26.886397,26.97006 26.97607,0 26.97607,-26.97006 26.97607,-26.97006 V 86.598104 c 0,0 -0.33987,-19.228467 19.14513,-19.228467 19.312,0 19.312,19.228467 19.312,19.228467 V 213.34298 h -15.3578 V 102.03937 c 0,0 0,-3.870796 -3.9542,-3.870796 -3.7456,0 -3.7456,3.870796 -3.7456,3.870796 v 73.09114 c 0,0 -0.501,42.25033 -42.3756,42.25033 -41.8744,0 -42.2442,-42.25033 -42.2442,-42.25033" id="path102656" inkscape:connector-curvature="0"/>
<path style="fill:#cc3847;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.52683175" d="M 209.63918,156.03318 V 28.661968 h 15.4056 V 140.50245 c 0,0 -0.37573,3.8708 3.829,3.8708 4.24047,0 3.829,-3.8708 3.829,-3.8708 V 28.661968 h 15.39347 V 155.86025 c 0,0 1.58653,19.27026 -19.22247,19.27026 -20.77333,0 -19.2346,-19.09733 -19.2346,-19.09733" id="path102658" inkscape:connector-curvature="0"/>
<path style="fill:#cc3847;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.52683175" d="m 302.00658,182.83031 v -80.79094 c 0,0 0,-3.870796 -3.9542,-3.870796 -3.7514,0 -3.7514,3.870796 -3.7514,3.870796 V 213.34298 H 278.90131 V 86.598104 c 0,0 -0.3698,-19.228467 19.15107,-19.228467 19.22846,0 19.22846,19.228467 19.22846,19.228467 v 69.262146 c 0,0 0,26.97006 26.9284,26.97006 26.92827,0 26.92827,-26.97006 26.92827,-26.97006 V 28.661968 h 15.39953 V 182.83031 c 0,0 0,34.55053 -42.3278,34.55053 -42.20266,0 -42.20266,-34.55053 -42.20266,-34.55053" id="path102660" inkscape:connector-curvature="0"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1 @@
<svg id="Ebene_1" data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 403.59 235.56"><defs><style>.cls-1{fill:#76b82a;}.cls-2{fill:#4b8d2b;}.cls-3{fill:#006133;}</style></defs><path class="cls-1" d="M282.82,345a82.82,82.82,0,0,1-24.19-4l2.45-13.39a78.81,78.81,0,0,0,20.88,3c7.78,0,8.93-1.73,8.93-7.06,0-4.32-.87-6.48-12.24-9.21-17.14-4.18-19.15-8.5-19.15-22,0-14.11,6.19-20.31,26.2-20.31a92.58,92.58,0,0,1,21,2.45l-1.73,14a123.24,123.24,0,0,0-19.3-2c-7.63,0-8.92,1.73-8.92,6.05,0,5.62.43,6.05,9.93,8.5,19.58,5.18,21.46,7.77,21.46,22.17C308.17,336.6,304,345,282.82,345Z" transform="translate(-258.63 -109.39)"/><path class="cls-1" d="M359.86,342.21c-3.74,1.59-10.94,2.74-15.41,2.74-12.81,0-19.29-6.05-19.29-18.58v-39H314.65v-14h10.51V256l17.57-2.45v19.87h18l-1.16,14H342.73v36.72c0,3.75,1.72,6.19,6.33,6.19a33.66,33.66,0,0,0,8.79-1.44Z" transform="translate(-258.63 -109.39)"/><path class="cls-1" d="M422.79,343.51h-14.4l-1.3-4.75A38.37,38.37,0,0,1,386.21,345c-12.81,0-18.28-8.78-18.28-20.88,0-14.25,6.19-19.73,20.44-19.73h16.85V297c0-7.78-2.16-10.51-13.39-10.51a97.7,97.7,0,0,0-19.44,2.16l-2.16-13.39a91.31,91.31,0,0,1,24-3.32c22,0,28.51,7.78,28.51,25.35ZM405.22,317h-13c-5.76,0-7.34,1.59-7.34,6.92,0,4.89,1.58,7.05,7.05,7.05a27.64,27.64,0,0,0,13.25-3.6Z" transform="translate(-258.63 -109.39)"/><path class="cls-1" d="M471.89,288.07a136.79,136.79,0,0,0-18.57,10.23v45.21H435.75V273.38h14.83l1.15,7.78c3.89-2.59,12.24-7.49,18.44-9.22Z" transform="translate(-258.63 -109.39)"/><path class="cls-1" d="M523.88,342.21c-3.75,1.59-11,2.74-15.41,2.74-12.82,0-19.3-6.05-19.3-18.58v-39H478.66v-14h10.51V256l17.57-2.45v19.87h18l-1.15,14H506.74v36.72c0,3.75,1.73,6.19,6.34,6.19a33.52,33.52,0,0,0,8.78-1.44Z" transform="translate(-258.63 -109.39)"/><text x="-258.63" y="-109.39"/><path class="cls-1" d="M530.49,247.63c8.92,7.9,18.48-2.91,18.48-2.91l8-9,57.58-65.05,7.48-8.45s9.57-10.81.65-18.71-18.49,2.91-18.49,2.91l-8,9-57.58,65.05-7.48,8.45S521.56,239.74,530.49,247.63Z" transform="translate(-258.63 -109.39)"/><path class="cls-2" d="M662.07,183.72c-1.81-11.77-17.77-9.31-17.77-9.31l-13.27,2-96,14.81-12.48,1.93s-15.95,2.46-14.13,14.23,17.77,9.32,17.77,9.32l13.27-2.05,96-14.81L647.94,198S663.89,195.49,662.07,183.72Z" transform="translate(-258.63 -109.39)"/><path class="cls-3" d="M568.66,109.42c-11.89.81-10.8,16.92-10.8,16.92l.91,13.41,6.54,97,.85,12.6s1.09,16.12,13,15.32,10.8-16.92,10.8-16.92l-.9-13.41-6.55-97-.85-12.6S580.54,108.62,568.66,109.42Z" transform="translate(-258.63 -109.39)"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,25 @@
<?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="398mm" height="176mm" viewBox="0 0 398 176" version="1.1" id="svg13968" inkscape:version="0.92.1 r15371" sodipodi:docname="Logo RGTR Luxembourg.svg">
<defs id="defs13962"/>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.35" inkscape:cx="311.22051" inkscape:cy="-192.90662" inkscape:document-units="mm" 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="1920" inkscape:window-height="1017" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1"/>
<metadata id="metadata13965">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Calque 1" inkscape:groupmode="layer" id="layer1" transform="translate(101.24257,78.206541)">
<path inkscape:connector-curvature="0" id="path1016" d="m -28.647418,23.728833 c -0.682981,0 -1.365961,-0.135472 -2.003343,-0.363793 -0.728579,-0.27425 -1.365961,-0.819444 -1.821281,-1.548023 l -44.394812,-43.802995 c -0.683972,-0.455651 -1.229167,-1.048095 -1.731407,-1.730415 -0.545194,-0.865042 -0.865703,-1.775683 -0.865703,-2.777519 0,-1.502755 0.50224,-2.823118 1.457157,-3.824856 0.954917,-1.046773 2.230342,-1.59362 3.596964,-1.59362 h 23.677312 c 2.413396,0 4.689931,-0.455651 6.78447,-1.365961 2.048941,-0.865042 3.915853,-2.140137 5.463975,-3.642661 1.548022,-1.548023 2.777519,-3.369436 3.688193,-5.464008 0.91064,-2.048941 1.36596,-4.32574 1.36596,-6.64784 0,-2.322199 -0.45532,-4.598966 -1.36596,-6.64794 -0.910641,-2.048941 -2.140138,-3.870321 -3.688193,-5.41841 -1.548023,-1.548022 -3.414968,-2.777519 -5.463975,-3.688259 -2.094539,-0.91031 -4.371206,-1.36596 -6.78447,-1.36596 h -31.281292 c -0.330421,0 -4.872059,0.09252 -5.190915,0.22799 -0.330421,0.135473 -0.637713,0.317204 -0.911962,0.592115 -0.231295,0.274249 -0.409722,0.546847 -0.591454,0.865042 -0.132168,0.317204 -0.231295,0.592115 -0.231295,0.865042 v 87.332765 h -10.791219 v -95.210135 c 0,-1.411559 0.545192,-2.686323 1.685145,-3.779158 1.093694,-1.092372 2.369119,-1.639219 3.779026,-1.639219 h 43.529968 c 3.870321,0 7.512982,0.728579 10.882451,2.140138 3.369469,1.457157 6.329149,3.506164 8.833477,6.010458 2.458663,2.504261 4.462237,5.50954 5.96486,8.878976 1.411558,3.369435 2.140137,7.012096 2.140137,10.836951 0,3.824756 -0.728579,7.512982 -2.140137,10.928016 -1.502755,3.369403 -3.506065,6.374582 -5.96486,8.878877 -2.504262,2.504261 -5.464008,4.5534 -8.787945,6.010458 -3.415001,1.502755 -7.057662,2.231333 -10.927983,2.231333 h -9.744084 l 35.789128,35.606934 c 0.91064,0.864712 1.411559,2.094539 1.411559,3.688259 0,1.502755 -0.500919,2.823117 -1.548023,3.870288 -0.956239,1.001176 -2.276601,1.548023 -3.824789,1.548023" style="fill:#3f3f3f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:11.65652084"/>
<path inkscape:connector-curvature="0" id="path1018" d="m 225.51936,23.728833 c -0.68298,0 -1.36596,-0.135472 -2.00334,-0.363793 -0.72858,-0.27425 -1.36596,-0.819444 -1.82128,-1.548023 L 177.2543,-21.985978 c -0.63739,-0.455651 -1.2295,-1.048095 -1.73009,-1.730415 -0.54618,-0.865042 -0.81977,-1.775683 -0.81977,-2.777519 0,-1.502755 0.50092,-2.823118 1.45715,-3.824856 0.95624,-1.046773 2.23101,-1.59362 3.59713,-1.59362 H 203.436 c 2.4134,0 4.68993,-0.455651 6.73891,-1.365961 2.09454,-0.865042 3.91588,-2.140137 5.46401,-3.642661 1.59362,-1.548023 2.82311,-3.369436 3.73372,-5.464008 0.91064,-2.048941 1.32036,-4.32574 1.32036,-6.64784 0,-2.322199 -0.40972,-4.598966 -1.32036,-6.64794 -0.91064,-2.048941 -2.14014,-3.870321 -3.73372,-5.41841 -1.54803,-1.548022 -3.36944,-2.777519 -5.46398,-3.688259 -2.04894,-0.91031 -4.32567,-1.36596 -6.73894,-1.36596 h -31.28136 c -0.3172,0 -4.87205,0.09252 -5.19078,0.22799 -0.3172,0.135473 -0.63738,0.317204 -0.86504,0.592115 -0.27425,0.274249 -0.45532,0.546847 -0.63738,0.865042 -0.13548,0.317204 -0.18173,0.592115 -0.18173,0.865042 v 87.332765 h -10.88259 v -95.210135 c 0,-1.411559 0.59212,-2.686323 1.68482,-3.779158 1.1383,-1.092372 2.3678,-1.639219 3.82479,-1.639219 h 43.52993 c 3.82479,0 7.51299,0.728579 10.88245,2.140138 3.36947,1.457157 6.32915,3.506164 8.78795,6.010458 2.50426,2.504261 4.50777,5.50954 5.91933,8.878976 1.50242,3.369435 2.231,7.012096 2.231,10.836951 0,3.824756 -0.72858,7.512982 -2.231,10.928016 -1.41156,3.369403 -3.415,6.374582 -5.91933,8.878877 -2.45866,2.504261 -5.41848,4.5534 -8.74241,6.010458 -3.415,1.502755 -7.1032,2.231333 -10.92799,2.231333 h -9.74411 l 35.74363,35.606934 c 0.95623,0.864712 1.45715,2.094539 1.45715,3.688259 0,1.502755 -0.54618,2.823117 -1.50242,3.870288 -1.00184,1.001176 -2.3678,1.548023 -3.87036,1.548023" style="fill:#3f3f3f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:11.65652084"/>
<path inkscape:connector-curvature="0" id="path1020" d="M 109.81929,23.683367 H 98.84578 v -87.150801 c 0,-0.637713 -0.227991,-1.229167 -0.774177,-1.775683 -0.409722,-0.546517 -0.91064,-0.773846 -1.502755,-0.773846 H 73.52905 c -1.593621,0 -2.868716,-0.546847 -3.961418,-1.593621 -1.047104,-1.047765 -1.548023,-2.322199 -1.548023,-3.915886 0,-1.548023 0.500919,-2.823118 1.593621,-3.870321 1.047104,-1.047765 2.322199,-1.548353 3.915919,-1.548353 h 61.970801 c 1.54802,0 2.91398,0.592114 3.96138,1.730415 1.04711,1.047765 1.59362,2.322199 1.59362,3.688226 0,1.548022 -0.54618,2.868385 -1.63922,3.915886 -1.0471,1.046774 -2.41339,1.593621 -3.91585,1.593621 h -23.13086 c -0.40972,0 -1.00184,0.09252 -1.73009,0.819444 -0.59211,0.546847 -0.81977,1.092372 -0.81977,1.730084 z m 0,0" style="fill:#3f3f3f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:11.65652084"/>
<path inkscape:connector-curvature="0" id="path1022" d="m 65.105626,-20.711643 v -10.836853 l -30.461782,-0.04626 c -0.728578,0 -1.411559,0.135473 -2.140137,0.363794 -0.728579,0.227991 -1.411559,0.637713 -1.958075,1.183899 -1.092703,1.138961 -1.639219,2.413395 -1.639219,3.77929 0,1.36596 0.546186,2.595457 1.548022,3.642661 0.546186,0.773846 1.229497,1.320362 2.048941,1.548022 0.728579,0.27425 1.411559,0.363794 2.140138,0.363794 H 54.131781 V 9.7029876 c -1.047104,0.4556514 -2.048941,0.9103104 -3.096376,1.3203634 -4.280142,1.59362 -8.879009,2.413395 -13.614471,2.413395 -5.555039,0 -10.836919,-1.046774 -15.708977,-3.141643 C 16.88543,8.2461611 12.605321,5.4229444 8.9626608,1.8713145 5.4110639,-1.6801832 2.4969153,-5.9148926 0.44794126,-10.741386 c -2.04894096,-4.780928 -3.09637576,-9.97181 -3.09637576,-15.435785 0,-5.41841 1.0471044,-10.609192 3.09637576,-15.39022 2.09453914,-4.872091 4.96312264,-9.106669 8.51471954,-12.658299 3.6426602,-3.597062 7.9228022,-6.511211 12.7493292,-8.60575 4.872058,-2.094539 10.153938,-3.141643 15.708977,-3.141643 3.278438,0 6.465745,0.363793 9.561989,1.183898 v -0.04626 c 0.546186,0.181732 1.138301,0.317204 1.730415,0.317204 3.050778,0 5.555072,-2.458663 5.555072,-5.463974 0,-2.458994 -1.639219,-4.507803 -3.824789,-5.190783 0,0 -0.04626,0 -0.04626,0 -0.274249,-0.135473 -0.546186,-0.181732 -0.865042,-0.227991 -3.915754,-0.955908 -7.968203,-1.502755 -12.111716,-1.502755 -4.735496,0 -9.288797,0.592115 -13.614472,1.821281 -4.325674,1.229497 -8.423655,2.959582 -12.15738,5.099719 -3.7337242,2.185735 -7.2398221,4.826493 -10.3360657,7.922836 -3.1419739,3.096045 -5.782732,6.556777 -8.0138672,10.290468 -2.1401373,3.68826 -3.9158541,7.786241 -5.0997191,12.066383 -1.183899,4.325608 -1.821281,8.879009 -1.821281,13.523308 0,6.921066 1.320362,13.52344 4.0069504,19.6249289 C -6.9741418,-0.45346202 -3.331613,4.96508 1.2672533,9.4728826 5.8661198,14.071749 11.330094,17.71441 17.522614,20.3553 c 6.147021,2.641056 12.840427,3.961352 19.898089,3.961352 6.921032,0 13.523374,-1.320362 19.715894,-3.961352 2.777519,-1.229496 5.418476,-2.640725 7.968335,-4.280142 V 2.1875605 h -0.04626 V -20.71574 Z m 0,0" style="fill:#3f3f3f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:11.65652084"/>
<path inkscape:connector-curvature="0" id="path1024" d="M 80.632475,97.037504 H 148.75026 V 40.621676 H 80.632475 Z m 0,0" style="fill:#3f3f3f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:11.65652084"/>
<path inkscape:connector-curvature="0" id="path1026" d="m 154.3964,97.037504 h 68.11778 V 40.621676 H 154.3964 Z m 0,0" style="fill:#3f3f3f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:11.65652084"/>
<path inkscape:connector-curvature="0" id="path1028" d="M 6.8685512,40.621676 V 63.20622 L 40.927428,97.037504 H 74.986339 V 40.621676 Z m 0,0" style="fill:#3f3f3f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:11.65652084"/>
<path inkscape:connector-curvature="0" id="path1030" d="M 296.27811,97.037504 V 74.498459 L 262.21923,40.621676 h -34.05891 v 56.415828 z m 0,0" style="fill:#3f3f3f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:11.65652084"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.9 KiB

View File

@ -0,0 +1,19 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 2880.1 1600">
<style type="text/css">
.st0{fill:#00529B;}
.st1{fill:#FFFFFF;}
.st2{fill:#E2383F;}
</style>
<g>
<path class="st0" d="M2880,1026c0,191.3,0,382.6,0,574c-960,0-1920,0-2880,0c0-191.4,0-382.7,0-574c4.7-0.1,9.3-0.2,14-0.2 c950.7,0,1901.3,0,2852,0C2870.7,1025.9,2875.4,1026,2880,1026z"></path>
<path class="st2" d="M0,630c4.3-0.2,8.6-0.6,13-0.6c951.4,0,1902.7,0,2854.1,0c4.3,0,8.6,0.4,13,0.6c0,107.3,0,214.7,0,322 c-4-0.1-8-0.4-12-0.4c-952,0-1904,0-2856.1,0c-4,0-8,0.3-12,0.4C0,844.7,0,737.4,0,630z"></path>
<path d="M880.4,591.9c-30.9,0-60.1,0-90,0c0-116.3,0-232.1,0-348c7.1-2,77.7-2.4,89.2-0.2c0,12.9,0,26.1,0,39.2 c0.6,0.3,1.2,0.6,1.8,0.8c2.6-2.7,5.3-5.3,7.9-8c15.2-15.9,32.2-29.1,54.1-34.3c26.2-6.3,52.2-5.3,77.6,4.2 c19.7,7.3,35.3,19.9,46.5,37.7c0.7,1.1,1.4,2.2,2.2,3.3c0.2,0.3,0.5,0.4,1.4,1.1c1.4-1.4,3.1-2.8,4.4-4.4 c30.3-38.4,70.7-49.9,117.5-44.6c6.3,0.7,12.5,2,18.6,3.6c46.9,12.5,69.1,47.9,72.4,91c0.5,6,0.4,12,0.4,18c0,76.3,0,152.7,0,229 c0,3.6,0,7.2,0,11.4c-30.4,0-59.8,0-90.7,0c0-4,0-7.9,0-11.7c0-71,0-142-0.1-213c0-5.6-0.3-11.3-1.2-16.9 c-2.8-16.7-12.6-27.6-28.7-32.6c-16.6-5.2-33-4-48.7,3.5c-18.4,8.8-27.5,24.7-30.8,44c-1.4,8.2-1.8,16.6-1.8,24.9 c-0.1,63.3-0.1,126.7-0.1,190c0,3.6,0,7.3,0,10.7c-7.9,2.2-66.9,2.9-90.3,1.2c-0.1-3.7-0.3-7.5-0.3-11.3c0-71.3,0-142.7-0.1-214 c0-6-0.4-12-1.5-17.9c-2.7-14.6-11.5-24.6-25.1-30c-37.9-15.1-77.2,7.6-83,48c-1.1,7.6-1.6,15.3-1.6,22.9 c-0.1,63.3-0.1,126.7-0.1,190C880.4,583.3,880.4,587.3,880.4,591.9z"></path>
<path d="M503.7,357.4c-29.3,0-57.6,0-87.1,0c0.5-4.6,0.4-8.8,1.4-12.8c2.6-11.3,4.5-23,8.6-33.8c13.5-35.9,40.8-56.6,76.9-66.6 c26.6-7.4,53.8-8.8,81.2-7.1c18,1.1,35.9,3,53,9c9.4,3.3,18.7,7.1,27.3,12.1c25,14.5,38.8,36.9,42.9,65.2 c1.3,8.5,1.7,17.3,1.7,25.9c0.1,61.6,0.4,123.3-0.1,184.9c-0.1,17.4,3.8,32.3,17.2,43.9c4.3,3.7,3.7,8.1,3.1,13.4 c-2.1,0.3-4.2,0.9-6.4,0.9c-28.3,0.1-56.6-0.1-85,0.2c-5.9,0.1-9.7-2.1-11.7-7.2c-1.9-4.9-3.4-10-4.7-15.1 c-0.8-3.1-0.7-6.4-1.2-11.6c-3.9,3.6-6.5,5.9-9,8.3c-20.6,18.7-43.8,32.5-71.4,38c-29.9,5.9-58.3,1.7-84.9-13.4 c-23.4-13.2-37.6-33.3-43.5-59.4c-4.8-21.2-4.5-42.4,0.6-63.4c7.6-31.1,27.3-51.9,56.2-64.6c16.9-7.4,34.9-11,52.9-14.1 c20-3.5,40.1-6.5,60-10.5c8-1.6,16.1-4.4,23.4-8.1c11.5-5.9,15.8-16.5,15.3-29.2c-0.5-12.1-6-21.2-17-26.1 c-6.3-2.8-13.3-5.4-20-5.6c-14.2-0.4-28.6-0.2-42.8,1.5c-18.5,2.3-29.6,14-34,32C505.5,348.3,504.7,352.5,503.7,357.4z M620.3,429.3c-14.8,3.4-28.7,6.8-42.5,9.8c-8.4,1.8-17.1,2.7-25.4,5c-10.8,3-22,5.8-32,10.7c-17.6,8.6-22.2,24.6-20.3,42.9 c1.7,17,11.4,28,27.3,33.5c38.5,13.3,77.8-7.3,89-46.3C621.5,466.6,620.2,448.1,620.3,429.3z"></path>
<path d="M1998.3,560.1c-4.1,3.7-8,7.3-12,10.7c-23.6,20.3-50.3,33.7-81.7,36.2c-32.7,2.6-62-6-87.1-27.6 c-14.7-12.6-22.9-29.3-26.9-47.9c-4.4-20.1-4.2-40.4,0.3-60.5c7.2-32,26.9-53.6,56.5-66.6c17.2-7.6,35.5-11.2,53.9-14.3 c19.7-3.4,39.4-6.4,59-10.4c8.4-1.7,16.9-4.4,24.3-8.5c20.7-11.8,20.1-43.2-1-54.3c-6.3-3.3-13.8-5.8-20.9-6.2 c-13.6-0.7-27.3-0.4-40.8,1c-20.8,2.2-32.8,14.7-36.9,35c-0.7,3.2-1.3,6.5-2.1,10.3c-28.6,0-57.1,0-85.6,0 c-0.4-0.5-1.1-1.1-1.1-1.5c2.4-42.9,18.5-78,57.5-99.8c16.5-9.2,34.5-14,53.1-16.5c34.7-4.6,69.1-3.8,103.1,4.9 c9.3,2.4,18.5,5.9,27,10.1c31.7,15.7,47.9,42.1,51,76.9c0.6,6.3,0.4,12.6,0.4,19c0,61.3,0.2,122.6-0.1,183.9 c-0.1,17.2,4,32.3,17.3,43.9c4.1,3.6,4.4,7.9,3.3,13.6c-2.2,0.3-4.7,0.9-7.2,0.9c-28,0.1-56-0.2-84,0.2c-6.4,0.1-10.4-2.4-12.3-7.8 C2002.6,577.1,2000.8,569,1998.3,560.1z M1999.5,428.8c-10.5,2.7-20,5.5-29.7,7.6c-12.7,2.8-25.6,4.5-38.2,7.7 c-10.9,2.7-22,5.8-32.1,10.6c-16.8,8-22.1,23.2-21,40.8c1.2,17.9,11.4,30.5,28.3,36c39.8,13,79.1-8.8,89.1-49.4 C2000.3,464.8,1999.9,447.2,1999.5,428.8z"></path>
<path d="M2536.9,491.8c29.6,0,58.5,0,87.9,0c1.1,3.6,2.2,7,3.1,10.5c3.5,13.3,11.7,22.4,24.5,26.9c7.2,2.6,14.7,4.7,22.2,5.7 c19.6,2.7,39.3,2.9,58.4-3c7.5-2.3,14.9-5.9,21.2-10.6c12.6-9.5,14.1-31.5-4.4-40.6c-7.1-3.5-14.7-6.2-22.3-8.6 c-36.2-11.5-72.5-22.6-108.6-34.1c-9.5-3-18.8-6.7-27.9-10.8c-23.5-10.6-36.6-29.4-40.7-54.4c-8.1-48.7,12-98.5,66.2-121.3 c15.8-6.6,32.2-10.7,49.2-12.4c33.1-3.2,65.9-1.6,97.8,9.1c19.2,6.4,36.6,16.1,50.8,30.7c18.7,19.2,28.2,42.5,29.9,69.1 c0.1,2.2-0.2,4.5-0.4,7.3c-28.6,0-56.8,0-86.1,0c-0.5-2.5-1.2-5.3-1.6-8.2c-2.2-14.2-9.5-25.2-22.7-30.8 c-23.9-10.1-48.6-11.2-73.1-2.1c-14,5.2-20.7,15.2-20.7,27.6c0,8.2,3.3,14.4,10.6,17.8c7.2,3.3,14.7,6.4,22.3,8.6 c36.4,10.7,73,20.9,109.3,31.8c10.5,3.1,20.9,7.1,30.5,12.2c25.1,13.5,38.4,35.3,41.4,63.4c5.5,53.1-22.7,99-72.4,118.7 c-19.4,7.7-39.7,11.2-60.4,12.4c-34.8,2-69.3,0-102.8-10.6c-8.2-2.6-16.3-5.9-24-9.8c-36.9-18.9-54.9-50-57.8-90.6 C2536.4,494.8,2536.7,493.8,2536.9,491.8z"></path>
<path d="M49.8,491.8c30.1,0,59,0,88.1,0c1.3,4.2,2.5,8,3.5,11.8c3.4,12.1,11,20.6,22.6,24.9c7.8,2.8,15.9,5.3,24,6.4 c19.6,2.7,39.3,2.7,58.4-3.1c6.9-2.1,13.6-5.5,19.6-9.5c13.4-9.1,15.7-32.8-3.6-41.9c-6.9-3.2-14.1-5.9-21.4-8.2 c-36.2-11.5-72.5-22.6-108.6-34.1c-8.6-2.7-16.9-6-25.2-9.5c-28.9-12.1-42.9-35-45.1-65.3c-3.9-55.4,23.8-96.9,76.2-115.4 c30.8-10.9,62.6-12,94.8-9c18.7,1.7,36.8,5.8,54.1,13.2c35.6,15.3,59.6,40.8,67.8,79.4c1.2,5.5,1.7,11.2,2.4,16.8 c0.2,1.9,0,4,0,5.8c-7.7,2-76.8,2.3-86.7,0.5c-0.3-0.6-0.6-1.2-0.7-1.8c-4.3-25.6-14.6-36.9-39.8-42c-16.8-3.4-33.7-3.9-50.5,0.9 c-7.5,2.2-14.4,5.4-19.8,11.1c-12.5,13.1-9.5,31.1,6.9,38.6c7.5,3.4,15.6,5.9,23.5,8.3c34.8,10.2,69.8,19.8,104.5,30.3 c11.4,3.5,22.8,7.8,33,13.8c31.8,18.8,42.2,48.9,39,83.8c-4.9,53.9-38.7,91-94.6,103.5c-47.3,10.6-94.8,9-141.2-5.2 c-12.6-3.8-24.9-9.8-36-16.9c-29.3-18.9-43.1-47.1-45.4-81.4C49.7,496.1,49.8,494.5,49.8,491.8z"></path>
<path d="M2257.7,591.7c-30.8,0-60.6,0-90.8,0c0-116.4,0-232.2,0-348.7c30,0,59.5,0,90.5,0c0.8,15.4,0,31.1,0.5,49.1 c3.6-4.5,5.7-6.9,7.6-9.4c22.7-29.3,52.8-43.9,89.7-44.8c14-0.3,27.9,0.2,41.7,3.4c43.9,10.3,69.8,38.2,78.9,81.8 c2.4,11.7,3.6,23.8,3.7,35.7c0.3,74.6,0.2,149.3,0.1,223.9c0,2.9-0.3,5.8-0.5,9.2c-30.1,0-59.7,0-90.5,0c-0.1-3.9-0.3-7.8-0.3-11.7 c0-66.3,0.1-132.6-0.1-198.9c0-8.9-0.6-18.1-2.4-26.8c-4.6-22.2-19.3-35.1-41.6-38.8c-15.5-2.5-30.7-1.2-45.2,4.5 c-25.5,10-38.8,29.3-41.1,56.3c-0.4,5-0.3,10-0.3,15c0,63,0,126,0,188.9C2257.7,584,2257.7,587.6,2257.7,591.7z"></path>
<path d="M1382.1,201.8c-48.5,0-95.4,0-143.7,0c-0.4-27.2-0.2-53.7-0.1-80.8c126.2,0,251.6,0,377.5,0c0,26.6,0,52.8,0,80.3 c-45.4,0.9-90.9-0.2-137.3,0.6c0,130.2,0,259.6,0,389.7c-32.5,0-63.9,0-96.4,0C1382.1,462.3,1382.1,332.9,1382.1,201.8z"></path>
<path d="M1652.4,592c-30.8,0-60.1,0-90,0c0-116.4,0-232.4,0-349c29.8,0,59.2,0,89.6,0c0,21.5,0,42.6,0,63.8 c0.6,0.2,1.2,0.4,1.8,0.6c1.5-2.7,3.1-5.4,4.5-8.1c9.6-18.2,22.1-34,39.4-45.6c19.2-12.9,41.8-18.3,62.1-14.5c0,30,0,60,0,89.9 c-11.9-0.4-23.2-1.1-34.4-1c-6.9,0.1-14,1-20.8,2.5c-28.6,6.4-46.6,26.3-50.6,56.1c-1.2,8.9-1.7,17.9-1.8,26.9 c-0.2,55.6-0.1,111.2-0.1,166.9C1652.4,583.9,1652.4,587.5,1652.4,592z"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 153 137.5" enable-background="new 0 0 153 137.5" xml:space="preserve">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="76.524" y1="-1.311491e-09" x2="76.524" y2="137.538">
<stop offset="0" style="stop-color:#EF4357"/>
<stop offset="0.4807" style="stop-color:#BA2C3B"/>
<stop offset="0.9835" style="stop-color:#921A24"/>
<stop offset="1" style="stop-color:#921A24"/>
</linearGradient>
<path fill="url(#SVGID_1_)" d="M47.3,0c-6.8,0-12.1,3-15.5,9L2.5,59.8c-0.4,0.8-0.8,1.5-1.1,2.2c-0.9,2.1-1.4,4.1-1.4,6.2v1.1 c0.1,2.8,0.9,5.6,2.5,8.4l29.2,50.8c3.3,5.7,8.2,8.7,14.5,9h60.3c6.4-0.3,11.2-3.3,14.5-9l29.3-50.8c1.7-3,2.6-5.9,2.6-8.9 c0-2.2-0.5-4.5-1.4-6.8c-0.3-0.7-0.7-1.5-1.1-2.2L121.2,9c-3.4-6-8.7-9-15.5-9H47.3z"/>
<path fill="#FFFFFF" d="M61.5,47.5c0-8.1,11.5-8.5,17.2-8.5c10.6,0,23.2,1.6,30.6,2.2V27.7c-7.9-0.9-20.4-2.4-29.8-2.4 c-14.1,0-40.8,3.1-40.8,25.9c0,34,51,16.8,51,35.6c0,10.4-15.9,10.4-22.9,10.4c-10.6,0-20.6-1.8-29.5-3.1v14.4 c10.7,1.5,23.2,3.1,35.3,3.1c19.8,0,41.2-6.6,41.2-27.6C113.8,48.8,61.5,65.4,61.5,47.5"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -0,0 +1,107 @@
<template>
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@5.x/css/materialdesignicons.min.css" rel="stylesheet">
<div class="search" :class="getDisplayClass()">
<dateSelect v-model="date" :locale="$i18n.locale"></dateSelect>
<timeSelect v-model="time"></timeSelect>
<locationSelect :label="$t('search.fields.from')" icon="mdi mdi-ray-start-arrow" :client="client" :selectedService="selectedService" v-model="fromId"></locationSelect>
<v-btn @click="searchConnection()">{{$t("search.buttons.searchConnection")}}</v-btn>
</div>
<div>
history
</div>
<div>
current
</div>
</template>
<script>
import axios from 'axios';
import locationSelect from './search/locationSelect.vue';
import timeSelect from './search/timeSelect.vue';
import dateSelect from './search/dateSelect.vue';
import services from '@/lib/services.js'
const client = axios.create({
baseURL: process.env.VUE_APP_BASE_URL
});
export default {
name: 'SearchBahn',
props: {
},
components: {
locationSelect,
timeSelect,
dateSelect
},
data() {
return {
fromId : "",
toId : "",
connections: [],
showRouting: false,
time: new Date().toLocaleTimeString("de", {hour: '2-digit', minute:'2-digit'}),
date: new Date(),
services: services,
selectedService: services[0].id,
isMobile: this.$route.query.m,
client:client,
}
},
methods: {
getDisplayClass(){
return this.isMobile ? "displaytall" : "displaywide";
},
searchConnection() {
if (this.fromId && this.toId){
client.get("/searchConnection", {params: {from: this.fromId, to:this.toId, service:this.selectedService, date:this.getSelectedDate()}}).then(res => {this.connections = res.data;console.log(this.connections)});
this.showRouting = true;
}
},
getSelectedDate(){
let timeArray = this.time.split(":");
if (timeArray.length <= 1){
return new Date(this.date.getFullYear(), this.date.getMonth(), this.date.getDate())
}
return new Date(this.date.getFullYear(), this.date.getMonth(), this.date.getDate(), timeArray[0], timeArray[1])
},
},
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
ul {
list-style-type: none;
padding: 0;
}
.displaywide {
display: inline-flex;
width: 95%;
}
.displaytall {
display: block;
}
.search > * {
padding: 10px;
}
div {
font-family:"Raveo-display-medium";
}
.walking > div {
font-size: 12px;
}
.inputTextField{
flex: 1;
margin-left: auto;
margin-right: auto;
}
@font-face {
font-family: "Raveo-display-bold";
src: url("../assets/Raveo Display Bold.woff2") format("opentype");
}
@font-face {
font-family: "Raveo-display-medium";
src: url("../assets/Raveo Display Medium.woff2") format("opentype");
}
</style>

View File

@ -1,23 +1,34 @@
<template>
<div class="results">
<li class="journey" v-for="connection in this.connections" :key="connections.indexOf(connection)">
<div class="results" :class="getDisplayClass()">
<div class="journey" v-for="connection in this.connections" :key="connections.indexOf(connection)"><div>
<h2>{{ toTime(connection.legs[0].departure) }} - {{ toTime(connection.legs[connection.legs.length -1].arrival) }}</h2>
<div class="leg" v-for="leg in connection.legs" :key="connection.legs.indexOf(leg)" :class="leg.walking ? 'walking' : null" :style="{backgroundColor:getTimeColor(leg.arrival), background:getGradient(leg.departure, leg.arrival)}" >
<div class="linename" >
<div class="linenameinner" :style="{backgroundColor:getLineColors(leg.line)[1], color:getLineColors(leg.line)[0]}">{{ leg.line?.name }}</div>
<div class="linenameinner" :style="{backgroundColor:getLineColors(leg.line)[1], color:getLineColors(leg.line)[0]}">{{ leg.direction }}</div>
<div class="linenameinner" :style="{backgroundColor:getLineColors(leg)[1], color:getLineColors(leg)[0]}">{{ getRouteNumber(leg) }}</div>
<div class="linenameinner" v-if="isLarge" :style="{backgroundColor:getLineColors(leg)[1], color:getLineColors(leg)[0]}">{{ leg.direction }}</div>
</div>
<div class="lineinfo">
<div class="station" v-if="leg.departurePlatform">{{ leg.origin.name }}<br/>{{ toTime(leg.departure) }}<br/> Gleis {{ leg.departurePlatform }}</div>
<div class="line">
<div class="station" >{{ leg.origin.name }}<br/>{{ timeWithDelay(leg.departure, leg.departureDelay) }}<p v-if="leg.departurePlatform"> Gleis {{ leg.departurePlatform }} </p></div>
<div class="line" v-if="isLarge">
<p class="zugnummer">{{ leg.line?.fahrtNr }}</p>
<p class="operator" v-if="!getOperatorLogo(leg.line?.operator)">{{ leg.line?.operator?.name }}</p>
<img class="operator-logo" :src="getOperatorLogo(leg.line?.operator)" v-if="getOperatorLogo(leg.line?.operator)">
<img class="operator-logo" :src="getOperatorLogo(leg.line?.operator)" v-if="getOperatorLogo(leg.line?.operator)" :title="leg.line?.operator?.name">
</div>
<div class="station">{{ leg.destination.name }}<br/>{{ timeWithDelay(leg.arrival, leg.arrivalDelay) }} <p v-if="leg.arrivalPlatform">Gleis {{ leg.arrivalPlatform }}</p></div>
</div>
<div class="displaywide" v-if="isLarge">
<div v-for="remark in leg.remarks" :key="leg.remarks.indexOf(remark)">
<img class="remark-icon" :src="getIconForRemark(remark)" v-if="getIconForRemark(remark)" :title="$t('routing.remarks.'+remark.code)">
</div>
</div>
<div v-if="isLarge">
<div v-for="remark in leg.remarks" :key="leg.remarks.indexOf(remark)">
<p v-if="!getIconForRemark(remark)">{{remark.text}}</p>
</div>
<div class="station" v-if="leg.arrivalPlatform">{{ leg.destination.name }}<br/>{{ toTime(leg.arrival) }}<br/> Gleis {{ leg.arrivalPlatform }}</div>
</div>
<hr/>
</div>
</li>
</div></div>
</div>
</template>
@ -25,11 +36,13 @@
import timefunctions from '@/lib/time.js'
import routefunctions from '@/lib/routes.js'
import operatorfunctions from '@/lib/operators.js'
import remarkfunctions from '@/lib/remarks.js'
export default {
name: 'RoutingBahn',
props: {
connections: Array
connections: Array,
isMobile: Boolean,
},
components: {
},
@ -37,12 +50,23 @@
return {
from: {name:"", id:null},
to: {name:"", id:null},
isLarge: true,
}
},
methods: {
getDisplayClass(){
return this.isMobile ? "displaytall" : "displaywide";
},
toDate(string){
return new Date(string).toLocaleDateString("de-DE");
},
timeWithDelay(actual, delay){
let time = this.toTime(actual);
if (delay > 30){
return time + " +" + Math.ceil(delay/60.0);
}
return time;
},
toTime(string){
return new Date(string).toLocaleTimeString("de-DE", {timeStyle: 'short'});
},
@ -55,54 +79,58 @@
getLineColors(line){
return routefunctions.getLineColors(line)
},
getRouteNumber(leg){
return routefunctions.getRouteNumber(leg)
},
getOperatorLogo(line){
return operatorfunctions.getOperatorLogo(line)
},
getIconForRemark(remark){
return remarkfunctions.getIconForRemark(remark)
},
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h3 {
margin: 40px 0 0;
.displaywide {
display: inline-flex;
overflow-x: auto;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
.displaytall {
display: block;
}
.journey {
margin-left: auto;
margin-right: auto;
flex: 1;
min-width: 500px;
}
.journey > div{
margin: 40px;
width: 450px;
}
.station {
margin: 4px;
display: inline-block;
width:150px;
width:130px;
vertical-align: text-top;
}
.line {
margin: 4px;
display: inline-block;
width:100px;
width:120px;
vertical-align: text-top;
align-content: center;
}
.linename {
width:100px;
font-family:"Raveo-display-bold";
align-content: center;
display:inline-flex;
width:max-content;
}
.linenameinner {
font-family:"Raveo-display-bold";
padding-left: 10px;
padding-right: 10px;
margin: 15px;
@ -110,13 +138,12 @@
.operator {
font-size: 10px;
margin:10px;
}
.operator-logo {
margin:10px;
max-width:100px;
max-height:20px;
}
.results {
display: inline-flex;
max-height:40px;
}
div {
font-family:"Raveo-display-medium";

View File

@ -1,226 +1,75 @@
<template>
<div class="search">
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@5.x/css/materialdesignicons.min.css" rel="stylesheet">
<div class="search" :class="getDisplayClass()">
<v-switch label="Mobile" v-model="isMobile"></v-switch>
<v-select
v-model="selectedService"
prepend-icon="fa-regular fa-calendar"
prepend-icon="mdi mdi-dots-triangle"
:items="services"
item-title="name"
item-value="id"
density="compact"
label="Service"
:label="$t('search.fields.service')"
class="inputTextField"
></v-select>
<v-text-field
v-model="date.value"
:active="date.menu"
label="date"
prepend-icon="fa-regular fa-calendar"
readonly
class="inputTextField"
>
<v-menu
v-model="date.menu"
:close-on-content-click="false"
activator="parent"
transition="scale-transition"
>
<v-date-picker
color="green-lighten-1"
format="24hr"
v-if="date.menu"
v-model="date.value"
full-width
></v-date-picker>
</v-menu>
</v-text-field>
<v-text-field
v-model="time.value"
:active="time.menu"
label="time"
prepend-icon="fa-regular fa-clock"
readonly
class="inputTextField"
>
<v-menu
v-model="time.menu"
:close-on-content-click="false"
activator="parent"
transition="scale-transition"
>
<v-time-picker
color="green-lighten-1"
format="24hr"
v-if="time.menu"
v-model="time.value"
full-width
></v-time-picker>
</v-menu>
</v-text-field>
<v-text-field
prepend-icon="fa-regular fa-circle-play"
:active="from.menu"
label="from"
type="text"
v-model="fromName"
class="inputTextField"
@change="loadChoicesFrom()"
>
<v-menu
v-model="from.menu"
:close-on-content-click="false"
activator="parent"
transition="scale-transition"
>
<div v-if="from.menu">
<div v-for="choice in from.choices" :key="from.choices.indexOf(choice)" @click="chooseFrom(choice)">
{{ choice.name }}
</div>
</div>
</v-menu>
</v-text-field>
<v-text-field
prepend-icon="fa-solid fa-bullseye"
:active="to.menu"
label="to"
type="text"
v-model="toName"
class="inputTextField"
>
<v-menu
v-model="to.menu"
:close-on-content-click="false"
activator="parent"
transition="scale-transition"
>
<div v-if="to.menu">
<div v-for="choice in to.choices" :key="to.choices.indexOf(choice)" @click="chooseTo(choice)">
{{ choice.name }}
</div>
</div>
</v-menu>
</v-text-field>
<v-btn @click="searchConnection()">find connection</v-btn>
<dateSelect v-model="date" :locale="$i18n.locale"></dateSelect>
<timeSelect v-model="time"></timeSelect>
<locationSelect :label="$t('search.fields.from')" icon="mdi mdi-ray-start-arrow" :client="client" :selectedService="selectedService" v-model="fromLocation"></locationSelect>
<locationSelect :label="$t('search.fields.to')" icon="mdi mdi-bullseye" :client="client" :selectedService="selectedService" v-model="toLocation"></locationSelect>
<v-btn @click="searchConnection()">{{$t("search.buttons.searchConnection")}}</v-btn>
</div>
<routing v-if="showRouting" :connections="connections"></routing>
<routing v-if="showRouting" :connections="connections" :isMobile="isMobile"></routing>
</template>
<script>
import routing from './routing';
import axios from 'axios';
import { VTimePicker } from 'vuetify/labs/VTimePicker';
import { VDatePicker } from 'vuetify/components/VDatePicker';
import locationSelect from './search/locationSelect.vue';
import timeSelect from './search/timeSelect.vue';
import dateSelect from './search/dateSelect.vue';
import services from '@/lib/services.js'
const client = axios.create({
baseURL: process.env.VUE_APP_BASE_URL
});
const services = [
{id:"db", name:"Deutsche Bahn"},
{id:"vbb", name:"Verkehrsverbund Berlin-Brandenburg"},
{id:"pkp", name:"Polskie Koleje Państwowe"},
{id:"irish", name:"Iarnród Éireann"},
{id:"oebb", name:"Österreichische Bundesbahnen"},
{id:"lu", name:"Mobilitéitszentral (Luxembourg)"},
]
export default {
name: 'SearchBahn',
props: {
},
components: {
routing,
VTimePicker,
VDatePicker
locationSelect,
timeSelect,
dateSelect,
},
data() {
return {
from: {name:"", id:null, choices:[], menu:false, update:null},
to: {name:"", id:null, choices:[], menu:false, update:null},
fromName : "",
toName : "",
fromLocation : null,
toLocation : null,
connections: [],
showRouting: false,
time: {value:new Date().toLocaleTimeString(), menu:false},
date: {value:new Date(), menu:false},
time: new Date().toLocaleTimeString("de", {hour: '2-digit', minute:'2-digit'}),
date: new Date(),
services: services,
selectedService: services[0].id,
isMobile: this.$route.query.m,
client:client,
}
},
methods: {
searchStationFrom() {
client.get("/searchStation", {params: {text: this.fromName, service:this.selectedService}}).then(res => this.from = {name: res.data.name, id: res.data.id});
},
searchStationTo() {
client.get("/searchStation", {params: {text: this.toName, service:this.selectedService}}).then(res => this.to = {name: res.data.name, id: res.data.id});
getDisplayClass(){
return this.isMobile ? "displaytall" : "displaywide";
},
searchConnection() {
if (this.from.id && this.to.id){
client.get("/searchConnection", {params: {from: this.from.id, to:this.to.id, service:this.selectedService, date:this.getSelectedDate()}}).then(res => {this.connections = res.data;console.log(this.connections)});
if (this.fromLocation && this.toLocation){
client.post("/searchConnection", {data: {from: this.fromLocation, to:this.toLocation, service:this.selectedService, date:this.getSelectedDate(), language:this.$i18n.locale}}).then(res => {this.connections = res.data;console.log(this.connections)});
this.showRouting = true;
}
},
getSelectedDate(){
let timeArray = this.time.value.split(":");
let timeArray = this.time.split(":");
if (timeArray.length <= 1){
return new Date(this.date.value.getFullYear(), this.date.value.getMonth(), this.date.value.getDate())
return new Date(this.date.getFullYear(), this.date.getMonth(), this.date.getDate())
}
console.log(this.date.value.getFullYear()+" "+this.date.value.getMonth()+" "+this.date.value.getDate()+" "+timeArray[0]+" "+timeArray[1])
console.log(new Date(this.date.value.getFullYear(), this.date.value.getMonth(), this.date.value.getDate(), timeArray[0], timeArray[1]))
return new Date(this.date.value.getFullYear(), this.date.value.getMonth(), this.date.value.getDate(), timeArray[0], timeArray[1])
},
timeLoadChoicesFrom(){
if (this.from.menu){
let time = Date.now()
this.from.update = time;
console.log("timeLoadChoicesFrom")
let timer = setInterval(() => {
if (time == this.from.update){
this.loadChoicesFrom();
} else {
console.log("nicht laden")
}
clearInterval(timer);
}, 500);
}
},
timeLoadChoicesTo(){
if (this.to.menu){
let time = Date.now()
this.to.update = time;
console.log("timeLoadChoicesTo")
let timer = setInterval(() => {
if (time == this.to.update){
this.loadChoicesTo();
} else {
console.log("nicht laden")
}
clearInterval(timer);
}, 500);
}
},
loadChoicesFrom(){
client.get("/searchStations", {params: {text: this.fromName, service: this.selectedService}}).then(res => this.from.choices = res.data);
},
loadChoicesTo(){
client.get("/searchStations", {params: {text: this.toName, service: this.selectedService}}).then(res => this.to.choices = res.data);
},
chooseFrom(choice){
this.fromName = choice.name;
this.from.id = choice.id;
this.from.menu = false;
},
chooseTo(choice){
this.toName = choice.name;
this.to.id = choice.id;
this.to.menu = false;
},
testAlert(){
alert("testAlert")
}
},
watch: {
fromName: function() {
this.timeLoadChoicesFrom();
},
toName: function() {
this.timeLoadChoicesTo();
return new Date(this.date.getFullYear(), this.date.getMonth(), this.date.getDate(), timeArray[0], timeArray[1])
},
},
}
@ -228,24 +77,16 @@
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h3 {
margin: 40px 0 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}
.search {
.displaywide {
display: inline-flex;
vertical-align:middle;
bottom: 0;
width: 95%;
}
.displaytall {
display: block;
}
.search > * {
padding: 10px;
@ -257,7 +98,9 @@
font-size: 12px;
}
.inputTextField{
width: 300pt;
flex: 1;
margin-left: auto;
margin-right: auto;
}
@font-face {
font-family: "Raveo-display-bold";
@ -267,4 +110,5 @@
font-family: "Raveo-display-medium";
src: url("../assets/Raveo Display Medium.woff2") format("opentype");
}
</style>

View File

@ -0,0 +1,61 @@
<template>
<v-text-field
:active="menu"
v-model="formattedDate"
:label="$t('search.fields.date')"
prepend-icon="mdi mdi-calendar-month"
readonly
class="inputTextField"
>
<v-menu
v-model="menu"
:close-on-content-click="false"
activator="parent"
transition="scale-transition"
>
<v-date-picker
color="green-lighten-1"
format="24hr"
v-if="menu"
v-model="value"
full-width
></v-date-picker>
</v-menu>
</v-text-field>
</template>
<script>
import { VDatePicker } from 'vuetify/components/VDatePicker';
export default {
props: {
locale: String,
modelValue: Object
},
data() {
return {
menu : false,
}
},
computed: {
value: {
get() {
return this.modelValue
},
set(value) {
this.$emit('update:modelValue', value)
}
},
formattedDate: {
get() {
return this.value.toLocaleDateString(this.locale);
},
set(value) {
this.value = new Date(value);
}
}
},
components : {
VDatePicker
}
}
</script>

View File

@ -0,0 +1,122 @@
<template>
<v-text-field
:prepend-icon="icon"
append-inner-icon="mdi mdi-map-marker"
:active="menu"
:label="label"
type="text"
v-model="name"
class="inputTextField"
@click:appendInner="useUserLocation()"
>
<v-menu
v-model="menu"
:close-on-content-click="false"
activator="parent"
transition="scale-transition"
>
<div v-if="menu">
<div class="selectItem" v-for="choice in choices" :key="choices.indexOf(choice)" @click="choose(choice)">
{{ choice.name }}
</div>
</div>
</v-menu>
</v-text-field>
</template>
<script>
export default {
props: {
label: String,
icon: String,
client: Object,
selectedService: Object,
modelValue: Object
},
emits: ['update:modelValue'],
name: 'LocationSelect',
data() {
return {
name: "",
choices: [],
menu: false,
update: null,
}
},
methods: {
useUserLocation(){
navigator.geolocation.getCurrentPosition(position => this.loadChoicesNearby({latitude:position.coords.latitude, longitude:position.coords.longitude}));
},
choose(choice){
this.name = choice.name;
this.menu = false;
if (choice.type === "station") {
this.location = choice.id;
} else {
this.location = choice;
}
},
searchStation() {
this.client.get("/searchStation", {params: {text: this.name, service:this.selectedService, language:this.$i18n.locale}}).then(res => this.choose(res.data));
},
loadChoices(){
this.client.get("/searchStations", {params: {text: this.name, service: this.selectedService, language:this.$i18n.locale}}).then(res => this.choices = res.data);
},
loadChoicesNearby(location){
console.log(location);
this.client.get("/findNearby", {params: {location: location, service: this.selectedService, language:this.$i18n.locale}}).then(res => this.choices = res.data);
},
timeLoadChoices(){
if (this.menu){
let time = Date.now()
this.update = time;
let timer = setInterval(() => {
if (time == this.update){
this.loadChoices();
}
clearInterval(timer);
}, 500);
}
},
},
watch: {
name: function() {
this.timeLoadChoices();
},
selectedService: function() {
this.searchStation();
},
},
computed: {
location: {
get() {
return this.modelValue
},
set(value) {
this.$emit('update:modelValue', value)
}
}
}
}
</script>
<style scoped>
div {
font-family:"Raveo-display-medium";
}
.selectItem{
padding:7px;
background-color:white;
cursor: pointer;
}
@font-face {
font-family: "Raveo-display-bold";
src: url("../../assets/Raveo Display Bold.woff2") format("opentype");
}
@font-face {
font-family: "Raveo-display-medium";
src: url("../../assets/Raveo Display Medium.woff2") format("opentype");
}
</style>

View File

@ -0,0 +1,52 @@
<template>
<v-text-field
v-model="value"
:active="menu"
:label="$t('search.fields.time')"
prepend-icon="mdi mdi-clock-outline"
readonly
class="inputTextField"
>
<v-menu
v-model="menu"
:close-on-content-click="false"
activator="parent"
transition="scale-transition"
>
<v-time-picker
color="green-lighten-1"
format="24hr"
v-if="menu"
v-model="value"
full-width
></v-time-picker>
</v-menu>
</v-text-field>
</template>
<script>
import { VTimePicker } from 'vuetify/labs/VTimePicker';
export default {
props: {
modelValue: Object
},
data() {
return {
menu : false
}
},
computed: {
value: {
get() {
return this.modelValue
},
set(value) {
this.$emit('update:modelValue', value)
}
}
},
components : {
VTimePicker
}
}
</script>

View File

@ -32,7 +32,7 @@ let operatorfunctions = {
return new URL('../assets/logos/blauwnet.png', import.meta.url);
} else if (operator.id === "waldbahn-die-landerbahn-gmbh-dlb"){
return new URL('../assets/logos/waldbahn.png', import.meta.url);
} else if (operator.id === "ostdeutsche-eisenbahn-gmbh"){
} else if (operator.id === "ostdeutsche-eisenbahn-gmbh" || operator.id === "odeg-ostdeutsche-eisenbahn-gmbh"){
return new URL('../assets/logos/odeg.svg', import.meta.url);
} else if (operator.id === "trenitalia"){
return new URL('../assets/logos/trenitalia.svg', import.meta.url);
@ -42,7 +42,7 @@ let operatorfunctions = {
return new URL('../assets/logos/sj.svg', import.meta.url);
} else if (operator.id === "vy"){
return new URL('../assets/logos/vy.svg', import.meta.url);
} else if (operator.id === "danische-staatsbahnen"){
} else if (operator.id === "danische-staatsbahnen" || operator.id === "dsb"){
return new URL('../assets/logos/dsb.png', import.meta.url);
} else if (operator.id === "skanetrafiken-oresundstag"){
return new URL('../assets/logos/oresundtag.svg', import.meta.url);
@ -78,7 +78,7 @@ let operatorfunctions = {
return new URL('../assets/logos/zsrbije.png', import.meta.url);
} else if (operator.id === "sncb"){
return new URL('../assets/logos/sncb.svg', import.meta.url);
} else if (operator.id === "cfl"){
} else if (operator.id === "cfl" || operator.id ==="chemins-de-fer-luxembourgeois"){
return new URL('../assets/logos/cfl.svg', import.meta.url);
} else if (operator.id.startsWith("s-bahn-berlin")){
return new URL('../assets/logos/sbahnberlin.svg', import.meta.url);
@ -159,11 +159,59 @@ let operatorfunctions = {
} else if (operator.id === "caledonian-sleeper"){
return new URL('../assets/logos/caledonian-sleeper.png', import.meta.url);
} else if (operator.id === "mecklenburgische-baderbahn-molli"){
return new URL('../assets/logos/molli.svg', import.meta.url);
return new URL('../assets/logos/molli.svg', import.meta.url);
} else if (operator.id === "berliner-verkehrsbetriebe"){
return new URL('../assets/logos/bvg_berlin.svg', import.meta.url);
return new URL('../assets/logos/bvg_berlin.svg', import.meta.url);
} else if (operator.id === "ville-de-luxembourg-service-autobus"){
return new URL('../assets/logos/avl_lux.svg', import.meta.url);
} else if (operator.id === "regime-general-des-transports-routiers"){
return new URL('../assets/logos/rgtr.svg', import.meta.url);
} else if (operator.id === 'bay-area-rapid-transit'){
return new URL('../assets/logos/bart.svg', import.meta.url);
} else if (operator.id === 'san-francisco-municipal-transportation-agency'){
return new URL('../assets/logos/muni.svg', import.meta.url);
} else if (operator.id === 'vias-gmbh'){
return new URL('../assets/logos/vias.png', import.meta.url);
} else if (operator.id === 'ac-transit'){
return new URL('../assets/logos/actransit.svg', import.meta.url);
} else if (operator.id === 'des-moines-area-regional-transit-authority'){
return new URL('../assets/logos/desmoinesart.svg', import.meta.url);
} else if (operator.id === 'iarnrod-eireann-irish-rail'){
return new URL('../assets/logos/ieir.svg', import.meta.url);
} else if (operator.id === 'caltrain'){
return new URL('../assets/logos/caltrain.svg', import.meta.url);
} else if (operator.id === 'marin-transit'){
return new URL('../assets/logos/marintransit.svg', import.meta.url);
} else if (operator.id === 'samtrans'){
return new URL('../assets/logos/samtrans.svg', import.meta.url);
} else if (operator.id === 'golden-gate-transit'){
return new URL('../assets/logos/goldengate.png', import.meta.url);
} else if (operator.id === 'regionalverkehre-start-deutschland-gmbh-start-unterelbe'){
return new URL('../assets/logos/regiostart.svg', import.meta.url);
} else if (operator.id === 'evb-elbe-weser-gmbh'){
return new URL('../assets/logos/evb.svg', import.meta.url);
} else if (operator.id === 'metronom'){
return new URL('../assets/logos/metronom.svg', import.meta.url);
} else if (operator.id === 'flixtrain'){
return new URL('../assets/logos/flixtrain.svg', import.meta.url);
} else if (operator.id === 'verkehrsbetrieb-liechtensteinmobil'){
return new URL('../assets/logos/liemobil.svg', import.meta.url);
} else if (operator.id === 'rheinruhrbahn-transdev'){
return new URL('../assets/logos/rheinruhrbahn.svg', import.meta.url);
} else if (operator.id === 'hlb-hessenbahn-gmbh'){
return new URL('../assets/logos/hlb.svg', import.meta.url);
} else if (operator.id === 'verkehrsbetriebe-glattal'){
return new URL('../assets/logos/vbglattal.svg', import.meta.url);
} else if (operator.id === 'stern-hafferl-verkehrs-gmbh'){
return new URL('../assets/logos/sternhafferl.svg', import.meta.url);
} else if (operator.id === 'graz-koflacher-bahn-und-busbetrieb-gmbh'){
return new URL('../assets/logos/gkb.svg', import.meta.url);
} else if (operator.id === 'luxtram'){
return new URL('../assets/logos/luxtram.png', import.meta.url);
} else if (operator.id === 'dsb-s-tog'){
return new URL('../assets/logos/stog.svg', import.meta.url);
} else {
console.log(operator.id);
console.log("OPERATOR:"+operator.id);
return (null);
}
}

View File

@ -0,0 +1,55 @@
let remarkfunctions = {
getIconForRemark(remark){
if (!remark){
return (null);
} else if (remark.code === "55"){
return new URL('../assets/icons/55.svg', import.meta.url);
} else if (remark.code === "wifi" || remark.code === "WF"){
return new URL('../assets/icons/wifi.svg', import.meta.url);
} else if (remark.code === "air-conditioned"){
return new URL('../assets/icons/air-conditioned.svg', import.meta.url);
} else if (remark.code === "barrier-free-vehicle" || remark.code === "EA" || remark.code === "RZ" || remark.code === "OB"){
return new URL('../assets/icons/barrier-free-vehicle.svg', import.meta.url);
} else if (remark.code === "compulsory-reservation"){
return new URL('../assets/icons/compulsory-reservation.svg', import.meta.url);
} else if (remark.code === "on-board-restaurant"){
return new URL('../assets/icons/on-board-restaurant.svg', import.meta.url);
} else if (remark.code === "power-sockets"){
return new URL('../assets/icons/power-sockets.svg', import.meta.url);
} else if (remark.code === 'wheelchairs-space' || remark.code === "RO"){
return new URL('../assets/icons/wheelchair-space.svg', import.meta.url);
} else if (remark.code === "bicycle-conveyance" || remark.code === "FK" || remark.code === "FB" || remark.code === "71"){
return new URL('../assets/icons/bicycle-conveyance.svg', import.meta.url);
} else if (remark.code === "bicycle-conveyance-reservation" || remark.code === "FR"){
return new URL('../assets/icons/bicycle-conveyance-reservation.svg', import.meta.url);
} else if (remark.code === "2nd-class-only" || remark.code === "J2" || remark.code === "K2"){
return new URL('../assets/icons/2nd-class-only.svg', import.meta.url);
} else if (remark.code === "boarding-ramp" || remark.code === "EF" || remark.code === "ER"){
return new URL('../assets/icons/boarding-ramp.svg', import.meta.url);
} else if (remark.code === "no-bicycle-conveyance"){
return new URL('../assets/icons/no-bicycle-conveyance.svg', import.meta.url);
} else if (remark.code === "RE"){
return new URL('../assets/icons/reservation-suggested.svg', import.meta.url);
} else if (remark.code === "9N"){
return new URL('../assets/icons/deutschlandticket-ungueltig.svg', import.meta.url);
} else if (remark.code === "HD"){
return new URL('../assets/icons/quiet-zone.svg', import.meta.url);
} else if (remark.code === "SB"){
return new URL('../assets/icons/ticket-required.svg', import.meta.url);
} else if (remark.code === "komfort-checkin"){
return new URL('../assets/icons/komfort-check-in.svg', import.meta.url);
} else if (remark.code === "QT"){
return new URL('../assets/icons/tilting-train.svg', import.meta.url);
} else if (remark.code === "SL"){
return new URL('../assets/icons/sleeper-couchette.svg', import.meta.url);
} else if (remark.code === "DU"){
return new URL('../assets/icons/special-ticket.svg', import.meta.url);
} else if (remark.code === "RC" || remark.code === "OJ"){
return new URL('../assets/icons/info.svg', import.meta.url);
} else {
console.log("REMARK type:"+remark.type+", code:"+remark.code+": "+remark.text)
return null;
}
}
}
export default remarkfunctions;

View File

@ -1,21 +1,67 @@
let routefunctions = {
getLineColors(line){
getLineColors(leg){
let line = leg?.line
if (!line){
return (['black', 'white']);
} else if (line.productName === "STB"){
return (['white', 'blue']);
return (['black', 'white']);
} else if (line.productName === "STB" || line.productName === "U"){
return (['white', 'blue']);
} else if (line.productName === "S"){
return (['white', 'green']);
} else if (line.productName === "RE" || line.productName === "RB"){
return (['white', 'red']);
} else if (line.productName === "IC" || line.productName === "ICE"){
return (['red', 'white']);
return (['white', 'green']);
} else if (line.productName === "RE" || line.productName === "RB" || line.productName === "R" || line.productName === "Re" || line.productName === "REX"){
return (['white', 'red']);
} else if (line.productName === "IR"){
return (['green', 'white']);
} else if (line.productName === "IC" || line.productName === "ICE" || line.productName === "RJ" || line.productName === "RJX" || line.productName === "ICL"){
return (['red', 'white']);
} else if (line.productName === "EC" || line.productName === "ECE"){
return (['blue', 'white']);
return (['blue', 'white']);
} else if (line.productName === "MEX"){
return (['black', 'yellow']);
return (['black', 'yellow']);
} else if (line.productName === "EST"){
return (['yellow', 'blue']);
} else if (line.productName === "TGV"){
return (['IndianRed', 'white']);
} else if (line.productName === "EN" || line.productName === "NJ"){
return (['white', 'navy']);
} else {
return (['black', 'white']);
console.log("Line Product:"+line.productName)
return (['black', 'white']);
}
},
getRouteNumber(leg){
if (!leg) {
console.log(leg)
return ""
} else if (leg.walking){
return "";
} else if (leg.line){
if (leg.line.name) {
if (leg.line.fahrtNr && leg.line.name.endsWith(leg.line.fahrtNr)){
return leg.line.name.replace(leg.line.fahrtNr, "").trim();
} else {
return leg.line.name;
}
} else if(leg.line.product){
if (leg.line.product === 'regionalExpress'){
return "REX"
} else if (leg.line.product === 'regional'){
return "REG"
} else if (leg.line.product === 'national'){
return "NAT"
} else {
console.log("Route Number, LEG:")
console.log(leg)
return ""
}
} else {
console.log("Route Number, LEG:")
console.log(leg)
return ""
}
} else {
console.log("Route Number, LEG:")
console.log(leg)
return ""
}
}
}

View File

@ -0,0 +1,18 @@
let services = [
{id:"db", name:"Deutsche Bahn"},
{id:"vbb", name:"Verkehrsverbund Berlin-Brandenburg"},
{id:"pkp", name:"Polskie Koleje Panstwowe"},
{id:"irish", name:"Iarnrod Eireann"},
{id:"oebb", name:"Oesterreichische Bundesbahnen"},
{id:"lu", name:"Mobiliteitszentral (Luxembourg)"},
{id:"bart", name:"Bay Area Rapid Transit (BART)"},
{id:"dart", name:"Des Moines Area Rapid Transit (DART)"},
//{id:"nrw", name:"mobil.nrw"},
{id:"danmark", name:"Rejseplanen in Denmark"},
//{id:"zvv", name:"Züricher Verkehrsverbund"},
{id:"bls", name:"BLS AG (Bern)"},
{id:"nrwbus", name:"DB Busradar NRW"},
{id:"cmta", name:"Austin, Texas (CMTA/CapMetro)"},
{id:"vrn", name:"Verkehrsverbund Rhein-Neckar (VRN)"},
]
export default services;

View File

@ -0,0 +1,54 @@
{
"global":{
"option":{
"mobile": "mobil"
}
},
"search":{
"fields":{
"service":"Dienst",
"date":"Datum",
"time":"Uhrzeit",
"from":"von",
"to":"nach"
},
"buttons":{
"searchConnection":"Verbindung suchen"
}
},
"routing":{
"text":{
"track":"Gleis"
},
"remarks":{
"bicycle-conveyance":"Fahrradmitnahme möglich",
"bicycle-conveyance-reservation":"Fahrradmitnahme reservierungspflichtig",
"power-sockets":"Steckdosen für Laptops vorhanden",
"barrier-free-vehicle":"Behindertengerechtes Fahrzeug",
"wheelchairs-space":"Rollstuhlplatz vorhanden",
"air-conditioned":"klimatisiertes Fahrzeug",
"55":"Rauchen verboten",
"wifi":"WLAN vorhanden",
"compulsary-reservation":"Reservierungspflicht",
"2nd-class-only":"Nur 2. Klasse",
"RZ":"Rollstuhlgerechter Einstieg",
"on-board-restaurant":"Boardrestaurant vorhanden",
"EA":"Behindertengerechte Ausstattung",
"FM": "Fahrkartenautomat im Fahrzeug",
"boarding-ramp": "Einstieghilfe im Fahrzeug",
"no-bicycle-conveyance": "Einstieghilfe im Fahrzeug",
"OB": "Niederflurfahrzeug",
"RO": "Rollstuhlstellplatz",
"OA": "Rollstuhlstellplatz, Voranmeldung unter +43 5 1717",
"EF": "Fahrzeuggebundene Einstieghilfe",
"OC": "Rollstuhltaugliches WC",
"FK": "Fahrradmitnahme möglich",
"K2": "Nur 2. Klasse",
"J2": "in Sitzwagen nur 2. Klasse",
"SB": "Zustieg nur mit gültiger Fahrkarte",
"WV": "WLAN verfügbar",
"fC": "Kleinbus, Fahrtanmeldung bei Gruppen ab 10 Personen unter gruppen.vmobil.at",
"FR":"Fahrradmitnahme reservierungspflichtig"
}
}
}

View File

@ -0,0 +1,40 @@
{
"global":{
"option":{
"mobile": "mobile"
}
},
"search":{
"fields":{
"service":"service",
"date":"date",
"time":"time",
"from":"from",
"to":"to"
},
"buttons":{
"searchConnection":"search connection"
}
},
"routing":{
"text":{
"track":"Track"
},
"remarks":{
"bicycle-conveyance":"bicycles allowed",
"bicycle-conveyance-reservation":"bicycles need reservation",
"power-sockets":"power sockets for laptops",
"barrier-free-vehicle":"barrier-free vehicle",
"wheelchairs-space":"wheelchair spaces",
"air-conditioned":"air-conditioned vehicle",
"55":"smoking prohibited",
"wifi":"vehicle with wifi",
"compulsary-reservation":"reservation compulsary",
"2nd-class-only":"2nd class only",
"RZ":"barrier-free boarding for wheelchairs",
"on-board-restaurant":"on-board restaurant",
"RC":"Reservations at DB ticket machines/travel centres & many DB agencies",
"OJ":"ÖBB Nightjet (www.nightjet.com)"
}
}
}

View File

@ -0,0 +1,54 @@
{
"global":{
"option":{
"mobile": "mobile"
}
},
"search":{
"fields":{
"service":"service",
"date":"date",
"time":"heure",
"from":"de",
"to":"à"
},
"buttons":{
"searchConnection":"rechercher"
}
},
"routing":{
"text":{
"track":"voie"
},
"remarks":{
"bicycle-conveyance":"Fahrradmitnahme möglich",
"bicycle-conveyance-reservation":"Fahrradmitnahme reservierungspflichtig",
"power-sockets":"Steckdosen für Laptops vorhanden",
"barrier-free-vehicle":"Behindertengerechtes Fahrzeug",
"wheelchairs-space":"Rollstuhlplatz vorhanden",
"air-conditioned":"klimatisiertes Fahrzeug",
"55":"Rauchen verboten",
"wifi":"WLAN vorhanden",
"compulsary-reservation":"Reservierungspflicht",
"2nd-class-only":"Nur 2. Klasse",
"RZ":"Rollstuhlgerechter Einstieg",
"on-board-restaurant":"Boardrestaurant vorhanden",
"EA":"Behindertengerechte Ausstattung",
"FM": "Fahrkartenautomat im Fahrzeug",
"boarding-ramp": "Einstieghilfe im Fahrzeug",
"no-bicycle-conveyance": "Einstieghilfe im Fahrzeug",
"OB": "Niederflurfahrzeug",
"RO": "Rollstuhlstellplatz",
"OA": "Rollstuhlstellplatz, Voranmeldung unter +43 5 1717",
"EF": "Fahrzeuggebundene Einstieghilfe",
"OC": "Rollstuhltaugliches WC",
"FK": "Fahrradmitnahme möglich",
"K2": "Nur 2. Klasse",
"J2": "in Sitzwagen nur 2. Klasse",
"SB": "Zustieg nur mit gültiger Fahrkarte",
"WV": "WLAN verfügbar",
"fC": "Kleinbus, Fahrtanmeldung bei Gruppen ab 10 Personen unter gruppen.vmobil.at",
"FR":"Fahrradmitnahme reservierungspflichtig"
}
}
}

View File

@ -0,0 +1,54 @@
{
"global":{
"option":{
"mobile": "mobile"
}
},
"search":{
"fields":{
"service":"service",
"date":"дата",
"time":"час",
"from":"від",
"to":"в"
},
"buttons":{
"searchConnection":"rechercher"
}
},
"routing":{
"text":{
"track":"Gleis"
},
"remarks":{
"bicycle-conveyance":"Fahrradmitnahme möglich",
"bicycle-conveyance-reservation":"Fahrradmitnahme reservierungspflichtig",
"power-sockets":"Steckdosen für Laptops vorhanden",
"barrier-free-vehicle":"Behindertengerechtes Fahrzeug",
"wheelchairs-space":"Rollstuhlplatz vorhanden",
"air-conditioned":"klimatisiertes Fahrzeug",
"55":"Rauchen verboten",
"wifi":"WLAN vorhanden",
"compulsary-reservation":"Reservierungspflicht",
"2nd-class-only":"Nur 2. Klasse",
"RZ":"Rollstuhlgerechter Einstieg",
"on-board-restaurant":"Boardrestaurant vorhanden",
"EA":"Behindertengerechte Ausstattung",
"FM": "Fahrkartenautomat im Fahrzeug",
"boarding-ramp": "Einstieghilfe im Fahrzeug",
"no-bicycle-conveyance": "Einstieghilfe im Fahrzeug",
"OB": "Niederflurfahrzeug",
"RO": "Rollstuhlstellplatz",
"OA": "Rollstuhlstellplatz, Voranmeldung unter +43 5 1717",
"EF": "Fahrzeuggebundene Einstieghilfe",
"OC": "Rollstuhltaugliches WC",
"FK": "Fahrradmitnahme möglich",
"K2": "Nur 2. Klasse",
"J2": "in Sitzwagen nur 2. Klasse",
"SB": "Zustieg nur mit gültiger Fahrkarte",
"WV": "WLAN verfügbar",
"fC": "Kleinbus, Fahrtanmeldung bei Gruppen ab 10 Personen unter gruppen.vmobil.at",
"FR":"Fahrradmitnahme reservierungspflichtig"
}
}
}

View File

@ -1,5 +1,6 @@
import { createApp } from 'vue'
import App from './App.vue'
import { createWebHistory, createRouter } from 'vue-router'
// Vuetify
@ -7,29 +8,34 @@ import 'vuetify/styles'
import { createVuetify } from 'vuetify'
import * as components from 'vuetify/components'
import * as directives from 'vuetify/directives'
import '@fortawesome/fontawesome-free/css/all.css' // Ensure your project is capable of handling css files
import { aliases, fa } from 'vuetify/iconsets/fa-svg'
import { library } from '@fortawesome/fontawesome-svg-core'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
import { fas } from '@fortawesome/free-solid-svg-icons'
import { far } from '@fortawesome/free-regular-svg-icons'
import SearchBahn from './components/search.vue'
import ExploreBahn from './components/explore.vue'
import { createI18n } from 'vue-i18n'
import de from "./locales/de.json";
import en from "./locales/en.json";
import fr from "./locales/fr.json";
import ua from "./locales/ua.json";
const app = createApp(App)
app.component('font-awesome-icon', FontAwesomeIcon) // Register component globally
library.add(fas) // Include needed solid icons
library.add(far) // Include needed regular icons
const routes = [
{ path: '/search', component: SearchBahn },
{ path: '/explore', component: ExploreBahn },
]
const router = createRouter({
history: createWebHistory(),
routes,
})
const vuetify = createVuetify({
components,
directives,
icons: {
defaultSet: 'fa',
aliases,
sets: {
fa,
},
},
})
const i18n = createI18n({
locale: "en",
fallbackLocale: "en",
messages: { de, en, fr, ua },
})
app.use(vuetify).mount('#app')
app.use(vuetify).use(router).use(i18n).mount('#app')

View File

@ -1,5 +0,0 @@
{
"dependencies": {
"vuetify": "^3.7.4"
}
}